diff --git a/.github/workflows/continuous-integration-test.yml b/.github/workflows/continuous-integration-test.yml index 35cb9400..0c0913b2 100644 --- a/.github/workflows/continuous-integration-test.yml +++ b/.github/workflows/continuous-integration-test.yml @@ -21,7 +21,7 @@ jobs: node-version: '16' - name: Docker compose up - run: docker-compose up -d + run: docker compose up -d - name: Set up Python 3.9 uses: actions/setup-python@v5 diff --git a/INSTALL.rst b/INSTALL.rst index 8ac48ad5..1ba7b833 100644 --- a/INSTALL.rst +++ b/INSTALL.rst @@ -21,12 +21,12 @@ You need to install `poetry`, it will handle the virtual environment creation fo in order to sandbox the Python environment, as well as manage the dependency installation, among other things. -Start all dependent services using docker-compose (this will start PostgreSQL, +Start all dependent services using docker compose (this will start PostgreSQL, Elasticsearch 6, RabbitMQ and Redis): .. code-block:: console - $ docker-compose up -d + $ docker compose up -d .. note:: @@ -114,7 +114,7 @@ You can use simulate a full production environment using the .. code-block:: console $ docker build --rm -t rero-mef-base:latest -f Dockerfile.base . - $ docker-compose -f docker-compose.full.yml up -d + $ docker compose -f docker-compose.full.yml up -d In addition to the normal ``docker-compose.yml``, this one will start: diff --git a/classes.md b/classes.md deleted file mode 100644 index 22c63228..00000000 --- a/classes.md +++ /dev/null @@ -1,240 +0,0 @@ -https://mermaid.live - -```mermaid -classDiagram -class ReroMefRecord{ - minter - fetcher - provider - object_type = 'rec' - name - type = None - flush_indexes(cls) - create(cls, data, id_=None, delete_pid=False, dbcommit=False, reindex=False, md5=False, **kwargs) - create_or_update(cls, data, id_=None, delete_pid=True, dbcommit=False,reindex=False, test_md5=False) - delete(self, force=False, dbcommit=False, delindex=False) - update(self, data, dbcommit=False, reindex=False) - update_if_md5_changed(self, data, dbcommit=False, reindex=False) - replace(self, data, dbcommit=False, reindex=False) - dbcommit(self, reindex=False, forceindex=False) - reindex(self, forceindex=False) - get_record_by_pid(cls, pid, with_deleted=False) - get_pid_by_id(cls, id_) - get_persistent_identifier(cls, id_) - _get_all(cls, with_deleted=False) - get_all_pids(cls, with_deleted=False, limit=100000) - get_all_ids(cls, with_deleted=False, limit=100000) - get_all_records(cls, with_deleted=False, limit=100000) - count(cls, with_deleted=False) - index_all(cls) - index_ids(cls, ids) - get_indexer_class(cls) - delete_from_index(self) - pid(self) - persistent_identifier(self) - get_metadata_identifier_names(cls) - deleted(self) -} - -class EntityMefRecord{ - minter = None - fetcher = None - provider = None - name = '' - model_cls = None - viaf_cls = None - search = None - mef_type = '' - get_mef(cls, agent_pid, agent_name, pid_only=False) - get_all_pids_without_agents_and_viaf(cls) - get_all_pids_without_viaf(cls) - get_multiple_missing_pids(cls, record_types=None, verbose=False) - get_updated(cls, data) - delete_ref(self, record, dbcommit=False, reindex=False) -} - -class AgentMefRecord{ - minter = mef_id_minter - fetcher = mef_id_fetcher - provider = MefProvider - name = 'mef' - model_cls = AgentMefMetadata - search = AgentMefSearch - mef_type = 'AGENTS' - get_all_missing_viaf_pids(cls, verbose=False) - add_information(self, resolve=False, sources=False) - get_latest(cls, pid_type, pid) -} - -class ConceptMefRecord{ - minter = mef_id_minter - fetcher = mef_id_fetcher - provider = MefProvider - name = 'mef' - model_cls = ConceptMefMetadata - search = ConceptMefSearch - mef_type = 'CONCEPTS' - entities = ['idref', 'rero'] - add_information(self, resolve=False, sources=False) - get_latest(cls, pid_type, pid) -} - -class PlaceMefRecord{ - minter = mef_id_minter - fetcher = mef_id_fetcher - provider = MefProvider - name = 'mef' - model_cls = PlaceMefMetadata - search = PlaceMefSearch - mef_type = 'PLACES' - entities = ['idref'] - add_information(self, resolve=False, sources=False) - get_latest(cls, pid_type, pid) -} - -class AgentViafRecord{ - minter = viaf_id_minter - fetcher = viaf_id_fetcher - provider = ViafProvider - name = 'viaf' - model_cls = ViafMetadata - search = AgentViafSearch - replace(self, data, dbcommit=False, reindex=False) - get_online_record(cls, viaf_source_code, pid, format=None) - get_viaf(cls, agent) - delete(self, dbcommit=False, delindex=False) - get_agents_records(self) - get_missing_agent_pids(cls, agent, verbose=False) - get_pids_with_multiple_viaf(cls, record_types=None, verbose=False) -} - -class AgentRecord{ - name = None - create(cls, data, id_=None, delete_pid=False, dbcommit=False, reindex=True, md5=True, **kwargs) - delete(self, force=False, dbcommit=False, delindex=False) - create_or_update_mef(self, dbcommit=False, reindex=False) - get_online_record(cls, id, debug=False) - reindex(self, forceindex=False) -} - -class ConceptRecord{ - name = None - create(cls, data, id_=None, delete_pid=False, dbcommit=False, reindex=True, md5=True, **kwargs) - delete(self, force=False, dbcommit=False, delindex=False) - create_or_update_mef(self, dbcommit=False, reindex=False) - get_online_record(cls, id, debug=False) - reindex(self, forceindex=False) -} - -class PlaceRecord{ - name = None - create(cls, data, id_=None, delete_pid=False, dbcommit=False, reindex=True, md5=True, **kwargs) - delete(self, force=False, dbcommit=False, delindex=False) - create_or_update_mef(self, dbcommit=False, reindex=False) - get_online_record(cls, id, debug=False) - reindex(self, forceindex=False) -} - -class ConceptIdrefRecord { - minter = idref_id_minter - fetcher = idref_id_fetcher - provider = ConceptIdrefProvider - name = 'idref' - viaf_source_code = 'RAMEAU' - pid_type = 'concept_idref_pid' - model_cls = ConceptIdrefMetadata - search = ConceptIdrefSearch - get_online_record(cls, id, debug=False) -} - -class ConceptReroRecord { - minter = rero_id_minter - fetcher = rero_id_fetcher - provider = ConceptReroProvider - name = 'rero' - viaf_source_code = 'RAMEAU' - pid_type = 'concept_rero_pid' - model_cls = ConceptReroMetadata - search = ConceptReroSearch - get_online_record(cls, id, debug=False) -} - -class AgentGndRecord{ - minter = gnd_id_minter - fetcher = gnd_id_fetcher - provider = AgentGndProvider - name = 'gnd' - viaf_pid_name = 'gnd_pid' - viaf_source_code = 'DNB' - model_cls = AgentGndMetadata - search = AgentGndSearch - get_online_record(cls, id, debug=False) -} - -class AgentIdrefRecord{ - minter = idref_id_minter - fetcher = idref_id_fetcher - provider = AgentIdrefProvider - name = 'idref' - viaf_source_code = 'SUDOC' - viaf_pid_name = 'idref_pid' - model_cls = AgentIdrefMetadata - search = AgentIdrefSearch - get_online_record(cls, id, debug=False) -} - -class AgentReroRecord{ - minter = rero_id_minter - fetcher = rero_id_fetcher - provider = AgentReroProvider - name = 'rero' - viaf_source_code = 'RERO' - viaf_pid_name = 'rero_pid' - model_cls = AgentReroMetadata - search = AgentReroSearch - get_online_record(cls, id, debug=False) -} - -class PlaceIdrefRecord { - minter = idref_id_minter - fetcher = idref_id_fetcher - provider = PlaceIdrefProvider - name = 'idref' - viaf_source_code = 'RAMEAU' - pid_type = 'place_idref_pid' - model_cls = PlaceIdrefMetadata - search = PlaceIdrefSearch - get_online_record(cls, id, debug=False) -} - -class PlaceGndRecord { - minter = gnd_id_minter - fetcher = gnd_id_fetcher - provider = PlaceGndProvider - name = 'idref' - viaf_source_code = 'RAMEAU' - pid_type = 'place_gnd_pid' - model_cls = PlaceGndMetadata - search = PlaceGndSearch - get_online_record(cls, id, debug=False) - -EntityMefRecord --|> ReroMefRecord -ReroMefRecord --|> AgentMefRecord -ReroMefRecord --|> ConceptMefRecord -ReroMefRecord --|> PlaceMefRecord - -ReroMefRecord --|> AgentViafRecord - -ReroMefRecord --|> AgentRecord -AgentRecord --|> AgentGndRecord -AgentRecord --|> AgentIdrefRecord -AgentRecord --|> AgentReroRecord - -ReroMefRecord --|> ConceptRecord -ConceptRecord --|> ConceptIdrefRecord -ConceptRecord --|> ConceptReroRecord - -ReroMefRecord --|> PlaceRecord -PlaceRecord --|> PlaceIdrefRecord -PlaceRecord --|> PlaceGndRecord -``` \ No newline at end of file diff --git a/data/cidref.json b/data/cidref.json index 86c99cec..6f98cd34 100644 --- a/data/cidref.json +++ b/data/cidref.json @@ -1,16698 +1,38000 @@ [ { - "md5": "4b7f3d32ff91eee6bcddc5b796e5b88f", - "pid": "027224430", - "note": [ + "type": "bf:Topic", + "authorized_access_point": "Droits des femmes", + "bnf_type": "sujet Rameau", + "classification": [ { - "label": [ - "Grand Larousse universel", - "Les langues du monde / M. Sala, I. Vintila-Radulescu, 1984", - "Les langues du monde / A. Meillet, M. Cohen, 1981" - ], - "noteType": "dataSource" + "type": "bf:ClassificationDdc", + "classificationPortion": "340", + "name": "Droit" } ], - "type": "bf:Topic", - "broader": [ + "closeMatch": [ { - "authorized_access_point": "Langues ib\u00e9ro-romanes" + "authorized_access_point": "Women's rights", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85147765", + "source": "LCSH" + } + ] }, { - "authorized_access_point": "Langues romanes" + "authorized_access_point": "Femmes -- Droits", + "source": "RVMLaval" } ], - "related": [ - { - "authorized_access_point": "Ab\u00e9c\u00e9daires espagnols" - }, - { - "authorized_access_point": "Abr\u00e9viations espagnoles" - }, - { - "authorized_access_point": "Cal\u00f3 (dialecte)" - }, - { - "authorized_access_point": "Cat\u00e9chismes espagnols" - }, - { - "authorized_access_point": "Cocoliche (langue)" - }, - { - "authorized_access_point": "Dictionnaires espagnols" - }, - { - "authorized_access_point": "Emprunts espagnols" - }, - { - "authorized_access_point": "Encyclop\u00e9dies et dictionnaires espagnols" - }, - { - "authorized_access_point": "Espagnol (langue) - Examens" - }, - { - "authorized_access_point": "Espagnol (langue) - Vocabulaire" - }, - { - "authorized_access_point": "\u00c9tude et enseignement - Locuteurs de l'espagnol" - }, - { - "authorized_access_point": "Glossaires et lexiques espagnols" - }, - { - "authorized_access_point": "Grammaire compar\u00e9e - Espagnol (langue)" - }, + "identifier": "http://www.idref.fr/027225798", + "identifiedBy": [ { - "authorized_access_point": "Hispanismes (idiotismes)" + "type": "uri", + "value": "http://www.idref.fr/027225798", + "source": "IDREF" }, { - "authorized_access_point": "Imprim\u00e9s espagnols" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119313952", + "source": "BNF" }, { - "authorized_access_point": "Influence sur l'espagnol" - }, + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11931395" + } + ], + "note": [ { - "authorized_access_point": "Jud\u00e9o-espagnol (langue)" - }, + "noteType": "dataSource", + "label": [ + "Les droits des femmes / F. Martinetti, 2007", + "L'\u00c9tat et les droits des femmes / S. Dauphin, 2010", + "F\u00e9d\u00e9ration internationale des droits humains : droits des femmes - https://www.fidh.org (2022-01-25)" + ] + } + ], + "pid": "027225798", + "related": [ { - "authorized_access_point": "Langues cr\u00e9oles espagnoles" + "authorized_access_point": "Discrimination sexuelle" }, { - "authorized_access_point": "Manuscrits espagnols" + "authorized_access_point": "Femmes - Statut juridique" }, { - "authorized_access_point": "Mots apparent\u00e9s espagnols" + "authorized_access_point": "Journ\u00e9e internationale de la femme" }, { - "authorized_access_point": "N tild\u00e9 (la lettre espagnole)" - }, + "authorized_access_point": "Prix Simone de Beauvoir pour la libert\u00e9 des femmes" + } + ], + "narrower": [ { - "authorized_access_point": "Noms de personnes espagnols" + "authorized_access_point": "Antif\u00e9minisme" }, { - "authorized_access_point": "Noms propres espagnols" + "authorized_access_point": "\u00c9galit\u00e9 des sexes" }, { - "authorized_access_point": "P\u00e9riodiques espagnols" + "authorized_access_point": "F\u00e9minisme" }, { - "authorized_access_point": "Philologie espagnole" + "authorized_access_point": "Femmes - Droit de vote" }, { - "authorized_access_point": "Phon\u00e9tique compar\u00e9e - Espagnol (langue)" - }, + "authorized_access_point": "Syndicats - Attitude envers la condition f\u00e9minine" + } + ], + "broader": [ { - "authorized_access_point": "Professeurs d'espagnol" - }, + "authorized_access_point": "Droits de l'homme" + } + ], + "variant_access_point": [ + "Droit des femmes", + "Droits de la femme", + "\u00c9mancipation de la femme", + "\u00c9mancipation des femmes", + "Femmes - Droits", + "Femmes - Droits civils", + "Femmes - Droits de la femme", + "Femmes - \u00c9mancipation", + "Femmes - Lib\u00e9ration", + "Lib\u00e9ration de la femme", + "Lib\u00e9ration des femmes" + ], + "md5": "96bb0643813e404e607d7525c399752a" + }, + { + "type": "bf:Topic", + "authorized_access_point": "R\u00e9alisme socialiste", + "bnf_type": "sujet Rameau", + "classification": [ { - "authorized_access_point": "Traduction en espagnol" + "type": "bf:ClassificationDdc", + "classificationPortion": "100", + "name": "Philosophie" }, { - "authorized_access_point": "Traductions espagnoles" + "type": "bf:ClassificationDdc", + "classificationPortion": "320", + "name": "Science politique" }, { - "authorized_access_point": "Versions espagnoles" + "type": "bf:ClassificationDdc", + "classificationPortion": "700", + "name": "Arts (sauf litt\u00e9rature)" }, { - "authorized_access_point": "Vocabulaires et manuels de conversation espagnols" - }, + "type": "bf:ClassificationDdc", + "classificationPortion": "801", + "name": "Litt\u00e9rature g\u00e9n\u00e9rale" + } + ], + "closeMatch": [ { - "authorized_access_point": "Cantiques espagnols" + "authorized_access_point": "Socialist realism", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85124145", + "source": "LCSH" + } + ] }, { - "authorized_access_point": "Chansons espagnoles" - }, + "authorized_access_point": "R\u00e9alisme socialiste", + "source": "RVMLaval" + } + ], + "identifier": "http://www.idref.fr/027242250", + "identifiedBy": [ { - "authorized_access_point": "Citations espagnoles" + "type": "uri", + "value": "http://www.idref.fr/027242250", + "source": "IDREF" }, { - "authorized_access_point": "Correspondance espagnole" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119327288", + "source": "BNF" }, { - "authorized_access_point": "Litt\u00e9rature hispanophone" - }, + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11932728" + } + ], + "note": [ { - "authorized_access_point": "Manuels pour locuteurs de l'espagnol" - }, + "noteType": "dataSource", + "label": [ + "Dict. critique du marxisme / G. Labica, G. Bensussan, 1985", + "Le r\u00e9alisme socialiste / M. Aucouturier, 1998", + "Vocabulaire d'esth\u00e9tique / \u00c9. Souriau, 1990 (art. : R\u00e9alisme)" + ] + } + ], + "pid": "027242250", + "related": [ { - "authorized_access_point": "M\u00e9lodies espagnoles" + "authorized_access_point": "R\u00e9alisme socialiste (art)" }, { - "authorized_access_point": "Paraphrases espagnoles" + "authorized_access_point": "R\u00e9alisme socialiste (litt\u00e9rature)" }, { - "authorized_access_point": "Synopses espagnoles" - }, + "authorized_access_point": "R\u00e9alisme socialiste (musique)" + } + ], + "broader": [ { - "authorized_access_point": "Virelangues espagnols" + "authorized_access_point": "Esth\u00e9tique communiste" }, { - "authorized_access_point": "Pays de langue espagnole" + "authorized_access_point": "Esth\u00e9tique marxiste" } ], + "md5": "215418bb7d33fb649b8b4885e8e2b49f" + }, + { + "type": "bf:Topic", + "authorized_access_point": "P\u00e9dagogie", "bnf_type": "sujet Rameau", - "narrower": [ - { - "authorized_access_point": "Espagnol (langue) - Argot" - }, - { - "authorized_access_point": "Espagnol (langue) - Dialectes" - }, - { - "authorized_access_point": "Espagnol (langue) - Avant 1500" - }, - { - "authorized_access_point": "Espagnol (langue) - 1500-1700 (P\u00e9riode classique)" - }, + "classification": [ { - "authorized_access_point": "Que\u00edsmo" + "type": "bf:ClassificationDdc", + "classificationPortion": "370", + "name": "Education et enseignement" } ], "closeMatch": [ { + "authorized_access_point": "Education", "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85126261", - "source": "LCSH" - }, - "authorized_access_point": "Spanish language" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85040989", + "source": "LCSH" + } + ] }, { - "source": "RVMLaval", - "authorized_access_point": "Espagnol (Langue)" + "authorized_access_point": "Teaching", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85133052", + "source": "LCSH" + } + ] + }, + { + "authorized_access_point": "P\u00e9dagogie", + "source": "RVMLaval" } ], + "identifier": "http://www.idref.fr/027246159", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027224430", + "value": "http://www.idref.fr/027246159", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119312813", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11933049j", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Langues et linguistique", - "type": "bf:ClassificationDdc", - "classificationPortion": "400" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11933049" } ], - "variant_access_point": [ - "Castellano (langue)", - "Castillan (langue)" - ], - "authorized_access_point": "Espagnol (langue)" - }, - { - "md5": "ed787193323d3cfadbd708b5809d29ce", - "pid": "027227219", "note": [ { + "noteType": "general", "label": [ - "Grand Larousse universel", - "Grand Robert de la langue fran\u00e7aise, 2001" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Sous cette vedette, obligatoirement suivie d'une subdivision g\u00e9ographique ou de la subdivision : \u00c0 l'\u00e9tranger, directement ou apr\u00e8s une subdivision de sujet, on trouve les documents sur les Fran\u00e7ais hors de France. Les documents sur les Fran\u00e7ais en France se trouvent sous des vedettes-mati\u00e8re telles que : France -- Moeurs et coutumes ; etc" - ], - "noteType": "general" - } - ], - "type": "bf:Topic", - "broader": [ - { - "authorized_access_point": "Ethnologie - France" + "S'emploie \u00e9galement en subdivision" + ] } ], + "pid": "027246159", "related": [ { - "authorized_access_point": "Alg\u00e9riens d'origine fran\u00e7aise" + "authorized_access_point": "Apprentissage transformationnel" }, { - "authorized_access_point": "Allemands d'origine fran\u00e7aise" + "authorized_access_point": "\u00c9ducation positive" }, { - "authorized_access_point": "Am\u00e9ricains d'origine fran\u00e7aise" + "authorized_access_point": "Enseignement" }, { - "authorized_access_point": "Britanniques d'origine fran\u00e7aise" + "authorized_access_point": "\u00c9tude et enseignement" }, { - "authorized_access_point": "Canadiens francophones" + "authorized_access_point": "Hautes \u00e9coles p\u00e9dagogiques (syst\u00e8me \u00e9ducatif suisse)" }, { - "authorized_access_point": "Roumains d'origine fran\u00e7aise" + "authorized_access_point": "P\u00e9dagogues" }, { - "authorized_access_point": "France" + "authorized_access_point": "Psychologie de l'\u00e9ducation" } ], - "bnf_type": "sujet Rameau", "narrower": [ { - "authorized_access_point": "Agriculteurs fran\u00e7ais" + "authorized_access_point": "Apprentissage contextualis\u00e9" + }, + { + "authorized_access_point": "Conception universelle de l'apprentissage" + }, + { + "authorized_access_point": "Didactique" + }, + { + "authorized_access_point": "Dispositifs p\u00e9dagogiques" }, { - "authorized_access_point": "Agronomes fran\u00e7ais" + "authorized_access_point": "\u00c9ducation - Langage" }, { - "authorized_access_point": "Alpinistes fran\u00e7ais" + "authorized_access_point": "\u00c9ducation fonctionnelle" }, { - "authorized_access_point": "Anarchistes fran\u00e7ais" + "authorized_access_point": "\u00c9ducation par le territoire" }, { - "authorized_access_point": "Animateurs socioculturels fran\u00e7ais" + "authorized_access_point": "Enseignants - Formation" }, { - "authorized_access_point": "Arch\u00e9ologues fran\u00e7ais" + "authorized_access_point": "Enseignants - Orientation p\u00e9dagogique" }, { - "authorized_access_point": "Artistes fran\u00e7ais" + "authorized_access_point": "Enseignement - M\u00e9thode des projets" }, { - "authorized_access_point": "Biblioth\u00e9caires fran\u00e7ais" + "authorized_access_point": "Enseignement - M\u00e9thodes actives" }, { - "authorized_access_point": "Catholiques fran\u00e7ais" + "authorized_access_point": "Enseignement acc\u00e9l\u00e9r\u00e9" }, { - "authorized_access_point": "Chirurgiens fran\u00e7ais" + "authorized_access_point": "Enseignement explicite" }, { - "authorized_access_point": "Commer\u00e7ants fran\u00e7ais" + "authorized_access_point": "Enseignement magistral" }, { - "authorized_access_point": "Communistes fran\u00e7ais" + "authorized_access_point": "Entretiens en \u00e9ducation" }, { - "authorized_access_point": "D\u00e9port\u00e9s fran\u00e7ais" + "authorized_access_point": "Herbartianisme" }, { - "authorized_access_point": "Diplomates fran\u00e7ais" + "authorized_access_point": "Hypnop\u00e9die" }, { - "authorized_access_point": "\u00c9crivains fran\u00e7ais" + "authorized_access_point": "Lesson study" }, { - "authorized_access_point": "\u00c9diteurs fran\u00e7ais" + "authorized_access_point": "Math\u00e9tique" }, { - "authorized_access_point": "\u00c9gyptologues fran\u00e7ais" + "authorized_access_point": "M\u00e9thode critique (p\u00e9dagogie)" }, { - "authorized_access_point": "Employ\u00e9s de maison fran\u00e7ais" + "authorized_access_point": "M\u00e9thode de Bell et Lancaster" }, { - "authorized_access_point": "Enseignants fran\u00e7ais" + "authorized_access_point": "M\u00e9thode des cas" }, { - "authorized_access_point": "Ethnologues fran\u00e7ais" + "authorized_access_point": "M\u00e9thode Montessori" }, { - "authorized_access_point": "\u00c9tudiants fran\u00e7ais" + "authorized_access_point": "M\u00e9thode Ramain" }, { - "authorized_access_point": "Explorateurs fran\u00e7ais" + "authorized_access_point": "P\u00e9dagogie critique" }, { - "authorized_access_point": "Fran\u00e7aises" + "authorized_access_point": "P\u00e9dagogie culturellement adapt\u00e9e" }, { - "authorized_access_point": "G\u00e9ographes fran\u00e7ais" + "authorized_access_point": "P\u00e9dagogie de soutien" }, { - "authorized_access_point": "Historiens fran\u00e7ais" + "authorized_access_point": "P\u00e9dagogie du corps" }, { - "authorized_access_point": "Hommes d'affaires fran\u00e7ais" + "authorized_access_point": "P\u00e9dagogie exp\u00e9rimentale" }, { - "authorized_access_point": "Humanistes fran\u00e7ais" + "authorized_access_point": "P\u00e9dagogie Germaine Tortel" }, { - "authorized_access_point": "Ing\u00e9nieurs fran\u00e7ais" + "authorized_access_point": "P\u00e9dagogie mus\u00e9ale" }, { - "authorized_access_point": "Ing\u00e9nieurs militaires fran\u00e7ais" + "authorized_access_point": "P\u00e9dagogie sociale" }, { - "authorized_access_point": "Intellectuels fran\u00e7ais" + "authorized_access_point": "R\u00e9citation" }, { - "authorized_access_point": "Joueurs de basket-ball fran\u00e7ais" + "authorized_access_point": "Suggestop\u00e9die" }, { - "authorized_access_point": "Joueurs de football fran\u00e7ais" + "authorized_access_point": "Technologie \u00e9ducative" }, { - "authorized_access_point": "Journalistes fran\u00e7ais" + "authorized_access_point": "Dict\u00e9es" }, { - "authorized_access_point": "Juifs fran\u00e7ais" + "authorized_access_point": "Mat\u00e9riel p\u00e9dagogique" + } + ], + "broader": [ + { + "authorized_access_point": "Sciences de l'\u00e9ducation" + } + ], + "relation_pid": { + "value": "029340578", + "type": "redirect_from" + }, + "variant_access_point": [ + "Aspect \u00e9ducatif", + "Contribution \u00e0 la p\u00e9dagogie", + "M\u00e9thodes d'enseignement", + "M\u00e9thodes p\u00e9dagogiques" + ], + "md5": "6d89888a61a1c43867cbb7cdc15941b9" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Syst\u00e8mes informatiques - Mesures de s\u00fbret\u00e9", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Internet--S\u00e9curit\u00e9--Mesures", + "source": "RVMLaval" }, { - "authorized_access_point": "Marins fran\u00e7ais" + "authorized_access_point": "Electronic data processing departments--Security measures", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85042310", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/027248062", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027248062", + "source": "IDREF" }, { - "authorized_access_point": "M\u00e9decins fran\u00e7ais" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13318381w", + "source": "BNF" }, { - "authorized_access_point": "Militaires fran\u00e7ais" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13318381" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Sous cette vedette on trouve les ouvrages sur la lutte contre la malveillance. Les ouvrages sur la lutte contre les dommages accidentels se trouvent sous Syst\u00e8mes informatiques -- Mesures de s\u00e9curit\u00e9" + ] + } + ], + "pid": "027248062", + "related": [ + { + "authorized_access_point": "Confiance num\u00e9rique" }, { - "authorized_access_point": "Mormons fran\u00e7ais" + "authorized_access_point": "Cyberd\u00e9fense" }, { - "authorized_access_point": "Otages fran\u00e7ais" + "authorized_access_point": "Hacking" }, { - "authorized_access_point": "Pharmaciens fran\u00e7ais" + "authorized_access_point": "Microordinateurs - Acc\u00e8s - Contr\u00f4le" }, { - "authorized_access_point": "Pilotes militaires fran\u00e7ais" + "authorized_access_point": "Ordinateurs - Acc\u00e8s - Contr\u00f4le" }, { - "authorized_access_point": "Pirates fran\u00e7ais" + "authorized_access_point": "Syst\u00e8mes informatiques - Mesures de s\u00fbret\u00e9 - Examens" }, { - "authorized_access_point": "Prisonniers fran\u00e7ais" + "authorized_access_point": "Virus informatiques" + } + ], + "narrower": [ + { + "authorized_access_point": "Gestion des droits num\u00e9riques" }, { - "authorized_access_point": "Protestants fran\u00e7ais" + "authorized_access_point": "Contrats intelligents" }, { - "authorized_access_point": "R\u00e9fugi\u00e9s fran\u00e7ais" + "authorized_access_point": "AltaRica (m\u00e9thode formelle)" }, { - "authorized_access_point": "Religieux fran\u00e7ais" + "authorized_access_point": "Antivirus (logiciels)" }, { - "authorized_access_point": "Restaurateurs (alimentation) fran\u00e7ais" + "authorized_access_point": "Blockchains" }, { - "authorized_access_point": "Royalistes fran\u00e7ais" + "authorized_access_point": "Captcha" }, { - "authorized_access_point": "Savants fran\u00e7ais" + "authorized_access_point": "D\u00e9tection des anomalies (informatique)" }, { - "authorized_access_point": "Scientifiques fran\u00e7ais" + "authorized_access_point": "Infrastructures \u00e0 cl\u00e9s publiques" }, { - "authorized_access_point": "Travailleurs \u00e9trangers fran\u00e7ais" + "authorized_access_point": "Protection de l'information (informatique)" }, { - "authorized_access_point": "Viticulteurs fran\u00e7ais" + "authorized_access_point": "R\u00e9seaux d'ordinateurs - Mesures de s\u00fbret\u00e9" + } + ], + "broader": [ + { + "authorized_access_point": "Cybercriminalit\u00e9" + } + ], + "variant_access_point": [ + "Cybers\u00e9curit\u00e9", + "Informatique - Mesures de s\u00fbret\u00e9", + "S\u00e9curit\u00e9 informatique", + "S\u00fbret\u00e9 des syst\u00e8mes d'information" + ], + "md5": "c5ee94d39e942a81c2441d37e2343510" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Vannerie", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "740", + "name": "Dessin, arts d\u00e9coratifs, artisanat d'art" }, { - "authorized_access_point": "Voyageurs fran\u00e7ais" + "type": "bf:ClassificationDdc", + "classificationPortion": "793", + "name": "Jeux" } ], "closeMatch": [ { + "authorized_access_point": "Basket making", "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85051757", - "source": "LCSH" - }, - "authorized_access_point": "French" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85012110", + "source": "LCSH" + } + ] }, { - "source": "RVMLaval", - "authorized_access_point": "Fran\u00e7ais" + "authorized_access_point": "Basketwork", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85012127", + "source": "LCSH" + } + ] + }, + { + "authorized_access_point": "Grass weaving", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85056513", + "source": "LCSH" + } + ] + }, + { + "authorized_access_point": "Vannerie", + "source": "RVMLaval" } ], + "identifier": "http://www.idref.fr/027255468", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027227219", + "value": "http://www.idref.fr/027255468", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb133183184", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13516282t", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Ethnologie, anthropologie, folklore", - "type": "bf:ClassificationDdc", - "classificationPortion": "390" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13516282" } ], - "authorized_access_point": "Fran\u00e7ais" - }, - { - "md5": "4a137d0e50b4305a51ba4e4a370a1d9e", - "pid": "027235548", "note": [ { + "noteType": "dataSource", "label": [ - "Nouveau petit Robert 2010", - "Le nouveau Th\u00e9o : l'encycl. catholique pour tous / M. Dubost, S. Lalanne, 2009", - "Dict. des mots de la foi chr\u00e9tienne / O. de la Brosse, A. M. Henry, P. Rouillard, 1992", - "Dict. encyclop\u00e9dique du juda\u00efsme / G. Wigoder, 1993", - "Dict. du Coran / M. A. Amir-Moezzi, 2007" - ], - "noteType": "dataSource" + "Nouveau petit Robert 1993", + "Tr\u00e9sor de la langue fran\u00e7aise", + "Dict. des termes d'art / G. Janneau, 1980" + ] + }, + { + "noteType": "general", + "label": [ + "Art de fabriquer des objets tress\u00e9s avec des fibres v\u00e9g\u00e9tales ou des tiges" + ] }, { + "noteType": "seeReference", "label": [ - "Sous cette vedette, on trouve les documents sur le je\u00fbne comme pratique religieuse. Les documents sur le je\u00fbne pratiqu\u00e9 dans un but hygi\u00e9nique ou th\u00e9rapeutique se trouvent sous Di\u00e8te", - "Peut se subdiviser par religion, confession ou secte" - ], - "noteType": "general" + "Voir aussi les vedettes du type Vannerie [adjectif ethnique]" + ] } ], - "type": "bf:Topic", - "broader": [ + "pid": "027255468", + "narrower": [ { - "authorized_access_point": "Asc\u00e8se" + "authorized_access_point": "Meubles en rotin" }, { - "authorized_access_point": "Asc\u00e9tisme" - } - ], - "related": [ + "authorized_access_point": "Objets en \u00e9corces" + }, + { + "authorized_access_point": "Paniers" + }, { - "authorized_access_point": "Car\u00eame" + "authorized_access_point": "Travail de l'osier" }, { - "authorized_access_point": "Di\u00e8te" + "authorized_access_point": "Travail de la paille" }, { - "authorized_access_point": "Gr\u00e8ves de la faim" + "authorized_access_point": "Travail des feuilles de vaquois" }, { - "authorized_access_point": "P\u00e9nitence" + "authorized_access_point": "Travail des palmes" }, { - "authorized_access_point": "Vrata" + "authorized_access_point": "Travail du raphia" } ], - "bnf_type": "sujet Rameau", - "narrower": [ + "broader": [ { - "authorized_access_point": "Je\u00fbne - Islam" + "authorized_access_point": "Artisanat de nature" }, { - "authorized_access_point": "Je\u00fbne f\u00e9d\u00e9ral" + "authorized_access_point": "Arts d\u00e9coratifs" + } + ], + "variant_access_point": [ + "Croiserie", + "Joncerie", + "Lacerie", + "Lasserie", + "Mandrerie" + ], + "md5": "8091665d2d64017946e9531c1b12a974" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Volont\u00e9", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "100", + "name": "Philosophie" }, { - "authorized_access_point": "Respirianisme" + "type": "bf:ClassificationDdc", + "classificationPortion": "150", + "name": "Psychologie, psychanalyse" } ], "closeMatch": [ { + "authorized_access_point": "Will", "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85047403", - "source": "LCSH" - }, - "authorized_access_point": "Fasting" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85146775", + "source": "LCSH" + } + ] }, { + "authorized_access_point": "Akrasia", "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh2003003108", - "source": "LCSH" - }, - "authorized_access_point": "Fasting -- Religious aspects" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2006003161", + "source": "LCSH" + } + ] }, { - "source": "RVMLaval", - "authorized_access_point": "Je\u00fbne" + "authorized_access_point": "Volont\u00e9", + "source": "RVMLaval" }, { - "source": "RVMLaval", - "authorized_access_point": "Je\u00fbne -- Aspect religieux" + "authorized_access_point": "Acrasie", + "source": "RVMLaval" } ], + "identifier": "http://www.idref.fr/027256138", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027235548", + "value": "http://www.idref.fr/027256138", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119321545", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11933815f", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)", - "type": "bf:ClassificationDdc", - "classificationPortion": "200" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11933815" } ], - "variant_access_point": [ - "Je\u00fbne - Aspect religieux", - "Je\u00fbne religieux" - ], - "authorized_access_point": "Je\u00fbne" - }, - { - "md5": "ed278d06425b22322bab28cde431bee3", - "pid": "027236226", "note": [ { + "noteType": "dataSource", "label": [ - "Encycl. universalis - http://www.universalis-edu.com (2019-04-19)", - "Dict. des sciences du langage / F. Neveu, 2011", - "Dict. de linguistique et des sciences du langage, 1994", - "Nouveau dict. encyclop\u00e9dique des sciences du langage / O. Ducrot, J.-M. Schaeffer, 1995" - ], - "noteType": "dataSource" + "Les notions philosophiques / S. Auroux, 1990", + "Vocabulaire technique et critique de la philosophie / A. Lalande, 1997", + "Grand dict. de la philosophie / M. Blay, 2003", + "Dict. de psychologie / R. Doron, F. Parot, 1991", + "Vocabulaire de la psychologie / H. Pi\u00e9ron, 2003", + "Grand dict. de la psychologie, 2002 : volition" + ] }, { + "noteType": "general", "label": [ - "Processus de perception et de production du langage chez l'enfant" - ], - "noteType": "general" + "Sous cette vedette, on trouve les documents sur les concepts philosophiques ou psychologiques de volont\u00e9 et d'absence de volont\u00e9" + ] } ], - "type": "bf:Topic", - "broader": [ + "pid": "027256138", + "related": [ { - "authorized_access_point": "Biolinguistique" + "authorized_access_point": "Assentiment (philosophie)" }, { - "authorized_access_point": "Neurolinguistique" + "authorized_access_point": "Procrastination" }, { - "authorized_access_point": "Psycholinguistique" + "authorized_access_point": "Volontarisme doxastique" }, { - "authorized_access_point": "Psychologie de l'apprentissage" - } - ], - "related": [ + "authorized_access_point": "Autonomie (philosophie)" + }, { - "authorized_access_point": "Acquisition linguistique" + "authorized_access_point": "Dieu - Volont\u00e9" }, { - "authorized_access_point": "Enfants - Langage" + "authorized_access_point": "Faiblesse (psychologie)" }, { - "authorized_access_point": "Langage" + "authorized_access_point": "Hek\u1e53n (le mot grec)" }, { - "authorized_access_point": "Langage - Compr\u00e9hension" - } - ], - "bnf_type": "sujet Rameau", - "narrower": [ + "authorized_access_point": "Inhibition" + }, { - "authorized_access_point": "Inn\u00e9isme (linguistique)" + "authorized_access_point": "Intention" }, { - "authorized_access_point": "Reconnaissance des mots" + "authorized_access_point": "Libre arbitre" }, { - "authorized_access_point": "Tableaux d'\u00e9locution" + "authorized_access_point": "Prise de d\u00e9cision" } ], - "closeMatch": [ + "broader": [ { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85074511", - "source": "LCSH" - }, - "authorized_access_point": "Language acquisition" + "authorized_access_point": "Morale" + }, + { + "authorized_access_point": "Personnalit\u00e9" }, { - "source": "RVMLaval", - "authorized_access_point": "Langage -- Acquisition" + "authorized_access_point": "Philosophie de l'action" } ], + "relation_pid": { + "value": "055334873", + "type": "redirect_from" + }, + "variant_access_point": [ + "Aboulie", + "Acrasia", + "Vouloir (morale)", + "Acrasie", + "Akrasia", + "Akrasie", + "Conation", + "Faiblesse de la volont\u00e9", + "Manque de volont\u00e9", + "Volition", + "Volont\u00e9, Manque de" + ], + "md5": "b71e6f5666c68b7abdc9196e309998b5" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Relations ext\u00e9rieures - France - 1852-1870", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027257045", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027236226", + "value": "http://www.idref.fr/027257045", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11932215j", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11933876n", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11933876" } ], - "classification": [ - { - "name": "Psychologie, psychanalyse", - "type": "bf:ClassificationDdc", - "classificationPortion": "150" - }, + "note": [ { - "type": "bf:ClassificationDdc", - "classificationPortion": "401" + "noteType": "dataSource", + "label": [ + "Laval RVM, 1983" + ] } ], - "variant_access_point": [ - "Apprentissage verbal", - "Enfants - Langage -- Acquisition", - "Langage - Acquisition", - "Langage - Apprentissage", - "Langue maternelle, Acquisition de la" + "pid": "027257045", + "narrower": [ + { + "authorized_access_point": "Plombi\u00e8res, Entrevue de (1858)" + } ], - "authorized_access_point": "Acquisition du langage" + "md5": "e5e94db995f824f6e16aceb05a2ab7c1" }, { - "md5": "e063396caed42ca1b11fdc3957dafad3", - "pid": "027243087", - "note": [ + "type": "bf:Topic", + "authorized_access_point": "V\u00e9disme", + "bnf_type": "sujet Rameau", + "classification": [ { - "label": [ - "Tr\u00e9sor de la langue fran\u00e7aise : rythmanalyse - http://atilf.atilf.fr (2022-04-06)", - "Vocabulaire d'esth\u00e9tique / \u00c9. Souriau, 1990", - "Les notions philosophiques / S. Auroux, 1990", - "Dict. de la linguistique / G. Mounin, 1974", - "Dict. de linguistique et des sciences du langage, 1994", - "Dict. de rh\u00e9torique et de po\u00e9tique / M. Aquin, G. Molini\u00e9, 1999", - "Dict. des termes litt\u00e9raires, 2005" - ], - "noteType": "dataSource" + "type": "bf:ClassificationDdc", + "classificationPortion": "200", + "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)" + } + ], + "identifier": "http://www.idref.fr/027268284", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027268284", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11934684z", + "source": "BNF" }, { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11934684" + } + ], + "note": [ + { + "noteType": "dataSource", "label": [ - "S'emploie \u00e9galement en subdivision. Cette subdivision s'applique aux langues vivantes, par ex. : Fran\u00e7ais (langue) -- Rythme" - ], - "noteType": "general" + "Dict. des religions / P. Poupard, 1984" + ] }, { + "noteType": "general", "label": [ - "Voir aussi la subdivision M\u00e9trique et rythmique aux langues anciennes, par ex. : Grec (langue) -- M\u00e9trique et rythmique" - ], - "noteType": "seeReference" + "S'emploie \u00e9galement en subdivision. Cette subdivision s'applique aux sujets religieux" + ] } ], - "type": "bf:Topic", - "broader": [ + "pid": "027268284", + "related": [ { - "authorized_access_point": "Esth\u00e9tique" + "authorized_access_point": "Brahmanisme" }, { - "authorized_access_point": "Po\u00e9tique" + "authorized_access_point": "Hindouisme" }, { - "authorized_access_point": "Prosodie (linguistique)" + "authorized_access_point": "Veda et sciences" } ], - "related": [ + "narrower": [ + { + "authorized_access_point": "V\u00e9disme - Rites et c\u00e9r\u00e9monies" + }, { - "authorized_access_point": "M\u00e9trique et rythmique" + "authorized_access_point": "Cosmogonie v\u00e9dique" }, { - "authorized_access_point": "Mouvement (esth\u00e9tique)" + "authorized_access_point": "Apsar\u0101" }, { - "authorized_access_point": "Musique - Mesure et rythme" + "authorized_access_point": "Asura" }, { - "authorized_access_point": "R\u00e9p\u00e9tition (esth\u00e9tique)" + "authorized_access_point": "Dieux v\u00e9diques" }, { - "authorized_access_point": "Versification" + "authorized_access_point": "Morale v\u00e9dique" + }, + { + "authorized_access_point": "Symbolisme v\u00e9dique" + } + ], + "broader": [ + { + "authorized_access_point": "Religions" } ], + "variant_access_point": [ + "Hindouisme ancien", + "Religion v\u00e9dique" + ], + "md5": "686bb2803b15d9fe1d434fff583378c9" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Encomiendas", "bnf_type": "sujet Rameau", - "closeMatch": [ + "classification": [ { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85074534", - "source": "LCSH" - }, - "authorized_access_point": "Language and languages--Rhythm" + "type": "bf:ClassificationDdc", + "classificationPortion": "340", + "name": "Droit" }, { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh00007545", - "source": "LCSH" - }, - "authorized_access_point": "Rhythm" - }, + "type": "bf:ClassificationDdc", + "classificationPortion": "950", + "name": "Histoire du reste du monde" + } + ], + "closeMatch": [ { - "source": "RVMLaval", - "authorized_access_point": "Langage et langues--Rythme" + "authorized_access_point": "Encomiendas (Latin America)", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85042989", + "source": "LCSH" + } + ] }, { - "source": "RVMLaval", - "authorized_access_point": "Rythme" + "authorized_access_point": "Encomiendas", + "source": "RVMLaval" } ], + "identifier": "http://www.idref.fr/027274144", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027243087", + "value": "http://www.idref.fr/027274144", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11932811t", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11935180f", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11935180" } ], - "classification": [ + "note": [ { - "name": "Philosophie", - "type": "bf:ClassificationDdc", - "classificationPortion": "100" + "noteType": "dataSource", + "label": [ + "GLU", + "Encomiendas (se subd. g\u00e9ogr.) ; Laval RVM (en ligne), 2003-07-02" + ] }, { - "type": "bf:ClassificationDdc", - "classificationPortion": "401" - }, + "noteType": "general", + "label": [ + "Institution de l'Am\u00e9rique coloniale espagnole par laquelle un conquistador recevait autorit\u00e9 sur un groupe d'autochtones dont il pouvait utiliser le travail, \u00e0 condition de les christianiser et les int\u00e9grer \u00e0 l'ordre espagnol. - L'encomienda a \u00e9t\u00e9 pratiqu\u00e9e \u00e9galement en Espagne reconquise sur les musulmans et aux Philippines" + ] + } + ], + "pid": "027274144", + "broader": [ { - "name": "Arts", - "type": "bf:ClassificationDdc", - "classificationPortion": "700" + "authorized_access_point": "Colonies espagnoles" }, { - "name": "Po\u00e9sie", - "type": "bf:ClassificationDdc", - "classificationPortion": "801" + "authorized_access_point": "Travail forc\u00e9" + } + ], + "related": [ + { + "authorized_access_point": "Travailleurs autochtones" } ], "variant_access_point": [ - "Rythmanalyse", - "Rythme (esth\u00e9tique)", - "Rythme (linguistique)", - "Rythme (po\u00e9tique)", - "Rythmique" + "Encomienda", + "Repartimiento", + "Repartimientos" ], - "authorized_access_point": "Rythme" + "md5": "2bd302c0191ead3b3bd7d139d50317db" }, { - "md5": "d6f62c7c5e68e1af29b37017fe8f3651", - "pid": "027246655", - "note": [ + "type": "bf:Topic", + "authorized_access_point": "Relations internationales - 1933-1945", + "bnf_type": "sujet Rameau", + "classification": [ { - "label": [ - "Les notions philosophiques / S. Auroux, 1990", - "Encycl. de la philosophie, 2002", - "Grand dict. de la philosophie / M. Blay, 2003", - "Dict. de philosophie / C. Godin, 2004" - ], - "noteType": "dataSource" + "type": "bf:ClassificationDdc", + "classificationPortion": "320", + "name": "Science politique" }, { - "label": [ - "S'emploie \u00e9galement en subdivision" - ], - "noteType": "general" - } - ], - "type": "bf:Topic", - "broader": [ - { - "authorized_access_point": "Philosophie - 20e si\u00e8cle" + "type": "bf:ClassificationDdc", + "classificationPortion": "900", + "name": "Histoire" } ], - "related": [ + "identifier": "http://www.idref.fr/02727991X", + "identifiedBy": [ { - "authorized_access_point": "Anthropologie ph\u00e9nom\u00e9nologique" + "type": "uri", + "value": "http://www.idref.fr/02727991X", + "source": "IDREF" }, { - "authorized_access_point": "Chair (philosophie)" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11935652k", + "source": "BNF" }, { - "authorized_access_point": "Ph\u00e9nom\u00e9nologie de l'art" - }, + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11935652" + } + ], + "note": [ { - "authorized_access_point": "Ph\u00e9nom\u00e9nologie et litt\u00e9rature" + "noteType": "dataSource", + "label": [ + "Grand Larousse universel" + ] }, { - "authorized_access_point": "Ph\u00e9nom\u00e9nologie et musique" - }, + "noteType": "general", + "label": [ + "30 janvier 1933 : A. Hitler acc\u00e8de au pouvoir. 2 septembre 1945 : fin de la seconde guerre mondiale" + ] + } + ], + "pid": "02727991X", + "narrower": [ { - "authorized_access_point": "Psychologie ph\u00e9nom\u00e9nologique" + "authorized_access_point": "Amsterdam-Pleyel, Mouvement" }, { - "authorized_access_point": "Sociologie et ph\u00e9nom\u00e9nologie" + "authorized_access_point": "Guerre mondiale (1939-1945) - Histoire diplomatique" } ], + "variant_access_point": [ + "Politique mondiale - 1933-1945" + ], + "md5": "e1c37b5c3da7cfda18de80daf132e07b" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Shiva\u00efsme", "bnf_type": "sujet Rameau", - "closeMatch": [ + "classification": [ { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85046373", - "source": "LCSH" - }, - "authorized_access_point": "Existential phenomenology" - }, + "type": "bf:ClassificationDdc", + "classificationPortion": "200", + "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)" + } + ], + "closeMatch": [ { + "authorized_access_point": "?aivism", "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85100683", - "source": "LCSH" - }, - "authorized_access_point": "Phenomenology" - }, - { - "source": "RVMLaval", - "authorized_access_point": "Ph\u00e9nom\u00e9nologie" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85123051", + "source": "LCSH" + } + ] } ], + "identifier": "http://www.idref.fr/02728607X", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027246655", + "value": "http://www.idref.fr/02728607X", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11933094c", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11936126w", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Philosophie", - "type": "bf:ClassificationDdc", - "classificationPortion": "100" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11936126" } ], - "variant_access_point": [ - "Contribution \u00e0 la ph\u00e9nom\u00e9nologie", - "Ph\u00e9nom\u00e9nologie existentielle", - "Ph\u00e9nom\u00e9nologie transcendantale", - "Philosophie ph\u00e9nom\u00e9nologique" - ], - "authorized_access_point": "Ph\u00e9nom\u00e9nologie" - }, - { - "md5": "d2214f3706c427c56628cda6898c7d4e", - "pid": "027256251", "note": [ { + "noteType": "dataSource", "label": [ - "Grand Larousse universel", - "Encycl. universalis, 1989", - "Dict. sanskrit-fran\u00e7ais / N. Stchoupak, L. Nitti, L. Renou, 1972", - "L'Inde classique : manuel des \u00e9tudes indiennes. Tome 2 / L. Renou, J. Filliozat, 1952 (\u00a7 1445-1459)", - "Dict. de la civilisation indienne / L. Fr\u00e9d\u00e9ric, 1987", - "Les notions philosophiques / S. Auroux, 1990", - "Dict. de la sagesse orientale, 1995", - "La philosophie indienne / F. Chenet, 1998", - "Les philosophies de l'Inde / J. Filliozat, 2006", - "BnF Service indien, 2017-05-15" - ], - "noteType": "dataSource" + "Grand Larousse illustr\u00e9", + "Petit Larousse illustr\u00e9 2010", + "Dict. des religions / P. Poupard, 1984 (art. : Shiva, shiva\u00efsme)", + "Encycl. des religions / F. Lenoir, Y. T. Masquelier, 1997", + "Dict. de la sagesse orientale, 1989 (art. : Shava\u00efsme)" + ] }, { + "noteType": "general", "label": [ - "\"Fait de lier, de mettre au joug ; jonction\" ; discipline spirituelle ; \u00e9cole de philosophie hindoue", - "Sous cette vedette, on trouve les documents sur le yoga en g\u00e9n\u00e9ral et en tant que doctrine formant l'un des six syst\u00e8mes philosophiques (dar\u015bana) reconnus par l'orthodoxie brahmanique. Les documents sur le yoga physique qui privil\u00e9gie les exercices de postures et de respiration se trouvent sous Hatha-yoga" - ], - "noteType": "general" - } - ], - "type": "bf:Topic", - "broader": [ - { - "authorized_access_point": "Philosophie hindoue" + "S'emploie \u00e9galement en subdivision. Cette subdivision s'applique aux sujets religieux" + ] } ], + "pid": "02728607X", "related": [ { - "authorized_access_point": "Christianisme et yoga" - }, - { - "authorized_access_point": "M\u00e9ditation - Hindouisme" + "authorized_access_point": "Shiva\u00eftes" }, { - "authorized_access_point": "Yogis" + "authorized_access_point": "Hymnes shiva\u00eftes" } ], - "bnf_type": "sujet Rameau", "narrower": [ { - "authorized_access_point": "Hatha-yoga" - }, - { - "authorized_access_point": "J\u00f1\u0101na-yoga" - }, - { - "authorized_access_point": "Karma-yoga" + "authorized_access_point": "Li\u1e45ga (hindouisme)" }, { - "authorized_access_point": "Kriy\u0101-yoga" + "authorized_access_point": "Aghor\u012b" }, { - "authorized_access_point": "Laya-yoga" + "authorized_access_point": "K\u0101p\u0101lika" }, { - "authorized_access_point": "R\u0101ja-yoga" + "authorized_access_point": "Li\u1e45g\u0101yat" }, { - "authorized_access_point": "Siddha Yoga" + "authorized_access_point": "\u015aaiva Siddh\u0101nta" }, { - "authorized_access_point": "Swara-yoga" + "authorized_access_point": "\u015aaktisme" }, { - "authorized_access_point": "Yoga nidra" + "authorized_access_point": "Shivar\u0101tri" }, { - "authorized_access_point": "Yoga tantrique" + "authorized_access_point": "Shiva\u00efsme du Cachemire" } ], - "closeMatch": [ + "broader": [ { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85149174", - "source": "LCSH" - }, - "authorized_access_point": "Yoga" + "authorized_access_point": "Hindouisme" }, { - "source": "RVMLaval", - "authorized_access_point": "Yoga" + "authorized_access_point": "Sectes hindoues" } ], + "variant_access_point": [ + "\u00c7iva\u00efsme", + "Shava\u00efsme", + "Siva\u00efsme" + ], + "md5": "457b7af9bcb06ca4c5984010ac4dc03f" + }, + { + "type": "bf:Topic", + "authorized_access_point": "D\u00e9sarmement nucl\u00e9aire", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027292916", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027256251", + "value": "http://www.idref.fr/027292916", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11933824d", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119366713", "source": "BNF" - } - ], - "classification": [ - { - "name": "Philosophie", - "type": "bf:ClassificationDdc", - "classificationPortion": "100" }, { - "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)", - "type": "bf:ClassificationDdc", - "classificationPortion": "200" - } - ], - "variant_access_point": [ - "Yoga - Aspect religieux" - ], - "authorized_access_point": "Yoga" - }, - { - "md5": "7f61058f216df78b1cc41c9e52ec2471", - "pid": "027287289", - "note": [ - { - "label": [ - "S'emploie \u00e9galement en subdivision" - ], - "noteType": "general" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11936671" } ], - "type": "bf:Topic", + "pid": "027292916", "related": [ { - "authorized_access_point": "Mariage" + "authorized_access_point": "Armes nucl\u00e9aires" + }, + { + "authorized_access_point": "Course aux armements" + }, + { + "authorized_access_point": "Non-prolif\u00e9ration nucl\u00e9aire" } ], - "bnf_type": "sujet Rameau", "narrower": [ { - "authorized_access_point": "Conciliation (divorce)" - }, - { - "authorized_access_point": "Divorc\u00e9s" + "authorized_access_point": "Mouvement antinucl\u00e9aire" }, { - "authorized_access_point": "Enfants de divorc\u00e9s" + "authorized_access_point": "Plan Rapacki" }, { - "authorized_access_point": "Remariage" - }, + "authorized_access_point": "Zones exemptes d'armes nucl\u00e9aires" + } + ], + "broader": [ { - "authorized_access_point": "R\u00e9pudiation" + "authorized_access_point": "D\u00e9sarmement" } ], - "closeMatch": [ + "variant_access_point": [ + "Armes nucl\u00e9aires - Prolif\u00e9ration", + "Armes nucl\u00e9aires et d\u00e9sarmement", + "Bombe atomique et d\u00e9sarmement", + "D\u00e9nucl\u00e9arisation", + "Prolif\u00e9ration des armes nucl\u00e9aires" + ], + "md5": "68a8415d70913ce5da50be20720f81d6" + }, + { + "type": "bf:Topic", + "authorized_access_point": "\u00c9preuves d\u00e9mat\u00e9rialis\u00e9es nationales", + "bnf_type": "sujet Rameau", + "classification": [ { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85038616", - "source": "LCSH" - }, - "authorized_access_point": "Divorce" + "type": "bf:ClassificationDdc", + "classificationPortion": "370", + "name": "Education et enseignement" }, { - "source": "RVMLaval", - "authorized_access_point": "Divorce" + "type": "bf:ClassificationDdc", + "classificationPortion": "610", + "name": "Sciences m\u00e9dicales et param\u00e9dicales" } ], + "identifier": "http://www.idref.fr/027302148", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027287289", + "value": "http://www.idref.fr/027302148", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11936233f", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11937378x", "source": "BNF" - } - ], - "classification": [ - { - "name": "Sciences sociales", - "type": "bf:ClassificationDdc", - "classificationPortion": "300" }, { - "name": "Droit", - "type": "bf:ClassificationDdc", - "classificationPortion": "340" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11937378" } ], - "variant_access_point": [ - "D\u00e9mariage", - "Dissolution du mariage", - "Mariage - Dissolution" + "pid": "027302148", + "related": [ + { + "authorized_access_point": "Internat (m\u00e9decine)" + } ], - "authorized_access_point": "Divorce" - }, - { - "md5": "c36ae06c89d379f470125bd7b1dc8cf7", - "pid": "027294358", - "note": [ + "narrower": [ { - "label": [ - "Grand Larousse universel", - "Encycl. universalis - http://www.universalis-edu.com (2013-10-24)", - "Dict. universel des litt\u00e9ratures / B. Didier, 1994", - "Dict. des termes litt\u00e9raires, 2005 : beat" - ], - "noteType": "dataSource" + "authorized_access_point": "Tests de concordance de script" } ], - "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Contre-culture" - }, - { - "authorized_access_point": "Mouvements litt\u00e9raires - \u00c9tats-Unis" - }, - { - "authorized_access_point": "Litt\u00e9rature am\u00e9ricaine - 1945-2000" + "authorized_access_point": "Questions d'examens" } ], - "related": [ - { - "authorized_access_point": "Cut-up" - }, - { - "authorized_access_point": "Psych\u00e9d\u00e9lisme" - }, + "variant_access_point": [ + "Concours de l'internat", + "Concours de l'internat de m\u00e9decine", + "ECN", + "ECNi", + "EDN", + "\u00c9preuves Classantes Nationales", + "\u00c9preuves Classantes Nationales informatis\u00e9es", + "Examen Classant National", + "Examen Classant National Obligatoire", + "iECN", + "Internat (m\u00e9decine) - Concours", + "Internat (m\u00e9decine) - Examens -- Questions", + "Internat (m\u00e9decine) - Examens, questions etc", + "Internat (m\u00e9decine) - Questions d'examens", + "Questions d'internat" + ], + "md5": "b3cfb3d8f57e91fb02553911d41dd7e9" + }, + { + "type": "bf:Topic", + "authorized_access_point": "V\u00e9rit\u00e9", + "bnf_type": "sujet Rameau", + "classification": [ { - "authorized_access_point": "Spoken word (po\u00e9sie)" + "type": "bf:ClassificationDdc", + "classificationPortion": "100", + "name": "Philosophie" } ], - "bnf_type": "sujet Rameau", "closeMatch": [ { + "authorized_access_point": "Truth", "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh88007452", - "source": "LCSH" - }, - "authorized_access_point": "Beat generation" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85138279", + "source": "LCSH" + } + ] }, { - "source": "RVMLaval", - "authorized_access_point": "Beat generation" + "authorized_access_point": "V\u00e9rit\u00e9", + "source": "RVMLaval" } ], + "identifier": "http://www.idref.fr/027308359", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027294358", + "value": "http://www.idref.fr/027308359", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11936777f", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119378816", "source": "BNF" - } - ], - "classification": [ - { - "name": "Sciences sociales", - "type": "bf:ClassificationDdc", - "classificationPortion": "300" }, { - "name": "Po\u00e9sie", - "type": "bf:ClassificationDdc", - "classificationPortion": "801" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11937881" } ], - "variant_access_point": [ - "Beatniks", - "G\u00e9n\u00e9ration beat" - ], - "authorized_access_point": "Beat generation" - }, - { - "md5": "ac666da0dce8ee13821ae5154f6b6895", - "pid": "02730440X", "note": [ { + "noteType": "dataSource", "label": [ - "Tr\u00e9sor de la langue fran\u00e7aise", - "Dict. encyclop\u00e9dique des sciences du langage / O. Ducrot, T. Todorov, 1972", - "Dict. de linguistique et des sciences du langage, 1994" - ], - "noteType": "dataSource" + "Les notions philosophiques / S. Auroux, 1990", + "Vocabulaire technique et critique de la philosophie / A. Lalande, 1997", + "Encycl. de la philosophie, 2002", + "Dict. de philosophie / C. Godin, 2004" + ] + }, + { + "noteType": "general", + "label": [ + "Sous cette vedette, on trouve les documents sur la notion de v\u00e9rit\u00e9 du point de vue de la th\u00e9orie de la connaissance. Les documents sur la notion de v\u00e9rit\u00e9 du point de vue moral se trouvent sous V\u00e9rit\u00e9 et mensonge", + "S'emploie \u00e9galement en subdivision" + ] } ], - "type": "bf:Topic", - "broader": [ + "pid": "027308359", + "related": [ { - "authorized_access_point": "Discours (linguistique)" + "authorized_access_point": "Certitude" + }, + { + "authorized_access_point": "Objectivit\u00e9" + }, + { + "authorized_access_point": "Preuve (philosophie)" + }, + { + "authorized_access_point": "Th\u00e9orie de la fiction" + }, + { + "authorized_access_point": "V\u00e9ridiction" + }, + { + "authorized_access_point": "V\u00e9rit\u00e9 et mensonge" + }, + { + "authorized_access_point": "Vraisemblance" + }, + { + "authorized_access_point": "Crit\u00e8re de v\u00e9rit\u00e9" + }, + { + "authorized_access_point": "Droit \u00e0 la v\u00e9rit\u00e9 (droit international)" + }, + { + "authorized_access_point": "Erreur" + }, + { + "authorized_access_point": "\u00c9vidence" + }, + { + "authorized_access_point": "Faillibilisme" + }, + { + "authorized_access_point": "Faux (philosophie)" + }, + { + "authorized_access_point": "Logique al\u00e9thique" }, { - "authorized_access_point": "Pragmatique" + "authorized_access_point": "Logique \u00e9pist\u00e9mique" } ], - "related": [ + "narrower": [ { - "authorized_access_point": "Actes de langage" + "authorized_access_point": "V\u00e9rit\u00e9 comme coh\u00e9rence" }, { - "authorized_access_point": "Actualisation (linguistique)" + "authorized_access_point": "V\u00e9rit\u00e9 comme consensus" }, { - "authorized_access_point": "Deixis" + "authorized_access_point": "V\u00e9rit\u00e9 comme correspondance" + } + ], + "broader": [ + { + "authorized_access_point": "Th\u00e9orie de la connaissance" } ], + "variant_access_point": [ + "Contribution au concept de v\u00e9rit\u00e9", + "V\u00e9rit\u00e9 (\u00e9pist\u00e9mologie)", + "V\u00e9rit\u00e9 (logique)", + "Vrai (philosophie)" + ], + "md5": "6e022fc525fc4b43a7f04ec40fbe3725" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Guerre de Trente Ans (1618-1648)", "bnf_type": "sujet Rameau", - "narrower": [ + "classification": [ { - "authorized_access_point": "Consignes (\u00e9ducation)" + "type": "bf:ClassificationDdc", + "classificationPortion": "940", + "name": "Histoire m\u00e9di\u00e9vale, moderne et contemporaine (sauf la France)" } ], "closeMatch": [ { - "source": "RVMLaval", - "authorized_access_point": "\u00c9nonciation (linguistique)" + "authorized_access_point": "Thirty Years' War, 1618-1648", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85134910", + "source": "LCSH" + } + ] + }, + { + "authorized_access_point": "Guerre de Trente Ans, 1618-1648", + "source": "RVMLaval" } ], + "identifier": "http://www.idref.fr/027317145", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/02730440X", + "value": "http://www.idref.fr/027317145", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11937549w", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119385761", "source": "BNF" - } - ], - "classification": [ + }, { - "type": "bf:ClassificationDdc", - "classificationPortion": "401" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11938576" } ], - "variant_access_point": [ - "Linguistique de l'\u00e9nonciation", - "Linguistique \u00e9nonciative" - ], - "authorized_access_point": "\u00c9nonciation (linguistique)" - }, - { - "md5": "5f605d4f6998394e05e4863417bdbe20", - "pid": "027328295", "note": [ { + "noteType": "dataSource", "label": [ - "Cent ans de m\u00e9thodes de lecture / C. Juan\u00e9da-Albar\u00e8de, 1998" - ], - "noteType": "dataSource" - } - ], - "type": "bf:Topic", - "broader": [ - { - "authorized_access_point": "Lecture - \u00c9tude et enseignement" + "Grand Larousse universel", + "Robert encyclop\u00e9dique des noms propres 2008", + "Encycl. universalis - http://www.universalis-edu.com (2017-06-29)", + "Dict. encyclop\u00e9dique d'histoire / M. Mourre, 1996", + "La guerre de Trente ans : 1618-1648 / H. Bogdan, 2006", + "La guerre de Trente ans / G. Livet, 1994" + ] } ], + "pid": "027317145", "related": [ { - "authorized_access_point": "Lecture - Enseignement assist\u00e9 par ordinateur" + "authorized_access_point": "D\u00e9fenestration de Prague (1618)" + }, + { + "authorized_access_point": "Guerre franco-espagnole (1635-1659)" }, { - "authorized_access_point": "Lecture - \u00c9tude et enseignement (primaire)" + "authorized_access_point": "Sainte ligue allemande (1609)" }, { - "authorized_access_point": "Tableaux d'\u00e9locution" + "authorized_access_point": "Allemagne - 1618-1648" } ], - "bnf_type": "sujet Rameau", "narrower": [ { - "authorized_access_point": "Lecture - M\u00e9thode analytique" + "authorized_access_point": "Guerre dano-su\u00e9doise (1643-1645)" + }, + { + "authorized_access_point": "Guerre de la Valteline (1620-1626)" }, { - "authorized_access_point": "Lecture - M\u00e9thode mixte" + "authorized_access_point": "Guerre de Trente Ans (1618-1648) - Op\u00e9rations militaires" + } + ], + "broader": [ + { + "authorized_access_point": "Contre-R\u00e9forme" }, { - "authorized_access_point": "Lecture - M\u00e9thode synth\u00e9tique" + "authorized_access_point": "Europe - 1517-1648" + } + ], + "variant_access_point": [ + "Trente ans, Guerre de (1618-1648)" + ], + "md5": "7f0972e479280abbe393e821e1d9c51f" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Gnosticisme", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "200", + "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)" }, { - "authorized_access_point": "Jeux de lecture" + "type": "bf:ClassificationDdc", + "classificationPortion": "930", + "name": "Pr\u00e9histoire et histoire ancienne" } ], "closeMatch": [ { + "authorized_access_point": "Gnosticism", "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85111662", - "source": "LCSH" - }, - "authorized_access_point": "Reading" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85055466", + "source": "LCSH" + } + ] }, { - "source": "RVMLaval", - "authorized_access_point": "Lecture" + "authorized_access_point": "Gnosticisme", + "source": "RVMLaval" } ], + "identifier": "http://www.idref.fr/027323552", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027328295", + "value": "http://www.idref.fr/027323552", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11939438f", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11939057m", "source": "BNF" - } - ], - "classification": [ - { - "name": "Education et enseignement", - "type": "bf:ClassificationDdc", - "classificationPortion": "370" }, { - "type": "bf:ClassificationDdc", - "classificationPortion": "401" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11939057" } ], - "variant_access_point": [ - "M\u00e9thodes d'apprentissage de la lecture", - "M\u00e9thodes de lecture" - ], - "authorized_access_point": "Lecture - M\u00e9thodes d'apprentissage" - }, - { - "md5": "4af248718ed5499456ada7e538b2e087", - "pid": "027354431", "note": [ { + "noteType": "dataSource", "label": [ - "Le corps, l'\u00e2me, l'esprit : introduction \u00e0 une anthropologie ph\u00e9nom\u00e9nologique / C. A. van Peursen, 1979", - "Corps, \u00e2me, esprit : colloque international, Cerisy-la-Salle, 1999", - "Le corps et l'esprit / R. Quilliot, 2003", - "Grand dict. de la philosophie / M. Blay, 2003 (art. : Corps)" - ], - "noteType": "dataSource" + "Encycl. universalis - http://www.universalis-edu.com (2018-08-17)", + "Le juda\u00efsme et le christianisme antique : d'Antiochus \u00c9piphane \u00e0 Constantin / M. Simon, A. Beno\u00eet, 1998" + ] }, { + "noteType": "general", "label": [ - "Sous cette vedette, on trouve les documents sur la relation entre l'esprit et le corps, con\u00e7us comme substances m\u00e9taphysiques. Les documents sur le concept m\u00e9taphysique d'esprit se trouvent sous Esprit. Les documents sur l'\u00e9tude contemporaine des ph\u00e9nom\u00e8nes mentaux, associant philosophie et recherche scientifique, se trouvent sous Philosophie de l'esprit" - ], - "noteType": "general" + "Sous cette vedette, on trouve les documents sur le mouvement de pens\u00e9e condamn\u00e9 comme h\u00e9r\u00e9sie par l'\u00c9glise dans l'Antiquit\u00e9. Les documents sur les doctrines \u00e9sot\u00e9riques proposant une voie vers le salut par la connaissance de certaines v\u00e9rit\u00e9s cach\u00e9es sur Dieu, le monde et l'homme se trouvent sous Gnose" + ] } ], - "type": "bf:Topic", - "broader": [ + "pid": "027323552", + "related": [ { - "authorized_access_point": "M\u00e9taphysique" + "authorized_access_point": "Christianisme - Relations - Gnosticisme" }, { - "authorized_access_point": "Philosophie de l'homme" - } - ], - "related": [ + "authorized_access_point": "Encratisme" + }, { - "authorized_access_point": "Chair (philosophie)" + "authorized_access_point": "Gnose" }, { - "authorized_access_point": "Corps (philosophie)" + "authorized_access_point": "Gn\u014dstik\u00f3s (le mot grec)" }, { - "authorized_access_point": "Esprit" + "authorized_access_point": "Interpr\u00e9tations gnostiques" }, { - "authorized_access_point": "Gu\u00e9rison par l'esprit" + "authorized_access_point": "N\u00e9oplatonisme" + } + ], + "narrower": [ + { + "authorized_access_point": "\u00c9on (philosophie)" }, { - "authorized_access_point": "M\u00e9decine holistique" + "authorized_access_point": "Mand\u00e9isme" }, { - "authorized_access_point": "M\u00e9decine psychosomatique" + "authorized_access_point": "Manuscrits de Medinet Madi" }, { - "authorized_access_point": "Occasionnalisme" + "authorized_access_point": "Manuscrits de Nag Hammadi" }, { - "authorized_access_point": "Parapsychologie" + "authorized_access_point": "Naass\u00e9niens" }, { - "authorized_access_point": "Philosophie de l'esprit" + "authorized_access_point": "Ophites" }, { - "authorized_access_point": "Phr\u00e9nologie" + "authorized_access_point": "Sagesse - Gnosticisme" }, { - "authorized_access_point": "Psychiatrie biologique" + "authorized_access_point": "S\u00e9thiens" }, { - "authorized_access_point": "Psychophysiologie" + "authorized_access_point": "Valentiniens" }, { - "authorized_access_point": "Spiritualisme" + "authorized_access_point": "Litt\u00e9rature gnostique" + } + ], + "broader": [ + { + "authorized_access_point": "H\u00e9r\u00e9sies chr\u00e9tiennes - 30-600 (\u00c9glise primitive)" } ], + "variant_access_point": [ + "Gnostiques" + ], + "md5": "7eeb65bcbd30ce8720e471d784ce063a" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Litt\u00e9rature - Esth\u00e9tique", "bnf_type": "sujet Rameau", - "narrower": [ + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "100", + "name": "Philosophie" + }, { - "authorized_access_point": "Esprit et cerveau" + "type": "bf:ClassificationDdc", + "classificationPortion": "801", + "name": "Po\u00e9sie" } ], "closeMatch": [ { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85085488", - "source": "LCSH" - }, - "authorized_access_point": "Mind and body" + "authorized_access_point": "Litt\u00e9rature -- Esth\u00e9tique", + "source": "RVMLaval" }, { - "source": "RVMLaval", - "authorized_access_point": "Esprit et corps" + "authorized_access_point": "Literature--Aesthetics", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85077509", + "source": "LCSH" + } + ] } ], + "identifier": "http://www.idref.fr/027328589", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027354431", + "value": "http://www.idref.fr/027328589", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11941447p", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11939457q", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Philosophie", - "type": "bf:ClassificationDdc", - "classificationPortion": "100" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11939457" } ], - "variant_access_point": [ - "\u00c2me et corps", - "Corps et \u00e2me", - "Corps et esprit" - ], - "authorized_access_point": "Esprit et corps" - }, - { - "md5": "d2f52ba71d463ec6faf99465b88ff0d3", - "pid": "027366669", "note": [ { + "noteType": "general", "label": [ - "Grand Larousse universel", - "Encycl. universalis : hassidisme moderne - http://www.universalis-edu.com (2016-04-06)", - "Dict. encycl. du juda\u00efsme / G. Wigoder, 1993" - ], - "noteType": "dataSource" + "Sous cette vedette, on trouve les documents sur l'esth\u00e9tique litt\u00e9raire en g\u00e9n\u00e9ral. Les documents sur l'esth\u00e9tique de la litt\u00e9rature d'une \u00e9poque particuli\u00e8re se trouvent sous des vedettes-mati\u00e8res du type : Litt\u00e9rature -- [Subdivision chronologique] -- Esth\u00e9tique, par ex. : Litt\u00e9rature -- 18e si\u00e8cle -- Esth\u00e9tique" + ] }, { + "noteType": "seeReference", "label": [ - "Sous cette vedette, on trouve les documents sur le courant mystique juif moderne fond\u00e9 au 18e si\u00e8cle en Podolie par le Baal Chem Tov. Les documents sur le courant mystique juif m\u00e9di\u00e9val se trouvent sous Hassidisme m\u00e9di\u00e9val. Les documents sur la secte juive - et ses membres - n\u00e9e au 4e-3e si\u00e8cle avant J.-C. se trouvent sous Hassid\u00e9ens" - ], - "noteType": "general" + "Voir aussi aux diff\u00e9rents mouvements esth\u00e9tiques, par ex. : Surr\u00e9alisme (litt\u00e9rature)", + "Voir aussi la subdivision Esth\u00e9tique aux litt\u00e9ratures et aux personnes" + ] } ], - "type": "bf:Topic", - "broader": [ + "pid": "027328589", + "related": [ + { + "authorized_access_point": "Litt\u00e9rature - Philosophie" + }, + { + "authorized_access_point": "Mouvements litt\u00e9raires" + }, + { + "authorized_access_point": "Th\u00e9orie litt\u00e9raire" + }, { - "authorized_access_point": "Sectes juives" + "authorized_access_point": "Litt\u00e9rature" } ], - "related": [ + "narrower": [ { - "authorized_access_point": "Hassidim" + "authorized_access_point": "All\u00e9gorie (litt\u00e9rature)" }, { - "authorized_access_point": "Hassidisme m\u00e9di\u00e9val" + "authorized_access_point": "Baroque litt\u00e9raire" }, { - "authorized_access_point": "Juda\u00efsme ultra-orthodoxe" + "authorized_access_point": "Biedermeier (litt\u00e9rature)" }, { - "authorized_access_point": "Mitnagdim" + "authorized_access_point": "Burlesque (litt\u00e9rature)" }, { - "authorized_access_point": "Mystique - Juda\u00efsme" + "authorized_access_point": "Canons litt\u00e9raires" }, { - "authorized_access_point": "L\u00e9gendes hassidiques" + "authorized_access_point": "Carnavalesque" }, { - "authorized_access_point": "Litt\u00e9rature hassidique" + "authorized_access_point": "Classicisme (litt\u00e9rature)" }, { - "authorized_access_point": "Nigunim" - } - ], - "bnf_type": "sujet Rameau", - "narrower": [ + "authorized_access_point": "Comique (litt\u00e9rature)" + }, { - "authorized_access_point": "Dix-neuf de Kislev" + "authorized_access_point": "Cr\u00e9ation litt\u00e9raire" }, { - "authorized_access_point": "Habad" + "authorized_access_point": "D\u00e9cadentisme" }, { - "authorized_access_point": "Hassidim de Bobova" + "authorized_access_point": "Description (litt\u00e9rature)" }, { - "authorized_access_point": "Hassidim de Bratslav" + "authorized_access_point": "Dialogisme" }, { - "authorized_access_point": "Hassidim de Gour" + "authorized_access_point": "\u00c9pique (esth\u00e9tique)" }, { - "authorized_access_point": "Hassidim de Grodzisk" + "authorized_access_point": "Fantastique (litt\u00e9rature)" }, { - "authorized_access_point": "Hassidim de Karlin" + "authorized_access_point": "Fragment (litt\u00e9rature)" }, { - "authorized_access_point": "Hassidim de Kotzk" + "authorized_access_point": "Grotesque (litt\u00e9rature)" }, { - "authorized_access_point": "Hassidim de Pshiskha" + "authorized_access_point": "Herm\u00e9tisme (litt\u00e9rature)" }, { - "authorized_access_point": "Hassidim de Ropshits-Dzik\u00f3w" + "authorized_access_point": "Illusion (litt\u00e9rature)" }, { - "authorized_access_point": "Hassidim de Ruzhin" + "authorized_access_point": "Imitation (litt\u00e9rature)" }, { - "authorized_access_point": "Hassidim de Sadigura" + "authorized_access_point": "Impressionnisme (litt\u00e9rature)" }, { - "authorized_access_point": "Hassidim de Satmar" + "authorized_access_point": "Intimisme" }, { - "authorized_access_point": "Hassidim de Skvira" + "authorized_access_point": "Lyrisme (litt\u00e9rature)" }, { - "authorized_access_point": "Hassidim de Tchernobyl" + "authorized_access_point": "Mani\u00e9risme (litt\u00e9rature)" }, { - "authorized_access_point": "Hassidim de Zanz" + "authorized_access_point": "Merveilleux (litt\u00e9rature)" }, { - "authorized_access_point": "Hassidim de Zolochev" + "authorized_access_point": "Minimalisme (litt\u00e9rature)" }, { - "authorized_access_point": "Saddikim" + "authorized_access_point": "Modernisme (litt\u00e9rature)" }, { - "authorized_access_point": "Shomer Emunim" - } - ], - "closeMatch": [ + "authorized_access_point": "N\u00e9o-classicisme (litt\u00e9rature)" + }, { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85059241", - "source": "LCSH" - }, - "authorized_access_point": "Hasidism" + "authorized_access_point": "N\u00e9o-r\u00e9alisme (litt\u00e9rature)" }, { - "source": "RVMLaval", - "authorized_access_point": "Hassidisme" - } - ], - "identifiedBy": [ + "authorized_access_point": "Neue Sachlichkeit (litt\u00e9rature)" + }, { - "type": "uri", - "value": "http://www.idref.fr/027366669", - "source": "IDREF" + "authorized_access_point": "Orientalisme (litt\u00e9rature)" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119423798", - "source": "BNF" - } - ], - "classification": [ + "authorized_access_point": "Path\u00e9tique (litt\u00e9rature)" + }, { - "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)", - "type": "bf:ClassificationDdc", - "classificationPortion": "200" - } - ], - "variant_access_point": [ - "Chassidisme", - "Dynasties hassidiques", - "H\u0332asidout", - "Hassidisme moderne", - "Mouvement hassidique" - ], - "authorized_access_point": "Hassidisme" - }, - { - "md5": "fdec54c0472a9b570efc188c04de5351", - "pid": "027389782", - "note": [ + "authorized_access_point": "Po\u00e9sie - Esth\u00e9tique" + }, { - "label": [ - "Les m\u00e9tiers de la mer / N. Deladieu, E. Pierre, 2004", - "Guide des m\u00e9tiers de la mer : 100 m\u00e9tiers pour demain / Association pour la promotion des m\u00e9tiers de la mer, 2003 [ressource \u00e9lectronique]" - ], - "noteType": "dataSource" - } - ], - "type": "bf:Topic", - "broader": [ + "authorized_access_point": "Polyphonie (litt\u00e9rature)" + }, { - "authorized_access_point": "Mer et civilisation" + "authorized_access_point": "Popliteratur" }, { - "authorized_access_point": "M\u00e9tiers" - } - ], - "related": [ + "authorized_access_point": "Postmodernisme et litt\u00e9rature" + }, { - "authorized_access_point": "Mer" + "authorized_access_point": "Primitivisme (litt\u00e9rature)" }, { - "authorized_access_point": "Plongeurs sous-marins" + "authorized_access_point": "R\u00e9alisme magique (litt\u00e9rature)" }, { - "authorized_access_point": "Ressources marines" - } - ], - "bnf_type": "sujet Rameau", - "narrower": [ + "authorized_access_point": "R\u00e9alisme socialiste (litt\u00e9rature)" + }, { - "authorized_access_point": "Armateurs" + "authorized_access_point": "R\u00e9gionalisme (litt\u00e9rature)" }, { - "authorized_access_point": "Charpentiers de marine" + "authorized_access_point": "Repr\u00e9sentation (litt\u00e9rature)" }, { - "authorized_access_point": "Gardiens de phare" + "authorized_access_point": "Rh\u00e9torique" }, { - "authorized_access_point": "Go\u00e9moniers" + "authorized_access_point": "Rococo (litt\u00e9rature)" }, { - "authorized_access_point": "Marins" + "authorized_access_point": "Roman - Esth\u00e9tique" }, { - "authorized_access_point": "Oc\u00e9anographes" + "authorized_access_point": "Romantisme (litt\u00e9rature)" }, { - "authorized_access_point": "Paludiers" + "authorized_access_point": "Style litt\u00e9raire" }, { - "authorized_access_point": "P\u00eacheurs" + "authorized_access_point": "Stylistique" }, { - "authorized_access_point": "Prud'homies de p\u00eache" - } - ], - "closeMatch": [ + "authorized_access_point": "Sublime (litt\u00e9rature)" + }, { - "source": "RVMLaval", - "authorized_access_point": "M\u00e9tiers de la mer" - } - ], - "identifiedBy": [ + "authorized_access_point": "Th\u00e9\u00e2tre (genre litt\u00e9raire) - Esth\u00e9tique" + }, { - "type": "uri", - "value": "http://www.idref.fr/027389782", - "source": "IDREF" + "authorized_access_point": "Tragi-comique (litt\u00e9rature)" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119442304", - "source": "BNF" + "authorized_access_point": "Tragique (litt\u00e9rature)" + }, + { + "authorized_access_point": "Unanimisme (mouvement litt\u00e9raire)" + }, + { + "authorized_access_point": "Variations (litt\u00e9rature)" + }, + { + "authorized_access_point": "Vraisemblance (litt\u00e9rature)" + }, + { + "authorized_access_point": "Litt\u00e9rature exp\u00e9rimentale" } ], - "classification": [ + "broader": [ { - "name": "Economie", - "type": "bf:ClassificationDdc", - "classificationPortion": "330" + "authorized_access_point": "Esth\u00e9tique" } ], "variant_access_point": [ - "Mer, M\u00e9tiers de la", - "Ressources marines - Orientation professionnelle", - "Travailleurs de la mer" + "Doctrines litt\u00e9raires", + "Esth\u00e9tique litt\u00e9raire" ], - "authorized_access_point": "M\u00e9tiers de la mer" + "md5": "74693a136b1826782df8df03a46dd4ef" }, { - "md5": "2f7b62eb1d92a80d9aad031883361398", - "pid": "027430162", - "note": [ - { - "label": [ - "M\u00e9moire et compr\u00e9hension du langage / M.-F. Ehrlich, 1994", - "Psychologie de la compr\u00e9hension du langage / J.-P. Rossi, 2009", - "The process of language understanding / G. B. Flores d'Arcais, R. J. Jarvella, 1995" - ], - "noteType": "dataSource" - } - ], "type": "bf:Topic", - "broader": [ + "authorized_access_point": "BASIC (langage de programmation)", + "bnf_type": "sujet Rameau", + "classification": [ { - "authorized_access_point": "Compr\u00e9hension" + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "identifier": "http://www.idref.fr/027330176", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027330176", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11939574k", + "source": "BNF" }, { - "authorized_access_point": "Psycholinguistique" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11939574" } ], - "related": [ + "pid": "027330176", + "narrower": [ { - "authorized_access_point": "Consignes (\u00e9ducation)" + "authorized_access_point": "Access Basic (langage de programmation)" }, { - "authorized_access_point": "Acquisition du langage" + "authorized_access_point": "BASICA (langage de programmation)" }, { - "authorized_access_point": "Langage" + "authorized_access_point": "PICK/BASIC (langage de programmation)" }, { - "authorized_access_point": "S\u00e9mantique et psychologie" - } - ], - "bnf_type": "sujet Rameau", - "narrower": [ + "authorized_access_point": "STOS Basic (langage de programmation)" + }, { - "authorized_access_point": "Intercompr\u00e9hension (linguistique)" + "authorized_access_point": "Omikron Basic (langage de programmation)" }, { - "authorized_access_point": "Reconnaissance des mots" - } - ], - "closeMatch": [ + "authorized_access_point": "MSX-Basic (langage de programmation)" + }, { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85126440", - "source": "LCSH" - }, - "authorized_access_point": "Speech, Intelligibility of" + "authorized_access_point": "GW-BASIC (langage de programmation)" }, { - "source": "RVMLaval", - "authorized_access_point": "Langage--Intelligibilit\u00e9" - } - ], - "identifiedBy": [ + "authorized_access_point": "GFA BASIC (langage de programmation)" + }, { - "type": "uri", - "value": "http://www.idref.fr/027430162", - "source": "IDREF" + "authorized_access_point": "BASIC-PLUS (langage de programmation)" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11947331g", - "source": "BNF" - } - ], - "classification": [ + "authorized_access_point": "AmigaBASIC (langage de programmation)" + }, { - "name": "Psychologie, psychanalyse", - "type": "bf:ClassificationDdc", - "classificationPortion": "150" + "authorized_access_point": "AppleSoft BASIC (langage de programmation)" }, { - "type": "bf:ClassificationDdc", - "classificationPortion": "401" + "authorized_access_point": "Microsoft Visual BASIC (langage de programmation)" + } + ], + "broader": [ + { + "authorized_access_point": "Langages de programmation" } ], "variant_access_point": [ - "Compr\u00e9hension de la parole", - "Compr\u00e9hension des langues", - "Compr\u00e9hension du langage", - "Langage - Intelligibilit\u00e9", - "Langues - Compr\u00e9hension", - "Parole - Compr\u00e9hension" + "Beginner's All-Purpose Symbolic Instruction Code (langage de programmation)" ], - "authorized_access_point": "Langage - Compr\u00e9hension" + "md5": "807cfa064db1bcf3ba2165f381d17c95" }, { - "md5": "219dd52d0c5f224379cd589be5877c81", - "pid": "027488462", - "note": [ - { - "label": [ - "Tr\u00e9sor de la langue fran\u00e7aise", - "Dict. J\u00e9sus / \u00c9cole biblique et arch\u00e9ologique fran\u00e7aise de J\u00e9rusalem, 2021 (art. : Union hypostatique ; art. : Communication des idiomes)", - "Les mots du christianisme / Le Tourneau, 2005 (art. : Union hypostatique ; art. : Communication des idiomes)", - "L'union avec Christ chez Calvin / S. K. Kim, 2013 [th\u00e8se] - https://tel.archives-ouvertes.fr (2022-05-17)" - ], - "noteType": "dataSource" - }, - { - "label": [ - "En la personne du Christ se trouvent unies la nature divine et la nature humaine : c'est l'union hypostatique ; les propri\u00e9t\u00e9s relatives \u00e0 chacune de ces deux natures du Christ entrent en communication \u00e0 travers sa personne" - ], - "noteType": "general" - } - ], "type": "bf:Topic", - "related": [ - { - "authorized_access_point": "Incarnation (christianisme)" - }, + "authorized_access_point": "Temps r\u00e9el (informatique)", + "bnf_type": "sujet Rameau", + "classification": [ { - "authorized_access_point": "P\u00e9richor\u00e8se" + "type": "bf:ClassificationDdc", + "classificationPortion": "621" } ], - "bnf_type": "sujet Rameau", "closeMatch": [ { + "authorized_access_point": "Real-time data processing", "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85063813", - "source": "LCSH" - }, - "authorized_access_point": "Hypostatic union" - }, - { - "source": "RVMLaval", - "authorized_access_point": "Union hypostatique" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85111765", + "source": "LCSH" + } + ] } ], + "identifier": "http://www.idref.fr/027333930", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027488462", + "value": "http://www.idref.fr/027333930", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11951728f", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119398403", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)", - "type": "bf:ClassificationDdc", - "classificationPortion": "200" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11939840" } ], - "variant_access_point": [ - "Communication des attributs", - "Communication des idiomes", - "Communication des propri\u00e9t\u00e9s", - "Communicatio idiomatum" - ], - "authorized_access_point": "Union hypostatique" - }, - { - "md5": "d88d4f6786871f4b7a24054cbcf6c5dd", - "pid": "02750610X", "note": [ { + "noteType": "seeReference", "label": [ - "S'emploie \u00e9galement en subdivision" - ], - "noteType": "general" + "Voir aussi aux applications, langages de programmation, syst\u00e8mes, etc. temps r\u00e9el" + ] } ], - "type": "bf:Topic", - "broader": [ - { - "authorized_access_point": "Documentation technique" - }, - { - "authorized_access_point": "Machines" - }, + "pid": "027333930", + "related": [ { - "authorized_access_point": "Produits industriels" + "authorized_access_point": "FlexRay (bus)" }, { - "authorized_access_point": "Propri\u00e9t\u00e9 industrielle" + "authorized_access_point": "Syst\u00e8mes en ligne" } ], - "related": [ + "narrower": [ { - "authorized_access_point": "Concurrence d\u00e9loyale" + "authorized_access_point": "Ordonnancement dynamique" }, { - "authorized_access_point": "Dessins et mod\u00e8les" + "authorized_access_point": "Commande en temps r\u00e9el" }, { - "authorized_access_point": "Inventions" + "authorized_access_point": "Programmation en temps r\u00e9el" }, { - "authorized_access_point": "Savoir-faire industriel" - } - ], - "bnf_type": "genre/forme Rameau", - "narrower": [ - { - "authorized_access_point": "\u00c9changes de brevets d'invention et d'information technique" + "authorized_access_point": "Projet SCEPTRE" }, { - "authorized_access_point": "Marques de commerce" + "authorized_access_point": "R\u00e9servations" }, { - "authorized_access_point": "Obtentions v\u00e9g\u00e9tales (droit)" + "authorized_access_point": "Syst\u00e8mes transactionnels" } ], - "closeMatch": [ + "broader": [ { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85098655", - "source": "LCSH" - }, - "authorized_access_point": "Patents" + "authorized_access_point": "Informatique" + } + ], + "variant_access_point": [ + "Exploitation en temps r\u00e9el", + "Ordinateurs - Exploitation en temps r\u00e9el", + "Syst\u00e8mes informatiques en temps r\u00e9el", + "Syst\u00e8mes r\u00e9actifs (informatiques)", + "Syst\u00e8mes temps r\u00e9el (informatique)", + "Temps r\u00e9el", + "Traitement en direct", + "Traitement en temps r\u00e9el" + ], + "md5": "09328571c33066ae87b32ea401e9bfab" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Relations internationales - 1945-1955", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "320", + "name": "Science politique" }, { - "source": "RVMLaval", - "authorized_access_point": "Brevets d'invention" + "type": "bf:ClassificationDdc", + "classificationPortion": "900", + "name": "Histoire" } ], + "identifier": "http://www.idref.fr/027336913", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/02750610X", + "value": "http://www.idref.fr/027336913", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb13318750q", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11940078m", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Droit", - "type": "bf:ClassificationDdc", - "classificationPortion": "340" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11940078" } ], - "variant_access_point": [ - "Brevets (droit commercial)", - "Certificats d'addition", - "Certificats d'utilit\u00e9", - "D\u00e9livrance de brevet", - "D\u00e9p\u00f4t de brevet", - "Mod\u00e8les d'utilit\u00e9" - ], - "authorized_access_point": "Brevets d'invention" - }, - { - "md5": "b6a2bec14f8bd1a4226a1f818d649e05", - "pid": "027510387", "note": [ { + "noteType": "dataSource", "label": [ - "Dict. de la pr\u00e9histoire / Encycl. universalis, 1999 (art. : Europe n\u00e9olithique et protohistorique (art) ; Europe pal\u00e9olithique (s\u00e9pultures))", - "Dict. de la pr\u00e9histoire / A. Leroi-Gourhan, 1994 : objets de parure", - "La pr\u00e9histoire / D. Vialou, 2004 : parure" - ], - "noteType": "dataSource" - } - ], - "type": "bf:Topic", - "broader": [ - { - "authorized_access_point": "Antiquit\u00e9s pr\u00e9historiques" - }, - { - "authorized_access_point": "Art pr\u00e9historique" + "Grand Larousse universel", + "Dict. encyclop\u00e9dique d'histoire / M. Mourre, 1996" + ] }, { - "authorized_access_point": "Bijoux" + "noteType": "general", + "label": [ + "2 septembre 1945 : fin de la seconde guerre mondiale. 1955 : conf\u00e9rences de Bandung (avril) et de Gen\u00e8ve (juillet)" + ] } ], - "related": [ + "pid": "027336913", + "narrower": [ { - "authorized_access_point": "Orf\u00e8vrerie pr\u00e9historique" + "authorized_access_point": "DC 3 su\u00e9dois, Affaire du (1952)" } ], + "variant_access_point": [ + "Politique mondiale - 1945-1955" + ], + "md5": "2ec58d1021c0685f323d378709cb9f75" + }, + { + "type": "bf:Topic", + "authorized_access_point": "H\u00e9breu (langue) biblique", "bnf_type": "sujet Rameau", - "narrower": [ - { - "authorized_access_point": "Bracelets pr\u00e9historiques" - }, + "classification": [ { - "authorized_access_point": "Fibules" + "type": "bf:ClassificationDdc", + "classificationPortion": "200", + "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)" }, { - "authorized_access_point": "Torques" + "type": "bf:ClassificationDdc", + "classificationPortion": "400", + "name": "Langues et linguistique" } ], "closeMatch": [ { + "authorized_access_point": "Hebrew language", "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85070226", - "source": "LCSH" - }, - "authorized_access_point": "Jewelry, Prehistoric" - }, - { - "source": "RVMLaval", - "authorized_access_point": "Bijoux pr\u00e9historiques" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85059867", + "source": "LCSH" + } + ] } ], + "identifier": "http://www.idref.fr/027345203", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027510387", + "value": "http://www.idref.fr/027345203", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119534539", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11940722x", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11940722" } ], - "classification": [ + "note": [ { - "name": "Dessin, arts d\u00e9coratifs, artisanat d'art", - "type": "bf:ClassificationDdc", - "classificationPortion": "740" + "noteType": "dataSource", + "label": [ + "Grand Larousse universel", + "Encycl. universalis - http://www.universalis-edu.com (2006-10-18)", + "Les langues du monde / A. Meillet, M. Cohen, 1981", + "Les langues dans le monde ancien et moderne : Les langues chamito-s\u00e9mitiques / J. Perrot, 1988", + "Les langues du monde / M. Sala, I. Vintila-Radulescu, 1984 (art. : H\u00e9breu)" + ] + } + ], + "pid": "027345203", + "related": [ + { + "authorized_access_point": "H\u00e9breu (langue) mishna\u00efque" }, { - "name": "Pr\u00e9histoire et histoire ancienne", - "type": "bf:ClassificationDdc", - "classificationPortion": "930" + "authorized_access_point": "Po\u00e9sie h\u00e9bra\u00efque biblique" + } + ], + "broader": [ + { + "authorized_access_point": "H\u00e9breu (langue)" } ], "variant_access_point": [ - "Bijoux - Pr\u00e9histoire", - "Bijoux de la pr\u00e9histoire", - "Parures pr\u00e9historiques", - "Pendeloques pr\u00e9historiques" + "H\u00e9breu (langue) ancien", + "H\u00e9breu (langue) classique", + "H\u00e9breu ancien (langue)", + "H\u00e9breu biblique (langue)", + "H\u00e9breu classique (langue)" ], - "authorized_access_point": "Bijoux pr\u00e9historiques" + "md5": "d37ed1d305140faee74c2522074b767e" }, { - "md5": "2c8e61ff74e0200b11c2a97449bb2a93", - "pid": "027599701", - "note": [ + "type": "bf:Topic", + "authorized_access_point": "Particules (physique)", + "bnf_type": "sujet Rameau", + "closeMatch": [ { - "label": [ - "Grand Larousse universel", - "Grand Robert de la langue fran\u00e7aise, 2001", - "Dict. encylop\u00e9dique des sciences de l'information et de la communication / B. Lamizet, A. Silem, 1997 (art. : Radio)" - ], - "noteType": "dataSource" + "authorized_access_point": "Particules (physique nucl\u00e9aire)", + "source": "RVMLaval" }, { - "label": [ - "Diffusion au moyen d'ondes radio\u00e9lectriques, d'\u00e9missions de radio ou de t\u00e9l\u00e9vision destin\u00e9es au public", - "S'emploie \u00e9galement en subdivision" - ], - "noteType": "general" + "authorized_access_point": "Particles (Nuclear physics)", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85098374", + "source": "LCSH" + } + ] } ], - "type": "bf:Topic", - "broader": [ + "identifier": "http://www.idref.fr/027355152", + "identifiedBy": [ { - "authorized_access_point": "M\u00e9dias audiovisuels" + "type": "uri", + "value": "http://www.idref.fr/027355152", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119415082", + "source": "BNF" }, { - "authorized_access_point": "T\u00e9l\u00e9communications" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11941508" + } + ], + "note": [ + { + "noteType": "seeReference", + "label": [ + "Voir aussi aux noms des particules et antiparticules" + ] } ], + "pid": "027355152", "related": [ { - "authorized_access_point": "Femmes dans l'industrie de la radiodiffusion" + "authorized_access_point": "Acc\u00e9l\u00e9rateurs de particules" + }, + { + "authorized_access_point": "Collisions (physique nucl\u00e9aire)" }, { - "authorized_access_point": "Journalisme radiophonique" + "authorized_access_point": "Lois d'\u00e9chelle (physique)" }, { - "authorized_access_point": "Politique de la radiodiffusion" + "authorized_access_point": "Matrices de m\u00e9langes" }, { - "authorized_access_point": "Radiodiffusion des d\u00e9bats" + "authorized_access_point": "Physique des hautes \u00e9nergies" } ], - "bnf_type": "sujet Rameau", "narrower": [ { - "authorized_access_point": "Publicit\u00e9 radiophonique" + "authorized_access_point": "Antinucl\u00e9ons" }, { - "authorized_access_point": "Radio" + "authorized_access_point": "Anyons" }, { - "authorized_access_point": "Radio - \u00c9metteurs et transmission" + "authorized_access_point": "Bethe-Salpeter, \u00c9quation de" }, { - "authorized_access_point": "Radio num\u00e9rique" + "authorized_access_point": "Bootstrap, Th\u00e9orie du (physique nucl\u00e9aire)" }, { - "authorized_access_point": "Radiodiffusion en modulation de fr\u00e9quence" + "authorized_access_point": "Bosons" }, { - "authorized_access_point": "Radiodiffusion en ondes d\u00e9cam\u00e9triques" + "authorized_access_point": "Chromodynamique quantique" }, { - "authorized_access_point": "Radiodiffusion internationale" + "authorized_access_point": "C\u00f4nes de lumi\u00e8re" }, { - "authorized_access_point": "Radiofr\u00e9quences" + "authorized_access_point": "Constantes de couplage" }, { - "authorized_access_point": "T\u00e9l\u00e9vision" - } - ], - "closeMatch": [ + "authorized_access_point": "D\u00e9sint\u00e9gration semileptonique" + }, { - "source": "RVMLaval", - "authorized_access_point": "Radiodiffusion" + "authorized_access_point": "Effet tunnel" }, { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85110448", - "source": "LCSH" - }, - "authorized_access_point": "Radio broadcasting" - } - ], - "identifiedBy": [ + "authorized_access_point": "Faisceaux de particules" + }, { - "type": "uri", - "value": "http://www.idref.fr/027599701", - "source": "IDREF" + "authorized_access_point": "Fonctions de structure" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119604993", - "source": "BNF" - } - ], - "classification": [ + "authorized_access_point": "Forces nucl\u00e9aires (physique)" + }, { - "name": "Sciences de l'information", - "type": "bf:ClassificationDdc", - "classificationPortion": "020" + "authorized_access_point": "Gluons" }, { - "name": "Economie", - "type": "bf:ClassificationDdc", - "classificationPortion": "330" + "authorized_access_point": "Lois d'\u00e9chelle (physique)" }, { - "name": "Audiovisuel", - "type": "bf:ClassificationDdc", - "classificationPortion": "791" - } - ], - "variant_access_point": [ - "Dans l'industrie de la radiodiffusion", - "Diffusion radiophonique", - "Industrie de la radiodiffusion", - "Radio-diffusion", - "Radiocommunication \u00e0 usage public", - "Radiocommunications \u00e0 usage public", - "Radiodiffusion - Industrie et commerce", - "Radiophonie", - "R\u00e9seaux de radiodiffusion" - ], - "authorized_access_point": "Radiodiffusion" - }, - { - "md5": "6e13625f1698d806350b3a56545c78f8", - "pid": "027652254", - "note": [ + "authorized_access_point": "Mandelstam, Repr\u00e9sentation de" + }, { - "label": [ - "Grand Robert de la langue fran\u00e7aise, 2001", - "Tr\u00e9sor de la langue fran\u00e7aise" - ], - "noteType": "dataSource" - } - ], - "type": "bf:Topic", - "broader": [ + "authorized_access_point": "Matrices densit\u00e9" + }, { - "authorized_access_point": "Patronnage (couture)" - } - ], - "related": [ + "authorized_access_point": "Moment angulaire (physique nucl\u00e9aire)" + }, { - "authorized_access_point": "V\u00eatements - Coupe" - } - ], - "bnf_type": "genre/forme Rameau", - "closeMatch": [ + "authorized_access_point": "Muographie" + }, { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85039519", - "source": "LCSH" - }, - "authorized_access_point": "Dressmaking--Patterns" + "authorized_access_point": "Neutralinos" }, { - "source": "RVMLaval", - "authorized_access_point": "Couture (Profession) -- Mod\u00e8les" - } - ], - "identifiedBy": [ + "authorized_access_point": "Nucl\u00e9ons" + }, { - "type": "uri", - "value": "http://www.idref.fr/027652254", - "source": "IDREF" + "authorized_access_point": "Particules \u00e9tranges" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119648697", - "source": "BNF" - } - ], - "classification": [ + "authorized_access_point": "Particules lourdes (physique)" + }, { - "name": "Sciences appliqu\u00e9es", - "type": "bf:ClassificationDdc", - "classificationPortion": "600" + "authorized_access_point": "Particules relativistes" }, { - "name": "Economie domestique, h\u00f4tellerie", - "type": "bf:ClassificationDdc", - "classificationPortion": "640" - } - ], - "variant_access_point": [ - "Patrons de couture", - "Patrons de v\u00eatements" - ], - "authorized_access_point": "Patrons (couture)" - }, - { - "md5": "edc45e3c869b725286942327e2428f86", - "pid": "027661504", - "note": [ + "authorized_access_point": "Partons" + }, { - "label": [ - "Les notions philosophiques / S. Auroux, 1990", - "Encycl. de la philosophie, 2002", - "Grand dict. de la philosophie / M. Blay, 2003", - "Dict. de philosophie / C. Godin, 2004" - ], - "noteType": "dataSource" - } - ], - "type": "bf:Topic", - "broader": [ + "authorized_access_point": "Pions (particules)" + }, { - "authorized_access_point": "Philosophie de l'homme" + "authorized_access_point": "Polarisation (physique nucl\u00e9aire)" }, { - "authorized_access_point": "Philosophie de la nature" - } - ], - "related": [ + "authorized_access_point": "Pomerons" + }, { - "authorized_access_point": "\u00c2me" + "authorized_access_point": "Pouvoir d'arr\u00eat (physique nucl\u00e9aire)" }, { - "authorized_access_point": "Corps" + "authorized_access_point": "Quasi-particules" }, { - "authorized_access_point": "Corps humain" + "authorized_access_point": "Rayonnement synchrotron" }, { - "authorized_access_point": "D\u00e9sir (philosophie)" + "authorized_access_point": "R\u00e9actions d'annihilation" }, { - "authorized_access_point": "Esprit et corps" - } - ], - "bnf_type": "sujet Rameau", - "narrower": [ + "authorized_access_point": "Regge, Trajectoires de" + }, { - "authorized_access_point": "Chair (philosophie)" - } - ], - "closeMatch": [ + "authorized_access_point": "R\u00e8gles de somme (physique)" + }, { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85015235", - "source": "LCSH" - }, - "authorized_access_point": "Human body (Philosophy)" + "authorized_access_point": "Schr\u00f6dinger, \u00c9quation de" }, { - "source": "RVMLaval", - "authorized_access_point": "Corps humain (Philosophie)" - } - ], - "identifiedBy": [ + "authorized_access_point": "Supersym\u00e9trie" + }, { - "type": "uri", - "value": "http://www.idref.fr/027661504", - "source": "IDREF" + "authorized_access_point": "Sym\u00e9trie unitaire" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11965587k", - "source": "BNF" + "authorized_access_point": "Tachyons" + }, + { + "authorized_access_point": "Th\u00e9orie du transport" + }, + { + "authorized_access_point": "Van Allen, Ceinture de" + }, + { + "authorized_access_point": "Violation de la r\u00e8gle CP (physique nucl\u00e9aire)" } ], - "classification": [ + "broader": [ { - "name": "Philosophie", - "type": "bf:ClassificationDdc", - "classificationPortion": "100" + "authorized_access_point": "Physique nucl\u00e9aire" } ], "variant_access_point": [ - "Corps - Philosophie", - "Corps humain - Philosophie", - "Corps humain (philosophie)" + "Anti-particules (physique)", + "Antiparticules (physique)", + "Particules \u00e9l\u00e9mentaires (physique)", + "Particules fondamentales", + "Particules nucl\u00e9aires", + "Physique des particules" ], - "authorized_access_point": "Corps (philosophie)" + "md5": "6c87ac25157ff0c19b6a46d195a0d792" }, { - "md5": "47bcc613c99f4492a0b818ddb15e7007", - "pid": "027675823", - "note": [ - { - "label": [ - "Grand Larousse universel", - "Les langues du monde / M. Sala, I. Vintila-Radulescu, 1984", - "L'aventure des langues en Occident / H. Walter, 1994", - "L'am\u00e9nagement linguistique dans le monde : luxembourgeois ; francique luxembourgeois - http://www.tlfq.ulaval.ca (2009-01-08)", - "Redde-n-ihr Pl\u00e0tt? : francique luxembourgeois - http://projetbabel.org (2009-01-08)", - "Ethnologue (15th ed.) - http://www.ethnologue.com (2006-09-12)" - ], - "noteType": "dataSource" - }, + "type": "bf:Topic", + "authorized_access_point": "PASCAL (langage de programmation)", + "bnf_type": "sujet Rameau", + "classification": [ { - "label": [ - "Dialecte allemand parl\u00e9 dans le grand-duch\u00e9 de Luxembourg. Il s'est d\u00e9velopp\u00e9 \u00e0 partir du francique mosellan" - ], - "noteType": "general" + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" } ], - "type": "bf:Topic", - "broader": [ + "identifier": "http://www.idref.fr/027355578", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027355578", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11941547z", + "source": "BNF" + }, { - "authorized_access_point": "Dialectes franciques" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11941547" } ], - "related": [ + "pid": "027355578", + "narrower": [ { - "authorized_access_point": "Dictionnaires luxembourgeois" + "authorized_access_point": "MikroPascal (langage de programmation)" }, { - "authorized_access_point": "Francique mosellan (dialecte)" + "authorized_access_point": "WEB (langage de programmation)" }, { - "authorized_access_point": "Chansons luxambourgeoises" + "authorized_access_point": "PasRo (syst\u00e8me informatique)" }, { - "authorized_access_point": "Litt\u00e9rature luxembourgeoise" + "authorized_access_point": "UCSD p-System" } ], - "bnf_type": "sujet Rameau", - "closeMatch": [ - { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh2003005414", - "source": "LCSH" - }, - "authorized_access_point": "Luxembourgish language" - }, + "broader": [ { - "source": "RVMLaval", - "authorized_access_point": "Luxembourgeois (langue)" + "authorized_access_point": "Langages de programmation" } ], + "md5": "a2c66ff2585188d8421b57d5371c58c4" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Jos\u00e9phisme", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027355985", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027675823", + "value": "http://www.idref.fr/027355985", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119667950", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119415814", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Langues et linguistique", - "type": "bf:ClassificationDdc", - "classificationPortion": "400" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11941581" } ], - "variant_access_point": [ - "Allemand (langue) - Dialectes - Luxembourg", - "Francique luxembourgeois (langue)", - "Letzburgisch (langue)", - "L\u00ebtzebuergesch (langue)", - "Luxemburgisch (langue)" - ], - "authorized_access_point": "Luxembourgeois (langue)" - }, - { - "md5": "e1e888afbb27bd73c4f6198f5c0158d2", - "pid": "027688739", "note": [ { + "noteType": "general", "label": [ - "S'emploie \u00e9galement en subdivision" - ], - "noteType": "general" + "Sous cette vedette, on trouve les ouvrages qui traitent de la politique religieuse de certains princes catholiques du XVIIIe si\u00e8cle, adeptes du despotisme \u00e9clair\u00e9. Le jos\u00e9phisme se caract\u00e9rise par l'intervention du prince dans la discipline int\u00e9rieure de l'\u00c9glise nationale, afin d'affaiblir la souverainet\u00e9 pontificale." + ] } ], - "type": "bf:Topic", + "pid": "027355985", "broader": [ { - "authorized_access_point": "Commerce ext\u00e9rieur - Droit" + "authorized_access_point": "\u00c9glise et \u00c9tat - Autriche" }, { - "authorized_access_point": "Concurrence internationale" - }, - { - "authorized_access_point": "Politique commerciale" + "authorized_access_point": "Catholicisme antiromain" }, { - "authorized_access_point": "Trait\u00e9s" + "authorized_access_point": "Despotisme \u00e9clair\u00e9" } ], - "related": [ - { - "authorized_access_point": "Commerce" - }, - { - "authorized_access_point": "R\u00e9ciprocit\u00e9 (droit)" - } + "variant_access_point": [ + "Jos\u00e9phinisme" ], + "md5": "052ec299bb83e010c2c323669cd776db" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Langages de 4e g\u00e9n\u00e9ration", "bnf_type": "sujet Rameau", - "narrower": [ - { - "authorized_access_point": "Accords commerciaux pr\u00e9f\u00e9rentiels" - }, - { - "authorized_access_point": "Accords internationaux sur les licences" - }, - { - "authorized_access_point": "Clause de la nation la plus favoris\u00e9e" - }, + "classification": [ { - "authorized_access_point": "Traitement national (droit international)" + "type": "bf:ClassificationDdc", + "classificationPortion": "621" } ], "closeMatch": [ { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh99001405", - "source": "LCSH" - }, - "authorized_access_point": "Commercial treaties" + "authorized_access_point": "Langages de 4e g\u00e9n\u00e9ration", + "source": "RVMLaval" }, { - "source": "RVMLaval", - "authorized_access_point": "Accords commerciaux" + "authorized_access_point": "Programming languages (Electronic computers)", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85107313", + "source": "LCSH" + } + ] } ], + "identifier": "http://www.idref.fr/027356493", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027688739", + "value": "http://www.idref.fr/027356493", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119677659", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11941625x", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11941625" } ], - "classification": [ + "pid": "027356493", + "narrower": [ { - "name": "Economie", - "type": "bf:ClassificationDdc", - "classificationPortion": "330" + "authorized_access_point": "ABAP (langage de programmation)" }, { - "name": "Droit", - "type": "bf:ClassificationDdc", - "classificationPortion": "340" - } - ], - "variant_access_point": [ - "Accords \u00e9conomiques", - "Accords tarifaires", - "Commerce ext\u00e9rieur - Accords", - "Conventions commerciales", - "Trait\u00e9s commerciaux", - "Trait\u00e9s de commerce" - ], - "authorized_access_point": "Accords commerciaux" - }, - { - "md5": "616e32f9ccaf4a0d42c287bb0463738e", - "pid": "027699870", - "note": [ + "authorized_access_point": "AppleScript (langage de programmation)" + }, { - "label": [ - "Sous cette vedette, on trouve les recueils de litt\u00e9rature aram\u00e9enne de divers genres" - ], - "noteType": "general" + "authorized_access_point": "NOMAD (langage de programmation)" } ], - "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Litt\u00e9rature s\u00e9mitique" - } - ], - "related": [ + "authorized_access_point": "Langages de programmation" + }, { - "authorized_access_point": "Aram\u00e9en (langue)" + "authorized_access_point": "Progiciels" }, { - "authorized_access_point": "Philologie aram\u00e9enne" + "authorized_access_point": "Logiciels" } ], - "bnf_type": "genre/forme Rameau", - "narrower": [ - { - "authorized_access_point": "Litt\u00e9rature populaire aram\u00e9enne" - }, - { - "authorized_access_point": "Litt\u00e9rature syriaque" - }, + "variant_access_point": [ + "Infocentres (informatique)", + "Info-centres (informatique)", + "Langages de quatri\u00e8me g\u00e9n\u00e9ration", + "L4G" + ], + "md5": "55e3fdbfa2e3fbb624616c8deee5a753" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Magn\u00e9toth\u00e9rapie", + "bnf_type": "sujet Rameau", + "classification": [ { - "authorized_access_point": "Po\u00e9sie aram\u00e9enne" + "type": "bf:ClassificationDdc", + "classificationPortion": "610", + "name": "Sciences m\u00e9dicales et param\u00e9dicales" } ], "closeMatch": [ { + "authorized_access_point": "Magnetotherapy", "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85006406", - "source": "LCSH" - }, - "authorized_access_point": "Aramaic literature" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85079761", + "source": "LCSH" + } + ] }, { - "source": "RVMLaval", - "authorized_access_point": "Litt\u00e9rature aram\u00e9enne" + "authorized_access_point": "Magnetic Field Therapy", + "source": "MeSH", + "identifiedBy": [ + { + "type": "uri", + "value": "https://id.nlm.nih.gov/mesh/M0522057", + "source": "MeSH" + } + ] + }, + { + "authorized_access_point": "Magn\u00e9toth\u00e9rapie", + "source": "RVMLaval" } ], + "identifier": "http://www.idref.fr/027365697", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027699870", + "value": "http://www.idref.fr/027365697", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11968617d", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11942308r", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11942308" } ], - "authorized_access_point": "Litt\u00e9rature aram\u00e9enne" - }, - { - "md5": "bbd11b5f4fb23abfec48cd81c8b9598c", - "pid": "02770940X", "note": [ { + "noteType": "dataSource", "label": [ - "Grand Larousse universel", - "Nouveau petit Robert 2008" - ], - "noteType": "dataSource" - } - ], - "type": "bf:Topic", - "broader": [ + "Vitrine linguistique - https://vitrinelinguistique.oqlf.gouv.qc.ca (2024-05-31)", + "Le nouveau dict. m\u00e9dical, 2018" + ] + }, { - "authorized_access_point": "Bijoux" + "noteType": "general", + "label": [ + "Sous cette vedette, on trouve les documents sur le traitement des maladies \u00e0 l'aide de champs magn\u00e9tiques. Les documents sur la m\u00e9decine magn\u00e9tique, courant de pens\u00e9e m\u00e9dicale datant du XVII\u00e8me si\u00e8cle, se trouvent sous M\u00e9decine magn\u00e9tique" + ] } ], + "pid": "027365697", "related": [ { - "authorized_access_point": "Montres-bracelets" - } - ], - "bnf_type": "sujet Rameau", - "narrower": [ - { - "authorized_access_point": "Bracelets br\u00e9siliens" + "authorized_access_point": "Magn\u00e9tisme animal" }, { - "authorized_access_point": "Bracelets pr\u00e9historiques" + "authorized_access_point": "M\u00e9decine magn\u00e9tique" } ], - "closeMatch": [ - { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85016233", - "source": "LCSH" - }, - "authorized_access_point": "Bracelets" - }, + "broader": [ { - "source": "RVMLaval", - "authorized_access_point": "Bracelets" + "authorized_access_point": "M\u00e9decines alternatives" } ], + "variant_access_point": [ + "Aimants - Emploi en th\u00e9rapeutique", + "Champs magn\u00e9tiques - Emploi en th\u00e9rapeutique", + "Gu\u00e9rison magn\u00e9tique", + "Magn\u00e9tisme - Emploi en th\u00e9rapeutique", + "Magn\u00e9tisme curatif", + "Magnologie", + "Th\u00e9rapeutique magn\u00e9tique" + ], + "md5": "61afbfe9b0efc21aed79fe4c5d15d924" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Investitures, Querelle des", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027368661", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/02770940X", + "value": "http://www.idref.fr/027368661", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11969386n", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119425476", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Dessin, arts d\u00e9coratifs, artisanat d'art", - "type": "bf:ClassificationDdc", - "classificationPortion": "740" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11942547" } ], - "authorized_access_point": "Bracelets (bijoux)" - }, - { - "md5": "28eb1ee05b8e00d06f2d9cf3f851ed01", - "pid": "027741060", "note": [ { + "noteType": "dataSource", "label": [ - "Lexique de politique Dalloz, 1992", - "Lexique des termes juridiques Dalloz 2015-2016 / S. Guinchard, T. Debard, 2015 (art. : D\u00e9l\u00e9gation de pouvoir) : d\u00e9l\u00e9gation de pouvoir (droit administratif)" - ], - "noteType": "dataSource" - }, + "Mourre, 1986" + ] + } + ], + "pid": "027368661", + "narrower": [ { - "label": [ - "Acte par lequel un organe transf\u00e8re une partie de ses comp\u00e9tences \u00e0 un autre organe" - ], - "noteType": "general" + "authorized_access_point": "Canossa, Entrevue de (1077)" } ], - "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Droit administratif" - }, - { - "authorized_access_point": "Droit constitutionnel" + "authorized_access_point": "Investiture (droit canonique)" }, { - "authorized_access_point": "Science politique" + "authorized_access_point": "Papaut\u00e9 - 1054-1309" } ], "related": [ { - "authorized_access_point": "Missi dominici" + "authorized_access_point": "Saint Empire romain germanique - 1056-1106 (Henri IV)" }, { - "authorized_access_point": "S\u00e9paration des pouvoirs" + "authorized_access_point": "Saint Empire romain germanique - 1106-1125 (Henri V)" } ], - "bnf_type": "sujet Rameau", - "narrower": [ - { - "authorized_access_point": "D\u00e9l\u00e9gation l\u00e9gislative" - }, - { - "authorized_access_point": "Pouvoirs exceptionnels" - } + "variant_access_point": [ + "Querelle des investitures", + "\u00c9glise et \u00c9tat - Saint Empire romain germanique - 1076-1122" ], + "md5": "4e38b7bfce0f48d1d6970366c9fa54e9" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Canadiana (objets de collection)", + "bnf_type": "sujet Rameau", "closeMatch": [ { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85036563", - "source": "LCSH" - }, - "authorized_access_point": "Delegation of powers" - }, - { - "source": "RVMLaval", - "authorized_access_point": "D\u00e9l\u00e9gation des pouvoirs (Droit administratif)" + "authorized_access_point": "Canadiana (objets de collection)", + "source": "RVMLaval" } ], + "identifier": "http://www.idref.fr/027374351", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027741060", + "value": "http://www.idref.fr/027374351", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb133189868", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11942987j", "source": "BNF" - } - ], - "classification": [ - { - "name": "Sciences politiques", - "type": "bf:ClassificationDdc", - "classificationPortion": "320" }, { - "name": "Droit", - "type": "bf:ClassificationDdc", - "classificationPortion": "340" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11942987" } ], - "variant_access_point": [ - "D\u00e9l\u00e9gation (science politique)", - "D\u00e9l\u00e9gation de comp\u00e9tence (science politique)", - "D\u00e9l\u00e9gation des pouvoirs (droit administratif)", - "D\u00e9l\u00e9gations de pouvoir administratif", - "D\u00e9l\u00e9gations de signature" - ], - "authorized_access_point": "D\u00e9l\u00e9gation des pouvoirs (science politique)" - }, - { - "md5": "6457a0bb137ac5f26cd7b7b05ea2939a", - "pid": "027741125", "note": [ { + "noteType": "general", "label": [ - "Dict. des synonymes et mots de sens voisin / B. du Chazaud, 2003", - "Vocabulaire juridique / G. Cornu, 2007", - "Lexique des termes juridiques 2015-2016 / S. Guinchard, T. Debard, 2015", - "Petit dict. du droit canonique / J. Werckmeister, 1993 : D\u00e9position" - ], - "noteType": "dataSource" - }, - { - "label": [ - "S'emploie \u00e9galement en subdivision" - ], - "noteType": "general" + "Sous cette vedette, on trouve les ouvrages qui traitent d'objets, tels que documents historiques, livres, objets d'art, reliques, etc., qui concernent le Canada, sa civilisation ou sa culture, ou qui en sont caract\u00e9ristiques" + ] } ], - "type": "bf:Topic", + "pid": "027374351", "broader": [ { - "authorized_access_point": "Hommes d'\u00c9tat" - }, - { - "authorized_access_point": "Hommes politiques - Responsabilit\u00e9 p\u00e9nale" - } - ], - "related": [ - { - "authorized_access_point": "Crimes et d\u00e9lits politiques" - }, - { - "authorized_access_point": "Parlements (tribunaux)" + "authorized_access_point": "Canada - Histoire" } ], + "md5": "fa801759f0d1bf7b84166bf06c1f189e" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Blocus continental", "bnf_type": "sujet Rameau", - "narrower": [ - { - "authorized_access_point": "R\u00e9vocation populaire" - } - ], "closeMatch": [ { + "authorized_access_point": "Continental System (Economic blockade)", "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85064607", - "source": "LCSH" - }, - "authorized_access_point": "Impeachments" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85031555", + "source": "LCSH" + } + ] }, { - "source": "RVMLaval", - "authorized_access_point": "Destitution, Proc\u00e9dure de" + "authorized_access_point": "Blocus continental", + "source": "RVMLaval" } ], + "identifier": "http://www.idref.fr/027376982", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027741125", + "value": "http://www.idref.fr/027376982", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119719121", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119431898", "source": "BNF" - } - ], - "classification": [ - { - "name": "Sciences politiques", - "type": "bf:ClassificationDdc", - "classificationPortion": "320" }, { - "name": "Droit", - "type": "bf:ClassificationDdc", - "classificationPortion": "340" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11943189" } ], - "variant_access_point": [ - "Chefs d'\u00c9tat - Destitution", - "D\u00e9position (droit)", - "Destitution (droit constitutionnel)", - "Destitution, Proc\u00e9dure de", - "Hommes politiques - Destitution", - "Impeachment", - "Mise en accusation des chefs d'\u00c9tat", - "Proc\u00e9dure de destitution" - ], - "authorized_access_point": "Destitution" - }, - { - "md5": "320771ddc84efd97e99ddacbc4d1c197", - "pid": "027765369", "note": [ { + "noteType": "general", "label": [ - "Wikip\u00e9dia - https://fr.wikipedia.org (2022-07-21)", - "A lexical atlas of the Hutsul dialects of the Ukrainian language, 1996", - "One Europe, many nations : an historical dict. of European national groups / J.-B. Minahan, 2000 (art. : Carpatho-Rusyns) : Hutsuls" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Population montagnarde vivant essentiellement dans la cha\u00eene des Carpates ukrainiennes et dans les r\u00e9gions voisines de Ruth\u00e9nie subcarpathique et de Bucovine septentrionale" - ], - "noteType": "general" + "Sous cette vedette, on trouve les ouvrages sur l'ensemble des mesures prises par Napol\u00e9on Ier pour fermer \u00e0 la Grande-Bretagne tous les ports du continent" + ] } ], - "type": "bf:Topic", + "pid": "027376982", "broader": [ { - "authorized_access_point": "Ruth\u00e8nes" - } - ], - "related": [ + "authorized_access_point": "Politique et gouvernement - Europe - 1789-1815" + }, + { + "authorized_access_point": "Blocus" + }, { - "authorized_access_point": "Trombita" + "authorized_access_point": "France - 1799-1815 (Consulat et Empire)" } ], + "md5": "4e56533033cc6e7e0630a21e12e04e89" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Circuits int\u00e9gr\u00e9s - Masques", "bnf_type": "sujet Rameau", - "closeMatch": [ - { - "source": "RVMLaval", - "authorized_access_point": "Houtsoules" - }, - { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85062771", - "source": "LCSH" - }, - "authorized_access_point": "Hutsuls" - } - ], + "identifier": "http://www.idref.fr/027391396", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027765369", + "value": "http://www.idref.fr/027391396", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119737855", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11944384b", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11944384" } ], - "classification": [ + "pid": "027391396", + "broader": [ { - "name": "Ethnologie, anthropologie, folklore", - "type": "bf:ClassificationDdc", - "classificationPortion": "390" + "authorized_access_point": "Masques (\u00e9lectronique)" } ], - "variant_access_point": [ - "Goutsoules", - "Guculs", - "Gutsules", - "Gutsuls", - "Gutzuls", - "Hootzools", - "Houtzoules", - "Hucules", - "Huculs", - "Hutsules", - "Hutsuls", - "Hutzules", - "Hutzuls", - "Huzulen", - "Huzules", - "Huzuls" - ], - "authorized_access_point": "Houtsoules" + "md5": "709007fb32b8baadfda9342ba7ab67bb" }, { - "md5": "09a9aaccee376b61eda9a6d6bdc16363", - "pid": "027785084", - "note": [ - { - "label": [ - "Grand Larousse universel", - "Tr\u00e9sor de la langue fran\u00e7aise", - "Nouveau petit Robert 2009" - ], - "noteType": "dataSource" - } - ], "type": "bf:Topic", - "broader": [ - { - "authorized_access_point": "Expression" - }, - { - "authorized_access_point": "Parole" - } - ], - "related": [ - { - "authorized_access_point": "Culture vocale" - }, - { - "authorized_access_point": "Diction" - }, - { - "authorized_access_point": "Prononciation" - }, - { - "authorized_access_point": "Tableaux d'\u00e9locution" - } - ], + "authorized_access_point": "Annonciation", "bnf_type": "sujet Rameau", - "narrower": [ + "classification": [ { - "authorized_access_point": "Ventriloquie" + "type": "bf:ClassificationDdc", + "classificationPortion": "200", + "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)" } ], "closeMatch": [ { + "authorized_access_point": "Mary, Blessed Virgin, Saint--Annunciation", "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85042633", - "source": "LCSH" - }, - "authorized_access_point": "Elocution" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85081693", + "source": "LCSH" + } + ] }, { - "source": "RVMLaval", - "authorized_access_point": "\u00c9locution" + "authorized_access_point": "Marie, Sainte Vierge -- Annonciation", + "source": "RVMLaval" } ], + "identifier": "http://www.idref.fr/027396924", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027785084", + "value": "http://www.idref.fr/027396924", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11975298m", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11944811h", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11944811" } ], - "classification": [ + "note": [ { - "type": "bf:ClassificationDdc", - "classificationPortion": "401" + "noteType": "dataSource", + "label": [ + "Grand Larousse universel", + "Th\u00e9o, 2009", + "Les mots du christianisme / D. Le Tourneau, 2005", + "Dict. des mots de la foi chr\u00e9tienne / O. de La Brosse, A. M. Henry, P. Rouillard, 1992" + ] + } + ], + "pid": "027396924", + "related": [ + { + "authorized_access_point": "Christ-Emmanuel" } ], "variant_access_point": [ - "Articulation (\u00e9locution)", - "D\u00e9bit (\u00e9locution)" + "Annonce faite \u00e0 Marie", + "Annonciation \u00e0 la Vierge Marie" ], - "authorized_access_point": "\u00c9locution" + "md5": "ba875a5d8b858753db143b3ad48d2c05" }, { - "md5": "a6b4ae4c7dc1b32374309573a4a0a2b7", - "pid": "027793974", - "note": [ + "type": "bf:Topic", + "authorized_access_point": "Psychologie du temps", + "bnf_type": "sujet Rameau", + "classification": [ { - "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures allemandes", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la vedette Litt\u00e9rature allemande, qui sert de vedette mod\u00e8le. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires allemands" - ], - "noteType": "general" + "type": "bf:ClassificationDdc", + "classificationPortion": "150", + "name": "Psychologie, psychanalyse" } ], - "type": "bf:Temporal", - "related": [ + "closeMatch": [ { - "authorized_access_point": "Litt\u00e9rature allemande - 1050-1350 (moyen haut-allemand)" + "authorized_access_point": "Time--Psychological aspects", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2008112897", + "source": "LCSH" + } + ] + }, + { + "authorized_access_point": "Temps -- Aspect psychologique", + "source": "RVMLaval" } ], - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/02739770X", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027793974", + "value": "http://www.idref.fr/02739770X", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119759945", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119448674", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11944867" } ], - "classification": [ + "pid": "02739770X", + "related": [ { - "name": "Langues et linguistique", - "type": "bf:ClassificationDdc", - "classificationPortion": "400" + "authorized_access_point": "Attente" }, { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "authorized_access_point": "Temps (psychanalyse)" } ], - "authorized_access_point": "1050-1350(moyen haut-allemand)" - }, - { - "md5": "f59538c5b5ed1bd32fcefb584c635c70", - "pid": "027794016", - "note": [ + "narrower": [ { - "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures anglaises", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la vedette Litt\u00e9rature anglaise, qui sert de vedette mod\u00e8le. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires anglais" - ], - "noteType": "general" - } - ], - "type": "bf:Temporal", - "related": [ + "authorized_access_point": "Flux (psychologie)" + }, + { + "authorized_access_point": "Perception du temps" + }, { - "authorized_access_point": "Anglais (langue) - +* 1100......- 1500......+:1100-1500: (moyen anglais)" + "authorized_access_point": "Perspective temporelle" }, { - "authorized_access_point": "Litt\u00e9rature anglaise - 1100-1500 (moyen anglais)" + "authorized_access_point": "Anticipation (psychologie)" } ], + "variant_access_point": [ + "Temps - Psychologie", + "Temps - Aspect psychologique" + ], + "md5": "1697b72ab99b91d2ec280b837420253f" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Tenriky\u014d", "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "authorized_access_point": "Tenrikyo", + "source": "LCA", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/names/n50072712", + "source": "LCA" + } + ] + } + ], + "identifier": "http://www.idref.fr/027415252", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027794016", + "value": "http://www.idref.fr/027415252", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11975996v", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11946162z", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11946162" } ], - "authorized_access_point": "1100-1500(moyen anglais)" - }, - { - "md5": "4c3f92fdb4c60044f15ccad2b451fe8a", - "pid": "027794687", "note": [ { + "noteType": "dataSource", "label": [ - "Dict. encyclop\u00e9dique d'histoire / M. Mourre, 1996" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Laval RVM (en ligne), 2012-10-16." - ], - "noteType": "dataNotFound" - }, + "Dict. encycl. des religions, 1993" + ] + } + ], + "pid": "027415252", + "related": [ { - "label": [ - "2 septembre 1945 : fin de la Seconde guerre mondiale", - "S'emploie uniquement en subdivision chronologique [sans subd. g\u00e9ogr.] \u00e0 tous sujets noms communs et noms propres, \u00e0 l'exception des personnes et des sujets pour lesquels il existe un d\u00e9coupage chronologique sp\u00e9cifique, par ex. : Canada -- 1914-1945" - ], - "noteType": "general" + "authorized_access_point": "Teodori" } ], - "type": "bf:Temporal", "broader": [ { - "authorized_access_point": "20e si\u00e8cle" + "authorized_access_point": "Sectes shinto\u00efstes" } ], - "related": [ + "md5": "05d2f90e4f0a07ccf978cfae75dc2c4b" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Pr\u00e9romantisme", + "bnf_type": "sujet Rameau", + "classification": [ { - "authorized_access_point": "1870-1914" + "type": "bf:ClassificationDdc", + "classificationPortion": "700", + "name": "Arts (sauf litt\u00e9rature)" }, { - "authorized_access_point": "Histoire universelle - 1914-1945" + "type": "bf:ClassificationDdc", + "classificationPortion": "801", + "name": "Litt\u00e9rature g\u00e9n\u00e9rale" } ], - "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "authorized_access_point": "Pr\u00e9romantisme", + "source": "RVMLaval" + } + ], + "identifier": "http://www.idref.fr/02743141X", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027794687", + "value": "http://www.idref.fr/02743141X", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11976044c", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11947424g", "source": "BNF" - } - ], - "relation_pid": { - "type": "redirect_from", - "value": "028658531" - }, - "classification": [ + }, { - "name": "Histoire", - "type": "bf:ClassificationDdc", - "classificationPortion": "900" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11947424" } ], - "variant_access_point": [ - "1900-1945 (subdivision)" - ], - "authorized_access_point": "1900-1945" - }, - { - "md5": "05a59d3956c22ff4cc21f6b8f4e0056e", - "pid": "027794903", "note": [ { + "noteType": "dataSource", "label": [ - "Dict. encyclop\u00e9dique d'histoire / M. Mourre, 1996" - ], - "noteType": "dataSource" - }, + "Grand Larousse universel", + "Encycl. universalis (art. : Romantisme) - http://www.universalis-edu.com (2013-11-14)", + "Vocabulaire d'esth\u00e9tique / E. Souriau, 1990", + "Dict. des lettres fran\u00e7aises. Le XVIIIe si\u00e8cle / G. Grente, F. Moureau, 1995", + "Dict. des termes litt\u00e9raires, 2005 (art. : Romantisme)", + "Dict. des litt\u00e9ratures / P. Van Tieghem, 1984", + "Dict. du litt\u00e9raire / P. Aron, D. Saint-Jacques, A. Viala, 2002 (art. : Romantisme) : pr\u00e9-romantisme" + ] + } + ], + "pid": "02743141X", + "broader": [ { - "label": [ - "Laval RVM (en ligne), 2012-10-16" - ], - "noteType": "dataNotFound" + "authorized_access_point": "Civilisation - Europe - 18e si\u00e8cle" }, { - "label": [ - "19 juillet 1870 : la France d\u00e9clare la guerre \u00e0 la Prusse ; 20 septembre 1870 : entr\u00e9e de l'arm\u00e9e italienne \u00e0 Rome. 28 juillet 1914 : d\u00e9but de la Premi\u00e8re guerre mondiale", - "S'emploie uniquement en subdivision chronologique [sans subd. g\u00e9ogr.] \u00e0 tous sujets noms communs et noms propres, \u00e0 l'exception des personnes et des sujets pour lesquels il existe un d\u00e9coupage chronologique sp\u00e9cifique, par ex. : Allemagne -- 1871-1918" - ], - "noteType": "general" + "authorized_access_point": "Romantisme" } ], - "type": "bf:Temporal", - "broader": [ + "narrower": [ { - "authorized_access_point": "1800-...." + "authorized_access_point": "Sturm und Drang" } ], - "related": [ + "variant_access_point": [ + "Mouvement pr\u00e9romantique", + "Pr\u00e9-romantisme" + ], + "md5": "e868efb41eb3556edf3302a2197bb8ba" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Psychologie de la pri\u00e8re", + "bnf_type": "sujet Rameau", + "classification": [ { - "authorized_access_point": "19e si\u00e8cle" + "type": "bf:ClassificationDdc", + "classificationPortion": "150", + "name": "Psychologie, psychanalyse" }, { - "authorized_access_point": "1900-1945" - }, + "type": "bf:ClassificationDdc", + "classificationPortion": "200", + "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)" + } + ], + "closeMatch": [ { - "authorized_access_point": "Histoire universelle - 1870-1914" + "authorized_access_point": "Prayer -- Psychology", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85106118", + "source": "LCSH" + } + ] }, { - "authorized_access_point": "Litt\u00e9rature fran\u00e7aise - 1870-1914" + "authorized_access_point": "Pri\u00e8re -- Psychologie", + "source": "RVMLaval" } ], - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027431444", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027794903", + "value": "http://www.idref.fr/027431444", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119760629", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11947427h", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11947427" } ], - "relation_pid": { - "type": "redirect_from", - "value": "086114468" - }, - "classification": [ + "pid": "027431444", + "related": [ { - "name": "Histoire et g\u00e9ographie (g\u00e9n\u00e9ralit\u00e9s)", - "type": "bf:ClassificationDdc", - "classificationPortion": "900" + "authorized_access_point": "Mystique - Psychologie" + }, + { + "authorized_access_point": "Pri\u00e8re" + } + ], + "broader": [ + { + "authorized_access_point": "Psychologie religieuse" } ], "variant_access_point": [ - "1870-1914 (subdivision)" + "Pri\u00e8re - Aspect psychologique", + "Pri\u00e8re - Psychologie" ], - "authorized_access_point": "1870-1914" + "md5": "172c2f26aee90dea8c1a8b1c5a01dcbd" }, { - "md5": "470fa238803b41a0a61e324ac3ddaf63", - "pid": "027794954", - "note": [ + "type": "bf:Topic", + "authorized_access_point": "Servage", + "bnf_type": "sujet Rameau", + "classification": [ { - "label": [ - "S'emploie uniquement en subdivision chronologique [sans subd. g\u00e9ogr.] \u00e0 la vedette Cin\u00e9ma et aux vedettes d\u00e9signant des genres cin\u00e9matographiques" - ], - "noteType": "general" + "type": "bf:ClassificationDdc", + "classificationPortion": "330", + "name": "\u00c9conomie politique" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "340", + "name": "Droit" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "940", + "name": "Histoire de l'Europe" } ], - "type": "bf:Temporal", - "related": [ + "closeMatch": [ + { + "authorized_access_point": "Serfdom", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85120215", + "source": "LCSH" + } + ] + }, { - "authorized_access_point": "Cin\u00e9ma - 1929-1945" + "authorized_access_point": "Servage", + "source": "RVMLaval" } ], - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027436683", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027794954", + "value": "http://www.idref.fr/027436683", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11976066p", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119478388", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Audiovisuel", - "type": "bf:ClassificationDdc", - "classificationPortion": "791" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11947838" } ], - "authorized_access_point": "1929-1945" - }, - { - "md5": "7fbcbe811a57ee625f0d3e95fcc0e34d", - "pid": "027794962", "note": [ { + "noteType": "dataSource", "label": [ - "S'emploie uniquement en subdivision chronologique [sans subd. g\u00e9ogr.] \u00e0 la vedette Cin\u00e9ma et aux vedettes d\u00e9signant des genres cin\u00e9matographiques" - ], - "noteType": "general" + "Grand Larousse universel", + "Encycl. universalis - http://www.universalis-edu.com (2012-02-24)", + "Dict. encyclop\u00e9dique d'histoire / M. Mourre, 1996" + ] } ], - "type": "bf:Temporal", - "related": [ + "pid": "027436683", + "broader": [ + { + "authorized_access_point": "Conditions sociales - Europe - 1492-1789" + }, { - "authorized_access_point": "Cin\u00e9ma - 1945-1960" + "authorized_access_point": "Conditions rurales" + }, + { + "authorized_access_point": "Travail forc\u00e9" } ], - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "related": [ { - "type": "uri", - "value": "http://www.idref.fr/027794962", - "source": "IDREF" + "authorized_access_point": "Esclavage" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119760671", - "source": "BNF" + "authorized_access_point": "Mainmorte" + }, + { + "authorized_access_point": "P\u00e9onage" + }, + { + "authorized_access_point": "Propri\u00e9t\u00e9 fonci\u00e8re" + }, + { + "authorized_access_point": "Serfs" + }, + { + "authorized_access_point": "Serfs - \u00c9mancipation" } ], - "classification": [ + "narrower": [ { - "name": "Audiovisuel", - "type": "bf:ClassificationDdc", - "classificationPortion": "791" + "authorized_access_point": "Colonat" } ], - "authorized_access_point": "1945-1960" + "variant_access_point": [ + "Condition servile", + "Questalit\u00e9" + ], + "md5": "a180893187a4039a8eaf1df296085953" }, { - "md5": "85718db3c11c62080dfa28e992460878", - "pid": "027794970", - "note": [ - { - "label": [ - "S'emploie uniquement en subdivision chronologique [sans subd. g\u00e9ogr.] \u00e0 la vedette Cin\u00e9ma et aux vedettes d\u00e9signant des genres cin\u00e9matographiques" - ], - "noteType": "general" - } - ], - "type": "bf:Temporal", - "related": [ + "type": "bf:Topic", + "authorized_access_point": "Enfants - Droits", + "bnf_type": "sujet Rameau", + "classification": [ { - "authorized_access_point": "Cin\u00e9ma - 1960-1990" + "type": "bf:ClassificationDdc", + "classificationPortion": "340", + "name": "Droit" } ], - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027455092", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027794970", + "value": "http://www.idref.fr/027455092", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11976068c", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11949245c", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11949245" } ], - "classification": [ + "pid": "027455092", + "related": [ { - "name": "Audiovisuel", - "type": "bf:ClassificationDdc", - "classificationPortion": "791" + "authorized_access_point": "Enfants - Statut juridique" + }, + { + "authorized_access_point": "Protection de l'enfance" + }, + { + "authorized_access_point": "Traite des enfants" } ], - "authorized_access_point": "1960-1990" - }, - { - "md5": "33af7a1894bb303d356f6f18189e41db", - "pid": "027795926", - "note": [ + "narrower": [ { - "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures polonaises", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la vedette Litt\u00e9rature polonaise, celle-ci servant de vedette mod\u00e8le. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires polonais" - ], - "noteType": "general" + "authorized_access_point": "Relations personnelles (droits de l'enfant)" + }, + { + "authorized_access_point": "Aide juridique aux enfants" + }, + { + "authorized_access_point": "Conseils municipaux d'enfants" } ], - "type": "bf:Temporal", - "related": [ + "broader": [ { - "authorized_access_point": "Litt\u00e9rature polonaise - 1918-1945" + "authorized_access_point": "Droits de l'homme" } ], - "bnf_type": "sujet Rameau", - "identifiedBy": [ - { - "type": "uri", - "value": "http://www.idref.fr/027795926", - "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15521981p", - "source": "BNF" - } + "variant_access_point": [ + "Droits de l'enfant", + "Droits des enfants", + "Droits des mineurs" ], - "relation_pid": { - "type": "redirect_from", - "value": "113932618" - }, + "md5": "69ea4971e432e453e6aebe51727b1b18" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Manuscrits mexicains pr\u00e9colombiens", + "bnf_type": "sujet Rameau", "classification": [ { - "name": "Histoire et critique litt\u00e9raires", "type": "bf:ClassificationDdc", - "classificationPortion": "800" - } - ], - "authorized_access_point": "1918-1945" - }, - { - "md5": "18506a976f437cbb613506de2668b4b1", - "pid": "027796817", - "note": [ + "classificationPortion": "020", + "name": "Sciences de l'information" + }, { - "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures espagnoles et portugaises", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec les vedettes Litt\u00e9rature espagnole et Litt\u00e9rature portugaise, qui servent de vedettes mod\u00e8les. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires espagnols et portugais" - ], - "noteType": "general" + "type": "bf:ClassificationDdc", + "classificationPortion": "930", + "name": "Arch\u00e9ologie. Histoire ancienne" } ], - "type": "bf:Temporal", - "related": [ - { - "authorized_access_point": "Espagnol (langue) - +* 1500......- 1700......+:1500-1700: (P\u00e9riode classique)" - }, + "closeMatch": [ { - "authorized_access_point": "Litt\u00e9rature espagnole - 1500-1700 (P\u00e9riode classique)" + "authorized_access_point": "Manuscripts, Mexican (Pre-Columbian)", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85080746", + "source": "LCSH" + } + ] }, { - "authorized_access_point": "Litt\u00e9rature portugaise - 1500-1700 (P\u00e9riode classique)" + "authorized_access_point": "Manuscrits mexicains pr\u00e9colombiens", + "source": "RVMLaval" } ], - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027461599", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027796817", + "value": "http://www.idref.fr/027461599", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11976189m", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119497374", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11949737" } ], - "authorized_access_point": "1500-1700(P\u00e9riode classique)" - }, - { - "md5": "215ab160a48f287a88affd57b670874c", - "pid": "027796930", - "note": [ + "pid": "027461599", + "related": [ { - "label": [ - "Ne pas utiliser : employer les subdivisions 1900-1945, Histoire -- 1900-1945 ou les vedettes construites comprenant la subdivision 1918-1939" - ], - "noteType": "seeReference" + "authorized_access_point": "\u00c9criture pictographique indienne d'Am\u00e9rique" } ], - "type": "bf:Temporal", - "deleted": "2023-08-08T14:28:41.182452+00:00", - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "broader": [ { - "type": "uri", - "value": "http://www.idref.fr/027796930", - "source": "IDREF" + "authorized_access_point": "Manuscrits mexicains" } ], - "authorized_access_point": "1918-1939" + "variant_access_point": [ + "Codex mexicains pr\u00e9colombiens", + "Codex pictographiques mexicains", + "Codex pr\u00e9colombiens mexicains", + "Indiens d'Am\u00e9rique - Mexique - Manuscrits pr\u00e9colombiens", + "Manuscrits pictographiques mexicains", + "Manuscrits pr\u00e9colombiens mexicains" + ], + "md5": "6ef33807f37808c4d5651d5c12ed1c06" }, { - "md5": "b267858a4b6e93d997eea036808ce5f1", - "pid": "027797619", - "note": [ - { - "label": [ - "Ne pas utiliser : employer les subdivisions Moyen \u00e2ge (ACN 211948), Histoire -- Moyen \u00e2ge (ACN 218067) ou les vedettes construites comprenant la subdivision 476-1492" - ], - "noteType": "seeReference" - } - ], - "type": "bf:Temporal", - "deleted": "2023-08-08T14:28:41.276336+00:00", + "type": "bf:Topic", + "authorized_access_point": "Twrah (le mot h\u00e9breu)", "bnf_type": "sujet Rameau", - "identifiedBy": [ + "classification": [ { - "type": "uri", - "value": "http://www.idref.fr/027797619", - "source": "IDREF" + "type": "bf:ClassificationDdc", + "classificationPortion": "400", + "name": "Langues et linguistique" } ], - "authorized_access_point": "476-1492" - }, - { - "md5": "2a8f99a372d55e63dfe6fc62289be74d", - "pid": "027798461", - "note": [ + "closeMatch": [ { - "label": [ - "Ne pas utiliser : employer les subdivisions 1900-1945, Histoire -- 1900-1945 ou les vedettes construites comprenant la subdivision 1889-1930" - ], - "noteType": "seeReference" + "authorized_access_point": "Torah (The Hebrew word)", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85136098", + "source": "LCSH" + } + ] + }, + { + "authorized_access_point": "Torah (Le mot h\u00e9bra\u00efque)", + "source": "RVMLaval" } ], - "type": "bf:Temporal", - "deleted": "2023-08-08T14:28:41.375163+00:00", - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027478033", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027798461", + "value": "http://www.idref.fr/027478033", "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119509560", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11950956" } ], - "authorized_access_point": "1889-1930" - }, - { - "md5": "586f85a7c97edcb275b65af8dd17bad3", - "pid": "027798682", "note": [ { + "noteType": "dataSource", + "label": [ + "National library of Israel - http://web.nli.org.il (2017-02-01)", + "Milwn \u1e25ada\u0161 / \u02beA. \u02beEben-\u0160w\u0161an, 1965", + "Le Talmud et la litt\u00e9rature rabbinique / C. Y. Lambert, 1997", + "BnF Service h\u00e9breu, 2017-02-01" + ] + }, + { + "noteType": "general", "label": [ - "Ne pas utiliser : employer les subdivisions 1500-1800, Histoire -- 1500-1800 ou les vedettes construites comprenant la subdivision 1648-1789" - ], - "noteType": "seeReference" + "Le mot Torah a plusieurs acceptions : il correspond au Pentateuque ou Loi \u00e9crite du juda\u00efsme et \u00e0 la Loi orale, Torah orale, constitu\u00e9e des commentaires explicatifs des pr\u00e9ceptes contenus dans le Pentateuque" + ] } ], - "type": "bf:Temporal", - "deleted": "2023-08-08T14:28:41.485675+00:00", - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "pid": "027478033", + "broader": [ { - "type": "uri", - "value": "http://www.idref.fr/027798682", - "source": "IDREF" + "authorized_access_point": "H\u00e9breu (langue) - Vocabulaire" } ], - "authorized_access_point": "1648-1789" + "variant_access_point": [ + "Thora (le mot h\u00e9breu)", + "Torah (le mot h\u00e9breu)" + ], + "md5": "2c9a8b7d1b78591be039f62cf455fd68" }, { - "md5": "9a9a27a84296352ad601e8fa30b87766", - "pid": "027799395", - "note": [ + "type": "bf:Topic", + "authorized_access_point": "Syndicalisme", + "bnf_type": "sujet Rameau", + "closeMatch": [ { - "label": [ - "Ne pas utiliser : employer les subdivisions 1900-1945, Histoire -- 1900-1945 ou les vedettes construites comprenant la subdivision 1918-1933" - ], - "noteType": "seeReference" + "authorized_access_point": "Syndicalisme", + "source": "RVMLaval" + }, + { + "authorized_access_point": "Syndicalism", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85131626", + "source": "LCSH" + } + ] } ], - "type": "bf:Temporal", - "deleted": "2023-08-08T14:28:41.593466+00:00", - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027481352", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027799395", + "value": "http://www.idref.fr/027481352", "source": "IDREF" - } - ], - "authorized_access_point": "1918-1933 (r\u00e9publique de weimar)" - }, - { - "md5": "c47a5273bed0d6c1f50d0d6a2463e1c1", - "pid": "027799409", - "note": [ + }, { - "label": [ - "Ne pas utiliser : employer les subdivisions 1900-1945, Histoire -- 1900-1945 ou les vedettes construites comprenant la subdivision 1918-1938" - ], - "noteType": "seeReference" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13318723t", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13318723" } ], - "type": "bf:Temporal", - "deleted": "2023-08-08T14:28:41.670485+00:00", - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "pid": "027481352", + "related": [ { - "type": "uri", - "value": "http://www.idref.fr/027799409", - "source": "IDREF" + "authorized_access_point": "Travailleurs" + }, + { + "authorized_access_point": "Coordinations" + }, + { + "authorized_access_point": "Militantisme" } ], - "authorized_access_point": "1918-1938" - }, - { - "md5": "9ddfc6e3ee5f77824ea9c9d4591b51d8", - "pid": "027799425", - "note": [ + "narrower": [ { - "label": [ - "Ne pas utiliser : employer les subdivisions 20e si\u00e8cle, Histoire -- 20e si\u00e8cle ou les vedettes construites comprenant la subdivision 1939-1975" - ], - "noteType": "seeReference" + "authorized_access_point": "Action directe" + }, + { + "authorized_access_point": "Bourses du travail" + }, + { + "authorized_access_point": "Syndicalisation" + }, + { + "authorized_access_point": "Syndicalisme r\u00e9volutionnaire" + }, + { + "authorized_access_point": "Syndicalistes" + }, + { + "authorized_access_point": "Anarcho-syndicalisme" } ], - "type": "bf:Temporal", - "deleted": "2023-08-08T14:28:41.752508+00:00", - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "broader": [ { - "type": "uri", - "value": "http://www.idref.fr/027799425", - "source": "IDREF" + "authorized_access_point": "Mouvement ouvrier" + }, + { + "authorized_access_point": "Syndicats" } ], - "authorized_access_point": "1939-1975 (f. Franco)" + "variant_access_point": [ + "Action syndicale", + "Activit\u00e9s syndicales", + "Mouvement syndical" + ], + "md5": "592d50b3626c3cdd1f9f7fa725861037" }, { - "md5": "b1f7ce2f37b1374dee20a426f797bb2f", - "pid": "027799433", - "note": [ + "type": "bf:Topic", + "authorized_access_point": "Gouvernement f\u00e9d\u00e9ral - Canada", + "bnf_type": "sujet Rameau", + "classification": [ { - "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures espagnoles, catalanes et galiciennes" - ], - "noteType": "general" + "type": "bf:ClassificationDdc", + "classificationPortion": "320", + "name": "Science politique" } ], - "type": "bf:Temporal", - "related": [ + "closeMatch": [ { - "authorized_access_point": "Litt\u00e9rature catalane - 1939-1975" + "authorized_access_point": "Federal government--Canada", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2008103642", + "source": "LCSH" + } + ] }, { - "authorized_access_point": "Litt\u00e9rature espagnole - 1939-1975" + "authorized_access_point": "Gouvernement f\u00e9d\u00e9ral -- Canada", + "source": "RVMLaval" } ], - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027486753", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027799433", + "value": "http://www.idref.fr/027486753", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15586264m", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13318731f", "source": "BNF" - } - ], - "relation_pid": { - "type": "redirect_from", - "value": "120074303" - }, - "classification": [ + }, { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13318731" } ], - "authorized_access_point": "1939-1975" - }, - { - "md5": "c59a35e4d5f82b6152804d9e3ee04676", - "pid": "027804038", "note": [ { + "noteType": "general", "label": [ - "S'emploie uniquement en subdivision chronologique [sans subd. g\u00e9ogr.] \u00e0 la vedette Cin\u00e9ma et aux vedettes d\u00e9signant des genres cin\u00e9matographiques" - ], - "noteType": "general" + "Peut se subdiviser par le nom des provinces" + ] } ], - "type": "bf:Temporal", - "related": [ + "pid": "027486753", + "narrower": [ { - "authorized_access_point": "Cin\u00e9ma - 1895-1929" + "authorized_access_point": "Relations fiscales intergouvernementales - Canada" } ], + "variant_access_point": [ + "Relations f\u00e9d\u00e9rales-provinciales (Canada)" + ], + "md5": "3d42a8b380d08c01fe8e4f6463b10b73" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Hydrologie urbaine - Informatique", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027493032", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027804038", + "value": "http://www.idref.fr/027493032", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11976743z", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11952058p", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Audiovisuel", - "type": "bf:ClassificationDdc", - "classificationPortion": "791" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11952058" } ], - "authorized_access_point": "1895-1929" - }, - { - "md5": "d1e1ba8c5e56e22cbec9ee6a29ed03bf", - "pid": "027804186", "note": [ { + "noteType": "dataNotFound", "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures espagnoles, catalanes, galiciennes et vietnamiennes", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec les vedettes Litt\u00e9rature catalane, Litt\u00e9rature espagnole et Litt\u00e9rature vietnamienne, celles-ci servant de vedettes mod\u00e8les. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires espagnols, catalans, galiciens et vietnamiens" - ], - "noteType": "general" + "LCSH, 1994-03. - Laval RVM, 1994-02" + ] } ], - "type": "bf:Temporal", - "related": [ - { - "authorized_access_point": "Litt\u00e9rature catalane - 1975-...." - }, - { - "authorized_access_point": "Litt\u00e9rature espagnole - 1975-...." - }, + "pid": "027493032", + "md5": "fac6756244a3ab681839bfedd74b9d4c" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Dragonnades", + "bnf_type": "sujet Rameau", + "closeMatch": [ { - "authorized_access_point": "Litt\u00e9rature vietnamienne - 1975-...." + "authorized_access_point": "Dragonnades", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85039286", + "source": "LCSH" + } + ] } ], - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027495213", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027804186", + "value": "http://www.idref.fr/027495213", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119767569", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11952229n", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11952229" } ], - "classification": [ + "pid": "027495213", + "broader": [ { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "authorized_access_point": "Protestants - Pers\u00e9cutions" + }, + { + "authorized_access_point": "France - 1643-1715 (Louis XIV)" } ], - "authorized_access_point": "1975-...." + "md5": "610380e7b46e8acae13acc4d2111084b" }, { - "md5": "f38ef2f44cc52cccd0f6f614d0a0b79a", - "pid": "027804232", - "note": [ + "type": "bf:Topic", + "authorized_access_point": "Int\u00e9gration \u00e9conomique - Europe de l'Ouest", + "bnf_type": "sujet Rameau", + "classification": [ { - "label": [ - "Ne pas utiliser : employer les subdivisions 1900-1945 ; Histoire -- 1900-1945 ; Histoire -- 1939-1945 (Guerre mondiale) [ACN 787424] : aux noms des armes militaires ; Histoire -- 1940-1945 [ACN 162259] : aux noms de lieux fran\u00e7ais ; ou les vedettes construites comprenant la subdivision 1939-1945" - ], - "noteType": "seeReference" + "type": "bf:ClassificationDdc", + "classificationPortion": "330", + "name": "Economie" } ], - "type": "bf:Temporal", - "deleted": "2023-08-08T14:28:46.891848+00:00", - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027495922", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027804232", + "value": "http://www.idref.fr/027495922", "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119522796", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11952279" } ], - "authorized_access_point": "1939-1945" - }, - { - "md5": "af23c8c245e4895254ebbd4861882789", - "pid": "027804380", - "note": [ + "pid": "027495922", + "narrower": [ { - "label": [ - "Ne pas utiliser : employer les subdivisions 19e si\u00e8cle, Histoire -- 19e si\u00e8cle ou les vedettes construites comprenant la subdivision 1849-1870" - ], - "noteType": "seeReference" + "authorized_access_point": "Politique \u00e9conomique - Pays de l'Union europ\u00e9enne" + }, + { + "authorized_access_point": "Plan Schuman" + }, + { + "authorized_access_point": "Politique agricole - Pays de l'Union europ\u00e9enne" } ], - "type": "bf:Temporal", - "deleted": "2023-08-08T14:28:41.850206+00:00", - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "broader": [ { - "type": "uri", - "value": "http://www.idref.fr/027804380", - "source": "IDREF" + "authorized_access_point": "Int\u00e9gration \u00e9conomique - Europe" + } + ], + "related": [ + { + "authorized_access_point": "Europe de l'Ouest" } ], - "authorized_access_point": "1849-1870" + "variant_access_point": [ + "Grand march\u00e9 europ\u00e9en", + "March\u00e9 commun europ\u00e9en", + "March\u00e9 int\u00e9rieur europ\u00e9en", + "March\u00e9 unique europ\u00e9en" + ], + "md5": "a7f052890f7c8ca77767ffccd1ac2871" }, { - "md5": "624b2dfc22b718da6f2b81728defb981", - "pid": "027805158", - "note": [ + "type": "bf:Topic", + "authorized_access_point": "Phylog\u00e9nie", + "bnf_type": "sujet Rameau", + "classification": [ { - "label": [ - "Ne pas utiliser : employer les subdivisions 19e si\u00e8cle, Histoire -- 19e si\u00e8cle ou les vedettes construites comprenant la subdivision 1837-1901" - ], - "noteType": "seeReference" + "type": "bf:ClassificationDdc", + "classificationPortion": "570", + "name": "Sciences de la vie" } ], - "type": "bf:Temporal", - "deleted": "2023-08-08T14:28:41.984200+00:00", - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "closeMatch": [ { - "type": "uri", - "value": "http://www.idref.fr/027805158", - "source": "IDREF" + "authorized_access_point": "Phylogeny", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85101498", + "source": "LCSH" + } + ] } ], - "authorized_access_point": "1837-1901" - }, - { - "md5": "075f81db93526ddcf819cde9a136500c", - "pid": "027805220", - "note": [ + "identifier": "http://www.idref.fr/02750333X", + "identifiedBy": [ { - "label": [ - "Encycl. universalis - http://www.universalis-edu.com (2018-03-21)", - "Encycl. of African-American culture and history / C. A. Palmer, 2005" - ], - "noteType": "dataSource" + "type": "uri", + "value": "http://www.idref.fr/02750333X", + "source": "IDREF" }, { - "label": [ - "Sous cette vedette, on trouve les documents sur les citoyens noirs am\u00e9ricains. Les documents sur les Noirs r\u00e9sidant aux \u00c9tats-Unis, toutes nationalit\u00e9s confondues, se trouvent sous des vedettes-mati\u00e8re telles que : Noirs -- \u00c9tats-Unis ; Noirs -- [Subdivision de sujet] -- \u00c9tats-Unis ; etc" - ], - "noteType": "general" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11952878h", + "source": "BNF" }, { - "label": [ - "Voir aussi les vedettes du type : [Guerre] -- Noirs am\u00e9ricains ; [Force arm\u00e9e] -- Noirs am\u00e9ricains, par ex. : \u00c9tats-Unis -- 1861-1865 (Guerre de S\u00e9cession) -- Noirs am\u00e9ricains", - "Voir aussi la subdivision Et les noirs am\u00e9ricains aux collectivit\u00e9s et aux personnes" - ], - "noteType": "seeReference" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11952878" } ], - "type": "bf:Topic", - "broader": [ + "note": [ { - "authorized_access_point": "Ethnologie - \u00c9tats-Unis" + "noteType": "dataSource", + "label": [ + "Encycl. Larousse - http://www.larousse.fr/encyclopedie (2010-06-02)", + "Dict. des sciences animales / C. Meyer - http://dico-sciences-animales.cirad.fr (2010-06-02)", + "TermSciences (art. : Phylogen\u00e8se) - http://www.termsciences.fr (2010-06-02)", + "Dict. de biologie / J. Berthet, 2006 (art. : Phylogen\u00e8se ; Phylog\u00e9nie)", + "Dict. raisonn\u00e9 de biologie, 2003 (art. : Phylogen\u00e8se ; Phylog\u00e9nie)" + ] }, { - "authorized_access_point": "Noirs" + "noteType": "seeReference", + "label": [ + "Voir aussi la subdivision Analyse cladistique aux \u00eatres vivants", + "Voir aussi la subdivision \u00c9volution aux \u00eatres vivants, parties du corps et produits chimiques (biomol\u00e9cules)" + ] } ], + "pid": "02750333X", "related": [ { - "authorized_access_point": "Africains" - }, - { - "authorized_access_point": "Allemands d'origine noire am\u00e9ricaine" + "authorized_access_point": "Analyse cladistique" }, { - "authorized_access_point": "Cuisine noire am\u00e9ricaine" + "authorized_access_point": "\u00c9volution" }, { - "authorized_access_point": "Danse noire am\u00e9ricaine" + "authorized_access_point": "\u00c9volution (biologie)" }, { - "authorized_access_point": "Et les noirs am\u00e9ricains" + "authorized_access_point": "G\u00e9n\u00e9alogie" }, { - "authorized_access_point": "Fonds sp\u00e9ciaux - Noirs am\u00e9ricains" + "authorized_access_point": "Homologie (biologie)" }, { - "authorized_access_point": "Franc-ma\u00e7onnerie noire am\u00e9ricaine" + "authorized_access_point": "Loi biog\u00e9n\u00e9tique fondamentale" }, { - "authorized_access_point": "Humour noir am\u00e9ricain" + "authorized_access_point": "Ontogen\u00e8se" }, { - "authorized_access_point": "Noirs am\u00e9ricains - Conditions sociales" + "authorized_access_point": "Parent\u00e9" }, { - "authorized_access_point": "Noirs am\u00e9ricains - Droits" - }, - { - "authorized_access_point": "Noirs am\u00e9ricains - Histoire" - }, - { - "authorized_access_point": "Noirs am\u00e9ricains - Identit\u00e9 collective" - }, - { - "authorized_access_point": "Noirs am\u00e9ricains - Langues" - }, + "authorized_access_point": "Phylog\u00e9nie mol\u00e9culaire" + } + ], + "broader": [ { - "authorized_access_point": "Noirs am\u00e9ricains - Politique et gouvernement" - }, + "authorized_access_point": "Sciences naturelles - Classification" + } + ], + "variant_access_point": [ + "Arbres g\u00e9n\u00e9alogiques", + "Arbres phylog\u00e9n\u00e9tiques", + "Lign\u00e9e", + "Phylogen\u00e8se", + "Phylum" + ], + "md5": "75e7ea3be6ec8ee685361a42cdfef599" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Civilisation - France", + "bnf_type": "sujet Rameau", + "classification": [ { - "authorized_access_point": "Noirs am\u00e9ricains - Et les Africains" - }, + "type": "bf:ClassificationDdc", + "classificationPortion": "944", + "name": "Histoire de la France (depuis 486)" + } + ], + "closeMatch": [ { - "authorized_access_point": "Noirs am\u00e9ricains - Et les Indiens d'Am\u00e9rique" + "authorized_access_point": "France--Civilization", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85051184", + "source": "LCSH" + } + ] }, { - "authorized_access_point": "Noirs am\u00e9ricains - Et les Juifs" - }, + "authorized_access_point": "France--Civilisation", + "source": "RVMLaval" + } + ], + "identifier": "http://www.idref.fr/027506762", + "identifiedBy": [ { - "authorized_access_point": "Noirs am\u00e9ricains - Religion" + "type": "uri", + "value": "http://www.idref.fr/027506762", + "source": "IDREF" }, { - "authorized_access_point": "Noirs am\u00e9ricains dans la culture populaire" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11953151s", + "source": "BNF" }, { - "authorized_access_point": "Philosophie noire am\u00e9ricaine" - }, + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11953151" + } + ], + "note": [ { - "authorized_access_point": "Presse noire am\u00e9ricaine" - }, + "noteType": "seeReference", + "label": [ + "Voir aussi la subdivision Influence fran\u00e7aise aux groupes ethniques et sujets noms communs appropri\u00e9s (artistiques, culturels, litt\u00e9raires et de civilisation en g\u00e9n\u00e9ral)" + ] + } + ], + "pid": "027506762", + "related": [ { - "authorized_access_point": "Universit\u00e9s noires am\u00e9ricaines" + "authorized_access_point": "\u00c9quipements culturels fran\u00e7ais" }, { - "authorized_access_point": "Contes noirs am\u00e9ricains" + "authorized_access_point": "Influence fran\u00e7aise" } ], - "bnf_type": "sujet Rameau", "narrower": [ { - "authorized_access_point": "Cow-boys noirs am\u00e9ricains" - }, - { - "authorized_access_point": "Abolitionnistes noirs am\u00e9ricains" - }, - { - "authorized_access_point": "Agriculteurs noirs am\u00e9ricains" + "authorized_access_point": "Art - France" }, { - "authorized_access_point": "Anciens combattants noirs am\u00e9ricains" + "authorized_access_point": "Cuisine fran\u00e7aise" }, { - "authorized_access_point": "Anthropologues noirs am\u00e9ricains" + "authorized_access_point": "Droit - Influence fran\u00e7aise" }, { - "authorized_access_point": "Artistes noirs am\u00e9ricains" + "authorized_access_point": "Francit\u00e9" }, { - "authorized_access_point": "Athl\u00e8tes noirs am\u00e9ricains" + "authorized_access_point": "Vin de France" }, { - "authorized_access_point": "Biblioth\u00e9caires noirs am\u00e9ricains" + "authorized_access_point": "Litt\u00e9rature fran\u00e7aise" }, { - "authorized_access_point": "Boxeurs noirs am\u00e9ricains" - }, + "authorized_access_point": "Musique traditionnelle - France" + } + ], + "variant_access_point": [ + "Civilisation fran\u00e7aise", + "Culture fran\u00e7aise" + ], + "md5": "8fd2f2148102c46817bdaf70371b79c8" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Encycliques sociales", + "bnf_type": "sujet Rameau", + "classification": [ { - "authorized_access_point": "Cadres noirs am\u00e9ricains" - }, + "type": "bf:ClassificationDdc", + "classificationPortion": "200", + "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)" + } + ], + "identifier": "http://www.idref.fr/027516652", + "identifiedBy": [ { - "authorized_access_point": "Catholiques noirs am\u00e9ricains" + "type": "uri", + "value": "http://www.idref.fr/027516652", + "source": "IDREF" }, { - "authorized_access_point": "Clerg\u00e9 noir am\u00e9ricain" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11954008m", + "source": "BNF" }, { - "authorized_access_point": "Coiffeurs noirs am\u00e9ricains" - }, + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11954008" + } + ], + "note": [ { - "authorized_access_point": "Communistes noirs am\u00e9ricains" + "noteType": "dataSource", + "label": [ + "Th\u00e9o, 1989" + ] }, { - "authorized_access_point": "Consommateurs noirs am\u00e9ricains" - }, + "noteType": "dataNotFound", + "label": [ + "LCSH, 2000-03. - Laval RVM, 2000-01" + ] + } + ], + "pid": "027516652", + "broader": [ { - "authorized_access_point": "Courtepointiers noirs am\u00e9ricains" - }, + "authorized_access_point": "\u00c9glise catholique - Doctrine sociale" + } + ], + "md5": "f32315eb92598cbf145250b0b82781d3" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Orient, Question d' (Asie centrale)", + "bnf_type": "sujet Rameau", + "classification": [ { - "authorized_access_point": "Criminels noirs am\u00e9ricains" - }, + "type": "bf:ClassificationDdc", + "classificationPortion": "950", + "name": "Histoire du reste du monde" + } + ], + "closeMatch": [ { - "authorized_access_point": "Diplomates noirs am\u00e9ricains" + "authorized_access_point": "Eastern question (Central Asia)", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85040619", + "source": "LCSH" + } + ] }, { - "authorized_access_point": "\u00c9conomistes noirs am\u00e9ricains" - }, + "authorized_access_point": "Orient, Question d' (Asie centrale)", + "source": "RVMLaval" + } + ], + "identifier": "http://www.idref.fr/027519546", + "identifiedBy": [ { - "authorized_access_point": "\u00c9crivains noirs am\u00e9ricains" + "type": "uri", + "value": "http://www.idref.fr/027519546", + "source": "IDREF" }, { - "authorized_access_point": "Enfants noirs am\u00e9ricains" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11954245c", + "source": "BNF" }, { - "authorized_access_point": "Enseignants noirs am\u00e9ricains" - }, + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11954245" + } + ], + "note": [ { - "authorized_access_point": "\u00c9piscopaliens noirs am\u00e9ricains" + "noteType": "dataSource", + "label": [ + "La Russie et la tentation de l'Orient / L. de Meaux, 2010", + "Dict. de la Russie / P. Cauchy, 2008 (art. : Asie centrale)", + "Le royaume de l'insolence : l'Afghanistan, 1504-2001 / M. Barry, 2002", + "Encycl. of Russian hist. / J. R. Millar, 2003 (art. : Central Asia)", + "Historical dict. of Afghanistan / L. W. Adamec, 2003 : Great Game", + "Historical dict. of the British Empire / J. S. Olson, R. Shadle, 1996 : Great Game" + ] }, { - "authorized_access_point": "\u00c9tudiants noirs am\u00e9ricains" - }, + "noteType": "general", + "label": [ + "Rivalit\u00e9 anglo-russe en Asie centrale (surnomm\u00e9e le \"Grand Jeu\"), qui a dur\u00e9 de la guerre russo-persane de 1804-1813 \u00e0 la signature de la Convention anglo-russe de 1907 (l'expression Grand Jeu a aussi \u00e9t\u00e9 utilis\u00e9e pour la rivalit\u00e9 des puissances occidentales en Chine au d\u00e9but du 20e si\u00e8cle)" + ] + } + ], + "pid": "027519546", + "broader": [ { - "authorized_access_point": "Familles noires am\u00e9ricaines" + "authorized_access_point": "Relations ext\u00e9rieures - Russie - 1801-1917" }, { - "authorized_access_point": "Gullahs" - }, + "authorized_access_point": "Asie centrale - 19e si\u00e8cle" + } + ], + "narrower": [ { - "authorized_access_point": "Historiens noirs am\u00e9ricains" + "authorized_access_point": "Guerre anglo-afghane (1839-1842)" }, { - "authorized_access_point": "Hommes d'affaires noirs am\u00e9ricains" - }, + "authorized_access_point": "Guerre anglo-afghane (1878-1880)" + } + ], + "variant_access_point": [ + "Asie centrale, Question d'", + "Grand Jeu (Asie centrale)", + "Great Game (Asie centrale)", + "Question d'Asie centrale", + "Question d'Orient (Asie centrale)" + ], + "md5": "751972009d4c977a85064e69a2b55cf5" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Mouvements pacifistes", + "bnf_type": "sujet Rameau", + "classification": [ { - "authorized_access_point": "Hommes politiques noirs am\u00e9ricains" + "type": "bf:ClassificationDdc", + "classificationPortion": "300", + "name": "Sciences sociales" }, { - "authorized_access_point": "Homosexuels noirs am\u00e9ricains" - }, + "type": "bf:ClassificationDdc", + "classificationPortion": "320", + "name": "Sciences politiques" + } + ], + "closeMatch": [ { - "authorized_access_point": "Intellectuels noirs am\u00e9ricains" + "authorized_access_point": "Peace movements", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85098950", + "source": "LCSH" + } + ] }, { - "authorized_access_point": "Inventeurs noirs am\u00e9ricains" + "authorized_access_point": "Peace -- Societies, etc", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85098945", + "source": "LCSH" + } + ] }, { - "authorized_access_point": "Jeunesse noire am\u00e9ricaine" + "authorized_access_point": "Mouvements pacifistes", + "source": "RVMLaval" }, { - "authorized_access_point": "Joueurs de basket-ball noirs am\u00e9ricains" - }, + "authorized_access_point": "Paix -- Associations", + "source": "RVMLaval" + } + ], + "identifier": "http://www.idref.fr/027519686", + "identifiedBy": [ { - "authorized_access_point": "Journalistes noirs am\u00e9ricains" + "type": "uri", + "value": "http://www.idref.fr/027519686", + "source": "IDREF" }, { - "authorized_access_point": "Juges noirs am\u00e9ricains" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119542530", + "source": "BNF" }, { - "authorized_access_point": "Juifs noirs am\u00e9ricains" - }, + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11954253" + } + ], + "note": [ { - "authorized_access_point": "Marins noirs am\u00e9ricains" + "noteType": "dataSource", + "label": [ + "Les mouvements pacifistes am\u00e9ricains et fran\u00e7ais, hier et aujourd'hui : actes du colloque des 5, 6 et 7 avril 2006 \u00e0 l'Universit\u00e9 de Savoie / F. McCollum Feeley, 2007" + ] }, { - "authorized_access_point": "M\u00e9decins noirs am\u00e9ricains" - }, + "noteType": "seeReference", + "label": [ + "Voir aussi la subdivision Mouvements contestataires aux guerres" + ] + } + ], + "pid": "027519686", + "related": [ { - "authorized_access_point": "M\u00e9thodistes noirs am\u00e9ricains" + "authorized_access_point": "Droit \u00e0 la paix" }, { - "authorized_access_point": "Militaires noirs am\u00e9ricains" + "authorized_access_point": "Mouvements contestataires" }, { - "authorized_access_point": "Militants politiques noirs am\u00e9ricains" - }, + "authorized_access_point": "Pacifistes" + } + ], + "narrower": [ { - "authorized_access_point": "Mineurs de charbon noirs am\u00e9ricains" + "authorized_access_point": "Amsterdam-Pleyel, Mouvement" }, { - "authorized_access_point": "Missionnaires noirs am\u00e9ricains" + "authorized_access_point": "Copperheads (\u00c9tats-Unis, 1861-1865)" }, { - "authorized_access_point": "Mormons noirs am\u00e9ricains" - }, + "authorized_access_point": "Zimmerwald, Mouvement de" + } + ], + "broader": [ { - "authorized_access_point": "Noires am\u00e9ricaines" + "authorized_access_point": "Mouvements sociaux" }, { - "authorized_access_point": "Noirs am\u00e9ricains dans la fonction publique" - }, + "authorized_access_point": "Pacifisme" + } + ], + "variant_access_point": [ + "Mouvement pacifiste", + "Mouvements contre la guerre", + "Mouvements de protestation contre la guerre", + "Mouvements pour la paix", + "Paix - Associations", + "Paix, Mouvements pour la" + ], + "md5": "10e213de4b7d0e4f2f18afb949f99920" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Patron et client", + "bnf_type": "sujet Rameau", + "classification": [ { - "authorized_access_point": "Noirs am\u00e9ricains dans les arts du spectacle" + "type": "bf:ClassificationDdc", + "classificationPortion": "300", + "name": "Sciences sociales" }, { - "authorized_access_point": "Noirs am\u00e9ricains dans les syndicats" + "type": "bf:ClassificationDdc", + "classificationPortion": "340", + "name": "Droit" }, { - "authorized_access_point": "Noirs am\u00e9ricains en milieu urbain" - }, + "type": "bf:ClassificationDdc", + "classificationPortion": "930", + "name": "Arch\u00e9ologie. Histoire ancienne" + } + ], + "closeMatch": [ { - "authorized_access_point": "P\u00eacheurs noirs am\u00e9ricains" + "authorized_access_point": "Patron and client (Roman law)", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh90003161", + "source": "LCSH" + } + ] }, { - "authorized_access_point": "Pentec\u00f4tistes noirs am\u00e9ricains" + "authorized_access_point": "Patron and client", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85098771", + "source": "LCSH" + } + ] }, { - "authorized_access_point": "P\u00e8res noirs am\u00e9ricains" - }, + "authorized_access_point": "Patron et client", + "source": "RVMLaval" + } + ], + "identifier": "http://www.idref.fr/027528820", + "identifiedBy": [ { - "authorized_access_point": "Pilotes de navire noirs am\u00e9ricains" + "type": "uri", + "value": "http://www.idref.fr/027528820", + "source": "IDREF" }, { - "authorized_access_point": "Pionniers noirs am\u00e9ricains" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11954979m", + "source": "BNF" }, { - "authorized_access_point": "Policiers noirs am\u00e9ricains" - }, + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11954979" + } + ], + "note": [ { - "authorized_access_point": "Politologues noirs am\u00e9ricains" + "noteType": "dataSource", + "label": [ + "Grand Larousse universel", + "Dict. encyclop\u00e9dique d'histoire / M. Mourre, 1996", + "Lexique d'hist. et de civilisation romaines / J.-L. Lamboley, 1995", + "Vocabulaire de droit romain / R. Monier, 1948 (art. : Patrocinium)" + ] }, { - "authorized_access_point": "Prisonniers noirs am\u00e9ricains" - }, + "noteType": "general", + "label": [ + "Sous cette vedette, on trouve les documents sur le patronage dans la Rome antique. Les documents sur le client\u00e9lisme dans d'autres soci\u00e9t\u00e9s se trouvent sous Client\u00e9lisme" + ] + } + ], + "pid": "027528820", + "related": [ { - "authorized_access_point": "Propri\u00e9taires fonciers noirs am\u00e9ricains" + "authorized_access_point": "Affranchis (droit romain)" }, { - "authorized_access_point": "Propri\u00e9taires noirs am\u00e9ricains d'esclaves" + "authorized_access_point": "Client\u00e9lisme" }, { - "authorized_access_point": "Scientifiques noirs am\u00e9ricains" + "authorized_access_point": "Patriciens (Rome)" }, { - "authorized_access_point": "S\u00e9minoles noirs" - }, + "authorized_access_point": "Pl\u00e8be (Rome)" + } + ], + "broader": [ { - "authorized_access_point": "Sociologues noirs am\u00e9ricains" - }, + "authorized_access_point": "Droit romain" + } + ], + "variant_access_point": [ + "Client et patron", + "Client\u00e8le romaine", + "Client\u00e9lisme - Rome", + "Clients et patrons", + "Patrocinium", + "Patron et client - Droit", + "Patron et client (droit romain)", + "Patronage (Rome)", + "Patronage romain", + "Patronat (Rome)", + "Patrons (Rome)", + "Patrons et clients" + ], + "md5": "289dda71f51bfad4479314ca4e6dae8f" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Mystique - Psychologie", + "bnf_type": "sujet Rameau", + "classification": [ { - "authorized_access_point": "Th\u00e9ologiens noirs am\u00e9ricains" + "type": "bf:ClassificationDdc", + "classificationPortion": "150", + "name": "Psychologie, psychanalyse" }, { - "authorized_access_point": "Travailleurs sociaux noirs am\u00e9ricains" + "type": "bf:ClassificationDdc", + "classificationPortion": "200", + "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)" } ], "closeMatch": [ { + "authorized_access_point": "Mysticism -- Psychology", "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85001932", - "source": "LCSH" - }, - "authorized_access_point": "African Americans" - }, - { - "source": "RVMLaval", - "authorized_access_point": "Noirs am\u00e9ricains" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2008108167", + "source": "LCSH" + } + ] } ], + "identifier": "http://www.idref.fr/027532488", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027805220", + "value": "http://www.idref.fr/027532488", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119768348", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11955279x", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11955279" } ], - "classification": [ + "pid": "027532488", + "related": [ { - "type": "bf:ClassificationDdc", - "classificationPortion": "305" + "authorized_access_point": "Mystique" }, { - "name": "Ethnologie, anthropologie, folklore", - "type": "bf:ClassificationDdc", - "classificationPortion": "390" + "authorized_access_point": "Psychologie de la pri\u00e8re" + }, + { + "authorized_access_point": "Psychologie de la foi" + } + ], + "broader": [ + { + "authorized_access_point": "Psychologie religieuse" } ], "variant_access_point": [ - "Africains-Am\u00e9ricains", - "Afro-Am\u00e9ricains", - "Am\u00e9ricains d'origine africaine", - "Am\u00e9ricains noirs", - "Am\u00e9ricains originaires d'Afrique subsaharienne", - "N\u00e9gro-Am\u00e9ricains" + "Mystique - Aspect psychologique", + "Mystiques - Psychologie" ], - "authorized_access_point": "Noirs am\u00e9ricains" + "md5": "d1b4b953a273bba0963e987dc43a8b76" }, { - "md5": "cfdd035b80013146fa412d11612f239e", - "pid": "027805301", - "note": [ - { - "label": [ - "Ne pas utiliser : employer les subdivisions 19e si\u00e8cle, Histoire -- 19e si\u00e8cle ou les vedettes construites comprenant la subdivision 1815-1870" - ], - "noteType": "seeReference" - } - ], - "type": "bf:Temporal", - "deleted": "2023-08-08T14:28:42.125605+00:00", + "type": "bf:Topic", + "authorized_access_point": "Prise d'otages de l'ambassade des \u00c9tats-Unis \u00e0 T\u00e9h\u00e9ran (1979-1981)", "bnf_type": "sujet Rameau", - "identifiedBy": [ + "classification": [ { - "type": "uri", - "value": "http://www.idref.fr/027805301", - "source": "IDREF" + "type": "bf:ClassificationDdc", + "classificationPortion": "950", + "name": "Histoire du reste du monde" } ], - "authorized_access_point": "1815-1870" - }, - { - "md5": "eabcfa699c405c06c2d4c9fe80069b0a", - "pid": "027805824", - "note": [ + "closeMatch": [ { - "label": [ - "Ne pas utiliser : employer les subdivisions 19e si\u00e8cle, Histoire -- 19e si\u00e8cle ou les vedettes construites comprenant la subdivision 1815-1848" - ], - "noteType": "seeReference" + "authorized_access_point": "Iran Hostage Crisis, 1979-1981", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85067917", + "source": "LCSH" + } + ] + }, + { + "authorized_access_point": "Affaire des otages am\u00e9ricains en Iran, 1979-1981", + "source": "RVMLaval" } ], - "type": "bf:Temporal", - "deleted": "2023-08-08T14:28:42.243305+00:00", - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027545822", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027805824", + "value": "http://www.idref.fr/027545822", "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11956325h", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11956325" } ], - "authorized_access_point": "1815-1848" - }, - { - "md5": "39b70358da38a4a4770ea903851963a0", - "pid": "027809773", "note": [ { + "noteType": "dataSource", "label": [ - "S'emploie uniquement en subdivision chronologique \u00e0 certaines litt\u00e9ratures, comme la litt\u00e9rature italienne et la litt\u00e9rature tch\u00e8que", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la litt\u00e9rature, celle-ci servant de vedette mod\u00e8le pour les genres litt\u00e9raires de m\u00eame nationalit\u00e9. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec les genres litt\u00e9raires" - ], - "noteType": "general" + "Wikip\u00e9dia : crise des otages am\u00e9ricains en Iran - https://fr.wikipedia.org (2017-06-09)", + "Encycl. universalis (art. : \u00c9tats-Unis d'Am\u00e9rique) : crise des otages de l'ambassade de T\u00e9h\u00e9ran ; (art. : Iran - Histoire et politique) : occupation de l'ambassade des \u00c9tats-Unis \u00e0 T\u00e9h\u00e9ran - http://www.universalis-edu.com (2017-06-09)", + "Grand Larousse universel", + "Robert encyclop\u00e9dique des noms propres 2008", + "Otages : les n\u00e9gociations secr\u00e8tes de T\u00e9h\u00e9ran / P. Salinger, 1981", + "Les otages am\u00e9ricains \u00e0 T\u00e9h\u00e9ran / N. Yavari-d'Hellencourt, 1992" + ] + }, + { + "noteType": "general", + "label": [ + "4 novembre 1979 : occupation de l'ambassade des \u00c9tats-Unis \u00e0 T\u00e9h\u00e9ran par des \u00e9tudiants islamiques qui retiennent en otage 52 Am\u00e9ricains et r\u00e9clament l'extradition du shah. 24-25 avril 1980 : \u00e9chec de l'op\u00e9ration Eagle Claw. 27 juillet : mort du shah au Caire. 20 janvier 1981 : lib\u00e9ration des otages \u00e0 Alger" + ] } ], - "type": "bf:Temporal", - "related": [ + "pid": "027545822", + "broader": [ { - "authorized_access_point": "Litt\u00e9rature italienne - Avant 1400" + "authorized_access_point": "Relations ext\u00e9rieures - Iran - 1979-1997" }, { - "authorized_access_point": "Litt\u00e9rature tch\u00e8que - Avant 1400" - } - ], - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "authorized_access_point": "Relations ext\u00e9rieures - \u00c9tats-Unis - 1977-1981" + }, { - "type": "uri", - "value": "http://www.idref.fr/027809773", - "source": "IDREF" + "authorized_access_point": "Politique et gouvernement - Iran - 1979-...." }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11977185g", - "source": "BNF" + "authorized_access_point": "Otages - Iran" } ], - "classification": [ - { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" - } + "variant_access_point": [ + "Affaire des otages am\u00e9ricains en Iran (1979-1981)", + "Ambassade des \u00c9tats-Unis \u00e0 T\u00e9h\u00e9ran, Prise d'otages de l' (1979-1981)", + "Crise des otages am\u00e9ricains en Iran (1979-1981)", + "Occupation de l'ambassade am\u00e9ricaine \u00e0 T\u00e9h\u00e9ran (1979-1981)", + "Otages am\u00e9ricains en Iran, Affaire des (1979-1981)", + "Prise d'otages de T\u00e9h\u00e9ran (1979-1981)", + "T\u00e9h\u00e9ran, Prise d'otages de (1979-1981)" ], - "authorized_access_point": "Avant 1400" + "md5": "7c7cffca464487019a86306710f29644" }, { - "md5": "26e0692915bef6faeca25bf2dc4fd931", - "pid": "027809781", "type": "bf:Topic", - "broader": [ + "authorized_access_point": "Destin et fatalisme", + "bnf_type": "sujet Rameau", + "classification": [ { - "authorized_access_point": "Litt\u00e9rature italienne" + "type": "bf:ClassificationDdc", + "classificationPortion": "100", + "name": "Philosophie" } ], - "related": [ - { - "authorized_access_point": "Po\u00e8tes italiens" - }, - { - "authorized_access_point": "Chansons italiennes" - }, - { - "authorized_access_point": "Madrigaux (musique) italiens" - }, + "closeMatch": [ { - "authorized_access_point": "M\u00e9lodies italiennes" + "authorized_access_point": "Fate and fatalism", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85047439", + "source": "LCSH" + } + ] }, { - "authorized_access_point": "Prose italienne" + "authorized_access_point": "Destin et fatalisme", + "source": "RVMLaval" } ], - "bnf_type": "genre/forme Rameau", - "narrower": [ - { - "authorized_access_point": "Cr\u00e9puscularisme" - }, - { - "authorized_access_point": "Po\u00e9sie de circonstance italienne" - }, - { - "authorized_access_point": "Ballades italiennes" - }, - { - "authorized_access_point": "Disperata" - }, - { - "authorized_access_point": "\u00c9pigrammes italiennes" - }, - { - "authorized_access_point": "\u00c9pop\u00e9es italiennes" - }, + "identifier": "http://www.idref.fr/027564878", + "identifiedBy": [ { - "authorized_access_point": "Frottole (litt\u00e9rature)" + "type": "uri", + "value": "http://www.idref.fr/027564878", + "source": "IDREF" }, { - "authorized_access_point": "Po\u00e8mes en prose italiens" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11957809w", + "source": "BNF" }, { - "authorized_access_point": "Po\u00e9sie d'amour italienne" - }, + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11957809" + } + ], + "note": [ { - "authorized_access_point": "Po\u00e9sie dialectale italienne" - }, + "noteType": "dataSource", + "label": [ + "Les notions philosophiques / S. Auroux, 1990", + "Vocabulaire technique et critique de la philosophie / A. Lalande, 1997", + "Encycl. de la philosophie, 2002", + "Grand dict. de la philosophie / M. Blay, 2003", + "Dict. de philosophie / C. Godin, 2004" + ] + } + ], + "pid": "027564878", + "related": [ { - "authorized_access_point": "Po\u00e9sie didactique italienne" + "authorized_access_point": "Roue de Fortune (all\u00e9gorie)" }, { - "authorized_access_point": "Po\u00e9sie \u00e9logieuse italienne" + "authorized_access_point": "A\u00ee\u0313sa (le mot grec)" }, { - "authorized_access_point": "Po\u00e9sie exp\u00e9rimentale italienne" + "authorized_access_point": "Contingence" }, { - "authorized_access_point": "Po\u00e9sie historique italienne" + "authorized_access_point": "D\u00e9terminisme (philosophie)" }, { - "authorized_access_point": "Po\u00e9sie italienne - Avant 1400" + "authorized_access_point": "\u00c9ternel retour" }, { - "authorized_access_point": "Po\u00e9sie lyrique italienne" + "authorized_access_point": "Hasard" }, { - "authorized_access_point": "Po\u00e9sie narrative italienne" + "authorized_access_point": "Libre arbitre" }, { - "authorized_access_point": "Po\u00e9sie pastorale italienne" + "authorized_access_point": "Mo\u00eera (le mot grec)" }, { - "authorized_access_point": "Po\u00e9sie politique italienne" + "authorized_access_point": "N\u00e9cessit\u00e9" }, { - "authorized_access_point": "Po\u00e9sie populaire italienne" + "authorized_access_point": "Pr\u00e9destination" }, { - "authorized_access_point": "Po\u00e9sie religieuse italienne" - }, + "authorized_access_point": "Tragique (philosophie)" + } + ], + "broader": [ { - "authorized_access_point": "Po\u00e9sie satirique italienne" + "authorized_access_point": "Philosophie de l'action" }, { - "authorized_access_point": "Po\u00e9sie visuelle italienne" - }, + "authorized_access_point": "Philosophie de l'homme" + } + ], + "variant_access_point": [ + "Destin\u00e9e", + "Fatalisme", + "Fatalit\u00e9", + "Fatum", + "Sort" + ], + "md5": "251cadda30dc9abcae1ac3d11f525b34" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Prescription m\u00e9dicamenteuse", + "bnf_type": "sujet Rameau", + "classification": [ { - "authorized_access_point": "Sonnets italiens" + "type": "bf:ClassificationDdc", + "classificationPortion": "615" } ], "closeMatch": [ { + "authorized_access_point": "Drugs--Prescribing", "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85068841", - "source": "LCSH" - }, - "authorized_access_point": "Italian poetry" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85039743", + "source": "LCSH" + } + ] }, { - "source": "RVMLaval", - "authorized_access_point": "Po\u00e9sie italienne" + "authorized_access_point": "M\u00e9dicaments--Prescription", + "source": "RVMLaval" } ], + "identifier": "http://www.idref.fr/027578747", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027809781", + "value": "http://www.idref.fr/027578747", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11977186t", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119588768", "source": "BNF" - } - ], - "classification": [ - { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" - } - ], - "authorized_access_point": "Po\u00e9sie italienne" - }, - { - "md5": "292f04c6fb961445ffbb7c9a15b82c0a", - "pid": "027811611", - "type": "bf:Topic", - "broader": [ - { - "authorized_access_point": "Litt\u00e9rature espagnole" }, { - "authorized_access_point": "Po\u00e9sie hispanophone" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11958876" } ], - "related": [ - { - "authorized_access_point": "Po\u00e8tes espagnols" - }, - { - "authorized_access_point": "Chansons espagnoles" - }, - { - "authorized_access_point": "M\u00e9lodies espagnoles" - }, + "note": [ { - "authorized_access_point": "Prose espagnole" + "noteType": "dataSource", + "label": [ + "Prescription m\u00e9dicamenteuse : les attentes des patients [in] Revue m\u00e9dicale suisse, 2000, 4, 2296", + "Prescription m\u00e9dicamenteuse : un acte sous influences / P. Gallois, J.-P. Vall\u00e9e, Y. Le Noc [in] M\u00e9decine, 2007, 3, 10" + ] } ], - "bnf_type": "genre/forme Rameau", - "narrower": [ + "pid": "027578747", + "related": [ { - "authorized_access_point": "La otra sentimentalidad" + "authorized_access_point": "D\u00e9prescription m\u00e9dicamenteuse" }, { - "authorized_access_point": "Nov\u00edsimos" + "authorized_access_point": "Bilan partag\u00e9 de m\u00e9dication" }, { - "authorized_access_point": "Silva" + "authorized_access_point": "Chimioth\u00e9rapie" }, { - "authorized_access_point": "\u00c9pigrammes espagnoles" + "authorized_access_point": "Erreurs m\u00e9dicamenteuses" }, { - "authorized_access_point": "\u00c9p\u00eetres en vers espagnoles" + "authorized_access_point": "M\u00e9dicaments - Modes d'administration" }, { - "authorized_access_point": "\u00c9pop\u00e9es espagnoles" + "authorized_access_point": "M\u00e9dicaments - Usage" }, { - "authorized_access_point": "Ha\u00efkus espagnols" - }, + "authorized_access_point": "Recommandations sur le bon usage des m\u00e9dicaments" + } + ], + "narrower": [ { - "authorized_access_point": "Po\u00e8mes en prose espagnols" - }, + "authorized_access_point": "Auto-prescription m\u00e9dicamenteuse" + } + ], + "broader": [ { - "authorized_access_point": "Po\u00e9sie contestataire espagnole" + "authorized_access_point": "Prescription m\u00e9dicale" }, { - "authorized_access_point": "Po\u00e9sie d'amour espagnole" - }, + "authorized_access_point": "Ordonnances m\u00e9dicales" + } + ], + "variant_access_point": [ + "M\u00e9dicaments - Prescription", + "M\u00e9dicaments - Prescription m\u00e9dicale", + "Prescription des m\u00e9dicaments", + "Prescription pharmaceutique" + ], + "md5": "8e764f4cb53a08af16ef860cc5a3abaa" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Iroquois (Indiens)", + "bnf_type": "sujet Rameau", + "classification": [ { - "authorized_access_point": "Po\u00e9sie de circonstance espagnole" - }, + "type": "bf:ClassificationDdc", + "classificationPortion": "390", + "name": "Ethnologie, anthropologie, folklore" + } + ], + "closeMatch": [ { - "authorized_access_point": "Po\u00e9sie dialectale espagnole" + "authorized_access_point": "Iroquois (Indiens)", + "source": "RVMLaval" }, { - "authorized_access_point": "Po\u00e9sie didactique espagnole" - }, + "authorized_access_point": "Iroquois Indians", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85068260", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/02758254X", + "identifiedBy": [ { - "authorized_access_point": "Po\u00e9sie \u00e9logieuse espagnole" + "type": "uri", + "value": "http://www.idref.fr/02758254X", + "source": "IDREF" }, { - "authorized_access_point": "Po\u00e9sie espagnole - Avant 1500" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13318833d", + "source": "BNF" }, { - "authorized_access_point": "Po\u00e9sie espagnole - 1500-1700 (P\u00e9riode classique)" - }, + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13318833" + } + ], + "note": [ { - "authorized_access_point": "Po\u00e9sie espagnole pour la jeunesse" + "noteType": "dataSource", + "label": [ + "Grand Larousse universel", + "Les Indiens d'Am\u00e9rique du Nord / G. Turner, 1985", + "Ethnologie r\u00e9gionale / J. Poirier, 1972-1978", + "Dict. des peuples / J.-C. Tamisier, 1998", + "Atlas des peuples d'Am\u00e9rique / A. Sellier, 2006", + "The Indian tribes of North America / J. R. Swanton, 1969", + "American Indian tribes / Salem Press, 1985", + "Atlas of the North American Indian / C. Waldman, 1985", + "Encycl. of world cultures / D. Levinson, 1991-1996" + ] }, { - "authorized_access_point": "Po\u00e9sie exp\u00e9rimentale espagnole" - }, + "noteType": "general", + "label": [ + "Sous cette vedette, on trouve les documents sur les Iroquois proprement dits. Les documents sur l'ensemble des peuples formant la famille linguistique iroquoise se trouvent sous Iroquoiens", + "L'adjectif ethnique correspondant est \"iroquois\". Il s'accorde en genre et en nombre" + ] + } + ], + "pid": "02758254X", + "related": [ { - "authorized_access_point": "Po\u00e9sie humoristique espagnole" + "authorized_access_point": "Art iroquois" }, { - "authorized_access_point": "Po\u00e9sie lyrique espagnole" - }, + "authorized_access_point": "L\u00e9gendes iroquoises" + } + ], + "narrower": [ { - "authorized_access_point": "Po\u00e9sie pastorale espagnole" + "authorized_access_point": "Iroquoises" }, { - "authorized_access_point": "Po\u00e9sie politique espagnole" + "authorized_access_point": "Mohawk (Indiens)" }, { - "authorized_access_point": "Po\u00e9sie populaire espagnole" + "authorized_access_point": "Oneida (Indiens)" }, { - "authorized_access_point": "Po\u00e9sie religieuse espagnole" + "authorized_access_point": "Onondaga (Indiens)" }, { - "authorized_access_point": "Po\u00e9sie satirique espagnole" + "authorized_access_point": "Seneca (Indiens)" }, { - "authorized_access_point": "Po\u00e9sie visuelle espagnole" - }, + "authorized_access_point": "Tuscarora (Indiens)" + } + ], + "broader": [ { - "authorized_access_point": "Romanceros" - }, + "authorized_access_point": "Iroquoiens" + } + ], + "variant_access_point": [ + "Agoneaseah (Indiens)", + "Canton (Indiens)", + "Massawomeke (Indiens)", + "Mengwe (Indiens)", + "Ongwanonhsioni (Indiens)", + "Ongwehonweh (Indiens)", + "Six Nations (Indiens)", + "Cinq Nations (Indiens)", + "Five Nations (Indiens)", + "Haudenosaunee (Indiens)", + "Hod\u00e9-no-sau-nee (Indiens)", + "Hodenosaunee (Indiens)", + "Iroquois", + "Ligue des Cinq Nations (Indiens)", + "Ligue des Six Nations (Indiens)" + ], + "md5": "9821889802b6eb924a77e8f59952434e" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Rod\u00e9os", + "bnf_type": "sujet Rameau", + "classification": [ { - "authorized_access_point": "Sonnets espagnols" + "type": "bf:ClassificationDdc", + "classificationPortion": "790", + "name": "Arts du spectacle" }, { - "authorized_access_point": "Villancicos (litt\u00e9rature)" + "type": "bf:ClassificationDdc", + "classificationPortion": "793", + "name": "Sports" } ], "closeMatch": [ { + "authorized_access_point": "Rodeos", "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85126289", - "source": "LCSH" - }, - "authorized_access_point": "Spanish poetry" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85114811", + "source": "LCSH" + } + ] }, { - "source": "RVMLaval", - "authorized_access_point": "Po\u00e9sie espagnole" + "authorized_access_point": "Rod\u00e9os", + "source": "RVMLaval" } ], + "identifier": "http://www.idref.fr/027613275", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027811611", + "value": "http://www.idref.fr/027613275", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11977339v", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11961559c", "source": "BNF" - } - ], - "classification": [ - { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" - } - ], - "authorized_access_point": "Po\u00e9sie espagnole" - }, - { - "md5": "cae57d83a68be8c607265ff469a2a8f1", - "pid": "027812596", - "note": [ - { - "label": [ - "Ne plus utiliser : employer les subdivisions 20e si\u00e8cle, Histoire -- 20e si\u00e8cle ou les vedettes construites comprenant la subdivision 1918-1960" - ], - "noteType": "seeReference" - } - ], - "type": "bf:Temporal", - "deleted": "2023-08-08T14:28:43.978364+00:00", - "bnf_type": "sujet Rameau", - "identifiedBy": [ + }, { - "type": "uri", - "value": "http://www.idref.fr/027812596", - "source": "IDREF" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11961559" } ], - "authorized_access_point": "1918-1960" - }, - { - "md5": "16fe5e514ce983f9df056df85e46ad26", - "pid": "02781341X", "note": [ { + "noteType": "dataSource", "label": [ - "Ne pas utiliser : employer les subdivisions 1970-...., Histoire -- 1970-...., ou les vedettes construites comprenant la subdivision 1981-" - ], - "noteType": "seeReference" + "Tr\u00e9sor de la langue fran\u00e7aise", + "Nouveau petit Robert 1993" + ] } ], - "type": "bf:Temporal", - "deleted": "2023-08-08T14:28:44.061768+00:00", - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "pid": "027613275", + "related": [ { - "type": "uri", - "value": "http://www.idref.fr/02781341X", - "source": "IDREF" + "authorized_access_point": "Cow-boys" } ], - "authorized_access_point": "1981" - }, - { - "md5": "da2b7c67fbfab0ab7c20fee6e18cb08a", - "pid": "027813533", - "note": [ + "broader": [ { - "label": [ - "Ne pas utiliser : employer les subdivisions 1900-1945, Histoire -- 1900-1945 ou les vedettes construites comprenant la subdivision 1917-1948" - ], - "noteType": "seeReference" - } - ], - "type": "bf:Temporal", - "deleted": "2023-08-08T14:28:44.848459+00:00", - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "authorized_access_point": "Comp\u00e9titions \u00e9questres" + }, { - "type": "uri", - "value": "http://www.idref.fr/027813533", - "source": "IDREF" + "authorized_access_point": "Spectacles et divertissements" } ], - "authorized_access_point": "1917-1948" + "md5": "b0403c022221a2d622a589c8d5c33db9" }, { - "md5": "719b2f3daf75b9f31a58689787701a59", - "pid": "027825280", - "note": [ - { - "label": [ - "Vocabulaire juridique / G. Cornu, 2003 (art. : R\u00e9vision)", - "Dict. constitutionnel / O. Duhamel, Y. M\u00e9ny, 1992 : r\u00e9vision" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Processus de r\u00e9vision (ou d'amendement) des constitutions et modifications qui en r\u00e9sultent", - "S'emploie \u00e9galement en subdivision" - ], - "noteType": "general" - } - ], "type": "bf:Topic", - "broader": [ - { - "authorized_access_point": "Droit constitutionnel" - }, - { - "authorized_access_point": "Histoire constitutionnelle" - } - ], - "related": [ - { - "authorized_access_point": "Amendements" - }, - { - "authorized_access_point": "Pouvoir constituant" - }, - { - "authorized_access_point": "Transition constitutionnelle" - }, - { - "authorized_access_point": "Constitutions" - } - ], + "authorized_access_point": "Int\u00e9gration scolaire", "bnf_type": "sujet Rameau", - "narrower": [ + "classification": [ { - "authorized_access_point": "Conventions constitutionnelles" + "type": "bf:ClassificationDdc", + "classificationPortion": "370", + "name": "Education et enseignement" } ], "closeMatch": [ { + "authorized_access_point": "Mainstreaming in education", "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85031319", - "source": "LCSH" - }, - "authorized_access_point": "Constitutional amendments" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85079929", + "source": "LCSH" + } + ] }, { - "source": "RVMLaval", - "authorized_access_point": "Constitutions -- Amendements" + "authorized_access_point": "Int\u00e9gration scolaire", + "source": "RVMLaval" } ], + "identifier": "http://www.idref.fr/027616908", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027825280", + "value": "http://www.idref.fr/027616908", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11978381w", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11961876s", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Droit", - "type": "bf:ClassificationDdc", - "classificationPortion": "340" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11961876" } ], - "variant_access_point": [ - "Amendements constitutionnels", - "Constitutions - Amendements", - "Constitutions - Modifications", - "Constitutions - R\u00e9forme", - "Constitutions - R\u00e9vision", - "Lois de r\u00e9vision (droit constitutionnel)", - "Modifications constitutionnelles", - "N\u00e9gociations constitutionnelles", - "R\u00e9forme constitutionnelle", - "R\u00e9vision (droit constitutionnel)", - "R\u00e9vision de la Constitution" - ], - "authorized_access_point": "R\u00e9vision constitutionnelle" - }, - { - "md5": "7c8d9d8e22c54cad257a3a6e15bc615b", - "pid": "027832953", "note": [ { + "noteType": "dataSource", "label": [ - "Nouveau petit Robert 2010", - "Vocabulaire juridique / G. Cornu, 2007", - "JurisClasseur P\u00e9nal Code > Art. 133-7 - 133-8 > Fasc. unique : Gr\u00e2ce", - "Droit constitutionnel / L. Favoreu, 2005", - "Origine de la gr\u00e2ce en droit p\u00e9nal romain et fran\u00e7ais / P. Duparc, 1942" - ], - "noteType": "dataSource" + "Dict. de l'\u00e9ducation / A. van Zanten, 2008", + "Th\u00e9saurus europ\u00e9en de l'\u00e9ducation - http://eacea.ec.europa.eu/education (2009-11-30)", + "Int\u00e9gration scolaire des enfants immigrants en Europe : dispositif en faveur de la communication avec les familles immigrantes et de l'enseignement de la langue d'origine des enfants immigrants / communaut\u00e9s europ\u00e9ennes, 2009 - http://www.eacea.ec.europa.eu (2009-11-30)" + ] }, { + "noteType": "general", "label": [ - "S'emploie \u00e9galement en subdivision" - ], - "noteType": "general" + "Sous cette vedette, on trouve les documents sur les syst\u00e8mes scolaires qui permettent d'accueillir dans le cycle \u00e9ducatif courant les enfants \u00e0 besoins \u00e9ducatifs particuliers ou sp\u00e9ciaux (accompagn\u00e9s en outre de soins m\u00e9dicaux). Les documents sur l'aspect psychologique de l'int\u00e9gration scolaire se trouvent sous Adaptation scolaire" + ] } ], - "type": "bf:Topic", - "broader": [ + "pid": "027616908", + "related": [ { - "authorized_access_point": "Droit constitutionnel" + "authorized_access_point": "Adaptation scolaire" }, { - "authorized_access_point": "Droit p\u00e9nal" + "authorized_access_point": "Ateliers relais" }, { - "authorized_access_point": "R\u00e9duction de peine" - } - ], - "related": [ + "authorized_access_point": "Classes relais" + }, { - "authorized_access_point": "Amnistie" + "authorized_access_point": "Conception universelle de l'apprentissage" }, { - "authorized_access_point": "Cl\u00e9mence (droit)" + "authorized_access_point": "Discrimination en \u00e9ducation" }, { - "authorized_access_point": "Lib\u00e9ration conditionnelle" + "authorized_access_point": "Enfants appartenant \u00e0 des minorit\u00e9s" }, { - "authorized_access_point": "Pardon" + "authorized_access_point": "Enfants difficiles - \u00c9ducation" }, { - "authorized_access_point": "Pouvoir ex\u00e9cutif" + "authorized_access_point": "Enfants handicap\u00e9s - \u00c9ducation" }, { - "authorized_access_point": "R\u00e9habilitation" - } + "authorized_access_point": "Enfants inadapt\u00e9s - \u00c9ducation" + }, + { + "authorized_access_point": "Enfants surdou\u00e9s" + }, + { + "authorized_access_point": "Enseignements g\u00e9n\u00e9raux et professionnels adapt\u00e9s" + }, + { + "authorized_access_point": "Objectifs d'int\u00e9gration (\u00e9ducation)" + }, + { + "authorized_access_point": "S\u00e9gr\u00e9gation en \u00e9ducation" + }, + { + "authorized_access_point": "Sociologie de l'\u00e9ducation" + } ], - "bnf_type": "sujet Rameau", - "closeMatch": [ + "narrower": [ { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh2002006184", - "source": "LCSH" - }, - "authorized_access_point": "Pardon" + "authorized_access_point": "Besoins \u00e9ducatifs particuliers" }, { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85097972", - "source": "LCSH" - }, - "authorized_access_point": "Pardon" + "authorized_access_point": "Certificat d'aptitude aux actions p\u00e9dagogiques sp\u00e9cialis\u00e9es de l'adaptation et de l'int\u00e9gration scolaires" }, { - "source": "RVMLaval", - "authorized_access_point": "Gr\u00e2ce (droit)" + "authorized_access_point": "P\u00e9dagogie culturellement adapt\u00e9e" + }, + { + "authorized_access_point": "Services d'\u00e9ducation sp\u00e9cialis\u00e9e et de soins \u00e0 domicile" + }, + { + "authorized_access_point": "Unit\u00e9s localis\u00e9es pour l'inclusion scolaire" + } + ], + "broader": [ + { + "authorized_access_point": "\u00c9ducation sp\u00e9ciale" + }, + { + "authorized_access_point": "P\u00e9dagogie sociale" } ], + "variant_access_point": [ + "Adaptation et int\u00e9gration scolaire", + "AIS", + "D\u00e9s\u00e9gr\u00e9gation en \u00e9ducation", + "\u00c9ducation - Int\u00e9gration", + "\u00c9ducation inclusive", + "\u00c9ducation int\u00e9grative", + "\u00c9ducation int\u00e9gratrice", + "Inclusion en \u00e9ducation", + "Int\u00e9gration en \u00e9ducation" + ], + "md5": "efc59ff2c52ccc2086d56275a1a2df5b" + }, + { + "type": "bf:Topic", + "authorized_access_point": "R\u00e9f\u00e9rences bibliographiques", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027636461", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027832953", + "value": "http://www.idref.fr/027636461", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11978966n", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11963535v", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11963535" } ], - "classification": [ + "pid": "027636461", + "related": [ { - "name": "Droit", - "type": "bf:ClassificationDdc", - "classificationPortion": "340" + "authorized_access_point": "Notes (paratexte)" + } + ], + "narrower": [ + { + "authorized_access_point": "Recherche documentaire" + } + ], + "broader": [ + { + "authorized_access_point": "Bibliographie - M\u00e9thodologie" + }, + { + "authorized_access_point": "Bibliographie" } ], "variant_access_point": [ - "Commutation de peine", - "Droit de gr\u00e2ce", - "Gr\u00e2ce amnistiante", - "Gr\u00e2ce pr\u00e9sidentielle", - "Lettres de gr\u00e2ce", - "Lettres de r\u00e9mission", - "Pardon (droit)", - "Recours en gr\u00e2ce", - "Remise de peine", - "R\u00e9mission, Lettres de" + "Citations bibliographiques", + "Information bibliographique", + "Informations bibliographiques", + "Notices bibliographiques", + "Renseignements bibliographiques" ], - "authorized_access_point": "Gr\u00e2ce (droit)" + "md5": "1929d53ecce979fb852aa3aa85479b69" }, { - "md5": "51ebb6eaaba72d5d004f2186b53ac544", - "pid": "027838919", "type": "bf:Topic", - "broader": [ - { - "authorized_access_point": "D\u00e9mocratie directe" - }, + "authorized_access_point": "Minitel (terminal vid\u00e9otex)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027674118", + "identifiedBy": [ { - "authorized_access_point": "Droit constitutionnel" + "type": "uri", + "value": "http://www.idref.fr/027674118", + "source": "IDREF" }, { - "authorized_access_point": "\u00c9lections" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11966659v", + "source": "BNF" }, { - "authorized_access_point": "R\u00e9gimes repr\u00e9sentatifs" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11966659" } ], - "related": [ + "pid": "027674118", + "broader": [ { - "authorized_access_point": "Campagnes de votation (Suisse)" + "authorized_access_point": "T\u00e9l\u00e9tel (service t\u00e9l\u00e9matique)" }, { - "authorized_access_point": "R\u00e9f\u00e9rendum professionnel" - }, + "authorized_access_point": "Terminaux \u00e0 \u00e9cran de visualisation" + } + ], + "related": [ { - "authorized_access_point": "Pl\u00e9biscite" + "authorized_access_point": "Annuaires t\u00e9l\u00e9phoniques \u00e9lectroniques" } ], + "md5": "225c667e37d34c47d2ffb3054574c1a3" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Structure mol\u00e9culaire", "bnf_type": "sujet Rameau", - "narrower": [ + "classification": [ { - "authorized_access_point": "R\u00e9f\u00e9rendum local" + "type": "bf:ClassificationDdc", + "classificationPortion": "540", + "name": "Chimie, min\u00e9ralogie, cristallographie" } ], "closeMatch": [ { - "source": "RVMLaval", - "authorized_access_point": "R\u00e9f\u00e9rendum" + "authorized_access_point": "Structure mol\u00e9culaire", + "source": "RVMLaval" }, { + "authorized_access_point": "Molecular structure", "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85112202", - "source": "LCSH" - }, - "authorized_access_point": "Referendum" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85086594", + "source": "LCSH" + } + ] } ], + "identifier": "http://www.idref.fr/027674150", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027838919", + "value": "http://www.idref.fr/027674150", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb13319148r", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11966661d", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11966661" } ], - "classification": [ + "note": [ { - "name": "Sciences politiques", - "type": "bf:ClassificationDdc", - "classificationPortion": "320" + "noteType": "seeReference", + "label": [ + "Voir aussi la subdivision Structure aux produits chimiques" + ] } ], - "variant_access_point": [ - "Initiative et r\u00e9f\u00e9rendum", - "R\u00e9f\u00e9rendum constituant", - "R\u00e9f\u00e9rendum d'initiative populaire", - "R\u00e9f\u00e9rendum l\u00e9gislatif", - "R\u00e9f\u00e9rendum pl\u00e9biscitaire", - "Votation populaire (Suisse)" + "pid": "027674150", + "related": [ + { + "authorized_access_point": "Structure" + } ], - "authorized_access_point": "R\u00e9f\u00e9rendum" - }, - { - "md5": "07a8bb67227350d7b0fb04767855f71a", - "pid": "02784532X", - "note": [ + "narrower": [ { - "label": [ - "Dict. sanskrit-fran\u00e7ais / N. Stchoupak, L. Nitti, L. Renou, 1972", - "L'hindouisme / A.-M. Esnoul, 1972", - "Dict. de la sagesse orientale, 1995", - "Le vocabulaire des philosophies de l'Inde / M. Ballanfat, 2003", - "BnF Service indien, 2017-03-22" - ], - "noteType": "dataSource" + "authorized_access_point": "G-quadruplexes" }, { - "label": [ - "Le Soi ; \u00e2me ; principe spirituel" - ], - "noteType": "general" + "authorized_access_point": "Aromaticit\u00e9" + }, + { + "authorized_access_point": "M\u00e9thodes ab initio (chimie quantique)" + }, + { + "authorized_access_point": "Spectroscopie mol\u00e9culaire" + }, + { + "authorized_access_point": "Structure atomique" + }, + { + "authorized_access_point": "Structure \u00e9lectronique" } ], - "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Hindouisme - Doctrines" + "authorized_access_point": "Mol\u00e9cules" + }, + { + "authorized_access_point": "Structure chimique" } ], - "related": [ + "variant_access_point": [ + "Mol\u00e9cules - Structure" + ], + "md5": "8eb4d16755c5f4e174884a910e179af9" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Palestiniens - Politique et gouvernement - 1948-....", + "bnf_type": "sujet Rameau", + "classification": [ { - "authorized_access_point": "An\u0101tman" + "type": "bf:ClassificationDdc", + "classificationPortion": "320", + "name": "Science politique" }, { - "authorized_access_point": "J\u00f1\u0101na-yoga" + "type": "bf:ClassificationDdc", + "classificationPortion": "950", + "name": "Histoire du reste du monde" } ], - "bnf_type": "sujet Rameau", "closeMatch": [ { + "authorized_access_point": "Palestinian Arabs--Politics and government", "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85009269", - "source": "LCSH" - }, - "authorized_access_point": "\u0100tman" - }, - { - "source": "RVMLaval", - "authorized_access_point": "\u0100tman" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2001009475", + "source": "LCSH" + } + ] } ], + "identifier": "http://www.idref.fr/027682226", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/02784532X", + "value": "http://www.idref.fr/027682226", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119799348", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119672904", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11967290" } ], - "classification": [ + "note": [ { - "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)", - "type": "bf:ClassificationDdc", - "classificationPortion": "200" + "noteType": "dataSource", + "label": [ + "Palestiniens -- Politique et gouvernement ; Laval RVM, 2001-07" + ] + }, + { + "noteType": "seeReference", + "label": [ + "Voir aussi aux noms des organisations palestiniennes, par ex. : Organisation de lib\u00e9ration de la Palestine" + ] } ], - "authorized_access_point": "\u0100tman" - }, - { - "md5": "b0e6fe06b3d156e584c94d00a30f3f08", - "pid": "027852547", - "type": "bf:Topic", - "broader": [ + "pid": "027682226", + "related": [ { - "authorized_access_point": "Litt\u00e9rature grecque" + "authorized_access_point": "Palestiniens" }, { - "authorized_access_point": "Roman antique" + "authorized_access_point": "Conflit isra\u00e9lo-arabe" } ], - "bnf_type": "genre/forme Rameau", "narrower": [ { - "authorized_access_point": "Roman d'amour grec" + "authorized_access_point": "Fedayin" }, { - "authorized_access_point": "Roman \u00e9pistolaire grec" - }, + "authorized_access_point": "Intifada (1987-1993)" + } + ], + "variant_access_point": [ + "Mouvements de r\u00e9sistance palestiniens", + "Palestiniens - Activit\u00e9 politique", + "Question palestinienne (1948-....)", + "R\u00e9sistance palestinienne" + ], + "md5": "7e00252c0b17928191dc15c52e2d2f55" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Syst\u00e8mes d'affichage", + "bnf_type": "sujet Rameau", + "classification": [ { - "authorized_access_point": "Roman grec hell\u00e9nistique" + "type": "bf:ClassificationDdc", + "classificationPortion": "621" }, { - "authorized_access_point": "Roman policier grec" + "type": "bf:ClassificationDdc", + "classificationPortion": "600", + "name": "Sciences appliqu\u00e9es" } ], "closeMatch": [ { + "authorized_access_point": "Information display systems", "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85057147", - "source": "LCSH" - }, - "authorized_access_point": "Greek fiction" - }, - { - "source": "RVMLaval", - "authorized_access_point": "Roman grec" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85066140", + "source": "LCSH" + } + ] } ], + "identifier": "http://www.idref.fr/027688836", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027852547", + "value": "http://www.idref.fr/027688836", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11980545v", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11967772k", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11967772" } ], - "classification": [ + "pid": "027688836", + "related": [ { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "authorized_access_point": "Appareils enregistreurs" }, { - "name": "Pr\u00e9histoire et histoire ancienne", - "type": "bf:ClassificationDdc", - "classificationPortion": "930" - } - ], - "variant_access_point": [ - "Roman grec - Antiquit\u00e9", - "Roman grec antique", - "Roman grec de l'Antiquit\u00e9" - ], - "authorized_access_point": "Roman grec" - }, - { - "md5": "3a7f2d2ed0852e9e1ba2585d03d2b45d", - "pid": "028004698", - "type": "bf:Topic", - "broader": [ + "authorized_access_point": "Dispositifs opto\u00e9lectroniques" + }, { - "authorized_access_point": "\u00c9lectronique num\u00e9rique" + "authorized_access_point": "Dispositifs photo\u00e9lectroniques" }, { - "authorized_access_point": "Audiovisuel num\u00e9rique" - } - ], - "related": [ + "authorized_access_point": "Gestion \u00e9lectronique de documents" + }, + { + "authorized_access_point": "Ordinateurs - \u00c9quipement d'entr\u00e9e-sortie" + }, { - "authorized_access_point": "Graveurs de c\u00e9d\u00e9roms" + "authorized_access_point": "Ordinateurs - \u00c9quipement optique" + }, + { + "authorized_access_point": "Traitement optique de l'information" } ], - "bnf_type": "sujet Rameau", "narrower": [ { - "authorized_access_point": "Boucles (musique)" + "authorized_access_point": "\u00c9crans radioluminescents \u00e0 m\u00e9moire" }, { - "authorized_access_point": "Compression audio" + "authorized_access_point": "\u00c9crans tactiles" }, { - "authorized_access_point": "Disques compacts" + "authorized_access_point": "Tubes \u00e0 rayons cathodiques" }, { - "authorized_access_point": "DVD audio" + "authorized_access_point": "Affichage par \u00e9lectroluminescence" }, { - "authorized_access_point": "Super Audio CD" - } - ], - "closeMatch": [ - { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85125369", - "source": "LCSH" - }, - "authorized_access_point": "Sound--Recording and reproducing--Digital techniques" + "authorized_access_point": "Casques de visualisation" }, { - "source": "RVMLaval", - "authorized_access_point": "Son -- Enregistrement et reproduction -- Techniques num\u00e9riques" - } - ], - "identifiedBy": [ - { - "type": "uri", - "value": "http://www.idref.fr/028004698", - "source": "IDREF" + "authorized_access_point": "Affichage sur \u00e9cran de t\u00e9l\u00e9vision" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11992743d", - "source": "BNF" - } - ], - "classification": [ + "authorized_access_point": "\u00c9crans plats" + }, { - "name": "Sciences appliqu\u00e9es", - "type": "bf:ClassificationDdc", - "classificationPortion": "600" - } - ], - "variant_access_point": [ - "Audio-num\u00e9riques, Techniques", - "Enregistrement num\u00e9rique", - "Techniques audio-num\u00e9riques" - ], - "authorized_access_point": "Son - Enregistrement et reproduction -- Techniques num\u00e9riques" - }, - { - "md5": "5869d89dcc3f381effab4f3f6e55581b", - "pid": "028244494", - "type": "bf:Topic", - "broader": [ + "authorized_access_point": "Amplificateurs de luminance" + }, { - "authorized_access_point": "Ethnologie - [Localisations g\u00e9ographiques]" - } - ], - "bnf_type": "sujet Rameau", - "narrower": [ + "authorized_access_point": "Collimateurs de pilotage" + }, { - "authorized_access_point": "Lemkoviens" + "authorized_access_point": "Dispositifs \u00e9lectrochromiques" }, { - "authorized_access_point": "Ruth\u00e8nes" + "authorized_access_point": "Imagerie quadridimensionnelle" }, { - "authorized_access_point": "Slovaques" + "authorized_access_point": "Imagerie tridimensionnelle" }, { - "authorized_access_point": "Slovaques d'origine hongroise" + "authorized_access_point": "Syst\u00e8mes d'affichage \u00e0 cristaux liquides" }, { - "authorized_access_point": "Tch\u00e9coslovaques" + "authorized_access_point": "Terminaux \u00e0 \u00e9cran de visualisation" } ], - "closeMatch": [ - { - "source": "RVMLaval", - "authorized_access_point": "Ethnologie -- Slovaquie" - }, + "variant_access_point": [ + "Affichage (technique)", + "Affichage, Syst\u00e8mes d'", + "Syst\u00e8mes de visualisation de l'information", + "Visualisation (informatique)", + "Visualisation de l'information, Syst\u00e8mes de", + "Visuel (informatique)", + "Afficheurs", + "Dispositifs d'affichage", + "Dispositifs de visualisation de l'information", + "Donn\u00e9es - Affichage", + "Donn\u00e9es - Syst\u00e8mes de visualisation", + "Donn\u00e9es - Visualisation", + "Information, Syst\u00e8mes d'affichage de l'", + "Information, Syst\u00e8mes de visualisation de l'" + ], + "md5": "637ca6496c255a684ac307db32ab6708" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Macintosh (ordinateur)", + "bnf_type": "sujet Rameau", + "classification": [ { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh93003751", - "source": "LCSH" - }, - "authorized_access_point": "Ethnology--Slovakia" + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" } ], + "identifier": "http://www.idref.fr/027694852", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/028244494", + "value": "http://www.idref.fr/027694852", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb120120186", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11968218n", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11968218" } ], - "classification": [ + "pid": "027694852", + "related": [ { - "name": "Ethnologie, anthropologie, folklore", - "type": "bf:ClassificationDdc", - "classificationPortion": "390" + "authorized_access_point": "PowerMac (ordinateur)" } ], - "authorized_access_point": "Ethnologie - Slovaquie" - }, - { - "md5": "98f42691805fb509d0cf783d756b56a8", - "pid": "028283678", - "note": [ + "narrower": [ { - "label": [ - "Grand dict. encyclop\u00e9dique Larousse (art. : Amendement)", - "Vocabulaire juridique / G. Cornu, 2007 (art. : Amendement)", - "Eurovoc thesaurus (art. : Amendement) - http://eurovoc.europa.eu (2017-10-12)", - "Lexique des termes juridiques Dalloz 2015-2016 / S. Guinchard, T. Debard, 2015 (art. : Amendement)", - "Dict. du droit constitutionnel / M. de Villiers, A. Le Divellec, 2015 (art. : Amendement)", - "Constitution du 4 octobre 1958 (art. 44) - https://www.legifrance.gouv.fr (2017-10-12)", - "La r\u00e9novation du droit d'amendement / M.-A. Granger [in] Revue fran\u00e7aise de droit constitutionnel, 2008, 3, 75", - "Dict. de droit constitutionnel / T. Debard, 2007 (art. : Amendement) : amendement l\u00e9gislatif ; amendements gouvernementaux" - ], - "noteType": "dataSource" + "authorized_access_point": "AppleTalk (syst\u00e8me de r\u00e9seau local)" }, { - "label": [ - "Les membres du Parlement et le Gouvernement ont le droit d'amendement (art. 44 de la Constitution de 1958). Proposition de modification d'un texte de loi au cours de sa discussion" - ], - "noteType": "general" + "authorized_access_point": "Macintosh Classic (ordinateur)" + }, + { + "authorized_access_point": "Macintosh PowerBook (bloc-notes)" } ], - "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Proc\u00e9dure parlementaire" - }, - { - "authorized_access_point": "Projets de loi" + "authorized_access_point": "Apple (ordinateurs)" } ], - "related": [ + "variant_access_point": [ + "Apple Macintosh (ordinateur)" + ], + "md5": "3c0b8dc141dfe7371ec3c2edfbd74aeb" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Convertisseurs \u00e9lectriques", + "bnf_type": "sujet Rameau", + "classification": [ { - "authorized_access_point": "Amendements" + "type": "bf:ClassificationDdc", + "classificationPortion": "600", + "name": "Sciences appliqu\u00e9es" } ], - "bnf_type": "sujet Rameau", "closeMatch": [ { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85004212", - "source": "LCSH" - }, - "authorized_access_point": "Legislative amendments" + "authorized_access_point": "Convertisseurs \u00e9lectriques", + "source": "RVMLaval" }, { - "source": "RVMLaval", - "authorized_access_point": "Amendements (Proc\u00e9dure parlementaire)" + "authorized_access_point": "Electric current converters", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85041637", + "source": "LCSH" + } + ] } ], + "identifier": "http://www.idref.fr/027710025", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/028283678", + "value": "http://www.idref.fr/027710025", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12015117v", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119694309", "source": "BNF" - } - ], - "classification": [ - { - "name": "Droit", - "type": "bf:ClassificationDdc", - "classificationPortion": "340" - } - ], - "variant_access_point": [ - "Amendements (proc\u00e9dure parlementaire)", - "Amendements gouvernementaux", - "Amendements l\u00e9gislatifs", - "Amendements parlementaires", - "Gouvernement - Droit d'amendement", - "Parlements - Droit d'amendement" - ], - "authorized_access_point": "Droit d'amendement (droit constitutionnel)" - }, - { - "md5": "4ddc7f261251241581332c5bb713dcd8", - "pid": "028354559", - "type": "bf:Topic", - "broader": [ - { - "authorized_access_point": "Litt\u00e9rature espagnole" }, { - "authorized_access_point": "Nouvelles hispanophones" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11969430" } ], + "pid": "027710025", "related": [ { - "authorized_access_point": "Contes litt\u00e9raires espagnols" + "authorized_access_point": "Commutation (\u00e9lectricit\u00e9)" } ], - "bnf_type": "genre/forme Rameau", "narrower": [ { - "authorized_access_point": "Micronouvelles espagnoles" + "authorized_access_point": "Redresseurs int\u00e9gr\u00e9s" }, { - "authorized_access_point": "Nouvelles de science-fiction espagnoles" + "authorized_access_point": "Convertisseurs multiniveaux" }, { - "authorized_access_point": "Nouvelles \u00e9rotiques espagnoles" + "authorized_access_point": "Changeurs de fr\u00e9quence" }, { - "authorized_access_point": "Nouvelles fantastiques espagnoles" + "authorized_access_point": "Convertisseurs \u00e0 thyristors" }, { - "authorized_access_point": "Nouvelles polici\u00e8res espagnoles" - } - ], - "closeMatch": [ + "authorized_access_point": "Convertisseurs continu-continu" + }, { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85121942", - "source": "LCSH" - }, - "authorized_access_point": "Short stories, Spanish" + "authorized_access_point": "Hacheurs (\u00e9lectricit\u00e9)" }, { - "source": "RVMLaval", - "authorized_access_point": "Nouvelles espagnoles" - } - ], - "identifiedBy": [ - { - "type": "uri", - "value": "http://www.idref.fr/028354559", - "source": "IDREF" + "authorized_access_point": "Klystrons" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12020709w", - "source": "BNF" - } - ], - "classification": [ - { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" - } - ], - "authorized_access_point": "Nouvelles espagnoles" - }, - { - "md5": "787d9025ae89e2b0cd8fca5569fcd459", - "pid": "028359070", - "note": [ - { - "label": [ - "Sous cette vedette, on trouve les recueils de po\u00e9sie du Luxembourg en luxembourgeois ou en diverses langues" - ], - "noteType": "general" + "authorized_access_point": "Onduleurs (\u00e9lectricit\u00e9)" } ], - "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Litt\u00e9rature luxembourgeoise" + "authorized_access_point": "Alimentations (\u00e9lectricit\u00e9)" }, { - "authorized_access_point": "Po\u00e9sie dialectale allemande" - } - ], - "related": [ + "authorized_access_point": "\u00c9lectronique de puissance" + }, { - "authorized_access_point": "Chansons luxambourgeoises" + "authorized_access_point": "Machines \u00e9lectriques" } ], - "bnf_type": "genre/forme Rameau", - "closeMatch": [ + "variant_access_point": [ + "Conversion de courant (\u00e9lectricit\u00e9)", + "Convertisseurs \u00e9lectroniques", + "Courants \u00e9lectriques - Convertisseurs" + ], + "md5": "377bfdb521f278eabdfd8970a2f2fdab" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Anticommunisme", + "bnf_type": "sujet Rameau", + "classification": [ { - "source": "RVMLaval", - "authorized_access_point": "Po\u00e9sie luxembourgeoise" + "type": "bf:ClassificationDdc", + "classificationPortion": "320", + "name": "Science politique" } ], + "identifier": "http://www.idref.fr/027727327", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/028359070", + "value": "http://www.idref.fr/027727327", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12021056q", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11970825v", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11970825" } ], - "authorized_access_point": "Po\u00e9sie luxembourgeoise" - }, - { - "md5": "b8d7b6b99801b50b43b78ec2b61bc6e0", - "pid": "028701755", "note": [ { + "noteType": "dataSource", "label": [ "Grand Larousse universel", - "Petit Robert 1, 1993" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Sous cette vedette, obligatoirement suivie d'une subdivision g\u00e9ographique ou de la subdivision : \u00c0 l'\u00e9tranger, directement ou apr\u00e8s une subdivision de sujet, on trouve les documents sur les Syriens hors de Syrie. Les documents sur les Syriens en Syrie se trouvent sous des vedettes-mati\u00e8re telles que : Moeurs et coutumes -- Syrie ; etc" - ], - "noteType": "general" + "Grand Robert de la langue fran\u00e7aise, 2001" + ] } ], - "type": "bf:Topic", - "broader": [ + "pid": "027727327", + "related": [ { - "authorized_access_point": "Ethnologie - Syrie" + "authorized_access_point": "Communisme" } ], - "related": [ - { - "authorized_access_point": "Am\u00e9ricains d'origine syrienne" - }, + "narrower": [ { - "authorized_access_point": "Br\u00e9siliens d'origine syrienne" + "authorized_access_point": "Maccarthysme" }, { - "authorized_access_point": "Auteurs d'origine syrienne" + "authorized_access_point": "Op\u00e9ration Zypresse (1944)" }, { - "authorized_access_point": "Syrie" + "authorized_access_point": "Propagande anticommuniste" } ], + "variant_access_point": [ + "Anti-communisme", + "Communisme - Mouvements d'opposition", + "Mouvements anti-communistes", + "Mouvements anticommunistes", + "Opposition au communisme", + "R\u00e9sistance contre le communisme" + ], + "md5": "69045143fea8c3008ab2ad5de0f72bac" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Noirs am\u00e9ricains - Politique et gouvernement", "bnf_type": "sujet Rameau", - "narrower": [ - { - "authorized_access_point": "Juifs syriens" - }, - { - "authorized_access_point": "R\u00e9fugi\u00e9s syriens" - }, + "classification": [ { - "authorized_access_point": "Syriennes" + "type": "bf:ClassificationDdc", + "classificationPortion": "320", + "name": "Science politique" }, { - "authorized_access_point": "Travailleurs \u00e9trangers syriens" + "type": "bf:ClassificationDdc", + "classificationPortion": "390", + "name": "Ethnologie" } ], "closeMatch": [ { + "authorized_access_point": "African Americans--Politics and government", "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85131719", - "source": "LCSH" - }, - "authorized_access_point": "Syrians" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh95010593", + "source": "LCSH" + } + ] }, { - "source": "RVMLaval", - "authorized_access_point": "Syriens" + "authorized_access_point": "Noirs am\u00e9ricains -- Politique et gouvernement", + "source": "RVMLaval" } ], + "identifier": "http://www.idref.fr/027727521", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/028701755", + "value": "http://www.idref.fr/027727521", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12048392h", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119708413", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Ethnologie, anthropologie, folklore", - "type": "bf:ClassificationDdc", - "classificationPortion": "390" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11970841" } ], - "authorized_access_point": "Syriens" - }, - { - "md5": "152a3170f3390535cf0468b7382e6c94", - "pid": "028910044", - "type": "bf:Topic", - "broader": [ + "pid": "027727521", + "related": [ + { + "authorized_access_point": "Noirs am\u00e9ricains" + }, { - "authorized_access_point": "Ethnologie - [Localisations g\u00e9ographiques]" + "authorized_access_point": "Noirs am\u00e9ricains - Droits" } ], - "bnf_type": "sujet Rameau", "narrower": [ { - "authorized_access_point": "Allemands de Petite Lituanie" - }, - { - "authorized_access_point": "Boikos" - }, - { - "authorized_access_point": "Juifs - Pologne" - }, - { - "authorized_access_point": "Kachoubes" - }, - { - "authorized_access_point": "Lemkoviens" - }, - { - "authorized_access_point": "Polonais" - }, - { - "authorized_access_point": "Ruth\u00e8nes" + "authorized_access_point": "Leadership noir am\u00e9ricain" }, { - "authorized_access_point": "Sil\u00e9siens" + "authorized_access_point": "Nationalisme noir - \u00c9tats-Unis" } ], + "variant_access_point": [ + "Noirs am\u00e9ricains - Activit\u00e9 politique" + ], + "md5": "84cb39f5c65bef4c00882f71fb8673c4" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Proconsuls (Rome)", + "bnf_type": "sujet Rameau", "closeMatch": [ { - "source": "RVMLaval", - "authorized_access_point": "Ethnologie -- Pologne" - }, - { + "authorized_access_point": "Proconsuls, Roman", "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85045360", - "source": "LCSH" - }, - "authorized_access_point": "Ethnology--Poland" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85107160", + "source": "LCSH" + } + ] } ], + "identifier": "http://www.idref.fr/027729044", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/028910044", + "value": "http://www.idref.fr/027729044", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12064823h", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119709792", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Ethnologie, anthropologie, folklore", - "type": "bf:ClassificationDdc", - "classificationPortion": "390" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11970979" } ], - "authorized_access_point": "Ethnologie - Pologne" - }, - { - "md5": "a88a56b05bb606e5087980c6cc1e5d81", - "pid": "028962389", "note": [ { + "noteType": "dataSource", "label": [ - "Dict. illustr\u00e9 des termes de m\u00e9decine, 2012 (art. : Surdit\u00e9)", - "Dict. de m\u00e9decine Flammarion, 2008 (art. : Surdit\u00e9)", - "Dict. de l'Acad\u00e9mie de m\u00e9decine (art. : Surdit\u00e9) - http://dictionnaire.academie-medecine.fr (2022-05-30)", - "Loterre (art. : Surdit\u00e9 neurosensorielle) - https://www.loterre.fr (2022-05-30)", - "Handicaps et psychopathologies / V. Pag\u00e8s, 2017" - ], - "noteType": "dataSource" + "Mourre", + "GLU" + ] } ], - "type": "bf:Topic", + "pid": "027729044", "broader": [ { - "authorized_access_point": "Surdit\u00e9" + "authorized_access_point": "Consuls (Rome)" }, { - "authorized_access_point": "Troubles de la perception auditive" - } - ], - "bnf_type": "sujet Rameau", - "narrower": [ - { - "authorized_access_point": "Usher, Syndrome d'" - } - ], - "closeMatch": [ - { - "source": "MeSH", - "authorized_access_point": "Hearing Loss, Sensorineural" + "authorized_access_point": "Magistrats (Rome)" }, { - "source": "RVMLaval", - "authorized_access_point": "Surdit\u00e9 de perception" + "authorized_access_point": "Provinces romaines" } ], + "variant_access_point": [ + "Proconsulat (Rome)", + "Proconsuls romains" + ], + "md5": "cbaf5757cb803c80d4967d59a2fb839e" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Transpac (r\u00e9seau de transmission de donn\u00e9es)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027735893", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/028962389", + "value": "http://www.idref.fr/027735893", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12068935r", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11971521w", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Sciences m\u00e9dicales et param\u00e9dicales", - "type": "bf:ClassificationDdc", - "classificationPortion": "610" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11971521" } ], - "variant_access_point": [ - "Surdit\u00e9 neurosensorielle" - ], - "authorized_access_point": "Surdit\u00e9 de perception" - }, - { - "md5": "136777aea5c646be2b89479051fd1a91", - "pid": "02897297X", "note": [ { + "noteType": "dataSource", "label": [ - "Sous cette vedette, on trouve la litt\u00e9rature espagnole produite au 20e si\u00e8cle dans l'ensemble de l'Espagne. La litt\u00e9rature espagnole produite dans un lieu particulier se trouve sous des vedettes-mati\u00e8re du type : Litt\u00e9rature espagnole -- [Subdivision g\u00e9ographique] -- 20e si\u00e8cle, par ex. : Litt\u00e9rature espagnole -- Espagne -- Aragon (Espagne) -- 20e si\u00e8cle" - ], - "noteType": "general" + "GDEL" + ] } ], - "type": "bf:Topic", + "pid": "027735893", "broader": [ { - "authorized_access_point": "Civilisation - Espagne - 20e si\u00e8cle" + "authorized_access_point": "Commutation de paquets" }, { - "authorized_access_point": "Litt\u00e9rature espagnole" + "authorized_access_point": "T\u00e9l\u00e9communications - France" } ], - "related": [ - { - "authorized_access_point": "Litt\u00e9rature espagnole - 1870-1914" - }, + "variant_access_point": [ + "R\u00e9seau Transpac" + ], + "md5": "f287fdab0d04f62c0d21587979957327" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Sunna", + "bnf_type": "sujet Rameau", + "classification": [ { - "authorized_access_point": "Litt\u00e9rature espagnole - 1975-...." + "type": "bf:ClassificationDdc", + "classificationPortion": "200", + "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)" } ], - "bnf_type": "genre/forme Rameau", - "narrower": [ - { - "authorized_access_point": "La otra sentimentalidad" - }, + "identifier": "http://www.idref.fr/027756580", + "identifiedBy": [ { - "authorized_access_point": "Nov\u00edsimos" + "type": "uri", + "value": "http://www.idref.fr/027756580", + "source": "IDREF" }, { - "authorized_access_point": "Litt\u00e9rature espagnole - 1900-1939" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11973106c", + "source": "BNF" }, { - "authorized_access_point": "Litt\u00e9rature espagnole - 1939-1975" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11973106" } ], - "closeMatch": [ + "note": [ { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85126273", - "source": "LCSH" - }, - "authorized_access_point": "Spanish literature -- 20th century" + "noteType": "dataSource", + "label": [ + "Grand Larousse universel", + "Encycl. universalis (art. : Sunnisme) - http://www.universalis-edu.com (2016-01-11)", + "W\u012bk\u012bb\u012bdy\u0101 al-maws\u016b\u02bfa\u1e97 al-\u1e25urra\u1e97 - http://ar.wikipedia.org (2018-10-29)", + "Al-mun\u01e7id f\u012b al-lu\u0121a\u1e97 wa al-a\u02bfl\u0101m / D\u0101r al-Ma\u0161riq, 2005", + "Dict. historique de l'islam / J. et D. Sourdel, 2004", + "Dict. encyclop\u00e9dique de l'islam / C. Glass\u00e9, 1991 : sunnah", + "BnF Service arabe, 2018-10-29" + ] }, { - "source": "RVMLaval", - "authorized_access_point": "Litt\u00e9rature espagnole -- 20e si\u00e8cle" + "noteType": "general", + "label": [ + "Paroles et actes du Proph\u00e8te donn\u00e9s en exemple, comprenant ce qu'il a approuv\u00e9, autoris\u00e9 ou absous, tels qu'ils sont fix\u00e9s dans les Hadith, et qui constituent la coutume et fondent les usages dans l'islam sunnite" + ] } ], - "identifiedBy": [ + "pid": "027756580", + "related": [ { - "type": "uri", - "value": "http://www.idref.fr/02897297X", - "source": "IDREF" + "authorized_access_point": "Sunnisme" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12069760n", - "source": "BNF" + "authorized_access_point": "Litt\u00e9rature islamique" } ], - "classification": [ + "broader": [ { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "authorized_access_point": "Islam" } ], "variant_access_point": [ - "Litt\u00e9rature espagnole du 20e si\u00e8cle" + "Sunna\u1e97", + "\u0633\u0646\u0651\u0629", + "Sunnah", + "Al- sunna\u1e97", + "\u0627\u0644\u0633\u0646\u0651\u0629", + "Tradition (islam)" ], - "authorized_access_point": "Litt\u00e9rature espagnole - 20e si\u00e8cle" + "md5": "3e8221fd99fb924658056ba447e9e318" }, { - "md5": "0ee9ef6b3704f492c04d916cb205a00d", - "pid": "029241693", - "note": [ + "type": "bf:Topic", + "authorized_access_point": "Tuiles", + "bnf_type": "sujet Rameau", + "classification": [ { - "label": [ - "Les antiquit\u00e9s \u00e9gyptiennes : guide du visiteur / Mus\u00e9e du Louvre, D\u00e9partement des antiquit\u00e9s \u00e9gyptiennes, 1997" - ], - "noteType": "dataSource" + "type": "bf:ClassificationDdc", + "classificationPortion": "600", + "name": "Sciences appliqu\u00e9es" }, { - "label": [ - "Sous cette vedette, on trouve les documents sur les antiquit\u00e9s provenant de la civilisation de l'\u00c9gypte ancienne. Les documents sur les antiquit\u00e9s, quelle que soit leur origine, de l'\u00c9gypte actuelle se trouvent sous Antiquit\u00e9s -- \u00c9gypte" - ], - "noteType": "general" - } - ], - "type": "bf:Topic", - "broader": [ - { - "authorized_access_point": "Civilisation - \u00c9gypte - Jusqu'\u00e0 332 av. J.-C." + "type": "bf:ClassificationDdc", + "classificationPortion": "690", + "name": "B\u00e2timent" } ], - "related": [ + "closeMatch": [ { - "authorized_access_point": "Art \u00e9gyptien" + "authorized_access_point": "Tiles, Roofing", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85135357", + "source": "LCSH" + } + ] }, { - "authorized_access_point": "Antiquit\u00e9s - \u00c9gypte" + "authorized_access_point": "Tuiles", + "source": "RVMLaval" } ], - "bnf_type": "sujet Rameau", - "narrower": [ - { - "authorized_access_point": "Amulettes \u00e9gyptiennes" - }, + "identifier": "http://www.idref.fr/027756653", + "identifiedBy": [ { - "authorized_access_point": "Bijoux \u00e9gyptiens" + "type": "uri", + "value": "http://www.idref.fr/027756653", + "source": "IDREF" }, { - "authorized_access_point": "C\u00e9ramique \u00e9gyptienne" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119731129", + "source": "BNF" }, { - "authorized_access_point": "Flabellums" - }, + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11973112" + } + ], + "note": [ { - "authorized_access_point": "Inscriptions \u00e9gyptiennes" - }, + "noteType": "dataSource", + "label": [ + "Grand Robert de la langue fran\u00e7aise, 2001", + "Dicobat 10 : dict. g\u00e9n\u00e9ral du b\u00e2timent / J. de Vigan, 2011" + ] + } + ], + "pid": "027756653", + "related": [ { - "authorized_access_point": "Lampes \u00e9gyptiennes" + "authorized_access_point": "Construction en tuiles" }, { - "authorized_access_point": "Mastabas" + "authorized_access_point": "Toits en tuiles" }, { - "authorized_access_point": "Meubles \u00e9gyptiens" + "authorized_access_point": "Tuileries" }, { - "authorized_access_point": "Objets d'art \u00e9gyptiens" - }, + "authorized_access_point": "Tuiles - Industrie et commerce" + } + ], + "narrower": [ { - "authorized_access_point": "Poids et mesures \u00e9gyptiens" + "authorized_access_point": "Tuiles \u00e0 embo\u00eetement" }, { - "authorized_access_point": "Sarcophages \u00e9gyptiens" + "authorized_access_point": "Tuiles antiques" }, { - "authorized_access_point": "Shaouabtis" + "authorized_access_point": "Tuiles en b\u00e9ton" }, { - "authorized_access_point": "Temples \u00e9gyptiens" + "authorized_access_point": "Tuiles m\u00e9di\u00e9vales" }, { - "authorized_access_point": "Textiles et tissus \u00e9gyptiens" + "authorized_access_point": "Tuiles photovolta\u00efques" }, { - "authorized_access_point": "Vases \u00e9gyptiens" + "authorized_access_point": "Tuiles verniss\u00e9es" } ], - "identifiedBy": [ + "broader": [ { - "type": "uri", - "value": "http://www.idref.fr/029241693", - "source": "IDREF" + "authorized_access_point": "Construction - Mat\u00e9riaux" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12090894p", - "source": "BNF" - } - ], - "classification": [ - { - "name": "Pr\u00e9histoire et histoire ancienne", - "type": "bf:ClassificationDdc", - "classificationPortion": "930" + "authorized_access_point": "Couverture (construction)" } ], "variant_access_point": [ - "Arch\u00e9ologie de l'\u00c9gypte ancienne" + "Couverture en tuiles" ], - "authorized_access_point": "Antiquit\u00e9s \u00e9gyptiennes" + "md5": "c1074c17e0845876a770a30761c44e2c" }, { - "md5": "24a9c7e85a7f89578763dda36ee4954d", - "pid": "029260892", - "note": [ - { - "label": [ - "GDEL: Juin 1940 (appel du 18)" - ], - "noteType": "dataNotFound" - } - ], "type": "bf:Topic", - "deleted": "2022-08-25T10:47:31.610056+00:00", + "authorized_access_point": "Cartes \u00e0 m\u00e9moire", "bnf_type": "sujet Rameau", - "identifiedBy": [ + "classification": [ { - "type": "uri", - "value": "http://www.idref.fr/029260892", - "source": "IDREF" + "type": "bf:ClassificationDdc", + "classificationPortion": "621" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12092565r", - "source": "BNF" + "type": "bf:ClassificationDdc", + "classificationPortion": "600", + "name": "Sciences appliqu\u00e9es" } ], - "variant_access_point": [ - "18 juin 1940, Appel du", - "Juin 1940, Appel du 18" - ], - "authorized_access_point": "Appel du 18 juin 1940" - }, - { - "md5": "ee6b2b822d01cf06fe90b15f21f8a3ec", - "pid": "029531411", - "note": [ + "closeMatch": [ { - "label": [ - "S'emploie uniquement en subdivision chronologique aux vedettes du type : \u00c9glise catholique -- [subd. g\u00e9ogr.] et aux vedettes en lien avec l'\u00c9glise catholique" - ], - "noteType": "general" - } - ], - "type": "bf:Temporal", - "related": [ + "authorized_access_point": "Cartes \u00e0 m\u00e9moire", + "source": "RVMLaval" + }, { - "authorized_access_point": "\u00c9glise catholique - 1965-...." + "authorized_access_point": "Smart cards", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85123621", + "source": "LCSH" + } + ] } ], - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027759547", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/029531411", + "value": "http://www.idref.fr/027759547", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb121138342", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119733403", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11973340" } ], - "relation_pid": { - "type": "redirect_from", - "value": "08582898X" - }, - "classification": [ - { - "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)", - "type": "bf:ClassificationDdc", - "classificationPortion": "200" - }, + "pid": "027759547", + "related": [ { - "name": "Histoire et g\u00e9ographie (g\u00e9n\u00e9ralit\u00e9s)", - "type": "bf:ClassificationDdc", - "classificationPortion": "900" + "authorized_access_point": "Cartes de cr\u00e9dit" } ], - "authorized_access_point": "1965-...." - }, - { - "md5": "4e0ecdf71a2ea0fc4547416754fe58fc", - "pid": "029560020", - "note": [ + "narrower": [ { - "label": [ - "S'emploie uniquement en subdivision" - ], - "noteType": "general" - } - ], - "type": "bf:Topic", - "related": [ + "authorized_access_point": "Cartes professionnelles de sant\u00e9" + }, { - "authorized_access_point": "Hommes politiques" + "authorized_access_point": "Cartes de t\u00e9l\u00e9phone" + }, + { + "authorized_access_point": "Cartes de sant\u00e9" }, { - "authorized_access_point": "Constitutions" + "authorized_access_point": "Porte-monnaie \u00e9lectronique" } ], - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "broader": [ { - "type": "uri", - "value": "http://www.idref.fr/029560020", - "source": "IDREF" + "authorized_access_point": "Identification automatique" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb121160279", - "source": "BNF" - } - ], - "classification": [ + "authorized_access_point": "Microprocesseurs" + }, { - "type": "bf:ClassificationDdc", - "classificationPortion": "305" + "authorized_access_point": "Monnaie \u00e9lectronique" }, { - "name": "Sciences politiques", - "type": "bf:ClassificationDdc", - "classificationPortion": "320" + "authorized_access_point": "Ordinateurs - M\u00e9moires" }, { - "name": "Droit", - "type": "bf:ClassificationDdc", - "classificationPortion": "340" + "authorized_access_point": "Syst\u00e8mes de s\u00e9curit\u00e9" } ], "variant_access_point": [ - "R\u00e9dacteurs" + "Billettique", + "Cartes \u00e0 circuit int\u00e9gr\u00e9", + "Cartes \u00e0 microcircuit", + "Cartes \u00e0 microprocesseur", + "Cartes \u00e0 pistes magn\u00e9tiques", + "Cartes \u00e0 puce", + "Cartes \u00e9lectroniques", + "Cartes informatiques", + "Cartes intelligentes", + "Cartes magn\u00e9tiques" ], - "authorized_access_point": "R\u00e9dacteurs (droit)" + "md5": "f8ae440fff49fb8f802418f52ae3e193" }, { - "md5": "ddae9905a3499eccd9f595e819a8ec98", - "pid": "029563321", - "note": [ - { - "label": [ - "Encycl. universalis - http://www.universalis-edu.com (2021-08-25)" - ], - "noteType": "dataSource" - }, - { - "label": [ - "S'emploie \u00e9galement en subdivision", - "Sous cette vedette sont entr\u00e9s les ouvrages sur les m\u00e9thodes permettant d'\u00e9tudier l'activit\u00e9 cognitive : conception de mod\u00e8les de l'activit\u00e9 mentale et de m\u00e9thodes d'observation et de validation des mod\u00e8les cognitifs. Les ouvrages sur la cognition, synonyme en psychologie d'acte de connaissance, appr\u00e9hension du monde, sont entr\u00e9s sous Cognition. Les ouvrages sur l'ensemble des sciences qui portent sur la cognition : psychologie cognitive, linguistique, logique, recherches en intelligence artificielle et traitement de l'information chez l'homme, sont entr\u00e9s sous Sciences cognitives" - ], - "noteType": "general" - } - ], "type": "bf:Topic", - "broader": [ - { - "authorized_access_point": "Sciences cognitives" - } - ], - "related": [ + "authorized_access_point": "Soci\u00e9t\u00e9s de services en ing\u00e9nierie informatique", + "bnf_type": "sujet Rameau", + "classification": [ { - "authorized_access_point": "Consignes (\u00e9ducation)" + "type": "bf:ClassificationDdc", + "classificationPortion": "330", + "name": "Economie" }, { - "authorized_access_point": "Cognition" + "type": "bf:ClassificationDdc", + "classificationPortion": "621" }, { - "authorized_access_point": "Tests de concordance de script" + "type": "bf:ClassificationDdc", + "classificationPortion": "650", + "name": "Gestion et organisation de l'entreprise" } ], - "bnf_type": "sujet Rameau", - "narrower": [ - { - "authorized_access_point": "Apprentissage cognitif" - }, + "identifier": "http://www.idref.fr/027789551", + "identifiedBy": [ { - "authorized_access_point": "Associationnisme" + "type": "uri", + "value": "http://www.idref.fr/027789551", + "source": "IDREF" }, { - "authorized_access_point": "Biais cognitifs" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11975653r", + "source": "BNF" }, { - "authorized_access_point": "Cartes heuristiques" - }, + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11975653" + } + ], + "note": [ { - "authorized_access_point": "Charge cognitive" + "noteType": "dataSource", + "label": [ + "Encycl. autodidactique Quillet, 1998", + "Wikip\u00e9dia : entreprise de service du num\u00e9rique - http://fr.wikipedia.org (2017-05-31)", + "Encycl. de l'informatique et des syst\u00e8mes d'information, 2006", + "Le guide des SSII / P. Caillerez, 2013", + "Dico du net : SSII - Soci\u00e9t\u00e9 de Services en Ing\u00e9ni\u00e9rie Informatique - http://www.dicodunet.com (2017-05-31)", + "Les services num\u00e9riques / DGE, Direction g\u00e9n\u00e9rale des entreprises : entreprises de services num\u00e9riques (ESN, nouveau nom des SSII) - http://www.entreprises.gouv.fr/services/services-numeriques (2017-05-31)" + ] }, { - "authorized_access_point": "Communication \u00e9crite - Aspect cognitif" - }, + "noteType": "general", + "label": [ + "Soci\u00e9t\u00e9s de conseil sp\u00e9cialis\u00e9es en g\u00e9nie informatique. L'appellation \"entreprise de services du num\u00e9rique\" (ESN), d\u00e9cid\u00e9e par le Syntec Num\u00e9rique en 2013, reste tr\u00e8s peu usit\u00e9e face \u00e0 soci\u00e9t\u00e9 de services en ing\u00e9ni\u00e9rie informatique (SSII)" + ] + } + ], + "pid": "027789551", + "related": [ { - "authorized_access_point": "Connexionnisme" + "authorized_access_point": "Centres de traitement informatique" }, { - "authorized_access_point": "Distracteurs (psychologie)" + "authorized_access_point": "Infog\u00e9rance" }, { - "authorized_access_point": "Double t\u00e2che (psychologie)" - }, + "authorized_access_point": "Informaticiens-conseils" + } + ], + "narrower": [ { - "authorized_access_point": "Effet Zeigarnik" - }, + "authorized_access_point": "Soci\u00e9t\u00e9s de services en logiciels libres" + } + ], + "broader": [ { - "authorized_access_point": "Imagerie (psychologie)" + "authorized_access_point": "Informatique - Industrie et commerce" }, { - "authorized_access_point": "Intelligences multiples" - }, + "authorized_access_point": "Soci\u00e9t\u00e9s de conseil" + } + ], + "variant_access_point": [ + "Entreprises de services du num\u00e9rique", + "Entreprises de services num\u00e9riques", + "SS2I", + "SSCI", + "SSII", + "ESN", + "Informatique - Soci\u00e9t\u00e9s de services et de conseil", + "Ing\u00e9nierie informatique, Soci\u00e9t\u00e9s de services en", + "Num\u00e9rique, Entreprises de services du", + "Services informatiques, Soci\u00e9t\u00e9s de", + "Soci\u00e9t\u00e9s d'ing\u00e9nierie informatique", + "Soci\u00e9t\u00e9s de services et d'ing\u00e9ni\u00e9rie informatique", + "Soci\u00e9t\u00e9s de services et de conseil en informatique" + ], + "md5": "a89e9146b8961ac8f131fdb2567e835d" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Tableurs", + "bnf_type": "sujet Rameau", + "classification": [ { - "authorized_access_point": "Protocoles verbaux" - }, + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "closeMatch": [ { - "authorized_access_point": "Rapport au savoir" + "authorized_access_point": "Tableurs", + "source": "RVMLaval" }, { - "authorized_access_point": "Repr\u00e9sentation mentale" - }, + "authorized_access_point": "Electronic spreadsheets", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85042371", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/027793575", + "identifiedBy": [ { - "authorized_access_point": "R\u00e9solution de probl\u00e8me" + "type": "uri", + "value": "http://www.idref.fr/027793575", + "source": "IDREF" }, { - "authorized_access_point": "Sch\u00e9ma narratif" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119759647", + "source": "BNF" }, { - "authorized_access_point": "Th\u00e9orie de l'esprit (psychologie)" - }, + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11975964" + } + ], + "note": [ { - "authorized_access_point": "Transfert d'apprentissage" - }, + "noteType": "dataSource", + "label": [ + "GDEL" + ] + } + ], + "pid": "027793575", + "related": [ { - "authorized_access_point": "Typicalit\u00e9" + "authorized_access_point": "Grapheurs" }, { - "authorized_access_point": "Vicariance (psychologie)" + "authorized_access_point": "Solveurs (logiciels)" } ], - "closeMatch": [ + "broader": [ { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh87007652", - "source": "LCSH" - }, - "authorized_access_point": "Cognitive psychology" - }, + "authorized_access_point": "Logiciels" + } + ], + "variant_access_point": [ + "Chiffriers \u00e9lectroniques", + "Feuilles de calcul \u00e9lectroniques" + ], + "md5": "4deda489b970384fbee7aa8d03412872" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Personnel - Droits", + "bnf_type": "sujet Rameau", + "classification": [ { - "source": "RVMLaval", - "authorized_access_point": "Psychologie cognitive" + "type": "bf:ClassificationDdc", + "classificationPortion": "340", + "name": "Droit" } ], + "identifier": "http://www.idref.fr/027808394", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/029563321", + "value": "http://www.idref.fr/027808394", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12116308v", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11977077k", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Psychologie, psychanalyse", - "type": "bf:ClassificationDdc", - "classificationPortion": "150" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11977077" } ], - "variant_access_point": [ - "Cognitivisme", - "Contribution \u00e0 la psychologie cognitive" - ], - "authorized_access_point": "Psychologie cognitive" - }, - { - "md5": "c4e2675ae0fbd2bd6a1ca3b033a3d391", - "pid": "029910609", "note": [ { + "noteType": "dataSource", "label": [ - "Grand Larousse universel", - "Atlas des peuples d'Europe centrale / A. et J. Sellier, 1993", - "Dict. encyclop\u00e9dique d'histoire / M. Mourre, 1996", - "Encycl. of world cultures / D. Levinson, 1991-1996 : Carpatho-Rusyns", - "One Europe, many nations : an historical dict. of European national groups / J. B. Minahan, 2000 : Carpatho-Rusyns" - ], - "noteType": "dataSource" + "Encycl. universalis (art. : Mauroy, Pierre) : droits des salari\u00e9s dans l'entreprise ; (art. : Services, \u00c9conomie de) : droits du personnel - http://www.universalis-edu.com (2016-05-13)", + "Les droits des travailleurs / J. Auroux, 1982", + "Droits des salari\u00e9s : salari\u00e9s du priv\u00e9, guide juridique de la CFDT / T. Ouazan, 2015" + ] } ], - "type": "bf:Topic", - "broader": [ - { - "authorized_access_point": "Ethnologie - Pologne" - }, + "pid": "027808394", + "related": [ { - "authorized_access_point": "Ethnologie - Roumanie" + "authorized_access_point": "Personnel" }, { - "authorized_access_point": "Ethnologie - Slovaquie" + "authorized_access_point": "Religion en milieu de travail" }, { - "authorized_access_point": "Ethnologie - Ukraine" + "authorized_access_point": "R\u00e8glement int\u00e9rieur" } ], - "bnf_type": "sujet Rameau", "narrower": [ { - "authorized_access_point": "Boikos" + "authorized_access_point": "Bases de donn\u00e9es \u00e9conomiques et sociales (relations industrielles)" }, { - "authorized_access_point": "Houtsoules" + "authorized_access_point": "Communication en direction du personnel" }, { - "authorized_access_point": "Lemkoviens" - } - ], - "closeMatch": [ - { - "source": "RVMLaval", - "authorized_access_point": "Ruth\u00e8nes" + "authorized_access_point": "Droit de gr\u00e8ve" }, { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh94005758", - "source": "LCSH" - }, - "authorized_access_point": "Carpatho-Rusyns" + "authorized_access_point": "Expression des salari\u00e9s" }, { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85116084", - "source": "LCSH" - }, - "authorized_access_point": "Ruthenians" + "authorized_access_point": "Repr\u00e9sentation du personnel" } ], - "identifiedBy": [ + "broader": [ { - "type": "uri", - "value": "http://www.idref.fr/029910609", - "source": "IDREF" + "authorized_access_point": "Droit du travail" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12143605j", - "source": "BNF" - } - ], - "classification": [ - { - "name": "Ethnologie, anthropologie, folklore", - "type": "bf:ClassificationDdc", - "classificationPortion": "390" + "authorized_access_point": "Droits \u00e9conomiques et sociaux" } ], "variant_access_point": [ - "Carpatho-Rusyns", - "Carpatho-Ruth\u00e8nes", - "Petits-Russes", - "Petits-Russiens", - "Rus'", - "Rusini", - "Rusins", - "Rusiny", - "Rusnaks", - "Rusnatsi", - "Rusnatsy", - "Rusyns", - "Rusyny", - "Ruthenen", - "Ruth\u00e9niens", - "Ukrainiens de l'Ouest", - "Ukrainiens occidentaux", - "Ukrainiens-Ruth\u00e8nes" + "Droits des salari\u00e9s dans l'entreprise", + "Droits des travailleurs dans l'entreprise", + "Droits du personnel dans l'entreprise", + "Entreprises - Droits du personnel", + "Travailleurs - Droits" ], - "authorized_access_point": "Ruth\u00e8nes" + "md5": "a0482653dcd1ff52674061b7b3925f15" }, { - "md5": "8badf8e100384b57c3ccef62c2f6445a", - "pid": "030714451", - "note": [ + "type": "bf:Topic", + "authorized_access_point": "Universit\u00e9s - Administration", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027808629", + "identifiedBy": [ { - "label": [ - "Sous cette vedette, on trouve les compositions (qui n'ont pas de forme ou de genre particulier) pour alto solo, et les recueils de compositions de formes et de genres diff\u00e9rents pour alto solo" - ], - "noteType": "general" + "type": "uri", + "value": "http://www.idref.fr/027808629", + "source": "IDREF" }, { - "label": [ - "Voir aussi les vedettes de musique comprenant les mots alto ou altos" - ], - "noteType": "seeReference" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11977092g", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11977092" } ], - "type": "bf:Topic", + "pid": "027808629", "related": [ { - "authorized_access_point": "Alto (instrument de musique)" + "authorized_access_point": "Recteurs d'acad\u00e9mie" + }, + { + "authorized_access_point": "Enseignement sup\u00e9rieur - R\u00e9forme" }, { - "authorized_access_point": "Musique \u00e9lectroacoustique mixte (alto)" + "authorized_access_point": "Autonomie universitaire" } ], - "bnf_type": "genre/forme Rameau", "narrower": [ { - "authorized_access_point": "Arabesques (alto)" + "authorized_access_point": "\u00c9tudiants - Participation \u00e0 la gestion de l'administration" }, { - "authorized_access_point": "Chaconnes (alto)" + "authorized_access_point": "Coop\u00e9ration universitaire" }, { - "authorized_access_point": "\u00c9tudes (alto)" + "authorized_access_point": "Pr\u00e9sidents et recteurs d'universit\u00e9" }, { - "authorized_access_point": "Pr\u00e9ludes (alto)" + "authorized_access_point": "Enseignants - Participation \u00e0 la gestion de l'administration" }, { - "authorized_access_point": "Sonates (alto)" + "authorized_access_point": "Doyens (enseignement sup\u00e9rieur)" }, { - "authorized_access_point": "Suites (alto)" + "authorized_access_point": "Biblioth\u00e9caires d'universit\u00e9 - Rang de professeur" + } + ], + "variant_access_point": [ + "Administration universitaire" + ], + "md5": "6fb844c6179290343a59d3dce53e3717" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Zaydites", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "200", + "name": "Religion" }, { - "authorized_access_point": "Variations (alto)" + "type": "bf:ClassificationDdc", + "classificationPortion": "305", + "name": "Groupes sociaux" } ], "closeMatch": [ { + "authorized_access_point": "Zayd\u012bs", "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85143486", - "source": "LCSH" - }, - "authorized_access_point": "Viola music" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85149552", + "source": "LCSH" + } + ] + }, + { + "authorized_access_point": "Zayd\u012byah", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh 91000306", + "source": "LCSH" + } + ] + }, + { + "authorized_access_point": "Zaydites", + "source": "RVMLaval" }, { - "source": "RVMLaval", - "authorized_access_point": "Alto, Musique d'" + "authorized_access_point": "Zaydisme", + "source": "RVMLaval" } ], + "identifier": "http://www.idref.fr/027826171", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/030714451", + "value": "http://www.idref.fr/027826171", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12207487g", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11978443m", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Musique", - "type": "bf:ClassificationDdc", - "classificationPortion": "780" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11978443" } ], - "variant_access_point": [ - "Musique d'alto", - "Musique pour alto" - ], - "authorized_access_point": "Alto, Musique d'" - }, - { - "md5": "fbbc45d779bffc769213e823f501344c", - "pid": "030763762", "note": [ { + "noteType": "dataSource", "label": [ - "Wikip\u00e9dia (art. : Soju) - https://fr.wikipedia.org (2022-03-02)", - "Une vague de Kimch'i : la gastronomie cor\u00e9enne face \u00e0 la mondialisation Entre Soft Power et menace / B. Joinau [in] Outre-Terre, 2014, 2, 39 : soju", - "Soju : a global history / H. Park, 2021", - "Larousse agricole / M. Mazoyer, 2002 (art. : Riz)", - "Le Japon : dict. et civilisation / L. Fr\u00e9d\u00e9ric, 1996 (art. : Sak\u00e9)" - ], - "noteType": "dataSource" + "Grand Larousse universel : zaydisme ; zaydite ; Zaydiyya", + "Encycl. universalis : zaydiyya - http://www.universalis-edu.com (2018-05-15)", + "Al-mun\u01e7id f\u012b al-lu\u0121a\u1e97 wa al-a\u02bfl\u0101m / D\u0101r al-Ma\u0161riq, 2005", + "Dict. des religions / P. Poupard, 1985", + "Dict. encyclop\u00e9dique de l'islam / C. Glass\u00e9, 1991 : zayd\u012btes", + "Dict. historique de l'islam / J. et D. Sourdel, 1996 : zaydisme", + "BnF Service arabe, 2018-06-22" + ] } ], - "type": "bf:Topic", + "pid": "027826171", "broader": [ { - "authorized_access_point": "Boissons alcoolis\u00e9es" + "authorized_access_point": "Chiites" }, { - "authorized_access_point": "Produits du riz" + "authorized_access_point": "Sectes islamiques" } ], + "variant_access_point": [ + "Zaydiyya\u1e97", + "\u0632\u064a\u062f\u064a\u0651\u0629", + "Zaydiyya", + "Zaydiyyah", + "Al- zaydiyya\u1e97", + "\u0627\u0644\u0632\u064a\u062f\u064a\u0651\u0629", + "Zaidisme", + "Zaidites", + "Zaydisme" + ], + "md5": "53e7c31b484a048033d5ecd6cdc0a3dc" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Grec (langue) - Vocabulaire", "bnf_type": "sujet Rameau", - "closeMatch": [ - { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85113886", - "source": "LCSH" - }, - "authorized_access_point": "Rice beer" - }, + "classification": [ { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85113911", - "source": "LCSH" - }, - "authorized_access_point": "Rice wines" - }, + "type": "bf:ClassificationDdc", + "classificationPortion": "400", + "name": "Langues et linguistique" + } + ], + "closeMatch": [ { + "authorized_access_point": "Greek language--Etymology", "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh2018001862", - "source": "LCSH" - }, - "authorized_access_point": "Soju" - }, - { - "source": "RVMLaval", - "authorized_access_point": "Sak\u00e9" - }, - { - "source": "RVMLaval", - "authorized_access_point": "Bi\u00e8re de riz" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85057154", + "source": "LCSH" + } + ] }, { - "source": "RVMLaval", - "authorized_access_point": "Vin de riz" + "authorized_access_point": "Grec (Langue)--\u00c9tymologie", + "source": "RVMLaval" } ], + "identifier": "http://www.idref.fr/027845214", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/030763762", + "value": "http://www.idref.fr/027845214", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb122114230", + "value": "http://catalogue.bnf.fr/ark:/12148/cb133191671", "source": "BNF" - } - ], - "classification": [ - { - "name": "Agriculture, \u00e9levage", - "type": "bf:ClassificationDdc", - "classificationPortion": "630" }, { - "name": "Economie domestique, h\u00f4tellerie", - "type": "bf:ClassificationDdc", - "classificationPortion": "640" - } - ], - "variant_access_point": [ - "Bi\u00e8re de riz", - "Eaux-de-vie de riz", - "Riz, Alcool de", - "Sak\u00e9", - "Soju", - "Vin de riz" - ], - "authorized_access_point": "Alcool de riz" - }, - { - "md5": "64a52671a4a83a6e675442f284ebb5b6", - "pid": "030767806", - "type": "bf:Topic", - "broader": [ - { - "authorized_access_point": "Ethnologie - [Localisations g\u00e9ographiques]" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13319167" } ], - "bnf_type": "sujet Rameau", + "pid": "027845214", "narrower": [ { - "authorized_access_point": "Allemands de Bucovine" + "authorized_access_point": "Ai\u0313d\u1e53s (le mot grec)" }, { - "authorized_access_point": "Allemands de Transylvanie" + "authorized_access_point": "Ai\u0313\u1e53n (le mot grec)" }, { - "authorized_access_point": "Allemands du Banat" + "authorized_access_point": "A\u00ee\u0313sa (le mot grec)" }, { - "authorized_access_point": "Allemands du Danube" + "authorized_access_point": "Au\u0313t\u00f3s (le mot grec)" }, { - "authorized_access_point": "Daces" + "authorized_access_point": "Ch\u00e1ris (le mot grec)" }, { - "authorized_access_point": "G\u00e9pides" + "authorized_access_point": "Charop\u00f3s (le mot grec)" }, { - "authorized_access_point": "Roumains" + "authorized_access_point": "Ch\u1e53ra (le mot grec)" }, { - "authorized_access_point": "Roumains d'origine fran\u00e7aise" + "authorized_access_point": "Chre\u00eda (le mot grec)" }, { - "authorized_access_point": "Roumains d'origine hongroise" + "authorized_access_point": "Da\u00edm\u014dn (le mot grec)" }, { - "authorized_access_point": "Ruth\u00e8nes" - } - ], - "closeMatch": [ + "authorized_access_point": "Diakon\u00eda (le mot grec)" + }, { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85045365", - "source": "LCSH" - }, - "authorized_access_point": "Ethnology--Romania" + "authorized_access_point": "Did\u00e1skalos (le mot grec)" }, { - "source": "RVMLaval", - "authorized_access_point": "Ethnologie--Roumanie" - } - ], - "identifiedBy": [ + "authorized_access_point": "D\u00ee\u0304mos (le mot grec)" + }, + { + "authorized_access_point": "Do\u00fblos (le mot grec)" + }, + { + "authorized_access_point": "Dr\u00f3sos (le mot grec)" + }, + { + "authorized_access_point": "D\u00fdnamis (le mot grec)" + }, + { + "authorized_access_point": "Ei\u0313k\u1e53n (le mot grec)" + }, + { + "authorized_access_point": "Ei\u0313k\u00f3s (le mot grec)" + }, + { + "authorized_access_point": "Eu\u0313\u0301chesthai (le mot grec)" + }, + { + "authorized_access_point": "Fantas\u00eda (le mot grec)" + }, + { + "authorized_access_point": "F\u00e1rmakon (le mot grec)" + }, + { + "authorized_access_point": "Fil\u00eda (le mot grec)" + }, + { + "authorized_access_point": "Fil\u00f3logos (le mot grec)" + }, + { + "authorized_access_point": "F\u00edlos (le mot grec)" + }, + { + "authorized_access_point": "Filosof\u00eda (le mot grec)" + }, + { + "authorized_access_point": "Fl\u00fdax (le mot grec)" + }, + { + "authorized_access_point": "F\u014dn\u012b \u0301 (le mot grec)" + }, + { + "authorized_access_point": "Fr\u012b\u0301n (le mot grec)" + }, + { + "authorized_access_point": "Fth\u00f3nos (le mot grec)" + }, + { + "authorized_access_point": "F\u00fdsis (le mot grec)" + }, + { + "authorized_access_point": "Glauk\u00f3s (le mot grec)" + }, + { + "authorized_access_point": "Gn\u014dstik\u00f3s (le mot grec)" + }, + { + "authorized_access_point": "Hek\u1e53n (le mot grec)" + }, + { + "authorized_access_point": "H\u00f3sios (le mot grec)" + }, + { + "authorized_access_point": "Hypoke\u00edmenon (le mot grec)" + }, + { + "authorized_access_point": "Kard\u00eda (le mot grec)" + }, + { + "authorized_access_point": "K\u00e9rdos (le mot grec)" + }, + { + "authorized_access_point": "Koin\u014dn\u00eda (le mot grec)" + }, + { + "authorized_access_point": "Kr\u00e2sis (le mot grec)" + }, + { + "authorized_access_point": "Kr\u00e1tos (le mot grec)" + }, + { + "authorized_access_point": "Kr\u012b\u0301n\u012b (le mot grec)" + }, + { + "authorized_access_point": "Kt\u00edz\u014d (le mot grec)" + }, + { + "authorized_access_point": "Lao\u00ed (le mot grec)" + }, + { + "authorized_access_point": "Leitourg\u00eda (le mot grec)" + }, + { + "authorized_access_point": "L\u012b\u1e2fs (le mot grec)" + }, + { + "authorized_access_point": "Martyr\u00eda (le mot grec)" + }, + { + "authorized_access_point": "Math\u012bt\u012b\u0301s (le mot grec)" + }, + { + "authorized_access_point": "M\u00e9llein (le mot grec)" + }, + { + "authorized_access_point": "M\u00ee\u0304nis (le mot grec)" + }, + { + "authorized_access_point": "M\u00eexis (le mot grec)" + }, + { + "authorized_access_point": "Mo\u00eera (le mot grec)" + }, + { + "authorized_access_point": "Myst\u012b\u0301rion (le mot grec)" + }, + { + "authorized_access_point": "M\u0177thos (le mot grec)" + }, + { + "authorized_access_point": "N\u012b\u0301pios (le mot grec)" + }, + { + "authorized_access_point": "N\u00f3mos (le mot grec)" + }, + { + "authorized_access_point": "No\u00fbs (le mot grec)" + }, + { + "authorized_access_point": "Oi\u0313k\u00f4\u0304 (le mot grec)" + }, + { + "authorized_access_point": "Oi\u0313kodome\u00een (le mot grec)" + }, + { + "authorized_access_point": "Oi\u0313kodom\u012b\u0301 (le mot grec)" + }, + { + "authorized_access_point": "Oi\u0313konom\u00eda (le mot grec)" + }, + { + "authorized_access_point": "Paide\u00eda (le mot grec)" + }, + { + "authorized_access_point": "Par\u00e1klit\u0304os (le mot grec)" + }, + { + "authorized_access_point": "P\u00e1roikos (le mot grec)" + }, + { + "authorized_access_point": "Parr\u012bs\u00eda (le mot grec)" + }, + { + "authorized_access_point": "P\u00e2s (le mot grec)" + }, + { + "authorized_access_point": "P\u00e1thos (le mot grec)" + }, + { + "authorized_access_point": "Peri\u012bg\u012bt\u012b\u0301s (le mot grec)" + }, + { + "authorized_access_point": "Peripat\u00f4\u0304 (le mot grec)" + }, + { + "authorized_access_point": "Perisse\u00eda (le mot grec)" + }, + { + "authorized_access_point": "Perisse\u00faein (le mot grec)" + }, + { + "authorized_access_point": "P\u00edstis (le mot grec)" + }, + { + "authorized_access_point": "Po\u00ed\u012bsis (le mot grec)" + }, + { + "authorized_access_point": "P\u00f3lis (le mot grec)" + }, + { + "authorized_access_point": "Polite\u00eda (le mot grec)" + }, + { + "authorized_access_point": "P\u00f3nos (le mot grec)" + }, + { + "authorized_access_point": "Proa\u00edresis (le mot grec)" + }, + { + "authorized_access_point": "Pr\u00f3krisis (le mot grec)" + }, + { + "authorized_access_point": "Pros\u00e9rchomai (le mot grec)" + }, + { + "authorized_access_point": "Psych\u012b\u0301 (le mot grec)" + }, + { + "authorized_access_point": "Skop\u00f3s (le mot grec)" + }, + { + "authorized_access_point": "S\u014dfros\u00fdn\u012b (le mot grec)" + }, + { + "authorized_access_point": "S\u014dt\u012b\u0301r (le mot grec)" + }, + { + "authorized_access_point": "Stoiche\u00eeon (le mot grec)" + }, + { + "authorized_access_point": "Sygg\u00e9neia (le mot grec)" + }, + { + "authorized_access_point": "Syggn\u1e53m\u012b (le mot grec)" + }, + { + "authorized_access_point": "Sykof\u00e1nt\u012bs (le mot grec)" + }, + { + "authorized_access_point": "S\u00fdmvolon (le mot grec)" + }, + { + "authorized_access_point": "Syne\u00edd\u012bsis (le mot grec)" + }, + { + "authorized_access_point": "S\u00fdnth\u012bma (le mot grec)" + }, + { + "authorized_access_point": "T\u00e9chn\u012b (le mot grec)" + }, + { + "authorized_access_point": "T\u00e9leios (le mot grec)" + }, + { + "authorized_access_point": "Tel\u00f4\u0304 (le mot grec)" + }, + { + "authorized_access_point": "T\u00e9los (le mot grec)" + }, + { + "authorized_access_point": "The\u014dr\u00eda (le mot grec)" + }, + { + "authorized_access_point": "Theosof\u00eda (le mot grec)" + }, + { + "authorized_access_point": "Thr\u00f3nos (le mot grec)" + }, + { + "authorized_access_point": "Thym\u00f3s (le mot grec)" + }, + { + "authorized_access_point": "T\u012bre\u00een (le mot grec)" + }, + { + "authorized_access_point": "T\u00eds (le mot grec)" + }, + { + "authorized_access_point": "Tl\u00ee\u0304nai (le mot grec)" + }, + { + "authorized_access_point": "Trag\u00e9lafos (le mot grec)" + }, + { + "authorized_access_point": "V\u00e1nausos (le mot grec)" + }, + { + "authorized_access_point": "V\u00ee\u0304ma (le mot grec)" + } + ], + "md5": "00dbf3bdd341a29aa780eeee6fc813ee" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Math\u00e9matiques - Notation", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "300", + "name": "Sciences sociales" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "510", + "name": "Math\u00e9matiques" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Math\u00e9matiques -- Notation", + "source": "RVMLaval" + }, + { + "authorized_access_point": "Mathematical notation", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85082126", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/02785082X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/02785082X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11980395v", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11980395" + } + ], + "pid": "02785082X", + "related": [ + { + "authorized_access_point": "Math\u00e9matiques - Formules" + }, + { + "authorized_access_point": "Symboles math\u00e9matiques (industries graphiques)" + } + ], + "narrower": [ + { + "authorized_access_point": "Chiffres" + } + ], + "broader": [ + { + "authorized_access_point": "Math\u00e9matiques" + }, + { + "authorized_access_point": "Sciences - Notation" + } + ], + "variant_access_point": [ + "\u00c9criture math\u00e9matique", + "Math\u00e9matiques - Symboles", + "Notation math\u00e9matique", + "Symboles math\u00e9matiques" + ], + "md5": "1a57daa96902df5f3e9f834887250c2d" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Adamites (secte m\u00e9di\u00e9vale)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "200", + "name": "Religion" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "305", + "name": "Groupes sociaux" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Adamites", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85000787", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/027856097", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027856097", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119808310", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11980831" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Encycl. universalis - http://www.universalis-edu.com (2018-01-15)", + "Les mots du christianisme / D. Le Tourneau, 2005 : adamite ; picard", + "Petit lexique des h\u00e9r\u00e9sies chr\u00e9tiennes / M. Th\u00e9ron, 2014 : adamites ; picards", + "Hist. des religions. II / H.-C. Puech, 1972 (p. 1264) : adamites ; picards", + "Historical dict. of radical christianity / W. H. Brackney, 2012 : Adamite ; Pikarti", + "The Oxford handbook of millennialism / C. Wessinger, 2016 : Pikarts (Pikarti) or Bohemian Adamites" + ] + }, + { + "noteType": "general", + "label": [ + "H\u00e9r\u00e9tiques chr\u00e9tiens suivant un Picard se disant le nouvel Adam, \u00e9tabli en Boh\u00eame, au 15e s. Ne pas confondre avec la secte gnostique des premiers si\u00e8cles du m\u00eame nom" + ] + } + ], + "pid": "027856097", + "related": [ + { + "authorized_access_point": "Taborites" + } + ], + "broader": [ + { + "authorized_access_point": "H\u00e9r\u00e9tiques chr\u00e9tiens" + }, + { + "authorized_access_point": "Sectes chr\u00e9tiennes m\u00e9di\u00e9vales" + } + ], + "variant_access_point": [ + "Adamiens (secte m\u00e9di\u00e9vale)", + "Adamites de Boh\u00eame", + "Picards (secte)", + "Pikarti (secte)" + ], + "md5": "555980764e0d878a01dfcbf65e9dd9b4" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Monte-Carlo, M\u00e9thode de", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "510", + "name": "Math\u00e9matiques" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Monte-Carlo, M\u00e9thode de", + "source": "RVMLaval" + }, + { + "authorized_access_point": "Monte Carlo method", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85087032", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/02785714X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/02785714X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119809151", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11980915" + } + ], + "pid": "02785714X", + "broader": [ + { + "authorized_access_point": "Analyse num\u00e9rique" + }, + { + "authorized_access_point": "Calculs num\u00e9riques" + }, + { + "authorized_access_point": "\u00c9chantillonnage (statistique)" + }, + { + "authorized_access_point": "Jeux de hasard (math\u00e9matiques)" + }, + { + "authorized_access_point": "Mod\u00e8les math\u00e9matiques" + }, + { + "authorized_access_point": "Processus stochastiques" + } + ], + "variant_access_point": [ + "\u00c9chantillonnage stochastique", + "M\u00e9thode de Monte-Carlo" + ], + "md5": "c9e70c43dd7dd03bf1dbeea08eaf383e" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Mythologie cor\u00e9enne", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "200", + "name": "Religion" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Mythology, Korean", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85089406", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/027867277", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027867277", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11981731z", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11981731" + } + ], + "pid": "027867277", + "broader": [ + { + "authorized_access_point": "Civilisation - Cor\u00e9e" + }, + { + "authorized_access_point": "Mythologie d'Asie orientale" + } + ], + "narrower": [ + { + "authorized_access_point": "Dieux cor\u00e9ens" + }, + { + "authorized_access_point": "Dokkaebi" + } + ], + "md5": "1430a7b2338397e73cf87e61765121a8" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Bulles pontificales", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/02786765X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/02786765X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11981763k", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11981763" + } + ], + "pid": "02786765X", + "related": [ + { + "authorized_access_point": "Bulles (sceaux)" + }, + { + "authorized_access_point": "Rescrits pontificaux" + } + ], + "broader": [ + { + "authorized_access_point": "Diplomatique pontificale" + }, + { + "authorized_access_point": "Documents pontificaux" + } + ], + "variant_access_point": [ + "Bulles papales", + "Papes - Bulles" + ], + "md5": "bdcbf33345a320332f7cd459ab8e89d5" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Bouddhisme - Chine", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "200", + "name": "Religion" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Buddhism -- China", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85017494", + "source": "LCSH" + } + ] + }, + { + "authorized_access_point": "Bouddhisme -- Chine", + "source": "RVMLaval" + } + ], + "identifier": "http://www.idref.fr/027868338", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027868338", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119818181", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11981818" + } + ], + "pid": "027868338", + "narrower": [ + { + "authorized_access_point": "Bouddhisme - Chine - 1368-1644 (Dynastie des Ming)" + }, + { + "authorized_access_point": "Chan (bouddhisme)" + }, + { + "authorized_access_point": "Lotus blanc (secte)" + }, + { + "authorized_access_point": "San jie jiao" + }, + { + "authorized_access_point": "Tiantai" + }, + { + "authorized_access_point": "Zhenyan" + } + ], + "variant_access_point": [ + "Bouddhisme chinois" + ], + "md5": "c2f0cc934cc3e56ce94928ab092db2a9" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Bases de donn\u00e9es - Gestion - Logiciels", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "identifier": "http://www.idref.fr/027870510", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027870510", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11981979h", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11981979" + } + ], + "pid": "027870510", + "broader": [ + { + "authorized_access_point": "Bases de donn\u00e9es - Gestion" + } + ], + "md5": "b7414a0101d1dc0d2fbe6663f2a3b399" + }, + { + "type": "bf:Topic", + "authorized_access_point": "\u00c9glise et \u00c9tat - Italie - 19e si\u00e8cle", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027873196", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027873196", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11982200j", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11982200" + } + ], + "pid": "027873196", + "narrower": [ + { + "authorized_access_point": "Non expedit" + } + ], + "md5": "119c590095443cc26438062e0796a633" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Administration scolaire - Informatique", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "370", + "name": "Education et enseignement" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Enseignement g\u00e9r\u00e9 par ordinateur", + "source": "RVMLaval" + }, + { + "authorized_access_point": "Computer managed instruction", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85029510", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/02787608X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/02787608X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119824096", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11982409" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. de l'\u00e9ducation / A. Van Zanten, 2008 (art. : Technologies de l'information et de la communication)", + "L'int\u00e9gration p\u00e9dagogique des TIC dans le travail enseignant / T. Karsenty, F. Larose, 2005 (p.29)", + "\u00c9cole, informatique et nouveau comportement / C. Laguerre, 1999 (p. 115)" + ] + }, + { + "noteType": "general", + "label": [ + "Utilisation des ordinateurs pour assister les enseignants et les administrateurs dans la coordination du processus p\u00e9dagogique (recherche, r\u00e9sum\u00e9 des dossiers scolaires, etc.)" + ] + } + ], + "pid": "02787608X", + "broader": [ + { + "authorized_access_point": "\u00c9ducation et informatique" + }, + { + "authorized_access_point": "Technologie \u00e9ducative" + } + ], + "variant_access_point": [ + "Enseignement g\u00e9r\u00e9 par ordinateur" + ], + "md5": "9ad90a273d2125584f005923df88d1d8" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Guerre mondiale (1939-1945) - Trait\u00e9s", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027883094", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027883094", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119829412", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11982941" + } + ], + "pid": "027883094", + "md5": "e16398071bd8a51d9ef1e47fc3ab8152" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Logiciels - Essais", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Logiciels -- Essais", + "source": "RVMLaval" + }, + { + "authorized_access_point": "Computer programs--Testing", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85029526", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/02788547X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/02788547X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119831235", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11983123" + } + ], + "pid": "02788547X", + "related": [ + { + "authorized_access_point": "D\u00e9bogage" + }, + { + "authorized_access_point": "Logiciels - D\u00e9veloppement" + }, + { + "authorized_access_point": "Logiciels - Validation" + }, + { + "authorized_access_point": "Logiciels - V\u00e9rification" + } + ], + "md5": "2ed345c6a5dc253bbe4f1e6e4d5df7ab" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Logiciels - Exactitude", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Logiciels -- Exactitude", + "source": "RVMLaval" + }, + { + "authorized_access_point": "Computer programs--Correctness", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85029525", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/027885496", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027885496", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11983124h", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11983124" + } + ], + "pid": "027885496", + "related": [ + { + "authorized_access_point": "Logiciels - V\u00e9rification" + } + ], + "broader": [ + { + "authorized_access_point": "D\u00e9bogage" + }, + { + "authorized_access_point": "Logique math\u00e9matique" + } + ], + "variant_access_point": [ + "Logiciels - Pr\u00e9cision" + ], + "md5": "42b30f9505ef01e4e55fc61040727bb9" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Histoire religieuse - Autriche - 18e si\u00e8cle", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027887960", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027887960", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11983314r", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11983314" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Laval RVM, 1990-08" + ] + } + ], + "pid": "027887960", + "md5": "1f7a2c62c1d14b8385d977dfa8a66dac" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Sinclair QL (ordinateur)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "identifier": "http://www.idref.fr/027908380", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027908380", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11984914n", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11984914" + } + ], + "note": [ + { + "noteType": "dataNotFound", + "label": [ + "LCSH (en ligne), 2001-06-20" + ] + } + ], + "pid": "027908380", + "broader": [ + { + "authorized_access_point": "Microordinateurs" + } + ], + "variant_access_point": [ + "QL (ordinateur)" + ], + "md5": "8ba54f9e3dab04450006eb8e4159a5a0" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Ordinateurs portatifs", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "600", + "name": "Sciences appliqu\u00e9es" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Ordinateurs portatifs", + "source": "RVMLaval" + }, + { + "authorized_access_point": "Laptop computers", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh90002033", + "source": "LCSH" + } + ] + }, + { + "authorized_access_point": "Portable computers", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85105056", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/027910210", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027910210", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11985066n", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11985066" + } + ], + "pid": "027910210", + "related": [ + { + "authorized_access_point": "Calculatrices programmables" + } + ], + "narrower": [ + { + "authorized_access_point": "MacBook Pro (ordinateur)" + }, + { + "authorized_access_point": "Liseuses num\u00e9riques" + }, + { + "authorized_access_point": "Tablettes num\u00e9riques" + }, + { + "authorized_access_point": "Mini-portables" + }, + { + "authorized_access_point": "Atari Portfolio (ordinateur)" + }, + { + "authorized_access_point": "Communicateurs personnels" + }, + { + "authorized_access_point": "Ordinateurs de poche" + }, + { + "authorized_access_point": "Macintosh PowerBook (bloc-notes)" + } + ], + "broader": [ + { + "authorized_access_point": "Informatique mobile" + }, + { + "authorized_access_point": "Microordinateurs" + } + ], + "variant_access_point": [ + "Microordinateurs portatifs", + "Ordinateurs portables", + "Ordinateurs transportables" + ], + "md5": "0c6dff7d50effde46d0c44c0a1e8322d" + }, + { + "type": "bf:Topic", + "authorized_access_point": "MSX (ordinateurs)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "identifier": "http://www.idref.fr/027915115", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027915115", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119855123", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11985512" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Sous cette vedette, on trouve les documents sur les micro-ordinateurs de diff\u00e9rentes marques conformes \u00e0 la norme MSX" + ] + } + ], + "pid": "027915115", + "related": [ + { + "authorized_access_point": "MSX-Basic (langage de programmation)" + } + ], + "variant_access_point": [ + "Microsoft Super eXtended Basic (ordinateurs)" + ], + "md5": "1c487271b790032eccca19b9c3643fc1" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Vinnitsa, Massacres de (1937-1939)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027920216", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027920216", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11985929x", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11985929" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Khrushchov's crimes in Ukraine, 1962" + ] + }, + { + "noteType": "dataNotFound", + "label": [ + "LCSH, 1991-06" + ] + } + ], + "pid": "027920216", + "broader": [ + { + "authorized_access_point": "Politique et gouvernement - URSS - 1928-1941" + }, + { + "authorized_access_point": "Massacres - Ukraine" + } + ], + "md5": "163675bc8a34cec69f0ef7f09688d4c4" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Apprentissage automatique", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "000", + "name": "G\u00e9n\u00e9ralit\u00e9s" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Machine learning", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85079324", + "source": "LCSH" + } + ] + }, + { + "authorized_access_point": "Apprentissage automatique", + "source": "RVMLaval" + } + ], + "identifier": "http://www.idref.fr/027940373", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027940373", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11987531v", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11987531" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Base terminologique de l'intelligence artificielle / Y. Kodratoff, M. Bar\u00e8s, 1991", + "L'Apprentissage automatique : de la s\u00e9lection de variables \u00e0 l'apprentissage de structure d'un classifieur bay\u00e9sien / H. Bouhamed, 2013 [th\u00e8se]", + "R\u00e9seaux de neurones artificiels : une introduction \u00e0 l'apprentissage automatique, 2006" + ] + }, + { + "noteType": "general", + "label": [ + "Processus par lequel un algorithme \u00e9value et am\u00e9liore ses performances sans l'intervention d'un programmeur, en r\u00e9p\u00e9tant son ex\u00e9cution sur des jeux de donn\u00e9es jusqu'\u00e0 obtenir, de mani\u00e8re r\u00e9guli\u00e8re, des r\u00e9sultats pertinents", + "Sous cette vedette, on trouve les documents traitant de l'apprentissage par un syst\u00e8me de raisonnement automatis\u00e9 tout seul. Les documents sur la m\u00e9thodologie de transfert des connaissances d'un expert humain vers le syst\u00e8me se trouvent sous Acquisition des connaissances (syst\u00e8mes experts)" + ] + } + ], + "pid": "027940373", + "related": [ + { + "authorized_access_point": "Acquisition des connaissances (syst\u00e8mes experts)" + }, + { + "authorized_access_point": "Co-adaptation (informatique)" + }, + { + "authorized_access_point": "Conteneurs (informatique)" + }, + { + "authorized_access_point": "Mod\u00e9lisation pr\u00e9dictive" + } + ], + "narrower": [ + { + "authorized_access_point": "Apprentissage bas\u00e9 sur l'explication" + }, + { + "authorized_access_point": "Apprentissage interactif" + }, + { + "authorized_access_point": "Apprentissage non supervis\u00e9 (intelligence artificielle)" + }, + { + "authorized_access_point": "Apprentissage par renforcement (intelligence artificielle)" + }, + { + "authorized_access_point": "Apprentissage profond" + }, + { + "authorized_access_point": "Apprentissage supervis\u00e9 (intelligence artificielle)" + }, + { + "authorized_access_point": "Boosting (algorithmes)" + }, + { + "authorized_access_point": "Machines \u00e0 vecteurs de support" + }, + { + "authorized_access_point": "Pr\u00e9dictions conformes (informatique)" + } + ], + "broader": [ + { + "authorized_access_point": "Th\u00e9orie des automates math\u00e9matiques" + }, + { + "authorized_access_point": "Intelligence artificielle" + }, + { + "authorized_access_point": "Syst\u00e8mes adaptatifs" + }, + { + "authorized_access_point": "Syst\u00e8mes auto-organis\u00e9s" + } + ], + "variant_access_point": [ + "Apprentissage-machine", + "Apprentissage (intelligence artificielle)", + "Apprentissage artificiel", + "Apprentissage machine", + "Apprentissage statistique", + "Machine learning" + ], + "md5": "51d55fdaa73295936caf974cf2b86f0e" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Amstrad (ordinateurs)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "identifier": "http://www.idref.fr/027944492", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027944492", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11987850z", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11987850" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Sous cette vedette on trouve les documents sur l'ensemble de la gamme des micro-ordinateurs Amstrad" + ] + } + ], + "pid": "027944492", + "broader": [ + { + "authorized_access_point": "Microordinateurs" + } + ], + "variant_access_point": [ + "Amstrad (ordinateur)", + "Amstrad Micro (ordinateurs)" + ], + "md5": "a2befbd102f8512168e3a7a183b9aed9" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Gestion de l'approvisionnement", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "650", + "name": "Gestion et organisation de l'entreprise" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Gestion de l'approvisionnement", + "source": "RVMLaval" + }, + { + "authorized_access_point": "Materials management", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2002007919", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/027950808", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027950808", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11988322k", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11988322" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "S'emploie \u00e9galement en subdivision aux industries" + ] + } + ], + "pid": "027950808", + "narrower": [ + { + "authorized_access_point": "Relations clients-fournisseurs" + } + ], + "broader": [ + { + "authorized_access_point": "Gestion" + }, + { + "authorized_access_point": "Approvisionnement dans l'entreprise" + } + ], + "variant_access_point": [ + "Approvisionnement - Gestion", + "Fonction approvisionnement", + "Gestion des approvisionnements", + "Gestion des fournitures" + ], + "md5": "ea6d534c0e43752838d9599b437ebab0" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Violence envers les enfants - Droit", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "150", + "name": "Psychologie, psychanalyse" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "300", + "name": "Sciences sociales" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "340", + "name": "Droit" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Child abuse--Law and legislation", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85023351", + "source": "LCSH" + } + ] + }, + { + "authorized_access_point": "Enfants -- Violence envers -- Droit", + "source": "RVMLaval" + } + ], + "identifier": "http://www.idref.fr/027963675", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027963675", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb133192528", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13319252" + } + ], + "pid": "027963675", + "related": [ + { + "authorized_access_point": "Violence envers les enfants" + } + ], + "broader": [ + { + "authorized_access_point": "Enfants - Statut juridique" + } + ], + "variant_access_point": [ + "Enfants - Violence envers -- Droit" + ], + "md5": "c8c646a2b86518e1946ceedf41c87a92" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Procurateurs (Rome)", + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "authorized_access_point": "Procurators (Rome)", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85107175", + "source": "LCSH" + } + ] + }, + { + "authorized_access_point": "Procurateurs (Rome)", + "source": "RVMLaval" + } + ], + "identifier": "http://www.idref.fr/028060563", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028060563", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11997124p", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11997124" + } + ], + "pid": "028060563", + "broader": [ + { + "authorized_access_point": "Fonctionnaires - Rome" + }, + { + "authorized_access_point": "Provinces romaines" + } + ], + "md5": "16777af9a2afb3271dcd7b164906dff7" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Apartheid", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "320", + "name": "Sciences politiques" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Apartheid", + "source": "RVMLaval" + }, + { + "authorized_access_point": "Apartheid", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85005905", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/028071867", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028071867", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11998012n", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11998012" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Sous cette vedette on trouve les documents sur la politique de s\u00e9paration des races en Afrique du Sud et en Namibie" + ] + } + ], + "pid": "028071867", + "related": [ + { + "authorized_access_point": "Postapartheid" + }, + { + "authorized_access_point": "Mouvements anti-apartheid" + } + ], + "broader": [ + { + "authorized_access_point": "Relations interethniques - Afrique australe" + }, + { + "authorized_access_point": "S\u00e9gr\u00e9gation" + } + ], + "md5": "711db26331830d7c4f891eed405df52e" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Micral (ordinateur)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "identifier": "http://www.idref.fr/028071964", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028071964", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119980208", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11998020" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Guide pratique, Bull Micral.../ G. Perreau, 1985" + ] + }, + { + "noteType": "dataNotFound", + "label": [ + "Laval RVM (en ligne), 2005-07-05" + ] + } + ], + "pid": "028071964", + "broader": [ + { + "authorized_access_point": "Bull (ordinateurs)" + }, + { + "authorized_access_point": "Mini-ordinateurs" + } + ], + "variant_access_point": [ + "Bull Micral (ordinateur)" + ], + "md5": "c783f5f41714773bf14255d163b699a1" + }, + { + "type": "bf:Topic", + "authorized_access_point": "MERISE, M\u00e9thode", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "identifier": "http://www.idref.fr/02807842X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/02807842X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11998549c", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11998549" + } + ], + "note": [ + { + "noteType": "dataNotFound", + "label": [ + "LCNA (en ligne), 2001-01-16" + ] + } + ], + "pid": "02807842X", + "related": [ + { + "authorized_access_point": "MEGA, M\u00e9thode" + }, + { + "authorized_access_point": "OOM, M\u00e9thode" + } + ], + "broader": [ + { + "authorized_access_point": "Mod\u00e9lisation des donn\u00e9es (informatique)" + }, + { + "authorized_access_point": "Gestion - Informatique" + }, + { + "authorized_access_point": "Syst\u00e8mes, Conception de" + } + ], + "variant_access_point": [ + "MERISE (m\u00e9thode de conception de syst\u00e8mes)", + "M\u00e9thode MERISE" + ], + "md5": "92c33c8d228c8aa34e73f121cbf648cc" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Diplomatie pontificale - 20e si\u00e8cle", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "200", + "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "320", + "name": "Sciences politiques" + } + ], + "identifier": "http://www.idref.fr/02810160X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/02810160X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12000318b", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12000318" + } + ], + "pid": "02810160X", + "variant_access_point": [ + "\u00c9glise catholique - Relations ext\u00e9rieures - 20e si\u00e8cle" + ], + "md5": "38bda46f2015e29dd13adc1298e03012" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Zombis", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "200", + "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "391" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Zombies", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh99001600", + "source": "LCSH" + } + ] + }, + { + "authorized_access_point": "Zombiism", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85149949", + "source": "LCSH" + } + ] + }, + { + "authorized_access_point": "Zombies", + "source": "RVMLaval" + } + ], + "identifier": "http://www.idref.fr/028140362", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028140362", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb120034050", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12003405" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Grand dict. encyclop\u00e9dique Larousse : zombi ou zombie", + "Tr\u00e9sor de la langue fran\u00e7aise : zombi, zombie", + "Nouveau petit Robert 2009 : zombie ou zombi", + "Le vaudou ha\u00eftien / A. M\u00e9traux, 1977 (p. 249)" + ] + } + ], + "pid": "028140362", + "broader": [ + { + "authorized_access_point": "Fant\u00f4mes" + }, + { + "authorized_access_point": "Vaudou" + } + ], + "related": [ + { + "authorized_access_point": "Films de zombis" + } + ], + "variant_access_point": [ + "Morts-vivants", + "Zombies", + "Zombification", + "Zonbis" + ], + "md5": "548e9c3c5be979cb2f21ca80468ae4a0" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Mouvement \u00e9thiopien (Afrique du Sud)", + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "authorized_access_point": "Mouvement \u00e9thiopien (Afrique du Sud)", + "source": "RVMLaval" + } + ], + "identifier": "http://www.idref.fr/028148800", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028148800", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12004088n", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12004088" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Laval RVM, 1983", + "GDEL" + ] + } + ], + "pid": "028148800", + "variant_access_point": [ + "Ethiopian Church (Afrique du Sud)", + "\u00c9thiopianisme" + ], + "md5": "2e45c911bba6c38afc2cc2ee5a5e43a0" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Histoire religieuse - Allemagne - 17e si\u00e8cle", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/028211162", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028211162", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12009267f", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12009267" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Laval RVM, 1989-06" + ] + } + ], + "pid": "028211162", + "md5": "1060c9901000259a583c57621892047a" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Bouddhisme - Cor\u00e9e", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "200", + "name": "Religion" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Buddhism -- Korea", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh87001465", + "source": "LCSH" + } + ] + }, + { + "authorized_access_point": "Bouddhisme -- Cor\u00e9e", + "source": "RVMLaval" + } + ], + "identifier": "http://www.idref.fr/028225090", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028225090", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb120104075", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12010407" + } + ], + "pid": "028225090", + "narrower": [ + { + "authorized_access_point": "Bouddhisme - Cor\u00e9e - Jusqu'\u00e0 935" + }, + { + "authorized_access_point": "Bouddhisme - Cor\u00e9e - 935-1392" + }, + { + "authorized_access_point": "S\u014fn (bouddhisme)" + } + ], + "variant_access_point": [ + "Bouddhisme cor\u00e9en" + ], + "md5": "ee5e7932d7ce5e7b9fef3cf5096091a0" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Service diplomatique et consulaire am\u00e9ricain", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "320", + "name": "Science politique" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Diplomatic and consular service, American", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85140008", + "source": "LCSH" + } + ] + }, + { + "authorized_access_point": "Service diplomatique et consulaire am\u00e9ricain", + "source": "RVMLaval" + } + ], + "identifier": "http://www.idref.fr/028225767", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028225767", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb120104640", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12010464" + } + ], + "pid": "028225767", + "related": [ + { + "authorized_access_point": "Diplomates am\u00e9ricains" + } + ], + "broader": [ + { + "authorized_access_point": "Missions officielles am\u00e9ricaines" + } + ], + "md5": "366691e8f52765342bab2da6df22a4ef" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Dessins et mod\u00e8les (droit international)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/028233506", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028233506", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb120111005", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12011100" + } + ], + "note": [ + { + "noteType": "dataNotFound", + "label": [ + "Laval RVM, 1994-08" + ] + } + ], + "pid": "028233506", + "broader": [ + { + "authorized_access_point": "Propri\u00e9t\u00e9 industrielle (droit international)" + } + ], + "md5": "5d07784ec1b7e7914fd9966dca9c579f" + }, + { + "type": "bf:Topic", + "authorized_access_point": "DMS, Mod\u00e8le", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/028262220", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028262220", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12013419w", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12013419" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. \u00e9conomique et financier / Y. Bernard et J.-C. Colli, 1996" + ] + }, + { + "noteType": "dataNotFound", + "label": [ + "Laval RVM, 1996-08. - LCSH, 1996-06" + ] + } + ], + "pid": "028262220", + "broader": [ + { + "authorized_access_point": "Macro\u00e9conomie - Mod\u00e8les math\u00e9matiques" + }, + { + "authorized_access_point": "Mod\u00e8les \u00e9conom\u00e9triques" + } + ], + "variant_access_point": [ + "Dynamique multi-sectoriel, Mod\u00e8le", + "Mod\u00e8le DMS", + "Mod\u00e8le dynamique multi-sectoriel" + ], + "md5": "a2a09cc140e988a5b9f29170cbefdf5e" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Histoire religieuse - Allemagne - 18e si\u00e8cle", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/028287169", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028287169", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12015381h", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12015381" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Laval RVM, 1983" + ] + } + ], + "pid": "028287169", + "md5": "39d56868b3c5e79705340699ec95db92" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Commerce international", + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "authorized_access_point": "Commerce international", + "source": "RVMLaval" + }, + { + "authorized_access_point": "International trade", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh87004890", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/028359380", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028359380", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12021081x", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12021081" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Sous cette vedette, on trouve les documents sur le commerce international en g\u00e9n\u00e9ral" + ] + }, + { + "noteType": "seeReference", + "label": [ + "Voir aussi la subdivision Commerce ext\u00e9rieur, aux lieux (pays, villes, etc.) pour les documents sur le commerce international envisag\u00e9 du point de vue d'un lieu d\u00e9termin\u00e9" + ] + } + ], + "pid": "028359380", + "related": [ + { + "authorized_access_point": "Commerce international - R\u00e9glementation" + }, + { + "authorized_access_point": "Commerce international et emploi" + }, + { + "authorized_access_point": "Salaires - Effets du commerce international" + }, + { + "authorized_access_point": "Acc\u00e8s aux m\u00e9dicaments" + }, + { + "authorized_access_point": "Commerce ext\u00e9rieur" + }, + { + "authorized_access_point": "\u00c9conomie ouverte" + } + ], + "narrower": [ + { + "authorized_access_point": "Juste \u00e9change" + }, + { + "authorized_access_point": "Commerce parall\u00e8le" + }, + { + "authorized_access_point": "Concurrence internationale" + }, + { + "authorized_access_point": "Contrats d'exclusivit\u00e9" + }, + { + "authorized_access_point": "Droit commercial (droit international)" + }, + { + "authorized_access_point": "Dumping" + }, + { + "authorized_access_point": "\u00c9changes compens\u00e9s" + }, + { + "authorized_access_point": "\u00c9changes intra-branche" + }, + { + "authorized_access_point": "Exportations" + }, + { + "authorized_access_point": "Garanties \u00e0 premi\u00e8re demande" + }, + { + "authorized_access_point": "Heckscher-Ohlin, Th\u00e9or\u00e8me de" + }, + { + "authorized_access_point": "Importations" + }, + { + "authorized_access_point": "Commerce international - Effets du terrorisme" + }, + { + "authorized_access_point": "Incoterms" + }, + { + "authorized_access_point": "Libre-\u00e9change" + }, + { + "authorized_access_point": "Portage (commerce international)" + }, + { + "authorized_access_point": "Protectionnisme" + }, + { + "authorized_access_point": "Routes commerciales" + }, + { + "authorized_access_point": "Stocks r\u00e9gulateurs" + }, + { + "authorized_access_point": "Tarif douanier" + }, + { + "authorized_access_point": "Vente internationale" + }, + { + "authorized_access_point": "Services - \u00c9changes internationaux" + }, + { + "authorized_access_point": "Armes - Vente" + }, + { + "authorized_access_point": "Avantage comparatif (commerce international)" + }, + { + "authorized_access_point": "Balance commerciale" + }, + { + "authorized_access_point": "Classification type pour le commerce international" + }, + { + "authorized_access_point": "Commerce captif" + }, + { + "authorized_access_point": "Commerce Est-Ouest" + } + ], + "broader": [ + { + "authorized_access_point": "Commerce" + }, + { + "authorized_access_point": "Relations \u00e9conomiques internationales" + } + ], + "variant_access_point": [ + "Commerce ext\u00e9rieur international", + "Commerce mondial", + "\u00c9changes commerciaux internationaux", + "\u00c9changes internationaux" + ], + "md5": "79af3c863e2746c2dfe9b8836d70edd9" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Propagande autrichienne", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "320", + "name": "Science politique" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Propaganda, Austrian", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2015001258", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/028431855", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028431855", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12026846t", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12026846" + } + ], + "pid": "028431855", + "md5": "26f2c050ab4b8e829d5f5d545a4d4c9b" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Droit du travail (droit europ\u00e9en)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/028433890", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028433890", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12027009n", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12027009" + } + ], + "note": [ + { + "noteType": "dataNotFound", + "label": [ + "LCSH, 1991-06" + ] + } + ], + "pid": "028433890", + "narrower": [ + { + "authorized_access_point": "Discrimination dans l'emploi - Droit europ\u00e9en" + }, + { + "authorized_access_point": "Risques psychosociaux - Droit europ\u00e9en" + }, + { + "authorized_access_point": "Repr\u00e9sentation du personnel - Droit europ\u00e9en" + }, + { + "authorized_access_point": "Comit\u00e9s d'entreprise - Droit europ\u00e9en" + } + ], + "broader": [ + { + "authorized_access_point": "Droit social (droit europ\u00e9en)" + }, + { + "authorized_access_point": "Droit priv\u00e9 (droit europ\u00e9en)" + } + ], + "md5": "ce6744fbc5a1328f23a2231da2a4a95c" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Monnaies luxembourgeoises", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "330", + "name": "\u00c9conomie politique" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "730", + "name": "Sculpture" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "940", + "name": "Histoire de l'Europe" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Coins, Luxembourg", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85027844", + "source": "LCSH" + } + ] + }, + { + "authorized_access_point": "Monnaies luxembourgeoises", + "source": "RVMLaval" + } + ], + "identifier": "http://www.idref.fr/028497244", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028497244", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12032142r", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12032142" + } + ], + "pid": "028497244", + "related": [ + { + "authorized_access_point": "Monnaie - Luxembourg" + } + ], + "broader": [ + { + "authorized_access_point": "Monnaies europ\u00e9ennes" + } + ], + "variant_access_point": [ + "Pi\u00e8ces de monnaie luxembourgeoises" + ], + "md5": "f74987a95b20a0d84eecb8b2bcab2b1d" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Politique et gouvernement - Moyen-Orient - 1945-1979", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/028517180", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028517180", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12033740z", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12033740" + } + ], + "pid": "028517180", + "broader": [ + { + "authorized_access_point": "Moyen-Orient - 1945-1979" + } + ], + "md5": "161f6fe44276c66073817fd569ece024" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Fronti\u00e8res - Pays de l'Union europ\u00e9enne", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/02852019X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/02852019X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12033989v", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12033989" + } + ], + "pid": "02852019X", + "md5": "6c96744680d9fb56555ad1724867fd13" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Politique et gouvernement - Am\u00e9rique du Sud - 20e si\u00e8cle", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/028549082", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028549082", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12036263z", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12036263" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Laval RVM, 1991-02" + ] + } + ], + "pid": "028549082", + "narrower": [ + { + "authorized_access_point": "Op\u00e9ration Condor" + } + ], + "md5": "fd152fedccda2ddabf103a2cf4c7c14b" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Bases de donn\u00e9es relationnelles", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Bases de donn\u00e9es relationnelles", + "source": "RVMLaval" + }, + { + "authorized_access_point": "Relational databases", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh86007768", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/028631609", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028631609", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12042778m", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12042778" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Encycl. de l'informatique et des syst\u00e8mes d'information, 2006" + ] + } + ], + "pid": "028631609", + "related": [ + { + "authorized_access_point": "Java Persistence API" + } + ], + "narrower": [ + { + "authorized_access_point": "IBM Database 2 (syst\u00e8me informatique)" + }, + { + "authorized_access_point": "Ingres II (syst\u00e8me informatique)" + }, + { + "authorized_access_point": "M\u00e9ta-REORG (syst\u00e8me expert)" + }, + { + "authorized_access_point": "Microsoft Jet (langage de programmation)" + }, + { + "authorized_access_point": "Oracle (syst\u00e8me informatique)" + }, + { + "authorized_access_point": "PostgreSQL (syst\u00e8me informatique)" + }, + { + "authorized_access_point": "REORG (syst\u00e8me expert)" + }, + { + "authorized_access_point": "SAUVE (syst\u00e8me expert)" + } + ], + "broader": [ + { + "authorized_access_point": "Bases de donn\u00e9es" + } + ], + "variant_access_point": [ + "SGBDR", + "Syst\u00e8mes de gestion de bases de donnn\u00e9es relationnelles" + ], + "md5": "a8167b4885f405002ea188a6958f2d63" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Missiles antimissiles", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "355", + "name": "Art et science militaires" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "600", + "name": "Sciences appliqu\u00e9es" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Missiles antimissiles", + "source": "RVMLaval" + }, + { + "authorized_access_point": "Antimissile missiles", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85005700", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/028637720", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028637720", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb120432565", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12043256" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikidata : Missile antibalistique - https://www.wikidata.org/wiki/Q574594 (2023-08-23)" + ] + }, + { + "noteType": "general", + "label": [ + "Missile con\u00e7u pour intercepter un missile balistique ou une roquette. Le terme est cependant principalement utilis\u00e9 pour d\u00e9signer les syst\u00e8mes con\u00e7us pour contrer des missiles balistiques intercontinentaux" + ] + } + ], + "pid": "028637720", + "related": [ + { + "authorized_access_point": "D\u00e9fense antimissile de croisi\u00e8re" + }, + { + "authorized_access_point": "D\u00e9fense antimissile balistique" + } + ], + "broader": [ + { + "authorized_access_point": "Artillerie antia\u00e9rienne" + }, + { + "authorized_access_point": "Missiles" + } + ], + "variant_access_point": [ + "ABM", + "Antimissiles", + "Missiles antibalistiques" + ], + "md5": "9d505591c6639cd1ff4030421ad2ead0" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Relations ext\u00e9rieures - Allemagne - 1933-1945", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/028675274", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028675274", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12046184v", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12046184" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Laval RVM, 1991-02" + ] + } + ], + "pid": "028675274", + "related": [ + { + "authorized_access_point": "Puissances de l'Axe" + } + ], + "md5": "7cb0d1f31fe6d372289a9866670f7401" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Relations ext\u00e9rieures - URSS - 1917-1945", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/028676661", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028676661", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12046291d", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12046291" + } + ], + "pid": "028676661", + "md5": "12737813e3f99369b4ce334e313fe6d6" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Microsoft Windows (logiciels)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "identifier": "http://www.idref.fr/02868589X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/02868589X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb120470824", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12047082" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "LCNA (en ligne), 2004-05-14 : Microsoft Windows (Computer file)" + ] + }, + { + "noteType": "general", + "label": [ + "Sous cette vedette, on trouve les documents sur le logiciel de fen\u00eatres informatiques commercialis\u00e9 par la soci\u00e9t\u00e9 Microsoft. Les documentss sur les fen\u00eatres (\"windows\") informatiques en g\u00e9n\u00e9ral se trouvent sous Fen\u00eatres (informatique). Les documents traitant d'un logiciel sp\u00e9cifique utilisable avec l'interface graphique Microsoft Windows se trouvent sous le nom du logiciel" + ] + } + ], + "pid": "02868589X", + "related": [ + { + "authorized_access_point": "MFC (logiciels)" + }, + { + "authorized_access_point": "Windows Open Services Architecture" + } + ], + "narrower": [ + { + "authorized_access_point": "Microsoft Visual BASIC (langage de programmation)" + } + ], + "broader": [ + { + "authorized_access_point": "Fen\u00eatres (informatique)" + } + ], + "variant_access_point": [ + "Windows (logiciels)" + ], + "md5": "c525a8847138fbeea11bc91e45576018" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Politique et gouvernement - Qu\u00e9bec (Canada ; province)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "320", + "name": "Sciences politiques" + } + ], + "identifier": "http://www.idref.fr/028698703", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028698703", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12048142d", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12048142" + } + ], + "pid": "028698703", + "narrower": [ + { + "authorized_access_point": "Politique et gouvernement - Qu\u00e9bec (Canada ; province) - 1791-1841" + }, + { + "authorized_access_point": "Politique et gouvernement - Qu\u00e9bec (Canada ; province) - 1897-1936" + }, + { + "authorized_access_point": "Politique et gouvernement - Qu\u00e9bec (Canada ; province) - 20e si\u00e8cle" + }, + { + "authorized_access_point": "Politique et gouvernement - Qu\u00e9bec (Canada ; province) - 1960-...." + } + ], + "related": [ + { + "authorized_access_point": "Qu\u00e9bec (Canada ; province)" + } + ], + "md5": "5703b6972ab76410643f2366f829cf08" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Diplomatie pontificale - 19e si\u00e8cle", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "200", + "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "320", + "name": "Sciences politiques" + } + ], + "identifier": "http://www.idref.fr/028700139", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028700139", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12048263n", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12048263" + } + ], + "pid": "028700139", + "variant_access_point": [ + "\u00c9glise catholique - Relations ext\u00e9rieures - 19e si\u00e8cle" + ], + "md5": "56ad8b26169967718b8f4881cf60f36c" + }, + { + "type": "bf:Topic", + "authorized_access_point": "New Deal", + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "authorized_access_point": "New Deal", + "source": "RVMLaval" + } + ], + "identifier": "http://www.idref.fr/028700171", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028700171", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12048266p", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12048266" + } + ], + "pid": "028700171", + "broader": [ + { + "authorized_access_point": "Politique et gouvernement - \u00c9tats-Unis - 1933-1945" + }, + { + "authorized_access_point": "Conditions sociales - \u00c9tats-Unis - 1933-1945" + }, + { + "authorized_access_point": "\u00c9tats-Unis - 1933-1945" + } + ], + "related": [ + { + "authorized_access_point": "Crise \u00e9conomique (1929) - \u00c9tats-Unis" + } + ], + "variant_access_point": [ + "New Deal (1933-1939)", + "New Deal - \u00c9tats-Unis" + ], + "md5": "eb9d6cb3851ef6908e1c99ed42a911da" + }, + { + "type": "bf:Topic", + "authorized_access_point": "M\u00c9D\u00c9E, M\u00e9thode", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/028725387", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028725387", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb120502183", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12050218" + } + ], + "note": [ + { + "noteType": "dataNotFound", + "label": [ + "LCSH, 1994-09" + ] + } + ], + "pid": "028725387", + "broader": [ + { + "authorized_access_point": "Consommation d'\u00e9nergie" + }, + { + "authorized_access_point": "Mod\u00e8les math\u00e9matiques" + }, + { + "authorized_access_point": "Ressources \u00e9nerg\u00e9tiques" + } + ], + "variant_access_point": [ + "M\u00e9thode M\u00c9D\u00c9E", + "Mod\u00e8le d'\u00e9valuation de la demande en \u00e9nergie", + "Mod\u00e8le M\u00c9D\u00c9E" + ], + "md5": "f7efb42a1ec1f29231e6a533d8374a52" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Relations ext\u00e9rieures - France - 1914-1940", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/028898338", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028898338", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb120638745", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12063874" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "LCSH 87" + ] + } + ], + "pid": "028898338", + "md5": "0244c5c9941d5cd9f9282b8dfa9d8d11" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Logiciels - D\u00e9veloppement", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Logiciels -- D\u00e9veloppement", + "source": "RVMLaval" + }, + { + "authorized_access_point": "Computer software--Development", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85029535", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/028909917", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028909917", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12064812v", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12064812" + } + ], + "pid": "028909917", + "related": [ + { + "authorized_access_point": "\u00c9cosyst\u00e8mes d'applications mobiles (informatique)" + }, + { + "authorized_access_point": "Traitement d'exceptions (informatique)" + }, + { + "authorized_access_point": "D\u00e9bogage" + }, + { + "authorized_access_point": "Logiciels - Essais" + }, + { + "authorized_access_point": "Logiciels - Maintenance" + }, + { + "authorized_access_point": "Syst\u00e8mes, Conception de" + }, + { + "authorized_access_point": "M\u00e9thodes formelles (informatique)" + } + ], + "narrower": [ + { + "authorized_access_point": "Architecture logicielle" + }, + { + "authorized_access_point": "Xamarin (plate-forme informatique)" + }, + { + "authorized_access_point": "Tests fonctionnels (informatique)" + }, + { + "authorized_access_point": "Microsoft Visual studio (environnement de d\u00e9veloppement d'applications)" + }, + { + "authorized_access_point": "SysML (informatique)" + }, + { + "authorized_access_point": "COBIT (informatique)" + }, + { + "authorized_access_point": "Mod\u00e8le CMM (informatique)" + }, + { + "authorized_access_point": "\u00c9diteurs syntaxiques" + }, + { + "authorized_access_point": "G\u00e9n\u00e9rateurs (logiciels)" + }, + { + "authorized_access_point": "Objectory, M\u00e9thode" + }, + { + "authorized_access_point": "PISA (syst\u00e8me informatique)" + }, + { + "authorized_access_point": "Progiciels - D\u00e9veloppement" + }, + { + "authorized_access_point": "Test Driven Development" + }, + { + "authorized_access_point": "Prototypage (informatique)" + }, + { + "authorized_access_point": "UML (informatique)" + }, + { + "authorized_access_point": "VDM, M\u00e9thode" + }, + { + "authorized_access_point": "ISO/SPICE, Mod\u00e8le" + }, + { + "authorized_access_point": "D\u00e9veloppement rapide d'applications" + }, + { + "authorized_access_point": "Akka (plate-forme informatique)" + }, + { + "authorized_access_point": "Allegro (informatique)" + }, + { + "authorized_access_point": "OCL (informatique)" + }, + { + "authorized_access_point": "PhoneGap (environnement de d\u00e9veloppement d'applications)" + }, + { + "authorized_access_point": "Gamification" + }, + { + "authorized_access_point": "OSGi (plate-forme informatique)" + }, + { + "authorized_access_point": "M\u00e9thodes agiles (informatique)" + } + ], + "broader": [ + { + "authorized_access_point": "Programmation (informatique)" + } + ], + "variant_access_point": [ + "Conception de logiciels", + "D\u00e9veloppement d'applications (informatique)", + "D\u00e9veloppement de logiciels", + "D\u00e9veloppement it\u00e9ratif de logiciels", + "Logiciels - Conception", + "Logiciels - D\u00e9veloppement it\u00e9ratif", + "Logiciels - \u00c9criture", + "RAD" + ], + "md5": "2542b0023cc25e01b34f436765eda411" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Politique et gouvernement - Grande-Bretagne - 1837-1901", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/028910737", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028910737", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12064877f", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12064877" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Laval RVM, 1990-08" + ] + } + ], + "pid": "028910737", + "broader": [ + { + "authorized_access_point": "Grande-Bretagne - 1837-1901 (Victoria)" + } + ], + "md5": "db83212715988bbec0612103787ae848" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Histoire religieuse - France - 18e si\u00e8cle", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/028912098", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028912098", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb120649871", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12064987" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "LCSH, 1987-09", + "Laval RVM suppl., 1987-09" + ] + } + ], + "pid": "028912098", + "narrower": [ + { + "authorized_access_point": "Convulsionnaires (religion)" + }, + { + "authorized_access_point": "Multipliants" + } + ], + "md5": "b8c414716e53ba6a5c031b7ec8a74384" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Bataille de Valmy (1792)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/028929098", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028929098", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12066311m", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12066311" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL", + "LCSH 1987-09" + ] + }, + { + "noteType": "dataNotFound", + "label": [ + "Laval 1987-09" + ] + } + ], + "pid": "028929098", + "related": [ + { + "authorized_access_point": "Valmy (pr\u00e9nom)" + } + ], + "broader": [ + { + "authorized_access_point": "Guerre de la premi\u00e8re coalition (1792-1797) - Op\u00e9rations militaires - France" + }, + { + "authorized_access_point": "France - 1792" + } + ], + "variant_access_point": [ + "Valmy, Bataille de (1792)" + ], + "md5": "3b9c9a29cd529c19d049539eb7dfcd9a" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Politique et gouvernement - Europe de l'Est - 1945-1989", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/028973631", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028973631", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12069805s", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12069805" + } + ], + "pid": "028973631", + "broader": [ + { + "authorized_access_point": "Europe de l'Est - 1945-1989" + } + ], + "md5": "f1bee3820253177b893c2438ce5f0138" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Relations ext\u00e9rieures - Italie - 1922-1945", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/02900294X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/02900294X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb120720680", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12072068" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Laval RVM, 1990-08" + ] + } + ], + "pid": "02900294X", + "related": [ + { + "authorized_access_point": "Puissances de l'Axe" + } + ], + "md5": "63766bf83f3ac5ad793cee3b08317160" + }, + { + "type": "bf:Topic", + "authorized_access_point": "\u00c9glise et \u00c9tat - Allemagne - 20e si\u00e8cle", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "200", + "name": "Religion" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "320", + "name": "Science politique" + } + ], + "identifier": "http://www.idref.fr/02904197X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/02904197X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12075107s", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12075107" + } + ], + "note": [ + { + "noteType": "dataNotFound", + "label": [ + "LCSH, 2000-03" + ] + } + ], + "pid": "02904197X", + "md5": "19784224e8ef8d74e0fdf1757f08ae2e" + }, + { + "type": "bf:Topic", + "authorized_access_point": "\u00c9glise et \u00c9tat - Italie - 20e si\u00e8cle", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/029042046", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029042046", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12075113q", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12075113" + } + ], + "pid": "029042046", + "md5": "7e85ef7ffb78ab5584aacbd041ed7c91" + }, + { + "type": "bf:Topic", + "authorized_access_point": "\u00c9glise et \u00c9tat - Allemagne - 19e si\u00e8cle", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "200", + "name": "Religion" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "320", + "name": "Science politique" + } + ], + "identifier": "http://www.idref.fr/029042186", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029042186", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12075124c", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12075124" + } + ], + "pid": "029042186", + "narrower": [ + { + "authorized_access_point": "Kulturkampf" + }, + { + "authorized_access_point": "Rheinisch-Westf\u00e4lische Kirchenordnung" + } + ], + "md5": "a06d724c6e060dcea8fb2b2b9f4ee0bd" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Politique et gouvernement - Europe - 1789-1815", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/02905026X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/02905026X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12075741m", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12075741" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Laval RVM, 1992-08" + ] + } + ], + "pid": "02905026X", + "narrower": [ + { + "authorized_access_point": "Blocus continental" + } + ], + "md5": "c0c82d5b9d37f5822b4539982173e5dc" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Christianisme - Relations - Religion chinoise", + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "authorized_access_point": "Christianity and other religions--Chinese", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85025254", + "source": "LCSH" + } + ] + }, + { + "authorized_access_point": "Christianisme -- Relations -- Religion chinoise", + "source": "RVMLaval" + } + ], + "identifier": "http://www.idref.fr/029182387", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029182387", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb120862572", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12086257" + } + ], + "pid": "029182387", + "md5": "f91f47f48f46e44d9ad1b5a89ff28066" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Politique sociale - Pays de l'Union europ\u00e9enne", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/029205794", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029205794", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12088093v", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12088093" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Employer les subdivisions chronologiques communes" + ] + } + ], + "pid": "029205794", + "related": [ + { + "authorized_access_point": "Ressortissants des \u00c9tats membres de l'Union europ\u00e9enne" + }, + { + "authorized_access_point": "Droit social (droit europ\u00e9en)" + } + ], + "variant_access_point": [ + "Espace social europ\u00e9en", + "Europe sociale", + "March\u00e9 int\u00e9rieur europ\u00e9en - Aspect social", + "Politique sociale europ\u00e9enne" + ], + "md5": "c77f814b9eda1b58419160f5aabe7853" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Crise \u00e9conomique (1929) - \u00c9tats-Unis", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "330", + "name": "\u00c9conomie politique" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "950", + "name": "Histoire du reste du monde" + } + ], + "identifier": "http://www.idref.fr/029342147", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029342147", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb120988849", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12098884" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "La grande d\u00e9pression : les \u00c9tats-Unis en crise, 1929-1933 / J. Heffer, 1991", + "The Great Depression / D. F. Burg, 2005" + ] + } + ], + "pid": "029342147", + "related": [ + { + "authorized_access_point": "New Deal" + } + ], + "broader": [ + { + "authorized_access_point": "Crise \u00e9conomique (1929)" + } + ], + "variant_access_point": [ + "Grande d\u00e9pression (\u00c9tats-Unis ; 1929-1939)" + ], + "md5": "db86c475f63bd0db9bb8308e3d36ca0d" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Analyse comportementale", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "150", + "name": "Psychologie, psychanalyse" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Analyse comportementale", + "source": "RVMLaval" + }, + { + "authorized_access_point": "Behavioral assessment", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85012901", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/029344212", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029344212", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12099028v", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12099028" + } + ], + "pid": "029344212", + "related": [ + { + "authorized_access_point": "M\u00e9thode ERTOMIS" + }, + { + "authorized_access_point": "M\u00e9thode ELHAN" + }, + { + "authorized_access_point": "Analyse comportementale des adolescents" + }, + { + "authorized_access_point": "Analyse comportementale des enfants" + }, + { + "authorized_access_point": "M\u00e9thode ABA" + }, + { + "authorized_access_point": "Modification du comportement" + }, + { + "authorized_access_point": "Profilage (droit)" + }, + { + "authorized_access_point": "Th\u00e9rapie comportementale" + } + ], + "narrower": [ + { + "authorized_access_point": "Quantification de soi" + } + ], + "broader": [ + { + "authorized_access_point": "Comportement humain" + }, + { + "authorized_access_point": "Psychodiagnostics" + }, + { + "authorized_access_point": "Psychologie - M\u00e9thodologie" + } + ], + "variant_access_point": [ + "Analyse du comportement", + "Comportement humain - \u00c9valuation", + "\u00c9valuation comportementale", + "\u00c9valuation du comportement" + ], + "md5": "dbe2cb577266dd01f3181ff1405aeaae" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Patrimoine - Gestion - Logiciels", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "330", + "name": "\u00c9conomie politique" + } + ], + "identifier": "http://www.idref.fr/029347254", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029347254", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb120992768", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12099276" + } + ], + "pid": "029347254", + "md5": "618dcf6b3a82a4f68759bf481bde9ea7" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Logiciels documentaires", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "020", + "name": "Sciences de l'information" + } + ], + "identifier": "http://www.idref.fr/029349230", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029349230", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb120994504", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12099450" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. encycl. de l'information et de la documentation" + ] + } + ], + "pid": "029349230", + "related": [ + { + "authorized_access_point": "Vid\u00e9odisques" + } + ], + "broader": [ + { + "authorized_access_point": "Biblioth\u00e9conomie - Logiciels" + }, + { + "authorized_access_point": "Informatique documentaire" + }, + { + "authorized_access_point": "Syst\u00e8mes d'information" + }, + { + "authorized_access_point": "Logiciels" + } + ], + "relation_pid": { + "value": "085722545", + "type": "redirect_from" + }, + "variant_access_point": [ + "Gestion des documents - Logiciels", + "Recherche documentaire - Logiciels" + ], + "md5": "e34cf556cd4a5fea09814668a9750f6e" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Abbayes - Pologne", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "200", + "name": "Religion" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "690", + "name": "Construction" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "720", + "name": "Architecture" + } + ], + "identifier": "http://www.idref.fr/029404614", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029404614", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12103944f", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12103944" + } + ], + "pid": "029404614", + "broader": [ + { + "authorized_access_point": "Abbayes - [Localisations g\u00e9ographiques]" + } + ], + "narrower": [ + { + "authorized_access_point": "Oliwa (pologne) - Abbaye" + } + ], + "md5": "20ff90116cb125f72060d76119ea2bbe" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Interaction humain-machine", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Human-computer interaction", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh88003229", + "source": "LCSH" + } + ] + }, + { + "authorized_access_point": "Interaction personne-ordinateur", + "source": "RVMLaval" + } + ], + "identifier": "http://www.idref.fr/029410312", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029410312", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12104414c", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12104414" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Sous cette vedette, on trouve les documents sur les facteurs humains dans les syst\u00e8mes informatiques. Les documents sur les syst\u00e8mes informatiques qui fonctionnent en temps r\u00e9el se trouvent sous Syst\u00e8mes conversationnels (informatique)" + ] + } + ], + "pid": "029410312", + "related": [ + { + "authorized_access_point": "Conception centr\u00e9e sur l'utilisateur" + }, + { + "authorized_access_point": "Cyberpsychologie" + }, + { + "authorized_access_point": "Intelligence ambiante" + }, + { + "authorized_access_point": "Interfaces utilisateur (informatique)" + } + ], + "narrower": [ + { + "authorized_access_point": "Aide en ligne (informatique)" + }, + { + "authorized_access_point": "Apprentissage bas\u00e9 sur l'explication" + }, + { + "authorized_access_point": "Co-adaptation (informatique)" + }, + { + "authorized_access_point": "Crowdsourcing" + }, + { + "authorized_access_point": "Ergonomie cognitive" + }, + { + "authorized_access_point": "Interaction multimodale" + }, + { + "authorized_access_point": "Traitement automatique du langage naturel" + } + ], + "broader": [ + { + "authorized_access_point": "Ergonomie" + }, + { + "authorized_access_point": "Syst\u00e8mes homme-machine" + } + ], + "variant_access_point": [ + "Communication homme-ordinateur", + "Dialogue homme-ordinateur", + "Ergonomie informatique", + "Facteurs humains dans les syst\u00e8mes informatiques", + "HCI", + "Homme-ordinateur, Interaction", + "IHM", + "Interaction homme-machine (informatique)", + "Interaction homme-ordinateur", + "Interaction humain-syst\u00e8me", + "Ordinateur-homme, Interaction", + "Relations homme-ordinateur", + "Syst\u00e8mes coop\u00e9ratifs (informatique)" + ], + "md5": "af1ec59e9608555f8604d6a5a9ae19c5" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Cultes - Rome", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "200", + "name": "Religion" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "930", + "name": "Arch\u00e9ologie. Histoire ancienne" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Cults--Rome", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85034739", + "source": "LCSH" + } + ] + }, + { + "authorized_access_point": "Cultes -- Rome", + "source": "RVMLaval" + } + ], + "identifier": "http://www.idref.fr/029575168", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029575168", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12117201d", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12117201" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Grand Larousse illustr\u00e9 (art. : Rome - Religion)", + "Hist. des religions / H. C. Puech, 1970", + "Dict. des religions / P. Poupard, 1984 (art. : Romaine, religion)" + ] + }, + { + "noteType": "general", + "label": [ + "Sous cette vedette, on trouve les documents sur les cultes pratiqu\u00e9s dans la Rome antique, qu'il s'agisse des cultes propres \u00e0 la religion romaine ou des cultes li\u00e9s \u00e0 d'autres religions" + ] + } + ], + "pid": "029575168", + "related": [ + { + "authorized_access_point": "Vestales" + }, + { + "authorized_access_point": "Religion romaine" + } + ], + "narrower": [ + { + "authorized_access_point": "Taurobole" + }, + { + "authorized_access_point": "Bacchanales" + }, + { + "authorized_access_point": "Culte imp\u00e9rial - Rome" + }, + { + "authorized_access_point": "Ver sacrum" + } + ], + "md5": "db326a0e68d15e53b169a10815b37d10" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Sciences sociales - Analyse de r\u00e9seau", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "300", + "name": "Sciences sociales" + } + ], + "identifier": "http://www.idref.fr/029652308", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029652308", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12123187x", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12123187" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. de la sociologie / R. Boudon, 1989" + ] + } + ], + "pid": "029652308", + "related": [ + { + "authorized_access_point": "R\u00e9seaux sociaux" + }, + { + "authorized_access_point": "Sociom\u00e9trie" + } + ], + "broader": [ + { + "authorized_access_point": "Interaction sociale" + }, + { + "authorized_access_point": "Sciences sociales - M\u00e9thodologie" + } + ], + "variant_access_point": [ + "Analyse de r\u00e9seau (sciences sociales)", + "R\u00e9seau, Analyse de (sciences sociales)", + "R\u00e9seaux (sciences sociales)" + ], + "md5": "2e303d39129606d739e61e13b6615a6e" + }, + { + "type": "bf:Topic", + "authorized_access_point": "V\u00eatements - Industrie et commerce - Logiciels", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/029726190", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029726190", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12128840d", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12128840" + } + ], + "pid": "029726190", + "md5": "cab633b88ca58cc425d62e3a7f7703b0" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Statistique bay\u00e9sienne", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "510", + "name": "Math\u00e9matiques" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Statistique bay\u00e9sienne", + "source": "RVMLaval" + }, + { + "authorized_access_point": "Bayesian statistical decision theory", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85012506", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/029753090", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029753090", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb121309043", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12130904" + } + ], + "pid": "029753090", + "narrower": [ + { + "authorized_access_point": "Statistique bay\u00e9sienne non param\u00e9trique" + }, + { + "authorized_access_point": "Segmentation bay\u00e9sienne" + } + ], + "broader": [ + { + "authorized_access_point": "Prise de d\u00e9cision (statistique)" + } + ], + "variant_access_point": [ + "Analyse bay\u00e9sienne", + "Bayes, Solution de", + "Bayes, Th\u00e9or\u00e8me de", + "Inf\u00e9rence bay\u00e9sienne", + "Prise de d\u00e9cision (statistique bay\u00e9sienne)", + "R\u00e9seaux bay\u00e9siens", + "Solution de Bayes", + "Th\u00e9or\u00e8me de Bayes" + ], + "md5": "7c2352406c860287cbafa5e06299f5d2" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Guerre mondiale (1939-1945) - Histoire diplomatique", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "320", + "name": "Sciences politiques" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "900", + "name": "Histoire et g\u00e9ographie (g\u00e9n\u00e9ralit\u00e9s)" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Guerre mondiale (1939-1945) -- Histoire diplomatique", + "source": "RVMLaval" + }, + { + "authorized_access_point": "World War, 1939-1945--Diplomatic history", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85148402", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/029755999", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029755999", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb121311253", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12131125" + } + ], + "pid": "029755999", + "narrower": [ + { + "authorized_access_point": "Guerre mondiale (1939-1945) - Gouvernements en exil" + } + ], + "broader": [ + { + "authorized_access_point": "Relations internationales - 1933-1945" + } + ], + "md5": "bdcb2d8dad08282f1421d9331c79aca5" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Bataille des Alpes (France ; 1944-1945)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/029795826", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029795826", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12134494g", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12134494" + } + ], + "pid": "029795826", + "broader": [ + { + "authorized_access_point": "Guerre mondiale (1939-1945) - Op\u00e9rations militaires - France (1944-1945)" + } + ], + "md5": "6a8ed8dcd8f01547d5466eb97d9d505e" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Histoire religieuse - Portugal", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/029888026", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029888026", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12141859j", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12141859" + } + ], + "pid": "029888026", + "md5": "5454c2e41d6e7b7f136c55a8436cdc8b" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Chimie - Notation", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "300", + "name": "Sciences sociales" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "540", + "name": "Chimie, min\u00e9ralogie, cristallographie" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Chimie -- Notation", + "source": "RVMLaval" + }, + { + "authorized_access_point": "Chemistry--Notation", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85023003", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/029918006", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029918006", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb121441867", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12144186" + } + ], + "pid": "029918006", + "related": [ + { + "authorized_access_point": "Chimie - Nomenclature" + } + ], + "narrower": [ + { + "authorized_access_point": "\u00c9quations chimiques" + } + ], + "broader": [ + { + "authorized_access_point": "Chimie" + }, + { + "authorized_access_point": "Sciences - Formules" + }, + { + "authorized_access_point": "Sciences - Notation" + } + ], + "variant_access_point": [ + "Chimie - Formules", + "Chimie - Symboles", + "Notation chimique", + "Symboles chimiques" + ], + "md5": "d5fca81433caf7634d8a43f11fbcf757" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Relations ext\u00e9rieures - Autriche - 1789-1900", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/029933730", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029933730", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12145420c", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12145420" + } + ], + "pid": "029933730", + "md5": "2a0039452203a5faa120dee398c20d9a" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Oracle (syst\u00e8me informatique)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "identifier": "http://www.idref.fr/029958857", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029958857", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12147371g", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12147371" + } + ], + "pid": "029958857", + "related": [ + { + "authorized_access_point": "Oracle Application Express (environnement de d\u00e9veloppement d'applications)" + } + ], + "broader": [ + { + "authorized_access_point": "Bases de donn\u00e9es - Gestion" + }, + { + "authorized_access_point": "Bases de donn\u00e9es relationnelles" + } + ], + "md5": "067a17e5fcb83aafb8943d818531f692" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Polyphonie (musique)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "780", + "name": "Musique" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Counterpoint", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85033444", + "source": "LCSH" + } + ] + }, + { + "authorized_access_point": "Polyphonies -- Histoire et critique", + "source": "RVMLaval" + } + ], + "identifier": "http://www.idref.fr/03001235X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/03001235X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12151616x", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12151616" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Grand Larousse universel", + "Dict. de la musique / M. Honegger, 1976", + "Dict. de la musique / M. Vignal, 2005", + "Dict. des mots de la musique / J. Siron, 2006" + ] + }, + { + "noteType": "general", + "label": [ + "Sous cette vedette, on trouve les documents sur la technique d'\u00e9criture musicale \u00e0 plusieurs voix. Les compositions polyphoniques se trouvent sous Chansons polyphoniques et Polyphonies sacr\u00e9es" + ] + } + ], + "pid": "03001235X", + "related": [ + { + "authorized_access_point": "Ars nova" + }, + { + "authorized_access_point": "Contrepoint" + }, + { + "authorized_access_point": "Chansons polyphoniques" + }, + { + "authorized_access_point": "Fugues (musique)" + }, + { + "authorized_access_point": "Polyphonies sacr\u00e9es" + } + ], + "narrower": [ + { + "authorized_access_point": "Cantus firmus" + }, + { + "authorized_access_point": "Faux-bourdon (musique)" + } + ], + "broader": [ + { + "authorized_access_point": "Composition (musique)" + } + ], + "variant_access_point": [ + "Polyphonie", + "Musique polyphonique" + ], + "md5": "98ee4de9e11bc729017c59addafff3b0" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Tribuns de la pl\u00e8be (Rome)", + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "authorized_access_point": "Tribunus plebis", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85137435", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/030017653", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/030017653", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb121520244", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12152024" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Mourre", + "GLU" + ] + }, + { + "noteType": "dataNotFound", + "label": [ + "Laval RVM, 1993-02" + ] + } + ], + "pid": "030017653", + "related": [ + { + "authorized_access_point": "Pl\u00e8be (Rome)" + } + ], + "narrower": [ + { + "authorized_access_point": "\u00c9diles (Rome)" + } + ], + "broader": [ + { + "authorized_access_point": "Droit romain" + }, + { + "authorized_access_point": "Magistrats (Rome)" + } + ], + "variant_access_point": [ + "Puissance tribunitienne", + "Tribuni plebis", + "Tribunicia potestas" + ], + "md5": "140be787db2eeabd6ee43b6fa8ec831d" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Histoire religieuse - Colombie", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "200", + "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "950" + } + ], + "identifier": "http://www.idref.fr/030055849", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/030055849", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12154960z", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12154960" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Laval RVM, 1999-01" + ] + } + ], + "pid": "030055849", + "md5": "ae878fdfff544f9b857e34b27bcdba9a" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Population - Histoire - Logiciels", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "300", + "name": "Sciences sociales" + } + ], + "identifier": "http://www.idref.fr/030086469", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/030086469", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb121573543", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12157354" + } + ], + "note": [ + { + "noteType": "dataNotFound", + "label": [ + "Laval RVM (en ligne), 2005-05-19" + ] + } + ], + "pid": "030086469", + "md5": "09d24c9f94740c600634ce189a6ed401" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Hypertextes", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Hypertext systems", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh88002671", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/030128145", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/030128145", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13319505k", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13319505" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Hyperdocuments : hypertextes, hyperm\u00e9dias / J.-P. Balpe, 1990" + ] + } + ], + "pid": "030128145", + "related": [ + { + "authorized_access_point": "HTTP (protocole de r\u00e9seaux d'ordinateurs)" + } + ], + "narrower": [ + { + "authorized_access_point": "HTTP (protocole de r\u00e9seaux d'ordinateurs)" + } + ], + "broader": [ + { + "authorized_access_point": "Bases de donn\u00e9es - Gestion" + }, + { + "authorized_access_point": "Multim\u00e9dias interactifs" + } + ], + "variant_access_point": [ + "Hyperdocuments", + "Hypertexte" + ], + "md5": "cfc2656544a826f90eeac01e971d6b8c" + }, + { + "type": "bf:Topic", + "authorized_access_point": "G\u00e9nie civil - Bases de donn\u00e9es", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "600", + "name": "Technique" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "identifier": "http://www.idref.fr/03018729X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/03018729X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb121654752", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12165475" + } + ], + "pid": "03018729X", + "narrower": [ + { + "authorized_access_point": "PASCAL-BTP (banque de donn\u00e9es)" + } + ], + "md5": "376406b3741b7d00bf51d637f24027e7" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Nintendo (jeux vid\u00e9o)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "793", + "name": "Jeux" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Nintendo video games", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh91002267", + "source": "LCSH" + } + ] + }, + { + "authorized_access_point": "Nintendo Wii video games", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2007007398", + "source": "LCSH" + } + ] + }, + { + "authorized_access_point": "Jeux vid\u00e9o Nintendo", + "source": "RVMLaval" + }, + { + "authorized_access_point": "Jeux vid\u00e9o Nintendo Wii", + "source": "RVMLaval" + } + ], + "identifier": "http://www.idref.fr/030219884", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/030219884", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12168198m", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12168198" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikip\u00e9dia (art. : Wii) - https://fr.wikipedia.org (2021-12-08)", + "Nintendo - http://www.nintendo.fr (2012-10-05)", + "Video game Bible : 1985-2002 / A. Slaven, 2002", + "Le plaisir de jouer ensemble : joueurs casuals et interfaces gestuelles de la Wii / E. Jacques, 2011" + ] + }, + { + "noteType": "general", + "label": [ + "\"Nintendo\" et \"Nintendo Entertainment System\" sont des appellations commerciales", + "Sous cette vedette, on trouve les documents sur le mat\u00e9riel ainsi que sur les jeux eux-m\u00eames" + ] + } + ], + "pid": "030219884", + "broader": [ + { + "authorized_access_point": "Jeux vid\u00e9o" + } + ], + "variant_access_point": [ + "Jeux vid\u00e9o Nintendo", + "NES (jeux vid\u00e9o)", + "Nintendo 64 (jeux vid\u00e9o)", + "Nintendo Entertainment System (jeux vid\u00e9o)", + "Super NES (jeux vid\u00e9o)", + "Super Nintendo Entertainment System (jeux vid\u00e9o)", + "Wii (jeux vid\u00e9o)" + ], + "md5": "7446bdb86582ca7b4f0578265c7be742" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Lavoisier, Loi de", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "540", + "name": "Chimie" + } + ], + "identifier": "http://www.idref.fr/030336880", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/030336880", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb121773326", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12177332" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. de la chim. et de ses appl./ Cl. Duval, 1978" + ] + } + ], + "pid": "030336880", + "related": [ + { + "authorized_access_point": "R\u00e9actions chimiques" + } + ], + "broader": [ + { + "authorized_access_point": "Mati\u00e8re - Propri\u00e9t\u00e9s" + } + ], + "variant_access_point": [ + "Conservation de la mati\u00e8re, Principe de", + "Loi de conservation de la mati\u00e8re", + "Loi de Lavoisier", + "Principe de conservation de la mati\u00e8re", + "Principe de conservation des \u00e9l\u00e9ments", + "Principe de Lavoisier" + ], + "md5": "de841dd2d1e52237f52fce0a43f55709" + }, + { + "type": "bf:Topic", + "authorized_access_point": "X Window System (syst\u00e8me informatique)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "identifier": "http://www.idref.fr/030423724", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/030423724", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12184011w", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12184011" + } + ], + "pid": "030423724", + "narrower": [ + { + "authorized_access_point": "XFree86 (syst\u00e8me informatique)" + } + ], + "broader": [ + { + "authorized_access_point": "Fen\u00eatres (informatique)" + }, + { + "authorized_access_point": "Programmation (informatique)" + } + ], + "variant_access_point": [ + "Syst\u00e8me X Window (syst\u00e8me informatique)", + "X (syst\u00e8me informatique)", + "X11 (syst\u00e8me informatique)" + ], + "md5": "c4041d032e3a69375edf68866b32192d" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Calendrier \u00e9thiopien", + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "authorized_access_point": "Calendar, Ethiopian", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh98000959", + "source": "LCSH" + } + ] + }, + { + "authorized_access_point": "Calendrier \u00e9thiopien", + "source": "RVMLaval" + } + ], + "identifier": "http://www.idref.fr/030435056", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/030435056", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12185009k", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12185009" + } + ], + "pid": "030435056", + "broader": [ + { + "authorized_access_point": "Calendrier (chronologie)" + } + ], + "md5": "85f18dcdb3fa52a15b3cc30beb4f4fc6" + }, + { + "type": "bf:Topic", + "authorized_access_point": "IBM (microordinateurs)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "identifier": "http://www.idref.fr/030642841", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/030642841", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb122018278", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12201827" + } + ], + "pid": "030642841", + "narrower": [ + { + "authorized_access_point": "PC (ordinateur)" + }, + { + "authorized_access_point": "IBM PC/AT (ordinateur)" + }, + { + "authorized_access_point": "IBM PC/XT (ordinateur)" + }, + { + "authorized_access_point": "IBM PCjr (ordinateur)" + }, + { + "authorized_access_point": "IBM PS/2 (ordinateur)" + } + ], + "broader": [ + { + "authorized_access_point": "Microordinateurs" + }, + { + "authorized_access_point": "IBM (ordinateurs)" + } + ], + "variant_access_point": [ + "IBM (micro-ordinateurs)" + ], + "md5": "ed6fb6a69aceb87a2b9ddda92339ec05" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Chine, Question de la r\u00e9unification de la (1949-....)", + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "authorized_access_point": "Chinese reunification question, 1949-", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85024375", + "source": "LCSH" + } + ] + }, + { + "authorized_access_point": "Chine, Question de la r\u00e9unification de la (1949-....)", + "source": "RVMLaval" + } + ], + "identifier": "http://www.idref.fr/030768381", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/030768381", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb122118202", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12211820" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Laval RVM, 1991-02" + ] + } + ], + "pid": "030768381", + "broader": [ + { + "authorized_access_point": "Politique et gouvernement - Chine - 1949-...." + } + ], + "narrower": [ + { + "authorized_access_point": "Crise des \u00eeles Quemoy et Matsu (1958)" + }, + { + "authorized_access_point": "Crise des \u00eeles Quemoy et Matsu (1954-1955)" + } + ], + "variant_access_point": [ + "Question de la r\u00e9unification de la Chine (1949-....)", + "R\u00e9unification de la Chine, Question de la (1949-.....)", + "Question de Taiwan (1949-....)", + "Taiwan, Question de (1949-....)" + ], + "md5": "8a0c07e17bfd7156840f89f13283f25d" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Colonies romaines", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "910", + "name": "G\u00e9ographie, tourisme (guides) et voyages" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "930", + "name": "Pr\u00e9histoire et histoire ancienne" + } + ], + "identifier": "http://www.idref.fr/03082401X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/03082401X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12216223n", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12216223" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Colonies form\u00e9es de citoyens romains \u00e9tablies dans les pays nouvellement conquis ou adverses", + "S'emploie \u00e9galement en subdivision" + ] + } + ], + "pid": "03082401X", + "related": [ + { + "authorized_access_point": "Expansion territoriale - Rome" + }, + { + "authorized_access_point": "Canabae" + }, + { + "authorized_access_point": "Citoyennet\u00e9 (droit romain)" + } + ], + "narrower": [ + { + "authorized_access_point": "Pomerium" + } + ], + "broader": [ + { + "authorized_access_point": "Colonies" + }, + { + "authorized_access_point": "Rome" + } + ], + "variant_access_point": [ + "Colonies - Rome" + ], + "md5": "0174463ff9eecd9afe6dc15f78a4d7af" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Antiquit\u00e9s - Rh\u00f4ne (France)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/030904218", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/030904218", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb122226788", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12222678" + } + ], + "pid": "030904218", + "narrower": [ + { + "authorized_access_point": "Antiquit\u00e9s - Lyon (Rh\u00f4ne) - Quartier de Vaise" + } + ], + "md5": "b26dccc55205968eba5431fc191af8a2" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Irr\u00e9dentisme - Italie", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/030909120", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/030909120", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12223069w", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12223069" + } + ], + "pid": "030909120", + "broader": [ + { + "authorized_access_point": "Relations ext\u00e9rieures - Italie - 1861-1915" + } + ], + "md5": "62072f601d83307918968252aebdb818" + }, + { + "type": "bf:Topic", + "authorized_access_point": "\u00c9talonnage", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "500", + "name": "Sciences (g\u00e9n\u00e9ralit\u00e9s)" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "600", + "name": "Sciences appliqu\u00e9es" + } + ], + "closeMatch": [ + { + "authorized_access_point": "\u00c9talonnage", + "source": "RVMLaval" + }, + { + "authorized_access_point": "Calibration", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh99004829", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/030924987", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/030924987", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12224356m", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12224356" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "S'emploie \u00e9galement en subdivision aux sujets noms communs appropri\u00e9s (instruments et \u00e9quipements scientifiques et techniques)" + ] + } + ], + "pid": "030924987", + "related": [ + { + "authorized_access_point": "Calibreuses (machines)" + }, + { + "authorized_access_point": "Incertitude de mesure" + } + ], + "narrower": [ + { + "authorized_access_point": "Cales-\u00e9talons - \u00c9talonnage" + } + ], + "broader": [ + { + "authorized_access_point": "Mesures physiques" + }, + { + "authorized_access_point": "Normes" + } + ], + "variant_access_point": [ + "Calibrage" + ], + "md5": "19c952c9b664d22451fa9714f4ec163b" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Relations ext\u00e9rieures - Japon - 1912-1945", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/030975689", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/030975689", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12228429z", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12228429" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Laval RVM, 1993-02" + ] + } + ], + "pid": "030975689", + "narrower": [ + { + "authorized_access_point": "Incident du Panay (Chine ; 1937)" + } + ], + "related": [ + { + "authorized_access_point": "Puissances de l'Axe" + } + ], + "md5": "d9b8efd72295d7ae5b79bd4d4ce1808f" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Catholiques - \u00c9mancipation - Grande-Bretagne", + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "authorized_access_point": "Catholic emancipation", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85021208", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/031018866", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/031018866", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12231781d", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12231781" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Sur le mod\u00e8le de la vedette Juifs -- \u00c9mancipation" + ] + } + ], + "pid": "031018866", + "narrower": [ + { + "authorized_access_point": "Gordon, \u00c9meutes de (1780)" + } + ], + "variant_access_point": [ + "\u00c9mancipation des catholiques britanniques" + ], + "md5": "e5778695aaab0698119733d60657a9bd" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Imagerie tridimensionnelle", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "600", + "name": "Sciences appliqu\u00e9es" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Imagerie tridimensionnelle", + "source": "RVMLaval" + }, + { + "authorized_access_point": "Three-dimensional display systems", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85135021", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/031067956", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/031067956", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12235704x", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12235704" + } + ], + "pid": "031067956", + "related": [ + { + "authorized_access_point": "Photographie st\u00e9r\u00e9oscopique" + } + ], + "narrower": [ + { + "authorized_access_point": "Imagerie tridimensionnelle en g\u00e9ologie" + }, + { + "authorized_access_point": "Vid\u00e9o 3D (imagerie tridimensionnelle)" + }, + { + "authorized_access_point": "T\u00e9l\u00e9vision en relief" + }, + { + "authorized_access_point": "Imagerie tridimensionnelle en biologie" + }, + { + "authorized_access_point": "Imagerie tridimensionnelle en m\u00e9decine" + }, + { + "authorized_access_point": "Imagerie quadridimensionnelle" + } + ], + "broader": [ + { + "authorized_access_point": "Holographie" + }, + { + "authorized_access_point": "Syst\u00e8mes d'affichage" + } + ], + "variant_access_point": [ + "Affichage tridimensionnel", + "Imagerie 3D", + "Imagerie en 3 dimensions", + "Syst\u00e8mes d'affichage tridimensionnel" + ], + "md5": "11d293d7d90a162aff96aa7e77ecac7e" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Photographie num\u00e9rique", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "600", + "name": "Sciences appliqu\u00e9es" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "770", + "name": "Photographie" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Photography -- Digital techniques", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh90001789", + "source": "LCSH" + } + ] + }, + { + "authorized_access_point": "Photographie num\u00e9rique", + "source": "RVMLaval" + } + ], + "identifier": "http://www.idref.fr/031208495", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/031208495", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12246762j", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12246762" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Encycl. Larousse (art. : Photographie) - http://www.larousse.fr (2014-10-31)", + "Photo num\u00e9rique / J. A. King, 2014", + "Guide de la photo num\u00e9rique : objectif photos r\u00e9ussies / M. Leuchter, 2012" + ] + }, + { + "noteType": "seeReference", + "label": [ + "Voir aussi la subdivision Photographie" + ] + } + ], + "pid": "031208495", + "related": [ + { + "authorized_access_point": "Appareils photographiques num\u00e9riques" + }, + { + "authorized_access_point": "Flickr (site web)" + }, + { + "authorized_access_point": "Instagram (site web)" + }, + { + "authorized_access_point": "Photographie argentique" + }, + { + "authorized_access_point": "Traitement d'images - Techniques num\u00e9riques" + } + ], + "narrower": [ + { + "authorized_access_point": "Digiscopie" + }, + { + "authorized_access_point": "Photographie mobile" + } + ], + "broader": [ + { + "authorized_access_point": "\u00c9lectronique num\u00e9rique" + }, + { + "authorized_access_point": "Photographie" + } + ], + "variant_access_point": [ + "Photographie - Techniques num\u00e9riques" + ], + "md5": "a1aaba8adbe7c6abc2235699e9693708" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Facteurs de croissance IGF", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "570", + "name": "Sciences de la vie" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Somatomedin", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85124781", + "source": "LCSH" + } + ] + }, + { + "authorized_access_point": "Somatom\u00e9dine", + "source": "RVMLaval" + } + ], + "identifier": "http://www.idref.fr/031380107", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/031380107", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb122605848", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12260584" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. de l'Acad\u00e9mie de m\u00e9decine - https://www.academie-medecine.fr/le-dictionnaire (2024-05-28)", + "Dict. illustr\u00e9 des termes de m\u00e9decine, 2012", + "Dict. de biologie / J. Berthet, 2007", + "Dict. de m\u00e9decine Flammarion, 2008 (art. : Somatom\u00e9dine)" + ] + } + ], + "pid": "031380107", + "related": [ + { + "authorized_access_point": "Prot\u00e9ines IGFBP" + }, + { + "authorized_access_point": "Somatropine" + } + ], + "narrower": [ + { + "authorized_access_point": "Facteur de croissance IGF-1" + } + ], + "broader": [ + { + "authorized_access_point": "Facteurs de croissance" + } + ], + "variant_access_point": [ + "Facteurs de sulfatation", + "Facteurs thymidine", + "IGF (prot\u00e9ines)", + "Insulin-like growth factors", + "Somatom\u00e9dine", + "Somatom\u00e9dines" + ], + "md5": "3f2f12ecf5193131ac264c3000d598b1" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Int\u00e9gration \u00e9conomique - Am\u00e9rique du Sud", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/031531121", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/031531121", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12272835k", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12272835" + } + ], + "note": [ + { + "noteType": "dataNotFound", + "label": [ + "Laval RVM, 1992-02" + ] + } + ], + "pid": "031531121", + "variant_access_point": [ + "March\u00e9 commun sud-am\u00e9ricain" + ], + "md5": "2ceaf19c7de5815a127df3c91731dea5" + }, + { + "type": "bf:Topic", + "authorized_access_point": "L\u00e9gats (Rome)", + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "authorized_access_point": "L\u00e9gats (Rome)", + "source": "RVMLaval" + }, + { + "authorized_access_point": "Legates (Rome)", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85075776", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/03166010X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/03166010X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12283328c", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12283328" + } + ], + "pid": "03166010X", + "broader": [ + { + "authorized_access_point": "Fonctionnaires - Rome" + }, + { + "authorized_access_point": "Provinces romaines" + } + ], + "variant_access_point": [ + "Legati" + ], + "md5": "337b440d949b609c338deb271ae4ceb9" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Africanisation", + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "authorized_access_point": "Africanisation", + "source": "RVMLaval" + }, + { + "authorized_access_point": "Africanization", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85001756", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/031819877", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/031819877", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12296380d", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12296380" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL" + ] + }, + { + "noteType": "general", + "label": [ + "Sous cette vedette on trouve les ouvrages qui traitent de la pratique des nations africaines de remplacer les fonctionnaires, les hommes d'affaires etc. par des Africains" + ] + } + ], + "pid": "031819877", + "md5": "5c1bd2331eb2327eaaf2924c97cde342" + }, + { + "type": "bf:Topic", + "authorized_access_point": "G\u00e9n\u00e9rateurs d'interfaces (logiciels)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "identifier": "http://www.idref.fr/032027524", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/032027524", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12313565v", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12313565" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Rens. t\u00e9l., 1993-06-04, INRIA" + ] + }, + { + "noteType": "dataNotFound", + "label": [ + "Laval RVM (en ligne), 2003-08-28" + ] + } + ], + "pid": "032027524", + "broader": [ + { + "authorized_access_point": "Interfaces (informatique)" + }, + { + "authorized_access_point": "Programmation (informatique)" + } + ], + "md5": "40075cd9ac2951cc5f45d95a70c7e6ca" + }, + { + "type": "bf:Topic", + "authorized_access_point": "M\u00e8res de la place de Mai (Argentine)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "950" + } + ], + "identifier": "http://www.idref.fr/032184034", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/032184034", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb123263986", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12326398" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Encycl. universalis (art. : Argentine) - http://www.universalis-edu.com (2024-05-30)", + "Disparition et t\u00e9moignage : r\u00e9inventer la r\u00e9sistance dans l'Argentine des m\u00e8res de la place de Mai / A. Verstraeten, 2013", + "Les folles de la place de Mai / J.-P. Bousquet, 1982" + ] + }, + { + "noteType": "general", + "label": [ + "Femmes proches des \"disparus\" de la dictature militaire de 1976-1983, qui manifestaient silencieusement sur la place de Mai \u00e0 Buenos Aires chaque jeudi \u00e0 partir d'avril 1977" + ] + } + ], + "pid": "032184034", + "broader": [ + { + "authorized_access_point": "Personnes disparues - Argentine" + }, + { + "authorized_access_point": "Argentine - 1976-1983 (Dictature militaire)" + } + ], + "variant_access_point": [ + "Folles de la place de Mai", + "Folles de la place de Mai (Argentine)", + "Madres de Plaza de Mayo", + "M\u00e8res de la place de Mai", + "Place de Mai, Folles de la", + "Place de Mai, M\u00e8res de la" + ], + "md5": "e0fb6de3a3d731cc9456a795045bbc3d" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Internet", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Internet", + "source": "RVMLaval" + }, + { + "authorized_access_point": "Internet", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh92002816", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/032317468", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/032317468", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12337059x", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12337059" + } + ], + "note": [ + { + "noteType": "seeReference", + "label": [ + "Voir aussi la subdivision Ressources Internet \u00e0 tous sujets noms communs et noms propres pour les ressources \u00e9lectroniques sur ces sujets disponibles sur Internet" + ] + } + ], + "pid": "032317468", + "related": [ + { + "authorized_access_point": "Administration \u00e9lectronique" + }, + { + "authorized_access_point": "Babillards \u00e9lectroniques" + }, + { + "authorized_access_point": "Internet - Gestion" + }, + { + "authorized_access_point": "Internet et femmes" + }, + { + "authorized_access_point": "Internet et immigr\u00e9s" + }, + { + "authorized_access_point": "Internet et personnes \u00e2g\u00e9es" + }, + { + "authorized_access_point": "Internet et propagande" + }, + { + "authorized_access_point": "Intranets" + }, + { + "authorized_access_point": "Langage et Internet" + }, + { + "authorized_access_point": "Lecture sur \u00e9cran" + }, + { + "authorized_access_point": "M\u00e9dias num\u00e9riques" + }, + { + "authorized_access_point": "Neutralit\u00e9 de l'Internet" + }, + { + "authorized_access_point": "Cin\u00e9ma et Internet" + }, + { + "authorized_access_point": "Outernets" + }, + { + "authorized_access_point": "RENATER" + }, + { + "authorized_access_point": "Ressources Internet" + }, + { + "authorized_access_point": "Th\u00e9\u00e2tre et internet" + }, + { + "authorized_access_point": "Viralit\u00e9" + }, + { + "authorized_access_point": "Cyberespace" + }, + { + "authorized_access_point": "D\u00e9mocratie \u00e9lectronique" + }, + { + "authorized_access_point": "Droits de la personnalit\u00e9 et Internet" + }, + { + "authorized_access_point": "Espaces publics multim\u00e9dias" + }, + { + "authorized_access_point": "Extranets" + }, + { + "authorized_access_point": "G\u00e9n\u00e9ration Internet" + }, + { + "authorized_access_point": "Internet - Droit" + } + ], + "narrower": [ + { + "authorized_access_point": "Th\u00e9rapie en ligne" + }, + { + "authorized_access_point": "Internet - Aspect \u00e9conomique" + }, + { + "authorized_access_point": "R\u00e9putation num\u00e9rique" + }, + { + "authorized_access_point": "Formation en ligne" + }, + { + "authorized_access_point": "Internet - Protection de la jeunesse" + }, + { + "authorized_access_point": "Archives de l'Internet" + }, + { + "authorized_access_point": "Internet dans les campagnes \u00e9lectorales" + }, + { + "authorized_access_point": "Cybersexe" + }, + { + "authorized_access_point": "Internet mobile" + }, + { + "authorized_access_point": "Internet \u00e0 haut d\u00e9bit" + }, + { + "authorized_access_point": "Adresses Internet" + }, + { + "authorized_access_point": "Chat (Internet)" + }, + { + "authorized_access_point": "Aide psychologique en ligne" + }, + { + "authorized_access_point": "Droit - Ressources Internet" + }, + { + "authorized_access_point": "Ing\u00e9nierie - Ressources Internet" + }, + { + "authorized_access_point": "M\u00e9decine - Ressources Internet" + }, + { + "authorized_access_point": "Noms de domaine (Internet)" + }, + { + "authorized_access_point": "Pharmacie - Ressources Internet" + }, + { + "authorized_access_point": "Programmation sur Internet" + }, + { + "authorized_access_point": "Recherche sur Internet" + }, + { + "authorized_access_point": "Sciences - Ressources Internet" + }, + { + "authorized_access_point": "Serveurs gophers" + }, + { + "authorized_access_point": "T\u00e9l\u00e9phonie Internet" + }, + { + "authorized_access_point": "T\u00e9l\u00e9vision - Ressources Internet" + }, + { + "authorized_access_point": "WAIS (syst\u00e8me d'information)" + }, + { + "authorized_access_point": "Web" + }, + { + "authorized_access_point": "Internet sur la t\u00e9l\u00e9vision" + }, + { + "authorized_access_point": "Enfants - Ressources Internet" + }, + { + "authorized_access_point": "Visioconf\u00e9rences sur Internet" + }, + { + "authorized_access_point": "Radio - Ressources Internet" + }, + { + "authorized_access_point": "Biblioth\u00e8ques - Ressources Internet" + }, + { + "authorized_access_point": "R\u00e9seaux sociaux (Internet)" + }, + { + "authorized_access_point": "Internet en milieu de travail" + }, + { + "authorized_access_point": "Enqu\u00eates en ligne" + }, + { + "authorized_access_point": "Internet des objets" + } + ], + "broader": [ + { + "authorized_access_point": "R\u00e9seaux \u00e0 grande distance (informatique)" + } + ], + "variant_access_point": [ + "Net (r\u00e9seau d'ordinateurs)", + "Sites Internet" + ], + "md5": "13e2ef19810acc4cb39c3729b766bb78" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Syndrome de Laron", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "610", + "name": "Sciences m\u00e9dicales et param\u00e9dicales" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Laron dwarfism", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh93001158", + "source": "LCSH" + } + ] + }, + { + "authorized_access_point": "Laron Syndrome", + "source": "MeSH", + "identifiedBy": [ + { + "type": "uri", + "value": "https://id.nlm.nih.gov/mesh/M0452907", + "source": "MeSH" + } + ] + }, + { + "authorized_access_point": "Nanisme de Laron", + "source": "RVMLaval" + } + ], + "identifier": "http://www.idref.fr/032324650", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/032324650", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb123376138", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12337613" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Orphanet - https://www.orpha.net (2024-05-28)", + "Syndrome de Laron : aspects diagnostiques, th\u00e9rapeutiques et pronostiques / H. Latrech, M. Polak [in] La Presse m\u00e9dicale, 2016, 45, 1", + "Dict. de m\u00e9decine Flammarion, 2008 : Laron (syndrome de)", + "Dict. de l'Acad\u00e9mie de m\u00e9decine : nanisme de type Laron - https://www.academie-medecine.fr/le-dictionnaire (2024-05-28)", + "Dict. illustr\u00e9 des termes de m\u00e9decine, 2012 : nanisme type Laron" + ] + } + ], + "pid": "032324650", + "broader": [ + { + "authorized_access_point": "Maladies h\u00e9r\u00e9ditaires" + }, + { + "authorized_access_point": "Nanisme" + } + ], + "variant_access_point": [ + "D\u00e9ficience en r\u00e9cepteur d'hormone de croissance", + "D\u00e9ficit du r\u00e9cepteur \u00e0 l'hormone de croissance", + "Insensibilit\u00e9 compl\u00e8te \u00e0 l'hormone de croissance", + "Insensibilit\u00e9 primaire \u00e0 l'hormone de croissance", + "Laron, Syndrome de", + "Nanisme de Laron", + "Nanisme de type Laron", + "Nanisme hypophysaire de type II", + "Nanisme type Laron", + "R\u00e9sistance primaire \u00e0 l'hormone de croissance", + "Syndrome de l'insensibilit\u00e9 \u00e0 l'hormone de croissance" + ], + "md5": "7ae3406a562aeb0a6b86fa6a08719397" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Prot\u00e9ines IGFBP", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "570", + "name": "Sciences de la vie" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Insulin-like growth factor-binding proteins", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh90000055", + "source": "LCSH" + } + ] + }, + { + "authorized_access_point": "Prot\u00e9ines de liaison de la somatom\u00e9dine", + "source": "RVMLaval" + } + ], + "identifier": "http://www.idref.fr/032324804", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/032324804", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12337626m", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12337626" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Les IGFs (insulin like growth factors) et leurs prot\u00e9ines de liaison (IGFBPs) [in] Journal de p\u00e9diatrie et de pu\u00e9riculture, 1996, 9, 7", + "R\u00f4le et variations de l'expression de la superfamille des prot\u00e9ines IGFBP par les cellules b\u00eata des \u00eelots pancr\u00e9atiques, notamment en cas d'atteinte pancr\u00e9atique comme celle induite par le diab\u00e8te / C. Neftel, 2014 [m\u00e9moire]" + ] + } + ], + "pid": "032324804", + "related": [ + { + "authorized_access_point": "Facteurs de croissance IGF" + } + ], + "broader": [ + { + "authorized_access_point": "Prot\u00e9ines de liaison" + } + ], + "variant_access_point": [ + "IGF binding proteins", + "IGFBP (prot\u00e9ines)", + "Insulin-like growth factor binding proteins", + "Prot\u00e9ines de liaison aux IGF", + "Prot\u00e9ines de liaison de la somatom\u00e9dine", + "Prot\u00e9ines de liaison des IGF" + ], + "md5": "d900d9574460b5f2007d2606e8d6ed03" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Affaire des blouses blanches (1953)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "950" + } + ], + "identifier": "http://www.idref.fr/032370474", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/032370474", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12341305k", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12341305" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Grand dict. encyclop\u00e9dique Larousse (art. : Staline, Joseph) : complot des blouses blanches", + "Les derniers complots de Staline : l'affaire des blouses blanches / Jean-Jacques Marie, 1993" + ] + }, + { + "noteType": "general", + "label": [ + "Le 13 janvier 1953, \u00e0 Moscou, des m\u00e9decins juifs d'une organisation d'assistance sont accus\u00e9s de l'assassinat de hauts dirigeants du r\u00e9gime. Ils seront r\u00e9habilit\u00e9s et lib\u00e9r\u00e9s le 4 avril, apr\u00e8s la mort de Staline" + ] + } + ], + "pid": "032370474", + "broader": [ + { + "authorized_access_point": "Politique et gouvernement - URSS - 1941-1953" + } + ], + "variant_access_point": [ + "Affaire des blouses blanches (URSS ; 1953)", + "Blouses blanches, Affaire des (1953)", + "Complot des blouses blanches (1953)" + ], + "md5": "a52f127bd771878490fc2fc823fca8e5" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Corn-laws (Histoire de Grande-Bretagne)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "330", + "name": "\u00c9conomie politique" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "340", + "name": "Droit" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "940", + "name": "Histoire de l'Europe" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Corn-Laws (Grande-Bretagne)", + "source": "RVMLaval" + }, + { + "authorized_access_point": "Corn laws (Great Britain)", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85032773", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/03243782X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/03243782X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb123467810", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12346781" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Grand Larousse universel", + "Encycl. universalis (art. : Suppression des \"Corn Laws\") - http://www.universalis-edu.com (2018-08-14)", + "Dict. encyclop\u00e9dique d'histoire / M. Mourre, 1996" + ] + }, + { + "noteType": "general", + "label": [ + "L\u00e9gislation protectionniste sur la production c\u00e9r\u00e9ali\u00e8re britannique, favorable aux grands propri\u00e9taires terriens. Renforc\u00e9e en 1815, elle fut abolie en 1846-1849 \u00e0 la suite de la campagne libre-\u00e9changiste de Richard Cobden et l'Anti-Corn-Law League" + ] + } + ], + "pid": "03243782X", + "broader": [ + { + "authorized_access_point": "C\u00e9r\u00e9ales - Industrie et commerce - Droit" + }, + { + "authorized_access_point": "Protectionnisme" + }, + { + "authorized_access_point": "Grande-Bretagne - Histoire" + } + ], + "variant_access_point": [ + "Lois sur le bl\u00e9 (Histoire de Grande-Bretagne)" + ], + "md5": "f8a102d071d43014fae50c942f0c3c89" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Philosophie - Chine - 20e si\u00e8cle", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "100", + "name": "Philosophie" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Philosophy, Chinese--20th century", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85100892", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/032493940", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/032493940", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12351319g", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12351319" + } + ], + "pid": "032493940", + "broader": [ + { + "authorized_access_point": "Philosophie - Chine - Histoire" + } + ], + "md5": "84d5dfa4d7e8d4d069f1942961721a1f" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Saris", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "391", + "name": "Costume et apparence personnelle" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "640", + "name": "\u00c9conomie domestique" + } + ], + "identifier": "http://www.idref.fr/032506929", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/032506929", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12352358m", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12352358" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Grand Larousse universel", + "Nouveau petit Robert 2008" + ] + } + ], + "pid": "032506929", + "broader": [ + { + "authorized_access_point": "V\u00eatements de femme" + } + ], + "md5": "f05d4727090a3a8630daadd74d8f8689" + }, + { + "type": "bf:Topic", + "authorized_access_point": "G\u00e9ographie (discipline) - Logiciels", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "910", + "name": "G\u00e9ographie, tourisme (guides) et voyages" + } + ], + "identifier": "http://www.idref.fr/03256953X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/03256953X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12357433r", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12357433" + } + ], + "pid": "03256953X", + "broader": [ + { + "authorized_access_point": "G\u00e9omatique" + }, + { + "authorized_access_point": "Logiciels" + } + ], + "variant_access_point": [ + "G\u00e9ographie - Logiciels" + ], + "md5": "d677fcb4c39b9ece6d1e2d253a2b94b3" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Municipes (droit romain)", + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "authorized_access_point": "Municipal corporations (Roman law)", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85088457", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/032675011", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/032675011", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12365897t", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12365897" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GLU", + "Encycl. universalis, thesaurus" + ] + }, + { + "noteType": "general", + "label": [ + "Cit\u00e9s pr\u00e9existantes \u00e0 la conqu\u00eate et soumises \u00e0 Rome, les municipes pouvaient \u00eatre de droit romain, de droit latin, ou conserver un droit propre" + ] + } + ], + "pid": "032675011", + "related": [ + { + "authorized_access_point": "Canabae" + }, + { + "authorized_access_point": "Villes antiques" + }, + { + "authorized_access_point": "Droit latin" + } + ], + "broader": [ + { + "authorized_access_point": "Administration locale" + }, + { + "authorized_access_point": "Droit romain" + }, + { + "authorized_access_point": "Provinces romaines" + } + ], + "variant_access_point": [ + "Municipalit\u00e9s (droit romain)", + "Municipia" + ], + "md5": "81bfe309f24b74d1f85075f50c72e359" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Donn\u00e9es - Compression (informatique) - Logiciels", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "identifier": "http://www.idref.fr/032709501", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/032709501", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb123687540", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12368754" + } + ], + "note": [ + { + "noteType": "dataNotFound", + "label": [ + "Laval RVM (en ligne), 2005-03-18" + ] + } + ], + "pid": "032709501", + "broader": [ + { + "authorized_access_point": "Donn\u00e9es - Compression (informatique)" + }, + { + "authorized_access_point": "Utilitaires (logiciels)" + } + ], + "variant_access_point": [ + "Logiciels de compactage des donn\u00e9es (informatique)", + "Logiciels de compression des donn\u00e9es (informatique)" + ], + "md5": "f1e012830fbf1dd49dc763ca2172c33c" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Informatique - Gestion", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Informatique -- Gestion", + "source": "RVMLaval" + }, + { + "authorized_access_point": "Electronic data processing--Management", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2008102940", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/032916078", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/032916078", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12385286x", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12385286" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Sous cette vedette, on trouve les documents sur la gestion des syst\u00e8mes informatiques. Les documents sur l'informatique appliqu\u00e9e \u00e0 la gestion sont sous la vedette Gestion -- Informatique. Les documents sur les syst\u00e8mes d'information sp\u00e9cialis\u00e9s en gestion sont sous la vedette Syst\u00e8mes d'information en gestion" + ] + } + ], + "pid": "032916078", + "related": [ + { + "authorized_access_point": "Migration des syst\u00e8mes d'information" + } + ], + "narrower": [ + { + "authorized_access_point": "Gouvernance des donn\u00e9es" + }, + { + "authorized_access_point": "Scalabilit\u00e9 (informatique)" + }, + { + "authorized_access_point": "Microsoft Windows Server Update Services (serveur)" + }, + { + "authorized_access_point": "Infog\u00e9rance" + }, + { + "authorized_access_point": "Informatique - Proc\u00e9dures de secours" + } + ], + "broader": [ + { + "authorized_access_point": "Gestion" + } + ], + "variant_access_point": [ + "Gestion de l'informatique", + "Gestion de parc d'ordinateurs", + "Syst\u00e8mes informatiques - Gestion", + "Gestion de parc informatique", + "Gestion des syst\u00e8mes informatiques", + "Informatique, Centres d' - Gestion", + "Informatique - Planification", + "Ordinateurs - Gestion", + "Parc d'ordinateurs - Gestion", + "Parc informatique - Gestion", + "Planification informatique" + ], + "md5": "ca63849f97f9257f2ae49e8d28604c79" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Arts - Japon - 794-1185 (\u00c9poque de Heian)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "700", + "name": "Arts (sauf litt\u00e9rature)" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Arts, Japanese--Heian period, 794-1185", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85008402", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/032978294", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/032978294", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb123896175", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12389617" + } + ], + "pid": "032978294", + "narrower": [ + { + "authorized_access_point": "Art - Japon - 794-1185 (\u00c9poque de Heian)" + } + ], + "broader": [ + { + "authorized_access_point": "Arts - Japon" + } + ], + "md5": "eee86744b82f888ca0dcbeaf6a522879" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Calendrier (chronologie) - R\u00e9forme", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "520", + "name": "Astronomie" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "900", + "name": "Histoire" + } + ], + "identifier": "http://www.idref.fr/033125341", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/033125341", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12402334r", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12402334" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Les tentatives de r\u00e9forme du calendrier gr\u00e9gorien entre la fin du XIXe si\u00e8cle et le milieu du XXe si\u00e8cle / P. Rocher, 2011 - http://www.imcce.fr (2015-09-21)" + ] + } + ], + "pid": "033125341", + "related": [ + { + "authorized_access_point": "R\u00e9forme" + }, + { + "authorized_access_point": "Calendrier gr\u00e9gorien" + }, + { + "authorized_access_point": "Calendrier julien" + } + ], + "broader": [ + { + "authorized_access_point": "Calendrier (chronologie)" + } + ], + "variant_access_point": [ + "Calendrier - R\u00e9forme", + "R\u00e9forme du calendrier" + ], + "md5": "88873f512f1699637732f016da4d9cce" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Syst\u00e8me tributaire (Chine)", + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "authorized_access_point": "Syst\u00e8me tributaire (Chine)", + "source": "RVMLaval" + }, + { + "authorized_access_point": "Tributary system (China)", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85137436", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/033136831", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/033136831", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12403376x", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12403376" + } + ], + "pid": "033136831", + "variant_access_point": [ + "Tribut (Chine)" + ], + "md5": "6f83b177de17b77eb6067ffa7160fcfb" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Art - Grande-Bretagne - 17e si\u00e8cle", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "700", + "name": "Arts (sauf litt\u00e9rature)" + } + ], + "identifier": "http://www.idref.fr/033422605", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/033422605", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12428983g", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12428983" + } + ], + "pid": "033422605", + "narrower": [ + { + "authorized_access_point": "Architecture - Grande-Bretagne - 17e si\u00e8cle" + }, + { + "authorized_access_point": "Art jacob\u00e9en" + }, + { + "authorized_access_point": "Art Stuart" + } + ], + "broader": [ + { + "authorized_access_point": "Art - Grande-Bretagne" + } + ], + "md5": "20f39fdd5dbc6f9c5516e5230a985bc5" + }, + { + "type": "bf:Topic", + "authorized_access_point": "WASP", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "200", + "name": "Religion" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "300", + "name": "Sciences sociales" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "305", + "name": "Groupes sociaux" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "390", + "name": "Ethnologie" + } + ], + "identifier": "http://www.idref.fr/033433763", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/033433763", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12429955g", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12429955" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Grand Larousse universel", + "Encycl. universalis, 1989 (art. : Canada)", + "Petit Robert 1, 1993", + "The way of the WASP : how it made America, and how it can save it, so to speak / R. Brookhiser, 1991" + ] + }, + { + "noteType": "general", + "label": [ + "Nom donn\u00e9, aux \u00c9tats-Unis et au Canada, aux citoyens d'origine anglo-saxonne et de religion protestante, constituant ou ayant constitu\u00e9 les couches dirigeantes du pays" + ] + } + ], + "pid": "033433763", + "broader": [ + { + "authorized_access_point": "Conditions sociales - \u00c9tats-Unis" + }, + { + "authorized_access_point": "Blancs" + }, + { + "authorized_access_point": "Ethnologie - Canada" + }, + { + "authorized_access_point": "Ethnologie - \u00c9tats-Unis" + }, + { + "authorized_access_point": "Protestants" + } + ], + "related": [ + { + "authorized_access_point": "Am\u00e9ricains d'origine britannique" + }, + { + "authorized_access_point": "Canadiens anglophones" + } + ], + "variant_access_point": [ + "WASPs", + "White Anglo-Saxon Protestants" + ], + "md5": "12e3b4a8c3fe8863db02ce1ab6290efd" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Piagnoni (Mouvement de Savonarole)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/033642036", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/033642036", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12448906f", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12448906" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GLU" + ] + }, + { + "noteType": "general", + "label": [ + "Partisans de Savonarole" + ] + } + ], + "pid": "033642036", + "broader": [ + { + "authorized_access_point": "Histoire religieuse - Italie - 16e si\u00e8cle" + }, + { + "authorized_access_point": "Florence (Italie) - 1494-1512 (Exil des M\u00e9dicis)" + } + ], + "md5": "90d2e5541fd97e61566a3725f87eed9e" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Disques durs - Gestion", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "identifier": "http://www.idref.fr/033738653", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/033738653", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12457541t", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12457541" + } + ], + "pid": "033738653", + "related": [ + { + "authorized_access_point": "Utilitaires (logiciels)" + } + ], + "variant_access_point": [ + "Disques rigides - Gestion" + ], + "md5": "6d77397339c4220f9c5eb08ac2362b2c" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Relations ext\u00e9rieures - \u00c9quateur", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/03374033X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/03374033X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12457696c", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12457696" + } + ], + "note": [ + { + "noteType": "dataNotFound", + "label": [ + "Laval RVM, 1994-08. - LCSH, 1994-09" + ] + } + ], + "pid": "03374033X", + "related": [ + { + "authorized_access_point": "\u00c9quateur" + } + ], + "md5": "44aaa769cda6420b9ca60d118024bcc8" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Discours argumentatif", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "401", + "name": "Linguistique g\u00e9n\u00e9rale" + } + ], + "identifier": "http://www.idref.fr/033869235", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/033869235", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12468269t", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12468269" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Une introduction \u00e0 l'analyse du discours argumentatif / V. Mendenhall, 1990", + "Grammaire du discours argumentatif / E. Eggs, 1994", + "Le d\u00e9veloppement des discours argumentatifs / C. Golder, 1996" + ] + } + ], + "pid": "033869235", + "related": [ + { + "authorized_access_point": "Argumentation" + } + ], + "broader": [ + { + "authorized_access_point": "Discours (linguistique)" + } + ], + "variant_access_point": [ + "Analyse du discours argumentatif", + "Argumentation (linguistique)", + "Argumentation dans la langue", + "Parole argumentative", + "Texte - Argumentation", + "Texte argumentatif", + "Textes argumentatifs", + "Topo\u00ef (linguistique)" + ], + "md5": "018f2ebf90985a7f8152193bdd9535cd" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Personnel - Direction -- Logiciels", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/033895732", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/033895732", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12470661f", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12470661" + } + ], + "note": [ + { + "noteType": "dataNotFound", + "label": [ + "Laval RVM, 1997-02" + ] + } + ], + "pid": "033895732", + "broader": [ + { + "authorized_access_point": "Logiciels" + } + ], + "variant_access_point": [ + "Logiciels de gestion du personnel" + ], + "md5": "5a4815da484ad07f94ef9e23bfd4d7c4" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Caudillos", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "320", + "name": "Science politique" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Caudillos", + "source": "RVMLaval" + } + ], + "identifier": "http://www.idref.fr/034054693", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/034054693", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb124850000", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12485000" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Grand Larousse universel", + "Mourre" + ] + }, + { + "noteType": "general", + "label": [ + "En Am\u00e9rique latine, au 19e si\u00e8cle et au d\u00e9but du 20e si\u00e8cle, chefs politiques se faisant les champions des masses m\u00e9tisses et indiennes contre la bourgeoisie blanche et exer\u00e7ant le pouvoir par des m\u00e9thodes dictatoriales, avec l'appui de l'arm\u00e9e : par ex. J. Francia, J.A. P\u00e1ez, J.M. Rosas, R. Carrera, P. D\u00edaz, J.V. Gomez" + ] + } + ], + "pid": "034054693", + "broader": [ + { + "authorized_access_point": "Politique et gouvernement - Am\u00e9rique latine - 20e si\u00e8cle" + }, + { + "authorized_access_point": "Dictateurs" + }, + { + "authorized_access_point": "Gouvernement militaire" + }, + { + "authorized_access_point": "Hommes politiques" + } + ], + "md5": "3b1aecdbf84a7b41c454db92a3b1165c" + }, + { + "type": "bf:Topic", + "authorized_access_point": "M\u00e9diatisation d'Empire", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "320", + "name": "Sciences politiques" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "940", + "name": "Histoire m\u00e9di\u00e9vale, moderne et contemporaine (sauf la France)" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Mediatized states", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85082854", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/03405491X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/03405491X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12485021z", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12485021" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Encycl. universalis (M\u00e9diatisation d'Empire)", + "GLU ; Mourre (M\u00e9diatisation)", + "Mediatisierung ; SWD, 1995-04" + ] + }, + { + "noteType": "general", + "label": [ + "Incorporation d'un \u00c9tat relevant directement de l'empereur dans un autre \u00c9tat de l'empire (Saint Empire puis Empire allemand)" + ] + } + ], + "pid": "03405491X", + "broader": [ + { + "authorized_access_point": "Souverainet\u00e9" + }, + { + "authorized_access_point": "Territoire - Acquisition" + }, + { + "authorized_access_point": "Saint Empire romain germanique" + } + ], + "variant_access_point": [ + "M\u00e9diatisation (Saint Empire romain germanique)" + ], + "md5": "611543313761e05ee3b9bf4c225c66e8" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Chartreuses (monast\u00e8res) - France", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "200", + "name": "Religion" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "690", + "name": "Construction" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "720", + "name": "Architecture" + } + ], + "identifier": "http://www.idref.fr/034133704", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/034133704", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12492226q", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12492226" + } + ], + "pid": "034133704", + "broader": [ + { + "authorized_access_point": "Chartreuses (monast\u00e8res) - [Localisations g\u00e9ographiques]" + } + ], + "narrower": [ + { + "authorized_access_point": "Gosnay (Pas-de-Calais) - Chartreuse du Val Saint-Esprit" + }, + { + "authorized_access_point": "Aix-en-Provence (Bouches-du-Rh\u00f4ne) - Couvent des Chartreux" + } + ], + "md5": "59182ee571cbef1c4ff4a2c65daddb20" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Philosophie - Chine - 960-1644", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "100", + "name": "Philosophie" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Philosophy, Chinese--960-1644", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85100889", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/034195688", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/034195688", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb124978822", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12497882" + } + ], + "pid": "034195688", + "broader": [ + { + "authorized_access_point": "Philosophie - Chine - Histoire" + } + ], + "md5": "89d92e202cba287aac804a2daa1cc412" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Access Basic (langage de programmation)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "identifier": "http://www.idref.fr/034254145", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/034254145", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12502863w", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12502863" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Access Basic 2 / B. Blier, 1995", + "Crash course in Access Basic / A. Wyatt, S. Gilmore, 1994", + "Access Basic cookbook / C. S. Valentine, 1993" + ] + } + ], + "pid": "034254145", + "broader": [ + { + "authorized_access_point": "BASIC (langage de programmation)" + } + ], + "variant_access_point": [ + "AccessBasic (langage de programmation)" + ], + "md5": "93d99e3eabaf1b440ace88017257a407" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Partis politiques - Bangladesh", + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "authorized_access_point": "Partis politiques -- Bangladesh", + "source": "RVMLaval" + } + ], + "identifier": "http://www.idref.fr/034259910", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/034259910", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12503320g", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12503320" + } + ], + "pid": "034259910", + "md5": "1f1bce3a014d56e80ef098b6c1522c58" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Commodore (ordinateurs)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "identifier": "http://www.idref.fr/034308695", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/034308695", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb125076777", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12507677" + } + ], + "pid": "034308695", + "narrower": [ + { + "authorized_access_point": "Amiga (ordinateur)" + }, + { + "authorized_access_point": "CBM (ordinateur)" + }, + { + "authorized_access_point": "Commodore 64 (ordinateur)" + }, + { + "authorized_access_point": "Commodore 128 (ordinateur)" + }, + { + "authorized_access_point": "PET (ordinateur)" + }, + { + "authorized_access_point": "VIC 20 (ordinateur)" + } + ], + "broader": [ + { + "authorized_access_point": "Microordinateurs" + } + ], + "md5": "41ae46326a30714338c8e57e71b55584" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Dialogisme", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "801", + "name": "Po\u00e9sie" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Dialogism (Literary analysis)", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh00009821", + "source": "LCSH" + } + ] + }, + { + "authorized_access_point": "Dialogisme", + "source": "RVMLaval" + } + ], + "identifier": "http://www.idref.fr/034342230", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/034342230", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12510697c", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12510697" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Vocabulaire de l'analyse litt\u00e9raire / D. Bergez, V. G\u00e9raud, J.-J. Robrieux, 1994", + "Dict. des termes litt\u00e9raires, 2001", + "Dict. du litt\u00e9raire / P. Aron, D. Saint-Jacques, A. Viala, 2002", + "Dict. des termes litt\u00e9raires, 2005" + ] + } + ], + "pid": "034342230", + "related": [ + { + "authorized_access_point": "Polyphonie (litt\u00e9rature)" + }, + { + "authorized_access_point": "Carnavalesque" + }, + { + "authorized_access_point": "Dialogue (litt\u00e9rature)" + }, + { + "authorized_access_point": "Intertextualit\u00e9" + } + ], + "broader": [ + { + "authorized_access_point": "Litt\u00e9rature - Esth\u00e9tique" + } + ], + "md5": "dbf65946bd1c453d392ad216772afe17" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Philosophie - Chine - 1644-1912", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "100", + "name": "Philosophie" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Philosophy, Chinese--1644-1912", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85100890", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/034566228", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/034566228", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12530940n", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12530940" + } + ], + "pid": "034566228", + "broader": [ + { + "authorized_access_point": "Philosophie - Chine - Histoire" + } + ], + "md5": "5135039fedbd1bcdf07f24fd94458aef" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Java (langage de programmation)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "510", + "name": "Math\u00e9matiques" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "identifier": "http://www.idref.fr/034591966", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/034591966", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12533207m", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12533207" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Encycl. universalis (art. : Langages de programmation) - http://www.universalis-edu.com (2011-11-04)", + "Encycl. de l'informatique et des syst\u00e8mes d'information, 2006", + "Langage Java / P. Bellot, C. Matiachoff [in] Techniques de l'ing\u00e9nieur, 1998, H3088", + "TermSciences - http://www.termsciences.fr (2011-11-04)", + "The encycl. of computer languages - http://hopl.murdoch.edu.au (2011-11-04)" + ] + } + ], + "pid": "034591966", + "related": [ + { + "authorized_access_point": "Akka (plate-forme informatique)" + }, + { + "authorized_access_point": "BlueJ (environnement de d\u00e9veloppement d'applications)" + }, + { + "authorized_access_point": "Scala (langage de programmation)" + }, + { + "authorized_access_point": "Hadoop (plate-forme informatique)" + }, + { + "authorized_access_point": "OSGi (plate-forme informatique)" + } + ], + "narrower": [ + { + "authorized_access_point": "Java Persistence API" + } + ], + "broader": [ + { + "authorized_access_point": "Langages de programmation" + } + ], + "md5": "e4d21da8479fcaac27b6fab444f7f986" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Tayo (langue)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "400", + "name": "Langues" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Tayo (langue)", + "source": "RVMLaval" + }, + { + "authorized_access_point": "Tayo language", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh95001065", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/034623574", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/034623574", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12536022p", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12536022" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "L'am\u00e9nagement linguistique dans le monde - http://www.tlfq.ulaval.ca (2008-11-26)", + "Ethnologue (15th ed.) - http://www.ethnologue.com (2008-11-26)" + ] + }, + { + "noteType": "dataNotFound", + "label": [ + "Les langues du monde / M. Sala, I. Vintila-Radulescu, 1984. - Les langues dans le monde ancien et moderne / J. Perrot, 1981" + ] + }, + { + "noteType": "general", + "label": [ + "Langue de Nouvelle-Cal\u00e9donie (France)", + "L'adjectif de langue correspondant est \"tayo\". Il est invariable" + ] + } + ], + "pid": "034623574", + "related": [ + { + "authorized_access_point": "Langues m\u00e9lan\u00e9siennes" + } + ], + "broader": [ + { + "authorized_access_point": "Langues cr\u00e9oles fran\u00e7aises" + } + ], + "variant_access_point": [ + "Caldoche (langue)", + "Kaldosh (langue)", + "Langues cr\u00e9oles fran\u00e7aises - Nouvelle-Cal\u00e9donie", + "Patois de St-Louis (langue)" + ], + "md5": "434169f5015c6130ad610e7130710702" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Informatique - Proc\u00e9dures de secours", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Informatique -- Proc\u00e9dures de secours", + "source": "RVMLaval" + }, + { + "authorized_access_point": "Electronic data processing--Backup processing alternatives", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh89004334", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/034679391", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/034679391", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12540873j", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12540873" + } + ], + "pid": "034679391", + "broader": [ + { + "authorized_access_point": "Informatique - Gestion" + }, + { + "authorized_access_point": "Protection de l'information (informatique)" + } + ], + "variant_access_point": [ + "Copies de sauvegarde (informatique)", + "Copies de secours (informatique)", + "Sauvegardes (informatique)", + "Traitement d\u00e9port\u00e9 (informatique)", + "Copies de s\u00e9curit\u00e9 (informatique)", + "Informatique - Reprises en secours", + "Informatique - Sauvegardes", + "Informatique - Traitement d\u00e9port\u00e9", + "Mesures de sauvegarde (informatique)", + "Proc\u00e9dures de sauvegarde (informatique)", + "Proc\u00e9dures de secours (informatique)", + "Reprises en secours (informatique)" + ], + "md5": "559c53624db39749d36b47091d64a1e9" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Whitewater, Affaire (1992-....)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/034705384", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/034705384", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12543176c", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12543176" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Ann\u00e9e 1994 dans \"Le Monde", + "Quid 1996 (p. 1161)", + "Monde, 1997-02-24" + ] + }, + { + "noteType": "general", + "label": [ + "Affaire cons\u00e9cutive \u00e0 la faillite en 1989 de la soci\u00e9t\u00e9 d'am\u00e9nagement immobilier Whitewater Development, cr\u00e9\u00e9e en 1978 dans l'Arkansas par les \u00e9poux Clinton en copropri\u00e9t\u00e9 avec des amis ; r\u00e9v\u00e9l\u00e9 en mars 1992 par le New York Times, le scandale du projet immobilier Whitewater devient alors une affaire politico-judiciaire qui a entra\u00een\u00e9 la condamnation de plusieurs proches des Clinton et pourrait conna\u00eetre son d\u00e9nouement en 1997-1998" + ] + } + ], + "pid": "034705384", + "broader": [ + { + "authorized_access_point": "Politique et gouvernement - \u00c9tats-Unis - 1993-2001" + } + ], + "variant_access_point": [ + "Affaire Whitewater (1992-....)" + ], + "md5": "b1c9d7c5d81418dc737790057ecbb9a1" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Microsoft Network (serveur)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "identifier": "http://www.idref.fr/03472690X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/03472690X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12545061j", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12545061" + } + ], + "pid": "03472690X", + "broader": [ + { + "authorized_access_point": "Serveurs (informatique)" + }, + { + "authorized_access_point": "Web" + } + ], + "variant_access_point": [ + "MSN (serveur)" + ], + "md5": "2485b554db2651eaf95c1aac25977f90" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Microsoft BackOffice (logiciels)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "identifier": "http://www.idref.fr/034766995", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/034766995", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb125486790", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12548679" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "LCNA (en ligne) 2004-09-20 : Microsoft BackOffice" + ] + } + ], + "pid": "034766995", + "related": [ + { + "authorized_access_point": "SNA (architecture des r\u00e9seaux d'ordinateurs)" + } + ], + "broader": [ + { + "authorized_access_point": "Architecture client-serveur (informatique)" + }, + { + "authorized_access_point": "Gestionnaires de r\u00e9seaux (logiciels)" + } + ], + "variant_access_point": [ + "Back Office (logiciels)", + "BackOffice (logiciels)", + "Microsoft Back Office (logiciels)" + ], + "md5": "cffbf1a13cb2e72cd2b3a28bd31ed483" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Microsoft Jet (langage de programmation)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "identifier": "http://www.idref.fr/034781897", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/034781897", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb125499792", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12549979" + } + ], + "note": [ + { + "noteType": "dataNotFound", + "label": [ + "Laval RVM (en ligne), 2001-03-22" + ] + } + ], + "pid": "034781897", + "broader": [ + { + "authorized_access_point": "Bases de donn\u00e9es relationnelles" + }, + { + "authorized_access_point": "Langages de programmation" + } + ], + "variant_access_point": [ + "Jet (langage de programmation)", + "Microsoft Jet database engine (langage de programmation)", + "Microsoft Jet DB engine (langage de programmation)", + "Microsoft Jet engine (langage de programmation)" + ], + "md5": "f5f25464399df9cc3bbbfc75d74d07e3" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Logiciels contributifs", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Shareware (Computer software)", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh91002599", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/034857923", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/034857923", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb125566086", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12556608" + } + ], + "pid": "034857923", + "related": [ + { + "authorized_access_point": "Droit d'auteur - Logiciels" + }, + { + "authorized_access_point": "Logiciels gratuits" + } + ], + "broader": [ + { + "authorized_access_point": "Droit d'auteur - Domaine public" + }, + { + "authorized_access_point": "Droit d'auteur et informatique" + } + ], + "variant_access_point": [ + "Contribuciels", + "Contributiels", + "Logiciels \u00e0 contribution volontaire", + "Logiciels du domaine public", + "Logiciels non brevet\u00e9s", + "Logiciels partag\u00e9s", + "Logiciels publics", + "Logiciels tomb\u00e9s dans le domaine public", + "Partagiciels", + "Shareware (logiciels)" + ], + "md5": "e235615a825de5cf3c793ebbb5286c2f" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Justice - Administration - Logiciels", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "340", + "name": "Droit" + } + ], + "identifier": "http://www.idref.fr/034885420", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/034885420", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb125590502", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12559050" + } + ], + "note": [ + { + "noteType": "dataNotFound", + "label": [ + "Laval RVM (en ligne), 2005-05-24" + ] + } + ], + "pid": "034885420", + "broader": [ + { + "authorized_access_point": "E-justice" + } + ], + "md5": "bd71d2661a762b599865e76587868397" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Entrep\u00f4ts de donn\u00e9es", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Entrep\u00f4ts de donn\u00e9es", + "source": "RVMLaval" + }, + { + "authorized_access_point": "Data warehousing", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh97003695", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/034892710", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/034892710", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12559694b", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12559694" + } + ], + "pid": "034892710", + "related": [ + { + "authorized_access_point": "Int\u00e9gration de donn\u00e9es (informatique)" + }, + { + "authorized_access_point": "Bases de donn\u00e9es - Conception" + }, + { + "authorized_access_point": "Exploration de donn\u00e9es" + } + ], + "variant_access_point": [ + "Data warehouse", + "Centralisation de donn\u00e9es", + "Entreposage de donn\u00e9es", + "Magasins de donn\u00e9es" + ], + "md5": "1633ee32eeb05750e65ba2cd9c153303" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Gestion de configurations des logiciels", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Gestion de configurations des logiciels", + "source": "RVMLaval" + }, + { + "authorized_access_point": "Software configuration management", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh91002171", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/034960848", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/034960848", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12565703q", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12565703" + } + ], + "pid": "034960848", + "broader": [ + { + "authorized_access_point": "Logiciels - Maintenance" + } + ], + "variant_access_point": [ + "Logiciels - Configuration -- Gestion", + "Logiciels - Gestion de configuration", + "Gestion de configuration logiciel" + ], + "md5": "50d2763b38990d6ea4dbba0fbda3e5b1" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Convergence (\u00e9conomie politique)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/035061308", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/035061308", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12574241v", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12574241" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Convergence et diversit\u00e9 \u00e0 l'heure de la mondialisation / \u00c9conomica, 1997" + ] + } + ], + "pid": "035061308", + "related": [ + { + "authorized_access_point": "Aide \u00e9conomique" + } + ], + "broader": [ + { + "authorized_access_point": "D\u00e9veloppement \u00e9conomique" + }, + { + "authorized_access_point": "\u00c9conomie ouverte" + } + ], + "variant_access_point": [ + "Convergence des \u00e9conomies", + "Convergence \u00e9conomique", + "Harmonisation \u00e9conomique", + "Productivit\u00e9 - Convergence", + "Rapprochement (\u00e9conomie politique)" + ], + "md5": "6fe008391400b3b115c36f27ffb958f4" + }, + { + "type": "bf:Topic", + "authorized_access_point": "VBScript (langage de programmation)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "identifier": "http://www.idref.fr/035095679", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/035095679", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb131666483", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13166648" + } + ], + "pid": "035095679", + "related": [ + { + "authorized_access_point": "HTML (langage de balisage)" + }, + { + "authorized_access_point": "Sites Web - Conception" + } + ], + "broader": [ + { + "authorized_access_point": "Langages de script (informatique)" + }, + { + "authorized_access_point": "Interpr\u00e9teurs (logiciels)" + }, + { + "authorized_access_point": "Microsoft Visual BASIC (langage de programmation)" + } + ], + "variant_access_point": [ + "VB Script (langage de programmation)", + "Microsoft Visual BASIC Scripting Edition (langage de programmation)" + ], + "md5": "396eabb7c7c3615816b1679314195884" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Moteurs de recherche sur Internet", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Moteurs de recherche sur Internet", + "source": "RVMLaval" + }, + { + "authorized_access_point": "Web search engines", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh97007463", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/035167734", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/035167734", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb131716541", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13171654" + } + ], + "pid": "035167734", + "narrower": [ + { + "authorized_access_point": "Qwant" + }, + { + "authorized_access_point": "Google" + }, + { + "authorized_access_point": "FUSIN (syst\u00e8me informatique)" + }, + { + "authorized_access_point": "Portails Internet" + }, + { + "authorized_access_point": "Sites Web - R\u00e9f\u00e9rencement" + } + ], + "broader": [ + { + "authorized_access_point": "Bases de donn\u00e9es - Interrogation" + }, + { + "authorized_access_point": "Recherche sur Internet" + }, + { + "authorized_access_point": "Web" + }, + { + "authorized_access_point": "Moteurs de recherche" + } + ], + "variant_access_point": [ + "Annuaires \u00e9lectroniques (Internet)", + "Index \u00e9lectroniques (Internet)", + "Internet - Moteurs de recherche", + "Internet - Outils de recherche", + "Outils de recherche sur Internet", + "Web - Moteurs de recherche", + "Web - Outils de recherche" + ], + "md5": "e0de63d30ef295601859d89dcef319ac" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Exploration de donn\u00e9es", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Data mining", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh97002073", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/035198222", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/035198222", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13173501n", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13173501" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Le data warehouse : le data mining / J.-M. Franco..., 1997" + ] + } + ], + "pid": "035198222", + "related": [ + { + "authorized_access_point": "Analyse des donn\u00e9es symboliques" + }, + { + "authorized_access_point": "Entrep\u00f4ts de donn\u00e9es" + }, + { + "authorized_access_point": "Mod\u00e9lisation pr\u00e9dictive" + } + ], + "narrower": [ + { + "authorized_access_point": "Fouille de r\u00e8gles d'associations" + }, + { + "authorized_access_point": "Syst\u00e8mes de recommandation (informatique)" + }, + { + "authorized_access_point": "Web usage mining" + } + ], + "broader": [ + { + "authorized_access_point": "Bases de donn\u00e9es - Interrogation" + } + ], + "variant_access_point": [ + "Data mining", + "Datamining", + "Exploration de donn\u00e9es (informatique)", + "Extraction de donn\u00e9es", + "Forage de donn\u00e9es", + "Fouille de donn\u00e9es", + "Fouille de texte", + "Prospection de donn\u00e9es", + "Text mining" + ], + "md5": "e6ebede047027fbbe1d37c91a33772ee" + }, + { + "type": "bf:Topic", + "authorized_access_point": "XML (langage de balisage)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "identifier": "http://www.idref.fr/035260521", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/035260521", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb131774360", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13177436" + } + ], + "pid": "035260521", + "related": [ + { + "authorized_access_point": "XQuery (langage de programmation)" + }, + { + "authorized_access_point": "Ressource Description Framework (informatique)" + }, + { + "authorized_access_point": "SOA" + }, + { + "authorized_access_point": "XUL (langage de balisage)" + }, + { + "authorized_access_point": "SVG (langage de balisage)" + }, + { + "authorized_access_point": "XSL (langage de balisage)" + }, + { + "authorized_access_point": "SOAP (protocole de r\u00e9seaux d'ordinateurs)" + }, + { + "authorized_access_point": "SGML (langage de balisage)" + }, + { + "authorized_access_point": "WML (langage de balisage)" + }, + { + "authorized_access_point": "XSLT (langage de programmation)" + } + ], + "narrower": [ + { + "authorized_access_point": "SCXML (langage de balisage)" + }, + { + "authorized_access_point": "ebXML (langage de balisage)" + }, + { + "authorized_access_point": "Atom (XML)" + } + ], + "broader": [ + { + "authorized_access_point": "Langages de balisage" + } + ], + "variant_access_point": [ + "Extendible Markup language (langage de balisage)", + "eXtensible Markup language (langage de balisage)", + "Langage de balisage extensible" + ], + "md5": "4f2ce6bae2621c25985fa430c37d2a48" + }, + { + "type": "bf:Topic", + "authorized_access_point": "T\u00e9l\u00e9phonie Internet", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "600", + "name": "Sciences appliqu\u00e9es" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "closeMatch": [ + { + "authorized_access_point": "T\u00e9l\u00e9phonie Internet", + "source": "RVMLaval" + }, + { + "authorized_access_point": "Internet telephony", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh98004350", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/035461152", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/035461152", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb131909421", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13190942" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "T\u00e9l\u00e9phonie Internet / F. Toutain [in] Techniques de l'ing\u00e9nieur,2000 ,TE7510", + "L'impact de la t\u00e9l\u00e9phonie Internet sur l'industrie des t\u00e9l\u00e9communications / C. Sajo, 1999 [th\u00e8se]", + "Voix sur IP : Internet, fixe et mobile : \u00e9tat de l'art, enjeux et perspectives / J. Pons [in] Techniques de l'ing\u00e9nieur, 2009, TE7532" + ] + } + ], + "pid": "035461152", + "related": [ + { + "authorized_access_point": "IMS (protocole de r\u00e9seaux d'ordinateurs)" + }, + { + "authorized_access_point": "Modems ADSL" + } + ], + "narrower": [ + { + "authorized_access_point": "SIP (protocole de r\u00e9seaux d'ordinateurs)" + } + ], + "broader": [ + { + "authorized_access_point": "Internet" + }, + { + "authorized_access_point": "T\u00e9l\u00e9phone" + } + ], + "variant_access_point": [ + "Cyberphone", + "T\u00e9l\u00e9phone Internet", + "Voix sur IP", + "T\u00e9l\u00e9phone par Internet", + "T\u00e9l\u00e9phone sur Internet", + "T\u00e9l\u00e9phonie IP", + "T\u00e9l\u00e9phonie par Internet", + "T\u00e9l\u00e9phonie sur Internet", + "T\u00e9l\u00e9phonie via Internet", + "Voice over IP", + "VOIP" + ], + "md5": "23ac7ad773d1588206e3cd89a3db92bb" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Pr\u00e9sidents - \u00c9tats-Unis - \u00c9lection (1948)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "320", + "name": "Science politique" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "950", + "name": "Histoire du reste du monde" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Presidents--United States--Election--1948", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2010106959", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/035486686", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/035486686", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13192308p", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13192308" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Quid 1998", + "Wikip\u00e9dia - http://fr.wikipedia.org (2008-04-09)" + ] + }, + { + "noteType": "general", + "label": [ + "\u00c9lection pr\u00e9sidentielle du 2 novembre 1948 : Harry S. Truman (d\u00e9mocrate) est \u00e9lu avec 49,6% des voix contre Thomas E. Dewey (r\u00e9publicain, 45,1%)" + ] + } + ], + "pid": "035486686", + "broader": [ + { + "authorized_access_point": "Pr\u00e9sidents - \u00c9tats-Unis - \u00c9lection" + } + ], + "md5": "857b06840f01baeea2e77846e81e797e" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Bataille d'Aboukir (1798)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "950", + "name": "Histoire du reste du monde" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Nile, Battle of the, Egypt, 1798", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85091947", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/035527250", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/035527250", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13194746t", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13194746" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Grand Larousse universel", + "Dict. encyclop\u00e9dique d'histoire / M. Mourre, 1996" + ] + }, + { + "noteType": "general", + "label": [ + "1er-2 ao\u00fbt 1798 : victoire de la flotte britannique (Nelson) sur la flotte fran\u00e7aise (Brueys d'Aigalliers, qui fut tu\u00e9) dans la baie d'Aboukir (\u00c9gypte)" + ] + } + ], + "pid": "035527250", + "broader": [ + { + "authorized_access_point": "Guerre de la deuxi\u00e8me coalition (1798-1801) - Op\u00e9rations militaires - \u00c9gypte" + } + ], + "variant_access_point": [ + "Aboukir, Bataille d' (1798)", + "1re bataille d'Aboukir (1798)", + "Nil, Bataille du (1798)", + "Premi\u00e8re bataille d'Aboukir (1798)" + ], + "md5": "1ebb31a84fb9dce56ff8840902fab49a" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Fonctionnement multit\u00e2che", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Fonctionnement multit\u00e2che", + "source": "RVMLaval" + }, + { + "authorized_access_point": "Multitasking (Computer science)", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh92001010", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/035621664", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/035621664", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13325133z", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13325133" + } + ], + "pid": "035621664", + "narrower": [ + { + "authorized_access_point": "Programmation concurrente" + } + ], + "broader": [ + { + "authorized_access_point": "Informatique" + } + ], + "variant_access_point": [ + "Multit\u00e2che, Fonctionnement", + "Traitement multit\u00e2che" + ], + "md5": "7918188bf30fc5ea5e5812984941ff3e" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Independence Day (f\u00eate nationale am\u00e9ricaine)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "320", + "name": "Sciences politiques" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "390", + "name": "Ethnologie, anthropologie, folklore" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Fourth of July celebrations", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85051103", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/035634847", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/035634847", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13325977s", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13325977" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Grand Larousse universel", + "Dict. encyclop\u00e9dique d'histoire / M. Mourre, 1986", + "Holidays and festivals index / H. Henderson, B. Puckett, 1995", + "Celebrating the fourth : Independence Day and the rites of Nationalism in the Early Republic / L. Travers, 1997" + ] + }, + { + "noteType": "general", + "label": [ + "F\u00eate nationale des \u00c9tats-Unis (4 juillet) comm\u00e9morant la D\u00e9claration d'Ind\u00e9pendance (1776)" + ] + } + ], + "pid": "035634847", + "broader": [ + { + "authorized_access_point": "F\u00eates - Etats-Unis" + }, + { + "authorized_access_point": "F\u00eates nationales" + } + ], + "variant_access_point": [ + "4 juillet (f\u00eate nationale am\u00e9ricaine)", + "Anniversaire de l'Ind\u00e9pendance am\u00e9ricaine", + "F\u00eate de l'Ind\u00e9pendance am\u00e9ricaine", + "F\u00eate nationale am\u00e9ricaine", + "Fourth of July (f\u00eate nationale am\u00e9ricaine)", + "Jour de l'ind\u00e9pendance (f\u00eate nationale am\u00e9ricaine)", + "July 4th (f\u00eate nationale am\u00e9ricaine)", + "Quatre juillet (f\u00eate nationale am\u00e9ricaine)" + ], + "md5": "6d2e63c685e0bf3ba1fed36cbfc19ee7" + }, + { + "type": "bf:Topic", + "authorized_access_point": "XFree86 (syst\u00e8me informatique)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "identifier": "http://www.idref.fr/035650532", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/035650532", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb133270366", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13327036" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Linux et XFree86 / E. Georgescu, 1997" + ] + }, + { + "noteType": "dataNotFound", + "label": [ + "LCSH (en ligne), 1998-09-03" + ] + } + ], + "pid": "035650532", + "broader": [ + { + "authorized_access_point": "X Window System (syst\u00e8me informatique)" + }, + { + "authorized_access_point": "Linux (logiciels)" + } + ], + "variant_access_point": [ + "XFree 86 (syst\u00e8me informatique)" + ], + "md5": "9f1ad4f1d095d19981e2dcf5fd148fcd" + }, + { + "type": "bf:Topic", + "authorized_access_point": "G\u00e9om\u00e9trie - Didacticiels", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "370", + "name": "Education et enseignement" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "510", + "name": "Math\u00e9matiques" + } + ], + "identifier": "http://www.idref.fr/035658622", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/035658622", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13327542h", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13327542" + } + ], + "note": [ + { + "noteType": "dataNotFound", + "label": [ + "LCSH (en ligne), 1998-09-07" + ] + } + ], + "pid": "035658622", + "broader": [ + { + "authorized_access_point": "Didacticiels" + } + ], + "variant_access_point": [ + "G\u00e9om\u00e9trie - \u00c9tude et enseignement -- Logiciels" + ], + "md5": "1243ec663fdfc3f307b23269caf0b659" + }, + { + "type": "bf:Topic", + "authorized_access_point": "PalmPilot (ordinateur)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "identifier": "http://www.idref.fr/035724099", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/035724099", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13332134s", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13332134" + } + ], + "pid": "035724099", + "related": [ + { + "authorized_access_point": "Palm (ordinateur)" + } + ], + "broader": [ + { + "authorized_access_point": "Ordinateurs de poche" + } + ], + "md5": "71c5ce28cf1b80ac4570ab05d2317927" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Petite \u00c9glise", + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "authorized_access_point": "Louisets", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85078480", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/050124315", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/050124315", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12650661c", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12650661" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GLU", + "Mourre" + ] + }, + { + "noteType": "general", + "label": [ + "Nom donn\u00e9 \u00e0 un schisme qui se produisit dans l'ouest de la France au moment du Concordat de 1801 : l'une des clauses du Concordat \u00e9tait la d\u00e9mission de tous les \u00e9v\u00eaques de l'ancienne \u00c9glise de France ; les \u00e9v\u00eaques non d\u00e9missionnaires regroup\u00e8rent autour d'eux les communaut\u00e9s catholiques anti-concordataires qui donn\u00e8rent naissance \u00e0 la Petite \u00c9glise" + ] + } + ], + "pid": "050124315", + "broader": [ + { + "authorized_access_point": "\u00c9glise catholique - France" + } + ], + "md5": "5223b85097db81c754c6b51a244e293e" + }, + { + "type": "bf:Topic", + "authorized_access_point": "DOS, Pilotes de p\u00e9riph\u00e9rique pour (logiciels)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "closeMatch": [ + { + "authorized_access_point": "DOS, Pilotes de p\u00e9riph\u00e9rique pour (logiciels)", + "source": "RVMLaval" + }, + { + "authorized_access_point": "DOS device drivers (Computer programs)", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh90004446", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/050186647", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/050186647", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb133408511", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13340851" + } + ], + "pid": "050186647", + "broader": [ + { + "authorized_access_point": "Pilotes de p\u00e9riph\u00e9rique (logiciels)" + } + ], + "variant_access_point": [ + "Pilotes de p\u00e9riph\u00e9rique pour DOS (logiciels)" + ], + "md5": "4796bcef17094d2abbedc2a1b45f5031" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Active Server Pages", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "identifier": "http://www.idref.fr/050220284", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/050220284", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13506900c", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13506900" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "LCNA (en ligne) 2004-09-20 : Active server pages" + ] + } + ], + "pid": "050220284", + "related": [ + { + "authorized_access_point": "ASP.NET (langage de programmation)" + } + ], + "broader": [ + { + "authorized_access_point": "Microsoft Windows DNA" + }, + { + "authorized_access_point": "Serveurs Web" + }, + { + "authorized_access_point": "Sites Web - Syst\u00e8mes-auteur" + } + ], + "variant_access_point": [ + "ASP", + "Microsoft Active Server Pages" + ], + "md5": "6d46055fe2c5840e8d790c0fdd0af397" + }, + { + "type": "bf:Topic", + "authorized_access_point": "\u00c9glise et \u00c9tat - France - 1905-....", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "200", + "name": "Religion" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "320", + "name": "Science politique" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Church and state--France--History--20th century", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2009119658", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/050366157", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/050366157", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13511352z", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13511352" + } + ], + "pid": "050366157", + "narrower": [ + { + "authorized_access_point": "S\u00e9paration des \u00c9glises et de l'\u00c9tat (France ; 1905-1906)" + } + ], + "broader": [ + { + "authorized_access_point": "\u00c9glise et \u00c9tat - France - Histoire" + } + ], + "variant_access_point": [ + "\u00c9glise et \u00c9tat - France - 20e si\u00e8cle" + ], + "md5": "2d655bbfedb85524dc0a86bd30c28261" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Duplice (1879)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "940", + "name": "Histoire de l'Europe" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Dual Alliance, 1879", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85039839", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/05041870X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/05041870X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13512801p", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13512801" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Grand Larousse universel", + "Dict. encyclop\u00e9dique d'histoire / M. Mourre, 1996" + ] + }, + { + "noteType": "general", + "label": [ + "7 octobre 1879 : alliance conclue \u00e0 Vienne entre l'Allemagne et l'Autriche-Hongrie" + ] + } + ], + "pid": "05041870X", + "broader": [ + { + "authorized_access_point": "Relations ext\u00e9rieures - Autriche-Hongrie" + } + ], + "variant_access_point": [ + "Alliance, Double (1879)", + "Double Alliance (1879)", + "Zweibund (1879)" + ], + "md5": "73d3d775d80f9bf4b3ecfa982d6cf1d4" + }, + { + "type": "bf:Topic", + "authorized_access_point": "G\u00e9n\u00e9alogie - Logiciels", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "900", + "name": "Histoire" + } + ], + "identifier": "http://www.idref.fr/050516760", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/050516760", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13533849b", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13533849" + } + ], + "pid": "050516760", + "md5": "717d08e8eea525215b8f442c0cdfed17" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Exode de Mariel (1980)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "950", + "name": "Histoire du reste du monde" + } + ], + "identifier": "http://www.idref.fr/050518526", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/050518526", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb135340392", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13534039" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Encycl. universalis (art. : Arenas, Reinaldo (1943-1990)) - http://www.universalis.fr (2017-06-08)", + "Wikip\u00e9dia - http://fr.wikipedia.org (2017-06-08)", + "Castro, l'infid\u00e8le / S. Raffy, 2003 (p. 499-501)", + "La g\u00e9n\u00e9ration des Cubains de Mariel et leur presse litt\u00e9raire aux \u00c9tats-Unis / L. Hasson [in] America : cahiers du Criccal, 1986, 1 (p. 117-130)", + "L'Am\u00e9rique latine de 1945 \u00e0 nos jours / P. Riado, 1992 (p. 378-379) : exode des Marielitos", + "Les quatre saisons de Fidel Castro / J.-P. Clerc, 1996 (p. 301-302) : \"crise de Mariel", + "Encycl. of Latin American history and culture / J. Kinsbrunner, 2008 (art. : Cuba : since 1959) : Mariel boatlift" + ] + }, + { + "noteType": "general", + "label": [ + "15 avril-31 octobre 1980 : \u00e0 la suite d'un afflux massif de r\u00e9fugi\u00e9s cubains \u00e0 l'ambassade du P\u00e9rou \u00e0 La Havane, 125.000 Cubains (\"Marielitos\") sont autoris\u00e9s \u00e0 \u00e9migrer en Floride par le port de Mariel" + ] + } + ], + "pid": "050518526", + "broader": [ + { + "authorized_access_point": "Cuba - 1959-...." + }, + { + "authorized_access_point": "\u00c9tats-Unis - 1969-1981" + } + ], + "variant_access_point": [ + "Affaire de Mariel (1980)", + "Crise de Mariel (1980)", + "Exode des Marielitos (1980)", + "Mariel, Exode de (1980)", + "Marielitos, Exode des (1980)" + ], + "md5": "827e57111ebb52fbf4e7f14bd7a6bcd1" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Lamdr\u00e9", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "200", + "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Lam-\u02bebras (Sa-skya-pa)", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh 85074158", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/050534882", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/050534882", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb135355715", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13535571" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikip\u00e9dia - https://fr.wikipedia.org (2017-10-20)", + "Dict. encyclop\u00e9dique du bouddhisme / P. Cornu, 2001", + "Dict. de la sagesse orientale : bouddhisme, hindouisme, tao\u00efsme, zen, 1989 : Lamdre", + "The Sakya School of Tibetan Buddhism / Dhongthog Rinpoche, 2016 : Lamdre", + "BNF Service indien" + ] + }, + { + "noteType": "general", + "label": [ + "Litt\u00e9ralement : \"Voie, but\". Doctrine du bouddhisme Vajray\u0101na, fond\u00e9e par Vir\u016bpa et transmise par l'\u00e9cole Sa-skya-pa" + ] + } + ], + "pid": "050534882", + "related": [ + { + "authorized_access_point": "Sa-skya-pa" + } + ], + "broader": [ + { + "authorized_access_point": "Bouddhisme - Doctrines" + } + ], + "variant_access_point": [ + "Lam-'bras", + "Lam Dre", + "Lamdre" + ], + "md5": "436626028cd2823885abf351611542c0" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Exp\u00e9dition de Kearny (1845)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "915", + "name": "G\u00e9ographie du reste du monde" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "950", + "name": "Histoire du reste du monde" + } + ], + "identifier": "http://www.idref.fr/05056479X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/05056479X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12649132c", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12649132" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "The Oregon Trail / F. Parkman, 1994 (p. 458)", + "Kearny's Plains Reconnaissance, 1845 - http://www.topogs.org/Kearny.htm (2017-06-16)" + ] + }, + { + "noteType": "general", + "label": [ + "Exp\u00e9dition command\u00e9e par le colonel Stephen W. Kearny le long de l'Oregon Trail jusqu'\u00e0 South Pass (Wyo.), qui obtint des Sioux une garantie de passage pour les immigrants vers l'Oregon, et cartographia la r\u00e9gion" + ] + } + ], + "pid": "05056479X", + "related": [ + { + "authorized_access_point": "Oregon Trail (\u00c9tats-Unis)" + } + ], + "broader": [ + { + "authorized_access_point": "\u00c9tats-Unis (ouest) - Jusqu'\u00e0 1848" + } + ], + "variant_access_point": [ + "Kearny, Exp\u00e9dition de (1845)" + ], + "md5": "eac1c00a396a0b40e99551349cb9e3f2" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Sinologues", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "300", + "name": "Sciences sociales" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "950", + "name": "Histoire du reste du monde" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Sinologists", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85122928", + "source": "LCSH" + } + ] + }, + { + "authorized_access_point": "Sinologues", + "source": "RVMLaval" + } + ], + "identifier": "http://www.idref.fr/050582453", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/050582453", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12650586f", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12650586" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Grand Larousse universel", + "Petit Robert 1" + ] + } + ], + "pid": "050582453", + "broader": [ + { + "authorized_access_point": "Orientalistes" + } + ], + "variant_access_point": [ + "Sinisants", + "Sp\u00e9cialistes de la Chine" + ], + "md5": "e97728113613d9231b4078cda577c812" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Mythologie japonaise", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "200", + "name": "Religion" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Mythology, Japanese", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85089404", + "source": "LCSH" + } + ] + }, + { + "authorized_access_point": "Mythologie japonaise", + "source": "RVMLaval" + } + ], + "identifier": "http://www.idref.fr/050602195", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/050602195", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12652113m", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12652113" + } + ], + "pid": "050602195", + "broader": [ + { + "authorized_access_point": "Civilisation - Japon" + }, + { + "authorized_access_point": "Mythologie d'Asie orientale" + } + ], + "narrower": [ + { + "authorized_access_point": "Dieux japonais" + }, + { + "authorized_access_point": "Tengu (mythologie)" + }, + { + "authorized_access_point": "Y\u014dkai" + } + ], + "md5": "76aee98e6f1f40ffa5edfb00f38aa2ba" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Propagande sovi\u00e9tique", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "320", + "name": "Science politique" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Propaganda, Soviet", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh89002047", + "source": "LCSH" + } + ] + }, + { + "authorized_access_point": "Propagande sovi\u00e9tique", + "source": "RVMLaval" + } + ], + "identifier": "http://www.idref.fr/050627953", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/050627953", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12654249c", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12654249" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Propagande de la Russie sovi\u00e9tique, puis de l'URSS (1917-1991)" + ] + } + ], + "pid": "050627953", + "related": [ + { + "authorized_access_point": "Politique et gouvernement - URSS" + } + ], + "md5": "2ffa8fa1727c2b0626ec063dbf49bc8a" + }, + { + "type": "bf:Topic", + "authorized_access_point": "M\u00e9thodes formelles (informatique)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "closeMatch": [ + { + "authorized_access_point": "M\u00e9thodes formelles (informatique)", + "source": "RVMLaval" + }, + { + "authorized_access_point": "Formal methods (Computer science)", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh99003622", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/050702858", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/050702858", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13539618z", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13539618" + } + ], + "pid": "050702858", + "related": [ + { + "authorized_access_point": "Logiciels - D\u00e9veloppement" + } + ], + "narrower": [ + { + "authorized_access_point": "AltaRica (m\u00e9thode formelle)" + }, + { + "authorized_access_point": "B (m\u00e9thode formelle)" + }, + { + "authorized_access_point": "Z (m\u00e9thode formelle)" + } + ], + "broader": [ + { + "authorized_access_point": "Syst\u00e8mes, Conception de" + } + ], + "md5": "1301cb208e2b12da1c5ea4371c2d70a7" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Microsoft Windows DNA", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "identifier": "http://www.idref.fr/050764861", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/050764861", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13544731f", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13544731" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Programmation MTS et MSMQ avec Visual Basic et ASP / Alex Homer..., 1999" + ] + }, + { + "noteType": "dataNotFound", + "label": [ + "LCNA (en ligne), 2000-03-01" + ] + } + ], + "pid": "050764861", + "narrower": [ + { + "authorized_access_point": "Active Server Pages" + }, + { + "authorized_access_point": "COM (architecture des ordinateurs)" + } + ], + "broader": [ + { + "authorized_access_point": "Sites Web - Syst\u00e8mes-auteur" + } + ], + "variant_access_point": [ + "DNA", + "Windows DNA" + ], + "md5": "78a69b24d67ccbefb8c1aad116f180de" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Linux (logiciels)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "identifier": "http://www.idref.fr/050773313", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/050773313", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb135454237", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13545423" + } + ], + "note": [ + { + "noteType": "dataNotFound", + "label": [ + "LCSH (en ligne), 2000-03-08" + ] + } + ], + "pid": "050773313", + "narrower": [ + { + "authorized_access_point": "Linux, Pilotes de p\u00e9riph\u00e9rique pour (logiciels)" + }, + { + "authorized_access_point": "XFree86 (syst\u00e8me informatique)" + } + ], + "md5": "fa41cb32742c813327e716e7c1fcc195" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Conflit isra\u00e9lo-arabe - 1993-.... - Paix", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "950", + "name": "Histoire du reste du monde" + } + ], + "identifier": "http://www.idref.fr/050784005", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/050784005", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13546289v", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13546289" + } + ], + "pid": "050784005", + "variant_access_point": [ + "Conflit isra\u00e9lo-arabe - Processus de paix (1993-....)", + "Oslo, Processus d' (1993-....)", + "Processus d'Oslo (1993-....)", + "Processus de paix isra\u00e9lo-arabe", + "Processus de paix isra\u00e9lo-palestinien" + ], + "md5": "7cfde81a1dc0d00074a4e8f43fe583b6" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Circuits int\u00e9gr\u00e9s - Conception assist\u00e9e par ordinateur", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "600", + "name": "Sciences appliqu\u00e9es" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Circuits int\u00e9gr\u00e9s -- Conception assist\u00e9e par ordinateur", + "source": "RVMLaval" + }, + { + "authorized_access_point": "Integrated circuits--Design and construction", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85067118", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/050808583", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/050808583", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb135547638", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13554763" + } + ], + "pid": "050808583", + "related": [ + { + "authorized_access_point": "Compilateurs de silicium" + } + ], + "narrower": [ + { + "authorized_access_point": "Synth\u00e8se de haut niveau (informatique)" + } + ], + "variant_access_point": [ + "CAO \u00e9lectronique", + "EDA" + ], + "md5": "351479d16fa3d8981640d24031b4840c" + }, + { + "type": "bf:Topic", + "authorized_access_point": "PDF (format)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "identifier": "http://www.idref.fr/050827405", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/050827405", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb135554928", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13555492" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. des syst\u00e8mes d'information / Robert Reix, 1999", + "Grand dict. Marabout de l'informatique et de l'Internet / Virga, 1996" + ] + }, + { + "noteType": "dataNotFound", + "label": [ + "Laval RVM (en ligne), 2000-04-27" + ] + } + ], + "pid": "050827405", + "related": [ + { + "authorized_access_point": "Adobe Acrobat (logiciels)" + } + ], + "broader": [ + { + "authorized_access_point": "Fichiers (informatique) - Organisation" + } + ], + "variant_access_point": [ + "Portable Document Format" + ], + "md5": "bd795103ead127a581f07189490ad551" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Qt (logiciels)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "identifier": "http://www.idref.fr/052587207", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/052587207", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13566350h", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13566350" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Programmer avec Qt / Matthias Kalle Dalheimer, 2000" + ] + }, + { + "noteType": "dataNotFound", + "label": [ + "LCNA (en ligne), 2000-08-16" + ] + } + ], + "pid": "052587207", + "related": [ + { + "authorized_access_point": "Interfaces graphiques (informatique)" + } + ], + "md5": "4e724bf9954ffd6551a95ca2e2812868" + }, + { + "type": "bf:Topic", + "authorized_access_point": "GTK+", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "identifier": "http://www.idref.fr/052634833", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/052634833", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb135705577", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13570557" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Programmation Linux avec GTK+.../ David Odin, 2000" + ] + }, + { + "noteType": "dataNotFound", + "label": [ + "LCNA (en ligne), 2000-09-27" + ] + } + ], + "pid": "052634833", + "related": [ + { + "authorized_access_point": "GNOME" + } + ], + "broader": [ + { + "authorized_access_point": "Interfaces graphiques (informatique)" + } + ], + "variant_access_point": [ + "Gimp Toolkit" + ], + "md5": "1221183d12114a0be4407c8085536406" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Logiciels - V\u00e9rification", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Logiciels -- V\u00e9rification", + "source": "RVMLaval" + }, + { + "authorized_access_point": "Computer programs--Verification", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85029528", + "source": "LCSH" + } + ] + }, + { + "authorized_access_point": "Computer software--Verification", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85029537", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/053469844", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/053469844", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb135762613", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13576261" + } + ], + "pid": "053469844", + "related": [ + { + "authorized_access_point": "CEGAR (algorithme)" + }, + { + "authorized_access_point": "Logiciels - Exactitude" + }, + { + "authorized_access_point": "Logiciels - Essais" + }, + { + "authorized_access_point": "Logiciels - Validation" + } + ], + "narrower": [ + { + "authorized_access_point": "V\u00e9rification de mod\u00e8les (informatique)" + }, + { + "authorized_access_point": "Filtres (informatique)" + } + ], + "variant_access_point": [ + "Analyse dynamique (informatique)", + "Analyse statique (informatique)", + "Comparaisons des donn\u00e9es", + "Logiciels - Analyse statique", + "Logiciels - Analyse dynamique", + "V\u00e9rification des logiciels" + ], + "md5": "d24ce76d771dacfa2c4fe19e57938d19" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Jarkov (mammouth)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "560", + "name": "Pal\u00e9ontologie" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "590", + "name": "Zoologie" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Jarkov mammoth", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2002005766", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/055308600", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/055308600", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb136060769", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13606076" + } + ], + "pid": "055308600", + "related": [ + { + "authorized_access_point": "Mammouth laineux" + } + ], + "broader": [ + { + "authorized_access_point": "Animaux c\u00e9l\u00e8bres" + } + ], + "variant_access_point": [ + "Jarkov, Mammouth", + "Mammouth Jarkov" + ], + "md5": "83e67ee95a59ba68ce4a9b1d9df0d62c" + }, + { + "type": "bf:Topic", + "authorized_access_point": "H\u00e9bergement Web", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "closeMatch": [ + { + "authorized_access_point": "H\u00e9bergement Web", + "source": "RVMLaval" + }, + { + "authorized_access_point": "Web hosting", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2002010032", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/059302208", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/059302208", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13623447h", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13623447" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Grand dict. terminologique (en ligne), 2001-07-10" + ] + }, + { + "noteType": "dataNotFound", + "label": [ + "Grand dict. Marabout de l'informatique et de l'Internet / Virga, 1997 (Art : H\u00e9bergement de serveur)" + ] + } + ], + "pid": "059302208", + "related": [ + { + "authorized_access_point": "Fournisseurs de services Internet" + }, + { + "authorized_access_point": "Sites Web" + } + ], + "variant_access_point": [ + "H\u00e9bergement (informatique)", + "H\u00e9bergement de pages Web", + "H\u00e9bergement de serveur", + "H\u00e9bergement de sites Web", + "H\u00e9bergement Internet", + "Sites Web - H\u00e9bergement" + ], + "md5": "8e7fa4289a311bf472a742805f5da222" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Art - France - 19e si\u00e8cle", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "700", + "name": "Arts (sauf litt\u00e9rature)" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Art, French--19th century", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85007804", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/05930278X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/05930278X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13738221v", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13738221" + } + ], + "pid": "05930278X", + "narrower": [ + { + "authorized_access_point": "Art pompier" + }, + { + "authorized_access_point": "Arts incoh\u00e9rents (mouvement artistique)" + }, + { + "authorized_access_point": "C\u00e9nacles romantiques" + }, + { + "authorized_access_point": "Peinture - France - 19e si\u00e8cle" + }, + { + "authorized_access_point": "R\u00e9alisme (mouvement artistique)" + } + ], + "broader": [ + { + "authorized_access_point": "Art - France" + } + ], + "md5": "9a43ec63caf93ee1835b3d36eaba0b77" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Rois et souverains - G\u00e9orgie", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "950" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Georgia (Republic)--Kings and rulers", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh96007489", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/059307374", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/059307374", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13744704w", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13744704" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Rois et souverains -- G\u00e9orgie (R\u00e9publique) ; Laval RVM, 2001-01" + ] + } + ], + "pid": "059307374", + "md5": "d4e1fea0de64469df29888b0cbed02ab" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Microsoft .NET Framework (plate-forme informatique)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "identifier": "http://www.idref.fr/06082929X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/06082929X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb14410737w", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF14410737" + } + ], + "pid": "06082929X", + "related": [ + { + "authorized_access_point": "Xamarin (plate-forme informatique)" + }, + { + "authorized_access_point": "Microsoft Windows PowerShell (langage de programmation)" + }, + { + "authorized_access_point": "VB .NET (langage de programmation)" + } + ], + "narrower": [ + { + "authorized_access_point": "Microsoft Entity Framework Core (plate-forme informatique)" + }, + { + "authorized_access_point": "Common Language Runtime (informatique)" + }, + { + "authorized_access_point": "Microsoft Windows Presentation Foundation (plate-forme informatique)" + }, + { + "authorized_access_point": "Microsoft Windows Workflow Foundation (plate-forme informatique)" + }, + { + "authorized_access_point": "Microsoft Windows Communication Foundation (plate-forme informatique)" + }, + { + "authorized_access_point": "ASP.NET (langage de programmation)" + } + ], + "broader": [ + { + "authorized_access_point": "Microsoft .NET" + }, + { + "authorized_access_point": "Sites Web - D\u00e9veloppement" + } + ], + "variant_access_point": [ + ".NET (plate-forme informatique)", + ".NET Framework", + "Microsoft .NET (plate-forme informatique)", + "Microsoft .NET Framework", + "Microsoft.NET Framework" + ], + "md5": "3864edcf501ccfa8225b02f0ebdeae79" + }, + { + "type": "bf:Topic", + "authorized_access_point": "L\u00e9gende noire (Histoire de l'Espagne)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "300", + "name": "Sciences sociales" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "940", + "name": "Histoire de l'Europe" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Black Legend (Spanish history)", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh93007281", + "source": "LCSH" + } + ] + }, + { + "authorized_access_point": "L\u00e9gende noire (Histoire espagnole)", + "source": "RVMLaval" + } + ], + "identifier": "http://www.idref.fr/06160738X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/06160738X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13749265x", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13749265" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikip\u00e9dia : l\u00e9gende noire espagnole - https://fr.wikipedia.org (2017-10-20)", + "Encycl. universalis (art. : Las Casas, Barthom\u00e9 de (1474-1566)) : l\u00e9gende noire antihispanique - http://www.universalis-edu.com (2017-10-20)", + "Hist. de l'Espagne / P. Noury, 2013 (p. 207)", + "Les Am\u00e9riques. T1, Du Pr\u00e9colombien \u00e0 1830, 2016", + "Civilisation espagnole / M. Jullian, 2010", + "Dict. culturel de l'Espagne / J.-P. Duviols, J. Soriano, 2006", + "L'Espagne de 1492 \u00e0 1808 / J.-P. Dedieu, 2005", + "La l\u00e9gende noire de l'Espagne / J. P\u00e9rez, 2009", + "Dicc. de hist. de Espa\u00f1a / C. Ferrera Cuestra, 2005 : leyenda negra" + ] + }, + { + "noteType": "general", + "label": [ + "Jugement n\u00e9gatif port\u00e9 \u00e0 l'\u00e9tranger sur la civilisation espagnole, son expansion et son influence dans le monde, particuli\u00e8rement en Am\u00e9rique. Il condamne le massacre des Am\u00e9rindiens, d\u00e9nonc\u00e9 par Bartolom\u00e9 de las Casas dans sa \"Brev\u00edsima Relaci\u00f3n de la Destrucci\u00f3n de las Indias\", ainsi que les erreurs et les crimes de la vie priv\u00e9e et politique de Philippe II" + ] + } + ], + "pid": "06160738X", + "related": [ + { + "authorized_access_point": "Colonies espagnoles" + } + ], + "broader": [ + { + "authorized_access_point": "Espagne - Histoire" + } + ], + "variant_access_point": [ + "L\u00e9gende noire antihispanique", + "L\u00e9gende noire de l'Espagne", + "L\u00e9gende noire espagnole", + "Leyenda negra (Histoire d'Espagne)", + "Leyenda negra espa\u00f1ola", + "Leyenda negra hispanoamericana" + ], + "md5": "d838ce24f4763ba2328d2a586828123f" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Mythologie javanaise", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "200", + "name": "Religion" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Mythology, Javanese", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh93005942", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/075000504", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/075000504", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15105630t", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF15105630" + } + ], + "pid": "075000504", + "broader": [ + { + "authorized_access_point": "Mythologie indon\u00e9sienne" + } + ], + "md5": "dc370117198a2b0071f2c6d4662f6c43" + }, + { + "type": "bf:Topic", + "authorized_access_point": "March\u00e9s \u00e0 forfait", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "340", + "name": "Droit" + } + ], + "closeMatch": [ + { + "authorized_access_point": "March\u00e9s \u00e0 forfait", + "source": "RVMLaval" + } + ], + "identifier": "http://www.idref.fr/077057589", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/077057589", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb14408398q", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF14408398" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Vocab. juridique / G. Cornu, 2001" + ] + }, + { + "noteType": "general", + "label": [ + "March\u00e9s de travaux, priv\u00e9s ou publics, dans lesquels le prix d'ensemble de l'ouvrage est d\u00e9termin\u00e9 ou fix\u00e9 de fa\u00e7on d\u00e9finitive entre le ma\u00eetre d'ouvrage et l'entrepreneur" + ] + } + ], + "pid": "077057589", + "related": [ + { + "authorized_access_point": "Contrats \u00e0 long terme" + }, + { + "authorized_access_point": "March\u00e9s publics - Prix" + } + ], + "broader": [ + { + "authorized_access_point": "Contrats d'entreprise" + }, + { + "authorized_access_point": "March\u00e9s de travaux publics" + }, + { + "authorized_access_point": "Prix - Fixation" + } + ], + "variant_access_point": [ + "Contrats \u00e0 prix forfaitaire", + "March\u00e9s de travaux \u00e0 prix forfaitaire" + ], + "md5": "e1d840b58e33723297c84d4f8fa71ea1" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Pierrot gourmand (confiserie)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "640", + "name": "Economie domestique, h\u00f4tellerie" + } + ], + "identifier": "http://www.idref.fr/077060377", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/077060377", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb144197717", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF14419771" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Pierrot gourmand : un si\u00e8cle de cr\u00e9ation sucr\u00e9e / A. Besson, 2002", + "Bases de donn\u00e9es Marques - https://bases-marques.inpi.fr (2016-12-19)" + ] + }, + { + "noteType": "general", + "label": [ + "Pierrot gourmand est une appellation commerciale" + ] + } + ], + "pid": "077060377", + "broader": [ + { + "authorized_access_point": "Confiserie" + } + ], + "variant_access_point": [ + "P\u00e9g\u00e9 (confiserie)", + "Pierrot gourmand (marque d\u00e9pos\u00e9e)", + "Confiseries Pierrot gourmand" + ], + "md5": "66b0a4a33028fa699d529cb86b419866" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Crise de Berlin (1958-1961)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "320", + "name": "Science politique" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "940", + "name": "Histoire de l'Europe" + } + ], + "identifier": "http://www.idref.fr/077062809", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/077062809", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb14430123z", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF14430123" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GLU", + "Mourre", + "Brockhaus, 19. Aufl", + "Berlinkrise <1958> ; Berlinkrise <1961> ; SWD, 1995-04" + ] + }, + { + "noteType": "general", + "label": [ + "Crise d\u00e9clench\u00e9e en 1958 par la volont\u00e9 de l'URSS de revoir le statut de Berlin, qui se r\u00e9solut en 1961 par la construction du Mur (13 ao\u00fbt) qui gela le statu quo" + ] + } + ], + "pid": "077062809", + "broader": [ + { + "authorized_access_point": "Relations ext\u00e9rieures - URSS - 1953-1975" + }, + { + "authorized_access_point": "Statut international - Berlin (Allemagne)" + }, + { + "authorized_access_point": "Guerre froide" + }, + { + "authorized_access_point": "Allemagne - 1945-1990" + } + ], + "related": [ + { + "authorized_access_point": "Berlin (Allemagne) - Berliner Mauer" + } + ], + "variant_access_point": [ + "Berlin, Crise de (1958-1961)", + "Mur de Berlin, Construction du (1961)" + ], + "md5": "5740772322bb7664a4afcbe3df79d56d" + }, + { + "type": "bf:Topic", + "authorized_access_point": "SVG (langage de balisage)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "identifier": "http://www.idref.fr/077075757", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/077075757", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb14487634q", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF14487634" + } + ], + "pid": "077075757", + "related": [ + { + "authorized_access_point": "D3.js (informatique)" + }, + { + "authorized_access_point": "XML (langage de balisage)" + } + ], + "broader": [ + { + "authorized_access_point": "Langages de balisage" + } + ], + "variant_access_point": [ + "Langage graphique vectoriel (langage de balisage)", + "Scalable Vector Graphics (langage de balisage)" + ], + "md5": "7845fa35b4ecd8cb147a8588b459b026" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Analyse de contenu (communication) - Logiciels", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "300", + "name": "Sciences sociales" + } + ], + "identifier": "http://www.idref.fr/077088883", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/077088883", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb14498699r", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF14498699" + } + ], + "note": [ + { + "noteType": "dataNotFound", + "label": [ + "Laval RVM (en ligne), 2005-05-09" + ] + } + ], + "pid": "077088883", + "broader": [ + { + "authorized_access_point": "Logiciels" + } + ], + "md5": "28b99a95d0d36675e7fc51cf48260f4a" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Son - Enregistrement et reproduction - Techniques num\u00e9riques - Logiciels", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "791", + "name": "Audiovisuel" + } + ], + "identifier": "http://www.idref.fr/077091035", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/077091035", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb14513380t", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF14513380" + } + ], + "pid": "077091035", + "md5": "f5217de6eb19b26e893dfc11b9e28139" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Piazza Fontana, Attentat de la (1969)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "320", + "name": "Science politique" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "940", + "name": "Histoire de l'Europe" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Piazza Fontana Bombing, Milan, Italy, 1969", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2002002032", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/077397827", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/077397827", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb14555186n", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF14555186" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Quid 1996", + "Wikipedia - http://fr.wikipedia.org (2007-06-21)" + ] + }, + { + "noteType": "general", + "label": [ + "Le 12 d\u00e9cembre 1969 une bombe explose dans le hall de la Banque de l'Agriculture, Piazza Fontana \u00e0 Milan, faisant 16 morts et 107 bless\u00e9s. La responsabilit\u00e9 de cet attentat n'a pas \u00e9t\u00e9 officiellement \u00e9tablie" + ] + } + ], + "pid": "077397827", + "broader": [ + { + "authorized_access_point": "Attentats - Italie" + }, + { + "authorized_access_point": "Milan (Italie) - 1945-" + } + ], + "relation_pid": { + "value": "080489095", + "type": "redirect_from" + }, + "variant_access_point": [ + "Milan, Attentat de (1969)" + ], + "md5": "ad1d23bc51d1730cfe89516c7187ba98" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Juifs de cour", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "330", + "name": "\u00c9conomie politique" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "390", + "name": "Ethnologie" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "940", + "name": "Histoire de l'Europe" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Court Jews", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85033553", + "source": "LCSH" + } + ] + }, + { + "authorized_access_point": "Juifs de cour", + "source": "RVMLaval" + } + ], + "identifier": "http://www.idref.fr/077937007", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/077937007", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb14508891v", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF14508891" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Une hist. des Juifs / P. Johnson, 1989 (pp. 278-281)", + "Dict. du juda\u00efsme : histoire, mythes et traditions / A. Unterman, 1997" + ] + }, + { + "noteType": "general", + "label": [ + "N\u00e9gociants, banquiers et fournisseurs juifs au service des rois et souverains de l'Europe centrale aux 17e et 18e si\u00e8cles" + ] + } + ], + "pid": "077937007", + "broader": [ + { + "authorized_access_point": "Conditions \u00e9conomiques - Europe - 18e si\u00e8cle" + }, + { + "authorized_access_point": "Cour et courtisans" + }, + { + "authorized_access_point": "Hommes d'affaires juifs" + } + ], + "variant_access_point": [ + "Cour, Juifs de", + "Hofjuden" + ], + "md5": "41b0df7154cae2706cb303022c135b56" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Syst\u00e8mes de gestion de contenu Web", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "020", + "name": "Sciences de l'information" + } + ], + "identifier": "http://www.idref.fr/078974089", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/078974089", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb145496336", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF14549633" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Syst\u00e8me int\u00e9gr\u00e9 et multiplate-forme permettant aux entreprises et aux organisations de g\u00e9rer rapidement et facilement le contenu dynamique et r\u00e9dactionnel d'un site Web" + ] + } + ], + "pid": "078974089", + "related": [ + { + "authorized_access_point": "ECM (gestion)" + }, + { + "authorized_access_point": "Sites Web - Syst\u00e8mes-auteur" + } + ], + "narrower": [ + { + "authorized_access_point": "Portfolios \u00e9lectroniques" + }, + { + "authorized_access_point": "Plateformes d'apprentissage en ligne" + } + ], + "broader": [ + { + "authorized_access_point": "Sites Web - Gestion" + } + ], + "variant_access_point": [ + "Sites Web - Gestion - Logiciels", + "CMS (Web)", + "Content management systems", + "SGC (Web)" + ], + "md5": "7b8da90ca4829b5b1af8bc7b0b982a86" + }, + { + "type": "bf:Topic", + "authorized_access_point": "iPod", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "791", + "name": "Audiovisuel" + } + ], + "identifier": "http://www.idref.fr/079180043", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/079180043", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb14548815k", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF14548815" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "ITunes 4 et iPod / Virga, 2004" + ] + }, + { + "noteType": "dataNotFound", + "label": [ + "Laval RVM (en ligne), 2004-06-14" + ] + } + ], + "pid": "079180043", + "related": [ + { + "authorized_access_point": "Lecteurs MP3" + } + ], + "md5": "af4e17b6feaf8a2e317bd1513922e9a2" + }, + { + "type": "bf:Topic", + "authorized_access_point": "R\u00e9volution conservatrice (Allemagne)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "320", + "name": "Science politique" + } + ], + "identifier": "http://www.idref.fr/081665660", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/081665660", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb14614901r", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF14614901" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "La R\u00e9volution conservatrice en Allemagne, 1918-1932 / Armin Mohler, trad. par Henri Plard et Hector Lipstick, 1993", + "Normdaten : SWD, 2005-01 : Konservative Revolution" + ] + }, + { + "noteType": "general", + "label": [ + "Courant de pens\u00e9e politique de la R\u00e9publique de Weimar, d\u00e9velopp\u00e9 notamment par Arthur Moeller van den Bruck, Oswald Spengler, Ernst J\u00fcnger et Ernst von Salomon, qui pr\u00e9conise un nationalisme autoritaire comme mod\u00e8le alternatif au lib\u00e9ralisme et au communisme" + ] + } + ], + "pid": "081665660", + "broader": [ + { + "authorized_access_point": "Politique et gouvernement - Allemagne - 1918-1933" + }, + { + "authorized_access_point": "Conservatisme" + } + ], + "variant_access_point": [ + "Konservative Revolution" + ], + "md5": "c8f7a202f85f7c50615421630e6c0522" + }, + { + "type": "bf:Topic", + "authorized_access_point": "C\u00e9d\u00e9roms - Syst\u00e8mes-auteur", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "791", + "name": "Audiovisuel" + } + ], + "identifier": "http://www.idref.fr/083421467", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/083421467", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb145971143", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF14597114" + } + ], + "pid": "083421467", + "related": [ + { + "authorized_access_point": "Disques compacts enregistrables" + } + ], + "variant_access_point": [ + "C\u00e9d\u00e9roms - Gravure - Logiciels" + ], + "md5": "984cb2471e44f696d13ede315a5546a1" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Composition musicale assist\u00e9e par ordinateur - Logiciels", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "780", + "name": "Musique" + } + ], + "identifier": "http://www.idref.fr/083972684", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/083972684", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb145986121", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF14598612" + } + ], + "pid": "083972684", + "broader": [ + { + "authorized_access_point": "Composition musicale assist\u00e9e par ordinateur" + }, + { + "authorized_access_point": "Musique par ordinateur - Logiciels" + } + ], + "variant_access_point": [ + "Logiciels de composition musicale" + ], + "md5": "68078eeb8e94905e7947fbf6a3b2a568" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Pr\u00e9sidents - \u00c9tats-Unis - \u00c9lection (1912)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "320", + "name": "Science politique" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "950", + "name": "Histoire du reste du monde" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Presidents--United States--Election--1912", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2010106963", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/08523611X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/08523611X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb146122360", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF14612236" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - http://fr.wikipedia.org (2008-05-02)", + "Election of 1912 - http://www.u-s-history.com/pages/h887.html (2008-05-02)" + ] + }, + { + "noteType": "general", + "label": [ + "\u00c9lection pr\u00e9sidentielle du 4 novembre 1912 : Woodrow Wilson (d\u00e9mocrate) est \u00e9lu contre Theodore Roosevelt (Progressive Party, scission du parti r\u00e9publicain), William H. Taft (r\u00e9publicain), Eugene V. Debs (socialiste) et Eugene W. Chafin (Prohibition Party)" + ] + } + ], + "pid": "08523611X", + "broader": [ + { + "authorized_access_point": "Pr\u00e9sidents - \u00c9tats-Unis - \u00c9lection" + } + ], + "md5": "fac37c53da2c4d22a0d2f2515505b4ed" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Scrapbooking", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "740", + "name": "Dessin, arts d\u00e9coratifs, artisanat d'art" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "770", + "name": "Photographie" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "793", + "name": "Jeux" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Scrapbooking", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2008002216", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/087834979", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/087834979", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb14633930h", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF14633930" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Le scrapbooking de A \u00e0 Z, 2012", + "Dict. du scrapbooking / V. Alber-Latour, H. Meynard, 2011", + "Le scrapbooking : montages cr\u00e9atifs / F. Fichet, 2005" + ] + } + ], + "pid": "087834979", + "broader": [ + { + "authorized_access_point": "Loisirs cr\u00e9atifs" + } + ], + "related": [ + { + "authorized_access_point": "Albums de photographies" + } + ], + "variant_access_point": [ + "Albums de photographies - D\u00e9coration", + "Albums-souvenirs - Mise en page" + ], + "md5": "27437f58f91ee03298a0beed01dd35f8" + }, + { + "type": "bf:Topic", + "authorized_access_point": "R\u00e9f\u00e9rendum - Italie - 1946", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "320", + "name": "Science politique" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "940", + "name": "Histoire de l'Europe" + } + ], + "identifier": "http://www.idref.fr/087960621", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/087960621", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15011139m", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF15011139" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Mourre" + ] + }, + { + "noteType": "general", + "label": [ + "Le r\u00e9f\u00e9rendum du 2 juin 1946 (jour des \u00e9lections \u00e0 l'Assembl\u00e9e constituante) instaure la R\u00e9publique, par 12 072 000 voix contre 10 719 284 pour la monarchie. Le roi Humbert II, en faveur duquel son p\u00e8re Victor-Emmanuel III avait abdiqu\u00e9 le 9 mai 1946, part en exil sans toutefois abdiquer" + ] + } + ], + "pid": "087960621", + "variant_access_point": [ + "R\u00e9f\u00e9rendum sur la monarchie (Italie ; 1946)" + ], + "md5": "4c169b45af0957b7fb9cc72ebdf9a09c" + }, + { + "type": "bf:Topic", + "authorized_access_point": "R\u00e9f\u00e9rendum - Grande-Bretagne - \u00c9cosse (GB) - 1997", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "320", + "name": "Science politique" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "940", + "name": "Histoire de l'Europe" + } + ], + "identifier": "http://www.idref.fr/092468594", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/092468594", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb150114999", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF15011499" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Scotland decides : the Devolution issue and the 1997 referendum / David Denver et al., 2000" + ] + }, + { + "noteType": "general", + "label": [ + "1997-09-11 : la cr\u00e9ation d'un Parlement \u00e9cossais est approuv\u00e9e par r\u00e9f\u00e9rendum (74,3 % de oui)" + ] + } + ], + "pid": "092468594", + "md5": "f2c46fb062cfd8d61e08db17470a0ae6" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Monnaies russes", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "330", + "name": "\u00c9conomie politique" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "730", + "name": "Sculpture" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "940", + "name": "Histoire de l'Europe" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Coins, Russian", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85027859", + "source": "LCSH" + } + ] + }, + { + "authorized_access_point": "Monnaies russes", + "source": "RVMLaval" + } + ], + "identifier": "http://www.idref.fr/092468950", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/092468950", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb150128520", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF15012852" + } + ], + "pid": "092468950", + "related": [ + { + "authorized_access_point": "Monnaie - Russie" + } + ], + "broader": [ + { + "authorized_access_point": "Monnaies europ\u00e9ennes" + } + ], + "variant_access_point": [ + "Pi\u00e8ces de monnaie russes" + ], + "md5": "6b74594998c1ea3e36770b845ca3693e" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Microsoft Visual studio (environnement de d\u00e9veloppement d'applications)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "identifier": "http://www.idref.fr/101481071", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/101481071", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15060332j", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF15060332" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "LC Authorities (en ligne), 2009-08-05", + "Microsoft - http://www.microsoft.fr (2009-08-05)", + "D\u00e9velopper avec Visual studio 2005 \u00e9ditions Express / L. Desmons, 2006", + "ASP.NET avec C# sous Visual studio 2008 : conception et d\u00e9veloppement d'applications Web / B.-A. Gu\u00e9rin, 2009" + ] + } + ], + "pid": "101481071", + "broader": [ + { + "authorized_access_point": "Logiciels - D\u00e9veloppement" + }, + { + "authorized_access_point": "Sites Web - Syst\u00e8mes-auteur" + } + ], + "variant_access_point": [ + "Microsoft Visual studio .NET (environnement de d\u00e9veloppement d'applications)", + "Microsoft Visual studio 97 (environnement de d\u00e9veloppement d'applications)", + "Microsoft Visual studio 2005 Express Edition (environnement de d\u00e9veloppement d'applications)", + "Microsoft Visual studio 2008 (environnement de d\u00e9veloppement d'applications)", + "Visual studio (environnement de d\u00e9veloppement d'applications)", + "Visual studio .NET (environnement de d\u00e9veloppement d'applications)", + "Visual studio 97 (environnement de d\u00e9veloppement d'applications)", + "Visual studio 2005 Express Edition (environnement de d\u00e9veloppement d'applications)", + "Visual studio 2008 (environnement de d\u00e9veloppement d'applications)" + ], + "md5": "5bc9088ff76d9c2ec9a2be5fdb63b824" + }, + { + "type": "bf:Topic", + "authorized_access_point": "RAW (fichiers d'images)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "770", + "name": "Photographie" + } + ], + "identifier": "http://www.idref.fr/110905687", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/110905687", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb151251703", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF15125170" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Images num\u00e9riques et formats graphiques / G. Michel-Duthel, 2000" + ] + } + ], + "pid": "110905687", + "related": [ + { + "authorized_access_point": "Cam\u00e9ras vid\u00e9o num\u00e9riques" + }, + { + "authorized_access_point": "Camescopes num\u00e9riques" + } + ], + "broader": [ + { + "authorized_access_point": "Fichiers d'images" + } + ], + "variant_access_point": [ + "Fichiers RAW", + "Formats de fichier RAW", + "Formats de fichiers RAW", + "Formats RAW" + ], + "md5": "39070f23fde7816fef87d963194c9135" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Souillure de la race (Lois de Nuremberg ; 1935)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "320", + "name": "Sciences politiques" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "940", + "name": "Histoire m\u00e9di\u00e9vale, moderne et contemporaine (sauf la France)" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Souillure de la race (Lois de Nuremberg, 1935)", + "source": "RVMLaval" + } + ], + "identifier": "http://www.idref.fr/111597153", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/111597153", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15126159t", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF15126159" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "La destruction des juifs d'Europe / R. Hilberg, 2006 (t.1, p. 280)", + "Monde, 05-07-2002", + "Vokabular des Nationalsozialismus / C. Schmitz-Berning, 1998 (art. : Rassenschande)", + "Dict. encycl. d'histoire / M. Mourre, 1996 (art. : Nuremberg)" + ] + }, + { + "noteType": "general", + "label": [ + "L'une des lois promulgu\u00e9es \u00e0 Nuremberg le 15 septembre 1935, la loi de protection du sang allemand et de l'honneur allemand (Gesetz zum Schutze des deutschen Blutes und der deutschen Ehre), interdisait les mariages et relations sexuelles entre juifs et Allemands" + ] + } + ], + "pid": "111597153", + "broader": [ + { + "authorized_access_point": "Politique et gouvernement - Allemagne - 1933-1945" + }, + { + "authorized_access_point": "Juifs - Statut juridique" + } + ], + "variant_access_point": [ + "Atteinte \u00e0 la puret\u00e9 raciale (Lois de Nuremberg ; 1935)", + "Attentat \u00e0 la puret\u00e9 raciale (Lois de Nuremberg ; 1935)", + "Profanation de la race (Lois de Nuremberg ; 1935)", + "Protection du sang et de l'honneur allemands (Lois de Nuremberg ; 1935)", + "Puret\u00e9 raciale, Atteinte \u00e0 la (Lois de Nuremberg ; 1935)", + "Race - Souillure (Lois de Nuremberg ; 1935)", + "Rassenschande (Lois de Nuremberg ; 1935)", + "Souillure raciale (Lois de Nuremberg ; 1935)" + ], + "md5": "d349697b3eb3d3af9a3c1ff0256ab8ed" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Normes comptables internationales", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "650", + "name": "Gestion" + } + ], + "identifier": "http://www.idref.fr/112539750", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/112539750", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15126768f", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF15126768" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Les IAS : international accounting standards / C. Bigoy, 2003 - http://www.enssib.fr/bibliotheque/documents (2007-01-10)", + "Les normes comptables internationales IAS/IFRS - http://www.comptalia.com (2007-01-10)" + ] + } + ], + "pid": "112539750", + "related": [ + { + "authorized_access_point": "\u00c9tats financiers consolid\u00e9s" + } + ], + "narrower": [ + { + "authorized_access_point": "Normes IPSAS" + } + ], + "broader": [ + { + "authorized_access_point": "Normes comptables" + } + ], + "variant_access_point": [ + "Comptabilit\u00e9 - Normes internationales", + "IAS", + "IFRS", + "International Accounting Standards", + "International Financial Reporting Standards", + "NCI", + "Normalisation comptable internationale", + "Normes internationales d'information financi\u00e8re" + ], + "md5": "67046c314f1e9ffb2c51b00ea32fb011" + }, + { + "type": "bf:Topic", + "authorized_access_point": "R\u00e9f\u00e9rendum - Canada - Qu\u00e9bec (Canada ; province) - 1995", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "320", + "name": "Science politique" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "950", + "name": "Histoire du reste du monde" + } + ], + "identifier": "http://www.idref.fr/115898840", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/115898840", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15542056n", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF15542056" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikip\u00e9dia - http://fr.wikipedia.org/wiki (2007)", + "SY 2006", + "Laval RVM (en ligne), 2007-06-04 : Qu\u00e9bec (Province) -- Histoire -- 1995 (R\u00e9f\u00e9rendum constitutionnel)" + ] + }, + { + "noteType": "general", + "label": [ + "Le 30-10-1995, \u00e0 une majorit\u00e9 de 50,58%, les Qu\u00e9b\u00e9cois refusent d'accorder au gouvernement de Jacques Parizeau le mandat de n\u00e9gocier une souverainet\u00e9-association avec le reste du Canada" + ] + } + ], + "pid": "115898840", + "broader": [ + { + "authorized_access_point": "Qu\u00e9bec (Canada ; province) - Autonomie et mouvements ind\u00e9pendantistes" + } + ], + "variant_access_point": [ + "R\u00e9f\u00e9rendum constitutionnel (Qu\u00e9bec ; 1995)" + ], + "md5": "2a906f6113b2d50e0cd207c912b58f96" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Smartphones", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "600", + "name": "Sciences appliqu\u00e9es" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Smartphones", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2007006251", + "source": "LCSH" + } + ] + }, + { + "authorized_access_point": "T\u00e9l\u00e9phones intelligents", + "source": "RVMLaval" + } + ], + "identifier": "http://www.idref.fr/118419722", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/118419722", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15561010h", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF15561010" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikidata - https://www.wikidata.org/wiki/Q22645 (2023-09-25)", + "Dict. de fran\u00e7ais Larousse : ordiphone ; smartphone - http://www.larousse.fr/dictionnaires (2016-01-21)", + "Le guide du pocket PC, du smartphone et du portable Media center / G. de Lussigny, 2006", + "Smartphones sous Windows mobile 2003 / P. Antouly, 2006" + ] + }, + { + "noteType": "general", + "label": [ + "T\u00e9l\u00e9phone mobile disposant des fonctions d'un assistant num\u00e9rique personnel (PDA : personal digital assistant), d'un appareil photo num\u00e9rique et d'un ordinateur portable" + ] + } + ], + "pid": "118419722", + "related": [ + { + "authorized_access_point": "Applications mobiles" + }, + { + "authorized_access_point": "\u00c9cosyst\u00e8mes d'applications mobiles (informatique)" + }, + { + "authorized_access_point": "Nomophobie" + }, + { + "authorized_access_point": "Photographie mobile" + }, + { + "authorized_access_point": "Vid\u00e9o mobile" + } + ], + "narrower": [ + { + "authorized_access_point": "BlackBerry (smartphone)" + }, + { + "authorized_access_point": "iPhone (smartphone)" + }, + { + "authorized_access_point": "Samsung Galaxy (smartphones)" + } + ], + "broader": [ + { + "authorized_access_point": "Ordinateurs de poche" + }, + { + "authorized_access_point": "T\u00e9l\u00e9phonie mobile" + } + ], + "variant_access_point": [ + "Ordiphones", + "T\u00e9l\u00e9phones assistants personnels", + "T\u00e9l\u00e9phones intelligents", + "T\u00e9l\u00e9phones multifonctions", + "T\u00e9l\u00e9phones PDA" + ], + "md5": "7663c32ca98b34b0fed158fe7ce33126" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Lamrim", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "200", + "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)" + } + ], + "identifier": "http://www.idref.fr/118420763", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/118420763", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15556981h", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF15556981" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. encyclop\u00e9dique du bouddhisme / P. Cornu, 2006", + "Dict. de la sagesse orientale : bouddhisme, hindouisme, tao\u00efsme, zen, 1989", + "Encycl. of Buddhism / R. E. Buswell, 2003 (art. : Bodhicitta) : lam rim literature", + "Encycl. des religions / F. Lenoir, Y. Tardan-Masquelier, 1997 (p. 1043) : \"voie graduelle vers l'\u00c9veil" + ] + }, + { + "noteType": "general", + "label": [ + "Corpus de doctrine bouddhique proposant une m\u00e9thode de progression vers l'\u00c9veil" + ] + } + ], + "pid": "118420763", + "related": [ + { + "authorized_access_point": "Bka'-gdams-pa" + }, + { + "authorized_access_point": "Dge-lugs-pa (secte)" + }, + { + "authorized_access_point": "\u00c9veil (bouddhisme)" + } + ], + "broader": [ + { + "authorized_access_point": "Bouddhisme - Doctrines" + }, + { + "authorized_access_point": "Litt\u00e9rature bouddhique" + } + ], + "variant_access_point": [ + "Lam-rim", + "Voie graduelle vers l'\u00c9veil", + "Voie progressive (bouddhisme)" + ], + "md5": "77ecb5048a46a45fdf899bb6841c91c2" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Montagnes - Protection", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "577", + "name": "\u00c9cologie" + } + ], + "identifier": "http://www.idref.fr/11948949X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/11948949X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15570251m", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF15570251" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Loi n\u00b0 85-30 du 09 Janvier 1985 relative au d\u00e9veloppement et \u00e0 la protection de la montagne - http://www.senat.fr (2007-11-08)", + "International law and protection of mountain areas, 2002" + ] + } + ], + "pid": "11948949X", + "related": [ + { + "authorized_access_point": "Montagnes - Politique publique" + } + ], + "broader": [ + { + "authorized_access_point": "Espaces naturels - Protection" + } + ], + "variant_access_point": [ + "Protection de la montagne", + "Protection des montagnes" + ], + "md5": "cf38422421fedd08b04cf9bc71b7620a" + }, + { + "type": "bf:Topic", + "authorized_access_point": "ABAP (langage de programmation)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "identifier": "http://www.idref.fr/120299658", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/120299658", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15589937c", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF15589937" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "The encycl. of computer language - http://hopl.murdoch.edu.au (2010-04-27)", + "SAP et ABAP / Y. Szwec, 2007", + "SAP Developper Network - http://www.sdn.sap.com (2010-04-27)" + ] + } + ], + "pid": "120299658", + "broader": [ + { + "authorized_access_point": "Langages de 4e g\u00e9n\u00e9ration" + } + ], + "variant_access_point": [ + "ABAP/4 (langage de programmation)", + "Advanced Business Application Programming (langage de programmation)" + ], + "md5": "bb5629257d1f3bb56652e0654e3ee9f3" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Guerre de la succession de Mantoue (1628-1631)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "940", + "name": "Histoire de l'Europe" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Mantuan Succession, War of the, 1628-1631", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2017003035", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/12059353X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/12059353X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb155937336", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF15593733" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. encyclop\u00e9dique d'histoire / M. Mourre, 1996", + "Dict. du Grand si\u00e8cle / F. Bluche, 2005" + ] + }, + { + "noteType": "general", + "label": [ + "A la mort du duc Vincent II de Gonzague (16 d\u00e9cembre 1627), la succession de Mantoue est disput\u00e9e entre les Nevers (soutenus par la France) et les Guastalla (soutenus par l'Espagne), tandis que le duc de Savoie Charles Emmanuel I revendique le Montferrat. 26 avril 1631 : le trait\u00e9 de Cherasco attribue la succession \u00e0 Charles de Nevers" + ] + } + ], + "pid": "12059353X", + "broader": [ + { + "authorized_access_point": "Relations ext\u00e9rieures - France - 1610-1643" + }, + { + "authorized_access_point": "Italie - 17e si\u00e8cle" + } + ], + "narrower": [ + { + "authorized_access_point": "Bataille du pas de Suse (1629)" + }, + { + "authorized_access_point": "Si\u00e8ge de Mantoue (Italie ; 1629-1630)" + }, + { + "authorized_access_point": "Si\u00e8ges de Casale Monferrato (Italie ; 1628-1630)" + } + ], + "related": [ + { + "authorized_access_point": "Mantoue (Italie ; duch\u00e9)" + } + ], + "variant_access_point": [ + "Crise de la succession de Mantoue (1628-1631)", + "Guerre de Mantoue (1628-1631)", + "Guerre de succession de Mantoue (1628-1631)", + "Mantoue, Guerre de (1628-1631)", + "Succession de Mantoue, Guerre de la (1628-1631)" + ], + "md5": "99f60cf99823acdd5fa6b3fb891da12e" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Environnement num\u00e9rique de travail", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "370", + "name": "\u00c9ducation" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "identifier": "http://www.idref.fr/122348486", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/122348486", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb156044499", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF15604449" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Services num\u00e9riques - http://www2.educnet.education.fr (2008-02-15)", + "Espaces num\u00e9riques de travail - http://savoirscdi.cndp.fr (2008-02-15)", + "ENT-SCOL : environnement num\u00e9rique de travail, 2008" + ] + }, + { + "noteType": "general", + "label": [ + "Dispositif global fournissant \u00e0 un usager, un point d'acc\u00e8s, \u00e0 travers les r\u00e9seaux, \u00e0 l'ensemble des ressources et des services num\u00e9riques en rapport avec son activit\u00e9" + ] + } + ], + "pid": "122348486", + "related": [ + { + "authorized_access_point": "Environnement d'apprentissage personnel" + }, + { + "authorized_access_point": "Tableaux blancs interactifs" + } + ], + "narrower": [ + { + "authorized_access_point": "Plateformes d'apprentissage en ligne" + }, + { + "authorized_access_point": "Universit\u00e9s virtuelles" + } + ], + "broader": [ + { + "authorized_access_point": "Technologie \u00e9ducative" + }, + { + "authorized_access_point": "Portails Internet" + } + ], + "variant_access_point": [ + "Bureaux virtuels (\u00e9ducation)", + "ENT", + "Environnements num\u00e9riques de travail (\u00e9ducation)", + "Espace num\u00e9rique de travail (\u00e9ducation)", + "Espaces num\u00e9riques de travail (\u00e9ducation)" + ], + "md5": "dcdffeb0fccd8452b6ce50bbf64e6f6e" + }, + { + "type": "bf:Topic", + "authorized_access_point": "iPhone (smartphone)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "600", + "name": "Sciences appliqu\u00e9es" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "closeMatch": [ + { + "authorized_access_point": "iPhone (Smartphone)", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2007007371", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/122348877", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/122348877", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb156082549", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF15608254" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "iPhone / P. Fontaine, 2008", + "Films & vid\u00e9os sur iPhone - iPod touch, 2007 [c\u00e9d\u00e9rom]", + "Apple - http://www.apple.fr (2008-03-13)" + ] + } + ], + "pid": "122348877", + "broader": [ + { + "authorized_access_point": "Smartphones" + } + ], + "variant_access_point": [ + "Apple iPhone (smartphone)" + ], + "md5": "ed60c3a0ad3ec6ec0c50fa5ff5ef9757" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Kindertransport (op\u00e9ration de sauvetage ; 1938-1940)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "940", + "name": "Histoire m\u00e9di\u00e9vale, moderne et contemporaine (sauf la France)" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Kindertransports (Rescue operations)", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh00008556", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/122957032", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/122957032", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb156163936", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF15616393" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Les Kindertransport, 1938-1940 - http://www.ushmm.org (2008-03-31)", + "Dict. of the Holocaust / E. J. Epstein, P. Rosen, 1990" + ] + }, + { + "noteType": "dataNotFound", + "label": [ + "Hist. du peuple juif au XXe si\u00e8cle : de 1914 \u00e0 nos jours / S. Epstein, 1998. - Encycl. of the Holocaust / I. Gutman, 1990" + ] + }, + { + "noteType": "general", + "label": [ + "Op\u00e9ration de sauvetage (d\u00e9cembre 1938-mai 1940) qui permit de transf\u00e9rer en Grande-Bretagne environ 10000 enfants juifs d'Allemagne, d'Autriche, de Tch\u00e9coslovaquie et de Dantzig" + ] + } + ], + "pid": "122957032", + "related": [ + { + "authorized_access_point": "Enfants juifs pendant la Shoah" + }, + { + "authorized_access_point": "Enfants r\u00e9fugi\u00e9s" + }, + { + "authorized_access_point": "Guerre mondiale (1939-1945) - Enfants" + }, + { + "authorized_access_point": "Guerre mondiale (1939-1945) - Juifs -- Sauvetage" + }, + { + "authorized_access_point": "R\u00e9fugi\u00e9s juifs" + } + ], + "broader": [ + { + "authorized_access_point": "Juifs - 1933-1945" + } + ], + "variant_access_point": [ + "Kindertransports (op\u00e9rations de sauvetage ; 1938-1940)" + ], + "md5": "f05df613fbe61a783e736aa7c6d0cd24" + }, + { + "type": "bf:Topic", + "authorized_access_point": "OLAP (informatique)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "650", + "name": "Gestion et organisation de l'entreprise" + } + ], + "identifier": "http://www.idref.fr/123472466", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/123472466", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15711780x", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF15711780" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Encycl. de l'informatique et des syst\u00e8mes d'information, 2006", + "Entrep\u00f4ts de donn\u00e9es [in] Techniques de l'ing\u00e9nieur, 2005, H3870", + "Mod\u00e9lisation et impl\u00e9mentation de syst\u00e8mes OLAP pour des objets mobiles / T. Wan, 2007 [th\u00e8se]", + "Refonte globale d'un cube OLAP des ventes europ\u00e9ennes de la soci\u00e9t\u00e9 / M. Bellec, 2007 [m\u00e9moire]", + "OLAP solutions : building multidimensional information systems / E. Thomsen, 2002" + ] + } + ], + "pid": "123472466", + "related": [ + { + "authorized_access_point": "Bases de donn\u00e9es multidimensionnelles" + }, + { + "authorized_access_point": "Bases de donn\u00e9es" + } + ], + "broader": [ + { + "authorized_access_point": "Syst\u00e8mes d'aide \u00e0 la d\u00e9cision" + } + ], + "variant_access_point": [ + "Applications OLAP (informatique)", + "Cubes OLAP (informatique)", + "Online Analytical Processing (informatique)", + "Syst\u00e8mes OLAP (informatique)" + ], + "md5": "3a19043eb1b3581ca802313ae5cd8699" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Microsoft Windows Presentation Foundation (plate-forme informatique)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "identifier": "http://www.idref.fr/124452248", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/124452248", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15661929k", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF15661929" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "LC Authorities (en ligne), 2008-06-16", + "WPF : Windows Presentation Foundation : D\u00e9veloppez des applications riches sous Windows / O. Dewit, 2008", + "WPF : le d\u00e9veloppement d'interfaces riches : introduction \u00e0 Silverlight / M. Diaz Orlich, X. Poinas, Y. Lautredou, 2008", + "Foundations of WPF : an introduction to Windows Presentation Foundation / L. Moroney, 2006" + ] + } + ], + "pid": "124452248", + "broader": [ + { + "authorized_access_point": "Microsoft .NET Framework (plate-forme informatique)" + } + ], + "variant_access_point": [ + "Microsoft WPF (plate-forme informatique)", + "Windows Presentation Foundation (plate-forme informatique)", + "WPF (plate-forme informatique)" + ], + "md5": "1db597c195740ba7f3ee661d68632389" + }, + { + "type": "bf:Topic", + "authorized_access_point": "R\u00e9volution Orange (Ukraine ; 2004)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "320", + "name": "Sciences politiques" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "940", + "name": "Histoire m\u00e9di\u00e9vale, moderne et contemporaine (sauf la France)" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Ukraine--History--Orange Revolution, 2004", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2005001194", + "source": "LCSH" + } + ] + }, + { + "authorized_access_point": "Ukraine--Histoire--2004 (R\u00e9volution orange)", + "source": "RVMLaval" + } + ], + "identifier": "http://www.idref.fr/129822051", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/129822051", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15847405k", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF15847405" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikidata - https://www.wikidata.org/wiki/Q836386 (2023-08-31)", + "Robert encyclop\u00e9dique des noms propres 2008", + "L'ann\u00e9e 2004 dans Le Monde / D. Rioux, 2005", + "Universalia 2005", + "Historical dict. of Ukraine / Z. E. Kohut, B. Y. Nebesio, M. Yurkevich, 2005 (p. 9-14)", + "Le Monde, 2004-11-23" + ] + }, + { + "noteType": "general", + "label": [ + "Novembre-d\u00e9cembre 2004 : manifestations pacifiques de masse \u00e0 Kiev et dans les grandes villes d'Ukraine pour protester contre le r\u00e9sultat officiel de l'\u00e9lection pr\u00e9sidentielle, favorable au candidat pro-russe Viktor Ianoukovitch, contre Viktor Iouchtchenko (pro-occidental). Cette mobilisation et les pressions internationales aboutissent \u00e0 un nouveau second tour et la victoire de V. Iouchtchenko (26 d\u00e9cembre)" + ] + } + ], + "pid": "129822051", + "related": [ + { + "authorized_access_point": "Pr\u00e9sidents - Ukraine - \u00c9lection (2004)" + } + ], + "broader": [ + { + "authorized_access_point": "Ukraine - 1991-...." + } + ], + "variant_access_point": [ + "Marronniers, R\u00e9volution des (Ukraine ; 2004)", + "Orange, R\u00e9volution (Ukraine ; 2004)", + "Orange Revolution (Ukraine ; 2004)", + "R\u00e9volution des marronniers (Ukraine ; 2004)" + ], + "md5": "7c5443eee9da02b7001dca20d83514ee" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Apprentissage", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "150", + "name": "Psychologie, psychanalyse" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "370", + "name": "Education et enseignement" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Apprentissage", + "source": "RVMLaval" + }, + { + "authorized_access_point": "Learning", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85075520", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/130683035", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/130683035", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb159423983", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF15942398" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Petit Robert 2009", + "P\u00e9dagogie, dict. des concepts-cl\u00e9s : apprentissage, formation, psychologie cognitive / F. Raynal, A. Rieunier, 2005", + "Dict. encyclop\u00e9dique de l'\u00e9ducation et de la formation / P. Champy, C. \u00c9t\u00e9v\u00e9, 1994", + "Dict. de l'\u00e9ducation / A. van Zanten, 2008" + ] + } + ], + "pid": "130683035", + "related": [ + { + "authorized_access_point": "Apprentissage - Physiologie" + }, + { + "authorized_access_point": "Apprentissage professionnel" + }, + { + "authorized_access_point": "Comp\u00e9tence" + }, + { + "authorized_access_point": "Compr\u00e9hension" + }, + { + "authorized_access_point": "Conception universelle de l'apprentissage" + }, + { + "authorized_access_point": "Math\u00e9tique" + }, + { + "authorized_access_point": "Psychologie de l'apprentissage" + } + ], + "narrower": [ + { + "authorized_access_point": "Acquisition linguistique" + }, + { + "authorized_access_point": "Apprentissage contextualis\u00e9" + }, + { + "authorized_access_point": "Apprentissage exploratoire" + }, + { + "authorized_access_point": "Apprentissage mixte" + }, + { + "authorized_access_point": "Apprentissage organisationnel" + }, + { + "authorized_access_point": "Apprentissage par investigation" + }, + { + "authorized_access_point": "Apprentissage par la d\u00e9couverte" + }, + { + "authorized_access_point": "Apprentissage par la pratique" + }, + { + "authorized_access_point": "Apprentissage par le jeu" + }, + { + "authorized_access_point": "Apprentissage social" + }, + { + "authorized_access_point": "Apprentissage transformationnel" + }, + { + "authorized_access_point": "Dispositifs p\u00e9dagogiques" + }, + { + "authorized_access_point": "Environnement d'apprentissage personnel" + }, + { + "authorized_access_point": "T\u00e2ches (\u00e9ducation)" + }, + { + "authorized_access_point": "Transfert d'apprentissage" + } + ], + "broader": [ + { + "authorized_access_point": "Comportement humain" + }, + { + "authorized_access_point": "\u00c9ducation" + } + ], + "variant_access_point": [ + "Processus d'apprentissage" + ], + "md5": "39f6d8ab9ab1e2704bd6fba739bd285d" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Jeune Droite", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "320", + "name": "Science politique" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "944", + "name": "Histoire de la France" + } + ], + "identifier": "http://www.idref.fr/13073019X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/13073019X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb159000410", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF15900041" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Hist. de la France au XXe si\u00e8cle. 2, 1930-1945 / S. Berstein, P. Milza, 2003 (p. 64-65)", + "Hist. de la France politique. 4, La R\u00e9publique recommenc\u00e9e : de 1914 \u00e0 nos jours / S. Berstein, M. Winock, 2004 (p. 62)", + "Le si\u00e8cle des intellectuels / M. Winock, 1997 (p. 204)", + "Hist. politique de la Jeune Droite, 1929-1942 / S. Kessler, 2001" + ] + }, + { + "noteType": "dataNotFound", + "label": [ + "Hist. des droites en France. 2, Cultures / J.-F. Sirinelli, 2006" + ] + }, + { + "noteType": "general", + "label": [ + "Nom donn\u00e9 par Emmanuel Mounier \u00e0 un groupe d'\u00e9crivains et d'intellectuels fran\u00e7ais dits \"non conformistes\" des ann\u00e9es 1930, d'ob\u00e9dience nationaliste et principalement catholique, qui voulaient renouveler la pens\u00e9e de Charles Maurras (Jean de Fabr\u00e8gues, Jean-Pierre Maxence, Thierry Maulnier)" + ] + } + ], + "pid": "13073019X", + "broader": [ + { + "authorized_access_point": "Politique et gouvernement - France - 1914-1940" + }, + { + "authorized_access_point": "Partis de droite" + } + ], + "variant_access_point": [ + "Droite, Jeune" + ], + "md5": "57e69a62ccfb316aced3ccd94209234a" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Art - Italie - 19e si\u00e8cle", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "700", + "name": "Arts (sauf litt\u00e9rature)" + } + ], + "identifier": "http://www.idref.fr/131981226", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/131981226", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15936258b", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF15936258" + } + ], + "pid": "131981226", + "narrower": [ + { + "authorized_access_point": "Peinture - Italie - 19e si\u00e8cle" + }, + { + "authorized_access_point": "Scapigliatura" + } + ], + "broader": [ + { + "authorized_access_point": "Art - Italie" + } + ], + "md5": "ec36ec3d23d89e96e07d115bd648d099" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Assistance militaire russe", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "320", + "name": "Sciences politiques" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "355", + "name": "Art et science militaires" + } + ], + "identifier": "http://www.idref.fr/132211378", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/132211378", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb178103476", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17810347" + } + ], + "pid": "132211378", + "related": [ + { + "authorized_access_point": "Forces arm\u00e9es russes" + } + ], + "broader": [ + { + "authorized_access_point": "Assistance militaire" + } + ], + "md5": "0e6dbe3690392c71f1630ae312bfb7b2" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Tratado de amistad, comercio y navegaci\u00f3n entre la Prusia y los otros Estados del Zollverein alem\u00e1n por una parte y la Confederaci\u00f3n argentina por la otra parte (1857)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "320", + "name": "Science politique" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "330", + "name": "\u00c9conomie politique" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "340", + "name": "Droit" + } + ], + "identifier": "http://www.idref.fr/133566129", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/133566129", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb160053063", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16005306" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GVK - Gemeinsamer Verbundkatalog : Freundschafts- Handels- und Schifffahrts- Vertrag zwischen Preu\u00dfen und den \u00fcbrigen Staaten des Zollvereins einerseits und der Argentinischen Konf\u00f6deration andereseits - http://gso.gbv.de (2009-04-28)", + "El tratado argentino-alem\u00e1n de amistad, comercio y navegaci\u00f3n de 1857 : estudios hist\u00f3rico-jur\u00eddicos / T. Duve, 2007" + ] + }, + { + "noteType": "general", + "label": [ + "Trait\u00e9 sign\u00e9 le 19 septembre1857, ratifi\u00e9 le 3 juin 1859" + ] + } + ], + "pid": "133566129", + "broader": [ + { + "authorized_access_point": "Relations ext\u00e9rieures - Prusse - 1815-1871" + }, + { + "authorized_access_point": "Relations ext\u00e9rieures - Allemagne - 1848-1870" + } + ], + "variant_access_point": [ + "Freundschafts- Handels- und Schifffahrts- Vertrag zwischen Preu\u00dfen und den \u00fcbrigen Staaten des Zollvereins einerseits und der Argentinischen Konf\u00f6deration andererseits (1857)", + "Tratado argentino-alem\u00e1n de amistad, comercio y navegaci\u00f3n (1857)" + ], + "md5": "25c54e86348b7242d57d3230ee7b8adc" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Diplomatie pontificale - 21e si\u00e8cle", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "200", + "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "320", + "name": "Sciences politiques" + } + ], + "identifier": "http://www.idref.fr/135615003", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/135615003", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb160730930", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16073093" + } + ], + "pid": "135615003", + "variant_access_point": [ + "\u00c9glise catholique - Relations ext\u00e9rieures - 21e si\u00e8cle" + ], + "md5": "955dd33aabd40010b6e5f6a28b762777" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Akhb\u0101r\u012bs", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "200", + "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "305" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Akhb\u0101r\u012byah", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2008007856", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/136707165", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/136707165", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb161107725", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16110772" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Encycl. universalis (art. : Chiisme ou sh\u012b\u2018isme) - http://www.universalis-edu.com (2018-05-29)", + "Al-wasa\u1e6d - http://www.alwasatnews.com (2018-05-14)", + "W\u012bk\u012b \u0160\u012b\u02bfa\u1e97 - http://ar.wikishia.net (2018-05-14)", + "Dict. encyclop\u00e9dique de l'Islam / C. Glass\u00e9, 1991", + "Dict. historique de l'Islam / D. et J. Sourdel, 2004", + "Hist. de l'Islam / S. Mervin, 2001 : courant akhb\u0101r\u012b", + "Qu'est-ce que le sh\u00ee'isme? / M.-A. Amir-Moezzi, C. Jambet, 2004 : Akhb\u0101r\u012byya", + "The Oxford dict. of Islam / J.-L. Esposito, 2003", + "BnF Service arabe, 2018-05-14" + ] + }, + { + "noteType": "general", + "label": [ + "Membres d'une \u00c9cole du chiisme duod\u00e9cimain, partisans d'une jurisprudence exclusivement fond\u00e9e sur les traditions re\u00e7ues (akhb\u0101r) des imams" + ] + } + ], + "pid": "136707165", + "related": [ + { + "authorized_access_point": "Im\u0101mat" + } + ], + "broader": [ + { + "authorized_access_point": "Chiites" + }, + { + "authorized_access_point": "Th\u00e9ologiens musulmans" + } + ], + "variant_access_point": [ + "Akhb\u0101r\u012b", + "A\u1e96b\u0101r\u012b", + "\u0623\u062e\u0628\u0627\u0631\u064a", + "A\u1e96b\u0101riyya\u1e97", + "\u0623\u062e\u0628\u0627\u0631\u064a\u0651\u0629", + "Akhb\u0101r\u012byah", + "Akhb\u0101r\u012byya", + "A\u1e96b\u0101riyy\u016bn", + "\u0623\u062e\u0628\u0627\u0631\u064a\u0651\u0648\u0646", + "Al- a\u1e96b\u0101r\u012b", + "\u0627\u0644\u0623\u062e\u0628\u0627\u0631\u064a", + "Al- a\u1e96b\u0101riyya\u1e97", + "\u0627\u0644\u0623\u062e\u0628\u0627\u0631\u064a\u0651\u0629", + "Al- a\u1e96b\u0101riyy\u016bn", + "\u0627\u0644\u0623\u062e\u0628\u0627\u0631\u064a\u0651\u0648\u0646", + "Akhbarisme", + "Courant akhb\u0101r\u012b", + "\u00c9cole akhb\u0101r\u012be", + "Mouvement akhb\u0101r\u012b", + "Traditionalistes akhb\u0101r\u012b" + ], + "md5": "a8b7e22d29ca220bb445333794542e9c" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Ouverture de la fronti\u00e8re austro-hongroise (1989)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "940", + "name": "Histoire de l'Europe" + } + ], + "identifier": "http://www.idref.fr/13776541X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/13776541X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb161648597", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16164859" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "L'ann\u00e9e 1989 dans Le Monde / E. Masurel, 1990", + "Dict. encyclop\u00e9dique d'histoire / M. Mourre (art. : Hongrie)", + "Mil ans d'hist. hongroise / I. G. T\u00f3th, 2003 (p. 667)", + "Historical dict. of Hungary / S. B. V\u00e1rdy, 1997 (art. : Communism, Collapse of (1989-1990) ; Iron Curtain)" + ] + }, + { + "noteType": "general", + "label": [ + "27 mai 1989 : les ministres autrichien et hongrois des affaires \u00e9trang\u00e8res (Alois Mock et Gyula Horn) coupent symboliquement les d\u00e9fenses frontali\u00e8res. 19 ao\u00fbt : l'organisation pr\u00e8s de Sopron d'un \"pique-nique paneurop\u00e9en\" par Otto de Habsbourg et Imre Pozsgay permet \u00e0 environ 500 Allemands de l'Est de passer en Autriche. 10 septembre : G. Horn annonce l'ouverture de la fronti\u00e8re, qu'environ 25.000 Allemands de l'Est franchissent en septembre" + ] + } + ], + "pid": "13776541X", + "broader": [ + { + "authorized_access_point": "Fronti\u00e8res - Hongrie" + }, + { + "authorized_access_point": "Fronti\u00e8res - Autriche" + }, + { + "authorized_access_point": "Rideau de fer (fronti\u00e8re)" + }, + { + "authorized_access_point": "Europe de l'Est - 1989-1990 (Chute du communisme)" + } + ], + "related": [ + { + "authorized_access_point": "Allemagne - 1989-1990 (Unification)" + } + ], + "variant_access_point": [ + "Fronti\u00e8re austro-hongroise, Ouverture de la (1989)", + "Ouverture du Rideau de fer (1989)", + "Pique-nique paneurop\u00e9en (1989)", + "Rideau de fer, Ouverture du (1989)" + ], + "md5": "b95e055ed19a9de582cf550722e06d25" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Angolagate (1993-....)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "944", + "name": "Histoire de la France" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "950", + "name": "Histoire du reste du monde" + } + ], + "identifier": "http://www.idref.fr/137978685", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/137978685", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb16157417q", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16157417" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Quid - http://www.quid.fr (2009-11-14)", + "Wikip\u00e9dia : Affaire des ventes d'armes \u00e0 l'Angola - http://fr.wikipedia.org (2009-11-14)", + "Les hommes de l'\"Angolagate\" / S. Smith [in] Le Monde, 2001-01-13", + "Angolagate : Pasqua implique de nouveau Chirac et Villepin [in] Le Figaro, 2009-11-13" + ] + }, + { + "noteType": "general", + "label": [ + "Affaire de trafic d'armes vers l'Angola au cours de la guerre civile entre 1993 et 1998. L'enqu\u00eate, commenc\u00e9e en juillet 2000, a impliqu\u00e9 notamment Pierre Falcone, Arkadi Gaydamak, Charles Pasqua et Jean-Christophe Mitterrand. Le nom d'\"Angolagate\" (par allusion au Watergate), donn\u00e9 \u00e0 l'affaire par le journal Le Monde en janvier 2001, a fait flor\u00e8s. 6 octobre 2008-27 octobre 2009 : proc\u00e8s en premi\u00e8re instance" + ] + } + ], + "pid": "137978685", + "broader": [ + { + "authorized_access_point": "Politique et gouvernement - France - 1995-2007" + }, + { + "authorized_access_point": "Politique et gouvernement - France - 1993-1995" + } + ], + "variant_access_point": [ + "Affaire des ventes d'armes \u00e0 l'Angola (1993-....)", + "Affaire du trafic d'armes vers l'Angola (1993-....)", + "Affaire Falcone (1993-....)", + "Proc\u00e8s de l'Angolagate (2008-....)", + "Scandale de l'Angolagate (1993-....)", + "Trafic d'armes vers l'Angola, Affaire du (1993-....)", + "Ventes d'armes \u00e0 l'Angola, Affaire des (1993-....)" + ], + "md5": "131896d234a397932582dc25e0f57e15" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Dieux cor\u00e9ens", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "200", + "name": "Religion" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Gods, Korean", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2006004413", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/139100857", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/139100857", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb16158627t", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16158627" + } + ], + "pid": "139100857", + "related": [ + { + "authorized_access_point": "Dieux tao\u00efstes" + } + ], + "broader": [ + { + "authorized_access_point": "Mythologie cor\u00e9enne" + } + ], + "md5": "0bec2468047b34a5bec9aba34e68122e" + }, + { + "type": "bf:Topic", + "authorized_access_point": "VMware (logiciels)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "identifier": "http://www.idref.fr/142761583", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/142761583", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb16186298c", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16186298" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "LC Authorities (en ligne), 2010-03-08", + "VMware cookbook / R. Troy, M. Helmke, 2010", + "VMware Virtualization Software for Desktops, Servers & Virtual Machines for a Private Cloud - http://www.vmware.com (2010-03-08)", + "Virtualisation des syst\u00e8mes d'information avec VMware / P. Gillet, 2009" + ] + } + ], + "pid": "142761583", + "broader": [ + { + "authorized_access_point": "Syst\u00e8mes virtuels (informatique)" + } + ], + "md5": "d84fcab6eccff9f388ec2026f3ed2029" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Apple iPad (ordinateur)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "identifier": "http://www.idref.fr/144664194", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/144664194", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb16204308w", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16204308" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Apple - http://www.apple.com/fr (2010-05-25)", + "D\u00e9velopper pour l'iPhone et l'iPad / \u00c9. Vautherin, 2010", + "My new iPad : simple ways to get started / W. Wang, 2010" + ] + } + ], + "pid": "144664194", + "broader": [ + { + "authorized_access_point": "Tablettes num\u00e9riques" + }, + { + "authorized_access_point": "Apple (ordinateurs)" + } + ], + "variant_access_point": [ + "iPad (ordinateur)" + ], + "md5": "d8f0b212e86cf8a6d6d39ad5d728ee9f" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Grec (langue) biblique - Vocabulaire", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "200", + "name": "Religion" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "400", + "name": "Langues" + } + ], + "identifier": "http://www.idref.fr/145035468", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/145035468", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb162077797", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16207779" + } + ], + "pid": "145035468", + "related": [ + { + "authorized_access_point": "Grec (langue) biblique" + } + ], + "narrower": [ + { + "authorized_access_point": "Ai\u0313\u1e53n (le mot grec)" + }, + { + "authorized_access_point": "Diakon\u00eda (le mot grec)" + }, + { + "authorized_access_point": "Did\u00e1skalos (le mot grec)" + }, + { + "authorized_access_point": "D\u00fdnamis (le mot grec)" + }, + { + "authorized_access_point": "Ei\u0313k\u1e53n (le mot grec)" + }, + { + "authorized_access_point": "F\u014dn\u012b \u0301 (le mot grec)" + }, + { + "authorized_access_point": "Gn\u014dstik\u00f3s (le mot grec)" + }, + { + "authorized_access_point": "Kard\u00eda (le mot grec)" + }, + { + "authorized_access_point": "Koin\u014dn\u00eda (le mot grec)" + }, + { + "authorized_access_point": "Leitourg\u00eda (le mot grec)" + }, + { + "authorized_access_point": "Martyr\u00eda (le mot grec)" + }, + { + "authorized_access_point": "Math\u012bt\u012b\u0301s (le mot grec)" + }, + { + "authorized_access_point": "Myst\u012b\u0301rion (le mot grec)" + }, + { + "authorized_access_point": "N\u00f3mos (le mot grec)" + }, + { + "authorized_access_point": "No\u00fbs (le mot grec)" + }, + { + "authorized_access_point": "Oi\u0313kodome\u00een (le mot grec)" + }, + { + "authorized_access_point": "Oi\u0313kodom\u012b\u0301 (le mot grec)" + }, + { + "authorized_access_point": "Oi\u0313konom\u00eda (le mot grec)" + }, + { + "authorized_access_point": "Paide\u00eda (le mot grec)" + }, + { + "authorized_access_point": "Par\u00e1klit\u0304os (le mot grec)" + }, + { + "authorized_access_point": "Parr\u012bs\u00eda (le mot grec)" + }, + { + "authorized_access_point": "P\u00e2s (le mot grec)" + }, + { + "authorized_access_point": "Peripat\u00f4\u0304 (le mot grec)" + }, + { + "authorized_access_point": "Perisse\u00eda (le mot grec)" + }, + { + "authorized_access_point": "Perisse\u00faein (le mot grec)" + }, + { + "authorized_access_point": "P\u00edstis (le mot grec)" + }, + { + "authorized_access_point": "Proa\u00edresis (le mot grec)" + }, + { + "authorized_access_point": "Pros\u00e9rchomai (le mot grec)" + }, + { + "authorized_access_point": "S\u014dt\u012b\u0301r (le mot grec)" + }, + { + "authorized_access_point": "Syggn\u1e53m\u012b (le mot grec)" + }, + { + "authorized_access_point": "Syne\u00edd\u012bsis (le mot grec)" + }, + { + "authorized_access_point": "T\u00e9leios (le mot grec)" + }, + { + "authorized_access_point": "T\u00e9los (le mot grec)" + }, + { + "authorized_access_point": "Theosof\u00eda (le mot grec)" + }, + { + "authorized_access_point": "T\u012bre\u00een (le mot grec)" + } + ], + "md5": "896ec8a9307ead26e55d2ff83a5a88fa" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Karachi, Attentat de (2002)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "320", + "name": "Science politique" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "950", + "name": "Histoire du reste du monde" + } + ], + "identifier": "http://www.idref.fr/145909093", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/145909093", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb16205959p", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16205959" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikip\u00e9dia : Attentat du 8 mai 2002 \u00e0 Karachi - http://fr.wikipedia.org (2010-06-28)", + "Encycl. universalis (art. : Pakistan actualit\u00e9 (1990-2008)) - http://www.universalis-edu.com (2010-06-28)", + "L'ann\u00e9e 2002 dans Le Monde / M. Roche, 2003", + "Collectif de familles de victimes d\u00e9c\u00e9d\u00e9es dans l'attentat du 8 mai 2002 \u00e0 Karachi - http://www.verite-attentat-karachi.org (2010-06-28)" + ] + }, + { + "noteType": "general", + "label": [ + "8 mai 2002 : un attentat \u00e0 la voiture pi\u00e9g\u00e9e \u00e0 Karachi (Pakistan) tue 14 personnes, dont 11 Fran\u00e7ais travaillant \u00e0 la Direction des constructions navales, et fait plus de 20 bless\u00e9s (dont 12 Fran\u00e7ais)" + ] + } + ], + "pid": "145909093", + "broader": [ + { + "authorized_access_point": "Attentats - Pakistan" + }, + { + "authorized_access_point": "Pakistan - 1947-...." + } + ], + "variant_access_point": [ + "Attentat de Karachi (2002)" + ], + "md5": "a5793170a479b2307bfb6b55a405a03e" + }, + { + "type": "bf:Topic", + "authorized_access_point": "iPod touch (baladeur num\u00e9rique)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "791", + "name": "Audiovisuel" + } + ], + "identifier": "http://www.idref.fr/146923081", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/146923081", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb16232911k", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16232911" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Apple - http://www.apple.fr (2010-09-29)", + "Ipod touch / A. Glevarec, 2008", + "The iPod touch pocket guide / C. Breen, 2009" + ] + } + ], + "pid": "146923081", + "broader": [ + { + "authorized_access_point": "Lecteurs MP3" + }, + { + "authorized_access_point": "Ordinateurs de poche" + } + ], + "variant_access_point": [ + "Apple iPod touch (baladeur num\u00e9rique)" + ], + "md5": "d084f8d535295b2180c86bfdf6ff164b" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Cartes heuristiques", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "150", + "name": "Psychologie, psychanalyse" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Concept mapping", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2007007421", + "source": "LCSH" + } + ] + }, + { + "authorized_access_point": "Cartographie conceptuelle", + "source": "RVMLaval" + } + ], + "identifier": "http://www.idref.fr/147286433", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/147286433", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb16241164x", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16241164" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - http://fr.wikipedia.org (2010-11-02)", + "Mind map : dessine-moi l'intelligence / T. et B. Buzan,1995", + "Organisez votre vie avec le mind mapping / P. Mongin, X. Delengaigne, 2009" + ] + }, + { + "noteType": "general", + "label": [ + "Repr\u00e9sentations graphiques des liens entre id\u00e9es et/ou concepts sous une forme g\u00e9n\u00e9ralement arborescente. Pour des cartes mentales en g\u00e9ographie, voir la vedette \"Perception g\u00e9ographique", + "S'emploie \u00e9galement en subdivision" + ] + } + ], + "pid": "147286433", + "related": [ + { + "authorized_access_point": "Cartes cognitives" + }, + { + "authorized_access_point": "Cr\u00e9ativit\u00e9" + }, + { + "authorized_access_point": "Heuristique" + }, + { + "authorized_access_point": "Traitement de l'information (psychologie)" + } + ], + "broader": [ + { + "authorized_access_point": "M\u00e9thodes graphiques" + }, + { + "authorized_access_point": "Psychologie cognitive" + } + ], + "variant_access_point": [ + "Arborescences heuristiques", + "Arbres \u00e0 id\u00e9es", + "Arbres heuristiques", + "Cartes des id\u00e9es", + "Cartes mentales (psychologie)", + "Diagrammes heuristiques", + "Id\u00e9es, Cartes des", + "Mind mapping", + "Sch\u00e9mas heuristiques", + "Topogrammes" + ], + "md5": "b4bd630ab769bf9dfab6f25b8d5448e4" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Tablettes num\u00e9riques", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Tablet computers", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2010009240", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/148541372", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/148541372", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb162446761", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16244676" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Grand dict. terminologique : ardoise \u00e9lectronique ; tablette \u00e9lectronique ; ordinateur tablette - http://www.granddictionnaire.com (2010-12-02)", + "Faut-il se laisser tenter par la tablette num\u00e9rique ? [in] Le Particulier, 2010, 1054", + "Les syst\u00e8mes d'information de gestion / J. O'Brien, 1997 : tablettes \u00e9lectroniques" + ] + } + ], + "pid": "148541372", + "related": [ + { + "authorized_access_point": "Applications mobiles" + } + ], + "narrower": [ + { + "authorized_access_point": "Samsung Galaxy Note 8.0 (ordinateur)" + }, + { + "authorized_access_point": "Amazon Kindle Fire (ordinateur)" + }, + { + "authorized_access_point": "Microsoft Surface (ordinateur)" + }, + { + "authorized_access_point": "Google Nexus (ordinateur)" + }, + { + "authorized_access_point": "Amazon Kindle (ordinateur)" + }, + { + "authorized_access_point": "Samsung Galaxy Tab (ordinateur)" + }, + { + "authorized_access_point": "Apple iPad (ordinateur)" + } + ], + "broader": [ + { + "authorized_access_point": "Ordinateurs portatifs" + } + ], + "variant_access_point": [ + "Ardoises \u00e9lectroniques", + "Ordinateurs tablettes", + "Tablettes \u00e9lectroniques" + ], + "md5": "260895b048a9ed26d7ee85623b5ddc64" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Tol\u00e9rance religieuse - Histoire", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "200", + "name": "Religion" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "320", + "name": "Science politique" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "900", + "name": "Histoire" + } + ], + "identifier": "http://www.idref.fr/148542182", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/148542182", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb16248927m", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16248927" + } + ], + "pid": "148542182", + "related": [ + { + "authorized_access_point": "Tol\u00e9rance religieuse" + } + ], + "md5": "d9a885aeed453780fb54488d456a6efc" + }, + { + "type": "bf:Topic", + "authorized_access_point": "P\u00e8res fondateurs des \u00c9tats-Unis", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "305", + "name": "Groupes sociaux" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "320", + "name": "Science politique" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "950", + "name": "Histoire du reste du monde" + } + ], + "identifier": "http://www.idref.fr/151385432", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/151385432", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb16276915r", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16276915" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikip\u00e9dia - http://fr.wikipedia.org (2011-03-28)", + "Hist. des \u00c9tats-Unis / J.-M. Lacroix, 2010", + "Hist. des \u00c9tats-Unis : de 1776 \u00e0 nos jours / J. Portes, 2010 (p. 22)", + "Dict. des \u00c9tats-Unis / D. Royot, 2010 (art. : Constitution)", + "Une hist. populaire des \u00c9tats-Unis / H. Zinn, 2002", + "La R\u00e9volution am\u00e9ricaine / B. Cottret, 2003 (p. 305) : Founding Fathers", + "Historical dict. of Revolutionary America / T. M. Mays, 2005 : Founding Fathers" + ] + }, + { + "noteType": "general", + "label": [ + "Nom donn\u00e9 aux 56 r\u00e9dacteurs de la d\u00e9claration d'ind\u00e9pendance des \u00c9tats-Unis (1776) et aux 55 d\u00e9l\u00e9gu\u00e9s \u00e0 la Convention de Philadelphie, r\u00e9dacteurs de la Constitution am\u00e9ricaine (1787). Les principaux sont Georges Washington, James Madison, Thomas Jefferson, Benjamin Franklin, Alexander Hamilton et John Jay" + ] + } + ], + "pid": "151385432", + "broader": [ + { + "authorized_access_point": "Hommes d'\u00c9tat - \u00c9tats-Unis" + }, + { + "authorized_access_point": "\u00c9tats-Unis - 1775-1783 (R\u00e9volution)" + }, + { + "authorized_access_point": "\u00c9tats-Unis - 1783-1789 (Conf\u00e9d\u00e9ration)" + } + ], + "variant_access_point": [ + "Fondateurs des \u00c9tats-Unis", + "Founding Fathers of the United States" + ], + "md5": "3a9d628e408468f8c645fa9c418b52c2" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Prise d'otages de l'ambassade d'Iran \u00e0 Londres (1980)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "320", + "name": "Science politique" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "940", + "name": "Histoire de l'Europe" + } + ], + "identifier": "http://www.idref.fr/15212201X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/15212201X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb165050300", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16505030" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "LC online cat., 2017-06-09 : Embassy takeovers -- England -- London", + "Wikip\u00e9dia : Op\u00e9ration Nimrod - https://fr.wikipedia.org (2017-06-09)", + "Universalia 1981", + "The Longman companion to Britain since 1945 / C. Cook, J. Stevenson, 2000", + "Operation Nimrod : the Iranian Embassy Siege - http://www.eliteukforces.info - 2017-06-09 (2017-06-09)" + ] + }, + { + "noteType": "general", + "label": [ + "30 avril 1980 : un commando de 6 Arabes iraniens du Khouzistan oppos\u00e9s \u00e0 la R\u00e9publique islamique prend en otage 26 membres du personnel de l'ambassade d'Iran \u00e0 Londres, et r\u00e9clament la lib\u00e9ration de 91 prisonniers en Iran, que refuse le pr\u00e9sident Bani Sadr ; un otage est ex\u00e9cut\u00e9 et 5 sont rel\u00e2ch\u00e9s. Le 5 mai les SAS donnent l'assaut (op\u00e9ration Nimrod) : 5 des 6 membres du commando sont abattus, un otage est tu\u00e9 et 19 sont lib\u00e9r\u00e9s" + ] + } + ], + "pid": "15212201X", + "broader": [ + { + "authorized_access_point": "Otages - Grande-Bretagne" + }, + { + "authorized_access_point": "Grande-Bretagne - 1979-...." + }, + { + "authorized_access_point": "Londres (GB) - Histoire" + } + ], + "variant_access_point": [ + "Ambassade d'Iran \u00e0 Londres, Prise d'otages de l' (1980)", + "Londres, Prise d'otages de (1980)", + "Nimrod, Op\u00e9ration (1980)", + "Op\u00e9ration Nimrod (1980)", + "Otages de l'ambassade d'Iran \u00e0 Londres (1980)", + "Prise d'otages de Londres (1980)", + "Si\u00e8ge de l'ambassade d'Iran \u00e0 Londres (1980)" + ], + "md5": "15825648591329a2c8e34fef8fa4421f" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Art - Kazakhstan", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "700", + "name": "Arts (sauf litt\u00e9rature)" + } + ], + "identifier": "http://www.idref.fr/15909545X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/15909545X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb165747246", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16574724" + } + ], + "pid": "15909545X", + "related": [ + { + "authorized_access_point": "Art kazakh" + } + ], + "broader": [ + { + "authorized_access_point": "Art - [Localisations g\u00e9ographiques]" + } + ], + "md5": "deeeedef9fbb886cf3361b48a964cc8b" + }, + { + "type": "bf:Topic", + "authorized_access_point": "NoSQL", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "identifier": "http://www.idref.fr/167934813", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/167934813", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb16665965j", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16665965" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Cloud computing : une rupture d\u00e9cisive pour l'informatique d'entreprise / G. Plouin, 2011", + "Mashups : architecture des applications Web tactiques d'entreprise / J.-M. Chauvet [in] Techniques de l'ing\u00e9nieur, 2012, H6025", + "Big data glossary : a guide to the new generation of data tools / P. Warden, 2011", + "Storing and managing big data : NoSQL, Hadoop and more / K. Roebuck, 2011" + ] + } + ], + "pid": "167934813", + "related": [ + { + "authorized_access_point": "Donn\u00e9es massives" + } + ], + "broader": [ + { + "authorized_access_point": "Bases de donn\u00e9es" + } + ], + "md5": "eeabc9b558ba68de8c7e195da4914251" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Droits de l'homme et bio\u00e9thique", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "340", + "name": "Droit" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "610", + "name": "M\u00e9decine" + } + ], + "identifier": "http://www.idref.fr/168476010", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/168476010", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb16672663h", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16672663" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Code civil (art.16 \u00e0 16-9) - http://www.legifrance-gouv.fr (2013-03-26)", + "Convention d'Ovi\u00e9do du 4 avril 1997 sur les droits de l'homme et la biom\u00e9decine / Conseil de l'Europe, 1998", + "D\u00e9claration universelle sur la bio\u00e9thique et les droits de l'homme / Unesco, 2005 - http://portal.unesco.org (2013-03-26)", + "Droits de l'homme, bio\u00e9thique et rapport au corps / Commission Nationale Consultative des droits de l'homme, 2007 - http://www.cncdh.fr (2013-03-26)" + ] + } + ], + "pid": "168476010", + "related": [ + { + "authorized_access_point": "Bio\u00e9thique" + }, + { + "authorized_access_point": "Droits de l'homme" + } + ], + "variant_access_point": [ + "Bio\u00e9thique et droits de l'homme" + ], + "md5": "f36622ba6d4416cb835d022dfbdcede4" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Pr\u00e9sidents - S\u00e9n\u00e9gal - \u00c9lection (2012)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "320", + "name": "Science politique" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "950", + "name": "Histoire du reste du monde" + } + ], + "identifier": "http://www.idref.fr/169910733", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/169910733", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb166886279", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16688627" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikip\u00e9dia : \u00c9lection pr\u00e9sidentielle s\u00e9n\u00e9galaise de 2012 - http://fr.wikipedia.org (2013-06-06)", + "Les \u00e9lections pr\u00e9sidentielles au S\u00e9n\u00e9gal de mars 2012 / A. A. Sy, 2013" + ] + }, + { + "noteType": "general", + "label": [ + "26 f\u00e9vrier et 25 mars 2012 : Macky Sall (Alliance pour la R\u00e9publique) est \u00e9lu avec 65,8 % des voix face au pr\u00e9sident sortant Abdoulaye Wade (Parti d\u00e9mocratique s\u00e9n\u00e9galais)" + ] + } + ], + "pid": "169910733", + "md5": "6f0b5ddfa9d36db5ae973620008b3001" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Batailles de Bullecourt (1917)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "944", + "name": "Histoire de la France" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Bullecourt, Battle of, Bullecourt, France, 1917", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2001007955", + "source": "LCSH" + } + ] + }, + { + "authorized_access_point": "Bataille de Bullecourt, Bullecourt, France, 1917", + "source": "RVMLaval" + } + ], + "identifier": "http://www.idref.fr/17129226X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/17129226X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb167037941", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16703794" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Bullecourt / G. Keech, 1999", + "Les batailles de Bullecourt en 1917 / P. Duhamel, 2013", + "Dict. of battles and sieges / T. Jaques, 2007 (art. : Arras - 1917)", + "The Times hist. of the War, t. XV (p. 55-66)" + ] + }, + { + "noteType": "general", + "label": [ + "11 avril et 3 mai 1917 : \u00e9chec de deux offensives australiennes contre la Ligne Hindenburg \u00e0 Bullecourt (Pas-de-Calais), dans le cadre de la bataille d'Arras" + ] + } + ], + "pid": "17129226X", + "broader": [ + { + "authorized_access_point": "Bataille d'Arras (1917)" + } + ], + "variant_access_point": [ + "Bataille de Bullecourt (1917)", + "Bullecourt, Batailles de (1917)" + ], + "md5": "b15c29f8e3ffc288a4ff7c774422f0f5" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Crise bosniaque (1908-1909)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "940", + "name": "Histoire de l'Europe" + } + ], + "identifier": "http://www.idref.fr/17523308X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/17523308X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb16731093w", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16731093" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Encycl. universalis (art. : Bosnie-Herz\u00e9govine) - http://www.universalis-edu.com (2013-12-18)", + "Dict. encyclop\u00e9dique d'histoire / M. Mourre, 1996 (art. : Bosnie-Herz\u00e9govine)", + "L'empire austro-hongrois, 1815-1918 / J. B\u00e9renger, 2011", + "The decline and fall of the Habsburg Empire, 1815-1918 / A. Shed, 1995 (p. 252-253) : Bosnian crisis", + "Hist. du continent europ\u00e9en, de 1850 \u00e0 la fin du XXe si\u00e8cle / J.-M. Gaillard, A. Rowley, 1998 (p. 277-278)", + "Hist. des Balkans, XIVe-XXe si\u00e8cles / G. Castellan, 1991 (p. 367-368) : 4e crise d'Orient", + "L'Europe de 1815 \u00e0 nos jours / J.-B. Duroselle, 1993 (p. 159) : crise de Bosnie-Herz\u00e9govine" + ] + }, + { + "noteType": "general", + "label": [ + "5 octobre 1908 : l'annexion de la Bosnie-Herz\u00e9govine (sous administration austro-hongroise depuis 1878) par l'Autriche-Hongrie suscite une crise europ\u00e9enne, r\u00e9solue par une m\u00e9diation allemande (29 mars 1909) : l'Empire ottoman accepte l'annexion moyennant la restitution du sandjak de Novi Pazar" + ] + } + ], + "pid": "17523308X", + "broader": [ + { + "authorized_access_point": "Politique et gouvernement - Europe - 1871-1918" + }, + { + "authorized_access_point": "Orient, Question d' (Balkans)" + }, + { + "authorized_access_point": "Bosnie-Herz\u00e9govine - 1878-1918" + } + ], + "variant_access_point": [ + "Bosnie-Herz\u00e9govine, Crise de (1908-1909)", + "Crise de Bosnie-Herz\u00e9govine (1908-1909)" + ], + "md5": "a907ee33aaeb7c90157de0de8e1b27ad" + }, + { + "type": "bf:Topic", + "authorized_access_point": "\u00c9changes culturels danois", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "300", + "name": "Sciences sociales" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "370", + "name": "\u00c9ducation" + } + ], + "identifier": "http://www.idref.fr/17939360X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/17939360X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb16776255x", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16776255" + } + ], + "pid": "17939360X", + "md5": "92c2ec9c737646b0c5d9850582d5a376" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Sz\u00fcr", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "391", + "name": "Costume et apparence personnelle" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "640", + "name": "\u00c9conomie domestique" + } + ], + "identifier": "http://www.idref.fr/180214845", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/180214845", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb16902679z", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16902679" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "The complete costume dict. / E. J. Lewandowski, 2011", + "Encycl. of national dress / J. Condra, 2013" + ] + }, + { + "noteType": "general", + "label": [ + "Manteau traditionnel des bergers hongrois" + ] + } + ], + "pid": "180214845", + "broader": [ + { + "authorized_access_point": "Manteaux" + } + ], + "variant_access_point": [ + "Cifrasz\u00fcr" + ], + "md5": "cb9aa058d48a2b5422cfc08f16b879ba" + }, + { + "type": "bf:Topic", + "authorized_access_point": "R\u00e9f\u00e9rendum - Grande-Bretagne - \u00c9cosse (GB) - 2014", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "320", + "name": "Science politique" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "940", + "name": "Histoire de l'Europe" + } + ], + "identifier": "http://www.idref.fr/180214926", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/180214926", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb16902747m", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16902747" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikip\u00e9dia - http://fr.wikipedia.org (2014-08-07)", + "L'\u00c9cosse et la tentation de l'ind\u00e9pendance : le r\u00e9f\u00e9rendum d'autod\u00e9termination de 2014 / E. Camp-Pietrain, 2014", + "En \u00c9cosse, le oui \u00e0 l'ind\u00e9pendance progresse / \u00c9. Albert [in] Le Monde, 2014-04-12 - http://www.lemonde.fr (2014-08-07)" + ] + }, + { + "noteType": "general", + "label": [ + "R\u00e9f\u00e9rendum sur l'ind\u00e9pendance pr\u00e9vu le 8 septembre 2014" + ] + } + ], + "pid": "180214926", + "variant_access_point": [ + "R\u00e9f\u00e9rendum sur l'ind\u00e9pendance de l'\u00c9cosse (2014)" + ], + "md5": "af884b30a569b0bb49b0ade00573623d" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Prisonniers et prisons des N\u00e9erlandais", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "355", + "name": "Art et science militaires" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "900", + "name": "Histoire" + } + ], + "identifier": "http://www.idref.fr/18028505X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/18028505X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb16904476v", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16904476" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "S'emploie uniquement en subdivision aux guerres, par ex. : Guerre de Hollande (1672-1678) -- Prisonniers et prisons des N\u00e9erlandais" + ] + } + ], + "pid": "18028505X", + "md5": "6ac6ca591d9187de5d3240d413d8ebab" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Aide \u00e9conomique sud-africaine", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "330", + "name": "\u00c9conomie politique" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Economic assistance, South African", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh99002742", + "source": "LCSH" + } + ] + }, + { + "authorized_access_point": "Aide \u00e9conomique sud-africaine", + "source": "RVMLaval" + } + ], + "identifier": "http://www.idref.fr/181882604", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/181882604", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb169205548", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16920554" + } + ], + "pid": "181882604", + "broader": [ + { + "authorized_access_point": "Aide \u00e9conomique des pays BRICS" + } + ], + "md5": "a3fe8803599c9908e18be60df6a367c6" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Mississippi Freedom Project (1964)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "320", + "name": "Science politique" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "950", + "name": "Histoire du reste du monde" + } + ], + "identifier": "http://www.idref.fr/182446174", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/182446174", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb16934377j", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16934377" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikip\u00e9dia : Freedom Summer - http://fr.wikipedia.org (2014-12-23)", + "Freedom Summer : luttes pour les droits civiques, Mississippi 1964 / D. McAdam, 2012", + "Student activism and civil rights in Mississippi : protest politics and the struggle for racial justice, 1960-1965 / J. P. Marshall, 2013" + ] + }, + { + "noteType": "general", + "label": [ + "Campagne men\u00e9e au cours de l'\u00e9t\u00e9 1964 dans l'\u00c9tat du Mississippi par le Council of Federated Organizations (COFO) pour faire inscrire le maximum de Noirs sur les listes \u00e9lectorales" + ] + } + ], + "pid": "182446174", + "broader": [ + { + "authorized_access_point": "Politique et gouvernement - \u00c9tats-Unis - 1963-1969" + }, + { + "authorized_access_point": "Noirs am\u00e9ricains - 1964-...." + } + ], + "variant_access_point": [ + "Freedom Summer (Mississippi ; 1964)", + "Mississippi Summer Freedom Project (1964)", + "Summer Freedom Project (Mississippi ; 1964)" + ], + "md5": "5d3945dede53104e2504f1742a17f29f" + }, + { + "type": "bf:Topic", + "authorized_access_point": "M\u00e9tis - \u00c9tats-Unis", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "390", + "name": "Ethnologie" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Melungeons", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85083454", + "source": "LCSH" + } + ] + }, + { + "authorized_access_point": "Racially mixed people--United States", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh94000806", + "source": "LCSH" + } + ] + }, + { + "authorized_access_point": "M\u00e9tis -- \u00c9tats-Unis", + "source": "RVMLaval" + } + ], + "identifier": "http://www.idref.fr/183790936", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/183790936", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb169439535", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16943953" + } + ], + "pid": "183790936", + "broader": [ + { + "authorized_access_point": "M\u00e9tis - [Localisations g\u00e9ographiques]" + }, + { + "authorized_access_point": "Ethnologie - \u00c9tats-Unis" + } + ], + "variant_access_point": [ + "Am\u00e9ricains m\u00e9tis", + "Malungeons", + "Melungeons", + "M\u00e9tis am\u00e9ricains" + ], + "md5": "d3b444a0355c4943a0ae75cfa1666db0" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Libre circulation des personnes - Droit europ\u00e9en", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "340", + "name": "Droit" + } + ], + "identifier": "http://www.idref.fr/183791428", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/183791428", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb16945349r", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16945349" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Trait\u00e9 sur le fonctionnement de l'UE (art. 26)", + "La libre circulation des ressortissants de l'UE - http://ec.europa.eu (2015-02-12)", + "La dynamique du principe de proportionnalit\u00e9 : essai dans le contexte des libert\u00e9s de circulation du droit de l'Union europ\u00e9enne / A. Marzal-Yetano" + ] + } + ], + "pid": "183791428", + "related": [ + { + "authorized_access_point": "Libre circulation des personnes" + } + ], + "broader": [ + { + "authorized_access_point": "March\u00e9 int\u00e9rieur - Droit europ\u00e9en" + } + ], + "md5": "f9b716f33e0ae149a224c8d187ade4f7" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Euroma\u00efdan (Ukraine ; 2013-2014)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "320", + "name": "Sciences politiques" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "940", + "name": "Histoire m\u00e9di\u00e9vale, moderne et contemporaine (sauf la France)" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Ukraine--Histoire--2013-2014 (Euroma\u00efdan)", + "source": "RVMLaval" + }, + { + "authorized_access_point": "Ukraine -- History -- Euromaidan Protests, 2013-2014", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2014001396", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/184625807", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/184625807", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb16954349q", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16954349" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikidata : Euroma\u00efdan - https://www.wikidata.org/wiki/Q15224558 (2023-08-31)", + "Wikip\u00e9dia : Euroma\u00efdan - http://fr.wikipedia.org (2015-03-23)", + "Encycl. universalis (art. : Kiev) : Ma\u00efdan - http://www.universalis.fr (2015-03-23)", + "Les dessous de la R\u00e9volution ukrainienne / O. Ostriichouk [in] Le D\u00e9bat, 2014, 180 (pp. 3-16) - http://www.cairn.info (2015-03-23)", + "L'insurrection \u00e0 Kiev : lieux et acteurs / M. Sagnol [in] Les Temps modernes, 2014, 678 (pp. 148-169) - http://www.cairn.info (2015-03-23)", + "Journal de Ma\u00efdan / A. Kourkov, 2014" + ] + }, + { + "noteType": "general", + "label": [ + "21 novembre 2013 : la d\u00e9cision du gouvernement ukrainien de ne pas signer un accord d'association avec l'Union europ\u00e9enne suscite un mouvement d'opposition connu sous le nom d'Euroma\u00efdan ou Ma\u00efdan, du nom de la Place de l'Ind\u00e9pendance (Maidan Nezalejnosti) \u00e0 Kiev, lieu principal des rassemblements ; 22 f\u00e9vrier 2014 : destitution par le Parlement ukrainien du pr\u00e9sident Viktor Ianoukovitch, en fuite depuis la veille" + ] + } + ], + "pid": "184625807", + "related": [ + { + "authorized_access_point": "Guerre du Donbass (Ukraine ; 2014-....)" + }, + { + "authorized_access_point": "Guerre russo-ukrainienne (2022-....)" + } + ], + "broader": [ + { + "authorized_access_point": "Ukraine - 2013-...." + } + ], + "variant_access_point": [ + "\u0404\u0432\u0440\u043e\u043c\u0430\u0439\u0434\u0430\u043d", + "\u041c\u0430\u0439\u0434\u0430\u043d \u041d\u0435\u0437\u0430\u043b\u0435\u0436\u043d\u043e\u0441\u0442\u0456", + "Ma\u00efdan (Ukraine ; 2013-2014)", + "R\u00e9volution d'Euroma\u00efdan (Ukraine ; 2013-2014)", + "R\u00e9volution de f\u00e9vrier 2014 (Ukraine)", + "R\u00e9volution de Ma\u00efdan (Ukraine ; 2013-2014)" + ], + "md5": "5fd271904cb02cf26f1ab78015dc5e7b" + }, + { + "type": "bf:Topic", + "authorized_access_point": "AngularJS (langage de programmation)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "identifier": "http://www.idref.fr/185018440", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/185018440", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb16956089m", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16956089" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "AngularJS - https://www.angularjs.org (2015-03-30)", + "AngularJS / P. Tarasiewicz, R. B\u00f6hm, 2014", + "Learning AngularJS : a guide to AngularJS development / K. Williamson, 2015", + "AngularJS : d\u00e9veloppez aujourd'hui les applications web de demain / S. Olliver, P.-A. Gury, 2015" + ] + } + ], + "pid": "185018440", + "related": [ + { + "authorized_access_point": "Applications Web" + }, + { + "authorized_access_point": "HTML (langage de balisage)" + } + ], + "broader": [ + { + "authorized_access_point": "Langages de programmation" + } + ], + "md5": "20c930cb749d3993a782dc0aca920b9f" + }, + { + "type": "bf:Topic", + "authorized_access_point": "\u00c9diteurs de partitions (logiciels)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "780", + "name": "Musique" + } + ], + "identifier": "http://www.idref.fr/187082324", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/187082324", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb169750099", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16975009" + } + ], + "pid": "187082324", + "broader": [ + { + "authorized_access_point": "Musique par ordinateur" + } + ], + "md5": "3fdd1f7b60438a59cfed4af9aa043f9d" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Lazarus (environnement de d\u00e9veloppement d'applications)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "identifier": "http://www.idref.fr/190795786", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/190795786", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb17018624x", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17018624" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Lazarus - http://www.lazarus-ide.org (2016-01-12)", + "Getting started with Lazarus and Free Pascal : a beginners and intermediate guide to Free Pascal using Lazarus Ide / M. Abiola-Ellison, 2015" + ] + } + ], + "pid": "190795786", + "broader": [ + { + "authorized_access_point": "D\u00e9veloppement rapide d'applications" + } + ], + "md5": "d0a94b238f6f60ba9fce4438244f20db" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Schisme acacien (484-519)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "200", + "name": "Religion" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "900", + "name": "Histoire" + } + ], + "identifier": "http://www.idref.fr/190994320", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/190994320", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb16928417q", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16928417" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Th\u00e9o, 2009", + "Dict. encyclop\u00e9dique du christianisme ancien / A. Di Berardino, 1990 (art. : Acace de Constantinople)", + "Dict. encyclop\u00e9dique d'histoire / M. Mourre, 1996 (art. : Acace de Constantinople) : schisme d'Acace" + ] + } + ], + "pid": "190994320", + "related": [ + { + "authorized_access_point": "Monophysisme" + } + ], + "broader": [ + { + "authorized_access_point": "\u00c9glise - 30-600 (\u00c9glise primitive)" + }, + { + "authorized_access_point": "Schisme d'Orient" + } + ], + "variant_access_point": [ + "Acace, Schisme d'", + "Schisme d'Acace" + ], + "md5": "137c8b608d0e34243487a6c54979dcc0" + }, + { + "type": "bf:Topic", + "authorized_access_point": "R\u00e9f\u00e9rendum - Grande-Bretagne - 2016", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "320", + "name": "Science politique" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "940", + "name": "Histoire de l'Europe" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Grande-Bretagne -- Histoire -- 2016 (R\u00e9f\u00e9rendum sur la sortie de l'Union europ\u00e9enne)", + "source": "RVMLaval" + } + ], + "identifier": "http://www.idref.fr/193304104", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/193304104", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb170444330", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17044433" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikip\u00e9dia : r\u00e9f\u00e9rendum sur l'appartenance du Royaume-Uni \u00e0 l'Union europ\u00e9enne - http://fr.wikipedia.org (2017-04-27)", + "Brexit : r\u00e9sultat des sondages, d\u00e9finition, date du r\u00e9f\u00e9rendum,... 5 cl\u00e9s pour comprendre / B. Deshayes, 2016 - http://www.linternaute.com/actualite/politique/1279823-brexit-definition-date-du-referendum-resultat-consequences (2016-05-20)", + "\"Brexit\" : le jour o\u00f9 le Royaume-Uni est sorti de l'Europe [in] Le Monde, 2016-06-24 - http://www.lemonde.fr (2017-04-27)" + ] + }, + { + "noteType": "general", + "label": [ + "23 juin 2016 : 51,89 % des \u00e9lecteurs britanniques se prononcent pour la sortie du Royaume-Uni de l'Union europ\u00e9enne" + ] + } + ], + "pid": "193304104", + "broader": [ + { + "authorized_access_point": "Brexit" + } + ], + "variant_access_point": [ + "Brexit, R\u00e9f\u00e9rendum sur le (2016)", + "R\u00e9f\u00e9rendum sur l'appartenance du Royaume-Uni \u00e0 l'Union europ\u00e9enne (2016)", + "R\u00e9f\u00e9rendum sur la sortie de la Grande-Bretagne de l'Union europ\u00e9enne (2016)", + "R\u00e9f\u00e9rendum sur le Brexit (2016)", + "R\u00e9f\u00e9rendum sur le maintien de la Grande-Bretagne dans l'Union europ\u00e9enne (2016)" + ], + "md5": "8f5f066b8f253bbe2c26cb2f2f27b651" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Sauce Worcestershire", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "640", + "name": "Economie domestique, h\u00f4tellerie" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Sauce Worcestershire", + "source": "RVMLaval" + }, + { + "authorized_access_point": "Worcestershire sauce", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85148091", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/193617668", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/193617668", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb170482620", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17048262" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Bases de donn\u00e9es Marques - https://bases-marques.inpi.fr (2016-05-25)", + "La Worcester sauce / M. Dargent, 2015" + ] + }, + { + "noteType": "general", + "label": [ + "Worcestershire Sauce est une appellation commerciale" + ] + } + ], + "pid": "193617668", + "broader": [ + { + "authorized_access_point": "Sauces" + } + ], + "variant_access_point": [ + "Sauce Worcester", + "Sauce Worcestershire - Recettes", + "Worcestershire, Sauce" + ], + "md5": "97dd35f2671899766a46661ef31dedbe" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Arbitristes", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "305", + "name": "Groupes sociaux" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "330", + "name": "\u00c9conomie politique" + } + ], + "identifier": "http://www.idref.fr/196951763", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/196951763", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb170883801", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17088380" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia : arbitrismo - https://es.wikipedia.org (2016-11-24)", + "Les soci\u00e9t\u00e9s au XVIIe si\u00e8cle : Angleterre, Espagne, France / A. Antoine, C. Michon, 2006 (p. 358-359)", + "L'arbitrisme, un concept d'historien ? / A. Dubet [in] Les Cahiers du Centre de Recherches Historiques, 2000, 24 - https://ccrh.revues.org/2062 (2016-11-24)", + "La pens\u00e9e \u00e9conomique, Les auteurs : La Renaissance en Europe / J.-P. Potier, 2005 - http://ses.ens-lyon.fr/articles/les-auteurs-25452 (2016-11-24)" + ] + }, + { + "noteType": "general", + "label": [ + "Penseurs \u00e9conomiques espagnols (fin 16e-17e si\u00e8cle) qui adressaient aux autorit\u00e9s des m\u00e9moires pour que par leurs d\u00e9cisions (arbitrio) elles r\u00e9solvent les probl\u00e8mes \u00e9conomiques" + ] + } + ], + "pid": "196951763", + "broader": [ + { + "authorized_access_point": "Vie intellectuelle - Espagne - 1516-1700" + }, + { + "authorized_access_point": "\u00c9conomie politique - Jusqu'\u00e0 1800" + }, + { + "authorized_access_point": "\u00c9conomistes" + } + ], + "variant_access_point": [ + "Arbitrisme", + "Arbitrismo", + "Arbitristas" + ], + "md5": "aad9dbfa363d001258a5ac5ad6cba4c5" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Assistants personnels intelligents (logiciels)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "identifier": "http://www.idref.fr/197956653", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/197956653", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb17100386p", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17100386" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "\"Dis Siri\", enqu\u00eate sur le g\u00e9nie \u00e0 l'int\u00e9rieur du smartphone / N. Santolaria, 2016", + "Le deuxi\u00e8me \u00e2ge de la machine : travail et prosp\u00e9rit\u00e9 \u00e0 l'heure de la r\u00e9volution technologique / E. Brynjolfsson, A. McAfee, 205", + "Tous digitalis\u00e9s : et si votre futur avait commenc\u00e9 sans vous ? / M. Diaz, 2015 (p. 58)" + ] + } + ], + "pid": "197956653", + "broader": [ + { + "authorized_access_point": "Agents intelligents (logiciels)" + }, + { + "authorized_access_point": "Interfaces utilisateur (informatique)" + } + ], + "variant_access_point": [ + "Assistants intelligents", + "Assistants num\u00e9riques", + "Assistants personnels virtuels", + "Assistants virtuels" + ], + "md5": "90eafab81e6f9c5a327fd221274cb7c0" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Dans la Bible", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "200", + "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)" + } + ], + "identifier": "http://www.idref.fr/197957358", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/197957358", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb17103399r", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17103399" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "S'emploie uniquement en subdivision" + ] + }, + { + "noteType": "seeReference", + "label": [ + "Voir aussi la subdivision Enseignement biblique" + ] + } + ], + "pid": "197957358", + "related": [ + { + "authorized_access_point": "Dans la litt\u00e9rature" + }, + { + "authorized_access_point": "Enseignement biblique" + } + ], + "variant_access_point": [ + "Dans l'Ancien Testament", + "Dans le Nouveau Testament", + "Dans les livres bibliques", + "Repr\u00e9sentation biblique", + "Repr\u00e9sentation dans la Bible", + "Th\u00e8me biblique" + ], + "md5": "8095da7af9497ffd83d73492631438a3" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Dans le Coran", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "200", + "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)" + } + ], + "identifier": "http://www.idref.fr/199344019", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/199344019", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb171125084", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17112508" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "S'emploie uniquement en subdivision" + ] + }, + { + "noteType": "seeReference", + "label": [ + "Voir aussi la subdivision Enseignement coranique" + ] + } + ], + "pid": "199344019", + "related": [ + { + "authorized_access_point": "Dans la litt\u00e9rature" + }, + { + "authorized_access_point": "Enseignement coranique" + } + ], + "variant_access_point": [ + "Repr\u00e9sentation coranique", + "Repr\u00e9sentation dans le Coran", + "Th\u00e8me coranique" + ], + "md5": "b698c35b92ee3bdfccda89095b793697" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Table des Rangs (Russie)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "300", + "name": "Sciences sociales" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "940", + "name": "Histoire de l'Europe" + } + ], + "identifier": "http://www.idref.fr/199344248", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/199344248", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb17113185q", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17113185" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikip\u00e9dia : Table des Rangs - https://fr.wikipedia.org (2017-03-09)", + "Hist. de la Russie des tsars / R. Pipes, 2013", + "Pierre le Grand : le premier empereur de toutes les Russies / F.-D. Liechtenhan, 2015 (p. 327-330)", + "Pierre le Grand : et son oeuvre / V. O. Klioutchevski, 1991 (p. 107-108)", + "\u00c0 propos de la notion de service dans la noblesse russe au XVIIIe et XIXe si\u00e8cles / M. Confino [in] Cahiers du monde russe et sovi\u00e9tique, 1993, 34, 1-2 (p. 47-58) - http://www.persee.fr (2017-03-09)", + "Encycl. of Russian hist. / J. R. Millar, 2004 : Table of Ranks", + "Historical dict. of Russia / B. Raymond, P. Duffy, 1998 : Tabel o Rangakh (Table of Ranks)" + ] + }, + { + "noteType": "general", + "label": [ + "Table cr\u00e9\u00e9e par un oukase de Pierre le Grand du 24 janvier/4 f\u00e9vrier 1722, hi\u00e9rarchisant en 14 degr\u00e9s la noblesse, d\u00e9finie comme l'ensemble des serviteurs de l'\u00c9tat (tchinovniki), civils, militaires et de la Cour. Elle fut abolie le 11 novembre 1917" + ] + } + ], + "pid": "199344248", + "broader": [ + { + "authorized_access_point": "Conditions sociales - Russie - 1801-1917" + }, + { + "authorized_access_point": "Noblesse - Russie" + }, + { + "authorized_access_point": "Stratification sociale" + } + ], + "variant_access_point": [ + "\u010cin, Table des (Russie)", + "Rangs, Table des (Russie)", + "Tabel' o rangakh (Russie)", + "Table des \u010din (Russie)", + "Table des tchins (Russie)", + "Table imp\u00e9riale des Rangs (Russie)", + "Tchins, Table des (Russie)" + ], + "md5": "d0fcca899f13b9e287af7219ad2bd9d0" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Groupes de combat de la classe ouvri\u00e8re (R\u00e9publique d\u00e9mocratique allemande)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "320", + "name": "Science politique" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Betriebskampfgruppe", + "source": "GND", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4240507-5", + "source": "GND" + } + ] + }, + { + "authorized_access_point": "Sozialistische Einheitspartei Deutschlands. Kampfgruppen der Arbeitsklasse", + "source": "GND", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1041423551", + "source": "GND" + } + ] + } + ], + "identifier": "http://www.idref.fr/200582038", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/200582038", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb171224020", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17122402" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikip\u00e9dia - https://fr.wikipedia.org (2017-04-24)", + "Hist. de la RDA / S. Lorrain, 1994 (p. 42)", + "Fronti\u00e8res du communisme / S. Carr\u00e9, S. Dullin, 2007", + "Berlin, guerre des images d'une m\u00e9moire partag\u00e9e (1945-1989) / C. Delage [in] Vingti\u00e8me si\u00e8cle, 1992, 34 - http://www.jstor.org (2017-04-24)", + "The German democratic Republic / P. Grider, 2012 : Combat groups of the working class", + "Proletarischer Mythos und realer Sozialismus : die Kampfgruppen der Arbeitsklasse in der DDR / T. Siebeneichner, 2014" + ] + }, + { + "noteType": "general", + "label": [ + "Organisations paramilitaires d'employ\u00e9s dans les entreprises de la R\u00e9publique d\u00e9mocratique allemande (1953-1989), d\u00e9pendant du SED" + ] + } + ], + "pid": "200582038", + "broader": [ + { + "authorized_access_point": "Forces paramilitaires" + } + ], + "variant_access_point": [ + "Betriebskampfgruppen (R\u00e9publique d\u00e9mocratique allemande)", + "Groupes de combat d'entreprise (R\u00e9publique d\u00e9mocratique allemande)", + "Kampfgruppen der Arbeitsklasse (R\u00e9publique d\u00e9mocratique allemande)" + ], + "md5": "f1662a82154ff55d893252be26ba325d" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Cuisine albanaise", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "640", + "name": "\u00c9conomie domestique" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Cooking, Albanian", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh98003206", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/200884530", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/200884530", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb171255547", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17125554" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Du pain, du sel et du coeur, recettes de cuisine albanaise / R. Cela Grasset, 2017", + "The best of Albanian cooking : favorite family recipes / K. et R. John Hysa, 1998" + ] + } + ], + "pid": "200884530", + "broader": [ + { + "authorized_access_point": "Cuisine balkanique" + } + ], + "variant_access_point": [ + "Cuisine albanaise - Albanie" + ], + "md5": "2247d87bd784c0a8ae558a5ea1b57592" + }, + { + "type": "bf:Topic", + "authorized_access_point": "M\u00e9ridionalisme (Italie)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "300", + "name": "Sciences sociales" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "330", + "name": "\u00c9conomie politique" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "360", + "name": "Probl\u00e8mes et services sociaux" + } + ], + "identifier": "http://www.idref.fr/204008557", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/204008557", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb17149211h", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17149211" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia : meridionalismo - https://it.wikipedia.org (2017-09-07)", + "L'\u00e9mergence d'un n\u00e9o-m\u00e9ridionalisme politique en Italie : vers l'accroissement de la fracture territoriale ? / A. Fazzi [in] Critique internationale, 2011/1, 50 (p. 111-128) - http://www.cairn.info (2017-09-07)", + "Meridionalismo critico : scritti sulla questione meridionale (1945-1973) / B. Caizzi, 1998", + "Tradizione e attualit\u00e0 del meridionalismo / S. Cafiero, 1989" + ] + }, + { + "noteType": "general", + "label": [ + "\u00c9tudes sp\u00e9cialis\u00e9es sur le d\u00e9veloppement \u00e9conomique, social et culturel de l'Italie du Sud, en particulier dans le cadre de l'\u00c9tat unitaire italien" + ] + } + ], + "pid": "204008557", + "broader": [ + { + "authorized_access_point": "Conditions \u00e9conomiques - Italie" + }, + { + "authorized_access_point": "Conditions sociales - Italie" + } + ], + "related": [ + { + "authorized_access_point": "R\u00e9gionalisme" + }, + { + "authorized_access_point": "Italie (sud)" + } + ], + "variant_access_point": [ + "\u00c9tudes m\u00e9ridionalistes (Italie)", + "Meridionalismo", + "Question m\u00e9ridionale (Italie)" + ], + "md5": "2d5baead9d085fceb44ba7f2fc6a099e" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Google Android Studio (environnement de d\u00e9veloppement d'applications)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "identifier": "http://www.idref.fr/219951152", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/219951152", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb17153081w", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17153081" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Android developers - https://developer.android.com (2017-09-26)", + "D\u00e9marrer avec Android Studio / B. Hohensee, 2014", + "Expert Android Studio / M. Yener, O. Dundar, 2016", + "Android Studio cookbook / M. van Drongelen, 2015" + ] + } + ], + "pid": "219951152", + "broader": [ + { + "authorized_access_point": "G\u00e9n\u00e9rateurs (logiciels)" + } + ], + "variant_access_point": [ + "Android Studio (environnement de d\u00e9veloppement d'applications)" + ], + "md5": "c72d99cc651b5475f9c42523b1bbe4cb" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Black Lives Matter (mouvement)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "320", + "name": "Science politique" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "330", + "name": "\u00c9conomie politique" + } + ], + "identifier": "http://www.idref.fr/219966540", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/219966540", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb17156838p", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17156838" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikip\u00e9dia : Black Lives Matter - https://fr.wikipedia.org (2019-01-10)", + "Black Lives Matter : un nouveau souffle pour les voix des Noirs / R. Diallo [in] Lib\u00e9ration, 2016-05-28 - http://www.liberation.fr (2019-01-10)", + "The making of Black lives matter : a brief history of an idea / C. J. Lebron, 2017", + "Black Lives Matter - https://blacklivesmatter.com (2019-01-10)" + ] + }, + { + "noteType": "general", + "label": [ + "Mouvement militant afro-am\u00e9ricain apparu en 2013, qui se mobilise contre la violence et le racisme syst\u00e9mique envers les Noirs" + ] + } + ], + "pid": "219966540", + "broader": [ + { + "authorized_access_point": "Politique et gouvernement - \u00c9tats-Unis - 2009-2017" + }, + { + "authorized_access_point": "Mouvements sociaux - \u00c9tats-Unis" + } + ], + "related": [ + { + "authorized_access_point": "Mouvements des droits civiques" + }, + { + "authorized_access_point": "Noirs am\u00e9ricains - Droits" + }, + { + "authorized_access_point": "Lutte contre le racisme" + } + ], + "variant_access_point": [ + "Black Lives Matter", + "BLM", + "Les vies des Noirs comptent (mouvement)", + "Mouvement Black Lives Matter", + "Les vies des Noirs comptent (mouvement)" + ], + "md5": "b4b62d3f97e33ba16cd7464c5005e2b9" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Massacre d'Asaba (1967)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "950", + "name": "Histoire du reste du monde" + } + ], + "identifier": "http://www.idref.fr/223495913", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/223495913", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb17703943t", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17703943" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia : Asaba massacre - https://en.wikipedia.org (2018-10-11)", + "La crise du Biafra / J.-L. Clergerie, 1994 (p. 239)", + "The Asaba massacre : trauma, memory, and the Nigerian civil war / S. E. Bird, F. M. Ottanelli, 2017", + "The history and legacy of the Asaba, Nigeria, Massacres / S. E. Bird, F. Ottanelli [in] African studies Review, 2011, 54 - https://www.cambridge.org (2018-10-11)", + "Asaba massacre of 1967 / Oldnaija - https://oldnaija.org (2018-10-11)" + ] + }, + { + "noteType": "general", + "label": [ + "5-7 octobre 1967 : massacres par l'arm\u00e9e nig\u00e9riane de la population civile d'Asaba, majoritairement ibo et soup\u00e7onn\u00e9e de connivence avec les Biafrais : le 5, les militaires entrent dans la ville, pillent et tuent hommes, femmes et enfants ; le 7, ils rassemblent \u00e0 l'\u00e9cart la population masculine et l'ex\u00e9cutent \u00e0 la mitrailleuse (plus de 1000 victimes au total) ; dans les jours suivants les femmes et filles sont viol\u00e9es ou mari\u00e9es de force" + ] + } + ], + "pid": "223495913", + "broader": [ + { + "authorized_access_point": "Massacres - Nigeria" + }, + { + "authorized_access_point": "Nigeria - 1967-1970 (Guerre civile) - Atrocit\u00e9s" + } + ], + "related": [ + { + "authorized_access_point": "Asaba (Nigeria)" + } + ], + "variant_access_point": [ + "Asaba, Massacre d' (1967)", + "Massacres d'Asaba (1967)" + ], + "md5": "4794494c5a69837992fa431746c50c40" + }, + { + "type": "bf:Topic", + "authorized_access_point": "App Inventor (environnement de d\u00e9veloppement d'applications)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "identifier": "http://www.idref.fr/223831840", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/223831840", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb177092571", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17709257" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "MIT App Inventor - http://appinventor.mit.edu (2018-01-22)", + "Absolute App Inventor 2 : Android programming for all / H. Amerkashi, 2015", + "App Inventor 2 : create your own Android apps, 2014", + "Learning MIT App Inventor : a hands-on guide to building your own Android apps / D. Walter, M. Sherman, 2014" + ] + } + ], + "pid": "223831840", + "broader": [ + { + "authorized_access_point": "G\u00e9n\u00e9rateurs (logiciels)" + } + ], + "variant_access_point": [ + "App Inventor pour Android (environnement de d\u00e9veloppement d'applications)" + ], + "md5": "dd6181faebcfbb4b18f98271f46e272b" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Service diplomatique et consulaire paraguayen", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "320", + "name": "Science politique" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Diplomatic and consular service, Paraguayan", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2017003944", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/225382520", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/225382520", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb17720890r", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17720890" + } + ], + "pid": "225382520", + "md5": "2dc8e521aa234b6278d8c2748a230fa8" + }, + { + "type": "bf:Topic", + "authorized_access_point": "R\u00e9f\u00e9rendum - Irlande - 1972", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "320", + "name": "Science politique" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "940", + "name": "Histoire de l'Europe" + } + ], + "identifier": "http://www.idref.fr/227367677", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/227367677", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb177386832", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17738683" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikip\u00e9dia : r\u00e9f\u00e9rendum irlandais sur l'adh\u00e9sion aux communaut\u00e9s europ\u00e9ennes - http://fr.wikipedia.org (2018-06-01)", + "Dict. encyclop\u00e9dique d'histoire / M. Mourre, 1996", + "Hist. de l'Irlande : de 1912 \u00e0 nos jours / A. Slaby, 2016" + ] + }, + { + "noteType": "general", + "label": [ + "10 mai 1972 : l'adh\u00e9sion de la R\u00e9publique d'Irlande aux Communaut\u00e9s europ\u00e9ennes (3e amendement de la Constitution de 1937) est approuv\u00e9e par 83 % des votants, avec un taux de participation de 70,8 %; elle est effective le 1er janvier 1973" + ] + } + ], + "pid": "227367677", + "relation_pid": { + "value": "226068277", + "type": "redirect_from" + }, + "variant_access_point": [ + "Adh\u00e9sion de l'Irlande aux Communaut\u00e9s europ\u00e9ennes, R\u00e9f\u00e9rendum sur l' (1972)", + "R\u00e9f\u00e9rendum sur l'adh\u00e9sion aux Communaut\u00e9s europ\u00e9ennes (Irlande ; 1972)", + "R\u00e9f\u00e9rendum sur l'adh\u00e9sion de l'Irlande aux Communaut\u00e9s europ\u00e9ennes (1972)" + ], + "md5": "b021be3042b9a9034c5796c2b8e186e2" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Mouvement v\u00f6lkisch", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "320", + "name": "Science politique" + } + ], + "identifier": "http://www.idref.fr/227858689", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/227858689", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb177411580", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17741158" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikip\u00e9dia - https://fr.wikipedia.org (2018-06-12)", + "Encycl. universalis (art. : Extr\u00eame droite) : v\u00f6lkisch allemands - http://www.universalis-edu.com (2018-06-12)", + "Aspects du fondamentalisme national en Allemagne de 1890 \u00e0 1945 / L. Dupeux, 2001 (p. 173-175)", + "L'Europe et le mythe de l'Occident : la construction d'une histoire / G. Corm, 2012", + "Handbuch zur \"V\u00f6lkischen Bewegung\" 1871-1918 / U. Puschner, W. Schmitz, J. H. Ulbricht, 1996" + ] + }, + { + "noteType": "general", + "label": [ + "Mouvement intellectuel et politique allemand (deuxi\u00e8me moiti\u00e9 du 19e si\u00e8cle et d\u00e9but du 20e si\u00e8cle), d'inspiration nationaliste, ethniciste et n\u00e9opa\u00efenne" + ] + } + ], + "pid": "227858689", + "broader": [ + { + "authorized_access_point": "Vie intellectuelle - Allemagne - 1871-1918" + }, + { + "authorized_access_point": "Nationalisme" + } + ], + "related": [ + { + "authorized_access_point": "N\u00e9opaganisme" + } + ], + "variant_access_point": [ + "V\u00f6lkisch, Mouvement", + "V\u00f6lkische Bewegung" + ], + "md5": "426d5946cd0234e7eead8a294dc5cf3f" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Relations Sud-Sud", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "320", + "name": "Science politique" + } + ], + "identifier": "http://www.idref.fr/228803608", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/228803608", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb17744530f", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17744530" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Hist. contemporaine des relations Sud-Sud. Les contours d'une \u00e9volution graduelle / F. Soul\u00e9-Kohndou [in] Afrique contemporaine, 2013, 248, (p. 108-111) - https://www.cairn.info (2018-06-26)", + "Les relations Sud-Sud : culture et diplomatie [n\u00b0 sp\u00e9cial de] Cahiers d'Am\u00e9rique latine, 2015, 80", + "Les nouvelles alliances Sud-Sud et le r\u00f4le des relations tricontinentales dans la crise / P. Hugon [in] Revue internationale et strat\u00e9gique, 2012, 86 (p. 57-65) - https://www.cairn.info (2018-06-26)" + ] + }, + { + "noteType": "seeReference", + "label": [ + "Voir aussi la subdivision Relations ext\u00e9rieures aux continents et pays du Sud, par ex. : Am\u00e9rique latine -- Relations ext\u00e9rieures -- Pays arabes" + ] + } + ], + "pid": "228803608", + "broader": [ + { + "authorized_access_point": "Relations ext\u00e9rieures - Pays en voie de d\u00e9veloppement" + } + ], + "narrower": [ + { + "authorized_access_point": "Coop\u00e9ration entre pays en voie de d\u00e9veloppement" + } + ], + "variant_access_point": [ + "Relations internationales Sud-Sud", + "Sud-Sud, Relations" + ], + "md5": "75c46061835d3c5850515a20f05a6164" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Vaquois", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "580", + "name": "Botanique" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Vacoa", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2009007922", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/232818665", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/232818665", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb17780931r", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17780931" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Grand dict. encyclop\u00e9dique Larousse", + "Encycl. universalis (art. : Pandanales) - http://www.universalis-edu.com (2018-12-11)", + "Inventaire National du Patrimoine Naturel - http://inpn.mnhn.fr (2018-12-11)", + "Le bon jardinier, 1992 (art. : Pandanus)", + "Elsevier's dict. of plant names, 1996", + "ITIS : Pandanus utilis - https://www.itis.gov (2018-12-11)", + "NCBI : Pandanus utilis - https://www.ncbi.nlm.nih.gov/Taxonomy (2018-12-11)", + "Dict. of plant names in Latin, German, English and French / H. Nikolov, 1996 : Pandanus utilis ; vacoi" + ] + } + ], + "pid": "232818665", + "related": [ + { + "authorized_access_point": "Travail des feuilles de vaquois" + } + ], + "broader": [ + { + "authorized_access_point": "Pandanus" + } + ], + "variant_access_point": [ + "Baquois", + "Pandanus utilis", + "Vacoi", + "Vacoi utile", + "Vacoua" + ], + "md5": "94e1f908a08d391e51771c82abb67d14" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Microsoft Internet Information Services (serveur)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "identifier": "http://www.idref.fr/234183721", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/234183721", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15077072v", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF15077072" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Internet Information Services 6 / [Johnny Brochard], cop. 2005" + ] + }, + { + "noteType": "general", + "label": [ + "Int\u00e8gre des fonctionnalit\u00e9s de serveur Web. IIS 6.0 fonctionne uniquement sur Microsoft Windows Server 2003" + ] + } + ], + "pid": "234183721", + "broader": [ + { + "authorized_access_point": "Serveurs Web" + } + ], + "variant_access_point": [ + "Microsoft Internet Information Services 6.0 (serveur)", + "IIS (serveur)" + ], + "md5": "4baf4210a745804510ce4457313d68ec" + }, + { + "type": "bf:Topic", + "authorized_access_point": "\u00c9cosyst\u00e8mes d'applications mobiles (informatique)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Software ecosystems", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2014000122", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/236280147", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/236280147", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18064574d", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18064574" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Mission d'expertise sur la fiscalit\u00e9 de l'\u00e9conomie num\u00e9rique / P. Collin, N. Colin, 2013 - https://www.economie.gouv.fr (2023-02-17)", + "Le guide de la transformation digitale / V. Dreney, E. Vivier, 2016", + "Encycl. of e-commerce development, implementation, and management, 2016 : mobile application ecosystem", + "Competition in the mobile application ecosystem / Department of commerce, february 2023 - https://www.ntia.gov (2023-02-16)", + "\u00c9cosyst\u00e8me des architectures mobiles / O. Cata, 2017 - https://www.asprom.com (2023-02-27)", + "Tizen, le concurrent d'Android et d'iOS, est presque mort-n\u00e9 / Y. Rousseau [in] Les \u00e9chos, n\u00b0 21609 du 21-01-2014" + ] + } + ], + "pid": "236280147", + "related": [ + { + "authorized_access_point": "Logiciels - D\u00e9veloppement" + }, + { + "authorized_access_point": "OSI (architecture de r\u00e9seaux)" + }, + { + "authorized_access_point": "Smartphones" + }, + { + "authorized_access_point": "Syst\u00e8mes d'exploitation (ordinateurs)" + } + ], + "broader": [ + { + "authorized_access_point": "Applications mobiles" + }, + { + "authorized_access_point": "\u00c9conomie num\u00e9rique" + } + ], + "variant_access_point": [ + "Ecosystem of communication apps (informatique)", + "\u00c9cosyst\u00e8mes d'applications de communication (informatique)", + "Mobile application ecosystem", + "Software ecosystems" + ], + "md5": "f7aedabfdf0500c3c3e53fea3ecfdcf8" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Coop\u00e9ration politique europ\u00e9enne (1986-1992)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "320", + "name": "Sciences politiques" + } + ], + "closeMatch": [ + { + "authorized_access_point": "European Political Cooperation", + "source": "LCA", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/names/n91064789", + "source": "LCA" + } + ] + } + ], + "identifier": "http://www.idref.fr/26110683X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/26110683X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18001102g", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18001102" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikip\u00e9dia - http://fr.wikipedia.org (2022-03-03)", + "Eurovoc : PESC - http://eurovoc.europa.eu (2022-03-03)", + "Aux origines de la diplomatie europ\u00e9enne : les neuf et la coop\u00e9ration politique europ\u00e9enne de 1973 \u00e0 1980 / M. G\u0103inar, 2012", + "La Dynamique int\u00e9grationniste des communaut\u00e9s europ\u00e9ennes : \u00e0 travers la Coop\u00e9ration politique europ\u00e9enne, CPE et l'Acte unique / V. Monte, 1990" + ] + }, + { + "noteType": "general", + "label": [ + "Projet de coordination des politiques \u00e9trang\u00e8res entre les \u00c9tats membres amorc\u00e9e d\u00e8s les ann\u00e9es 1970. La CPE est int\u00e9gr\u00e9e dans le Trait\u00e9 sur l'Union europ\u00e9enne (1986) et officialis\u00e9e par la \u00abpolitique \u00e9trang\u00e8re de s\u00e9curit\u00e9 commune (1992). La coop\u00e9ration politique europ\u00e9enne (CPE) est l'anc\u00eatre de la politique \u00e9trang\u00e8re et de s\u00e9curit\u00e9 commune (PESC) et de la politique europ\u00e9enne de s\u00e9curit\u00e9 et de d\u00e9fense (PESD) de l'Union europ\u00e9enne" + ] + } + ], + "pid": "26110683X", + "related": [ + { + "authorized_access_point": "Politique de s\u00e9curit\u00e9 et de d\u00e9fense commune" + }, + { + "authorized_access_point": "Politique \u00e9trang\u00e8re et de s\u00e9curit\u00e9 commune" + } + ], + "broader": [ + { + "authorized_access_point": "Politique et gouvernement - Pays de l'Union europ\u00e9enne" + } + ], + "variant_access_point": [ + "Cooperazione politica europea", + "CPE", + "EPC", + "Europ\u00e4ische Politische Zusammenarbeit", + "European Political Co-operation", + "European Political Cooperation", + "Politique \u00e9trang\u00e8re europ\u00e9enne" + ], + "md5": "868316e9163395a03b97e66b273b2809" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Syst\u00e8me de Law", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "330", + "name": "Economie" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "944", + "name": "Histoire de la France (depuis 486)" + } + ], + "identifier": "http://www.idref.fr/261107119", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/261107119", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb180021330", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18002133" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikip\u00e9dia : Syst\u00e8me de Law - http://fr.wikipedia.org (2022-03-09)", + "Lexique d'\u00e9conomie / A. Silem, J.-M. Albertini, 2002 (art. : Law (Syst\u00e8me bancaire de John))", + "Histoire du syst\u00e8me de John Law, 1716-1720 / N. Dutot, 2020", + "The medals concerning John Law and the Mississippi system / J. W. Adams, 2005" + ] + }, + { + "noteType": "general", + "label": [ + "Mis en place progressivement \u00e0 partir de 1716, le Syst\u00e8me de Law constitue la premi\u00e8re exp\u00e9rience de papier-monnaie men\u00e9e en France. Il a pour objectif initial d'assainir les finances publiques fran\u00e7aises en facilitant le commerce et l'investissement. Syst\u00e8me \u00e0 l'origine des premi\u00e8res grandes \u00e9missions de titres boursiers. La banque royale de John Law, autoris\u00e9e par le r\u00e9gent, \u00e9met des billets \u00e0 cours forc\u00e9 en 1718 et la Compagnie du Mississipi lanc\u00e9e en 1717 fait l'objet d'une sp\u00e9culation \u00e9ffr\u00e9n\u00e9e qui se terminera en faillite en 1720. La banqueroute du syst\u00e8me de Law retardera par la suite l'emploi de la monnaie fiduciaire et la cr\u00e9ation d'une banque centrale en France" + ] + } + ], + "pid": "261107119", + "related": [ + { + "authorized_access_point": "Banqueroute" + }, + { + "authorized_access_point": "Papier-monnaie" + }, + { + "authorized_access_point": "Sp\u00e9culation" + } + ], + "broader": [ + { + "authorized_access_point": "Histoire \u00e9conomique - 1600-1750" + }, + { + "authorized_access_point": "France - 1715-1723 (R\u00e9gence)" + } + ], + "variant_access_point": [ + "Law, Syst\u00e8me bancaire de", + "Law, Syst\u00e8me de", + "Mississippi system", + "Syst\u00e8me bancaire de John Law", + "Syst\u00e8me du Mississipi" + ], + "md5": "f624295665bcd45ddf73d6fc1c75a892" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Et Alexandrie", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "915" + } + ], + "identifier": "http://www.idref.fr/261901915", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/261901915", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18007814v", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18007814" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "S'emploie uniquement en subdivision aux collectivit\u00e9s (\u00e0 l'exception des types de collectivit\u00e9s) et aux personnes", + "Pour l'application g\u00e9n\u00e9rale de cette subdivision, voir les notes sous le renvoi g\u00e9n\u00e9ral Et [nom g\u00e9ographique]" + ] + } + ], + "pid": "261901915", + "broader": [ + { + "authorized_access_point": "Et l'\u00c9gypte" + } + ], + "md5": "3f0150ab311beaf55944f6cbb4a8437c" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Relation avec Jonas", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "200", + "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)" + } + ], + "identifier": "http://www.idref.fr/263499758", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/263499758", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb180221609", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18022160" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "S'emploie uniquement en subdivision aux livres ou groupes de livres de l'Ancien et du Nouveau Testament, par ex. : Bible. A.T.. Exode -- Relation avec Jonas", + "On \u00e9tablit une vedette-mati\u00e8re additionnelle inverse, par ex. : Bible. A.T.. Jonas -- Relation avec l'Exode" + ] + } + ], + "pid": "263499758", + "broader": [ + { + "authorized_access_point": "Relation avec les Petits Proph\u00e8tes" + } + ], + "variant_access_point": [ + "Relation avec le Livre de Jonas" + ], + "md5": "d347831c39b651939d9c89259534dfaf" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Colonies australiennes", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "915" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "950" + } + ], + "identifier": "http://www.idref.fr/264222423", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/264222423", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb17996787t", + "source": "BNF" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "S'emploie \u00e9galement en subdivision" + ] + } + ], + "pid": "264222423", + "broader": [ + { + "authorized_access_point": "Colonies" + } + ], + "md5": "8fde9b5e3e3773b057bde47a7a49d649" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Zainichi", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "390", + "name": "Ethnologie, anthropologie, folklore" + } + ], + "identifier": "http://www.idref.fr/264325974", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/264325974", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18004124h", + "source": "BNF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Le Japon : dict. et civilisation / L. Fr\u00e9d\u00e9ric, 1996", + "Hist. politique du Japon de 1853 \u00e0 nos jours / E. Dufourmont, 2020 : Zainichi ch\u00f4senjin", + "La langue japonaise est-elle la \"m\u00e8re\" des Zainichi ? / A. Hosoi [in] Transtext(e)s transcultures 2013, 8", + "Zainichi, les Cor\u00e9ens du Japon / M. Lesage [in] Journal du Japon, 2020-11-08 - https://www.journaldujapon.com (2022-03-21)", + "Routledge handbook of Japanese culture and society / V. Lyon Bestor, T. C. Bestor, 2011 : Zainichi Koreans" + ] + }, + { + "noteType": "general", + "label": [ + "Cor\u00e9ens \u00e9tablis au Japon entre 1910 et 1945 et leurs descendants. Le nom donn\u00e9 par les Japonais est p\u00e9joratif et signifie \u00e0 l'origine \"soleil de gauche\" ou \"ceux qui r\u00e9sident au Japon", + "L'adjectif ethnique correspondant est \"zainichi\". Il est invariable" + ] + } + ], + "pid": "264325974", + "broader": [ + { + "authorized_access_point": "Cor\u00e9ens" + }, + { + "authorized_access_point": "Ethnologie - Japon" + } + ], + "related": [ + { + "authorized_access_point": "Cor\u00e9e - 1910-1945 (Occupation japonaise)" + } + ], + "variant_access_point": [ + "Cor\u00e9ens (Zainichi)", + "Cor\u00e9ens zainichi", + "Zainichi ch\u00f4senjin", + "Zainichi kankokuch\u00f4senjin" + ], + "md5": "625423f2bb749eaa7e846c6c488e9fd6" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Guyaniens", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "390", + "name": "Ethnologie, anthropologie, folklore" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Guyanese", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85058026", + "source": "LCSH" + } + ] + }, + { + "authorized_access_point": "Guyanais", + "source": "RVMLaval" + } + ], + "identifier": "http://www.idref.fr/264387414", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/264387414", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18006303k", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18006303" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Encycl. Larousse (art. : Guyana) - https://www.larousse.fr", + "Robert encyclop\u00e9dique des noms propres, 2008 (art. : Guyana) : Guyanais ou Guyaniens", + "Nouveau petit Robert 2009 (partie d\u00e9riv\u00e9s des noms propres) : guyanais, aise ou guyanien, ienne (2022-03-31)" + ] + }, + { + "noteType": "general", + "label": [ + "Sous cette vedette, obligatoirement suivie d'une subdivision g\u00e9ographique ou de la subdivision : \u00c0 l'\u00e9tranger, directement ou apr\u00e8s une subdivision de sujet, on trouve les documents sur les Guyaniens hors de la Guyana. Les documents sur les Guyaniens en Guyana se trouvent sous des vedettes-mati\u00e8re telles que : Moeurs et coutumes -- Guyana ; etc" + ] + } + ], + "pid": "264387414", + "narrower": [ + { + "authorized_access_point": "Am\u00e9ricains d'origine guyanienne" + } + ], + "broader": [ + { + "authorized_access_point": "Ethnologie - Guyana" + } + ], + "variant_access_point": [ + "Guyanais (de la Guyana)" + ], + "md5": "53bf71ffe535164072157ab28a768e52" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Bergamasques", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "390", + "name": "Ethnologie, anthropologie, folklore" + } + ], + "identifier": "http://www.idref.fr/264387538", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/264387538", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18005762z", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18005762" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Grand dict. encyclop\u00e9dique Larousse (art. : Bergame)", + "Robert encyclop\u00e9dique des noms propres, 2008 (art. : Bergame)", + "Tr\u00e9sor de la langue fran\u00e7aise (en ligne) : bergamasque" + ] + }, + { + "noteType": "general", + "label": [ + "Sous cette vedette, obligatoirement suivie d'une subdivision g\u00e9ographique ou de la subdivision : \u00c0 l'\u00e9tranger, directement ou apr\u00e8s une subdivision de sujet, on trouve les documents sur les Bergamasques hors de la ville ou de la province de Bergame. Les documents sur les Bergamasques \u00e0 Bergame se trouvent sous des vedettes-mati\u00e8re telles que : Moeurs et coutumes -- Bergame (italie) ; Moeurs et coutumes -- Bergame (Italie ; province) ; etc" + ] + } + ], + "pid": "264387538", + "narrower": [ + { + "authorized_access_point": "Voyageurs bergamasques" + } + ], + "broader": [ + { + "authorized_access_point": "Ethnologie - Italie" + } + ], + "md5": "0329aeae0a6b4eb4563dfa69227192b0" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Percherons", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "390", + "name": "Ethnologie, anthropologie, folklore" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Percherons", + "source": "RVMLaval" + } + ], + "identifier": "http://www.idref.fr/26438833X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/26438833X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18005688c", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18005688" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Grand dict. encyclop\u00e9dique Larousse : percheron, onne", + "Nouveau petit Robert 2009 (partie d\u00e9riv\u00e9s des noms propres) (art. : Perche (France)) : percheron, onne", + "Du Perche au Canada : qui \u00e9taient ces colons fran\u00e7ais du XVIIIe si\u00e8cle ? [in] Geo Histoire, 2021, 55 - https://www.geo.fr (2022-03-29)" + ] + }, + { + "noteType": "general", + "label": [ + "Sous cette vedette, obligatoirement suivie d'une subdivision g\u00e9ographique ou de la subdivision : \u00c0 l'\u00e9tranger, directement ou apr\u00e8s une subdivision de sujet, on trouve les documents sur les Percherons hors du Perche. Les documents sur les Percherons dans le Perche se trouvent sous des vedettes-mati\u00e8re telles que : Moeurs et coutumes -- Perche (France) ; etc" + ] + } + ], + "pid": "26438833X", + "broader": [ + { + "authorized_access_point": "Ethnologie - France" + } + ], + "variant_access_point": [ + "Percherons (habitants du Perche)" + ], + "md5": "32e06b2c935a8ed8df23199a85c6fe20" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Paradoxographie", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "200", + "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "801", + "name": "Po\u00e9sie" + } + ], + "identifier": "http://www.idref.fr/271981423", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/271981423", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb180991357", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18099135" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Paradoxographie et religion / M. Garc\u00eda Teijeiro, M. T. Molinos Tejada [in] Kernos : revue internationale et pluridisciplinaire de religion grecque antique, 1994, 7 - https://journals.openedition.org/kernos (2023-08-29)", + "The Oxford dict. of Byzantium / A. P. Kazhdan, 2005 - https://www.oxfordreference.com (2023-08-29)", + "Religion past and present - https://referenceworks.brillonline.com (2023-08-29)", + "The Oxford classical dict. / S. Hornblower, A. Spawforth, 2005 : paradoxographers - https://www.oxfordreference.com (2023-08-29)", + "Wikidata : paradoxography - https://www.wikidata.org/wiki/Q686892 (2023-08-29)" + ] + } + ], + "pid": "271981423", + "related": [ + { + "authorized_access_point": "Merveilleux (litt\u00e9rature)" + }, + { + "authorized_access_point": "Paradoxe" + } + ], + "broader": [ + { + "authorized_access_point": "Litt\u00e9rature antique" + } + ], + "variant_access_point": [ + "Paradoxographes" + ], + "md5": "097b612f1218a4e7b04cb23fcb3ddbe9" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Prix Goncourt des animaux", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "000", + "name": "G\u00e9n\u00e9ralit\u00e9s" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" + } + ], + "identifier": "http://www.idref.fr/27874690X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/27874690X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181480099", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18148009" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikidata : Goncourt des animaux - https://www.wikidata.org/wiki/Q56256265 (2024-05-22)", + "Wikip\u00e9dia : Goncourt des animaux - https://fr.wikipedia.org (2024-05-22)", + "Le palmar\u00e8s du Prix Litt\u00e9raire 30 Millions d'Amis - http://www.lalettredulibraire.com (2024-05-22)", + "120 ans de prix Goncourt : une histoire litt\u00e9raire fran\u00e7aise / J.-Y. Le Naour, C. Valenti, 2023", + "Vincent Maillard, Prix Litt\u00e9raire 30 Millions d'Amis / M. De Roux, A. Develey [in] Le Figaro, 23 nov. 2021" + ] + }, + { + "noteType": "general", + "label": [ + "Prix litt\u00e9raire 30 millions d'amis, plus couramment appel\u00e9 le Goncourt des animaux, est un prix annuel qui r\u00e9compense un roman ou un essai qui met \u00e0 l'honneur les animaux" + ] + } + ], + "pid": "27874690X", + "broader": [ + { + "authorized_access_point": "Prix litt\u00e9raires - France" + } + ], + "variant_access_point": [ + "30 millions d'amis, Prix litt\u00e9raire", + "Goncourt des animaux", + "Goncourt des animaux, Prix", + "Prix litt\u00e9raire 30 millions d'amis" + ], + "md5": "7e2046542e708d46c140b1919f7dc52f" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Allemand langue \u00e9trang\u00e8re", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "370", + "name": "Education et enseignement" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "400", + "name": "Langues et linguistique" + } + ], + "closeMatch": [ + { + "authorized_access_point": "German language--Study and teaching--Foreign speakers", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2008105237", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/278746969", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/278746969", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181481652", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18148165" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikidata - https://www.wikidata.org/wiki/Q1201953 (2024-05-23)", + "Wikip\u00e9dia : Deutsch als Fremdsprache - https://de.wikipedia.org (2024-05-23)", + "Deutsch als Fremdsprache : eine Einf\u00fchrung / H.-W. Huneke, W. Steinig, 2013", + "Ma\u00eetriser la communication professionnelle : en fran\u00e7ais et en langue \u00e9trang\u00e8re : allemand, anglais, espagnol, italien : BTS assistant de direction, BTS assistant trilingue, 1997", + "Optimal A1 : cours d'allemand langue \u00e9trang\u00e8re : glossaire allemand-fran\u00e7ais A1, 1994" + ] + } + ], + "pid": "278746969", + "broader": [ + { + "authorized_access_point": "Allemand (langue)" + } + ], + "variant_access_point": [ + "ALE", + "Allemand (langue) - \u00c9tude et enseignement -- Allophones", + "Allemand (langue) - \u00c9tude et enseignement -- \u00c9tudiants \u00e9trangers", + "Allemand (langue) - \u00c9tude et enseignement -- Non-anglophones", + "Allemand (langue \u00e9trang\u00e8re) - \u00c9tude et enseignement", + "Allemand (langue seconde)", + "Allemand comme langue \u00e9trang\u00e8re", + "DaF", + "Deutsch als Fremdsprache", + "German as a foreign language" + ], + "md5": "f999eac4ffd108aaa83fc010bf340afe" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Prix Fran\u00e7oise-Sagan", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "000", + "name": "G\u00e9n\u00e9ralit\u00e9s" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" + } + ], + "identifier": "http://www.idref.fr/278746985", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/278746985", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181483210", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18148321" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikip\u00e9dia : Prix Fran\u00e7oise-Sagan - https://fr.wikipedia.org (2024-05-23)", + "Prix Fran\u00e7oise Sagan - https://www.francoisesagan.fr/le-prix (2024-05-23)", + "Prix Fran\u00e7oise Sagan - https://www.livreshebdo.fr/prix-litteraires/tous-les-prix/prix-francoise-sagan (2024-05-22)" + ] + }, + { + "noteType": "general", + "label": [ + "Prix litt\u00e9raire cr\u00e9\u00e9 en 2010 par Denis Westhoff, fils de Fran\u00e7oise Sagan. Il r\u00e9compense chaque ann\u00e9e une oeuvre en langue fran\u00e7aise d'un auteur n'ayant pas une notori\u00e9t\u00e9 trop importante et n'ayant pas re\u00e7u de prix ou de r\u00e9compense majeure pr\u00e9c\u00e9demment" + ] + } + ], + "pid": "278746985", + "broader": [ + { + "authorized_access_point": "Prix litt\u00e9raires - France" + } + ], + "variant_access_point": [ + "Fran\u00e7oise-Sagan, Prix", + "Fran\u00e7oise-Sagan, Prix litt\u00e9raire", + "Fran\u00e7oise Sagan, Prix", + "Fran\u00e7oise Sagan, Prix litt\u00e9raire", + "Prix Fran\u00e7oise Sagan", + "Prix litt\u00e9raire Fran\u00e7oise-Sagan", + "Prix litt\u00e9raire Fran\u00e7oise Sagan" + ], + "md5": "845f6e9f6b149d97bc8026e100475058" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Prix Marcel-Pagnol", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "000", + "name": "G\u00e9n\u00e9ralit\u00e9s" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" + } + ], + "identifier": "http://www.idref.fr/278746993", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/278746993", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181483330", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18148333" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Prix Marcel Pagnol - https://www.marcel-pagnol.com/manifestations/prix-marcel-pagnol (2024-05-23)", + "Les cinq finalistes du prix Marcel Pagnol 2024 / E. Carreira [in] LivresHebdo, 30 avr. 2024", + "Attribution du prix Marcel-Pagnol 2024 / E. Carreira [in] L'Humanit\u00e9, 8 juin 2000" + ] + }, + { + "noteType": "general", + "label": [ + "Prix litt\u00e9raire cr\u00e9\u00e9 en 2000 qui r\u00e9compense chaque ann\u00e9e un roman en langue fran\u00e7aise sur le th\u00e8me du souvenir d'enfance" + ] + } + ], + "pid": "278746993", + "broader": [ + { + "authorized_access_point": "Prix litt\u00e9raires - France" + } + ], + "variant_access_point": [ + "Marcel-Pagnol, Prix", + "Marcel-Pagnol, Prix litt\u00e9raire", + "Marcel Pagnol, Prix", + "Marcel Pagnol, Prix litt\u00e9raire", + "Prix Marcel Pagnol", + "Prix litt\u00e9raire Marcel-Pagnol", + "Prix litt\u00e9raire Marcel Pagnol" + ], + "md5": "042ab675aac80ed3f15428953944fc25" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Intervention en s\u00e9ance unique", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "150", + "name": "Psychologie, psychanalyse" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Single-session psychotherapy", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh90001965", + "source": "LCSH" + } + ] + }, + { + "authorized_access_point": "Psychoth\u00e9rapie en une s\u00e9ance", + "source": "RVMLaval" + } + ], + "identifier": "http://www.idref.fr/278747000", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/278747000", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18148359p", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18148359" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Intervention en s\u00e9ance unique (ISU) : un projet novateur au CISSS de la Mont\u00e9r\u00e9gie-Ouest, [in] Portail Sant\u00e9 Mont\u00e9r\u00e9gie, 19 juin 2023 - https://www.santemonteregie.qc.ca (2024-05-23)", + "Probl\u00e8mes de d\u00e9pendance des enfants : Vitalit\u00e9 tente une nouvelle strat\u00e9gie / S. Paquette [in] Acadie nouvelle, 16 jan. 2023", + "Une s\u00e9ance unique avec un psy pour g\u00e9rer un probl\u00e8me / M.-E. Cousineau, [in] Le devoir, 13 juin 2022" + ] + } + ], + "pid": "278747000", + "broader": [ + { + "authorized_access_point": "Psychoth\u00e9rapie br\u00e8ve" + } + ], + "variant_access_point": [ + "ISU", + "Psychoth\u00e9rapie en une s\u00e9ance", + "Th\u00e9rapie \u00e0 s\u00e9ance unique" + ], + "md5": "64e6ac462f068ab8f48fe73b38b98050" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Implants vestibulaires", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "610", + "name": "Sciences m\u00e9dicales et param\u00e9dicales" + } + ], + "identifier": "http://www.idref.fr/278747019", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/278747019", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181487542", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18148754" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "L'oreille interne artificielle : implant cochl\u00e9aire et vestibulaire / J.-P. Guyot, M. Pelizzone [in] Revue m\u00e9dicale suisse, 2023, 845-2", + "Challenges anatomiques de la voie extralabyrinthique pour l'implantation vestibulaire / M. Senol, 2023 [th\u00e8se]" + ] + } + ], + "pid": "278747019", + "broader": [ + { + "authorized_access_point": "Neuroproth\u00e8ses" + }, + { + "authorized_access_point": "Proth\u00e8ses auditives" + } + ], + "variant_access_point": [ + "Neuroproth\u00e8ses vestibulaires" + ], + "md5": "2ebe1aeacfcb5e652edff3fdbf0155a8" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Anomalies microvasculaires intrar\u00e9tiniennes", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "610", + "name": "Sciences m\u00e9dicales et param\u00e9dicales" + } + ], + "identifier": "http://www.idref.fr/278747043", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/278747043", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18148767d", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18148767" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Kanski, ophtalmologie clinique : une approche syst\u00e9matique / J. F. Salmon, J. Chammas, R. K. Khanna, 2021", + "Progression de la r\u00e9tinopathie diab\u00e9tique durant la grossesse [in] Journal fran\u00e7ais d'ophtalmologie, 2010, 33, 5", + "R\u00e9tinopathie diab\u00e9tique / P. Massin, A. Erginay, 2010", + "Dict. de l'Acad\u00e9mie de m\u00e9decine : anomalie microvasculaire intrar\u00e9tinienne de la r\u00e9tinopathie diab\u00e9tique (AMIR) - https://www.academie-medecine.fr/le-dictionnaire (2024-05-31)" + ] + } + ], + "pid": "278747043", + "broader": [ + { + "authorized_access_point": "R\u00e9tinopathie diab\u00e9tique" + } + ], + "variant_access_point": [ + "AMIR (maladies)", + "Anomalies microvasculaires intrar\u00e9tiniennes de la r\u00e9tinopathie diab\u00e9tique", + "R\u00e9tinopathie diab\u00e9tique, Anomalies microvasculaires intrar\u00e9tiniennes de la" + ], + "md5": "4a220b2d03dd2c364b0bf4450f1c2bb7" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Facteur de transcription SOX11", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "570", + "name": "Sciences de la vie" + } + ], + "identifier": "http://www.idref.fr/278747167", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/278747167", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18148935b", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18148935" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Physiopathologie du lymphome \u00e0 cellules du manteau / D. Chiron [in] Horizons h\u00e9mato, 2016, 6, 2", + "Duplication de g\u00e9nome et \u00e9volution de la famille Sox chez les poissons t\u00e9l\u00e9ost\u00e9ens / E. Voldoire, 2013 [th\u00e8se]" + ] + } + ], + "pid": "278747167", + "broader": [ + { + "authorized_access_point": "Facteurs de transcription" + } + ], + "variant_access_point": [ + "Facteur de transcription SOX-11", + "SOX11" + ], + "md5": "ab8bcf37415256fb70b34c6a27c4e7a3" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Gouttelettes lipidiques", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "570", + "name": "Sciences de la vie" + } + ], + "identifier": "http://www.idref.fr/278747175", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/278747175", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181489716", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18148971" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. th\u00e9matique de biologie / C. Blanchet, 2020", + "La gouttelette lipidique : un nouvel organite ? / P. Roingeard [in] M\u00e9decine/sciences, 2013, 29, 5", + "D\u00e9veloppement, architecture et dynamique des gouttelettes lipidiques de la diatom\u00e9e Phaeodactylum tricornutum / J. Lupette, 2016 [th\u00e8se]", + "Un regard neuf sur les gouttelettes lipidiques des adipocytes : jouent-elles un r\u00f4le dans la d\u00e9tection de l'\u00e9tat du stock de triglyc\u00e9rides ? / C. Blouin, E. Hajduch, I. Dugail [in] Journal de la Soci\u00e9t\u00e9 de biologie, 2006, 200, 1" + ] + } + ], + "pid": "278747175", + "related": [ + { + "authorized_access_point": "Lipides" + } + ], + "broader": [ + { + "authorized_access_point": "Organites" + } + ], + "variant_access_point": [ + "Adiposomes" + ], + "md5": "bce576faae3120f6002d87abb01ebfe3" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Polyphonie (litt\u00e9rature)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "801", + "name": "Po\u00e9sie" + } + ], + "identifier": "http://www.idref.fr/278747183", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/278747183", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18148976x", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18148976" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Vocabulaire de l'analyse litt\u00e9raire / D. Bergez, V. G\u00e9raud, J.-J. Robrieux, 1994", + "Dict. des termes litt\u00e9raires, 2001", + "Dict. des termes litt\u00e9raires, 2005", + "Les figures \u00e0 l'\u00e9preuve du discours : dialogisme et polyphonie, 2012" + ] + } + ], + "pid": "278747183", + "related": [ + { + "authorized_access_point": "Carnavalesque" + }, + { + "authorized_access_point": "Dialogisme" + }, + { + "authorized_access_point": "Dialogue (litt\u00e9rature)" + }, + { + "authorized_access_point": "Intertextualit\u00e9" + } + ], + "broader": [ + { + "authorized_access_point": "Litt\u00e9rature - Esth\u00e9tique" + } + ], + "md5": "e16aec93df814cf77a42db16d3cff7ee" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Facteur de croissance IGF-1", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "570", + "name": "Sciences de la vie" + } + ], + "identifier": "http://www.idref.fr/278747191", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/278747191", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18149178n", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18149178" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Loterre : Nutrition artificielle (th\u00e9saurus) - https://www.loterre.fr (2024-05-29)", + "Existe-t-il une relation entre la dose d'hormone de croissance et d'\u00e9ventuelles complications tumorales ou cardiovasculaires ? / Y. Le Bouc, F. Brioude [in] Bulletin de l'Acad\u00e9mie nationale de m\u00e9decine, 2012, 196, 1", + "Dict. de biologie / J. Berthet, 2007 (art. : IGF) : IGF-1", + "Dict. de m\u00e9decine Flammarion, 2008 (art. : Somatom\u00e9dine) : IGF I", + "Dict. illustr\u00e9 des termes de m\u00e9decine, 2012 (art. : IGF) : IGF I", + "Dict. de l'Acad\u00e9mie de m\u00e9decine (art. : IGF) : IGF-I - https://www.academie-medecine.fr/le-dictionnaire (2024-05-29)" + ] + } + ], + "pid": "278747191", + "broader": [ + { + "authorized_access_point": "Facteurs de croissance IGF" + } + ], + "variant_access_point": [ + "IGF-1 (prot\u00e9ine)", + "IGF-I (prot\u00e9ine)", + "IGF I (prot\u00e9ine)", + "IGF1 (prot\u00e9ine)", + "IGFI (prot\u00e9ine)", + "Insulin-like growth factor-1", + "Somatom\u00e9dine C" + ], + "md5": "ba50b1ae9c2192927c95e70fc0bf029f" + }, + { + "type": "bf:Topic", + "authorized_access_point": "M\u00e9decine magn\u00e9tique", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "100", + "name": "Philosophie" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "130", + "name": "Esot\u00e9risme, ph\u00e9nom\u00e8nes paranormaux" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "610", + "name": "Sciences m\u00e9dicales et param\u00e9dicales" + } + ], + "identifier": "http://www.idref.fr/27874723X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/27874723X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181498804", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18149880" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "L'onguent armaire entre science et folklore m\u00e9dical. Pour une \u00e9pist\u00e9mologie historique du concept de gu\u00e9rison / R. Poma [in] Archives de philosophie, 2010, 73, 4", + "L'harmonie au prisme du mesm\u00e9risme : recompositions scientifiques, politiques et morales au tournant des XVIIIe et XIXe si\u00e8cles [in] La R\u00e9volution fran\u00e7aise : cahiers de l'Institut d'histoire de la R\u00e9volution fran\u00e7aise, 2023, 24", + "Petite hist. des rem\u00e8des magn\u00e9tiques / P. Pinet [in] Revue d'histoire de la pharmacie, 2008, 360", + "Exposition \u00ab Savoirs cach\u00e9s \u00bb, du 19 septembre au 22 d\u00e9cembre 2021, Biblioth\u00e8que Sainte-Genevi\u00e8ve - https://genovefa.bsg.univ-paris3.fr/s/esoterisme/page/accueil (2024-05-31)" + ] + }, + { + "noteType": "general", + "label": [ + "Sous cette vedette, on trouve les documents sur le courant de pens\u00e9e m\u00e9dicale datant du XVII\u00e8me si\u00e8cle. Les documents sur le traitement des maladies \u00e0 l'aide de champs magn\u00e9tiques se trouvent sous Magn\u00e9toth\u00e9rapie" + ] + } + ], + "pid": "27874723X", + "related": [ + { + "authorized_access_point": "Magn\u00e9tisme animal" + }, + { + "authorized_access_point": "Magn\u00e9toth\u00e9rapie" + }, + { + "authorized_access_point": "Mesm\u00e9risme" + } + ], + "broader": [ + { + "authorized_access_point": "M\u00e9decine - Philosophie" + }, + { + "authorized_access_point": "M\u00e9decine et \u00e9sot\u00e9risme" + } + ], + "md5": "7cfde1c77eb53c9a6546b9d71b80be9a" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Portiques (architecture) - Italie", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "690", + "name": "B\u00e2timent" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "720", + "name": "Architecture" + } + ], + "identifier": "http://www.idref.fr/278747280", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/278747280", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18150656r", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18150656" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "LC online cat., 2024-06-04 : Porticoes -- Italy" + ] + } + ], + "pid": "278747280", + "broader": [ + { + "authorized_access_point": "Portiques (architecture) - [Localisations g\u00e9ographiques]" + } + ], + "md5": "5acb671f8ee7fa0efca1bc89683fab6f" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Animateurs de radio tch\u00e9coslovaques", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "305" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "390", + "name": "Ethnologie, anthropologie, folklore" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "791", + "name": "Audiovisuel" + } + ], + "identifier": "http://www.idref.fr/278747329", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/278747329", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18151274t", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18151274" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Sous cette vedette, obligatoirement suivie d'une subdivision g\u00e9ographique ou de la subdivision : \u00c0 l'\u00e9tranger, directement ou apr\u00e8s une subdivision de sujet, on trouve les documents sur les animateurs de radio tch\u00e9coslovaques hors de Tch\u00e9coslovaquie. Les documents sur les animateurs de radio tch\u00e9coslovaques en Tch\u00e9coslovaquie se trouvent sous des vedettes-mati\u00e8re telles que : Animateurs de radio -- Tch\u00e9coslovaquie ; Animateurs de radio -- [Subdivision de sujet] -- Tch\u00e9coslovaquie ; etc" + ] + } + ], + "pid": "278747329", + "broader": [ + { + "authorized_access_point": "Tch\u00e9coslovaques" + } + ], + "md5": "b5af416af0e60006733fab047f373218" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Facteur de transcription Nrf2", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "570", + "name": "Sciences de la vie" + } + ], + "identifier": "http://www.idref.fr/279034725", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279034725", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181050359", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18105035" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "R\u00f4le du facteur de transcription Nrf2 dans le contr\u00f4le de l'allergie cutan\u00e9e en r\u00e9ponse aux mol\u00e9cules allergisantes / Z. El Ali, 2013 [th\u00e8se]", + "R\u00f4le du facteur de transcription Nrf2 dans la r\u00e9gulation des fonctions du neutrophile in vitro et dans l'allergie cutan\u00e9e / D. Helou, 2018 [th\u00e8se]", + "La voie Nrf2 en pathologie respiratoire [in] M\u00e9decine/sciences, 2011, 27, 11" + ] + } + ], + "pid": "279034725", + "broader": [ + { + "authorized_access_point": "Facteurs de transcription" + } + ], + "variant_access_point": [ + "Facteur de transcription Nrf-2", + "NF-E2-related factor 2", + "Nrf-2 (prot\u00e9ine)", + "Nrf2 (prot\u00e9ine)", + "Nuclear factor E2-related factor 2", + "Nuclear factor erythroid-2-related factor 2" + ], + "md5": "21decc29e2b77175892775495943ee73" + }, + { + "type": "bf:Topic", + "authorized_access_point": "G\u00e8ne DCLRE1B/Apollo", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "570", + "name": "Sciences de la vie" + } + ], + "identifier": "http://www.idref.fr/279034733", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279034733", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18140209x", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18140209" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "\u00c9tude fonctionnelle de mutants de DCLRE1B/Apollo dans l'oncogen\u00e8se r\u00e9nale / C. Bories, 2023 [th\u00e8se]", + "DCLRE1B/Apollo germline mutations associated with renal cell carcinoma impair telomere protection [in] BBA. Molecular basis of disease, 2024, 1870, 4" + ] + } + ], + "pid": "279034733", + "broader": [ + { + "authorized_access_point": "G\u00e8nes" + } + ], + "variant_access_point": [ + "Apollo/DCLRE1B (g\u00e8ne)", + "DCLRE1B/Apollo (g\u00e8ne)", + "G\u00e8ne Apollo/DCLRE1B" + ], + "md5": "779ec3e784a4ce407da3a6b57a05fd6b" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Conception universelle de l'apprentissage", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "370", + "name": "Education et enseignement" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Conception universelle de l'apprentissage", + "source": "RVMLaval" + } + ], + "identifier": "http://www.idref.fr/279034741", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279034741", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181489491", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18148949" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Valeurs et modalit\u00e9s de mise en \u0153uvre de la conception universelle de l'apprentissage dans les pays de langue fran\u00e7aise : une \u00e9tude de port\u00e9e / D. Odier-Guedj, L. Lef\u00e8vre, M.-E. Boisvert Hamelin, [in] La nouvelle revue - \u00c9ducation et soci\u00e9t\u00e9 inclusives, 2023, 97, 3", + "L'utilisation des principes de la conception universelle de l'apprentissage pour le d\u00e9veloppement d'un programme d'interventions bas\u00e9es sur la pr\u00e9sence attentive pour les personnes adolescentes de 12 \u00e0 19 ans / C. Duranleau, N. Rousseau, F. Dionne [in] \u00c9ducation et francophonie, 2023, 51, 1", + "La conception universelle de l'apprentissage : un \u00ab pont dynamique \u00bb entre une diff\u00e9renciation p\u00e9dagogique et une \u00e9valuation humaniste ? / C. Eid [in] Contextes et didactiques, 2019, 13" + ] + } + ], + "pid": "279034741", + "related": [ + { + "authorized_access_point": "Apprentissage" + }, + { + "authorized_access_point": "Int\u00e9gration scolaire" + } + ], + "broader": [ + { + "authorized_access_point": "P\u00e9dagogie" + } + ], + "variant_access_point": [ + "Accessibilit\u00e9 universelle \u00e0 l'apprentissage", + "Conception universelle de l'enseignement", + "CUA", + "CUE", + "P\u00e9dagogie universelle" + ], + "md5": "7007a983d1b880e9931e7926af50c850" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Roman choral", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "801", + "name": "Po\u00e9sie" + } + ], + "identifier": "http://www.idref.fr/27903475X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/27903475X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181496990", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18149699" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Roman choral : fiction \u00e0 voix multiples / J. Domingues de Almeida et F. Outeirinho, 2024", + "Le Roman Polyphonique / B. Thibault [in] Dani\u00e8le Sallenave et le don des morts, Collection Monographique Rodopi en Litt\u00e9rature Fran\u00e7aise Contemporaine, 2004, 40", + "Le roman au XVIIIe si\u00e8cle en Europe / A. Montandon, 1999, p. 221" + ] + }, + { + "noteType": "general", + "label": [ + "Proc\u00e9d\u00e9 narratif, ne rel\u00e8ve pas du r\u00e9f\u00e9rentiel genre/forme" + ] + } + ], + "pid": "27903475X", + "related": [ + { + "authorized_access_point": "Point de vue (litt\u00e9rature)" + } + ], + "broader": [ + { + "authorized_access_point": "Narration" + }, + { + "authorized_access_point": "Roman - Technique" + } + ], + "variant_access_point": [ + "Roman polyphonique", + "Roman \u00e0 plusieurs voix", + "Roman \u00e0 voix multiples" + ], + "md5": "25baae94747a6e4eedd73beb8b6f0387" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Durotaxie", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "570", + "name": "Sciences de la vie" + } + ], + "identifier": "http://www.idref.fr/279034806", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279034806", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181509228", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18150922" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Influence de la rigidit\u00e9 du substrat sur la migration des cellules souches de la pulpe dentaire / C. Ehlinger, 2020 [th\u00e8se]", + "La migration des cellules et leur sensibilit\u00e9 aux propri\u00e9t\u00e9s physiques de la matrice extracellulaire : r\u00f4le d'ICAP-1, un r\u00e9gulateur des int\u00e9grines et de la contractilit\u00e9 / M. R\u00e9gent, 2011 [th\u00e8se]", + "Activit\u00e9 et r\u00e9ponse \u00e0 une blessure d'un tapis de cellules [in] Reflets de la physique, 2010, 18" + ] + } + ], + "pid": "279034806", + "broader": [ + { + "authorized_access_point": "Cellules - Motilit\u00e9" + }, + { + "authorized_access_point": "Taxie" + } + ], + "variant_access_point": [ + "Durotactisme" + ], + "md5": "0ddbb1532903f60100a8e875736b861b" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Cellules souches pluripotentes", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "570", + "name": "Sciences de la vie" + } + ], + "identifier": "http://www.idref.fr/279034814", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279034814", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18150984t", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18150984" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Vitrine linguistique - https://vitrinelinguistique.oqlf.gouv.qc.ca (2024-06-05)", + "Tour d'horizon des lign\u00e9es de cellules souches pluripotentes / E. Kieffer, S. Kuntz, S. Viville [in] M\u00e9decine/sciences, 2010, 26, 10", + "Biologie cellulaire et mol\u00e9culaire, 2022" + ] + } + ], + "pid": "279034814", + "broader": [ + { + "authorized_access_point": "Cellules souches" + } + ], + "md5": "cfa32fb19b08099dca8a372680f2ac69" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Esk\u00e9tamine", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "540", + "name": "Chimie, min\u00e9ralogie, cristallographie" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "615" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Esketamine", + "source": "MeSH", + "identifiedBy": [ + { + "type": "uri", + "value": "https://id.nlm.nih.gov/mesh/M000647133", + "source": "MeSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/279034822", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279034822", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181510341", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18151034" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "eVidal - https://evidal.vidal.fr (2024-06-11)", + "La d\u00e9couverte des propri\u00e9t\u00e9s antid\u00e9pressives de la k\u00e9tamine / P. de Maricourt, R. Gaillard [in] Annales m\u00e9dico-psychologiques, revue psychiatrique, 2017, 175, 7", + "Psychotropes du futur : de l'imipramine \u00e0 la k\u00e9tamine [in] Bulletin de l'Acad\u00e9mie nationale de m\u00e9decine, 2020, 204, 9", + "PubChem : esketamine - https://pubchem.ncbi.nlm.nih.gov (2024-06-11)" + ] + } + ], + "pid": "279034822", + "broader": [ + { + "authorized_access_point": "Antid\u00e9presseurs" + }, + { + "authorized_access_point": "K\u00e9tamine" + } + ], + "md5": "6b42fd79fa678e35eb251d13462d2032" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Flux 4D", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "610", + "name": "Sciences m\u00e9dicales et param\u00e9dicales" + } + ], + "identifier": "http://www.idref.fr/279034849", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279034849", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18151339k", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18151339" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Le flux 4D : technique et principales applications pour l'\u00e9tude de l'aorte thoracique [in] Journal d'imagerie diagnostique et interventionnelle, 2021, 4, 2", + "Scanner et imagerie par r\u00e9sonance magn\u00e9tique des cardiopathies cong\u00e9nitales \u00e0 l'\u00e2ge adulte [in] EMC. Radiologie et imagerie m\u00e9dicale. Cardiovasculaire - thoracique - cervicale, 2022, 40, 4", + "\u00c9valuation des flux en imagerie par r\u00e9sonance magn\u00e9tique cardiaque : l'imagerie de flux 4D / J.-F. Paul [in] Annales de cardiologie et d'ang\u00e9iologie, 2020, 69, 5" + ] + } + ], + "pid": "279034849", + "broader": [ + { + "authorized_access_point": "Imagerie par r\u00e9sonance magn\u00e9tique" + } + ], + "variant_access_point": [ + "Imagerie de flux 4D", + "IRM 4D de flux", + "IRM 4D flow", + "IRM de contraste de phase 4D", + "IRM de flux 4D", + "IRM en flux 4D", + "IRM flux 4D" + ], + "md5": "1133348db635cf607f8bc2da8df23fce" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Travail des feuilles de vaquois", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "740", + "name": "Dessin, arts d\u00e9coratifs, artisanat d'art" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "793", + "name": "Jeux" + } + ], + "identifier": "http://www.idref.fr/279034881", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279034881", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181517370", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18151737" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "\u00ab Le parlage des jeunes \u00bb \u00e0 la R\u00e9union : bilan et perspectives / G. Ledegen [in] Cahiers de sociolinguistique, 2004, 1, 9", + "An\u00e9antir : les ex\u00e9cutions capitales \u00e0 l'\u00eele Bourbon (1803-1848) / B. Maillard [in] Annales historiques de la R\u00e9volution fran\u00e7aise, 2023, 4, 414", + "L'\u00eele Maurice et la soci\u00e9t\u00e9 mauricienne / L. Simonnin [in] La Revue des Deux Mondes, 1861, 36, 1" + ] + } + ], + "pid": "279034881", + "related": [ + { + "authorized_access_point": "Vaquois" + } + ], + "broader": [ + { + "authorized_access_point": "Vannerie" + } + ], + "variant_access_point": [ + "Feuilles de vacoa tress\u00e9es", + "Feuilles de vaquois tress\u00e9es", + "Objets en feuilles de vacoa", + "Objets en feuilles de vaquois", + "Ouvrages en feuilles de vacoa", + "Ouvrages en feuilles de vaquois", + "Travail des feuilles de vacoa", + "Tressage des feuilles de vacoa", + "Tressage des feuilles de vaquois" + ], + "md5": "7abc84a86271171cc636c7eb289dab34" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Musiciens africains", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "305" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "390", + "name": "Ethnologie, anthropologie, folklore" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "780", + "name": "Musique" + } + ], + "identifier": "http://www.idref.fr/27903492X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/27903492X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18152251d", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18152251" + } + ], + "pid": "27903492X", + "broader": [ + { + "authorized_access_point": "Artistes africains" + } + ], + "md5": "9e921a719f8d5e893ce3f9140ca68280" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Viticulteurs italiens", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "305" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "330", + "name": "Economie" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "390", + "name": "Ethnologie, anthropologie, folklore" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "630", + "name": "Agriculture, \u00e9levage" + } + ], + "identifier": "http://www.idref.fr/279034946", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279034946", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181525308", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18152530" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Sous cette vedette, obligatoirement suivie d'une subdivision g\u00e9ographique ou de la subdivision : \u00c0 l'\u00e9tranger, directement ou apr\u00e8s une subdivision de sujet, on trouve les documents sur les viticulteurs italiens hors d'Italie. Les documents sur les viticulteurs italiens en Italie se trouvent sous des vedettes-mati\u00e8re telles que : Viticulteurs -- Italie ; Viticulteurs -- [Subdivision de sujet] -- Italie ; etc" + ] + } + ], + "pid": "279034946", + "broader": [ + { + "authorized_access_point": "Italiens" + } + ], + "md5": "b259cb236e90c0f31b5a7f9f4b6cbbed" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Co-exposition", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "570", + "name": "Sciences de la vie" + } + ], + "identifier": "http://www.idref.fr/279034962", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279034962", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18152715x", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18152715" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "\u00c9tude de la co-exposition aux contraintes physiques et aux produits chimiques neurotoxiques chez les salari\u00e9s des Pays de la Loire [in] Archives des maladies professionnelles et de l'environnement, 2014, 75, 4", + "Risques li\u00e9s \u00e0 la co-exposition bruit et substances chimiques ototoxiques / C. Dematteo, T. Kerebel, A.-H. Liebert, 2005 [rapport]", + "Multi-exposition en milieu urbain : approche multi-\u00e9chelle de l'exposition humaine au bruit et \u00e0 la pollution atmosph\u00e9rique / Q. Tenailleau, 2014 [th\u00e8se]", + "Polyexpositions - https://www.inrs.fr (2024-06-14)" + ] + } + ], + "pid": "279034962", + "related": [ + { + "authorized_access_point": "Polluants" + }, + { + "authorized_access_point": "Pollution" + } + ], + "variant_access_point": [ + "Coexposition", + "Exposition \u00e0 de multiples polluants", + "Exposition combin\u00e9e", + "Exposition conjointe", + "Exposition multi-agents", + "Exposition multiple", + "Multi-exposition", + "Multiexposition", + "Poly-exposition", + "Polyexposition" + ], + "md5": "93a83fa41d09d525664b21a8a6fd40bf" + }, + { + "type": "bf:Topic", + "authorized_access_point": "\u00c9lastopathies", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "610", + "name": "Sciences m\u00e9dicales et param\u00e9dicales" + } + ], + "identifier": "http://www.idref.fr/279034970", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279034970", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181527435", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18152743" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. de l'Acad\u00e9mie de m\u00e9decine - https://www.academie-medecine.fr/le-dictionnaire (2024-06-14)", + "Le nouveau dict. m\u00e9dical, 2018", + "\u00c9lastopathies et atteintes vasculaires / A. Rossi, M. Frank, E. Messas [in] EMC. Ang\u00e9iologie, 2016, 11, 1", + "L'invalidation du g\u00e8ne de la fibuline-5 induit une \u00e9lastinopathie / M.-P. Jacob [in] M\u00e9decine/sciences, 2003, 19, 4" + ] + } + ], + "pid": "279034970", + "broader": [ + { + "authorized_access_point": "Tissu conjonctif - Maladies" + } + ], + "variant_access_point": [ + "\u00c9lastinopathies", + "Maladies du tissu \u00e9lastique", + "Tissu \u00e9lastique (histologie) - Maladies" + ], + "md5": "861b60000cece04c4cd7b532ab144f79" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Ypsolophidae", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "590", + "name": "Zoologie" + } + ], + "identifier": "http://www.idref.fr/279034997", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279034997", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18152978c", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18152978" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GBIF - https://www.gbif.org/species (2024-06-17)", + "NCBI - https://www.ncbi.nlm.nih.gov/Taxonomy (2024-06-17)", + "Field guide to the micro-moths of Great Britain and Ireland / P. Sterling, M. Parsons, 2023", + "British moths : a photographic guide to the moths of Britain and Ireland / C. Manley, 2015" + ] + } + ], + "pid": "279034997", + "broader": [ + { + "authorized_access_point": "L\u00e9pidopt\u00e8res" + } + ], + "variant_access_point": [ + "Ochsenheimeriidae", + "Ypsolophinae" + ], + "md5": "73ec9867ea9ad8975113def80a83925f" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Rhopalosiphum", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "590", + "name": "Zoologie" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Rhopalosiphum", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "https://id.loc.gov/authorities/subjects/sh85113791", + "source": "LCSH" + } + ] + }, + { + "authorized_access_point": "Rhopalosiphum", + "source": "RVMLaval" + } + ], + "identifier": "http://www.idref.fr/279035020", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279035020", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18153059v", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18153059" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "NCBI - https://www.ncbi.nlm.nih.gov/Taxonomy (2024-06-17)", + "GBIF - https://www.gbif.org/species (2024-06-17)", + "Aphids on the world's herbaceous plants and shrubs / R. L. Blackman, V. F. Eastop, 2006" + ] + } + ], + "pid": "279035020", + "narrower": [ + { + "authorized_access_point": "Rhopalosiphum padi" + } + ], + "broader": [ + { + "authorized_access_point": "Aphidid\u00e9s" + } + ], + "md5": "46eb08121fc53e202ba746c202925619" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Arcade (jeux vid\u00e9o)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "793", + "name": "Jeux" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Video arcades", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2009000044", + "source": "LCSH" + } + ] + }, + { + "authorized_access_point": "Jeux vid\u00e9o", + "source": "RVMLaval" + } + ], + "identifier": "http://www.idref.fr/279035063", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279035063", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181532749", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18153274" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "La r\u00e9volution arcade de SEGA : de 1945 \u00e0 nos jours / K. Horowitz, 2020", + "Jeux d'arcade pour le Web : de la conception \u00e0 la r\u00e9alisation avec JavaScript / F. Delobel, 2020", + "Programmation des jeux d'arcade en C / D. Gruber, 1995", + "Arcade : une histoire du jeu d'Arcade \u00e0 travers les \u00e2ges, volume 1, 2023" + ] + }, + { + "noteType": "general", + "label": [ + "Sous cette vedette, on trouve les documents sur le mat\u00e9riel ainsi que sur les jeux eux-m\u00eames" + ] + } + ], + "pid": "279035063", + "related": [ + { + "authorized_access_point": "Salles d'arcades" + } + ], + "broader": [ + { + "authorized_access_point": "Jeux vid\u00e9o" + } + ], + "variant_access_point": [ + "Bornes d'arcade", + "Jeux vid\u00e9o d'arcade" + ], + "md5": "0db8bc3cec075e24b4f02686962b317c" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Ing\u00e9nierie de prompt", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "identifier": "http://www.idref.fr/279035071", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279035071", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18153302q", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18153302" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Compositions artistiques et creatives avec DALL-E 3 / P. Rey, 2024", + "D\u00e9velopper des applications avec GPT-4 et ChatGPT / M.-A. Blete, O. Caelen, 2024", + "Grand lexique fran\u00e7ais de l'intelligence artificielle - https://datafranca.org (2024-06-18)", + "Unlocking the secrets of prompt engineering / G. Mizrahi, 2024", + "The quick guide to prompt engineering / I. Khan, 2024" + ] + } + ], + "pid": "279035071", + "broader": [ + { + "authorized_access_point": "Intelligence artificielle" + } + ], + "variant_access_point": [ + "Ing\u00e9nierie de requ\u00eate", + "Prompt engeneering" + ], + "md5": "67e750fca7e26e0286687467270b07bd" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Drones - Pilotage", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "600", + "name": "Sciences appliqu\u00e9es" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Drone aircraft--Piloting", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2020000351", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/27903508X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/27903508X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181533183", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18153318" + } + ], + "pid": "27903508X", + "broader": [ + { + "authorized_access_point": "Navigation (a\u00e9ronautique)" + } + ], + "md5": "5a13469e278e2b638f01ab0431a906b1" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Femmes g\u00e9om\u00e9tres", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "305" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "330", + "name": "Economie" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "600", + "name": "Sciences appliqu\u00e9es" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Women surveyors", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh90000849", + "source": "LCSH" + } + ] + }, + { + "authorized_access_point": "Femmes g\u00e9om\u00e8tres", + "source": "RVMLaval" + } + ], + "identifier": "http://www.idref.fr/279035098", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279035098", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18153323p", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18153323" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Tr\u00e9sor de la langue fran\u00e7aise", + "Grand dict. encyclop\u00e9dique Larousse" + ] + } + ], + "pid": "279035098", + "broader": [ + { + "authorized_access_point": "G\u00e9om\u00e8tres" + } + ], + "variant_access_point": [ + "Arpenteures g\u00e9om\u00e9tres", + "G\u00e9om\u00e8tres expertes" + ], + "md5": "e1e72b75a368ba2782c0b6fb7139c775" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Tuiles verniss\u00e9es", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "600", + "name": "Sciences appliqu\u00e9es" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "690", + "name": "B\u00e2timent" + } + ], + "identifier": "http://www.idref.fr/279035101", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279035101", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18153329r", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18153329" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Tr\u00e9sor de la langue fran\u00e7aise (art. : Tuile)", + "Grand dict. encyclop\u00e9dique Larousse (art. : Vernisser)" + ] + } + ], + "pid": "279035101", + "broader": [ + { + "authorized_access_point": "Tuiles" + } + ], + "md5": "5597107ae10db4904d8ce270944ca255" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Norme ISO 80369", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "600", + "name": "Sciences appliqu\u00e9es" + } + ], + "identifier": "http://www.idref.fr/279035144", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279035144", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181537484", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18153748" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "ISO : organisation internationale de normalisation - https://www.iso.org (2024-06-20)", + "Afnor normalisation - https://normalisation.afnor.org (2024-06-20)", + "D\u00e9ploiement de la connectique s\u00e9curis\u00e9e NRFit\u00ae au CHU de Tours : \u00e9tat des lieux, difficult\u00e9s et alternatives envisag\u00e9es / J. Michelat, 2023 [th\u00e8se]" + ] + } + ], + "pid": "279035144", + "related": [ + { + "authorized_access_point": "Dispositifs m\u00e9dicaux implantables" + }, + { + "authorized_access_point": "Raccords (technologie)" + } + ], + "variant_access_point": [ + "Norme ISO 80369-1", + "Norme ISO 80369-6", + "NRFit" + ], + "md5": "26a69ea3b0cbcc310880f75fc91688dd" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Canadiennes d'origine ukrainienne", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "300", + "name": "Sciences sociales" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "305" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "390", + "name": "Ethnologie, anthropologie, folklore" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Canadiennes d'origine ukrainienne", + "source": "RVMLaval" + } + ], + "identifier": "http://www.idref.fr/279035241", + "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/030767806", + "value": "http://www.idref.fr/279035241", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12211770b", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18154151m", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18154151" } ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "LC online cat., 2024-06-22 : Ukrainian Canadian women" + ] + } + ], + "pid": "279035241", + "related": [ + { + "authorized_access_point": "Ukrainiennes" + } + ], + "broader": [ + { + "authorized_access_point": "Canadiens d'origine ukrainienne" + } + ], + "variant_access_point": [ + "Canadiens d'origine ukrainienne - Femmes" + ], + "md5": "e64a8edee603f5974623d2c300f6e91b" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Homosexualit\u00e9 et art", + "bnf_type": "sujet Rameau", "classification": [ { - "name": "Ethnologie, anthropologie, folklore", "type": "bf:ClassificationDdc", - "classificationPortion": "390" + "classificationPortion": "300", + "name": "Sciences sociales" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "700", + "name": "Arts" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Homosexuality and art", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85061787", + "source": "LCSH" + } + ] + }, + { + "authorized_access_point": "Homosexualit\u00e9 et art", + "source": "RVMLaval" + } + ], + "identifier": "http://www.idref.fr/027233960", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027233960", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11932036z", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11932036" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "L'amour qui ose dire son nom : art et homosexualit\u00e9 / D. Fernandez, 2001", + "The sexual perspective : homosexuality and art in the last 100 years in the West / E. Cooper, 1994" + ] + } + ], + "pid": "027233960", + "related": [ + { + "authorized_access_point": "Art" + }, + { + "authorized_access_point": "Artistes homosexuels" + }, + { + "authorized_access_point": "Homo\u00e9rotisme" + }, + { + "authorized_access_point": "Homosexualit\u00e9" } ], - "authorized_access_point": "Ethnologie - Roumanie" + "narrower": [ + { + "authorized_access_point": "Homosexualit\u00e9 et architecture" + }, + { + "authorized_access_point": "Homosexualit\u00e9 et mode" + } + ], + "variant_access_point": [ + "Art et homosexualit\u00e9" + ], + "md5": "924bbc04faca1432fe3143dbfeaceca7" }, { - "md5": "a713f3716ced9f6a5d616aa5c2c92a3f", - "pid": "030860466", + "type": "bf:Topic", + "authorized_access_point": "Malgaches", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "390", + "name": "Ethnologie" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Malgaches", + "source": "RVMLaval" + } + ], + "identifier": "http://www.idref.fr/027238431", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027238431", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119324064", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11932406" + } + ], "note": [ { + "noteType": "dataSource", + "label": [ + "Grand Larousse universel", + "Petit Robert 1, 1993" + ] + }, + { + "noteType": "general", "label": [ - "Japanese Literary History - http://www.jlit.net (2018-08-30)" - ], - "noteType": "dataSource" + "Sous cette vedette, obligatoirement suivie d'une subdivision g\u00e9ographique ou de la subdivision : \u00c0 l'\u00e9tranger, directement ou apr\u00e8s une subdivision de sujet, on trouve les documents sur les Malgaches hors de Madagascar. Les documents sur les Malgaches \u00e0 Madagascar se trouvent sous des vedettes-mati\u00e8re telles que : Madagascar -- Moeurs et coutumes ; etc" + ] + } + ], + "pid": "027238431", + "narrower": [ + { + "authorized_access_point": "\u00c9crivains malgaches" + }, + { + "authorized_access_point": "Femmes malgaches" + }, + { + "authorized_access_point": "Militaires malgaches" + } + ], + "broader": [ + { + "authorized_access_point": "Ethnologie - Madagascar" + } + ], + "related": [ + { + "authorized_access_point": "Madagascar" + } + ], + "md5": "f3a81b9eb38208fb9a141a93be1d7d3f" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Sexualit\u00e9", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "150", + "name": "Psychologie, psychanalyse" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "300", + "name": "Sciences sociales" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Sex", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85120549", + "source": "LCSH" + } + ] + }, + { + "authorized_access_point": "Sexual behavior", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2001008764", + "source": "LCSH" + } + ] }, { - "label": [ - "S'emploie uniquement en subdivision chronologique [sans subd. g\u00e9ogr.] aux litt\u00e9ratures japonaises, par ex. : Po\u00e9sie japonaise -- 1600-1868 (\u00c9poque d'Edo)", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la vedette Litt\u00e9rature japonaise, qui sert de vedette mod\u00e8le. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires japonais" - ], - "noteType": "general" - } - ], - "type": "bf:Temporal", - "related": [ - { - "authorized_access_point": "Litt\u00e9rature japonaise - 1600-1868 (\u00c9poque d'Edo)" + "authorized_access_point": "Sexualit\u00e9", + "source": "RVMLaval" } ], - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027248720", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/030860466", + "value": "http://www.idref.fr/027248720", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb122191473", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11933266p", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11933266" } ], - "variant_access_point": [ - "1600-1868 (\u00c9poque d'Edo)", - "\u00c9poque d'Edo (1600-1868)" - ], - "authorized_access_point": "1600-1868(\u00c9poque d'Edo)" - }, - { - "md5": "1255b779ff036b71b8732ec555ed8703", - "pid": "031022219", "note": [ { + "noteType": "dataSource", + "label": [ + "Grand Larousse universel", + "Grand Robert de la langue fran\u00e7aise, 2001" + ] + }, + { + "noteType": "general", "label": [ - "S'emploie uniquement en subdivision chronologique \u00e0 certaines litt\u00e9ratures", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec les vedettes de litt\u00e9ratures, celles-ci servant de vedettes mod\u00e8les pour tous les genres litt\u00e9raires de m\u00eame langue ou de m\u00eame nationalit\u00e9, par ex. : Litt\u00e9rature russe -- Avant 1700. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec les genres litt\u00e9raires" - ], - "noteType": "general" + "S'emploie \u00e9galement en subdivision. Cette subdivision s'applique aux cat\u00e9gories de personnes, groupes ethniques et personnes" + ] } ], - "type": "bf:Temporal", + "pid": "027248720", "related": [ { - "authorized_access_point": "Litt\u00e9rature bi\u00e9lorusse - Avant 1700" + "authorized_access_point": "Assistance sexuelle aux handicap\u00e9s" }, { - "authorized_access_point": "Litt\u00e9rature \u00e9cossaise - Avant 1700" + "authorized_access_point": "Communisme et sexualit\u00e9" }, { - "authorized_access_point": "Litt\u00e9rature lituanienne - Avant 1700" + "authorized_access_point": "\u00c9ducation sexuelle" }, { - "authorized_access_point": "Litt\u00e9rature russe - Avant 1700" + "authorized_access_point": "\u00c9rotisme" }, { - "authorized_access_point": "Litt\u00e9rature serbe - Avant 1700" - } - ], - "bnf_type": "sujet Rameau", - "identifiedBy": [ - { - "type": "uri", - "value": "http://www.idref.fr/031022219", - "source": "IDREF" + "authorized_access_point": "Fascisme et sexualit\u00e9" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12232063s", - "source": "BNF" - } - ], - "classification": [ + "authorized_access_point": "G\u00e9ographie des sexualit\u00e9s" + }, { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" - } - ], - "authorized_access_point": "Avant 1700" - }, - { - "md5": "bf2bd884be0b8b78dadbc5d961d31e00", - "pid": "03116207X", - "type": "bf:Topic", - "broader": [ + "authorized_access_point": "Industries du sexe" + }, { - "authorized_access_point": "Femmes enceintes - Examens m\u00e9dicaux" + "authorized_access_point": "Minorit\u00e9s sexuelles" }, { - "authorized_access_point": "Diagnostic pr\u00e9natal" - } - ], - "related": [ + "authorized_access_point": "Musique et sexualit\u00e9" + }, { - "authorized_access_point": "Accouchement - Complications (m\u00e9decine) -- Diagnostic" + "authorized_access_point": "National-socialisme et sexualit\u00e9" }, { - "authorized_access_point": "Grossesse - Signes et diagnostic" - } - ], - "bnf_type": "sujet Rameau", - "narrower": [ + "authorized_access_point": "Objets \u00e9rotiques" + }, { - "authorized_access_point": "Imagerie pour le diagnostic en obst\u00e9trique" - } - ], - "identifiedBy": [ + "authorized_access_point": "Relations amoureuses" + }, { - "type": "uri", - "value": "http://www.idref.fr/03116207X", - "source": "IDREF" + "authorized_access_point": "Sexologie" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12243064k", - "source": "BNF" - } - ], - "classification": [ + "authorized_access_point": "Sexualit\u00e9 (biologie)" + }, { - "name": "Sciences m\u00e9dicales et param\u00e9dicales", - "type": "bf:ClassificationDdc", - "classificationPortion": "610" - } - ], - "variant_access_point": [ - "Grossesse - Complications -- Diagnostic", - "Diagnostic en obst\u00e9trique", - "Diagnostic obst\u00e9trical", - "\u00c9preuve fonctionnelle en obst\u00e9trique", - "Examen obst\u00e9trical", - "Obst\u00e9trique - \u00c9preuve fonctionnelle" - ], - "authorized_access_point": "Grossesse - Complications (m\u00e9decine) -- Diagnostic" - }, - { - "md5": "581680c6f2c54900fa5beb2ed67bb5a6", - "pid": "031474284", - "note": [ + "authorized_access_point": "Sexualit\u00e9 (psychologie)" + }, { - "label": [ - "Tr\u00e9sor de la langue fran\u00e7aise (art. : Langage)", - "Grand Robert de la langue fran\u00e7aise, 2001 (art. : Faute)", - "Dict. de didactique des langues / D. Coste, R. Galisson, 1976" - ], - "noteType": "dataSource" + "authorized_access_point": "Sexualit\u00e9 - Aspect symbolique" }, { - "label": [ - "S'emploie \u00e9galement en subdivision" - ], - "noteType": "general" - } - ], - "type": "bf:Topic", - "broader": [ + "authorized_access_point": "Sexualit\u00e9 - Dans la litt\u00e9rature" + }, { - "authorized_access_point": "Langues - \u00c9tude et enseignement" - } - ], - "related": [ + "authorized_access_point": "Sexualit\u00e9 - Droit" + }, { - "authorized_access_point": "Fautes de langage - Analyse (enseignement des langues)" + "authorized_access_point": "Sexualit\u00e9 - Religion" }, { - "authorized_access_point": "Faux amis (linguistique)" + "authorized_access_point": "Sexualit\u00e9 dans les arts du spectacle" }, { - "authorized_access_point": "Normalisation linguistique" + "authorized_access_point": "Sorcellerie et sexualit\u00e9" }, { - "authorized_access_point": "Purisme (linguistique)" + "authorized_access_point": "Sports et sexualit\u00e9" }, { - "authorized_access_point": "Usage" + "authorized_access_point": "Vie sexuelle" } ], - "bnf_type": "sujet Rameau", "narrower": [ { - "authorized_access_point": "Fautes d'orthographe" + "authorized_access_point": "Abstinence sexuelle" }, { - "authorized_access_point": "Lapsus" + "authorized_access_point": "Adolescents - Sexualit\u00e9" }, { - "authorized_access_point": "Perles de langage" + "authorized_access_point": "Alcooliques - Sexualit\u00e9" }, { - "authorized_access_point": "Que\u00edsmo" - } - ], - "closeMatch": [ + "authorized_access_point": "Asexualit\u00e9" + }, { - "source": "RVMLaval", - "authorized_access_point": "Fautes de langage" + "authorized_access_point": "Comportement sexuel des animaux" }, { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85126446", - "source": "LCSH" - }, - "authorized_access_point": "Speech errors" - } - ], - "identifiedBy": [ + "authorized_access_point": "Consentement sexuel" + }, { - "type": "uri", - "value": "http://www.idref.fr/031474284", - "source": "IDREF" + "authorized_access_point": "Cybersexe" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12268317h", - "source": "BNF" - } - ], - "classification": [ + "authorized_access_point": "Enfants - Sexualit\u00e9" + }, { - "type": "bf:ClassificationDdc", - "classificationPortion": "401" + "authorized_access_point": "Exhibitionnisme" }, { - "name": "Po\u00e9sie", - "type": "bf:ClassificationDdc", - "classificationPortion": "801" - } - ], - "variant_access_point": [ - "Barbarismes", - "Cuirs (linguistique)", - "Difficult\u00e9s langagi\u00e8res", - "Erreurs de langage", - "Erreurs langagi\u00e8res", - "Expressions incorrectes", - "Fautes d'usage (linguistique)", - "Fautes de langue", - "Fautes de prononciation", - "Fautes langagi\u00e8res", - "Impropri\u00e9t\u00e9s (linguistique)", - "Incorrections (linguistique)", - "Langage, Fautes de", - "Langue, Fautes de", - "Pataqu\u00e8s (linguistique)", - "Prononciation, Fautes de", - "Sol\u00e9cismes" - ], - "authorized_access_point": "Fautes de langage" - }, - { - "md5": "b93c4521b1f2ae1e6e9cc6270c31d0a5", - "pid": "031911056", - "note": [ + "authorized_access_point": "H\u00e9t\u00e9rosexualit\u00e9" + }, { - "label": [ - "Cognition et lecture : processus de base de la reconnaissance des mots \u00e9crits chez l'adulte / L. Ferrand, 2001", - "Lecture et dyslexie : approche cognitive / L. Sprenger-Charolles, Pascale Col\u00e9, 2003", - "Apprendre \u00e0 lire : des sciences cognitives \u00e0 la salle de classe / S. Dehaene, 2011" - ], - "noteType": "dataSource" - } - ], - "type": "bf:Topic", - "broader": [ + "authorized_access_point": "Homosexualit\u00e9" + }, { - "authorized_access_point": "Cognition" + "authorized_access_point": "Hygi\u00e8ne sexuelle" }, { - "authorized_access_point": "Lecture - Aspect psychologique" + "authorized_access_point": "Instinct sexuel" }, { - "authorized_access_point": "Linguistique cognitive" - } - ], - "related": [ + "authorized_access_point": "Masturbation" + }, { - "authorized_access_point": "Communication \u00e9crite - Aspect cognitif" + "authorized_access_point": "Parapl\u00e9giques - Sexualit\u00e9" }, { - "authorized_access_point": "Consignes (\u00e9ducation)" + "authorized_access_point": "Perversion sexuelle" }, { - "authorized_access_point": "\u00c9criture - Aspect cognitif" + "authorized_access_point": "Polyamour" }, { - "authorized_access_point": "Test de closure" - } - ], - "bnf_type": "sujet Rameau", - "narrower": [ + "authorized_access_point": "Prisonniers - Sexualit\u00e9" + }, { - "authorized_access_point": "D\u00e9nomination rapide automatis\u00e9e" + "authorized_access_point": "Relations sexuelles" }, { - "authorized_access_point": "Lecture - Difficult\u00e9s" - } - ], - "closeMatch": [ + "authorized_access_point": "Sexualit\u00e9 dans le mariage" + }, { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85111686", - "source": "LCSH" - }, - "authorized_access_point": "Reading comprehension" + "authorized_access_point": "Sexualit\u00e9 dans les r\u00eaves" }, { - "source": "RVMLaval", - "authorized_access_point": "Compr\u00e9hension de la lecture" - } - ], - "identifiedBy": [ + "authorized_access_point": "Sexualit\u00e9 de groupe" + }, { - "type": "uri", - "value": "http://www.idref.fr/031911056", - "source": "IDREF" + "authorized_access_point": "Sexualit\u00e9 f\u00e9minine" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12303769k", - "source": "BNF" - } - ], - "classification": [ + "authorized_access_point": "Sexualit\u00e9 masculine" + }, { - "name": "Psychologie, psychanalyse", - "type": "bf:ClassificationDdc", - "classificationPortion": "150" + "authorized_access_point": "Sexualit\u00e9 pr\u00e9maritale" }, { - "type": "bf:ClassificationDdc", - "classificationPortion": "401" + "authorized_access_point": "Travestisme" + }, + { + "authorized_access_point": "Troubles sexuels" + }, + { + "authorized_access_point": "Voyeurisme" } ], + "relation_pid": { + "value": "02864297X", + "type": "redirect_from" + }, "variant_access_point": [ - "Cognition et lecture", - "Lecture - Compr\u00e9hension", - "Lecture et cognition", - "Psychologie cognitive de la lecture" + "Comportement sexuel", + "Pratiques sexuelles", + "Sexe", + "Sexualit\u00e9 humaine" ], - "authorized_access_point": "Lecture - Aspect cognitif" + "md5": "24a79d4dad0d73192c31b52619128608" }, { - "md5": "c24aa7d62b52901dd8ea61246aa5d8fe", - "pid": "031937667", - "note": [ + "type": "bf:Topic", + "authorized_access_point": "Verrerie", + "bnf_type": "sujet Rameau", + "classification": [ { - "label": [ - "S'emploie uniquement en subdivision chronologique \u00e0 la langue et aux litt\u00e9ratures catalanes", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la vedette Litt\u00e9rature catalane, celle-ci servant de mod\u00e8le. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires catalans" - ], - "noteType": "general" + "type": "bf:ClassificationDdc", + "classificationPortion": "730", + "name": "Arts plastiques, sculpture" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "740", + "name": "Dessin, arts d\u00e9coratifs, artisanat d'art" } ], - "type": "bf:Temporal", - "related": [ + "closeMatch": [ { - "authorized_access_point": "Catalan (langue) - +* 1500......- 1799......+:16e-18e si\u00e8cles: (D\u00e9cadence)" + "authorized_access_point": "Glassware", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85055188", + "source": "LCSH" + } + ] }, { - "authorized_access_point": "Litt\u00e9rature catalane - 16e-18e si\u00e8cles (D\u00e9cadence)" + "authorized_access_point": "Verrerie", + "source": "RVMLaval" } ], - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027255522", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/031937667", + "value": "http://www.idref.fr/027255522", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb123061282", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119337751", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11933775" } ], - "classification": [ + "note": [ { - "name": "Langues et linguistique", - "type": "bf:ClassificationDdc", - "classificationPortion": "400" + "noteType": "dataSource", + "label": [ + "Nouveau petit Robert 2010", + "Nouveau Littr\u00e9 2006", + "Tr\u00e9sor de la langue fran\u00e7aise" + ] }, { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "noteType": "seeReference", + "label": [ + "Voir aussi les vedettes du type Verrerie [adjectif de civilisation, ethnique, de nationalit\u00e9 ou d'origine g\u00e9ographique]" + ] } ], - "authorized_access_point": "16e-18e si\u00e8cles(D\u00e9cadence)" - }, - { - "md5": "69fe495cc96d63eb48ed1ba046dc18d2", - "pid": "031992234", - "note": [ + "pid": "027255522", + "related": [ { - "label": [ - "Sous cette vedette, on trouve les compositions (qui n'ont pas de forme ou de genre particulier) pour saxophone et orchestre, et les recueils de compositions de formes et de genres diff\u00e9rents pour cette m\u00eame formation" - ], - "noteType": "general" + "authorized_access_point": "Marques de verriers" + }, + { + "authorized_access_point": "Verre - Fabrication" + }, + { + "authorized_access_point": "Verre - Industrie et commerce" + }, + { + "authorized_access_point": "Verreries" } ], - "type": "bf:Topic", - "bnf_type": "genre/forme Rameau", "narrower": [ { - "authorized_access_point": "Concertos (saxophone)" + "authorized_access_point": "Bijoux en verre" }, { - "authorized_access_point": "Po\u00e8mes symphoniques (saxophone et orchestre)" + "authorized_access_point": "Boules \u00e0 neige" }, { - "authorized_access_point": "Rhapsodies (saxophone et orchestre)" + "authorized_access_point": "Bouteilles \u00e0 sujet" }, { - "authorized_access_point": "Saxophone et orchestre \u00e0 cordes" + "authorized_access_point": "Clochettes en verre" }, { - "authorized_access_point": "Saxophone et orchestre \u00e0 vent" + "authorized_access_point": "Cristallerie" }, { - "authorized_access_point": "Saxophone et orchestre d'harmonie" + "authorized_access_point": "Fleurs en verre" }, { - "authorized_access_point": "Saxophone et orchestre de chambre" + "authorized_access_point": "Meubles en verre" }, { - "authorized_access_point": "Saxophone et orchestre de jazz" + "authorized_access_point": "Millefiori" }, { - "authorized_access_point": "Suites (saxophone et orchestre)" - } - ], - "closeMatch": [ - { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85117865", - "source": "LCSH" - }, - "authorized_access_point": "Saxophone with orchestra" + "authorized_access_point": "Opaline" }, { - "source": "RVMLaval", - "authorized_access_point": "Saxophone et orchestre" - } - ], - "identifiedBy": [ + "authorized_access_point": "Ouraline" + }, { - "type": "uri", - "value": "http://www.idref.fr/031992234", - "source": "IDREF" + "authorized_access_point": "Perles en verre" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb123105743", - "source": "BNF" - } - ], - "classification": [ + "authorized_access_point": "Presse-papiers" + }, { - "name": "Musique", - "type": "bf:ClassificationDdc", - "classificationPortion": "780" - } - ], - "authorized_access_point": "Saxophone et orchestre" - }, - { - "md5": "97231932656ef4e97017c1d12f804177", - "pid": "03212743X", - "note": [ + "authorized_access_point": "Sulfures (verrerie)" + }, { - "label": [ - "Sous cette vedette, on trouve les compositions (qui n'ont pas de forme ou de genre particulier) pour fl\u00fbte, violon et alto, et les recueils de compositions de formes et de genres diff\u00e9rents pour cette m\u00eame formation" - ], - "noteType": "general" - } - ], - "type": "bf:Topic", - "broader": [ + "authorized_access_point": "Verre cam\u00e9e" + }, { - "authorized_access_point": "Trios ([distributions instrumentales])" - } - ], - "bnf_type": "genre/forme Rameau", - "narrower": [ + "authorized_access_point": "Verrerie antique" + }, { - "authorized_access_point": "S\u00e9r\u00e9nades (fl\u00fbte, violon, alto)" - } - ], - "closeMatch": [ + "authorized_access_point": "Verrerie de la Renaissance" + }, { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85137637", - "source": "LCSH" - }, - "authorized_access_point": "Trios (Flute, violin, viola)" + "authorized_access_point": "Verrerie de Murano" }, { - "source": "RVMLaval", - "authorized_access_point": "Trios (fl\u00fbte, violon, alto)" - } - ], - "identifiedBy": [ + "authorized_access_point": "Verrerie m\u00e9di\u00e9vale" + }, { - "type": "uri", - "value": "http://www.idref.fr/03212743X", - "source": "IDREF" + "authorized_access_point": "Verrerie pr\u00e9historique" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12321733h", - "source": "BNF" + "authorized_access_point": "Verres fil\u00e9s" } ], - "classification": [ + "broader": [ { - "name": "Musique", - "type": "bf:ClassificationDdc", - "classificationPortion": "780" + "authorized_access_point": "Art du verre" } ], - "authorized_access_point": "Trios (fl\u00fbte, violon, alto)" + "variant_access_point": [ + "Objets en verre", + "Verre, Objets en", + "Verroterie" + ], + "md5": "69b6d080f74b7ee08cbd91d1d9666a94" }, { - "md5": "3e59a3f7e7e47a95a5fc7c65274fd9f6", - "pid": "032187130", - "note": [ - { - "label": [ - "Grand Robert de la langue fran\u00e7aise, 2001" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Sous cette vedette on trouve les documents sur les constructions propres \u00e0 la langue espagnole qui ne poss\u00e8dent aucun correspondant syntaxique dans une autre langue. Les documents sur les mots et locutions espagnols int\u00e9gr\u00e9s \u00e0 une autre langue se trouvent sous le nom de cette langue suivie de la subdivision Emprunts espagnols, par ex. : Fran\u00e7ais (langue) -- Emprunts espagnols" - ], - "noteType": "general" - } - ], "type": "bf:Topic", - "broader": [ + "authorized_access_point": "Famille", + "bnf_type": "sujet Rameau", + "classification": [ { - "authorized_access_point": "Idiotismes" + "type": "bf:ClassificationDdc", + "classificationPortion": "300", + "name": "Sciences sociales" } ], - "related": [ + "closeMatch": [ { - "authorized_access_point": "Espagnol (langue)" + "authorized_access_point": "Family", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh00005743", + "source": "LCSH" + } + ] }, { - "authorized_access_point": "Que\u00edsmo" - } - ], - "bnf_type": "sujet Rameau", - "closeMatch": [ + "authorized_access_point": "Famille", + "source": "RVMLaval" + }, { + "authorized_access_point": "Family relationships", "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh2008112151", - "source": "LCSH" - }, - "authorized_access_point": "Spanish language--Idioms" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh99005369", + "source": "LCSH" + } + ] }, { - "source": "RVMLaval", - "authorized_access_point": "Hispanismes (idiotismes)" + "authorized_access_point": "Relations familiales", + "source": "RVMLaval" } ], + "identifier": "http://www.idref.fr/027258556", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/032187130", + "value": "http://www.idref.fr/027258556", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12326636g", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119339867", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Langues et linguistique", - "type": "bf:ClassificationDdc", - "classificationPortion": "400" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11933986" } ], - "variant_access_point": [ - "Espagnol (langue) - Idiotismes" - ], - "authorized_access_point": "Hispanismes (idiotismes)" - }, - { - "md5": "a50327d852627ff3411ac9ebe9cb6978", - "pid": "032563507", - "type": "bf:Topic", - "broader": [ + "note": [ { - "authorized_access_point": "Litt\u00e9rature n\u00e9erlandaise" + "noteType": "dataSource", + "label": [ + "Grand Larousse universel", + "Encycl. universalis - http://www.universalis-edu.com (2008-09-04)", + "Dict. des sciences humaines / S. Mesure, P. Savidan, 2006" + ] + }, + { + "noteType": "general", + "label": [ + "S'emploie \u00e9galement en subdivision", + "Aux personnes, cette subdivision s'emploie \u00e9galement pour des \u00e9tudes g\u00e9n\u00e9alogiques. Dans ce cas, \u00e9tablir une vedette-mati\u00e8re additionnelle au nom de la famille" + ] + }, + { + "noteType": "seeReference", + "label": [ + "Voir aussi les vedettes du type Familles [adjectif ethnique], par ex. : Familles juives" + ] } ], + "pid": "027258556", "related": [ { - "authorized_access_point": "Po\u00e8tes n\u00e9erlandais" + "authorized_access_point": "Archives familiales" }, { - "authorized_access_point": "Chansons n\u00e9erlandaises" + "authorized_access_point": "Biblioth\u00e8ques et famille" }, { - "authorized_access_point": "M\u00e9lodies n\u00e9erlandaises" + "authorized_access_point": "D\u00e9mographie de la famille" }, { - "authorized_access_point": "Prose n\u00e9erlandaise" - } - ], - "bnf_type": "genre/forme Rameau", - "narrower": [ + "authorized_access_point": "Entraide familiale" + }, { - "authorized_access_point": "\u00c9pop\u00e9es n\u00e9erlandaises" + "authorized_access_point": "Entreprises familiales" }, { - "authorized_access_point": "Po\u00e8mes en prose n\u00e9erlandais" + "authorized_access_point": "Famille - Anthropologie" }, { - "authorized_access_point": "Po\u00e9sie didactique n\u00e9erlandaise" + "authorized_access_point": "Famille - Loisirs" }, { - "authorized_access_point": "Po\u00e9sie \u00e9logieuse n\u00e9erlandaise" + "authorized_access_point": "Famille - Vie religieuse" }, { - "authorized_access_point": "Po\u00e9sie \u00e9rotique n\u00e9erlandaise" + "authorized_access_point": "Famille et \u00e9cole" }, { - "authorized_access_point": "Po\u00e9sie n\u00e9erlandaise pour la jeunesse" + "authorized_access_point": "Family office" }, { - "authorized_access_point": "Po\u00e9sie pastorale n\u00e9erlandaise" + "authorized_access_point": "F\u00eates de famille" }, { - "authorized_access_point": "Po\u00e9sie politique n\u00e9erlandaise" + "authorized_access_point": "Formation parentale" }, { - "authorized_access_point": "Po\u00e9sie religieuse n\u00e9erlandaise" + "authorized_access_point": "G\u00e9n\u00e9alogie" }, { - "authorized_access_point": "Po\u00e9sie visuelle n\u00e9erlandaise" + "authorized_access_point": "Mariage" }, { - "authorized_access_point": "Sonnets n\u00e9erlandais" - } - ], - "closeMatch": [ + "authorized_access_point": "M\u00e9dias et famille" + }, { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85040126", - "source": "LCSH" - }, - "authorized_access_point": "Dutch poetry" + "authorized_access_point": "M\u00e9diation familiale" }, { - "source": "RVMLaval", - "authorized_access_point": "Po\u00e9sie n\u00e9erlandaise" - } - ], - "identifiedBy": [ + "authorized_access_point": "M\u00e9nages" + }, { - "type": "uri", - "value": "http://www.idref.fr/032563507", - "source": "IDREF" + "authorized_access_point": "Ordinateurs et famille" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb123569227", - "source": "BNF" - } - ], - "classification": [ + "authorized_access_point": "Parent\u00e9" + }, { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" - } - ], - "variant_access_point": [ - "Po\u00e9sie flamande - Avant 1830", - "Po\u00e9sie hollandaise" - ], - "authorized_access_point": "Po\u00e9sie n\u00e9erlandaise" - }, - { - "md5": "faa5106feb3ec6f918adb83d81f00ea1", - "pid": "032972938", - "type": "bf:Topic", - "broader": [ + "authorized_access_point": "Pastorale des familles" + }, { - "authorized_access_point": "Femmes enceintes - Examens m\u00e9dicaux" - } - ], - "related": [ + "authorized_access_point": "Politique familiale" + }, + { + "authorized_access_point": "Relations famille-malade" + }, + { + "authorized_access_point": "Relations personnel m\u00e9dical-famille" + }, + { + "authorized_access_point": "Secrets de famille" + }, + { + "authorized_access_point": "Service social familial" + }, + { + "authorized_access_point": "Travail et famille" + }, + { + "authorized_access_point": "Vie domestique" + }, { - "authorized_access_point": "Grossesse - Complications (m\u00e9decine) -- Diagnostic" + "authorized_access_point": "Photographie de famille" + }, + { + "authorized_access_point": "Roman familial (litt\u00e9rature)" } ], - "bnf_type": "sujet Rameau", "narrower": [ { - "authorized_access_point": "Imagerie pour le diagnostic en obst\u00e9trique" - } - ], - "identifiedBy": [ + "authorized_access_point": "Arri\u00e8re-grands-parents" + }, { - "type": "uri", - "value": "http://www.idref.fr/032972938", - "source": "IDREF" + "authorized_access_point": "Brus" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb123892668", - "source": "BNF" - } - ], - "classification": [ + "authorized_access_point": "Chefs de famille" + }, { - "name": "Sciences m\u00e9dicales et param\u00e9dicales", - "type": "bf:ClassificationDdc", - "classificationPortion": "610" - } - ], - "variant_access_point": [ - "Accouchement - Complications -- Diagnostic", - "Diagnostic en obst\u00e9trique", - "Diagnostic obst\u00e9trical", - "\u00c9preuve fonctionnelle en obst\u00e9trique", - "Examen obst\u00e9trical", - "Obst\u00e9trique - \u00c9preuve fonctionnelle" - ], - "authorized_access_point": "Accouchement - Complications (m\u00e9decine) -- Diagnostic" - }, - { - "md5": "8b483cc5775ca6cdcd8d959fc2d659ba", - "pid": "033070202", - "note": [ + "authorized_access_point": "\u00c9ducation familiale" + }, { - "label": [ - "La subdivision chronologique 1600-1755 (P\u00e9riode coloniale) s'emploie uniquement aux litt\u00e9ratures et genres litt\u00e9raires am\u00e9ricains", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la vedette Litt\u00e9rature am\u00e9ricaine, celle-ci servant de vedette mod\u00e8le pour les genres litt\u00e9raires de m\u00eame nationalit\u00e9. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec les genres litt\u00e9raires" - ], - "noteType": "general" - } - ], - "type": "bf:Temporal", - "related": [ + "authorized_access_point": "Enfants" + }, { - "authorized_access_point": "Litt\u00e9rature am\u00e9ricaine - 1600-1775 (p\u00e9riode coloniale)" - } - ], - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "authorized_access_point": "Famille inadapt\u00e9e" + }, { - "type": "uri", - "value": "http://www.idref.fr/033070202", - "source": "IDREF" + "authorized_access_point": "Famille monoparentale" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb123973877", - "source": "BNF" - } - ], - "classification": [ + "authorized_access_point": "Famille recompos\u00e9e" + }, { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" - } - ], - "authorized_access_point": "1600-1775(P\u00e9riode coloniale)" - }, - { - "md5": "7a024d7b6a7f20312a4467466359d9b6", - "pid": "033297746", - "note": [ + "authorized_access_point": "Famille rurale" + }, { - "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures su\u00e9doises" - ], - "noteType": "general" - } - ], - "type": "bf:Temporal", - "related": [ + "authorized_access_point": "Familles \u00e0 double carri\u00e8re" + }, { - "authorized_access_point": "Su\u00e9dois (langue) - 1525-1732" - } - ], - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "authorized_access_point": "Familles choisies" + }, { - "type": "uri", - "value": "http://www.idref.fr/033297746", - "source": "IDREF" + "authorized_access_point": "Familles d'accueil" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12417795g", - "source": "BNF" - } - ], - "classification": [ + "authorized_access_point": "Familles immigr\u00e9es" + }, { - "name": "Langues", - "type": "bf:ClassificationDdc", - "classificationPortion": "400" - } - ], - "authorized_access_point": "1525-1732" - }, - { - "md5": "c8dd3a54dc03d0d882de40daa121b1c0", - "pid": "033466300", - "note": [ + "authorized_access_point": "Familles issues de maisons royales" + }, { - "label": [ - "Dict. encyclop\u00e9dique d'histoire / M. Mourre, 1996" - ], - "noteType": "dataSource" + "authorized_access_point": "Familles mixtes" }, { - "label": [ - "3 octobre 1990 : unification de l'Allemagne et fin de la Guerre froide ; 2020 : coronavirus", - "S'emploie uniquement en subdivision chronologique \u00e0 tous sujets noms communs et noms propres \u00e0 l'exception des personnes et des sujets pour lesquels il existe un d\u00e9coupage chronologique sp\u00e9cifique, par ex. : Europe -- 1989-" - ], - "noteType": "general" - } - ], - "type": "bf:Temporal", - "broader": [ + "authorized_access_point": "Familles ouvri\u00e8res" + }, { - "authorized_access_point": "1970-...." - } - ], - "related": [ + "authorized_access_point": "Familles transnationales" + }, { - "authorized_access_point": "2000-...." + "authorized_access_point": "Fr\u00e8res et soeurs" }, { - "authorized_access_point": "Histoire universelle - 1990-...." - } - ], - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "authorized_access_point": "Gendres" + }, { - "type": "uri", - "value": "http://www.idref.fr/033466300", - "source": "IDREF" + "authorized_access_point": "Grands-parents" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12432924q", - "source": "BNF" + "authorized_access_point": "Grands-parents et enfants" + }, + { + "authorized_access_point": "Maisons royales" + }, + { + "authorized_access_point": "Oncles" + }, + { + "authorized_access_point": "Parents" + }, + { + "authorized_access_point": "Parents et enfants" + }, + { + "authorized_access_point": "Rang de naissance" + }, + { + "authorized_access_point": "Structure familiale" + }, + { + "authorized_access_point": "Tantes" + }, + { + "authorized_access_point": "Violence familiale" } ], - "relation_pid": { - "type": "redirect_from", - "value": "033466386" - }, - "classification": [ + "broader": [ { - "name": "Histoire et g\u00e9ographie (g\u00e9n\u00e9ralit\u00e9s)", - "type": "bf:ClassificationDdc", - "classificationPortion": "900" + "authorized_access_point": "Institutions sociales" } ], "variant_access_point": [ - "1990-2020 (subdivision)" + "Cellule familiale", + "Et la famille", + "Vie familiale", + "Et les relations familiales", + "Famille - Aspect social", + "Famille - Conditions sociales", + "Famille nucl\u00e9aire", + "Liens familiaux", + "Milieu familial", + "Parents (membres d'une famille)", + "Relations familiales" ], - "authorized_access_point": "1990-2020" + "md5": "984a402d49f44d71a418761961eb6bae" }, { - "md5": "e3b91fa67469388babc782ec799cb652", - "pid": "03388157X", - "note": [ - { - "label": [ - "L'entretien d'explicitation / P. Vermersch, 1994", - "L'entretien d'explication en entreprise : savoir questionner pour manager et former / H. Roux de B\u00e9zieux, 1999" - ], - "noteType": "dataSource" - } - ], "type": "bf:Topic", - "broader": [ - { - "authorized_access_point": "Entretiens en \u00e9ducation" - }, + "authorized_access_point": "Prostitu\u00e9es", + "bnf_type": "sujet Rameau", + "classification": [ { - "authorized_access_point": "Entretiens en psychologie" + "type": "bf:ClassificationDdc", + "classificationPortion": "305" }, { - "authorized_access_point": "Protocoles verbaux" - } - ], - "related": [ - { - "authorized_access_point": "Entretiens professionnels" + "type": "bf:ClassificationDdc", + "classificationPortion": "360", + "name": "Probl\u00e8mes et services sociaux" } ], - "bnf_type": "sujet Rameau", "closeMatch": [ { - "source": "RVMLaval", - "authorized_access_point": "Entretiens d'explicitation" + "authorized_access_point": "Prostitutes", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85107622", + "source": "LCSH" + } + ] + }, + { + "authorized_access_point": "Prostitu\u00e9es", + "source": "RVMLaval" } ], + "identifier": "http://www.idref.fr/027266273", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/03388157X", + "value": "http://www.idref.fr/027266273", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12469337q", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119345495", "source": "BNF" - } - ], - "classification": [ - { - "name": "Psychologie, psychanalyse", - "type": "bf:ClassificationDdc", - "classificationPortion": "150" - }, - { - "name": "Education et enseignement", - "type": "bf:ClassificationDdc", - "classificationPortion": "370" }, { - "name": "Gestion et organisation de l'entreprise", - "type": "bf:ClassificationDdc", - "classificationPortion": "650" - } - ], - "variant_access_point": [ - "Entretien d'explicitation", - "Entretiens critiques", - "Explicitation, Entretiens d'" - ], - "authorized_access_point": "Entretiens d'explicitation" - }, - { - "md5": "6968472d18b040c08cca7a3138250a0d", - "pid": "034160523", - "note": [ - { - "label": [ - "Encycl. universalis (art. : Sectes) - http://www.universalis-edu.com (2018-03-01)", - "Dict. de psychologie / R. Doron, F. Parot, 2003 (art. : Conscience)", - "Les \u00e9tats modifi\u00e9s de conscience / G. Lapassade, 1987", - "Les \u00e9tats \u00e9tranges de la conscience / J.-P. Valla, 1992", - "La conscience modifi\u00e9e / C. Le Scanff, 1995" - ], - "noteType": "dataSource" - } - ], - "type": "bf:Topic", - "broader": [ - { - "authorized_access_point": "Conscience" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11934549" } ], + "pid": "027266273", "related": [ { - "authorized_access_point": "Chamanisme" + "authorized_access_point": "Enfants de prostitu\u00e9es" }, { - "authorized_access_point": "Parapsychologie" + "authorized_access_point": "Ex-prostitu\u00e9es" }, { - "authorized_access_point": "Rebirth (psychoth\u00e9rapie)" + "authorized_access_point": "Prostitution" }, { - "authorized_access_point": "Voyages dans l'au-del\u00e0" + "authorized_access_point": "Prox\u00e9n\u00e8tes" } ], - "bnf_type": "sujet Rameau", "narrower": [ { - "authorized_access_point": "Extase" + "authorized_access_point": "Courtisanes" }, { - "authorized_access_point": "Hypnose" + "authorized_access_point": "Enfants prostitu\u00e9s" }, { - "authorized_access_point": "Ivresse" + "authorized_access_point": "Escorts" }, { - "authorized_access_point": "Possession (anthropologie)" + "authorized_access_point": "Femmes de r\u00e9confort" }, { - "authorized_access_point": "Psych\u00e9d\u00e9lisme" + "authorized_access_point": "Pastorale des prostitu\u00e9es" + } + ], + "broader": [ + { + "authorized_access_point": "Femmes" }, { - "authorized_access_point": "Transe" + "authorized_access_point": "Travailleurs du sexe" + } + ], + "variant_access_point": [ + "Femmes prostitu\u00e9es", + "Prostitu\u00e9es f\u00e9minines", + "Prostitu\u00e9s f\u00e9minins", + "Prostitution f\u00e9minine" + ], + "md5": "4d266ba958fba3ca6bb146271671a1d3" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Records sportifs", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "793", + "name": "Jeux" } ], "closeMatch": [ { + "authorized_access_point": "Sports records", "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh89006368", - "source": "LCSH" - }, - "authorized_access_point": "Altered states of consciousness" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85126900", + "source": "LCSH" + } + ] }, { - "source": "RVMLaval", - "authorized_access_point": "\u00c9tats modifi\u00e9s de conscience" + "authorized_access_point": "Sports--Records", + "source": "RVMLaval" } ], + "identifier": "http://www.idref.fr/027314073", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/034160523", + "value": "http://www.idref.fr/027314073", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12494645k", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119383336", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Psychologie, psychanalyse", - "type": "bf:ClassificationDdc", - "classificationPortion": "150" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11938333" } ], - "variant_access_point": [ - "Conscience, \u00c9tats modifi\u00e9s de", - "EMC (psychologie)", - "\u00c9tat modifi\u00e9 de conscience", - "\u00c9tats de conscience alt\u00e9r\u00e9s", - "\u00c9tats de conscience modifi\u00e9s", - "\u00c9tats \u00e9tranges de conscience", - "\u00c9tats non ordinaires de conscience", - "\u00c9tats seconds", - "Modification de la conscience" - ], - "authorized_access_point": "\u00c9tats modifi\u00e9s de conscience" - }, - { - "md5": "f8f60673bdd787e375c86edfb898cb18", - "pid": "034490906", - "type": "bf:Topic", - "broader": [ + "note": [ + { + "noteType": "dataSource", + "label": [ + "Grand Larousse universel", + "Grand Robert de la langue fran\u00e7aise, 2001", + "Robert des sports : dict. de la langue des sports / G. Petiot, 1982 (art. : Record)" + ] + }, { - "authorized_access_point": "Litt\u00e9rature flamande" + "noteType": "general", + "label": [ + "S'emploie \u00e9galement en subdivision" + ] } ], + "pid": "027314073", "related": [ { - "authorized_access_point": "Po\u00e8tes flamands" - }, + "authorized_access_point": "Performance (sports)" + } + ], + "narrower": [ { - "authorized_access_point": "Chansons flamandes" + "authorized_access_point": "Jeux olympiques - Records" }, { - "authorized_access_point": "Prose flamande" + "authorized_access_point": "Records de vitesse" } ], - "bnf_type": "genre/forme Rameau", - "narrower": [ + "variant_access_point": [ + "Records", + "Records (sports)", + "Records mondiaux", + "Sports - Records" + ], + "md5": "fe2aec524df4c254d3352293b188e8f3" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Prostitu\u00e9s", + "bnf_type": "sujet Rameau", + "classification": [ { - "authorized_access_point": "Po\u00e9sie politique flamande" + "type": "bf:ClassificationDdc", + "classificationPortion": "305" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "360", + "name": "Probl\u00e8mes et services sociaux" } ], "closeMatch": [ { + "authorized_access_point": "Male prostitutes", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85107630", + "source": "LCSH" + } + ] + }, + { + "authorized_access_point": "Prostitu\u00e9s", + "source": "RVMLaval" + }, + { + "authorized_access_point": "Male Prostitution", "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85049077", - "source": "LCSH" - }, - "authorized_access_point": "Flemish poetry" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85107630", + "source": "LCSH" + } + ] }, { - "source": "RVMLaval", - "authorized_access_point": "Po\u00e9sie flamande" + "authorized_access_point": "Prostitution masculine", + "source": "RVMLaval" } ], + "identifier": "http://www.idref.fr/027361705", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/034490906", + "value": "http://www.idref.fr/027361705", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12524209b", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119420098", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11942009" } ], - "classification": [ + "pid": "027361705", + "related": [ { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "authorized_access_point": "Prostitution" + } + ], + "narrower": [ + { + "authorized_access_point": "Escorts" + } + ], + "broader": [ + { + "authorized_access_point": "Hommes" + }, + { + "authorized_access_point": "Travailleurs du sexe" } ], - "authorized_access_point": "Po\u00e9sie flamande" + "variant_access_point": [ + "Prostitution masculine", + "Prostitu\u00e9s masculins", + "Prostitu\u00e9s m\u00e2les" + ], + "md5": "cb4b88b54a11e0faa90026ca967dabd4" }, { - "md5": "dc0a30eadca3a8ca7f2e0a892fcd2ac2", - "pid": "034577769", - "note": [ + "type": "bf:Topic", + "authorized_access_point": "Scanographie", + "bnf_type": "sujet Rameau", + "classification": [ { - "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures et genres litt\u00e9raires belges, flamands et wallons", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la vedette Litt\u00e9rature belge, celle-ci servant de vedette mod\u00e8le. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires belges" - ], - "noteType": "general" + "type": "bf:ClassificationDdc", + "classificationPortion": "610", + "name": "Sciences m\u00e9dicales et param\u00e9dicales" } ], - "type": "bf:Temporal", - "related": [ + "closeMatch": [ { - "authorized_access_point": "Litt\u00e9rature belge - 1830-1900" + "authorized_access_point": "Scanographie", + "source": "RVMLaval" }, { - "authorized_access_point": "Litt\u00e9rature flamande - 1830-1900" + "authorized_access_point": "Tomography", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh00006372", + "source": "LCSH" + } + ] } ], - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027390349", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/034577769", + "value": "http://www.idref.fr/027390349", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb125319537", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11944283q", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11944283" } ], - "authorized_access_point": "1830-1900" - }, - { - "md5": "4610a48c0891c3d53710a9aedeb21322", - "pid": "034680365", "note": [ { + "noteType": "dataSource", "label": [ - "L'Empire des tsars et les Russes. T.3. La religion / A. Leroy-Beaulieu, 1889", - "Icons, portraits, or types? Photographic images of the Skoptsy in late Imperial Russia (1880-1917) / E. Emeliantseva [in] Jahrb\u00fccher f\u00fcr Geschichte Osteuropas, 2009, 57, 2 - https://www-jstor-org (2022-07-07)", - "La secte russe des castrats / N. Volkov, 1995 : Skopcy, Skopcestvo", - "Nouvelle encycl. nationale / M. Lach\u00e2tre, 1870 : Skoptzy", - "Encycl. of religion and ethics / J. Hastings, 1994 : Skoptsi", - "Oxford English dict. : Scoptsi - https://www-oed-com (2022-07-07)", - "Wikipedia : Scoptes - https://fr.wikipedia.org (2022-07-13)" - ], - "noteType": "dataSource" - } - ], - "type": "bf:Topic", - "broader": [ + "Garnier DTTM, 1992" + ] + }, { - "authorized_access_point": "Sectes chr\u00e9tiennes" + "noteType": "seeReference", + "label": [ + "Voir aussi la subdivision Tomographie [+ subd g\u00e9ogr.] aux maladies, parties du corps" + ] } ], + "pid": "027390349", "related": [ { - "authorized_access_point": "Castration humaine" - }, - { - "authorized_access_point": "Eunuques" + "authorized_access_point": "Tomographie" }, { - "authorized_access_point": "Vieux-croyants" + "authorized_access_point": "Scanographes" } ], - "bnf_type": "sujet Rameau", - "closeMatch": [ + "narrower": [ { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85123228", - "source": "LCSH" - }, - "authorized_access_point": "Skoptsi" + "authorized_access_point": "Scanographie en m\u00e9decine v\u00e9t\u00e9rinaire" }, { - "source": "RVMLaval", - "authorized_access_point": "Skoptsis" - } - ], - "identifiedBy": [ - { - "type": "uri", - "value": "http://www.idref.fr/034680365", - "source": "IDREF" + "authorized_access_point": "Scanographie en p\u00e9diatrie" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb125409625", - "source": "BNF" + "authorized_access_point": "Scanographie h\u00e9lico\u00efdale" } ], - "classification": [ + "broader": [ { - "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)", - "type": "bf:ClassificationDdc", - "classificationPortion": "200" + "authorized_access_point": "Imagerie pour le diagnostic" } ], + "relation_pid": { + "value": "241357721", + "type": "redirect_from" + }, "variant_access_point": [ - "Scoptes", - "Secte des castrats", - "Skopcestvo", - "Skopcy", - "Skoptsi", - "Skoptsis", - "Skoptzi", - "Skoptzy" + "Tomodensitom\u00e9trie", + "Tomographie axiale", + "Tomographie informatis\u00e9e" ], - "authorized_access_point": "Skoptsy" + "md5": "b4debc6062672079b528be5d36fd3f33" }, { - "md5": "4b8dcf237c477d70493791b9363819b6", - "pid": "03483446X", - "note": [ + "type": "bf:Topic", + "authorized_access_point": "Politique linguistique", + "bnf_type": "sujet Rameau", + "classification": [ { - "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures chypriotes", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la vedette Litt\u00e9rature chypriote, qui sert de vedette mod\u00e8le. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires chypriotes" - ], - "noteType": "general" + "type": "bf:ClassificationDdc", + "classificationPortion": "350", + "name": "Administration publique" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "401" } ], - "type": "bf:Temporal", - "related": [ + "closeMatch": [ + { + "authorized_access_point": "Politique linguistique", + "source": "RVMLaval" + }, + { + "authorized_access_point": "Language planning", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85074563", + "source": "LCSH" + } + ] + }, { - "authorized_access_point": "Litt\u00e9rature chypriote - 1571-...." + "authorized_access_point": "Language policy", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85074564", + "source": "LCSH" + } + ] } ], - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/02741664X", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/03483446X", + "value": "http://www.idref.fr/02741664X", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12554505d", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11946264x", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11946264" } ], - "authorized_access_point": "1571-...." - }, - { - "md5": "b95926ad7853c8be5393913ee172f565", - "pid": "034853537", "note": [ { + "noteType": "dataSource", + "label": [ + "Les politiques linguistiques / L.-J. Calvet, 1996", + "L'id\u00e9e de politique linguistique : actes du colloque du 18 d\u00e9cembre 2008 organis\u00e9 \u00e0 l'\u00c9cole normale sup\u00e9rieure / Soci\u00e9t\u00e9 fran\u00e7aise de terminologie, 2009", + "Politique linguistique : faits et th\u00e9orie / N. Halaoui, 2011" + ] + }, + { + "noteType": "general", "label": [ - "S'emploie uniquement en subdivision chronologique \u00e0 certaines litt\u00e9ratures, par exemple les litt\u00e9ratures latino-am\u00e9ricaines, la litt\u00e9rature arm\u00e9nienne, etc", - "Cette subdivision est utilis\u00e9e dans des cha\u00eenes construites avec les litt\u00e9ratures, celles-ci servant de vedettes mod\u00e8les pour tous les genres litt\u00e9raires de m\u00eame langue ou de m\u00eame nationalit\u00e9, par ex. : Litt\u00e9rature arm\u00e9nienne -- Avant 1800. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec les genres litt\u00e9raires" - ], - "noteType": "general" + "S'emploie \u00e9galement en subdivision" + ] } ], - "type": "bf:Temporal", + "pid": "02741664X", "related": [ { - "authorized_access_point": "Litt\u00e9rature argentine - Avant 1800" + "authorized_access_point": "Diffusion des langues" }, { - "authorized_access_point": "Litt\u00e9rature arm\u00e9nienne - Avant 1800" + "authorized_access_point": "Discrimination linguistique" }, { - "authorized_access_point": "Litt\u00e9rature basque - Avant 1800" + "authorized_access_point": "\u00c9cologie des langues" }, { - "authorized_access_point": "Litt\u00e9rature bolivienne - Avant 1800" - }, + "authorized_access_point": "Langues - Droit" + } + ], + "narrower": [ { - "authorized_access_point": "Litt\u00e9rature br\u00e9silienne - Avant 1800" + "authorized_access_point": "Monolinguisme" }, { - "authorized_access_point": "Litt\u00e9rature chilienne - Avant 1800" + "authorized_access_point": "Alphab\u00e9tisation" }, { - "authorized_access_point": "Litt\u00e9rature colombienne - Avant 1800" + "authorized_access_point": "Cadre europ\u00e9en commun de r\u00e9f\u00e9rence en langue" }, { - "authorized_access_point": "Litt\u00e9rature cubaine - Avant 1800" + "authorized_access_point": "F\u00e9minisation (linguistique)" }, { - "authorized_access_point": "Litt\u00e9rature \u00e9quatorienne - Avant 1800" + "authorized_access_point": "Francophonie" }, { - "authorized_access_point": "Litt\u00e9rature finnoise - Avant 1800" + "authorized_access_point": "Langue d'enseignement" }, { - "authorized_access_point": "Litt\u00e9rature hispano-am\u00e9ricaine - Avant 1800" + "authorized_access_point": "Langue de travail" }, { - "authorized_access_point": "Litt\u00e9rature hongroise - Avant 1800" + "authorized_access_point": "Langue universelle" }, { - "authorized_access_point": "Litt\u00e9rature latino am\u00e9ricaine - Avant 1800" + "authorized_access_point": "Normalisation linguistique" }, { - "authorized_access_point": "Litt\u00e9rature mexicaine - Avant 1800" + "authorized_access_point": "Organisations internationales - Politique linguistique" }, { - "authorized_access_point": "Litt\u00e9rature persane - Avant 1800" + "authorized_access_point": "Orthographe - R\u00e9forme" }, { - "authorized_access_point": "Litt\u00e9rature p\u00e9ruvienne - Avant 1800" - }, + "authorized_access_point": "Pr\u00e9servation des langues" + } + ], + "broader": [ { - "authorized_access_point": "Litt\u00e9rature roumaine - Avant 1800" + "authorized_access_point": "Langues - Aspect politique" }, { - "authorized_access_point": "Litt\u00e9rature slave - Avant 1800" + "authorized_access_point": "Politique culturelle" }, { - "authorized_access_point": "Litt\u00e9rature slovaque - Avant 1800" + "authorized_access_point": "Politique de la communication" + } + ], + "variant_access_point": [ + "Action linguistique", + "Am\u00e9nagement linguistique", + "\u00c9tat et langues", + "Glottopolitique", + "Langues - Planification", + "Langues - Politique publique", + "Langues et \u00c9tat", + "Langues et nationalisme", + "Langues et politique", + "Langues nationales", + "Langues officielles", + "Nationalisme et langues", + "Planification linguistique", + "Politique de la langue", + "Politique et langues" + ], + "md5": "5b3e4b2d6e0326a95ab79c50dfd34ffe" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Magasins", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "330", + "name": "Economie" }, { - "authorized_access_point": "Litt\u00e9rature slov\u00e8ne - Avant 1800" + "type": "bf:ClassificationDdc", + "classificationPortion": "690", + "name": "B\u00e2timent" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Stores, Retail", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85128377", + "source": "LCSH" + } + ] }, { - "authorized_access_point": "Litt\u00e9rature ukrainienne - Avant 1800" + "authorized_access_point": "Magasins", + "source": "RVMLaval" } ], - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027802973", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/034853537", + "value": "http://www.idref.fr/027802973", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12556227c", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119766650", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11976665" } ], - "authorized_access_point": "Avant 1800" - }, - { - "md5": "ae15161166d70802ce226b68b137ffb0", - "pid": "03487156X", "note": [ { + "noteType": "dataSource", "label": [ - "Japanese Literary History - http://www.jlit.net (2010-07-12)" - ], - "noteType": "dataSource" - }, - { - "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures japonaises", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la vedette Litt\u00e9rature japonaise, qui sert de vedette mod\u00e8le. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires japonais" - ], - "noteType": "general" + "Grand Larousse universel", + "Grand Robert de la langue fran\u00e7aise, 2001" + ] } ], - "type": "bf:Temporal", + "pid": "027802973", "related": [ { - "authorized_access_point": "Litt\u00e9rature japonaise - 1185-1600" + "authorized_access_point": "Centres commerciaux" + }, + { + "authorized_access_point": "Commer\u00e7ants" + }, + { + "authorized_access_point": "Commerce de d\u00e9tail" + }, + { + "authorized_access_point": "Coop\u00e9ratives de consommation" + }, + { + "authorized_access_point": "Entreprises \u00e0 succursales" + }, + { + "authorized_access_point": "Magasins - Fa\u00e7ades" + }, + { + "authorized_access_point": "Magasins - Horaires et jours d'ouverture" + }, + { + "authorized_access_point": "Magasins - Localisation" } ], - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "narrower": [ { - "type": "uri", - "value": "http://www.idref.fr/03487156X", - "source": "IDREF" + "authorized_access_point": "D\u00e9p\u00f4ts-ventes" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb125578398", - "source": "BNF" + "authorized_access_point": "Grands magasins" + }, + { + "authorized_access_point": "Magasins d'usine" + }, + { + "authorized_access_point": "Magasins de centre-ville" + }, + { + "authorized_access_point": "Magasins discount" + }, + { + "authorized_access_point": "Magasins en libre-service" + }, + { + "authorized_access_point": "Magasins \u00e9ph\u00e9m\u00e8res" + }, + { + "authorized_access_point": "Magasins populaires" + }, + { + "authorized_access_point": "Magasins sp\u00e9cialis\u00e9s" + }, + { + "authorized_access_point": "Petits commerces" + }, + { + "authorized_access_point": "Rayons de magasin" + }, + { + "authorized_access_point": "Sex-shops" + }, + { + "authorized_access_point": "Tabernae" } ], - "classification": [ + "broader": [ { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "authorized_access_point": "Constructions commerciales" } ], - "authorized_access_point": "1185-1600" + "variant_access_point": [ + "Boutiques", + "Commerces", + "\u00c9tablissements commerciaux", + "Magasins de d\u00e9tail", + "Magasins de vente au d\u00e9tail" + ], + "md5": "3a31172f50a2a19693b27343c342c87b" }, { - "md5": "300d0379607c6700441f87ad978c22e0", - "pid": "034933697", - "note": [ + "type": "bf:Topic", + "authorized_access_point": "Glycog\u00e9noses", + "bnf_type": "sujet Rameau", + "classification": [ { - "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures allemandes", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la vedette Litt\u00e9rature allemande, qui sert de vedette mod\u00e8le. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires allemands" - ], - "noteType": "general" + "type": "bf:ClassificationDdc", + "classificationPortion": "610", + "name": "Sciences m\u00e9dicales et param\u00e9dicales" } ], - "type": "bf:Temporal", - "related": [ + "closeMatch": [ + { + "authorized_access_point": "Glycogen storage disease", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85055399", + "source": "LCSH" + } + ] + }, + { + "authorized_access_point": "Glycogen Storage Disease", + "source": "MeSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/M0009469", + "source": "MeSH" + } + ] + }, { - "authorized_access_point": "Litt\u00e9rature allemande - 750-1050 (vieux haut-allemand)" + "authorized_access_point": "Glycog\u00e9nose", + "source": "RVMLaval" } ], - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027824586", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/034933697", + "value": "http://www.idref.fr/027824586", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb125633859", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11978325d", "source": "BNF" - } - ], - "classification": [ - { - "name": "Langues et linguistique", - "type": "bf:ClassificationDdc", - "classificationPortion": "400" }, { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11978325" } ], - "authorized_access_point": "750-1050(vieux haut-allemand)" - }, - { - "md5": "80ad0fea693e1ddc8ec846ab5e29cfca", - "pid": "034934774", "note": [ { + "noteType": "dataSource", "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures am\u00e9ricaines", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la vedette Litt\u00e9rature am\u00e9ricaine, celle-ci servant de vedette mod\u00e8le. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires am\u00e9ricains" - ], - "noteType": "general" + "Dict. de l'Acad\u00e9mie de m\u00e9decine - http://dictionnaire.academie-medecine.fr (2013-07-17)", + "Dict. de m\u00e9decine Flammarion, 2008", + "Dict. fran\u00e7ais de m\u00e9decine et de biologie, 1981", + "Dict. illustr\u00e9 des termes de m\u00e9decine, 2008 : glycog\u00e9nique (maladie)" + ] } ], - "type": "bf:Temporal", - "related": [ + "pid": "027824586", + "narrower": [ { - "authorized_access_point": "Litt\u00e9rature am\u00e9ricaine - 1783-1865" - } - ], - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "authorized_access_point": "Maladie de McArdle" + }, { - "type": "uri", - "value": "http://www.idref.fr/034934774", - "source": "IDREF" + "authorized_access_point": "Maladie de Pompe" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb125634727", - "source": "BNF" + "authorized_access_point": "Maladie de von Gierke" } ], - "classification": [ + "broader": [ { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "authorized_access_point": "Maladies h\u00e9r\u00e9ditaires m\u00e9taboliques" + }, + { + "authorized_access_point": "Troubles du m\u00e9tabolisme des glucides" } ], "variant_access_point": [ - "1783-1850" + "Glycogen storage diseases", + "Glycog\u00e9nose", + "GSD (maladies)", + "Maladies glycog\u00e9niques", + "Polycories glycog\u00e9niques" ], - "authorized_access_point": "1783-1865" + "md5": "1a105487a5d60f06fa7fd3b5790f9b92" }, { - "md5": "03ff6369b7b32d2d23f9c1938077ec43", - "pid": "034934936", - "note": [ + "type": "bf:Topic", + "authorized_access_point": "Honoraires de messe", + "bnf_type": "sujet Rameau", + "classification": [ { - "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures anglaises", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la vedette Litt\u00e9rature anglaise, qui sert de vedette mod\u00e8le. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires anglais" - ], - "noteType": "general" + "type": "bf:ClassificationDdc", + "classificationPortion": "200", + "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)" } ], - "type": "bf:Temporal", - "related": [ + "closeMatch": [ { - "authorized_access_point": "Anglais (langue) - +* 0450......- 1100......+:450-1100: (vieil anglais)" + "authorized_access_point": "Mass stipends", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85081908", + "source": "LCSH" + } + ] }, { - "authorized_access_point": "Litt\u00e9rature anglaise - 450-1100 (vieil anglais)" + "authorized_access_point": "Honoraires de messe", + "source": "RVMLaval" } ], - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027855929", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/034934936", + "value": "http://www.idref.fr/027855929", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12563486x", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11980818s", "source": "BNF" - } - ], - "classification": [ - { - "name": "Langues et linguistique", - "type": "bf:ClassificationDdc", - "classificationPortion": "400" }, { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" - } - ], - "authorized_access_point": "450-1100(vieil anglais)" - }, - { - "md5": "5fd5f41bdeaf6c42613d2e35b7172e8a", - "pid": "034935061", - "note": [ - { - "label": [ - "La subdivision chronologique Avant 622 s'emploie uniquement aux litt\u00e9ratures et genres litt\u00e9raires arabes", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la litt\u00e9rature, celle-ci servant de vedette mod\u00e8le pour les genres litt\u00e9raires de m\u00eame langue. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec les genres litt\u00e9raires" - ], - "noteType": "general" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11980818" } ], - "type": "bf:Temporal", + "pid": "027855929", "related": [ { - "authorized_access_point": "Litt\u00e9rature arabe - Avant 622" + "authorized_access_point": "Messe" } ], - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "broader": [ { - "type": "uri", - "value": "http://www.idref.fr/034935061", - "source": "IDREF" + "authorized_access_point": "Droit canonique" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb125634967", - "source": "BNF" + "authorized_access_point": "\u00c9glise catholique - Finances" } ], - "classification": [ - { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" - } + "variant_access_point": [ + "Offrandes de messe" ], - "authorized_access_point": "Avant 622" + "md5": "66815ce82e026b73fd7707d9f2cf0225" }, { - "md5": "40fcd9266ffe6af14d94a73f5ff18ae9", - "pid": "034935134", - "note": [ + "type": "bf:Topic", + "authorized_access_point": "Affaires", + "bnf_type": "sujet Rameau", + "classification": [ { - "label": [ - "La subdivision chronologique 622-750 s'emploie uniquement aux litt\u00e9ratures et genres litt\u00e9raires arabes", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la litt\u00e9rature, celle-ci servant de vedette mod\u00e8le pour les genres litt\u00e9raires de m\u00eame langue. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec les genres litt\u00e9raires" - ], - "noteType": "general" + "type": "bf:ClassificationDdc", + "classificationPortion": "330", + "name": "Economie" } ], - "type": "bf:Temporal", - "related": [ + "closeMatch": [ + { + "authorized_access_point": "Affaires", + "source": "RVMLaval" + }, { - "authorized_access_point": "Litt\u00e9rature arabe - 622-750" + "authorized_access_point": "Business", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85018260", + "source": "LCSH" + } + ] } ], - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/028205847", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/034935134", + "value": "http://www.idref.fr/028205847", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb125635010", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13319296w", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13319296" } ], - "authorized_access_point": "622-750" - }, - { - "md5": "c972c0188c5db3201ba3534db68394e5", - "pid": "034935177", "note": [ { + "noteType": "general", "label": [ - "La subdivision chronologique 750-1258 s'emploie uniquement aux litt\u00e9ratures et genres litt\u00e9raires arabes", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la litt\u00e9rature, celle-ci servant de vedette mod\u00e8le pour les genres litt\u00e9raires de m\u00eame langue. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec les genres litt\u00e9raires" - ], - "noteType": "general" + "Ensemble des activit\u00e9s \u00e9conomiques et financi\u00e8res ayant pour objet les transactions, les \u00e9changes, etc", + "S'emploie \u00e9galement en subdivision" + ] } ], - "type": "bf:Temporal", + "pid": "028205847", "related": [ { - "authorized_access_point": "Litt\u00e9rature arabe - 750-1258" - } - ], - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "authorized_access_point": "Astrologie et affaires" + }, { - "type": "uri", - "value": "http://www.idref.fr/034935177", - "source": "IDREF" + "authorized_access_point": "Commerce" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12563505c", - "source": "BNF" - } - ], - "classification": [ + "authorized_access_point": "Gestion" + }, { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "authorized_access_point": "Gestion d'entreprise" + }, + { + "authorized_access_point": "M\u00e9dias et affaires" + }, + { + "authorized_access_point": "Prostitution et affaires" + }, + { + "authorized_access_point": "Quartiers d'affaires" } ], - "authorized_access_point": "750-1258" - }, - { - "md5": "eac7be14a25c2f07cdd9a2b486c30312", - "pid": "034935207", - "note": [ + "narrower": [ { - "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures arabes" - ], - "noteType": "general" + "authorized_access_point": "Banques d'affaires" + }, + { + "authorized_access_point": "Comptabilit\u00e9" + }, + { + "authorized_access_point": "Cr\u00e9ativit\u00e9 dans les affaires" + }, + { + "authorized_access_point": "Droit des affaires" + }, + { + "authorized_access_point": "Entrepreneuriat" + }, + { + "authorized_access_point": "Entreprises" + }, + { + "authorized_access_point": "\u00c9thique des affaires" + }, + { + "authorized_access_point": "Femmes d'affaires" + }, + { + "authorized_access_point": "Finances" + }, + { + "authorized_access_point": "Gestion budg\u00e9taire" + }, + { + "authorized_access_point": "Goodwill" + }, + { + "authorized_access_point": "Hommes d'affaires" + }, + { + "authorized_access_point": "Immobilier" + }, + { + "authorized_access_point": "Industries du sexe" + }, + { + "authorized_access_point": "Langage commercial et des affaires" + }, + { + "authorized_access_point": "Marchandisation" + }, + { + "authorized_access_point": "N\u00e9gociations (affaires)" + }, + { + "authorized_access_point": "Profit" + }, + { + "authorized_access_point": "Relations avec la client\u00e8le" + }, + { + "authorized_access_point": "Secteur priv\u00e9" + }, + { + "authorized_access_point": "Soci\u00e9t\u00e9s" + }, + { + "authorized_access_point": "Succ\u00e8s dans les affaires" + }, + { + "authorized_access_point": "T\u00e9l\u00e9phone dans les affaires" + }, + { + "authorized_access_point": "Tenue des livres" + }, + { + "authorized_access_point": "Voyages d'affaires" + }, + { + "authorized_access_point": "Publicit\u00e9" } ], - "type": "bf:Temporal", - "related": [ + "broader": [ { - "authorized_access_point": "Litt\u00e9rature arabe - 1801-...." + "authorized_access_point": "\u00c9conomie politique" } ], + "variant_access_point": [ + "Et les affaires" + ], + "md5": "a82d7a4dff389ed146ab9c3595b6c361" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Conditions \u00e9conomiques - Afrique du Nord - 1960-....", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/028221044", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/034935207", + "value": "http://www.idref.fr/028221044", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb125635072", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12010061v", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12010061" } ], - "classification": [ + "note": [ { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "noteType": "dataNotFound", + "label": [ + "LCSH, 1991-12. - Laval RVM, 1992-02" + ] } ], - "authorized_access_point": "1801-...." + "pid": "028221044", + "relation_pid": { + "value": "14024994X", + "type": "redirect_from" + }, + "md5": "f2fb0fc9722de5018452e9f4a2473872" }, { - "md5": "224407fc8664efad7f87ce3f72205909", - "pid": "034935274", - "note": [ + "type": "bf:Topic", + "authorized_access_point": "Enseignement audiovisuel", + "bnf_type": "sujet Rameau", + "classification": [ { - "label": [ - "La subdivision chronologique Avant 221 av. J.-C. s'emploie uniquement aux litt\u00e9ratures et genres litt\u00e9raires chinois", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la litt\u00e9rature, celle-ci servant de vedette mod\u00e8le pour les genres litt\u00e9raires de m\u00eame nationalit\u00e9. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec les genres litt\u00e9raires" - ], - "noteType": "general" + "type": "bf:ClassificationDdc", + "classificationPortion": "370", + "name": "Education et enseignement" } ], - "type": "bf:Temporal", - "related": [ + "closeMatch": [ + { + "authorized_access_point": "\u00c9tude et enseignement -- Aides audiovisuelles", + "source": "RVMLaval" + }, { - "authorized_access_point": "Litt\u00e9rature chinoise - Avant 221 av. J.-C." + "authorized_access_point": "Study and teaching--Audio-visual aids", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2001009046", + "source": "LCSH" + } + ] } ], - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/028889347", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/034935274", + "value": "http://www.idref.fr/028889347", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12563512n", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12063139q", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12063139" } ], - "authorized_access_point": "Avant 221 av. J.-C." - }, - { - "md5": "7d77391fb983b6e0a3537d483205eec2", - "pid": "034935290", "note": [ { + "noteType": "general", "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures et genres litt\u00e9raires chinois", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la litt\u00e9rature chinoise, celle-ci servant de vedette mod\u00e8le. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires chinois" - ], - "noteType": "general" + "S'emploie \u00e9galement en subdivision" + ] } ], - "type": "bf:Temporal", + "pid": "028889347", "related": [ { - "authorized_access_point": "Litt\u00e9rature chinoise - 221 av. J.-C.-220 (dynasties des Qin et des Han)" + "authorized_access_point": "Documents audiovisuels" + }, + { + "authorized_access_point": "Documentation audiovisuelle" } ], - "bnf_type": "sujet Rameau", - "identifiedBy": [ - { - "type": "uri", - "value": "http://www.idref.fr/034935290", - "source": "IDREF" - }, + "broader": [ { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb125635130", - "source": "BNF" + "authorized_access_point": "Enseignement" } ], + "variant_access_point": [ + "Enseignement - M\u00e9thodes audiovisuelles", + "\u00c9tude et enseignement - Aides audiovisuelles", + "Magn\u00e9tophones dans l'enseignement", + "Radio en \u00e9ducation", + "Radio scolaire", + "T\u00e9l\u00e9vision en \u00e9ducation", + "T\u00e9l\u00e9vision scolaire", + "Vid\u00e9o en \u00e9ducation", + "Vid\u00e9odisques en \u00e9ducation" + ], + "md5": "387379e330b2211b4e2f66a1b8c7af0e" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Industries du sexe", + "bnf_type": "sujet Rameau", "classification": [ { - "name": "Histoire et critique litt\u00e9raires", "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "classificationPortion": "300", + "name": "Sciences sociales" }, { - "name": "Pr\u00e9histoire et histoire ancienne", "type": "bf:ClassificationDdc", - "classificationPortion": "930" + "classificationPortion": "330", + "name": "Economie" } ], - "authorized_access_point": "221 av. J.-C.-220(Dynasties des Qin et des Han)" - }, - { - "md5": "af768121369c422958aabbfd2b290806", - "pid": "034935304", - "note": [ + "closeMatch": [ { - "label": [ - "Encycl. universalis (art. : Chinoise (Civilisation) - La litt\u00e9rature) : Empire des Tang (618-907) - http://www.universalis-edu.com (2014-07-25)" - ], - "noteType": "dataSource" + "authorized_access_point": "Industrie pornographique", + "source": "RVMLaval" }, { - "label": [ - "S'emploie uniquement en subdivision chronologique [sans subd. g\u00e9ogr.] aux litt\u00e9ratures chinoises, par ex. : Po\u00e9sie chinoise -- 618-907 (Dynastie des T\u2032ang)", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la vedette Litt\u00e9rature chinoise, qui sert de vedette mod\u00e8le. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires chinois" - ], - "noteType": "general" - } - ], - "type": "bf:Temporal", - "related": [ - { - "authorized_access_point": "Litt\u00e9rature chinoise - 618-907 (Dynastie des T\u2032ang)" + "authorized_access_point": "Sex-oriented businesses", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85120657", + "source": "LCSH" + } + ] } ], - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/028938615", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/034935304", + "value": "http://www.idref.fr/028938615", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12563514b", + "value": "http://catalogue.bnf.fr/ark:/12148/cb120670727", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12067072" } ], - "authorized_access_point": "618-907(Dynastie des T\u2032ang)" - }, - { - "md5": "8db12d54f85d7b12a7956bd23cb17692", - "pid": "034935827", "note": [ { + "noteType": "dataSource", "label": [ - "La subdivision chronologique 1368-1644 (Dynastie des Ming) s'emploie uniquement aux litt\u00e9ratures et genres litt\u00e9raires chinois", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la litt\u00e9rature, celle-ci servant de vedette mod\u00e8le pour les genres litt\u00e9raires de m\u00eame nationalit\u00e9. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec les genres litt\u00e9raires" - ], - "noteType": "general" + "Wikip\u00e9dia : Industrie du sexe - http://fr.wikipedia.org (2011-09-02)", + "La mondialisation des industries du sexe / R. Poulin, 2005", + "L'industrie du sexe / D. Haddad, 1992" + ] } ], - "type": "bf:Temporal", + "pid": "028938615", "related": [ { - "authorized_access_point": "Litt\u00e9rature chinoise - 1368-1644 (Dynastie des Ming)" - } - ], - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "authorized_access_point": "Cybersexe" + }, { - "type": "uri", - "value": "http://www.idref.fr/034935827", - "source": "IDREF" + "authorized_access_point": "Pornographie" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12563558z", - "source": "BNF" - } - ], - "classification": [ + "authorized_access_point": "Sexualit\u00e9" + }, { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "authorized_access_point": "Travailleurs du sexe" } ], - "authorized_access_point": "1368-1644(Dynastie des Ming)" - }, - { - "md5": "56fac10d6ef1399fc2c3bf98b30e5c3a", - "pid": "034935835", - "note": [ + "narrower": [ { - "label": [ - "La subdivision chronologique 1644-1912 (Dynastie Mandchoue) s'emploie uniquement aux litt\u00e9ratures et genres litt\u00e9raires chinois", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la litt\u00e9rature, celle-ci servant de vedette mod\u00e8le pour les genres litt\u00e9raires de m\u00eame nationalit\u00e9. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec les genres litt\u00e9raires" - ], - "noteType": "general" - } - ], - "type": "bf:Temporal", - "related": [ + "authorized_access_point": "Maisons de prostitution" + }, { - "authorized_access_point": "Litt\u00e9rature chinoise - 1644-1912 (Dynastie mandchoue)" - } - ], - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "authorized_access_point": "Prostitution" + }, { - "type": "uri", - "value": "http://www.idref.fr/034935835", - "source": "IDREF" + "authorized_access_point": "Sex-shops" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb125635599", - "source": "BNF" + "authorized_access_point": "Strip-tease" + }, + { + "authorized_access_point": "Tourisme sexuel" } ], - "classification": [ + "broader": [ { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "authorized_access_point": "Affaires" } ], - "authorized_access_point": "1644-1912(Dynastie Mandchoue)" + "variant_access_point": [ + "Sexe - Industrie et commerce", + "Sexualit\u00e9 - Industrie et commerce", + "Commerce pornographique", + "Commerce sexuel", + "Industrie du sexe", + "Industrie pornographique", + "Messageries roses", + "Porno business", + "Pornographie - Industrie et commerce", + "Sex business" + ], + "md5": "e55bdea3eada5a18b8ef9beed8e7aea2" }, { - "md5": "2b5215066abda72b6791aeeb66dc7194", - "pid": "034935908", - "note": [ + "type": "bf:Topic", + "authorized_access_point": "Immigr\u00e9s", + "bnf_type": "sujet Rameau", + "classification": [ { - "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures cor\u00e9ennes", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la vedette Litt\u00e9rature cor\u00e9enne, celle-ci servant de vedette mod\u00e8le. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires cor\u00e9ens" - ], - "noteType": "general" + "type": "bf:ClassificationDdc", + "classificationPortion": "300", + "name": "Sciences sociales" } ], - "type": "bf:Temporal", - "related": [ + "closeMatch": [ { - "authorized_access_point": "Litt\u00e9rature cor\u00e9enne - 1600-1800" + "authorized_access_point": "Immigrants", + "source": "RVMLaval" + }, + { + "authorized_access_point": "Immigrants", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85064517", + "source": "LCSH" + } + ] } ], - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/031082599", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/034935908", + "value": "http://www.idref.fr/031082599", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12563564w", + "value": "http://catalogue.bnf.fr/ark:/12148/cb122368540", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12236854" } ], - "variant_access_point": [ - "1598-1800" - ], - "authorized_access_point": "1600-1800" - }, - { - "md5": "36d17808b1df75a327dcabf7903a1cfd", - "pid": "034936890", "note": [ { + "noteType": "dataSource", + "label": [ + "Thesaurus international de la terminologie relative aux r\u00e9fugi\u00e9s / HCR-la Documentation fran\u00e7aise, 1992" + ] + }, + { + "noteType": "general", + "label": [ + "Sous cette vedette on trouve les documents sur les personnes n\u00e9es \u00e0 l'\u00e9tranger entr\u00e9es dans un pays dans l'intention de s'y \u00e9tablir, voire d'en devenir citoyens. Cette vedette peut \u00eatre suivie d'une subdivision g\u00e9ographique qui indique le pays o\u00f9 les immigr\u00e9s s'\u00e9tablissent. Pour pr\u00e9ciser \u00e9ventuellement l'origine g\u00e9ographique des immigr\u00e9s, on \u00e9tablit une seconde vedette mati\u00e8re du type : [Nationalit\u00e9] -- [Pays], par ex. : Irlandais -- \u00c9tats-Unis", + "S'emploie \u00e9galement en subdivision" + ] + }, + { + "noteType": "seeReference", "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures grecques modernes", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la vedette Litt\u00e9rature grecque moderne, celle-ci servant de vedette mod\u00e8le. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires grecs modernes" - ], - "noteType": "general" + "Voir aussi la subdivision Participation des immigr\u00e9s aux guerres" + ] } ], - "type": "bf:Temporal", + "pid": "031082599", "related": [ { - "authorized_access_point": "Litt\u00e9rature grecque moderne - 1453-1820" + "authorized_access_point": "\u00c9migration et immigration" + }, + { + "authorized_access_point": "Enfants d'immigr\u00e9s" + }, + { + "authorized_access_point": "Envois de fonds" + }, + { + "authorized_access_point": "\u00c9trangers" + }, + { + "authorized_access_point": "Immigr\u00e9s - Acculturation" + }, + { + "authorized_access_point": "Internet et immigr\u00e9s" + }, + { + "authorized_access_point": "Participation des immigr\u00e9s" + }, + { + "authorized_access_point": "Pastorale des migrants" + }, + { + "authorized_access_point": "Travailleurs \u00e9trangers" + }, + { + "authorized_access_point": "\u00c9crits d'immigr\u00e9s" } ], - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "narrower": [ { - "type": "uri", - "value": "http://www.idref.fr/034936890", - "source": "IDREF" + "authorized_access_point": "Adolescents immigr\u00e9s" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb125636498", - "source": "BNF" + "authorized_access_point": "Biblioth\u00e8ques et immigr\u00e9s" + }, + { + "authorized_access_point": "Diasporas" + }, + { + "authorized_access_point": "Familles immigr\u00e9es" + }, + { + "authorized_access_point": "Immigr\u00e9es" + }, + { + "authorized_access_point": "Immigr\u00e9s \u00e2g\u00e9s" + }, + { + "authorized_access_point": "Immigr\u00e9s clandestins" + }, + { + "authorized_access_point": "Immigr\u00e9s dans l'industrie du cin\u00e9ma" + }, + { + "authorized_access_point": "Jeunes immigr\u00e9s" + }, + { + "authorized_access_point": "Service social aupr\u00e8s des immigr\u00e9s" } ], - "classification": [ + "broader": [ { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "authorized_access_point": "Population" } ], "variant_access_point": [ - "1453-1820", - "1453-1800" + "\u00c9migrants", + "Et les \u00e9migr\u00e9s", + "\u00c9migr\u00e9s", + "Et l'immigration", + "Et les travailleurs \u00e9trangers", + "Expatri\u00e9s", + "Immigrants", + "Migrants", + "Population d'origine \u00e9trang\u00e8re" ], - "authorized_access_point": "1453-1820" + "md5": "5872283340e497ecd0230dac84562803" }, { - "md5": "c04b29a794e5e3ac8ac498c1e97ac7af", - "pid": "034937072", - "note": [ + "type": "bf:Topic", + "authorized_access_point": "Shan\u0101\u012b (hautbois indien)", + "bnf_type": "sujet Rameau", + "classification": [ { - "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures cor\u00e9ennes et japonaises", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec les vedettes Litt\u00e9rature cor\u00e9enne et Litt\u00e9rature japonaise, celles-ci servant de mod\u00e8les. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires cor\u00e9ens et japonais" - ], - "noteType": "general" + "type": "bf:ClassificationDdc", + "classificationPortion": "780", + "name": "Musique" } ], - "type": "bf:Temporal", - "related": [ + "closeMatch": [ { - "authorized_access_point": "Litt\u00e9rature cor\u00e9enne - Avant 1600" + "authorized_access_point": "\u015aahn\u0101\u012b", + "source": "LCMP", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/performanceMediums/mp2013015636", + "source": "LCMP" + } + ] }, { - "authorized_access_point": "Litt\u00e9rature japonaise - Avant 1600" + "authorized_access_point": "Shahna\u00ef", + "source": "RVMLaval" + }, + { + "authorized_access_point": "Shehnai", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85121263", + "source": "LCSH" + } + ] } ], - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/031955274", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/034937072", + "value": "http://www.idref.fr/031955274", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb125636645", + "value": "http://catalogue.bnf.fr/ark:/12148/cb123075977", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12307597" } ], - "authorized_access_point": "Avant 1600" - }, - { - "md5": "a04ac83e897683f6112d0eaf02c9e259", - "pid": "034937099", "note": [ { + "noteType": "dataSource", + "label": [ + "Grand Larousse universel", + "Encycl. universalis (art. : Chalemie) : sahn\u0101\u012b (shahn\u0101\u012b, shehn\u0101\u012b) - http://www.universalis-edu.com (2011-02-15)", + "Dict. de la musique / M. Honegger, 1976 (art. : Inde)", + "Dict. de la musique / M. Vignal, 2005 (art. : Indienne (Musique)) : sahna\u00ef", + "Dict. des mots de la musique / J. Siron, 2006 : shahn\u0101\u012b", + "Encycl. des instruments de musique / A. Buchner, 1980 : sahna\u00ef", + "Encycl. de la musique, 1992 : shenai", + "M\u00e9diath\u00e8que de la Cit\u00e9 de la musique : sahnai - http://mediatheque.cite-musique.fr (2011-02-15)", + "Dict. encyclop\u00e9dique de la musique / D. Arnold, 1988 (art. : Inde ; Chalemie) : shahna\u00ef ou sahna\u00ef", + "Oxford Music online : \u015bahn\u0101\u012b - http://www.oxfordmusiconline.com (2011-02-15)", + "Dict. g\u00e9n\u00e9ral hindi-fran\u00e7ais / N. Balbir, 1992 : \u015b\u0301ahn\u0101\u012b", + "BnF Service indien, 2017-07-17" + ] + }, + { + "noteType": "general", "label": [ - "La subdivision chronologique Avant 794 s'emploie uniquement aux litt\u00e9ratures et genres litt\u00e9raires japonais", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la litt\u00e9rature, celle-ci servant de vedette mod\u00e8le pour les genres litt\u00e9raires de m\u00eame nationalit\u00e9. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec les genres litt\u00e9raires" - ], - "noteType": "general" + "Inde du Nord, Pakistan, Bangladesh. Hautbois en feuille de palmier s\u00e9ch\u00e9e, mont\u00e9e dans une petite base m\u00e9tallique conique ins\u00e9r\u00e9e dans un tuyau en bois d'environ 50 cm avec 7 trous \u00e9quidistants dans lequel est embo\u00eet\u00e9 un pavillon m\u00e9tallique conique (facture pour la musique hindoustanie). Dans certaines traditions r\u00e9gionales, le tuyau et le pavillon ne forment qu'une seule pi\u00e8ce en bois ou en m\u00e9tal, le nombre de trous varie entre 6 et 8, et il y a parfois un trou pour le pouce" + ] } ], - "type": "bf:Temporal", + "pid": "031955274", "related": [ { - "authorized_access_point": "Litt\u00e9rature japonaise - Avant 794" + "authorized_access_point": "Sahanai (hautbois n\u00e9palais)" + }, + { + "authorized_access_point": "Shan\u0101\u012b, Musique de" } ], - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "broader": [ { - "type": "uri", - "value": "http://www.idref.fr/034937099", - "source": "IDREF" + "authorized_access_point": "Hautbois (famille d'instruments)" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12563666v", - "source": "BNF" + "authorized_access_point": "Instruments de musique - Inde" } ], - "classification": [ - { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" - } + "variant_access_point": [ + "\u015aahn\u0101\u012b", + "Sahna\u012b", + "Sahnai", + "Shahna\u00ef", + "Shehn\u0101\u012b", + "Shenai" ], - "authorized_access_point": "Avant 794" + "md5": "decb1da49bf0505c76a537d2e2f1ef5f" }, { - "md5": "2c8f977eb1bd4b951c4bc2b03d4e14e5", - "pid": "034937129", - "note": [ + "type": "bf:Topic", + "authorized_access_point": "\u00c9ducation de la premi\u00e8re enfance - M\u00e9thodes actives", + "bnf_type": "sujet Rameau", + "classification": [ { - "label": [ - "La subdivision chronologique 1868-.... s'emploie uniquement aux litt\u00e9ratures et genres litt\u00e9raires japonais", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la litt\u00e9rature, celle-ci servant de vedette mod\u00e8le pour les genres litt\u00e9raires de m\u00eame nationalit\u00e9. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec les genres litt\u00e9raires" - ], - "noteType": "general" + "type": "bf:ClassificationDdc", + "classificationPortion": "370", + "name": "Education et enseignement" } ], - "type": "bf:Temporal", - "related": [ + "closeMatch": [ + { + "authorized_access_point": "\u00c9ducation de la premi\u00e8re enfance -- M\u00e9thodes actives", + "source": "RVMLaval" + }, { - "authorized_access_point": "Litt\u00e9rature japonaise - 1868-...." + "authorized_access_point": "Early childhood education--Activity programs", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh89003664", + "source": "LCSH" + } + ] } ], - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/03465500X", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/034937129", + "value": "http://www.idref.fr/03465500X", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12563668j", + "value": "http://catalogue.bnf.fr/ark:/12148/cb125387672", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12538767" } ], - "relation_pid": { - "type": "redirect_from", - "value": "086230441" - }, - "classification": [ + "pid": "03465500X", + "narrower": [ { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "authorized_access_point": "M\u00e9thode Agazzi" + }, + { + "authorized_access_point": "P\u00e9dagogie Germaine Tortel" + }, + { + "authorized_access_point": "Tapis de lecture" } ], - "authorized_access_point": "1868-...." + "broader": [ + { + "authorized_access_point": "Enseignement - M\u00e9thodes actives" + } + ], + "md5": "d488f044f437a5d2ce9167717cac244e" }, { - "md5": "b2b4d1763c043c6bb427ed13775ad035", - "pid": "035021128", - "note": [ + "type": "bf:Topic", + "authorized_access_point": "G\u00e9ographie culturelle", + "bnf_type": "sujet Rameau", + "classification": [ { - "label": [ - "La subdivision chronologique Avant 1762 s'emploie uniquement aux litt\u00e9ratures et genres litt\u00e9raires bulgares", - "Cette subdivision est utilis\u00e9e dans des cha\u00eenes construites avec la litt\u00e9rature bulgare, celle-ci servant de vedette mod\u00e8le pour les genres litt\u00e9raires bulgares" - ], - "noteType": "general" + "type": "bf:ClassificationDdc", + "classificationPortion": "390", + "name": "Ethnologie, anthropologie, folklore" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "910", + "name": "G\u00e9ographie, tourisme (guides) et voyages" } ], - "type": "bf:Temporal", - "related": [ + "closeMatch": [ { - "authorized_access_point": "Litt\u00e9rature bulgare - Avant 1762" + "authorized_access_point": "G\u00e9ographie culturelle", + "source": "RVMLaval" } ], - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/035141913", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/035021128", + "value": "http://www.idref.fr/035141913", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12570883g", + "value": "http://catalogue.bnf.fr/ark:/12148/cb131699688", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13169968" } ], - "authorized_access_point": "Avant 1762" - }, - { - "md5": "dcbb414874538f693fb9e6fac5660683", - "pid": "035021179", "note": [ { + "noteType": "dataSource", "label": [ - "S'emploie uniquement en subdivision chronologique [sans subd. g\u00e9ogr.] aux litt\u00e9ratures bulgares", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la vedette Litt\u00e9rature bulgares, qui sert de vedette mod\u00e8le. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires bulgares" - ], - "noteType": "general" + "La g\u00e9ographie culturelle / Paul Claval, 1995", + "Les mots de la g\u00e9ographie / Roger Brunet, 1992 (art. culture)" + ] } ], - "type": "bf:Temporal", + "pid": "035141913", "related": [ { - "authorized_access_point": "Litt\u00e9rature bulgare - 1762-1878" + "authorized_access_point": "\u00c9tudes r\u00e9gionales" } ], - "bnf_type": "sujet Rameau", - "identifiedBy": [ - { - "type": "uri", - "value": "http://www.idref.fr/035021179", - "source": "IDREF" - }, + "narrower": [ { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12570887v", - "source": "BNF" + "authorized_access_point": "G\u00e9ographie des sexualit\u00e9s" } ], - "classification": [ + "broader": [ { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "authorized_access_point": "Culture" + }, + { + "authorized_access_point": "G\u00e9ographie humaine" } ], "variant_access_point": [ - "1762-1880" + "Anthropog\u00e9ographie" ], - "authorized_access_point": "1762-1878" + "md5": "58faa7a6cbb7fa6c407ea9c08f470903" }, { - "md5": "7257b226b44548074ee1d5ea2e1ea46e", - "pid": "035077948", - "note": [ + "type": "bf:Topic", + "authorized_access_point": "\u00c9rotisme", + "bnf_type": "sujet Rameau", + "classification": [ { - "label": [ - "La subdivision chronologique 1912-1949 s'emploie uniquement aux litt\u00e9ratures et genres litt\u00e9raires chinois", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la litt\u00e9rature, celle-ci servant de vedette mod\u00e8le pour les genres litt\u00e9raires de m\u00eame nationalit\u00e9. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec les genres litt\u00e9raires" - ], - "noteType": "general" + "type": "bf:ClassificationDdc", + "classificationPortion": "300", + "name": "Sciences sociales" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "700", + "name": "Arts" } ], - "type": "bf:Temporal", - "related": [ + "closeMatch": [ { - "authorized_access_point": "Litt\u00e9rature chinoise - 1912-1949" + "authorized_access_point": "Erotica", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85044718", + "source": "LCSH" + } + ] + }, + { + "authorized_access_point": "\u00c9rotisme", + "source": "RVMLaval" } ], - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/05058748X", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/035077948", + "value": "http://www.idref.fr/05058748X", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb131655179", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12650884k", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12650884" } ], - "authorized_access_point": "1912-1949" - }, - { - "md5": "a902aaf1610588b731473316c695c42c", - "pid": "035077964", "note": [ { + "noteType": "dataSource", "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures chinoises", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la vedette Litt\u00e9rature chinoise, celle-ci servant de vedette mod\u00e8le. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires chinois" - ], - "noteType": "general" + "Grand Larousse universel" + ] } ], - "type": "bf:Temporal", + "pid": "05058748X", "related": [ { - "authorized_access_point": "Litt\u00e9rature chinoise - 1949-1976" - } - ], - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "authorized_access_point": "Aphrodisiaques" + }, { - "type": "uri", - "value": "http://www.idref.fr/035077964", - "source": "IDREF" + "authorized_access_point": "Art \u00e9rotique" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb131655190", - "source": "BNF" + "authorized_access_point": "Homo\u00e9rotisme" + }, + { + "authorized_access_point": "Libertinage" + }, + { + "authorized_access_point": "Morale sexuelle" + }, + { + "authorized_access_point": "Objets \u00e9rotiques" + }, + { + "authorized_access_point": "Pornographie" + }, + { + "authorized_access_point": "S\u00e9duction" + }, + { + "authorized_access_point": "Sexualit\u00e9" + }, + { + "authorized_access_point": "Sexualit\u00e9 dans les arts du spectacle" + }, + { + "authorized_access_point": "Bandes dessin\u00e9es \u00e9rotiques" + }, + { + "authorized_access_point": "Films \u00e9rotiques" + }, + { + "authorized_access_point": "Photographie \u00e9rotique" } ], - "classification": [ + "narrower": [ { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "authorized_access_point": "Litt\u00e9rature \u00e9rotique" } ], - "authorized_access_point": "1949-1976" + "variant_access_point": [ + "\u00c9rographie" + ], + "md5": "46768379f222e6e251d15f4c018bdee7" }, { - "md5": "efdae859455b0f6cc26393dba5a8a754", - "pid": "035078316", - "note": [ + "type": "bf:Topic", + "authorized_access_point": "P\u00e9riodiques malgaches", + "bnf_type": "sujet Rameau", + "classification": [ { - "label": [ - "Grand Larousse universel", - "Encycl. universalis (art. : Chinoise (Civilisation) - La litt\u00e9rature) - http://www.universalis-edu.com (2014-07-25)", - "Hist. des litt\u00e9ratures / Encycl. de La Pl\u00e9iade, 1958" - ], - "noteType": "dataSource" + "type": "bf:ClassificationDdc", + "classificationPortion": "020", + "name": "Sciences de l'information" }, { - "label": [ - "S'emploie uniquement en subdivision chronologique [sans subd. g\u00e9ogr.] aux litt\u00e9ratures chinoises, par ex. : Th\u00e9\u00e2tre (genre litt\u00e9raire) chinois -- 1280-1368 (Dynastie des Yuan)", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la litt\u00e9rature chinoise, celle-ci servant de vedette mod\u00e8le. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires chinois" - ], - "noteType": "general" + "type": "bf:ClassificationDdc", + "classificationPortion": "390", + "name": "Ethnologie" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "400", + "name": "Langues" } ], - "type": "bf:Temporal", - "related": [ + "closeMatch": [ { - "authorized_access_point": "Litt\u00e9rature chinoise - 1280-1368 (Dynastie des Yuan)" + "authorized_access_point": "Malagasy periodicals", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85080027", + "source": "LCSH" + } + ] } ], - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/061612820", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/035078316", + "value": "http://www.idref.fr/061612820", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb131655535", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13757124s", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13757124" } ], - "authorized_access_point": "1280-1368(Dynastie des Yuan)" - }, - { - "md5": "68805e8a102ae6b4c467d833b597d4ee", - "pid": "035087625", "note": [ { + "noteType": "general", "label": [ - "La subdivision chronologique 1775-1783 (P\u00e9riode r\u00e9volutionnaire) s'emploie uniquement aux litt\u00e9ratures et genres litt\u00e9raires pratiqu\u00e9s aux Etats-Unis", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la litt\u00e9rature, celle-ci servant de vedette mod\u00e8le pour les genres litt\u00e9raires de m\u00eame nationalit\u00e9. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec les genres litt\u00e9raires" - ], - "noteType": "general" + "Sous cette vedette, on trouve les documents sur les p\u00e9riodiques en malgache ; ou publi\u00e9s \u00e0 Madagascar (quelle qu'en soit la langue) ; ou publi\u00e9s par des Malgaches \u00e0 l'\u00e9tranger" + ] } ], - "type": "bf:Temporal", + "pid": "061612820", "related": [ { - "authorized_access_point": "Litt\u00e9rature am\u00e9ricaine - 1775-1783 (P\u00e9riode r\u00e9volutionnaire)" - } - ], - "bnf_type": "sujet Rameau", - "identifiedBy": [ - { - "type": "uri", - "value": "http://www.idref.fr/035087625", - "source": "IDREF" + "authorized_access_point": "Malgache (langue)" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb13166188z", - "source": "BNF" - } - ], - "classification": [ - { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "authorized_access_point": "Madagascar" } ], - "authorized_access_point": "1775-1783(P\u00e9riode r\u00e9volutionnaire)" - }, - { - "md5": "a08cd2c4929516a3920eb4ce7dbe2eec", - "pid": "03509446X", - "note": [ - { - "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures galloises et su\u00e9doises", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec les vedettes Litt\u00e9rature galloise et Litt\u00e9rature su\u00e9doise, celles-ci servant de vedettes mod\u00e8les. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires gallois et su\u00e9dois" - ], - "noteType": "general" - } + "variant_access_point": [ + "P\u00e9riodiques en malgache" ], - "type": "bf:Temporal", - "related": [ + "md5": "7c433852bae11003badd0358080dc623" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Caract\u00e8re national malgache", + "bnf_type": "sujet Rameau", + "classification": [ { - "authorized_access_point": "Litt\u00e9rature galloise - Avant 1550" + "type": "bf:ClassificationDdc", + "classificationPortion": "300", + "name": "Sciences sociales" }, { - "authorized_access_point": "Litt\u00e9rature su\u00e9doise - Avant 1550" + "type": "bf:ClassificationDdc", + "classificationPortion": "390", + "name": "Ethnologie" } ], - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/127977996", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/03509446X", + "value": "http://www.idref.fr/127977996", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb13166547g", + "value": "http://catalogue.bnf.fr/ark:/12148/cb16079309j", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16079309" } ], - "classification": [ + "pid": "127977996", + "related": [ { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "authorized_access_point": "Madagascar" } ], - "authorized_access_point": "Avant 1550" + "variant_access_point": [ + "Malgaches - Caract\u00e8re national" + ], + "md5": "6a1942196dc18ae3f9eec8aa4e143223" }, { - "md5": "b3bdc08f45865c1309a0ffb98b406ded", - "pid": "035207191", - "note": [ - { - "label": [ - "La subdivision Avant 1912 s'emploie uniquement aux litt\u00e9ratures et genres litt\u00e9raires chinois", - "Cette subdivision est \u00e0 utiliser dans des cha\u00eenes construites avec la litt\u00e9rature, celles-ci servant de vedettes mod\u00e8les pour les genres litt\u00e9raires de m\u00eame langue ou de m\u00eame nationalit\u00e9. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec les genres litt\u00e9raires" - ], - "noteType": "general" - } - ], - "type": "bf:Temporal", - "related": [ + "type": "bf:Topic", + "authorized_access_point": "Et Madagascar", + "bnf_type": "sujet Rameau", + "classification": [ { - "authorized_access_point": "Litt\u00e9rature chinoise - Avant 1912" + "type": "bf:ClassificationDdc", + "classificationPortion": "915", + "name": "G\u00e9ographie du reste du monde" } ], - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/131462415", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/035207191", + "value": "http://www.idref.fr/131462415", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb131743151", + "value": "http://catalogue.bnf.fr/ark:/12148/cb16061704s", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16061704" } ], - "authorized_access_point": "Avant 1912" - }, - { - "md5": "b1f21dded8a37bfb7dab320badac5419", - "pid": "03528076X", "note": [ { + "noteType": "general", "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures cor\u00e9ennes", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la vedette Litt\u00e9rature cor\u00e9enne, celle-ci servant de vedette mod\u00e8le. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires cor\u00e9ens" - ], - "noteType": "general" + "S'emploie uniquement en subdivision aux collectivit\u00e9s (\u00e0 l'exception des types de collectivit\u00e9s) et aux personnes", + "Pour l'application g\u00e9n\u00e9rale de cette subdivision, voir les notes sous le renvoi g\u00e9n\u00e9ral Et [nom g\u00e9ographique]" + ] } ], - "type": "bf:Temporal", + "pid": "131462415", "related": [ { - "authorized_access_point": "Litt\u00e9rature cor\u00e9enne - Avant 1910" + "authorized_access_point": "Madagascar" } ], + "variant_access_point": [ + "Et les Malgaches" + ], + "md5": "7136f5b0787793bc728758b292f21e9d" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Allemand (langue) - Examens", "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "370", + "name": "Education et enseignement" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "400", + "name": "Langues et linguistique" + } + ], + "closeMatch": [ + { + "authorized_access_point": "German language -- Examinations", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2008008787", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/144331373", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/03528076X", + "value": "http://www.idref.fr/144331373", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb13320775b", + "value": "http://catalogue.bnf.fr/ark:/12148/cb162021301", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16202130" } ], - "classification": [ + "pid": "144331373", + "related": [ { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "authorized_access_point": "Allemand (langue)" + } + ], + "narrower": [ + { + "authorized_access_point": "Deutsche Sprachpr\u00fcfung f\u00fcr den Hochschulzugang" + }, + { + "authorized_access_point": "Goethe-Zertifikat A1" + }, + { + "authorized_access_point": "Goethe-Zertifikat A2" + }, + { + "authorized_access_point": "Goethe-Zertifikat B1" + }, + { + "authorized_access_point": "Goethe-Zertifikat B2" + }, + { + "authorized_access_point": "Goethe-Zertifikat C1" + }, + { + "authorized_access_point": "Goethe-Zertifikat C2" + }, + { + "authorized_access_point": "Test Deutsch als Fremdsprache" } ], - "authorized_access_point": "Avant 1910" + "md5": "0b598ffce2f62fd13eb52dd9fbf5aa6a" }, { - "md5": "c610d75d7bb340cdf55c7e9c20d1f13e", - "pid": "035383925", - "note": [ + "type": "bf:Topic", + "authorized_access_point": "Cours en ligne ouverts \u00e0 tous", + "bnf_type": "sujet Rameau", + "classification": [ { - "label": [ - "La subdivision Avant 1000 s'emploie uniquement aux litt\u00e9ratures et genres litt\u00e9raires turcs", - "Cette subdivision est utilis\u00e9e dans en cha\u00eene construite avec la litt\u00e9rature turque, celle-ci servant de vedettes mod\u00e8les pour les genres litt\u00e9raires de m\u00eame langue ou nationalit\u00e9. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec les genres litt\u00e9raires" - ], - "noteType": "general" + "type": "bf:ClassificationDdc", + "classificationPortion": "330", + "name": "Economie" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "370", + "name": "Education et enseignement" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" } ], - "type": "bf:Temporal", - "related": [ + "closeMatch": [ + { + "authorized_access_point": "MOOCs (Web-based instruction)", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2013002540", + "source": "LCSH" + } + ] + }, { - "authorized_access_point": "Litt\u00e9rature turque - Avant 1000" + "authorized_access_point": "Cours en ligne ouverts \u00e0 tous", + "source": "RVMLaval" } ], - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/180213911", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/035383925", + "value": "http://www.idref.fr/180213911", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb13320983h", + "value": "http://catalogue.bnf.fr/ark:/12148/cb16901246n", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16901246" } ], - "authorized_access_point": "Avant 1000" - }, - { - "md5": "94a6870557f4791e226776c552ffd926", - "pid": "035623683", "note": [ { + "noteType": "dataSource", "label": [ - "Laval-RVM, 1997-02. - LCSH, 1996-09" - ], - "noteType": "dataNotFound" + "Wikidata - https://www.wikidata.org/wiki/Q967853 (2024-06-27)", + "France Terme - http://www.culture.fr (2014-08-04)", + "Beno\u00eet Hamon introduit le cours en ligne massif et ouvert (CLOM) \"Enseigner et former avec le num\u00e9rique\", destin\u00e9 \u00e0 la communaut\u00e9 enseignante - http://www.education.gouv.fr (2014-08-04)", + "Un MOOC pour enseigner et former par le num\u00e9rique - http://www.education.gouv.fr (2014-08-04)" + ] }, { + "noteType": "general", "label": [ - "La subdivision chronologique 13e-19e si\u00e8cles (d\u00eevan) s'emploie uniquement \u00e0 la litt\u00e9rature et aux genres litt\u00e9raires turcs", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la litt\u00e9rature, celle-ci servant de vedette mod\u00e8le pour les genres litt\u00e9raires de m\u00eame nationalit\u00e9. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec les genres litt\u00e9raires" - ], - "noteType": "general" + "Cours en ligne ouvert \u00e0 tous, souvent gratuit, qui peut accueillir un tr\u00e8s grand nombre de participants simultan\u00e9ment" + ] } ], - "type": "bf:Temporal", + "pid": "180213911", "related": [ { - "authorized_access_point": "Litt\u00e9rature turque - 13e-19e si\u00e8cles (d\u00eevan)" - } - ], - "bnf_type": "sujet Rameau", - "identifiedBy": [ - { - "type": "uri", - "value": "http://www.idref.fr/035623683", - "source": "IDREF" + "authorized_access_point": "Internet en \u00e9ducation" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb13325307z", - "source": "BNF" + "authorized_access_point": "Universit\u00e9s virtuelles" } ], - "classification": [ + "broader": [ { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "authorized_access_point": "Formation en ligne" } ], - "authorized_access_point": "13e-19e si\u00e8cles(d\u00eevan)" + "variant_access_point": [ + "CLOM", + "COOC", + "Corporate open online courses", + "Cours en ligne", + "Cours en ligne ouverts et massifs", + "Masse open online courses", + "Massively open online courses", + "MOOC", + "MOOC d'entreprise" + ], + "md5": "712550eb17c7dcfa5ced42bad8d43f0a" }, { - "md5": "0316d45f58c6ffeea8b54362f366e6e5", - "pid": "035623691", - "note": [ + "type": "bf:Topic", + "authorized_access_point": "Goethe-Zertifikat C1", + "bnf_type": "sujet Rameau", + "classification": [ { - "label": [ - "S'emploie uniquement en subdivision chronologiques aux litt\u00e9ratures et genres litt\u00e9raires turcs", - "Cette subdivision est \u00e0 utiliser dans des cha\u00eenes construites avec la litt\u00e9rature turque, celles-ci servant de vedettes mod\u00e8les pour les genres litt\u00e9raires de m\u00eame nationalit\u00e9 ; elle est \u00e0 utiliser par \u00e9l\u00e9ments avec les genres litt\u00e9raires" - ], - "noteType": "general" - } - ], - "type": "bf:Temporal", - "related": [ + "type": "bf:ClassificationDdc", + "classificationPortion": "370", + "name": "Education et enseignement" + }, { - "authorized_access_point": "Litt\u00e9rature turque - 1923-.... (p\u00e9riode r\u00e9publicaine)" + "type": "bf:ClassificationDdc", + "classificationPortion": "400", + "name": "Langues et linguistique" } ], - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/181492628", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/035623691", + "value": "http://www.idref.fr/181492628", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb133253089", + "value": "http://catalogue.bnf.fr/ark:/12148/cb16932316v", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16932316" } ], - "authorized_access_point": "1923-....(p\u00e9riode r\u00e9publicaine)" - }, - { - "md5": "9e4bf4c5431fe8a7499f618443130528", - "pid": "035801123", "note": [ { + "noteType": "dataSource", "label": [ - "Petit Larousse 2004 (art. : Psych\u00e9d\u00e9lique)", - "Encycl. universalis : rock psych\u00e9d\u00e9lique ou acid rock - http://www.universalis-edu.com (2013-11-08)", - "Encycl. illustr\u00e9e de toutes les musiques / P. Du Noyer, 2004", - "Oxford Music online : psychedelic rock - http://www.oxfordmusiconline.com (2013-11-08)", - "Allmusic : psychedelic rock ; acid rock - http://www.allmusic.com (2013-11-08)", - "Dict. du rock / M. Assayas, 2000 : acid rock" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Courant musical cr\u00e9\u00e9 dans les ann\u00e9es 1960 par des groupes californiens, qui cherchent \u00e0 traduire dans leur musique les sensations dues \u00e0 la prise de drogues hallucinog\u00e8nes" - ], - "noteType": "general" + "Pr\u00fcfungstraining Deutsch. Goethe-Zertifikat, C1. Zentrale Mittelstufenpr\u00fcfung (ZMP) / G. Baier, R. Dittrich, 2008" + ] } ], - "type": "bf:Topic", - "broader": [ + "pid": "181492628", + "related": [ { - "authorized_access_point": "Psych\u00e9d\u00e9lisme" + "authorized_access_point": "Goethe-Zertifikat A1" }, { - "authorized_access_point": "Rock (musique)" - } - ], - "related": [ - { - "authorized_access_point": "Drogues et arts" + "authorized_access_point": "Goethe-Zertifikat B1" }, { - "authorized_access_point": "Rock planant" + "authorized_access_point": "Goethe-Zertifikat C2" } ], - "bnf_type": "genre/forme Rameau", - "closeMatch": [ + "broader": [ { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh95010207", - "source": "LCSH" - }, - "authorized_access_point": "Psychedelic rock music" - }, + "authorized_access_point": "Allemand (langue) - Examens" + } + ], + "md5": "e60b3a43f77ff9fba579261daef993d2" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Amiot (avions)", + "bnf_type": "sujet Rameau", + "classification": [ { - "source": "RVMLaval", - "authorized_access_point": "Musique psych\u00e9d\u00e9lique" + "type": "bf:ClassificationDdc", + "classificationPortion": "600", + "name": "Sciences appliqu\u00e9es" } ], + "identifier": "http://www.idref.fr/273372734", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/035801123", + "value": "http://www.idref.fr/273372734", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb13337484c", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18113037q", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18113037" } ], - "classification": [ + "note": [ { - "name": "Musique", - "type": "bf:ClassificationDdc", - "classificationPortion": "780" + "noteType": "dataSource", + "label": [ + "F\u00e9lix Amiot : un industriel normand de l'a\u00e9ronautique et de la construction navale / J. Lecarpentier, 2020" + ] + } + ], + "pid": "273372734", + "broader": [ + { + "authorized_access_point": "Avions" } ], + "relation_pid": { + "value": "272748889", + "type": "redirect_from" + }, "variant_access_point": [ - "Acid-rock", - "Musique psych\u00e9d\u00e9lique", - "Psych\u00e9d\u00e9lique, Musique" + "Soci\u00e9t\u00e9 d'emboutissage et de constructions m\u00e9caniques (avions)" ], - "authorized_access_point": "Rock psych\u00e9d\u00e9lique" + "md5": "ab5bf7d138b3688852f4ca1015060c63" }, { - "md5": "d2936409633838dc01b5efd5f06ec100", - "pid": "050170406", - "note": [ + "type": "bf:Topic", + "authorized_access_point": "Farman (avions)", + "bnf_type": "sujet Rameau", + "classification": [ { - "label": [ - "S'emploie uniquement en subdivision chronologique non affranchie sous la vedette : \u00c9glise catholique -- [subd. g\u00e9ogr.]" - ], - "noteType": "general" + "type": "bf:ClassificationDdc", + "classificationPortion": "600", + "name": "Sciences appliqu\u00e9es" } ], - "type": "bf:Temporal", - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/273372742", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/050170406", + "value": "http://www.idref.fr/273372742", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb13339991h", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18113041z", "source": "BNF" - } - ], - "classification": [ - { - "name": "Religion", - "type": "bf:ClassificationDdc", - "classificationPortion": "200" }, { - "name": "Histoire", - "type": "bf:ClassificationDdc", - "classificationPortion": "900" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18113041" } ], - "authorized_access_point": "1900-1965" - }, - { - "md5": "9b9ea0c9e17d6a3eeba5d4c50c4d2e66", - "pid": "050203177", "note": [ { + "noteType": "dataSource", "label": [ - "Grand Larousse universel", - "Grand Robert de la langue fran\u00e7aise, 2001" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Sous cette vedette, obligatoirement suivie d'une subdivision g\u00e9ographique ou de la subdivision : \u00c0 l'\u00e9tranger, directement ou apr\u00e8s une subdivision de sujet, on trouve les documents sur les Ghan\u00e9ens hors du Ghana. Les documents sur les Ghan\u00e9ens au Ghana se trouvent sous des vedettes-mati\u00e8re telles que : Moeurs et coutumes -- Ghana ; etc" - ], - "noteType": "general" + "Jane's encycl. of aviation, M. J. Taylor, 1980" + ] } ], - "type": "bf:Topic", + "pid": "273372742", "broader": [ { - "authorized_access_point": "Ethnologie - Ghana" + "authorized_access_point": "Avions" } ], - "related": [ + "relation_pid": { + "value": "272765120", + "type": "redirect_from" + }, + "md5": "ca728bfa2d1f37ffdb8286beb21866c8" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Hanriot (avions)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "330", + "name": "Economie" + }, { - "authorized_access_point": "Ghana" + "type": "bf:ClassificationDdc", + "classificationPortion": "600", + "name": "Sciences appliqu\u00e9es" } ], - "bnf_type": "sujet Rameau", - "narrower": [ + "identifier": "http://www.idref.fr/273372750", + "identifiedBy": [ { - "authorized_access_point": "\u00c9crivains ghan\u00e9ens" + "type": "uri", + "value": "http://www.idref.fr/273372750", + "source": "IDREF" }, { - "authorized_access_point": "Ghan\u00e9ennes" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18113046p", + "source": "BNF" }, { - "authorized_access_point": "Travailleurs \u00e9trangers ghan\u00e9ens" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18113046" } ], - "closeMatch": [ + "note": [ { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85054784", - "source": "LCSH" - }, - "authorized_access_point": "Ghanaians" + "noteType": "dataSource", + "label": [ + "Aviation fran\u00e7aise - https://www.aviafrance.com (2023-11-09)" + ] + } + ], + "pid": "273372750", + "broader": [ + { + "authorized_access_point": "Avions" + } + ], + "relation_pid": { + "value": "272860972", + "type": "redirect_from" + }, + "md5": "59ac69aa9274c8a17052ace23ddb401e" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Salmson (avions)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "330", + "name": "Economie" }, { - "source": "RVMLaval", - "authorized_access_point": "Ghan\u00e9ens" + "type": "bf:ClassificationDdc", + "classificationPortion": "600", + "name": "Sciences appliqu\u00e9es" } ], + "identifier": "http://www.idref.fr/273372777", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/050203177", + "value": "http://www.idref.fr/273372777", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb135064736", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181130549", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Ethnologie, anthropologie, folklore", - "type": "bf:ClassificationDdc", - "classificationPortion": "390" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18113054" } ], - "authorized_access_point": "Ghan\u00e9ens" - }, - { - "md5": "cee06d87b853f1e1e54c2307e1e07e89", - "pid": "050323148", "note": [ { + "noteType": "dataSource", "label": [ - "La subdivision chronologique 1550-1700 s'emploie uniquement aux litt\u00e9ratures et aux genres litt\u00e9raires gallois etirlandais", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la litt\u00e9rature, celle-ci servant de vedette mod\u00e8le pour les genres litt\u00e9raires de m\u00eame nationalit\u00e9. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec les genres litt\u00e9raires" - ], - "noteType": "general" + "Salmson : la belle m\u00e9canique fran\u00e7aise / C. et L. Chevalier, 2010", + "Salmson register 1921-1930 / D. L. Hill, 2007", + "The Salmson story : David & Charles / C. Draper, 1974" + ] } ], - "type": "bf:Temporal", - "related": [ - { - "authorized_access_point": "Litt\u00e9rature galloise - 1550-1700" - }, + "pid": "273372777", + "broader": [ { - "authorized_access_point": "Litt\u00e9rature irlandaise (ga\u00e9lique) - 1550-1700" + "authorized_access_point": "Avions" } ], + "relation_pid": { + "value": "272925985", + "type": "redirect_from" + }, + "md5": "db2b6de1584758e66bbd934bc237a322" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Chauvi\u00e8re (h\u00e9lices a\u00e9riennes)", "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "600", + "name": "Sciences appliqu\u00e9es" + } + ], + "identifier": "http://www.idref.fr/273372785", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/050323148", + "value": "http://www.idref.fr/273372785", "source": "IDREF" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb13510132j", - "source": "BNF" - } - ], - "classification": [ + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18113058p", + "source": "BNF" + }, { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18113058" } ], - "authorized_access_point": "1550-1700" - }, - { - "md5": "5058cf0f28a8229107e65ba51df98185", - "pid": "050323172", "note": [ { + "noteType": "dataSource", "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures galloises", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la vedette Litt\u00e9rature galloise, celle-ci servant de mod\u00e8le. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires gallois" - ], - "noteType": "general" + "Bois d'aviation / J.-M. Ballu, 2013", + "Notice technique de l'h\u00e9lice Chauvi\u00e8re, type 351 pour avion Morane 406 \u00e0 moteur Hispano 12 Y 31 (liaison \u00e0 cannelures), 1939" + ] } ], - "type": "bf:Temporal", - "related": [ + "pid": "273372785", + "broader": [ { - "authorized_access_point": "Litt\u00e9rature galloise - 1100-1550" + "authorized_access_point": "H\u00e9lices (a\u00e9ronautique)" } ], + "relation_pid": { + "value": "272965758", + "type": "redirect_from" + }, + "md5": "2497b21e94904cf2788ed89c44545eab" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Iraniens d'origine africaine", "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "390", + "name": "Ethnologie, anthropologie, folklore" + } + ], + "identifier": "http://www.idref.fr/277418216", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/050323172", + "value": "http://www.idref.fr/277418216", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb135101347", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181432712", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18143271" } ], - "authorized_access_point": "1100-1550" - }, - { - "md5": "5635b76f682e0b567da89c0d5cb1d8ea", - "pid": "050513478", "note": [ { + "noteType": "seeReference", "label": [ - "Encycl. universalis (art. : Dance music ; House music ; etc.) - http://www.universalis-edu.com (2011-03-03)", - "Wikip\u00e9dia : s\u00e9quenceur musical - http://fr.wikipedia.org (2011-03-03)", - "Dict. des mots de la musique / J. Siron, 2006", - "Dict. de la musique / M. Vignal, 2006", - "Dict. encyclop\u00e9dique de la musique / D. Arnold, 1988 (art. : Synth\u00e9tiseur) : sequencer" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Encycl. de la musique, 1992. - Dict. de la musique / M. Honegger, 1976. - Encycl. des instruments de musique / A. Buchner, 1980" - ], - "noteType": "dataNotFound" - }, - { - "label": [ - "\u00c9quipement permettant de faire jouer automatiquement un instrument de musique \u00e9lectronique" - ], - "noteType": "general" + "Voir aussi aux r\u00e9gions et aux pays africains" + ] } ], - "type": "bf:Topic", - "broader": [ + "pid": "277418216", + "related": [ { - "authorized_access_point": "Instruments de musique \u00e9lectroniques" + "authorized_access_point": "Africains" } ], - "related": [ - { - "authorized_access_point": "Boucles (musique)" - }, + "broader": [ { - "authorized_access_point": "S\u00e9quenceurs (logiciels)" + "authorized_access_point": "Ethnologie - Iran" } ], + "relation_pid": { + "value": "274969289", + "type": "redirect_from" + }, + "md5": "2918e185d609f869d2f008074858448b" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Delahaye (camions)", "bnf_type": "sujet Rameau", - "closeMatch": [ + "classification": [ { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh90005022", - "source": "LCSH" - }, - "authorized_access_point": "Sequencer (Musical instrument)" + "type": "bf:ClassificationDdc", + "classificationPortion": "330", + "name": "Economie" }, { - "source": "RVMLaval", - "authorized_access_point": "S\u00e9quenceur (instrument de musique)" + "type": "bf:ClassificationDdc", + "classificationPortion": "600", + "name": "Sciences appliqu\u00e9es" } ], + "identifier": "http://www.idref.fr/279035152", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/050513478", + "value": "http://www.idref.fr/279035152", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb13533493q", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181537573", "source": "BNF" - } - ], - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "621" }, { - "name": "Musique", - "type": "bf:ClassificationDdc", - "classificationPortion": "780" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18153757" } ], - "variant_access_point": [ - "S\u00e9quenceur musical" - ], - "authorized_access_point": "S\u00e9quenceur (instrument de musique)" - }, - { - "md5": "36a14563741d351d7567f1692ec584d5", - "pid": "050665391", "note": [ { + "noteType": "dataSource", "label": [ - "S'emploie uniquement en subdivision chronologique \u00e0 tous sujets noms communs et noms propres, \u00e0 l'exception des personnes et des sujets pour lesquels il existe un d\u00e9coupage chronologique sp\u00e9cifique" - ], - "noteType": "general" + "L'industrie automobile : 1905-1971 / J.-L. Loubet, 1999", + "Club Delahaye - https://clubdelahaye.com (2024-06-20)" + ] } ], - "type": "bf:Temporal", + "pid": "279035152", "broader": [ { - "authorized_access_point": "1800-...." + "authorized_access_point": "Camions" } ], - "related": [ + "relation_pid": { + "value": "278618901", + "type": "redirect_from" + }, + "md5": "77d0f89048644a56b3032890c150177d" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Renault (autobus)", + "bnf_type": "sujet Rameau", + "classification": [ { - "authorized_access_point": "1990-2020" + "type": "bf:ClassificationDdc", + "classificationPortion": "330", + "name": "Economie" }, { - "authorized_access_point": "Vingt et uni\u00e8me si\u00e8cle" + "type": "bf:ClassificationDdc", + "classificationPortion": "600", + "name": "Sciences appliqu\u00e9es" } ], - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279035160", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/050665391", + "value": "http://www.idref.fr/279035160", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb135365257", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18153768r", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Histoire et g\u00e9ographie (g\u00e9n\u00e9ralit\u00e9s)", - "type": "bf:ClassificationDdc", - "classificationPortion": "900" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18153768" } ], - "variant_access_point": [ - "2000-.... (subdivision)", - "21e si\u00e8cle (subdivision)", - "Vingt et uni\u00e8me si\u00e8cle (subdivision)", - "XXIe si\u00e8cle (subdivision)", - "21e si\u00e8cle" - ], - "authorized_access_point": "2000-...." - }, - { - "md5": "594bd8b0c4c4d10217d1377d0f660f46", - "pid": "061617296", "note": [ { + "noteType": "dataSource", "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures et genres litt\u00e9raires japonais" - ], - "noteType": "general" + "Plan\u00e8te Renault - https://www.planeterenault.com (2024-06-20)", + "Notice technique de l'autobus Renault type SXB moteur Renault 15 CV type 370\u200e / Minist\u00e8re de l'air. Arm\u00e9e de l'air, 1934" + ] } ], - "type": "bf:Temporal", - "related": [ + "pid": "279035160", + "broader": [ { - "authorized_access_point": "Litt\u00e9rature japonaise - 1868-1912 (\u00c8re Meiji)" + "authorized_access_point": "Autobus" } ], + "relation_pid": { + "value": "278626599", + "type": "redirect_from" + }, + "md5": "df4cc4a4d82674da8cfc301c7edabe72" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Latil (autobus)", "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "330", + "name": "Economie" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "600", + "name": "Sciences appliqu\u00e9es" + } + ], + "identifier": "http://www.idref.fr/279035179", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/061617296", + "value": "http://www.idref.fr/279035179", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb137741474", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18153789q", "source": "BNF" - } - ], - "classification": [ - { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" }, { - "type": "bf:ClassificationDdc", - "classificationPortion": "950" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18153789" } ], - "authorized_access_point": "1868-1912(\u00c8re Meiji)" - }, - { - "md5": "278cfc6127cb21bc0d91d415f14e9a84", - "pid": "077057384", "note": [ { + "noteType": "dataSource", "label": [ - "Histoire des litt\u00e9ratures / Encycl. de La Pl\u00e9iade, 1958" - ], - "noteType": "dataSource" - }, - { - "label": [ - "La p\u00e9riode 220-618 r\u00e9unit la p\u00e9riode des Trois Royaumes (220-265), les Six Dynasties (265-581) et la Dynastie Souei (581-618)", - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures et genres litt\u00e9raires chinois", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la litt\u00e9rature, celle-ci servant de vedette mod\u00e8le. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires chinois" - ], - "noteType": "general" + "Wikipedia (art. : Latil (entreprise)) - https://fr.wikipedia.org (2024-06-20)", + "Fondation Berliet - https://www.fondationberliet.org (2024-06-20)" + ] } ], - "type": "bf:Temporal", - "related": [ + "pid": "279035179", + "broader": [ { - "authorized_access_point": "Litt\u00e9rature chinoise - 220-618 (Six dynasties)" + "authorized_access_point": "Autobus" } ], + "relation_pid": { + "value": "278653340", + "type": "redirect_from" + }, + "md5": "8b0221e01f3364410f2ed2048345cfe8" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Latil (camions)", "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "330", + "name": "Economie" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "600", + "name": "Sciences appliqu\u00e9es" + } + ], + "identifier": "http://www.idref.fr/279035187", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/077057384", + "value": "http://www.idref.fr/279035187", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb144076013", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181537949", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18153794" } ], - "variant_access_point": [ - "220-589" - ], - "authorized_access_point": "220-618" - }, - { - "md5": "56a87b8936637de76fd6fea79ed3dc66", - "pid": "077061284", "note": [ { + "noteType": "dataSource", "label": [ - "Grand Larousse universel (art. : Psych\u00e9d\u00e9lique) : peinture psych\u00e9d\u00e9lique", - "L'art psych\u00e9d\u00e9lique / R. E. L. Masters, J. Houston, 1968", - "Nus abstraits et psych\u00e9d\u00e9liques / D. Olivier, 2012" - ], - "noteType": "dataSource" + "L'encycl. mondiale des camions / P.-J. Davis, 2003", + "L'Atlas des camions fran\u00e7ais / F. Dr\u00e9er, 2007" + ] } ], - "type": "bf:Topic", + "pid": "279035187", "broader": [ { - "authorized_access_point": "Art - 1970-...." - }, - { - "authorized_access_point": "Psych\u00e9d\u00e9lisme" - } - ], - "related": [ - { - "authorized_access_point": "Drogues et arts" - }, - { - "authorized_access_point": "Hallucinog\u00e8nes" + "authorized_access_point": "Camions" } ], + "relation_pid": { + "value": "278971148", + "type": "redirect_from" + }, + "md5": "c65e6faa1b96a65d64fadb262095d06e" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Goethe-Zertifikat C2", "bnf_type": "sujet Rameau", - "closeMatch": [ + "classification": [ { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh90000085", - "source": "LCSH" - }, - "authorized_access_point": "Psychedelic art" + "type": "bf:ClassificationDdc", + "classificationPortion": "370", + "name": "Education et enseignement" }, { - "source": "RVMLaval", - "authorized_access_point": "Art psych\u00e9d\u00e9lique" + "type": "bf:ClassificationDdc", + "classificationPortion": "400", + "name": "Langues et linguistique" } ], + "identifier": "http://www.idref.fr/279307322", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/077061284", + "value": "http://www.idref.fr/279307322", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb14424877k", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18148590c", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Arts", - "type": "bf:ClassificationDdc", - "classificationPortion": "700" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18148590" } ], - "variant_access_point": [ - "Dessin psych\u00e9d\u00e9lique", - "Peinture psych\u00e9d\u00e9lique", - "Psych\u00e9d\u00e9lique, Art" - ], - "authorized_access_point": "Art psych\u00e9d\u00e9lique" - }, - { - "md5": "7db7f5add381f05a3c44e84800f375db", - "pid": "080206913", "note": [ { + "noteType": "dataSource", "label": [ - "Petit dict. d'anatomie, d'embryologie et d'histologie / P. Kamina, 1990", - "Dict. de m\u00e9decine Flammarion, 2008", - "Dict. fran\u00e7ais de m\u00e9decine et de biologie, 1981", - "Atlas d'anatomie humaine / F. H. Netter, 1997" - ], - "noteType": "dataSource" + "Wikidata - https://www.wikidata.org/wiki/Q190333 (2024-05-24)", + "Wikip\u00e9dia - https://en.wikipedia.org (2024-05-24)", + "Goethe Institut - http://www.goethe.de (2024-05-24)", + "Goethe-Zertifikat C2 : Grosses Deutsches Sprachdiplom : \u00dcbungsbuch mit Audios Online, Deutsch als Fremdsprache / J. Gerbes, 2022" + ] + } + ], + "pid": "279307322", + "related": [ + { + "authorized_access_point": "Goethe-Zertifikat C1" } ], - "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Art\u00e8re iliaque interne" + "authorized_access_point": "Allemand (langue) - Examens" } ], + "md5": "fb46d85eb8185798ed5d1d0cd6b9b6ec" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Familles choisies", "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "300", + "name": "Sciences sociales" + } + ], "closeMatch": [ { - "source": "RVMLaval", - "authorized_access_point": "Art\u00e8re ombilicale" + "authorized_access_point": "Familles choisies", + "source": "RVMLaval" } ], + "identifier": "http://www.idref.fr/279307330", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/080206913", + "value": "http://www.idref.fr/279307330", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb14571495w", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18148927q", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18148927" } ], - "classification": [ + "note": [ { - "name": "Sciences de la vie", - "type": "bf:ClassificationDdc", - "classificationPortion": "570" - }, + "noteType": "dataSource", + "label": [ + "La famille choisie toujours d'actualit\u00e9 ? Vers une diversification des formes de liens familiaux pour les minorit\u00e9s sexuelles et de genre au Qu\u00e9bec [in] \u00c9critures des sexualit\u00e9s, 2023, 29", + "Familles choisies et r\u00e9seaux sociaux : quelle importance pour les personnes LGBTQ ? / S. Doucet [in] Partenariat de recherche SAVIE-LGBTQ, 2018, 1", + "La famille \u00e9lective / D . Mehl [in] Dialogue, 2023, 242, 4" + ] + } + ], + "pid": "279307330", + "broader": [ { - "name": "Sciences m\u00e9dicales et param\u00e9dicales", - "type": "bf:ClassificationDdc", - "classificationPortion": "610" + "authorized_access_point": "Famille" } ], "variant_access_point": [ - "Art\u00e8re ombilico-v\u00e9sicale", - "Arteria umbilicalis" + "Famille choisie", + "Famille de choix", + "Famille \u00e9lective", + "Familles de choix", + "Familles \u00e9lectives" ], - "authorized_access_point": "Art\u00e8re ombilicale" + "md5": "e9d260517a5be227e9de4ef5976db134" }, { - "md5": "08e439e32d49bbdf589d4b025463647b", - "pid": "083620338", - "note": [ + "type": "bf:Topic", + "authorized_access_point": "Personnes non binaires", + "bnf_type": "sujet Rameau", + "classification": [ { - "label": [ - "S'emploie uniquement en subdivision" - ], - "noteType": "general" + "type": "bf:ClassificationDdc", + "classificationPortion": "300", + "name": "Sciences sociales" } ], - "type": "bf:Topic", - "related": [ + "closeMatch": [ + { + "authorized_access_point": "Gender-nonconforming people", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2017004882", + "source": "LCSH" + } + ] + }, { - "authorized_access_point": "Droit d'amendement (droit constitutionnel)" + "authorized_access_point": "Gender-Nonconforming Persons", + "source": "MeSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D000096224", + "source": "MeSH" + } + ] }, { - "authorized_access_point": "R\u00e9vision constitutionnelle" + "authorized_access_point": "Personnes non binaires", + "source": "RVMLaval" } ], - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279307349", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/083620338", + "value": "http://www.idref.fr/279307349", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb14604104c", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18151606f", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Droit", - "type": "bf:ClassificationDdc", - "classificationPortion": "340" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18151606" } ], - "authorized_access_point": "Amendements" - }, - { - "md5": "e40d34d817236d7d1f8018b64be6d49f", - "pid": "083622519", "note": [ { + "noteType": "dataSource", "label": [ - "S'emploie uniquement en subdivision aux constitutions (dat\u00e9es ou non), par ex. : France -- Constitution (1958) -- R\u00e9vision" - ], - "noteType": "general" + "Grand Robert de la langue fran\u00e7aise (art. : binaire) - https://grandrobert-lerobert-com (2024-06-10)", + "Grand dict. terminologique (art. : personne non binaire) - https://vitrinelinguistique.oqlf.gouv.qc.ca (2024-06-10)", + "Binaires / Non-Binaires [in] Adolescences, 2023, 41, 2" + ] + } + ], + "pid": "279307349", + "related": [ + { + "authorized_access_point": "Non-binarit\u00e9" + } + ], + "broader": [ + { + "authorized_access_point": "Minorit\u00e9s sexuelles" } ], + "variant_access_point": [ + "Personnes non-binaires", + "Non-binaires", + "Personnes de genre non binaires", + "Personnes non binaires dans le genre" + ], + "md5": "84e3acccef9961eb365e6476bff3cbc3" + }, + { "type": "bf:Topic", - "deleted": "2022-08-25T10:47:31.616254+00:00", + "authorized_access_point": "Sex-shops", "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "300", + "name": "Sciences sociales" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "330", + "name": "Economie" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "690", + "name": "B\u00e2timent" + } + ], + "identifier": "http://www.idref.fr/279307357", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/083622519", + "value": "http://www.idref.fr/279307357", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb14603811b", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18152495k", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Droit", - "type": "bf:ClassificationDdc", - "classificationPortion": "340" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18152495" } ], - "variant_access_point": [ - "XXXXX" - ], - "authorized_access_point": "R\u00e9vision" - }, - { - "md5": "4ad26a8d36417065fefa81ea7b0f2348", - "pid": "092468675", "note": [ { + "noteType": "dataSource", + "label": [ + "Wikidata - https://www.wikidata.org/wiki/Q221618 (2024-06-13)", + "Tr\u00e9sor de la langue fran\u00e7aise - http://atilf.atilf.fr (2024-06-13)", + "Grand Larousse universel", + "Grand Robert de la langue fran\u00e7aise, 2001", + "Le travail pornographique : enqu\u00eate sur la production des fantasme / M. Trachman, 2013", + "Sociologie de la sexualit\u00e9 / M. Bozon, 2018" + ] + }, + { + "noteType": "general", "label": [ - "Illustrated glossary of protoctista, 1992", - "Introductory phycology / F. R. Trainor, 1988" - ], - "noteType": "dataSource" + "Magasin d'articles ayant \u00e0 voir avec la sexualit\u00e9 et la pornographie" + ] } ], - "type": "bf:Topic", + "pid": "279307357", "broader": [ { - "authorized_access_point": "Algues" + "authorized_access_point": "Industries du sexe" }, { - "authorized_access_point": "Microorganismes" + "authorized_access_point": "Magasins" } ], - "related": [ + "variant_access_point": [ + "Boutiques \u00e9rotiques", + "Boutiques pornographiques" + ], + "md5": "792c067723e5dcb601fcbf3f5bbcf2c6" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Homo\u00e9rotisme", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "150", + "name": "Psychologie, psychanalyse" + }, { - "authorized_access_point": "Algues unicellulaires" - } - ], - "bnf_type": "sujet Rameau", - "narrower": [ + "type": "bf:ClassificationDdc", + "classificationPortion": "300", + "name": "Sciences sociales" + }, { - "authorized_access_point": "Microalgues benthiques" + "type": "bf:ClassificationDdc", + "classificationPortion": "700", + "name": "Arts" } ], + "identifier": "http://www.idref.fr/279307365", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/092468675", + "value": "http://www.idref.fr/279307365", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb150116468", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18152519r", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Botanique", - "type": "bf:ClassificationDdc", - "classificationPortion": "580" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18152519" } ], - "variant_access_point": [ - "Micro-algues" - ], - "authorized_access_point": "Microalgues" - }, - { - "md5": "578c392be74219d8be719c0739bd3457", - "pid": "098272225", "note": [ { + "noteType": "dataSource", "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures turques" - ], - "noteType": "general" - } - ], - "type": "bf:Temporal", - "related": [ + "Wikidata - https://www.wikidata.org/wiki/Q2069508 (2024-06-13)", + "Wikip\u00e9dia - https://fr.wikipedia.org (2024-06-13)", + "Dict. de la psychologie / W. D. Fr\u00f6hlich, 1997", + "Dict. des cultures gays et lesbiennes / D. Eribon, 2003" + ] + }, { - "authorized_access_point": "Litt\u00e9rature turque - 1839-1923" + "noteType": "general", + "label": [ + "Relations \u00e9rotiques, mais pas n\u00e9cessairement sexuelles, entre personnes du m\u00eame sexe. - Imaginaire mettant en sc\u00e8ne le jeu du d\u00e9sir entre deux personnes du m\u00eame sexe" + ] } ], - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "pid": "279307365", + "related": [ { - "type": "uri", - "value": "http://www.idref.fr/098272225", - "source": "IDREF" + "authorized_access_point": "\u00c9rotisme" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15048183d", - "source": "BNF" + "authorized_access_point": "Homosexualit\u00e9 et art" } ], - "classification": [ + "broader": [ { - "name": "Litt\u00e9ratures", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "authorized_access_point": "Homosexualit\u00e9" } ], - "authorized_access_point": "1839-1923" + "md5": "bcca4c971f70894ecb1a4b3aab0db794" }, { - "md5": "e936146abaec4cf19ad9b65d7923015f", - "pid": "101481241", - "note": [ + "type": "bf:Topic", + "authorized_access_point": "G\u00e9ographie des sexualit\u00e9s", + "bnf_type": "sujet Rameau", + "classification": [ { - "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures grecques modernes", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la vedette Litt\u00e9rature grecque moderne, celle-ci servant de vedette mod\u00e8le. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires grecs modernes" - ], - "noteType": "general" - } - ], - "type": "bf:Temporal", - "related": [ + "type": "bf:ClassificationDdc", + "classificationPortion": "300", + "name": "Sciences sociales" + }, { - "authorized_access_point": "Litt\u00e9rature grecque moderne - 1820-1880" + "type": "bf:ClassificationDdc", + "classificationPortion": "910", + "name": "G\u00e9ographie, tourisme (guides) et voyages" } ], - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279307373", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/101481241", + "value": "http://www.idref.fr/279307373", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15061397c", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18152571v", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18152571" } ], - "authorized_access_point": "1820-1880" - }, - { - "md5": "4182e95d44e0497089f72a549aa6e5de", - "pid": "101481330", "note": [ { + "noteType": "dataSource", "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures irlandaises (ga\u00e9liques)", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la vedette Litt\u00e9rature irlandaise (ga\u00e9lique), celle-ci servant de vedette mod\u00e8le. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires irlandais (ga\u00e9liques)" - ], - "noteType": "general" + "G\u00e9ographies culturelles : objets, concepts, m\u00e9thodes / P. Guinard, 2019", + "Mapping desire : geographies of sexualities / D. Bell, G. Valentine, 1995", + "G\u00e9ographie de la sexualit\u00e9 ou sexualit\u00e9 du g\u00e9ographe ? Quelques le\u00e7ons autour d'une injonction / M. Blidon [in] Annales de g\u00e9ographie, 2012, 5-6" + ] } ], - "type": "bf:Temporal", + "pid": "279307373", "related": [ { - "authorized_access_point": "Litt\u00e9rature irlandaise (ga\u00e9lique) - Avant 1200" + "authorized_access_point": "Sexualit\u00e9" } ], - "bnf_type": "sujet Rameau", - "identifiedBy": [ - { - "type": "uri", - "value": "http://www.idref.fr/101481330", - "source": "IDREF" - }, + "broader": [ { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15061668m", - "source": "BNF" + "authorized_access_point": "G\u00e9ographie culturelle" } ], - "classification": [ - { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" - } + "variant_access_point": [ + "G\u00e9ographie de la sexualit\u00e9", + "Sexualit\u00e9 - G\u00e9ographie" ], - "authorized_access_point": "Avant 1200" + "md5": "695eb8b5e2d88f0c9e03ed8e8ab3b365" }, { - "md5": "04b4376d4bd30883f3f73c786885e89d", - "pid": "101481349", - "note": [ + "type": "bf:Topic", + "authorized_access_point": "Hypoalbumin\u00e9mie", + "bnf_type": "sujet Rameau", + "classification": [ { - "label": [ - "S'emploie uniquement en subdivision chronologique [sans subd. g\u00e9ogr.] aux litt\u00e9ratures irlandaises (ga\u00e9liques)", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la vedette Litt\u00e9rature irlandaise (ga\u00e9lique), qui sert de vedette mod\u00e8le. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires irlandais (ga\u00e9liques)" - ], - "noteType": "general" + "type": "bf:ClassificationDdc", + "classificationPortion": "610", + "name": "Sciences m\u00e9dicales et param\u00e9dicales" } ], - "type": "bf:Temporal", - "related": [ + "closeMatch": [ { - "authorized_access_point": "Litt\u00e9rature irlandaise (ga\u00e9lique) - 1200-1550" + "authorized_access_point": "Hypoalbuminemia", + "source": "MeSH", + "identifiedBy": [ + { + "type": "uri", + "value": "https://id.nlm.nih.gov/mesh/M0404823", + "source": "MeSH" + } + ] } ], - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279307462", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/101481349", + "value": "http://www.idref.fr/279307462", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb150616798", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18154211n", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18154211" } ], - "classification": [ + "note": [ { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "noteType": "dataSource", + "label": [ + "Vitrine linguistique - https://vitrinelinguistique.oqlf.gouv.qc.ca (2024-06-24)", + "Dict. de l'Acad\u00e9mie de m\u00e9decine - https://www.academie-medecine.fr/le-dictionnaire (2024-06-24)", + "Loterre : Nutrition artificielle (th\u00e9saurus) - https://www.loterre.fr (2024-06-24)", + "Dict. m\u00e9dical de poche / I. Marroun, T. Sen\u00e9, J. Quevauvilliers, 2018", + "Hyperprot\u00e9in\u00e9mies et hypoprot\u00e9in\u00e9mies chez le chien et le chat / C. Coisnon, A. Briend-Marchal [in] EMC-V\u00e9t\u00e9rinaire, 2020, 29, 1", + "Dict. illustr\u00e9 des termes de m\u00e9decine, 2012 : hypo-albumin\u00e9mie" + ] + } + ], + "pid": "279307462", + "broader": [ + { + "authorized_access_point": "Hypoprot\u00e9in\u00e9mie" } ], "variant_access_point": [ - "1200-1550" + "Hypo-albumin\u00e9mie" ], - "authorized_access_point": "1200-1550" + "md5": "65af92be57ea892e3aba19996599c76d" }, { - "md5": "b89cb0af4e732ec47b5e8cb12c83ae1d", - "pid": "101481438", - "note": [ + "type": "bf:Topic", + "authorized_access_point": "Extrasystole", + "bnf_type": "sujet Rameau", + "classification": [ { - "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures grecques modernes et hispano-am\u00e9ricaines", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec les vedettes Litt\u00e9rature grecque moderne et Litt\u00e9rature hispano-am\u00e9ricaine, celles-ci servant de vedettes mod\u00e8les. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires grecs modernes et hispano-am\u00e9ricains" - ], - "noteType": "general" + "type": "bf:ClassificationDdc", + "classificationPortion": "610", + "name": "Sciences m\u00e9dicales et param\u00e9dicales" } ], - "type": "bf:Temporal", - "related": [ + "closeMatch": [ { - "authorized_access_point": "Litt\u00e9rature grecque moderne" + "authorized_access_point": "Extrasystole", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "https://id.loc.gov/authorities/subjects/sh85046589", + "source": "LCSH" + } + ] + }, + { + "authorized_access_point": "Cardiac Complexes, Premature", + "source": "MeSH", + "identifiedBy": [ + { + "type": "uri", + "value": "https://id.nlm.nih.gov/mesh/M0008072", + "source": "MeSH" + } + ] }, { - "authorized_access_point": "Litt\u00e9rature hispano-am\u00e9ricaine - 1880-1920" + "authorized_access_point": "Extrasystole", + "source": "RVMLaval" } ], - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279307470", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/101481438", + "value": "http://www.idref.fr/279307470", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb150619611", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181542391", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18154239" } ], - "classification": [ + "note": [ { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "noteType": "dataSource", + "label": [ + "Encycl. universalis - https://www.universalis-edu.com (2024-06-24)", + "Dict. de l'Acad\u00e9mie de m\u00e9decine - https://www.academie-medecine.fr/le-dictionnaire (2024)", + "Dict. illustr\u00e9 des termes de m\u00e9decine, 2012", + "Dict. de m\u00e9decine Flammarion, 2008", + "Dict. fran\u00e7ais de m\u00e9decine et de biologie, 1981" + ] + } + ], + "pid": "279307470", + "broader": [ + { + "authorized_access_point": "Arythmie" } ], "variant_access_point": [ - "1880-1920" + "Extrasystoles" ], - "authorized_access_point": "1880-1920" + "md5": "6ca6e85a5cfa41cd132c33fa9ba394bd" }, { - "md5": "3c1949e3482ef3a066e371376f6ac5f7", - "pid": "107841363", - "note": [ - { - "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures bretonnes", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la vedette Litt\u00e9rature bretonne, qui sert de vedette mod\u00e8le. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires bretons" - ], - "noteType": "general" - } - ], - "type": "bf:Temporal", - "related": [ + "type": "bf:Topic", + "authorized_access_point": "Installations nucl\u00e9aires - Russie", + "bnf_type": "sujet Rameau", + "classification": [ { - "authorized_access_point": "Breton (langue) - +* 1100......- 1659......+:1100-1659: (moyen breton)" + "type": "bf:ClassificationDdc", + "classificationPortion": "530", + "name": "Physique" }, { - "authorized_access_point": "Litt\u00e9rature bretonne - 1100-1659" + "type": "bf:ClassificationDdc", + "classificationPortion": "600", + "name": "Sciences appliqu\u00e9es" } ], - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279307519", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/107841363", + "value": "http://www.idref.fr/279307519", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15089445r", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181549138", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18154913" } ], - "authorized_access_point": "1100-1659" + "pid": "279307519", + "md5": "3f11d9da851879853640eea7368b326c" }, { - "md5": "0d3763cb922c2fd37033e843a0aee2ec", - "pid": "108812987", - "note": [ + "type": "bf:Topic", + "authorized_access_point": "Architecture canan\u00e9enne", + "bnf_type": "sujet Rameau", + "classification": [ { - "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures polonaises", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la vedette Litt\u00e9rature polonaise, celle-ci servant de vedette mod\u00e8le. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires polonais" - ], - "noteType": "general" - } - ], - "type": "bf:Temporal", - "related": [ + "type": "bf:ClassificationDdc", + "classificationPortion": "390", + "name": "Ethnologie, anthropologie, folklore" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "720", + "name": "Architecture" + }, { - "authorized_access_point": "Litt\u00e9rature polonaise - 1864-1918" + "type": "bf:ClassificationDdc", + "classificationPortion": "930", + "name": "Pr\u00e9histoire et histoire ancienne" } ], - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279307535", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/108812987", + "value": "http://www.idref.fr/279307535", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15093914m", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18155060j", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18155060" } ], - "classification": [ + "pid": "279307535", + "broader": [ { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "authorized_access_point": "Architecture antique" } ], - "authorized_access_point": "1864-1918" + "variant_access_point": [ + "Canan\u00e9ens - Architecture" + ], + "md5": "b44905ab184b0bc6c7411f1a4b47e013" }, { - "md5": "1a46214a9a76d7e9d622aa72f5832b94", - "pid": "109094883", - "note": [ + "type": "bf:Topic", + "authorized_access_point": "Naprox\u00e8ne", + "bnf_type": "sujet Rameau", + "classification": [ { - "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures russes" - ], - "noteType": "general" + "type": "bf:ClassificationDdc", + "classificationPortion": "540", + "name": "Chimie, min\u00e9ralogie, cristallographie" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "615" } ], - "type": "bf:Temporal", - "related": [ + "closeMatch": [ + { + "authorized_access_point": "Naproxen", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "https://id.loc.gov/authorities/subjects/sh85089785", + "source": "LCSH" + } + ] + }, + { + "authorized_access_point": "Naproxen", + "source": "MeSH", + "identifiedBy": [ + { + "type": "uri", + "value": "https://id.nlm.nih.gov/mesh/M0014467", + "source": "MeSH" + } + ] + }, { - "authorized_access_point": "Litt\u00e9rature russe - 1890-1917" + "authorized_access_point": "Naprox\u00e8ne", + "source": "RVMLaval" } ], - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/27930756X", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/109094883", + "value": "http://www.idref.fr/27930756X", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb150952323", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18155270d", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18155270" } ], - "authorized_access_point": "1890-1917" - }, - { - "md5": "f173d2f46f7718f7d8a341764c9bd5e1", - "pid": "113531923", "note": [ { + "noteType": "dataSource", "label": [ - "Grand Robert de la langue fran\u00e7aise, 2001", - "Les mots de la presse \u00e9crite / S. B\u00e9nard, 2002", - "Le synopsis : pr\u00e9senter et vendre ses sujets / A. Kerloc'h, 2007", - "Vocabulaire technique du cin\u00e9ma / V. Pinel, 1996" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Document de synth\u00e8se d\u00e9crivant la totalit\u00e9 ou un aper\u00e7u d'une \u0153uvre", - "S'emploie \u00e9galement en subdivision" - ], - "noteType": "general" + "Dict. de l'Acad\u00e9mie nationale de pharmacie - https://dictionnaire.acadpharm.org (2024-06-28)", + "Dict. de la chimie et de ses applications / C. et R. Duval, J.-C. Richer, 2010", + "Dict. pharmaceutique : pharmacologie et chimie des m\u00e9dicaments / Y. Landry, Y. Rival, 2007", + "Guide pratique des m\u00e9dicaments : Dorosz / D. Vital Durand, C. Le Jeunne, 2013", + "Dict. de m\u00e9decine Flammarion, 2008", + "The Merck index, 2013 : naproxen" + ] } ], - "type": "bf:Topic", + "pid": "27930756X", "broader": [ { - "authorized_access_point": "Sc\u00e9narios" + "authorized_access_point": "Arylcarboxyliques" } ], - "related": [ - { - "authorized_access_point": "\u00c9criture journalistique" - }, + "md5": "b05833ceade791171dab78bdc004189f" + }, + { + "type": "bf:Topic", + "authorized_access_point": "My\u00e9linolyse centropontine", + "bnf_type": "sujet Rameau", + "classification": [ { - "authorized_access_point": "R\u00e9sum\u00e9s analytiques" + "type": "bf:ClassificationDdc", + "classificationPortion": "610", + "name": "Sciences m\u00e9dicales et param\u00e9dicales" } ], - "bnf_type": "genre/forme Rameau", "closeMatch": [ { - "source": "LCGFT", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/genreForms/gf2014026038", - "source": "LCGFT" - }, - "authorized_access_point": "Abstracts" + "authorized_access_point": "Myelinolysis, Central Pontine", + "source": "MeSH", + "identifiedBy": [ + { + "type": "uri", + "value": "https://id.nlm.nih.gov/mesh/M0026656", + "source": "MeSH" + } + ] } ], + "identifier": "http://www.idref.fr/279307578", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/113531923", + "value": "http://www.idref.fr/279307578", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15517814h", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18155286s", "source": "BNF" - } - ], - "classification": [ - { - "name": "Sciences de l'information", - "type": "bf:ClassificationDdc", - "classificationPortion": "020" }, { - "name": "Audiovisuel", - "type": "bf:ClassificationDdc", - "classificationPortion": "791" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18155286" } ], - "variant_access_point": [ - "Lancement (cin\u00e9ma)", - "Notes d'intention (journalisme)", - "Pr\u00e9paration (cin\u00e9ma)", - "Synopsis (cin\u00e9ma)", - "Synopsis (journalisme)", - "Synopsis de film" - ], - "authorized_access_point": "Synopsis" - }, - { - "md5": "6d2d69e97c8233af935fb7ef77a61ce7", - "pid": "11353213X", "note": [ { + "noteType": "dataSource", "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures russes et sovi\u00e9tiques" - ], - "noteType": "general" + "Dict. illustr\u00e9 des termes de m\u00e9decine, 2012", + "Dict. de m\u00e9decine Flammarion, 2008", + "My\u00e9linolyse centropontine [in] La Presse m\u00e9dicale, 2008, 37, 12", + "Dict. de l'Acad\u00e9mie de m\u00e9decine : my\u00e9linolyse centrale du pont c\u00e9r\u00e9bral - https://www.academie-medecine.fr/le-dictionnaire (2024-06-28)" + ] } ], - "type": "bf:Temporal", - "related": [ + "pid": "279307578", + "broader": [ { - "authorized_access_point": "Litt\u00e9rature russe - 1917-1945" + "authorized_access_point": "D\u00e9my\u00e9linisation" } ], - "bnf_type": "sujet Rameau", - "identifiedBy": [ - { - "type": "uri", - "value": "http://www.idref.fr/11353213X", - "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15518714g", - "source": "BNF" - } + "variant_access_point": [ + "My\u00e9linolyse centrale du pont c\u00e9r\u00e9bral", + "My\u00e9linolyse centro-pontine", + "Syndrome de d\u00e9my\u00e9linisation osmotique" ], + "md5": "e4c22e6e78baf484420907f1c41d7308" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Cardiopathie carcino\u00efde", + "bnf_type": "sujet Rameau", "classification": [ { - "name": "Histoire et critique litt\u00e9raires", "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "classificationPortion": "610", + "name": "Sciences m\u00e9dicales et param\u00e9dicales" } ], - "authorized_access_point": "1917-1945" - }, - { - "md5": "4c4b882a6490c55d9a768902585ec8a5", - "pid": "11393260X", - "note": [ + "closeMatch": [ { - "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures vietnamiennes", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la vedette Litt\u00e9rature vietnamienne, celle-ci servant de vedette mod\u00e8le. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires vietnamiens" - ], - "noteType": "general" - } - ], - "type": "bf:Temporal", - "related": [ + "authorized_access_point": "Carcinoid heart disease", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "https://id.loc.gov/authorities/subjects/sh85020160", + "source": "LCSH" + } + ] + }, { - "authorized_access_point": "Litt\u00e9rature vietnamienne - 1945-1975" + "authorized_access_point": "Carcinoid Heart Disease", + "source": "MeSH", + "identifiedBy": [ + { + "type": "uri", + "value": "https://id.nlm.nih.gov/mesh/M0003420", + "source": "MeSH" + } + ] } ], - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279307586", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/11393260X", + "value": "http://www.idref.fr/279307586", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb155219612", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18155294d", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18155294" } ], - "authorized_access_point": "1945-1975" - }, - { - "md5": "bddbfb2aee8f1967592209a8c90dc206", - "pid": "119256347", - "type": "bf:Topic", - "broader": [ + "note": [ { - "authorized_access_point": "Roman arabe" + "noteType": "dataSource", + "label": [ + "Dict. de l'Acad\u00e9mie de m\u00e9decine - https://www.academie-medecine.fr/le-dictionnaire (2024-06-28)", + "Dict. illustr\u00e9 des termes de m\u00e9decine, 2012", + "Manuel d'\u00e9chocardiographie clinique, 2012" + ] } ], - "bnf_type": "genre/forme Rameau", - "narrower": [ - { - "authorized_access_point": "Roman historique \u00e9gyptien" - }, - { - "authorized_access_point": "Roman historique libanais" - }, + "pid": "279307586", + "broader": [ { - "authorized_access_point": "Roman historique syrien" + "authorized_access_point": "Cardiopathies" } ], - "closeMatch": [ + "md5": "21c4ee8f7cf7f0f633072c281a6d7563" + }, + { + "type": "bf:Topic", + "authorized_access_point": "N\u00e9oglucogen\u00e8se intestinale", + "bnf_type": "sujet Rameau", + "classification": [ { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh95003231", - "source": "LCSH" - }, - "authorized_access_point": "Historical fiction, Arabic" + "type": "bf:ClassificationDdc", + "classificationPortion": "570", + "name": "Sciences de la vie" } ], + "identifier": "http://www.idref.fr/279307594", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/119256347", + "value": "http://www.idref.fr/279307594", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15575719q", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18155316w", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18155316" } ], - "classification": [ + "note": [ { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" - }, + "noteType": "dataSource", + "label": [ + "La n\u00e9oglucogen\u00e8se intestinale\u2009: une fonction insulinomim\u00e9tique / G. Mithieux [in] Biologie aujourd'hui, 2022, 216, 1-2", + "Effets protecteurs de la n\u00e9oglucogen\u00e8se intestinale dans le d\u00e9veloppement de l'ob\u00e9sit\u00e9 et de ses complications / J. Vily-Petit, 2020 [th\u00e8se]", + "Microbiote intestinal et sant\u00e9 humaine, 2021" + ] + } + ], + "pid": "279307594", + "broader": [ { - "name": "Histoire et g\u00e9ographie (g\u00e9n\u00e9ralit\u00e9s)", - "type": "bf:ClassificationDdc", - "classificationPortion": "900" + "authorized_access_point": "M\u00e9tabolisme" } ], - "authorized_access_point": "Roman historique arabe" + "variant_access_point": [ + "Glucon\u00e9ogen\u00e8se intestinale", + "Glycon\u00e9ogen\u00e8se intestinale", + "N\u00e9oglycogen\u00e8se intestinale", + "NGI (biologie)" + ], + "md5": "99c95b2ba870ecb0af7cd3b8a5e48998" }, { - "md5": "50cbaf6aa76ea3ca989605f6b131bfb7", - "pid": "12007432X", - "note": [ + "type": "bf:Topic", + "authorized_access_point": "Infarctus du myocarde avec \u00e9l\u00e9vation du segment ST", + "bnf_type": "sujet Rameau", + "classification": [ { - "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures espagnoles, catalanes et galiciennes" - ], - "noteType": "general" + "type": "bf:ClassificationDdc", + "classificationPortion": "610", + "name": "Sciences m\u00e9dicales et param\u00e9dicales" } ], - "type": "bf:Temporal", - "related": [ - { - "authorized_access_point": "Litt\u00e9rature catalane - 1900-1939" - }, + "closeMatch": [ { - "authorized_access_point": "Litt\u00e9rature espagnole - 1900-1939" + "authorized_access_point": "ST Elevation Myocardial Infarction", + "source": "MeSH", + "identifiedBy": [ + { + "type": "uri", + "value": "https://id.nlm.nih.gov/mesh/M000617719", + "source": "MeSH" + } + ] } ], - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279307632", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/12007432X", + "value": "http://www.idref.fr/279307632", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15586308d", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181554552", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18155455" } ], - "classification": [ + "note": [ { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "noteType": "dataSource", + "label": [ + "Termium plus\u00ae - https://www.btb.termiumplus.gc.ca (2024-07-01)", + "Mise en pratique du traitement de reperfusion dans les infarctus du myocarde avec \u00e9l\u00e9vation du segment ST [in] Revue m\u00e9dicale de Li\u00e8ge, 2010, 65, 1", + "Une cause rare de syndrome coronarien aigu : l'embolie paradoxale [in] Annales de cardiologie et d'ang\u00e9iologie, 2024, 73, 2", + "L'infarctus du myocarde en France m\u00e9tropolitaine de 1995 \u00e0 2010 : \u00e9volution de la typologie des patients, de la prise en charge et du pronostic \u00e0 court terme [in] Bulletin de l'Acad\u00e9mie nationale de m\u00e9decine, 2014, 198, 1 : infarctus du myocarde avec sus-d\u00e9calage du segment ST", + "Traitement de l'infarctus myocardique. Pourquoi l'angioplastie coronaire ? / C. Beauloye [in] Louvain m\u00e9dical, 2017, 136, 8 : STEMI", + "Dict. de l'Acad\u00e9mie de m\u00e9decine : infarctus transmural - https://www.academie-medecine.fr/le-dictionnaire (2024-07-01)" + ] } ], - "authorized_access_point": "1900-1939" + "pid": "279307632", + "broader": [ + { + "authorized_access_point": "Infarctus du myocarde" + } + ], + "variant_access_point": [ + "Infarctus avec onde Q", + "Infarctus avec sus-d\u00e9calage du segment ST", + "Infarctus avec sus-d\u00e9calage persistant du segment ST", + "Infarctus du myocarde avec sus-d\u00e9calage du segment ST", + "Infarctus du myocarde avec sus-d\u00e9calage persistant du segment ST", + "Infarctus du myocarde de type STEMI", + "Infarctus STEMI", + "Infarctus trans-mural", + "Infarctus transmural", + "ST elevation myocardial infarction", + "STEMI (maladie)" + ], + "md5": "9d8a0a6e452a21c4ebf22792b80152c2" }, { - "md5": "74d6f86c2c07e042ec9434ddaced6255", - "pid": "120593904", - "note": [ + "type": "bf:Topic", + "authorized_access_point": "Infarctus du myocarde sans \u00e9l\u00e9vation du segment ST", + "bnf_type": "sujet Rameau", + "classification": [ { - "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures grecques modernes", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la vedette Litt\u00e9rature grecque moderne, celle-ci servant de vedette mod\u00e8le. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires grecs modernes" - ], - "noteType": "general" + "type": "bf:ClassificationDdc", + "classificationPortion": "610", + "name": "Sciences m\u00e9dicales et param\u00e9dicales" } ], - "type": "bf:Temporal", - "related": [ + "closeMatch": [ { - "authorized_access_point": "Litt\u00e9rature grecque moderne - 1920-1945" + "authorized_access_point": "Non-ST Elevated Myocardial Infarction", + "source": "MeSH", + "identifiedBy": [ + { + "type": "uri", + "value": "https://id.nlm.nih.gov/mesh/M000617720", + "source": "MeSH" + } + ] } ], - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279307713", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/120593904", + "value": "http://www.idref.fr/279307713", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15594731r", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181555618", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18155561" } ], - "authorized_access_point": "1920-1945" - }, - { - "md5": "76dc58d441124bc3aa45378c3c2c1592", - "pid": "130730173", "note": [ { + "noteType": "dataSource", "label": [ - "Nouveau petit Robert 2009 : d\u00e9mat\u00e9rialisation", - "Vocabulaire juridique / G. Cornu, 2007 : d\u00e9mat\u00e9rialisation", - "Conseil des ministres du 13 f\u00e9vrier 2008. Le plan de d\u00e9mat\u00e9rialisation des proc\u00e9dures juridictionnelles - https://www.vie-publique.fr (2022-07-22)", - "Ordonnance n\u00b02005-1516 du 8 d\u00e9cembre 2005 relative aux \u00e9changes \u00e9lectroniques entre les usagers et les autorit\u00e9s administratives et entre les autorit\u00e9s administratives" - ], - "noteType": "dataSource" - }, - { - "label": [ - "En droit, la d\u00e9mat\u00e9rialisation (ou suppression de support mat\u00e9riel tangible) consiste \u00e0 transformer un flux de donn\u00e9es num\u00e9riques en fichiers informatiques et \u00e0 leur restituer selon leur domaine une valeur juridique" - ], - "noteType": "general" + "Termium plus\u00ae - https://www.btb.termiumplus.gc.ca (2024-07-01)", + "Indications \u00e0 la coronarographie en urgence. Partie II : syndromes coronariens aigus sans \u00e9l\u00e9vation du segment ST [in] Revue m\u00e9dicale suisse, 2009, 205", + "Pronostic des syndromes coronariens aigus. Absence de diff\u00e9rence en fonction du sexe [in] Bulletin de l'Acad\u00e9mie nationale de m\u00e9decine, 2004, 188, 3", + "L'infarctus du myocarde en France m\u00e9tropolitaine de 1995 \u00e0 2010 : \u00e9volution de la typologie des patients, de la prise en charge et du pronostic \u00e0 court terme [in] Bulletin de l'Acad\u00e9mie nationale de m\u00e9decine, 2014, 198, 1 : infarctus sans sus-d\u00e9calage du segment ST", + "Traitement de l'infarctus myocardique. Pourquoi l'angioplastie coronaire ? / C. Beauloye [in] Louvain m\u00e9dical, 2017, 136, 8 : NSTEMI" + ] } ], - "type": "bf:Topic", + "pid": "279307713", "broader": [ { - "authorized_access_point": "Droit - Informatique" - }, - { - "authorized_access_point": "\u00c9change \u00e9lectronique d'information" - }, - { - "authorized_access_point": "Informatique - Droit" + "authorized_access_point": "Infarctus du myocarde" } ], - "related": [ - { - "authorized_access_point": "Authentification" - }, - { - "authorized_access_point": "D\u00e9mat\u00e9rialisation (informatique)" - }, - { - "authorized_access_point": "Num\u00e9risation - Droit" - }, - { - "authorized_access_point": "Preuve \u00e9lectronique" - } + "variant_access_point": [ + "Infarctus du myocarde de type NSTEMI", + "Infarctus du myocarde sans sus-d\u00e9calage du segment ST", + "Infarctus du myocarde sans sus-d\u00e9calage persistant du segment ST", + "Infarctus non trans-mural", + "Infarctus non transmural", + "Infarctus NSTEMI", + "Infarctus sans onde Q", + "Infarctus sans sus-d\u00e9calage du segment ST", + "Infarctus sans sus-d\u00e9calage persistant du segment ST", + "Non ST elevation myocardial infarction", + "NSTEMI (maladie)" ], + "md5": "db8e8c572ce5829a0bec71e921a1643a" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Pal\u00e9otectonique", "bnf_type": "sujet Rameau", - "narrower": [ - { - "authorized_access_point": "Communication \u00e9lectronique de pi\u00e8ces (droit)" - }, - { - "authorized_access_point": "Contrats \u00e9lectroniques" - }, - { - "authorized_access_point": "Contrats informatiques" - }, - { - "authorized_access_point": "E-fiscalit\u00e9" - }, - { - "authorized_access_point": "E-justice" - }, - { - "authorized_access_point": "Monnaie \u00e9lectronique" - }, + "classification": [ { - "authorized_access_point": "Signatures \u00e9lectroniques" + "type": "bf:ClassificationDdc", + "classificationPortion": "550", + "name": "Sciences de la Terre" } ], + "identifier": "http://www.idref.fr/27930773X", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/130730173", + "value": "http://www.idref.fr/27930773X", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15894744m", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18155575z", "source": "BNF" - } - ], - "classification": [ - { - "name": "Droit", - "type": "bf:ClassificationDdc", - "classificationPortion": "340" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "621" }, { - "name": "Gestion et organisation de l'entreprise", - "type": "bf:ClassificationDdc", - "classificationPortion": "650" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18155575" } ], - "variant_access_point": [ - "D\u00e9mat\u00e9rialisation (droit)", - "D\u00e9mat\u00e9rialisation (informatique) et droit", - "D\u00e9mat\u00e9rialisation (informatique) - Droit", - "Droit et d\u00e9mat\u00e9rialisation des documents" - ], - "authorized_access_point": "Actes juridiques \u00e9lectroniques" - }, - { - "md5": "2430c99d3336c93178b6ada43682c2eb", - "pid": "132184214", "note": [ { + "noteType": "dataSource", "label": [ - "Petit Larousse 2005", - "Encycl universalis (art. : Enregistrement) - http://www.universalis-edu.com (2009-03-20)", - "Dict. de la musique / M. Vignal, 2005", - "Dict. des mots de la musique / J. Siron, 2006", - "Monter, sampler : l'\u00e9chantillonnage g\u00e9n\u00e9ralis\u00e9, 2000" - ], - "noteType": "dataSource" + "Vitrine linguistique - https://vitrinelinguistique.oqlf.gouv.qc.ca (2024-007-01)", + "Dict. des sciences de la terre / M. Moureau, G. Brace, 2000", + "Dict. de g\u00e9ologie / A. Foucault, J.-F. Raoult, 2000" + ] } ], - "type": "bf:Topic", + "pid": "27930773X", "broader": [ { - "authorized_access_point": "Boucles (musique)" + "authorized_access_point": "Tectonique" } ], - "related": [ - { - "authorized_access_point": "\u00c9chantillonneur (instrument de musique)" - }, + "md5": "7ab5e3dfc22fd0f44c614c47f5326e1d" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Fourmilier grivel\u00e9", + "bnf_type": "sujet Rameau", + "classification": [ { - "authorized_access_point": "Synth\u00e8se sonore" + "type": "bf:ClassificationDdc", + "classificationPortion": "590", + "name": "Zoologie" } ], - "bnf_type": "sujet Rameau", "closeMatch": [ { + "authorized_access_point": "Spotted antbird", "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh96010851", - "source": "LCSH" - }, - "authorized_access_point": "Sampling (Sound)" + "identifiedBy": [ + { + "type": "uri", + "value": "https://id.loc.gov/authorities/subjects/sh85126968", + "source": "LCSH" + } + ] }, { - "source": "RVMLaval", - "authorized_access_point": "\u00c9chantillonnage de sons" + "authorized_access_point": "Fourmilier grivel\u00e9", + "source": "RVMLaval" } ], + "identifier": "http://www.idref.fr/279307748", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/132184214", + "value": "http://www.idref.fr/279307748", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb159798158", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18155596x", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18155596" } ], - "classification": [ + "note": [ { - "type": "bf:ClassificationDdc", - "classificationPortion": "621" + "noteType": "dataSource", + "label": [ + "Termium plus\u00ae - https://www.btb.termiumplus.gc.ca (2024-07-01)", + "GBIF - https://www.gbif.org/fr/species (2024-07-01)", + "Dict. of animal names in five languages, birds / R. L. Boehme, V. E. Flint, 1994", + "The IUCN Red List of Threatened Species : Hylophylax naevioides - http://www.iucnredlist.org (2024-07-01)", + "Grzimek's animal life encycl.. Volume 10, Birds III, 2003 : Hylophylax naevioides", + "The Howard and Moore complete checklist of the birds of the world, 2003 : Hylophylax naevioides" + ] }, { - "name": "Musique", - "type": "bf:ClassificationDdc", - "classificationPortion": "780" + "noteType": "general", + "label": [ + "Rang taxonomique : esp\u00e8ce" + ] + } + ], + "pid": "279307748", + "broader": [ + { + "authorized_access_point": "Hylophylax" } ], "variant_access_point": [ - "\u00c9chantillonnage de sons", - "Sampling (musique)", - "Sons, \u00c9chantillonnage de" + "Hylophylax naevioides" ], - "authorized_access_point": "\u00c9chantillonnage (musique)" + "md5": "bb96508436bcb3471e095d6766086706" }, { - "md5": "bc506a66471fbe8f0f5e526a3761dde9", - "pid": "144664119", - "note": [ + "type": "bf:Topic", + "authorized_access_point": "Verrerie de Murano", + "bnf_type": "sujet Rameau", + "classification": [ { - "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures chinoises", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la vedette Litt\u00e9rature chinoise, celle-ci servant de vedette mod\u00e8le. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires chinois" - ], - "noteType": "general" - } - ], - "type": "bf:Temporal", - "related": [ + "type": "bf:ClassificationDdc", + "classificationPortion": "730", + "name": "Arts plastiques, sculpture" + }, { - "authorized_access_point": "Litt\u00e9rature chinoise - 1976-...." + "type": "bf:ClassificationDdc", + "classificationPortion": "740", + "name": "Dessin, arts d\u00e9coratifs, artisanat d'art" } ], - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279307780", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/144664119", + "value": "http://www.idref.fr/279307780", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb16203928x", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181557505", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18155750" } ], - "authorized_access_point": "1976-...." - }, - { - "md5": "603ab88829ef99cecec86002a4d6d925", - "pid": "146321944", "note": [ { + "noteType": "dataSource", "label": [ - "Wikipedia - http://fr.wikipedia.org (2010-08-17)", - "Encycl. universalis (art. : Musique techno) : hardcore - http://www.universalis-edu.com (2010-08-17)", - "Global tekno : voyage initiatique au coeur de la musique \u00e9lectronique / J.-Y. Leloup, J.-P. Renoult, 1999 : hardcore", - "Dict. du rock / M. Assayas, 2000 (art. : Techno) : hardcore", - "Dict. des mots de la musique / J. Siron, 2006 : hardcore techno", - "Allmusic : hardcore techno - http://www.allmusic.com (2010-08-17)" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Version dure, rapide et industrielle de la techno, apparue dans les ann\u00e9es 1990" - ], - "noteType": "general" + "L'Italie : de Botticelli \u00e0 Bonaparte / J. Delumeau, 2022", + "Histoire \u00e9conomique de l'Europe moderne : XVe-XVIIIe si\u00e8cle / F. Delleaux, 2015", + "Les 100 mots de Venise / O. Alberti, 2021" + ] } ], - "type": "bf:Topic", + "pid": "279307780", "broader": [ { - "authorized_access_point": "Techno (musique)" + "authorized_access_point": "Verrerie" } ], - "bnf_type": "genre/forme Rameau", - "narrower": [ + "variant_access_point": [ + "Verre de Murano", + "Verreries de Murano" + ], + "md5": "6016a02e16215ce2b9d244b8747874af" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Escorts", + "bnf_type": "sujet Rameau", + "classification": [ { - "authorized_access_point": "Breakcore" + "type": "bf:ClassificationDdc", + "classificationPortion": "305" }, { - "authorized_access_point": "Gabber" - } - ], - "closeMatch": [ - { - "source": "RVMLaval", - "authorized_access_point": "Techno hardcore (Musique)" + "type": "bf:ClassificationDdc", + "classificationPortion": "360", + "name": "Probl\u00e8mes et services sociaux" } ], + "identifier": "http://www.idref.fr/279307799", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/146321944", + "value": "http://www.idref.fr/279307799", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb162242755", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181557923", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18155792" } ], - "classification": [ + "note": [ { - "name": "Musique", - "type": "bf:ClassificationDdc", - "classificationPortion": "780" + "noteType": "dataSource", + "label": [ + "Wikidata - https://www.wikidata.org/wiki/Q814356 (2024-07-02)", + "Grand Larousse universel", + "Grand Robert de la langue fran\u00e7aise, 2001", + "Tr\u00e9sor de la langue fran\u00e7aise (art. : Girl) - http://atilf.atilf.fr (2024-07-02)", + "Wikip\u00e9dia - https://fr.wikipedia.org (2024-07-02)" + ] + }, + { + "noteType": "general", + "label": [ + "Personnes prostitu\u00e9es n'exer\u00e7ant pas sur la voie publique et que l'on contacte, par exemple, par t\u00e9l\u00e9phone" + ] + } + ], + "pid": "279307799", + "broader": [ + { + "authorized_access_point": "Prostitu\u00e9es" + }, + { + "authorized_access_point": "Prostitu\u00e9s" } ], "variant_access_point": [ - "Hardcore techno" + "Call-boys", + "Call-girls", + "Escort-girls" ], - "authorized_access_point": "Techno hardcore" + "md5": "fad67e35cbd2b57c3589d4b5ad62e150" }, { - "md5": "dd0f4736ac53ada15291000b4ccd8e12", - "pid": "146322134", - "note": [ + "type": "bf:Topic", + "authorized_access_point": "Hylophylax", + "bnf_type": "sujet Rameau", + "classification": [ { - "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures indiennes (de l'Inde)", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la vedette Litt\u00e9rature hindi, celle-ci servant de vedette mod\u00e8le. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires indiens (de l'Inde)" - ], - "noteType": "general" + "type": "bf:ClassificationDdc", + "classificationPortion": "590", + "name": "Zoologie" } ], - "type": "bf:Temporal", - "related": [ + "closeMatch": [ { - "authorized_access_point": "Litt\u00e9rature hindi - 1947-...." + "authorized_access_point": "Hylophylax (Birds)", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "https://id.loc.gov/authorities/subjects/sh85063574", + "source": "LCSH" + } + ] } ], - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279307810", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/146322134", + "value": "http://www.idref.fr/279307810", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb16225107n", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18155931f", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18155931" } ], - "classification": [ + "note": [ { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "noteType": "dataSource", + "label": [ + "GBIF - https://www.gbif.org/species (2024-07-03)", + "NCBI - https://www.ncbi.nlm.nih.gov/Taxonomy (2024-07-03)", + "Dict. of animal names in five languages, birds / R. L. Boehme, V. E. Flint, 1994", + "Grzimek's animal life encycl.. Volume 10, Birds III, 2003", + "The Howard and Moore complete checklist of the birds of the world, 2003" + ] + }, + { + "noteType": "general", + "label": [ + "Rang taxonomique : genre" + ] } ], - "authorized_access_point": "1947-...." - }, - { - "md5": "b23f2521a9287cb5cf268e2c6e3eba8e", - "pid": "146774094", - "type": "bf:Topic", - "broader": [ + "pid": "279307810", + "narrower": [ { - "authorized_access_point": "Po\u00e9sie italienne" + "authorized_access_point": "Fourmilier grivel\u00e9" } ], - "related": [ - { - "authorized_access_point": "Litt\u00e9rature h\u00e9ro\u00ef-comique italienne" - }, + "broader": [ { - "authorized_access_point": "Po\u00e9sie narrative italienne" + "authorized_access_point": "Thamnophilidae" } ], - "bnf_type": "genre/forme Rameau", - "closeMatch": [ - { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85044332", - "source": "LCSH" - }, - "authorized_access_point": "Epic poetry, Italian" - }, - { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85044288", - "source": "LCSH" - }, - "authorized_access_point": "Epic literature, Italian" - }, - { - "source": "RVMLaval", - "authorized_access_point": "Litt\u00e9rature \u00e9pique italienne" - }, + "md5": "cf79e9f0326e0ae6b297e2ed5f2f1e95" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Antiquit\u00e9s - Asie du Sud", + "bnf_type": "sujet Rameau", + "classification": [ { - "source": "RVMLaval", - "authorized_access_point": "Po\u00e9sie \u00e9pique italienne" + "type": "bf:ClassificationDdc", + "classificationPortion": "930", + "name": "Pr\u00e9histoire et histoire ancienne" } ], + "identifier": "http://www.idref.fr/279307837", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/146774094", + "value": "http://www.idref.fr/279307837", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb120350248", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18156044j", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18156044" } ], - "classification": [ + "pid": "279307837", + "related": [ { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "authorized_access_point": "Asie du Sud" } ], - "authorized_access_point": "\u00c9pop\u00e9es italiennes" + "md5": "840d171a22a4bd919d65976f1d046475" }, { - "md5": "87ba2c400541f4219fd0e91d33dc4883", - "pid": "148171095", - "note": [ + "type": "bf:Topic", + "authorized_access_point": "Familles nicaraguayennes", + "bnf_type": "sujet Rameau", + "classification": [ { - "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures bulgares", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la vedette Litt\u00e9rature bulgare, celle-ci servant de vedette mod\u00e8le. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires bulgares" - ], - "noteType": "general" - } - ], - "type": "bf:Temporal", - "related": [ + "type": "bf:ClassificationDdc", + "classificationPortion": "300", + "name": "Sciences sociales" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "305" + }, { - "authorized_access_point": "Litt\u00e9rature bulgare - 1878-1945" + "type": "bf:ClassificationDdc", + "classificationPortion": "390", + "name": "Ethnologie, anthropologie, folklore" } ], - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279307853", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/148171095", + "value": "http://www.idref.fr/279307853", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb162439173", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18156498k", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18156498" } ], - "variant_access_point": [ - "1878-1945" - ], - "authorized_access_point": "1878-1945" - }, - { - "md5": "4dd1808ef506277d02ae096cd1ea216b", - "pid": "16573762X", "note": [ { + "noteType": "general", "label": [ - "Dict. sanskrit-fran\u00e7ais / N. Stchoupak, L. Nitti, L. Renou, 1972", - "Dict. encyclop\u00e9dique du bouddhisme / P. Cornu, 2006", - "Brill's encycl. of Hinduism / K. A. Jacobsen, 2009-2015", - "Avidy\u0101 : a problem of truth and reality / E. A. Solomon, 1969", - "BnF Service indien, 2017-04-19" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Concept d'ignorance \u00e0 la base de tous les maux et de toutes les passions dans les diff\u00e9rentes \u00e9coles du bouddhisme" - ], - "noteType": "general" + "Sous cette vedette, obligatoirement suivie d'une subdivision g\u00e9ographique ou de la subdivision : \u00c0 l'\u00e9tranger, directement ou apr\u00e8s une subdivision de sujet, on trouve les documents sur les familles nicaraguayennes hors du Nicaragua. Les documents sur les familles nicaraguayennes au Nicaragua se trouvent sous des vedettes-mati\u00e8re telles que : Famille -- Nicaragua ; Famille -- [Subdivision de sujet] -- Nicaragua ; etc" + ] } ], - "type": "bf:Topic", + "pid": "279307853", "broader": [ { - "authorized_access_point": "Bouddhisme - Doctrines" + "authorized_access_point": "Nicaraguayens" } ], - "related": [ + "md5": "e9dcf12c647c49531a2be6ed6b8de156" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Catalogues de libraires", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "authorized_access_point": "J\u00f1\u0101na-yoga" + "type": "bf:ClassificationDdc", + "classificationPortion": "020", + "name": "Sciences de l'information" }, { - "authorized_access_point": "Sams\u0101ra" + "type": "bf:ClassificationDdc", + "classificationPortion": "330", + "name": "Economie" } ], - "bnf_type": "sujet Rameau", "closeMatch": [ { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85010544", - "source": "LCSH" - }, - "authorized_access_point": "Avidy\u0101" + "authorized_access_point": "Catalogues de librairies", + "source": "RVMLaval" }, { - "source": "RVMLaval", - "authorized_access_point": "Avidy\u0101" + "authorized_access_point": "Booksellers' catalogs", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85020902", + "source": "LCSH" + } + ] } ], + "identifier": "http://www.idref.fr/027222144", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/16573762X", + "value": "http://www.idref.fr/027222144", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb16641477s", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119311240", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11931124" } ], - "classification": [ + "note": [ { - "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)", - "type": "bf:ClassificationDdc", - "classificationPortion": "200" + "noteType": "general", + "label": [ + "S'emploie \u00e9galement en subdivision" + ] } ], - "variant_access_point": [ - "Avijj\u0101", - "\u0905\u0935\u093f\u091c\u094d\u091c\u093e", - "Avvij\u0101", - "\u0905\u0935\u094d\u0935\u093f\u091c\u093e" + "pid": "027222144", + "related": [ + { + "authorized_access_point": "Librairie" + } ], - "authorized_access_point": "Avidy\u0101" - }, - { - "md5": "97b00d6974086b6339c77a07803598c0", - "pid": "16719416X", - "note": [ + "broader": [ { - "label": [ - "Nouveau petit Robert 2010", - "JurisClasseur Europe Trait\u00e9 > Fasc.100 : Union europ\u00e9enne.- Histoire de la construction europ\u00e9enne - Acte unique europ\u00e9en (1986-1987)", - "Le syst\u00e8me institutionnel europ\u00e9en ou l'affirmation d'une Europe puissance politique : l'enjeu des r\u00e9visions des trait\u00e9s / F. R. Barbaro, [s.d.]" - ], - "noteType": "dataSource" + "authorized_access_point": "Catalogues commerciaux" } ], + "variant_access_point": [ + "Catalogues de librairies" + ], + "md5": "66da5c2a7c6f5f0275f870400c6a705a" + }, + { "type": "bf:Topic", - "broader": [ + "authorized_access_point": "Litt\u00e9rature espagnole", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "authorized_access_point": "Trait\u00e9s" + "type": "bf:ClassificationDdc", + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" } ], - "bnf_type": "sujet Rameau", "closeMatch": [ { + "authorized_access_point": "Spanish literature", "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85137215", - "source": "LCSH" - }, - "authorized_access_point": "Treaties--Revision" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85126268", + "source": "LCSH" + } + ] }, { - "source": "RVMLaval", - "authorized_access_point": "Trait\u00e9s -- R\u00e9vision" + "authorized_access_point": "Litt\u00e9rature espagnole", + "source": "RVMLaval" } ], + "identifier": "http://www.idref.fr/027236897", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/16719416X", + "value": "http://www.idref.fr/027236897", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb166589741", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11932273q", "source": "BNF" - } - ], - "classification": [ - { - "name": "Sciences politiques", - "type": "bf:ClassificationDdc", - "classificationPortion": "320" }, { - "name": "Droit", - "type": "bf:ClassificationDdc", - "classificationPortion": "340" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11932273" } ], - "variant_access_point": [ - "Trait\u00e9s - R\u00e9vision" - ], - "authorized_access_point": "R\u00e9vision des trait\u00e9s" - }, - { - "md5": "783e0a6c7450d5b690d2e6097e71cd72", - "pid": "169177742", "note": [ { + "noteType": "general", "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures japonaises, polonaises et roumaines", - "Cette subdivision est utilis\u00e9e dans des cha\u00eenes construites avec les vedette Litt\u00e9rature japonaise, Litt\u00e9rature polonaise, Litt\u00e9rature roumaine, celles-ci servant de vedettes mod\u00e8les. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires japonais, polonais et roumains" - ], - "noteType": "general" + "S'emploie \u00e9galement en subdivision", + "Les subdivisions chronologiques sp\u00e9cifiques employ\u00e9es sous la vedette Litt\u00e9rature espagnole doivent \u00eatre utilis\u00e9es pour tous les genres litt\u00e9raires espagnols" + ] } ], - "type": "bf:Temporal", + "pid": "027236897", "related": [ { - "authorized_access_point": "Litt\u00e9rature roumaine - 1945-1989" + "authorized_access_point": "\u00c9crivains espagnols" }, { - "authorized_access_point": "Litt\u00e9rature japonaise - 1945-1989" + "authorized_access_point": "Litt\u00e9rature compar\u00e9e - Allemande et espagnole" }, { - "authorized_access_point": "Litt\u00e9rature polonaise - 1945-1989" - } - ], - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "authorized_access_point": "Litt\u00e9rature compar\u00e9e - Am\u00e9ricaine et espagnole" + }, { - "type": "uri", - "value": "http://www.idref.fr/169177742", - "source": "IDREF" + "authorized_access_point": "Litt\u00e9rature compar\u00e9e - Anglaise et espagnole" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb166782259", - "source": "BNF" - } - ], - "classification": [ + "authorized_access_point": "Litt\u00e9rature compar\u00e9e - Arabe et espagnole" + }, { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" - } - ], - "authorized_access_point": "1945-1989" - }, - { - "md5": "833b772a1dcd74edddb2e38091549550", - "pid": "169177750", - "note": [ + "authorized_access_point": "Litt\u00e9rature compar\u00e9e - Argentine et espagnole" + }, { - "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures japonaises", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la vedette Litt\u00e9rature japonaise, celle-ci servant de vedette mod\u00e8le. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires japonais" - ], - "noteType": "general" - } - ], - "type": "bf:Temporal", - "related": [ + "authorized_access_point": "Litt\u00e9rature compar\u00e9e - Autrichienne et espagnole" + }, { - "authorized_access_point": "Litt\u00e9rature japonaise - 1989-2019 (\u00c8re Heisei)" - } - ], - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "authorized_access_point": "Litt\u00e9rature compar\u00e9e - Br\u00e9silienne et espagnole" + }, { - "type": "uri", - "value": "http://www.idref.fr/169177750", - "source": "IDREF" + "authorized_access_point": "Litt\u00e9rature compar\u00e9e - Catalane et espagnole" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb166782390", - "source": "BNF" - } - ], - "classification": [ + "authorized_access_point": "Litt\u00e9rature compar\u00e9e - Chilienne et espagnole" + }, { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" - } - ], - "authorized_access_point": "1989-2019(\u00c8re Heisei)" - }, - { - "md5": "1684793cdd6a3414c04c8486182e1526", - "pid": "17089018X", - "note": [ + "authorized_access_point": "Litt\u00e9rature compar\u00e9e - Chinoise et espagnole" + }, { - "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures allemandes", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la vedette Litt\u00e9rature allemande, qui sert de vedette mod\u00e8le. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires allemands" - ], - "noteType": "general" - } - ], - "type": "bf:Temporal", - "related": [ + "authorized_access_point": "Litt\u00e9rature compar\u00e9e - Cubaine et espagnole" + }, { - "authorized_access_point": "Litt\u00e9rature allemande - 1350-1650 (nouvel haut-allemand)" - } - ], - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "authorized_access_point": "Litt\u00e9rature compar\u00e9e - Espagnole et europ\u00e9enne" + }, { - "type": "uri", - "value": "http://www.idref.fr/17089018X", - "source": "IDREF" + "authorized_access_point": "Litt\u00e9rature compar\u00e9e - Espagnole et fran\u00e7aise" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb16696953d", - "source": "BNF" - } - ], - "classification": [ + "authorized_access_point": "Litt\u00e9rature compar\u00e9e - Espagnole et grecque" + }, { - "name": "Langues et linguistique", - "type": "bf:ClassificationDdc", - "classificationPortion": "400" + "authorized_access_point": "Litt\u00e9rature compar\u00e9e - Espagnole et irlandaise" }, { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "authorized_access_point": "Litt\u00e9rature compar\u00e9e - Espagnole et italienne" + }, + { + "authorized_access_point": "Litt\u00e9rature compar\u00e9e - Espagnole et mexicaine" + }, + { + "authorized_access_point": "Litt\u00e9rature compar\u00e9e - Espagnole et occitane" + }, + { + "authorized_access_point": "Litt\u00e9rature compar\u00e9e - Espagnole et polonaise" + }, + { + "authorized_access_point": "Litt\u00e9rature compar\u00e9e - Espagnole et portugaise" + }, + { + "authorized_access_point": "Litt\u00e9rature compar\u00e9e - Espagnole et russe" + }, + { + "authorized_access_point": "Litt\u00e9rature compar\u00e9e - Espagnole et su\u00e9doise" + }, + { + "authorized_access_point": "Mouvements litt\u00e9raires - Espagne" + }, + { + "authorized_access_point": "Prix litt\u00e9raires - Espagne" + }, + { + "authorized_access_point": "Citations espagnoles" } ], - "authorized_access_point": "1350-1650(nouvel haut-allemand)" - }, - { - "md5": "f7f0d81565f2fbcf913a42ae8f366fb3", - "pid": "172690250", - "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Vie intellectuelle - Espagne" + "authorized_access_point": "Civilisation - Espagne" }, { - "authorized_access_point": "Mouvements litt\u00e9raires - [Localisations g\u00e9ographiques]" - } - ], - "related": [ + "authorized_access_point": "Litt\u00e9rature hispanophone" + }, { - "authorized_access_point": "Litt\u00e9rature espagnole" + "authorized_access_point": "Litt\u00e9rature ib\u00e9rique" } ], - "bnf_type": "sujet Rameau", "narrower": [ { - "authorized_access_point": "Cr\u00e9ationnisme (mouvement litt\u00e9raire)" + "authorized_access_point": "Autobiographie espagnole" }, { - "authorized_access_point": "Generaci\u00f3n del 50 (litt\u00e9rature espagnole)" + "authorized_access_point": "Biographie espagnole" }, { - "authorized_access_point": "G\u00e9n\u00e9ration de 98 (mouvement litt\u00e9raire)" + "authorized_access_point": "Chroniques espagnoles" }, { - "authorized_access_point": "La otra sentimentalidad" + "authorized_access_point": "Contes litt\u00e9raires espagnols" }, { - "authorized_access_point": "Modernisme (mouvement litt\u00e9raire hispanophone)" + "authorized_access_point": "Dialogues (genre litt\u00e9raire) espagnols" }, { - "authorized_access_point": "Noucentisme" + "authorized_access_point": "Discours espagnols" }, { - "authorized_access_point": "Nov\u00edsimos" + "authorized_access_point": "\u00c9crits anonymes espagnols" }, { - "authorized_access_point": "Nuevo romanticismo" + "authorized_access_point": "\u00c9crits d'immigr\u00e9s espagnols" }, { - "authorized_access_point": "Poes\u00eda de la conciencia" + "authorized_access_point": "\u00c9crits de jeunes espagnols" }, { - "authorized_access_point": "Ultra\u00efsme" - } - ], - "closeMatch": [ + "authorized_access_point": "\u00c9crits de lesbiennes espagnoles" + }, { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh2002008852", - "source": "LCSH" - }, - "authorized_access_point": "Literary movements -- Spain" + "authorized_access_point": "\u00c9crits de militaires espagnols" }, { - "source": "RVMLaval", - "authorized_access_point": "Mouvements litt\u00e9raires -- Espagne" - } - ], - "identifiedBy": [ + "authorized_access_point": "\u00c9crits de prisonniers espagnols" + }, { - "type": "uri", - "value": "http://www.idref.fr/172690250", - "source": "IDREF" + "authorized_access_point": "Essai (genre litt\u00e9raire) espagnol" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb167173405", - "source": "BNF" - } - ], - "classification": [ + "authorized_access_point": "Fantasy espagnole" + }, { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" - } - ], - "authorized_access_point": "Mouvements litt\u00e9raires - Espagne" - }, - { - "md5": "2f16051255a4ce5b77e21d8f6c737134", - "pid": "174131887", - "note": [ + "authorized_access_point": "Journaux intimes espagnols" + }, { - "label": [ - "Encycl. universalis (art. : Guitare basse) - http://www.universalis-edu.com (2013-11-04)", - "Dict. des mots de la musique / J. Siron, 2006", - "Les instruments de musique dans le monde vol. 1 / F.-R. Tranchefort, 1980", - "Oxford Music online (art. : Nigeria, Federal Republic of) - http://www.oxfordmusiconline.com (2013-11-04)", - "L'odyss\u00e9e africaine d'un cordophone rudimentaire : le \u00ab luth \u00e0 pique int\u00e9rieure \u00bb / C. Baroin [in] Afrique Arch\u00e9ologie Arts, 7, 2011", - "Musique et litt\u00e9rature orale chez les Peuls du Mali / C. Seydoux [in] L'Homme, 1998, 148" - ], - "noteType": "dataSource" + "authorized_access_point": "Litt\u00e9rature clandestine espagnole" }, { - "label": [ - "Encycl. de la musique, 1992. - Dict. encyclop\u00e9dique de la musique / D. Arnold, 1988. - M\u00e9diath\u00e8que de la Cit\u00e9 de la musique : http://mediatheque.cite-musique.fr (2013-11-04). - Maison des cultures du monde : http://mcm.base-alexandrie.fr:8080 (2013-11-04)" - ], - "noteType": "dataNotFound" + "authorized_access_point": "Litt\u00e9rature d'\u00e9pouvante espagnole" }, { - "label": [ - "Afrique de l'Ouest. Luth \u00e0 structure composite. Caisse de r\u00e9sonance h\u00e9misph\u00e9rique constitu\u00e9e d'une demi-calebasse recouverte d'une peau de vache tann\u00e9e et p\u00e9n\u00e9tr\u00e9e par un manche sans frettes en forme de b\u00e2ton. Taille variable selon les r\u00e9gions. Cordes pinc\u00e9es au nombre de 1 (nord du S\u00e9n\u00e9gal), de 2 (Ghana, Nig\u00e9ria) ou de 3 (population songha\u00ef et hausa)" - ], - "noteType": "general" - } - ], - "type": "bf:Topic", - "broader": [ + "authorized_access_point": "Litt\u00e9rature d'exil espagnole" + }, { - "authorized_access_point": "Instruments de musique - Afrique occidentale" + "authorized_access_point": "Litt\u00e9rature de colportage espagnole" }, { - "authorized_access_point": "Luths (famille d'instruments)" - } - ], - "related": [ + "authorized_access_point": "Litt\u00e9rature dialectale espagnole" + }, + { + "authorized_access_point": "Litt\u00e9rature didactique espagnole" + }, + { + "authorized_access_point": "Litt\u00e9rature \u00e9pistolaire espagnole" + }, + { + "authorized_access_point": "Litt\u00e9rature \u00e9rotique espagnole" + }, + { + "authorized_access_point": "Litt\u00e9rature espagnole - Auteurs juifs" + }, + { + "authorized_access_point": "Litt\u00e9rature espagnole - Avant 1500" + }, + { + "authorized_access_point": "Litt\u00e9rature espagnole - 1500-1700 (P\u00e9riode classique)" + }, + { + "authorized_access_point": "Litt\u00e9rature espagnole - 18e si\u00e8cle" + }, + { + "authorized_access_point": "Litt\u00e9rature espagnole - 19e si\u00e8cle" + }, + { + "authorized_access_point": "Litt\u00e9rature espagnole - 1870-1914" + }, + { + "authorized_access_point": "Litt\u00e9rature espagnole - 20e si\u00e8cle" + }, + { + "authorized_access_point": "Litt\u00e9rature espagnole - 1975-...." + }, + { + "authorized_access_point": "Litt\u00e9rature espagnole pour la jeunesse" + }, + { + "authorized_access_point": "Litt\u00e9rature exp\u00e9rimentale espagnole" + }, + { + "authorized_access_point": "Litt\u00e9rature fantastique espagnole" + }, + { + "authorized_access_point": "Litt\u00e9rature humoristique espagnole" + }, + { + "authorized_access_point": "Litt\u00e9rature libertaire espagnole" + }, + { + "authorized_access_point": "Litt\u00e9rature pastorale espagnole" + }, + { + "authorized_access_point": "Litt\u00e9rature polici\u00e8re espagnole" + }, + { + "authorized_access_point": "Litt\u00e9rature populaire espagnole" + }, + { + "authorized_access_point": "Litt\u00e9rature religieuse espagnole" + }, + { + "authorized_access_point": "Litt\u00e9rature r\u00e9volutionnaire espagnole" + }, + { + "authorized_access_point": "M\u00e9moires (genre litt\u00e9raire) espagnols" + }, + { + "authorized_access_point": "Nouvelles espagnoles" + }, + { + "authorized_access_point": "Pamphlets espagnols" + }, + { + "authorized_access_point": "Parodie espagnole" + }, + { + "authorized_access_point": "Po\u00e9sie espagnole" + }, + { + "authorized_access_point": "Portraits (genre litt\u00e9raire) espagnols" + }, + { + "authorized_access_point": "Prose espagnole" + }, + { + "authorized_access_point": "R\u00e9cits de guerre espagnols" + }, { - "authorized_access_point": "Khalam" + "authorized_access_point": "R\u00e9cits de voyages espagnols" }, { - "authorized_access_point": "Molo, Musique de" - } - ], - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "authorized_access_point": "Roman espagnol" + }, { - "type": "uri", - "value": "http://www.idref.fr/174131887", - "source": "IDREF" + "authorized_access_point": "Satire espagnole" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb16720369d", - "source": "BNF" - } - ], - "classification": [ + "authorized_access_point": "Science-fiction espagnole" + }, { - "name": "Musique", - "type": "bf:ClassificationDdc", - "classificationPortion": "780" + "authorized_access_point": "Th\u00e9\u00e2tre (genre litt\u00e9raire) espagnol" } ], "variant_access_point": [ - "Molaandu", - "M\u00f3\u00f3l\u00f3\u00f3", - "Moolooru", - "Mulore" + "Et la litt\u00e9rature espagnole", + "Litt\u00e9rature castillane" ], - "authorized_access_point": "Molo" + "md5": "19036be0fb25c6f541dd3f4dfefb4b68" }, { - "md5": "e58da5b16ac2adf861de8860688a67f7", - "pid": "180122312", - "note": [ + "type": "bf:Topic", + "authorized_access_point": "Roman australien", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures am\u00e9ricaines", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la vedette Litt\u00e9rature am\u00e9ricaine, celle-ci servant de vedette mod\u00e8le. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires am\u00e9ricains", - "Ne pas employer la subdivision chronologique d'emploi g\u00e9n\u00e9ral 1870-1914" - ], - "noteType": "general" + "type": "bf:ClassificationDdc", + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" } ], - "type": "bf:Temporal", - "related": [ + "closeMatch": [ { - "authorized_access_point": "Litt\u00e9rature am\u00e9ricaine - 1865-1918" + "authorized_access_point": "Australian fiction", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85009635", + "source": "LCSH" + } + ] } ], - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027276457", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/180122312", + "value": "http://www.idref.fr/027276457", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb16776999g", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12647669m", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12647669" } ], - "classification": [ + "pid": "027276457", + "related": [ { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "authorized_access_point": "Romanciers australiens" } ], - "authorized_access_point": "1865-1918" - }, - { - "md5": "489f92bf9c07a0102a6aa943ceb6c2ed", - "pid": "18456381X", - "note": [ + "narrower": [ { - "label": [ - "Grand Larousse universel (art. : Rouleau)", - "Encycl. universalis (art. : Macadam) - http://www.universalis-edu.com (2017-01-10)", - "Wikip\u00e9dia - https://fr.wikipedia.org (2017-01-10)", - "CACES R 372 m cat\u00e9gorie 7. Compacteurs : Guide pour l'\u00e9valuation pratique / INRS, 2014" - ], - "noteType": "dataSource" + "authorized_access_point": "Roman autobiographique australien" + }, + { + "authorized_access_point": "Roman d'amour australien" + }, + { + "authorized_access_point": "Roman d'aventures australien" + }, + { + "authorized_access_point": "Roman de science-fiction australien" + }, + { + "authorized_access_point": "Roman familial australien" + }, + { + "authorized_access_point": "Roman gothique australien" + }, + { + "authorized_access_point": "Roman historique australien" + }, + { + "authorized_access_point": "Roman policier australien" + }, + { + "authorized_access_point": "Thriller (roman) australien" } ], - "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Engins de terrassement" + "authorized_access_point": "Litt\u00e9rature australienne" }, { - "authorized_access_point": "Engins routiers" + "authorized_access_point": "Roman anglophone" } ], - "related": [ + "md5": "ba767b6821c3a5dd83526d5fb403294c" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Th\u00e9\u00e2tre (genre litt\u00e9raire) canadien de langue fran\u00e7aise", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "authorized_access_point": "Sols - Compactage" + "type": "bf:ClassificationDdc", + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" } ], - "bnf_type": "sujet Rameau", "closeMatch": [ { + "authorized_access_point": "French-Canadian drama", "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85114483", - "source": "LCSH" - }, - "authorized_access_point": "Road rollers" - }, - { - "source": "RVMLaval", - "authorized_access_point": "Rouleaux (Travaux publics)" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85051768", + "source": "LCSH" + } + ] } ], + "identifier": "http://www.idref.fr/027307565", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/18456381X", + "value": "http://www.idref.fr/027307565", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb170991500", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11937806f", "source": "BNF" - } - ], - "classification": [ - { - "name": "Technique", - "type": "bf:ClassificationDdc", - "classificationPortion": "600" - } - ], - "variant_access_point": [ - "Compacteurs", - "Cylindres (rouleaux compresseurs)", - "Engins de compactage", - "Rouleaux \u00e0 pieds", - "Rouleaux \u00e0 pneus", - "Rouleaux compacteurs", - "Rouleaux compresseurs vibrateurs", - "Rouleaux vibrants" - ], - "authorized_access_point": "Rouleaux compresseurs" - }, - { - "md5": "00ab096d11ce9adbad66f201b6f91974", - "pid": "185676146", - "note": [ + }, { - "label": [ - "S'emploie uniquement en subdivision chronologique [sans subd. g\u00e9ogr.] aux litt\u00e9ratures am\u00e9ricaines", - "Cette subdivision est utilis\u00e9e dans des cha\u00eenes construites avec la vedette Litt\u00e9rature am\u00e9ricaine, celle-ci servant de vedette mod\u00e8le. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires am\u00e9ricains" - ], - "noteType": "general" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11937806" } ], - "type": "bf:Temporal", + "pid": "027307565", "related": [ { - "authorized_access_point": "Litt\u00e9rature am\u00e9ricaine - 1945-2000" + "authorized_access_point": "Auteurs dramatiques canadiens de langue fran\u00e7aise" } ], - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "narrower": [ { - "type": "uri", - "value": "http://www.idref.fr/185676146", - "source": "IDREF" + "authorized_access_point": "Th\u00e9\u00e2tre canadien de langue fran\u00e7aise pour la jeunesse" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb16965970n", - "source": "BNF" + "authorized_access_point": "Th\u00e9\u00e2tre documentaire canadien de langue fran\u00e7aise" + }, + { + "authorized_access_point": "Th\u00e9\u00e2tre politique canadien de langue fran\u00e7aise" + }, + { + "authorized_access_point": "Th\u00e9\u00e2tre radiophonique canadien de langue fran\u00e7aise" } ], - "classification": [ + "broader": [ { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "authorized_access_point": "Litt\u00e9rature canadienne de langue fran\u00e7aise" + }, + { + "authorized_access_point": "Th\u00e9\u00e2tre (genre litt\u00e9raire) canadien" + }, + { + "authorized_access_point": "Th\u00e9\u00e2tre (genre litt\u00e9raire) francophone" } ], "variant_access_point": [ - "1945-2000 (subdivision)" + "Th\u00e9\u00e2tre (genre litt\u00e9raire) francophone canadien", + "Th\u00e9\u00e2tre (genre litt\u00e9raire) qu\u00e9b\u00e9cois", + "Th\u00e9\u00e2tre canadien de langue fran\u00e7aise" ], - "authorized_access_point": "1945-2000" + "md5": "1be2b72204f6650b5c48fa209dc5e5da" }, { - "md5": "d7f103f468cc4946edd0daa7c3a9f954", - "pid": "196345359", - "note": [ + "type": "bf:Topic", + "authorized_access_point": "Jeux vid\u00e9o", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures n\u00e9erlandaises", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la vedette Litt\u00e9rature n\u00e9erlandaise, celle-ci servant de vedette mod\u00e8le. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires n\u00e9erlandais" - ], - "noteType": "general" - } - ], - "type": "bf:Temporal", - "related": [ + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + }, { - "authorized_access_point": "Litt\u00e9rature n\u00e9erlandaise - 1880-1945" + "type": "bf:ClassificationDdc", + "classificationPortion": "793", + "name": "Jeux" } ], - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "closeMatch": [ { - "type": "uri", - "value": "http://www.idref.fr/196345359", - "source": "IDREF" + "authorized_access_point": "Video games", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85143202", + "source": "LCSH" + } + ] }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb17082314s", - "source": "BNF" - } - ], - "classification": [ + "authorized_access_point": "Computer games", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85029499", + "source": "LCSH" + } + ] + }, { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" - } - ], - "authorized_access_point": "1880-1945" - }, - { - "md5": "9ae1b203c42ba83631436d766dbcbd30", - "pid": "241963974", - "note": [ + "authorized_access_point": "Jeux vid\u00e9o", + "source": "RVMLaval" + }, { - "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures japonaises" - ], - "noteType": "general" + "authorized_access_point": "Jeux d'ordinateur", + "source": "RVMLaval" } ], - "type": "bf:Temporal", - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/02767391X", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/241963974", + "value": "http://www.idref.fr/02767391X", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb17818148x", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13318902d", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13318902" } ], - "authorized_access_point": "2019-....(\u00c8re Reiwa)" - }, - { - "md5": "01f115aa70104733f60931bccd9f203a", - "pid": "245367888", "note": [ { + "noteType": "dataSource", + "label": [ + "Encycl. des jeux vid\u00e9o / F. Sanchez, 2008", + "La saga des jeux vid\u00e9o / D. Ichbiah, 2011", + "Jeuxvideo.com : la r\u00e9f\u00e9rence des jeux vid\u00e9o sur PC et consoles" + ] + }, + { + "noteType": "general", "label": [ - "Wikip\u00e9dia (art. : Hirak) ; Hirak (Alg\u00e9rie) - https://fr.wikipedia.org (2020-06-16)", - "Du hirak au harak, tentative de lexique - https://www.elwatan.com (2020-06-16)", - "Hirak en Alg\u00e9rie, l'invention d'un soul\u00e8vement, 2020", - "Alg\u00e9rie, la nouvelle ind\u00e9pendance / J.-P. Filiu, 2019", - "Alg\u00e9rie : l'inlassable d\u00e9fi du Hirak [in] Le Monde, 2020-02-22 - https://www.lemonde.fr (2020-06-16)" - ], - "noteType": "dataSource" + "S'emploie \u00e9galement en subdivision" + ] }, { + "noteType": "seeReference", "label": [ - "Hirak : mot arabe signifiant \u00e9tymologiquement \u00ab mouvement \u00bb et d\u00e9signant des mouvements de contestations populaires dans les pays du monde arabe, notamment au Y\u00e9men, en Irak, au Maroc (Rif) et en Alg\u00e9rie. En Alg\u00e9rie, s\u00e9rie de manifestations sporadiques depuis le 22 f\u00e9vrier 2019 pour protester dans un premier temps contre la candidature d'Abdelaziz Bouteflika \u00e0 un cinqui\u00e8me mandat pr\u00e9sidentiel, puis contre son projet, \u00e9galement contest\u00e9 par l'arm\u00e9e, de se maintenir au pouvoir \u00e0 l'issue de son quatri\u00e8me mandat dans le cadre d'une transition et de la mise en \u0153uvre de r\u00e9formes" - ], - "noteType": "general" + "Voir aussi la subdivision Dans les jeux vid\u00e9o \u00e0 tous sujets noms communs et noms propres" + ] } ], - "type": "bf:Topic", - "broader": [ + "pid": "02767391X", + "related": [ { - "authorized_access_point": "Manifestations - Alg\u00e9rie" + "authorized_access_point": "Allegro (informatique)" }, { - "authorized_access_point": "Mouvements contestataires" + "authorized_access_point": "Biblioth\u00e8ques et jeux vid\u00e9o" }, { - "authorized_access_point": "Politique et gouvernement - Alg\u00e9rie - 1999-...." + "authorized_access_point": "Cin\u00e9ma et jeux vid\u00e9o" }, { - "authorized_access_point": "Alg\u00e9rie - 1992-...." - } - ], - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "authorized_access_point": "Concepteurs de jeux vid\u00e9o" + }, { - "type": "uri", - "value": "http://www.idref.fr/245367888", - "source": "IDREF" + "authorized_access_point": "Dans les jeux vid\u00e9o" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb17876933v", - "source": "BNF" - } - ], - "classification": [ + "authorized_access_point": "Jeux vid\u00e9o et histoire" + }, { - "name": "Sciences politiques", - "type": "bf:ClassificationDdc", - "classificationPortion": "320" + "authorized_access_point": "Joueurs de jeux vid\u00e9o" }, { - "name": "Economie", - "type": "bf:ClassificationDdc", - "classificationPortion": "330" + "authorized_access_point": "Pixel art" }, { - "type": "bf:ClassificationDdc", - "classificationPortion": "950" - } - ], - "variant_access_point": [ - "Al-Hirak (Alg\u00e9rie)", - "Harak (Alg\u00e9rie ; 2019-....)", - "Harak (mouvement ; Alg\u00e9rie ; 2019-....)", - "Hirak (Alg\u00e9rie ; 2019-....)", - "Hirak alg\u00e9rien" - ], - "authorized_access_point": "Hirak (mouvement ; Alg\u00e9rie ; 2019-....)" - }, - { - "md5": "aa42520f473197a96cbc62c9fc3cce1f", - "pid": "252252063", - "note": [ + "authorized_access_point": "Salles d'arcades" + }, { - "label": [ - "Dic. do romantismo liter\u00e1rio portugu\u00eas, 1997 (art. : Coimbra, e a literature romantica)", - "A gera\u00e7\u00e3o de 70 : uma gera\u00e7\u00e3o revolucion\u00e1ria e europe\u00edsta / J. Medina, 1999", - "Hist\u00f3ria e Fic\u00e7\u00e3o Romanesca : Um Olhar sobre a Gera\u00e7\u00e3o de 70 em Portugal / P. Franchetti [in] Santa Barbara Portuguese Studies, 1997, 4", - "A Gerac\u00e3o de 70 : uma sintese provisoria / J. Medina, 1975", - "Portugal's Gera\u00e7\u00e3o de 70 : Drama influenced by a Changing World / C. M. Pierson, 2009 [in] Theatre Research International , 1995, 20, 1", - "La g\u00e9n\u00e9ration de 70 : \u00e9poque, chefs de file, relations avec la France : exposition bibliographique, 1971", - "Contribution \u00e0 l'\u00e9tude des id\u00e9es politiques et sociales de l'\u00c9cole de Coimbra / R. Leal, 1941", - "Modernity and modernism in Portugal : the \"Questao Coimbra\" and the generation of 1870 / D. J. Sadlier [in] Nineteenth-century prose, 2005, 32, 1" - ], - "noteType": "dataSource" + "authorized_access_point": "Machinimas" + }, + { + "authorized_access_point": "Musique de jeux vid\u00e9o" } ], - "type": "bf:Topic", - "broader": [ + "narrower": [ { - "authorized_access_point": "Modernisme (mouvement litt\u00e9raire portugais)" + "authorized_access_point": "Arcade (jeux vid\u00e9o)" }, { - "authorized_access_point": "Litt\u00e9rature portugaise" - } - ], - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "authorized_access_point": "Game Boy (jeux vid\u00e9o)" + }, { - "type": "uri", - "value": "http://www.idref.fr/252252063", - "source": "IDREF" + "authorized_access_point": "Jeux de combat (jeux vid\u00e9o)" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18011072k", - "source": "BNF" - } - ], - "classification": [ + "authorized_access_point": "Jeux de gestion (jeux vid\u00e9o)" + }, { - "name": "Po\u00e9sie", - "type": "bf:ClassificationDdc", - "classificationPortion": "801" - } - ], - "variant_access_point": [ - "G\u00e9n\u00e9ration de 1870 (litt\u00e9rature portugaise)", - "G\u00e9n\u00e9ration de 70 (litt\u00e9rature portugaise)", - "G\u00e9n\u00e9ration de Co\u00efmbra (litt\u00e9rature portugaise)", - "Gera\u00e7\u00e3o de 1870 (litt\u00e9rature portugaise)" - ], - "authorized_access_point": "Gera\u00e7\u00e3o de 70 (litt\u00e9rature portugaise)" - }, - { - "md5": "95a4647a971ee803898c73194583345f", - "pid": "25410875X", - "note": [ + "authorized_access_point": "Jeux vid\u00e9o de course" + }, { - "label": [ - "Encycl. universalis (art. : Islam (histoire) : le monde musulman contemporain) - http://www.universalis-edu.com (2022-04-29)", - "Changer l'Islam : dict. des r\u00e9formateurs musulmans des origines \u00e0 nos jours / M. Chebel, 2013", - "Islam et politique en Asie centrale / O. Roy, M. Gaborieau, A. Popovic [in] Archives de sciences sociales des religions, 2001, 115 - https://journals.openedition.org (2022-04-29)" - ], - "noteType": "dataSource" - } - ], - "type": "bf:Topic", - "broader": [ + "authorized_access_point": "Jeux vid\u00e9o de r\u00f4le" + }, { - "authorized_access_point": "R\u00e9formisme islamique" - } - ], - "bnf_type": "sujet Rameau", - "closeMatch": [ + "authorized_access_point": "Manettes de jeux vid\u00e9o" + }, { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "https://id.loc.gov/authorities/subjects/sh2004004554", - "source": "LCSH" - }, - "authorized_access_point": "Jadidism" - } - ], - "identifiedBy": [ + "authorized_access_point": "Neo-Geo (jeux vid\u00e9o)" + }, { - "type": "uri", - "value": "http://www.idref.fr/25410875X", - "source": "IDREF" + "authorized_access_point": "Nintendo (jeux vid\u00e9o)" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18011673k", - "source": "BNF" - } - ], - "classification": [ + "authorized_access_point": "PC-Engine (jeux vid\u00e9o)" + }, { - "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)", - "type": "bf:ClassificationDdc", - "classificationPortion": "200" + "authorized_access_point": "Personnages de jeux vid\u00e9o" }, { - "type": "bf:ClassificationDdc", - "classificationPortion": "950" - } - ], - "variant_access_point": [ - "D\u017eadidizm", - "\u0414\u0436\u0430\u0434\u0438\u0434\u0438\u0437\u043c", - "Zhadidchilik" - ], - "authorized_access_point": "Jadidisme" - }, - { - "md5": "adbab850a992784d4dc8847fce66b656", - "pid": "255690444", - "type": "bf:Topic", - "broader": [ + "authorized_access_point": "PlayStation (jeux vid\u00e9o)" + }, + { + "authorized_access_point": "Publicit\u00e9 int\u00e9gr\u00e9e dans les jeux vid\u00e9o" + }, + { + "authorized_access_point": "Sega (jeux vid\u00e9o)" + }, + { + "authorized_access_point": "Sport \u00e9lectronique" + }, + { + "authorized_access_point": "Xbox (jeux vid\u00e9o)" + }, + { + "authorized_access_point": "Jeux d'aventure (jeux vid\u00e9o)" + }, + { + "authorized_access_point": "Jeux de civilisation" + }, + { + "authorized_access_point": "Jeux de guerre (jeux vid\u00e9o)" + }, + { + "authorized_access_point": "Jeux musicaux (jeux vid\u00e9o)" + }, { - "authorized_access_point": "S\u00e9r\u00e9nades ([distributions instrumentales])" + "authorized_access_point": "Jeux sur mobiles" }, { - "authorized_access_point": "Trios (fl\u00fbte, violon, alto)" + "authorized_access_point": "Logiciels ludo\u00e9ducatifs" } ], - "bnf_type": "genre/forme Rameau", - "identifiedBy": [ + "broader": [ { - "type": "uri", - "value": "http://www.idref.fr/255690444", - "source": "IDREF" + "authorized_access_point": "Jeux" + }, + { + "authorized_access_point": "Jeux \u00e9lectroniques" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb179457866", - "source": "BNF" + "authorized_access_point": "Logiciels" } ], - "classification": [ - { - "name": "Musique", - "type": "bf:ClassificationDdc", - "classificationPortion": "780" - } + "variant_access_point": [ + "Consoles de jeux vid\u00e9o", + "Jeux - Logiciels", + "Jeux d'ordinateur", + "Jeux informatiques", + "Jeux informatis\u00e9s", + "Jeux sur consoles", + "Jeux sur microordinateurs", + "Jeux sur ordinateur", + "Logiciels de jeu", + "Logiciels ludiques", + "Ludiciels" ], - "authorized_access_point": "S\u00e9r\u00e9nades (fl\u00fbte, violon, alto)" + "md5": "f1fc32935d50c7a494f3e744b2feaa0f" }, { - "md5": "0d90d00c3139018d517f786652f99800", - "pid": "256524203", - "note": [ - { - "label": [ - "Les int\u00e9r\u00eats th\u00e9oriques de l'amor\u00e7age syntaxique / M. Poletti, L. Le Bigot, F.Rigalleau [in] L'ann\u00e9e psychologique, 2012, 2, vol. 112 - https://www.cairn.info/revue-l-annee-psychologique1-2012-2-page-247", - "Effet d'amor\u00e7age syntaxique - https://skosmos.loterre.fr/P66/fr/page/-GM3KP6TP-F (2022-07-19)", - "Effet d'amor\u00e7age structurel en fran\u00e7ais langue seconde : une \u00e9tude de corpus longitudinale / A. Thomas [in] SHS Web of Conferences 8, 1591-1605 (2014) - https://www.linguistiquefrancaise.org/articles/shsconf/abs/2014/05" - ], - "noteType": "dataSource" - } - ], "type": "bf:Topic", - "broader": [ - { - "authorized_access_point": "Psycholinguistique" - } - ], - "related": [ + "authorized_access_point": "Roman fran\u00e7ais", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "authorized_access_point": "M\u00e9moire implicite" + "type": "bf:ClassificationDdc", + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" } ], - "bnf_type": "sujet Rameau", "closeMatch": [ { - "source": "RVMLaval", - "authorized_access_point": "Amor\u00e7age (psychologie)" + "authorized_access_point": "French fiction", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85051802", + "source": "LCSH" + } + ] }, { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh87006196", - "source": "LCSH" - }, - "authorized_access_point": "Priming (psychology)" + "authorized_access_point": "Roman fran\u00e7ais", + "source": "RVMLaval" } ], + "identifier": "http://www.idref.fr/027800512", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/256524203", + "value": "http://www.idref.fr/027800512", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb180252531", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11976487r", "source": "BNF" - } - ], - "classification": [ - { - "name": "Psychologie, psychanalyse", - "type": "bf:ClassificationDdc", - "classificationPortion": "150" }, { - "type": "bf:ClassificationDdc", - "classificationPortion": "401" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11976487" } ], - "variant_access_point": [ - "Amor\u00e7age structural", - "Effet d'amor\u00e7age syntaxique", - "Persistance structurale", - "Persistance syntaxique" - ], - "authorized_access_point": "Amor\u00e7age syntaxique" - }, - { - "md5": "27f7678f001a92dfe5eba0d6acc469dc", - "pid": "258617527", - "note": [ + "pid": "027800512", + "related": [ { - "label": [ - "R\u00e9seau Canop\u00e9 : Rituels et activit\u00e9s ritualis\u00e9es \u00e0 l'\u00e9cole maternelle, des soutiens pour le d\u00e9veloppement de l'enfant - https://www.reseau-canope.fr (2022-07-15)", - "Rituels d'enseignement et d'apprentissage / F. Hatchuel [in] Herm\u00e8s, 2006, 43 - https://www.cairn.info (2022-07-15)", - "L' entr\u00e9e dans le contrat didactique \u00e0 l'\u00e9cole maternelle : le r\u00f4le des rituels dans la construction d'un milieu pour apprendre / L. Garcion-Vautor, 2000 [th\u00e8se] (2022-07-15)", - "Activit\u00e9s ritualis\u00e9es en maternelle / J. Alban-Arrouy, I. Marchesan, P. Schmitt, 2009" - ], - "noteType": "dataSource" + "authorized_access_point": "Romanciers fran\u00e7ais" } ], - "type": "bf:Topic", - "broader": [ + "narrower": [ { - "authorized_access_point": "Psychologie scolaire" + "authorized_access_point": "Nouveau roman" }, { - "authorized_access_point": "Rituel (psychologie)" - } - ], - "related": [ + "authorized_access_point": "Politique-fiction fran\u00e7aise" + }, { - "authorized_access_point": "Classes (\u00e9ducation) - Conduite" + "authorized_access_point": "Roman biographique fran\u00e7ais" }, { - "authorized_access_point": "Contrat p\u00e9dagogique" - } - ], - "bnf_type": "sujet Rameau", - "closeMatch": [ + "authorized_access_point": "Roman courtois fran\u00e7ais" + }, { - "source": "LCSH", - "authorized_access_point": "Ritual--Study and teaching" + "authorized_access_point": "Roman d'amour fran\u00e7ais" }, { - "source": "RVMLaval", - "authorized_access_point": "Rituel--\u00c9tude et enseignement" - } - ], - "identifiedBy": [ + "authorized_access_point": "Roman d'aventures fran\u00e7ais" + }, { - "type": "uri", - "value": "http://www.idref.fr/258617527", - "source": "IDREF" + "authorized_access_point": "Roman d'\u00e9ducation fran\u00e7ais" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18024967d", - "source": "BNF" - } - ], - "classification": [ + "authorized_access_point": "Roman d'espionnage fran\u00e7ais" + }, { - "name": "Psychologie, psychanalyse", - "type": "bf:ClassificationDdc", - "classificationPortion": "150" + "authorized_access_point": "Roman de chevalerie fran\u00e7ais" }, { - "name": "Education et enseignement", - "type": "bf:ClassificationDdc", - "classificationPortion": "370" - } - ], - "variant_access_point": [ - "Activit\u00e9s ritualis\u00e9es \u00e0 l'\u00e9cole", - "Rituels \u00e0 l'\u00e9cole", - "Rituels d'apprentissage", - "Rituels d'enseignement", - "Rituels de classe", - "Rituels scolaires" - ], - "authorized_access_point": "Rituels (\u00e9ducation)" - }, - { - "md5": "12a22a266215d5dee558f6308b45a113", - "pid": "25906288X", - "note": [ + "authorized_access_point": "Roman de moeurs fran\u00e7ais" + }, { - "label": [ - "Tr\u00e9sor de la langue fran\u00e7aise - http://stella.atilf.fr (2022-07-18)", - "P\u00e9dagogie, dict. des concepts cl\u00e9s / F. Raynal, A. Rieunier, 2009", - "Eduscol : Lecture et compr\u00e9hension de l'\u00e9crit : la compr\u00e9hension des consignes - https://eduscol.education.fr (2022-07-18)", - "Comprendre les \u00e9nonc\u00e9s et les consignes : un point fort du socle commun / J.-M. Zakhartchouk, 2019" - ], - "noteType": "dataSource" - } - ], - "type": "bf:Topic", - "broader": [ + "authorized_access_point": "Roman de science-fiction fran\u00e7ais" + }, { - "authorized_access_point": "\u00c9nonciation (linguistique)" + "authorized_access_point": "Roman en vers fran\u00e7ais" }, { - "authorized_access_point": "T\u00e2ches (\u00e9ducation)" - } - ], - "related": [ + "authorized_access_point": "Roman \u00e9pistolaire fran\u00e7ais" + }, { - "authorized_access_point": "Langage - Compr\u00e9hension" + "authorized_access_point": "Roman exp\u00e9rimental fran\u00e7ais" }, { - "authorized_access_point": "Lecture - Aspect cognitif" + "authorized_access_point": "Roman fantastique fran\u00e7ais" }, { - "authorized_access_point": "Psychologie cognitive" - } - ], - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "authorized_access_point": "Roman fran\u00e7ais pour la jeunesse" + }, { - "type": "uri", - "value": "http://www.idref.fr/25906288X", - "source": "IDREF" + "authorized_access_point": "Roman gothique fran\u00e7ais" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18025123t", - "source": "BNF" - } - ], - "classification": [ + "authorized_access_point": "Roman h\u00e9ro\u00efque" + }, { - "name": "Education et enseignement", - "type": "bf:ClassificationDdc", - "classificationPortion": "370" - } - ], - "variant_access_point": [ - "Consignes p\u00e9dagogiques", - "Consignes scolaires", - "Instructions (\u00e9ducation)" - ], - "authorized_access_point": "Consignes (\u00e9ducation)" - }, - { - "md5": "bf03a9de734d5750c2ddeb716dda9efe", - "pid": "259596337", - "note": [ + "authorized_access_point": "Roman historique fran\u00e7ais" + }, { - "label": [ - "Ne pas confondre marge chirurgicale et marge histologique en chirurgie des carcinomes cutan\u00e9s ! / J.-F. Sei, M. Beylot-Barry, B. Cribier [in] Annales de dermatologie et de v\u00e9n\u00e9r\u00e9ologie FMC, 2021, 1, 5", - "Les marges chirurgicales dans le cancer de la prostate. CCAFU revue de la litt\u00e9rature [in] Progr\u00e8s en urologie, 2014, 24, 6" - ], - "noteType": "dataSource" - } - ], - "type": "bf:Topic", - "broader": [ + "authorized_access_point": "Roman pastoral fran\u00e7ais" + }, { - "authorized_access_point": "Chirurgie" - } - ], - "bnf_type": "sujet Rameau", - "closeMatch": [ + "authorized_access_point": "Roman philosophique fran\u00e7ais" + }, { - "source": "MeSH", - "identifiedBy": { - "type": "uri", - "value": "https://id.nlm.nih.gov/mesh/M000617728", - "source": "MeSH" - }, - "authorized_access_point": "Margins of Excision" - } - ], - "identifiedBy": [ + "authorized_access_point": "Roman picaresque fran\u00e7ais" + }, { - "type": "uri", - "value": "http://www.idref.fr/259596337", - "source": "IDREF" + "authorized_access_point": "Roman policier fran\u00e7ais" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18021714j", - "source": "BNF" - } - ], - "classification": [ + "authorized_access_point": "Roman populaire fran\u00e7ais" + }, { - "name": "Sciences m\u00e9dicales et param\u00e9dicales", - "type": "bf:ClassificationDdc", - "classificationPortion": "610" - } - ], - "variant_access_point": [ - "Marges (chirurgie)", - "Marges d'ex\u00e9r\u00e8se", - "Marges histologiques", - "Marges histologiques de s\u00e9curit\u00e9" - ], - "authorized_access_point": "Marges chirurgicales" - }, - { - "md5": "f174e1ddf5a56c58b911f313b1953cc8", - "pid": "259599174", - "note": [ + "authorized_access_point": "Roman pr\u00e9historique fran\u00e7ais" + }, { - "label": [ - "Dict. de l'Acad\u00e9mie de m\u00e9decine - http://dictionnaire.academie-medecine.fr (2022-07-06)", - "Dict. de m\u00e9decine Flammarion, 2008 (art. : Banque)", - "Une banque d'os de haute s\u00e9curit\u00e9 pour allogreffes [in] Revue fran\u00e7aise des laboratoires, 2005, 371" - ], - "noteType": "dataSource" + "authorized_access_point": "Roman r\u00e9gionaliste fran\u00e7ais" + }, + { + "authorized_access_point": "Roman rustique fran\u00e7ais" } ], - "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Banques de tissus" + "authorized_access_point": "Litt\u00e9rature fran\u00e7aise" + }, + { + "authorized_access_point": "Roman francophone" } ], - "related": [ - { - "authorized_access_point": "Os" - }, + "md5": "8cc52628df0da731518fdcc859e6fea0" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Litt\u00e9rature danoise", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "authorized_access_point": "Tissu osseux" + "type": "bf:ClassificationDdc", + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" } ], - "bnf_type": "sujet Rameau", "closeMatch": [ { + "authorized_access_point": "Danish literature", "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "https://id.loc.gov/authorities/subjects/sh85015515", - "source": "LCSH" - }, - "authorized_access_point": "Bone banks" - }, - { - "source": "MeSH", - "identifiedBy": { - "type": "uri", - "value": "https://id.nlm.nih.gov/mesh/M0027859", - "source": "MeSH" - }, - "authorized_access_point": "Bone Banks" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85035735", + "source": "LCSH" + } + ] }, { - "source": "RVMLaval", - "authorized_access_point": "Banques d'os" + "authorized_access_point": "Litt\u00e9rature danoise", + "source": "RVMLaval" } ], + "identifier": "http://www.idref.fr/02781971X", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/259599174", + "value": "http://www.idref.fr/02781971X", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb180217376", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11977960b", "source": "BNF" - } - ], - "classification": [ - { - "name": "Sciences de la vie", - "type": "bf:ClassificationDdc", - "classificationPortion": "570" }, { - "name": "Sciences m\u00e9dicales et param\u00e9dicales", - "type": "bf:ClassificationDdc", - "classificationPortion": "610" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11977960" } ], - "variant_access_point": [ - "Banques de tissu osseux", - "Os, Banques d'", - "Tissu osseux, Banques de" - ], - "authorized_access_point": "Banques d'os" - }, - { - "md5": "a6bcaa5e7d21d6f3bbf7283f336ce8e3", - "pid": "259943401", "note": [ { + "noteType": "general", "label": [ - "Tr\u00e9sor de la langue fran\u00e7aise : corpor\u00e9it\u00e9, corporalit\u00e9 - http://stella.atilf.fr (2022-07-13)", - "Grand dict. de la philosophie / M. Blay, 2003", - "Dict. de philosophie / C. Godin, 2004", - "Dict. Merleau-Ponty / P. Dupond, 2007", - "Structure, origine et affectivit\u00e9 : quelques r\u00e9flexions \u00e0 propos de la corpor\u00e9it\u00e9 / G. Florival [in] Revue philosophique de Louvain, 1979, 34 - https://www.persee.fr (2022-07-13)", - "Le corps de la responsabilit\u00e9 : sensibilit\u00e9, corpor\u00e9it\u00e9 et subjectivit\u00e9 chez L\u00e9vinas / R. Calin [in] Les \u00e9tudes philosophiques, 2006, 3, 78 - https://www.cairn.info (2022-07-13)", - "Alt\u00e9rit\u00e9 et corpor\u00e9it\u00e9 dans l'oeuvre de Jean-Paul Sartre / A. Abdellaoui, 2008 [th\u00e8se]" - ], - "noteType": "dataSource" - } - ], - "type": "bf:Topic", - "broader": [ - { - "authorized_access_point": "Corps (philosophie)" + "Sous cette vedette, on trouve les recueils de litt\u00e9rature danoise de divers genres" + ] } ], + "pid": "02781971X", "related": [ { - "authorized_access_point": "Esprit et corps" + "authorized_access_point": "Danois (langue)" }, { - "authorized_access_point": "Ph\u00e9nom\u00e9nologie" - } - ], - "bnf_type": "sujet Rameau", - "closeMatch": [ + "authorized_access_point": "\u00c9crivains danois" + }, { - "source": "GND", - "authorized_access_point": "Leiblichkeit" + "authorized_access_point": "Litt\u00e9rature compar\u00e9e - Allemande et danoise" + }, + { + "authorized_access_point": "Litt\u00e9rature compar\u00e9e - Danoise et fran\u00e7aise" } ], - "identifiedBy": [ + "broader": [ { - "type": "uri", - "value": "http://www.idref.fr/259943401", - "source": "IDREF" + "authorized_access_point": "Civilisation - Danemark" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18024286r", - "source": "BNF" + "authorized_access_point": "Litt\u00e9rature scandinave" } ], - "classification": [ + "narrower": [ { - "name": "Philosophie", - "type": "bf:ClassificationDdc", - "classificationPortion": "100" - } - ], - "variant_access_point": [ - "Corporalit\u00e9 (philosophie)", - "Corpor\u00e9it\u00e9 (philosophie)", - "Corps v\u00e9cu (philosophie)", - "Leib (philosophie)" - ], - "authorized_access_point": "Chair (philosophie)" - }, - { - "md5": "f34cb8c3c49098160a0d6cc0201b1576", - "pid": "259951293", - "type": "bf:Topic", - "broader": [ + "authorized_access_point": "Autobiographie danoise" + }, { - "authorized_access_point": "R\u00e9fugi\u00e9s syriens" + "authorized_access_point": "Contes litt\u00e9raires danois" }, { - "authorized_access_point": "Syriennes" - } - ], - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "authorized_access_point": "\u00c9crits anonymes danois" + }, { - "type": "uri", - "value": "http://www.idref.fr/259951293", - "source": "IDREF" + "authorized_access_point": "Essai (genre litt\u00e9raire) danois" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb17992194g", - "source": "BNF" - } - ], - "classification": [ + "authorized_access_point": "Fables danoises" + }, { - "name": "Sciences sociales", - "type": "bf:ClassificationDdc", - "classificationPortion": "300" + "authorized_access_point": "Journaux intimes danois" }, { - "type": "bf:ClassificationDdc", - "classificationPortion": "305" + "authorized_access_point": "Litt\u00e9rature danoise pour la jeunesse" }, { - "name": "Sciences politiques", - "type": "bf:ClassificationDdc", - "classificationPortion": "320" + "authorized_access_point": "Litt\u00e9rature populaire danoise" }, { - "name": "Probl\u00e8mes et services sociaux", - "type": "bf:ClassificationDdc", - "classificationPortion": "360" + "authorized_access_point": "M\u00e9moires (genre litt\u00e9raire) danois" }, { - "name": "Ethnologie, anthropologie, folklore", - "type": "bf:ClassificationDdc", - "classificationPortion": "390" - } - ], - "variant_access_point": [ - "Femmes syriennes r\u00e9fugi\u00e9es", - "Syriennes - R\u00e9fugi\u00e9es" - ], - "authorized_access_point": "R\u00e9fugi\u00e9es syriennes" - }, - { - "md5": "a070b26c380708e0cb7a458c7310608e", - "pid": "259974811", - "note": [ + "authorized_access_point": "Nouvelles danoises" + }, { - "label": [ - "Orphanet - https://www.orpha.net (2022-07-15)", - "Dict. de l'Acad\u00e9mie de m\u00e9decine - http://dictionnaire.academie-medecine.fr (2022-07-15)", - "Dict. de l'Acad\u00e9mie nationale de pharmacie - https://dictionnaire.acadpharm.org (2022-07-15)", - "Dict. illustr\u00e9 des termes de m\u00e9decine, 2012 (art. : Adamantinome)", - "Dict. de m\u00e9decine Flammarion, 2008" - ], - "noteType": "dataSource" - } - ], - "type": "bf:Topic", - "broader": [ + "authorized_access_point": "Po\u00e9sie danoise" + }, { - "authorized_access_point": "Tumeurs" - } - ], - "bnf_type": "sujet Rameau", - "closeMatch": [ + "authorized_access_point": "Prose danoise" + }, { - "source": "MeSH", - "identifiedBy": { - "type": "uri", - "value": "https://id.nlm.nih.gov/mesh/M0000883", - "source": "MeSH" - }, - "authorized_access_point": "Ameloblastoma" + "authorized_access_point": "R\u00e9cits de voyages danois" }, { - "source": "RVMLaval", - "authorized_access_point": "Am\u00e9loblastome" - } - ], - "identifiedBy": [ + "authorized_access_point": "Roman danois" + }, { - "type": "uri", - "value": "http://www.idref.fr/259974811", - "source": "IDREF" + "authorized_access_point": "Science-fiction danoise" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb180248643", - "source": "BNF" - } - ], - "classification": [ + "authorized_access_point": "Sermons danois" + }, { - "name": "Sciences m\u00e9dicales et param\u00e9dicales", - "type": "bf:ClassificationDdc", - "classificationPortion": "610" + "authorized_access_point": "Th\u00e9\u00e2tre (genre litt\u00e9raire) danois" } ], - "variant_access_point": [ - "Adamantinome", - "Adamantoblastome", - "Am\u00e9lome" - ], - "authorized_access_point": "Am\u00e9loblastome" + "md5": "b29dcfb0e2aa890d53b2c9a348440a53" }, { - "md5": "323ff5cf4b178270d43b26520c321fbf", - "pid": "259995118", - "note": [ + "type": "bf:Topic", + "authorized_access_point": "Roman am\u00e9ricain", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "label": [ - "Syncopes vasopl\u00e9giques et l\u00e9sion du sympathique cervical / T. Plagnieux, 2000 [th\u00e8se]", - "Infarctus du myocarde chez un transplant\u00e9 cardiaque / G. Drobinski, R. Dorent [in] La Lettre du cardiologue, 1999, 320", - "La migraine : connaissances descriptives, traitements et pr\u00e9vention, 1998", - "Dict. de m\u00e9decine Flammarion, 2008 : tyramine (\u00e9preuve \u00e0 la)" - ], - "noteType": "dataSource" + "type": "bf:ClassificationDdc", + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" } ], - "type": "bf:Topic", - "broader": [ + "closeMatch": [ + { + "authorized_access_point": "American fiction", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85004317", + "source": "LCSH" + } + ] + }, { - "authorized_access_point": "Diagnostic biologique" + "authorized_access_point": "Roman am\u00e9ricain", + "source": "RVMLaval" } ], - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/02787642X", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/259995118", + "value": "http://www.idref.fr/02787642X", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18021099t", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11982432q", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Sciences m\u00e9dicales et param\u00e9dicales", - "type": "bf:ClassificationDdc", - "classificationPortion": "610" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11982432" } ], - "variant_access_point": [ - "\u00c9preuve \u00e0 la tyramine", - "Tyramine, \u00c9preuve \u00e0 la", - "Tyramine, Test \u00e0 la" - ], - "authorized_access_point": "Test \u00e0 la tyramine" - }, - { - "md5": "568fba0183f4e9b2d9aea72e1dd1e06e", - "pid": "261107909", "note": [ { + "noteType": "general", "label": [ - "Naval Group promet un drone sous-marin dans quatre ans / A. Bauer [in] les Echos, 8 oct. 2021 - https://www.lesechos.fr (2022-07-11)", - "Ligue de la mer : Drone sous marin : les 5 meilleurs mod\u00e8les en 2022 - https://liguedelamer.com (2022-07-11)", - "Poseidon oceanic multipurpose system : russia's nuclear strike undersea drone / H. Harkins, 2019" - ], - "noteType": "dataSource" + "Sous cette vedette, on trouve les romans am\u00e9ricains en langue anglaise. Les romans non anglophones produits aux \u00c9tats-Unis se trouvent sous des vedettes telles que : Roman am\u00e9ricain de langue fran\u00e7aise ; Roman mexicain-am\u00e9ricain" + ] } ], - "type": "bf:Topic", - "broader": [ + "pid": "02787642X", + "related": [ { - "authorized_access_point": "Drones" + "authorized_access_point": "Romanciers am\u00e9ricains" } ], - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "narrower": [ { - "type": "uri", - "value": "http://www.idref.fr/261107909", - "source": "IDREF" + "authorized_access_point": "Politique-fiction am\u00e9ricaine" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb180243861", - "source": "BNF" - } - ], - "classification": [ + "authorized_access_point": "Roman am\u00e9ricain - Auteurs d'origine mexicaine" + }, { - "name": "Art et science militaires", - "type": "bf:ClassificationDdc", - "classificationPortion": "355" + "authorized_access_point": "Roman am\u00e9ricain - Auteurs indiens d'Am\u00e9rique" }, { - "name": "Sciences appliqu\u00e9es", - "type": "bf:ClassificationDdc", - "classificationPortion": "600" - } - ], - "variant_access_point": [ - "Undersea drone", - "Underwater drone" - ], - "authorized_access_point": "Drones sous-marins" - }, - { - "md5": "e42955314869496c985b6f94bf2d9546", - "pid": "261196715", - "note": [ + "authorized_access_point": "Roman am\u00e9ricain - Auteurs juifs" + }, { - "label": [ - "Wikip\u00e9dia - https://en.wikipedia.org (2022-07-11)", - "Rules and regulations of the Magellanic Premium / American Philosophical Society, nc", - "The Magellanic Premium of the American Philosophical Society - https://www.amphilsoc.org (2022-07-11)" - ], - "noteType": "dataSource" + "authorized_access_point": "Roman am\u00e9ricain - Auteurs noirs am\u00e9ricains" }, { - "label": [ - "Prix cr\u00e9\u00e9 en 1786 gr\u00e2ce \u00e0 une subvention de Jean-Hyacinthe Magellan. Il est attribu\u00e9 par l'American Philosophical Society pour des contributions majeures dans le domaine de la navigation (que ce soit par voie maritime, a\u00e9rienne ou spatiale)" - ], - "noteType": "general" - } - ], - "type": "bf:Topic", - "broader": [ + "authorized_access_point": "Roman am\u00e9ricain pour la jeunesse" + }, { - "authorized_access_point": "Prix et r\u00e9compenses" - } - ], - "related": [ + "authorized_access_point": "Roman biographique am\u00e9ricain" + }, { - "authorized_access_point": "Navigation" - } - ], - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "authorized_access_point": "Roman d'amour am\u00e9ricain" + }, { - "type": "uri", - "value": "http://www.idref.fr/261196715", - "source": "IDREF" + "authorized_access_point": "Roman d'aventures am\u00e9ricain" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18024307w", - "source": "BNF" - } - ], - "classification": [ + "authorized_access_point": "Roman d'\u00e9ducation am\u00e9ricain" + }, { - "name": "G\u00e9n\u00e9ralit\u00e9s", - "type": "bf:ClassificationDdc", - "classificationPortion": "000" + "authorized_access_point": "Roman d'espionnage am\u00e9ricain" }, { - "name": "Sciences appliqu\u00e9es", - "type": "bf:ClassificationDdc", - "classificationPortion": "600" - } - ], - "variant_access_point": [ - "Magellanic Gold Medal", - "Magellanic Prize" - ], - "authorized_access_point": "Magellanic Premium" - }, - { - "md5": "9a7f43d1805d465fb08ff9cc2cdf7d3a", - "pid": "261901532", - "type": "bf:Topic", - "broader": [ + "authorized_access_point": "Roman de la route am\u00e9ricain" + }, { - "authorized_access_point": "Guerre mondiale (1939-1945) - Mouvements de r\u00e9sistance" + "authorized_access_point": "Roman de science-fiction am\u00e9ricain" }, { - "authorized_access_point": "Gr\u00e8ce - 1941-1944 (Occupation)" - } - ], - "bnf_type": "sujet Rameau", - "closeMatch": [ + "authorized_access_point": "Roman \u00e9pistolaire am\u00e9ricain" + }, { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh2008113907", - "source": "LCSH" - }, - "authorized_access_point": "World War, 1939-1945--Underground movements--Greece" - } - ], - "identifiedBy": [ + "authorized_access_point": "Roman exp\u00e9rimental am\u00e9ricain" + }, { - "type": "uri", - "value": "http://www.idref.fr/261901532", - "source": "IDREF" + "authorized_access_point": "Roman familial am\u00e9ricain" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb178988057", - "source": "BNF" + "authorized_access_point": "Roman gothique am\u00e9ricain" + }, + { + "authorized_access_point": "Roman historique am\u00e9ricain" + }, + { + "authorized_access_point": "Roman pastoral am\u00e9ricain" + }, + { + "authorized_access_point": "Roman picaresque am\u00e9ricain" + }, + { + "authorized_access_point": "Roman policier am\u00e9ricain" + }, + { + "authorized_access_point": "Roman populaire am\u00e9ricain" + }, + { + "authorized_access_point": "Roman r\u00e9gionaliste am\u00e9ricain" + }, + { + "authorized_access_point": "Roman religieux am\u00e9ricain" + }, + { + "authorized_access_point": "Roman satirique am\u00e9ricain" + }, + { + "authorized_access_point": "Roman sentimental am\u00e9ricain" + }, + { + "authorized_access_point": "Westerns (litt\u00e9rature)" } ], - "classification": [ + "broader": [ { - "name": "Sciences politiques", - "type": "bf:ClassificationDdc", - "classificationPortion": "320" + "authorized_access_point": "Litt\u00e9rature am\u00e9ricaine" }, { - "name": "Histoire m\u00e9di\u00e9vale, moderne et contemporaine (sauf la France)", - "type": "bf:ClassificationDdc", - "classificationPortion": "940" + "authorized_access_point": "Roman anglophone" } ], - "authorized_access_point": "Guerre mondiale (1939-1945) - Mouvements de r\u00e9sistance - Gr\u00e8ce" + "md5": "849f5676b55827697b118be0b5ca4d1c" }, { - "md5": "4510d28fdc9fec8367a3bd4bb6f5aa6e", - "pid": "262111012", "type": "bf:Topic", - "broader": [ - { - "authorized_access_point": "Po\u00e9sie italienne" - } - ], - "related": [ + "authorized_access_point": "Roman n\u00e9erlandais", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "authorized_access_point": "\u00c9pop\u00e9es italiennes" + "type": "bf:ClassificationDdc", + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" } ], - "bnf_type": "genre/forme Rameau", "closeMatch": [ { + "authorized_access_point": "Roman n\u00e9erlandais", + "source": "RVMLaval" + }, + { + "authorized_access_point": "Dutch fiction", "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh99010470", - "source": "LCSH" - }, - "authorized_access_point": "Narrative poetry, Italian" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85040103", + "source": "LCSH" + } + ] } ], + "identifier": "http://www.idref.fr/028374878", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/262111012", + "value": "http://www.idref.fr/028374878", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18003960b", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12022290p", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12022290" } ], - "authorized_access_point": "Po\u00e9sie narrative italienne" - }, - { - "md5": "fa3d70e0aa75a8179143a0083ab01f44", - "pid": "262111020", - "type": "bf:Topic", - "broader": [ + "pid": "028374878", + "narrower": [ { - "authorized_access_point": "Nouvelles espagnoles" - } - ], - "bnf_type": "genre/forme Rameau", - "identifiedBy": [ + "authorized_access_point": "R\u00e9cits de mer n\u00e9erlandais" + }, { - "type": "uri", - "value": "http://www.idref.fr/262111020", - "source": "IDREF" + "authorized_access_point": "Roman biographique n\u00e9erlandais" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18003978d", - "source": "BNF" + "authorized_access_point": "Roman courtois n\u00e9erlandais" + }, + { + "authorized_access_point": "Roman d'\u00e9ducation n\u00e9erlandais" + }, + { + "authorized_access_point": "Roman historique n\u00e9erlandais" + }, + { + "authorized_access_point": "Roman policier n\u00e9erlandais" } ], - "classification": [ + "broader": [ { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "authorized_access_point": "Litt\u00e9rature n\u00e9erlandaise" } ], - "variant_access_point": [ - "Minifictions espagnoles" - ], - "authorized_access_point": "Micronouvelles espagnoles" + "md5": "f4202fea2bf19d6cef98861c86358168" }, { - "md5": "5772a7ec2d6923ef0e154cd43e416940", - "pid": "262111039", "type": "bf:Topic", + "authorized_access_point": "Roman mexicain", "bnf_type": "genre/forme Rameau", - "identifiedBy": [ - { - "type": "uri", - "value": "http://www.idref.fr/262111039", - "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18006555c", - "source": "BNF" - } - ], "classification": [ { - "name": "Musique", "type": "bf:ClassificationDdc", - "classificationPortion": "780" + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" } ], - "authorized_access_point": "Choeurs profanes (voix d'hommes, 5 voix) acc. de piano" - }, - { - "md5": "8d8edb307ff4d8719cb20763863dba93", - "pid": "262111071", - "type": "bf:Topic", - "bnf_type": "genre/forme Rameau", "closeMatch": [ { + "authorized_access_point": "Mexican fiction", "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh88005277", - "source": "LCSH" - }, - "authorized_access_point": "Variations (Cello with string ensemble)" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85084515", + "source": "LCSH" + } + ] }, { - "source": "RVMLaval", - "authorized_access_point": "Variations (Violoncelle et ensemble \u00e0 cordes)" + "authorized_access_point": "Roman mexicain", + "source": "RVMLaval" } ], + "identifier": "http://www.idref.fr/028932358", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/262111071", + "value": "http://www.idref.fr/028932358", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18008046h", + "value": "http://catalogue.bnf.fr/ark:/12148/cb120665533", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12066553" } ], - "classification": [ + "pid": "028932358", + "related": [ { - "name": "Musique", - "type": "bf:ClassificationDdc", - "classificationPortion": "780" + "authorized_access_point": "Romanciers mexicains" } ], - "authorized_access_point": "Variations (violoncelle et ensemble \u00e0 cordes)" - }, - { - "md5": "934f5a1c5cbf0279cf3884632e489222", - "pid": "26211108X", - "type": "bf:Topic", - "bnf_type": "genre/forme Rameau", - "identifiedBy": [ + "narrower": [ { - "type": "uri", - "value": "http://www.idref.fr/26211108X", - "source": "IDREF" + "authorized_access_point": "Roman-photo mexicain" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb180080486", - "source": "BNF" + "authorized_access_point": "Roman historique mexicain" + }, + { + "authorized_access_point": "Roman picaresque mexicain" + }, + { + "authorized_access_point": "Roman policier mexicain" + }, + { + "authorized_access_point": "Roman social mexicain" } ], - "classification": [ + "broader": [ { - "name": "Musique", - "type": "bf:ClassificationDdc", - "classificationPortion": "780" + "authorized_access_point": "Litt\u00e9rature mexicaine" } ], - "authorized_access_point": "Variations (violons (2), alto, violoncelles (2))" + "md5": "97875b12dbb672370893fc4f1b993d3b" }, { - "md5": "9ca0ee125bb6d7a4e06ccd6326ef9e5f", - "pid": "262111098", - "note": [ - { - "label": [ - "\u00c9l\u00e9ments pour une d\u00e9finition des s\u00e9ries cartographiques / J.-L. Arnaud [in] Documentation et biblioth\u00e8ques, 2015, 61-4", - "S\u00e9ries cartographiques et g\u00e9or\u00e9f\u00e9rencement : nouveau contexte, nouveaux enjeux / J.-L. Arnaud [in] e-Perimetron, 2015, 10, 4", - "Catalogues et ressources du d\u00e9partement des Cartes et plans - https://bnf.fr (2022-04-13)" - ], - "noteType": "dataSource" - }, + "type": "bf:Topic", + "authorized_access_point": "Roman gallois", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "label": [ - "Cartes dont la publication ob\u00e9it \u00e0 une logique s\u00e9rielle, l'ensemble d'une s\u00e9rie formant un tout coh\u00e9rent" - ], - "noteType": "general" + "type": "bf:ClassificationDdc", + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" } ], - "type": "bf:Topic", - "broader": [ + "closeMatch": [ + { + "authorized_access_point": "Welsh fiction", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85146067", + "source": "LCSH" + } + ] + }, { - "authorized_access_point": "Cartes" + "authorized_access_point": "Roman gallois", + "source": "RVMLaval" } ], - "bnf_type": "genre/forme Rameau", + "identifier": "http://www.idref.fr/030120640", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/262111098", + "value": "http://www.idref.fr/030120640", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18008626j", + "value": "http://catalogue.bnf.fr/ark:/12148/cb121600198", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12160019" } ], - "classification": [ + "pid": "030120640", + "narrower": [ { - "name": "G\u00e9ographie, tourisme (guides) et voyages", - "type": "bf:ClassificationDdc", - "classificationPortion": "910" + "authorized_access_point": "Roman autobiographique gallois" + }, + { + "authorized_access_point": "Roman historique gallois" + }, + { + "authorized_access_point": "Roman policier gallois" } ], - "variant_access_point": [ - "S\u00e9ries de cartes" - ], - "authorized_access_point": "S\u00e9ries cartographiques" - }, - { - "md5": "5832609e6dc46e7c565999c3dc21cec2", - "pid": "262125927", - "note": [ + "broader": [ { - "label": [ - "Grand Larousse universel", - "Encycl. universalis - http://www.universalis-edu.com (2022-04-22)", - "Dict. des religions / P. Poupard, 1993 (art. : F\u00eates hindoues)", - "Hist. des religions. II / H.-C. Puech, 1972" - ], - "noteType": "dataSource" + "authorized_access_point": "Litt\u00e9rature galloise" } ], + "md5": "c9182cff906e2c8eb3a773fea8da7c7b" + }, + { "type": "bf:Topic", - "broader": [ + "authorized_access_point": "Litt\u00e9rature moyen-orientale", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "authorized_access_point": "F\u00eates religieuses - Hindouisme" + "type": "bf:ClassificationDdc", + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" } ], - "bnf_type": "sujet Rameau", "closeMatch": [ { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh86002490", - "source": "LCSH" - }, - "authorized_access_point": "Holi (Hindu festival)" + "authorized_access_point": "Litt\u00e9rature moyen-orientale", + "source": "RVMLaval" }, { - "source": "RVMLaval", - "authorized_access_point": "Hol\u012b" + "authorized_access_point": "Middle Eastern literature", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85090516", + "source": "LCSH" + } + ] } ], + "identifier": "http://www.idref.fr/03136795X", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/262125927", + "value": "http://www.idref.fr/03136795X", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18010303b", + "value": "http://catalogue.bnf.fr/ark:/12148/cb122596537", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12259653" } ], - "classification": [ + "pid": "03136795X", + "related": [ { - "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)", - "type": "bf:ClassificationDdc", - "classificationPortion": "200" + "authorized_access_point": "Litt\u00e9rature compar\u00e9e - Irlandaise et moyen-orientale" + }, + { + "authorized_access_point": "Litt\u00e9rature compar\u00e9e - Grecque et moyen-orientale" + }, + { + "authorized_access_point": "Philologie moyen-orientale" + } + ], + "narrower": [ + { + "authorized_access_point": "Autobiographie moyen-orientale" + }, + { + "authorized_access_point": "Litt\u00e9rature s\u00e9mitique" }, { - "type": "bf:ClassificationDdc", - "classificationPortion": "391" + "authorized_access_point": "Po\u00e9sie moyen-orientale" } ], "variant_access_point": [ - "F\u00eate des couleurs (hindouisme)", - "Ph\u00e2lgunotsava", - "Vasantotsava" + "Litt\u00e9rature proche-orientale" ], - "authorized_access_point": "Holi" + "md5": "3dd0e923fb2cda629c479c09c10124a5" }, { - "md5": "b412e5ac6c74cec12ab0619c71d8d3a2", - "pid": "262413817", - "note": [ + "type": "bf:Topic", + "authorized_access_point": "Th\u00e9\u00e2tre (genre litt\u00e9raire) belge de langue fran\u00e7aise", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "label": [ - "Biographisch-Bibliographisches Kirchenlexikon (art. : Abel, Karl August von) : Kniebeugungsstreit vom 14.8.1838 [bis] 12.12.1845 - https://www.bbkl.de (2022-07-21)", - "\u00dcber Protantismus und Kniebegeugung in Bayern / F. Thiersch, 1844", - "Zweites offenes Bedenken, die Kniebeugungs-Frage, insbesondere die neueste Entschliessung vom 3. November 1844 betreffend : mit zwei Beilagen / F. F. K. Graf von Giech, 1841", - "Haus der Bayerischen Geschichte (art. K\u00f6nigsreich Bayern 1806-1918 : Kniebeugeerlass) - https://www.hdbg.eu (2022-04-29)" - ], - "noteType": "dataSource" + "type": "bf:ClassificationDdc", + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" } ], - "type": "bf:Topic", - "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "authorized_access_point": "Belgian drama (French)", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85051793", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/033293074", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/262413817", + "value": "http://www.idref.fr/033293074", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18010802c", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12417356g", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12417356" } ], - "classification": [ + "pid": "033293074", + "narrower": [ { - "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)", - "type": "bf:ClassificationDdc", - "classificationPortion": "200" + "authorized_access_point": "Farces belges de langue fran\u00e7aise" + }, + { + "authorized_access_point": "Vaudevilles belges de langue fran\u00e7aise" + } + ], + "broader": [ + { + "authorized_access_point": "Litt\u00e9rature belge de langue fran\u00e7aise" + }, + { + "authorized_access_point": "Th\u00e9\u00e2tre (genre litt\u00e9raire) francophone" } ], "variant_access_point": [ - "der Kniebeugungeerlass", - "die Frage der Kniebeugung der Protestanten", - "die Kniebeugungsstreit", - "Question de la g\u00e9nuflexion" + "Th\u00e9\u00e2tre (genre litt\u00e9raire) francophone belge", + "Th\u00e9\u00e2tre belge de langue fran\u00e7aise" ], - "authorized_access_point": "die Kniebeugungsfrage (1838-1845)" + "md5": "853e0aeeaf17261786c49284018e076c" }, { - "md5": "bb88efed39ec66d2e8ea8e621a4991ad", - "pid": "262414023", - "note": [ - { - "label": [ - "Le soufisme \u00e0 l'\u00e9poque ottomane, XVI-XVIIIe si\u00e8cle / R. Chih, C. Mayeur-Jaouen, 2010", - "Dict. historique de l'Islam / J. et D. Sourdel, 2004 (art.: Suhrwardiya) : Shatt\u00e2riya", - "Encycl. of Islam, 1998 : S\u0332h\u0332a\u1e6d\u1e6d\u0101r\u012bya", - "The Oxford dict. of Islam / J. L. Esposito, 2003 : Shattari Tariqah", - "Les voies d'Allah / A. Popovic, G. Veinstein, 1996 : Chatt\u00e2riyya, Chatt\u00e2r\u00ee" - ], - "noteType": "dataSource" - } - ], "type": "bf:Topic", - "broader": [ - { - "authorized_access_point": "Confr\u00e9ries musulmanes" - }, + "authorized_access_point": "Litt\u00e9rature am\u00e9ricaine de langue italienne", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "authorized_access_point": "Soufisme" + "type": "bf:ClassificationDdc", + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" } ], - "bnf_type": "sujet Rameau", "closeMatch": [ { + "authorized_access_point": "Italian American literature", "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "https://id.loc.gov/authorities/subjects/sh2001009476", - "source": "LCSH" - }, - "authorized_access_point": "Sha\u1e6d\u1e6d\u0101r\u012byyah" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85068775", + "source": "LCSH" + } + ] } ], + "identifier": "http://www.idref.fr/050174495", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/262414023", + "value": "http://www.idref.fr/050174495", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18011878v", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13340210s", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)", - "type": "bf:ClassificationDdc", - "classificationPortion": "200" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13340210" } ], - "variant_access_point": [ - "Shatt\u00e2riyya", - "Chatt\u00e2riyya", - "Chatt\u00e2r\u00ee", - "Shattari tariqah" - ], - "authorized_access_point": "Sha\u1e6d\u1e6d\u0101r\u012byya" - }, - { - "md5": "1b3cd2ce060dec04cccddea6143aafcd", - "pid": "262414082", "note": [ { + "noteType": "general", "label": [ - "Encycl. universalis (art. : Juda\u00efsme, les pratiques)", - "Dict. encyclop\u00e9dique du juda\u00efsme, 1993 : kapparot", - "Encycl. Judaica, 2007", - "Les f\u00eates juives / Y. Leibowitz, 2008 : coutumes des kapparoth", - "Dict. du juda\u00efsme / A. Unterman, 1997 : coutume des kapparoth (sg : kapporos)", - "Le juda\u00efsme dans la vie quotidienne / E. Gugenheim, 1992 : usage des kapparoth", - "Dict. de civilisation juive / J.-C. Attias, E. Benbassa, 1997 (art. : Solennit\u00e9s) : c\u00e9r\u00e9monie des kaparot", - "The encycl. of Judaism / J. Neusner, A. J. Avery-Peck, W. S. Green, 2003 (art. : Superstitions in Judaism) : Kapparah, sg. (yiddish : kappore shlagn)", - "Oxford dict. of the Jewish religion : custom of kapparot" - ], - "noteType": "dataSource" - } - ], - "type": "bf:Topic", - "broader": [ - { - "authorized_access_point": "Juda\u00efsme - Rites et c\u00e9r\u00e9monies" + "Sous cette vedette, on trouve la litt\u00e9rature italophone des \u00c9tats-Unis. La litt\u00e9rature am\u00e9ricaine de langue anglaise par des auteurs d'origine italienne se trouve sous la vedette-mati\u00e8re Litt\u00e9rature am\u00e9ricaine -- Auteurs d'origine italienne" + ] } ], + "pid": "050174495", "related": [ { - "authorized_access_point": "Yom Kippour" + "authorized_access_point": "Litt\u00e9rature am\u00e9ricaine" } ], - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "narrower": [ { - "type": "uri", - "value": "http://www.idref.fr/262414082", - "source": "IDREF" + "authorized_access_point": "Micronouvelles am\u00e9ricaines de langue italienne" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb180121874", - "source": "BNF" + "authorized_access_point": "Po\u00e9sie am\u00e9ricaine de langue italienne" + }, + { + "authorized_access_point": "Th\u00e9\u00e2tre (genre litt\u00e9raire) am\u00e9ricain de langue italienne" } ], - "classification": [ - { - "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)", - "type": "bf:ClassificationDdc", - "classificationPortion": "200" - }, + "broader": [ { - "type": "bf:ClassificationDdc", - "classificationPortion": "391" + "authorized_access_point": "Litt\u00e9rature - \u00c9tats-Unis" } ], "variant_access_point": [ - "Kaparot", - "Kapparah", - "Kappore shlagn", - "C\u00e9r\u00e9monie des kapparoth", - "Coutume des kapparoth", - "Expiations", - "Kapparoth, C\u00e9r\u00e9monie des", - "Kapparoth, Coutume des" + "Litt\u00e9rature italo-am\u00e9ricaine" ], - "authorized_access_point": "Kapparoth" + "md5": "4d86e685f4d0e8a33e7c5e21e32291cc" }, { - "md5": "b146d4afef3127d6ad18adc50a195921", - "pid": "262414112", - "note": [ + "type": "bf:Topic", + "authorized_access_point": "Roman burkinab\u00e9 de langue fran\u00e7aise", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "label": [ - "Encycl. universalis (art. : Homme, fils de l') - www.universalis-edu.com (2022-05-05)", - "Dict. J\u00e9sus / \u00c9cole biblique et arch\u00e9ologique fran\u00e7aise de J\u00e9rusalem, 2021 (art. : Fils de l'homme ; Fils d'homme ; Ho huios tou anthr\u00f4pou ; Ben \u00e3d\u00e3m)", - "J\u00e9sus, l'encycl., 2017", - "Sur les pas du Fils de l'homme : la th\u00e9ologie selon Saint Marc / A. Begasse de Dhaem [in] Nouvelle revue th\u00e9ologique, 2011, 133 - https://www.cairn.info (2022-05-11)" - ], - "noteType": "dataSource" + "type": "bf:ClassificationDdc", + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" } ], - "type": "bf:Topic", - "bnf_type": "sujet Rameau", "closeMatch": [ { + "authorized_access_point": "Burkinabe fiction (French)", "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "https://id.loc.gov/authorities/subjects/sh85124809", - "source": "LCSH" - }, - "authorized_access_point": "Son of Man" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh96004053", + "source": "LCSH" + } + ] }, { - "source": "RVMLaval", - "authorized_access_point": "Fils de l'homme" + "authorized_access_point": "Roman burkinab\u00e9 (fran\u00e7ais)", + "source": "RVMLaval" } ], + "identifier": "http://www.idref.fr/06008989X", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/262414112", + "value": "http://www.idref.fr/06008989X", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb180125788", + "value": "http://catalogue.bnf.fr/ark:/12148/cb150866029", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)", - "type": "bf:ClassificationDdc", - "classificationPortion": "200" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF15086602" } ], - "variant_access_point": [ - "Fils d'homme", - "Homme, Fils de l'", - "Homme, Fils d'", - "Huios tou anthropou", - "Ben \u00e3d\u00e3m", - "Bar enash", - "Bar nash" - ], - "authorized_access_point": "Fils de l'homme" - }, - { - "md5": "8f484298c0bed27ee348b6fd325375a2", - "pid": "262668858", - "note": [ + "pid": "06008989X", + "narrower": [ { - "label": [ - "Encycl. de l'Islam - https://referenceworks-brillonline-com (2022-05-27)", - "Dict. de l'Empire ottoman / F. Georgeon, N. Vatin, G. Veinstein, 2015", - "Les voies d'Allah : les ordres mystiques dans l'Islam des origines \u00e0 aujourd'hui / A. Popovic, G. Veinstein, 1996", - "Le soufisme \u00e0 l'\u00e9poque ottomane / R. Chih, C. Mayeur-Jaouen, 2010" - ], - "noteType": "dataSource" + "authorized_access_point": "Roman biographique burkinab\u00e9 de langue fran\u00e7aise" }, { - "label": [ - "Entre le XVe et le XIXe si\u00e8cle, trois confr\u00e9ries soufies sans lien organique s'inspir\u00e8rent du mouvement mystique \"malamatiyya\" constitu\u00e9 au IXe s. qui consistait \u00e0 accomplir d\u00e9lib\u00e9r\u00e9ment des actes contraires \u00e0 la loi pour s'attirer l'opprobre et vivre ainsi dans l'humilit\u00e9 selon l'\u00e9p\u00eetre d'al-Sulami" - ], - "noteType": "general" + "authorized_access_point": "Roman burkinab\u00e9 de langue fran\u00e7aise pour la jeunesse" } ], - "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Mystique - Islam" + "authorized_access_point": "Litt\u00e9rature burkinab\u00e9 de langue fran\u00e7aise" }, { - "authorized_access_point": "Soufisme" + "authorized_access_point": "Roman francophone" } ], - "related": [ + "variant_access_point": [ + "Roman francophone burkinab\u00e9" + ], + "md5": "2dd34ea4f58a7185f588210c2995216a" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Nouvelles belges de langue fran\u00e7aise", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "authorized_access_point": "Confr\u00e9ries musulmanes" + "type": "bf:ClassificationDdc", + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" } ], - "bnf_type": "sujet Rameau", "closeMatch": [ { + "authorized_access_point": "Short stories, Belgian (French)", "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "https://id.loc.gov/authorities/subjects/sh95003301", - "source": "LCSH" - }, - "authorized_access_point": "Mal\u0101mat\u012byah" - }, - { - "source": "GND", - "authorized_access_point": "Mal\u0101mat\u012bya" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh97001385", + "source": "LCSH" + } + ] } ], + "identifier": "http://www.idref.fr/061604496", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/262668858", + "value": "http://www.idref.fr/061604496", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18014674n", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13769729v", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13769729" } ], - "classification": [ + "pid": "061604496", + "narrower": [ { - "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)", - "type": "bf:ClassificationDdc", - "classificationPortion": "200" + "authorized_access_point": "Nouvelles fantastiques belges de langue fran\u00e7aise" + }, + { + "authorized_access_point": "Nouvelles polici\u00e8res belges de langue fran\u00e7aise" + }, + { + "authorized_access_point": "Thriller (nouvelles) belge de langue fran\u00e7aise" + } + ], + "broader": [ + { + "authorized_access_point": "Litt\u00e9rature belge de langue fran\u00e7aise" + }, + { + "authorized_access_point": "Nouvelles francophones" } ], "variant_access_point": [ - "Hamzavis", - "Hamzawiye", - "Malamati", - "Malamatis", - "Mal\u00e2mi", - "Mal\u00e2mis", - "Mal\u0101miyya", - "Mal\u0101miyya-N\u016briyya", - "Mel\u00e2mi", - "Mel\u00e2m\u00ee-Hamzev\u00ee", - "Mel\u00e2milik", - "Mel\u00e2mis", - "Mel\u00e2mis-Bayr\u00e2mis", - "Mel\u00e2miye-Hamzaviye", - "Mel\u0101miyya", - "Mel\u00e2miyya-N\u00fbriyya", - "Mel\u00e2miyye-Bayr\u00e2miye", - "Mel\u00e2miyye-Nuriye" + "Nouvelles francophones belges" ], - "authorized_access_point": "Mal\u0101matiyya" + "md5": "99597307272d6063fc888dda66fec6de" }, { - "md5": "bfbaf42107d3a32b56b25487f6c339a4", - "pid": "262669161", "type": "bf:Topic", - "broader": [ + "authorized_access_point": "M\u00e9moires (genre litt\u00e9raire) portugais", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "authorized_access_point": "Trios ([distributions instrumentales])" + "type": "bf:ClassificationDdc", + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" } ], - "bnf_type": "genre/forme Rameau", + "identifier": "http://www.idref.fr/178480231", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/262669161", + "value": "http://www.idref.fr/178480231", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb180158853", + "value": "http://catalogue.bnf.fr/ark:/12148/cb16764890d", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16764890" } ], - "classification": [ + "pid": "178480231", + "related": [ { - "name": "Musique", - "type": "bf:ClassificationDdc", - "classificationPortion": "780" + "authorized_access_point": "Autobiographie portugaise" + } + ], + "broader": [ + { + "authorized_access_point": "Litt\u00e9rature portugaise" } ], - "authorized_access_point": "Trios (accord\u00e9ons (2), orgue)" + "variant_access_point": [ + "M\u00e9moires portugais" + ], + "md5": "5e0f33629fc07c53015921786eda9ebe" }, { - "md5": "4b489e1ef0b09addff298f6e489e864e", - "pid": "262669188", "type": "bf:Topic", - "broader": [ + "authorized_access_point": "Roman autobiographique arabe", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "authorized_access_point": "Quintettes \u00e0 vent ([distributions instrumentales])" + "type": "bf:ClassificationDdc", + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" } ], - "bnf_type": "genre/forme Rameau", + "closeMatch": [ + { + "authorized_access_point": "Autobiographical fiction, Arabic", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh95009760", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/238529495", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/262669188", + "value": "http://www.idref.fr/238529495", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb180160289", + "value": "http://catalogue.bnf.fr/ark:/12148/cb178386926", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17838692" } ], - "classification": [ + "note": [ { - "name": "Musique", - "type": "bf:ClassificationDdc", - "classificationPortion": "780" + "noteType": "general", + "label": [ + "Sous cette vedette, on trouve les oeuvres litt\u00e9raires elles-m\u00eames. Les documents sur ces oeuvres se trouvent sous cette m\u00eame vedette suivie de Histoire et critique ou de toute autre subdivision de sujet ou de forme appropri\u00e9e" + ] + }, + { + "noteType": "seeReference", + "label": [ + "Voir aussi aux romans autobiographiques des diff\u00e9rents pays arabes, par ex. : Roman autobiographique alg\u00e9rien" + ] + } + ], + "pid": "238529495", + "broader": [ + { + "authorized_access_point": "Autobiographie arabe" } ], - "authorized_access_point": "Quintettes \u00e0 vent (clarinette, hautbois, piccolo, saxophone, trompette)" + "md5": "17424388ebd2bf8ed60484c32f97e0d0" }, { - "md5": "fd8d3f05cb98a22548f370e081834f32", - "pid": "26266920X", "type": "bf:Topic", - "broader": [ + "authorized_access_point": "M\u00e9lodies estoniennes", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "authorized_access_point": "Quatuors ([distributions instrumentales])" + "type": "bf:ClassificationDdc", + "classificationPortion": "780", + "name": "Musique" } ], - "bnf_type": "genre/forme Rameau", + "closeMatch": [ + { + "authorized_access_point": "Songs, Finnish", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "https://authorities.loc", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/263906442", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/26266920X", + "value": "http://www.idref.fr/263906442", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18016075t", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18026157c", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18026157" } ], - "classification": [ + "pid": "263906442", + "related": [ { - "name": "Musique", - "type": "bf:ClassificationDdc", - "classificationPortion": "780" + "authorized_access_point": "Estonien (langue)" + }, + { + "authorized_access_point": "Chansons estoniennes" + }, + { + "authorized_access_point": "Po\u00e9sie estonienne" } ], - "authorized_access_point": "Quatuors (piano, clarinette, trompette, alto)" + "md5": "0fe0ccf0ba8f157789390775b5544808" }, { - "md5": "f2789c20626468ba1cdf1646afea49df", - "pid": "262669234", "type": "bf:Topic", - "broader": [ + "authorized_access_point": "Roman policier canadien de langue anglaise", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "authorized_access_point": "Antiquit\u00e9s lydiennes" + "type": "bf:ClassificationDdc", + "classificationPortion": "360", + "name": "Probl\u00e8mes et services sociaux" }, { - "authorized_access_point": "C\u00e9ramique antique" + "type": "bf:ClassificationDdc", + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" } ], - "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "authorized_access_point": "Detective and mystery stories, Canadian", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85037272", + "source": "LCSH" + } + ] + }, + { + "authorized_access_point": "Roman policier canadien-anglais", + "source": "RVMLaval" + } + ], + "identifier": "http://www.idref.fr/264225260", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/262669234", + "value": "http://www.idref.fr/264225260", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18016123v", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18024108p", "source": "BNF" - } - ], - "classification": [ - { - "name": "Ethnologie, anthropologie, folklore", - "type": "bf:ClassificationDdc", - "classificationPortion": "390" }, { - "name": "Arts plastiques, sculpture", - "type": "bf:ClassificationDdc", - "classificationPortion": "730" - }, + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18024108" + } + ], + "pid": "264225260", + "broader": [ { - "name": "Dessin, arts d\u00e9coratifs, artisanat d'art", - "type": "bf:ClassificationDdc", - "classificationPortion": "740" + "authorized_access_point": "Roman canadien de langue anglaise" }, { - "name": "Pr\u00e9histoire et histoire ancienne", - "type": "bf:ClassificationDdc", - "classificationPortion": "930" + "authorized_access_point": "Roman policier canadien" } ], "variant_access_point": [ - "Lydiens - C\u00e9ramique" + "Roman policier canadien-anglais" ], - "authorized_access_point": "C\u00e9ramique lydienne" + "md5": "351b32a75489d2cf03e7a10224f1f30a" }, { - "md5": "8653b5c19f5b163ed84b83f0db22c8b9", - "pid": "262669242", "type": "bf:Topic", - "broader": [ + "authorized_access_point": "Micronouvelles am\u00e9ricaines de langue italienne", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "authorized_access_point": "Architecture antique" + "type": "bf:ClassificationDdc", + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" } ], - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/276037685", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/262669242", + "value": "http://www.idref.fr/276037685", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18016132t", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181291307", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18129130" } ], - "classification": [ + "note": [ { - "name": "Architecture", - "type": "bf:ClassificationDdc", - "classificationPortion": "720" - }, + "noteType": "general", + "label": [ + "Sous cette vedette, on trouve les micronouvelles am\u00e9ricaines italophones des \u00c9tats-Unis" + ] + } + ], + "pid": "276037685", + "broader": [ { - "name": "Pr\u00e9histoire et histoire ancienne", - "type": "bf:ClassificationDdc", - "classificationPortion": "930" + "authorized_access_point": "Litt\u00e9rature am\u00e9ricaine de langue italienne" } ], "variant_access_point": [ - "Lydiens - Architecture" + "Micronouvelles italiennes - \u00c9tats-Unis", + "Micronouvelles italophones am\u00e9ricaines" ], - "authorized_access_point": "Architecture lydienne" + "md5": "2d4da267f374ceb02a8ddf26387bafdc" }, { - "md5": "433f20d62ffc7006c3ff0a23d2ec9c47", - "pid": "262669250", - "note": [ + "type": "bf:Topic", + "authorized_access_point": "Roman de guerre irlandais", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "label": [ - "Grand dict. encyclop\u00e9dique Larousse", - "Encycl. universalis (art. : Intendants) - http://www.universalis-edu.com (2022-05-23)", - "Dict. encyclop\u00e9dique d'histoire / M. Mourre, 1996", - "Les Carolingiens / C. Bonnet, C. Descatoire, 2001 (p. 102)", - "L'Europe carolingienne 714-888 / G. B\u00fchrer-Thierry, 2010 (p. 117-8)" - ], - "noteType": "dataSource" + "type": "bf:ClassificationDdc", + "classificationPortion": "355", + "name": "Art et science militaires" }, { - "label": [ - "Nom donn\u00e9 dans le royaume franc \u00e0 des inspecteurs royaux charg\u00e9s d'inspecter le gouvernement des comtes. Alors qu'ils existaient d\u00e9j\u00e0 \u00e0 l'\u00e9poque m\u00e9rovingienne, Charlemagne les organisa par le capitulaire de 802. Choisis tous les ans, ils \u00e9taient envoy\u00e9s au moins deux par deux (un comte, un \u00e9v\u00eaque) dans des r\u00e9gions d\u00e9termin\u00e9es, les missiatica. Ils \u00e9taient les repr\u00e9sentants absolus de l'empereur (justice, perception de l'imp\u00f4t, contr\u00f4le des routes et des travaux publics, entretien du domaine royal). Ils surveillaient les administrateurs et r\u00e9formaient les abus. Contrairement au comte qui n'avait re\u00e7u du roi que la d\u00e9l\u00e9gation des pouvoirs d'ex\u00e9cution (potestas), les missi \u00e9taient d\u00e9tenteurs de toute l'autorit\u00e9 royale (auctoritas). Ils transmettaient aux comtes les nouveaux capitulaires. L'institution d\u00e9g\u00e9n\u00e9ra apr\u00e8s Charlemagne et disparut au Xe si\u00e8cle" - ], - "noteType": "general" + "type": "bf:ClassificationDdc", + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "900", + "name": "Histoire et g\u00e9ographie (g\u00e9n\u00e9ralit\u00e9s)" } ], - "type": "bf:Topic", - "broader": [ - { - "authorized_access_point": "Administration locale - Personnel" - }, + "identifier": "http://www.idref.fr/278746896", + "identifiedBy": [ { - "authorized_access_point": "Droit franc" + "type": "uri", + "value": "http://www.idref.fr/278746896", + "source": "IDREF" }, { - "authorized_access_point": "Pouvoir royal" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181471843", + "source": "BNF" }, { - "authorized_access_point": "Empire carolingien" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18147184" } ], - "related": [ - { - "authorized_access_point": "Capitulaires" - }, + "pid": "278746896", + "broader": [ { - "authorized_access_point": "Comtes" - }, + "authorized_access_point": "Roman irlandais" + } + ], + "md5": "e42c0da136c2b9aa2f34ef30115a8664" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Thriller (roman) canadien de langue anglaise", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "authorized_access_point": "D\u00e9l\u00e9gation des pouvoirs (science politique)" + "type": "bf:ClassificationDdc", + "classificationPortion": "360", + "name": "Probl\u00e8mes et services sociaux" }, { - "authorized_access_point": "\u00c9v\u00eaques" + "type": "bf:ClassificationDdc", + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" } ], - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/278746918", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/262669250", + "value": "http://www.idref.fr/278746918", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb180161602", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18148067g", "source": "BNF" - } - ], - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "305" - }, - { - "name": "Droit", - "type": "bf:ClassificationDdc", - "classificationPortion": "340" }, { - "name": "Administration publique", - "type": "bf:ClassificationDdc", - "classificationPortion": "350" - }, + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18148067" + } + ], + "pid": "278746918", + "broader": [ { - "name": "Histoire m\u00e9di\u00e9vale, moderne et contemporaine (sauf la France)", - "type": "bf:ClassificationDdc", - "classificationPortion": "940" + "authorized_access_point": "Roman canadien de langue anglaise" } ], "variant_access_point": [ - "Envoy\u00e9s de l'empereur", - "Envoy\u00e9s du ma\u00eetre", - "Envoy\u00e9s du roi", - "Envoy\u00e9s du souverain", - "Missus dominicus" + "Roman \u00e0 suspense anglophone canadien", + "Roman \u00e0 suspense canadien-anglais", + "Roman \u00e0 suspense canadien de langue anglaise", + "Thriller (roman) anglophone canadien", + "Thriller (roman) canadien-anglais" ], - "authorized_access_point": "Missi dominici" + "md5": "7cba3231391b4563d2e67a88129073fb" }, { - "md5": "f1026676264a67e0b3620782a018d363", - "pid": "262805111", - "note": [ + "type": "bf:Topic", + "authorized_access_point": "Th\u00e9\u00e2tre documentaire canadien de langue fran\u00e7aise", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "label": [ - "Les prud'homies de p\u00eache \u00e0 l'\u00e9poque contemporaine (1790-1962) : la permanence d'une institution hybride en M\u00e9diterran\u00e9e fran\u00e7aise / D. Rauch, 2014", - "Plus de 200 ans de Prud'homie de p\u00eache \u00e0 Collioure / Y. de Coninck, 2020", - "Fiche d'inventaire du patrimoine culturel immat\u00e9riel en France : pratiques des prud'homies de p\u00eache en M\u00e9diterran\u00e9e - https://www.culture.gouv.fr/Media/Pratiques-des-prud-homies-de-peche-en-Mediterranee (2022-06-27)" - ], - "noteType": "dataSource" + "type": "bf:ClassificationDdc", + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" + } + ], + "identifier": "http://www.idref.fr/278746926", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/278746926", + "source": "IDREF" }, { - "label": [ - "Communaut\u00e9s de patrons p\u00eacheurs n\u00e9es en France au Moyen \u00c2ge sur les c\u00f4tes m\u00e9diterran\u00e9ennes. Elles constituent \u00e0 la fois une communaut\u00e9 professionnelle et une juridiction de p\u00eacheurs et \u0153uvrent \u00e0 la protection des espaces maritimes et la pr\u00e9servation des ressources halieutiques" - ], - "noteType": "general" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181480873", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18148087" } ], - "type": "bf:Topic", + "pid": "278746926", "broader": [ { - "authorized_access_point": "M\u00e9tiers de la mer" + "authorized_access_point": "Th\u00e9\u00e2tre (genre litt\u00e9raire) canadien de langue fran\u00e7aise" } ], - "related": [ + "variant_access_point": [ + "Th\u00e9\u00e2tre documentaire canadien-fran\u00e7ais", + "Th\u00e9\u00e2tre documentaire francophone canadien" + ], + "md5": "7c03e3fe2ea10651a73c9e1ad8593857" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Roman social mexicain", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "authorized_access_point": "P\u00eaches" + "type": "bf:ClassificationDdc", + "classificationPortion": "300", + "name": "Sciences sociales" }, { - "authorized_access_point": "Coop\u00e9ratives de p\u00eache" + "type": "bf:ClassificationDdc", + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" } ], - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/278746934", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/262805111", + "value": "http://www.idref.fr/278746934", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18021705k", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18148094c", "source": "BNF" - } - ], - "classification": [ - { - "name": "Economie", - "type": "bf:ClassificationDdc", - "classificationPortion": "330" - }, - { - "name": "Droit", - "type": "bf:ClassificationDdc", - "classificationPortion": "340" }, { - "name": "Agriculture, \u00e9levage", - "type": "bf:ClassificationDdc", - "classificationPortion": "630" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18148094" } ], - "variant_access_point": [ - "Prud'homies de p\u00eacheurs" - ], - "authorized_access_point": "Prud'homies de p\u00eache" - }, - { - "md5": "f305ea61a3bf016b57035f408d8f1616", - "pid": "262915219", - "note": [ + "pid": "278746934", + "broader": [ { - "label": [ - "Dict. de l'Acad\u00e9mie de m\u00e9decine - http://dictionnaire.academie-medecine.fr (2022-07-15)", - "Dict. illustr\u00e9 des termes de m\u00e9decine, 2012" - ], - "noteType": "dataSource" + "authorized_access_point": "Roman mexicain" } ], + "md5": "4baf0f051b5629fc07ab8ba7309235f1" + }, + { "type": "bf:Topic", - "broader": [ + "authorized_access_point": "Roman burkinab\u00e9 de langue fran\u00e7aise pour la jeunesse", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "authorized_access_point": "Technique immunoenzymatique" + "type": "bf:ClassificationDdc", + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" } ], - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/278746942", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/262915219", + "value": "http://www.idref.fr/278746942", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18025047j", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18148101t", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18148101" } ], - "classification": [ + "pid": "278746942", + "broader": [ { - "name": "Sciences de la vie", - "type": "bf:ClassificationDdc", - "classificationPortion": "570" + "authorized_access_point": "Litt\u00e9rature burkinab\u00e9 pour la jeunesse" }, { - "name": "Sciences m\u00e9dicales et param\u00e9dicales", - "type": "bf:ClassificationDdc", - "classificationPortion": "610" + "authorized_access_point": "Roman burkinab\u00e9 de langue fran\u00e7aise" } ], "variant_access_point": [ - "Immuno-capture" + "Roman francophone burkinab\u00e9 pour la jeunesse", + "Roman pour la jeunesse burkinab\u00e9 de langue fran\u00e7aise", + "Roman pour la jeunesse francophone burkinab\u00e9" ], - "authorized_access_point": "Immunocapture" + "md5": "489d7b7978d930106d1d4b9be62697f0" }, { - "md5": "0ebcff27d7419c6cf7150b5b7770544b", - "pid": "262928264", - "note": [ + "type": "bf:Topic", + "authorized_access_point": "Feel-good book cor\u00e9en", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "label": [ - "Wikipedia (portail du genre et des \u00e9tudes de genre) - https://fr.wikipedia.org (2022-05-20)", - "Non-binarit\u00e9 et transidentit\u00e9s \u00e0 l'adolescence : une revue de la litt\u00e9rature [in] Neuropsychiatrie de l'enfance et de l'adolescence, 2019, 67, 5-6 - https://www-sciencedirect-com (2022-05-20)", - "Transidentit\u00e9s et transitude / K. Espineira, M.-Y. Thomas, 2022 - https://www.cairn.info (2022-05-27)", - "Encycl. critique du genre : corps, sexualit\u00e9, rapports sociaux / J. Rennes, 2016 (art. : Bicat\u00e9gorisation)" - ], - "noteType": "dataSource" + "type": "bf:ClassificationDdc", + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" + } + ], + "identifier": "http://www.idref.fr/278746950", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/278746950", + "source": "IDREF" }, { - "label": [ - "Le concept englobe les identit\u00e9s de genre des personnes qui ne se reconnaissent ni strictement comme homme, ni strictement comme femme, r\u00e9futant ainsi la norme binaire masculin-f\u00e9minin" - ], - "noteType": "general" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181481087", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18148108" } ], - "type": "bf:Topic", + "pid": "278746950", "broader": [ { - "authorized_access_point": "Identit\u00e9 sexuelle" + "authorized_access_point": "Litt\u00e9rature cor\u00e9enne" } ], - "related": [ - { - "authorized_access_point": "\u00c9tudes sur le genre" - }, + "md5": "dcc81edbcea96096cfed8543dc7e3055" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Thriller (roman) australien", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "authorized_access_point": "Th\u00e9orie queer" + "type": "bf:ClassificationDdc", + "classificationPortion": "360", + "name": "Probl\u00e8mes et services sociaux" }, { - "authorized_access_point": "Transidentit\u00e9" + "type": "bf:ClassificationDdc", + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" } ], - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/278746977", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/262928264", + "value": "http://www.idref.fr/278746977", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb180157598", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18148301c", "source": "BNF" - } - ], - "classification": [ - { - "name": "Psychologie, psychanalyse", - "type": "bf:ClassificationDdc", - "classificationPortion": "150" }, { - "name": "Sciences sociales", - "type": "bf:ClassificationDdc", - "classificationPortion": "300" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18148301" } ], - "variant_access_point": [ - "Enby", - "Genderqueer", - "Genres non binaires", - "No-binary gender" + "pid": "278746977", + "broader": [ + { + "authorized_access_point": "Roman australien" + } ], - "authorized_access_point": "Non-binarit\u00e9" + "md5": "4085fbff15899dce8c79b409ca8f4568" }, { - "md5": "07328b2ddc0bc0af99326e01e5790ef6", - "pid": "26292837X", "type": "bf:Topic", - "broader": [ + "authorized_access_point": "Roman pr\u00e9historique fran\u00e7ais", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "authorized_access_point": "Bagatelles ([distributions instrumentales])" + "type": "bf:ClassificationDdc", + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" }, { - "authorized_access_point": "Violon et piano, Musique de" + "type": "bf:ClassificationDdc", + "classificationPortion": "930", + "name": "Pr\u00e9histoire et histoire ancienne" } ], - "bnf_type": "genre/forme Rameau", + "identifier": "http://www.idref.fr/278747027", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/26292837X", + "value": "http://www.idref.fr/278747027", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18017112f", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18148761b", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18148761" } ], - "classification": [ + "pid": "278747027", + "broader": [ { - "name": "Musique", - "type": "bf:ClassificationDdc", - "classificationPortion": "780" + "authorized_access_point": "Roman fran\u00e7ais" } ], - "authorized_access_point": "Bagatelles (violon et piano)" + "md5": "eaf0037d7fb4551840e525ef3d89141c" }, { - "md5": "3a4ac42a8a7364a9e839590034c749a4", - "pid": "262928507", - "note": [ + "type": "bf:Topic", + "authorized_access_point": "Roman familial camerounais de langue fran\u00e7aise", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "label": [ - "Cam\u00e9l\u00e9on : les filles Asperger d\u00e9boulent ! / C. Deroin, 2020" - ], - "noteType": "dataSource" + "type": "bf:ClassificationDdc", + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" } ], - "type": "bf:Topic", - "broader": [ + "identifier": "http://www.idref.fr/278747035", + "identifiedBy": [ { - "authorized_access_point": "Adolescentes" + "type": "uri", + "value": "http://www.idref.fr/278747035", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18148765q", + "source": "BNF" }, { - "authorized_access_point": "Adolescents autistes" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18148765" } ], - "related": [ + "pid": "278747035", + "broader": [ { - "authorized_access_point": "Enfants autistes" + "authorized_access_point": "Roman camerounais de langue fran\u00e7aise" } ], - "bnf_type": "sujet Rameau", - "closeMatch": [ + "variant_access_point": [ + "Roman familial francophone camerounais" + ], + "md5": "af91dd69c84d59917709b5a8e9bf03e3" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Roman de fantasy \u00e9cossais pour la jeunesse", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "https://id.loc.gov/authorities/subjects/sh92001053", - "source": "LCSH" - }, - "authorized_access_point": "Autistic youth" + "type": "bf:ClassificationDdc", + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" } ], + "identifier": "http://www.idref.fr/278747051", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/262928507", + "value": "http://www.idref.fr/278747051", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18017672p", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181487709", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18148770" } ], - "classification": [ - { - "name": "Sciences sociales", - "type": "bf:ClassificationDdc", - "classificationPortion": "300" - }, + "pid": "278747051", + "broader": [ { - "name": "Sciences m\u00e9dicales et param\u00e9dicales", - "type": "bf:ClassificationDdc", - "classificationPortion": "610" + "authorized_access_point": "Roman \u00e9cossais" } ], "variant_access_point": [ - "Adolescentes autistiques" + "Roman de fantasy \u00e9cossais pour adolescents", + "Roman de fantasy \u00e9cossais pour enfants", + "Roman de fantasy \u00e9cossais pour jeunes adultes" ], - "authorized_access_point": "Adolescentes autistes" + "md5": "d891e91d708e76319d83a043668916e3" }, { - "md5": "af6de4719283e4bfae506f9dfaaca95f", - "pid": "262928701", - "note": [ - { - "label": [ - "Alfa Romeo Spider : l'hist. compl\u00e8te : 1966-1994 / J. Lombard, 2021", - "The hist. of Alfa Romeo / S. Kingston, 2018", - "Sports cars / B. Lafontaine, 1999" - ], - "noteType": "dataSource" - } - ], "type": "bf:Topic", - "broader": [ + "authorized_access_point": "Farces belges de langue fran\u00e7aise", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "authorized_access_point": "Alfa Romeo (automobiles)" + "type": "bf:ClassificationDdc", + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" } ], - "bnf_type": "sujet Rameau", "closeMatch": [ { + "authorized_access_point": "Belgian farces (French)", "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh2013002865", - "source": "LCSH" - }, - "authorized_access_point": "Spider automobile" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh96004610", + "source": "LCSH" + } + ] + }, + { + "authorized_access_point": "Farces belges (fran\u00e7aises)", + "source": "RVMLaval" } ], + "identifier": "http://www.idref.fr/27874706X", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/262928701", + "value": "http://www.idref.fr/27874706X", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18018611q", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18148776c", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18148776" } ], - "classification": [ - { - "name": "Economie", - "type": "bf:ClassificationDdc", - "classificationPortion": "330" - }, + "pid": "27874706X", + "broader": [ { - "name": "Sciences appliqu\u00e9es", - "type": "bf:ClassificationDdc", - "classificationPortion": "600" + "authorized_access_point": "Th\u00e9\u00e2tre (genre litt\u00e9raire) belge de langue fran\u00e7aise" } ], "variant_access_point": [ - "Spider Alfa Romeo (automobile)" + "Farces francophones belges" ], - "authorized_access_point": "Alfa Romeo Spider (automobile)" + "md5": "d5c3569e41091f4a4ca66d6b79246aa3" }, { - "md5": "16504d5827c6c77c79fcca3a15b8dda3", - "pid": "26307837X", - "note": [ - { - "label": [ - "S'emploie \u00e9galement en subdivision" - ], - "noteType": "general" - } - ], "type": "bf:Topic", - "related": [ + "authorized_access_point": "Roman autobiographique alg\u00e9rien", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "authorized_access_point": "G\u00e9orgie - Histoire" + "type": "bf:ClassificationDdc", + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" } ], - "bnf_type": "genre/forme Rameau", + "identifier": "http://www.idref.fr/278747086", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/26307837X", + "value": "http://www.idref.fr/278747086", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb180223705", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18148797b", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Histoire et g\u00e9ographie (g\u00e9n\u00e9ralit\u00e9s)", - "type": "bf:ClassificationDdc", - "classificationPortion": "900" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18148797" } ], - "authorized_access_point": "R\u00e9cits personnels g\u00e9orgiens" - }, - { - "md5": "2c632ba725672dd5d6420566f10a5b6e", - "pid": "263492680", "note": [ { + "noteType": "general", "label": [ - "Minist\u00e8re de la culture - https://www.culture.gouv.fr (2000-06-13)", - "L\u00e9gifrance - https://www.legifrance.gouv.fr (2022-06-13)", - "ONISEP : Dipl\u00f4me d'\u00e9tudes chor\u00e9graphiques - https://www.onisep.fr (2022-06-13)" - ], - "noteType": "dataSource" + "Sous cette vedette, on trouve les romans autobiographiques alg\u00e9riens de langue arabe ainsi que les romans autobiographiques alg\u00e9riens en diverses langues" + ] } ], - "type": "bf:Topic", + "pid": "278747086", "broader": [ { - "authorized_access_point": "Danse - \u00c9tude et enseignement" - }, - { - "authorized_access_point": "Dipl\u00f4mes" + "authorized_access_point": "Roman alg\u00e9rien" } ], - "bnf_type": "sujet Rameau", - "identifiedBy": [ - { - "type": "uri", - "value": "http://www.idref.fr/263492680", - "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb180198821", - "source": "BNF" - } + "variant_access_point": [ + "Roman autobiographique alg\u00e9rien de langue arabe", + "Roman autobiographique arabe - Alg\u00e9rie" ], + "md5": "2a5a3101cccca3c3bd14eaa9adf8093b" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Po\u00e9sie qatarienne", + "bnf_type": "genre/forme Rameau", "classification": [ { - "name": "Education et enseignement", - "type": "bf:ClassificationDdc", - "classificationPortion": "370" - }, - { - "name": "Dessin, arts d\u00e9coratifs, artisanat d'art", "type": "bf:ClassificationDdc", - "classificationPortion": "740" + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" } ], - "variant_access_point": [ - "DEC", - "Dipl\u00f4me d'\u00e9tudes chor\u00e9grahiques", - "DNOP danse" - ], - "authorized_access_point": "Dipl\u00f4me national d'orientation professionnelle de danse" - }, - { - "md5": "f73d3004a94854ef24206918e0a73945", - "pid": "263499944", - "note": [ + "closeMatch": [ { - "label": [ - "Sous cette vedette, on trouve les compositions (qui n'ont pas de forme ou de genre particulier) pour harmonica de verre et orchestre, et les recueils de compositions de formes et de genres diff\u00e9rents pour harmonica de verre et orchestre" - ], - "noteType": "general" + "authorized_access_point": "Arabic poetry--Qatar", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2001000526", + "source": "LCSH" + } + ] + }, + { + "authorized_access_point": "Po\u00e9sie qatarienne", + "source": "RVMLaval" } ], - "type": "bf:Topic", - "bnf_type": "genre/forme Rameau", + "identifier": "http://www.idref.fr/278747094", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263499944", + "value": "http://www.idref.fr/278747094", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb180231507", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181488639", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18148863" } ], - "classification": [ + "pid": "278747094", + "broader": [ { - "name": "Musique", - "type": "bf:ClassificationDdc", - "classificationPortion": "780" + "authorized_access_point": "Litt\u00e9rature qatarienne" } ], - "authorized_access_point": "Harmonica de verre et orchestre" + "variant_access_point": [ + "Po\u00e9sie arabe - Qatar", + "Po\u00e9sie du Qatar", + "Po\u00e9sie qatarie", + "Po\u00e9sie qatarie de langue arabe", + "Po\u00e9sie qatarienne de langue arabe", + "Po\u00e9sie qatariote", + "Po\u00e9sie qatariote de langue arabe" + ], + "md5": "a5817bc7087aa66b4f11fad1c31880aa" }, { - "md5": "e5c24eebaa0db6d9207e821795bb7a95", - "pid": "263499979", - "note": [ - { - "label": [ - "Orientation.ch - https://www.orientation.ch (2022-07-05)", - "Secr\u00e9tariat d'\u00c9tat \u00e0 la formation, \u00e0 la recherche et \u00e0 l'innovation : liste des professions - https://www.becc.admin.ch (2022-07-05)", - "Professionsante.ch - https://www.odasante.ch (2022-07-05)" - ], - "noteType": "dataSource" - } - ], "type": "bf:Topic", - "broader": [ - { - "authorized_access_point": "H\u00f4pitaux - Personnel" - }, - { - "authorized_access_point": "Personnel param\u00e9dical" - } - ], - "related": [ + "authorized_access_point": "Litt\u00e9rature qatarienne", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "authorized_access_point": "Soins infirmiers en sant\u00e9 communautaire" + "type": "bf:ClassificationDdc", + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" } ], - "bnf_type": "sujet Rameau", "closeMatch": [ { + "authorized_access_point": "Arabic literature--Qatar", "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85093360", - "source": "LCSH" - }, - "authorized_access_point": "Nurses' aides" - }, - { - "source": "RVMLaval", - "authorized_access_point": "Aides-infirmiers" - }, - { - "source": "MeSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.nlm.nih.gov/mesh/M0000733", - "source": "MeSH" - }, - "authorized_access_point": "Allied health personnel" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2001000527", + "source": "LCSH" + } + ] }, { - "source": "MeSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.nlm.nih.gov/mesh/D009728", - "source": "MeSH" - }, - "authorized_access_point": "Nurses' aides" + "authorized_access_point": "Litt\u00e9rature qatarienne", + "source": "RVMLaval" } ], + "identifier": "http://www.idref.fr/278747108", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263499979", + "value": "http://www.idref.fr/278747108", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18023352g", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18148867p", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18148867" } ], - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "305" - }, + "pid": "278747108", + "narrower": [ { - "name": "Sciences m\u00e9dicales et param\u00e9dicales", - "type": "bf:ClassificationDdc", - "classificationPortion": "610" + "authorized_access_point": "Po\u00e9sie qatarienne" } ], "variant_access_point": [ - "Assistantes en soin et sant\u00e9 communautaire (Suisse)" + "Litt\u00e9rature arabe - Qatar", + "Litt\u00e9rature qatarie", + "Litt\u00e9rature qatarie de langue arabe", + "Litt\u00e9rature qatarienne de langue arabe", + "Litt\u00e9rature qatariote", + "Litt\u00e9rature qatariote de langue arabe" ], - "authorized_access_point": "Assistants en soins et sant\u00e9 communautaire (Suisse)" + "md5": "3772732c08c35337fa07a93c0b7faa01" }, { - "md5": "42d56ef1a4947458a52038aded08206f", - "pid": "263500047", - "note": [ + "type": "bf:Topic", + "authorized_access_point": "Roman biographique n\u00e9erlandais", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "label": [ - "Sous cette vedette, obligatoirement suivie d'une subdivision g\u00e9ographique ou de la subdivision : \u00c0 l'\u00e9tranger, directement ou apr\u00e8s une subdivision de sujet, on trouve les documents sur les marins fran\u00e7ais hors de France. Les documents sur les marins fran\u00e7ais en France se trouvent sous des vedettes-mati\u00e8re telles que : Marins -- France ; Marins -- [Subdivision de sujet] -- France ; etc" - ], - "noteType": "general" + "type": "bf:ClassificationDdc", + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" } ], - "type": "bf:Topic", - "broader": [ + "closeMatch": [ + { + "authorized_access_point": "Biographical fiction, Dutch", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2015001131", + "source": "LCSH" + } + ] + }, { - "authorized_access_point": "Fran\u00e7ais" + "authorized_access_point": "Roman biographique n\u00e9erlandais", + "source": "RVMLaval" } ], - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/278747116", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263500047", + "value": "http://www.idref.fr/278747116", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18023590k", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18148871x", "source": "BNF" - } - ], - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "305" }, { - "name": "Economie", - "type": "bf:ClassificationDdc", - "classificationPortion": "330" - }, + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18148871" + } + ], + "pid": "278747116", + "broader": [ { - "name": "Art et science militaires", - "type": "bf:ClassificationDdc", - "classificationPortion": "355" + "authorized_access_point": "Biographie n\u00e9erlandaise" }, { - "name": "Ethnologie, anthropologie, folklore", - "type": "bf:ClassificationDdc", - "classificationPortion": "390" + "authorized_access_point": "Roman n\u00e9erlandais" } ], - "authorized_access_point": "Marins fran\u00e7ais" + "md5": "4e97eedfb86992385c24af642328b94c" }, { - "md5": "13b5efe214fc9ccb24ac009086ec1c3f", - "pid": "263500071", - "note": [ - { - "label": [ - "S'emploie uniquement en subdivision aux guerres et r\u00e9volutions dont les Slov\u00e8nes ne sont pas les principaux protagonistes, par ex. : Guerre mondiale (1914-1918) -- Participation slov\u00e8ne" - ], - "noteType": "general" - } - ], "type": "bf:Topic", - "related": [ + "authorized_access_point": "M\u00e9moires (genre litt\u00e9raire) danois", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "authorized_access_point": "Slov\u00e9nie - Histoire" + "type": "bf:ClassificationDdc", + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" } ], - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/278747124", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263500071", + "value": "http://www.idref.fr/278747124", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb180237219", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18148880w", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18148880" } ], - "classification": [ + "pid": "278747124", + "related": [ { - "name": "Histoire et g\u00e9ographie (g\u00e9n\u00e9ralit\u00e9s)", - "type": "bf:ClassificationDdc", - "classificationPortion": "900" + "authorized_access_point": "Autobiographie danoise" + }, + { + "authorized_access_point": "Journaux intimes danois" + } + ], + "broader": [ + { + "authorized_access_point": "Litt\u00e9rature danoise" } ], - "authorized_access_point": "Participation slov\u00e8ne" + "variant_access_point": [ + "M\u00e9moires danois" + ], + "md5": "0179f49872866c32976c64df1db3abe2" }, { - "md5": "b59b76b8d0a20b0b73639d9ea09189b3", - "pid": "263500187", "type": "bf:Topic", - "broader": [ + "authorized_access_point": "M\u00e9moires (genre litt\u00e9raire) espagnols", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "authorized_access_point": "Villes disparues, en ruine, etc. - [Localisations g\u00e9ographiques]" + "type": "bf:ClassificationDdc", + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" } ], - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/278747132", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263500187", + "value": "http://www.idref.fr/278747132", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18024026b", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181488848", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18148884" } ], - "classification": [ + "pid": "278747132", + "related": [ { - "type": "bf:ClassificationDdc", - "classificationPortion": "915" + "authorized_access_point": "Autobiographie espagnole" }, { - "name": "Pr\u00e9histoire et histoire ancienne", - "type": "bf:ClassificationDdc", - "classificationPortion": "930" + "authorized_access_point": "Journaux intimes espagnols" + } + ], + "broader": [ + { + "authorized_access_point": "Litt\u00e9rature espagnole" } ], - "authorized_access_point": "Villes disparues, en ruine, etc. - Angola" + "variant_access_point": [ + "M\u00e9moires espagnols" + ], + "md5": "b72fe0ab6c187365ed07aa4aac9f3bce" }, { - "md5": "0ce3a3fc868e0084b8899a5ae6cdb160", - "pid": "263610918", "type": "bf:Topic", - "broader": [ - { - "authorized_access_point": "Roman historique arabe" - }, + "authorized_access_point": "Vaudevilles belges de langue fran\u00e7aise", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "authorized_access_point": "Roman libanais" + "type": "bf:ClassificationDdc", + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" } ], - "bnf_type": "genre/forme Rameau", + "identifier": "http://www.idref.fr/278747140", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263610918", + "value": "http://www.idref.fr/278747140", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18025416c", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18148900p", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18148900" } ], - "classification": [ - { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" - }, + "pid": "278747140", + "broader": [ { - "name": "Histoire et g\u00e9ographie (g\u00e9n\u00e9ralit\u00e9s)", - "type": "bf:ClassificationDdc", - "classificationPortion": "900" + "authorized_access_point": "Th\u00e9\u00e2tre (genre litt\u00e9raire) belge de langue fran\u00e7aise" } ], "variant_access_point": [ - "Roman historique arabe - Liban", - "Roman historique libanais de langue arabe" + "Vaudevilles francophones belges" ], - "authorized_access_point": "Roman historique libanais" + "md5": "35b0239bf521c68f0ebdf731924a4220" }, { - "md5": "60caa7a4170d71a442cd0424bb75076c", - "pid": "263714233", - "note": [ - { - "label": [ - "Sous cette vedette, on trouve les compositions (qui n'ont pas de forme ou de genre particulier) pour saxophone et ensemble \u00e0 cordes, et les recueils de compositions de formes et de genres diff\u00e9rents pour cette m\u00eame formation" - ], - "noteType": "general" - } - ], "type": "bf:Topic", + "authorized_access_point": "Roman humoristique bosniaque", "bnf_type": "genre/forme Rameau", - "narrower": [ - { - "authorized_access_point": "Concertos (saxophone et ensemble \u00e0 cordes)" - } - ], - "closeMatch": [ - { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85117870", - "source": "LCSH" - }, - "authorized_access_point": "Saxophone with string ensemble" - }, + "classification": [ { - "source": "RVMLaval", - "authorized_access_point": "Saxophone et ensemble \u00e0 cordes" + "type": "bf:ClassificationDdc", + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" } ], + "identifier": "http://www.idref.fr/278747159", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714233", + "value": "http://www.idref.fr/278747159", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb180050621", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18148911b", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18148911" } ], - "classification": [ + "pid": "278747159", + "broader": [ { - "name": "Musique", - "type": "bf:ClassificationDdc", - "classificationPortion": "780" + "authorized_access_point": "Roman bosniaque" } ], - "authorized_access_point": "Saxophone et ensemble \u00e0 cordes" + "md5": "61da6db8dda9968e6f83b7ac2b28b846" }, { - "md5": "8d238ff5a71b2c60ba2e160eb94bcdb8", - "pid": "263714241", "type": "bf:Topic", - "broader": [ + "authorized_access_point": "Orgue, violoncelle et orchestre", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "authorized_access_point": "Saxophone et orchestre" + "type": "bf:ClassificationDdc", + "classificationPortion": "780", + "name": "Musique" } ], - "bnf_type": "genre/forme Rameau", + "identifier": "http://www.idref.fr/278747213", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714241", + "value": "http://www.idref.fr/278747213", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb180053547", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181495015", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Musique", - "type": "bf:ClassificationDdc", - "classificationPortion": "780" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18149501" } ], - "authorized_access_point": "Po\u00e8mes symphoniques (saxophone et orchestre)" - }, - { - "md5": "bdec5040ddab8d0bfb3c384caa51cff2", - "pid": "26371425X", "note": [ { + "noteType": "general", "label": [ - "Grand dict. encyclop\u00e9dique Larousse : ghan\u00e9en, enne", - "Nouveau petit Robert 2009 (partie d\u00e9riv\u00e9s des noms propres) (art. : Ghana (Afrique)) : ghan\u00e9en, enne" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Sous cette vedette, obligatoirement suivie d'une subdivision g\u00e9ographique ou de la subdivision : \u00c0 l'\u00e9tranger, directement ou apr\u00e8s une subdivision de sujet, on trouve les documents sur les femmes ghan\u00e9ennes hors du Ghana. Les documents sur les femmes ghan\u00e9ennes au Ghana se trouvent sous des vedettes-mati\u00e8re telles que : Femmes -- Ghana ; Femmes -- [Subdivision de sujet] -- Ghana ; etc" - ], - "noteType": "general" - } - ], - "type": "bf:Topic", - "broader": [ - { - "authorized_access_point": "Ghan\u00e9ens" + "Sous cette vedette, on trouve les compositions (qui n'ont pas de forme ou de genre particulier) pour orgue, violoncelle et orchestre, et les recueils de compositions de formes et de genres diff\u00e9rents pour cette m\u00eame formation" + ] } ], - "bnf_type": "sujet Rameau", + "pid": "278747213", "narrower": [ { - "authorized_access_point": "Prostitu\u00e9es ghan\u00e9ennes" + "authorized_access_point": "Concertos (violoncelle et orgue)" } ], - "closeMatch": [ + "md5": "ebca3caff18c1ec210a0bd283daf58a2" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Concertos (violoncelle et orgue)", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "source": "RVMLaval", - "authorized_access_point": "Ghan\u00e9ens" + "type": "bf:ClassificationDdc", + "classificationPortion": "780", + "name": "Musique" } ], + "identifier": "http://www.idref.fr/278747221", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/26371425X", + "value": "http://www.idref.fr/278747221", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18005957x", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18149502h", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18149502" + } + ], + "pid": "278747221", + "broader": [ + { + "authorized_access_point": "Orgue, violoncelle et orchestre" } ], + "md5": "ad87b4d419c145be36fc982a978fff99" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Quatuors (voix, piano, fl\u00fbte \u00e0 bec, guitare)", + "bnf_type": "genre/forme Rameau", "classification": [ { - "name": "Sciences sociales", "type": "bf:ClassificationDdc", - "classificationPortion": "300" + "classificationPortion": "780", + "name": "Musique" + } + ], + "identifier": "http://www.idref.fr/278747248", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/278747248", + "source": "IDREF" }, { - "type": "bf:ClassificationDdc", - "classificationPortion": "305" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18150117g", + "source": "BNF" }, { - "name": "Ethnologie, anthropologie, folklore", - "type": "bf:ClassificationDdc", - "classificationPortion": "390" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18150117" } ], - "variant_access_point": [ - "Femmes ghan\u00e9ennes" - ], - "authorized_access_point": "Ghan\u00e9ennes" - }, - { - "md5": "767e88154b051cca58578b4c160479eb", - "pid": "263714268", "note": [ { + "noteType": "general", "label": [ - "Grand dict. encyclop\u00e9dique Larousse : syrien, enne", - "Nouveau petit Robert 2009 (partie d\u00e9riv\u00e9s des noms propres) (art. : Syrie (Proche-Orient)) : syrien, enne" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Sous cette vedette, obligatoirement suivie d'une subdivision g\u00e9ographique ou de la subdivision : \u00c0 l'\u00e9tranger, directement ou apr\u00e8s une subdivision de sujet, on trouve les documents sur les femmes syriennes hors de Syrie. Les documents sur les femmes syriennes en Syrie se trouvent sous des vedettes-mati\u00e8re telles que : Femmes -- Syrie ; Femmes -- [Subdivision de sujet] -- Syrie ; etc" - ], - "noteType": "general" + "Sous cette vedette, on trouve les compositions (qui n'ont pas de forme ou de genre particulier) pour voix (employ\u00e9e comme un instrument), piano, fl\u00fbte \u00e0 bec et guitare, et les recueils de compositions de formes et de genres diff\u00e9rents pour cette m\u00eame formation" + ] } ], - "type": "bf:Topic", + "pid": "278747248", "broader": [ { - "authorized_access_point": "Syriens" - } - ], - "bnf_type": "sujet Rameau", - "narrower": [ - { - "authorized_access_point": "R\u00e9fugi\u00e9es syriennes" + "authorized_access_point": "Quatuors ([distributions instrumentales])" } ], - "closeMatch": [ + "md5": "537a17aafb69941f63ab80ac5fa5b95a" + }, + { + "type": "bf:Topic", + "authorized_access_point": "R\u00e9citants, solistes, choeurs d'hommes et ensemble instrumental", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "source": "RVMLaval", - "authorized_access_point": "Syriens" + "type": "bf:ClassificationDdc", + "classificationPortion": "780", + "name": "Musique" } ], + "identifier": "http://www.idref.fr/278747256", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714268", + "value": "http://www.idref.fr/278747256", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb180061031", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18150337n", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18150337" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Sous cette vedette, on trouve les compositions pour un ou plusieurs r\u00e9citant(s), soliste(s), choeur(s) d'hommes et ensemble instrumental" + ] } ], + "pid": "278747256", + "md5": "4f0c54f0a8e10dd23042bc7b08cacfa8" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Sextuors de cuivres (trombones (2), trompettes (3), tuba)", + "bnf_type": "genre/forme Rameau", "classification": [ { - "name": "Sciences sociales", "type": "bf:ClassificationDdc", - "classificationPortion": "300" + "classificationPortion": "780", + "name": "Musique" + } + ], + "identifier": "http://www.idref.fr/278747264", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/278747264", + "source": "IDREF" }, { - "type": "bf:ClassificationDdc", - "classificationPortion": "305" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18150473s", + "source": "BNF" }, { - "name": "Ethnologie, anthropologie, folklore", - "type": "bf:ClassificationDdc", - "classificationPortion": "390" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18150473" } ], - "variant_access_point": [ - "Femmes syriennes" - ], - "authorized_access_point": "Syriennes" + "pid": "278747264", + "md5": "d8a16c9663fa7e360799a361af0a34f6" }, { - "md5": "aa91216612d33d9af51d9951152da2c8", - "pid": "263714276", "type": "bf:Topic", - "broader": [ - { - "authorized_access_point": "Po\u00e9sie n\u00e9erlandaise" - } - ], + "authorized_access_point": "Musique \u00e9lectroacoustique mixte (orgue et ensemble \u00e0 percussion)", "bnf_type": "genre/forme Rameau", - "closeMatch": [ + "classification": [ { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh89000372", - "source": "LCSH" - }, - "authorized_access_point": "Political poetry, Dutch" + "type": "bf:ClassificationDdc", + "classificationPortion": "780", + "name": "Musique" } ], + "identifier": "http://www.idref.fr/278747272", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714276", + "value": "http://www.idref.fr/278747272", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18006157z", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181505701", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18150570" } ], - "classification": [ + "pid": "278747272", + "broader": [ { - "name": "Sciences politiques", - "type": "bf:ClassificationDdc", - "classificationPortion": "320" - }, + "authorized_access_point": "Musique \u00e9lectroacoustique mixte ([distributions instrumentales])" + } + ], + "related": [ { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "authorized_access_point": "Orgue et ensemble \u00e0 percussion" } ], - "authorized_access_point": "Po\u00e9sie politique n\u00e9erlandaise" + "variant_access_point": [ + "PiOrgue, ensemble \u00e0 percussion et musique \u00e9lectroacoustique" + ], + "md5": "bba6930caa055702eafbbf327153aade" }, { - "md5": "6e826d8072207471e60430f9c3d7d793", - "pid": "263714284", "type": "bf:Topic", - "broader": [ + "authorized_access_point": "Trios (fl\u00fbte, percussion, violoncelle)", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "authorized_access_point": "Po\u00e9sie flamande" + "type": "bf:ClassificationDdc", + "classificationPortion": "780", + "name": "Musique" } ], - "bnf_type": "genre/forme Rameau", + "identifier": "http://www.idref.fr/278747299", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714284", + "value": "http://www.idref.fr/278747299", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18006159n", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181506600", "source": "BNF" - } - ], - "classification": [ - { - "name": "Sciences politiques", - "type": "bf:ClassificationDdc", - "classificationPortion": "320" }, { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18150660" } ], - "authorized_access_point": "Po\u00e9sie politique flamande" - }, - { - "md5": "1bcf900671427d020cba02b534494dd0", - "pid": "263714292", "note": [ { + "noteType": "general", "label": [ - "Droit des syst\u00e8mes autonomes : v\u00e9hicules intelligents, drones, seabots / A. Bensoussan, D. Gazagne, 2019", - "Engins de d\u00e9placement personnel motoris\u00e9s : la r\u00e9glementation en pratique / J.-B Le Dall, F. Romey, 2021" - ], - "noteType": "dataSource" + "Sous cette vedette, on trouve les compositions (qui n'ont pas de forme ou de genre particulier) pour fl\u00fbte, percussion et violoncelle, et les recueils de compositions de formes et de genres diff\u00e9rents pour cette m\u00eame formation" + ] } ], - "type": "bf:Topic", + "pid": "278747299", "broader": [ { - "authorized_access_point": "V\u00e9hicules" + "authorized_access_point": "Trios ([distributions instrumentales])" + } + ], + "md5": "59e856a97bddb345cc49f27eb48daa88" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Musique \u00e9lectroacoustique mixte (fl\u00fbte et orchestre)", + "bnf_type": "genre/forme Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "780", + "name": "Musique" } ], - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/278747302", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714292", + "value": "http://www.idref.fr/278747302", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb180166117", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18150800p", "source": "BNF" - } - ], - "classification": [ - { - "name": "Economie", - "type": "bf:ClassificationDdc", - "classificationPortion": "330" - }, - { - "name": "Sciences appliqu\u00e9es", - "type": "bf:ClassificationDdc", - "classificationPortion": "600" - } - ], - "variant_access_point": [ - "EDP (v\u00e9hicules)", - "EDPM (v\u00e9hicules)", - "Engins de d\u00e9placement personnel motoris\u00e9s" - ], - "authorized_access_point": "Engins de d\u00e9placement personnel" - }, - { - "md5": "003bb9adf2e8234e2c0353037c1d95eb", - "pid": "263714306", - "note": [ - { - "label": [ - "Introduction \u00e0 la psychologie cognitive / P. Lemaire, A. Didierjean, 2018", - "Les protocoles verbaux (think-aloud protocols) : enjeux m\u00e9thodologiques de validit\u00e9 pour la recherche en contexte scolaire / K. Roussel [in] Canadian journal for new scholars in education, 2017, 8, 1 - https://doaj.org (2022-07-20)", - "Verbal protocols in literacy research / S. E. Israel, 2015", - "La m\u00e9thode de la pens\u00e9e \u00e0 voix haute pour analyser les difficult\u00e9s en lecture des \u00e9l\u00e8ves de 14 \u00e0 17 ans / \u00c9. Falardeau, C. Pelletier, D. Pelletier [in] \u00c9ducation & didactique, 2014, 8, 3 - https://journals.openedition.org/educationdidactique (2022-07-19)" - ], - "noteType": "dataSource" }, { - "label": [ - "M\u00e9thode de collecte de donn\u00e9es utilis\u00e9e en ergonomie informatique puis en sciences humaines : l'utilisateur doit \u00e9noncer \u00e0 haute voix ce qu'il est en train de penser pendant qu'il ex\u00e9cute une t\u00e2che" - ], - "noteType": "general" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18150800" } ], - "type": "bf:Topic", + "pid": "278747302", "broader": [ { - "authorized_access_point": "Psychologie cognitive" - }, - { - "authorized_access_point": "Recherche qualitative" + "authorized_access_point": "Musique \u00e9lectroacoustique mixte ([distributions instrumentales])" } ], "related": [ { - "authorized_access_point": "Recherche-action" - }, - { - "authorized_access_point": "R\u00e9solution de probl\u00e8me" - }, - { - "authorized_access_point": "Tests utilisateurs" + "authorized_access_point": "Fl\u00fbte et orchestre" } ], - "bnf_type": "sujet Rameau", - "narrower": [ + "md5": "390ecef941bc88ef56e8143fe2996238" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Thriller (nouvelles) belge de langue fran\u00e7aise", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "authorized_access_point": "Entretiens d'explicitation" + "type": "bf:ClassificationDdc", + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" } ], + "identifier": "http://www.idref.fr/279034768", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714306", + "value": "http://www.idref.fr/279034768", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18018604f", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18150205r", "source": "BNF" - } - ], - "classification": [ - { - "name": "Psychologie, psychanalyse", - "type": "bf:ClassificationDdc", - "classificationPortion": "150" - }, - { - "name": "Sciences sociales", - "type": "bf:ClassificationDdc", - "classificationPortion": "300" }, { - "type": "bf:ClassificationDdc", - "classificationPortion": "621" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18150205" } ], - "variant_access_point": [ - "M\u00e9thode de la pens\u00e9e \u00e0 voix haute", - "Raisonnement \u00e0 voix haute", - "Think-aloud protocols", - "Verbal protocols" - ], - "authorized_access_point": "Protocoles verbaux" - }, - { - "md5": "b05b76f9223d96ce7a3e2207f80964c7", - "pid": "263714314", - "note": [ - { - "label": [ - "Wikip\u00e9dia : Affaire Ernest Rodric - https://fr.wikipedia.org (2022-07-01)", - "L'affaire du Bois bleu : une innocente jet\u00e9e aux chiens / G. Boursier, 2006", - "Grands avocats - Chroniques juridiques : Affaire du Bois Bleu : autopsie d'une erreur judiciaire - https://www.grands-avocats.com (2022-07-01)" - ], - "noteType": "dataSource" - }, + "pid": "279034768", + "broader": [ { - "label": [ - "Affaire criminelle fran\u00e7aise. Suite au meurtre de Georges Segr\u00e9tin au lieu-dit du Bois Bleu (Cher) le 4 novembre 1965, Monique Case sera inculp\u00e9e avant d'\u00eatre totalement innocent\u00e9e gr\u00e2ce \u00e0 une contre-enqu\u00eate du juge d'instruction Mme Georgette Chouvelon. Le v\u00e9ritable assassin, Ernest Rodric sera condamn\u00e9 \u00e0 perp\u00e9tuit\u00e9 en 1967" - ], - "noteType": "general" + "authorized_access_point": "Nouvelles belges de langue fran\u00e7aise" } ], + "md5": "2fd0edc5519f1e2c83f1a3431678168e" + }, + { "type": "bf:Topic", - "broader": [ - { - "authorized_access_point": "Erreurs judiciaires - France" - }, + "authorized_access_point": "Roman d'\u00e9pouvante fran\u00e7ais pour la jeunesse", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "authorized_access_point": "Faits divers - France" + "type": "bf:ClassificationDdc", + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" } ], - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279034776", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714314", + "value": "http://www.idref.fr/279034776", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18020814k", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18150214q", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18150214" } ], - "classification": [ - { - "name": "Droit", - "type": "bf:ClassificationDdc", - "classificationPortion": "340" - }, + "pid": "279034776", + "broader": [ { - "name": "Probl\u00e8mes et services sociaux", - "type": "bf:ClassificationDdc", - "classificationPortion": "360" + "authorized_access_point": "Roman fran\u00e7ais pour la jeunesse" } ], "variant_access_point": [ - "Affaire Ernest Rodric (1965-1967)", - "Affaire Monique Case (1965-1967)", - "Bois Bleu, Affaire du (1965-1967)", - "Ernest Rodric, Affaire (1965-1967)", - "Monique Case, Affaire (1965-1967)" + "Roman d'\u00e9pouvante pour la jeunesse fran\u00e7ais" ], - "authorized_access_point": "Affaire du Bois Bleu (1965-1967)" + "md5": "ae803cb5116ed92886c2d94883d0d887" }, { - "md5": "c898b250a049b610c201a5a3e10fac4e", - "pid": "263714322", - "note": [ + "type": "bf:Topic", + "authorized_access_point": "Dark romance am\u00e9ricaine", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "label": [ - "Languagecert test of english - https://www.languagecert.org (2022-07-20)", - "Legifrance : D\u00e9cision du 16 septembre 2021 portant enregistrement au R\u00e9pertoire national des certifications professionnelles et au r\u00e9pertoire sp\u00e9cifique - https://www.legifrance.gouv.fr (2022-07-20)", - "Using self-assessments to investigate comparability of the CEFR and CSE : an exploratory study using the LanguageCert Test of english / W. Zhao, D. Coniam [in] International journal of TESOL studies, 2022, 4, 1 - https://go-gale-com (2022-07-20)" - ], - "noteType": "dataSource" + "type": "bf:ClassificationDdc", + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" + } + ], + "identifier": "http://www.idref.fr/279034784", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279034784", + "source": "IDREF" }, { - "label": [ - "Certification de l'organisme PeopleCert International align\u00e9e sur le Cadre europ\u00e9en commun de r\u00e9f\u00e9rence" - ], - "noteType": "general" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18150222b", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18150222" } ], - "type": "bf:Topic", + "pid": "279034784", "broader": [ { - "authorized_access_point": "Anglais (langue) - Examens" + "authorized_access_point": "Litt\u00e9rature \u00e9rotique am\u00e9ricaine" } ], - "related": [ + "md5": "755dbd2440ec876fbc777e9879632b50" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Roman satirique am\u00e9ricain", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "authorized_access_point": "Cadre europ\u00e9en commun de r\u00e9f\u00e9rence en langue" + "type": "bf:ClassificationDdc", + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" } ], - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279034792", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714322", + "value": "http://www.idref.fr/279034792", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18020892c", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181502330", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18150233" } ], - "classification": [ + "pid": "279034792", + "broader": [ { - "name": "Education et enseignement", - "type": "bf:ClassificationDdc", - "classificationPortion": "370" + "authorized_access_point": "Roman am\u00e9ricain" }, { - "name": "Langues et linguistique", - "type": "bf:ClassificationDdc", - "classificationPortion": "400" + "authorized_access_point": "Satire am\u00e9ricaine" } ], - "variant_access_point": [ - "LTE" - ], - "authorized_access_point": "LanguageCert Test of English" + "md5": "70a42fc78f050f5355fd6e2185dfbe3f" }, { - "md5": "27e3ebc50fb8c8098ce8ac6e9cfd02ba", - "pid": "263714330", - "note": [ - { - "label": [ - "Sous cette vedette, on trouve les compositions (qui n'ont pas de forme ou de genre particulier) pour clavecin, deux cors, deux violons et violoncelle, et les recueils de compositions de formes et de genres diff\u00e9rents pour cette m\u00eame formation" - ], - "noteType": "general" - } - ], "type": "bf:Topic", - "broader": [ + "authorized_access_point": "Synth\u00e9tiseur et orchestre", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "authorized_access_point": "Sextuors ([distributions instrumentales])" + "type": "bf:ClassificationDdc", + "classificationPortion": "780", + "name": "Musique" } ], - "bnf_type": "genre/forme Rameau", + "identifier": "http://www.idref.fr/279034865", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714330", + "value": "http://www.idref.fr/279034865", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18021604z", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181515572", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18151557" } ], - "classification": [ + "note": [ { - "name": "Musique", - "type": "bf:ClassificationDdc", - "classificationPortion": "780" + "noteType": "general", + "label": [ + "Sous cette vedette, on trouve les compositions (qui n'ont pas de forme ou de genre particulier) pour synth\u00e9tiseur et orchestre, et les recueils de compositions de formes et de genres diff\u00e9rents pour synth\u00e9tiseur et ensemble \u00e0 vent" + ] } ], - "authorized_access_point": "Sextuors (clavecin, cors (2), violons (2), violoncelle)" + "pid": "279034865", + "md5": "9a844ff9d412a3fb54dbe5f42b6974c2" }, { - "md5": "878b8ce44237dbce1b44f8046da03da2", - "pid": "263714349", "type": "bf:Topic", - "broader": [ - { - "authorized_access_point": "Saxophone et ensemble \u00e0 cordes" - } - ], + "authorized_access_point": "Roman historique gallois", "bnf_type": "genre/forme Rameau", - "closeMatch": [ - { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85030338", - "source": "LCSH" - }, - "authorized_access_point": "Concertos (Saxophone with string ensemble)" - }, + "classification": [ { - "source": "RVMLaval", - "authorized_access_point": "Concertos (Saxophone et ensemble \u00e0 cordes)" + "type": "bf:ClassificationDdc", + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" } ], + "identifier": "http://www.idref.fr/279034873", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714349", + "value": "http://www.idref.fr/279034873", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18024222h", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18151562n", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18151562" } ], - "classification": [ + "pid": "279034873", + "broader": [ { - "name": "Musique", - "type": "bf:ClassificationDdc", - "classificationPortion": "780" + "authorized_access_point": "Roman gallois" } ], - "authorized_access_point": "Concertos (saxophone et ensemble \u00e0 cordes)" + "md5": "2dc885060a5083c520d2211b11540f9c" }, { - "md5": "e687ccad9f854cd328dbc38f456f4921", - "pid": "263714357", "type": "bf:Topic", - "broader": [ - { - "authorized_access_point": "Arabesques ([distributions instrumentales])" - }, + "authorized_access_point": "Clavecin et ensemble de clarinettes", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "authorized_access_point": "Alto, Musique d'" + "type": "bf:ClassificationDdc", + "classificationPortion": "780", + "name": "Musique" } ], - "bnf_type": "genre/forme Rameau", + "identifier": "http://www.idref.fr/27903489X", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714357", + "value": "http://www.idref.fr/27903489X", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18024243g", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181518525", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18151852" } ], - "classification": [ + "note": [ { - "name": "Musique", - "type": "bf:ClassificationDdc", - "classificationPortion": "780" + "noteType": "general", + "label": [ + "Sous cette vedette, on trouve les compositions (qui n'ont pas de forme ou de genre particulier) pour clavecin et ensemble de clarinettes, et les recueils de compositions de formes et de genres diff\u00e9rents pour clavecin et ensemble \u00e0 vent" + ] } ], - "authorized_access_point": "Arabesques (alto)" + "pid": "27903489X", + "md5": "da3385db70f62d917a6a64e9b7d8e3f9" }, { - "md5": "29369605bb3f92a731fa43b85f024e52", - "pid": "263714365", - "note": [ + "type": "bf:Topic", + "authorized_access_point": "Roman psychologique luxembourgeois de langue allemande", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "label": [ - "Technologie fonctionnelle de l'automobile. 2, Transmission, train roulant et \u00e9quipement \u00e9lectrique / H. M\u00e9meteau, 2002", - "Les trains roulants et ses \u00e9volutions technologiques, 2021" - ], - "noteType": "dataSource" + "type": "bf:ClassificationDdc", + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" } ], - "type": "bf:Topic", - "broader": [ + "closeMatch": [ { - "authorized_access_point": "Automobiles - Pi\u00e8ces" + "authorized_access_point": "Roman luxembourgeois", + "source": "RVMLaval" } ], - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279034903", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714365", + "value": "http://www.idref.fr/279034903", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18024292p", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181519486", "source": "BNF" - } - ], - "classification": [ - { - "name": "Economie", - "type": "bf:ClassificationDdc", - "classificationPortion": "330" }, { - "name": "Sciences appliqu\u00e9es", - "type": "bf:ClassificationDdc", - "classificationPortion": "600" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18151948" } ], - "authorized_access_point": "Trains roulants" - }, - { - "md5": "7dfbf3c1a8fa71c956ef1c1ff9c869b7", - "pid": "263714373", - "note": [ + "pid": "279034903", + "broader": [ { - "label": [ - "The evolution of project management in a Scaled Agile environment / K. Wills, 2018", - "The project manager's guide to mastering Agile : principles and practices for an adaptive approach / C. G. Cobb, 2015", - "Enterprise agility for dummies / D. Rose, 2018" - ], - "noteType": "dataSource" + "authorized_access_point": "Roman luxembourgeois de langue allemande" } ], + "variant_access_point": [ + "Roman psychologique germanophone luxembourgeois" + ], + "md5": "a35afb5a58260835c73d8f6b772860b0" + }, + { "type": "bf:Topic", - "broader": [ + "authorized_access_point": "Roman policier guatemalt\u00e8que", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "authorized_access_point": "M\u00e9thodes agiles (informatique)" + "type": "bf:ClassificationDdc", + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" } ], - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279035039", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714373", + "value": "http://www.idref.fr/279035039", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb180243025", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18153143r", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18153143" } ], - "classification": [ + "pid": "279035039", + "broader": [ { - "type": "bf:ClassificationDdc", - "classificationPortion": "621" + "authorized_access_point": "Roman guat\u00e9malt\u00e8que" } ], - "variant_access_point": [ - "SAFe (informatique)" - ], - "authorized_access_point": "Scaled agile framework (informatique)" + "md5": "8b6453747bdda87e529928e5681ff96c" }, { - "md5": "2c8387988e5f505c57450f5fb14190ee", - "pid": "26371439X", - "note": [ - { - "label": [ - "Wikip\u00e9dia : Westland Lynx - http://fr.wikipedia.org (2022-07-11)", - "Aviation militaire : A\u00e9rospatiale-Westland WG-13 Lynx - https://aviationsmilitaires.net (2022-07-11)", - "The Royal Navy Lynx : An Operational History / L. Jeram-Croft, 2017" - ], - "noteType": "dataSource" - }, - { - "label": [ - "H\u00e9licopt\u00e8re con\u00e7u par Westland Helicopters et produit conjointement avec A\u00e9rospatiale. Son premier vol a eu lieu le 21 mars 1971. Op\u00e9rationnel \u00e0 partir 1977, il a \u00e9t\u00e9 adopt\u00e9 par plus d'une douzaine de nations" - ], - "noteType": "general" - } - ], "type": "bf:Topic", - "broader": [ + "authorized_access_point": "Litt\u00e9rature belge de langue fran\u00e7aise", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "authorized_access_point": "H\u00e9licopt\u00e8res militaires - Europe" + "type": "bf:ClassificationDdc", + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" } ], - "bnf_type": "sujet Rameau", "closeMatch": [ { + "authorized_access_point": "Belgian literature (French)", "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh2012003729", - "source": "LCSH" - }, - "authorized_access_point": "Westland Lynx (Military helicopter)" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85051872", + "source": "LCSH" + } + ] + }, + { + "authorized_access_point": "Litt\u00e9rature belge (fran\u00e7aise)", + "source": "RVMLaval" } ], + "identifier": "http://www.idref.fr/027275639", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/26371439X", + "value": "http://www.idref.fr/027275639", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18024324g", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119352994", "source": "BNF" - } - ], - "classification": [ - { - "name": "Art et science militaires", - "type": "bf:ClassificationDdc", - "classificationPortion": "355" }, { - "name": "Sciences appliqu\u00e9es", - "type": "bf:ClassificationDdc", - "classificationPortion": "600" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11935299" } ], - "variant_access_point": [ - "Westland Lynx (h\u00e9licopt\u00e8re)", - "WG13 (h\u00e9licopt\u00e8re)" - ], - "authorized_access_point": "Lynx (h\u00e9licopt\u00e8re)" - }, - { - "md5": "afcf59e3488d6bcca2f3c36ee561efbf", - "pid": "263714403", "note": [ { + "noteType": "general", "label": [ - "L'aviation : une r\u00e9volution du XXe si\u00e8cle / J. Noetinger, 2005", - "T\u00e9moin privil\u00e9gi\u00e9 de l'histoire de l'aviation du XXe si\u00e8cle / J. Noetinger, 2010", - "Carnet de vol / G.-H. Satg\u00e9, 1974" - ], - "noteType": "dataSource" + "Sous cette vedette, on trouve les recueils de litt\u00e9rature belge francophone de divers genres" + ] } ], - "type": "bf:Topic", - "broader": [ + "pid": "027275639", + "related": [ + { + "authorized_access_point": "\u00c9crivains belges de langue fran\u00e7aise" + }, + { + "authorized_access_point": "Litt\u00e9rature compar\u00e9e - Belge de langue fran\u00e7aise et fran\u00e7aise" + }, { - "authorized_access_point": "Breguet (avions)" + "authorized_access_point": "Litt\u00e9rature compar\u00e9e - Belge de langue fran\u00e7aise et italienne" } ], - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "narrower": [ { - "type": "uri", - "value": "http://www.idref.fr/263714403", - "source": "IDREF" + "authorized_access_point": "Autobiographie belge de langue fran\u00e7aise" + }, + { + "authorized_access_point": "Biographie belge de langue fran\u00e7aise" + }, + { + "authorized_access_point": "Contes belges de langue fran\u00e7aise" + }, + { + "authorized_access_point": "Essai (genre litt\u00e9raire) belge de langue fran\u00e7aise" + }, + { + "authorized_access_point": "Litt\u00e9rature belge de langue fran\u00e7aise - 1830-1900" + }, + { + "authorized_access_point": "Litt\u00e9rature belge de langue fran\u00e7aise pour la jeunesse" + }, + { + "authorized_access_point": "Litt\u00e9rature didactique belge de langue fran\u00e7aise" + }, + { + "authorized_access_point": "Litt\u00e9rature \u00e9pistolaire belge de langue fran\u00e7aise" + }, + { + "authorized_access_point": "Litt\u00e9rature \u00e9rotique belge de langue fran\u00e7aise" + }, + { + "authorized_access_point": "Litt\u00e9rature exp\u00e9rimentale belge de langue fran\u00e7aise" + }, + { + "authorized_access_point": "Litt\u00e9rature fantastique belge de langue fran\u00e7aise" + }, + { + "authorized_access_point": "Nouvelles belges de langue fran\u00e7aise" + }, + { + "authorized_access_point": "Po\u00e9sie belge de langue fran\u00e7aise" + }, + { + "authorized_access_point": "Roman belge de langue fran\u00e7aise" + }, + { + "authorized_access_point": "Satire belge de langue fran\u00e7aise" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18024325t", - "source": "BNF" + "authorized_access_point": "Th\u00e9\u00e2tre (genre litt\u00e9raire) belge de langue fran\u00e7aise" } ], - "classification": [ + "broader": [ { - "name": "Economie", - "type": "bf:ClassificationDdc", - "classificationPortion": "330" + "authorized_access_point": "Litt\u00e9rature belge" }, { - "name": "Sciences appliqu\u00e9es", - "type": "bf:ClassificationDdc", - "classificationPortion": "600" + "authorized_access_point": "Litt\u00e9rature francophone" } ], "variant_access_point": [ - "Br. 763 Provence (avion de transport)", - "Breguet deux-ponts Provence (avion de transport)" + "Litt\u00e9rature francophone belge" ], - "authorized_access_point": "Breguet 763 Provence (avion de transport)" + "md5": "bef7ec1cc4e76072913df0584ca02dfd" }, { - "md5": "2ceb969c4056bad39e13cbb194946f9b", - "pid": "263714411", - "note": [ - { - "label": [ - "Habiliter les enfants \u00e0 l'occupation : l'approche CO-OP : guider l'enfant dans la d\u00e9couverte des strat\u00e9gies cognitives pour am\u00e9liorer son rendement occupationnel au quotidien / H. J. Polatajko, A. Mandich, 2017", - "L'approche CO-OP et l'accompagnement d'enfants pr\u00e9sentant un trouble d\u00e9veloppemental de la coordination, quels apports pour l'ergoth\u00e9rapeute lib\u00e9ral ? / G. Conte, 2020 [th\u00e8se]", - "Apport de l'approche CO-OP (cognitive orientation to daily occupational performance) aupr\u00e8s d'enfants paralys\u00e9s c\u00e9r\u00e9braux / H. Lebrault [in] Motricit\u00e9 c\u00e9r\u00e9brale, 2019, 40, 2 - https://www-sciencedirect-com (2022-07-11)" - ], - "noteType": "dataSource" - } - ], "type": "bf:Topic", - "broader": [ + "authorized_access_point": "Litt\u00e9rature suisse de langue fran\u00e7aise", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "authorized_access_point": "Ergoth\u00e9rapie" + "type": "bf:ClassificationDdc", + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" } ], - "related": [ + "closeMatch": [ + { + "authorized_access_point": "Swiss literature (French)", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85051883", + "source": "LCSH" + } + ] + }, { - "authorized_access_point": "R\u00e9\u00e9ducation motrice" + "authorized_access_point": "Litt\u00e9rature suisse (fran\u00e7aise)", + "source": "RVMLaval" } ], - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027362434", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714411", + "value": "http://www.idref.fr/027362434", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18024330d", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11942062q", "source": "BNF" - } - ], - "classification": [ - { - "name": "Psychologie, psychanalyse", - "type": "bf:ClassificationDdc", - "classificationPortion": "150" - }, - { - "name": "Education et enseignement", - "type": "bf:ClassificationDdc", - "classificationPortion": "370" }, { - "name": "Sciences m\u00e9dicales et param\u00e9dicales", - "type": "bf:ClassificationDdc", - "classificationPortion": "610" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11942062" } ], - "variant_access_point": [ - "Cognitive orientation to daily occupational performance approach", - "Orientation cognitive au rendement occupationnel quotidien" - ], - "authorized_access_point": "Approche CO-OP" - }, - { - "md5": "b168714abf2ad945e1901a06e3a4a67a", - "pid": "26371442X", "note": [ { + "noteType": "general", "label": [ - "Autisme : le d\u00e9fi du programme TEACCH / G. B. Mesibov, 1995", - "Approche \u00e9ducative de l'autisme : le programme TEACCH, sa transposition en France / B. Rog\u00e9, E. Schopler [in] Psychologie fran\u00e7aise, 1998, 43, 3", - "TEACCH autism programm - https://teach.com (2022-07-11)" - ], - "noteType": "dataSource" - } - ], - "type": "bf:Topic", - "broader": [ - { - "authorized_access_point": "Th\u00e9rapie comportementale" + "Sous cette vedette, on trouve les recueils de litt\u00e9rature suisse francophone de divers genres" + ] } ], + "pid": "027362434", "related": [ { - "authorized_access_point": "Enfants autistes - Communication" + "authorized_access_point": "\u00c9crivains suisses de langue fran\u00e7aise" } ], - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "narrower": [ { - "type": "uri", - "value": "http://www.idref.fr/26371442X", - "source": "IDREF" + "authorized_access_point": "Contes suisses de langue fran\u00e7aise" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb180243474", - "source": "BNF" - } - ], - "classification": [ + "authorized_access_point": "Dark romance suisse de langue fran\u00e7aise" + }, { - "name": "Psychologie, psychanalyse", - "type": "bf:ClassificationDdc", - "classificationPortion": "150" + "authorized_access_point": "Essai (genre litt\u00e9raire) suisse de langue fran\u00e7aise" }, { - "name": "Education et enseignement", - "type": "bf:ClassificationDdc", - "classificationPortion": "370" + "authorized_access_point": "Fantasy suisse de langue fran\u00e7aise" }, { - "name": "Sciences m\u00e9dicales et param\u00e9dicales", - "type": "bf:ClassificationDdc", - "classificationPortion": "610" - } - ], - "variant_access_point": [ - "\u00c9ducation structur\u00e9e", - "TEACCH programm", - "Traitement et \u00e9ducation des enfants autistes ou atteints de troubles de la communication associ\u00e9s", - "Treatment and education of autistic and related communication handicapped children" - ], - "authorized_access_point": "Programme TEACCH" - }, - { - "md5": "84252a5820edf8947c985afba41a08c7", - "pid": "263714438", - "note": [ + "authorized_access_point": "Litt\u00e9rature dialectale fran\u00e7aise - Suisse" + }, { - "label": [ - "Le Robert - https://dictionnaire.lerobert.com/definition/sweat-shirt", - "Tr\u00e9sor de la langue fran\u00e7ais (2022-07-11)", - "Sweat-shirt - https://fr.wikipedia.org/wiki/Sweat-shirt", - "Sweatshirts transformations / L. Rohlfing, 2012 (2022-07-11)" - ], - "noteType": "dataSource" - } - ], - "type": "bf:Topic", - "broader": [ + "authorized_access_point": "Litt\u00e9rature polici\u00e8re suisse de langue fran\u00e7aise" + }, { - "authorized_access_point": "V\u00eatements de sport" - } - ], - "bnf_type": "sujet Rameau", - "closeMatch": [ + "authorized_access_point": "Litt\u00e9rature r\u00e9volutionnaire suisse de langue fran\u00e7aise" + }, { - "source": "RVMLaval", - "authorized_access_point": "Sweatshirts" + "authorized_access_point": "Litt\u00e9rature suisse de langue fran\u00e7aise pour la jeunesse" }, { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh90001049", - "source": "LCSH" - }, - "authorized_access_point": "Sweatshirts" - } - ], - "identifiedBy": [ + "authorized_access_point": "Nouvelles suisses de langue fran\u00e7aise" + }, { - "type": "uri", - "value": "http://www.idref.fr/263714438", - "source": "IDREF" + "authorized_access_point": "Po\u00e9sie suisse de langue fran\u00e7aise" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb180244493", - "source": "BNF" + "authorized_access_point": "Proverbes suisses de langue fran\u00e7aise" + }, + { + "authorized_access_point": "Roman suisse de langue fran\u00e7aise" + }, + { + "authorized_access_point": "Science-fiction suisse de langue fran\u00e7aise" + }, + { + "authorized_access_point": "Th\u00e9\u00e2tre (genre litt\u00e9raire) suisse de langue fran\u00e7aise" } ], - "classification": [ + "broader": [ { - "type": "bf:ClassificationDdc", - "classificationPortion": "391" + "authorized_access_point": "Litt\u00e9rature francophone" }, { - "name": "Economie domestique, h\u00f4tellerie", - "type": "bf:ClassificationDdc", - "classificationPortion": "640" + "authorized_access_point": "Litt\u00e9rature suisse" } ], "variant_access_point": [ - "Hoodies", - "Pulls molletonn\u00e9s", - "Sweats", - "Sweatshirt" + "Litt\u00e9rature francophone suisse", + "Litt\u00e9rature romande" ], - "authorized_access_point": "Sweat-shirts" + "md5": "848cae59b4f9183f5088feece5cea7d6" }, { - "md5": "57ee4b2e1c3179a42457de3e4af1b60f", - "pid": "263714446", "type": "bf:Topic", - "broader": [ - { - "authorized_access_point": "Civilisation - Lettonie" - }, + "authorized_access_point": "Roman canadien de langue anglaise", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "authorized_access_point": "Cuisine balte" + "type": "bf:ClassificationDdc", + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" } ], - "bnf_type": "sujet Rameau", "closeMatch": [ { + "authorized_access_point": "Canadian fiction", "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh93003729", - "source": "LCSH" - }, - "authorized_access_point": "Cooking, Latvian" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85019380", + "source": "LCSH" + } + ] }, { - "source": "RVMLaval", - "authorized_access_point": "Cuisine lettone" + "authorized_access_point": "Roman canadien-anglais", + "source": "RVMLaval" } ], + "identifier": "http://www.idref.fr/027612163", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714446", + "value": "http://www.idref.fr/027612163", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18024451n", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11961467q", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11961467" } ], - "classification": [ + "pid": "027612163", + "related": [ { - "name": "Economie domestique, h\u00f4tellerie", - "type": "bf:ClassificationDdc", - "classificationPortion": "640" + "authorized_access_point": "Romanciers canadiens de langue anglaise" + } + ], + "narrower": [ + { + "authorized_access_point": "Roman autobiographique canadien de langue anglaise" + }, + { + "authorized_access_point": "Roman d'aventures canadien de langue anglaise" + }, + { + "authorized_access_point": "Roman historique canadien de langue anglaise" + }, + { + "authorized_access_point": "Roman policier canadien de langue anglaise" + }, + { + "authorized_access_point": "Roman sentimental canadien de langue anglaise" + }, + { + "authorized_access_point": "Thriller (roman) canadien de langue anglaise" + } + ], + "broader": [ + { + "authorized_access_point": "Litt\u00e9rature canadienne de langue anglaise" + }, + { + "authorized_access_point": "Roman anglophone" + }, + { + "authorized_access_point": "Roman canadien" } ], "variant_access_point": [ - "Cuisine lettone - Lettonie" + "Roman anglophone canadien" ], - "authorized_access_point": "Cuisine lettone" + "md5": "13cf85dd89b42db3a13d19c0ca92906f" }, { - "md5": "dcc1e577bd87bc1614ffa26168689595", - "pid": "263714454", "type": "bf:Topic", - "broader": [ - { - "authorized_access_point": "Cuisine balte" - }, + "authorized_access_point": "Po\u00e9sie turque", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "authorized_access_point": "Civilisation - Lituanie" + "type": "bf:ClassificationDdc", + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" } ], - "bnf_type": "sujet Rameau", "closeMatch": [ { + "authorized_access_point": "Turkish poetry", "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh87002092", - "source": "LCSH" - }, - "authorized_access_point": "Cooking, Lithuanian" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85138898", + "source": "LCSH" + } + ] }, { - "source": "RVMLaval", - "authorized_access_point": "Cuisine lituanienne" + "authorized_access_point": "Po\u00e9sie turque", + "source": "RVMLaval" } ], + "identifier": "http://www.idref.fr/029385571", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714454", + "value": "http://www.idref.fr/029385571", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb180244551", + "value": "http://catalogue.bnf.fr/ark:/12148/cb121024006", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12102400" } ], - "classification": [ + "pid": "029385571", + "related": [ { - "name": "Economie domestique, h\u00f4tellerie", - "type": "bf:ClassificationDdc", - "classificationPortion": "640" + "authorized_access_point": "Po\u00e8tes turcs" + }, + { + "authorized_access_point": "Chansons turques" + }, + { + "authorized_access_point": "Prose turque" } ], - "variant_access_point": [ - "Cuisine lituanienne - Lituanie" - ], - "authorized_access_point": "Cuisine lituanienne" - }, - { - "md5": "6c59588b923baa83fdb07f7c1a04da4a", - "pid": "263714462", - "note": [ + "narrower": [ { - "label": [ - "L'apprentissage du langage : de la section enfantine au cours \u00e9l\u00e9mentaire (2e ann\u00e9e) : le\u00e7ons et exercices sur les th\u00e8mes des tableaux d'\u00e9locution de la Coop\u00e9ration P\u00e9dagogique / H. G\u00e9ron, R. Charlot, G. Bonnin, 1954", - "L'\u00e9cole de M. Rossignol : l'imagination p\u00e9dagogique en images et en couleurs / P. Rossignol, M. Cordeboeuf, 2007", - "\u00c9l\u00e9ments pour une didactique des textes pluricodiques / M. Masselot-Girard [in] Rep\u00e8res : recherches en didactique du fran\u00e7ais langue maternelle, 1993, 7, p. 151-160 - www.persee.fr (2022-07-12)", - "Vocabulaire, \u00e9locution, construction de phrases : cours \u00e9l\u00e9mentaire / J. Garagnon, 1966 : tableaux de vocabulaire-\u00e9locution - https://www.reseau-canope.fr/musee/collections/fr/museum (2022-07-12)", - "Voir, savoir : la p\u00e9dagogie par l'image au temps de l'imprim\u00e9 du XVIe au XXe s. / A. Renonciat, 2011 (p. 108) : planches murales d'\u00e9locution" - ], - "noteType": "dataSource" + "authorized_access_point": "\u00c9l\u00e9gies turques" }, { - "label": [ - "Planches au format j\u00e9sus affich\u00e9es aux murs des salles de classe \u00e9l\u00e9mentaires servant de supports \u00e0 la verbalisation, l'\u00e9locution englobant alors lecture, orthographe, conjugaison et composition" - ], - "noteType": "general" + "authorized_access_point": "\u00c9pop\u00e9es turques" + }, + { + "authorized_access_point": "Po\u00e9sie contestataire turque" + }, + { + "authorized_access_point": "Po\u00e9sie d'amour turque" + }, + { + "authorized_access_point": "Po\u00e9sie islamique turque" + }, + { + "authorized_access_point": "Po\u00e9sie patriotique turque" + }, + { + "authorized_access_point": "Po\u00e9sie populaire turque" + }, + { + "authorized_access_point": "Po\u00e9sie turque - 13e-19e si\u00e8cles (d\u00eevan)" + }, + { + "authorized_access_point": "Po\u00e9sie turque pour la jeunesse" } ], - "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Acquisition du langage" - }, - { - "authorized_access_point": "Illustrations en \u00e9ducation" + "authorized_access_point": "Litt\u00e9rature turque" } ], - "related": [ + "md5": "9e4d39fe78653afafba6f70e95e9242a" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Proverbes belges de langue fran\u00e7aise", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "authorized_access_point": "\u00c9locution" + "type": "bf:ClassificationDdc", + "classificationPortion": "390", + "name": "Ethnologie, anthropologie, folklore" }, { - "authorized_access_point": "Lecture - M\u00e9thodes d'apprentissage" + "type": "bf:ClassificationDdc", + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" } ], - "bnf_type": "genre/forme Rameau", + "identifier": "http://www.idref.fr/029877555", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714462", + "value": "http://www.idref.fr/029877555", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb180245210", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12141099k", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12141099" } ], - "classification": [ + "pid": "029877555", + "related": [ { - "name": "Education et enseignement", - "type": "bf:ClassificationDdc", - "classificationPortion": "370" - }, + "authorized_access_point": "Aphorismes et apophtegmes belges de langue fran\u00e7aise" + } + ], + "broader": [ { - "type": "bf:ClassificationDdc", - "classificationPortion": "401" + "authorized_access_point": "Litt\u00e9rature didactique belge de langue fran\u00e7aise" } ], "variant_access_point": [ - "Planches murales d'\u00e9locution", - "Tableaux de vocabulaire-\u00e9locution" + "Proverbes francophones belges" ], - "authorized_access_point": "Tableaux d'\u00e9locution" + "md5": "03b05a15fdbe97c3110f76a86a1886fc" }, { - "md5": "8922a60f79f92a50447de92a9f350411", - "pid": "263714470", - "note": [ - { - "label": [ - "Le livre bleu de la mar\u00e9tique, 2013", - "Cybermar\u00e9tique.fr : la s\u00e9curit\u00e9 informatique des syst\u00e8mes d'information maritimes et portuaires - https://cybermaretique.fr (2022-07-12)" - ], - "noteType": "dataSource" - } - ], "type": "bf:Topic", - "broader": [ + "authorized_access_point": "Roman d'\u00e9nigme", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "authorized_access_point": "Informatique" + "type": "bf:ClassificationDdc", + "classificationPortion": "360", + "name": "Probl\u00e8mes et services sociaux" }, { - "authorized_access_point": "Navigation" + "type": "bf:ClassificationDdc", + "classificationPortion": "801", + "name": "Po\u00e9sie" } ], - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/033689725", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714470", + "value": "http://www.idref.fr/033689725", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18024616p", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12453179f", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12453179" } ], - "classification": [ + "note": [ { - "name": "Economie", - "type": "bf:ClassificationDdc", - "classificationPortion": "330" + "noteType": "dataSource", + "label": [ + "Encycl. universalis (art. : Policier, roman ; Pigasse, Albert (1887-1985)) - http://www.universalis-edu.com (2012-06-21)", + "Dict. des litt\u00e9ratures de langue fran\u00e7aise / J.-P. de Beaumarchais, D. Couty, A. Rey, 1987 (art. : Roman policier)", + "Stanislas-Andr\u00e9 Steeman. Aux limites de la fiction polici\u00e8re / A. Huftier, 2006", + "Dict. des litt\u00e9ratures polici\u00e8res / C. Mespl\u00e8de, 2007 : whodunit", + "Dict. du roman policier / J. Tulard, 2005 : whodunit" + ] }, { - "name": "Sciences appliqu\u00e9es", - "type": "bf:ClassificationDdc", - "classificationPortion": "600" + "noteType": "dataNotFound", + "label": [ + "Dict. des termes litt\u00e9raires, 2005. - Lexique des termes litt\u00e9raires / M. Jarrety, 2001" + ] }, { - "type": "bf:ClassificationDdc", - "classificationPortion": "621" + "noteType": "general", + "label": [ + "Sous cette vedette, on trouve les recueils de romans d'\u00e9nigme de divers pays ou en diverses langues" + ] + }, + { + "noteType": "seeReference", + "label": [ + "Voir aussi les vedettes du type Roman d'\u00e9nigme [adjectif de langue, de nationalit\u00e9 ou g\u00e9ographique]" + ] } ], - "authorized_access_point": "Mar\u00e9tique" - }, - { - "md5": "c236f328d6bf536b84efac8b43aeacc8", - "pid": "263714489", - "note": [ + "pid": "033689725", + "related": [ { - "label": [ - "Le Robert - https://dictionnaire.lerobert.com/definition/nescafe (2022-07-12)", - "Nescaf\u00e9 - https://fr.wikipedia.org/wiki/Nescaf%C3%A9 (2022-07-12)", - "Communication strat\u00e9gique et sensible \u00e0 ll'\u00e8re num\u00e9rique : vers un mod\u00e8le relationnel dialogique ? : \u00e9tude de cas : la communication en ligne de Nescaf\u00e9 / G. Tardin, 2022" - ], - "noteType": "dataSource" + "authorized_access_point": "Cosy mystery" } ], - "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Marques de commerce" + "authorized_access_point": "Roman policier" } ], - "related": [ + "variant_access_point": [ + "\u00c9nigme (roman)", + "Roman \u00e0 \u00e9nigme", + "Roman d'\u00e9nigme en chambre close", + "Roman de d\u00e9tection", + "Roman de myst\u00e8re", + "Roman jeu", + "Roman policier \u00e0 \u00e9nigme", + "Roman probl\u00e8me", + "Whodunit" + ], + "md5": "70de566b1838a53d885c8fccf91b5bcd" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Roman danois", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "authorized_access_point": "Mots-valises" + "type": "bf:ClassificationDdc", + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" } ], - "bnf_type": "sujet Rameau", "closeMatch": [ { + "authorized_access_point": "Danish fiction", "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85027704", - "source": "LCSH" - }, - "authorized_access_point": "Instant coffee" - }, - { - "source": "RVMLaval", - "authorized_access_point": "Caf\u00e9 soluble" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85035729", + "source": "LCSH" + } + ] } ], + "identifier": "http://www.idref.fr/035381795", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714489", + "value": "http://www.idref.fr/035381795", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb180246307", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13185670f", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13185670" } ], - "classification": [ + "pid": "035381795", + "narrower": [ { - "name": "Economie domestique, h\u00f4tellerie", - "type": "bf:ClassificationDdc", - "classificationPortion": "640" + "authorized_access_point": "Roman biographique danois" + }, + { + "authorized_access_point": "Roman d'espionnage danois" + }, + { + "authorized_access_point": "Roman de science-fiction danois pour la jeunesse" + }, + { + "authorized_access_point": "Roman fantastique danois" + }, + { + "authorized_access_point": "Roman historique danois" + }, + { + "authorized_access_point": "Roman policier danois" } ], - "variant_access_point": [ - "Caf\u00e9 instantan\u00e9", - "Caf\u00e9 soluble" + "broader": [ + { + "authorized_access_point": "Roman scandinave" + }, + { + "authorized_access_point": "Litt\u00e9rature danoise" + } ], - "authorized_access_point": "Nescaf\u00e9 (marque d\u00e9pos\u00e9e)" + "md5": "6c9fc611c6593423ba16038786cfb955" }, { - "md5": "4716136e07a679d6ba4f59eedade15b4", - "pid": "263714500", - "note": [ + "type": "bf:Topic", + "authorized_access_point": "Roman suisse de langue fran\u00e7aise", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "label": [ - "La difficile cohabitation de la g\u00e9ologie \"profonde\" et de la g\u00e9omorphologie au pied des monts ib\u00e9riques occidentaux / B. Lemartinel [in] G\u00e9omorphologie : relief, processus, environnement, 1999, 5, 3", - "Recherches sur la g\u00e9ologie profonde - fosse de Valence (Dr\u00f4me) / H. Gudefin, 1977" - ], - "noteType": "dataSource" + "type": "bf:ClassificationDdc", + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" } ], - "type": "bf:Topic", - "broader": [ + "closeMatch": [ + { + "authorized_access_point": "Swiss fiction (French)", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh96002305", + "source": "LCSH" + } + ] + }, { - "authorized_access_point": "Stratigraphie" + "authorized_access_point": "Roman suisse (fran\u00e7ais)", + "source": "RVMLaval" } ], - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/174718276", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714500", + "value": "http://www.idref.fr/174718276", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18024749x", + "value": "http://catalogue.bnf.fr/ark:/12148/cb16732628b", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Sciences de la Terre", - "type": "bf:ClassificationDdc", - "classificationPortion": "550" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16732628" } ], - "variant_access_point": [ - "Couches g\u00e9ologiques profondes" - ], - "authorized_access_point": "G\u00e9ologie profonde" - }, - { - "md5": "fa129cf3344d2c47049641d6fd941197", - "pid": "263714519", - "note": [ + "pid": "174718276", + "narrower": [ { - "label": [ - "Encycl. Larousse - https://www.larousse.fr/encyclopedie (2022-07-13)", - "La protection contre la mer aux Pays-Bas : le Plan Delta [in] G\u00e9ologues, 2008, 158", - "La Z\u00e9lande en arrive au terme du Plan Delta / F. Lentacker [in] Hommes et terres du Nord, 1981, 4" - ], - "noteType": "dataSource" + "authorized_access_point": "Roman biographique suisse de langue fran\u00e7aise" }, { - "label": [ - "Plan con\u00e7u en 1955 aux Pays-Bas pour prot\u00e9ger le pays des inondations maritimes, suite \u00e0 l'inondation meurtri\u00e8re de 1953" - ], - "noteType": "general" - } - ], - "type": "bf:Topic", - "broader": [ + "authorized_access_point": "Roman d'\u00e9ducation suisse de langue fran\u00e7aise" + }, { - "authorized_access_point": "Inondations - Ma\u00eetrise" - } - ], - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "authorized_access_point": "Roman fantastique suisse de langue fran\u00e7aise" + }, { - "type": "uri", - "value": "http://www.idref.fr/263714519", - "source": "IDREF" + "authorized_access_point": "Roman historique suisse de langue fran\u00e7aise" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18024775g", - "source": "BNF" + "authorized_access_point": "Roman humoristique suisse de langue fran\u00e7aise" + }, + { + "authorized_access_point": "Roman policier suisse de langue fran\u00e7aise" } ], - "classification": [ + "broader": [ { - "name": "Sciences de la Terre", - "type": "bf:ClassificationDdc", - "classificationPortion": "550" + "authorized_access_point": "Litt\u00e9rature suisse de langue fran\u00e7aise" }, { - "name": "Sciences appliqu\u00e9es", - "type": "bf:ClassificationDdc", - "classificationPortion": "600" + "authorized_access_point": "Roman francophone" + }, + { + "authorized_access_point": "Roman suisse" } ], "variant_access_point": [ - "Delta, Plan", - "Travaux Delta" + "Roman francophone suisse" ], - "authorized_access_point": "Plan Delta" + "md5": "d50fc3c115493531214731cd1c771726" }, { - "md5": "37ccb7fad88daaa1c762a2684a2c9c0c", - "pid": "263714527", - "note": [ - { - "label": [ - "Grand dict. terminologique", - "La difficile \u00e9mergence d'une conscience \u00e9cologique en Pologne / K. Herbst [in] Strates : mat\u00e9riaux pour la recherche en sciences sociales, 1992, 6", - "O\u00f9 en sommes-nous de notre conscience \u00e9cologique / C. Dartiguepeyrou [in] Vraiment durable : revue interdisciplinaire du d\u00e9veloppement durable, 2013, 2, 4" - ], - "noteType": "dataSource" - } - ], "type": "bf:Topic", - "broader": [ + "authorized_access_point": "Maximes belges de langue fran\u00e7aise", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "authorized_access_point": "\u00c9cologie humaine" + "type": "bf:ClassificationDdc", + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" } ], - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/278747078", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714527", + "value": "http://www.idref.fr/278747078", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18024815w", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18148788c", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18148788" } ], - "classification": [ + "pid": "278747078", + "related": [ { - "type": "bf:ClassificationDdc", - "classificationPortion": "577" + "authorized_access_point": "Aphorismes et apophtegmes belges de langue fran\u00e7aise" + } + ], + "broader": [ + { + "authorized_access_point": "Litt\u00e9rature didactique belge de langue fran\u00e7aise" } ], "variant_access_point": [ - "Conscience environnementale" + "Maximes francophones belges" ], - "authorized_access_point": "Conscience \u00e9cologique" + "md5": "5956022c8cc470bcd83c6510aa37f3bc" }, { - "md5": "98f680ac662a1aef18ba966ec5d78723", - "pid": "263714535", - "note": [ - { - "label": [ - "Formationprofessionnelle.ch : lexique - https://www.berufsbildung.ch (2022-07-13)", - "LFPr, art. 23 : Loi f\u00e9d\u00e9rale sur la formation professionnelle : cours interentreprises et autres lieux de formation comparables - https://fedlex.data.admin.ch (2022-07-13)", - "Conf\u00e9rence suisse des offices de la formation professionnelle - https://www.edk.ch/fr/csfp (2022-07-13)" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Pendant l'apprentissage professionnel suisse, ces cours obligatoires compl\u00e8tent la formation en entreprise et \u00e0 l'\u00e9cole professionnelle" - ], - "noteType": "general" - } - ], "type": "bf:Topic", - "broader": [ + "authorized_access_point": "\u00c9pop\u00e9es kikuyu", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "authorized_access_point": "Formation en alternance" + "type": "bf:ClassificationDdc", + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" } ], - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279034954", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714535", + "value": "http://www.idref.fr/279034954", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb180248198", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181526598", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18152659" } ], - "classification": [ + "pid": "279034954", + "broader": [ { - "name": "Education et enseignement", - "type": "bf:ClassificationDdc", - "classificationPortion": "370" + "authorized_access_point": "Litt\u00e9rature kikuyu" } ], - "variant_access_point": [ - "CIE (syst\u00e8me \u00e9ducatif suisse)", - "\u00dcberbetriebliche Kurse (syst\u00e8me \u00e9ducatif suisse)" - ], - "authorized_access_point": "Cours interentreprises (syst\u00e8me \u00e9ducatif suisse)" + "md5": "594128679b5fa48c6075dcb5041fd33d" }, { - "md5": "250e9e047e44678772a2284c1f157de7", - "pid": "263714543", "type": "bf:Topic", - "related": [ + "authorized_access_point": "Po\u00e9sie contestataire g\u00e9orgienne", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "authorized_access_point": "Luxembourgeois (langue)" + "type": "bf:ClassificationDdc", + "classificationPortion": "320", + "name": "Sciences politiques" }, { - "authorized_access_point": "Po\u00e9sie luxembourgeoise" + "type": "bf:ClassificationDdc", + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" } ], - "bnf_type": "genre/forme Rameau", + "identifier": "http://www.idref.fr/279307381", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714543", + "value": "http://www.idref.fr/279307381", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18024832g", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18152987b", "source": "BNF" - } - ], - "classification": [ - { - "name": "Musique", - "type": "bf:ClassificationDdc", - "classificationPortion": "780" - } - ], - "authorized_access_point": "Chansons luxambourgeoises" - }, - { - "md5": "4ac6a6fe90069d5545aaef97bc25eef2", - "pid": "263714551", - "note": [ - { - "label": [ - "Wikip\u00e9dia - https://fr.wikipedia.org (2022-07-13)", - "Dict. encyclop\u00e9dique du son / P.-L. de Nanteuil, 2008", - "Oxford Music online (art. : Groovebox) - http://www.oxfordmusiconline.com (2022-07-13)", - "Inside Rihanna : la fabrique des tubes / J. Seabrook [in] Audimat, 2014, 2, 2" - ], - "noteType": "dataSource" }, { - "label": [ - "Courtes s\u00e9quences musicales destin\u00e9es \u00e0 \u00eatre r\u00e9p\u00e9t\u00e9es" - ], - "noteType": "general" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18152987" } ], - "type": "bf:Topic", + "pid": "279307381", "broader": [ { - "authorized_access_point": "Son - Enregistrement et reproduction -- Techniques num\u00e9riques" + "authorized_access_point": "Po\u00e9sie g\u00e9orgienne" } ], - "related": [ + "md5": "6fed94e505cf1711e018ad67ca50c7f8" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Po\u00e9sie contestataire turque", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "authorized_access_point": "S\u00e9quenceur (instrument de musique)" - } - ], - "bnf_type": "sujet Rameau", - "narrower": [ + "type": "bf:ClassificationDdc", + "classificationPortion": "320", + "name": "Sciences politiques" + }, { - "authorized_access_point": "\u00c9chantillonnage (musique)" + "type": "bf:ClassificationDdc", + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" } ], + "identifier": "http://www.idref.fr/27930739X", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714551", + "value": "http://www.idref.fr/27930739X", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb180248612", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181529891", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18152989" } ], - "classification": [ + "pid": "27930739X", + "broader": [ { - "type": "bf:ClassificationDdc", - "classificationPortion": "621" + "authorized_access_point": "Litt\u00e9rature contestataire turque" }, { - "name": "Musique", - "type": "bf:ClassificationDdc", - "classificationPortion": "780" + "authorized_access_point": "Po\u00e9sie turque" } ], - "variant_access_point": [ - "Loops (musique)" - ], - "authorized_access_point": "Boucles (musique)" + "md5": "44304aab8f07c5b6e018a54a769203c1" }, { - "md5": "beadd5aa5177e479cecffa427dbee4da", - "pid": "26371456X", - "note": [ - { - "label": [ - "Guide pratique de la vinification en blanc et ros\u00e9 / C. Gros, S. Yerle, 2011", - "Encycl. Hachette des vins, 2021" - ], - "noteType": "dataSource" - } - ], "type": "bf:Topic", - "broader": [ + "authorized_access_point": "Dark romance fran\u00e7aise", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "authorized_access_point": "Vin" + "type": "bf:ClassificationDdc", + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" } ], - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279307403", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/26371456X", + "value": "http://www.idref.fr/279307403", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb180251036", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18152992x", "source": "BNF" - } - ], - "classification": [ - { - "name": "Agriculture, \u00e9levage", - "type": "bf:ClassificationDdc", - "classificationPortion": "630" }, { - "name": "Economie domestique, h\u00f4tellerie", - "type": "bf:ClassificationDdc", - "classificationPortion": "640" - } - ], - "variant_access_point": [ - "Vin - Oxydation" - ], - "authorized_access_point": "Vin oxydatif" - }, - { - "md5": "e7a0cdf031a44995f614619364b057e2", - "pid": "263714578", - "note": [ - { - "label": [ - "Voir aussi aux noms des personnes au centre des erreurs judiciaires, par ex. : Monique Case" - ], - "noteType": "seeReference" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18152992" } ], - "type": "bf:Topic", + "pid": "279307403", "broader": [ { - "authorized_access_point": "Erreurs judiciaires - [Localisations g\u00e9ographiques]" + "authorized_access_point": "Litt\u00e9rature \u00e9rotique fran\u00e7aise" } ], - "bnf_type": "sujet Rameau", - "narrower": [ - { - "authorized_access_point": "Affaire du Bois Bleu (1965-1967)" - }, - { - "authorized_access_point": "Calas, Affaire (1761-1762)" - }, - { - "authorized_access_point": "Courrier de Lyon, Affaire du (1796)" - }, - { - "authorized_access_point": "Dreyfus, Affaire (1894-1906)" - }, + "md5": "361f1bbaf893c66d08451cc9b94c8887" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Po\u00e9sie visuelle belge de langue fran\u00e7aise", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "authorized_access_point": "Outreau, Affaire d' (2001-2004)" + "type": "bf:ClassificationDdc", + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" } ], + "identifier": "http://www.idref.fr/279307411", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714578", + "value": "http://www.idref.fr/279307411", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb180251930", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181529938", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18152993" } ], - "classification": [ - { - "name": "Droit", - "type": "bf:ClassificationDdc", - "classificationPortion": "340" - }, + "pid": "279307411", + "broader": [ { - "name": "Probl\u00e8mes et services sociaux", - "type": "bf:ClassificationDdc", - "classificationPortion": "360" + "authorized_access_point": "Po\u00e9sie belge de langue fran\u00e7aise" }, { - "name": "Histoire de la France (depuis 486)", - "type": "bf:ClassificationDdc", - "classificationPortion": "944" + "authorized_access_point": "Po\u00e9sie visuelle belge" } ], - "authorized_access_point": "Erreurs judiciaires - France" + "variant_access_point": [ + "Po\u00e9sie visuelle francophone belge" + ], + "md5": "81172e7db2621c51bb36c21b9c668fe4" }, { - "md5": "c791808fac3f9594dd6dc5e18d97ba13", - "pid": "263714594", - "note": [ - { - "label": [ - "Diccionario panhisp\u00e1nico de dudas - https://www.rae.es/dpd/que%C3%ADsmo (2022-07-18)", - "Que\u00edsmo - https://fr.wikipedia.org (2022-07-18)", - "El que\u00edsmo en la historia : variaci\u00f3n y cambio ling\u00fc\u00edstico en el r\u00e9gimen preposicional del espa\u00f1ol (siglos XVI-XXI) / J. L. Blas Arroyo, M. Velando Casanova, [2022]" - ], - "noteType": "dataSource" - } - ], "type": "bf:Topic", - "broader": [ - { - "authorized_access_point": "Espagnol (langue)" - }, + "authorized_access_point": "Roman sentimental canadien de langue anglaise", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "authorized_access_point": "Fautes de langage" + "type": "bf:ClassificationDdc", + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" } ], - "related": [ + "closeMatch": [ { - "authorized_access_point": "Hispanismes (idiotismes)" + "authorized_access_point": "Histoires d'amour canadiennes-anglaises", + "source": "RVMLaval" } ], - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/27930742X", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714594", + "value": "http://www.idref.fr/27930742X", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb180252353", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18153031g", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18153031" } ], - "classification": [ + "pid": "27930742X", + "broader": [ { - "type": "bf:ClassificationDdc", - "classificationPortion": "401" + "authorized_access_point": "Roman canadien de langue anglaise" + }, + { + "authorized_access_point": "Roman sentimental canadien" } ], "variant_access_point": [ - "Ch\u00e9isme" + "Roman sentimental canadien-anglais" ], - "authorized_access_point": "Que\u00edsmo" + "md5": "d9d046f642c63c7ff654b818d105328b" }, { - "md5": "dd1d72a5512898de7c3dd6336ce405c0", - "pid": "263714608", - "note": [ - { - "label": [ - "The Cambridge history of Spanish literature / D.T. Gies, 2004", - "La otra sentimentalidad : estudio y antologia / F. D\u00edaz de Castro, 2003", - "\u00c0 quoi bon la po\u00e9sie aujourd'hui ? / C. Le Bigot, 2016 : L'autre sentimentalit\u00e9 (p.146)", - "L'engagement litt\u00e9raire : cahiers du groupe \u03c6 / E. Bouju, 2005 : L'autre sentimentalit\u00e9 (p.67-71)" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Renouvellement po\u00e9tique initi\u00e9 en 1980 \u00e0 Grenade par les po\u00e8tes L. Garcia Montero, J. Egea et A. Salvador qui pr\u00f4naient l'historicisation de la sentimentalit\u00e9 ainsi qu'une po\u00e9sie r\u00e9aliste engag\u00e9e" - ], - "noteType": "general" - } - ], "type": "bf:Topic", - "broader": [ - { - "authorized_access_point": "Mouvements litt\u00e9raires - Espagne" - }, - { - "authorized_access_point": "Litt\u00e9rature espagnole - 20e si\u00e8cle" - }, + "authorized_access_point": "Dark romance suisse de langue fran\u00e7aise", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "authorized_access_point": "Po\u00e9sie espagnole" + "type": "bf:ClassificationDdc", + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" } ], - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279307438", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714608", + "value": "http://www.idref.fr/279307438", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18025352z", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18153842b", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18153842" } ], - "classification": [ + "pid": "279307438", + "broader": [ { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "authorized_access_point": "Litt\u00e9rature suisse de langue fran\u00e7aise" } ], "variant_access_point": [ - "L' autre sentimentalit\u00e9" + "Dark romance francophone suisse" ], - "authorized_access_point": "La otra sentimentalidad" + "md5": "d6eda1c15c06684b5c0bef6d4593ec7c" }, { - "md5": "e2ace3cfc18d5e904adff750dedb6316", - "pid": "263714616", - "note": [ - { - "label": [ - "Encycl. of world military aircraft, 1996", - "Encycl. of US Air Force aircraft and missile systems, 1978" - ], - "noteType": "dataSource" - } - ], "type": "bf:Topic", - "broader": [ - { - "authorized_access_point": "Avions de chasse - \u00c9tats-Unis" - } - ], - "bnf_type": "sujet Rameau", - "closeMatch": [ + "authorized_access_point": "Roman de science-fiction danois pour la jeunesse", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh00001943", - "source": "LCSH" - }, - "authorized_access_point": "Republic F-84 Thunderjet" + "type": "bf:ClassificationDdc", + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" } ], + "identifier": "http://www.idref.fr/279307446", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714616", + "value": "http://www.idref.fr/279307446", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18025373x", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181538472", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18153847" } ], - "classification": [ - { - "name": "Art et science militaires", - "type": "bf:ClassificationDdc", - "classificationPortion": "355" - }, + "pid": "279307446", + "broader": [ { - "name": "Sciences appliqu\u00e9es", - "type": "bf:ClassificationDdc", - "classificationPortion": "600" + "authorized_access_point": "Roman danois" } ], "variant_access_point": [ - "F-84 Thunderjet (avion de chasse)" + "Roman de science-fiction pour la jeunesse danois" ], - "authorized_access_point": "Republic F-84 Thunderjet (avion de chasse)" + "md5": "30908a93dae85a8641b1aa19659a8b04" }, { - "md5": "4ff59e51c11f2bff49574e8e4120f630", - "pid": "263714624", "type": "bf:Topic", - "broader": [ - { - "authorized_access_point": "Po\u00e9sie samaritaine" - } - ], + "authorized_access_point": "Tapis de lecture", "bnf_type": "genre/forme Rameau", - "closeMatch": [ + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "370", + "name": "Education et enseignement" + }, { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "https://lccn.loc.gov/sh2002001652", - "source": "LCSH" - }, - "authorized_access_point": "Hymns, Samaritan Aramaic" + "type": "bf:ClassificationDdc", + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" } ], + "identifier": "http://www.idref.fr/279307454", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714624", + "value": "http://www.idref.fr/279307454", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18025421z", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18153935b", "source": "BNF" - } - ], - "classification": [ - { - "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)", - "type": "bf:ClassificationDdc", - "classificationPortion": "200" - }, - { - "name": "Musique", - "type": "bf:ClassificationDdc", - "classificationPortion": "780" }, { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18153935" } ], - "authorized_access_point": "Hymnes samaritains" - }, - { - "md5": "17d700449c25137b09304f1053833f16", - "pid": "263714632", "note": [ { + "noteType": "dataSource", "label": [ - "Tr\u00e9sor de la langue fran\u00e7aise (art. : Psych\u00e9d\u00e9lique) - http://stella.atilf.fr (2022-07-19)", - "La contre-culture, \u00c9tats-Unis, ann\u00e9es 60 : la naissance de nouvelles utopies / C. Saint-Jean-Paulin, 1997 [th\u00e8se] : Exp\u00e9rience psych\u00e9d\u00e9lique", - "L'exp\u00e9rience psych\u00e9d\u00e9lique : Leary, Metzner et Alpert / T. Leary, 2013", - "Hallucinog\u00e8nes et culture : une approche neuroanthropologique de l'exp\u00e9rience psych\u00e9d\u00e9lique / D. Dupuis, L. Berkovitch [in] PSN, 2020, 18 (3)" - ], - "noteType": "dataSource" + "Tapis \u00e0 histoire - https://educdome.puy-de-dome.fr/ressources/6468 (2024-06-21)", + "Les tapis de lecture : un pont entre l'enfant et le livre / C. Frasson-Cochet, interview\u00e9e par M. de Miribel [in] Veiller au confort des lecteurs, 2015", + "Le raconte-tapis : un outil d'appropriation, d'expression et de transmission du plaisir de lire / V. Guilbaud, 2007" + ] }, { + "noteType": "general", "label": [ - "\u00c9tat provoqu\u00e9 par l'absorption de drogues hallucinog\u00e8nes. - Par extension, fa\u00e7on de vivre, \u00e9thique qui pr\u00e9conise l'utilisation de drogues hallucinog\u00e8nes" - ], - "noteType": "general" + "\"Raconte-tapis\" est une appellation commerciale" + ] } ], - "type": "bf:Topic", + "pid": "279307454", "broader": [ { - "authorized_access_point": "\u00c9tats modifi\u00e9s de conscience" - }, - { - "authorized_access_point": "Psychotropes" + "authorized_access_point": "\u00c9ducation de la premi\u00e8re enfance - M\u00e9thodes actives" } ], - "related": [ - { - "authorized_access_point": "Beat generation" - }, - { - "authorized_access_point": "Champignons hallucinog\u00e8nes" - }, - { - "authorized_access_point": "Hallucinations et illusions" - }, - { - "authorized_access_point": "Hallucinog\u00e8nes" - }, - { - "authorized_access_point": "Hippies" - } + "variant_access_point": [ + "Raconte-tapis (marque d\u00e9pos\u00e9e)", + "Tapis \u00e0 histoire", + "Tapis bavard", + "Tapis narratif" ], - "bnf_type": "sujet Rameau", - "narrower": [ - { - "authorized_access_point": "Art psych\u00e9d\u00e9lique" - }, + "md5": "6962f6021145534f62fce7a1e65bc2ee" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Quatuors (basson, fl\u00fbte, hautbois, harpe)", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "authorized_access_point": "Rock psych\u00e9d\u00e9lique" + "type": "bf:ClassificationDdc", + "classificationPortion": "780", + "name": "Musique" } ], + "identifier": "http://www.idref.fr/279307543", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714632", + "value": "http://www.idref.fr/279307543", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb180254349", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18155078m", "source": "BNF" - } - ], - "classification": [ - { - "name": "Psychologie, psychanalyse", - "type": "bf:ClassificationDdc", - "classificationPortion": "150" - }, - { - "name": "Sciences sociales", - "type": "bf:ClassificationDdc", - "classificationPortion": "300" }, { - "name": "Sciences m\u00e9dicales et param\u00e9dicales", - "type": "bf:ClassificationDdc", - "classificationPortion": "610" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18155078" } ], - "variant_access_point": [ - "\u00c9tat psych\u00e9d\u00e9lique", - "Exp\u00e9rience hallucinog\u00e8ne", - "Exp\u00e9rience psych\u00e9d\u00e9lique", - "Hallucinog\u00e8nes - Aspect psychologique", - "Hallucinog\u00e8nes - Aspect social" - ], - "authorized_access_point": "Psych\u00e9d\u00e9lisme" - }, - { - "md5": "c82a11f69f48376d378e3ff56fcbcab5", - "pid": "263714640", "note": [ { + "noteType": "general", "label": [ - "S'emploie uniquement en subdivision" - ], - "noteType": "general" + "Sous cette vedette, on trouve les compositions (qui n'ont pas de forme ou de genre particulier) pour basson, fl\u00fbte, hautbois et harpe, et les recueils de compositions de formes et de genres diff\u00e9rents pour cette m\u00eame formation" + ] } ], - "type": "bf:Topic", + "pid": "279307543", "broader": [ { - "authorized_access_point": "D\u00e9mographie" + "authorized_access_point": "Quatuors ([distributions instrumentales])" } ], - "related": [ - { - "authorized_access_point": "\u00c9ducation - Aspect d\u00e9mographique" - }, - { - "authorized_access_point": "Logement - Aspect d\u00e9mographique" - }, + "md5": "0f9988e07be77c3c9b6b58deb453d3ed" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Roman historique uruguayen", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "authorized_access_point": "Religions - Aspect d\u00e9mographique" + "type": "bf:ClassificationDdc", + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" }, { - "authorized_access_point": "R\u00e9volutions - Aspect d\u00e9mographique" + "type": "bf:ClassificationDdc", + "classificationPortion": "900", + "name": "Histoire et g\u00e9ographie (g\u00e9n\u00e9ralit\u00e9s)" } ], - "bnf_type": "sujet Rameau", "closeMatch": [ { - "source": "RVMLaval", - "authorized_access_point": "--Aspect d\u00e9mographique" + "authorized_access_point": "Historical fiction, Uruguayan", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "https://lccn.loc.gov/sh2009007782", + "source": "LCSH" + } + ] } ], + "identifier": "http://www.idref.fr/279307608", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714640", + "value": "http://www.idref.fr/279307608", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb180255546", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18155352r", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18155352" } ], - "classification": [ + "pid": "279307608", + "broader": [ { - "type": "bf:ClassificationDdc", - "classificationPortion": "304" + "authorized_access_point": "Roman uruguayen" } ], - "authorized_access_point": "Aspect d\u00e9mographique" + "md5": "72bec42c5a23388cbf7c9db1973b747e" }, { - "md5": "a5acf569efff53f998cd3a6053156f26", - "pid": "263714659", - "note": [ + "type": "bf:Topic", + "authorized_access_point": "Roman historique arm\u00e9nien", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "label": [ - "Encycl. universalis (art. : Bhagavad-G\u012bt\u0101) : J\u00f1\u0101nayoga - www.universalis-edu.com (2022-07-21)", - "Dict. de la sagesse orientale : bouddhisme, hindouisme, ta\u00efoisme, zen, 1995 : J\u00f1\u0101na-yoga, Voie de la connaissance, J\u00f1\u0101na-yogi", - "Yoga : l'encycl. / Y. Tardan-Masquelier, 2021 : J\u00f1\u0101na-yoga, J\u00f1\u0101na-m\u0101rga, J\u00f1\u0101nin", - "Introduction aux voies du yoga / T. Micha\u00ebl, 2016 : Yoga de la connaissance" - ], - "noteType": "dataSource" + "type": "bf:ClassificationDdc", + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" }, { - "label": [ - "Du sanskrit \"J\u00f1\u0101na\" : connaissance. - La Vedanta (la fin des Veda) recommande de d\u00e9passer l'ignorance (Avidya) pour atteindre la r\u00e9alit\u00e9 supr\u00eame (Brahman) et le v\u00e9ritable soi (Atman)" - ], - "noteType": "general" + "type": "bf:ClassificationDdc", + "classificationPortion": "900", + "name": "Histoire et g\u00e9ographie (g\u00e9n\u00e9ralit\u00e9s)" } ], - "type": "bf:Topic", - "broader": [ + "closeMatch": [ { - "authorized_access_point": "Yoga" + "authorized_access_point": "Historical fiction, Armenian", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "https://id.loc.gov/authorities/subjects/sh89000504", + "source": "LCSH" + } + ] } ], - "related": [ + "identifier": "http://www.idref.fr/279307616", + "identifiedBy": [ { - "authorized_access_point": "\u0100tman" + "type": "uri", + "value": "http://www.idref.fr/279307616", + "source": "IDREF" }, { - "authorized_access_point": "Avidy\u0101" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18155375d", + "source": "BNF" }, { - "authorized_access_point": "Brahman" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18155375" } ], - "bnf_type": "sujet Rameau", - "closeMatch": [ + "pid": "279307616", + "broader": [ { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85149180", - "source": "LCSH" - }, - "authorized_access_point": "Yoga, J\u00f1\u0101na" - }, + "authorized_access_point": "Roman arm\u00e9nien" + } + ], + "md5": "d4b1a1efa4b5f86d3e6f572b044cd828" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Nouvelles fantastiques pour la jeunesse", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "source": "RVMLaval", - "authorized_access_point": "Yoga, J\u00f1\u0101na" + "type": "bf:ClassificationDdc", + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" } ], + "identifier": "http://www.idref.fr/279307640", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714659", + "value": "http://www.idref.fr/279307640", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb180255604", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18155525d", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18155525" } ], - "classification": [ + "pid": "279307640", + "broader": [ { - "name": "Philosophie", - "type": "bf:ClassificationDdc", - "classificationPortion": "100" + "authorized_access_point": "Nouvelles pour la jeunesse" }, { - "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)", - "type": "bf:ClassificationDdc", - "classificationPortion": "200" + "authorized_access_point": "Nouvelles fantastiques" } ], "variant_access_point": [ - "J\u00f1\u0101na-m\u0101rga", - "J\u00f1\u0101na-yogi", - "J\u00f1\u0101nayoga", - "J\u00f1\u0101nin", - "Voie de la connaissance", - "Yoga de la connaissance" + "Nouvelles fantastiques pour adolescents", + "Nouvelles fantastiques pour enfants", + "Nouvelles fantastiques pour jeunes adultes" ], - "authorized_access_point": "J\u00f1\u0101na-yoga" + "md5": "952302d472403ba4c61db68dbcb2885f" }, { - "md5": "5b56bac2331f985108d3316946135688", - "pid": "263714667", - "note": [ + "type": "bf:Topic", + "authorized_access_point": "\u00c9pop\u00e9es yiddish", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "label": [ - "Dict. historique de la Suisse (art. : Votations) - http://www.hls-dhs-dss.ch (2022-07-20)", - "Le citoyen face \u00e0 ses opinions : arguments, connaissances et campagnes politiques en Suisse / A. Nai, 2016", - "Parlement suisse : Etude sur le financement des campagnes \u00e9lectorales et de votation / M. Meyer, 2019 - https://www.parlament.ch (2022-07-20)" - ], - "noteType": "dataSource" + "type": "bf:ClassificationDdc", + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Epic poetry, Yiddish", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "https://lccn.loc.gov/sh2022007681", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/279307659", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279307659", + "source": "IDREF" }, { - "label": [ - "S'emploie \u00e9galement en subdivision" - ], - "noteType": "general" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181555300", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18155530" } ], - "type": "bf:Topic", + "pid": "279307659", "broader": [ { - "authorized_access_point": "Campagnes \u00e9lectorales" + "authorized_access_point": "Po\u00e9sie yiddish" } ], - "related": [ - { - "authorized_access_point": "\u00c9lections" - }, + "md5": "ea12a388cd63b40f5831157ad1f070eb" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Roman fantastique suisse de langue fran\u00e7aise pour la jeunesse", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "authorized_access_point": "R\u00e9f\u00e9rendum" + "type": "bf:ClassificationDdc", + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" } ], - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279307667", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714667", + "value": "http://www.idref.fr/279307667", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb180255995", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181555362", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18155536" } ], - "classification": [ + "pid": "279307667", + "broader": [ { - "name": "Sciences politiques", - "type": "bf:ClassificationDdc", - "classificationPortion": "320" + "authorized_access_point": "Roman fantastique suisse de langue fran\u00e7aise" } ], "variant_access_point": [ - "Campagnes de vote", - "Votations - Campagnes de" + "Roman fantastique francophone suisse pour adolescents", + "Roman fantastique francophone suisse pour enfants", + "Roman fantastique francophone suisse pour jeunes adultes", + "Roman fantastique francophone suisse pour la jeunesse", + "Roman fantastique suisse de langue fran\u00e7aise pour adolescents", + "Roman fantastique suisse de langue fran\u00e7aise pour enfants", + "Roman fantastique suisse de langue fran\u00e7aise pour jeunes adultes" ], - "authorized_access_point": "Campagnes de votation (Suisse)" + "md5": "b784e6cdb05956f895e9dc6e4f70105b" }, { - "md5": "b19f9384a6dec401f83364e9a5da8cfd", - "pid": "263714691", "type": "bf:Topic", - "broader": [ - { - "authorized_access_point": "Antiquit\u00e9s \u00e9gyptiennes" - }, + "authorized_access_point": "Roman d'\u00e9nigme fran\u00e7ais", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "authorized_access_point": "Lampes antiques" + "type": "bf:ClassificationDdc", + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" } ], - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279307675", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714691", + "value": "http://www.idref.fr/279307675", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb180259680", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18155543b", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18155543" } ], + "pid": "279307675", + "broader": [ + { + "authorized_access_point": "Roman fran\u00e7ais" + } + ], + "md5": "360d2849925a8edc362cacb9a5fed178" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Aphorismes et apophtegmes belges de langue fran\u00e7aise", + "bnf_type": "genre/forme Rameau", "classification": [ { - "name": "Sciences appliqu\u00e9es", "type": "bf:ClassificationDdc", - "classificationPortion": "600" + "classificationPortion": "370", + "name": "Education et enseignement" }, { - "name": "Dessin, arts d\u00e9coratifs, artisanat d'art", "type": "bf:ClassificationDdc", - "classificationPortion": "740" + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" + } + ], + "identifier": "http://www.idref.fr/279307683", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279307683", + "source": "IDREF" }, { - "name": "Pr\u00e9histoire et histoire ancienne", - "type": "bf:ClassificationDdc", - "classificationPortion": "930" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181555482", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18155548" } ], - "variant_access_point": [ - "Lampes \u00e9gyptiennes - Antiquit\u00e9", - "Lampes \u00e9gyptiennes antiques", - "Lampes \u00e9gyptiennes de l'Antiquit\u00e9" - ], - "authorized_access_point": "Lampes \u00e9gyptiennes" - }, - { - "md5": "3013bac93437e7af527bdd0954ccdd6b", - "pid": "263714705", - "note": [ + "pid": "279307683", + "related": [ { - "label": [ - "Respirianisme et risque de d\u00e9rive sectaire - https://www.miviludes.interieur.gouv.fr (2022-07-22)", - "Respirianisme : attention, danger ! - https://sante.journaldesfemmes.f (2022-07-22)", - "Le je\u00fbne th\u00e9rapeutique : cons\u00e9quenses m\u00e9taboliques, pratiques, int\u00e9r\u00eats et limites / P. Chambouvet, 2016 [th\u00e8se] - bibnum.univ-lyon1.fr (2022-07-22)" - ], - "noteType": "dataSource" + "authorized_access_point": "Maximes belges de langue fran\u00e7aise" }, { - "label": [ - "Mouvement spirituel cr\u00e9\u00e9 en 1993 par Jasmuheen pr\u00f4nant un je\u00fbne extr\u00eame (in\u00e9die) et une \"alimentation pranique\" c'est-\u00e0-dire d'air et de lumi\u00e8re" - ], - "noteType": "general" + "authorized_access_point": "Proverbes belges de langue fran\u00e7aise" } ], - "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Je\u00fbne" + "authorized_access_point": "Litt\u00e9rature didactique belge de langue fran\u00e7aise" } ], - "related": [ - { - "authorized_access_point": "Pr\u0101\u1e47\u0101y\u0101ma" - } + "variant_access_point": [ + "Aphorismes et apophtegmes francophones belges" ], - "bnf_type": "sujet Rameau", - "closeMatch": [ + "md5": "f5babb2bf745f2e31f7be455c6e3ce17" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Litt\u00e9rature didactique belge de langue fran\u00e7aise", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "source": "GND", - "authorized_access_point": "Lichtnahrung" + "type": "bf:ClassificationDdc", + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" } ], + "identifier": "http://www.idref.fr/279307705", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714705", + "value": "http://www.idref.fr/279307705", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18025982j", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18155558c", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18155558" } ], - "classification": [ + "pid": "279307705", + "narrower": [ { - "name": "Psychologie, psychanalyse", - "type": "bf:ClassificationDdc", - "classificationPortion": "150" + "authorized_access_point": "Aphorismes et apophtegmes belges de langue fran\u00e7aise" }, { - "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)", - "type": "bf:ClassificationDdc", - "classificationPortion": "200" + "authorized_access_point": "Maximes belges de langue fran\u00e7aise" + }, + { + "authorized_access_point": "Proverbes belges de langue fran\u00e7aise" + } + ], + "broader": [ + { + "authorized_access_point": "Litt\u00e9rature belge de langue fran\u00e7aise" } ], "variant_access_point": [ - "Breatharisme", - "Mouvement respirianiste", - "Nutrition pranique", - "Pranisme" + "Litt\u00e9rature didactique francophone belge" ], - "authorized_access_point": "Respirianisme" + "md5": "c3c17980244005a8d91481f3dc34eb6c" }, { - "md5": "bfe50ed362070c5a3870aab3ff5599b8", - "pid": "263714713", - "note": [ + "type": "bf:Topic", + "authorized_access_point": "Roman autobiographique mexicain", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "label": [ - "Dict. de la pr\u00e9histoire / A. Leroi-Gourhan, 1997 (art. : Bracelets)", - "La pr\u00e9histoire / D. Vialou, 2004 (art. : Parure)", - "Les bracelets de pierre du N\u00e9olithique m\u00e9ridional / J. Courtin, X. Gutherz [in] Bulletin de la soci\u00e9t\u00e9 pr\u00e9historique fran\u00e7aise. \u00c9tudes et travaux, 1976, 73, 1 - https://www.persee.fr (2022-07-22)" - ], - "noteType": "dataSource" + "type": "bf:ClassificationDdc", + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Autobiographical fiction, Mexican", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2023003043", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/279307721", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279307721", + "source": "IDREF" }, { - "label": [ - "Faits d'\u00e9l\u00e9ments enfil\u00e9s ou attach\u00e9s, attest\u00e9s \u00e0 partir du M\u00e9solithique, ou faits d'une seule pi\u00e8ce, en test, pierre ou m\u00e9tal au N\u00e9olithique, en bronze \u00e0 partir de l'\u00e2ge du Bronze, de forme et mati\u00e8re vari\u00e9es \u00e0 l'\u00e2ge du Fer (verre, etc.)" - ], - "noteType": "general" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181555660", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18155566" } ], - "type": "bf:Topic", + "pid": "279307721", "broader": [ { - "authorized_access_point": "Bijoux pr\u00e9historiques" - }, + "authorized_access_point": "Roman mexicain" + } + ], + "md5": "f88b31ca17c5bce6759afc90323acb79" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Roman fantastique suisse de langue fran\u00e7aise", + "bnf_type": "genre/forme Rameau", + "classification": [ { - "authorized_access_point": "Bracelets (bijoux)" + "type": "bf:ClassificationDdc", + "classificationPortion": "800", + "name": "Histoire et critique litt\u00e9raires" } ], - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279307756", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714713", + "value": "http://www.idref.fr/279307756", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb180259878", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18155609f", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18155609" } ], - "classification": [ + "pid": "279307756", + "narrower": [ { - "name": "Dessin, arts d\u00e9coratifs, artisanat d'art", - "type": "bf:ClassificationDdc", - "classificationPortion": "740" - }, + "authorized_access_point": "Roman fantastique suisse de langue fran\u00e7aise pour la jeunesse" + } + ], + "broader": [ { - "name": "Pr\u00e9histoire et histoire ancienne", - "type": "bf:ClassificationDdc", - "classificationPortion": "930" + "authorized_access_point": "Roman suisse de langue fran\u00e7aise" } ], "variant_access_point": [ - "Bracelets (bijoux) - Pr\u00e9histoire", - "Bracelets de la pr\u00e9histoire", - "Bracelets protohistoriques" + "Roman fantastique francophone suisse" ], - "authorized_access_point": "Bracelets pr\u00e9historiques" + "md5": "3ed9a2573bb9c9ed40f5c6e3a26d80f5" } ] \ No newline at end of file diff --git a/data/cidref_metadata.csv b/data/cidref_metadata.csv index 9b870ac3..de446eb2 100644 --- a/data/cidref_metadata.csv +++ b/data/cidref_metadata.csv @@ -1,273 +1,551 @@ -2023-08-08 13:37:37.288429 2023-08-08 13:37:37.288433 c4f5d555-0cb2-44e5-8609-86a0a9abd7c2 {"md5": "4b7f3d32ff91eee6bcddc5b796e5b88f", "pid": "027224430", "note": [{"label": ["Grand Larousse universel", "Les langues du monde / M. Sala, I. Vintila-Radulescu, 1984", "Les langues du monde / A. Meillet, M. Cohen, 1981"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Langues ibéro-romanes"}, {"authorized_access_point": "Langues romanes"}], "related": [{"authorized_access_point": "Abécédaires espagnols"}, {"authorized_access_point": "Abréviations espagnoles"}, {"authorized_access_point": "Caló (dialecte)"}, {"authorized_access_point": "Catéchismes espagnols"}, {"authorized_access_point": "Cocoliche (langue)"}, {"authorized_access_point": "Dictionnaires espagnols"}, {"authorized_access_point": "Emprunts espagnols"}, {"authorized_access_point": "Encyclopédies et dictionnaires espagnols"}, {"authorized_access_point": "Espagnol (langue) - Examens"}, {"authorized_access_point": "Espagnol (langue) - Vocabulaire"}, {"authorized_access_point": "Étude et enseignement - Locuteurs de l'espagnol"}, {"authorized_access_point": "Glossaires et lexiques espagnols"}, {"authorized_access_point": "Grammaire comparée - Espagnol (langue)"}, {"authorized_access_point": "Hispanismes (idiotismes)"}, {"authorized_access_point": "Imprimés espagnols"}, {"authorized_access_point": "Influence sur l'espagnol"}, {"authorized_access_point": "Judéo-espagnol (langue)"}, {"authorized_access_point": "Langues créoles espagnoles"}, {"authorized_access_point": "Manuscrits espagnols"}, {"authorized_access_point": "Mots apparentés espagnols"}, {"authorized_access_point": "N tildé (la lettre espagnole)"}, {"authorized_access_point": "Noms de personnes espagnols"}, {"authorized_access_point": "Noms propres espagnols"}, {"authorized_access_point": "Périodiques espagnols"}, {"authorized_access_point": "Philologie espagnole"}, {"authorized_access_point": "Phonétique comparée - Espagnol (langue)"}, {"authorized_access_point": "Professeurs d'espagnol"}, {"authorized_access_point": "Traduction en espagnol"}, {"authorized_access_point": "Traductions espagnoles"}, {"authorized_access_point": "Versions espagnoles"}, {"authorized_access_point": "Vocabulaires et manuels de conversation espagnols"}, {"authorized_access_point": "Cantiques espagnols"}, {"authorized_access_point": "Chansons espagnoles"}, {"authorized_access_point": "Citations espagnoles"}, {"authorized_access_point": "Correspondance espagnole"}, {"authorized_access_point": "Littérature hispanophone"}, {"authorized_access_point": "Manuels pour locuteurs de l'espagnol"}, {"authorized_access_point": "Mélodies espagnoles"}, {"authorized_access_point": "Paraphrases espagnoles"}, {"authorized_access_point": "Synopses espagnoles"}, {"authorized_access_point": "Virelangues espagnols"}, {"authorized_access_point": "Pays de langue espagnole"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Espagnol (langue) - Argot"}, {"authorized_access_point": "Espagnol (langue) - Dialectes"}, {"authorized_access_point": "Espagnol (langue) - Avant 1500"}, {"authorized_access_point": "Espagnol (langue) - 1500-1700 (Période classique)"}, {"authorized_access_point": "Queísmo"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85126261", "source": "LCSH"}, "authorized_access_point": "Spanish language"}, {"source": "RVMLaval", "authorized_access_point": "Espagnol (Langue)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027224430", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119312813", "source": "BNF"}], "classification": [{"name": "Langues et linguistique", "type": "bf:ClassificationDdc", "classificationPortion": "400"}], "variant_access_point": ["Castellano (langue)", "Castillan (langue)"], "authorized_access_point": "Espagnol (langue)"} 1 -2023-08-08 13:37:37.367055 2023-08-08 13:37:37.36706 cb66f8c4-bf3b-4320-8e51-f127777f294e {"md5": "ed787193323d3cfadbd708b5809d29ce", "pid": "027227219", "note": [{"label": ["Grand Larousse universel", "Grand Robert de la langue française, 2001"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, obligatoirement suivie d'une subdivision géographique ou de la subdivision : À l'étranger, directement ou après une subdivision de sujet, on trouve les documents sur les Français hors de France. Les documents sur les Français en France se trouvent sous des vedettes-matière telles que : France -- Moeurs et coutumes ; etc"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ethnologie - France"}], "related": [{"authorized_access_point": "Algériens d'origine française"}, {"authorized_access_point": "Allemands d'origine française"}, {"authorized_access_point": "Américains d'origine française"}, {"authorized_access_point": "Britanniques d'origine française"}, {"authorized_access_point": "Canadiens francophones"}, {"authorized_access_point": "Roumains d'origine française"}, {"authorized_access_point": "France"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Agriculteurs français"}, {"authorized_access_point": "Agronomes français"}, {"authorized_access_point": "Alpinistes français"}, {"authorized_access_point": "Anarchistes français"}, {"authorized_access_point": "Animateurs socioculturels français"}, {"authorized_access_point": "Archéologues français"}, {"authorized_access_point": "Artistes français"}, {"authorized_access_point": "Bibliothécaires français"}, {"authorized_access_point": "Catholiques français"}, {"authorized_access_point": "Chirurgiens français"}, {"authorized_access_point": "Commerçants français"}, {"authorized_access_point": "Communistes français"}, {"authorized_access_point": "Déportés français"}, {"authorized_access_point": "Diplomates français"}, {"authorized_access_point": "Écrivains français"}, {"authorized_access_point": "Éditeurs français"}, {"authorized_access_point": "Égyptologues français"}, {"authorized_access_point": "Employés de maison français"}, {"authorized_access_point": "Enseignants français"}, {"authorized_access_point": "Ethnologues français"}, {"authorized_access_point": "Étudiants français"}, {"authorized_access_point": "Explorateurs français"}, {"authorized_access_point": "Françaises"}, {"authorized_access_point": "Géographes français"}, {"authorized_access_point": "Historiens français"}, {"authorized_access_point": "Hommes d'affaires français"}, {"authorized_access_point": "Humanistes français"}, {"authorized_access_point": "Ingénieurs français"}, {"authorized_access_point": "Ingénieurs militaires français"}, {"authorized_access_point": "Intellectuels français"}, {"authorized_access_point": "Joueurs de basket-ball français"}, {"authorized_access_point": "Joueurs de football français"}, {"authorized_access_point": "Journalistes français"}, {"authorized_access_point": "Juifs français"}, {"authorized_access_point": "Marins français"}, {"authorized_access_point": "Médecins français"}, {"authorized_access_point": "Militaires français"}, {"authorized_access_point": "Mormons français"}, {"authorized_access_point": "Otages français"}, {"authorized_access_point": "Pharmaciens français"}, {"authorized_access_point": "Pilotes militaires français"}, {"authorized_access_point": "Pirates français"}, {"authorized_access_point": "Prisonniers français"}, {"authorized_access_point": "Protestants français"}, {"authorized_access_point": "Réfugiés français"}, {"authorized_access_point": "Religieux français"}, {"authorized_access_point": "Restaurateurs (alimentation) français"}, {"authorized_access_point": "Royalistes français"}, {"authorized_access_point": "Savants français"}, {"authorized_access_point": "Scientifiques français"}, {"authorized_access_point": "Travailleurs étrangers français"}, {"authorized_access_point": "Viticulteurs français"}, {"authorized_access_point": "Voyageurs français"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85051757", "source": "LCSH"}, "authorized_access_point": "French"}, {"source": "RVMLaval", "authorized_access_point": "Français"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027227219", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb133183184", "source": "BNF"}], "classification": [{"name": "Ethnologie, anthropologie, folklore", "type": "bf:ClassificationDdc", "classificationPortion": "390"}], "authorized_access_point": "Français"} 1 -2023-08-08 13:37:37.423816 2023-08-08 13:37:37.42382 f4711140-6695-45e4-a13f-8afc376b6d02 {"md5": "4a137d0e50b4305a51ba4e4a370a1d9e", "pid": "027235548", "note": [{"label": ["Nouveau petit Robert 2010", "Le nouveau Théo : l'encycl. catholique pour tous / M. Dubost, S. Lalanne, 2009", "Dict. des mots de la foi chrétienne / O. de la Brosse, A. M. Henry, P. Rouillard, 1992", "Dict. encyclopédique du judaïsme / G. Wigoder, 1993", "Dict. du Coran / M. A. Amir-Moezzi, 2007"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les documents sur le jeûne comme pratique religieuse. Les documents sur le jeûne pratiqué dans un but hygiénique ou thérapeutique se trouvent sous Diète", "Peut se subdiviser par religion, confession ou secte"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ascèse"}, {"authorized_access_point": "Ascétisme"}], "related": [{"authorized_access_point": "Carême"}, {"authorized_access_point": "Diète"}, {"authorized_access_point": "Grèves de la faim"}, {"authorized_access_point": "Pénitence"}, {"authorized_access_point": "Vrata"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Jeûne - Islam"}, {"authorized_access_point": "Jeûne fédéral"}, {"authorized_access_point": "Respirianisme"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85047403", "source": "LCSH"}, "authorized_access_point": "Fasting"}, {"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2003003108", "source": "LCSH"}, "authorized_access_point": "Fasting -- Religious aspects"}, {"source": "RVMLaval", "authorized_access_point": "Jeûne"}, {"source": "RVMLaval", "authorized_access_point": "Jeûne -- Aspect religieux"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027235548", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119321545", "source": "BNF"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}], "variant_access_point": ["Jeûne - Aspect religieux", "Jeûne religieux"], "authorized_access_point": "Jeûne"} 1 -2023-08-08 13:37:37.472766 2023-08-08 13:37:37.47277 24764221-a437-40ab-92f2-81709d3cd66a {"md5": "ed278d06425b22322bab28cde431bee3", "pid": "027236226", "note": [{"label": ["Encycl. universalis - http://www.universalis-edu.com (2019-04-19)", "Dict. des sciences du langage / F. Neveu, 2011", "Dict. de linguistique et des sciences du langage, 1994", "Nouveau dict. encyclopédique des sciences du langage / O. Ducrot, J.-M. Schaeffer, 1995"], "noteType": "dataSource"}, {"label": ["Processus de perception et de production du langage chez l'enfant"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Biolinguistique"}, {"authorized_access_point": "Neurolinguistique"}, {"authorized_access_point": "Psycholinguistique"}, {"authorized_access_point": "Psychologie de l'apprentissage"}], "related": [{"authorized_access_point": "Acquisition linguistique"}, {"authorized_access_point": "Enfants - Langage"}, {"authorized_access_point": "Langage"}, {"authorized_access_point": "Langage - Compréhension"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Innéisme (linguistique)"}, {"authorized_access_point": "Reconnaissance des mots"}, {"authorized_access_point": "Tableaux d'élocution"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85074511", "source": "LCSH"}, "authorized_access_point": "Language acquisition"}, {"source": "RVMLaval", "authorized_access_point": "Langage -- Acquisition"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027236226", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11932215j", "source": "BNF"}], "classification": [{"name": "Psychologie, psychanalyse", "type": "bf:ClassificationDdc", "classificationPortion": "150"}, {"type": "bf:ClassificationDdc", "classificationPortion": "401"}], "variant_access_point": ["Apprentissage verbal", "Enfants - Langage -- Acquisition", "Langage - Acquisition", "Langage - Apprentissage", "Langue maternelle, Acquisition de la"], "authorized_access_point": "Acquisition du langage"} 1 -2023-08-08 13:37:37.519422 2023-08-08 13:37:37.519424 ffb81954-7944-4fd0-8837-c7be39605ac6 {"md5": "e063396caed42ca1b11fdc3957dafad3", "pid": "027243087", "note": [{"label": ["Trésor de la langue française : rythmanalyse - http://atilf.atilf.fr (2022-04-06)", "Vocabulaire d'esthétique / É. Souriau, 1990", "Les notions philosophiques / S. Auroux, 1990", "Dict. de la linguistique / G. Mounin, 1974", "Dict. de linguistique et des sciences du langage, 1994", "Dict. de rhétorique et de poétique / M. Aquin, G. Molinié, 1999", "Dict. des termes littéraires, 2005"], "noteType": "dataSource"}, {"label": ["S'emploie également en subdivision. Cette subdivision s'applique aux langues vivantes, par ex. : Français (langue) -- Rythme"], "noteType": "general"}, {"label": ["Voir aussi la subdivision Métrique et rythmique aux langues anciennes, par ex. : Grec (langue) -- Métrique et rythmique"], "noteType": "seeReference"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Esthétique"}, {"authorized_access_point": "Poétique"}, {"authorized_access_point": "Prosodie (linguistique)"}], "related": [{"authorized_access_point": "Métrique et rythmique"}, {"authorized_access_point": "Mouvement (esthétique)"}, {"authorized_access_point": "Musique - Mesure et rythme"}, {"authorized_access_point": "Répétition (esthétique)"}, {"authorized_access_point": "Versification"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85074534", "source": "LCSH"}, "authorized_access_point": "Language and languages--Rhythm"}, {"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh00007545", "source": "LCSH"}, "authorized_access_point": "Rhythm"}, {"source": "RVMLaval", "authorized_access_point": "Langage et langues--Rythme"}, {"source": "RVMLaval", "authorized_access_point": "Rythme"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027243087", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11932811t", "source": "BNF"}], "classification": [{"name": "Philosophie", "type": "bf:ClassificationDdc", "classificationPortion": "100"}, {"type": "bf:ClassificationDdc", "classificationPortion": "401"}, {"name": "Arts", "type": "bf:ClassificationDdc", "classificationPortion": "700"}, {"name": "Poésie", "type": "bf:ClassificationDdc", "classificationPortion": "801"}], "variant_access_point": ["Rythmanalyse", "Rythme (esthétique)", "Rythme (linguistique)", "Rythme (poétique)", "Rythmique"], "authorized_access_point": "Rythme"} 1 -2023-08-08 13:37:37.57534 2023-08-08 13:37:37.575344 a3b6ade6-9b94-47c7-bd98-553c6e5f5a8a {"md5": "d6f62c7c5e68e1af29b37017fe8f3651", "pid": "027246655", "note": [{"label": ["Les notions philosophiques / S. Auroux, 1990", "Encycl. de la philosophie, 2002", "Grand dict. de la philosophie / M. Blay, 2003", "Dict. de philosophie / C. Godin, 2004"], "noteType": "dataSource"}, {"label": ["S'emploie également en subdivision"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Philosophie - 20e siècle"}], "related": [{"authorized_access_point": "Anthropologie phénoménologique"}, {"authorized_access_point": "Chair (philosophie)"}, {"authorized_access_point": "Phénoménologie de l'art"}, {"authorized_access_point": "Phénoménologie et littérature"}, {"authorized_access_point": "Phénoménologie et musique"}, {"authorized_access_point": "Psychologie phénoménologique"}, {"authorized_access_point": "Sociologie et phénoménologie"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85046373", "source": "LCSH"}, "authorized_access_point": "Existential phenomenology"}, {"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85100683", "source": "LCSH"}, "authorized_access_point": "Phenomenology"}, {"source": "RVMLaval", "authorized_access_point": "Phénoménologie"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027246655", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11933094c", "source": "BNF"}], "classification": [{"name": "Philosophie", "type": "bf:ClassificationDdc", "classificationPortion": "100"}], "variant_access_point": ["Contribution à la phénoménologie", "Phénoménologie existentielle", "Phénoménologie transcendantale", "Philosophie phénoménologique"], "authorized_access_point": "Phénoménologie"} 1 -2023-08-08 13:37:37.830993 2023-08-08 13:37:37.830996 6386658a-b2b6-4041-9285-049b23e86833 {"md5": "5f605d4f6998394e05e4863417bdbe20", "pid": "027328295", "note": [{"label": ["Cent ans de méthodes de lecture / C. Juanéda-Albarède, 1998"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Lecture - Étude et enseignement"}], "related": [{"authorized_access_point": "Lecture - Enseignement assisté par ordinateur"}, {"authorized_access_point": "Lecture - Étude et enseignement (primaire)"}, {"authorized_access_point": "Tableaux d'élocution"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Lecture - Méthode analytique"}, {"authorized_access_point": "Lecture - Méthode mixte"}, {"authorized_access_point": "Lecture - Méthode synthétique"}, {"authorized_access_point": "Jeux de lecture"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85111662", "source": "LCSH"}, "authorized_access_point": "Reading"}, {"source": "RVMLaval", "authorized_access_point": "Lecture"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027328295", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11939438f", "source": "BNF"}], "classification": [{"name": "Education et enseignement", "type": "bf:ClassificationDdc", "classificationPortion": "370"}, {"type": "bf:ClassificationDdc", "classificationPortion": "401"}], "variant_access_point": ["Méthodes d'apprentissage de la lecture", "Méthodes de lecture"], "authorized_access_point": "Lecture - Méthodes d'apprentissage"} 1 -2023-08-08 13:37:37.635909 2023-08-08 13:37:37.635913 cfd2fa00-c337-495e-aaec-4c186b4f7876 {"md5": "d2214f3706c427c56628cda6898c7d4e", "pid": "027256251", "note": [{"label": ["Grand Larousse universel", "Encycl. universalis, 1989", "Dict. sanskrit-français / N. Stchoupak, L. Nitti, L. Renou, 1972", "L'Inde classique : manuel des études indiennes. Tome 2 / L. Renou, J. Filliozat, 1952 (§ 1445-1459)", "Dict. de la civilisation indienne / L. Frédéric, 1987", "Les notions philosophiques / S. Auroux, 1990", "Dict. de la sagesse orientale, 1995", "La philosophie indienne / F. Chenet, 1998", "Les philosophies de l'Inde / J. Filliozat, 2006", "BnF Service indien, 2017-05-15"], "noteType": "dataSource"}, {"label": ["\\"Fait de lier, de mettre au joug ; jonction\\" ; discipline spirituelle ; école de philosophie hindoue", "Sous cette vedette, on trouve les documents sur le yoga en général et en tant que doctrine formant l'un des six systèmes philosophiques (darśana) reconnus par l'orthodoxie brahmanique. Les documents sur le yoga physique qui privilégie les exercices de postures et de respiration se trouvent sous Hatha-yoga"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Philosophie hindoue"}], "related": [{"authorized_access_point": "Christianisme et yoga"}, {"authorized_access_point": "Méditation - Hindouisme"}, {"authorized_access_point": "Yogis"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Hatha-yoga"}, {"authorized_access_point": "Jñāna-yoga"}, {"authorized_access_point": "Karma-yoga"}, {"authorized_access_point": "Kriyā-yoga"}, {"authorized_access_point": "Laya-yoga"}, {"authorized_access_point": "Rāja-yoga"}, {"authorized_access_point": "Siddha Yoga"}, {"authorized_access_point": "Swara-yoga"}, {"authorized_access_point": "Yoga nidra"}, {"authorized_access_point": "Yoga tantrique"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85149174", "source": "LCSH"}, "authorized_access_point": "Yoga"}, {"source": "RVMLaval", "authorized_access_point": "Yoga"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027256251", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11933824d", "source": "BNF"}], "classification": [{"name": "Philosophie", "type": "bf:ClassificationDdc", "classificationPortion": "100"}, {"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}], "variant_access_point": ["Yoga - Aspect religieux"], "authorized_access_point": "Yoga"} 1 -2023-08-08 13:37:37.690248 2023-08-08 13:37:37.690252 ba76549e-5f28-40bd-8b9e-bdfe59670832 {"md5": "7f61058f216df78b1cc41c9e52ec2471", "pid": "027287289", "note": [{"label": ["S'emploie également en subdivision"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Mariage"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Conciliation (divorce)"}, {"authorized_access_point": "Divorcés"}, {"authorized_access_point": "Enfants de divorcés"}, {"authorized_access_point": "Remariage"}, {"authorized_access_point": "Répudiation"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85038616", "source": "LCSH"}, "authorized_access_point": "Divorce"}, {"source": "RVMLaval", "authorized_access_point": "Divorce"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027287289", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11936233f", "source": "BNF"}], "classification": [{"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}, {"name": "Droit", "type": "bf:ClassificationDdc", "classificationPortion": "340"}], "variant_access_point": ["Démariage", "Dissolution du mariage", "Mariage - Dissolution"], "authorized_access_point": "Divorce"} 1 -2023-08-08 13:37:37.738085 2023-08-08 13:37:37.738089 2715cfbd-d469-4ed6-bfba-d9faf31e435c {"md5": "c36ae06c89d379f470125bd7b1dc8cf7", "pid": "027294358", "note": [{"label": ["Grand Larousse universel", "Encycl. universalis - http://www.universalis-edu.com (2013-10-24)", "Dict. universel des littératures / B. Didier, 1994", "Dict. des termes littéraires, 2005 : beat"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Contre-culture"}, {"authorized_access_point": "Mouvements littéraires - États-Unis"}, {"authorized_access_point": "Littérature américaine - 1945-2000"}], "related": [{"authorized_access_point": "Cut-up"}, {"authorized_access_point": "Psychédélisme"}, {"authorized_access_point": "Spoken word (poésie)"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh88007452", "source": "LCSH"}, "authorized_access_point": "Beat generation"}, {"source": "RVMLaval", "authorized_access_point": "Beat generation"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027294358", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11936777f", "source": "BNF"}], "classification": [{"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}, {"name": "Poésie", "type": "bf:ClassificationDdc", "classificationPortion": "801"}], "variant_access_point": ["Beatniks", "Génération beat"], "authorized_access_point": "Beat generation"} 1 -2023-08-08 13:37:37.784705 2023-08-08 13:37:37.784708 5c4676d3-8ef4-4d31-96fa-dab230df8905 {"md5": "ac666da0dce8ee13821ae5154f6b6895", "pid": "02730440X", "note": [{"label": ["Trésor de la langue française", "Dict. encyclopédique des sciences du langage / O. Ducrot, T. Todorov, 1972", "Dict. de linguistique et des sciences du langage, 1994"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Discours (linguistique)"}, {"authorized_access_point": "Pragmatique"}], "related": [{"authorized_access_point": "Actes de langage"}, {"authorized_access_point": "Actualisation (linguistique)"}, {"authorized_access_point": "Deixis"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Consignes (éducation)"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Énonciation (linguistique)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02730440X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11937549w", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "401"}], "variant_access_point": ["Linguistique de l'énonciation", "Linguistique énonciative"], "authorized_access_point": "Énonciation (linguistique)"} 1 -2023-08-08 13:37:38.814637 2023-08-08 13:37:38.814639 d75cb1aa-6ca9-42b9-b90a-e9497d4fab0b {"md5": "bbd11b5f4fb23abfec48cd81c8b9598c", "pid": "02770940X", "note": [{"label": ["Grand Larousse universel", "Nouveau petit Robert 2008"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bijoux"}], "related": [{"authorized_access_point": "Montres-bracelets"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Bracelets brésiliens"}, {"authorized_access_point": "Bracelets préhistoriques"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85016233", "source": "LCSH"}, "authorized_access_point": "Bracelets"}, {"source": "RVMLaval", "authorized_access_point": "Bracelets"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02770940X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11969386n", "source": "BNF"}], "classification": [{"name": "Dessin, arts décoratifs, artisanat d'art", "type": "bf:ClassificationDdc", "classificationPortion": "740"}], "authorized_access_point": "Bracelets (bijoux)"} 1 -2023-08-08 13:37:37.885557 2023-08-08 13:37:37.885561 9abb3632-b40d-4c2c-99ba-354baccb7ddf {"md5": "4af248718ed5499456ada7e538b2e087", "pid": "027354431", "note": [{"label": ["Le corps, l'âme, l'esprit : introduction à une anthropologie phénoménologique / C. A. van Peursen, 1979", "Corps, âme, esprit : colloque international, Cerisy-la-Salle, 1999", "Le corps et l'esprit / R. Quilliot, 2003", "Grand dict. de la philosophie / M. Blay, 2003 (art. : Corps)"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les documents sur la relation entre l'esprit et le corps, conçus comme substances métaphysiques. Les documents sur le concept métaphysique d'esprit se trouvent sous Esprit. Les documents sur l'étude contemporaine des phénomènes mentaux, associant philosophie et recherche scientifique, se trouvent sous Philosophie de l'esprit"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Métaphysique"}, {"authorized_access_point": "Philosophie de l'homme"}], "related": [{"authorized_access_point": "Chair (philosophie)"}, {"authorized_access_point": "Corps (philosophie)"}, {"authorized_access_point": "Esprit"}, {"authorized_access_point": "Guérison par l'esprit"}, {"authorized_access_point": "Médecine holistique"}, {"authorized_access_point": "Médecine psychosomatique"}, {"authorized_access_point": "Occasionnalisme"}, {"authorized_access_point": "Parapsychologie"}, {"authorized_access_point": "Philosophie de l'esprit"}, {"authorized_access_point": "Phrénologie"}, {"authorized_access_point": "Psychiatrie biologique"}, {"authorized_access_point": "Psychophysiologie"}, {"authorized_access_point": "Spiritualisme"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Esprit et cerveau"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85085488", "source": "LCSH"}, "authorized_access_point": "Mind and body"}, {"source": "RVMLaval", "authorized_access_point": "Esprit et corps"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027354431", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11941447p", "source": "BNF"}], "classification": [{"name": "Philosophie", "type": "bf:ClassificationDdc", "classificationPortion": "100"}], "variant_access_point": ["Âme et corps", "Corps et âme", "Corps et esprit"], "authorized_access_point": "Esprit et corps"} 1 -2023-08-08 13:37:37.961781 2023-08-08 13:37:37.961784 98baff3c-7e31-4f88-825c-7b6d563e9e0b {"md5": "d2f52ba71d463ec6faf99465b88ff0d3", "pid": "027366669", "note": [{"label": ["Grand Larousse universel", "Encycl. universalis : hassidisme moderne - http://www.universalis-edu.com (2016-04-06)", "Dict. encycl. du judaïsme / G. Wigoder, 1993"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les documents sur le courant mystique juif moderne fondé au 18e siècle en Podolie par le Baal Chem Tov. Les documents sur le courant mystique juif médiéval se trouvent sous Hassidisme médiéval. Les documents sur la secte juive - et ses membres - née au 4e-3e siècle avant J.-C. se trouvent sous Hassidéens"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sectes juives"}], "related": [{"authorized_access_point": "Hassidim"}, {"authorized_access_point": "Hassidisme médiéval"}, {"authorized_access_point": "Judaïsme ultra-orthodoxe"}, {"authorized_access_point": "Mitnagdim"}, {"authorized_access_point": "Mystique - Judaïsme"}, {"authorized_access_point": "Légendes hassidiques"}, {"authorized_access_point": "Littérature hassidique"}, {"authorized_access_point": "Nigunim"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Dix-neuf de Kislev"}, {"authorized_access_point": "Habad"}, {"authorized_access_point": "Hassidim de Bobova"}, {"authorized_access_point": "Hassidim de Bratslav"}, {"authorized_access_point": "Hassidim de Gour"}, {"authorized_access_point": "Hassidim de Grodzisk"}, {"authorized_access_point": "Hassidim de Karlin"}, {"authorized_access_point": "Hassidim de Kotzk"}, {"authorized_access_point": "Hassidim de Pshiskha"}, {"authorized_access_point": "Hassidim de Ropshits-Dzików"}, {"authorized_access_point": "Hassidim de Ruzhin"}, {"authorized_access_point": "Hassidim de Sadigura"}, {"authorized_access_point": "Hassidim de Satmar"}, {"authorized_access_point": "Hassidim de Skvira"}, {"authorized_access_point": "Hassidim de Tchernobyl"}, {"authorized_access_point": "Hassidim de Zanz"}, {"authorized_access_point": "Hassidim de Zolochev"}, {"authorized_access_point": "Saddikim"}, {"authorized_access_point": "Shomer Emunim"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85059241", "source": "LCSH"}, "authorized_access_point": "Hasidism"}, {"source": "RVMLaval", "authorized_access_point": "Hassidisme"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027366669", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119423798", "source": "BNF"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}], "variant_access_point": ["Chassidisme", "Dynasties hassidiques", "H̲asidout", "Hassidisme moderne", "Mouvement hassidique"], "authorized_access_point": "Hassidisme"} 1 -2023-08-08 13:37:38.044609 2023-08-08 13:37:38.044612 ef11c0c0-edb0-4216-919e-a43bf2aee518 {"md5": "fdec54c0472a9b570efc188c04de5351", "pid": "027389782", "note": [{"label": ["Les métiers de la mer / N. Deladieu, E. Pierre, 2004", "Guide des métiers de la mer : 100 métiers pour demain / Association pour la promotion des métiers de la mer, 2003 [ressource électronique]"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mer et civilisation"}, {"authorized_access_point": "Métiers"}], "related": [{"authorized_access_point": "Mer"}, {"authorized_access_point": "Plongeurs sous-marins"}, {"authorized_access_point": "Ressources marines"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Armateurs"}, {"authorized_access_point": "Charpentiers de marine"}, {"authorized_access_point": "Gardiens de phare"}, {"authorized_access_point": "Goémoniers"}, {"authorized_access_point": "Marins"}, {"authorized_access_point": "Océanographes"}, {"authorized_access_point": "Paludiers"}, {"authorized_access_point": "Pêcheurs"}, {"authorized_access_point": "Prud'homies de pêche"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Métiers de la mer"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027389782", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119442304", "source": "BNF"}], "classification": [{"name": "Economie", "type": "bf:ClassificationDdc", "classificationPortion": "330"}], "variant_access_point": ["Mer, Métiers de la", "Ressources marines - Orientation professionnelle", "Travailleurs de la mer"], "authorized_access_point": "Métiers de la mer"} 1 -2023-08-08 13:37:38.138792 2023-08-08 13:37:38.138796 b6fbfec4-1100-44ca-bb94-e7a0ca002052 {"md5": "2f7b62eb1d92a80d9aad031883361398", "pid": "027430162", "note": [{"label": ["Mémoire et compréhension du langage / M.-F. Ehrlich, 1994", "Psychologie de la compréhension du langage / J.-P. Rossi, 2009", "The process of language understanding / G. B. Flores d'Arcais, R. J. Jarvella, 1995"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Compréhension"}, {"authorized_access_point": "Psycholinguistique"}], "related": [{"authorized_access_point": "Consignes (éducation)"}, {"authorized_access_point": "Acquisition du langage"}, {"authorized_access_point": "Langage"}, {"authorized_access_point": "Sémantique et psychologie"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Intercompréhension (linguistique)"}, {"authorized_access_point": "Reconnaissance des mots"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85126440", "source": "LCSH"}, "authorized_access_point": "Speech, Intelligibility of"}, {"source": "RVMLaval", "authorized_access_point": "Langage--Intelligibilité"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027430162", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11947331g", "source": "BNF"}], "classification": [{"name": "Psychologie, psychanalyse", "type": "bf:ClassificationDdc", "classificationPortion": "150"}, {"type": "bf:ClassificationDdc", "classificationPortion": "401"}], "variant_access_point": ["Compréhension de la parole", "Compréhension des langues", "Compréhension du langage", "Langage - Intelligibilité", "Langues - Compréhension", "Parole - Compréhension"], "authorized_access_point": "Langage - Compréhension"} 1 -2023-08-08 13:37:38.874858 2023-08-08 13:37:38.874863 ef8f49c4-98d4-4e5a-af45-fdb916daf346 {"md5": "28eb1ee05b8e00d06f2d9cf3f851ed01", "pid": "027741060", "note": [{"label": ["Lexique de politique Dalloz, 1992", "Lexique des termes juridiques Dalloz 2015-2016 / S. Guinchard, T. Debard, 2015 (art. : Délégation de pouvoir) : délégation de pouvoir (droit administratif)"], "noteType": "dataSource"}, {"label": ["Acte par lequel un organe transfère une partie de ses compétences à un autre organe"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Droit administratif"}, {"authorized_access_point": "Droit constitutionnel"}, {"authorized_access_point": "Science politique"}], "related": [{"authorized_access_point": "Missi dominici"}, {"authorized_access_point": "Séparation des pouvoirs"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Délégation législative"}, {"authorized_access_point": "Pouvoirs exceptionnels"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85036563", "source": "LCSH"}, "authorized_access_point": "Delegation of powers"}, {"source": "RVMLaval", "authorized_access_point": "Délégation des pouvoirs (Droit administratif)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027741060", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb133189868", "source": "BNF"}], "classification": [{"name": "Sciences politiques", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Droit", "type": "bf:ClassificationDdc", "classificationPortion": "340"}], "variant_access_point": ["Délégation (science politique)", "Délégation de compétence (science politique)", "Délégation des pouvoirs (droit administratif)", "Délégations de pouvoir administratif", "Délégations de signature"], "authorized_access_point": "Délégation des pouvoirs (science politique)"} 1 -2023-08-08 13:37:38.238732 2023-08-08 13:37:38.238736 b4d49233-7c96-4c4d-ac16-c339f1dabd38 {"md5": "219dd52d0c5f224379cd589be5877c81", "pid": "027488462", "note": [{"label": ["Trésor de la langue française", "Dict. Jésus / École biblique et archéologique française de Jérusalem, 2021 (art. : Union hypostatique ; art. : Communication des idiomes)", "Les mots du christianisme / Le Tourneau, 2005 (art. : Union hypostatique ; art. : Communication des idiomes)", "L'union avec Christ chez Calvin / S. K. Kim, 2013 [thèse] - https://tel.archives-ouvertes.fr (2022-05-17)"], "noteType": "dataSource"}, {"label": ["En la personne du Christ se trouvent unies la nature divine et la nature humaine : c'est l'union hypostatique ; les propriétés relatives à chacune de ces deux natures du Christ entrent en communication à travers sa personne"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Incarnation (christianisme)"}, {"authorized_access_point": "Périchorèse"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85063813", "source": "LCSH"}, "authorized_access_point": "Hypostatic union"}, {"source": "RVMLaval", "authorized_access_point": "Union hypostatique"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027488462", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11951728f", "source": "BNF"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}], "variant_access_point": ["Communication des attributs", "Communication des idiomes", "Communication des propriétés", "Communicatio idiomatum"], "authorized_access_point": "Union hypostatique"} 1 -2023-08-08 13:37:38.327061 2023-08-08 13:37:38.327065 60f21845-3787-4928-98bb-4ab3645602a9 {"md5": "d88d4f6786871f4b7a24054cbcf6c5dd", "pid": "02750610X", "note": [{"label": ["S'emploie également en subdivision"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Documentation technique"}, {"authorized_access_point": "Machines"}, {"authorized_access_point": "Produits industriels"}, {"authorized_access_point": "Propriété industrielle"}], "related": [{"authorized_access_point": "Concurrence déloyale"}, {"authorized_access_point": "Dessins et modèles"}, {"authorized_access_point": "Inventions"}, {"authorized_access_point": "Savoir-faire industriel"}], "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Échanges de brevets d'invention et d'information technique"}, {"authorized_access_point": "Marques de commerce"}, {"authorized_access_point": "Obtentions végétales (droit)"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85098655", "source": "LCSH"}, "authorized_access_point": "Patents"}, {"source": "RVMLaval", "authorized_access_point": "Brevets d'invention"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02750610X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13318750q", "source": "BNF"}], "classification": [{"name": "Droit", "type": "bf:ClassificationDdc", "classificationPortion": "340"}], "variant_access_point": ["Brevets (droit commercial)", "Certificats d'addition", "Certificats d'utilité", "Délivrance de brevet", "Dépôt de brevet", "Modèles d'utilité"], "authorized_access_point": "Brevets d'invention"} 1 -2023-08-08 13:37:38.417317 2023-08-08 13:37:38.417322 f28ed9bd-c6b8-457d-b67e-f2713b5f4242 {"md5": "b6a2bec14f8bd1a4226a1f818d649e05", "pid": "027510387", "note": [{"label": ["Dict. de la préhistoire / Encycl. universalis, 1999 (art. : Europe néolithique et protohistorique (art) ; Europe paléolithique (sépultures))", "Dict. de la préhistoire / A. Leroi-Gourhan, 1994 : objets de parure", "La préhistoire / D. Vialou, 2004 : parure"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Antiquités préhistoriques"}, {"authorized_access_point": "Art préhistorique"}, {"authorized_access_point": "Bijoux"}], "related": [{"authorized_access_point": "Orfèvrerie préhistorique"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Bracelets préhistoriques"}, {"authorized_access_point": "Fibules"}, {"authorized_access_point": "Torques"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85070226", "source": "LCSH"}, "authorized_access_point": "Jewelry, Prehistoric"}, {"source": "RVMLaval", "authorized_access_point": "Bijoux préhistoriques"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027510387", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119534539", "source": "BNF"}], "classification": [{"name": "Dessin, arts décoratifs, artisanat d'art", "type": "bf:ClassificationDdc", "classificationPortion": "740"}, {"name": "Préhistoire et histoire ancienne", "type": "bf:ClassificationDdc", "classificationPortion": "930"}], "variant_access_point": ["Bijoux - Préhistoire", "Bijoux de la préhistoire", "Parures préhistoriques", "Pendeloques préhistoriques"], "authorized_access_point": "Bijoux préhistoriques"} 1 -2023-08-08 13:37:38.484189 2023-08-08 13:37:38.484196 b04286af-15e1-48c9-b86e-9758c3b008eb {"md5": "2c8e61ff74e0200b11c2a97449bb2a93", "pid": "027599701", "note": [{"label": ["Grand Larousse universel", "Grand Robert de la langue française, 2001", "Dict. encylopédique des sciences de l'information et de la communication / B. Lamizet, A. Silem, 1997 (art. : Radio)"], "noteType": "dataSource"}, {"label": ["Diffusion au moyen d'ondes radioélectriques, d'émissions de radio ou de télévision destinées au public", "S'emploie également en subdivision"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Médias audiovisuels"}, {"authorized_access_point": "Télécommunications"}], "related": [{"authorized_access_point": "Femmes dans l'industrie de la radiodiffusion"}, {"authorized_access_point": "Journalisme radiophonique"}, {"authorized_access_point": "Politique de la radiodiffusion"}, {"authorized_access_point": "Radiodiffusion des débats"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Publicité radiophonique"}, {"authorized_access_point": "Radio"}, {"authorized_access_point": "Radio - Émetteurs et transmission"}, {"authorized_access_point": "Radio numérique"}, {"authorized_access_point": "Radiodiffusion en modulation de fréquence"}, {"authorized_access_point": "Radiodiffusion en ondes décamétriques"}, {"authorized_access_point": "Radiodiffusion internationale"}, {"authorized_access_point": "Radiofréquences"}, {"authorized_access_point": "Télévision"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Radiodiffusion"}, {"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85110448", "source": "LCSH"}, "authorized_access_point": "Radio broadcasting"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027599701", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119604993", "source": "BNF"}], "classification": [{"name": "Sciences de l'information", "type": "bf:ClassificationDdc", "classificationPortion": "020"}, {"name": "Economie", "type": "bf:ClassificationDdc", "classificationPortion": "330"}, {"name": "Audiovisuel", "type": "bf:ClassificationDdc", "classificationPortion": "791"}], "variant_access_point": ["Dans l'industrie de la radiodiffusion", "Diffusion radiophonique", "Industrie de la radiodiffusion", "Radio-diffusion", "Radiocommunication à usage public", "Radiocommunications à usage public", "Radiodiffusion - Industrie et commerce", "Radiophonie", "Réseaux de radiodiffusion"], "authorized_access_point": "Radiodiffusion"} 1 -2023-08-08 13:37:40.460464 2023-08-08 13:37:40.46047 228eb790-1a84-426d-ae8b-35816fbf4425 {"md5": "4e0ecdf71a2ea0fc4547416754fe58fc", "pid": "029560020", "note": [{"label": ["S'emploie uniquement en subdivision"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Hommes politiques"}, {"authorized_access_point": "Constitutions"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029560020", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb121160279", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "305"}, {"name": "Sciences politiques", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Droit", "type": "bf:ClassificationDdc", "classificationPortion": "340"}], "variant_access_point": ["Rédacteurs"], "authorized_access_point": "Rédacteurs (droit)"} 1 -2023-08-08 13:37:38.554189 2023-08-08 13:37:38.554192 48dc1eab-56df-4e20-99d4-2080c2d418a7 {"md5": "6e13625f1698d806350b3a56545c78f8", "pid": "027652254", "note": [{"label": ["Grand Robert de la langue française, 2001", "Trésor de la langue française"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Patronnage (couture)"}], "related": [{"authorized_access_point": "Vêtements - Coupe"}], "bnf_type": "genre/forme Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85039519", "source": "LCSH"}, "authorized_access_point": "Dressmaking--Patterns"}, {"source": "RVMLaval", "authorized_access_point": "Couture (Profession) -- Modèles"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027652254", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119648697", "source": "BNF"}], "classification": [{"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}, {"name": "Economie domestique, hôtellerie", "type": "bf:ClassificationDdc", "classificationPortion": "640"}], "variant_access_point": ["Patrons de couture", "Patrons de vêtements"], "authorized_access_point": "Patrons (couture)"} 1 -2023-08-08 13:37:38.622111 2023-08-08 13:37:38.622115 9a705760-060e-4c6e-ab0e-b22b54d8357f {"md5": "edc45e3c869b725286942327e2428f86", "pid": "027661504", "note": [{"label": ["Les notions philosophiques / S. Auroux, 1990", "Encycl. de la philosophie, 2002", "Grand dict. de la philosophie / M. Blay, 2003", "Dict. de philosophie / C. Godin, 2004"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Philosophie de l'homme"}, {"authorized_access_point": "Philosophie de la nature"}], "related": [{"authorized_access_point": "Âme"}, {"authorized_access_point": "Corps"}, {"authorized_access_point": "Corps humain"}, {"authorized_access_point": "Désir (philosophie)"}, {"authorized_access_point": "Esprit et corps"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Chair (philosophie)"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85015235", "source": "LCSH"}, "authorized_access_point": "Human body (Philosophy)"}, {"source": "RVMLaval", "authorized_access_point": "Corps humain (Philosophie)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027661504", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11965587k", "source": "BNF"}], "classification": [{"name": "Philosophie", "type": "bf:ClassificationDdc", "classificationPortion": "100"}], "variant_access_point": ["Corps - Philosophie", "Corps humain - Philosophie", "Corps humain (philosophie)"], "authorized_access_point": "Corps (philosophie)"} 1 -2023-08-08 13:37:38.669219 2023-08-08 13:37:38.669222 90bf29e4-14ae-4ede-b9d6-2fae39e72794 {"md5": "47bcc613c99f4492a0b818ddb15e7007", "pid": "027675823", "note": [{"label": ["Grand Larousse universel", "Les langues du monde / M. Sala, I. Vintila-Radulescu, 1984", "L'aventure des langues en Occident / H. Walter, 1994", "L'aménagement linguistique dans le monde : luxembourgeois ; francique luxembourgeois - http://www.tlfq.ulaval.ca (2009-01-08)", "Redde-n-ihr Plàtt? : francique luxembourgeois - http://projetbabel.org (2009-01-08)", "Ethnologue (15th ed.) - http://www.ethnologue.com (2006-09-12)"], "noteType": "dataSource"}, {"label": ["Dialecte allemand parlé dans le grand-duché de Luxembourg. Il s'est développé à partir du francique mosellan"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Dialectes franciques"}], "related": [{"authorized_access_point": "Dictionnaires luxembourgeois"}, {"authorized_access_point": "Francique mosellan (dialecte)"}, {"authorized_access_point": "Chansons luxambourgeoises"}, {"authorized_access_point": "Littérature luxembourgeoise"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2003005414", "source": "LCSH"}, "authorized_access_point": "Luxembourgish language"}, {"source": "RVMLaval", "authorized_access_point": "Luxembourgeois (langue)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027675823", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119667950", "source": "BNF"}], "classification": [{"name": "Langues et linguistique", "type": "bf:ClassificationDdc", "classificationPortion": "400"}], "variant_access_point": ["Allemand (langue) - Dialectes - Luxembourg", "Francique luxembourgeois (langue)", "Letzburgisch (langue)", "Lëtzebuergesch (langue)", "Luxemburgisch (langue)"], "authorized_access_point": "Luxembourgeois (langue)"} 1 -2023-08-08 13:37:38.720403 2023-08-08 13:37:38.720406 ea6db838-8cc7-42fb-8fcb-ea9c8867400a {"md5": "e1e888afbb27bd73c4f6198f5c0158d2", "pid": "027688739", "note": [{"label": ["S'emploie également en subdivision"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Commerce extérieur - Droit"}, {"authorized_access_point": "Concurrence internationale"}, {"authorized_access_point": "Politique commerciale"}, {"authorized_access_point": "Traités"}], "related": [{"authorized_access_point": "Commerce"}, {"authorized_access_point": "Réciprocité (droit)"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Accords commerciaux préférentiels"}, {"authorized_access_point": "Accords internationaux sur les licences"}, {"authorized_access_point": "Clause de la nation la plus favorisée"}, {"authorized_access_point": "Traitement national (droit international)"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh99001405", "source": "LCSH"}, "authorized_access_point": "Commercial treaties"}, {"source": "RVMLaval", "authorized_access_point": "Accords commerciaux"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027688739", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119677659", "source": "BNF"}], "classification": [{"name": "Economie", "type": "bf:ClassificationDdc", "classificationPortion": "330"}, {"name": "Droit", "type": "bf:ClassificationDdc", "classificationPortion": "340"}], "variant_access_point": ["Accords économiques", "Accords tarifaires", "Commerce extérieur - Accords", "Conventions commerciales", "Traités commerciaux", "Traités de commerce"], "authorized_access_point": "Accords commerciaux"} 1 -2023-08-08 13:37:38.767363 2023-08-08 13:37:38.767366 660a5aeb-ae05-4151-b483-6121a347c9fd {"md5": "616e32f9ccaf4a0d42c287bb0463738e", "pid": "027699870", "note": [{"label": ["Sous cette vedette, on trouve les recueils de littérature araméenne de divers genres"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature sémitique"}], "related": [{"authorized_access_point": "Araméen (langue)"}, {"authorized_access_point": "Philologie araméenne"}], "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Littérature populaire araméenne"}, {"authorized_access_point": "Littérature syriaque"}, {"authorized_access_point": "Poésie araméenne"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85006406", "source": "LCSH"}, "authorized_access_point": "Aramaic literature"}, {"source": "RVMLaval", "authorized_access_point": "Littérature araméenne"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027699870", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11968617d", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Littérature araméenne"} 1 -2023-08-08 13:37:38.956127 2023-08-08 13:37:38.956131 942230ad-9848-4f2a-8f3e-7010577ca49b {"md5": "6457a0bb137ac5f26cd7b7b05ea2939a", "pid": "027741125", "note": [{"label": ["Dict. des synonymes et mots de sens voisin / B. du Chazaud, 2003", "Vocabulaire juridique / G. Cornu, 2007", "Lexique des termes juridiques 2015-2016 / S. Guinchard, T. Debard, 2015", "Petit dict. du droit canonique / J. Werckmeister, 1993 : Déposition"], "noteType": "dataSource"}, {"label": ["S'emploie également en subdivision"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Hommes d'État"}, {"authorized_access_point": "Hommes politiques - Responsabilité pénale"}], "related": [{"authorized_access_point": "Crimes et délits politiques"}, {"authorized_access_point": "Parlements (tribunaux)"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Révocation populaire"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85064607", "source": "LCSH"}, "authorized_access_point": "Impeachments"}, {"source": "RVMLaval", "authorized_access_point": "Destitution, Procédure de"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027741125", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119719121", "source": "BNF"}], "classification": [{"name": "Sciences politiques", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Droit", "type": "bf:ClassificationDdc", "classificationPortion": "340"}], "variant_access_point": ["Chefs d'État - Destitution", "Déposition (droit)", "Destitution (droit constitutionnel)", "Destitution, Procédure de", "Hommes politiques - Destitution", "Impeachment", "Mise en accusation des chefs d'État", "Procédure de destitution"], "authorized_access_point": "Destitution"} 1 -2023-08-08 13:37:39.027674 2023-08-08 13:37:39.02768 cdbc2ed0-2a20-4a83-9c2e-81161b9aa4a7 {"md5": "320771ddc84efd97e99ddacbc4d1c197", "pid": "027765369", "note": [{"label": ["Wikipédia - https://fr.wikipedia.org (2022-07-21)", "A lexical atlas of the Hutsul dialects of the Ukrainian language, 1996", "One Europe, many nations : an historical dict. of European national groups / J.-B. Minahan, 2000 (art. : Carpatho-Rusyns) : Hutsuls"], "noteType": "dataSource"}, {"label": ["Population montagnarde vivant essentiellement dans la chaîne des Carpates ukrainiennes et dans les régions voisines de Ruthénie subcarpathique et de Bucovine septentrionale"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ruthènes"}], "related": [{"authorized_access_point": "Trombita"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Houtsoules"}, {"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85062771", "source": "LCSH"}, "authorized_access_point": "Hutsuls"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027765369", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119737855", "source": "BNF"}], "classification": [{"name": "Ethnologie, anthropologie, folklore", "type": "bf:ClassificationDdc", "classificationPortion": "390"}], "variant_access_point": ["Goutsoules", "Guculs", "Gutsules", "Gutsuls", "Gutzuls", "Hootzools", "Houtzoules", "Hucules", "Huculs", "Hutsules", "Hutsuls", "Hutzules", "Hutzuls", "Huzulen", "Huzules", "Huzuls"], "authorized_access_point": "Houtsoules"} 1 -2023-08-08 13:37:39.079256 2023-08-08 13:37:39.079258 8eb81f3a-e1f3-47d7-a724-2a288275f289 {"md5": "09a9aaccee376b61eda9a6d6bdc16363", "pid": "027785084", "note": [{"label": ["Grand Larousse universel", "Trésor de la langue française", "Nouveau petit Robert 2009"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Expression"}, {"authorized_access_point": "Parole"}], "related": [{"authorized_access_point": "Culture vocale"}, {"authorized_access_point": "Diction"}, {"authorized_access_point": "Prononciation"}, {"authorized_access_point": "Tableaux d'élocution"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Ventriloquie"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85042633", "source": "LCSH"}, "authorized_access_point": "Elocution"}, {"source": "RVMLaval", "authorized_access_point": "Élocution"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027785084", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11975298m", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "401"}], "variant_access_point": ["Articulation (élocution)", "Débit (élocution)"], "authorized_access_point": "Élocution"} 1 -2023-08-08 13:37:39.154519 2023-08-08 13:37:39.154523 b90bd685-3be0-45e4-8d8c-2023d72922f3 {"md5": "075f81db93526ddcf819cde9a136500c", "pid": "027805220", "note": [{"label": ["Encycl. universalis - http://www.universalis-edu.com (2018-03-21)", "Encycl. of African-American culture and history / C. A. Palmer, 2005"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les documents sur les citoyens noirs américains. Les documents sur les Noirs résidant aux États-Unis, toutes nationalités confondues, se trouvent sous des vedettes-matière telles que : Noirs -- États-Unis ; Noirs -- [Subdivision de sujet] -- États-Unis ; etc"], "noteType": "general"}, {"label": ["Voir aussi les vedettes du type : [Guerre] -- Noirs américains ; [Force armée] -- Noirs américains, par ex. : États-Unis -- 1861-1865 (Guerre de Sécession) -- Noirs américains", "Voir aussi la subdivision Et les noirs américains aux collectivités et aux personnes"], "noteType": "seeReference"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ethnologie - États-Unis"}, {"authorized_access_point": "Noirs"}], "related": [{"authorized_access_point": "Africains"}, {"authorized_access_point": "Allemands d'origine noire américaine"}, {"authorized_access_point": "Cuisine noire américaine"}, {"authorized_access_point": "Danse noire américaine"}, {"authorized_access_point": "Et les noirs américains"}, {"authorized_access_point": "Fonds spéciaux - Noirs américains"}, {"authorized_access_point": "Franc-maçonnerie noire américaine"}, {"authorized_access_point": "Humour noir américain"}, {"authorized_access_point": "Noirs américains - Conditions sociales"}, {"authorized_access_point": "Noirs américains - Droits"}, {"authorized_access_point": "Noirs américains - Histoire"}, {"authorized_access_point": "Noirs américains - Identité collective"}, {"authorized_access_point": "Noirs américains - Langues"}, {"authorized_access_point": "Noirs américains - Politique et gouvernement"}, {"authorized_access_point": "Noirs américains - Et les Africains"}, {"authorized_access_point": "Noirs américains - Et les Indiens d'Amérique"}, {"authorized_access_point": "Noirs américains - Et les Juifs"}, {"authorized_access_point": "Noirs américains - Religion"}, {"authorized_access_point": "Noirs américains dans la culture populaire"}, {"authorized_access_point": "Philosophie noire américaine"}, {"authorized_access_point": "Presse noire américaine"}, {"authorized_access_point": "Universités noires américaines"}, {"authorized_access_point": "Contes noirs américains"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Cow-boys noirs américains"}, {"authorized_access_point": "Abolitionnistes noirs américains"}, {"authorized_access_point": "Agriculteurs noirs américains"}, {"authorized_access_point": "Anciens combattants noirs américains"}, {"authorized_access_point": "Anthropologues noirs américains"}, {"authorized_access_point": "Artistes noirs américains"}, {"authorized_access_point": "Athlètes noirs américains"}, {"authorized_access_point": "Bibliothécaires noirs américains"}, {"authorized_access_point": "Boxeurs noirs américains"}, {"authorized_access_point": "Cadres noirs américains"}, {"authorized_access_point": "Catholiques noirs américains"}, {"authorized_access_point": "Clergé noir américain"}, {"authorized_access_point": "Coiffeurs noirs américains"}, {"authorized_access_point": "Communistes noirs américains"}, {"authorized_access_point": "Consommateurs noirs américains"}, {"authorized_access_point": "Courtepointiers noirs américains"}, {"authorized_access_point": "Criminels noirs américains"}, {"authorized_access_point": "Diplomates noirs américains"}, {"authorized_access_point": "Économistes noirs américains"}, {"authorized_access_point": "Écrivains noirs américains"}, {"authorized_access_point": "Enfants noirs américains"}, {"authorized_access_point": "Enseignants noirs américains"}, {"authorized_access_point": "Épiscopaliens noirs américains"}, {"authorized_access_point": "Étudiants noirs américains"}, {"authorized_access_point": "Familles noires américaines"}, {"authorized_access_point": "Gullahs"}, {"authorized_access_point": "Historiens noirs américains"}, {"authorized_access_point": "Hommes d'affaires noirs américains"}, {"authorized_access_point": "Hommes politiques noirs américains"}, {"authorized_access_point": "Homosexuels noirs américains"}, {"authorized_access_point": "Intellectuels noirs américains"}, {"authorized_access_point": "Inventeurs noirs américains"}, {"authorized_access_point": "Jeunesse noire américaine"}, {"authorized_access_point": "Joueurs de basket-ball noirs américains"}, {"authorized_access_point": "Journalistes noirs américains"}, {"authorized_access_point": "Juges noirs américains"}, {"authorized_access_point": "Juifs noirs américains"}, {"authorized_access_point": "Marins noirs américains"}, {"authorized_access_point": "Médecins noirs américains"}, {"authorized_access_point": "Méthodistes noirs américains"}, {"authorized_access_point": "Militaires noirs américains"}, {"authorized_access_point": "Militants politiques noirs américains"}, {"authorized_access_point": "Mineurs de charbon noirs américains"}, {"authorized_access_point": "Missionnaires noirs américains"}, {"authorized_access_point": "Mormons noirs américains"}, {"authorized_access_point": "Noires américaines"}, {"authorized_access_point": "Noirs américains dans la fonction publique"}, {"authorized_access_point": "Noirs américains dans les arts du spectacle"}, {"authorized_access_point": "Noirs américains dans les syndicats"}, {"authorized_access_point": "Noirs américains en milieu urbain"}, {"authorized_access_point": "Pêcheurs noirs américains"}, {"authorized_access_point": "Pentecôtistes noirs américains"}, {"authorized_access_point": "Pères noirs américains"}, {"authorized_access_point": "Pilotes de navire noirs américains"}, {"authorized_access_point": "Pionniers noirs américains"}, {"authorized_access_point": "Policiers noirs américains"}, {"authorized_access_point": "Politologues noirs américains"}, {"authorized_access_point": "Prisonniers noirs américains"}, {"authorized_access_point": "Propriétaires fonciers noirs américains"}, {"authorized_access_point": "Propriétaires noirs américains d'esclaves"}, {"authorized_access_point": "Scientifiques noirs américains"}, {"authorized_access_point": "Séminoles noirs"}, {"authorized_access_point": "Sociologues noirs américains"}, {"authorized_access_point": "Théologiens noirs américains"}, {"authorized_access_point": "Travailleurs sociaux noirs américains"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85001932", "source": "LCSH"}, "authorized_access_point": "African Americans"}, {"source": "RVMLaval", "authorized_access_point": "Noirs américains"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027805220", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119768348", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "305"}, {"name": "Ethnologie, anthropologie, folklore", "type": "bf:ClassificationDdc", "classificationPortion": "390"}], "variant_access_point": ["Africains-Américains", "Afro-Américains", "Américains d'origine africaine", "Américains noirs", "Américains originaires d'Afrique subsaharienne", "Négro-Américains"], "authorized_access_point": "Noirs américains"} 1 -2023-08-08 13:37:39.231318 2023-08-08 13:37:39.231321 1b0d280d-15af-4222-ab67-cfa75beed7f8 {"md5": "26e0692915bef6faeca25bf2dc4fd931", "pid": "027809781", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature italienne"}], "related": [{"authorized_access_point": "Poètes italiens"}, {"authorized_access_point": "Chansons italiennes"}, {"authorized_access_point": "Madrigaux (musique) italiens"}, {"authorized_access_point": "Mélodies italiennes"}, {"authorized_access_point": "Prose italienne"}], "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Crépuscularisme"}, {"authorized_access_point": "Poésie de circonstance italienne"}, {"authorized_access_point": "Ballades italiennes"}, {"authorized_access_point": "Disperata"}, {"authorized_access_point": "Épigrammes italiennes"}, {"authorized_access_point": "Épopées italiennes"}, {"authorized_access_point": "Frottole (littérature)"}, {"authorized_access_point": "Poèmes en prose italiens"}, {"authorized_access_point": "Poésie d'amour italienne"}, {"authorized_access_point": "Poésie dialectale italienne"}, {"authorized_access_point": "Poésie didactique italienne"}, {"authorized_access_point": "Poésie élogieuse italienne"}, {"authorized_access_point": "Poésie expérimentale italienne"}, {"authorized_access_point": "Poésie historique italienne"}, {"authorized_access_point": "Poésie italienne - Avant 1400"}, {"authorized_access_point": "Poésie lyrique italienne"}, {"authorized_access_point": "Poésie narrative italienne"}, {"authorized_access_point": "Poésie pastorale italienne"}, {"authorized_access_point": "Poésie politique italienne"}, {"authorized_access_point": "Poésie populaire italienne"}, {"authorized_access_point": "Poésie religieuse italienne"}, {"authorized_access_point": "Poésie satirique italienne"}, {"authorized_access_point": "Poésie visuelle italienne"}, {"authorized_access_point": "Sonnets italiens"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85068841", "source": "LCSH"}, "authorized_access_point": "Italian poetry"}, {"source": "RVMLaval", "authorized_access_point": "Poésie italienne"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027809781", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11977186t", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Poésie italienne"} 1 -2023-08-08 13:37:39.325401 2023-08-08 13:37:39.325406 a315472d-07b8-4805-91c8-9afd6ea6b34f {"md5": "292f04c6fb961445ffbb7c9a15b82c0a", "pid": "027811611", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature espagnole"}, {"authorized_access_point": "Poésie hispanophone"}], "related": [{"authorized_access_point": "Poètes espagnols"}, {"authorized_access_point": "Chansons espagnoles"}, {"authorized_access_point": "Mélodies espagnoles"}, {"authorized_access_point": "Prose espagnole"}], "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "La otra sentimentalidad"}, {"authorized_access_point": "Novísimos"}, {"authorized_access_point": "Silva"}, {"authorized_access_point": "Épigrammes espagnoles"}, {"authorized_access_point": "Épîtres en vers espagnoles"}, {"authorized_access_point": "Épopées espagnoles"}, {"authorized_access_point": "Haïkus espagnols"}, {"authorized_access_point": "Poèmes en prose espagnols"}, {"authorized_access_point": "Poésie contestataire espagnole"}, {"authorized_access_point": "Poésie d'amour espagnole"}, {"authorized_access_point": "Poésie de circonstance espagnole"}, {"authorized_access_point": "Poésie dialectale espagnole"}, {"authorized_access_point": "Poésie didactique espagnole"}, {"authorized_access_point": "Poésie élogieuse espagnole"}, {"authorized_access_point": "Poésie espagnole - Avant 1500"}, {"authorized_access_point": "Poésie espagnole - 1500-1700 (Période classique)"}, {"authorized_access_point": "Poésie espagnole pour la jeunesse"}, {"authorized_access_point": "Poésie expérimentale espagnole"}, {"authorized_access_point": "Poésie humoristique espagnole"}, {"authorized_access_point": "Poésie lyrique espagnole"}, {"authorized_access_point": "Poésie pastorale espagnole"}, {"authorized_access_point": "Poésie politique espagnole"}, {"authorized_access_point": "Poésie populaire espagnole"}, {"authorized_access_point": "Poésie religieuse espagnole"}, {"authorized_access_point": "Poésie satirique espagnole"}, {"authorized_access_point": "Poésie visuelle espagnole"}, {"authorized_access_point": "Romanceros"}, {"authorized_access_point": "Sonnets espagnols"}, {"authorized_access_point": "Villancicos (littérature)"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85126289", "source": "LCSH"}, "authorized_access_point": "Spanish poetry"}, {"source": "RVMLaval", "authorized_access_point": "Poésie espagnole"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027811611", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11977339v", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Poésie espagnole"} 1 -2023-08-08 13:37:39.397334 2023-08-08 13:37:39.397336 0e29b412-5509-4e51-bac6-598e413304ce {"md5": "719b2f3daf75b9f31a58689787701a59", "pid": "027825280", "note": [{"label": ["Vocabulaire juridique / G. Cornu, 2003 (art. : Révision)", "Dict. constitutionnel / O. Duhamel, Y. Mény, 1992 : révision"], "noteType": "dataSource"}, {"label": ["Processus de révision (ou d'amendement) des constitutions et modifications qui en résultent", "S'emploie également en subdivision"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Droit constitutionnel"}, {"authorized_access_point": "Histoire constitutionnelle"}], "related": [{"authorized_access_point": "Amendements"}, {"authorized_access_point": "Pouvoir constituant"}, {"authorized_access_point": "Transition constitutionnelle"}, {"authorized_access_point": "Constitutions"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Conventions constitutionnelles"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85031319", "source": "LCSH"}, "authorized_access_point": "Constitutional amendments"}, {"source": "RVMLaval", "authorized_access_point": "Constitutions -- Amendements"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027825280", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11978381w", "source": "BNF"}], "classification": [{"name": "Droit", "type": "bf:ClassificationDdc", "classificationPortion": "340"}], "variant_access_point": ["Amendements constitutionnels", "Constitutions - Amendements", "Constitutions - Modifications", "Constitutions - Réforme", "Constitutions - Révision", "Lois de révision (droit constitutionnel)", "Modifications constitutionnelles", "Négociations constitutionnelles", "Réforme constitutionnelle", "Révision (droit constitutionnel)", "Révision de la Constitution"], "authorized_access_point": "Révision constitutionnelle"} 1 -2023-08-08 13:37:39.469798 2023-08-08 13:37:39.4698 519a4cd1-c078-4e97-b7da-4c6d90093d29 {"md5": "7c8d9d8e22c54cad257a3a6e15bc615b", "pid": "027832953", "note": [{"label": ["Nouveau petit Robert 2010", "Vocabulaire juridique / G. Cornu, 2007", "JurisClasseur Pénal Code > Art. 133-7 - 133-8 > Fasc. unique : Grâce", "Droit constitutionnel / L. Favoreu, 2005", "Origine de la grâce en droit pénal romain et français / P. Duparc, 1942"], "noteType": "dataSource"}, {"label": ["S'emploie également en subdivision"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Droit constitutionnel"}, {"authorized_access_point": "Droit pénal"}, {"authorized_access_point": "Réduction de peine"}], "related": [{"authorized_access_point": "Amnistie"}, {"authorized_access_point": "Clémence (droit)"}, {"authorized_access_point": "Libération conditionnelle"}, {"authorized_access_point": "Pardon"}, {"authorized_access_point": "Pouvoir exécutif"}, {"authorized_access_point": "Réhabilitation"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2002006184", "source": "LCSH"}, "authorized_access_point": "Pardon"}, {"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85097972", "source": "LCSH"}, "authorized_access_point": "Pardon"}, {"source": "RVMLaval", "authorized_access_point": "Grâce (droit)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027832953", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11978966n", "source": "BNF"}], "classification": [{"name": "Droit", "type": "bf:ClassificationDdc", "classificationPortion": "340"}], "variant_access_point": ["Commutation de peine", "Droit de grâce", "Grâce amnistiante", "Grâce présidentielle", "Lettres de grâce", "Lettres de rémission", "Pardon (droit)", "Recours en grâce", "Remise de peine", "Rémission, Lettres de"], "authorized_access_point": "Grâce (droit)"} 1 -2023-08-08 13:37:39.534149 2023-08-08 13:37:39.534152 e230e8fc-8e47-4175-a36c-cdbbb12bb5a0 {"md5": "51ebb6eaaba72d5d004f2186b53ac544", "pid": "027838919", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Démocratie directe"}, {"authorized_access_point": "Droit constitutionnel"}, {"authorized_access_point": "Élections"}, {"authorized_access_point": "Régimes représentatifs"}], "related": [{"authorized_access_point": "Campagnes de votation (Suisse)"}, {"authorized_access_point": "Référendum professionnel"}, {"authorized_access_point": "Plébiscite"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Référendum local"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Référendum"}, {"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85112202", "source": "LCSH"}, "authorized_access_point": "Referendum"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027838919", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13319148r", "source": "BNF"}], "classification": [{"name": "Sciences politiques", "type": "bf:ClassificationDdc", "classificationPortion": "320"}], "variant_access_point": ["Initiative et référendum", "Référendum constituant", "Référendum d'initiative populaire", "Référendum législatif", "Référendum plébiscitaire", "Votation populaire (Suisse)"], "authorized_access_point": "Référendum"} 1 -2023-08-08 13:37:39.590963 2023-08-08 13:37:39.590968 0dbc6ae0-137c-4ddb-8159-e7874ac463cb {"md5": "07a8bb67227350d7b0fb04767855f71a", "pid": "02784532X", "note": [{"label": ["Dict. sanskrit-français / N. Stchoupak, L. Nitti, L. Renou, 1972", "L'hindouisme / A.-M. Esnoul, 1972", "Dict. de la sagesse orientale, 1995", "Le vocabulaire des philosophies de l'Inde / M. Ballanfat, 2003", "BnF Service indien, 2017-03-22"], "noteType": "dataSource"}, {"label": ["Le Soi ; âme ; principe spirituel"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Hindouisme - Doctrines"}], "related": [{"authorized_access_point": "Anātman"}, {"authorized_access_point": "Jñāna-yoga"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85009269", "source": "LCSH"}, "authorized_access_point": "Ātman"}, {"source": "RVMLaval", "authorized_access_point": "Ātman"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02784532X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119799348", "source": "BNF"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}], "authorized_access_point": "Ātman"} 1 -2023-08-08 13:37:39.65495 2023-08-08 13:37:39.654954 a9b0b3ab-cca4-4dce-8c9d-fb9f5d966727 {"md5": "b0e6fe06b3d156e584c94d00a30f3f08", "pid": "027852547", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature grecque"}, {"authorized_access_point": "Roman antique"}], "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Roman d'amour grec"}, {"authorized_access_point": "Roman épistolaire grec"}, {"authorized_access_point": "Roman grec hellénistique"}, {"authorized_access_point": "Roman policier grec"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85057147", "source": "LCSH"}, "authorized_access_point": "Greek fiction"}, {"source": "RVMLaval", "authorized_access_point": "Roman grec"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027852547", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11980545v", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}, {"name": "Préhistoire et histoire ancienne", "type": "bf:ClassificationDdc", "classificationPortion": "930"}], "variant_access_point": ["Roman grec - Antiquité", "Roman grec antique", "Roman grec de l'Antiquité"], "authorized_access_point": "Roman grec"} 1 -2023-08-08 13:37:39.705354 2023-08-08 13:37:39.705358 28eed3bd-1ba4-432f-a446-f3a1710880a1 {"md5": "3a7f2d2ed0852e9e1ba2585d03d2b45d", "pid": "028004698", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Électronique numérique"}, {"authorized_access_point": "Audiovisuel numérique"}], "related": [{"authorized_access_point": "Graveurs de cédéroms"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Boucles (musique)"}, {"authorized_access_point": "Compression audio"}, {"authorized_access_point": "Disques compacts"}, {"authorized_access_point": "DVD audio"}, {"authorized_access_point": "Super Audio CD"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85125369", "source": "LCSH"}, "authorized_access_point": "Sound--Recording and reproducing--Digital techniques"}, {"source": "RVMLaval", "authorized_access_point": "Son -- Enregistrement et reproduction -- Techniques numériques"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028004698", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11992743d", "source": "BNF"}], "classification": [{"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "variant_access_point": ["Audio-numériques, Techniques", "Enregistrement numérique", "Techniques audio-numériques"], "authorized_access_point": "Son - Enregistrement et reproduction -- Techniques numériques"} 1 -2023-08-08 13:37:39.75309 2023-08-08 13:37:39.753093 1a928111-7486-4e27-92b8-64a9f2b0d69c {"md5": "5869d89dcc3f381effab4f3f6e55581b", "pid": "028244494", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ethnologie - [Localisations géographiques]"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Lemkoviens"}, {"authorized_access_point": "Ruthènes"}, {"authorized_access_point": "Slovaques"}, {"authorized_access_point": "Slovaques d'origine hongroise"}, {"authorized_access_point": "Tchécoslovaques"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Ethnologie -- Slovaquie"}, {"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh93003751", "source": "LCSH"}, "authorized_access_point": "Ethnology--Slovakia"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028244494", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb120120186", "source": "BNF"}], "classification": [{"name": "Ethnologie, anthropologie, folklore", "type": "bf:ClassificationDdc", "classificationPortion": "390"}], "authorized_access_point": "Ethnologie - Slovaquie"} 1 -2023-08-08 13:37:39.805906 2023-08-08 13:37:39.805909 28b6eb17-89d2-44e2-a073-93da4ed30630 {"md5": "98f42691805fb509d0cf783d756b56a8", "pid": "028283678", "note": [{"label": ["Grand dict. encyclopédique Larousse (art. : Amendement)", "Vocabulaire juridique / G. Cornu, 2007 (art. : Amendement)", "Eurovoc thesaurus (art. : Amendement) - http://eurovoc.europa.eu (2017-10-12)", "Lexique des termes juridiques Dalloz 2015-2016 / S. Guinchard, T. Debard, 2015 (art. : Amendement)", "Dict. du droit constitutionnel / M. de Villiers, A. Le Divellec, 2015 (art. : Amendement)", "Constitution du 4 octobre 1958 (art. 44) - https://www.legifrance.gouv.fr (2017-10-12)", "La rénovation du droit d'amendement / M.-A. Granger [in] Revue française de droit constitutionnel, 2008, 3, 75", "Dict. de droit constitutionnel / T. Debard, 2007 (art. : Amendement) : amendement législatif ; amendements gouvernementaux"], "noteType": "dataSource"}, {"label": ["Les membres du Parlement et le Gouvernement ont le droit d'amendement (art. 44 de la Constitution de 1958). Proposition de modification d'un texte de loi au cours de sa discussion"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Procédure parlementaire"}, {"authorized_access_point": "Projets de loi"}], "related": [{"authorized_access_point": "Amendements"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85004212", "source": "LCSH"}, "authorized_access_point": "Legislative amendments"}, {"source": "RVMLaval", "authorized_access_point": "Amendements (Procédure parlementaire)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028283678", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12015117v", "source": "BNF"}], "classification": [{"name": "Droit", "type": "bf:ClassificationDdc", "classificationPortion": "340"}], "variant_access_point": ["Amendements (procédure parlementaire)", "Amendements gouvernementaux", "Amendements législatifs", "Amendements parlementaires", "Gouvernement - Droit d'amendement", "Parlements - Droit d'amendement"], "authorized_access_point": "Droit d'amendement (droit constitutionnel)"} 1 -2023-08-08 13:37:39.852056 2023-08-08 13:37:39.852059 6260af52-7445-4d79-8d48-bda09217b548 {"md5": "4ddc7f261251241581332c5bb713dcd8", "pid": "028354559", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature espagnole"}, {"authorized_access_point": "Nouvelles hispanophones"}], "related": [{"authorized_access_point": "Contes littéraires espagnols"}], "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Micronouvelles espagnoles"}, {"authorized_access_point": "Nouvelles de science-fiction espagnoles"}, {"authorized_access_point": "Nouvelles érotiques espagnoles"}, {"authorized_access_point": "Nouvelles fantastiques espagnoles"}, {"authorized_access_point": "Nouvelles policières espagnoles"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85121942", "source": "LCSH"}, "authorized_access_point": "Short stories, Spanish"}, {"source": "RVMLaval", "authorized_access_point": "Nouvelles espagnoles"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028354559", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12020709w", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Nouvelles espagnoles"} 1 -2023-08-08 13:37:39.910149 2023-08-08 13:37:39.910154 6fa7d72f-b0e9-4365-86f4-7367406b49c1 {"md5": "787d9025ae89e2b0cd8fca5569fcd459", "pid": "028359070", "note": [{"label": ["Sous cette vedette, on trouve les recueils de poésie du Luxembourg en luxembourgeois ou en diverses langues"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature luxembourgeoise"}, {"authorized_access_point": "Poésie dialectale allemande"}], "related": [{"authorized_access_point": "Chansons luxambourgeoises"}], "bnf_type": "genre/forme Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Poésie luxembourgeoise"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028359070", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12021056q", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Poésie luxembourgeoise"} 1 -2023-08-08 13:37:39.985718 2023-08-08 13:37:39.985722 e2672535-4a92-4bbf-8679-e4d977076198 {"md5": "b8d7b6b99801b50b43b78ec2b61bc6e0", "pid": "028701755", "note": [{"label": ["Grand Larousse universel", "Petit Robert 1, 1993"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, obligatoirement suivie d'une subdivision géographique ou de la subdivision : À l'étranger, directement ou après une subdivision de sujet, on trouve les documents sur les Syriens hors de Syrie. Les documents sur les Syriens en Syrie se trouvent sous des vedettes-matière telles que : Moeurs et coutumes -- Syrie ; etc"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ethnologie - Syrie"}], "related": [{"authorized_access_point": "Américains d'origine syrienne"}, {"authorized_access_point": "Brésiliens d'origine syrienne"}, {"authorized_access_point": "Auteurs d'origine syrienne"}, {"authorized_access_point": "Syrie"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Juifs syriens"}, {"authorized_access_point": "Réfugiés syriens"}, {"authorized_access_point": "Syriennes"}, {"authorized_access_point": "Travailleurs étrangers syriens"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85131719", "source": "LCSH"}, "authorized_access_point": "Syrians"}, {"source": "RVMLaval", "authorized_access_point": "Syriens"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028701755", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12048392h", "source": "BNF"}], "classification": [{"name": "Ethnologie, anthropologie, folklore", "type": "bf:ClassificationDdc", "classificationPortion": "390"}], "authorized_access_point": "Syriens"} 1 -2023-08-08 13:37:40.053787 2023-08-08 13:37:40.05379 0a829037-d335-40c5-a6d3-9a4fcd8433f7 {"md5": "152a3170f3390535cf0468b7382e6c94", "pid": "028910044", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ethnologie - [Localisations géographiques]"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Allemands de Petite Lituanie"}, {"authorized_access_point": "Boikos"}, {"authorized_access_point": "Juifs - Pologne"}, {"authorized_access_point": "Kachoubes"}, {"authorized_access_point": "Lemkoviens"}, {"authorized_access_point": "Polonais"}, {"authorized_access_point": "Ruthènes"}, {"authorized_access_point": "Silésiens"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Ethnologie -- Pologne"}, {"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85045360", "source": "LCSH"}, "authorized_access_point": "Ethnology--Poland"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028910044", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12064823h", "source": "BNF"}], "classification": [{"name": "Ethnologie, anthropologie, folklore", "type": "bf:ClassificationDdc", "classificationPortion": "390"}], "authorized_access_point": "Ethnologie - Pologne"} 1 -2023-08-08 13:37:40.126984 2023-08-08 13:37:40.126993 96fc0147-4f4f-45ff-a843-243d39ee879c {"md5": "a88a56b05bb606e5087980c6cc1e5d81", "pid": "028962389", "note": [{"label": ["Dict. illustré des termes de médecine, 2012 (art. : Surdité)", "Dict. de médecine Flammarion, 2008 (art. : Surdité)", "Dict. de l'Académie de médecine (art. : Surdité) - http://dictionnaire.academie-medecine.fr (2022-05-30)", "Loterre (art. : Surdité neurosensorielle) - https://www.loterre.fr (2022-05-30)", "Handicaps et psychopathologies / V. Pagès, 2017"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Surdité"}, {"authorized_access_point": "Troubles de la perception auditive"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Usher, Syndrome d'"}], "closeMatch": [{"source": "MeSH", "authorized_access_point": "Hearing Loss, Sensorineural"}, {"source": "RVMLaval", "authorized_access_point": "Surdité de perception"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028962389", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12068935r", "source": "BNF"}], "classification": [{"name": "Sciences médicales et paramédicales", "type": "bf:ClassificationDdc", "classificationPortion": "610"}], "variant_access_point": ["Surdité neurosensorielle"], "authorized_access_point": "Surdité de perception"} 1 -2023-08-08 13:37:40.201321 2023-08-08 13:37:40.201325 3774dddb-99d7-4ac0-95c3-d24cb6e8c97d {"md5": "136777aea5c646be2b89479051fd1a91", "pid": "02897297X", "note": [{"label": ["Sous cette vedette, on trouve la littérature espagnole produite au 20e siècle dans l'ensemble de l'Espagne. La littérature espagnole produite dans un lieu particulier se trouve sous des vedettes-matière du type : Littérature espagnole -- [Subdivision géographique] -- 20e siècle, par ex. : Littérature espagnole -- Espagne -- Aragon (Espagne) -- 20e siècle"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Civilisation - Espagne - 20e siècle"}, {"authorized_access_point": "Littérature espagnole"}], "related": [{"authorized_access_point": "Littérature espagnole - 1870-1914"}, {"authorized_access_point": "Littérature espagnole - 1975-...."}], "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "La otra sentimentalidad"}, {"authorized_access_point": "Novísimos"}, {"authorized_access_point": "Littérature espagnole - 1900-1939"}, {"authorized_access_point": "Littérature espagnole - 1939-1975"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85126273", "source": "LCSH"}, "authorized_access_point": "Spanish literature -- 20th century"}, {"source": "RVMLaval", "authorized_access_point": "Littérature espagnole -- 20e siècle"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02897297X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12069760n", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Littérature espagnole du 20e siècle"], "authorized_access_point": "Littérature espagnole - 20e siècle"} 1 -2023-08-08 13:37:40.272004 2023-08-08 13:37:40.272008 5232e8e8-8aed-44fc-b765-176fb3829de9 {"md5": "0ee9ef6b3704f492c04d916cb205a00d", "pid": "029241693", "note": [{"label": ["Les antiquités égyptiennes : guide du visiteur / Musée du Louvre, Département des antiquités égyptiennes, 1997"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les documents sur les antiquités provenant de la civilisation de l'Égypte ancienne. Les documents sur les antiquités, quelle que soit leur origine, de l'Égypte actuelle se trouvent sous Antiquités -- Égypte"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Civilisation - Égypte - Jusqu'à 332 av. J.-C."}], "related": [{"authorized_access_point": "Art égyptien"}, {"authorized_access_point": "Antiquités - Égypte"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Amulettes égyptiennes"}, {"authorized_access_point": "Bijoux égyptiens"}, {"authorized_access_point": "Céramique égyptienne"}, {"authorized_access_point": "Flabellums"}, {"authorized_access_point": "Inscriptions égyptiennes"}, {"authorized_access_point": "Lampes égyptiennes"}, {"authorized_access_point": "Mastabas"}, {"authorized_access_point": "Meubles égyptiens"}, {"authorized_access_point": "Objets d'art égyptiens"}, {"authorized_access_point": "Poids et mesures égyptiens"}, {"authorized_access_point": "Sarcophages égyptiens"}, {"authorized_access_point": "Shaouabtis"}, {"authorized_access_point": "Temples égyptiens"}, {"authorized_access_point": "Textiles et tissus égyptiens"}, {"authorized_access_point": "Vases égyptiens"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029241693", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12090894p", "source": "BNF"}], "classification": [{"name": "Préhistoire et histoire ancienne", "type": "bf:ClassificationDdc", "classificationPortion": "930"}], "variant_access_point": ["Archéologie de l'Égypte ancienne"], "authorized_access_point": "Antiquités égyptiennes"} 1 -2023-08-08 13:37:40.361625 2023-08-08 13:37:40.361629 237ef3da-ffd2-4727-8717-7510288aa198 {"md5": "24a9c7e85a7f89578763dda36ee4954d", "pid": "029260892", "note": [{"label": ["GDEL: Juin 1940 (appel du 18)"], "noteType": "dataNotFound"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "deleted": "2022-08-25T10:47:31.610056+00:00", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029260892", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12092565r", "source": "BNF"}], "variant_access_point": ["18 juin 1940, Appel du", "Juin 1940, Appel du 18"], "authorized_access_point": "Appel du 18 juin 1940"} 1 -2023-08-08 13:37:40.535148 2023-08-08 13:37:40.535151 c70be705-e061-4fae-b4d4-1cdbe4fefea4 {"md5": "ddae9905a3499eccd9f595e819a8ec98", "pid": "029563321", "note": [{"label": ["Encycl. universalis - http://www.universalis-edu.com (2021-08-25)"], "noteType": "dataSource"}, {"label": ["S'emploie également en subdivision", "Sous cette vedette sont entrés les ouvrages sur les méthodes permettant d'étudier l'activité cognitive : conception de modèles de l'activité mentale et de méthodes d'observation et de validation des modèles cognitifs. Les ouvrages sur la cognition, synonyme en psychologie d'acte de connaissance, appréhension du monde, sont entrés sous Cognition. Les ouvrages sur l'ensemble des sciences qui portent sur la cognition : psychologie cognitive, linguistique, logique, recherches en intelligence artificielle et traitement de l'information chez l'homme, sont entrés sous Sciences cognitives"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sciences cognitives"}], "related": [{"authorized_access_point": "Consignes (éducation)"}, {"authorized_access_point": "Cognition"}, {"authorized_access_point": "Tests de concordance de script"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Apprentissage cognitif"}, {"authorized_access_point": "Associationnisme"}, {"authorized_access_point": "Biais cognitifs"}, {"authorized_access_point": "Cartes heuristiques"}, {"authorized_access_point": "Charge cognitive"}, {"authorized_access_point": "Communication écrite - Aspect cognitif"}, {"authorized_access_point": "Connexionnisme"}, {"authorized_access_point": "Distracteurs (psychologie)"}, {"authorized_access_point": "Double tâche (psychologie)"}, {"authorized_access_point": "Effet Zeigarnik"}, {"authorized_access_point": "Imagerie (psychologie)"}, {"authorized_access_point": "Intelligences multiples"}, {"authorized_access_point": "Protocoles verbaux"}, {"authorized_access_point": "Rapport au savoir"}, {"authorized_access_point": "Représentation mentale"}, {"authorized_access_point": "Résolution de problème"}, {"authorized_access_point": "Schéma narratif"}, {"authorized_access_point": "Théorie de l'esprit (psychologie)"}, {"authorized_access_point": "Transfert d'apprentissage"}, {"authorized_access_point": "Typicalité"}, {"authorized_access_point": "Vicariance (psychologie)"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh87007652", "source": "LCSH"}, "authorized_access_point": "Cognitive psychology"}, {"source": "RVMLaval", "authorized_access_point": "Psychologie cognitive"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029563321", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12116308v", "source": "BNF"}], "classification": [{"name": "Psychologie, psychanalyse", "type": "bf:ClassificationDdc", "classificationPortion": "150"}], "variant_access_point": ["Cognitivisme", "Contribution à la psychologie cognitive"], "authorized_access_point": "Psychologie cognitive"} 1 -2023-08-08 13:37:40.592904 2023-08-08 13:37:40.592907 a5069a14-8590-435a-9d93-fb1e59731225 {"md5": "c4e2675ae0fbd2bd6a1ca3b033a3d391", "pid": "029910609", "note": [{"label": ["Grand Larousse universel", "Atlas des peuples d'Europe centrale / A. et J. Sellier, 1993", "Dict. encyclopédique d'histoire / M. Mourre, 1996", "Encycl. of world cultures / D. Levinson, 1991-1996 : Carpatho-Rusyns", "One Europe, many nations : an historical dict. of European national groups / J. B. Minahan, 2000 : Carpatho-Rusyns"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ethnologie - Pologne"}, {"authorized_access_point": "Ethnologie - Roumanie"}, {"authorized_access_point": "Ethnologie - Slovaquie"}, {"authorized_access_point": "Ethnologie - Ukraine"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Boikos"}, {"authorized_access_point": "Houtsoules"}, {"authorized_access_point": "Lemkoviens"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Ruthènes"}, {"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh94005758", "source": "LCSH"}, "authorized_access_point": "Carpatho-Rusyns"}, {"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85116084", "source": "LCSH"}, "authorized_access_point": "Ruthenians"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029910609", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12143605j", "source": "BNF"}], "classification": [{"name": "Ethnologie, anthropologie, folklore", "type": "bf:ClassificationDdc", "classificationPortion": "390"}], "variant_access_point": ["Carpatho-Rusyns", "Carpatho-Ruthènes", "Petits-Russes", "Petits-Russiens", "Rus'", "Rusini", "Rusins", "Rusiny", "Rusnaks", "Rusnatsi", "Rusnatsy", "Rusyns", "Rusyny", "Ruthenen", "Ruthéniens", "Ukrainiens de l'Ouest", "Ukrainiens occidentaux", "Ukrainiens-Ruthènes"], "authorized_access_point": "Ruthènes"} 1 -2023-08-08 13:37:40.667696 2023-08-08 13:37:40.667705 bf398d03-6552-4ecb-adcc-9e23a7c8851c {"md5": "8badf8e100384b57c3ccef62c2f6445a", "pid": "030714451", "note": [{"label": ["Sous cette vedette, on trouve les compositions (qui n'ont pas de forme ou de genre particulier) pour alto solo, et les recueils de compositions de formes et de genres différents pour alto solo"], "noteType": "general"}, {"label": ["Voir aussi les vedettes de musique comprenant les mots alto ou altos"], "noteType": "seeReference"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Alto (instrument de musique)"}, {"authorized_access_point": "Musique électroacoustique mixte (alto)"}], "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Arabesques (alto)"}, {"authorized_access_point": "Chaconnes (alto)"}, {"authorized_access_point": "Études (alto)"}, {"authorized_access_point": "Préludes (alto)"}, {"authorized_access_point": "Sonates (alto)"}, {"authorized_access_point": "Suites (alto)"}, {"authorized_access_point": "Variations (alto)"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85143486", "source": "LCSH"}, "authorized_access_point": "Viola music"}, {"source": "RVMLaval", "authorized_access_point": "Alto, Musique d'"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030714451", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12207487g", "source": "BNF"}], "classification": [{"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "variant_access_point": ["Musique d'alto", "Musique pour alto"], "authorized_access_point": "Alto, Musique d'"} 1 -2023-08-08 13:37:40.73907 2023-08-08 13:37:40.739075 fc5ef599-2851-44c3-9b74-d23f5ff5b120 {"md5": "fbbc45d779bffc769213e823f501344c", "pid": "030763762", "note": [{"label": ["Wikipédia (art. : Soju) - https://fr.wikipedia.org (2022-03-02)", "Une vague de Kimch'i : la gastronomie coréenne face à la mondialisation Entre Soft Power et menace / B. Joinau [in] Outre-Terre, 2014, 2, 39 : soju", "Soju : a global history / H. Park, 2021", "Larousse agricole / M. Mazoyer, 2002 (art. : Riz)", "Le Japon : dict. et civilisation / L. Frédéric, 1996 (art. : Saké)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Boissons alcoolisées"}, {"authorized_access_point": "Produits du riz"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85113886", "source": "LCSH"}, "authorized_access_point": "Rice beer"}, {"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85113911", "source": "LCSH"}, "authorized_access_point": "Rice wines"}, {"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2018001862", "source": "LCSH"}, "authorized_access_point": "Soju"}, {"source": "RVMLaval", "authorized_access_point": "Saké"}, {"source": "RVMLaval", "authorized_access_point": "Bière de riz"}, {"source": "RVMLaval", "authorized_access_point": "Vin de riz"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030763762", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb122114230", "source": "BNF"}], "classification": [{"name": "Agriculture, élevage", "type": "bf:ClassificationDdc", "classificationPortion": "630"}, {"name": "Economie domestique, hôtellerie", "type": "bf:ClassificationDdc", "classificationPortion": "640"}], "variant_access_point": ["Bière de riz", "Eaux-de-vie de riz", "Riz, Alcool de", "Saké", "Soju", "Vin de riz"], "authorized_access_point": "Alcool de riz"} 1 -2023-08-08 13:37:48.073487 2023-08-08 13:37:48.073491 2a749317-4f4e-4516-9986-4020cae9d454 {"md5": "57ee4b2e1c3179a42457de3e4af1b60f", "pid": "263714446", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Civilisation - Lettonie"}, {"authorized_access_point": "Cuisine balte"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh93003729", "source": "LCSH"}, "authorized_access_point": "Cooking, Latvian"}, {"source": "RVMLaval", "authorized_access_point": "Cuisine lettone"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714446", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18024451n", "source": "BNF"}], "classification": [{"name": "Economie domestique, hôtellerie", "type": "bf:ClassificationDdc", "classificationPortion": "640"}], "variant_access_point": ["Cuisine lettone - Lettonie"], "authorized_access_point": "Cuisine lettone"} 1 -2023-08-08 13:37:40.809279 2023-08-08 13:37:40.809282 8b20633b-d431-4dbd-9684-9ae9306752db {"md5": "64a52671a4a83a6e675442f284ebb5b6", "pid": "030767806", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ethnologie - [Localisations géographiques]"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Allemands de Bucovine"}, {"authorized_access_point": "Allemands de Transylvanie"}, {"authorized_access_point": "Allemands du Banat"}, {"authorized_access_point": "Allemands du Danube"}, {"authorized_access_point": "Daces"}, {"authorized_access_point": "Gépides"}, {"authorized_access_point": "Roumains"}, {"authorized_access_point": "Roumains d'origine française"}, {"authorized_access_point": "Roumains d'origine hongroise"}, {"authorized_access_point": "Ruthènes"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85045365", "source": "LCSH"}, "authorized_access_point": "Ethnology--Romania"}, {"source": "RVMLaval", "authorized_access_point": "Ethnologie--Roumanie"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030767806", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12211770b", "source": "BNF"}], "classification": [{"name": "Ethnologie, anthropologie, folklore", "type": "bf:ClassificationDdc", "classificationPortion": "390"}], "authorized_access_point": "Ethnologie - Roumanie"} 1 -2023-08-08 13:37:40.85888 2023-08-08 13:37:40.858883 42cf0a6f-bca9-41ac-bc42-ea0fb314906b {"md5": "bf2bd884be0b8b78dadbc5d961d31e00", "pid": "03116207X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Femmes enceintes - Examens médicaux"}, {"authorized_access_point": "Diagnostic prénatal"}], "related": [{"authorized_access_point": "Accouchement - Complications (médecine) -- Diagnostic"}, {"authorized_access_point": "Grossesse - Signes et diagnostic"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Imagerie pour le diagnostic en obstétrique"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03116207X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12243064k", "source": "BNF"}], "classification": [{"name": "Sciences médicales et paramédicales", "type": "bf:ClassificationDdc", "classificationPortion": "610"}], "variant_access_point": ["Grossesse - Complications -- Diagnostic", "Diagnostic en obstétrique", "Diagnostic obstétrical", "Épreuve fonctionnelle en obstétrique", "Examen obstétrical", "Obstétrique - Épreuve fonctionnelle"], "authorized_access_point": "Grossesse - Complications (médecine) -- Diagnostic"} 1 -2023-08-08 13:37:40.922124 2023-08-08 13:37:40.922129 95acff84-4d76-46e4-be9e-7281d8b57973 {"md5": "581680c6f2c54900fa5beb2ed67bb5a6", "pid": "031474284", "note": [{"label": ["Trésor de la langue française (art. : Langage)", "Grand Robert de la langue française, 2001 (art. : Faute)", "Dict. de didactique des langues / D. Coste, R. Galisson, 1976"], "noteType": "dataSource"}, {"label": ["S'emploie également en subdivision"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Langues - Étude et enseignement"}], "related": [{"authorized_access_point": "Fautes de langage - Analyse (enseignement des langues)"}, {"authorized_access_point": "Faux amis (linguistique)"}, {"authorized_access_point": "Normalisation linguistique"}, {"authorized_access_point": "Purisme (linguistique)"}, {"authorized_access_point": "Usage"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Fautes d'orthographe"}, {"authorized_access_point": "Lapsus"}, {"authorized_access_point": "Perles de langage"}, {"authorized_access_point": "Queísmo"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Fautes de langage"}, {"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85126446", "source": "LCSH"}, "authorized_access_point": "Speech errors"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031474284", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12268317h", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "401"}, {"name": "Poésie", "type": "bf:ClassificationDdc", "classificationPortion": "801"}], "variant_access_point": ["Barbarismes", "Cuirs (linguistique)", "Difficultés langagières", "Erreurs de langage", "Erreurs langagières", "Expressions incorrectes", "Fautes d'usage (linguistique)", "Fautes de langue", "Fautes de prononciation", "Fautes langagières", "Impropriétés (linguistique)", "Incorrections (linguistique)", "Langage, Fautes de", "Langue, Fautes de", "Pataquès (linguistique)", "Prononciation, Fautes de", "Solécismes"], "authorized_access_point": "Fautes de langage"} 1 -2023-08-08 13:37:41.010314 2023-08-08 13:37:41.010317 8a0261fd-e97d-45e4-a399-a836b7330d35 {"md5": "b93c4521b1f2ae1e6e9cc6270c31d0a5", "pid": "031911056", "note": [{"label": ["Cognition et lecture : processus de base de la reconnaissance des mots écrits chez l'adulte / L. Ferrand, 2001", "Lecture et dyslexie : approche cognitive / L. Sprenger-Charolles, Pascale Colé, 2003", "Apprendre à lire : des sciences cognitives à la salle de classe / S. Dehaene, 2011"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Cognition"}, {"authorized_access_point": "Lecture - Aspect psychologique"}, {"authorized_access_point": "Linguistique cognitive"}], "related": [{"authorized_access_point": "Communication écrite - Aspect cognitif"}, {"authorized_access_point": "Consignes (éducation)"}, {"authorized_access_point": "Écriture - Aspect cognitif"}, {"authorized_access_point": "Test de closure"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Dénomination rapide automatisée"}, {"authorized_access_point": "Lecture - Difficultés"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85111686", "source": "LCSH"}, "authorized_access_point": "Reading comprehension"}, {"source": "RVMLaval", "authorized_access_point": "Compréhension de la lecture"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031911056", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12303769k", "source": "BNF"}], "classification": [{"name": "Psychologie, psychanalyse", "type": "bf:ClassificationDdc", "classificationPortion": "150"}, {"type": "bf:ClassificationDdc", "classificationPortion": "401"}], "variant_access_point": ["Cognition et lecture", "Lecture - Compréhension", "Lecture et cognition", "Psychologie cognitive de la lecture"], "authorized_access_point": "Lecture - Aspect cognitif"} 1 -2023-08-08 13:37:41.076217 2023-08-08 13:37:41.07622 a5996cba-92d3-45ba-b8ee-250278cbb57a {"md5": "69fe495cc96d63eb48ed1ba046dc18d2", "pid": "031992234", "note": [{"label": ["Sous cette vedette, on trouve les compositions (qui n'ont pas de forme ou de genre particulier) pour saxophone et orchestre, et les recueils de compositions de formes et de genres différents pour cette même formation"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Concertos (saxophone)"}, {"authorized_access_point": "Poèmes symphoniques (saxophone et orchestre)"}, {"authorized_access_point": "Rhapsodies (saxophone et orchestre)"}, {"authorized_access_point": "Saxophone et orchestre à cordes"}, {"authorized_access_point": "Saxophone et orchestre à vent"}, {"authorized_access_point": "Saxophone et orchestre d'harmonie"}, {"authorized_access_point": "Saxophone et orchestre de chambre"}, {"authorized_access_point": "Saxophone et orchestre de jazz"}, {"authorized_access_point": "Suites (saxophone et orchestre)"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85117865", "source": "LCSH"}, "authorized_access_point": "Saxophone with orchestra"}, {"source": "RVMLaval", "authorized_access_point": "Saxophone et orchestre"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031992234", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb123105743", "source": "BNF"}], "classification": [{"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "authorized_access_point": "Saxophone et orchestre"} 1 -2023-08-08 13:37:41.164953 2023-08-08 13:37:41.164958 5f571655-b3a7-4393-b949-2b11881ae6d1 {"md5": "97231932656ef4e97017c1d12f804177", "pid": "03212743X", "note": [{"label": ["Sous cette vedette, on trouve les compositions (qui n'ont pas de forme ou de genre particulier) pour flûte, violon et alto, et les recueils de compositions de formes et de genres différents pour cette même formation"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Trios ([distributions instrumentales])"}], "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Sérénades (flûte, violon, alto)"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85137637", "source": "LCSH"}, "authorized_access_point": "Trios (Flute, violin, viola)"}, {"source": "RVMLaval", "authorized_access_point": "Trios (flûte, violon, alto)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03212743X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12321733h", "source": "BNF"}], "classification": [{"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "authorized_access_point": "Trios (flûte, violon, alto)"} 1 -2023-08-08 13:37:41.241852 2023-08-08 13:37:41.241856 890a7f5a-1a27-49f9-959a-1898a69b4dc0 {"md5": "3e59a3f7e7e47a95a5fc7c65274fd9f6", "pid": "032187130", "note": [{"label": ["Grand Robert de la langue française, 2001"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les documents sur les constructions propres à la langue espagnole qui ne possèdent aucun correspondant syntaxique dans une autre langue. Les documents sur les mots et locutions espagnols intégrés à une autre langue se trouvent sous le nom de cette langue suivie de la subdivision Emprunts espagnols, par ex. : Français (langue) -- Emprunts espagnols"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Idiotismes"}], "related": [{"authorized_access_point": "Espagnol (langue)"}, {"authorized_access_point": "Queísmo"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2008112151", "source": "LCSH"}, "authorized_access_point": "Spanish language--Idioms"}, {"source": "RVMLaval", "authorized_access_point": "Hispanismes (idiotismes)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032187130", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12326636g", "source": "BNF"}], "classification": [{"name": "Langues et linguistique", "type": "bf:ClassificationDdc", "classificationPortion": "400"}], "variant_access_point": ["Espagnol (langue) - Idiotismes"], "authorized_access_point": "Hispanismes (idiotismes)"} 1 -2023-08-08 13:37:41.333939 2023-08-08 13:37:41.333949 afcaaf3c-0284-4b4f-ad93-0b7896fc50d9 {"md5": "a50327d852627ff3411ac9ebe9cb6978", "pid": "032563507", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature néerlandaise"}], "related": [{"authorized_access_point": "Poètes néerlandais"}, {"authorized_access_point": "Chansons néerlandaises"}, {"authorized_access_point": "Mélodies néerlandaises"}, {"authorized_access_point": "Prose néerlandaise"}], "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Épopées néerlandaises"}, {"authorized_access_point": "Poèmes en prose néerlandais"}, {"authorized_access_point": "Poésie didactique néerlandaise"}, {"authorized_access_point": "Poésie élogieuse néerlandaise"}, {"authorized_access_point": "Poésie érotique néerlandaise"}, {"authorized_access_point": "Poésie néerlandaise pour la jeunesse"}, {"authorized_access_point": "Poésie pastorale néerlandaise"}, {"authorized_access_point": "Poésie politique néerlandaise"}, {"authorized_access_point": "Poésie religieuse néerlandaise"}, {"authorized_access_point": "Poésie visuelle néerlandaise"}, {"authorized_access_point": "Sonnets néerlandais"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85040126", "source": "LCSH"}, "authorized_access_point": "Dutch poetry"}, {"source": "RVMLaval", "authorized_access_point": "Poésie néerlandaise"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032563507", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb123569227", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Poésie flamande - Avant 1830", "Poésie hollandaise"], "authorized_access_point": "Poésie néerlandaise"} 1 -2023-08-08 13:37:41.428865 2023-08-08 13:37:41.42887 ed6f2c2d-8851-4551-8dc5-5b43d2814cb0 {"md5": "faa5106feb3ec6f918adb83d81f00ea1", "pid": "032972938", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Femmes enceintes - Examens médicaux"}], "related": [{"authorized_access_point": "Grossesse - Complications (médecine) -- Diagnostic"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Imagerie pour le diagnostic en obstétrique"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032972938", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb123892668", "source": "BNF"}], "classification": [{"name": "Sciences médicales et paramédicales", "type": "bf:ClassificationDdc", "classificationPortion": "610"}], "variant_access_point": ["Accouchement - Complications -- Diagnostic", "Diagnostic en obstétrique", "Diagnostic obstétrical", "Épreuve fonctionnelle en obstétrique", "Examen obstétrical", "Obstétrique - Épreuve fonctionnelle"], "authorized_access_point": "Accouchement - Complications (médecine) -- Diagnostic"} 1 -2023-08-08 13:37:41.513848 2023-08-08 13:37:41.513851 993ca3b3-a378-4171-963f-8f093b084322 {"md5": "e3b91fa67469388babc782ec799cb652", "pid": "03388157X", "note": [{"label": ["L'entretien d'explicitation / P. Vermersch, 1994", "L'entretien d'explication en entreprise : savoir questionner pour manager et former / H. Roux de Bézieux, 1999"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Entretiens en éducation"}, {"authorized_access_point": "Entretiens en psychologie"}, {"authorized_access_point": "Protocoles verbaux"}], "related": [{"authorized_access_point": "Entretiens professionnels"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Entretiens d'explicitation"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03388157X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12469337q", "source": "BNF"}], "classification": [{"name": "Psychologie, psychanalyse", "type": "bf:ClassificationDdc", "classificationPortion": "150"}, {"name": "Education et enseignement", "type": "bf:ClassificationDdc", "classificationPortion": "370"}, {"name": "Gestion et organisation de l'entreprise", "type": "bf:ClassificationDdc", "classificationPortion": "650"}], "variant_access_point": ["Entretien d'explicitation", "Entretiens critiques", "Explicitation, Entretiens d'"], "authorized_access_point": "Entretiens d'explicitation"} 1 -2023-08-08 14:28:41.499545 2023-08-08 14:28:41.499553 21442fef-901b-409f-9dc9-df9e5411c1e1 {"md5": "586f85a7c97edcb275b65af8dd17bad3", "pid": "027798682", "note": [{"label": ["Ne pas utiliser : employer les subdivisions 1500-1800, Histoire -- 1500-1800 ou les vedettes construites comprenant la subdivision 1648-1789"], "noteType": "seeReference"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "deleted": "2023-08-08T14:28:41.485675+00:00", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027798682", "source": "IDREF"}], "authorized_access_point": "1648-1789"} 1 -2023-08-08 13:37:41.56712 2023-08-08 13:37:41.567124 a4620f96-ccb4-4959-983e-2d7d2ff5d8c1 {"md5": "6968472d18b040c08cca7a3138250a0d", "pid": "034160523", "note": [{"label": ["Encycl. universalis (art. : Sectes) - http://www.universalis-edu.com (2018-03-01)", "Dict. de psychologie / R. Doron, F. Parot, 2003 (art. : Conscience)", "Les états modifiés de conscience / G. Lapassade, 1987", "Les états étranges de la conscience / J.-P. Valla, 1992", "La conscience modifiée / C. Le Scanff, 1995"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Conscience"}], "related": [{"authorized_access_point": "Chamanisme"}, {"authorized_access_point": "Parapsychologie"}, {"authorized_access_point": "Rebirth (psychothérapie)"}, {"authorized_access_point": "Voyages dans l'au-delà"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Extase"}, {"authorized_access_point": "Hypnose"}, {"authorized_access_point": "Ivresse"}, {"authorized_access_point": "Possession (anthropologie)"}, {"authorized_access_point": "Psychédélisme"}, {"authorized_access_point": "Transe"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh89006368", "source": "LCSH"}, "authorized_access_point": "Altered states of consciousness"}, {"source": "RVMLaval", "authorized_access_point": "États modifiés de conscience"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034160523", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12494645k", "source": "BNF"}], "classification": [{"name": "Psychologie, psychanalyse", "type": "bf:ClassificationDdc", "classificationPortion": "150"}], "variant_access_point": ["Conscience, États modifiés de", "EMC (psychologie)", "État modifié de conscience", "États de conscience altérés", "États de conscience modifiés", "États étranges de conscience", "États non ordinaires de conscience", "États seconds", "Modification de la conscience"], "authorized_access_point": "États modifiés de conscience"} 1 -2023-08-08 13:37:41.663406 2023-08-08 13:37:41.663411 888c2b35-ad18-43dc-9f5a-c2a00a0034f9 {"md5": "f8f60673bdd787e375c86edfb898cb18", "pid": "034490906", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature flamande"}], "related": [{"authorized_access_point": "Poètes flamands"}, {"authorized_access_point": "Chansons flamandes"}, {"authorized_access_point": "Prose flamande"}], "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Poésie politique flamande"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85049077", "source": "LCSH"}, "authorized_access_point": "Flemish poetry"}, {"source": "RVMLaval", "authorized_access_point": "Poésie flamande"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034490906", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12524209b", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Poésie flamande"} 1 -2023-08-08 13:37:41.742293 2023-08-08 13:37:41.742296 877cd5a6-7f0b-424b-8cd8-ea5e696816c0 {"md5": "4610a48c0891c3d53710a9aedeb21322", "pid": "034680365", "note": [{"label": ["L'Empire des tsars et les Russes. T.3. La religion / A. Leroy-Beaulieu, 1889", "Icons, portraits, or types? Photographic images of the Skoptsy in late Imperial Russia (1880-1917) / E. Emeliantseva [in] Jahrbücher für Geschichte Osteuropas, 2009, 57, 2 - https://www-jstor-org (2022-07-07)", "La secte russe des castrats / N. Volkov, 1995 : Skopcy, Skopcestvo", "Nouvelle encycl. nationale / M. Lachâtre, 1870 : Skoptzy", "Encycl. of religion and ethics / J. Hastings, 1994 : Skoptsi", "Oxford English dict. : Scoptsi - https://www-oed-com (2022-07-07)", "Wikipedia : Scoptes - https://fr.wikipedia.org (2022-07-13)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sectes chrétiennes"}], "related": [{"authorized_access_point": "Castration humaine"}, {"authorized_access_point": "Eunuques"}, {"authorized_access_point": "Vieux-croyants"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85123228", "source": "LCSH"}, "authorized_access_point": "Skoptsi"}, {"source": "RVMLaval", "authorized_access_point": "Skoptsis"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034680365", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb125409625", "source": "BNF"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}], "variant_access_point": ["Scoptes", "Secte des castrats", "Skopcestvo", "Skopcy", "Skoptsi", "Skoptsis", "Skoptzi", "Skoptzy"], "authorized_access_point": "Skoptsy"} 1 -2023-08-08 13:37:41.796381 2023-08-08 13:37:41.796384 11caf531-2c9e-477f-aaa3-3a89b5190f43 {"md5": "9e4bf4c5431fe8a7499f618443130528", "pid": "035801123", "note": [{"label": ["Petit Larousse 2004 (art. : Psychédélique)", "Encycl. universalis : rock psychédélique ou acid rock - http://www.universalis-edu.com (2013-11-08)", "Encycl. illustrée de toutes les musiques / P. Du Noyer, 2004", "Oxford Music online : psychedelic rock - http://www.oxfordmusiconline.com (2013-11-08)", "Allmusic : psychedelic rock ; acid rock - http://www.allmusic.com (2013-11-08)", "Dict. du rock / M. Assayas, 2000 : acid rock"], "noteType": "dataSource"}, {"label": ["Courant musical créé dans les années 1960 par des groupes californiens, qui cherchent à traduire dans leur musique les sensations dues à la prise de drogues hallucinogènes"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Psychédélisme"}, {"authorized_access_point": "Rock (musique)"}], "related": [{"authorized_access_point": "Drogues et arts"}, {"authorized_access_point": "Rock planant"}], "bnf_type": "genre/forme Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh95010207", "source": "LCSH"}, "authorized_access_point": "Psychedelic rock music"}, {"source": "RVMLaval", "authorized_access_point": "Musique psychédélique"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035801123", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13337484c", "source": "BNF"}], "classification": [{"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "variant_access_point": ["Acid-rock", "Musique psychédélique", "Psychédélique, Musique"], "authorized_access_point": "Rock psychédélique"} 1 -2023-08-08 13:37:41.848403 2023-08-08 13:37:41.848405 517033cf-d16f-4ec2-a65d-f2d2ab6211c5 {"md5": "9b9ea0c9e17d6a3eeba5d4c50c4d2e66", "pid": "050203177", "note": [{"label": ["Grand Larousse universel", "Grand Robert de la langue française, 2001"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, obligatoirement suivie d'une subdivision géographique ou de la subdivision : À l'étranger, directement ou après une subdivision de sujet, on trouve les documents sur les Ghanéens hors du Ghana. Les documents sur les Ghanéens au Ghana se trouvent sous des vedettes-matière telles que : Moeurs et coutumes -- Ghana ; etc"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ethnologie - Ghana"}], "related": [{"authorized_access_point": "Ghana"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Écrivains ghanéens"}, {"authorized_access_point": "Ghanéennes"}, {"authorized_access_point": "Travailleurs étrangers ghanéens"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85054784", "source": "LCSH"}, "authorized_access_point": "Ghanaians"}, {"source": "RVMLaval", "authorized_access_point": "Ghanéens"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050203177", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb135064736", "source": "BNF"}], "classification": [{"name": "Ethnologie, anthropologie, folklore", "type": "bf:ClassificationDdc", "classificationPortion": "390"}], "authorized_access_point": "Ghanéens"} 1 -2023-08-08 13:37:41.909566 2023-08-08 13:37:41.909569 980ea5aa-8387-44f1-b554-6ef8f1b4128a {"md5": "5635b76f682e0b567da89c0d5cb1d8ea", "pid": "050513478", "note": [{"label": ["Encycl. universalis (art. : Dance music ; House music ; etc.) - http://www.universalis-edu.com (2011-03-03)", "Wikipédia : séquenceur musical - http://fr.wikipedia.org (2011-03-03)", "Dict. des mots de la musique / J. Siron, 2006", "Dict. de la musique / M. Vignal, 2006", "Dict. encyclopédique de la musique / D. Arnold, 1988 (art. : Synthétiseur) : sequencer"], "noteType": "dataSource"}, {"label": ["Encycl. de la musique, 1992. - Dict. de la musique / M. Honegger, 1976. - Encycl. des instruments de musique / A. Buchner, 1980"], "noteType": "dataNotFound"}, {"label": ["Équipement permettant de faire jouer automatiquement un instrument de musique électronique"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Instruments de musique électroniques"}], "related": [{"authorized_access_point": "Boucles (musique)"}, {"authorized_access_point": "Séquenceurs (logiciels)"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh90005022", "source": "LCSH"}, "authorized_access_point": "Sequencer (Musical instrument)"}, {"source": "RVMLaval", "authorized_access_point": "Séquenceur (instrument de musique)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050513478", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13533493q", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}, {"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "variant_access_point": ["Séquenceur musical"], "authorized_access_point": "Séquenceur (instrument de musique)"} 1 -2023-08-08 13:37:41.978017 2023-08-08 13:37:41.97802 4fc3234f-2eec-4186-8272-cfd373352061 {"md5": "56a87b8936637de76fd6fea79ed3dc66", "pid": "077061284", "note": [{"label": ["Grand Larousse universel (art. : Psychédélique) : peinture psychédélique", "L'art psychédélique / R. E. L. Masters, J. Houston, 1968", "Nus abstraits et psychédéliques / D. Olivier, 2012"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Art - 1970-...."}, {"authorized_access_point": "Psychédélisme"}], "related": [{"authorized_access_point": "Drogues et arts"}, {"authorized_access_point": "Hallucinogènes"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh90000085", "source": "LCSH"}, "authorized_access_point": "Psychedelic art"}, {"source": "RVMLaval", "authorized_access_point": "Art psychédélique"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/077061284", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb14424877k", "source": "BNF"}], "classification": [{"name": "Arts", "type": "bf:ClassificationDdc", "classificationPortion": "700"}], "variant_access_point": ["Dessin psychédélique", "Peinture psychédélique", "Psychédélique, Art"], "authorized_access_point": "Art psychédélique"} 1 -2023-08-08 13:37:42.059147 2023-08-08 13:37:42.059149 02c51d91-b16d-410d-abbc-523e9e11e1b9 {"md5": "7db7f5add381f05a3c44e84800f375db", "pid": "080206913", "note": [{"label": ["Petit dict. d'anatomie, d'embryologie et d'histologie / P. Kamina, 1990", "Dict. de médecine Flammarion, 2008", "Dict. français de médecine et de biologie, 1981", "Atlas d'anatomie humaine / F. H. Netter, 1997"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Artère iliaque interne"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Artère ombilicale"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/080206913", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb14571495w", "source": "BNF"}], "classification": [{"name": "Sciences de la vie", "type": "bf:ClassificationDdc", "classificationPortion": "570"}, {"name": "Sciences médicales et paramédicales", "type": "bf:ClassificationDdc", "classificationPortion": "610"}], "variant_access_point": ["Artère ombilico-vésicale", "Arteria umbilicalis"], "authorized_access_point": "Artère ombilicale"} 1 -2023-08-08 13:37:42.140938 2023-08-08 13:37:42.140942 2a758e2d-ff16-40fb-a97e-bcf8043b8f60 {"md5": "08e439e32d49bbdf589d4b025463647b", "pid": "083620338", "note": [{"label": ["S'emploie uniquement en subdivision"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Droit d'amendement (droit constitutionnel)"}, {"authorized_access_point": "Révision constitutionnelle"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/083620338", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb14604104c", "source": "BNF"}], "classification": [{"name": "Droit", "type": "bf:ClassificationDdc", "classificationPortion": "340"}], "authorized_access_point": "Amendements"} 1 -2023-08-08 13:37:42.227061 2023-08-08 13:37:42.227067 7a8c8457-8a03-44f4-bfae-b88074ac5e38 {"md5": "e40d34d817236d7d1f8018b64be6d49f", "pid": "083622519", "note": [{"label": ["S'emploie uniquement en subdivision aux constitutions (datées ou non), par ex. : France -- Constitution (1958) -- Révision"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "deleted": "2022-08-25T10:47:31.616254+00:00", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/083622519", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb14603811b", "source": "BNF"}], "classification": [{"name": "Droit", "type": "bf:ClassificationDdc", "classificationPortion": "340"}], "variant_access_point": ["XXXXX"], "authorized_access_point": "Révision"} 1 -2023-08-08 13:37:42.292695 2023-08-08 13:37:42.2927 00d72b51-ef99-40fe-bf0b-02779d5961e8 {"md5": "4ad26a8d36417065fefa81ea7b0f2348", "pid": "092468675", "note": [{"label": ["Illustrated glossary of protoctista, 1992", "Introductory phycology / F. R. Trainor, 1988"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Algues"}, {"authorized_access_point": "Microorganismes"}], "related": [{"authorized_access_point": "Algues unicellulaires"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Microalgues benthiques"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/092468675", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb150116468", "source": "BNF"}], "classification": [{"name": "Botanique", "type": "bf:ClassificationDdc", "classificationPortion": "580"}], "variant_access_point": ["Micro-algues"], "authorized_access_point": "Microalgues"} 1 -2023-08-08 14:28:41.601347 2023-08-08 14:28:41.601353 95e02703-3e3a-4ff6-879e-0b81a0517ce4 {"md5": "9a9a27a84296352ad601e8fa30b87766", "pid": "027799395", "note": [{"label": ["Ne pas utiliser : employer les subdivisions 1900-1945, Histoire -- 1900-1945 ou les vedettes construites comprenant la subdivision 1918-1933"], "noteType": "seeReference"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "deleted": "2023-08-08T14:28:41.593466+00:00", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027799395", "source": "IDREF"}], "authorized_access_point": "1918-1933 (république de weimar)"} 1 -2023-08-08 13:37:42.377819 2023-08-08 13:37:42.377822 3bb91178-7c4a-4b84-9807-26a1894daec1 {"md5": "f173d2f46f7718f7d8a341764c9bd5e1", "pid": "113531923", "note": [{"label": ["Grand Robert de la langue française, 2001", "Les mots de la presse écrite / S. Bénard, 2002", "Le synopsis : présenter et vendre ses sujets / A. Kerloc'h, 2007", "Vocabulaire technique du cinéma / V. Pinel, 1996"], "noteType": "dataSource"}, {"label": ["Document de synthèse décrivant la totalité ou un aperçu d'une œuvre", "S'emploie également en subdivision"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Scénarios"}], "related": [{"authorized_access_point": "Écriture journalistique"}, {"authorized_access_point": "Résumés analytiques"}], "bnf_type": "genre/forme Rameau", "closeMatch": [{"source": "LCGFT", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/genreForms/gf2014026038", "source": "LCGFT"}, "authorized_access_point": "Abstracts"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/113531923", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15517814h", "source": "BNF"}], "classification": [{"name": "Sciences de l'information", "type": "bf:ClassificationDdc", "classificationPortion": "020"}, {"name": "Audiovisuel", "type": "bf:ClassificationDdc", "classificationPortion": "791"}], "variant_access_point": ["Lancement (cinéma)", "Notes d'intention (journalisme)", "Préparation (cinéma)", "Synopsis (cinéma)", "Synopsis (journalisme)", "Synopsis de film"], "authorized_access_point": "Synopsis"} 1 -2023-08-08 13:37:42.470437 2023-08-08 13:37:42.470442 559a2be3-1f78-44bc-8119-77eb09df2bb3 {"md5": "bddbfb2aee8f1967592209a8c90dc206", "pid": "119256347", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Roman arabe"}], "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Roman historique égyptien"}, {"authorized_access_point": "Roman historique libanais"}, {"authorized_access_point": "Roman historique syrien"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh95003231", "source": "LCSH"}, "authorized_access_point": "Historical fiction, Arabic"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/119256347", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15575719q", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}, {"name": "Histoire et géographie (généralités)", "type": "bf:ClassificationDdc", "classificationPortion": "900"}], "authorized_access_point": "Roman historique arabe"} 1 -2023-08-08 13:37:42.550432 2023-08-08 13:37:42.550435 ef63110e-d76a-4836-bbdc-2dbde1e4fd22 {"md5": "76dc58d441124bc3aa45378c3c2c1592", "pid": "130730173", "note": [{"label": ["Nouveau petit Robert 2009 : dématérialisation", "Vocabulaire juridique / G. Cornu, 2007 : dématérialisation", "Conseil des ministres du 13 février 2008. Le plan de dématérialisation des procédures juridictionnelles - https://www.vie-publique.fr (2022-07-22)", "Ordonnance n°2005-1516 du 8 décembre 2005 relative aux échanges électroniques entre les usagers et les autorités administratives et entre les autorités administratives"], "noteType": "dataSource"}, {"label": ["En droit, la dématérialisation (ou suppression de support matériel tangible) consiste à transformer un flux de données numériques en fichiers informatiques et à leur restituer selon leur domaine une valeur juridique"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Droit - Informatique"}, {"authorized_access_point": "Échange électronique d'information"}, {"authorized_access_point": "Informatique - Droit"}], "related": [{"authorized_access_point": "Authentification"}, {"authorized_access_point": "Dématérialisation (informatique)"}, {"authorized_access_point": "Numérisation - Droit"}, {"authorized_access_point": "Preuve électronique"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Communication électronique de pièces (droit)"}, {"authorized_access_point": "Contrats électroniques"}, {"authorized_access_point": "Contrats informatiques"}, {"authorized_access_point": "E-fiscalité"}, {"authorized_access_point": "E-justice"}, {"authorized_access_point": "Monnaie électronique"}, {"authorized_access_point": "Signatures électroniques"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/130730173", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15894744m", "source": "BNF"}], "classification": [{"name": "Droit", "type": "bf:ClassificationDdc", "classificationPortion": "340"}, {"type": "bf:ClassificationDdc", "classificationPortion": "621"}, {"name": "Gestion et organisation de l'entreprise", "type": "bf:ClassificationDdc", "classificationPortion": "650"}], "variant_access_point": ["Dématérialisation (droit)", "Dématérialisation (informatique) et droit", "Dématérialisation (informatique) - Droit", "Droit et dématérialisation des documents"], "authorized_access_point": "Actes juridiques électroniques"} 1 -2023-08-08 13:37:42.626114 2023-08-08 13:37:42.626119 0576fde7-69a6-4401-a4ca-0d033de4f356 {"md5": "2430c99d3336c93178b6ada43682c2eb", "pid": "132184214", "note": [{"label": ["Petit Larousse 2005", "Encycl universalis (art. : Enregistrement) - http://www.universalis-edu.com (2009-03-20)", "Dict. de la musique / M. Vignal, 2005", "Dict. des mots de la musique / J. Siron, 2006", "Monter, sampler : l'échantillonnage généralisé, 2000"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Boucles (musique)"}], "related": [{"authorized_access_point": "Échantillonneur (instrument de musique)"}, {"authorized_access_point": "Synthèse sonore"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh96010851", "source": "LCSH"}, "authorized_access_point": "Sampling (Sound)"}, {"source": "RVMLaval", "authorized_access_point": "Échantillonnage de sons"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/132184214", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb159798158", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}, {"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "variant_access_point": ["Échantillonnage de sons", "Sampling (musique)", "Sons, Échantillonnage de"], "authorized_access_point": "Échantillonnage (musique)"} 1 -2023-08-08 13:37:43.32265 2023-08-08 13:37:43.322654 1cb4f9da-2dcc-4815-bc2d-69d7d2bc9d26 {"md5": "95a4647a971ee803898c73194583345f", "pid": "25410875X", "note": [{"label": ["Encycl. universalis (art. : Islam (histoire) : le monde musulman contemporain) - http://www.universalis-edu.com (2022-04-29)", "Changer l'Islam : dict. des réformateurs musulmans des origines à nos jours / M. Chebel, 2013", "Islam et politique en Asie centrale / O. Roy, M. Gaborieau, A. Popovic [in] Archives de sciences sociales des religions, 2001, 115 - https://journals.openedition.org (2022-04-29)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Réformisme islamique"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "https://id.loc.gov/authorities/subjects/sh2004004554", "source": "LCSH"}, "authorized_access_point": "Jadidism"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/25410875X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18011673k", "source": "BNF"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}, {"type": "bf:ClassificationDdc", "classificationPortion": "950"}], "variant_access_point": ["Džadidizm", "Джадидизм", "Zhadidchilik"], "authorized_access_point": "Jadidisme"} 1 -2023-08-08 13:37:42.728491 2023-08-08 13:37:42.728496 0d5fa7cd-17e5-4f9e-8bed-57707e36ef7e {"md5": "603ab88829ef99cecec86002a4d6d925", "pid": "146321944", "note": [{"label": ["Wikipedia - http://fr.wikipedia.org (2010-08-17)", "Encycl. universalis (art. : Musique techno) : hardcore - http://www.universalis-edu.com (2010-08-17)", "Global tekno : voyage initiatique au coeur de la musique électronique / J.-Y. Leloup, J.-P. Renoult, 1999 : hardcore", "Dict. du rock / M. Assayas, 2000 (art. : Techno) : hardcore", "Dict. des mots de la musique / J. Siron, 2006 : hardcore techno", "Allmusic : hardcore techno - http://www.allmusic.com (2010-08-17)"], "noteType": "dataSource"}, {"label": ["Version dure, rapide et industrielle de la techno, apparue dans les années 1990"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Techno (musique)"}], "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Breakcore"}, {"authorized_access_point": "Gabber"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Techno hardcore (Musique)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/146321944", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb162242755", "source": "BNF"}], "classification": [{"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "variant_access_point": ["Hardcore techno"], "authorized_access_point": "Techno hardcore"} 1 -2023-08-08 13:37:42.801655 2023-08-08 13:37:42.801659 4efc7b99-b2d9-49eb-abc7-ad98748cfefb {"md5": "b23f2521a9287cb5cf268e2c6e3eba8e", "pid": "146774094", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Poésie italienne"}], "related": [{"authorized_access_point": "Littérature héroï-comique italienne"}, {"authorized_access_point": "Poésie narrative italienne"}], "bnf_type": "genre/forme Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85044332", "source": "LCSH"}, "authorized_access_point": "Epic poetry, Italian"}, {"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85044288", "source": "LCSH"}, "authorized_access_point": "Epic literature, Italian"}, {"source": "RVMLaval", "authorized_access_point": "Littérature épique italienne"}, {"source": "RVMLaval", "authorized_access_point": "Poésie épique italienne"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/146774094", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb120350248", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Épopées italiennes"} 1 -2023-08-08 13:37:42.850988 2023-08-08 13:37:42.850992 8a35e448-aad6-402c-9500-40e746129728 {"md5": "4dd1808ef506277d02ae096cd1ea216b", "pid": "16573762X", "note": [{"label": ["Dict. sanskrit-français / N. Stchoupak, L. Nitti, L. Renou, 1972", "Dict. encyclopédique du bouddhisme / P. Cornu, 2006", "Brill's encycl. of Hinduism / K. A. Jacobsen, 2009-2015", "Avidyā : a problem of truth and reality / E. A. Solomon, 1969", "BnF Service indien, 2017-04-19"], "noteType": "dataSource"}, {"label": ["Concept d'ignorance à la base de tous les maux et de toutes les passions dans les différentes écoles du bouddhisme"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bouddhisme - Doctrines"}], "related": [{"authorized_access_point": "Jñāna-yoga"}, {"authorized_access_point": "Samsāra"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85010544", "source": "LCSH"}, "authorized_access_point": "Avidyā"}, {"source": "RVMLaval", "authorized_access_point": "Avidyā"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/16573762X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16641477s", "source": "BNF"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}], "variant_access_point": ["Avijjā", "अविज्जा", "Avvijā", "अव्विजा"], "authorized_access_point": "Avidyā"} 1 -2023-08-08 13:37:42.901127 2023-08-08 13:37:42.90113 36efb1cd-2551-4847-883b-60a7e5fcc40f {"md5": "97b00d6974086b6339c77a07803598c0", "pid": "16719416X", "note": [{"label": ["Nouveau petit Robert 2010", "JurisClasseur Europe Traité > Fasc.100 : Union européenne.- Histoire de la construction européenne - Acte unique européen (1986-1987)", "Le système institutionnel européen ou l'affirmation d'une Europe puissance politique : l'enjeu des révisions des traités / F. R. Barbaro, [s.d.]"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Traités"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85137215", "source": "LCSH"}, "authorized_access_point": "Treaties--Revision"}, {"source": "RVMLaval", "authorized_access_point": "Traités -- Révision"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/16719416X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb166589741", "source": "BNF"}], "classification": [{"name": "Sciences politiques", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Droit", "type": "bf:ClassificationDdc", "classificationPortion": "340"}], "variant_access_point": ["Traités - Révision"], "authorized_access_point": "Révision des traités"} 1 -2023-08-08 13:37:43.416239 2023-08-08 13:37:43.416243 fc391a5f-587f-4bf3-9063-d2e9a4205969 {"md5": "adbab850a992784d4dc8847fce66b656", "pid": "255690444", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sérénades ([distributions instrumentales])"}, {"authorized_access_point": "Trios (flûte, violon, alto)"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/255690444", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb179457866", "source": "BNF"}], "classification": [{"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "authorized_access_point": "Sérénades (flûte, violon, alto)"} 1 -2023-08-08 14:28:41.677178 2023-08-08 14:28:41.677184 fac1ced9-3c64-43db-a6aa-8f055bc0d255 {"md5": "c47a5273bed0d6c1f50d0d6a2463e1c1", "pid": "027799409", "note": [{"label": ["Ne pas utiliser : employer les subdivisions 1900-1945, Histoire -- 1900-1945 ou les vedettes construites comprenant la subdivision 1918-1938"], "noteType": "seeReference"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "deleted": "2023-08-08T14:28:41.670485+00:00", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027799409", "source": "IDREF"}], "authorized_access_point": "1918-1938"} 1 -2023-08-08 13:37:42.954575 2023-08-08 13:37:42.954578 8f7707d6-5e96-4858-942e-d9bd58605344 {"md5": "f7f0d81565f2fbcf913a42ae8f366fb3", "pid": "172690250", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Vie intellectuelle - Espagne"}, {"authorized_access_point": "Mouvements littéraires - [Localisations géographiques]"}], "related": [{"authorized_access_point": "Littérature espagnole"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Créationnisme (mouvement littéraire)"}, {"authorized_access_point": "Generación del 50 (littérature espagnole)"}, {"authorized_access_point": "Génération de 98 (mouvement littéraire)"}, {"authorized_access_point": "La otra sentimentalidad"}, {"authorized_access_point": "Modernisme (mouvement littéraire hispanophone)"}, {"authorized_access_point": "Noucentisme"}, {"authorized_access_point": "Novísimos"}, {"authorized_access_point": "Nuevo romanticismo"}, {"authorized_access_point": "Poesía de la conciencia"}, {"authorized_access_point": "Ultraïsme"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2002008852", "source": "LCSH"}, "authorized_access_point": "Literary movements -- Spain"}, {"source": "RVMLaval", "authorized_access_point": "Mouvements littéraires -- Espagne"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/172690250", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb167173405", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Mouvements littéraires - Espagne"} 1 -2023-08-08 13:37:43.003869 2023-08-08 13:37:43.003873 07e5fe60-6ca7-46e3-9166-af9b308fb07e {"md5": "2f16051255a4ce5b77e21d8f6c737134", "pid": "174131887", "note": [{"label": ["Encycl. universalis (art. : Guitare basse) - http://www.universalis-edu.com (2013-11-04)", "Dict. des mots de la musique / J. Siron, 2006", "Les instruments de musique dans le monde vol. 1 / F.-R. Tranchefort, 1980", "Oxford Music online (art. : Nigeria, Federal Republic of) - http://www.oxfordmusiconline.com (2013-11-04)", "L'odyssée africaine d'un cordophone rudimentaire : le « luth à pique intérieure » / C. Baroin [in] Afrique Archéologie Arts, 7, 2011", "Musique et littérature orale chez les Peuls du Mali / C. Seydoux [in] L'Homme, 1998, 148"], "noteType": "dataSource"}, {"label": ["Encycl. de la musique, 1992. - Dict. encyclopédique de la musique / D. Arnold, 1988. - Médiathèque de la Cité de la musique : http://mediatheque.cite-musique.fr (2013-11-04). - Maison des cultures du monde : http://mcm.base-alexandrie.fr:8080 (2013-11-04)"], "noteType": "dataNotFound"}, {"label": ["Afrique de l'Ouest. Luth à structure composite. Caisse de résonance hémisphérique constituée d'une demi-calebasse recouverte d'une peau de vache tannée et pénétrée par un manche sans frettes en forme de bâton. Taille variable selon les régions. Cordes pincées au nombre de 1 (nord du Sénégal), de 2 (Ghana, Nigéria) ou de 3 (population songhaï et hausa)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Instruments de musique - Afrique occidentale"}, {"authorized_access_point": "Luths (famille d'instruments)"}], "related": [{"authorized_access_point": "Khalam"}, {"authorized_access_point": "Molo, Musique de"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/174131887", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16720369d", "source": "BNF"}], "classification": [{"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "variant_access_point": ["Molaandu", "Móólóó", "Moolooru", "Mulore"], "authorized_access_point": "Molo"} 1 -2023-08-08 13:37:43.060945 2023-08-08 13:37:43.060947 8a075055-432c-4783-8aa8-b98721ae7ea0 {"md5": "489f92bf9c07a0102a6aa943ceb6c2ed", "pid": "18456381X", "note": [{"label": ["Grand Larousse universel (art. : Rouleau)", "Encycl. universalis (art. : Macadam) - http://www.universalis-edu.com (2017-01-10)", "Wikipédia - https://fr.wikipedia.org (2017-01-10)", "CACES R 372 m catégorie 7. Compacteurs : Guide pour l'évaluation pratique / INRS, 2014"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Engins de terrassement"}, {"authorized_access_point": "Engins routiers"}], "related": [{"authorized_access_point": "Sols - Compactage"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85114483", "source": "LCSH"}, "authorized_access_point": "Road rollers"}, {"source": "RVMLaval", "authorized_access_point": "Rouleaux (Travaux publics)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/18456381X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb170991500", "source": "BNF"}], "classification": [{"name": "Technique", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "variant_access_point": ["Compacteurs", "Cylindres (rouleaux compresseurs)", "Engins de compactage", "Rouleaux à pieds", "Rouleaux à pneus", "Rouleaux compacteurs", "Rouleaux compresseurs vibrateurs", "Rouleaux vibrants"], "authorized_access_point": "Rouleaux compresseurs"} 1 -2023-08-08 13:37:43.142436 2023-08-08 13:37:43.142439 5f0e396e-e587-4130-a199-3f94b9205566 {"md5": "01f115aa70104733f60931bccd9f203a", "pid": "245367888", "note": [{"label": ["Wikipédia (art. : Hirak) ; Hirak (Algérie) - https://fr.wikipedia.org (2020-06-16)", "Du hirak au harak, tentative de lexique - https://www.elwatan.com (2020-06-16)", "Hirak en Algérie, l'invention d'un soulèvement, 2020", "Algérie, la nouvelle indépendance / J.-P. Filiu, 2019", "Algérie : l'inlassable défi du Hirak [in] Le Monde, 2020-02-22 - https://www.lemonde.fr (2020-06-16)"], "noteType": "dataSource"}, {"label": ["Hirak : mot arabe signifiant étymologiquement « mouvement » et désignant des mouvements de contestations populaires dans les pays du monde arabe, notamment au Yémen, en Irak, au Maroc (Rif) et en Algérie. En Algérie, série de manifestations sporadiques depuis le 22 février 2019 pour protester dans un premier temps contre la candidature d'Abdelaziz Bouteflika à un cinquième mandat présidentiel, puis contre son projet, également contesté par l'armée, de se maintenir au pouvoir à l'issue de son quatrième mandat dans le cadre d'une transition et de la mise en œuvre de réformes"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Manifestations - Algérie"}, {"authorized_access_point": "Mouvements contestataires"}, {"authorized_access_point": "Politique et gouvernement - Algérie - 1999-...."}, {"authorized_access_point": "Algérie - 1992-...."}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/245367888", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb17876933v", "source": "BNF"}], "classification": [{"name": "Sciences politiques", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Economie", "type": "bf:ClassificationDdc", "classificationPortion": "330"}, {"type": "bf:ClassificationDdc", "classificationPortion": "950"}], "variant_access_point": ["Al-Hirak (Algérie)", "Harak (Algérie ; 2019-....)", "Harak (mouvement ; Algérie ; 2019-....)", "Hirak (Algérie ; 2019-....)", "Hirak algérien"], "authorized_access_point": "Hirak (mouvement ; Algérie ; 2019-....)"} 1 -2023-08-08 13:37:43.230162 2023-08-08 13:37:43.230166 16b08667-c4cb-4ddd-b90e-f833e56afb0d {"md5": "aa42520f473197a96cbc62c9fc3cce1f", "pid": "252252063", "note": [{"label": ["Dic. do romantismo literário português, 1997 (art. : Coimbra, e a literature romantica)", "A geração de 70 : uma geração revolucionária e europeísta / J. Medina, 1999", "História e Ficção Romanesca : Um Olhar sobre a Geração de 70 em Portugal / P. Franchetti [in] Santa Barbara Portuguese Studies, 1997, 4", "A Geracão de 70 : uma sintese provisoria / J. Medina, 1975", "Portugal's Geração de 70 : Drama influenced by a Changing World / C. M. Pierson, 2009 [in] Theatre Research International , 1995, 20, 1", "La génération de 70 : époque, chefs de file, relations avec la France : exposition bibliographique, 1971", "Contribution à l'étude des idées politiques et sociales de l'École de Coimbra / R. Leal, 1941", "Modernity and modernism in Portugal : the \\"Questao Coimbra\\" and the generation of 1870 / D. J. Sadlier [in] Nineteenth-century prose, 2005, 32, 1"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Modernisme (mouvement littéraire portugais)"}, {"authorized_access_point": "Littérature portugaise"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/252252063", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18011072k", "source": "BNF"}], "classification": [{"name": "Poésie", "type": "bf:ClassificationDdc", "classificationPortion": "801"}], "variant_access_point": ["Génération de 1870 (littérature portugaise)", "Génération de 70 (littérature portugaise)", "Génération de Coïmbra (littérature portugaise)", "Geração de 1870 (littérature portugaise)"], "authorized_access_point": "Geração de 70 (littérature portugaise)"} 1 -2023-08-08 13:37:43.481245 2023-08-08 13:37:43.481248 c14db206-b3a5-4ea3-b88e-654dc272ef93 {"md5": "0d90d00c3139018d517f786652f99800", "pid": "256524203", "note": [{"label": ["Les intérêts théoriques de l'amorçage syntaxique / M. Poletti, L. Le Bigot, F.Rigalleau [in] L'année psychologique, 2012, 2, vol. 112 - https://www.cairn.info/revue-l-annee-psychologique1-2012-2-page-247", "Effet d'amorçage syntaxique - https://skosmos.loterre.fr/P66/fr/page/-GM3KP6TP-F (2022-07-19)", "Effet d'amorçage structurel en français langue seconde : une étude de corpus longitudinale / A. Thomas [in] SHS Web of Conferences 8, 1591-1605 (2014) - https://www.linguistiquefrancaise.org/articles/shsconf/abs/2014/05"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Psycholinguistique"}], "related": [{"authorized_access_point": "Mémoire implicite"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Amorçage (psychologie)"}, {"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh87006196", "source": "LCSH"}, "authorized_access_point": "Priming (psychology)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/256524203", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180252531", "source": "BNF"}], "classification": [{"name": "Psychologie, psychanalyse", "type": "bf:ClassificationDdc", "classificationPortion": "150"}, {"type": "bf:ClassificationDdc", "classificationPortion": "401"}], "variant_access_point": ["Amorçage structural", "Effet d'amorçage syntaxique", "Persistance structurale", "Persistance syntaxique"], "authorized_access_point": "Amorçage syntaxique"} 1 -2023-08-08 13:37:43.562663 2023-08-08 13:37:43.562667 1bc315af-8d88-4610-9780-3ff86ce92bd7 {"md5": "27f7678f001a92dfe5eba0d6acc469dc", "pid": "258617527", "note": [{"label": ["Réseau Canopé : Rituels et activités ritualisées à l'école maternelle, des soutiens pour le développement de l'enfant - https://www.reseau-canope.fr (2022-07-15)", "Rituels d'enseignement et d'apprentissage / F. Hatchuel [in] Hermès, 2006, 43 - https://www.cairn.info (2022-07-15)", "L' entrée dans le contrat didactique à l'école maternelle : le rôle des rituels dans la construction d'un milieu pour apprendre / L. Garcion-Vautor, 2000 [thèse] (2022-07-15)", "Activités ritualisées en maternelle / J. Alban-Arrouy, I. Marchesan, P. Schmitt, 2009"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Psychologie scolaire"}, {"authorized_access_point": "Rituel (psychologie)"}], "related": [{"authorized_access_point": "Classes (éducation) - Conduite"}, {"authorized_access_point": "Contrat pédagogique"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "authorized_access_point": "Ritual--Study and teaching"}, {"source": "RVMLaval", "authorized_access_point": "Rituel--Étude et enseignement"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/258617527", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18024967d", "source": "BNF"}], "classification": [{"name": "Psychologie, psychanalyse", "type": "bf:ClassificationDdc", "classificationPortion": "150"}, {"name": "Education et enseignement", "type": "bf:ClassificationDdc", "classificationPortion": "370"}], "variant_access_point": ["Activités ritualisées à l'école", "Rituels à l'école", "Rituels d'apprentissage", "Rituels d'enseignement", "Rituels de classe", "Rituels scolaires"], "authorized_access_point": "Rituels (éducation)"} 1 -2023-08-08 13:37:43.663041 2023-08-08 13:37:43.663046 d1eb5cb8-0597-46f3-b218-3aad43a5c53e {"md5": "12a22a266215d5dee558f6308b45a113", "pid": "25906288X", "note": [{"label": ["Trésor de la langue française - http://stella.atilf.fr (2022-07-18)", "Pédagogie, dict. des concepts clés / F. Raynal, A. Rieunier, 2009", "Eduscol : Lecture et compréhension de l'écrit : la compréhension des consignes - https://eduscol.education.fr (2022-07-18)", "Comprendre les énoncés et les consignes : un point fort du socle commun / J.-M. Zakhartchouk, 2019"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Énonciation (linguistique)"}, {"authorized_access_point": "Tâches (éducation)"}], "related": [{"authorized_access_point": "Langage - Compréhension"}, {"authorized_access_point": "Lecture - Aspect cognitif"}, {"authorized_access_point": "Psychologie cognitive"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/25906288X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18025123t", "source": "BNF"}], "classification": [{"name": "Education et enseignement", "type": "bf:ClassificationDdc", "classificationPortion": "370"}], "variant_access_point": ["Consignes pédagogiques", "Consignes scolaires", "Instructions (éducation)"], "authorized_access_point": "Consignes (éducation)"} 1 -2023-08-08 13:37:43.744297 2023-08-08 13:37:43.744305 5b0e2923-47a5-4f7d-8338-ee39e53561dd {"md5": "bf03a9de734d5750c2ddeb716dda9efe", "pid": "259596337", "note": [{"label": ["Ne pas confondre marge chirurgicale et marge histologique en chirurgie des carcinomes cutanés ! / J.-F. Sei, M. Beylot-Barry, B. Cribier [in] Annales de dermatologie et de vénéréologie FMC, 2021, 1, 5", "Les marges chirurgicales dans le cancer de la prostate. CCAFU revue de la littérature [in] Progrès en urologie, 2014, 24, 6"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Chirurgie"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "MeSH", "identifiedBy": {"type": "uri", "value": "https://id.nlm.nih.gov/mesh/M000617728", "source": "MeSH"}, "authorized_access_point": "Margins of Excision"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/259596337", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18021714j", "source": "BNF"}], "classification": [{"name": "Sciences médicales et paramédicales", "type": "bf:ClassificationDdc", "classificationPortion": "610"}], "variant_access_point": ["Marges (chirurgie)", "Marges d'exérèse", "Marges histologiques", "Marges histologiques de sécurité"], "authorized_access_point": "Marges chirurgicales"} 1 -2023-08-08 13:37:44.078303 2023-08-08 13:37:44.078305 b9680856-5a24-4692-87cc-4d39fd49286c {"md5": "568fba0183f4e9b2d9aea72e1dd1e06e", "pid": "261107909", "note": [{"label": ["Naval Group promet un drone sous-marin dans quatre ans / A. Bauer [in] les Echos, 8 oct. 2021 - https://www.lesechos.fr (2022-07-11)", "Ligue de la mer : Drone sous marin : les 5 meilleurs modèles en 2022 - https://liguedelamer.com (2022-07-11)", "Poseidon oceanic multipurpose system : russia's nuclear strike undersea drone / H. Harkins, 2019"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Drones"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/261107909", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180243861", "source": "BNF"}], "classification": [{"name": "Art et science militaires", "type": "bf:ClassificationDdc", "classificationPortion": "355"}, {"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "variant_access_point": ["Undersea drone", "Underwater drone"], "authorized_access_point": "Drones sous-marins"} 1 -2023-08-08 13:37:43.825151 2023-08-08 13:37:43.825154 564be194-0dfa-4629-bdfc-57fb8841f95c {"md5": "f174e1ddf5a56c58b911f313b1953cc8", "pid": "259599174", "note": [{"label": ["Dict. de l'Académie de médecine - http://dictionnaire.academie-medecine.fr (2022-07-06)", "Dict. de médecine Flammarion, 2008 (art. : Banque)", "Une banque d'os de haute sécurité pour allogreffes [in] Revue française des laboratoires, 2005, 371"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Banques de tissus"}], "related": [{"authorized_access_point": "Os"}, {"authorized_access_point": "Tissu osseux"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "https://id.loc.gov/authorities/subjects/sh85015515", "source": "LCSH"}, "authorized_access_point": "Bone banks"}, {"source": "MeSH", "identifiedBy": {"type": "uri", "value": "https://id.nlm.nih.gov/mesh/M0027859", "source": "MeSH"}, "authorized_access_point": "Bone Banks"}, {"source": "RVMLaval", "authorized_access_point": "Banques d'os"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/259599174", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180217376", "source": "BNF"}], "classification": [{"name": "Sciences de la vie", "type": "bf:ClassificationDdc", "classificationPortion": "570"}, {"name": "Sciences médicales et paramédicales", "type": "bf:ClassificationDdc", "classificationPortion": "610"}], "variant_access_point": ["Banques de tissu osseux", "Os, Banques d'", "Tissu osseux, Banques de"], "authorized_access_point": "Banques d'os"} 1 -2023-08-08 13:37:43.876555 2023-08-08 13:37:43.876558 4e42a26d-4632-49cf-a7a5-11729b80525f {"md5": "a6bcaa5e7d21d6f3bbf7283f336ce8e3", "pid": "259943401", "note": [{"label": ["Trésor de la langue française : corporéité, corporalité - http://stella.atilf.fr (2022-07-13)", "Grand dict. de la philosophie / M. Blay, 2003", "Dict. de philosophie / C. Godin, 2004", "Dict. Merleau-Ponty / P. Dupond, 2007", "Structure, origine et affectivité : quelques réflexions à propos de la corporéité / G. Florival [in] Revue philosophique de Louvain, 1979, 34 - https://www.persee.fr (2022-07-13)", "Le corps de la responsabilité : sensibilité, corporéité et subjectivité chez Lévinas / R. Calin [in] Les études philosophiques, 2006, 3, 78 - https://www.cairn.info (2022-07-13)", "Altérité et corporéité dans l'oeuvre de Jean-Paul Sartre / A. Abdellaoui, 2008 [thèse]"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Corps (philosophie)"}], "related": [{"authorized_access_point": "Esprit et corps"}, {"authorized_access_point": "Phénoménologie"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "GND", "authorized_access_point": "Leiblichkeit"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/259943401", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18024286r", "source": "BNF"}], "classification": [{"name": "Philosophie", "type": "bf:ClassificationDdc", "classificationPortion": "100"}], "variant_access_point": ["Corporalité (philosophie)", "Corporéité (philosophie)", "Corps vécu (philosophie)", "Leib (philosophie)"], "authorized_access_point": "Chair (philosophie)"} 1 -2023-08-08 13:37:43.926956 2023-08-08 13:37:43.926959 29371555-eb1b-4386-b464-08054b33a488 {"md5": "f34cb8c3c49098160a0d6cc0201b1576", "pid": "259951293", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Réfugiés syriens"}, {"authorized_access_point": "Syriennes"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/259951293", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb17992194g", "source": "BNF"}], "classification": [{"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}, {"type": "bf:ClassificationDdc", "classificationPortion": "305"}, {"name": "Sciences politiques", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Problèmes et services sociaux", "type": "bf:ClassificationDdc", "classificationPortion": "360"}, {"name": "Ethnologie, anthropologie, folklore", "type": "bf:ClassificationDdc", "classificationPortion": "390"}], "variant_access_point": ["Femmes syriennes réfugiées", "Syriennes - Réfugiées"], "authorized_access_point": "Réfugiées syriennes"} 1 -2023-08-08 13:37:43.981013 2023-08-08 13:37:43.981016 f4cf6a8e-44ff-4f96-ba37-8f98a0d567c6 {"md5": "a070b26c380708e0cb7a458c7310608e", "pid": "259974811", "note": [{"label": ["Orphanet - https://www.orpha.net (2022-07-15)", "Dict. de l'Académie de médecine - http://dictionnaire.academie-medecine.fr (2022-07-15)", "Dict. de l'Académie nationale de pharmacie - https://dictionnaire.acadpharm.org (2022-07-15)", "Dict. illustré des termes de médecine, 2012 (art. : Adamantinome)", "Dict. de médecine Flammarion, 2008"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tumeurs"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "MeSH", "identifiedBy": {"type": "uri", "value": "https://id.nlm.nih.gov/mesh/M0000883", "source": "MeSH"}, "authorized_access_point": "Ameloblastoma"}, {"source": "RVMLaval", "authorized_access_point": "Améloblastome"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/259974811", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180248643", "source": "BNF"}], "classification": [{"name": "Sciences médicales et paramédicales", "type": "bf:ClassificationDdc", "classificationPortion": "610"}], "variant_access_point": ["Adamantinome", "Adamantoblastome", "Amélome"], "authorized_access_point": "Améloblastome"} 1 -2023-08-08 13:37:44.030669 2023-08-08 13:37:44.030673 ec796417-0adc-475a-8aaf-b0273521ce5c {"md5": "323ff5cf4b178270d43b26520c321fbf", "pid": "259995118", "note": [{"label": ["Syncopes vasoplégiques et lésion du sympathique cervical / T. Plagnieux, 2000 [thèse]", "Infarctus du myocarde chez un transplanté cardiaque / G. Drobinski, R. Dorent [in] La Lettre du cardiologue, 1999, 320", "La migraine : connaissances descriptives, traitements et prévention, 1998", "Dict. de médecine Flammarion, 2008 : tyramine (épreuve à la)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Diagnostic biologique"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/259995118", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18021099t", "source": "BNF"}], "classification": [{"name": "Sciences médicales et paramédicales", "type": "bf:ClassificationDdc", "classificationPortion": "610"}], "variant_access_point": ["Épreuve à la tyramine", "Tyramine, Épreuve à la", "Tyramine, Test à la"], "authorized_access_point": "Test à la tyramine"} 1 -2023-08-08 13:37:44.158849 2023-08-08 13:37:44.158854 5fba171d-003d-494c-bd48-c1e89cc37710 {"md5": "e42955314869496c985b6f94bf2d9546", "pid": "261196715", "note": [{"label": ["Wikipédia - https://en.wikipedia.org (2022-07-11)", "Rules and regulations of the Magellanic Premium / American Philosophical Society, nc", "The Magellanic Premium of the American Philosophical Society - https://www.amphilsoc.org (2022-07-11)"], "noteType": "dataSource"}, {"label": ["Prix créé en 1786 grâce à une subvention de Jean-Hyacinthe Magellan. Il est attribué par l'American Philosophical Society pour des contributions majeures dans le domaine de la navigation (que ce soit par voie maritime, aérienne ou spatiale)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Prix et récompenses"}], "related": [{"authorized_access_point": "Navigation"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/261196715", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18024307w", "source": "BNF"}], "classification": [{"name": "Généralités", "type": "bf:ClassificationDdc", "classificationPortion": "000"}, {"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "variant_access_point": ["Magellanic Gold Medal", "Magellanic Prize"], "authorized_access_point": "Magellanic Premium"} 1 -2023-08-08 13:37:44.242476 2023-08-08 13:37:44.242479 c5e8ff27-3263-4022-9bfd-1b3b854f9280 {"md5": "9a7f43d1805d465fb08ff9cc2cdf7d3a", "pid": "261901532", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Guerre mondiale (1939-1945) - Mouvements de résistance"}, {"authorized_access_point": "Grèce - 1941-1944 (Occupation)"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2008113907", "source": "LCSH"}, "authorized_access_point": "World War, 1939-1945--Underground movements--Greece"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/261901532", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb178988057", "source": "BNF"}], "classification": [{"name": "Sciences politiques", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Histoire médiévale, moderne et contemporaine (sauf la France)", "type": "bf:ClassificationDdc", "classificationPortion": "940"}], "authorized_access_point": "Guerre mondiale (1939-1945) - Mouvements de résistance - Grèce"} 1 -2023-08-08 13:37:44.312523 2023-08-08 13:37:44.312529 3f080b95-8ccf-453b-80f0-beb4f9954b5e {"md5": "4510d28fdc9fec8367a3bd4bb6f5aa6e", "pid": "262111012", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Poésie italienne"}], "related": [{"authorized_access_point": "Épopées italiennes"}], "bnf_type": "genre/forme Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh99010470", "source": "LCSH"}, "authorized_access_point": "Narrative poetry, Italian"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262111012", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18003960b", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Poésie narrative italienne"} 1 -2023-08-08 13:37:44.390746 2023-08-08 13:37:44.390755 eb451445-62b1-4033-a514-de55248fb188 {"md5": "fa3d70e0aa75a8179143a0083ab01f44", "pid": "262111020", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Nouvelles espagnoles"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262111020", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18003978d", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Minifictions espagnoles"], "authorized_access_point": "Micronouvelles espagnoles"} 1 -2023-08-08 13:37:44.476006 2023-08-08 13:37:44.47601 106e21c4-3d4d-4679-a999-77b84f008495 {"md5": "5772a7ec2d6923ef0e154cd43e416940", "pid": "262111039", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262111039", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18006555c", "source": "BNF"}], "classification": [{"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "authorized_access_point": "Choeurs profanes (voix d'hommes, 5 voix) acc. de piano"} 1 -2023-08-08 13:37:44.541502 2023-08-08 13:37:44.541506 19c8c914-4725-41a7-865e-4c9e28dbc75b {"md5": "8d8edb307ff4d8719cb20763863dba93", "pid": "262111071", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "genre/forme Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh88005277", "source": "LCSH"}, "authorized_access_point": "Variations (Cello with string ensemble)"}, {"source": "RVMLaval", "authorized_access_point": "Variations (Violoncelle et ensemble à cordes)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262111071", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18008046h", "source": "BNF"}], "classification": [{"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "authorized_access_point": "Variations (violoncelle et ensemble à cordes)"} 1 -2023-08-08 13:37:44.608373 2023-08-08 13:37:44.60838 f0a499fa-41bb-4211-a7b5-3afb14a8976b {"md5": "934f5a1c5cbf0279cf3884632e489222", "pid": "26211108X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/26211108X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180080486", "source": "BNF"}], "classification": [{"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "authorized_access_point": "Variations (violons (2), alto, violoncelles (2))"} 1 -2023-08-08 13:37:47.462587 2023-08-08 13:37:47.462592 04202c57-1d2f-4b95-82cd-3a63c8be2e66 {"md5": "e687ccad9f854cd328dbc38f456f4921", "pid": "263714357", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Arabesques ([distributions instrumentales])"}, {"authorized_access_point": "Alto, Musique d'"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714357", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18024243g", "source": "BNF"}], "classification": [{"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "authorized_access_point": "Arabesques (alto)"} 1 -2023-08-08 13:37:44.699242 2023-08-08 13:37:44.699248 e105e009-9df4-4d65-9677-f648c398025d {"md5": "9ca0ee125bb6d7a4e06ccd6326ef9e5f", "pid": "262111098", "note": [{"label": ["Éléments pour une définition des séries cartographiques / J.-L. Arnaud [in] Documentation et bibliothèques, 2015, 61-4", "Séries cartographiques et géoréférencement : nouveau contexte, nouveaux enjeux / J.-L. Arnaud [in] e-Perimetron, 2015, 10, 4", "Catalogues et ressources du département des Cartes et plans - https://bnf.fr (2022-04-13)"], "noteType": "dataSource"}, {"label": ["Cartes dont la publication obéit à une logique sérielle, l'ensemble d'une série formant un tout cohérent"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Cartes"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262111098", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18008626j", "source": "BNF"}], "classification": [{"name": "Géographie, tourisme (guides) et voyages", "type": "bf:ClassificationDdc", "classificationPortion": "910"}], "variant_access_point": ["Séries de cartes"], "authorized_access_point": "Séries cartographiques"} 1 -2023-08-08 13:37:44.785615 2023-08-08 13:37:44.785627 3d6f937e-addc-4e71-916a-b62d0d0b74a4 {"md5": "5832609e6dc46e7c565999c3dc21cec2", "pid": "262125927", "note": [{"label": ["Grand Larousse universel", "Encycl. universalis - http://www.universalis-edu.com (2022-04-22)", "Dict. des religions / P. Poupard, 1993 (art. : Fêtes hindoues)", "Hist. des religions. II / H.-C. Puech, 1972"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fêtes religieuses - Hindouisme"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh86002490", "source": "LCSH"}, "authorized_access_point": "Holi (Hindu festival)"}, {"source": "RVMLaval", "authorized_access_point": "Holī"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262125927", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18010303b", "source": "BNF"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}, {"type": "bf:ClassificationDdc", "classificationPortion": "391"}], "variant_access_point": ["Fête des couleurs (hindouisme)", "Phâlgunotsava", "Vasantotsava"], "authorized_access_point": "Holi"} 1 -2023-08-08 13:37:44.879204 2023-08-08 13:37:44.879208 3436d0a6-93d5-467b-ae0b-3e5bbc302d22 {"md5": "b412e5ac6c74cec12ab0619c71d8d3a2", "pid": "262413817", "note": [{"label": ["Biographisch-Bibliographisches Kirchenlexikon (art. : Abel, Karl August von) : Kniebeugungsstreit vom 14.8.1838 [bis] 12.12.1845 - https://www.bbkl.de (2022-07-21)", "Über Protantismus und Kniebegeugung in Bayern / F. Thiersch, 1844", "Zweites offenes Bedenken, die Kniebeugungs-Frage, insbesondere die neueste Entschliessung vom 3. November 1844 betreffend : mit zwei Beilagen / F. F. K. Graf von Giech, 1841", "Haus der Bayerischen Geschichte (art. Königsreich Bayern 1806-1918 : Kniebeugeerlass) - https://www.hdbg.eu (2022-04-29)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262413817", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18010802c", "source": "BNF"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}], "variant_access_point": ["der Kniebeugungeerlass", "die Frage der Kniebeugung der Protestanten", "die Kniebeugungsstreit", "Question de la génuflexion"], "authorized_access_point": "die Kniebeugungsfrage (1838-1845)"} 1 -2023-08-08 13:37:44.92945 2023-08-08 13:37:44.929453 92ac3144-2c62-44e6-932f-d37e0baa03ae {"md5": "bb88efed39ec66d2e8ea8e621a4991ad", "pid": "262414023", "note": [{"label": ["Le soufisme à l'époque ottomane, XVI-XVIIIe siècle / R. Chih, C. Mayeur-Jaouen, 2010", "Dict. historique de l'Islam / J. et D. Sourdel, 2004 (art.: Suhrwardiya) : Shattâriya", "Encycl. of Islam, 1998 : S̲h̲aṭṭārīya", "The Oxford dict. of Islam / J. L. Esposito, 2003 : Shattari Tariqah", "Les voies d'Allah / A. Popovic, G. Veinstein, 1996 : Chattâriyya, Chattârî"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Confréries musulmanes"}, {"authorized_access_point": "Soufisme"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "https://id.loc.gov/authorities/subjects/sh2001009476", "source": "LCSH"}, "authorized_access_point": "Shaṭṭārīyyah"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262414023", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18011878v", "source": "BNF"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}], "variant_access_point": ["Shattâriyya", "Chattâriyya", "Chattârî", "Shattari tariqah"], "authorized_access_point": "Shaṭṭārīyya"} 1 -2023-08-08 13:37:44.978058 2023-08-08 13:37:44.978061 4659a9bf-dd38-42ef-8467-ce1fa903abf7 {"md5": "1b3cd2ce060dec04cccddea6143aafcd", "pid": "262414082", "note": [{"label": ["Encycl. universalis (art. : Judaïsme, les pratiques)", "Dict. encyclopédique du judaïsme, 1993 : kapparot", "Encycl. Judaica, 2007", "Les fêtes juives / Y. Leibowitz, 2008 : coutumes des kapparoth", "Dict. du judaïsme / A. Unterman, 1997 : coutume des kapparoth (sg : kapporos)", "Le judaïsme dans la vie quotidienne / E. Gugenheim, 1992 : usage des kapparoth", "Dict. de civilisation juive / J.-C. Attias, E. Benbassa, 1997 (art. : Solennités) : cérémonie des kaparot", "The encycl. of Judaism / J. Neusner, A. J. Avery-Peck, W. S. Green, 2003 (art. : Superstitions in Judaism) : Kapparah, sg. (yiddish : kappore shlagn)", "Oxford dict. of the Jewish religion : custom of kapparot"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Judaïsme - Rites et cérémonies"}], "related": [{"authorized_access_point": "Yom Kippour"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262414082", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180121874", "source": "BNF"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}, {"type": "bf:ClassificationDdc", "classificationPortion": "391"}], "variant_access_point": ["Kaparot", "Kapparah", "Kappore shlagn", "Cérémonie des kapparoth", "Coutume des kapparoth", "Expiations", "Kapparoth, Cérémonie des", "Kapparoth, Coutume des"], "authorized_access_point": "Kapparoth"} 1 -2023-08-08 13:37:45.025572 2023-08-08 13:37:45.025576 86cbc751-c3c2-498b-bfc9-d2b73f75bfcb {"md5": "b146d4afef3127d6ad18adc50a195921", "pid": "262414112", "note": [{"label": ["Encycl. universalis (art. : Homme, fils de l') - www.universalis-edu.com (2022-05-05)", "Dict. Jésus / École biblique et archéologique française de Jérusalem, 2021 (art. : Fils de l'homme ; Fils d'homme ; Ho huios tou anthrôpou ; Ben ãdãm)", "Jésus, l'encycl., 2017", "Sur les pas du Fils de l'homme : la théologie selon Saint Marc / A. Begasse de Dhaem [in] Nouvelle revue théologique, 2011, 133 - https://www.cairn.info (2022-05-11)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "https://id.loc.gov/authorities/subjects/sh85124809", "source": "LCSH"}, "authorized_access_point": "Son of Man"}, {"source": "RVMLaval", "authorized_access_point": "Fils de l'homme"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262414112", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180125788", "source": "BNF"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}], "variant_access_point": ["Fils d'homme", "Homme, Fils de l'", "Homme, Fils d'", "Huios tou anthropou", "Ben ãdãm", "Bar enash", "Bar nash"], "authorized_access_point": "Fils de l'homme"} 1 -2023-08-08 13:37:45.076019 2023-08-08 13:37:45.076022 6577f639-3dc5-4cf2-ae8c-ac3675c84b07 {"md5": "8f484298c0bed27ee348b6fd325375a2", "pid": "262668858", "note": [{"label": ["Encycl. de l'Islam - https://referenceworks-brillonline-com (2022-05-27)", "Dict. de l'Empire ottoman / F. Georgeon, N. Vatin, G. Veinstein, 2015", "Les voies d'Allah : les ordres mystiques dans l'Islam des origines à aujourd'hui / A. Popovic, G. Veinstein, 1996", "Le soufisme à l'époque ottomane / R. Chih, C. Mayeur-Jaouen, 2010"], "noteType": "dataSource"}, {"label": ["Entre le XVe et le XIXe siècle, trois confréries soufies sans lien organique s'inspirèrent du mouvement mystique \\"malamatiyya\\" constitué au IXe s. qui consistait à accomplir délibérément des actes contraires à la loi pour s'attirer l'opprobre et vivre ainsi dans l'humilité selon l'épître d'al-Sulami"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mystique - Islam"}, {"authorized_access_point": "Soufisme"}], "related": [{"authorized_access_point": "Confréries musulmanes"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "https://id.loc.gov/authorities/subjects/sh95003301", "source": "LCSH"}, "authorized_access_point": "Malāmatīyah"}, {"source": "GND", "authorized_access_point": "Malāmatīya"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262668858", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18014674n", "source": "BNF"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}], "variant_access_point": ["Hamzavis", "Hamzawiye", "Malamati", "Malamatis", "Malâmi", "Malâmis", "Malāmiyya", "Malāmiyya-Nūriyya", "Melâmi", "Melâmî-Hamzevî", "Melâmilik", "Melâmis", "Melâmis-Bayrâmis", "Melâmiye-Hamzaviye", "Melāmiyya", "Melâmiyya-Nûriyya", "Melâmiyye-Bayrâmiye", "Melâmiyye-Nuriye"], "authorized_access_point": "Malāmatiyya"} 1 -2023-08-08 13:37:45.143147 2023-08-08 13:37:45.143151 f200497e-707e-499d-9b7a-14cecc477cf2 {"md5": "bfbaf42107d3a32b56b25487f6c339a4", "pid": "262669161", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Trios ([distributions instrumentales])"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262669161", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180158853", "source": "BNF"}], "classification": [{"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "authorized_access_point": "Trios (accordéons (2), orgue)"} 1 -2023-08-08 13:37:45.22161 2023-08-08 13:37:45.221615 199c34c5-60f4-4aa1-9cbf-b4e6cb21eb7c {"md5": "4b489e1ef0b09addff298f6e489e864e", "pid": "262669188", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Quintettes à vent ([distributions instrumentales])"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262669188", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180160289", "source": "BNF"}], "classification": [{"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "authorized_access_point": "Quintettes à vent (clarinette, hautbois, piccolo, saxophone, trompette)"} 1 -2023-08-08 13:37:45.3123 2023-08-08 13:37:45.312306 d6b487f9-bf92-4fdd-a47d-5c0c6455a1fb {"md5": "fd8d3f05cb98a22548f370e081834f32", "pid": "26266920X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Quatuors ([distributions instrumentales])"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/26266920X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18016075t", "source": "BNF"}], "classification": [{"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "authorized_access_point": "Quatuors (piano, clarinette, trompette, alto)"} 1 -2023-08-08 13:37:45.372696 2023-08-08 13:37:45.3727 d9b3954f-c581-414f-be09-df18421a9e1e {"md5": "f2789c20626468ba1cdf1646afea49df", "pid": "262669234", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Antiquités lydiennes"}, {"authorized_access_point": "Céramique antique"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262669234", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18016123v", "source": "BNF"}], "classification": [{"name": "Ethnologie, anthropologie, folklore", "type": "bf:ClassificationDdc", "classificationPortion": "390"}, {"name": "Arts plastiques, sculpture", "type": "bf:ClassificationDdc", "classificationPortion": "730"}, {"name": "Dessin, arts décoratifs, artisanat d'art", "type": "bf:ClassificationDdc", "classificationPortion": "740"}, {"name": "Préhistoire et histoire ancienne", "type": "bf:ClassificationDdc", "classificationPortion": "930"}], "variant_access_point": ["Lydiens - Céramique"], "authorized_access_point": "Céramique lydienne"} 1 -2023-08-08 13:37:45.450975 2023-08-08 13:37:45.450983 4292796d-f764-4b46-9fab-674bbaae6533 {"md5": "8653b5c19f5b163ed84b83f0db22c8b9", "pid": "262669242", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Architecture antique"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262669242", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18016132t", "source": "BNF"}], "classification": [{"name": "Architecture", "type": "bf:ClassificationDdc", "classificationPortion": "720"}, {"name": "Préhistoire et histoire ancienne", "type": "bf:ClassificationDdc", "classificationPortion": "930"}], "variant_access_point": ["Lydiens - Architecture"], "authorized_access_point": "Architecture lydienne"} 1 -2023-08-08 13:37:45.539048 2023-08-08 13:37:45.539052 591f8b9a-e5fa-4fc5-955c-a9f2e3c1526c {"md5": "433f20d62ffc7006c3ff0a23d2ec9c47", "pid": "262669250", "note": [{"label": ["Grand dict. encyclopédique Larousse", "Encycl. universalis (art. : Intendants) - http://www.universalis-edu.com (2022-05-23)", "Dict. encyclopédique d'histoire / M. Mourre, 1996", "Les Carolingiens / C. Bonnet, C. Descatoire, 2001 (p. 102)", "L'Europe carolingienne 714-888 / G. Bührer-Thierry, 2010 (p. 117-8)"], "noteType": "dataSource"}, {"label": ["Nom donné dans le royaume franc à des inspecteurs royaux chargés d'inspecter le gouvernement des comtes. Alors qu'ils existaient déjà à l'époque mérovingienne, Charlemagne les organisa par le capitulaire de 802. Choisis tous les ans, ils étaient envoyés au moins deux par deux (un comte, un évêque) dans des régions déterminées, les missiatica. Ils étaient les représentants absolus de l'empereur (justice, perception de l'impôt, contrôle des routes et des travaux publics, entretien du domaine royal). Ils surveillaient les administrateurs et réformaient les abus. Contrairement au comte qui n'avait reçu du roi que la délégation des pouvoirs d'exécution (potestas), les missi étaient détenteurs de toute l'autorité royale (auctoritas). Ils transmettaient aux comtes les nouveaux capitulaires. L'institution dégénéra après Charlemagne et disparut au Xe siècle"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Administration locale - Personnel"}, {"authorized_access_point": "Droit franc"}, {"authorized_access_point": "Pouvoir royal"}, {"authorized_access_point": "Empire carolingien"}], "related": [{"authorized_access_point": "Capitulaires"}, {"authorized_access_point": "Comtes"}, {"authorized_access_point": "Délégation des pouvoirs (science politique)"}, {"authorized_access_point": "Évêques"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262669250", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180161602", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "305"}, {"name": "Droit", "type": "bf:ClassificationDdc", "classificationPortion": "340"}, {"name": "Administration publique", "type": "bf:ClassificationDdc", "classificationPortion": "350"}, {"name": "Histoire médiévale, moderne et contemporaine (sauf la France)", "type": "bf:ClassificationDdc", "classificationPortion": "940"}], "variant_access_point": ["Envoyés de l'empereur", "Envoyés du maître", "Envoyés du roi", "Envoyés du souverain", "Missus dominicus"], "authorized_access_point": "Missi dominici"} 1 -2023-08-08 13:37:45.609783 2023-08-08 13:37:45.609787 7f6547cc-01bd-4c1b-9c4f-115e6d0247a4 {"md5": "f1026676264a67e0b3620782a018d363", "pid": "262805111", "note": [{"label": ["Les prud'homies de pêche à l'époque contemporaine (1790-1962) : la permanence d'une institution hybride en Méditerranée française / D. Rauch, 2014", "Plus de 200 ans de Prud'homie de pêche à Collioure / Y. de Coninck, 2020", "Fiche d'inventaire du patrimoine culturel immatériel en France : pratiques des prud'homies de pêche en Méditerranée - https://www.culture.gouv.fr/Media/Pratiques-des-prud-homies-de-peche-en-Mediterranee (2022-06-27)"], "noteType": "dataSource"}, {"label": ["Communautés de patrons pêcheurs nées en France au Moyen Âge sur les côtes méditerranéennes. Elles constituent à la fois une communauté professionnelle et une juridiction de pêcheurs et œuvrent à la protection des espaces maritimes et la préservation des ressources halieutiques"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Métiers de la mer"}], "related": [{"authorized_access_point": "Pêches"}, {"authorized_access_point": "Coopératives de pêche"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262805111", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18021705k", "source": "BNF"}], "classification": [{"name": "Economie", "type": "bf:ClassificationDdc", "classificationPortion": "330"}, {"name": "Droit", "type": "bf:ClassificationDdc", "classificationPortion": "340"}, {"name": "Agriculture, élevage", "type": "bf:ClassificationDdc", "classificationPortion": "630"}], "variant_access_point": ["Prud'homies de pêcheurs"], "authorized_access_point": "Prud'homies de pêche"} 1 -2023-08-08 13:37:45.686155 2023-08-08 13:37:45.686163 84426a96-ee07-4aa9-9eaa-257c0b2c0b2e {"md5": "f305ea61a3bf016b57035f408d8f1616", "pid": "262915219", "note": [{"label": ["Dict. de l'Académie de médecine - http://dictionnaire.academie-medecine.fr (2022-07-15)", "Dict. illustré des termes de médecine, 2012"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Technique immunoenzymatique"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262915219", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18025047j", "source": "BNF"}], "classification": [{"name": "Sciences de la vie", "type": "bf:ClassificationDdc", "classificationPortion": "570"}, {"name": "Sciences médicales et paramédicales", "type": "bf:ClassificationDdc", "classificationPortion": "610"}], "variant_access_point": ["Immuno-capture"], "authorized_access_point": "Immunocapture"} 1 -2023-08-08 13:37:45.755026 2023-08-08 13:37:45.75503 813991ee-58b1-47f8-be35-694eb9fa257f {"md5": "0ebcff27d7419c6cf7150b5b7770544b", "pid": "262928264", "note": [{"label": ["Wikipedia (portail du genre et des études de genre) - https://fr.wikipedia.org (2022-05-20)", "Non-binarité et transidentités à l'adolescence : une revue de la littérature [in] Neuropsychiatrie de l'enfance et de l'adolescence, 2019, 67, 5-6 - https://www-sciencedirect-com (2022-05-20)", "Transidentités et transitude / K. Espineira, M.-Y. Thomas, 2022 - https://www.cairn.info (2022-05-27)", "Encycl. critique du genre : corps, sexualité, rapports sociaux / J. Rennes, 2016 (art. : Bicatégorisation)"], "noteType": "dataSource"}, {"label": ["Le concept englobe les identités de genre des personnes qui ne se reconnaissent ni strictement comme homme, ni strictement comme femme, réfutant ainsi la norme binaire masculin-féminin"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Identité sexuelle"}], "related": [{"authorized_access_point": "Études sur le genre"}, {"authorized_access_point": "Théorie queer"}, {"authorized_access_point": "Transidentité"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262928264", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180157598", "source": "BNF"}], "classification": [{"name": "Psychologie, psychanalyse", "type": "bf:ClassificationDdc", "classificationPortion": "150"}, {"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}], "variant_access_point": ["Enby", "Genderqueer", "Genres non binaires", "No-binary gender"], "authorized_access_point": "Non-binarité"} 1 -2023-08-08 13:37:45.837503 2023-08-08 13:37:45.837507 e7c6b687-b2e0-420c-ab84-cb55ba1c6c23 {"md5": "07328b2ddc0bc0af99326e01e5790ef6", "pid": "26292837X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bagatelles ([distributions instrumentales])"}, {"authorized_access_point": "Violon et piano, Musique de"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/26292837X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18017112f", "source": "BNF"}], "classification": [{"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "authorized_access_point": "Bagatelles (violon et piano)"} 1 -2023-08-08 13:37:45.916958 2023-08-08 13:37:45.916961 9a615b04-57d8-467d-9325-129b05a99ae3 {"md5": "3a4ac42a8a7364a9e839590034c749a4", "pid": "262928507", "note": [{"label": ["Caméléon : les filles Asperger déboulent ! / C. Deroin, 2020"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Adolescentes"}, {"authorized_access_point": "Adolescents autistes"}], "related": [{"authorized_access_point": "Enfants autistes"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "https://id.loc.gov/authorities/subjects/sh92001053", "source": "LCSH"}, "authorized_access_point": "Autistic youth"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262928507", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18017672p", "source": "BNF"}], "classification": [{"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}, {"name": "Sciences médicales et paramédicales", "type": "bf:ClassificationDdc", "classificationPortion": "610"}], "variant_access_point": ["Adolescentes autistiques"], "authorized_access_point": "Adolescentes autistes"} 1 -2023-08-08 13:37:45.967651 2023-08-08 13:37:45.967655 2998877c-921c-4a17-b5ae-5ad45b5f260b {"md5": "af6de4719283e4bfae506f9dfaaca95f", "pid": "262928701", "note": [{"label": ["Alfa Romeo Spider : l'hist. complète : 1966-1994 / J. Lombard, 2021", "The hist. of Alfa Romeo / S. Kingston, 2018", "Sports cars / B. Lafontaine, 1999"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Alfa Romeo (automobiles)"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2013002865", "source": "LCSH"}, "authorized_access_point": "Spider automobile"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262928701", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18018611q", "source": "BNF"}], "classification": [{"name": "Economie", "type": "bf:ClassificationDdc", "classificationPortion": "330"}, {"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "variant_access_point": ["Spider Alfa Romeo (automobile)"], "authorized_access_point": "Alfa Romeo Spider (automobile)"} 1 -2023-08-08 13:37:46.036198 2023-08-08 13:37:46.036204 be95cf49-680e-43aa-85ed-7161542b31d9 {"md5": "16504d5827c6c77c79fcca3a15b8dda3", "pid": "26307837X", "note": [{"label": ["S'emploie également en subdivision"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Géorgie - Histoire"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/26307837X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180223705", "source": "BNF"}], "classification": [{"name": "Histoire et géographie (généralités)", "type": "bf:ClassificationDdc", "classificationPortion": "900"}], "authorized_access_point": "Récits personnels géorgiens"} 1 -2023-08-08 13:37:46.099145 2023-08-08 13:37:46.099149 f183e6b6-208d-413e-a146-cda28aac7c2c {"md5": "2c632ba725672dd5d6420566f10a5b6e", "pid": "263492680", "note": [{"label": ["Ministère de la culture - https://www.culture.gouv.fr (2000-06-13)", "Légifrance - https://www.legifrance.gouv.fr (2022-06-13)", "ONISEP : Diplôme d'études chorégraphiques - https://www.onisep.fr (2022-06-13)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Danse - Étude et enseignement"}, {"authorized_access_point": "Diplômes"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263492680", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180198821", "source": "BNF"}], "classification": [{"name": "Education et enseignement", "type": "bf:ClassificationDdc", "classificationPortion": "370"}, {"name": "Dessin, arts décoratifs, artisanat d'art", "type": "bf:ClassificationDdc", "classificationPortion": "740"}], "variant_access_point": ["DEC", "Diplôme d'études chorégrahiques", "DNOP danse"], "authorized_access_point": "Diplôme national d'orientation professionnelle de danse"} 1 -2023-08-08 13:37:46.177153 2023-08-08 13:37:46.177158 653d3f4a-5bc1-43d8-8706-83068933b933 {"md5": "f73d3004a94854ef24206918e0a73945", "pid": "263499944", "note": [{"label": ["Sous cette vedette, on trouve les compositions (qui n'ont pas de forme ou de genre particulier) pour harmonica de verre et orchestre, et les recueils de compositions de formes et de genres différents pour harmonica de verre et orchestre"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263499944", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180231507", "source": "BNF"}], "classification": [{"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "authorized_access_point": "Harmonica de verre et orchestre"} 1 -2023-08-08 13:37:46.248585 2023-08-08 13:37:46.248588 ad585b2d-c68c-445e-ba1e-67bb62a24161 {"md5": "e5c24eebaa0db6d9207e821795bb7a95", "pid": "263499979", "note": [{"label": ["Orientation.ch - https://www.orientation.ch (2022-07-05)", "Secrétariat d'État à la formation, à la recherche et à l'innovation : liste des professions - https://www.becc.admin.ch (2022-07-05)", "Professionsante.ch - https://www.odasante.ch (2022-07-05)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Hôpitaux - Personnel"}, {"authorized_access_point": "Personnel paramédical"}], "related": [{"authorized_access_point": "Soins infirmiers en santé communautaire"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85093360", "source": "LCSH"}, "authorized_access_point": "Nurses' aides"}, {"source": "RVMLaval", "authorized_access_point": "Aides-infirmiers"}, {"source": "MeSH", "identifiedBy": {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/M0000733", "source": "MeSH"}, "authorized_access_point": "Allied health personnel"}, {"source": "MeSH", "identifiedBy": {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D009728", "source": "MeSH"}, "authorized_access_point": "Nurses' aides"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263499979", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18023352g", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "305"}, {"name": "Sciences médicales et paramédicales", "type": "bf:ClassificationDdc", "classificationPortion": "610"}], "variant_access_point": ["Assistantes en soin et santé communautaire (Suisse)"], "authorized_access_point": "Assistants en soins et santé communautaire (Suisse)"} 1 -2023-08-08 14:28:41.768251 2023-08-08 14:28:41.768262 72a7f534-4e8c-487a-b375-b6d71d6b4f36 {"md5": "9ddfc6e3ee5f77824ea9c9d4591b51d8", "pid": "027799425", "note": [{"label": ["Ne pas utiliser : employer les subdivisions 20e siècle, Histoire -- 20e siècle ou les vedettes construites comprenant la subdivision 1939-1975"], "noteType": "seeReference"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "deleted": "2023-08-08T14:28:41.752508+00:00", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027799425", "source": "IDREF"}], "authorized_access_point": "1939-1975 (f. Franco)"} 1 -2023-08-08 13:37:46.332838 2023-08-08 13:37:46.332845 f543da2c-929a-405a-8662-9d6bac837920 {"md5": "42d56ef1a4947458a52038aded08206f", "pid": "263500047", "note": [{"label": ["Sous cette vedette, obligatoirement suivie d'une subdivision géographique ou de la subdivision : À l'étranger, directement ou après une subdivision de sujet, on trouve les documents sur les marins français hors de France. Les documents sur les marins français en France se trouvent sous des vedettes-matière telles que : Marins -- France ; Marins -- [Subdivision de sujet] -- France ; etc"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Français"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263500047", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18023590k", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "305"}, {"name": "Economie", "type": "bf:ClassificationDdc", "classificationPortion": "330"}, {"name": "Art et science militaires", "type": "bf:ClassificationDdc", "classificationPortion": "355"}, {"name": "Ethnologie, anthropologie, folklore", "type": "bf:ClassificationDdc", "classificationPortion": "390"}], "authorized_access_point": "Marins français"} 1 -2023-08-08 13:37:46.429481 2023-08-08 13:37:46.429486 86f01ddc-b7f7-448f-a8e9-ff6ab47fdf81 {"md5": "13b5efe214fc9ccb24ac009086ec1c3f", "pid": "263500071", "note": [{"label": ["S'emploie uniquement en subdivision aux guerres et révolutions dont les Slovènes ne sont pas les principaux protagonistes, par ex. : Guerre mondiale (1914-1918) -- Participation slovène"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Slovénie - Histoire"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263500071", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180237219", "source": "BNF"}], "classification": [{"name": "Histoire et géographie (généralités)", "type": "bf:ClassificationDdc", "classificationPortion": "900"}], "authorized_access_point": "Participation slovène"} 1 -2023-08-08 13:37:46.529769 2023-08-08 13:37:46.529772 79f98fed-26ab-48bb-9998-70dd3d9fd32a {"md5": "b59b76b8d0a20b0b73639d9ea09189b3", "pid": "263500187", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Villes disparues, en ruine, etc. - [Localisations géographiques]"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263500187", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18024026b", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "915"}, {"name": "Préhistoire et histoire ancienne", "type": "bf:ClassificationDdc", "classificationPortion": "930"}], "authorized_access_point": "Villes disparues, en ruine, etc. - Angola"} 1 -2023-08-08 13:37:46.628885 2023-08-08 13:37:46.628888 7080360e-1d40-4535-b27a-e448658210f0 {"md5": "0ce3a3fc868e0084b8899a5ae6cdb160", "pid": "263610918", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Roman historique arabe"}, {"authorized_access_point": "Roman libanais"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263610918", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18025416c", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}, {"name": "Histoire et géographie (généralités)", "type": "bf:ClassificationDdc", "classificationPortion": "900"}], "variant_access_point": ["Roman historique arabe - Liban", "Roman historique libanais de langue arabe"], "authorized_access_point": "Roman historique libanais"} 1 -2023-08-08 13:37:46.68177 2023-08-08 13:37:46.681773 96c62ea3-8d0a-4ca2-870e-b72de9cfa9d6 {"md5": "60caa7a4170d71a442cd0424bb75076c", "pid": "263714233", "note": [{"label": ["Sous cette vedette, on trouve les compositions (qui n'ont pas de forme ou de genre particulier) pour saxophone et ensemble à cordes, et les recueils de compositions de formes et de genres différents pour cette même formation"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Concertos (saxophone et ensemble à cordes)"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85117870", "source": "LCSH"}, "authorized_access_point": "Saxophone with string ensemble"}, {"source": "RVMLaval", "authorized_access_point": "Saxophone et ensemble à cordes"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714233", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180050621", "source": "BNF"}], "classification": [{"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "authorized_access_point": "Saxophone et ensemble à cordes"} 1 -2023-08-08 13:37:46.735987 2023-08-08 13:37:46.73599 547dda4c-ca2b-43b6-bf47-f68936eb1e27 {"md5": "8d238ff5a71b2c60ba2e160eb94bcdb8", "pid": "263714241", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Saxophone et orchestre"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714241", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180053547", "source": "BNF"}], "classification": [{"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "authorized_access_point": "Poèmes symphoniques (saxophone et orchestre)"} 1 -2023-08-08 13:37:47.539836 2023-08-08 13:37:47.53984 51675c1e-ea80-41ac-b0c7-ca79583876a7 {"md5": "29369605bb3f92a731fa43b85f024e52", "pid": "263714365", "note": [{"label": ["Technologie fonctionnelle de l'automobile. 2, Transmission, train roulant et équipement électrique / H. Mémeteau, 2002", "Les trains roulants et ses évolutions technologiques, 2021"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Automobiles - Pièces"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714365", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18024292p", "source": "BNF"}], "classification": [{"name": "Economie", "type": "bf:ClassificationDdc", "classificationPortion": "330"}, {"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "authorized_access_point": "Trains roulants"} 1 -2023-08-08 13:37:46.784425 2023-08-08 13:37:46.784428 5fcff600-051d-43a0-8ff7-94515380c89c {"md5": "bdec5040ddab8d0bfb3c384caa51cff2", "pid": "26371425X", "note": [{"label": ["Grand dict. encyclopédique Larousse : ghanéen, enne", "Nouveau petit Robert 2009 (partie dérivés des noms propres) (art. : Ghana (Afrique)) : ghanéen, enne"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, obligatoirement suivie d'une subdivision géographique ou de la subdivision : À l'étranger, directement ou après une subdivision de sujet, on trouve les documents sur les femmes ghanéennes hors du Ghana. Les documents sur les femmes ghanéennes au Ghana se trouvent sous des vedettes-matière telles que : Femmes -- Ghana ; Femmes -- [Subdivision de sujet] -- Ghana ; etc"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ghanéens"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Prostituées ghanéennes"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Ghanéens"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/26371425X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18005957x", "source": "BNF"}], "classification": [{"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}, {"type": "bf:ClassificationDdc", "classificationPortion": "305"}, {"name": "Ethnologie, anthropologie, folklore", "type": "bf:ClassificationDdc", "classificationPortion": "390"}], "variant_access_point": ["Femmes ghanéennes"], "authorized_access_point": "Ghanéennes"} 1 -2023-08-08 13:37:46.834037 2023-08-08 13:37:46.83404 1f43ac26-91fb-4b8d-870c-4be9ee7cfb09 {"md5": "767e88154b051cca58578b4c160479eb", "pid": "263714268", "note": [{"label": ["Grand dict. encyclopédique Larousse : syrien, enne", "Nouveau petit Robert 2009 (partie dérivés des noms propres) (art. : Syrie (Proche-Orient)) : syrien, enne"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, obligatoirement suivie d'une subdivision géographique ou de la subdivision : À l'étranger, directement ou après une subdivision de sujet, on trouve les documents sur les femmes syriennes hors de Syrie. Les documents sur les femmes syriennes en Syrie se trouvent sous des vedettes-matière telles que : Femmes -- Syrie ; Femmes -- [Subdivision de sujet] -- Syrie ; etc"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Syriens"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Réfugiées syriennes"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Syriens"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714268", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180061031", "source": "BNF"}], "classification": [{"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}, {"type": "bf:ClassificationDdc", "classificationPortion": "305"}, {"name": "Ethnologie, anthropologie, folklore", "type": "bf:ClassificationDdc", "classificationPortion": "390"}], "variant_access_point": ["Femmes syriennes"], "authorized_access_point": "Syriennes"} 1 -2023-08-08 13:37:46.924835 2023-08-08 13:37:46.92484 467705f3-9079-4797-b050-e230f29241a1 {"md5": "aa91216612d33d9af51d9951152da2c8", "pid": "263714276", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Poésie néerlandaise"}], "bnf_type": "genre/forme Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh89000372", "source": "LCSH"}, "authorized_access_point": "Political poetry, Dutch"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714276", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18006157z", "source": "BNF"}], "classification": [{"name": "Sciences politiques", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Poésie politique néerlandaise"} 1 -2023-08-08 13:37:46.976122 2023-08-08 13:37:46.976125 3fcd9b40-8aad-4129-a266-01e6d33605d1 {"md5": "6e826d8072207471e60430f9c3d7d793", "pid": "263714284", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Poésie flamande"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714284", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18006159n", "source": "BNF"}], "classification": [{"name": "Sciences politiques", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Poésie politique flamande"} 1 -2023-08-08 13:37:47.025652 2023-08-08 13:37:47.025656 1b07ff3a-85bb-4e28-adac-878a8ef2f6b2 {"md5": "1bcf900671427d020cba02b534494dd0", "pid": "263714292", "note": [{"label": ["Droit des systèmes autonomes : véhicules intelligents, drones, seabots / A. Bensoussan, D. Gazagne, 2019", "Engins de déplacement personnel motorisés : la réglementation en pratique / J.-B Le Dall, F. Romey, 2021"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Véhicules"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714292", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180166117", "source": "BNF"}], "classification": [{"name": "Economie", "type": "bf:ClassificationDdc", "classificationPortion": "330"}, {"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "variant_access_point": ["EDP (véhicules)", "EDPM (véhicules)", "Engins de déplacement personnel motorisés"], "authorized_access_point": "Engins de déplacement personnel"} 1 -2023-08-08 13:37:47.619692 2023-08-08 13:37:47.619696 f6971c4d-1601-40bb-9b40-54fc13f9cf35 {"md5": "7dfbf3c1a8fa71c956ef1c1ff9c869b7", "pid": "263714373", "note": [{"label": ["The evolution of project management in a Scaled Agile environment / K. Wills, 2018", "The project manager's guide to mastering Agile : principles and practices for an adaptive approach / C. G. Cobb, 2015", "Enterprise agility for dummies / D. Rose, 2018"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Méthodes agiles (informatique)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714373", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180243025", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["SAFe (informatique)"], "authorized_access_point": "Scaled agile framework (informatique)"} 1 -2023-08-08 13:37:47.075617 2023-08-08 13:37:47.07562 b3d7e379-1b9c-443b-a458-9ac4f50d25f0 {"md5": "003bb9adf2e8234e2c0353037c1d95eb", "pid": "263714306", "note": [{"label": ["Introduction à la psychologie cognitive / P. Lemaire, A. Didierjean, 2018", "Les protocoles verbaux (think-aloud protocols) : enjeux méthodologiques de validité pour la recherche en contexte scolaire / K. Roussel [in] Canadian journal for new scholars in education, 2017, 8, 1 - https://doaj.org (2022-07-20)", "Verbal protocols in literacy research / S. E. Israel, 2015", "La méthode de la pensée à voix haute pour analyser les difficultés en lecture des élèves de 14 à 17 ans / É. Falardeau, C. Pelletier, D. Pelletier [in] Éducation & didactique, 2014, 8, 3 - https://journals.openedition.org/educationdidactique (2022-07-19)"], "noteType": "dataSource"}, {"label": ["Méthode de collecte de données utilisée en ergonomie informatique puis en sciences humaines : l'utilisateur doit énoncer à haute voix ce qu'il est en train de penser pendant qu'il exécute une tâche"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Psychologie cognitive"}, {"authorized_access_point": "Recherche qualitative"}], "related": [{"authorized_access_point": "Recherche-action"}, {"authorized_access_point": "Résolution de problème"}, {"authorized_access_point": "Tests utilisateurs"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Entretiens d'explicitation"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714306", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18018604f", "source": "BNF"}], "classification": [{"name": "Psychologie, psychanalyse", "type": "bf:ClassificationDdc", "classificationPortion": "150"}, {"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}, {"type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Méthode de la pensée à voix haute", "Raisonnement à voix haute", "Think-aloud protocols", "Verbal protocols"], "authorized_access_point": "Protocoles verbaux"} 1 -2023-08-08 13:37:47.130073 2023-08-08 13:37:47.130076 c987614c-4aef-4615-b6cb-d824903f5d64 {"md5": "b05b76f9223d96ce7a3e2207f80964c7", "pid": "263714314", "note": [{"label": ["Wikipédia : Affaire Ernest Rodric - https://fr.wikipedia.org (2022-07-01)", "L'affaire du Bois bleu : une innocente jetée aux chiens / G. Boursier, 2006", "Grands avocats - Chroniques juridiques : Affaire du Bois Bleu : autopsie d'une erreur judiciaire - https://www.grands-avocats.com (2022-07-01)"], "noteType": "dataSource"}, {"label": ["Affaire criminelle française. Suite au meurtre de Georges Segrétin au lieu-dit du Bois Bleu (Cher) le 4 novembre 1965, Monique Case sera inculpée avant d'être totalement innocentée grâce à une contre-enquête du juge d'instruction Mme Georgette Chouvelon. Le véritable assassin, Ernest Rodric sera condamné à perpétuité en 1967"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Erreurs judiciaires - France"}, {"authorized_access_point": "Faits divers - France"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714314", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18020814k", "source": "BNF"}], "classification": [{"name": "Droit", "type": "bf:ClassificationDdc", "classificationPortion": "340"}, {"name": "Problèmes et services sociaux", "type": "bf:ClassificationDdc", "classificationPortion": "360"}], "variant_access_point": ["Affaire Ernest Rodric (1965-1967)", "Affaire Monique Case (1965-1967)", "Bois Bleu, Affaire du (1965-1967)", "Ernest Rodric, Affaire (1965-1967)", "Monique Case, Affaire (1965-1967)"], "authorized_access_point": "Affaire du Bois Bleu (1965-1967)"} 1 -2023-08-08 13:37:47.19069 2023-08-08 13:37:47.190693 a75d7e0e-ed34-4e2d-9ca2-f0544b03105a {"md5": "c898b250a049b610c201a5a3e10fac4e", "pid": "263714322", "note": [{"label": ["Languagecert test of english - https://www.languagecert.org (2022-07-20)", "Legifrance : Décision du 16 septembre 2021 portant enregistrement au Répertoire national des certifications professionnelles et au répertoire spécifique - https://www.legifrance.gouv.fr (2022-07-20)", "Using self-assessments to investigate comparability of the CEFR and CSE : an exploratory study using the LanguageCert Test of english / W. Zhao, D. Coniam [in] International journal of TESOL studies, 2022, 4, 1 - https://go-gale-com (2022-07-20)"], "noteType": "dataSource"}, {"label": ["Certification de l'organisme PeopleCert International alignée sur le Cadre européen commun de référence"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Anglais (langue) - Examens"}], "related": [{"authorized_access_point": "Cadre européen commun de référence en langue"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714322", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18020892c", "source": "BNF"}], "classification": [{"name": "Education et enseignement", "type": "bf:ClassificationDdc", "classificationPortion": "370"}, {"name": "Langues et linguistique", "type": "bf:ClassificationDdc", "classificationPortion": "400"}], "variant_access_point": ["LTE"], "authorized_access_point": "LanguageCert Test of English"} 1 -2023-08-08 13:37:47.274633 2023-08-08 13:37:47.274639 c5c2f360-fe8f-409c-94ae-b4f57b566c95 {"md5": "27e3ebc50fb8c8098ce8ac6e9cfd02ba", "pid": "263714330", "note": [{"label": ["Sous cette vedette, on trouve les compositions (qui n'ont pas de forme ou de genre particulier) pour clavecin, deux cors, deux violons et violoncelle, et les recueils de compositions de formes et de genres différents pour cette même formation"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sextuors ([distributions instrumentales])"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714330", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18021604z", "source": "BNF"}], "classification": [{"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "authorized_access_point": "Sextuors (clavecin, cors (2), violons (2), violoncelle)"} 1 -2023-08-08 13:37:47.365004 2023-08-08 13:37:47.36501 32bb6900-42b7-42a7-85f8-eae0476802ef {"md5": "878b8ce44237dbce1b44f8046da03da2", "pid": "263714349", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Saxophone et ensemble à cordes"}], "bnf_type": "genre/forme Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85030338", "source": "LCSH"}, "authorized_access_point": "Concertos (Saxophone with string ensemble)"}, {"source": "RVMLaval", "authorized_access_point": "Concertos (Saxophone et ensemble à cordes)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714349", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18024222h", "source": "BNF"}], "classification": [{"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "authorized_access_point": "Concertos (saxophone et ensemble à cordes)"} 1 -2023-08-08 13:37:47.691692 2023-08-08 13:37:47.691697 17186f61-5b84-4a40-b8b2-afa4226083b6 {"md5": "2c8387988e5f505c57450f5fb14190ee", "pid": "26371439X", "note": [{"label": ["Wikipédia : Westland Lynx - http://fr.wikipedia.org (2022-07-11)", "Aviation militaire : Aérospatiale-Westland WG-13 Lynx - https://aviationsmilitaires.net (2022-07-11)", "The Royal Navy Lynx : An Operational History / L. Jeram-Croft, 2017"], "noteType": "dataSource"}, {"label": ["Hélicoptère conçu par Westland Helicopters et produit conjointement avec Aérospatiale. Son premier vol a eu lieu le 21 mars 1971. Opérationnel à partir 1977, il a été adopté par plus d'une douzaine de nations"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Hélicoptères militaires - Europe"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2012003729", "source": "LCSH"}, "authorized_access_point": "Westland Lynx (Military helicopter)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/26371439X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18024324g", "source": "BNF"}], "classification": [{"name": "Art et science militaires", "type": "bf:ClassificationDdc", "classificationPortion": "355"}, {"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "variant_access_point": ["Westland Lynx (hélicoptère)", "WG13 (hélicoptère)"], "authorized_access_point": "Lynx (hélicoptère)"} 1 -2023-08-08 13:37:47.7814 2023-08-08 13:37:47.781409 395cca02-cb53-4ea3-83f5-ddd77ebd4ea6 {"md5": "afcf59e3488d6bcca2f3c36ee561efbf", "pid": "263714403", "note": [{"label": ["L'aviation : une révolution du XXe siècle / J. Noetinger, 2005", "Témoin privilégié de l'histoire de l'aviation du XXe siècle / J. Noetinger, 2010", "Carnet de vol / G.-H. Satgé, 1974"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Breguet (avions)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714403", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18024325t", "source": "BNF"}], "classification": [{"name": "Economie", "type": "bf:ClassificationDdc", "classificationPortion": "330"}, {"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "variant_access_point": ["Br. 763 Provence (avion de transport)", "Breguet deux-ponts Provence (avion de transport)"], "authorized_access_point": "Breguet 763 Provence (avion de transport)"} 1 -2023-08-08 13:37:47.860137 2023-08-08 13:37:47.860143 7bd35b7b-33bf-4368-ae76-c352a13cac81 {"md5": "2ceb969c4056bad39e13cbb194946f9b", "pid": "263714411", "note": [{"label": ["Habiliter les enfants à l'occupation : l'approche CO-OP : guider l'enfant dans la découverte des stratégies cognitives pour améliorer son rendement occupationnel au quotidien / H. J. Polatajko, A. Mandich, 2017", "L'approche CO-OP et l'accompagnement d'enfants présentant un trouble développemental de la coordination, quels apports pour l'ergothérapeute libéral ? / G. Conte, 2020 [thèse]", "Apport de l'approche CO-OP (cognitive orientation to daily occupational performance) auprès d'enfants paralysés cérébraux / H. Lebrault [in] Motricité cérébrale, 2019, 40, 2 - https://www-sciencedirect-com (2022-07-11)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ergothérapie"}], "related": [{"authorized_access_point": "Rééducation motrice"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714411", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18024330d", "source": "BNF"}], "classification": [{"name": "Psychologie, psychanalyse", "type": "bf:ClassificationDdc", "classificationPortion": "150"}, {"name": "Education et enseignement", "type": "bf:ClassificationDdc", "classificationPortion": "370"}, {"name": "Sciences médicales et paramédicales", "type": "bf:ClassificationDdc", "classificationPortion": "610"}], "variant_access_point": ["Cognitive orientation to daily occupational performance approach", "Orientation cognitive au rendement occupationnel quotidien"], "authorized_access_point": "Approche CO-OP"} 1 -2023-08-08 13:37:47.966694 2023-08-08 13:37:47.966698 249a50a4-2632-4971-827c-b9fa5dbb39d0 {"md5": "b168714abf2ad945e1901a06e3a4a67a", "pid": "26371442X", "note": [{"label": ["Autisme : le défi du programme TEACCH / G. B. Mesibov, 1995", "Approche éducative de l'autisme : le programme TEACCH, sa transposition en France / B. Rogé, E. Schopler [in] Psychologie française, 1998, 43, 3", "TEACCH autism programm - https://teach.com (2022-07-11)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Thérapie comportementale"}], "related": [{"authorized_access_point": "Enfants autistes - Communication"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/26371442X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180243474", "source": "BNF"}], "classification": [{"name": "Psychologie, psychanalyse", "type": "bf:ClassificationDdc", "classificationPortion": "150"}, {"name": "Education et enseignement", "type": "bf:ClassificationDdc", "classificationPortion": "370"}, {"name": "Sciences médicales et paramédicales", "type": "bf:ClassificationDdc", "classificationPortion": "610"}], "variant_access_point": ["Éducation structurée", "TEACCH programm", "Traitement et éducation des enfants autistes ou atteints de troubles de la communication associés", "Treatment and education of autistic and related communication handicapped children"], "authorized_access_point": "Programme TEACCH"} 1 -2023-08-08 13:37:48.024263 2023-08-08 13:37:48.024267 c41c5eeb-7a5f-4f67-a67f-a9aeff2a6b19 {"md5": "84252a5820edf8947c985afba41a08c7", "pid": "263714438", "note": [{"label": ["Le Robert - https://dictionnaire.lerobert.com/definition/sweat-shirt", "Trésor de la langue français (2022-07-11)", "Sweat-shirt - https://fr.wikipedia.org/wiki/Sweat-shirt", "Sweatshirts transformations / L. Rohlfing, 2012 (2022-07-11)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Vêtements de sport"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Sweatshirts"}, {"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh90001049", "source": "LCSH"}, "authorized_access_point": "Sweatshirts"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714438", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180244493", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "391"}, {"name": "Economie domestique, hôtellerie", "type": "bf:ClassificationDdc", "classificationPortion": "640"}], "variant_access_point": ["Hoodies", "Pulls molletonnés", "Sweats", "Sweatshirt"], "authorized_access_point": "Sweat-shirts"} 1 -2023-08-08 13:37:48.124715 2023-08-08 13:37:48.124717 e173339e-1f04-45ba-a504-616b50c2bdc1 {"md5": "dcc1e577bd87bc1614ffa26168689595", "pid": "263714454", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Cuisine balte"}, {"authorized_access_point": "Civilisation - Lituanie"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh87002092", "source": "LCSH"}, "authorized_access_point": "Cooking, Lithuanian"}, {"source": "RVMLaval", "authorized_access_point": "Cuisine lituanienne"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714454", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180244551", "source": "BNF"}], "classification": [{"name": "Economie domestique, hôtellerie", "type": "bf:ClassificationDdc", "classificationPortion": "640"}], "variant_access_point": ["Cuisine lituanienne - Lituanie"], "authorized_access_point": "Cuisine lituanienne"} 1 -2023-08-08 13:37:48.174002 2023-08-08 13:37:48.174005 483c1ec3-b084-4148-b75a-ea5586416199 {"md5": "6c59588b923baa83fdb07f7c1a04da4a", "pid": "263714462", "note": [{"label": ["L'apprentissage du langage : de la section enfantine au cours élémentaire (2e année) : leçons et exercices sur les thèmes des tableaux d'élocution de la Coopération Pédagogique / H. Géron, R. Charlot, G. Bonnin, 1954", "L'école de M. Rossignol : l'imagination pédagogique en images et en couleurs / P. Rossignol, M. Cordeboeuf, 2007", "Éléments pour une didactique des textes pluricodiques / M. Masselot-Girard [in] Repères : recherches en didactique du français langue maternelle, 1993, 7, p. 151-160 - www.persee.fr (2022-07-12)", "Vocabulaire, élocution, construction de phrases : cours élémentaire / J. Garagnon, 1966 : tableaux de vocabulaire-élocution - https://www.reseau-canope.fr/musee/collections/fr/museum (2022-07-12)", "Voir, savoir : la pédagogie par l'image au temps de l'imprimé du XVIe au XXe s. / A. Renonciat, 2011 (p. 108) : planches murales d'élocution"], "noteType": "dataSource"}, {"label": ["Planches au format jésus affichées aux murs des salles de classe élémentaires servant de supports à la verbalisation, l'élocution englobant alors lecture, orthographe, conjugaison et composition"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Acquisition du langage"}, {"authorized_access_point": "Illustrations en éducation"}], "related": [{"authorized_access_point": "Élocution"}, {"authorized_access_point": "Lecture - Méthodes d'apprentissage"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714462", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180245210", "source": "BNF"}], "classification": [{"name": "Education et enseignement", "type": "bf:ClassificationDdc", "classificationPortion": "370"}, {"type": "bf:ClassificationDdc", "classificationPortion": "401"}], "variant_access_point": ["Planches murales d'élocution", "Tableaux de vocabulaire-élocution"], "authorized_access_point": "Tableaux d'élocution"} 1 -2023-08-08 13:37:48.226158 2023-08-08 13:37:48.226161 5fbe4b66-2768-4014-900b-09e8e6a7589f {"md5": "8922a60f79f92a50447de92a9f350411", "pid": "263714470", "note": [{"label": ["Le livre bleu de la marétique, 2013", "Cybermarétique.fr : la sécurité informatique des systèmes d'information maritimes et portuaires - https://cybermaretique.fr (2022-07-12)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Informatique"}, {"authorized_access_point": "Navigation"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714470", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18024616p", "source": "BNF"}], "classification": [{"name": "Economie", "type": "bf:ClassificationDdc", "classificationPortion": "330"}, {"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}, {"type": "bf:ClassificationDdc", "classificationPortion": "621"}], "authorized_access_point": "Marétique"} 1 -2023-08-08 13:37:48.309411 2023-08-08 13:37:48.309415 aabcf15c-8a34-4a2a-97c2-4ae723199e7d {"md5": "c236f328d6bf536b84efac8b43aeacc8", "pid": "263714489", "note": [{"label": ["Le Robert - https://dictionnaire.lerobert.com/definition/nescafe (2022-07-12)", "Nescafé - https://fr.wikipedia.org/wiki/Nescaf%C3%A9 (2022-07-12)", "Communication stratégique et sensible à ll'ère numérique : vers un modèle relationnel dialogique ? : étude de cas : la communication en ligne de Nescafé / G. Tardin, 2022"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Marques de commerce"}], "related": [{"authorized_access_point": "Mots-valises"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85027704", "source": "LCSH"}, "authorized_access_point": "Instant coffee"}, {"source": "RVMLaval", "authorized_access_point": "Café soluble"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714489", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180246307", "source": "BNF"}], "classification": [{"name": "Economie domestique, hôtellerie", "type": "bf:ClassificationDdc", "classificationPortion": "640"}], "variant_access_point": ["Café instantané", "Café soluble"], "authorized_access_point": "Nescafé (marque déposée)"} 1 -2023-08-08 13:37:48.394762 2023-08-08 13:37:48.394765 0918ebc1-0c99-4489-980d-7be8f58f67b7 {"md5": "4716136e07a679d6ba4f59eedade15b4", "pid": "263714500", "note": [{"label": ["La difficile cohabitation de la géologie \\"profonde\\" et de la géomorphologie au pied des monts ibériques occidentaux / B. Lemartinel [in] Géomorphologie : relief, processus, environnement, 1999, 5, 3", "Recherches sur la géologie profonde - fosse de Valence (Drôme) / H. Gudefin, 1977"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Stratigraphie"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714500", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18024749x", "source": "BNF"}], "classification": [{"name": "Sciences de la Terre", "type": "bf:ClassificationDdc", "classificationPortion": "550"}], "variant_access_point": ["Couches géologiques profondes"], "authorized_access_point": "Géologie profonde"} 1 -2023-08-08 14:28:41.861265 2023-08-08 14:28:41.861276 3f58dea9-b00b-46d7-ae6e-8b9cf80b756b {"md5": "af23c8c245e4895254ebbd4861882789", "pid": "027804380", "note": [{"label": ["Ne pas utiliser : employer les subdivisions 19e siècle, Histoire -- 19e siècle ou les vedettes construites comprenant la subdivision 1849-1870"], "noteType": "seeReference"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "deleted": "2023-08-08T14:28:41.850206+00:00", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027804380", "source": "IDREF"}], "authorized_access_point": "1849-1870"} 1 -2023-08-08 13:37:48.493641 2023-08-08 13:37:48.493645 5475b721-056a-40e0-bbfc-d94000b83eb8 {"md5": "fa129cf3344d2c47049641d6fd941197", "pid": "263714519", "note": [{"label": ["Encycl. Larousse - https://www.larousse.fr/encyclopedie (2022-07-13)", "La protection contre la mer aux Pays-Bas : le Plan Delta [in] Géologues, 2008, 158", "La Zélande en arrive au terme du Plan Delta / F. Lentacker [in] Hommes et terres du Nord, 1981, 4"], "noteType": "dataSource"}, {"label": ["Plan conçu en 1955 aux Pays-Bas pour protéger le pays des inondations maritimes, suite à l'inondation meurtrière de 1953"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Inondations - Maîtrise"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714519", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18024775g", "source": "BNF"}], "classification": [{"name": "Sciences de la Terre", "type": "bf:ClassificationDdc", "classificationPortion": "550"}, {"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "variant_access_point": ["Delta, Plan", "Travaux Delta"], "authorized_access_point": "Plan Delta"} 1 -2023-08-08 13:37:48.561316 2023-08-08 13:37:48.561318 6741db49-8d90-47f3-91f3-919e489f258b {"md5": "37ccb7fad88daaa1c762a2684a2c9c0c", "pid": "263714527", "note": [{"label": ["Grand dict. terminologique", "La difficile émergence d'une conscience écologique en Pologne / K. Herbst [in] Strates : matériaux pour la recherche en sciences sociales, 1992, 6", "Où en sommes-nous de notre conscience écologique / C. Dartiguepeyrou [in] Vraiment durable : revue interdisciplinaire du développement durable, 2013, 2, 4"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Écologie humaine"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714527", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18024815w", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "577"}], "variant_access_point": ["Conscience environnementale"], "authorized_access_point": "Conscience écologique"} 1 -2023-08-08 13:37:48.626093 2023-08-08 13:37:48.626097 daea8caf-f348-4ba0-9dec-4f1f0db22e2e {"md5": "98f680ac662a1aef18ba966ec5d78723", "pid": "263714535", "note": [{"label": ["Formationprofessionnelle.ch : lexique - https://www.berufsbildung.ch (2022-07-13)", "LFPr, art. 23 : Loi fédérale sur la formation professionnelle : cours interentreprises et autres lieux de formation comparables - https://fedlex.data.admin.ch (2022-07-13)", "Conférence suisse des offices de la formation professionnelle - https://www.edk.ch/fr/csfp (2022-07-13)"], "noteType": "dataSource"}, {"label": ["Pendant l'apprentissage professionnel suisse, ces cours obligatoires complètent la formation en entreprise et à l'école professionnelle"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Formation en alternance"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714535", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180248198", "source": "BNF"}], "classification": [{"name": "Education et enseignement", "type": "bf:ClassificationDdc", "classificationPortion": "370"}], "variant_access_point": ["CIE (système éducatif suisse)", "Überbetriebliche Kurse (système éducatif suisse)"], "authorized_access_point": "Cours interentreprises (système éducatif suisse)"} 1 -2023-08-08 13:37:48.695651 2023-08-08 13:37:48.695654 8455f57d-f086-4b31-b543-87319d3832e5 {"md5": "250e9e047e44678772a2284c1f157de7", "pid": "263714543", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Luxembourgeois (langue)"}, {"authorized_access_point": "Poésie luxembourgeoise"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714543", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18024832g", "source": "BNF"}], "classification": [{"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "authorized_access_point": "Chansons luxambourgeoises"} 1 -2023-08-08 13:37:48.764292 2023-08-08 13:37:48.764295 895280bd-88ad-4082-80ad-c083f96488a3 {"md5": "4ac6a6fe90069d5545aaef97bc25eef2", "pid": "263714551", "note": [{"label": ["Wikipédia - https://fr.wikipedia.org (2022-07-13)", "Dict. encyclopédique du son / P.-L. de Nanteuil, 2008", "Oxford Music online (art. : Groovebox) - http://www.oxfordmusiconline.com (2022-07-13)", "Inside Rihanna : la fabrique des tubes / J. Seabrook [in] Audimat, 2014, 2, 2"], "noteType": "dataSource"}, {"label": ["Courtes séquences musicales destinées à être répétées"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Son - Enregistrement et reproduction -- Techniques numériques"}], "related": [{"authorized_access_point": "Séquenceur (instrument de musique)"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Échantillonnage (musique)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714551", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180248612", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}, {"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "variant_access_point": ["Loops (musique)"], "authorized_access_point": "Boucles (musique)"} 1 -2023-08-08 13:37:48.84016 2023-08-08 13:37:48.840164 f1bbff97-3c88-4da5-a566-6133b3fc0668 {"md5": "beadd5aa5177e479cecffa427dbee4da", "pid": "26371456X", "note": [{"label": ["Guide pratique de la vinification en blanc et rosé / C. Gros, S. Yerle, 2011", "Encycl. Hachette des vins, 2021"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Vin"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/26371456X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180251036", "source": "BNF"}], "classification": [{"name": "Agriculture, élevage", "type": "bf:ClassificationDdc", "classificationPortion": "630"}, {"name": "Economie domestique, hôtellerie", "type": "bf:ClassificationDdc", "classificationPortion": "640"}], "variant_access_point": ["Vin - Oxydation"], "authorized_access_point": "Vin oxydatif"} 1 -2023-08-08 13:37:48.923164 2023-08-08 13:37:48.923168 4cb57e12-a584-49f7-aec1-387b195c4677 {"md5": "e7a0cdf031a44995f614619364b057e2", "pid": "263714578", "note": [{"label": ["Voir aussi aux noms des personnes au centre des erreurs judiciaires, par ex. : Monique Case"], "noteType": "seeReference"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Erreurs judiciaires - [Localisations géographiques]"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Affaire du Bois Bleu (1965-1967)"}, {"authorized_access_point": "Calas, Affaire (1761-1762)"}, {"authorized_access_point": "Courrier de Lyon, Affaire du (1796)"}, {"authorized_access_point": "Dreyfus, Affaire (1894-1906)"}, {"authorized_access_point": "Outreau, Affaire d' (2001-2004)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714578", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180251930", "source": "BNF"}], "classification": [{"name": "Droit", "type": "bf:ClassificationDdc", "classificationPortion": "340"}, {"name": "Problèmes et services sociaux", "type": "bf:ClassificationDdc", "classificationPortion": "360"}, {"name": "Histoire de la France (depuis 486)", "type": "bf:ClassificationDdc", "classificationPortion": "944"}], "authorized_access_point": "Erreurs judiciaires - France"} 1 -2023-08-08 13:37:49.007671 2023-08-08 13:37:49.007676 cec9f9e5-6189-42b6-b814-1e3f2b728055 {"md5": "c791808fac3f9594dd6dc5e18d97ba13", "pid": "263714594", "note": [{"label": ["Diccionario panhispánico de dudas - https://www.rae.es/dpd/que%C3%ADsmo (2022-07-18)", "Queísmo - https://fr.wikipedia.org (2022-07-18)", "El queísmo en la historia : variación y cambio lingüístico en el régimen preposicional del español (siglos XVI-XXI) / J. L. Blas Arroyo, M. Velando Casanova, [2022]"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Espagnol (langue)"}, {"authorized_access_point": "Fautes de langage"}], "related": [{"authorized_access_point": "Hispanismes (idiotismes)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714594", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180252353", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "401"}], "variant_access_point": ["Chéisme"], "authorized_access_point": "Queísmo"} 1 -2023-08-08 13:37:49.061395 2023-08-08 13:37:49.061398 8e1eba43-e5d7-4694-856e-c1edee20c129 {"md5": "dd1d72a5512898de7c3dd6336ce405c0", "pid": "263714608", "note": [{"label": ["The Cambridge history of Spanish literature / D.T. Gies, 2004", "La otra sentimentalidad : estudio y antologia / F. Díaz de Castro, 2003", "À quoi bon la poésie aujourd'hui ? / C. Le Bigot, 2016 : L'autre sentimentalité (p.146)", "L'engagement littéraire : cahiers du groupe φ / E. Bouju, 2005 : L'autre sentimentalité (p.67-71)"], "noteType": "dataSource"}, {"label": ["Renouvellement poétique initié en 1980 à Grenade par les poètes L. Garcia Montero, J. Egea et A. Salvador qui prônaient l'historicisation de la sentimentalité ainsi qu'une poésie réaliste engagée"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mouvements littéraires - Espagne"}, {"authorized_access_point": "Littérature espagnole - 20e siècle"}, {"authorized_access_point": "Poésie espagnole"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714608", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18025352z", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["L' autre sentimentalité"], "authorized_access_point": "La otra sentimentalidad"} 1 -2023-08-08 13:37:49.116517 2023-08-08 13:37:49.11652 44c3fdfa-5bce-498a-806c-108ce6384587 {"md5": "e2ace3cfc18d5e904adff750dedb6316", "pid": "263714616", "note": [{"label": ["Encycl. of world military aircraft, 1996", "Encycl. of US Air Force aircraft and missile systems, 1978"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Avions de chasse - États-Unis"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh00001943", "source": "LCSH"}, "authorized_access_point": "Republic F-84 Thunderjet"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714616", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18025373x", "source": "BNF"}], "classification": [{"name": "Art et science militaires", "type": "bf:ClassificationDdc", "classificationPortion": "355"}, {"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "variant_access_point": ["F-84 Thunderjet (avion de chasse)"], "authorized_access_point": "Republic F-84 Thunderjet (avion de chasse)"} 1 -2023-08-08 13:37:49.165851 2023-08-08 13:37:49.165854 bfc511ac-4e23-4926-8b57-a5a8c655ebdd {"md5": "4ff59e51c11f2bff49574e8e4120f630", "pid": "263714624", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Poésie samaritaine"}], "bnf_type": "genre/forme Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "https://lccn.loc.gov/sh2002001652", "source": "LCSH"}, "authorized_access_point": "Hymns, Samaritan Aramaic"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714624", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18025421z", "source": "BNF"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}, {"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}, {"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Hymnes samaritains"} 1 -2023-08-08 14:28:42.008329 2023-08-08 14:28:42.00834 69396906-17f8-4f31-9b92-82eb7740fd74 {"md5": "624b2dfc22b718da6f2b81728defb981", "pid": "027805158", "note": [{"label": ["Ne pas utiliser : employer les subdivisions 19e siècle, Histoire -- 19e siècle ou les vedettes construites comprenant la subdivision 1837-1901"], "noteType": "seeReference"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "deleted": "2023-08-08T14:28:41.984200+00:00", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027805158", "source": "IDREF"}], "authorized_access_point": "1837-1901"} 1 -2023-08-08 13:37:49.216037 2023-08-08 13:37:49.21604 e9a42c7a-03e2-4e5e-bfcf-acefe8dd06a8 {"md5": "17d700449c25137b09304f1053833f16", "pid": "263714632", "note": [{"label": ["Trésor de la langue française (art. : Psychédélique) - http://stella.atilf.fr (2022-07-19)", "La contre-culture, États-Unis, années 60 : la naissance de nouvelles utopies / C. Saint-Jean-Paulin, 1997 [thèse] : Expérience psychédélique", "L'expérience psychédélique : Leary, Metzner et Alpert / T. Leary, 2013", "Hallucinogènes et culture : une approche neuroanthropologique de l'expérience psychédélique / D. Dupuis, L. Berkovitch [in] PSN, 2020, 18 (3)"], "noteType": "dataSource"}, {"label": ["État provoqué par l'absorption de drogues hallucinogènes. - Par extension, façon de vivre, éthique qui préconise l'utilisation de drogues hallucinogènes"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "États modifiés de conscience"}, {"authorized_access_point": "Psychotropes"}], "related": [{"authorized_access_point": "Beat generation"}, {"authorized_access_point": "Champignons hallucinogènes"}, {"authorized_access_point": "Hallucinations et illusions"}, {"authorized_access_point": "Hallucinogènes"}, {"authorized_access_point": "Hippies"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Art psychédélique"}, {"authorized_access_point": "Rock psychédélique"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714632", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180254349", "source": "BNF"}], "classification": [{"name": "Psychologie, psychanalyse", "type": "bf:ClassificationDdc", "classificationPortion": "150"}, {"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}, {"name": "Sciences médicales et paramédicales", "type": "bf:ClassificationDdc", "classificationPortion": "610"}], "variant_access_point": ["État psychédélique", "Expérience hallucinogène", "Expérience psychédélique", "Hallucinogènes - Aspect psychologique", "Hallucinogènes - Aspect social"], "authorized_access_point": "Psychédélisme"} 1 -2023-08-08 13:37:49.27336 2023-08-08 13:37:49.273365 7740d1fb-1a78-453f-85a1-f0b7acd1de25 {"md5": "c82a11f69f48376d378e3ff56fcbcab5", "pid": "263714640", "note": [{"label": ["S'emploie uniquement en subdivision"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Démographie"}], "related": [{"authorized_access_point": "Éducation - Aspect démographique"}, {"authorized_access_point": "Logement - Aspect démographique"}, {"authorized_access_point": "Religions - Aspect démographique"}, {"authorized_access_point": "Révolutions - Aspect démographique"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "--Aspect démographique"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714640", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180255546", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "304"}], "authorized_access_point": "Aspect démographique"} 1 -2023-08-08 13:37:49.348043 2023-08-08 13:37:49.34805 5db9dab6-72e2-402c-bc82-f5dce3bdf0c7 {"md5": "a5acf569efff53f998cd3a6053156f26", "pid": "263714659", "note": [{"label": ["Encycl. universalis (art. : Bhagavad-Gītā) : Jñānayoga - www.universalis-edu.com (2022-07-21)", "Dict. de la sagesse orientale : bouddhisme, hindouisme, taïoisme, zen, 1995 : Jñāna-yoga, Voie de la connaissance, Jñāna-yogi", "Yoga : l'encycl. / Y. Tardan-Masquelier, 2021 : Jñāna-yoga, Jñāna-mārga, Jñānin", "Introduction aux voies du yoga / T. Michaël, 2016 : Yoga de la connaissance"], "noteType": "dataSource"}, {"label": ["Du sanskrit \\"Jñāna\\" : connaissance. - La Vedanta (la fin des Veda) recommande de dépasser l'ignorance (Avidya) pour atteindre la réalité suprême (Brahman) et le véritable soi (Atman)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Yoga"}], "related": [{"authorized_access_point": "Ātman"}, {"authorized_access_point": "Avidyā"}, {"authorized_access_point": "Brahman"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85149180", "source": "LCSH"}, "authorized_access_point": "Yoga, Jñāna"}, {"source": "RVMLaval", "authorized_access_point": "Yoga, Jñāna"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714659", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180255604", "source": "BNF"}], "classification": [{"name": "Philosophie", "type": "bf:ClassificationDdc", "classificationPortion": "100"}, {"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}], "variant_access_point": ["Jñāna-mārga", "Jñāna-yogi", "Jñānayoga", "Jñānin", "Voie de la connaissance", "Yoga de la connaissance"], "authorized_access_point": "Jñāna-yoga"} 1 -2023-08-08 13:37:49.439331 2023-08-08 13:37:49.439336 aa93a2cc-1c85-487c-9c9e-959268ed17c0 {"md5": "5b56bac2331f985108d3316946135688", "pid": "263714667", "note": [{"label": ["Dict. historique de la Suisse (art. : Votations) - http://www.hls-dhs-dss.ch (2022-07-20)", "Le citoyen face à ses opinions : arguments, connaissances et campagnes politiques en Suisse / A. Nai, 2016", "Parlement suisse : Etude sur le financement des campagnes électorales et de votation / M. Meyer, 2019 - https://www.parlament.ch (2022-07-20)"], "noteType": "dataSource"}, {"label": ["S'emploie également en subdivision"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Campagnes électorales"}], "related": [{"authorized_access_point": "Élections"}, {"authorized_access_point": "Référendum"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714667", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180255995", "source": "BNF"}], "classification": [{"name": "Sciences politiques", "type": "bf:ClassificationDdc", "classificationPortion": "320"}], "variant_access_point": ["Campagnes de vote", "Votations - Campagnes de"], "authorized_access_point": "Campagnes de votation (Suisse)"} 1 -2023-08-08 13:37:49.525061 2023-08-08 13:37:49.525066 166d9f1e-7fb6-45d5-8084-ad568ff04c1e {"md5": "b19f9384a6dec401f83364e9a5da8cfd", "pid": "263714691", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Antiquités égyptiennes"}, {"authorized_access_point": "Lampes antiques"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714691", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180259680", "source": "BNF"}], "classification": [{"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}, {"name": "Dessin, arts décoratifs, artisanat d'art", "type": "bf:ClassificationDdc", "classificationPortion": "740"}, {"name": "Préhistoire et histoire ancienne", "type": "bf:ClassificationDdc", "classificationPortion": "930"}], "variant_access_point": ["Lampes égyptiennes - Antiquité", "Lampes égyptiennes antiques", "Lampes égyptiennes de l'Antiquité"], "authorized_access_point": "Lampes égyptiennes"} 1 -2023-08-08 14:28:42.148629 2023-08-08 14:28:42.148697 44ad847b-e2d5-4862-be53-417c0dfd25aa {"md5": "cfdd035b80013146fa412d11612f239e", "pid": "027805301", "note": [{"label": ["Ne pas utiliser : employer les subdivisions 19e siècle, Histoire -- 19e siècle ou les vedettes construites comprenant la subdivision 1815-1870"], "noteType": "seeReference"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "deleted": "2023-08-08T14:28:42.125605+00:00", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027805301", "source": "IDREF"}], "authorized_access_point": "1815-1870"} 1 -2023-08-08 13:37:49.57528 2023-08-08 13:37:49.575283 bab99072-979a-40c2-a58c-68dcdf272d2f {"md5": "3013bac93437e7af527bdd0954ccdd6b", "pid": "263714705", "note": [{"label": ["Respirianisme et risque de dérive sectaire - https://www.miviludes.interieur.gouv.fr (2022-07-22)", "Respirianisme : attention, danger ! - https://sante.journaldesfemmes.f (2022-07-22)", "Le jeûne thérapeutique : conséquenses métaboliques, pratiques, intérêts et limites / P. Chambouvet, 2016 [thèse] - bibnum.univ-lyon1.fr (2022-07-22)"], "noteType": "dataSource"}, {"label": ["Mouvement spirituel créé en 1993 par Jasmuheen prônant un jeûne extrême (inédie) et une \\"alimentation pranique\\" c'est-à-dire d'air et de lumière"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Jeûne"}], "related": [{"authorized_access_point": "Prāṇāyāma"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "GND", "authorized_access_point": "Lichtnahrung"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714705", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18025982j", "source": "BNF"}], "classification": [{"name": "Psychologie, psychanalyse", "type": "bf:ClassificationDdc", "classificationPortion": "150"}, {"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}], "variant_access_point": ["Breatharisme", "Mouvement respirianiste", "Nutrition pranique", "Pranisme"], "authorized_access_point": "Respirianisme"} 1 -2023-08-08 13:37:49.645987 2023-08-08 13:37:49.64599 27eef000-77a1-4f05-bab9-5a4c233d4280 {"md5": "bfe50ed362070c5a3870aab3ff5599b8", "pid": "263714713", "note": [{"label": ["Dict. de la préhistoire / A. Leroi-Gourhan, 1997 (art. : Bracelets)", "La préhistoire / D. Vialou, 2004 (art. : Parure)", "Les bracelets de pierre du Néolithique méridional / J. Courtin, X. Gutherz [in] Bulletin de la société préhistorique française. Études et travaux, 1976, 73, 1 - https://www.persee.fr (2022-07-22)"], "noteType": "dataSource"}, {"label": ["Faits d'éléments enfilés ou attachés, attestés à partir du Mésolithique, ou faits d'une seule pièce, en test, pierre ou métal au Néolithique, en bronze à partir de l'âge du Bronze, de forme et matière variées à l'âge du Fer (verre, etc.)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bijoux préhistoriques"}, {"authorized_access_point": "Bracelets (bijoux)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714713", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180259878", "source": "BNF"}], "classification": [{"name": "Dessin, arts décoratifs, artisanat d'art", "type": "bf:ClassificationDdc", "classificationPortion": "740"}, {"name": "Préhistoire et histoire ancienne", "type": "bf:ClassificationDdc", "classificationPortion": "930"}], "variant_access_point": ["Bracelets (bijoux) - Préhistoire", "Bracelets de la préhistoire", "Bracelets protohistoriques"], "authorized_access_point": "Bracelets préhistoriques"} 1 -2023-08-08 14:28:42.257143 2023-08-08 14:28:42.257151 48cd9898-f24d-4d28-93d7-e281b5632435 {"md5": "eabcfa699c405c06c2d4c9fe80069b0a", "pid": "027805824", "note": [{"label": ["Ne pas utiliser : employer les subdivisions 19e siècle, Histoire -- 19e siècle ou les vedettes construites comprenant la subdivision 1815-1848"], "noteType": "seeReference"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "deleted": "2023-08-08T14:28:42.243305+00:00", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027805824", "source": "IDREF"}], "authorized_access_point": "1815-1848"} 1 -2023-08-08 14:28:43.994487 2023-08-08 14:28:43.994492 84d4b0ee-072c-40c5-8954-74d841656051 {"md5": "cae57d83a68be8c607265ff469a2a8f1", "pid": "027812596", "note": [{"label": ["Ne plus utiliser : employer les subdivisions 20e siècle, Histoire -- 20e siècle ou les vedettes construites comprenant la subdivision 1918-1960"], "noteType": "seeReference"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "deleted": "2023-08-08T14:28:43.978364+00:00", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027812596", "source": "IDREF"}], "authorized_access_point": "1918-1960"} 1 -2023-08-08 14:28:44.067631 2023-08-08 14:28:44.067635 5e578a34-4d43-49b6-a5ad-0a9d6339a388 {"md5": "16fe5e514ce983f9df056df85e46ad26", "pid": "02781341X", "note": [{"label": ["Ne pas utiliser : employer les subdivisions 1970-...., Histoire -- 1970-...., ou les vedettes construites comprenant la subdivision 1981-"], "noteType": "seeReference"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "deleted": "2023-08-08T14:28:44.061768+00:00", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02781341X", "source": "IDREF"}], "authorized_access_point": "1981"} 1 -2023-08-08 14:28:44.862559 2023-08-08 14:28:44.862564 81f1b867-0897-4444-b8b2-5a2b77d61233 {"md5": "da2b7c67fbfab0ab7c20fee6e18cb08a", "pid": "027813533", "note": [{"label": ["Ne pas utiliser : employer les subdivisions 1900-1945, Histoire -- 1900-1945 ou les vedettes construites comprenant la subdivision 1917-1948"], "noteType": "seeReference"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "deleted": "2023-08-08T14:28:44.848459+00:00", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027813533", "source": "IDREF"}], "authorized_access_point": "1917-1948"} 1 -2023-08-08 14:28:46.899963 2023-08-08 14:28:46.899968 536add5e-018f-4e98-aedf-ae6b7be1d1a9 {"md5": "f38ef2f44cc52cccd0f6f614d0a0b79a", "pid": "027804232", "note": [{"label": ["Ne pas utiliser : employer les subdivisions 1900-1945 ; Histoire -- 1900-1945 ; Histoire -- 1939-1945 (Guerre mondiale) [ACN 787424] : aux noms des armes militaires ; Histoire -- 1940-1945 [ACN 162259] : aux noms de lieux français ; ou les vedettes construites comprenant la subdivision 1939-1945"], "noteType": "seeReference"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "deleted": "2023-08-08T14:28:46.891848+00:00", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027804232", "source": "IDREF"}], "authorized_access_point": "1939-1945"} 1 -2023-08-08 14:28:41.196148 2023-08-08 14:28:41.196153 f4f0e682-c018-4cd2-8dbc-7b32e2cd2048 {"md5": "215ab160a48f287a88affd57b670874c", "pid": "027796930", "note": [{"label": ["Ne pas utiliser : employer les subdivisions 1900-1945, Histoire -- 1900-1945 ou les vedettes construites comprenant la subdivision 1918-1939"], "noteType": "seeReference"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "deleted": "2023-08-08T14:28:41.182452+00:00", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027796930", "source": "IDREF"}], "authorized_access_point": "1918-1939"} 1 -2023-08-08 14:28:41.287102 2023-08-08 14:28:41.287114 32da71f8-3f15-4a87-b399-e73704929f9d {"md5": "b267858a4b6e93d997eea036808ce5f1", "pid": "027797619", "note": [{"label": ["Ne pas utiliser : employer les subdivisions Moyen âge (ACN 211948), Histoire -- Moyen âge (ACN 218067) ou les vedettes construites comprenant la subdivision 476-1492"], "noteType": "seeReference"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "deleted": "2023-08-08T14:28:41.276336+00:00", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027797619", "source": "IDREF"}], "authorized_access_point": "476-1492"} 1 -2023-08-08 14:28:41.389551 2023-08-08 14:28:41.389559 b6fdadc1-d4c0-47ae-b013-4e44193d618a {"md5": "2a8f99a372d55e63dfe6fc62289be74d", "pid": "027798461", "note": [{"label": ["Ne pas utiliser : employer les subdivisions 1900-1945, Histoire -- 1900-1945 ou les vedettes construites comprenant la subdivision 1889-1930"], "noteType": "seeReference"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "deleted": "2023-08-08T14:28:41.375163+00:00", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027798461", "source": "IDREF"}], "authorized_access_point": "1889-1930"} 1 -2023-08-08 14:25:02.813555 2023-08-08 14:35:53.190186 99024c9b-1e95-46e9-952f-0012b00b9d1e {"md5": "ee6b2b822d01cf06fe90b15f21f8a3ec", "pid": "029531411", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux vedettes du type : Église catholique -- [subd. géogr.] et aux vedettes en lien avec l'Église catholique"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Église catholique - 1965-...."}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029531411", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb121138342", "source": "BNF"}], "relation_pid": {"type": "redirect_from", "value": "08582898X"}, "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}, {"name": "Histoire et géographie (généralités)", "type": "bf:ClassificationDdc", "classificationPortion": "900"}], "authorized_access_point": "1965-...."} 3 -2023-08-08 13:58:50.849152 2023-08-08 14:31:44.81173 52dd2fc8-bc87-4e7f-b3bb-4985ccf26ee6 {"md5": "4c3f92fdb4c60044f15ccad2b451fe8a", "pid": "027794687", "note": [{"label": ["Dict. encyclopédique d'histoire / M. Mourre, 1996"], "noteType": "dataSource"}, {"label": ["Laval RVM (en ligne), 2012-10-16."], "noteType": "dataNotFound"}, {"label": ["2 septembre 1945 : fin de la Seconde guerre mondiale", "S'emploie uniquement en subdivision chronologique [sans subd. géogr.] à tous sujets noms communs et noms propres, à l'exception des personnes et des sujets pour lesquels il existe un découpage chronologique spécifique, par ex. : Canada -- 1914-1945"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "20e siècle"}], "related": [{"authorized_access_point": "1870-1914"}, {"authorized_access_point": "Histoire universelle - 1914-1945"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027794687", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11976044c", "source": "BNF"}], "relation_pid": {"type": "redirect_from", "value": "028658531"}, "classification": [{"name": "Histoire", "type": "bf:ClassificationDdc", "classificationPortion": "900"}], "variant_access_point": ["1900-1945 (subdivision)"], "authorized_access_point": "1900-1945"} 8 -2023-08-08 14:34:56.662705 2023-08-08 14:35:50.046233 8e919197-8fe9-4c9f-8c99-11a69cb349ec {"md5": "7a024d7b6a7f20312a4467466359d9b6", "pid": "033297746", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures suédoises"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Suédois (langue) - 1525-1732"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/033297746", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12417795g", "source": "BNF"}], "classification": [{"name": "Langues", "type": "bf:ClassificationDdc", "classificationPortion": "400"}], "authorized_access_point": "1525-1732"} 2 -2023-08-08 14:34:56.74233 2023-08-08 14:35:50.1512 fa7e361b-808e-4a30-8ebd-3467a4a9befc {"md5": "d2936409633838dc01b5efd5f06ec100", "pid": "050170406", "note": [{"label": ["S'emploie uniquement en subdivision chronologique non affranchie sous la vedette : Église catholique -- [subd. géogr.]"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050170406", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13339991h", "source": "BNF"}], "classification": [{"name": "Religion", "type": "bf:ClassificationDdc", "classificationPortion": "200"}, {"name": "Histoire", "type": "bf:ClassificationDdc", "classificationPortion": "900"}], "authorized_access_point": "1900-1965"} 2 -2023-08-08 14:34:56.80743 2023-08-08 14:35:50.216607 396f5ee3-eb51-4d85-9ec8-ecb32d47e8a8 {"md5": "578c392be74219d8be719c0739bd3457", "pid": "098272225", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures turques"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature turque - 1839-1923"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/098272225", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15048183d", "source": "BNF"}], "classification": [{"name": "Littératures", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1839-1923"} 2 -2023-08-08 14:34:56.905927 2023-08-08 14:35:50.290622 f23d7806-3e56-44fe-8499-7c0f84293fbd {"md5": "9ae1b203c42ba83631436d766dbcbd30", "pid": "241963974", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures japonaises"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/241963974", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb17818148x", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "2019-....(Ère Reiwa)"} 2 -2023-08-08 14:25:03.873956 2023-08-08 14:35:53.705899 3ca071f0-ddbc-47ab-84b1-051e28b3ccf0 {"md5": "c8dd3a54dc03d0d882de40daa121b1c0", "pid": "033466300", "note": [{"label": ["Dict. encyclopédique d'histoire / M. Mourre, 1996"], "noteType": "dataSource"}, {"label": ["3 octobre 1990 : unification de l'Allemagne et fin de la Guerre froide ; 2020 : coronavirus", "S'emploie uniquement en subdivision chronologique à tous sujets noms communs et noms propres à l'exception des personnes et des sujets pour lesquels il existe un découpage chronologique spécifique, par ex. : Europe -- 1989-"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "1970-...."}], "related": [{"authorized_access_point": "2000-...."}, {"authorized_access_point": "Histoire universelle - 1990-...."}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/033466300", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12432924q", "source": "BNF"}], "relation_pid": {"type": "redirect_from", "value": "033466386"}, "classification": [{"name": "Histoire et géographie (généralités)", "type": "bf:ClassificationDdc", "classificationPortion": "900"}], "variant_access_point": ["1990-2020 (subdivision)"], "authorized_access_point": "1990-2020"} 3 -2023-08-08 14:25:04.600016 2023-08-08 14:35:54.342035 8eabcdf6-cfa4-466d-9109-fcc3bf4561ca {"md5": "36a14563741d351d7567f1692ec584d5", "pid": "050665391", "note": [{"label": ["S'emploie uniquement en subdivision chronologique à tous sujets noms communs et noms propres, à l'exception des personnes et des sujets pour lesquels il existe un découpage chronologique spécifique"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "1800-...."}], "related": [{"authorized_access_point": "1990-2020"}, {"authorized_access_point": "Vingt et unième siècle"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050665391", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb135365257", "source": "BNF"}], "classification": [{"name": "Histoire et géographie (généralités)", "type": "bf:ClassificationDdc", "classificationPortion": "900"}], "variant_access_point": ["2000-.... (subdivision)", "21e siècle (subdivision)", "Vingt et unième siècle (subdivision)", "XXIe siècle (subdivision)", "21e siècle"], "authorized_access_point": "2000-...."} 3 -2023-08-08 14:36:35.646803 2023-08-08 14:36:35.646818 d9a213e6-e932-48f7-9d2d-fcc984520412 {"md5": "a6b4ae4c7dc1b32374309573a4a0a2b7", "pid": "027793974", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures allemandes", "Cette subdivision est utilisée dans une chaîne construite avec la vedette Littérature allemande, qui sert de vedette modèle. Elle est à utiliser par éléments avec tous les genres littéraires allemands"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature allemande - 1050-1350 (moyen haut-allemand)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027793974", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119759945", "source": "BNF"}], "classification": [{"name": "Langues et linguistique", "type": "bf:ClassificationDdc", "classificationPortion": "400"}, {"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1050-1350(moyen haut-allemand)"} 1 -2023-08-08 14:36:35.805204 2023-08-08 14:36:35.805215 d3de9aa0-6938-4e14-a8f8-cfdabb78514c {"md5": "f59538c5b5ed1bd32fcefb584c635c70", "pid": "027794016", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures anglaises", "Cette subdivision est utilisée dans une chaîne construite avec la vedette Littérature anglaise, qui sert de vedette modèle. Elle est à utiliser par éléments avec tous les genres littéraires anglais"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Anglais (langue) - +* 1100......- 1500......+:1100-1500: (moyen anglais)"}, {"authorized_access_point": "Littérature anglaise - 1100-1500 (moyen anglais)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027794016", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11975996v", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1100-1500(moyen anglais)"} 1 -2023-08-08 14:36:35.916406 2023-08-08 14:36:35.916411 71d8d265-c917-496e-9d67-afa415d3ebbf {"md5": "05a59d3956c22ff4cc21f6b8f4e0056e", "pid": "027794903", "note": [{"label": ["Dict. encyclopédique d'histoire / M. Mourre, 1996"], "noteType": "dataSource"}, {"label": ["Laval RVM (en ligne), 2012-10-16"], "noteType": "dataNotFound"}, {"label": ["19 juillet 1870 : la France déclare la guerre à la Prusse ; 20 septembre 1870 : entrée de l'armée italienne à Rome. 28 juillet 1914 : début de la Première guerre mondiale", "S'emploie uniquement en subdivision chronologique [sans subd. géogr.] à tous sujets noms communs et noms propres, à l'exception des personnes et des sujets pour lesquels il existe un découpage chronologique spécifique, par ex. : Allemagne -- 1871-1918"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "1800-...."}], "related": [{"authorized_access_point": "19e siècle"}, {"authorized_access_point": "1900-1945"}, {"authorized_access_point": "Histoire universelle - 1870-1914"}, {"authorized_access_point": "Littérature française - 1870-1914"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027794903", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119760629", "source": "BNF"}], "relation_pid": {"type": "redirect_from", "value": "086114468"}, "classification": [{"name": "Histoire et géographie (généralités)", "type": "bf:ClassificationDdc", "classificationPortion": "900"}], "variant_access_point": ["1870-1914 (subdivision)"], "authorized_access_point": "1870-1914"} 1 -2023-08-08 14:36:36.024687 2023-08-08 14:36:36.024729 1a2c6162-ce90-486a-a187-79407712c2af {"md5": "470fa238803b41a0a61e324ac3ddaf63", "pid": "027794954", "note": [{"label": ["S'emploie uniquement en subdivision chronologique [sans subd. géogr.] à la vedette Cinéma et aux vedettes désignant des genres cinématographiques"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Cinéma - 1929-1945"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027794954", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11976066p", "source": "BNF"}], "classification": [{"name": "Audiovisuel", "type": "bf:ClassificationDdc", "classificationPortion": "791"}], "authorized_access_point": "1929-1945"} 1 -2023-08-08 14:36:36.15238 2023-08-08 14:36:36.152388 7be0f4cb-6092-49af-937d-67c577a22892 {"md5": "7fbcbe811a57ee625f0d3e95fcc0e34d", "pid": "027794962", "note": [{"label": ["S'emploie uniquement en subdivision chronologique [sans subd. géogr.] à la vedette Cinéma et aux vedettes désignant des genres cinématographiques"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Cinéma - 1945-1960"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027794962", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119760671", "source": "BNF"}], "classification": [{"name": "Audiovisuel", "type": "bf:ClassificationDdc", "classificationPortion": "791"}], "authorized_access_point": "1945-1960"} 1 -2023-08-08 14:36:36.25052 2023-08-08 14:36:36.250527 d51cab3c-3402-4bbc-9433-882ffc8725e3 {"md5": "85718db3c11c62080dfa28e992460878", "pid": "027794970", "note": [{"label": ["S'emploie uniquement en subdivision chronologique [sans subd. géogr.] à la vedette Cinéma et aux vedettes désignant des genres cinématographiques"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Cinéma - 1960-1990"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027794970", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11976068c", "source": "BNF"}], "classification": [{"name": "Audiovisuel", "type": "bf:ClassificationDdc", "classificationPortion": "791"}], "authorized_access_point": "1960-1990"} 1 -2023-08-08 14:36:36.319685 2023-08-08 14:36:36.319689 97674a84-34c2-4f53-bcb2-bde96ccb969c {"md5": "33af7a1894bb303d356f6f18189e41db", "pid": "027795926", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures polonaises", "Cette subdivision est utilisée dans une chaîne construite avec la vedette Littérature polonaise, celle-ci servant de vedette modèle. Elle est à utiliser par éléments avec tous les genres littéraires polonais"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature polonaise - 1918-1945"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027795926", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15521981p", "source": "BNF"}], "relation_pid": {"type": "redirect_from", "value": "113932618"}, "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1918-1945"} 1 -2023-08-08 14:36:36.428666 2023-08-08 14:36:36.428678 fd1c8618-f5f8-4474-883d-91d0a8cbd332 {"md5": "18506a976f437cbb613506de2668b4b1", "pid": "027796817", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures espagnoles et portugaises", "Cette subdivision est utilisée dans une chaîne construite avec les vedettes Littérature espagnole et Littérature portugaise, qui servent de vedettes modèles. Elle est à utiliser par éléments avec tous les genres littéraires espagnols et portugais"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Espagnol (langue) - +* 1500......- 1700......+:1500-1700: (Période classique)"}, {"authorized_access_point": "Littérature espagnole - 1500-1700 (Période classique)"}, {"authorized_access_point": "Littérature portugaise - 1500-1700 (Période classique)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027796817", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11976189m", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1500-1700(Période classique)"} 1 -2023-08-08 14:36:36.532804 2023-08-08 14:36:36.532817 020bf9a9-fa75-4fea-bc71-06d203fcc4ae {"md5": "b1f7ce2f37b1374dee20a426f797bb2f", "pid": "027799433", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures espagnoles, catalanes et galiciennes"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature catalane - 1939-1975"}, {"authorized_access_point": "Littérature espagnole - 1939-1975"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027799433", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15586264m", "source": "BNF"}], "relation_pid": {"type": "redirect_from", "value": "120074303"}, "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1939-1975"} 1 -2023-08-08 14:36:36.643936 2023-08-08 14:36:36.643945 09bf1911-ebfc-42dd-bd15-875a04744e74 {"md5": "c59a35e4d5f82b6152804d9e3ee04676", "pid": "027804038", "note": [{"label": ["S'emploie uniquement en subdivision chronologique [sans subd. géogr.] à la vedette Cinéma et aux vedettes désignant des genres cinématographiques"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Cinéma - 1895-1929"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027804038", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11976743z", "source": "BNF"}], "classification": [{"name": "Audiovisuel", "type": "bf:ClassificationDdc", "classificationPortion": "791"}], "authorized_access_point": "1895-1929"} 1 -2023-08-08 14:36:36.742462 2023-08-08 14:36:36.742472 b775665f-e8f2-455d-80cd-ee3e36b045f0 {"md5": "d1e1ba8c5e56e22cbec9ee6a29ed03bf", "pid": "027804186", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures espagnoles, catalanes, galiciennes et vietnamiennes", "Cette subdivision est utilisée dans une chaîne construite avec les vedettes Littérature catalane, Littérature espagnole et Littérature vietnamienne, celles-ci servant de vedettes modèles. Elle est à utiliser par éléments avec tous les genres littéraires espagnols, catalans, galiciens et vietnamiens"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature catalane - 1975-...."}, {"authorized_access_point": "Littérature espagnole - 1975-...."}, {"authorized_access_point": "Littérature vietnamienne - 1975-...."}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027804186", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119767569", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1975-...."} 1 -2023-08-08 14:36:36.862358 2023-08-08 14:36:36.862362 06f00fc5-8fa3-429d-a624-2de659f12cbd {"md5": "a713f3716ced9f6a5d616aa5c2c92a3f", "pid": "030860466", "note": [{"label": ["Japanese Literary History - http://www.jlit.net (2018-08-30)"], "noteType": "dataSource"}, {"label": ["S'emploie uniquement en subdivision chronologique [sans subd. géogr.] aux littératures japonaises, par ex. : Poésie japonaise -- 1600-1868 (Époque d'Edo)", "Cette subdivision est utilisée dans une chaîne construite avec la vedette Littérature japonaise, qui sert de vedette modèle. Elle est à utiliser par éléments avec tous les genres littéraires japonais"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature japonaise - 1600-1868 (Époque d'Edo)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030860466", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb122191473", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["1600-1868 (Époque d'Edo)", "Époque d'Edo (1600-1868)"], "authorized_access_point": "1600-1868(Époque d'Edo)"} 1 -2023-08-08 14:36:36.956526 2023-08-08 14:36:36.956537 f477327a-5ef0-45bd-9501-aa8da9a7064b {"md5": "1255b779ff036b71b8732ec555ed8703", "pid": "031022219", "note": [{"label": ["S'emploie uniquement en subdivision chronologique à certaines littératures", "Cette subdivision est utilisée dans une chaîne construite avec les vedettes de littératures, celles-ci servant de vedettes modèles pour tous les genres littéraires de même langue ou de même nationalité, par ex. : Littérature russe -- Avant 1700. Elle est à utiliser par éléments avec les genres littéraires"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature biélorusse - Avant 1700"}, {"authorized_access_point": "Littérature écossaise - Avant 1700"}, {"authorized_access_point": "Littérature lituanienne - Avant 1700"}, {"authorized_access_point": "Littérature russe - Avant 1700"}, {"authorized_access_point": "Littérature serbe - Avant 1700"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031022219", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12232063s", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Avant 1700"} 1 -2023-08-08 14:36:37.042457 2023-08-08 14:36:37.042461 b98b4d1f-e5d2-4865-873f-4ca9c125944b {"md5": "c24aa7d62b52901dd8ea61246aa5d8fe", "pid": "031937667", "note": [{"label": ["S'emploie uniquement en subdivision chronologique à la langue et aux littératures catalanes", "Cette subdivision est utilisée dans une chaîne construite avec la vedette Littérature catalane, celle-ci servant de modèle. Elle est à utiliser par éléments avec tous les genres littéraires catalans"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Catalan (langue) - +* 1500......- 1799......+:16e-18e siècles: (Décadence)"}, {"authorized_access_point": "Littérature catalane - 16e-18e siècles (Décadence)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031937667", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb123061282", "source": "BNF"}], "classification": [{"name": "Langues et linguistique", "type": "bf:ClassificationDdc", "classificationPortion": "400"}, {"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "16e-18e siècles(Décadence)"} 1 -2023-08-08 14:36:37.173679 2023-08-08 14:36:37.173687 09fa9bc5-7bc3-4136-b7ea-6c0443794d3c {"md5": "8b483cc5775ca6cdcd8d959fc2d659ba", "pid": "033070202", "note": [{"label": ["La subdivision chronologique 1600-1755 (Période coloniale) s'emploie uniquement aux littératures et genres littéraires américains", "Cette subdivision est utilisée dans une chaîne construite avec la vedette Littérature américaine, celle-ci servant de vedette modèle pour les genres littéraires de même nationalité. Elle est à utiliser par éléments avec les genres littéraires"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature américaine - 1600-1775 (période coloniale)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/033070202", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb123973877", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1600-1775(Période coloniale)"} 1 -2023-08-08 14:36:37.252859 2023-08-08 14:36:37.252864 7d278631-1934-4a72-9c8b-3b6b8ca3e5cc {"md5": "dc0a30eadca3a8ca7f2e0a892fcd2ac2", "pid": "034577769", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures et genres littéraires belges, flamands et wallons", "Cette subdivision est utilisée dans une chaîne construite avec la vedette Littérature belge, celle-ci servant de vedette modèle. Elle est à utiliser par éléments avec tous les genres littéraires belges"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature belge - 1830-1900"}, {"authorized_access_point": "Littérature flamande - 1830-1900"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034577769", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb125319537", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1830-1900"} 1 -2023-08-08 14:36:37.314421 2023-08-08 14:36:37.314423 4974ccd2-aed1-4c51-aca4-cef932987328 {"md5": "4b8dcf237c477d70493791b9363819b6", "pid": "03483446X", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures chypriotes", "Cette subdivision est utilisée dans une chaîne construite avec la vedette Littérature chypriote, qui sert de vedette modèle. Elle est à utiliser par éléments avec tous les genres littéraires chypriotes"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature chypriote - 1571-...."}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03483446X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12554505d", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1571-...."} 1 -2023-08-08 14:36:37.387547 2023-08-08 14:36:37.387557 56165ddd-8151-41a4-9afb-d6f899f66f83 {"md5": "b95926ad7853c8be5393913ee172f565", "pid": "034853537", "note": [{"label": ["S'emploie uniquement en subdivision chronologique à certaines littératures, par exemple les littératures latino-américaines, la littérature arménienne, etc", "Cette subdivision est utilisée dans des chaînes construites avec les littératures, celles-ci servant de vedettes modèles pour tous les genres littéraires de même langue ou de même nationalité, par ex. : Littérature arménienne -- Avant 1800. Elle est à utiliser par éléments avec les genres littéraires"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature argentine - Avant 1800"}, {"authorized_access_point": "Littérature arménienne - Avant 1800"}, {"authorized_access_point": "Littérature basque - Avant 1800"}, {"authorized_access_point": "Littérature bolivienne - Avant 1800"}, {"authorized_access_point": "Littérature brésilienne - Avant 1800"}, {"authorized_access_point": "Littérature chilienne - Avant 1800"}, {"authorized_access_point": "Littérature colombienne - Avant 1800"}, {"authorized_access_point": "Littérature cubaine - Avant 1800"}, {"authorized_access_point": "Littérature équatorienne - Avant 1800"}, {"authorized_access_point": "Littérature finnoise - Avant 1800"}, {"authorized_access_point": "Littérature hispano-américaine - Avant 1800"}, {"authorized_access_point": "Littérature hongroise - Avant 1800"}, {"authorized_access_point": "Littérature latino américaine - Avant 1800"}, {"authorized_access_point": "Littérature mexicaine - Avant 1800"}, {"authorized_access_point": "Littérature persane - Avant 1800"}, {"authorized_access_point": "Littérature péruvienne - Avant 1800"}, {"authorized_access_point": "Littérature roumaine - Avant 1800"}, {"authorized_access_point": "Littérature slave - Avant 1800"}, {"authorized_access_point": "Littérature slovaque - Avant 1800"}, {"authorized_access_point": "Littérature slovène - Avant 1800"}, {"authorized_access_point": "Littérature ukrainienne - Avant 1800"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034853537", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12556227c", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Avant 1800"} 1 -2023-08-08 14:36:37.487359 2023-08-08 14:36:37.487369 db8d6bb2-8ebb-4b75-94f3-117c616bab14 {"md5": "ae15161166d70802ce226b68b137ffb0", "pid": "03487156X", "note": [{"label": ["Japanese Literary History - http://www.jlit.net (2010-07-12)"], "noteType": "dataSource"}, {"label": ["S'emploie uniquement en subdivision chronologique aux littératures japonaises", "Cette subdivision est utilisée dans une chaîne construite avec la vedette Littérature japonaise, qui sert de vedette modèle. Elle est à utiliser par éléments avec tous les genres littéraires japonais"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature japonaise - 1185-1600"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03487156X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb125578398", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1185-1600"} 1 -2023-08-08 14:36:37.585033 2023-08-08 14:36:37.585038 ea879123-ffc8-4981-8c45-d6ea94c8e630 {"md5": "300d0379607c6700441f87ad978c22e0", "pid": "034933697", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures allemandes", "Cette subdivision est utilisée dans une chaîne construite avec la vedette Littérature allemande, qui sert de vedette modèle. Elle est à utiliser par éléments avec tous les genres littéraires allemands"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature allemande - 750-1050 (vieux haut-allemand)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034933697", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb125633859", "source": "BNF"}], "classification": [{"name": "Langues et linguistique", "type": "bf:ClassificationDdc", "classificationPortion": "400"}, {"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "750-1050(vieux haut-allemand)"} 1 -2023-08-08 14:36:37.709926 2023-08-08 14:36:37.70994 e2ead26d-888c-414a-9627-e6dda081523b {"md5": "80ad0fea693e1ddc8ec846ab5e29cfca", "pid": "034934774", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures américaines", "Cette subdivision est utilisée dans une chaîne construite avec la vedette Littérature américaine, celle-ci servant de vedette modèle. Elle est à utiliser par éléments avec tous les genres littéraires américains"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature américaine - 1783-1865"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034934774", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb125634727", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["1783-1850"], "authorized_access_point": "1783-1865"} 1 -2023-08-08 14:36:37.839071 2023-08-08 14:36:37.839076 e29aba64-5c62-409d-8413-24f976c6654b {"md5": "03ff6369b7b32d2d23f9c1938077ec43", "pid": "034934936", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures anglaises", "Cette subdivision est utilisée dans une chaîne construite avec la vedette Littérature anglaise, qui sert de vedette modèle. Elle est à utiliser par éléments avec tous les genres littéraires anglais"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Anglais (langue) - +* 0450......- 1100......+:450-1100: (vieil anglais)"}, {"authorized_access_point": "Littérature anglaise - 450-1100 (vieil anglais)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034934936", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12563486x", "source": "BNF"}], "classification": [{"name": "Langues et linguistique", "type": "bf:ClassificationDdc", "classificationPortion": "400"}, {"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "450-1100(vieil anglais)"} 1 -2023-08-08 14:36:37.939476 2023-08-08 14:36:37.939486 c5414354-19e0-40e8-8490-83f2273b7503 {"md5": "5fd5f41bdeaf6c42613d2e35b7172e8a", "pid": "034935061", "note": [{"label": ["La subdivision chronologique Avant 622 s'emploie uniquement aux littératures et genres littéraires arabes", "Cette subdivision est utilisée dans une chaîne construite avec la littérature, celle-ci servant de vedette modèle pour les genres littéraires de même langue. Elle est à utiliser par éléments avec les genres littéraires"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature arabe - Avant 622"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034935061", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb125634967", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Avant 622"} 1 -2023-08-08 14:36:38.04093 2023-08-08 14:36:38.040934 a0f0022f-342d-44fc-a41e-df6a2a4147d3 {"md5": "40fcd9266ffe6af14d94a73f5ff18ae9", "pid": "034935134", "note": [{"label": ["La subdivision chronologique 622-750 s'emploie uniquement aux littératures et genres littéraires arabes", "Cette subdivision est utilisée dans une chaîne construite avec la littérature, celle-ci servant de vedette modèle pour les genres littéraires de même langue. Elle est à utiliser par éléments avec les genres littéraires"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature arabe - 622-750"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034935134", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb125635010", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "622-750"} 1 -2023-08-08 14:36:38.15992 2023-08-08 14:36:38.159924 b1bd4159-659e-42a4-911f-43a22c1815f8 {"md5": "c972c0188c5db3201ba3534db68394e5", "pid": "034935177", "note": [{"label": ["La subdivision chronologique 750-1258 s'emploie uniquement aux littératures et genres littéraires arabes", "Cette subdivision est utilisée dans une chaîne construite avec la littérature, celle-ci servant de vedette modèle pour les genres littéraires de même langue. Elle est à utiliser par éléments avec les genres littéraires"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature arabe - 750-1258"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034935177", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12563505c", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "750-1258"} 1 -2023-08-08 14:36:38.27549 2023-08-08 14:36:38.275494 905b11a4-a57c-4547-bb02-e6bdf1a657ac {"md5": "eac7be14a25c2f07cdd9a2b486c30312", "pid": "034935207", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures arabes"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature arabe - 1801-...."}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034935207", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb125635072", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1801-...."} 1 -2023-08-08 14:36:38.330467 2023-08-08 14:36:38.33047 8c8030e0-9385-42bb-8059-b4564db69157 {"md5": "224407fc8664efad7f87ce3f72205909", "pid": "034935274", "note": [{"label": ["La subdivision chronologique Avant 221 av. J.-C. s'emploie uniquement aux littératures et genres littéraires chinois", "Cette subdivision est utilisée dans une chaîne construite avec la littérature, celle-ci servant de vedette modèle pour les genres littéraires de même nationalité. Elle est à utiliser par éléments avec les genres littéraires"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature chinoise - Avant 221 av. J.-C."}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034935274", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12563512n", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Avant 221 av. J.-C."} 1 -2023-08-08 14:36:38.390747 2023-08-08 14:36:38.390752 1cf39e6e-f634-4c66-a5e4-aaba65228782 {"md5": "7d77391fb983b6e0a3537d483205eec2", "pid": "034935290", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures et genres littéraires chinois", "Cette subdivision est utilisée dans une chaîne construite avec la littérature chinoise, celle-ci servant de vedette modèle. Elle est à utiliser par éléments avec tous les genres littéraires chinois"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature chinoise - 221 av. J.-C.-220 (dynasties des Qin et des Han)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034935290", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb125635130", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}, {"name": "Préhistoire et histoire ancienne", "type": "bf:ClassificationDdc", "classificationPortion": "930"}], "authorized_access_point": "221 av. J.-C.-220(Dynasties des Qin et des Han)"} 1 -2023-08-08 14:36:38.521827 2023-08-08 14:36:38.521851 f3bcc4c5-3dba-4e27-a74c-999bee8bc73a {"md5": "af768121369c422958aabbfd2b290806", "pid": "034935304", "note": [{"label": ["Encycl. universalis (art. : Chinoise (Civilisation) - La littérature) : Empire des Tang (618-907) - http://www.universalis-edu.com (2014-07-25)"], "noteType": "dataSource"}, {"label": ["S'emploie uniquement en subdivision chronologique [sans subd. géogr.] aux littératures chinoises, par ex. : Poésie chinoise -- 618-907 (Dynastie des T′ang)", "Cette subdivision est utilisée dans une chaîne construite avec la vedette Littérature chinoise, qui sert de vedette modèle. Elle est à utiliser par éléments avec tous les genres littéraires chinois"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature chinoise - 618-907 (Dynastie des T′ang)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034935304", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12563514b", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "618-907(Dynastie des T′ang)"} 1 -2023-08-08 14:36:38.621724 2023-08-08 14:36:38.621734 2aa7711c-1eeb-4dc3-99da-ba94a1c9c11b {"md5": "8db12d54f85d7b12a7956bd23cb17692", "pid": "034935827", "note": [{"label": ["La subdivision chronologique 1368-1644 (Dynastie des Ming) s'emploie uniquement aux littératures et genres littéraires chinois", "Cette subdivision est utilisée dans une chaîne construite avec la littérature, celle-ci servant de vedette modèle pour les genres littéraires de même nationalité. Elle est à utiliser par éléments avec les genres littéraires"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature chinoise - 1368-1644 (Dynastie des Ming)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034935827", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12563558z", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1368-1644(Dynastie des Ming)"} 1 -2023-08-08 14:36:38.715927 2023-08-08 14:36:38.715932 b3276933-966c-4c6e-994d-3bf17b33d73b {"md5": "56fac10d6ef1399fc2c3bf98b30e5c3a", "pid": "034935835", "note": [{"label": ["La subdivision chronologique 1644-1912 (Dynastie Mandchoue) s'emploie uniquement aux littératures et genres littéraires chinois", "Cette subdivision est utilisée dans une chaîne construite avec la littérature, celle-ci servant de vedette modèle pour les genres littéraires de même nationalité. Elle est à utiliser par éléments avec les genres littéraires"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature chinoise - 1644-1912 (Dynastie mandchoue)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034935835", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb125635599", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1644-1912(Dynastie Mandchoue)"} 1 -2023-08-08 14:36:38.810937 2023-08-08 14:36:38.81094 a5d1eb4b-4345-414e-9f1f-5c0212eef780 {"md5": "2b5215066abda72b6791aeeb66dc7194", "pid": "034935908", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures coréennes", "Cette subdivision est utilisée dans une chaîne construite avec la vedette Littérature coréenne, celle-ci servant de vedette modèle. Elle est à utiliser par éléments avec tous les genres littéraires coréens"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature coréenne - 1600-1800"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034935908", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12563564w", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["1598-1800"], "authorized_access_point": "1600-1800"} 1 -2023-08-08 14:36:38.922049 2023-08-08 14:36:38.922059 cbda8652-82ec-45ba-ba83-fc44175180eb {"md5": "36d17808b1df75a327dcabf7903a1cfd", "pid": "034936890", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures grecques modernes", "Cette subdivision est utilisée dans une chaîne construite avec la vedette Littérature grecque moderne, celle-ci servant de vedette modèle. Elle est à utiliser par éléments avec tous les genres littéraires grecs modernes"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature grecque moderne - 1453-1820"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034936890", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb125636498", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["1453-1820", "1453-1800"], "authorized_access_point": "1453-1820"} 1 -2023-08-08 14:36:39.024576 2023-08-08 14:36:39.02458 bf47cc82-eee1-422d-a9d5-cecdc5385e2e {"md5": "c04b29a794e5e3ac8ac498c1e97ac7af", "pid": "034937072", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures coréennes et japonaises", "Cette subdivision est utilisée dans une chaîne construite avec les vedettes Littérature coréenne et Littérature japonaise, celles-ci servant de modèles. Elle est à utiliser par éléments avec tous les genres littéraires coréens et japonais"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature coréenne - Avant 1600"}, {"authorized_access_point": "Littérature japonaise - Avant 1600"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034937072", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb125636645", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Avant 1600"} 1 -2023-08-08 14:36:39.112601 2023-08-08 14:36:39.112605 0d0d8135-7eb1-46f8-addc-dda95a118ad4 {"md5": "a04ac83e897683f6112d0eaf02c9e259", "pid": "034937099", "note": [{"label": ["La subdivision chronologique Avant 794 s'emploie uniquement aux littératures et genres littéraires japonais", "Cette subdivision est utilisée dans une chaîne construite avec la littérature, celle-ci servant de vedette modèle pour les genres littéraires de même nationalité. Elle est à utiliser par éléments avec les genres littéraires"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature japonaise - Avant 794"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034937099", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12563666v", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Avant 794"} 1 -2023-08-08 14:36:39.223237 2023-08-08 14:36:39.223248 dd0bbd4a-0e71-46ca-85f8-7655b99e9558 {"md5": "2c8f977eb1bd4b951c4bc2b03d4e14e5", "pid": "034937129", "note": [{"label": ["La subdivision chronologique 1868-.... s'emploie uniquement aux littératures et genres littéraires japonais", "Cette subdivision est utilisée dans une chaîne construite avec la littérature, celle-ci servant de vedette modèle pour les genres littéraires de même nationalité. Elle est à utiliser par éléments avec les genres littéraires"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature japonaise - 1868-...."}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034937129", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12563668j", "source": "BNF"}], "relation_pid": {"type": "redirect_from", "value": "086230441"}, "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1868-...."} 1 -2023-08-08 14:36:39.327734 2023-08-08 14:36:39.327738 7363f33b-2cdc-4145-be7d-a1744ff52b67 {"md5": "b2b4d1763c043c6bb427ed13775ad035", "pid": "035021128", "note": [{"label": ["La subdivision chronologique Avant 1762 s'emploie uniquement aux littératures et genres littéraires bulgares", "Cette subdivision est utilisée dans des chaînes construites avec la littérature bulgare, celle-ci servant de vedette modèle pour les genres littéraires bulgares"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature bulgare - Avant 1762"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035021128", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12570883g", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Avant 1762"} 1 -2023-08-08 14:36:39.389369 2023-08-08 14:36:39.389372 864db971-841c-44eb-9315-0911e1bac34e {"md5": "dcbb414874538f693fb9e6fac5660683", "pid": "035021179", "note": [{"label": ["S'emploie uniquement en subdivision chronologique [sans subd. géogr.] aux littératures bulgares", "Cette subdivision est utilisée dans une chaîne construite avec la vedette Littérature bulgares, qui sert de vedette modèle. Elle est à utiliser par éléments avec tous les genres littéraires bulgares"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature bulgare - 1762-1878"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035021179", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12570887v", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["1762-1880"], "authorized_access_point": "1762-1878"} 1 -2023-08-08 14:36:39.445362 2023-08-08 14:36:39.445366 b05461e5-628e-4165-b53e-6d2af2971567 {"md5": "7257b226b44548074ee1d5ea2e1ea46e", "pid": "035077948", "note": [{"label": ["La subdivision chronologique 1912-1949 s'emploie uniquement aux littératures et genres littéraires chinois", "Cette subdivision est utilisée dans une chaîne construite avec la littérature, celle-ci servant de vedette modèle pour les genres littéraires de même nationalité. Elle est à utiliser par éléments avec les genres littéraires"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature chinoise - 1912-1949"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035077948", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb131655179", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1912-1949"} 1 -2023-08-08 14:36:39.511255 2023-08-08 14:36:39.511258 eb5d813d-729c-4ffe-98c4-c783981b5076 {"md5": "a902aaf1610588b731473316c695c42c", "pid": "035077964", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures chinoises", "Cette subdivision est utilisée dans une chaîne construite avec la vedette Littérature chinoise, celle-ci servant de vedette modèle. Elle est à utiliser par éléments avec tous les genres littéraires chinois"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature chinoise - 1949-1976"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035077964", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb131655190", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1949-1976"} 1 -2023-08-08 14:36:39.622558 2023-08-08 14:36:39.622566 f35d61f2-7ac1-443d-ab88-d1498a5eece0 {"md5": "efdae859455b0f6cc26393dba5a8a754", "pid": "035078316", "note": [{"label": ["Grand Larousse universel", "Encycl. universalis (art. : Chinoise (Civilisation) - La littérature) - http://www.universalis-edu.com (2014-07-25)", "Hist. des littératures / Encycl. de La Pléiade, 1958"], "noteType": "dataSource"}, {"label": ["S'emploie uniquement en subdivision chronologique [sans subd. géogr.] aux littératures chinoises, par ex. : Théâtre (genre littéraire) chinois -- 1280-1368 (Dynastie des Yuan)", "Cette subdivision est utilisée dans une chaîne construite avec la littérature chinoise, celle-ci servant de vedette modèle. Elle est à utiliser par éléments avec tous les genres littéraires chinois"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature chinoise - 1280-1368 (Dynastie des Yuan)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035078316", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb131655535", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1280-1368(Dynastie des Yuan)"} 1 -2023-08-08 14:36:39.72181 2023-08-08 14:36:39.721818 9501b2b0-1dde-4b18-aed5-e01cdac4be65 {"md5": "68805e8a102ae6b4c467d833b597d4ee", "pid": "035087625", "note": [{"label": ["La subdivision chronologique 1775-1783 (Période révolutionnaire) s'emploie uniquement aux littératures et genres littéraires pratiqués aux Etats-Unis", "Cette subdivision est utilisée dans une chaîne construite avec la littérature, celle-ci servant de vedette modèle pour les genres littéraires de même nationalité. Elle est à utiliser par éléments avec les genres littéraires"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature américaine - 1775-1783 (Période révolutionnaire)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035087625", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13166188z", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1775-1783(Période révolutionnaire)"} 1 -2023-08-08 14:36:39.841464 2023-08-08 14:36:39.84147 7b48bfdc-2ba6-48c9-b823-7b3018af040d {"md5": "a08cd2c4929516a3920eb4ce7dbe2eec", "pid": "03509446X", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures galloises et suédoises", "Cette subdivision est utilisée dans une chaîne construite avec les vedettes Littérature galloise et Littérature suédoise, celles-ci servant de vedettes modèles. Elle est à utiliser par éléments avec tous les genres littéraires gallois et suédois"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature galloise - Avant 1550"}, {"authorized_access_point": "Littérature suédoise - Avant 1550"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03509446X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13166547g", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Avant 1550"} 1 -2023-08-08 14:36:39.944634 2023-08-08 14:36:39.944644 a6a542b3-a439-4bf3-8b55-67b2e757714e {"md5": "b3bdc08f45865c1309a0ffb98b406ded", "pid": "035207191", "note": [{"label": ["La subdivision Avant 1912 s'emploie uniquement aux littératures et genres littéraires chinois", "Cette subdivision est à utiliser dans des chaînes construites avec la littérature, celles-ci servant de vedettes modèles pour les genres littéraires de même langue ou de même nationalité. Elle est à utiliser par éléments avec les genres littéraires"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature chinoise - Avant 1912"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035207191", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb131743151", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Avant 1912"} 1 -2023-08-08 14:36:40.063923 2023-08-08 14:36:40.063929 5c0217bc-6953-4d95-90a9-cc81637cf867 {"md5": "b1f21dded8a37bfb7dab320badac5419", "pid": "03528076X", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures coréennes", "Cette subdivision est utilisée dans une chaîne construite avec la vedette Littérature coréenne, celle-ci servant de vedette modèle. Elle est à utiliser par éléments avec tous les genres littéraires coréens"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature coréenne - Avant 1910"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03528076X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13320775b", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Avant 1910"} 1 -2023-08-08 14:36:40.160762 2023-08-08 14:36:40.160764 915d7477-0b1e-42e5-8684-50d2ca8babfd {"md5": "c610d75d7bb340cdf55c7e9c20d1f13e", "pid": "035383925", "note": [{"label": ["La subdivision Avant 1000 s'emploie uniquement aux littératures et genres littéraires turcs", "Cette subdivision est utilisée dans en chaîne construite avec la littérature turque, celle-ci servant de vedettes modèles pour les genres littéraires de même langue ou nationalité. Elle est à utiliser par éléments avec les genres littéraires"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature turque - Avant 1000"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035383925", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13320983h", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Avant 1000"} 1 -2023-08-08 14:36:40.260359 2023-08-08 14:36:40.260368 cc09ce48-53eb-46c6-af37-31ef9d14f58d {"md5": "94a6870557f4791e226776c552ffd926", "pid": "035623683", "note": [{"label": ["Laval-RVM, 1997-02. - LCSH, 1996-09"], "noteType": "dataNotFound"}, {"label": ["La subdivision chronologique 13e-19e siècles (dîvan) s'emploie uniquement à la littérature et aux genres littéraires turcs", "Cette subdivision est utilisée dans une chaîne construite avec la littérature, celle-ci servant de vedette modèle pour les genres littéraires de même nationalité. Elle est à utiliser par éléments avec les genres littéraires"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature turque - 13e-19e siècles (dîvan)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035623683", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13325307z", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "13e-19e siècles(dîvan)"} 1 -2023-08-08 14:36:40.376222 2023-08-08 14:36:40.376224 96d970fe-b145-470c-81ff-5b5558863fc1 {"md5": "0316d45f58c6ffeea8b54362f366e6e5", "pid": "035623691", "note": [{"label": ["S'emploie uniquement en subdivision chronologiques aux littératures et genres littéraires turcs", "Cette subdivision est à utiliser dans des chaînes construites avec la littérature turque, celles-ci servant de vedettes modèles pour les genres littéraires de même nationalité ; elle est à utiliser par éléments avec les genres littéraires"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature turque - 1923-.... (période républicaine)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035623691", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb133253089", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1923-....(période républicaine)"} 1 -2023-08-08 14:36:40.43902 2023-08-08 14:36:40.439024 38c9b788-03f8-49bc-9184-e9f9fffcc5f6 {"md5": "cee06d87b853f1e1e54c2307e1e07e89", "pid": "050323148", "note": [{"label": ["La subdivision chronologique 1550-1700 s'emploie uniquement aux littératures et aux genres littéraires gallois etirlandais", "Cette subdivision est utilisée dans une chaîne construite avec la littérature, celle-ci servant de vedette modèle pour les genres littéraires de même nationalité. Elle est à utiliser par éléments avec les genres littéraires"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature galloise - 1550-1700"}, {"authorized_access_point": "Littérature irlandaise (gaélique) - 1550-1700"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050323148", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13510132j", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1550-1700"} 1 -2023-08-08 14:36:40.505674 2023-08-08 14:36:40.505678 d43dd8d6-e710-4274-b7b8-2522ce42fa20 {"md5": "5058cf0f28a8229107e65ba51df98185", "pid": "050323172", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures galloises", "Cette subdivision est utilisée dans une chaîne construite avec la vedette Littérature galloise, celle-ci servant de modèle. Elle est à utiliser par éléments avec tous les genres littéraires gallois"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature galloise - 1100-1550"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050323172", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb135101347", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1100-1550"} 1 -2023-08-08 14:36:40.612911 2023-08-08 14:36:40.612915 c8d10c27-e59e-49d2-af5d-59ac1147dfea {"md5": "594bd8b0c4c4d10217d1377d0f660f46", "pid": "061617296", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures et genres littéraires japonais"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature japonaise - 1868-1912 (Ère Meiji)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/061617296", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb137741474", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}, {"type": "bf:ClassificationDdc", "classificationPortion": "950"}], "authorized_access_point": "1868-1912(Ère Meiji)"} 1 -2023-08-08 14:36:40.727453 2023-08-08 14:36:40.727462 c3393fdb-f1ea-460f-8b6d-88df824e9d69 {"md5": "278cfc6127cb21bc0d91d415f14e9a84", "pid": "077057384", "note": [{"label": ["Histoire des littératures / Encycl. de La Pléiade, 1958"], "noteType": "dataSource"}, {"label": ["La période 220-618 réunit la période des Trois Royaumes (220-265), les Six Dynasties (265-581) et la Dynastie Souei (581-618)", "S'emploie uniquement en subdivision chronologique aux littératures et genres littéraires chinois", "Cette subdivision est utilisée dans une chaîne construite avec la littérature, celle-ci servant de vedette modèle. Elle est à utiliser par éléments avec tous les genres littéraires chinois"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature chinoise - 220-618 (Six dynasties)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/077057384", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb144076013", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["220-589"], "authorized_access_point": "220-618"} 1 -2023-08-08 14:36:40.847056 2023-08-08 14:36:40.847059 1b3fb804-5c26-425b-a1ff-915331b91612 {"md5": "e936146abaec4cf19ad9b65d7923015f", "pid": "101481241", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures grecques modernes", "Cette subdivision est utilisée dans une chaîne construite avec la vedette Littérature grecque moderne, celle-ci servant de vedette modèle. Elle est à utiliser par éléments avec tous les genres littéraires grecs modernes"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature grecque moderne - 1820-1880"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/101481241", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15061397c", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1820-1880"} 1 -2023-08-08 14:36:40.959296 2023-08-08 14:36:40.959299 5181758e-5127-41fe-b525-424c1a3eb400 {"md5": "4182e95d44e0497089f72a549aa6e5de", "pid": "101481330", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures irlandaises (gaéliques)", "Cette subdivision est utilisée dans une chaîne construite avec la vedette Littérature irlandaise (gaélique), celle-ci servant de vedette modèle. Elle est à utiliser par éléments avec tous les genres littéraires irlandais (gaéliques)"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature irlandaise (gaélique) - Avant 1200"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/101481330", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15061668m", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Avant 1200"} 1 -2023-08-08 14:36:41.061361 2023-08-08 14:36:41.061369 2aa7c940-85b3-43e2-a2ee-b25387d6a571 {"md5": "04b4376d4bd30883f3f73c786885e89d", "pid": "101481349", "note": [{"label": ["S'emploie uniquement en subdivision chronologique [sans subd. géogr.] aux littératures irlandaises (gaéliques)", "Cette subdivision est utilisée dans une chaîne construite avec la vedette Littérature irlandaise (gaélique), qui sert de vedette modèle. Elle est à utiliser par éléments avec tous les genres littéraires irlandais (gaéliques)"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature irlandaise (gaélique) - 1200-1550"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/101481349", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb150616798", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["1200-1550"], "authorized_access_point": "1200-1550"} 1 -2023-08-08 14:36:41.191555 2023-08-08 14:36:41.191565 1ecf2b92-fb7c-45c4-936f-0dba10ae91d4 {"md5": "b89cb0af4e732ec47b5e8cb12c83ae1d", "pid": "101481438", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures grecques modernes et hispano-américaines", "Cette subdivision est utilisée dans une chaîne construite avec les vedettes Littérature grecque moderne et Littérature hispano-américaine, celles-ci servant de vedettes modèles. Elle est à utiliser par éléments avec tous les genres littéraires grecs modernes et hispano-américains"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature grecque moderne"}, {"authorized_access_point": "Littérature hispano-américaine - 1880-1920"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/101481438", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb150619611", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["1880-1920"], "authorized_access_point": "1880-1920"} 1 -2023-08-08 14:36:41.295346 2023-08-08 14:36:41.295355 61f29ac2-2457-40d6-8b58-9800acf67e0f {"md5": "3c1949e3482ef3a066e371376f6ac5f7", "pid": "107841363", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures bretonnes", "Cette subdivision est utilisée dans une chaîne construite avec la vedette Littérature bretonne, qui sert de vedette modèle. Elle est à utiliser par éléments avec tous les genres littéraires bretons"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Breton (langue) - +* 1100......- 1659......+:1100-1659: (moyen breton)"}, {"authorized_access_point": "Littérature bretonne - 1100-1659"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/107841363", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15089445r", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1100-1659"} 1 -2023-08-08 14:36:41.405839 2023-08-08 14:36:41.405845 9ecd5844-f64d-431e-be99-9d9844fec014 {"md5": "0d3763cb922c2fd37033e843a0aee2ec", "pid": "108812987", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures polonaises", "Cette subdivision est utilisée dans une chaîne construite avec la vedette Littérature polonaise, celle-ci servant de vedette modèle. Elle est à utiliser par éléments avec tous les genres littéraires polonais"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature polonaise - 1864-1918"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/108812987", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15093914m", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1864-1918"} 1 -2023-08-08 14:36:41.472097 2023-08-08 14:36:41.4721 5ecf25ad-12a3-48e3-846e-a817644fde56 {"md5": "1a46214a9a76d7e9d622aa72f5832b94", "pid": "109094883", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures russes"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature russe - 1890-1917"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/109094883", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb150952323", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1890-1917"} 1 -2023-08-08 14:36:41.524235 2023-08-08 14:36:41.524238 a73f845f-2673-4cc4-801a-77b41b79b62a {"md5": "6d2d69e97c8233af935fb7ef77a61ce7", "pid": "11353213X", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures russes et soviétiques"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature russe - 1917-1945"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/11353213X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15518714g", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1917-1945"} 1 -2023-08-08 14:36:41.5913 2023-08-08 14:36:41.591309 3fb920b4-b90c-42ce-8611-ac2ce3f135e9 {"md5": "4c4b882a6490c55d9a768902585ec8a5", "pid": "11393260X", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures vietnamiennes", "Cette subdivision est utilisée dans une chaîne construite avec la vedette Littérature vietnamienne, celle-ci servant de vedette modèle. Elle est à utiliser par éléments avec tous les genres littéraires vietnamiens"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature vietnamienne - 1945-1975"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/11393260X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb155219612", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1945-1975"} 1 -2023-08-08 14:36:42.052867 2023-08-08 14:36:42.052878 ba21535e-1b75-4844-a604-147c4db2984e {"md5": "50cbaf6aa76ea3ca989605f6b131bfb7", "pid": "12007432X", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures espagnoles, catalanes et galiciennes"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature catalane - 1900-1939"}, {"authorized_access_point": "Littérature espagnole - 1900-1939"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/12007432X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15586308d", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1900-1939"} 1 -2023-08-08 14:36:42.183567 2023-08-08 14:36:42.183577 0a8d783d-7802-472c-8c2b-46cfe469330c {"md5": "74d6f86c2c07e042ec9434ddaced6255", "pid": "120593904", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures grecques modernes", "Cette subdivision est utilisée dans une chaîne construite avec la vedette Littérature grecque moderne, celle-ci servant de vedette modèle. Elle est à utiliser par éléments avec tous les genres littéraires grecs modernes"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature grecque moderne - 1920-1945"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/120593904", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15594731r", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1920-1945"} 1 -2023-08-08 14:36:42.286872 2023-08-08 14:36:42.286882 e21c737c-9807-42e8-a6a0-91e0270c27fa {"md5": "bc506a66471fbe8f0f5e526a3761dde9", "pid": "144664119", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures chinoises", "Cette subdivision est utilisée dans une chaîne construite avec la vedette Littérature chinoise, celle-ci servant de vedette modèle. Elle est à utiliser par éléments avec tous les genres littéraires chinois"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature chinoise - 1976-...."}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/144664119", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16203928x", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1976-...."} 1 -2023-08-08 14:36:42.386276 2023-08-08 14:36:42.386286 9a6344f3-53b4-4d81-aa75-d32b09bf8cd4 {"md5": "dd0f4736ac53ada15291000b4ccd8e12", "pid": "146322134", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures indiennes (de l'Inde)", "Cette subdivision est utilisée dans une chaîne construite avec la vedette Littérature hindi, celle-ci servant de vedette modèle. Elle est à utiliser par éléments avec tous les genres littéraires indiens (de l'Inde)"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature hindi - 1947-...."}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/146322134", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16225107n", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1947-...."} 1 -2023-08-08 14:36:42.476376 2023-08-08 14:36:42.47638 15c728d5-ee99-4e0c-b89c-74e7deae803b {"md5": "87ba2c400541f4219fd0e91d33dc4883", "pid": "148171095", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures bulgares", "Cette subdivision est utilisée dans une chaîne construite avec la vedette Littérature bulgare, celle-ci servant de vedette modèle. Elle est à utiliser par éléments avec tous les genres littéraires bulgares"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature bulgare - 1878-1945"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/148171095", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb162439173", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["1878-1945"], "authorized_access_point": "1878-1945"} 1 -2023-08-08 14:36:42.529098 2023-08-08 14:36:42.529101 6206b21d-f40d-4809-bbc4-e504c1d462e0 {"md5": "783e0a6c7450d5b690d2e6097e71cd72", "pid": "169177742", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures japonaises, polonaises et roumaines", "Cette subdivision est utilisée dans des chaînes construites avec les vedette Littérature japonaise, Littérature polonaise, Littérature roumaine, celles-ci servant de vedettes modèles. Elle est à utiliser par éléments avec tous les genres littéraires japonais, polonais et roumains"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature roumaine - 1945-1989"}, {"authorized_access_point": "Littérature japonaise - 1945-1989"}, {"authorized_access_point": "Littérature polonaise - 1945-1989"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/169177742", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb166782259", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1945-1989"} 1 -2023-08-08 14:36:42.581171 2023-08-08 14:36:42.581174 1baada6f-9073-479c-8acb-5deed5f10b55 {"md5": "833b772a1dcd74edddb2e38091549550", "pid": "169177750", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures japonaises", "Cette subdivision est utilisée dans une chaîne construite avec la vedette Littérature japonaise, celle-ci servant de vedette modèle. Elle est à utiliser par éléments avec tous les genres littéraires japonais"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature japonaise - 1989-2019 (Ère Heisei)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/169177750", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb166782390", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1989-2019(Ère Heisei)"} 1 -2023-08-08 14:36:42.659915 2023-08-08 14:36:42.659921 6d573203-aaaa-43b8-9aae-93d4ae8dd54b {"md5": "1684793cdd6a3414c04c8486182e1526", "pid": "17089018X", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures allemandes", "Cette subdivision est utilisée dans une chaîne construite avec la vedette Littérature allemande, qui sert de vedette modèle. Elle est à utiliser par éléments avec tous les genres littéraires allemands"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature allemande - 1350-1650 (nouvel haut-allemand)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/17089018X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16696953d", "source": "BNF"}], "classification": [{"name": "Langues et linguistique", "type": "bf:ClassificationDdc", "classificationPortion": "400"}, {"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1350-1650(nouvel haut-allemand)"} 1 -2023-08-08 14:36:42.75691 2023-08-08 14:36:42.756924 4b0e5cb4-bbd1-459e-9495-cb3601e3cb9c {"md5": "e58da5b16ac2adf861de8860688a67f7", "pid": "180122312", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures américaines", "Cette subdivision est utilisée dans une chaîne construite avec la vedette Littérature américaine, celle-ci servant de vedette modèle. Elle est à utiliser par éléments avec tous les genres littéraires américains", "Ne pas employer la subdivision chronologique d'emploi général 1870-1914"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature américaine - 1865-1918"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/180122312", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16776999g", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1865-1918"} 1 -2023-08-08 14:36:42.868668 2023-08-08 14:36:42.868677 120a2199-58e1-4284-b808-70df2ca0f5f7 {"md5": "00ab096d11ce9adbad66f201b6f91974", "pid": "185676146", "note": [{"label": ["S'emploie uniquement en subdivision chronologique [sans subd. géogr.] aux littératures américaines", "Cette subdivision est utilisée dans des chaînes construites avec la vedette Littérature américaine, celle-ci servant de vedette modèle. Elle est à utiliser par éléments avec tous les genres littéraires américains"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature américaine - 1945-2000"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/185676146", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16965970n", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["1945-2000 (subdivision)"], "authorized_access_point": "1945-2000"} 1 -2023-08-08 14:36:42.972919 2023-08-08 14:36:42.972929 f28d79f9-2e01-4374-afe5-dd770e9f3baa {"md5": "d7f103f468cc4946edd0daa7c3a9f954", "pid": "196345359", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures néerlandaises", "Cette subdivision est utilisée dans une chaîne construite avec la vedette Littérature néerlandaise, celle-ci servant de vedette modèle. Elle est à utiliser par éléments avec tous les genres littéraires néerlandais"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature néerlandaise - 1880-1945"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/196345359", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb17082314s", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1880-1945"} 1 -2023-08-08 14:36:43.96764 2023-08-08 14:36:43.967647 4fa1111e-edee-4671-b4dc-e88b3e1e580c {"md5": "39b70358da38a4a4770ea903851963a0", "pid": "027809773", "note": [{"label": ["S'emploie uniquement en subdivision chronologique à certaines littératures, comme la littérature italienne et la littérature tchèque", "Cette subdivision est utilisée dans une chaîne construite avec la littérature, celle-ci servant de vedette modèle pour les genres littéraires de même nationalité. Elle est à utiliser par éléments avec les genres littéraires"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature italienne - Avant 1400"}, {"authorized_access_point": "Littérature tchèque - Avant 1400"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027809773", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11977185g", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Avant 1400"} 1 +2024-09-10 15:42:56.325769 2024-09-10 15:42:56.325773 c9c81157-da5a-4d62-ac9d-d7e9885dcd24 {"md5": "96bb0643813e404e607d7525c399752a", "pid": "027225798", "note": [{"label": ["Les droits des femmes / F. Martinetti, 2007", "L'État et les droits des femmes / S. Dauphin, 2010", "Fédération internationale des droits humains : droits des femmes - https://www.fidh.org (2022-01-25)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Droits de l'homme"}], "related": [{"authorized_access_point": "Discrimination sexuelle"}, {"authorized_access_point": "Femmes - Statut juridique"}, {"authorized_access_point": "Journée internationale de la femme"}, {"authorized_access_point": "Prix Simone de Beauvoir pour la liberté des femmes"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Antiféminisme"}, {"authorized_access_point": "Égalité des sexes"}, {"authorized_access_point": "Féminisme"}, {"authorized_access_point": "Femmes - Droit de vote"}, {"authorized_access_point": "Syndicats - Attitude envers la condition féminine"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85147765", "source": "LCSH"}], "authorized_access_point": "Women's rights"}, {"source": "RVMLaval", "authorized_access_point": "Femmes -- Droits"}], "identifier": "http://www.idref.fr/027225798", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027225798", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119313952", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11931395", "source": "BNF"}], "classification": [{"name": "Droit", "type": "bf:ClassificationDdc", "classificationPortion": "340"}], "variant_access_point": ["Droit des femmes", "Droits de la femme", "Émancipation de la femme", "Émancipation des femmes", "Femmes - Droits", "Femmes - Droits civils", "Femmes - Droits de la femme", "Femmes - Émancipation", "Femmes - Libération", "Libération de la femme", "Libération des femmes"], "authorized_access_point": "Droits des femmes"} 1 +2024-09-10 15:42:56.487019 2024-09-10 15:42:56.487022 b805388e-6965-4ee2-8c68-071b537cb912 {"md5": "215418bb7d33fb649b8b4885e8e2b49f", "pid": "027242250", "note": [{"label": ["Dict. critique du marxisme / G. Labica, G. Bensussan, 1985", "Le réalisme socialiste / M. Aucouturier, 1998", "Vocabulaire d'esthétique / É. Souriau, 1990 (art. : Réalisme)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Esthétique communiste"}, {"authorized_access_point": "Esthétique marxiste"}], "related": [{"authorized_access_point": "Réalisme socialiste (art)"}, {"authorized_access_point": "Réalisme socialiste (littérature)"}, {"authorized_access_point": "Réalisme socialiste (musique)"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85124145", "source": "LCSH"}], "authorized_access_point": "Socialist realism"}, {"source": "RVMLaval", "authorized_access_point": "Réalisme socialiste"}], "identifier": "http://www.idref.fr/027242250", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027242250", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119327288", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11932728", "source": "BNF"}], "classification": [{"name": "Philosophie", "type": "bf:ClassificationDdc", "classificationPortion": "100"}, {"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Arts (sauf littérature)", "type": "bf:ClassificationDdc", "classificationPortion": "700"}, {"name": "Littérature générale", "type": "bf:ClassificationDdc", "classificationPortion": "801"}], "authorized_access_point": "Réalisme socialiste"} 1 +2024-09-10 15:42:56.552063 2024-09-10 15:42:56.552068 98c21ab3-b8cb-43e1-b682-657afcd7b24d {"md5": "6d89888a61a1c43867cbb7cdc15941b9", "pid": "027246159", "note": [{"label": ["S'emploie également en subdivision"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sciences de l'éducation"}], "related": [{"authorized_access_point": "Apprentissage transformationnel"}, {"authorized_access_point": "Éducation positive"}, {"authorized_access_point": "Enseignement"}, {"authorized_access_point": "Étude et enseignement"}, {"authorized_access_point": "Hautes écoles pédagogiques (système éducatif suisse)"}, {"authorized_access_point": "Pédagogues"}, {"authorized_access_point": "Psychologie de l'éducation"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Apprentissage contextualisé"}, {"authorized_access_point": "Conception universelle de l'apprentissage"}, {"authorized_access_point": "Didactique"}, {"authorized_access_point": "Dispositifs pédagogiques"}, {"authorized_access_point": "Éducation - Langage"}, {"authorized_access_point": "Éducation fonctionnelle"}, {"authorized_access_point": "Éducation par le territoire"}, {"authorized_access_point": "Enseignants - Formation"}, {"authorized_access_point": "Enseignants - Orientation pédagogique"}, {"authorized_access_point": "Enseignement - Méthode des projets"}, {"authorized_access_point": "Enseignement - Méthodes actives"}, {"authorized_access_point": "Enseignement accéléré"}, {"authorized_access_point": "Enseignement explicite"}, {"authorized_access_point": "Enseignement magistral"}, {"authorized_access_point": "Entretiens en éducation"}, {"authorized_access_point": "Herbartianisme"}, {"authorized_access_point": "Hypnopédie"}, {"authorized_access_point": "Lesson study"}, {"authorized_access_point": "Mathétique"}, {"authorized_access_point": "Méthode critique (pédagogie)"}, {"authorized_access_point": "Méthode de Bell et Lancaster"}, {"authorized_access_point": "Méthode des cas"}, {"authorized_access_point": "Méthode Montessori"}, {"authorized_access_point": "Méthode Ramain"}, {"authorized_access_point": "Pédagogie critique"}, {"authorized_access_point": "Pédagogie culturellement adaptée"}, {"authorized_access_point": "Pédagogie de soutien"}, {"authorized_access_point": "Pédagogie du corps"}, {"authorized_access_point": "Pédagogie expérimentale"}, {"authorized_access_point": "Pédagogie Germaine Tortel"}, {"authorized_access_point": "Pédagogie muséale"}, {"authorized_access_point": "Pédagogie sociale"}, {"authorized_access_point": "Récitation"}, {"authorized_access_point": "Suggestopédie"}, {"authorized_access_point": "Technologie éducative"}, {"authorized_access_point": "Dictées"}, {"authorized_access_point": "Matériel pédagogique"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85040989", "source": "LCSH"}], "authorized_access_point": "Education"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85133052", "source": "LCSH"}], "authorized_access_point": "Teaching"}, {"source": "RVMLaval", "authorized_access_point": "Pédagogie"}], "identifier": "http://www.idref.fr/027246159", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027246159", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11933049j", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11933049", "source": "BNF"}], "relation_pid": {"type": "redirect_from", "value": "029340578"}, "classification": [{"name": "Education et enseignement", "type": "bf:ClassificationDdc", "classificationPortion": "370"}], "variant_access_point": ["Aspect éducatif", "Contribution à la pédagogie", "Méthodes d'enseignement", "Méthodes pédagogiques"], "authorized_access_point": "Pédagogie"} 1 +2024-09-10 15:42:56.673367 2024-09-10 15:42:56.673375 5a121641-5ac8-4fa4-8872-795442359905 {"md5": "c5ee94d39e942a81c2441d37e2343510", "pid": "027248062", "note": [{"label": ["Sous cette vedette on trouve les ouvrages sur la lutte contre la malveillance. Les ouvrages sur la lutte contre les dommages accidentels se trouvent sous Systèmes informatiques -- Mesures de sécurité"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Cybercriminalité"}], "related": [{"authorized_access_point": "Confiance numérique"}, {"authorized_access_point": "Cyberdéfense"}, {"authorized_access_point": "Hacking"}, {"authorized_access_point": "Microordinateurs - Accès - Contrôle"}, {"authorized_access_point": "Ordinateurs - Accès - Contrôle"}, {"authorized_access_point": "Systèmes informatiques - Mesures de sûreté - Examens"}, {"authorized_access_point": "Virus informatiques"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Gestion des droits numériques"}, {"authorized_access_point": "Contrats intelligents"}, {"authorized_access_point": "AltaRica (méthode formelle)"}, {"authorized_access_point": "Antivirus (logiciels)"}, {"authorized_access_point": "Blockchains"}, {"authorized_access_point": "Captcha"}, {"authorized_access_point": "Détection des anomalies (informatique)"}, {"authorized_access_point": "Infrastructures à clés publiques"}, {"authorized_access_point": "Protection de l'information (informatique)"}, {"authorized_access_point": "Réseaux d'ordinateurs - Mesures de sûreté"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Internet--Sécurité--Mesures"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85042310", "source": "LCSH"}], "authorized_access_point": "Electronic data processing departments--Security measures"}], "identifier": "http://www.idref.fr/027248062", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027248062", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13318381w", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13318381", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Cybersécurité", "Informatique - Mesures de sûreté", "Sécurité informatique", "Sûreté des systèmes d'information"], "authorized_access_point": "Systèmes informatiques - Mesures de sûreté"} 1 +2024-09-10 15:43:07.139647 2024-09-10 15:43:07.139657 eb27522c-2c77-453d-8f90-6e7ccbcfeb53 {"md5": "26f2c050ab4b8e829d5f5d545a4d4c9b", "pid": "028431855", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2015001258", "source": "LCSH"}], "authorized_access_point": "Propaganda, Austrian"}], "identifier": "http://www.idref.fr/028431855", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028431855", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12026846t", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12026846", "source": "BNF"}], "classification": [{"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}], "authorized_access_point": "Propagande autrichienne"} 1 +2024-09-10 15:42:56.78051 2024-09-10 15:42:56.780524 d20d00a9-5203-465a-8d8a-62db3b877edc {"md5": "8091665d2d64017946e9531c1b12a974", "pid": "027255468", "note": [{"label": ["Nouveau petit Robert 1993", "Trésor de la langue française", "Dict. des termes d'art / G. Janneau, 1980"], "noteType": "dataSource"}, {"label": ["Art de fabriquer des objets tressés avec des fibres végétales ou des tiges"], "noteType": "general"}, {"label": ["Voir aussi les vedettes du type Vannerie [adjectif ethnique]"], "noteType": "seeReference"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Artisanat de nature"}, {"authorized_access_point": "Arts décoratifs"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Meubles en rotin"}, {"authorized_access_point": "Objets en écorces"}, {"authorized_access_point": "Paniers"}, {"authorized_access_point": "Travail de l'osier"}, {"authorized_access_point": "Travail de la paille"}, {"authorized_access_point": "Travail des feuilles de vaquois"}, {"authorized_access_point": "Travail des palmes"}, {"authorized_access_point": "Travail du raphia"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85012110", "source": "LCSH"}], "authorized_access_point": "Basket making"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85012127", "source": "LCSH"}], "authorized_access_point": "Basketwork"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85056513", "source": "LCSH"}], "authorized_access_point": "Grass weaving"}, {"source": "RVMLaval", "authorized_access_point": "Vannerie"}], "identifier": "http://www.idref.fr/027255468", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027255468", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13516282t", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13516282", "source": "BNF"}], "classification": [{"name": "Dessin, arts décoratifs, artisanat d'art", "type": "bf:ClassificationDdc", "classificationPortion": "740"}, {"name": "Jeux", "type": "bf:ClassificationDdc", "classificationPortion": "793"}], "variant_access_point": ["Croiserie", "Joncerie", "Lacerie", "Lasserie", "Mandrerie"], "authorized_access_point": "Vannerie"} 1 +2024-09-10 15:42:56.880726 2024-09-10 15:42:56.880736 79a1584d-3b55-4efb-9db5-5dfda724d60e {"md5": "b71e6f5666c68b7abdc9196e309998b5", "pid": "027256138", "note": [{"label": ["Les notions philosophiques / S. Auroux, 1990", "Vocabulaire technique et critique de la philosophie / A. Lalande, 1997", "Grand dict. de la philosophie / M. Blay, 2003", "Dict. de psychologie / R. Doron, F. Parot, 1991", "Vocabulaire de la psychologie / H. Piéron, 2003", "Grand dict. de la psychologie, 2002 : volition"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les documents sur les concepts philosophiques ou psychologiques de volonté et d'absence de volonté"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Morale"}, {"authorized_access_point": "Personnalité"}, {"authorized_access_point": "Philosophie de l'action"}], "related": [{"authorized_access_point": "Assentiment (philosophie)"}, {"authorized_access_point": "Procrastination"}, {"authorized_access_point": "Volontarisme doxastique"}, {"authorized_access_point": "Autonomie (philosophie)"}, {"authorized_access_point": "Dieu - Volonté"}, {"authorized_access_point": "Faiblesse (psychologie)"}, {"authorized_access_point": "Hekṓn (le mot grec)"}, {"authorized_access_point": "Inhibition"}, {"authorized_access_point": "Intention"}, {"authorized_access_point": "Libre arbitre"}, {"authorized_access_point": "Prise de décision"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85146775", "source": "LCSH"}], "authorized_access_point": "Will"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2006003161", "source": "LCSH"}], "authorized_access_point": "Akrasia"}, {"source": "RVMLaval", "authorized_access_point": "Volonté"}, {"source": "RVMLaval", "authorized_access_point": "Acrasie"}], "identifier": "http://www.idref.fr/027256138", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027256138", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11933815f", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11933815", "source": "BNF"}], "relation_pid": {"type": "redirect_from", "value": "055334873"}, "classification": [{"name": "Philosophie", "type": "bf:ClassificationDdc", "classificationPortion": "100"}, {"name": "Psychologie, psychanalyse", "type": "bf:ClassificationDdc", "classificationPortion": "150"}], "variant_access_point": ["Aboulie", "Acrasia", "Vouloir (morale)", "Acrasie", "Akrasia", "Akrasie", "Conation", "Faiblesse de la volonté", "Manque de volonté", "Volition", "Volonté, Manque de"], "authorized_access_point": "Volonté"} 1 +2024-09-10 15:42:56.984789 2024-09-10 15:42:56.984799 5c7e8514-7128-4798-ad70-b3c684f6625d {"md5": "e5e94db995f824f6e16aceb05a2ab7c1", "pid": "027257045", "note": [{"label": ["Laval RVM, 1983"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Plombières, Entrevue de (1858)"}], "identifier": "http://www.idref.fr/027257045", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027257045", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11933876n", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11933876", "source": "BNF"}], "authorized_access_point": "Relations extérieures - France - 1852-1870"} 1 +2024-09-10 15:42:57.089967 2024-09-10 15:42:57.089978 2834f522-99c1-4c73-b573-660f4294a89e {"md5": "686bb2803b15d9fe1d434fff583378c9", "pid": "027268284", "note": [{"label": ["Dict. des religions / P. Poupard, 1984"], "noteType": "dataSource"}, {"label": ["S'emploie également en subdivision. Cette subdivision s'applique aux sujets religieux"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Religions"}], "related": [{"authorized_access_point": "Brahmanisme"}, {"authorized_access_point": "Hindouisme"}, {"authorized_access_point": "Veda et sciences"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Védisme - Rites et cérémonies"}, {"authorized_access_point": "Cosmogonie védique"}, {"authorized_access_point": "Apsarā"}, {"authorized_access_point": "Asura"}, {"authorized_access_point": "Dieux védiques"}, {"authorized_access_point": "Morale védique"}, {"authorized_access_point": "Symbolisme védique"}], "identifier": "http://www.idref.fr/027268284", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027268284", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11934684z", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11934684", "source": "BNF"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}], "variant_access_point": ["Hindouisme ancien", "Religion védique"], "authorized_access_point": "Védisme"} 1 +2024-09-10 15:42:57.191436 2024-09-10 15:42:57.191446 2c8bff03-59f7-423e-bd05-b8d0d76ddbbb {"md5": "2bd302c0191ead3b3bd7d139d50317db", "pid": "027274144", "note": [{"label": ["GLU", "Encomiendas (se subd. géogr.) ; Laval RVM (en ligne), 2003-07-02"], "noteType": "dataSource"}, {"label": ["Institution de l'Amérique coloniale espagnole par laquelle un conquistador recevait autorité sur un groupe d'autochtones dont il pouvait utiliser le travail, à condition de les christianiser et les intégrer à l'ordre espagnol. - L'encomienda a été pratiquée également en Espagne reconquise sur les musulmans et aux Philippines"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Colonies espagnoles"}, {"authorized_access_point": "Travail forcé"}], "related": [{"authorized_access_point": "Travailleurs autochtones"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85042989", "source": "LCSH"}], "authorized_access_point": "Encomiendas (Latin America)"}, {"source": "RVMLaval", "authorized_access_point": "Encomiendas"}], "identifier": "http://www.idref.fr/027274144", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027274144", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11935180f", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11935180", "source": "BNF"}], "classification": [{"name": "Droit", "type": "bf:ClassificationDdc", "classificationPortion": "340"}, {"name": "Histoire du reste du monde", "type": "bf:ClassificationDdc", "classificationPortion": "950"}], "variant_access_point": ["Encomienda", "Repartimiento", "Repartimientos"], "authorized_access_point": "Encomiendas"} 1 +2024-09-10 15:42:57.29668 2024-09-10 15:42:57.296693 7884154d-8a14-4030-8389-94cc9111ebc4 {"md5": "e1c37b5c3da7cfda18de80daf132e07b", "pid": "02727991X", "note": [{"label": ["Grand Larousse universel"], "noteType": "dataSource"}, {"label": ["30 janvier 1933 : A. Hitler accède au pouvoir. 2 septembre 1945 : fin de la seconde guerre mondiale"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Amsterdam-Pleyel, Mouvement"}, {"authorized_access_point": "Guerre mondiale (1939-1945) - Histoire diplomatique"}], "identifier": "http://www.idref.fr/02727991X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02727991X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11935652k", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11935652", "source": "BNF"}], "classification": [{"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Histoire", "type": "bf:ClassificationDdc", "classificationPortion": "900"}], "variant_access_point": ["Politique mondiale - 1933-1945"], "authorized_access_point": "Relations internationales - 1933-1945"} 1 +2024-09-10 15:42:57.39381 2024-09-10 15:42:57.393823 45dabd2c-cd10-488e-9484-c2bc7747000c {"md5": "457b7af9bcb06ca4c5984010ac4dc03f", "pid": "02728607X", "note": [{"label": ["Grand Larousse illustré", "Petit Larousse illustré 2010", "Dict. des religions / P. Poupard, 1984 (art. : Shiva, shivaïsme)", "Encycl. des religions / F. Lenoir, Y. T. Masquelier, 1997", "Dict. de la sagesse orientale, 1989 (art. : Shavaïsme)"], "noteType": "dataSource"}, {"label": ["S'emploie également en subdivision. Cette subdivision s'applique aux sujets religieux"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Hindouisme"}, {"authorized_access_point": "Sectes hindoues"}], "related": [{"authorized_access_point": "Shivaïtes"}, {"authorized_access_point": "Hymnes shivaïtes"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Liṅga (hindouisme)"}, {"authorized_access_point": "Aghorī"}, {"authorized_access_point": "Kāpālika"}, {"authorized_access_point": "Liṅgāyat"}, {"authorized_access_point": "Śaiva Siddhānta"}, {"authorized_access_point": "Śaktisme"}, {"authorized_access_point": "Shivarātri"}, {"authorized_access_point": "Shivaïsme du Cachemire"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85123051", "source": "LCSH"}], "authorized_access_point": "?aivism"}], "identifier": "http://www.idref.fr/02728607X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02728607X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11936126w", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11936126", "source": "BNF"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}], "variant_access_point": ["Çivaïsme", "Shavaïsme", "Sivaïsme"], "authorized_access_point": "Shivaïsme"} 1 +2024-09-10 15:42:57.48771 2024-09-10 15:42:57.487719 f0edc7d7-9961-4463-a425-c700e3d7311d {"md5": "68a8415d70913ce5da50be20720f81d6", "pid": "027292916", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Désarmement"}], "related": [{"authorized_access_point": "Armes nucléaires"}, {"authorized_access_point": "Course aux armements"}, {"authorized_access_point": "Non-prolifération nucléaire"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Mouvement antinucléaire"}, {"authorized_access_point": "Plan Rapacki"}, {"authorized_access_point": "Zones exemptes d'armes nucléaires"}], "identifier": "http://www.idref.fr/027292916", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027292916", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119366713", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11936671", "source": "BNF"}], "variant_access_point": ["Armes nucléaires - Prolifération", "Armes nucléaires et désarmement", "Bombe atomique et désarmement", "Dénucléarisation", "Prolifération des armes nucléaires"], "authorized_access_point": "Désarmement nucléaire"} 1 +2024-09-10 15:42:57.58016 2024-09-10 15:42:57.580168 bca44207-d84b-4b71-8bd3-8a3e1af6a190 {"md5": "b3cfb3d8f57e91fb02553911d41dd7e9", "pid": "027302148", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Questions d'examens"}], "related": [{"authorized_access_point": "Internat (médecine)"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Tests de concordance de script"}], "identifier": "http://www.idref.fr/027302148", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027302148", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11937378x", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11937378", "source": "BNF"}], "classification": [{"name": "Education et enseignement", "type": "bf:ClassificationDdc", "classificationPortion": "370"}, {"name": "Sciences médicales et paramédicales", "type": "bf:ClassificationDdc", "classificationPortion": "610"}], "variant_access_point": ["Concours de l'internat", "Concours de l'internat de médecine", "ECN", "ECNi", "EDN", "Épreuves Classantes Nationales", "Épreuves Classantes Nationales informatisées", "Examen Classant National", "Examen Classant National Obligatoire", "iECN", "Internat (médecine) - Concours", "Internat (médecine) - Examens -- Questions", "Internat (médecine) - Examens, questions etc", "Internat (médecine) - Questions d'examens", "Questions d'internat"], "authorized_access_point": "Épreuves dématérialisées nationales"} 1 +2024-09-10 15:42:57.65352 2024-09-10 15:42:57.653525 1c33a446-1f95-43b1-9e7d-29b8a9f4c1d5 {"md5": "6e022fc525fc4b43a7f04ec40fbe3725", "pid": "027308359", "note": [{"label": ["Les notions philosophiques / S. Auroux, 1990", "Vocabulaire technique et critique de la philosophie / A. Lalande, 1997", "Encycl. de la philosophie, 2002", "Dict. de philosophie / C. Godin, 2004"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les documents sur la notion de vérité du point de vue de la théorie de la connaissance. Les documents sur la notion de vérité du point de vue moral se trouvent sous Vérité et mensonge", "S'emploie également en subdivision"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Théorie de la connaissance"}], "related": [{"authorized_access_point": "Certitude"}, {"authorized_access_point": "Objectivité"}, {"authorized_access_point": "Preuve (philosophie)"}, {"authorized_access_point": "Théorie de la fiction"}, {"authorized_access_point": "Véridiction"}, {"authorized_access_point": "Vérité et mensonge"}, {"authorized_access_point": "Vraisemblance"}, {"authorized_access_point": "Critère de vérité"}, {"authorized_access_point": "Droit à la vérité (droit international)"}, {"authorized_access_point": "Erreur"}, {"authorized_access_point": "Évidence"}, {"authorized_access_point": "Faillibilisme"}, {"authorized_access_point": "Faux (philosophie)"}, {"authorized_access_point": "Logique aléthique"}, {"authorized_access_point": "Logique épistémique"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Vérité comme cohérence"}, {"authorized_access_point": "Vérité comme consensus"}, {"authorized_access_point": "Vérité comme correspondance"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85138279", "source": "LCSH"}], "authorized_access_point": "Truth"}, {"source": "RVMLaval", "authorized_access_point": "Vérité"}], "identifier": "http://www.idref.fr/027308359", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027308359", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119378816", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11937881", "source": "BNF"}], "classification": [{"name": "Philosophie", "type": "bf:ClassificationDdc", "classificationPortion": "100"}], "variant_access_point": ["Contribution au concept de vérité", "Vérité (épistémologie)", "Vérité (logique)", "Vrai (philosophie)"], "authorized_access_point": "Vérité"} 1 +2024-09-10 15:42:57.730134 2024-09-10 15:42:57.730144 923619a4-bbb0-4681-b412-f50dc3c7b1d0 {"md5": "7f0972e479280abbe393e821e1d9c51f", "pid": "027317145", "note": [{"label": ["Grand Larousse universel", "Robert encyclopédique des noms propres 2008", "Encycl. universalis - http://www.universalis-edu.com (2017-06-29)", "Dict. encyclopédique d'histoire / M. Mourre, 1996", "La guerre de Trente ans : 1618-1648 / H. Bogdan, 2006", "La guerre de Trente ans / G. Livet, 1994"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Contre-Réforme"}, {"authorized_access_point": "Europe - 1517-1648"}], "related": [{"authorized_access_point": "Défenestration de Prague (1618)"}, {"authorized_access_point": "Guerre franco-espagnole (1635-1659)"}, {"authorized_access_point": "Sainte ligue allemande (1609)"}, {"authorized_access_point": "Allemagne - 1618-1648"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Guerre dano-suédoise (1643-1645)"}, {"authorized_access_point": "Guerre de la Valteline (1620-1626)"}, {"authorized_access_point": "Guerre de Trente Ans (1618-1648) - Opérations militaires"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85134910", "source": "LCSH"}], "authorized_access_point": "Thirty Years' War, 1618-1648"}, {"source": "RVMLaval", "authorized_access_point": "Guerre de Trente Ans, 1618-1648"}], "identifier": "http://www.idref.fr/027317145", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027317145", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119385761", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11938576", "source": "BNF"}], "classification": [{"name": "Histoire médiévale, moderne et contemporaine (sauf la France)", "type": "bf:ClassificationDdc", "classificationPortion": "940"}], "variant_access_point": ["Trente ans, Guerre de (1618-1648)"], "authorized_access_point": "Guerre de Trente Ans (1618-1648)"} 1 +2024-09-10 15:42:57.831378 2024-09-10 15:42:57.831386 01a5ae78-6ad6-4295-882a-51266de98bc6 {"md5": "7eeb65bcbd30ce8720e471d784ce063a", "pid": "027323552", "note": [{"label": ["Encycl. universalis - http://www.universalis-edu.com (2018-08-17)", "Le judaïsme et le christianisme antique : d'Antiochus Épiphane à Constantin / M. Simon, A. Benoît, 1998"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les documents sur le mouvement de pensée condamné comme hérésie par l'Église dans l'Antiquité. Les documents sur les doctrines ésotériques proposant une voie vers le salut par la connaissance de certaines vérités cachées sur Dieu, le monde et l'homme se trouvent sous Gnose"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Hérésies chrétiennes - 30-600 (Église primitive)"}], "related": [{"authorized_access_point": "Christianisme - Relations - Gnosticisme"}, {"authorized_access_point": "Encratisme"}, {"authorized_access_point": "Gnose"}, {"authorized_access_point": "Gnōstikós (le mot grec)"}, {"authorized_access_point": "Interprétations gnostiques"}, {"authorized_access_point": "Néoplatonisme"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Éon (philosophie)"}, {"authorized_access_point": "Mandéisme"}, {"authorized_access_point": "Manuscrits de Medinet Madi"}, {"authorized_access_point": "Manuscrits de Nag Hammadi"}, {"authorized_access_point": "Naasséniens"}, {"authorized_access_point": "Ophites"}, {"authorized_access_point": "Sagesse - Gnosticisme"}, {"authorized_access_point": "Séthiens"}, {"authorized_access_point": "Valentiniens"}, {"authorized_access_point": "Littérature gnostique"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85055466", "source": "LCSH"}], "authorized_access_point": "Gnosticism"}, {"source": "RVMLaval", "authorized_access_point": "Gnosticisme"}], "identifier": "http://www.idref.fr/027323552", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027323552", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11939057m", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11939057", "source": "BNF"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}, {"name": "Préhistoire et histoire ancienne", "type": "bf:ClassificationDdc", "classificationPortion": "930"}], "variant_access_point": ["Gnostiques"], "authorized_access_point": "Gnosticisme"} 1 +2024-09-10 15:42:57.919843 2024-09-10 15:42:57.919853 0ba0243d-227a-4433-a505-584618737ecd {"md5": "74693a136b1826782df8df03a46dd4ef", "pid": "027328589", "note": [{"label": ["Sous cette vedette, on trouve les documents sur l'esthétique littéraire en général. Les documents sur l'esthétique de la littérature d'une époque particulière se trouvent sous des vedettes-matières du type : Littérature -- [Subdivision chronologique] -- Esthétique, par ex. : Littérature -- 18e siècle -- Esthétique"], "noteType": "general"}, {"label": ["Voir aussi aux différents mouvements esthétiques, par ex. : Surréalisme (littérature)", "Voir aussi la subdivision Esthétique aux littératures et aux personnes"], "noteType": "seeReference"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Esthétique"}], "related": [{"authorized_access_point": "Littérature - Philosophie"}, {"authorized_access_point": "Mouvements littéraires"}, {"authorized_access_point": "Théorie littéraire"}, {"authorized_access_point": "Littérature"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Allégorie (littérature)"}, {"authorized_access_point": "Baroque littéraire"}, {"authorized_access_point": "Biedermeier (littérature)"}, {"authorized_access_point": "Burlesque (littérature)"}, {"authorized_access_point": "Canons littéraires"}, {"authorized_access_point": "Carnavalesque"}, {"authorized_access_point": "Classicisme (littérature)"}, {"authorized_access_point": "Comique (littérature)"}, {"authorized_access_point": "Création littéraire"}, {"authorized_access_point": "Décadentisme"}, {"authorized_access_point": "Description (littérature)"}, {"authorized_access_point": "Dialogisme"}, {"authorized_access_point": "Épique (esthétique)"}, {"authorized_access_point": "Fantastique (littérature)"}, {"authorized_access_point": "Fragment (littérature)"}, {"authorized_access_point": "Grotesque (littérature)"}, {"authorized_access_point": "Hermétisme (littérature)"}, {"authorized_access_point": "Illusion (littérature)"}, {"authorized_access_point": "Imitation (littérature)"}, {"authorized_access_point": "Impressionnisme (littérature)"}, {"authorized_access_point": "Intimisme"}, {"authorized_access_point": "Lyrisme (littérature)"}, {"authorized_access_point": "Maniérisme (littérature)"}, {"authorized_access_point": "Merveilleux (littérature)"}, {"authorized_access_point": "Minimalisme (littérature)"}, {"authorized_access_point": "Modernisme (littérature)"}, {"authorized_access_point": "Néo-classicisme (littérature)"}, {"authorized_access_point": "Néo-réalisme (littérature)"}, {"authorized_access_point": "Neue Sachlichkeit (littérature)"}, {"authorized_access_point": "Orientalisme (littérature)"}, {"authorized_access_point": "Pathétique (littérature)"}, {"authorized_access_point": "Poésie - Esthétique"}, {"authorized_access_point": "Polyphonie (littérature)"}, {"authorized_access_point": "Popliteratur"}, {"authorized_access_point": "Postmodernisme et littérature"}, {"authorized_access_point": "Primitivisme (littérature)"}, {"authorized_access_point": "Réalisme magique (littérature)"}, {"authorized_access_point": "Réalisme socialiste (littérature)"}, {"authorized_access_point": "Régionalisme (littérature)"}, {"authorized_access_point": "Représentation (littérature)"}, {"authorized_access_point": "Rhétorique"}, {"authorized_access_point": "Rococo (littérature)"}, {"authorized_access_point": "Roman - Esthétique"}, {"authorized_access_point": "Romantisme (littérature)"}, {"authorized_access_point": "Style littéraire"}, {"authorized_access_point": "Stylistique"}, {"authorized_access_point": "Sublime (littérature)"}, {"authorized_access_point": "Théâtre (genre littéraire) - Esthétique"}, {"authorized_access_point": "Tragi-comique (littérature)"}, {"authorized_access_point": "Tragique (littérature)"}, {"authorized_access_point": "Unanimisme (mouvement littéraire)"}, {"authorized_access_point": "Variations (littérature)"}, {"authorized_access_point": "Vraisemblance (littérature)"}, {"authorized_access_point": "Littérature expérimentale"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Littérature -- Esthétique"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85077509", "source": "LCSH"}], "authorized_access_point": "Literature--Aesthetics"}], "identifier": "http://www.idref.fr/027328589", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027328589", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11939457q", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11939457", "source": "BNF"}], "classification": [{"name": "Philosophie", "type": "bf:ClassificationDdc", "classificationPortion": "100"}, {"name": "Poésie", "type": "bf:ClassificationDdc", "classificationPortion": "801"}], "variant_access_point": ["Doctrines littéraires", "Esthétique littéraire"], "authorized_access_point": "Littérature - Esthétique"} 1 +2024-09-10 15:42:58.006289 2024-09-10 15:42:58.006305 736825cf-37bd-47ca-bb98-8cd195e7ed69 {"md5": "807cfa064db1bcf3ba2165f381d17c95", "pid": "027330176", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Langages de programmation"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Access Basic (langage de programmation)"}, {"authorized_access_point": "BASICA (langage de programmation)"}, {"authorized_access_point": "PICK/BASIC (langage de programmation)"}, {"authorized_access_point": "STOS Basic (langage de programmation)"}, {"authorized_access_point": "Omikron Basic (langage de programmation)"}, {"authorized_access_point": "MSX-Basic (langage de programmation)"}, {"authorized_access_point": "GW-BASIC (langage de programmation)"}, {"authorized_access_point": "GFA BASIC (langage de programmation)"}, {"authorized_access_point": "BASIC-PLUS (langage de programmation)"}, {"authorized_access_point": "AmigaBASIC (langage de programmation)"}, {"authorized_access_point": "AppleSoft BASIC (langage de programmation)"}, {"authorized_access_point": "Microsoft Visual BASIC (langage de programmation)"}], "identifier": "http://www.idref.fr/027330176", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027330176", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11939574k", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11939574", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Beginner's All-Purpose Symbolic Instruction Code (langage de programmation)"], "authorized_access_point": "BASIC (langage de programmation)"} 1 +2024-09-10 15:42:58.127856 2024-09-10 15:42:58.127869 8e27b50e-6677-4aac-9fb9-05e50887da96 {"md5": "09328571c33066ae87b32ea401e9bfab", "pid": "027333930", "note": [{"label": ["Voir aussi aux applications, langages de programmation, systèmes, etc. temps réel"], "noteType": "seeReference"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Informatique"}], "related": [{"authorized_access_point": "FlexRay (bus)"}, {"authorized_access_point": "Systèmes en ligne"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Ordonnancement dynamique"}, {"authorized_access_point": "Commande en temps réel"}, {"authorized_access_point": "Programmation en temps réel"}, {"authorized_access_point": "Projet SCEPTRE"}, {"authorized_access_point": "Réservations"}, {"authorized_access_point": "Systèmes transactionnels"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85111765", "source": "LCSH"}], "authorized_access_point": "Real-time data processing"}], "identifier": "http://www.idref.fr/027333930", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027333930", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119398403", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11939840", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Exploitation en temps réel", "Ordinateurs - Exploitation en temps réel", "Systèmes informatiques en temps réel", "Systèmes réactifs (informatiques)", "Systèmes temps réel (informatique)", "Temps réel", "Traitement en direct", "Traitement en temps réel"], "authorized_access_point": "Temps réel (informatique)"} 1 +2024-09-10 15:43:11.202913 2024-09-10 15:43:11.202918 3d2d7659-710b-4a55-8174-4df1d04abb6d {"md5": "2a0039452203a5faa120dee398c20d9a", "pid": "029933730", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/029933730", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029933730", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12145420c", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12145420", "source": "BNF"}], "authorized_access_point": "Relations extérieures - Autriche - 1789-1900"} 1 +2024-09-10 15:42:58.275219 2024-09-10 15:42:58.275232 ae02c109-aa98-44ef-bec8-eb9d9ec4586c {"md5": "2ec58d1021c0685f323d378709cb9f75", "pid": "027336913", "note": [{"label": ["Grand Larousse universel", "Dict. encyclopédique d'histoire / M. Mourre, 1996"], "noteType": "dataSource"}, {"label": ["2 septembre 1945 : fin de la seconde guerre mondiale. 1955 : conférences de Bandung (avril) et de Genève (juillet)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "DC 3 suédois, Affaire du (1952)"}], "identifier": "http://www.idref.fr/027336913", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027336913", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11940078m", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11940078", "source": "BNF"}], "classification": [{"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Histoire", "type": "bf:ClassificationDdc", "classificationPortion": "900"}], "variant_access_point": ["Politique mondiale - 1945-1955"], "authorized_access_point": "Relations internationales - 1945-1955"} 1 +2024-09-10 15:42:58.367456 2024-09-10 15:42:58.367465 4395b9fa-5133-41aa-98d3-e40a7a18bcec {"md5": "d37ed1d305140faee74c2522074b767e", "pid": "027345203", "note": [{"label": ["Grand Larousse universel", "Encycl. universalis - http://www.universalis-edu.com (2006-10-18)", "Les langues du monde / A. Meillet, M. Cohen, 1981", "Les langues dans le monde ancien et moderne : Les langues chamito-sémitiques / J. Perrot, 1988", "Les langues du monde / M. Sala, I. Vintila-Radulescu, 1984 (art. : Hébreu)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Hébreu (langue)"}], "related": [{"authorized_access_point": "Hébreu (langue) mishnaïque"}, {"authorized_access_point": "Poésie hébraïque biblique"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85059867", "source": "LCSH"}], "authorized_access_point": "Hebrew language"}], "identifier": "http://www.idref.fr/027345203", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027345203", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11940722x", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11940722", "source": "BNF"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}, {"name": "Langues et linguistique", "type": "bf:ClassificationDdc", "classificationPortion": "400"}], "variant_access_point": ["Hébreu (langue) ancien", "Hébreu (langue) classique", "Hébreu ancien (langue)", "Hébreu biblique (langue)", "Hébreu classique (langue)"], "authorized_access_point": "Hébreu (langue) biblique"} 1 +2024-09-10 15:42:58.456601 2024-09-10 15:42:58.456612 cde07201-fba7-4b34-b095-10dbbd580e52 {"md5": "6c87ac25157ff0c19b6a46d195a0d792", "pid": "027355152", "note": [{"label": ["Voir aussi aux noms des particules et antiparticules"], "noteType": "seeReference"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Physique nucléaire"}], "related": [{"authorized_access_point": "Accélérateurs de particules"}, {"authorized_access_point": "Collisions (physique nucléaire)"}, {"authorized_access_point": "Lois d'échelle (physique)"}, {"authorized_access_point": "Matrices de mélanges"}, {"authorized_access_point": "Physique des hautes énergies"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Antinucléons"}, {"authorized_access_point": "Anyons"}, {"authorized_access_point": "Bethe-Salpeter, Équation de"}, {"authorized_access_point": "Bootstrap, Théorie du (physique nucléaire)"}, {"authorized_access_point": "Bosons"}, {"authorized_access_point": "Chromodynamique quantique"}, {"authorized_access_point": "Cônes de lumière"}, {"authorized_access_point": "Constantes de couplage"}, {"authorized_access_point": "Désintégration semileptonique"}, {"authorized_access_point": "Effet tunnel"}, {"authorized_access_point": "Faisceaux de particules"}, {"authorized_access_point": "Fonctions de structure"}, {"authorized_access_point": "Forces nucléaires (physique)"}, {"authorized_access_point": "Gluons"}, {"authorized_access_point": "Lois d'échelle (physique)"}, {"authorized_access_point": "Mandelstam, Représentation de"}, {"authorized_access_point": "Matrices densité"}, {"authorized_access_point": "Moment angulaire (physique nucléaire)"}, {"authorized_access_point": "Muographie"}, {"authorized_access_point": "Neutralinos"}, {"authorized_access_point": "Nucléons"}, {"authorized_access_point": "Particules étranges"}, {"authorized_access_point": "Particules lourdes (physique)"}, {"authorized_access_point": "Particules relativistes"}, {"authorized_access_point": "Partons"}, {"authorized_access_point": "Pions (particules)"}, {"authorized_access_point": "Polarisation (physique nucléaire)"}, {"authorized_access_point": "Pomerons"}, {"authorized_access_point": "Pouvoir d'arrêt (physique nucléaire)"}, {"authorized_access_point": "Quasi-particules"}, {"authorized_access_point": "Rayonnement synchrotron"}, {"authorized_access_point": "Réactions d'annihilation"}, {"authorized_access_point": "Regge, Trajectoires de"}, {"authorized_access_point": "Règles de somme (physique)"}, {"authorized_access_point": "Schrödinger, Équation de"}, {"authorized_access_point": "Supersymétrie"}, {"authorized_access_point": "Symétrie unitaire"}, {"authorized_access_point": "Tachyons"}, {"authorized_access_point": "Théorie du transport"}, {"authorized_access_point": "Van Allen, Ceinture de"}, {"authorized_access_point": "Violation de la règle CP (physique nucléaire)"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Particules (physique nucléaire)"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85098374", "source": "LCSH"}], "authorized_access_point": "Particles (Nuclear physics)"}], "identifier": "http://www.idref.fr/027355152", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027355152", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119415082", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11941508", "source": "BNF"}], "variant_access_point": ["Anti-particules (physique)", "Antiparticules (physique)", "Particules élémentaires (physique)", "Particules fondamentales", "Particules nucléaires", "Physique des particules"], "authorized_access_point": "Particules (physique)"} 1 +2024-09-10 15:42:58.551725 2024-09-10 15:42:58.551738 1ddd8bcc-0b40-4dba-9931-75ab2b55ce34 {"md5": "a2c66ff2585188d8421b57d5371c58c4", "pid": "027355578", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Langages de programmation"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "MikroPascal (langage de programmation)"}, {"authorized_access_point": "WEB (langage de programmation)"}, {"authorized_access_point": "PasRo (système informatique)"}, {"authorized_access_point": "UCSD p-System"}], "identifier": "http://www.idref.fr/027355578", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027355578", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11941547z", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11941547", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "authorized_access_point": "PASCAL (langage de programmation)"} 1 +2024-09-10 15:42:58.652674 2024-09-10 15:42:58.652682 d16f8ddd-c12b-40e1-bcfc-9a1808cd59be {"md5": "052ec299bb83e010c2c323669cd776db", "pid": "027355985", "note": [{"label": ["Sous cette vedette, on trouve les ouvrages qui traitent de la politique religieuse de certains princes catholiques du XVIIIe siècle, adeptes du despotisme éclairé. Le joséphisme se caractérise par l'intervention du prince dans la discipline intérieure de l'Église nationale, afin d'affaiblir la souveraineté pontificale."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Église et État - Autriche"}, {"authorized_access_point": "Catholicisme antiromain"}, {"authorized_access_point": "Despotisme éclairé"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027355985", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027355985", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119415814", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11941581", "source": "BNF"}], "variant_access_point": ["Joséphinisme"], "authorized_access_point": "Joséphisme"} 1 +2024-09-10 15:42:58.709213 2024-09-10 15:42:58.709216 d2d65e59-6a05-43f9-9ec6-6e81b0779c41 {"md5": "55e3fdbfa2e3fbb624616c8deee5a753", "pid": "027356493", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Langages de programmation"}, {"authorized_access_point": "Progiciels"}, {"authorized_access_point": "Logiciels"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "ABAP (langage de programmation)"}, {"authorized_access_point": "AppleScript (langage de programmation)"}, {"authorized_access_point": "NOMAD (langage de programmation)"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Langages de 4e génération"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85107313", "source": "LCSH"}], "authorized_access_point": "Programming languages (Electronic computers)"}], "identifier": "http://www.idref.fr/027356493", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027356493", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11941625x", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11941625", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Infocentres (informatique)", "Info-centres (informatique)", "Langages de quatrième génération", "L4G"], "authorized_access_point": "Langages de 4e génération"} 1 +2024-09-10 15:42:58.780549 2024-09-10 15:42:58.780558 31a6cabe-5b64-410e-b9b4-1d0b76ec4b53 {"md5": "61afbfe9b0efc21aed79fe4c5d15d924", "pid": "027365697", "note": [{"label": ["Vitrine linguistique - https://vitrinelinguistique.oqlf.gouv.qc.ca (2024-05-31)", "Le nouveau dict. médical, 2018"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les documents sur le traitement des maladies à l'aide de champs magnétiques. Les documents sur la médecine magnétique, courant de pensée médicale datant du XVIIème siècle, se trouvent sous Médecine magnétique"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Médecines alternatives"}], "related": [{"authorized_access_point": "Magnétisme animal"}, {"authorized_access_point": "Médecine magnétique"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85079761", "source": "LCSH"}], "authorized_access_point": "Magnetotherapy"}, {"source": "MeSH", "identifiedBy": [{"type": "uri", "value": "https://id.nlm.nih.gov/mesh/M0522057", "source": "MeSH"}], "authorized_access_point": "Magnetic Field Therapy"}, {"source": "RVMLaval", "authorized_access_point": "Magnétothérapie"}], "identifier": "http://www.idref.fr/027365697", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027365697", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11942308r", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11942308", "source": "BNF"}], "classification": [{"name": "Sciences médicales et paramédicales", "type": "bf:ClassificationDdc", "classificationPortion": "610"}], "variant_access_point": ["Aimants - Emploi en thérapeutique", "Champs magnétiques - Emploi en thérapeutique", "Guérison magnétique", "Magnétisme - Emploi en thérapeutique", "Magnétisme curatif", "Magnologie", "Thérapeutique magnétique"], "authorized_access_point": "Magnétothérapie"} 1 +2024-09-10 15:42:58.876477 2024-09-10 15:42:58.87649 52220798-ce76-4eea-b215-0eede2c230ff {"md5": "4e38b7bfce0f48d1d6970366c9fa54e9", "pid": "027368661", "note": [{"label": ["Mourre, 1986"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Investiture (droit canonique)"}, {"authorized_access_point": "Papauté - 1054-1309"}], "related": [{"authorized_access_point": "Saint Empire romain germanique - 1056-1106 (Henri IV)"}, {"authorized_access_point": "Saint Empire romain germanique - 1106-1125 (Henri V)"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Canossa, Entrevue de (1077)"}], "identifier": "http://www.idref.fr/027368661", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027368661", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119425476", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11942547", "source": "BNF"}], "variant_access_point": ["Querelle des investitures", "Église et État - Saint Empire romain germanique - 1076-1122"], "authorized_access_point": "Investitures, Querelle des"} 1 +2024-09-10 15:42:58.967364 2024-09-10 15:42:58.967374 ca09e52c-c246-4d03-b133-7dd042e362bd {"md5": "fa801759f0d1bf7b84166bf06c1f189e", "pid": "027374351", "note": [{"label": ["Sous cette vedette, on trouve les ouvrages qui traitent d'objets, tels que documents historiques, livres, objets d'art, reliques, etc., qui concernent le Canada, sa civilisation ou sa culture, ou qui en sont caractéristiques"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Canada - Histoire"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Canadiana (objets de collection)"}], "identifier": "http://www.idref.fr/027374351", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027374351", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11942987j", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11942987", "source": "BNF"}], "authorized_access_point": "Canadiana (objets de collection)"} 1 +2024-09-10 15:42:59.107087 2024-09-10 15:42:59.107098 aed21af3-bc27-4e8d-8d79-29929eda249b {"md5": "4e56533033cc6e7e0630a21e12e04e89", "pid": "027376982", "note": [{"label": ["Sous cette vedette, on trouve les ouvrages sur l'ensemble des mesures prises par Napoléon Ier pour fermer à la Grande-Bretagne tous les ports du continent"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Politique et gouvernement - Europe - 1789-1815"}, {"authorized_access_point": "Blocus"}, {"authorized_access_point": "France - 1799-1815 (Consulat et Empire)"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85031555", "source": "LCSH"}], "authorized_access_point": "Continental System (Economic blockade)"}, {"source": "RVMLaval", "authorized_access_point": "Blocus continental"}], "identifier": "http://www.idref.fr/027376982", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027376982", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119431898", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11943189", "source": "BNF"}], "authorized_access_point": "Blocus continental"} 1 +2024-09-10 15:42:59.21599 2024-09-10 15:42:59.216 16e15897-b69e-4317-b0b6-f66ed14a2831 {"md5": "709007fb32b8baadfda9342ba7ab67bb", "pid": "027391396", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Masques (électronique)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027391396", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027391396", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11944384b", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11944384", "source": "BNF"}], "authorized_access_point": "Circuits intégrés - Masques"} 1 +2024-09-10 15:42:59.30821 2024-09-10 15:42:59.308222 185fd231-abe8-4a7c-9072-670804ece1bf {"md5": "ba875a5d8b858753db143b3ad48d2c05", "pid": "027396924", "note": [{"label": ["Grand Larousse universel", "Théo, 2009", "Les mots du christianisme / D. Le Tourneau, 2005", "Dict. des mots de la foi chrétienne / O. de La Brosse, A. M. Henry, P. Rouillard, 1992"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Christ-Emmanuel"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85081693", "source": "LCSH"}], "authorized_access_point": "Mary, Blessed Virgin, Saint--Annunciation"}, {"source": "RVMLaval", "authorized_access_point": "Marie, Sainte Vierge -- Annonciation"}], "identifier": "http://www.idref.fr/027396924", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027396924", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11944811h", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11944811", "source": "BNF"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}], "variant_access_point": ["Annonce faite à Marie", "Annonciation à la Vierge Marie"], "authorized_access_point": "Annonciation"} 1 +2024-09-10 15:42:59.415628 2024-09-10 15:42:59.415641 2b019016-33ba-498b-a759-bee13dcccd21 {"md5": "1697b72ab99b91d2ec280b837420253f", "pid": "02739770X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Attente"}, {"authorized_access_point": "Temps (psychanalyse)"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Flux (psychologie)"}, {"authorized_access_point": "Perception du temps"}, {"authorized_access_point": "Perspective temporelle"}, {"authorized_access_point": "Anticipation (psychologie)"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2008112897", "source": "LCSH"}], "authorized_access_point": "Time--Psychological aspects"}, {"source": "RVMLaval", "authorized_access_point": "Temps -- Aspect psychologique"}], "identifier": "http://www.idref.fr/02739770X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02739770X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119448674", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11944867", "source": "BNF"}], "classification": [{"name": "Psychologie, psychanalyse", "type": "bf:ClassificationDdc", "classificationPortion": "150"}], "variant_access_point": ["Temps - Psychologie", "Temps - Aspect psychologique"], "authorized_access_point": "Psychologie du temps"} 1 +2024-09-10 15:42:59.522159 2024-09-10 15:42:59.522171 7f6eec3f-08ce-46ac-838b-9ebb26234ea0 {"md5": "05d2f90e4f0a07ccf978cfae75dc2c4b", "pid": "027415252", "note": [{"label": ["Dict. encycl. des religions, 1993"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sectes shintoïstes"}], "related": [{"authorized_access_point": "Teodori"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCA", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/names/n50072712", "source": "LCA"}], "authorized_access_point": "Tenrikyo"}], "identifier": "http://www.idref.fr/027415252", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027415252", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11946162z", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11946162", "source": "BNF"}], "authorized_access_point": "Tenrikyō"} 1 +2024-09-10 15:42:59.631446 2024-09-10 15:42:59.631459 ab470c31-f1d1-4766-9bb6-8866abcd4902 {"md5": "e868efb41eb3556edf3302a2197bb8ba", "pid": "02743141X", "note": [{"label": ["Grand Larousse universel", "Encycl. universalis (art. : Romantisme) - http://www.universalis-edu.com (2013-11-14)", "Vocabulaire d'esthétique / E. Souriau, 1990", "Dict. des lettres françaises. Le XVIIIe siècle / G. Grente, F. Moureau, 1995", "Dict. des termes littéraires, 2005 (art. : Romantisme)", "Dict. des littératures / P. Van Tieghem, 1984", "Dict. du littéraire / P. Aron, D. Saint-Jacques, A. Viala, 2002 (art. : Romantisme) : pré-romantisme"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Civilisation - Europe - 18e siècle"}, {"authorized_access_point": "Romantisme"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Sturm und Drang"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Préromantisme"}], "identifier": "http://www.idref.fr/02743141X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02743141X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11947424g", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11947424", "source": "BNF"}], "classification": [{"name": "Arts (sauf littérature)", "type": "bf:ClassificationDdc", "classificationPortion": "700"}, {"name": "Littérature générale", "type": "bf:ClassificationDdc", "classificationPortion": "801"}], "variant_access_point": ["Mouvement préromantique", "Pré-romantisme"], "authorized_access_point": "Préromantisme"} 1 +2024-09-10 15:42:59.718643 2024-09-10 15:42:59.718646 1a1e14af-5aa7-4f14-8924-2da604e94599 {"md5": "172c2f26aee90dea8c1a8b1c5a01dcbd", "pid": "027431444", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Psychologie religieuse"}], "related": [{"authorized_access_point": "Mystique - Psychologie"}, {"authorized_access_point": "Prière"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85106118", "source": "LCSH"}], "authorized_access_point": "Prayer -- Psychology"}, {"source": "RVMLaval", "authorized_access_point": "Prière -- Psychologie"}], "identifier": "http://www.idref.fr/027431444", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027431444", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11947427h", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11947427", "source": "BNF"}], "classification": [{"name": "Psychologie, psychanalyse", "type": "bf:ClassificationDdc", "classificationPortion": "150"}, {"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}], "variant_access_point": ["Prière - Aspect psychologique", "Prière - Psychologie"], "authorized_access_point": "Psychologie de la prière"} 1 +2024-09-10 15:42:59.802496 2024-09-10 15:42:59.802504 3ac19346-8199-4652-9306-8d0a18f990ac {"md5": "a180893187a4039a8eaf1df296085953", "pid": "027436683", "note": [{"label": ["Grand Larousse universel", "Encycl. universalis - http://www.universalis-edu.com (2012-02-24)", "Dict. encyclopédique d'histoire / M. Mourre, 1996"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Conditions sociales - Europe - 1492-1789"}, {"authorized_access_point": "Conditions rurales"}, {"authorized_access_point": "Travail forcé"}], "related": [{"authorized_access_point": "Esclavage"}, {"authorized_access_point": "Mainmorte"}, {"authorized_access_point": "Péonage"}, {"authorized_access_point": "Propriété foncière"}, {"authorized_access_point": "Serfs"}, {"authorized_access_point": "Serfs - Émancipation"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Colonat"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85120215", "source": "LCSH"}], "authorized_access_point": "Serfdom"}, {"source": "RVMLaval", "authorized_access_point": "Servage"}], "identifier": "http://www.idref.fr/027436683", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027436683", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119478388", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11947838", "source": "BNF"}], "classification": [{"name": "Économie politique", "type": "bf:ClassificationDdc", "classificationPortion": "330"}, {"name": "Droit", "type": "bf:ClassificationDdc", "classificationPortion": "340"}, {"name": "Histoire de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "940"}], "variant_access_point": ["Condition servile", "Questalité"], "authorized_access_point": "Servage"} 1 +2024-09-10 15:42:59.907546 2024-09-10 15:42:59.907553 389b8f76-8fd4-4d33-867f-2aaccdeddcbf {"md5": "69ea4971e432e453e6aebe51727b1b18", "pid": "027455092", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Droits de l'homme"}], "related": [{"authorized_access_point": "Enfants - Statut juridique"}, {"authorized_access_point": "Protection de l'enfance"}, {"authorized_access_point": "Traite des enfants"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Relations personnelles (droits de l'enfant)"}, {"authorized_access_point": "Aide juridique aux enfants"}, {"authorized_access_point": "Conseils municipaux d'enfants"}], "identifier": "http://www.idref.fr/027455092", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027455092", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11949245c", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11949245", "source": "BNF"}], "classification": [{"name": "Droit", "type": "bf:ClassificationDdc", "classificationPortion": "340"}], "variant_access_point": ["Droits de l'enfant", "Droits des enfants", "Droits des mineurs"], "authorized_access_point": "Enfants - Droits"} 1 +2024-09-10 15:43:00.008793 2024-09-10 15:43:00.008802 8564762c-44ce-40a1-86e2-96fd648f5157 {"md5": "6ef33807f37808c4d5651d5c12ed1c06", "pid": "027461599", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Manuscrits mexicains"}], "related": [{"authorized_access_point": "Écriture pictographique indienne d'Amérique"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85080746", "source": "LCSH"}], "authorized_access_point": "Manuscripts, Mexican (Pre-Columbian)"}, {"source": "RVMLaval", "authorized_access_point": "Manuscrits mexicains précolombiens"}], "identifier": "http://www.idref.fr/027461599", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027461599", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119497374", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11949737", "source": "BNF"}], "classification": [{"name": "Sciences de l'information", "type": "bf:ClassificationDdc", "classificationPortion": "020"}, {"name": "Archéologie. Histoire ancienne", "type": "bf:ClassificationDdc", "classificationPortion": "930"}], "variant_access_point": ["Codex mexicains précolombiens", "Codex pictographiques mexicains", "Codex précolombiens mexicains", "Indiens d'Amérique - Mexique - Manuscrits précolombiens", "Manuscrits pictographiques mexicains", "Manuscrits précolombiens mexicains"], "authorized_access_point": "Manuscrits mexicains précolombiens"} 1 +2024-09-10 15:43:00.087458 2024-09-10 15:43:00.087466 73339ec9-4a37-4526-b596-d3ed0a0a7151 {"md5": "2c9a8b7d1b78591be039f62cf455fd68", "pid": "027478033", "note": [{"label": ["National library of Israel - http://web.nli.org.il (2017-02-01)", "Milwn ḥadaš / ʾA. ʾEben-Šwšan, 1965", "Le Talmud et la littérature rabbinique / C. Y. Lambert, 1997", "BnF Service hébreu, 2017-02-01"], "noteType": "dataSource"}, {"label": ["Le mot Torah a plusieurs acceptions : il correspond au Pentateuque ou Loi écrite du judaïsme et à la Loi orale, Torah orale, constituée des commentaires explicatifs des préceptes contenus dans le Pentateuque"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Hébreu (langue) - Vocabulaire"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85136098", "source": "LCSH"}], "authorized_access_point": "Torah (The Hebrew word)"}, {"source": "RVMLaval", "authorized_access_point": "Torah (Le mot hébraïque)"}], "identifier": "http://www.idref.fr/027478033", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027478033", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119509560", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11950956", "source": "BNF"}], "classification": [{"name": "Langues et linguistique", "type": "bf:ClassificationDdc", "classificationPortion": "400"}], "variant_access_point": ["Thora (le mot hébreu)", "Torah (le mot hébreu)"], "authorized_access_point": "Twrah (le mot hébreu)"} 1 +2024-09-10 15:43:00.167027 2024-09-10 15:43:00.167035 3fdb6f8e-fd74-4aad-ac64-2a149b6e8938 {"md5": "592d50b3626c3cdd1f9f7fa725861037", "pid": "027481352", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mouvement ouvrier"}, {"authorized_access_point": "Syndicats"}], "related": [{"authorized_access_point": "Travailleurs"}, {"authorized_access_point": "Coordinations"}, {"authorized_access_point": "Militantisme"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Action directe"}, {"authorized_access_point": "Bourses du travail"}, {"authorized_access_point": "Syndicalisation"}, {"authorized_access_point": "Syndicalisme révolutionnaire"}, {"authorized_access_point": "Syndicalistes"}, {"authorized_access_point": "Anarcho-syndicalisme"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Syndicalisme"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85131626", "source": "LCSH"}], "authorized_access_point": "Syndicalism"}], "identifier": "http://www.idref.fr/027481352", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027481352", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13318723t", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13318723", "source": "BNF"}], "variant_access_point": ["Action syndicale", "Activités syndicales", "Mouvement syndical"], "authorized_access_point": "Syndicalisme"} 1 +2024-09-10 15:43:00.238184 2024-09-10 15:43:00.238191 f9542ca6-d7e1-476e-a3d5-35be6d676c62 {"md5": "3d42a8b380d08c01fe8e4f6463b10b73", "pid": "027486753", "note": [{"label": ["Peut se subdiviser par le nom des provinces"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Relations fiscales intergouvernementales - Canada"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2008103642", "source": "LCSH"}], "authorized_access_point": "Federal government--Canada"}, {"source": "RVMLaval", "authorized_access_point": "Gouvernement fédéral -- Canada"}], "identifier": "http://www.idref.fr/027486753", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027486753", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13318731f", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13318731", "source": "BNF"}], "classification": [{"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}], "variant_access_point": ["Relations fédérales-provinciales (Canada)"], "authorized_access_point": "Gouvernement fédéral - Canada"} 1 +2024-09-10 15:43:00.319061 2024-09-10 15:43:00.319071 7c39693e-067a-483f-bcfc-8c9bb031d32d {"md5": "fac6756244a3ab681839bfedd74b9d4c", "pid": "027493032", "note": [{"label": ["LCSH, 1994-03. - Laval RVM, 1994-02"], "noteType": "dataNotFound"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027493032", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027493032", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11952058p", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11952058", "source": "BNF"}], "authorized_access_point": "Hydrologie urbaine - Informatique"} 1 +2024-09-10 15:43:00.423335 2024-09-10 15:43:00.423345 b469235c-a493-4579-a96c-1ad212577def {"md5": "610380e7b46e8acae13acc4d2111084b", "pid": "027495213", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Protestants - Persécutions"}, {"authorized_access_point": "France - 1643-1715 (Louis XIV)"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85039286", "source": "LCSH"}], "authorized_access_point": "Dragonnades"}], "identifier": "http://www.idref.fr/027495213", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027495213", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11952229n", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11952229", "source": "BNF"}], "authorized_access_point": "Dragonnades"} 1 +2024-09-10 15:43:00.518049 2024-09-10 15:43:00.518058 d668ce23-f16e-4f99-b391-4fba8767c80b {"md5": "a7f052890f7c8ca77767ffccd1ac2871", "pid": "027495922", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Intégration économique - Europe"}], "related": [{"authorized_access_point": "Europe de l'Ouest"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Politique économique - Pays de l'Union européenne"}, {"authorized_access_point": "Plan Schuman"}, {"authorized_access_point": "Politique agricole - Pays de l'Union européenne"}], "identifier": "http://www.idref.fr/027495922", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027495922", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119522796", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11952279", "source": "BNF"}], "classification": [{"name": "Economie", "type": "bf:ClassificationDdc", "classificationPortion": "330"}], "variant_access_point": ["Grand marché européen", "Marché commun européen", "Marché intérieur européen", "Marché unique européen"], "authorized_access_point": "Intégration économique - Europe de l'Ouest"} 1 +2024-09-10 15:43:00.613928 2024-09-10 15:43:00.613937 f44291c1-7a85-4e54-bd65-cc37e0353fc6 {"md5": "75e7ea3be6ec8ee685361a42cdfef599", "pid": "02750333X", "note": [{"label": ["Encycl. Larousse - http://www.larousse.fr/encyclopedie (2010-06-02)", "Dict. des sciences animales / C. Meyer - http://dico-sciences-animales.cirad.fr (2010-06-02)", "TermSciences (art. : Phylogenèse) - http://www.termsciences.fr (2010-06-02)", "Dict. de biologie / J. Berthet, 2006 (art. : Phylogenèse ; Phylogénie)", "Dict. raisonné de biologie, 2003 (art. : Phylogenèse ; Phylogénie)"], "noteType": "dataSource"}, {"label": ["Voir aussi la subdivision Analyse cladistique aux êtres vivants", "Voir aussi la subdivision Évolution aux êtres vivants, parties du corps et produits chimiques (biomolécules)"], "noteType": "seeReference"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sciences naturelles - Classification"}], "related": [{"authorized_access_point": "Analyse cladistique"}, {"authorized_access_point": "Évolution"}, {"authorized_access_point": "Évolution (biologie)"}, {"authorized_access_point": "Généalogie"}, {"authorized_access_point": "Homologie (biologie)"}, {"authorized_access_point": "Loi biogénétique fondamentale"}, {"authorized_access_point": "Ontogenèse"}, {"authorized_access_point": "Parenté"}, {"authorized_access_point": "Phylogénie moléculaire"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85101498", "source": "LCSH"}], "authorized_access_point": "Phylogeny"}], "identifier": "http://www.idref.fr/02750333X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02750333X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11952878h", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11952878", "source": "BNF"}], "classification": [{"name": "Sciences de la vie", "type": "bf:ClassificationDdc", "classificationPortion": "570"}], "variant_access_point": ["Arbres généalogiques", "Arbres phylogénétiques", "Lignée", "Phylogenèse", "Phylum"], "authorized_access_point": "Phylogénie"} 1 +2024-09-10 15:43:00.701092 2024-09-10 15:43:00.701102 402dfa60-1b44-4e5b-ba0c-9e33067255c9 {"md5": "8fd2f2148102c46817bdaf70371b79c8", "pid": "027506762", "note": [{"label": ["Voir aussi la subdivision Influence française aux groupes ethniques et sujets noms communs appropriés (artistiques, culturels, littéraires et de civilisation en général)"], "noteType": "seeReference"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Équipements culturels français"}, {"authorized_access_point": "Influence française"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Art - France"}, {"authorized_access_point": "Cuisine française"}, {"authorized_access_point": "Droit - Influence française"}, {"authorized_access_point": "Francité"}, {"authorized_access_point": "Vin de France"}, {"authorized_access_point": "Littérature française"}, {"authorized_access_point": "Musique traditionnelle - France"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85051184", "source": "LCSH"}], "authorized_access_point": "France--Civilization"}, {"source": "RVMLaval", "authorized_access_point": "France--Civilisation"}], "identifier": "http://www.idref.fr/027506762", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027506762", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11953151s", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11953151", "source": "BNF"}], "classification": [{"name": "Histoire de la France (depuis 486)", "type": "bf:ClassificationDdc", "classificationPortion": "944"}], "variant_access_point": ["Civilisation française", "Culture française"], "authorized_access_point": "Civilisation - France"} 1 +2024-09-10 15:43:00.767687 2024-09-10 15:43:00.767689 11630268-7f77-4f4a-960f-ad1dd94fae49 {"md5": "f32315eb92598cbf145250b0b82781d3", "pid": "027516652", "note": [{"label": ["Théo, 1989"], "noteType": "dataSource"}, {"label": ["LCSH, 2000-03. - Laval RVM, 2000-01"], "noteType": "dataNotFound"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Église catholique - Doctrine sociale"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027516652", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027516652", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11954008m", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11954008", "source": "BNF"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}], "authorized_access_point": "Encycliques sociales"} 1 +2024-09-10 15:43:00.847877 2024-09-10 15:43:00.847886 e27ba797-a710-40ef-83be-f9fcf7aa41f6 {"md5": "751972009d4c977a85064e69a2b55cf5", "pid": "027519546", "note": [{"label": ["La Russie et la tentation de l'Orient / L. de Meaux, 2010", "Dict. de la Russie / P. Cauchy, 2008 (art. : Asie centrale)", "Le royaume de l'insolence : l'Afghanistan, 1504-2001 / M. Barry, 2002", "Encycl. of Russian hist. / J. R. Millar, 2003 (art. : Central Asia)", "Historical dict. of Afghanistan / L. W. Adamec, 2003 : Great Game", "Historical dict. of the British Empire / J. S. Olson, R. Shadle, 1996 : Great Game"], "noteType": "dataSource"}, {"label": ["Rivalité anglo-russe en Asie centrale (surnommée le \\"Grand Jeu\\"), qui a duré de la guerre russo-persane de 1804-1813 à la signature de la Convention anglo-russe de 1907 (l'expression Grand Jeu a aussi été utilisée pour la rivalité des puissances occidentales en Chine au début du 20e siècle)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Relations extérieures - Russie - 1801-1917"}, {"authorized_access_point": "Asie centrale - 19e siècle"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Guerre anglo-afghane (1839-1842)"}, {"authorized_access_point": "Guerre anglo-afghane (1878-1880)"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85040619", "source": "LCSH"}], "authorized_access_point": "Eastern question (Central Asia)"}, {"source": "RVMLaval", "authorized_access_point": "Orient, Question d' (Asie centrale)"}], "identifier": "http://www.idref.fr/027519546", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027519546", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11954245c", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11954245", "source": "BNF"}], "classification": [{"name": "Histoire du reste du monde", "type": "bf:ClassificationDdc", "classificationPortion": "950"}], "variant_access_point": ["Asie centrale, Question d'", "Grand Jeu (Asie centrale)", "Great Game (Asie centrale)", "Question d'Asie centrale", "Question d'Orient (Asie centrale)"], "authorized_access_point": "Orient, Question d' (Asie centrale)"} 1 +2024-09-10 15:43:00.944586 2024-09-10 15:43:00.944595 5aa0e295-236d-4f66-8b8e-f257d0881f22 {"md5": "10e213de4b7d0e4f2f18afb949f99920", "pid": "027519686", "note": [{"label": ["Les mouvements pacifistes américains et français, hier et aujourd'hui : actes du colloque des 5, 6 et 7 avril 2006 à l'Université de Savoie / F. McCollum Feeley, 2007"], "noteType": "dataSource"}, {"label": ["Voir aussi la subdivision Mouvements contestataires aux guerres"], "noteType": "seeReference"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mouvements sociaux"}, {"authorized_access_point": "Pacifisme"}], "related": [{"authorized_access_point": "Droit à la paix"}, {"authorized_access_point": "Mouvements contestataires"}, {"authorized_access_point": "Pacifistes"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Amsterdam-Pleyel, Mouvement"}, {"authorized_access_point": "Copperheads (États-Unis, 1861-1865)"}, {"authorized_access_point": "Zimmerwald, Mouvement de"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85098950", "source": "LCSH"}], "authorized_access_point": "Peace movements"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85098945", "source": "LCSH"}], "authorized_access_point": "Peace -- Societies, etc"}, {"source": "RVMLaval", "authorized_access_point": "Mouvements pacifistes"}, {"source": "RVMLaval", "authorized_access_point": "Paix -- Associations"}], "identifier": "http://www.idref.fr/027519686", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027519686", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119542530", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11954253", "source": "BNF"}], "classification": [{"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}, {"name": "Sciences politiques", "type": "bf:ClassificationDdc", "classificationPortion": "320"}], "variant_access_point": ["Mouvement pacifiste", "Mouvements contre la guerre", "Mouvements de protestation contre la guerre", "Mouvements pour la paix", "Paix - Associations", "Paix, Mouvements pour la"], "authorized_access_point": "Mouvements pacifistes"} 1 +2024-09-10 15:43:01.054437 2024-09-10 15:43:01.054503 e713b15e-7502-4783-9a6c-0cad30cd5fe5 {"md5": "289dda71f51bfad4479314ca4e6dae8f", "pid": "027528820", "note": [{"label": ["Grand Larousse universel", "Dict. encyclopédique d'histoire / M. Mourre, 1996", "Lexique d'hist. et de civilisation romaines / J.-L. Lamboley, 1995", "Vocabulaire de droit romain / R. Monier, 1948 (art. : Patrocinium)"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les documents sur le patronage dans la Rome antique. Les documents sur le clientélisme dans d'autres sociétés se trouvent sous Clientélisme"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Droit romain"}], "related": [{"authorized_access_point": "Affranchis (droit romain)"}, {"authorized_access_point": "Clientélisme"}, {"authorized_access_point": "Patriciens (Rome)"}, {"authorized_access_point": "Plèbe (Rome)"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh90003161", "source": "LCSH"}], "authorized_access_point": "Patron and client (Roman law)"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85098771", "source": "LCSH"}], "authorized_access_point": "Patron and client"}, {"source": "RVMLaval", "authorized_access_point": "Patron et client"}], "identifier": "http://www.idref.fr/027528820", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027528820", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11954979m", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11954979", "source": "BNF"}], "classification": [{"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}, {"name": "Droit", "type": "bf:ClassificationDdc", "classificationPortion": "340"}, {"name": "Archéologie. Histoire ancienne", "type": "bf:ClassificationDdc", "classificationPortion": "930"}], "variant_access_point": ["Client et patron", "Clientèle romaine", "Clientélisme - Rome", "Clients et patrons", "Patrocinium", "Patron et client - Droit", "Patron et client (droit romain)", "Patronage (Rome)", "Patronage romain", "Patronat (Rome)", "Patrons (Rome)", "Patrons et clients"], "authorized_access_point": "Patron et client"} 1 +2024-09-10 15:43:01.173872 2024-09-10 15:43:01.173881 a4700c29-52a8-4af1-8a0f-553049971b03 {"md5": "d1b4b953a273bba0963e987dc43a8b76", "pid": "027532488", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Psychologie religieuse"}], "related": [{"authorized_access_point": "Mystique"}, {"authorized_access_point": "Psychologie de la prière"}, {"authorized_access_point": "Psychologie de la foi"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2008108167", "source": "LCSH"}], "authorized_access_point": "Mysticism -- Psychology"}], "identifier": "http://www.idref.fr/027532488", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027532488", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11955279x", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11955279", "source": "BNF"}], "classification": [{"name": "Psychologie, psychanalyse", "type": "bf:ClassificationDdc", "classificationPortion": "150"}, {"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}], "variant_access_point": ["Mystique - Aspect psychologique", "Mystiques - Psychologie"], "authorized_access_point": "Mystique - Psychologie"} 1 +2024-09-10 15:43:01.26501 2024-09-10 15:43:01.265019 fa178b4c-c0c4-4773-83f1-04d4c587bc1b {"md5": "7c7cffca464487019a86306710f29644", "pid": "027545822", "note": [{"label": ["Wikipédia : crise des otages américains en Iran - https://fr.wikipedia.org (2017-06-09)", "Encycl. universalis (art. : États-Unis d'Amérique) : crise des otages de l'ambassade de Téhéran ; (art. : Iran - Histoire et politique) : occupation de l'ambassade des États-Unis à Téhéran - http://www.universalis-edu.com (2017-06-09)", "Grand Larousse universel", "Robert encyclopédique des noms propres 2008", "Otages : les négociations secrètes de Téhéran / P. Salinger, 1981", "Les otages américains à Téhéran / N. Yavari-d'Hellencourt, 1992"], "noteType": "dataSource"}, {"label": ["4 novembre 1979 : occupation de l'ambassade des États-Unis à Téhéran par des étudiants islamiques qui retiennent en otage 52 Américains et réclament l'extradition du shah. 24-25 avril 1980 : échec de l'opération Eagle Claw. 27 juillet : mort du shah au Caire. 20 janvier 1981 : libération des otages à Alger"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Relations extérieures - Iran - 1979-1997"}, {"authorized_access_point": "Relations extérieures - États-Unis - 1977-1981"}, {"authorized_access_point": "Politique et gouvernement - Iran - 1979-...."}, {"authorized_access_point": "Otages - Iran"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85067917", "source": "LCSH"}], "authorized_access_point": "Iran Hostage Crisis, 1979-1981"}, {"source": "RVMLaval", "authorized_access_point": "Affaire des otages américains en Iran, 1979-1981"}], "identifier": "http://www.idref.fr/027545822", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027545822", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11956325h", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11956325", "source": "BNF"}], "classification": [{"name": "Histoire du reste du monde", "type": "bf:ClassificationDdc", "classificationPortion": "950"}], "variant_access_point": ["Affaire des otages américains en Iran (1979-1981)", "Ambassade des États-Unis à Téhéran, Prise d'otages de l' (1979-1981)", "Crise des otages américains en Iran (1979-1981)", "Occupation de l'ambassade américaine à Téhéran (1979-1981)", "Otages américains en Iran, Affaire des (1979-1981)", "Prise d'otages de Téhéran (1979-1981)", "Téhéran, Prise d'otages de (1979-1981)"], "authorized_access_point": "Prise d'otages de l'ambassade des États-Unis à Téhéran (1979-1981)"} 1 +2024-09-10 15:43:01.374556 2024-09-10 15:43:01.374571 e8674aec-c875-4b30-9550-7e621866e1d8 {"md5": "251cadda30dc9abcae1ac3d11f525b34", "pid": "027564878", "note": [{"label": ["Les notions philosophiques / S. Auroux, 1990", "Vocabulaire technique et critique de la philosophie / A. Lalande, 1997", "Encycl. de la philosophie, 2002", "Grand dict. de la philosophie / M. Blay, 2003", "Dict. de philosophie / C. Godin, 2004"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Philosophie de l'action"}, {"authorized_access_point": "Philosophie de l'homme"}], "related": [{"authorized_access_point": "Roue de Fortune (allégorie)"}, {"authorized_access_point": "Aî̓sa (le mot grec)"}, {"authorized_access_point": "Contingence"}, {"authorized_access_point": "Déterminisme (philosophie)"}, {"authorized_access_point": "Éternel retour"}, {"authorized_access_point": "Hasard"}, {"authorized_access_point": "Libre arbitre"}, {"authorized_access_point": "Moîra (le mot grec)"}, {"authorized_access_point": "Nécessité"}, {"authorized_access_point": "Prédestination"}, {"authorized_access_point": "Tragique (philosophie)"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85047439", "source": "LCSH"}], "authorized_access_point": "Fate and fatalism"}, {"source": "RVMLaval", "authorized_access_point": "Destin et fatalisme"}], "identifier": "http://www.idref.fr/027564878", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027564878", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11957809w", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11957809", "source": "BNF"}], "classification": [{"name": "Philosophie", "type": "bf:ClassificationDdc", "classificationPortion": "100"}], "variant_access_point": ["Destinée", "Fatalisme", "Fatalité", "Fatum", "Sort"], "authorized_access_point": "Destin et fatalisme"} 1 +2024-09-10 15:43:01.471803 2024-09-10 15:43:01.471812 be711c8e-72be-466b-9b4f-8d3525044707 {"md5": "8e764f4cb53a08af16ef860cc5a3abaa", "pid": "027578747", "note": [{"label": ["Prescription médicamenteuse : les attentes des patients [in] Revue médicale suisse, 2000, 4, 2296", "Prescription médicamenteuse : un acte sous influences / P. Gallois, J.-P. Vallée, Y. Le Noc [in] Médecine, 2007, 3, 10"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Prescription médicale"}, {"authorized_access_point": "Ordonnances médicales"}], "related": [{"authorized_access_point": "Déprescription médicamenteuse"}, {"authorized_access_point": "Bilan partagé de médication"}, {"authorized_access_point": "Chimiothérapie"}, {"authorized_access_point": "Erreurs médicamenteuses"}, {"authorized_access_point": "Médicaments - Modes d'administration"}, {"authorized_access_point": "Médicaments - Usage"}, {"authorized_access_point": "Recommandations sur le bon usage des médicaments"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Auto-prescription médicamenteuse"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85039743", "source": "LCSH"}], "authorized_access_point": "Drugs--Prescribing"}, {"source": "RVMLaval", "authorized_access_point": "Médicaments--Prescription"}], "identifier": "http://www.idref.fr/027578747", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027578747", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119588768", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11958876", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "615"}], "variant_access_point": ["Médicaments - Prescription", "Médicaments - Prescription médicale", "Prescription des médicaments", "Prescription pharmaceutique"], "authorized_access_point": "Prescription médicamenteuse"} 1 +2024-09-10 15:43:01.567518 2024-09-10 15:43:01.567529 8d0f3058-37a7-45f3-9652-505fb9182df9 {"md5": "9821889802b6eb924a77e8f59952434e", "pid": "02758254X", "note": [{"label": ["Grand Larousse universel", "Les Indiens d'Amérique du Nord / G. Turner, 1985", "Ethnologie régionale / J. Poirier, 1972-1978", "Dict. des peuples / J.-C. Tamisier, 1998", "Atlas des peuples d'Amérique / A. Sellier, 2006", "The Indian tribes of North America / J. R. Swanton, 1969", "American Indian tribes / Salem Press, 1985", "Atlas of the North American Indian / C. Waldman, 1985", "Encycl. of world cultures / D. Levinson, 1991-1996"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les documents sur les Iroquois proprement dits. Les documents sur l'ensemble des peuples formant la famille linguistique iroquoise se trouvent sous Iroquoiens", "L'adjectif ethnique correspondant est \\"iroquois\\". Il s'accorde en genre et en nombre"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Iroquoiens"}], "related": [{"authorized_access_point": "Art iroquois"}, {"authorized_access_point": "Légendes iroquoises"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Iroquoises"}, {"authorized_access_point": "Mohawk (Indiens)"}, {"authorized_access_point": "Oneida (Indiens)"}, {"authorized_access_point": "Onondaga (Indiens)"}, {"authorized_access_point": "Seneca (Indiens)"}, {"authorized_access_point": "Tuscarora (Indiens)"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Iroquois (Indiens)"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85068260", "source": "LCSH"}], "authorized_access_point": "Iroquois Indians"}], "identifier": "http://www.idref.fr/02758254X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02758254X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13318833d", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13318833", "source": "BNF"}], "classification": [{"name": "Ethnologie, anthropologie, folklore", "type": "bf:ClassificationDdc", "classificationPortion": "390"}], "variant_access_point": ["Agoneaseah (Indiens)", "Canton (Indiens)", "Massawomeke (Indiens)", "Mengwe (Indiens)", "Ongwanonhsioni (Indiens)", "Ongwehonweh (Indiens)", "Six Nations (Indiens)", "Cinq Nations (Indiens)", "Five Nations (Indiens)", "Haudenosaunee (Indiens)", "Hodé-no-sau-nee (Indiens)", "Hodenosaunee (Indiens)", "Iroquois", "Ligue des Cinq Nations (Indiens)", "Ligue des Six Nations (Indiens)"], "authorized_access_point": "Iroquois (Indiens)"} 1 +2024-09-10 15:43:01.680422 2024-09-10 15:43:01.680433 5d4a94b4-b479-4771-abc9-d8b7d7bfb257 {"md5": "b0403c022221a2d622a589c8d5c33db9", "pid": "027613275", "note": [{"label": ["Trésor de la langue française", "Nouveau petit Robert 1993"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Compétitions équestres"}, {"authorized_access_point": "Spectacles et divertissements"}], "related": [{"authorized_access_point": "Cow-boys"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85114811", "source": "LCSH"}], "authorized_access_point": "Rodeos"}, {"source": "RVMLaval", "authorized_access_point": "Rodéos"}], "identifier": "http://www.idref.fr/027613275", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027613275", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11961559c", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11961559", "source": "BNF"}], "classification": [{"name": "Arts du spectacle", "type": "bf:ClassificationDdc", "classificationPortion": "790"}, {"name": "Sports", "type": "bf:ClassificationDdc", "classificationPortion": "793"}], "authorized_access_point": "Rodéos"} 1 +2024-09-10 15:43:01.764528 2024-09-10 15:43:01.764536 93bd3b49-af1a-4c9a-b0cb-300900766688 {"md5": "efc59ff2c52ccc2086d56275a1a2df5b", "pid": "027616908", "note": [{"label": ["Dict. de l'éducation / A. van Zanten, 2008", "Thésaurus européen de l'éducation - http://eacea.ec.europa.eu/education (2009-11-30)", "Intégration scolaire des enfants immigrants en Europe : dispositif en faveur de la communication avec les familles immigrantes et de l'enseignement de la langue d'origine des enfants immigrants / communautés européennes, 2009 - http://www.eacea.ec.europa.eu (2009-11-30)"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les documents sur les systèmes scolaires qui permettent d'accueillir dans le cycle éducatif courant les enfants à besoins éducatifs particuliers ou spéciaux (accompagnés en outre de soins médicaux). Les documents sur l'aspect psychologique de l'intégration scolaire se trouvent sous Adaptation scolaire"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Éducation spéciale"}, {"authorized_access_point": "Pédagogie sociale"}], "related": [{"authorized_access_point": "Adaptation scolaire"}, {"authorized_access_point": "Ateliers relais"}, {"authorized_access_point": "Classes relais"}, {"authorized_access_point": "Conception universelle de l'apprentissage"}, {"authorized_access_point": "Discrimination en éducation"}, {"authorized_access_point": "Enfants appartenant à des minorités"}, {"authorized_access_point": "Enfants difficiles - Éducation"}, {"authorized_access_point": "Enfants handicapés - Éducation"}, {"authorized_access_point": "Enfants inadaptés - Éducation"}, {"authorized_access_point": "Enfants surdoués"}, {"authorized_access_point": "Enseignements généraux et professionnels adaptés"}, {"authorized_access_point": "Objectifs d'intégration (éducation)"}, {"authorized_access_point": "Ségrégation en éducation"}, {"authorized_access_point": "Sociologie de l'éducation"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Besoins éducatifs particuliers"}, {"authorized_access_point": "Certificat d'aptitude aux actions pédagogiques spécialisées de l'adaptation et de l'intégration scolaires"}, {"authorized_access_point": "Pédagogie culturellement adaptée"}, {"authorized_access_point": "Services d'éducation spécialisée et de soins à domicile"}, {"authorized_access_point": "Unités localisées pour l'inclusion scolaire"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85079929", "source": "LCSH"}], "authorized_access_point": "Mainstreaming in education"}, {"source": "RVMLaval", "authorized_access_point": "Intégration scolaire"}], "identifier": "http://www.idref.fr/027616908", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027616908", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11961876s", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11961876", "source": "BNF"}], "classification": [{"name": "Education et enseignement", "type": "bf:ClassificationDdc", "classificationPortion": "370"}], "variant_access_point": ["Adaptation et intégration scolaire", "AIS", "Déségrégation en éducation", "Éducation - Intégration", "Éducation inclusive", "Éducation intégrative", "Éducation intégratrice", "Inclusion en éducation", "Intégration en éducation"], "authorized_access_point": "Intégration scolaire"} 1 +2024-09-10 15:43:01.832931 2024-09-10 15:43:01.832938 23f30471-8912-43ba-8552-1c3ce1dd4369 {"md5": "1929d53ecce979fb852aa3aa85479b69", "pid": "027636461", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bibliographie - Méthodologie"}, {"authorized_access_point": "Bibliographie"}], "related": [{"authorized_access_point": "Notes (paratexte)"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Recherche documentaire"}], "identifier": "http://www.idref.fr/027636461", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027636461", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11963535v", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11963535", "source": "BNF"}], "variant_access_point": ["Citations bibliographiques", "Information bibliographique", "Informations bibliographiques", "Notices bibliographiques", "Renseignements bibliographiques"], "authorized_access_point": "Références bibliographiques"} 1 +2024-09-10 15:43:01.920991 2024-09-10 15:43:01.921003 b0a7b061-b1ae-42b8-ad1d-d28b6891c422 {"md5": "225c667e37d34c47d2ffb3054574c1a3", "pid": "027674118", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Télétel (service télématique)"}, {"authorized_access_point": "Terminaux à écran de visualisation"}], "related": [{"authorized_access_point": "Annuaires téléphoniques électroniques"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027674118", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027674118", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11966659v", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11966659", "source": "BNF"}], "authorized_access_point": "Minitel (terminal vidéotex)"} 1 +2024-09-10 15:43:02.012688 2024-09-10 15:43:02.012697 3cd97303-fa36-4b66-95a9-2701d2cb4b82 {"md5": "8eb4d16755c5f4e174884a910e179af9", "pid": "027674150", "note": [{"label": ["Voir aussi la subdivision Structure aux produits chimiques"], "noteType": "seeReference"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Molécules"}, {"authorized_access_point": "Structure chimique"}], "related": [{"authorized_access_point": "Structure"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "G-quadruplexes"}, {"authorized_access_point": "Aromaticité"}, {"authorized_access_point": "Méthodes ab initio (chimie quantique)"}, {"authorized_access_point": "Spectroscopie moléculaire"}, {"authorized_access_point": "Structure atomique"}, {"authorized_access_point": "Structure électronique"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Structure moléculaire"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85086594", "source": "LCSH"}], "authorized_access_point": "Molecular structure"}], "identifier": "http://www.idref.fr/027674150", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027674150", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11966661d", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11966661", "source": "BNF"}], "classification": [{"name": "Chimie, minéralogie, cristallographie", "type": "bf:ClassificationDdc", "classificationPortion": "540"}], "variant_access_point": ["Molécules - Structure"], "authorized_access_point": "Structure moléculaire"} 1 +2024-09-10 15:43:02.115783 2024-09-10 15:43:02.115792 75944242-9c90-4ba2-834d-b8ba86aba968 {"md5": "7e00252c0b17928191dc15c52e2d2f55", "pid": "027682226", "note": [{"label": ["Palestiniens -- Politique et gouvernement ; Laval RVM, 2001-07"], "noteType": "dataSource"}, {"label": ["Voir aussi aux noms des organisations palestiniennes, par ex. : Organisation de libération de la Palestine"], "noteType": "seeReference"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Palestiniens"}, {"authorized_access_point": "Conflit israélo-arabe"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Fedayin"}, {"authorized_access_point": "Intifada (1987-1993)"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2001009475", "source": "LCSH"}], "authorized_access_point": "Palestinian Arabs--Politics and government"}], "identifier": "http://www.idref.fr/027682226", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027682226", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119672904", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11967290", "source": "BNF"}], "classification": [{"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Histoire du reste du monde", "type": "bf:ClassificationDdc", "classificationPortion": "950"}], "variant_access_point": ["Mouvements de résistance palestiniens", "Palestiniens - Activité politique", "Question palestinienne (1948-....)", "Résistance palestinienne"], "authorized_access_point": "Palestiniens - Politique et gouvernement - 1948-...."} 1 +2024-09-10 15:43:02.202482 2024-09-10 15:43:02.202491 ac402421-03eb-4973-be78-122464df3541 {"md5": "637ca6496c255a684ac307db32ab6708", "pid": "027688836", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Appareils enregistreurs"}, {"authorized_access_point": "Dispositifs optoélectroniques"}, {"authorized_access_point": "Dispositifs photoélectroniques"}, {"authorized_access_point": "Gestion électronique de documents"}, {"authorized_access_point": "Ordinateurs - Équipement d'entrée-sortie"}, {"authorized_access_point": "Ordinateurs - Équipement optique"}, {"authorized_access_point": "Traitement optique de l'information"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Écrans radioluminescents à mémoire"}, {"authorized_access_point": "Écrans tactiles"}, {"authorized_access_point": "Tubes à rayons cathodiques"}, {"authorized_access_point": "Affichage par électroluminescence"}, {"authorized_access_point": "Casques de visualisation"}, {"authorized_access_point": "Affichage sur écran de télévision"}, {"authorized_access_point": "Écrans plats"}, {"authorized_access_point": "Amplificateurs de luminance"}, {"authorized_access_point": "Collimateurs de pilotage"}, {"authorized_access_point": "Dispositifs électrochromiques"}, {"authorized_access_point": "Imagerie quadridimensionnelle"}, {"authorized_access_point": "Imagerie tridimensionnelle"}, {"authorized_access_point": "Systèmes d'affichage à cristaux liquides"}, {"authorized_access_point": "Terminaux à écran de visualisation"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85066140", "source": "LCSH"}], "authorized_access_point": "Information display systems"}], "identifier": "http://www.idref.fr/027688836", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027688836", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11967772k", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11967772", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}, {"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "variant_access_point": ["Affichage (technique)", "Affichage, Systèmes d'", "Systèmes de visualisation de l'information", "Visualisation (informatique)", "Visualisation de l'information, Systèmes de", "Visuel (informatique)", "Afficheurs", "Dispositifs d'affichage", "Dispositifs de visualisation de l'information", "Données - Affichage", "Données - Systèmes de visualisation", "Données - Visualisation", "Information, Systèmes d'affichage de l'", "Information, Systèmes de visualisation de l'"], "authorized_access_point": "Systèmes d'affichage"} 1 +2024-09-10 15:43:02.294368 2024-09-10 15:43:02.294378 8f59a230-ed3f-4ad6-b687-891d35a93f80 {"md5": "3c0b8dc141dfe7371ec3c2edfbd74aeb", "pid": "027694852", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Apple (ordinateurs)"}], "related": [{"authorized_access_point": "PowerMac (ordinateur)"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "AppleTalk (système de réseau local)"}, {"authorized_access_point": "Macintosh Classic (ordinateur)"}, {"authorized_access_point": "Macintosh PowerBook (bloc-notes)"}], "identifier": "http://www.idref.fr/027694852", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027694852", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11968218n", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11968218", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Apple Macintosh (ordinateur)"], "authorized_access_point": "Macintosh (ordinateur)"} 1 +2024-09-10 15:43:02.40634 2024-09-10 15:43:02.406351 f4aeeeb3-885f-485d-a2cc-1a4398dbf3ad {"md5": "377bfdb521f278eabdfd8970a2f2fdab", "pid": "027710025", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Alimentations (électricité)"}, {"authorized_access_point": "Électronique de puissance"}, {"authorized_access_point": "Machines électriques"}], "related": [{"authorized_access_point": "Commutation (électricité)"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Redresseurs intégrés"}, {"authorized_access_point": "Convertisseurs multiniveaux"}, {"authorized_access_point": "Changeurs de fréquence"}, {"authorized_access_point": "Convertisseurs à thyristors"}, {"authorized_access_point": "Convertisseurs continu-continu"}, {"authorized_access_point": "Hacheurs (électricité)"}, {"authorized_access_point": "Klystrons"}, {"authorized_access_point": "Onduleurs (électricité)"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Convertisseurs électriques"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85041637", "source": "LCSH"}], "authorized_access_point": "Electric current converters"}], "identifier": "http://www.idref.fr/027710025", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027710025", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119694309", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11969430", "source": "BNF"}], "classification": [{"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "variant_access_point": ["Conversion de courant (électricité)", "Convertisseurs électroniques", "Courants électriques - Convertisseurs"], "authorized_access_point": "Convertisseurs électriques"} 1 +2024-09-10 15:43:02.504849 2024-09-10 15:43:02.504859 5a0e6d27-6ffe-42fa-b04a-cc1400658d0d {"md5": "69045143fea8c3008ab2ad5de0f72bac", "pid": "027727327", "note": [{"label": ["Grand Larousse universel", "Grand Robert de la langue française, 2001"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Communisme"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Maccarthysme"}, {"authorized_access_point": "Opération Zypresse (1944)"}, {"authorized_access_point": "Propagande anticommuniste"}], "identifier": "http://www.idref.fr/027727327", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027727327", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11970825v", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11970825", "source": "BNF"}], "classification": [{"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}], "variant_access_point": ["Anti-communisme", "Communisme - Mouvements d'opposition", "Mouvements anti-communistes", "Mouvements anticommunistes", "Opposition au communisme", "Résistance contre le communisme"], "authorized_access_point": "Anticommunisme"} 1 +2024-09-10 15:43:02.608414 2024-09-10 15:43:02.608425 bdc9a5b6-3fc9-441d-839d-ba2c870d25e5 {"md5": "84cb39f5c65bef4c00882f71fb8673c4", "pid": "027727521", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Noirs américains"}, {"authorized_access_point": "Noirs américains - Droits"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Leadership noir américain"}, {"authorized_access_point": "Nationalisme noir - États-Unis"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh95010593", "source": "LCSH"}], "authorized_access_point": "African Americans--Politics and government"}, {"source": "RVMLaval", "authorized_access_point": "Noirs américains -- Politique et gouvernement"}], "identifier": "http://www.idref.fr/027727521", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027727521", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119708413", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11970841", "source": "BNF"}], "classification": [{"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Ethnologie", "type": "bf:ClassificationDdc", "classificationPortion": "390"}], "variant_access_point": ["Noirs américains - Activité politique"], "authorized_access_point": "Noirs américains - Politique et gouvernement"} 1 +2024-09-10 15:43:02.719504 2024-09-10 15:43:02.719516 00d117e2-6044-4528-81fb-fa3d64c2e5a4 {"md5": "cbaf5757cb803c80d4967d59a2fb839e", "pid": "027729044", "note": [{"label": ["Mourre", "GLU"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Consuls (Rome)"}, {"authorized_access_point": "Magistrats (Rome)"}, {"authorized_access_point": "Provinces romaines"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85107160", "source": "LCSH"}], "authorized_access_point": "Proconsuls, Roman"}], "identifier": "http://www.idref.fr/027729044", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027729044", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119709792", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11970979", "source": "BNF"}], "variant_access_point": ["Proconsulat (Rome)", "Proconsuls romains"], "authorized_access_point": "Proconsuls (Rome)"} 1 +2024-09-10 15:43:02.812692 2024-09-10 15:43:02.812698 47a04618-d488-4b78-9985-a61cd9375d37 {"md5": "f287fdab0d04f62c0d21587979957327", "pid": "027735893", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Commutation de paquets"}, {"authorized_access_point": "Télécommunications - France"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027735893", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027735893", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11971521w", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11971521", "source": "BNF"}], "variant_access_point": ["Réseau Transpac"], "authorized_access_point": "Transpac (réseau de transmission de données)"} 1 +2024-09-10 15:43:02.880833 2024-09-10 15:43:02.880841 5dd71598-f39a-4bd7-ae7b-f710078610ca {"md5": "3e8221fd99fb924658056ba447e9e318", "pid": "027756580", "note": [{"label": ["Grand Larousse universel", "Encycl. universalis (art. : Sunnisme) - http://www.universalis-edu.com (2016-01-11)", "Wīkībīdyā al-mawsūʿaẗ al-ḥurraẗ - http://ar.wikipedia.org (2018-10-29)", "Al-munǧid fī al-luġaẗ wa al-aʿlām / Dār al-Mašriq, 2005", "Dict. historique de l'islam / J. et D. Sourdel, 2004", "Dict. encyclopédique de l'islam / C. Glassé, 1991 : sunnah", "BnF Service arabe, 2018-10-29"], "noteType": "dataSource"}, {"label": ["Paroles et actes du Prophète donnés en exemple, comprenant ce qu'il a approuvé, autorisé ou absous, tels qu'ils sont fixés dans les Hadith, et qui constituent la coutume et fondent les usages dans l'islam sunnite"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Islam"}], "related": [{"authorized_access_point": "Sunnisme"}, {"authorized_access_point": "Littérature islamique"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027756580", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027756580", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11973106c", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11973106", "source": "BNF"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}], "variant_access_point": ["Sunnaẗ", "سنّة", "Sunnah", "Al- sunnaẗ", "السنّة", "Tradition (islam)"], "authorized_access_point": "Sunna"} 1 +2024-09-10 15:43:02.991546 2024-09-10 15:43:02.99155 52ddaf9c-4da3-4a75-a158-21a051d2565d {"md5": "c1074c17e0845876a770a30761c44e2c", "pid": "027756653", "note": [{"label": ["Grand Robert de la langue française, 2001", "Dicobat 10 : dict. général du bâtiment / J. de Vigan, 2011"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Construction - Matériaux"}, {"authorized_access_point": "Couverture (construction)"}], "related": [{"authorized_access_point": "Construction en tuiles"}, {"authorized_access_point": "Toits en tuiles"}, {"authorized_access_point": "Tuileries"}, {"authorized_access_point": "Tuiles - Industrie et commerce"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Tuiles à emboîtement"}, {"authorized_access_point": "Tuiles antiques"}, {"authorized_access_point": "Tuiles en béton"}, {"authorized_access_point": "Tuiles médiévales"}, {"authorized_access_point": "Tuiles photovoltaïques"}, {"authorized_access_point": "Tuiles vernissées"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85135357", "source": "LCSH"}], "authorized_access_point": "Tiles, Roofing"}, {"source": "RVMLaval", "authorized_access_point": "Tuiles"}], "identifier": "http://www.idref.fr/027756653", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027756653", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119731129", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11973112", "source": "BNF"}], "classification": [{"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}, {"name": "Bâtiment", "type": "bf:ClassificationDdc", "classificationPortion": "690"}], "variant_access_point": ["Couverture en tuiles"], "authorized_access_point": "Tuiles"} 1 +2024-09-10 15:43:03.119048 2024-09-10 15:43:03.119056 92cb09dc-78d7-4e4a-8e82-d6e8106bb29f {"md5": "f8ae440fff49fb8f802418f52ae3e193", "pid": "027759547", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Identification automatique"}, {"authorized_access_point": "Microprocesseurs"}, {"authorized_access_point": "Monnaie électronique"}, {"authorized_access_point": "Ordinateurs - Mémoires"}, {"authorized_access_point": "Systèmes de sécurité"}], "related": [{"authorized_access_point": "Cartes de crédit"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Cartes professionnelles de santé"}, {"authorized_access_point": "Cartes de téléphone"}, {"authorized_access_point": "Cartes de santé"}, {"authorized_access_point": "Porte-monnaie électronique"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Cartes à mémoire"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85123621", "source": "LCSH"}], "authorized_access_point": "Smart cards"}], "identifier": "http://www.idref.fr/027759547", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027759547", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119733403", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11973340", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}, {"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "variant_access_point": ["Billettique", "Cartes à circuit intégré", "Cartes à microcircuit", "Cartes à microprocesseur", "Cartes à pistes magnétiques", "Cartes à puce", "Cartes électroniques", "Cartes informatiques", "Cartes intelligentes", "Cartes magnétiques"], "authorized_access_point": "Cartes à mémoire"} 1 +2024-09-10 15:43:03.211264 2024-09-10 15:43:03.211274 adde1375-d004-4fa1-8305-80ad3513f784 {"md5": "a89e9146b8961ac8f131fdb2567e835d", "pid": "027789551", "note": [{"label": ["Encycl. autodidactique Quillet, 1998", "Wikipédia : entreprise de service du numérique - http://fr.wikipedia.org (2017-05-31)", "Encycl. de l'informatique et des systèmes d'information, 2006", "Le guide des SSII / P. Caillerez, 2013", "Dico du net : SSII - Société de Services en Ingéniérie Informatique - http://www.dicodunet.com (2017-05-31)", "Les services numériques / DGE, Direction générale des entreprises : entreprises de services numériques (ESN, nouveau nom des SSII) - http://www.entreprises.gouv.fr/services/services-numeriques (2017-05-31)"], "noteType": "dataSource"}, {"label": ["Sociétés de conseil spécialisées en génie informatique. L'appellation \\"entreprise de services du numérique\\" (ESN), décidée par le Syntec Numérique en 2013, reste très peu usitée face à société de services en ingéniérie informatique (SSII)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Informatique - Industrie et commerce"}, {"authorized_access_point": "Sociétés de conseil"}], "related": [{"authorized_access_point": "Centres de traitement informatique"}, {"authorized_access_point": "Infogérance"}, {"authorized_access_point": "Informaticiens-conseils"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Sociétés de services en logiciels libres"}], "identifier": "http://www.idref.fr/027789551", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027789551", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11975653r", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11975653", "source": "BNF"}], "classification": [{"name": "Economie", "type": "bf:ClassificationDdc", "classificationPortion": "330"}, {"type": "bf:ClassificationDdc", "classificationPortion": "621"}, {"name": "Gestion et organisation de l'entreprise", "type": "bf:ClassificationDdc", "classificationPortion": "650"}], "variant_access_point": ["Entreprises de services du numérique", "Entreprises de services numériques", "SS2I", "SSCI", "SSII", "ESN", "Informatique - Sociétés de services et de conseil", "Ingénierie informatique, Sociétés de services en", "Numérique, Entreprises de services du", "Services informatiques, Sociétés de", "Sociétés d'ingénierie informatique", "Sociétés de services et d'ingéniérie informatique", "Sociétés de services et de conseil en informatique"], "authorized_access_point": "Sociétés de services en ingénierie informatique"} 1 +2024-09-10 15:43:03.321499 2024-09-10 15:43:03.321509 20b6cd71-a339-4d2c-9b98-a5ad80c0122c {"md5": "4deda489b970384fbee7aa8d03412872", "pid": "027793575", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Logiciels"}], "related": [{"authorized_access_point": "Grapheurs"}, {"authorized_access_point": "Solveurs (logiciels)"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Tableurs"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85042371", "source": "LCSH"}], "authorized_access_point": "Electronic spreadsheets"}], "identifier": "http://www.idref.fr/027793575", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027793575", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119759647", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11975964", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Chiffriers électroniques", "Feuilles de calcul électroniques"], "authorized_access_point": "Tableurs"} 1 +2024-09-10 15:43:03.413875 2024-09-10 15:43:03.413888 9536ba06-760f-407a-8a62-a7a91c17a21f {"md5": "a0482653dcd1ff52674061b7b3925f15", "pid": "027808394", "note": [{"label": ["Encycl. universalis (art. : Mauroy, Pierre) : droits des salariés dans l'entreprise ; (art. : Services, Économie de) : droits du personnel - http://www.universalis-edu.com (2016-05-13)", "Les droits des travailleurs / J. Auroux, 1982", "Droits des salariés : salariés du privé, guide juridique de la CFDT / T. Ouazan, 2015"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Droit du travail"}, {"authorized_access_point": "Droits économiques et sociaux"}], "related": [{"authorized_access_point": "Personnel"}, {"authorized_access_point": "Religion en milieu de travail"}, {"authorized_access_point": "Règlement intérieur"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Bases de données économiques et sociales (relations industrielles)"}, {"authorized_access_point": "Communication en direction du personnel"}, {"authorized_access_point": "Droit de grève"}, {"authorized_access_point": "Expression des salariés"}, {"authorized_access_point": "Représentation du personnel"}], "identifier": "http://www.idref.fr/027808394", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027808394", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11977077k", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11977077", "source": "BNF"}], "classification": [{"name": "Droit", "type": "bf:ClassificationDdc", "classificationPortion": "340"}], "variant_access_point": ["Droits des salariés dans l'entreprise", "Droits des travailleurs dans l'entreprise", "Droits du personnel dans l'entreprise", "Entreprises - Droits du personnel", "Travailleurs - Droits"], "authorized_access_point": "Personnel - Droits"} 1 +2024-09-10 15:43:03.525317 2024-09-10 15:43:03.525328 ebf89218-077d-47a5-a301-1e77dfff3145 {"md5": "6fb844c6179290343a59d3dce53e3717", "pid": "027808629", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Recteurs d'académie"}, {"authorized_access_point": "Enseignement supérieur - Réforme"}, {"authorized_access_point": "Autonomie universitaire"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Étudiants - Participation à la gestion de l'administration"}, {"authorized_access_point": "Coopération universitaire"}, {"authorized_access_point": "Présidents et recteurs d'université"}, {"authorized_access_point": "Enseignants - Participation à la gestion de l'administration"}, {"authorized_access_point": "Doyens (enseignement supérieur)"}, {"authorized_access_point": "Bibliothécaires d'université - Rang de professeur"}], "identifier": "http://www.idref.fr/027808629", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027808629", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11977092g", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11977092", "source": "BNF"}], "variant_access_point": ["Administration universitaire"], "authorized_access_point": "Universités - Administration"} 1 +2024-09-10 15:43:03.631302 2024-09-10 15:43:03.631313 904f47a3-1a2e-40e8-8d5a-10d4e3e3e239 {"md5": "53e7c31b484a048033d5ecd6cdc0a3dc", "pid": "027826171", "note": [{"label": ["Grand Larousse universel : zaydisme ; zaydite ; Zaydiyya", "Encycl. universalis : zaydiyya - http://www.universalis-edu.com (2018-05-15)", "Al-munǧid fī al-luġaẗ wa al-aʿlām / Dār al-Mašriq, 2005", "Dict. des religions / P. Poupard, 1985", "Dict. encyclopédique de l'islam / C. Glassé, 1991 : zaydītes", "Dict. historique de l'islam / J. et D. Sourdel, 1996 : zaydisme", "BnF Service arabe, 2018-06-22"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Chiites"}, {"authorized_access_point": "Sectes islamiques"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85149552", "source": "LCSH"}], "authorized_access_point": "Zaydīs"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh 91000306", "source": "LCSH"}], "authorized_access_point": "Zaydīyah"}, {"source": "RVMLaval", "authorized_access_point": "Zaydites"}, {"source": "RVMLaval", "authorized_access_point": "Zaydisme"}], "identifier": "http://www.idref.fr/027826171", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027826171", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11978443m", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11978443", "source": "BNF"}], "classification": [{"name": "Religion", "type": "bf:ClassificationDdc", "classificationPortion": "200"}, {"name": "Groupes sociaux", "type": "bf:ClassificationDdc", "classificationPortion": "305"}], "variant_access_point": ["Zaydiyyaẗ", "زيديّة", "Zaydiyya", "Zaydiyyah", "Al- zaydiyyaẗ", "الزيديّة", "Zaidisme", "Zaidites", "Zaydisme"], "authorized_access_point": "Zaydites"} 1 +2024-09-10 15:43:03.75115 2024-09-10 15:43:03.75116 16b861cb-4304-44bc-bb01-cfb384ace8a6 {"md5": "00dbf3bdd341a29aa780eeee6fc813ee", "pid": "027845214", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Ai̓dṓs (le mot grec)"}, {"authorized_access_point": "Ai̓ṓn (le mot grec)"}, {"authorized_access_point": "Aî̓sa (le mot grec)"}, {"authorized_access_point": "Au̓tós (le mot grec)"}, {"authorized_access_point": "Cháris (le mot grec)"}, {"authorized_access_point": "Charopós (le mot grec)"}, {"authorized_access_point": "Chṓra (le mot grec)"}, {"authorized_access_point": "Chreía (le mot grec)"}, {"authorized_access_point": "Daímōn (le mot grec)"}, {"authorized_access_point": "Diakonía (le mot grec)"}, {"authorized_access_point": "Didáskalos (le mot grec)"}, {"authorized_access_point": "Dî̄mos (le mot grec)"}, {"authorized_access_point": "Doûlos (le mot grec)"}, {"authorized_access_point": "Drósos (le mot grec)"}, {"authorized_access_point": "Dýnamis (le mot grec)"}, {"authorized_access_point": "Ei̓kṓn (le mot grec)"}, {"authorized_access_point": "Ei̓kós (le mot grec)"}, {"authorized_access_point": "Eu̓́chesthai (le mot grec)"}, {"authorized_access_point": "Fantasía (le mot grec)"}, {"authorized_access_point": "Fármakon (le mot grec)"}, {"authorized_access_point": "Filía (le mot grec)"}, {"authorized_access_point": "Filólogos (le mot grec)"}, {"authorized_access_point": "Fílos (le mot grec)"}, {"authorized_access_point": "Filosofía (le mot grec)"}, {"authorized_access_point": "Flýax (le mot grec)"}, {"authorized_access_point": "Fōnī ́ (le mot grec)"}, {"authorized_access_point": "Frī́n (le mot grec)"}, {"authorized_access_point": "Fthónos (le mot grec)"}, {"authorized_access_point": "Fýsis (le mot grec)"}, {"authorized_access_point": "Glaukós (le mot grec)"}, {"authorized_access_point": "Gnōstikós (le mot grec)"}, {"authorized_access_point": "Hekṓn (le mot grec)"}, {"authorized_access_point": "Hósios (le mot grec)"}, {"authorized_access_point": "Hypokeímenon (le mot grec)"}, {"authorized_access_point": "Kardía (le mot grec)"}, {"authorized_access_point": "Kérdos (le mot grec)"}, {"authorized_access_point": "Koinōnía (le mot grec)"}, {"authorized_access_point": "Krâsis (le mot grec)"}, {"authorized_access_point": "Krátos (le mot grec)"}, {"authorized_access_point": "Krī́nī (le mot grec)"}, {"authorized_access_point": "Ktízō (le mot grec)"}, {"authorized_access_point": "Laoí (le mot grec)"}, {"authorized_access_point": "Leitourgía (le mot grec)"}, {"authorized_access_point": "Līḯs (le mot grec)"}, {"authorized_access_point": "Martyría (le mot grec)"}, {"authorized_access_point": "Mathītī́s (le mot grec)"}, {"authorized_access_point": "Méllein (le mot grec)"}, {"authorized_access_point": "Mî̄nis (le mot grec)"}, {"authorized_access_point": "Mîxis (le mot grec)"}, {"authorized_access_point": "Moîra (le mot grec)"}, {"authorized_access_point": "Mystī́rion (le mot grec)"}, {"authorized_access_point": "Mŷthos (le mot grec)"}, {"authorized_access_point": "Nī́pios (le mot grec)"}, {"authorized_access_point": "Nómos (le mot grec)"}, {"authorized_access_point": "Noûs (le mot grec)"}, {"authorized_access_point": "Oi̓kô̄ (le mot grec)"}, {"authorized_access_point": "Oi̓kodomeîn (le mot grec)"}, {"authorized_access_point": "Oi̓kodomī́ (le mot grec)"}, {"authorized_access_point": "Oi̓konomía (le mot grec)"}, {"authorized_access_point": "Paideía (le mot grec)"}, {"authorized_access_point": "Paráklit̄os (le mot grec)"}, {"authorized_access_point": "Pároikos (le mot grec)"}, {"authorized_access_point": "Parrīsía (le mot grec)"}, {"authorized_access_point": "Pâs (le mot grec)"}, {"authorized_access_point": "Páthos (le mot grec)"}, {"authorized_access_point": "Periīgītī́s (le mot grec)"}, {"authorized_access_point": "Peripatô̄ (le mot grec)"}, {"authorized_access_point": "Perisseía (le mot grec)"}, {"authorized_access_point": "Perisseúein (le mot grec)"}, {"authorized_access_point": "Pístis (le mot grec)"}, {"authorized_access_point": "Poíīsis (le mot grec)"}, {"authorized_access_point": "Pólis (le mot grec)"}, {"authorized_access_point": "Politeía (le mot grec)"}, {"authorized_access_point": "Pónos (le mot grec)"}, {"authorized_access_point": "Proaíresis (le mot grec)"}, {"authorized_access_point": "Prókrisis (le mot grec)"}, {"authorized_access_point": "Prosérchomai (le mot grec)"}, {"authorized_access_point": "Psychī́ (le mot grec)"}, {"authorized_access_point": "Skopós (le mot grec)"}, {"authorized_access_point": "Sōfrosýnī (le mot grec)"}, {"authorized_access_point": "Sōtī́r (le mot grec)"}, {"authorized_access_point": "Stoicheîon (le mot grec)"}, {"authorized_access_point": "Syggéneia (le mot grec)"}, {"authorized_access_point": "Syggnṓmī (le mot grec)"}, {"authorized_access_point": "Sykofántīs (le mot grec)"}, {"authorized_access_point": "Sýmvolon (le mot grec)"}, {"authorized_access_point": "Syneídīsis (le mot grec)"}, {"authorized_access_point": "Sýnthīma (le mot grec)"}, {"authorized_access_point": "Téchnī (le mot grec)"}, {"authorized_access_point": "Téleios (le mot grec)"}, {"authorized_access_point": "Telô̄ (le mot grec)"}, {"authorized_access_point": "Télos (le mot grec)"}, {"authorized_access_point": "Theōría (le mot grec)"}, {"authorized_access_point": "Theosofía (le mot grec)"}, {"authorized_access_point": "Thrónos (le mot grec)"}, {"authorized_access_point": "Thymós (le mot grec)"}, {"authorized_access_point": "Tīreîn (le mot grec)"}, {"authorized_access_point": "Tís (le mot grec)"}, {"authorized_access_point": "Tlî̄nai (le mot grec)"}, {"authorized_access_point": "Tragélafos (le mot grec)"}, {"authorized_access_point": "Vánausos (le mot grec)"}, {"authorized_access_point": "Vî̄ma (le mot grec)"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85057154", "source": "LCSH"}], "authorized_access_point": "Greek language--Etymology"}, {"source": "RVMLaval", "authorized_access_point": "Grec (Langue)--Étymologie"}], "identifier": "http://www.idref.fr/027845214", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027845214", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb133191671", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13319167", "source": "BNF"}], "classification": [{"name": "Langues et linguistique", "type": "bf:ClassificationDdc", "classificationPortion": "400"}], "authorized_access_point": "Grec (langue) - Vocabulaire"} 1 +2024-09-10 15:43:03.846001 2024-09-10 15:43:03.846004 7d082d0c-4d60-4484-81f0-eab4f698ec3d {"md5": "1a57daa96902df5f3e9f834887250c2d", "pid": "02785082X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mathématiques"}, {"authorized_access_point": "Sciences - Notation"}], "related": [{"authorized_access_point": "Mathématiques - Formules"}, {"authorized_access_point": "Symboles mathématiques (industries graphiques)"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Chiffres"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Mathématiques -- Notation"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85082126", "source": "LCSH"}], "authorized_access_point": "Mathematical notation"}], "identifier": "http://www.idref.fr/02785082X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02785082X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11980395v", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11980395", "source": "BNF"}], "classification": [{"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}, {"name": "Mathématiques", "type": "bf:ClassificationDdc", "classificationPortion": "510"}], "variant_access_point": ["Écriture mathématique", "Mathématiques - Symboles", "Notation mathématique", "Symboles mathématiques"], "authorized_access_point": "Mathématiques - Notation"} 1 +2024-09-10 15:43:03.912078 2024-09-10 15:43:03.912087 1de0c870-0b00-4fb9-aa26-ab79e3ba0a1a {"md5": "555980764e0d878a01dfcbf65e9dd9b4", "pid": "027856097", "note": [{"label": ["Encycl. universalis - http://www.universalis-edu.com (2018-01-15)", "Les mots du christianisme / D. Le Tourneau, 2005 : adamite ; picard", "Petit lexique des hérésies chrétiennes / M. Théron, 2014 : adamites ; picards", "Hist. des religions. II / H.-C. Puech, 1972 (p. 1264) : adamites ; picards", "Historical dict. of radical christianity / W. H. Brackney, 2012 : Adamite ; Pikarti", "The Oxford handbook of millennialism / C. Wessinger, 2016 : Pikarts (Pikarti) or Bohemian Adamites"], "noteType": "dataSource"}, {"label": ["Hérétiques chrétiens suivant un Picard se disant le nouvel Adam, établi en Bohême, au 15e s. Ne pas confondre avec la secte gnostique des premiers siècles du même nom"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Hérétiques chrétiens"}, {"authorized_access_point": "Sectes chrétiennes médiévales"}], "related": [{"authorized_access_point": "Taborites"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85000787", "source": "LCSH"}], "authorized_access_point": "Adamites"}], "identifier": "http://www.idref.fr/027856097", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027856097", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119808310", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11980831", "source": "BNF"}], "classification": [{"name": "Religion", "type": "bf:ClassificationDdc", "classificationPortion": "200"}, {"name": "Groupes sociaux", "type": "bf:ClassificationDdc", "classificationPortion": "305"}], "variant_access_point": ["Adamiens (secte médiévale)", "Adamites de Bohême", "Picards (secte)", "Pikarti (secte)"], "authorized_access_point": "Adamites (secte médiévale)"} 1 +2024-09-10 15:43:04.015979 2024-09-10 15:43:04.01599 644d9b1c-93a8-4ab3-a49a-489622aac0fc {"md5": "c9e70c43dd7dd03bf1dbeea08eaf383e", "pid": "02785714X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Analyse numérique"}, {"authorized_access_point": "Calculs numériques"}, {"authorized_access_point": "Échantillonnage (statistique)"}, {"authorized_access_point": "Jeux de hasard (mathématiques)"}, {"authorized_access_point": "Modèles mathématiques"}, {"authorized_access_point": "Processus stochastiques"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Monte-Carlo, Méthode de"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85087032", "source": "LCSH"}], "authorized_access_point": "Monte Carlo method"}], "identifier": "http://www.idref.fr/02785714X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02785714X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119809151", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11980915", "source": "BNF"}], "classification": [{"name": "Mathématiques", "type": "bf:ClassificationDdc", "classificationPortion": "510"}], "variant_access_point": ["Échantillonnage stochastique", "Méthode de Monte-Carlo"], "authorized_access_point": "Monte-Carlo, Méthode de"} 1 +2024-09-10 15:43:04.118136 2024-09-10 15:43:04.118146 074c86f1-ce43-4968-aa2b-93fa23e37a08 {"md5": "1430a7b2338397e73cf87e61765121a8", "pid": "027867277", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Civilisation - Corée"}, {"authorized_access_point": "Mythologie d'Asie orientale"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Dieux coréens"}, {"authorized_access_point": "Dokkaebi"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85089406", "source": "LCSH"}], "authorized_access_point": "Mythology, Korean"}], "identifier": "http://www.idref.fr/027867277", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027867277", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11981731z", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11981731", "source": "BNF"}], "classification": [{"name": "Religion", "type": "bf:ClassificationDdc", "classificationPortion": "200"}], "authorized_access_point": "Mythologie coréenne"} 1 +2024-09-10 15:43:04.216293 2024-09-10 15:43:04.216304 b5543339-2f2e-467b-9146-9c6677fb8916 {"md5": "bdcbf33345a320332f7cd459ab8e89d5", "pid": "02786765X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Diplomatique pontificale"}, {"authorized_access_point": "Documents pontificaux"}], "related": [{"authorized_access_point": "Bulles (sceaux)"}, {"authorized_access_point": "Rescrits pontificaux"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/02786765X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02786765X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11981763k", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11981763", "source": "BNF"}], "variant_access_point": ["Bulles papales", "Papes - Bulles"], "authorized_access_point": "Bulles pontificales"} 1 +2024-09-10 15:43:04.30188 2024-09-10 15:43:04.301889 da04ff30-6b8f-47b2-9ce2-e01294ef9ae4 {"md5": "c2f0cc934cc3e56ce94928ab092db2a9", "pid": "027868338", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Bouddhisme - Chine - 1368-1644 (Dynastie des Ming)"}, {"authorized_access_point": "Chan (bouddhisme)"}, {"authorized_access_point": "Lotus blanc (secte)"}, {"authorized_access_point": "San jie jiao"}, {"authorized_access_point": "Tiantai"}, {"authorized_access_point": "Zhenyan"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85017494", "source": "LCSH"}], "authorized_access_point": "Buddhism -- China"}, {"source": "RVMLaval", "authorized_access_point": "Bouddhisme -- Chine"}], "identifier": "http://www.idref.fr/027868338", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027868338", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119818181", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11981818", "source": "BNF"}], "classification": [{"name": "Religion", "type": "bf:ClassificationDdc", "classificationPortion": "200"}], "variant_access_point": ["Bouddhisme chinois"], "authorized_access_point": "Bouddhisme - Chine"} 1 +2024-09-10 15:43:04.405784 2024-09-10 15:43:04.405797 064604e2-623c-498b-a0b1-83b12154add8 {"md5": "b7414a0101d1dc0d2fbe6663f2a3b399", "pid": "027870510", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bases de données - Gestion"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027870510", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027870510", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11981979h", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11981979", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "authorized_access_point": "Bases de données - Gestion - Logiciels"} 1 +2024-09-10 15:43:04.528928 2024-09-10 15:43:04.528938 413a5419-2dd2-43a9-9414-43bee3e6c519 {"md5": "119c590095443cc26438062e0796a633", "pid": "027873196", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Non expedit"}], "identifier": "http://www.idref.fr/027873196", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027873196", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11982200j", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11982200", "source": "BNF"}], "authorized_access_point": "Église et État - Italie - 19e siècle"} 1 +2024-09-10 15:43:05.807738 2024-09-10 15:43:05.807746 a35f756b-f5ee-4e87-83c6-3ff645516c55 {"md5": "16777af9a2afb3271dcd7b164906dff7", "pid": "028060563", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fonctionnaires - Rome"}, {"authorized_access_point": "Provinces romaines"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85107175", "source": "LCSH"}], "authorized_access_point": "Procurators (Rome)"}, {"source": "RVMLaval", "authorized_access_point": "Procurateurs (Rome)"}], "identifier": "http://www.idref.fr/028060563", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028060563", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11997124p", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11997124", "source": "BNF"}], "authorized_access_point": "Procurateurs (Rome)"} 1 +2024-09-10 15:43:04.624639 2024-09-10 15:43:04.624651 447099dc-bd69-4203-a388-6dd29264aa0f {"md5": "9ad90a273d2125584f005923df88d1d8", "pid": "02787608X", "note": [{"label": ["Dict. de l'éducation / A. Van Zanten, 2008 (art. : Technologies de l'information et de la communication)", "L'intégration pédagogique des TIC dans le travail enseignant / T. Karsenty, F. Larose, 2005 (p.29)", "École, informatique et nouveau comportement / C. Laguerre, 1999 (p. 115)"], "noteType": "dataSource"}, {"label": ["Utilisation des ordinateurs pour assister les enseignants et les administrateurs dans la coordination du processus pédagogique (recherche, résumé des dossiers scolaires, etc.)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Éducation et informatique"}, {"authorized_access_point": "Technologie éducative"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Enseignement géré par ordinateur"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85029510", "source": "LCSH"}], "authorized_access_point": "Computer managed instruction"}], "identifier": "http://www.idref.fr/02787608X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02787608X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119824096", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11982409", "source": "BNF"}], "classification": [{"name": "Education et enseignement", "type": "bf:ClassificationDdc", "classificationPortion": "370"}], "variant_access_point": ["Enseignement géré par ordinateur"], "authorized_access_point": "Administration scolaire - Informatique"} 1 +2024-09-10 15:43:04.734605 2024-09-10 15:43:04.734615 036ba2b0-c4db-4578-a0ff-96a30f852338 {"md5": "e16398071bd8a51d9ef1e47fc3ab8152", "pid": "027883094", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027883094", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027883094", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119829412", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11982941", "source": "BNF"}], "authorized_access_point": "Guerre mondiale (1939-1945) - Traités"} 1 +2024-09-10 15:43:04.844711 2024-09-10 15:43:04.844723 c1c13259-7a56-488c-a8d7-44243ed581b3 {"md5": "2ed345c6a5dc253bbe4f1e6e4d5df7ab", "pid": "02788547X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Débogage"}, {"authorized_access_point": "Logiciels - Développement"}, {"authorized_access_point": "Logiciels - Validation"}, {"authorized_access_point": "Logiciels - Vérification"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Logiciels -- Essais"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85029526", "source": "LCSH"}], "authorized_access_point": "Computer programs--Testing"}], "identifier": "http://www.idref.fr/02788547X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02788547X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119831235", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11983123", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}], "authorized_access_point": "Logiciels - Essais"} 1 +2024-09-10 15:43:04.911198 2024-09-10 15:43:04.9112 74a4eb44-abf1-4530-b794-2320a08e6f90 {"md5": "42b30f9505ef01e4e55fc61040727bb9", "pid": "027885496", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Débogage"}, {"authorized_access_point": "Logique mathématique"}], "related": [{"authorized_access_point": "Logiciels - Vérification"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Logiciels -- Exactitude"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85029525", "source": "LCSH"}], "authorized_access_point": "Computer programs--Correctness"}], "identifier": "http://www.idref.fr/027885496", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027885496", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11983124h", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11983124", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Logiciels - Précision"], "authorized_access_point": "Logiciels - Exactitude"} 1 +2024-09-10 15:43:04.995899 2024-09-10 15:43:04.995909 2af1ac0b-42c0-435c-a34a-14491b05b914 {"md5": "1f7a2c62c1d14b8385d977dfa8a66dac", "pid": "027887960", "note": [{"label": ["Laval RVM, 1990-08"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027887960", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027887960", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11983314r", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11983314", "source": "BNF"}], "authorized_access_point": "Histoire religieuse - Autriche - 18e siècle"} 1 +2024-09-10 15:43:05.093205 2024-09-10 15:43:05.09322 cd46fa94-1052-41fa-8664-2d40f499013d {"md5": "8ba54f9e3dab04450006eb8e4159a5a0", "pid": "027908380", "note": [{"label": ["LCSH (en ligne), 2001-06-20"], "noteType": "dataNotFound"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Microordinateurs"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027908380", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027908380", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11984914n", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11984914", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["QL (ordinateur)"], "authorized_access_point": "Sinclair QL (ordinateur)"} 1 +2024-09-10 15:43:06.44856 2024-09-10 15:43:06.448568 2fdfb9e7-048c-4187-a10c-964a45d1f3a8 {"md5": "1060c9901000259a583c57621892047a", "pid": "028211162", "note": [{"label": ["Laval RVM, 1989-06"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/028211162", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028211162", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12009267f", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12009267", "source": "BNF"}], "authorized_access_point": "Histoire religieuse - Allemagne - 17e siècle"} 1 +2024-09-10 15:43:05.202926 2024-09-10 15:43:05.202935 b06e9490-8d01-4a22-abf0-e788ca7b9e73 {"md5": "0c6dff7d50effde46d0c44c0a1e8322d", "pid": "027910210", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Informatique mobile"}, {"authorized_access_point": "Microordinateurs"}], "related": [{"authorized_access_point": "Calculatrices programmables"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "MacBook Pro (ordinateur)"}, {"authorized_access_point": "Liseuses numériques"}, {"authorized_access_point": "Tablettes numériques"}, {"authorized_access_point": "Mini-portables"}, {"authorized_access_point": "Atari Portfolio (ordinateur)"}, {"authorized_access_point": "Communicateurs personnels"}, {"authorized_access_point": "Ordinateurs de poche"}, {"authorized_access_point": "Macintosh PowerBook (bloc-notes)"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Ordinateurs portatifs"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh90002033", "source": "LCSH"}], "authorized_access_point": "Laptop computers"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85105056", "source": "LCSH"}], "authorized_access_point": "Portable computers"}], "identifier": "http://www.idref.fr/027910210", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027910210", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11985066n", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11985066", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}, {"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "variant_access_point": ["Microordinateurs portatifs", "Ordinateurs portables", "Ordinateurs transportables"], "authorized_access_point": "Ordinateurs portatifs"} 1 +2024-09-10 15:43:05.293293 2024-09-10 15:43:05.293302 e9e18642-fa93-4f3c-9029-2d6f1be91772 {"md5": "1c487271b790032eccca19b9c3643fc1", "pid": "027915115", "note": [{"label": ["Sous cette vedette, on trouve les documents sur les micro-ordinateurs de différentes marques conformes à la norme MSX"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "MSX-Basic (langage de programmation)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027915115", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027915115", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119855123", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11985512", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Microsoft Super eXtended Basic (ordinateurs)"], "authorized_access_point": "MSX (ordinateurs)"} 1 +2024-09-10 15:43:05.375044 2024-09-10 15:43:05.375051 3503bddb-cca6-4e2a-a725-7b5ebb358e27 {"md5": "163675bc8a34cec69f0ef7f09688d4c4", "pid": "027920216", "note": [{"label": ["Khrushchov's crimes in Ukraine, 1962"], "noteType": "dataSource"}, {"label": ["LCSH, 1991-06"], "noteType": "dataNotFound"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Politique et gouvernement - URSS - 1928-1941"}, {"authorized_access_point": "Massacres - Ukraine"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027920216", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027920216", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11985929x", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11985929", "source": "BNF"}], "authorized_access_point": "Vinnitsa, Massacres de (1937-1939)"} 1 +2024-09-10 15:43:05.455805 2024-09-10 15:43:05.455813 9816ee8a-bf18-447e-8acd-70bf47cead7f {"md5": "51d55fdaa73295936caf974cf2b86f0e", "pid": "027940373", "note": [{"label": ["Base terminologique de l'intelligence artificielle / Y. Kodratoff, M. Barès, 1991", "L'Apprentissage automatique : de la sélection de variables à l'apprentissage de structure d'un classifieur bayésien / H. Bouhamed, 2013 [thèse]", "Réseaux de neurones artificiels : une introduction à l'apprentissage automatique, 2006"], "noteType": "dataSource"}, {"label": ["Processus par lequel un algorithme évalue et améliore ses performances sans l'intervention d'un programmeur, en répétant son exécution sur des jeux de données jusqu'à obtenir, de manière régulière, des résultats pertinents", "Sous cette vedette, on trouve les documents traitant de l'apprentissage par un système de raisonnement automatisé tout seul. Les documents sur la méthodologie de transfert des connaissances d'un expert humain vers le système se trouvent sous Acquisition des connaissances (systèmes experts)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Théorie des automates mathématiques"}, {"authorized_access_point": "Intelligence artificielle"}, {"authorized_access_point": "Systèmes adaptatifs"}, {"authorized_access_point": "Systèmes auto-organisés"}], "related": [{"authorized_access_point": "Acquisition des connaissances (systèmes experts)"}, {"authorized_access_point": "Co-adaptation (informatique)"}, {"authorized_access_point": "Conteneurs (informatique)"}, {"authorized_access_point": "Modélisation prédictive"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Apprentissage basé sur l'explication"}, {"authorized_access_point": "Apprentissage interactif"}, {"authorized_access_point": "Apprentissage non supervisé (intelligence artificielle)"}, {"authorized_access_point": "Apprentissage par renforcement (intelligence artificielle)"}, {"authorized_access_point": "Apprentissage profond"}, {"authorized_access_point": "Apprentissage supervisé (intelligence artificielle)"}, {"authorized_access_point": "Boosting (algorithmes)"}, {"authorized_access_point": "Machines à vecteurs de support"}, {"authorized_access_point": "Prédictions conformes (informatique)"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85079324", "source": "LCSH"}], "authorized_access_point": "Machine learning"}, {"source": "RVMLaval", "authorized_access_point": "Apprentissage automatique"}], "identifier": "http://www.idref.fr/027940373", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027940373", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11987531v", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11987531", "source": "BNF"}], "classification": [{"name": "Généralités", "type": "bf:ClassificationDdc", "classificationPortion": "000"}, {"type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Apprentissage-machine", "Apprentissage (intelligence artificielle)", "Apprentissage artificiel", "Apprentissage machine", "Apprentissage statistique", "Machine learning"], "authorized_access_point": "Apprentissage automatique"} 1 +2024-09-10 15:43:05.54482 2024-09-10 15:43:05.544962 56163203-5efe-41dc-b6b1-1b9465a378e3 {"md5": "a2befbd102f8512168e3a7a183b9aed9", "pid": "027944492", "note": [{"label": ["Sous cette vedette on trouve les documents sur l'ensemble de la gamme des micro-ordinateurs Amstrad"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Microordinateurs"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027944492", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027944492", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11987850z", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11987850", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Amstrad (ordinateur)", "Amstrad Micro (ordinateurs)"], "authorized_access_point": "Amstrad (ordinateurs)"} 1 +2024-09-10 15:43:05.625515 2024-09-10 15:43:05.625523 38586d39-cc5c-4e1a-afb3-e6c68a25998d {"md5": "ea6d534c0e43752838d9599b437ebab0", "pid": "027950808", "note": [{"label": ["S'emploie également en subdivision aux industries"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gestion"}, {"authorized_access_point": "Approvisionnement dans l'entreprise"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Relations clients-fournisseurs"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Gestion de l'approvisionnement"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2002007919", "source": "LCSH"}], "authorized_access_point": "Materials management"}], "identifier": "http://www.idref.fr/027950808", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027950808", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11988322k", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11988322", "source": "BNF"}], "classification": [{"name": "Gestion et organisation de l'entreprise", "type": "bf:ClassificationDdc", "classificationPortion": "650"}], "variant_access_point": ["Approvisionnement - Gestion", "Fonction approvisionnement", "Gestion des approvisionnements", "Gestion des fournitures"], "authorized_access_point": "Gestion de l'approvisionnement"} 1 +2024-09-10 15:43:05.717258 2024-09-10 15:43:05.717267 38f93763-1452-45e0-90be-37fd726500e8 {"md5": "c8c646a2b86518e1946ceedf41c87a92", "pid": "027963675", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Enfants - Statut juridique"}], "related": [{"authorized_access_point": "Violence envers les enfants"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85023351", "source": "LCSH"}], "authorized_access_point": "Child abuse--Law and legislation"}, {"source": "RVMLaval", "authorized_access_point": "Enfants -- Violence envers -- Droit"}], "identifier": "http://www.idref.fr/027963675", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027963675", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb133192528", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13319252", "source": "BNF"}], "classification": [{"name": "Psychologie, psychanalyse", "type": "bf:ClassificationDdc", "classificationPortion": "150"}, {"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}, {"name": "Droit", "type": "bf:ClassificationDdc", "classificationPortion": "340"}], "variant_access_point": ["Enfants - Violence envers -- Droit"], "authorized_access_point": "Violence envers les enfants - Droit"} 1 +2024-09-10 15:43:05.884314 2024-09-10 15:43:05.884321 32fdbfb7-7da3-48d8-8343-aa4e60447589 {"md5": "711db26331830d7c4f891eed405df52e", "pid": "028071867", "note": [{"label": ["Sous cette vedette on trouve les documents sur la politique de séparation des races en Afrique du Sud et en Namibie"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Relations interethniques - Afrique australe"}, {"authorized_access_point": "Ségrégation"}], "related": [{"authorized_access_point": "Postapartheid"}, {"authorized_access_point": "Mouvements anti-apartheid"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Apartheid"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85005905", "source": "LCSH"}], "authorized_access_point": "Apartheid"}], "identifier": "http://www.idref.fr/028071867", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028071867", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11998012n", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11998012", "source": "BNF"}], "classification": [{"name": "Sciences politiques", "type": "bf:ClassificationDdc", "classificationPortion": "320"}], "authorized_access_point": "Apartheid"} 1 +2024-09-10 15:43:05.949736 2024-09-10 15:43:05.949746 5b1f7db5-a415-4803-969a-1143871cc6c3 {"md5": "c783f5f41714773bf14255d163b699a1", "pid": "028071964", "note": [{"label": ["Guide pratique, Bull Micral.../ G. Perreau, 1985"], "noteType": "dataSource"}, {"label": ["Laval RVM (en ligne), 2005-07-05"], "noteType": "dataNotFound"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bull (ordinateurs)"}, {"authorized_access_point": "Mini-ordinateurs"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/028071964", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028071964", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119980208", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11998020", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Bull Micral (ordinateur)"], "authorized_access_point": "Micral (ordinateur)"} 1 +2024-09-10 15:43:06.047296 2024-09-10 15:43:06.047307 c490f71e-bd0f-4efc-aa36-9e0eaaaff4df {"md5": "92c33c8d228c8aa34e73f121cbf648cc", "pid": "02807842X", "note": [{"label": ["LCNA (en ligne), 2001-01-16"], "noteType": "dataNotFound"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Modélisation des données (informatique)"}, {"authorized_access_point": "Gestion - Informatique"}, {"authorized_access_point": "Systèmes, Conception de"}], "related": [{"authorized_access_point": "MEGA, Méthode"}, {"authorized_access_point": "OOM, Méthode"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/02807842X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02807842X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11998549c", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11998549", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["MERISE (méthode de conception de systèmes)", "Méthode MERISE"], "authorized_access_point": "MERISE, Méthode"} 1 +2024-09-10 15:43:06.151428 2024-09-10 15:43:06.151438 d761b4bc-7c55-48f5-90e6-84f0d4cc1392 {"md5": "38bda46f2015e29dd13adc1298e03012", "pid": "02810160X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/02810160X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02810160X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12000318b", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12000318", "source": "BNF"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}, {"name": "Sciences politiques", "type": "bf:ClassificationDdc", "classificationPortion": "320"}], "variant_access_point": ["Église catholique - Relations extérieures - 20e siècle"], "authorized_access_point": "Diplomatie pontificale - 20e siècle"} 1 +2024-09-10 15:43:06.249917 2024-09-10 15:43:06.249925 b3d61dc0-68d6-41d7-95e7-119d40afca45 {"md5": "548e9c3c5be979cb2f21ca80468ae4a0", "pid": "028140362", "note": [{"label": ["Grand dict. encyclopédique Larousse : zombi ou zombie", "Trésor de la langue française : zombi, zombie", "Nouveau petit Robert 2009 : zombie ou zombi", "Le vaudou haïtien / A. Métraux, 1977 (p. 249)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fantômes"}, {"authorized_access_point": "Vaudou"}], "related": [{"authorized_access_point": "Films de zombis"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh99001600", "source": "LCSH"}], "authorized_access_point": "Zombies"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85149949", "source": "LCSH"}], "authorized_access_point": "Zombiism"}, {"source": "RVMLaval", "authorized_access_point": "Zombies"}], "identifier": "http://www.idref.fr/028140362", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028140362", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb120034050", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12003405", "source": "BNF"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}, {"type": "bf:ClassificationDdc", "classificationPortion": "391"}], "variant_access_point": ["Morts-vivants", "Zombies", "Zombification", "Zonbis"], "authorized_access_point": "Zombis"} 1 +2024-09-10 15:43:06.339341 2024-09-10 15:43:06.339351 bef030e2-4808-4bae-b4d8-1b83dfe643cc {"md5": "2e45c911bba6c38afc2cc2ee5a5e43a0", "pid": "028148800", "note": [{"label": ["Laval RVM, 1983", "GDEL"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Mouvement éthiopien (Afrique du Sud)"}], "identifier": "http://www.idref.fr/028148800", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028148800", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12004088n", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12004088", "source": "BNF"}], "variant_access_point": ["Ethiopian Church (Afrique du Sud)", "Éthiopianisme"], "authorized_access_point": "Mouvement éthiopien (Afrique du Sud)"} 1 +2024-09-10 15:43:06.529756 2024-09-10 15:43:06.529766 f9888594-7c25-44ff-a7d6-f6a4afd8acca {"md5": "ee5e7932d7ce5e7b9fef3cf5096091a0", "pid": "028225090", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Bouddhisme - Corée - Jusqu'à 935"}, {"authorized_access_point": "Bouddhisme - Corée - 935-1392"}, {"authorized_access_point": "Sŏn (bouddhisme)"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh87001465", "source": "LCSH"}], "authorized_access_point": "Buddhism -- Korea"}, {"source": "RVMLaval", "authorized_access_point": "Bouddhisme -- Corée"}], "identifier": "http://www.idref.fr/028225090", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028225090", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb120104075", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12010407", "source": "BNF"}], "classification": [{"name": "Religion", "type": "bf:ClassificationDdc", "classificationPortion": "200"}], "variant_access_point": ["Bouddhisme coréen"], "authorized_access_point": "Bouddhisme - Corée"} 1 +2024-09-10 15:43:06.630233 2024-09-10 15:43:06.630245 d35b5a12-9487-4dea-b100-d88b2da46d96 {"md5": "366691e8f52765342bab2da6df22a4ef", "pid": "028225767", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Missions officielles américaines"}], "related": [{"authorized_access_point": "Diplomates américains"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85140008", "source": "LCSH"}], "authorized_access_point": "Diplomatic and consular service, American"}, {"source": "RVMLaval", "authorized_access_point": "Service diplomatique et consulaire américain"}], "identifier": "http://www.idref.fr/028225767", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028225767", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb120104640", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12010464", "source": "BNF"}], "classification": [{"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}], "authorized_access_point": "Service diplomatique et consulaire américain"} 1 +2024-09-10 15:43:06.738541 2024-09-10 15:43:06.738551 a75f3943-10c9-4895-88a9-a7364f4f3e12 {"md5": "5d07784ec1b7e7914fd9966dca9c579f", "pid": "028233506", "note": [{"label": ["Laval RVM, 1994-08"], "noteType": "dataNotFound"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Propriété industrielle (droit international)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/028233506", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028233506", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb120111005", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12011100", "source": "BNF"}], "authorized_access_point": "Dessins et modèles (droit international)"} 1 +2024-09-10 15:43:06.844052 2024-09-10 15:43:06.844065 845f4f7d-8b80-4696-9cda-a4d0cff0b5c6 {"md5": "a2a09cc140e988a5b9f29170cbefdf5e", "pid": "028262220", "note": [{"label": ["Dict. économique et financier / Y. Bernard et J.-C. Colli, 1996"], "noteType": "dataSource"}, {"label": ["Laval RVM, 1996-08. - LCSH, 1996-06"], "noteType": "dataNotFound"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Macroéconomie - Modèles mathématiques"}, {"authorized_access_point": "Modèles économétriques"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/028262220", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028262220", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12013419w", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12013419", "source": "BNF"}], "variant_access_point": ["Dynamique multi-sectoriel, Modèle", "Modèle DMS", "Modèle dynamique multi-sectoriel"], "authorized_access_point": "DMS, Modèle"} 1 +2024-09-10 15:43:06.944918 2024-09-10 15:43:06.944921 ee092c97-20d5-41f7-af1c-5a10e7660a84 {"md5": "39d56868b3c5e79705340699ec95db92", "pid": "028287169", "note": [{"label": ["Laval RVM, 1983"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/028287169", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028287169", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12015381h", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12015381", "source": "BNF"}], "authorized_access_point": "Histoire religieuse - Allemagne - 18e siècle"} 1 +2024-09-10 15:43:07.035497 2024-09-10 15:43:07.035505 538362b6-9854-4860-97cc-9644b8e79ee4 {"md5": "79af3c863e2746c2dfe9b8836d70edd9", "pid": "028359380", "note": [{"label": ["Sous cette vedette, on trouve les documents sur le commerce international en général"], "noteType": "general"}, {"label": ["Voir aussi la subdivision Commerce extérieur, aux lieux (pays, villes, etc.) pour les documents sur le commerce international envisagé du point de vue d'un lieu déterminé"], "noteType": "seeReference"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Commerce"}, {"authorized_access_point": "Relations économiques internationales"}], "related": [{"authorized_access_point": "Commerce international - Réglementation"}, {"authorized_access_point": "Commerce international et emploi"}, {"authorized_access_point": "Salaires - Effets du commerce international"}, {"authorized_access_point": "Accès aux médicaments"}, {"authorized_access_point": "Commerce extérieur"}, {"authorized_access_point": "Économie ouverte"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Juste échange"}, {"authorized_access_point": "Commerce parallèle"}, {"authorized_access_point": "Concurrence internationale"}, {"authorized_access_point": "Contrats d'exclusivité"}, {"authorized_access_point": "Droit commercial (droit international)"}, {"authorized_access_point": "Dumping"}, {"authorized_access_point": "Échanges compensés"}, {"authorized_access_point": "Échanges intra-branche"}, {"authorized_access_point": "Exportations"}, {"authorized_access_point": "Garanties à première demande"}, {"authorized_access_point": "Heckscher-Ohlin, Théorème de"}, {"authorized_access_point": "Importations"}, {"authorized_access_point": "Commerce international - Effets du terrorisme"}, {"authorized_access_point": "Incoterms"}, {"authorized_access_point": "Libre-échange"}, {"authorized_access_point": "Portage (commerce international)"}, {"authorized_access_point": "Protectionnisme"}, {"authorized_access_point": "Routes commerciales"}, {"authorized_access_point": "Stocks régulateurs"}, {"authorized_access_point": "Tarif douanier"}, {"authorized_access_point": "Vente internationale"}, {"authorized_access_point": "Services - Échanges internationaux"}, {"authorized_access_point": "Armes - Vente"}, {"authorized_access_point": "Avantage comparatif (commerce international)"}, {"authorized_access_point": "Balance commerciale"}, {"authorized_access_point": "Classification type pour le commerce international"}, {"authorized_access_point": "Commerce captif"}, {"authorized_access_point": "Commerce Est-Ouest"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Commerce international"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh87004890", "source": "LCSH"}], "authorized_access_point": "International trade"}], "identifier": "http://www.idref.fr/028359380", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028359380", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12021081x", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12021081", "source": "BNF"}], "variant_access_point": ["Commerce extérieur international", "Commerce mondial", "Échanges commerciaux internationaux", "Échanges internationaux"], "authorized_access_point": "Commerce international"} 1 +2024-09-10 15:43:07.248384 2024-09-10 15:43:07.248392 2cd01716-a7e3-4dec-ae83-e3f07f89f843 {"md5": "ce6744fbc5a1328f23a2231da2a4a95c", "pid": "028433890", "note": [{"label": ["LCSH, 1991-06"], "noteType": "dataNotFound"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Droit social (droit européen)"}, {"authorized_access_point": "Droit privé (droit européen)"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Discrimination dans l'emploi - Droit européen"}, {"authorized_access_point": "Risques psychosociaux - Droit européen"}, {"authorized_access_point": "Représentation du personnel - Droit européen"}, {"authorized_access_point": "Comités d'entreprise - Droit européen"}], "identifier": "http://www.idref.fr/028433890", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028433890", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12027009n", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12027009", "source": "BNF"}], "authorized_access_point": "Droit du travail (droit européen)"} 1 +2024-09-10 15:43:07.334208 2024-09-10 15:43:07.334216 1e928bc3-3ca9-4a37-b87f-00c402c984fb {"md5": "f74987a95b20a0d84eecb8b2bcab2b1d", "pid": "028497244", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Monnaies européennes"}], "related": [{"authorized_access_point": "Monnaie - Luxembourg"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85027844", "source": "LCSH"}], "authorized_access_point": "Coins, Luxembourg"}, {"source": "RVMLaval", "authorized_access_point": "Monnaies luxembourgeoises"}], "identifier": "http://www.idref.fr/028497244", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028497244", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12032142r", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12032142", "source": "BNF"}], "classification": [{"name": "Économie politique", "type": "bf:ClassificationDdc", "classificationPortion": "330"}, {"name": "Sculpture", "type": "bf:ClassificationDdc", "classificationPortion": "730"}, {"name": "Histoire de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "940"}], "variant_access_point": ["Pièces de monnaie luxembourgeoises"], "authorized_access_point": "Monnaies luxembourgeoises"} 1 +2024-09-10 15:43:07.428861 2024-09-10 15:43:07.42887 a89342dd-11d8-4935-a7c9-5784dbcb22f1 {"md5": "161f6fe44276c66073817fd569ece024", "pid": "028517180", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Moyen-Orient - 1945-1979"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/028517180", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028517180", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12033740z", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12033740", "source": "BNF"}], "authorized_access_point": "Politique et gouvernement - Moyen-Orient - 1945-1979"} 1 +2024-09-10 15:43:07.544179 2024-09-10 15:43:07.544192 089ef480-fbd1-46d6-8bca-788186d4a0bb {"md5": "6c96744680d9fb56555ad1724867fd13", "pid": "02852019X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/02852019X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02852019X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12033989v", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12033989", "source": "BNF"}], "authorized_access_point": "Frontières - Pays de l'Union européenne"} 1 +2024-09-10 15:43:07.625442 2024-09-10 15:43:07.625451 80df2e9d-7512-4f84-ac15-91500f9a8738 {"md5": "fd152fedccda2ddabf103a2cf4c7c14b", "pid": "028549082", "note": [{"label": ["Laval RVM, 1991-02"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Opération Condor"}], "identifier": "http://www.idref.fr/028549082", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028549082", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12036263z", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12036263", "source": "BNF"}], "authorized_access_point": "Politique et gouvernement - Amérique du Sud - 20e siècle"} 1 +2024-09-10 15:43:07.709397 2024-09-10 15:43:07.709407 d9170b59-989a-4a0b-af06-65289a6c047d {"md5": "a8167b4885f405002ea188a6958f2d63", "pid": "028631609", "note": [{"label": ["Encycl. de l'informatique et des systèmes d'information, 2006"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bases de données"}], "related": [{"authorized_access_point": "Java Persistence API"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "IBM Database 2 (système informatique)"}, {"authorized_access_point": "Ingres II (système informatique)"}, {"authorized_access_point": "Méta-REORG (système expert)"}, {"authorized_access_point": "Microsoft Jet (langage de programmation)"}, {"authorized_access_point": "Oracle (système informatique)"}, {"authorized_access_point": "PostgreSQL (système informatique)"}, {"authorized_access_point": "REORG (système expert)"}, {"authorized_access_point": "SAUVE (système expert)"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Bases de données relationnelles"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh86007768", "source": "LCSH"}], "authorized_access_point": "Relational databases"}], "identifier": "http://www.idref.fr/028631609", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028631609", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12042778m", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12042778", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["SGBDR", "Systèmes de gestion de bases de donnnées relationnelles"], "authorized_access_point": "Bases de données relationnelles"} 1 +2024-09-10 15:43:08.530309 2024-09-10 15:43:08.530313 9b70d0ed-18e0-4498-9fd0-6290ae4f4cbd {"md5": "eb9d6cb3851ef6908e1c99ed42a911da", "pid": "028700171", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Politique et gouvernement - États-Unis - 1933-1945"}, {"authorized_access_point": "Conditions sociales - États-Unis - 1933-1945"}, {"authorized_access_point": "États-Unis - 1933-1945"}], "related": [{"authorized_access_point": "Crise économique (1929) - États-Unis"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "New Deal"}], "identifier": "http://www.idref.fr/028700171", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028700171", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12048266p", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12048266", "source": "BNF"}], "variant_access_point": ["New Deal (1933-1939)", "New Deal - États-Unis"], "authorized_access_point": "New Deal"} 1 +2024-09-10 15:43:07.817348 2024-09-10 15:43:07.817359 bb074d97-1f08-42f4-9939-835f80bd8542 {"md5": "9d505591c6639cd1ff4030421ad2ead0", "pid": "028637720", "note": [{"label": ["Wikidata : Missile antibalistique - https://www.wikidata.org/wiki/Q574594 (2023-08-23)"], "noteType": "dataSource"}, {"label": ["Missile conçu pour intercepter un missile balistique ou une roquette. Le terme est cependant principalement utilisé pour désigner les systèmes conçus pour contrer des missiles balistiques intercontinentaux"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Artillerie antiaérienne"}, {"authorized_access_point": "Missiles"}], "related": [{"authorized_access_point": "Défense antimissile de croisière"}, {"authorized_access_point": "Défense antimissile balistique"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Missiles antimissiles"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85005700", "source": "LCSH"}], "authorized_access_point": "Antimissile missiles"}], "identifier": "http://www.idref.fr/028637720", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028637720", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb120432565", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12043256", "source": "BNF"}], "classification": [{"name": "Art et science militaires", "type": "bf:ClassificationDdc", "classificationPortion": "355"}, {"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "variant_access_point": ["ABM", "Antimissiles", "Missiles antibalistiques"], "authorized_access_point": "Missiles antimissiles"} 1 +2024-09-10 15:43:07.913448 2024-09-10 15:43:07.913455 c61e5225-30ad-490f-87c1-cfb6bd9ad7f6 {"md5": "7cb0d1f31fe6d372289a9866670f7401", "pid": "028675274", "note": [{"label": ["Laval RVM, 1991-02"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Puissances de l'Axe"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/028675274", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028675274", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12046184v", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12046184", "source": "BNF"}], "authorized_access_point": "Relations extérieures - Allemagne - 1933-1945"} 1 +2024-09-10 15:43:08.023182 2024-09-10 15:43:08.023191 682154ca-47e6-4c89-a4e3-eba7affae24e {"md5": "12737813e3f99369b4ce334e313fe6d6", "pid": "028676661", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/028676661", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028676661", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12046291d", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12046291", "source": "BNF"}], "authorized_access_point": "Relations extérieures - URSS - 1917-1945"} 1 +2024-09-10 15:43:08.188602 2024-09-10 15:43:08.188607 7d465408-cf3a-48b4-a6e5-1b1f4560b91b {"md5": "c525a8847138fbeea11bc91e45576018", "pid": "02868589X", "note": [{"label": ["LCNA (en ligne), 2004-05-14 : Microsoft Windows (Computer file)"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les documents sur le logiciel de fenêtres informatiques commercialisé par la société Microsoft. Les documentss sur les fenêtres (\\"windows\\") informatiques en général se trouvent sous Fenêtres (informatique). Les documents traitant d'un logiciel spécifique utilisable avec l'interface graphique Microsoft Windows se trouvent sous le nom du logiciel"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fenêtres (informatique)"}], "related": [{"authorized_access_point": "MFC (logiciels)"}, {"authorized_access_point": "Windows Open Services Architecture"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Microsoft Visual BASIC (langage de programmation)"}], "identifier": "http://www.idref.fr/02868589X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02868589X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb120470824", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12047082", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Windows (logiciels)"], "authorized_access_point": "Microsoft Windows (logiciels)"} 1 +2024-09-10 15:43:08.364789 2024-09-10 15:43:08.364795 814c4ca8-9175-4109-a4cf-9abd0d40c74d {"md5": "5703b6972ab76410643f2366f829cf08", "pid": "028698703", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Québec (Canada ; province)"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Politique et gouvernement - Québec (Canada ; province) - 1791-1841"}, {"authorized_access_point": "Politique et gouvernement - Québec (Canada ; province) - 1897-1936"}, {"authorized_access_point": "Politique et gouvernement - Québec (Canada ; province) - 20e siècle"}, {"authorized_access_point": "Politique et gouvernement - Québec (Canada ; province) - 1960-...."}], "identifier": "http://www.idref.fr/028698703", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028698703", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12048142d", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12048142", "source": "BNF"}], "classification": [{"name": "Sciences politiques", "type": "bf:ClassificationDdc", "classificationPortion": "320"}], "authorized_access_point": "Politique et gouvernement - Québec (Canada ; province)"} 1 +2024-09-10 15:43:08.462331 2024-09-10 15:43:08.462335 fa888eea-4f4e-4112-b743-c0000a445351 {"md5": "56ad8b26169967718b8f4881cf60f36c", "pid": "028700139", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/028700139", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028700139", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12048263n", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12048263", "source": "BNF"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}, {"name": "Sciences politiques", "type": "bf:ClassificationDdc", "classificationPortion": "320"}], "variant_access_point": ["Église catholique - Relations extérieures - 19e siècle"], "authorized_access_point": "Diplomatie pontificale - 19e siècle"} 1 +2024-09-10 15:43:08.599539 2024-09-10 15:43:08.599542 952cc620-3ab0-4032-abe5-92dc146f632a {"md5": "f7efb42a1ec1f29231e6a533d8374a52", "pid": "028725387", "note": [{"label": ["LCSH, 1994-09"], "noteType": "dataNotFound"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Consommation d'énergie"}, {"authorized_access_point": "Modèles mathématiques"}, {"authorized_access_point": "Ressources énergétiques"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/028725387", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028725387", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb120502183", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12050218", "source": "BNF"}], "variant_access_point": ["Méthode MÉDÉE", "Modèle d'évaluation de la demande en énergie", "Modèle MÉDÉE"], "authorized_access_point": "MÉDÉE, Méthode"} 1 +2024-09-10 15:43:08.677262 2024-09-10 15:43:08.677266 adb9b2e0-dd85-4262-b050-8ad2830d95cf {"md5": "0244c5c9941d5cd9f9282b8dfa9d8d11", "pid": "028898338", "note": [{"label": ["LCSH 87"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/028898338", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028898338", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb120638745", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12063874", "source": "BNF"}], "authorized_access_point": "Relations extérieures - France - 1914-1940"} 1 +2024-09-10 15:43:08.748093 2024-09-10 15:43:08.748099 9229c793-464c-43b0-a1f1-ab39cd9e7f5a {"md5": "2542b0023cc25e01b34f436765eda411", "pid": "028909917", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Programmation (informatique)"}], "related": [{"authorized_access_point": "Écosystèmes d'applications mobiles (informatique)"}, {"authorized_access_point": "Traitement d'exceptions (informatique)"}, {"authorized_access_point": "Débogage"}, {"authorized_access_point": "Logiciels - Essais"}, {"authorized_access_point": "Logiciels - Maintenance"}, {"authorized_access_point": "Systèmes, Conception de"}, {"authorized_access_point": "Méthodes formelles (informatique)"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Architecture logicielle"}, {"authorized_access_point": "Xamarin (plate-forme informatique)"}, {"authorized_access_point": "Tests fonctionnels (informatique)"}, {"authorized_access_point": "Microsoft Visual studio (environnement de développement d'applications)"}, {"authorized_access_point": "SysML (informatique)"}, {"authorized_access_point": "COBIT (informatique)"}, {"authorized_access_point": "Modèle CMM (informatique)"}, {"authorized_access_point": "Éditeurs syntaxiques"}, {"authorized_access_point": "Générateurs (logiciels)"}, {"authorized_access_point": "Objectory, Méthode"}, {"authorized_access_point": "PISA (système informatique)"}, {"authorized_access_point": "Progiciels - Développement"}, {"authorized_access_point": "Test Driven Development"}, {"authorized_access_point": "Prototypage (informatique)"}, {"authorized_access_point": "UML (informatique)"}, {"authorized_access_point": "VDM, Méthode"}, {"authorized_access_point": "ISO/SPICE, Modèle"}, {"authorized_access_point": "Développement rapide d'applications"}, {"authorized_access_point": "Akka (plate-forme informatique)"}, {"authorized_access_point": "Allegro (informatique)"}, {"authorized_access_point": "OCL (informatique)"}, {"authorized_access_point": "PhoneGap (environnement de développement d'applications)"}, {"authorized_access_point": "Gamification"}, {"authorized_access_point": "OSGi (plate-forme informatique)"}, {"authorized_access_point": "Méthodes agiles (informatique)"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Logiciels -- Développement"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85029535", "source": "LCSH"}], "authorized_access_point": "Computer software--Development"}], "identifier": "http://www.idref.fr/028909917", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028909917", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12064812v", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12064812", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Conception de logiciels", "Développement d'applications (informatique)", "Développement de logiciels", "Développement itératif de logiciels", "Logiciels - Conception", "Logiciels - Développement itératif", "Logiciels - Écriture", "RAD"], "authorized_access_point": "Logiciels - Développement"} 1 +2024-09-10 15:43:08.822272 2024-09-10 15:43:08.822275 d0c84480-6fcf-4814-b11a-a052ea2fa884 {"md5": "db83212715988bbec0612103787ae848", "pid": "028910737", "note": [{"label": ["Laval RVM, 1990-08"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Grande-Bretagne - 1837-1901 (Victoria)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/028910737", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028910737", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12064877f", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12064877", "source": "BNF"}], "authorized_access_point": "Politique et gouvernement - Grande-Bretagne - 1837-1901"} 1 +2024-09-10 15:43:08.894832 2024-09-10 15:43:08.894837 130418dd-0053-4d9e-8f5e-0bf036e62b3e {"md5": "b8c414716e53ba6a5c031b7ec8a74384", "pid": "028912098", "note": [{"label": ["LCSH, 1987-09", "Laval RVM suppl., 1987-09"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Convulsionnaires (religion)"}, {"authorized_access_point": "Multipliants"}], "identifier": "http://www.idref.fr/028912098", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028912098", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb120649871", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12064987", "source": "BNF"}], "authorized_access_point": "Histoire religieuse - France - 18e siècle"} 1 +2024-09-10 15:43:08.964622 2024-09-10 15:43:08.964626 af17f430-19a3-41d6-a16d-c5812fe1e9eb {"md5": "3b9c9a29cd529c19d049539eb7dfcd9a", "pid": "028929098", "note": [{"label": ["GDEL", "LCSH 1987-09"], "noteType": "dataSource"}, {"label": ["Laval 1987-09"], "noteType": "dataNotFound"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Guerre de la première coalition (1792-1797) - Opérations militaires - France"}, {"authorized_access_point": "France - 1792"}], "related": [{"authorized_access_point": "Valmy (prénom)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/028929098", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028929098", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12066311m", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12066311", "source": "BNF"}], "variant_access_point": ["Valmy, Bataille de (1792)"], "authorized_access_point": "Bataille de Valmy (1792)"} 1 +2024-09-10 15:43:09.038817 2024-09-10 15:43:09.038821 b517009a-3208-41dc-a4fb-d735d0c18470 {"md5": "f1bee3820253177b893c2438ce5f0138", "pid": "028973631", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Europe de l'Est - 1945-1989"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/028973631", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028973631", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12069805s", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12069805", "source": "BNF"}], "authorized_access_point": "Politique et gouvernement - Europe de l'Est - 1945-1989"} 1 +2024-09-10 15:43:09.118626 2024-09-10 15:43:09.118629 ac85ac27-1880-462e-b189-55753204627d {"md5": "63766bf83f3ac5ad793cee3b08317160", "pid": "02900294X", "note": [{"label": ["Laval RVM, 1990-08"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Puissances de l'Axe"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/02900294X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02900294X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb120720680", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12072068", "source": "BNF"}], "authorized_access_point": "Relations extérieures - Italie - 1922-1945"} 1 +2024-09-10 15:43:09.191817 2024-09-10 15:43:09.19182 33ab3b0b-c329-480f-a8e5-f11e012172ed {"md5": "19784224e8ef8d74e0fdf1757f08ae2e", "pid": "02904197X", "note": [{"label": ["LCSH, 2000-03"], "noteType": "dataNotFound"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/02904197X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02904197X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12075107s", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12075107", "source": "BNF"}], "classification": [{"name": "Religion", "type": "bf:ClassificationDdc", "classificationPortion": "200"}, {"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}], "authorized_access_point": "Église et État - Allemagne - 20e siècle"} 1 +2024-09-10 15:43:09.25883 2024-09-10 15:43:09.258834 a7a072c8-a494-4692-be58-cf63acd986ee {"md5": "7e85ef7ffb78ab5584aacbd041ed7c91", "pid": "029042046", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/029042046", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029042046", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12075113q", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12075113", "source": "BNF"}], "authorized_access_point": "Église et État - Italie - 20e siècle"} 1 +2024-09-10 15:43:09.349886 2024-09-10 15:43:09.349891 1e87005d-d947-4f06-b5c5-cf9876c26c85 {"md5": "a06d724c6e060dcea8fb2b2b9f4ee0bd", "pid": "029042186", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Kulturkampf"}, {"authorized_access_point": "Rheinisch-Westfälische Kirchenordnung"}], "identifier": "http://www.idref.fr/029042186", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029042186", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12075124c", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12075124", "source": "BNF"}], "classification": [{"name": "Religion", "type": "bf:ClassificationDdc", "classificationPortion": "200"}, {"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}], "authorized_access_point": "Église et État - Allemagne - 19e siècle"} 1 +2024-09-10 15:43:09.426604 2024-09-10 15:43:09.426608 51c2e540-2d07-4463-bdc4-6f0b86e2c15a {"md5": "c0c82d5b9d37f5822b4539982173e5dc", "pid": "02905026X", "note": [{"label": ["Laval RVM, 1992-08"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Blocus continental"}], "identifier": "http://www.idref.fr/02905026X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02905026X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12075741m", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12075741", "source": "BNF"}], "authorized_access_point": "Politique et gouvernement - Europe - 1789-1815"} 1 +2024-09-10 15:43:09.726771 2024-09-10 15:43:09.726777 46a40065-b34f-4c87-9909-c8d76a648b7d {"md5": "f91f47f48f46e44d9ad1b5a89ff28066", "pid": "029182387", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85025254", "source": "LCSH"}], "authorized_access_point": "Christianity and other religions--Chinese"}, {"source": "RVMLaval", "authorized_access_point": "Christianisme -- Relations -- Religion chinoise"}], "identifier": "http://www.idref.fr/029182387", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029182387", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb120862572", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12086257", "source": "BNF"}], "authorized_access_point": "Christianisme - Relations - Religion chinoise"} 1 +2024-09-10 15:43:10.022083 2024-09-10 15:43:10.022088 3addcf7b-2e50-48ef-af7a-6cbe339f8747 {"md5": "c77f814b9eda1b58419160f5aabe7853", "pid": "029205794", "note": [{"label": ["Employer les subdivisions chronologiques communes"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Ressortissants des États membres de l'Union européenne"}, {"authorized_access_point": "Droit social (droit européen)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/029205794", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029205794", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12088093v", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12088093", "source": "BNF"}], "variant_access_point": ["Espace social européen", "Europe sociale", "Marché intérieur européen - Aspect social", "Politique sociale européenne"], "authorized_access_point": "Politique sociale - Pays de l'Union européenne"} 1 +2024-09-10 15:43:10.122944 2024-09-10 15:43:10.122947 3dcfde9e-9899-4e5e-b1f8-cb98769e0703 {"md5": "db86c475f63bd0db9bb8308e3d36ca0d", "pid": "029342147", "note": [{"label": ["La grande dépression : les États-Unis en crise, 1929-1933 / J. Heffer, 1991", "The Great Depression / D. F. Burg, 2005"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Crise économique (1929)"}], "related": [{"authorized_access_point": "New Deal"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/029342147", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029342147", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb120988849", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12098884", "source": "BNF"}], "classification": [{"name": "Économie politique", "type": "bf:ClassificationDdc", "classificationPortion": "330"}, {"name": "Histoire du reste du monde", "type": "bf:ClassificationDdc", "classificationPortion": "950"}], "variant_access_point": ["Grande dépression (États-Unis ; 1929-1939)"], "authorized_access_point": "Crise économique (1929) - États-Unis"} 1 +2024-09-10 15:43:11.038845 2024-09-10 15:43:11.038851 7c8719ee-78d4-40ae-bb97-ec63808cf9e6 {"md5": "5454c2e41d6e7b7f136c55a8436cdc8b", "pid": "029888026", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/029888026", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029888026", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12141859j", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12141859", "source": "BNF"}], "authorized_access_point": "Histoire religieuse - Portugal"} 1 +2024-09-10 15:43:10.19802 2024-09-10 15:43:10.198025 61a5211b-a608-42de-b389-3d01da583969 {"md5": "dbe2cb577266dd01f3181ff1405aeaae", "pid": "029344212", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Comportement humain"}, {"authorized_access_point": "Psychodiagnostics"}, {"authorized_access_point": "Psychologie - Méthodologie"}], "related": [{"authorized_access_point": "Méthode ERTOMIS"}, {"authorized_access_point": "Méthode ELHAN"}, {"authorized_access_point": "Analyse comportementale des adolescents"}, {"authorized_access_point": "Analyse comportementale des enfants"}, {"authorized_access_point": "Méthode ABA"}, {"authorized_access_point": "Modification du comportement"}, {"authorized_access_point": "Profilage (droit)"}, {"authorized_access_point": "Thérapie comportementale"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Quantification de soi"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Analyse comportementale"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85012901", "source": "LCSH"}], "authorized_access_point": "Behavioral assessment"}], "identifier": "http://www.idref.fr/029344212", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029344212", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12099028v", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12099028", "source": "BNF"}], "classification": [{"name": "Psychologie, psychanalyse", "type": "bf:ClassificationDdc", "classificationPortion": "150"}], "variant_access_point": ["Analyse du comportement", "Comportement humain - Évaluation", "Évaluation comportementale", "Évaluation du comportement"], "authorized_access_point": "Analyse comportementale"} 1 +2024-09-10 15:43:10.275808 2024-09-10 15:43:10.275811 ccc31ecd-b36c-492d-b59e-49e9852d5c59 {"md5": "618dcf6b3a82a4f68759bf481bde9ea7", "pid": "029347254", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/029347254", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029347254", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb120992768", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12099276", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}, {"name": "Économie politique", "type": "bf:ClassificationDdc", "classificationPortion": "330"}], "authorized_access_point": "Patrimoine - Gestion - Logiciels"} 1 +2024-09-10 15:43:10.34261 2024-09-10 15:43:10.342616 aed1e814-6c28-44e9-8f62-672431ca7442 {"md5": "e34cf556cd4a5fea09814668a9750f6e", "pid": "029349230", "note": [{"label": ["Dict. encycl. de l'information et de la documentation"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bibliothéconomie - Logiciels"}, {"authorized_access_point": "Informatique documentaire"}, {"authorized_access_point": "Systèmes d'information"}, {"authorized_access_point": "Logiciels"}], "related": [{"authorized_access_point": "Vidéodisques"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/029349230", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029349230", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb120994504", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12099450", "source": "BNF"}], "relation_pid": {"type": "redirect_from", "value": "085722545"}, "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}, {"name": "Sciences de l'information", "type": "bf:ClassificationDdc", "classificationPortion": "020"}], "variant_access_point": ["Gestion des documents - Logiciels", "Recherche documentaire - Logiciels"], "authorized_access_point": "Logiciels documentaires"} 1 +2024-09-10 15:43:10.410263 2024-09-10 15:43:10.410267 52fe7a19-1f12-4b5c-a6f8-fcbf64712927 {"md5": "20ff90116cb125f72060d76119ea2bbe", "pid": "029404614", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Abbayes - [Localisations géographiques]"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Oliwa (pologne) - Abbaye"}], "identifier": "http://www.idref.fr/029404614", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029404614", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12103944f", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12103944", "source": "BNF"}], "classification": [{"name": "Religion", "type": "bf:ClassificationDdc", "classificationPortion": "200"}, {"name": "Construction", "type": "bf:ClassificationDdc", "classificationPortion": "690"}, {"name": "Architecture", "type": "bf:ClassificationDdc", "classificationPortion": "720"}], "authorized_access_point": "Abbayes - Pologne"} 1 +2024-09-10 15:43:10.491925 2024-09-10 15:43:10.491936 c36455c1-d7b1-44a8-9d79-c8fb5a607698 {"md5": "af1ec59e9608555f8604d6a5a9ae19c5", "pid": "029410312", "note": [{"label": ["Sous cette vedette, on trouve les documents sur les facteurs humains dans les systèmes informatiques. Les documents sur les systèmes informatiques qui fonctionnent en temps réel se trouvent sous Systèmes conversationnels (informatique)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ergonomie"}, {"authorized_access_point": "Systèmes homme-machine"}], "related": [{"authorized_access_point": "Conception centrée sur l'utilisateur"}, {"authorized_access_point": "Cyberpsychologie"}, {"authorized_access_point": "Intelligence ambiante"}, {"authorized_access_point": "Interfaces utilisateur (informatique)"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Aide en ligne (informatique)"}, {"authorized_access_point": "Apprentissage basé sur l'explication"}, {"authorized_access_point": "Co-adaptation (informatique)"}, {"authorized_access_point": "Crowdsourcing"}, {"authorized_access_point": "Ergonomie cognitive"}, {"authorized_access_point": "Interaction multimodale"}, {"authorized_access_point": "Traitement automatique du langage naturel"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh88003229", "source": "LCSH"}], "authorized_access_point": "Human-computer interaction"}, {"source": "RVMLaval", "authorized_access_point": "Interaction personne-ordinateur"}], "identifier": "http://www.idref.fr/029410312", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029410312", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12104414c", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12104414", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Communication homme-ordinateur", "Dialogue homme-ordinateur", "Ergonomie informatique", "Facteurs humains dans les systèmes informatiques", "HCI", "Homme-ordinateur, Interaction", "IHM", "Interaction homme-machine (informatique)", "Interaction homme-ordinateur", "Interaction humain-système", "Ordinateur-homme, Interaction", "Relations homme-ordinateur", "Systèmes coopératifs (informatique)"], "authorized_access_point": "Interaction humain-machine"} 1 +2024-09-10 15:43:11.12536 2024-09-10 15:43:11.125367 82735d26-5c9b-4e91-a55f-aef5be488198 {"md5": "d5fca81433caf7634d8a43f11fbcf757", "pid": "029918006", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Chimie"}, {"authorized_access_point": "Sciences - Formules"}, {"authorized_access_point": "Sciences - Notation"}], "related": [{"authorized_access_point": "Chimie - Nomenclature"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Équations chimiques"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Chimie -- Notation"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85023003", "source": "LCSH"}], "authorized_access_point": "Chemistry--Notation"}], "identifier": "http://www.idref.fr/029918006", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029918006", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb121441867", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12144186", "source": "BNF"}], "classification": [{"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}, {"name": "Chimie, minéralogie, cristallographie", "type": "bf:ClassificationDdc", "classificationPortion": "540"}], "variant_access_point": ["Chimie - Formules", "Chimie - Symboles", "Notation chimique", "Symboles chimiques"], "authorized_access_point": "Chimie - Notation"} 1 +2024-09-10 15:43:10.586255 2024-09-10 15:43:10.586259 b6667bf8-a055-4854-be06-ccd739c400f5 {"md5": "db326a0e68d15e53b169a10815b37d10", "pid": "029575168", "note": [{"label": ["Grand Larousse illustré (art. : Rome - Religion)", "Hist. des religions / H. C. Puech, 1970", "Dict. des religions / P. Poupard, 1984 (art. : Romaine, religion)"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les documents sur les cultes pratiqués dans la Rome antique, qu'il s'agisse des cultes propres à la religion romaine ou des cultes liés à d'autres religions"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Vestales"}, {"authorized_access_point": "Religion romaine"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Taurobole"}, {"authorized_access_point": "Bacchanales"}, {"authorized_access_point": "Culte impérial - Rome"}, {"authorized_access_point": "Ver sacrum"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85034739", "source": "LCSH"}], "authorized_access_point": "Cults--Rome"}, {"source": "RVMLaval", "authorized_access_point": "Cultes -- Rome"}], "identifier": "http://www.idref.fr/029575168", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029575168", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12117201d", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12117201", "source": "BNF"}], "classification": [{"name": "Religion", "type": "bf:ClassificationDdc", "classificationPortion": "200"}, {"name": "Archéologie. Histoire ancienne", "type": "bf:ClassificationDdc", "classificationPortion": "930"}], "authorized_access_point": "Cultes - Rome"} 1 +2024-09-10 15:43:10.66714 2024-09-10 15:43:10.667145 3455f905-0392-4219-ba38-af45a99a3a3a {"md5": "2e303d39129606d739e61e13b6615a6e", "pid": "029652308", "note": [{"label": ["Dict. de la sociologie / R. Boudon, 1989"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Interaction sociale"}, {"authorized_access_point": "Sciences sociales - Méthodologie"}], "related": [{"authorized_access_point": "Réseaux sociaux"}, {"authorized_access_point": "Sociométrie"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/029652308", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029652308", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12123187x", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12123187", "source": "BNF"}], "classification": [{"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}], "variant_access_point": ["Analyse de réseau (sciences sociales)", "Réseau, Analyse de (sciences sociales)", "Réseaux (sciences sociales)"], "authorized_access_point": "Sciences sociales - Analyse de réseau"} 1 +2024-09-10 15:43:10.739601 2024-09-10 15:43:10.739606 b2457d5e-32e3-448e-95c6-3ef862cecbc2 {"md5": "cab633b88ca58cc425d62e3a7f7703b0", "pid": "029726190", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/029726190", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029726190", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12128840d", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12128840", "source": "BNF"}], "authorized_access_point": "Vêtements - Industrie et commerce - Logiciels"} 1 +2024-09-10 15:43:10.815892 2024-09-10 15:43:10.815897 ce23246d-905b-44a5-9805-849625a55e53 {"md5": "7c2352406c860287cbafa5e06299f5d2", "pid": "029753090", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Prise de décision (statistique)"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Statistique bayésienne non paramétrique"}, {"authorized_access_point": "Segmentation bayésienne"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Statistique bayésienne"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85012506", "source": "LCSH"}], "authorized_access_point": "Bayesian statistical decision theory"}], "identifier": "http://www.idref.fr/029753090", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029753090", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb121309043", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12130904", "source": "BNF"}], "classification": [{"name": "Mathématiques", "type": "bf:ClassificationDdc", "classificationPortion": "510"}], "variant_access_point": ["Analyse bayésienne", "Bayes, Solution de", "Bayes, Théorème de", "Inférence bayésienne", "Prise de décision (statistique bayésienne)", "Réseaux bayésiens", "Solution de Bayes", "Théorème de Bayes"], "authorized_access_point": "Statistique bayésienne"} 1 +2024-09-10 15:43:10.887349 2024-09-10 15:43:10.887352 6f8ef096-4fa5-409d-9a5e-c273be7533b3 {"md5": "bdcb2d8dad08282f1421d9331c79aca5", "pid": "029755999", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Relations internationales - 1933-1945"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Guerre mondiale (1939-1945) - Gouvernements en exil"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Guerre mondiale (1939-1945) -- Histoire diplomatique"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85148402", "source": "LCSH"}], "authorized_access_point": "World War, 1939-1945--Diplomatic history"}], "identifier": "http://www.idref.fr/029755999", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029755999", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb121311253", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12131125", "source": "BNF"}], "classification": [{"name": "Sciences politiques", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Histoire et géographie (généralités)", "type": "bf:ClassificationDdc", "classificationPortion": "900"}], "authorized_access_point": "Guerre mondiale (1939-1945) - Histoire diplomatique"} 1 +2024-09-10 15:43:10.96395 2024-09-10 15:43:10.963955 cdb6fbd5-caf7-40d3-8398-36b15a5bb700 {"md5": "6a8ed8dcd8f01547d5466eb97d9d505e", "pid": "029795826", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Guerre mondiale (1939-1945) - Opérations militaires - France (1944-1945)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/029795826", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029795826", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12134494g", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12134494", "source": "BNF"}], "authorized_access_point": "Bataille des Alpes (France ; 1944-1945)"} 1 +2024-09-10 15:43:11.282937 2024-09-10 15:43:11.282941 00ad3bb9-914c-4d02-9760-8d8bf290b360 {"md5": "067a17e5fcb83aafb8943d818531f692", "pid": "029958857", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bases de données - Gestion"}, {"authorized_access_point": "Bases de données relationnelles"}], "related": [{"authorized_access_point": "Oracle Application Express (environnement de développement d'applications)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/029958857", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029958857", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12147371g", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12147371", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "authorized_access_point": "Oracle (système informatique)"} 1 +2024-09-10 15:43:11.359945 2024-09-10 15:43:11.35995 6b2b0748-4821-4f02-b073-ac399903f626 {"md5": "98ee4de9e11bc729017c59addafff3b0", "pid": "03001235X", "note": [{"label": ["Grand Larousse universel", "Dict. de la musique / M. Honegger, 1976", "Dict. de la musique / M. Vignal, 2005", "Dict. des mots de la musique / J. Siron, 2006"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les documents sur la technique d'écriture musicale à plusieurs voix. Les compositions polyphoniques se trouvent sous Chansons polyphoniques et Polyphonies sacrées"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Composition (musique)"}], "related": [{"authorized_access_point": "Ars nova"}, {"authorized_access_point": "Contrepoint"}, {"authorized_access_point": "Chansons polyphoniques"}, {"authorized_access_point": "Fugues (musique)"}, {"authorized_access_point": "Polyphonies sacrées"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Cantus firmus"}, {"authorized_access_point": "Faux-bourdon (musique)"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85033444", "source": "LCSH"}], "authorized_access_point": "Counterpoint"}, {"source": "RVMLaval", "authorized_access_point": "Polyphonies -- Histoire et critique"}], "identifier": "http://www.idref.fr/03001235X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03001235X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12151616x", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12151616", "source": "BNF"}], "classification": [{"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "variant_access_point": ["Polyphonie", "Musique polyphonique"], "authorized_access_point": "Polyphonie (musique)"} 1 +2024-09-10 15:43:11.429294 2024-09-10 15:43:11.4293 d8562bb6-424b-4ac2-9265-8ec36491d0df {"md5": "140be787db2eeabd6ee43b6fa8ec831d", "pid": "030017653", "note": [{"label": ["Mourre", "GLU"], "noteType": "dataSource"}, {"label": ["Laval RVM, 1993-02"], "noteType": "dataNotFound"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Droit romain"}, {"authorized_access_point": "Magistrats (Rome)"}], "related": [{"authorized_access_point": "Plèbe (Rome)"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Édiles (Rome)"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85137435", "source": "LCSH"}], "authorized_access_point": "Tribunus plebis"}], "identifier": "http://www.idref.fr/030017653", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030017653", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb121520244", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12152024", "source": "BNF"}], "variant_access_point": ["Puissance tribunitienne", "Tribuni plebis", "Tribunicia potestas"], "authorized_access_point": "Tribuns de la plèbe (Rome)"} 1 +2024-09-10 15:43:11.507746 2024-09-10 15:43:11.507749 f6ce75bc-4c85-45b4-8772-58009d2ad084 {"md5": "ae878fdfff544f9b857e34b27bcdba9a", "pid": "030055849", "note": [{"label": ["Laval RVM, 1999-01"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/030055849", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030055849", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12154960z", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12154960", "source": "BNF"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}, {"type": "bf:ClassificationDdc", "classificationPortion": "950"}], "authorized_access_point": "Histoire religieuse - Colombie"} 1 +2024-09-10 15:43:11.582542 2024-09-10 15:43:11.582547 95ec21a7-e684-449d-8e4a-e792b0a4111d {"md5": "09d24c9f94740c600634ce189a6ed401", "pid": "030086469", "note": [{"label": ["Laval RVM (en ligne), 2005-05-19"], "noteType": "dataNotFound"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/030086469", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030086469", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb121573543", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12157354", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}, {"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}], "authorized_access_point": "Population - Histoire - Logiciels"} 1 +2024-09-10 15:43:11.685665 2024-09-10 15:43:11.685674 1cf8e661-2f54-43ea-ba86-3e5d2bfc03ed {"md5": "cfc2656544a826f90eeac01e971d6b8c", "pid": "030128145", "note": [{"label": ["Hyperdocuments : hypertextes, hypermédias / J.-P. Balpe, 1990"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bases de données - Gestion"}, {"authorized_access_point": "Multimédias interactifs"}], "related": [{"authorized_access_point": "HTTP (protocole de réseaux d'ordinateurs)"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "HTTP (protocole de réseaux d'ordinateurs)"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh88002671", "source": "LCSH"}], "authorized_access_point": "Hypertext systems"}], "identifier": "http://www.idref.fr/030128145", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030128145", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13319505k", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13319505", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Hyperdocuments", "Hypertexte"], "authorized_access_point": "Hypertextes"} 1 +2024-09-10 15:43:11.757092 2024-09-10 15:43:11.757096 e01d9165-8e8e-4287-a0b7-184f84043575 {"md5": "376406b3741b7d00bf51d637f24027e7", "pid": "03018729X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "PASCAL-BTP (banque de données)"}], "identifier": "http://www.idref.fr/03018729X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03018729X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb121654752", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12165475", "source": "BNF"}], "classification": [{"name": "Technique", "type": "bf:ClassificationDdc", "classificationPortion": "600"}, {"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "authorized_access_point": "Génie civil - Bases de données"} 1 +2024-09-10 15:43:11.824702 2024-09-10 15:43:11.824706 a95ed022-d337-45f9-9290-a87ed1951da5 {"md5": "7446bdb86582ca7b4f0578265c7be742", "pid": "030219884", "note": [{"label": ["Wikipédia (art. : Wii) - https://fr.wikipedia.org (2021-12-08)", "Nintendo - http://www.nintendo.fr (2012-10-05)", "Video game Bible : 1985-2002 / A. Slaven, 2002", "Le plaisir de jouer ensemble : joueurs casuals et interfaces gestuelles de la Wii / E. Jacques, 2011"], "noteType": "dataSource"}, {"label": ["\\"Nintendo\\" et \\"Nintendo Entertainment System\\" sont des appellations commerciales", "Sous cette vedette, on trouve les documents sur le matériel ainsi que sur les jeux eux-mêmes"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Jeux vidéo"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh91002267", "source": "LCSH"}], "authorized_access_point": "Nintendo video games"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2007007398", "source": "LCSH"}], "authorized_access_point": "Nintendo Wii video games"}, {"source": "RVMLaval", "authorized_access_point": "Jeux vidéo Nintendo"}, {"source": "RVMLaval", "authorized_access_point": "Jeux vidéo Nintendo Wii"}], "identifier": "http://www.idref.fr/030219884", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030219884", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12168198m", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12168198", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}, {"name": "Jeux", "type": "bf:ClassificationDdc", "classificationPortion": "793"}], "variant_access_point": ["Jeux vidéo Nintendo", "NES (jeux vidéo)", "Nintendo 64 (jeux vidéo)", "Nintendo Entertainment System (jeux vidéo)", "Super NES (jeux vidéo)", "Super Nintendo Entertainment System (jeux vidéo)", "Wii (jeux vidéo)"], "authorized_access_point": "Nintendo (jeux vidéo)"} 1 +2024-09-10 15:43:11.895036 2024-09-10 15:43:11.89504 4a23d234-93dc-480e-b1c9-bc340a6e1259 {"md5": "de841dd2d1e52237f52fce0a43f55709", "pid": "030336880", "note": [{"label": ["Dict. de la chim. et de ses appl./ Cl. Duval, 1978"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Matière - Propriétés"}], "related": [{"authorized_access_point": "Réactions chimiques"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/030336880", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030336880", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb121773326", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12177332", "source": "BNF"}], "classification": [{"name": "Chimie", "type": "bf:ClassificationDdc", "classificationPortion": "540"}], "variant_access_point": ["Conservation de la matière, Principe de", "Loi de conservation de la matière", "Loi de Lavoisier", "Principe de conservation de la matière", "Principe de conservation des éléments", "Principe de Lavoisier"], "authorized_access_point": "Lavoisier, Loi de"} 1 +2024-09-10 15:43:11.967215 2024-09-10 15:43:11.967219 5d861181-3917-4965-8a9c-99a2bedd9857 {"md5": "c4041d032e3a69375edf68866b32192d", "pid": "030423724", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fenêtres (informatique)"}, {"authorized_access_point": "Programmation (informatique)"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "XFree86 (système informatique)"}], "identifier": "http://www.idref.fr/030423724", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030423724", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12184011w", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12184011", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Système X Window (système informatique)", "X (système informatique)", "X11 (système informatique)"], "authorized_access_point": "X Window System (système informatique)"} 1 +2024-09-10 15:43:12.035302 2024-09-10 15:43:12.035306 a8208272-a7d3-4973-8678-2b144e046227 {"md5": "85f18dcdb3fa52a15b3cc30beb4f4fc6", "pid": "030435056", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Calendrier (chronologie)"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh98000959", "source": "LCSH"}], "authorized_access_point": "Calendar, Ethiopian"}, {"source": "RVMLaval", "authorized_access_point": "Calendrier éthiopien"}], "identifier": "http://www.idref.fr/030435056", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030435056", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12185009k", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12185009", "source": "BNF"}], "authorized_access_point": "Calendrier éthiopien"} 1 +2024-09-10 15:43:12.113048 2024-09-10 15:43:12.113053 f56770d1-5a81-468e-b6a0-9ee8425c79f8 {"md5": "ed6fb6a69aceb87a2b9ddda92339ec05", "pid": "030642841", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Microordinateurs"}, {"authorized_access_point": "IBM (ordinateurs)"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "PC (ordinateur)"}, {"authorized_access_point": "IBM PC/AT (ordinateur)"}, {"authorized_access_point": "IBM PC/XT (ordinateur)"}, {"authorized_access_point": "IBM PCjr (ordinateur)"}, {"authorized_access_point": "IBM PS/2 (ordinateur)"}], "identifier": "http://www.idref.fr/030642841", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030642841", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb122018278", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12201827", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["IBM (micro-ordinateurs)"], "authorized_access_point": "IBM (microordinateurs)"} 1 +2024-09-10 15:43:23.4525 2024-09-10 15:43:23.452503 26dcf341-1999-41ef-9f63-23dbb98bc069 {"md5": "92c2ec9c737646b0c5d9850582d5a376", "pid": "17939360X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/17939360X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/17939360X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16776255x", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16776255", "source": "BNF"}], "classification": [{"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}, {"name": "Éducation", "type": "bf:ClassificationDdc", "classificationPortion": "370"}], "authorized_access_point": "Échanges culturels danois"} 1 +2024-09-10 15:43:12.196051 2024-09-10 15:43:12.196055 ecc8af91-d51a-4530-aad7-d28ef85de1b3 {"md5": "8a0c07e17bfd7156840f89f13283f25d", "pid": "030768381", "note": [{"label": ["Laval RVM, 1991-02"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Politique et gouvernement - Chine - 1949-...."}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Crise des îles Quemoy et Matsu (1958)"}, {"authorized_access_point": "Crise des îles Quemoy et Matsu (1954-1955)"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85024375", "source": "LCSH"}], "authorized_access_point": "Chinese reunification question, 1949-"}, {"source": "RVMLaval", "authorized_access_point": "Chine, Question de la réunification de la (1949-....)"}], "identifier": "http://www.idref.fr/030768381", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030768381", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb122118202", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12211820", "source": "BNF"}], "variant_access_point": ["Question de la réunification de la Chine (1949-....)", "Réunification de la Chine, Question de la (1949-.....)", "Question de Taiwan (1949-....)", "Taiwan, Question de (1949-....)"], "authorized_access_point": "Chine, Question de la réunification de la (1949-....)"} 1 +2024-09-10 15:43:12.267521 2024-09-10 15:43:12.267526 e24c2d09-d647-4735-a1d3-c192bfac2abf {"md5": "0174463ff9eecd9afe6dc15f78a4d7af", "pid": "03082401X", "note": [{"label": ["Colonies formées de citoyens romains établies dans les pays nouvellement conquis ou adverses", "S'emploie également en subdivision"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Colonies"}, {"authorized_access_point": "Rome"}], "related": [{"authorized_access_point": "Expansion territoriale - Rome"}, {"authorized_access_point": "Canabae"}, {"authorized_access_point": "Citoyenneté (droit romain)"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Pomerium"}], "identifier": "http://www.idref.fr/03082401X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03082401X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12216223n", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12216223", "source": "BNF"}], "classification": [{"name": "Géographie, tourisme (guides) et voyages", "type": "bf:ClassificationDdc", "classificationPortion": "910"}, {"name": "Préhistoire et histoire ancienne", "type": "bf:ClassificationDdc", "classificationPortion": "930"}], "variant_access_point": ["Colonies - Rome"], "authorized_access_point": "Colonies romaines"} 1 +2024-09-10 15:43:12.337498 2024-09-10 15:43:12.337501 dee329b2-82e6-4553-a582-0a97a611d1eb {"md5": "b26dccc55205968eba5431fc191af8a2", "pid": "030904218", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Antiquités - Lyon (Rhône) - Quartier de Vaise"}], "identifier": "http://www.idref.fr/030904218", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030904218", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb122226788", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12222678", "source": "BNF"}], "authorized_access_point": "Antiquités - Rhône (France)"} 1 +2024-09-10 15:43:12.418379 2024-09-10 15:43:12.418387 84955690-6d73-4f5d-9fcf-a6c7aa4a6dd2 {"md5": "62072f601d83307918968252aebdb818", "pid": "030909120", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Relations extérieures - Italie - 1861-1915"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/030909120", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030909120", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12223069w", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12223069", "source": "BNF"}], "authorized_access_point": "Irrédentisme - Italie"} 1 +2024-09-10 15:43:12.493581 2024-09-10 15:43:12.493585 f0977f83-c44b-4334-a787-5c44ee3cb9ee {"md5": "19c952c9b664d22451fa9714f4ec163b", "pid": "030924987", "note": [{"label": ["S'emploie également en subdivision aux sujets noms communs appropriés (instruments et équipements scientifiques et techniques)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mesures physiques"}, {"authorized_access_point": "Normes"}], "related": [{"authorized_access_point": "Calibreuses (machines)"}, {"authorized_access_point": "Incertitude de mesure"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Cales-étalons - Étalonnage"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Étalonnage"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh99004829", "source": "LCSH"}], "authorized_access_point": "Calibration"}], "identifier": "http://www.idref.fr/030924987", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030924987", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12224356m", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12224356", "source": "BNF"}], "classification": [{"name": "Sciences (généralités)", "type": "bf:ClassificationDdc", "classificationPortion": "500"}, {"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "variant_access_point": ["Calibrage"], "authorized_access_point": "Étalonnage"} 1 +2024-09-10 15:43:12.564568 2024-09-10 15:43:12.564573 2af48b15-6f05-4a84-ad5f-68b270b26d52 {"md5": "d9b8efd72295d7ae5b79bd4d4ce1808f", "pid": "030975689", "note": [{"label": ["Laval RVM, 1993-02"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Puissances de l'Axe"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Incident du Panay (Chine ; 1937)"}], "identifier": "http://www.idref.fr/030975689", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030975689", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12228429z", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12228429", "source": "BNF"}], "authorized_access_point": "Relations extérieures - Japon - 1912-1945"} 1 +2024-09-10 15:43:12.627816 2024-09-10 15:43:12.62782 52b567e9-809d-4cfc-8e50-967582f4e54c {"md5": "e5778695aaab0698119733d60657a9bd", "pid": "031018866", "note": [{"label": ["Sur le modèle de la vedette Juifs -- Émancipation"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Gordon, Émeutes de (1780)"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85021208", "source": "LCSH"}], "authorized_access_point": "Catholic emancipation"}], "identifier": "http://www.idref.fr/031018866", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031018866", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12231781d", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12231781", "source": "BNF"}], "variant_access_point": ["Émancipation des catholiques britanniques"], "authorized_access_point": "Catholiques - Émancipation - Grande-Bretagne"} 1 +2024-09-10 15:43:12.725094 2024-09-10 15:43:12.725099 cfc44925-6081-4220-960b-40e3f1e775a1 {"md5": "11d293d7d90a162aff96aa7e77ecac7e", "pid": "031067956", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Holographie"}, {"authorized_access_point": "Systèmes d'affichage"}], "related": [{"authorized_access_point": "Photographie stéréoscopique"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Imagerie tridimensionnelle en géologie"}, {"authorized_access_point": "Vidéo 3D (imagerie tridimensionnelle)"}, {"authorized_access_point": "Télévision en relief"}, {"authorized_access_point": "Imagerie tridimensionnelle en biologie"}, {"authorized_access_point": "Imagerie tridimensionnelle en médecine"}, {"authorized_access_point": "Imagerie quadridimensionnelle"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Imagerie tridimensionnelle"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85135021", "source": "LCSH"}], "authorized_access_point": "Three-dimensional display systems"}], "identifier": "http://www.idref.fr/031067956", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031067956", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12235704x", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12235704", "source": "BNF"}], "classification": [{"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "variant_access_point": ["Affichage tridimensionnel", "Imagerie 3D", "Imagerie en 3 dimensions", "Systèmes d'affichage tridimensionnel"], "authorized_access_point": "Imagerie tridimensionnelle"} 1 +2024-09-10 15:43:12.805514 2024-09-10 15:43:12.805519 d9990ce6-6a82-4209-9288-ec7d9f7a1bbd {"md5": "a1aaba8adbe7c6abc2235699e9693708", "pid": "031208495", "note": [{"label": ["Encycl. Larousse (art. : Photographie) - http://www.larousse.fr (2014-10-31)", "Photo numérique / J. A. King, 2014", "Guide de la photo numérique : objectif photos réussies / M. Leuchter, 2012"], "noteType": "dataSource"}, {"label": ["Voir aussi la subdivision Photographie"], "noteType": "seeReference"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Électronique numérique"}, {"authorized_access_point": "Photographie"}], "related": [{"authorized_access_point": "Appareils photographiques numériques"}, {"authorized_access_point": "Flickr (site web)"}, {"authorized_access_point": "Instagram (site web)"}, {"authorized_access_point": "Photographie argentique"}, {"authorized_access_point": "Traitement d'images - Techniques numériques"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Digiscopie"}, {"authorized_access_point": "Photographie mobile"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh90001789", "source": "LCSH"}], "authorized_access_point": "Photography -- Digital techniques"}, {"source": "RVMLaval", "authorized_access_point": "Photographie numérique"}], "identifier": "http://www.idref.fr/031208495", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031208495", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12246762j", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12246762", "source": "BNF"}], "classification": [{"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}, {"name": "Photographie", "type": "bf:ClassificationDdc", "classificationPortion": "770"}], "variant_access_point": ["Photographie - Techniques numériques"], "authorized_access_point": "Photographie numérique"} 1 +2024-09-10 15:43:12.874543 2024-09-10 15:43:12.874546 c453b0be-c5ed-4205-b7a4-f65e167059ce {"md5": "3f2f12ecf5193131ac264c3000d598b1", "pid": "031380107", "note": [{"label": ["Dict. de l'Académie de médecine - https://www.academie-medecine.fr/le-dictionnaire (2024-05-28)", "Dict. illustré des termes de médecine, 2012", "Dict. de biologie / J. Berthet, 2007", "Dict. de médecine Flammarion, 2008 (art. : Somatomédine)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Facteurs de croissance"}], "related": [{"authorized_access_point": "Protéines IGFBP"}, {"authorized_access_point": "Somatropine"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Facteur de croissance IGF-1"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85124781", "source": "LCSH"}], "authorized_access_point": "Somatomedin"}, {"source": "RVMLaval", "authorized_access_point": "Somatomédine"}], "identifier": "http://www.idref.fr/031380107", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031380107", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb122605848", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12260584", "source": "BNF"}], "classification": [{"name": "Sciences de la vie", "type": "bf:ClassificationDdc", "classificationPortion": "570"}], "variant_access_point": ["Facteurs de sulfatation", "Facteurs thymidine", "IGF (protéines)", "Insulin-like growth factors", "Somatomédine", "Somatomédines"], "authorized_access_point": "Facteurs de croissance IGF"} 1 +2024-09-10 15:43:12.945126 2024-09-10 15:43:12.94513 2df19881-d795-4749-9d01-6d8350e35792 {"md5": "2ceaf19c7de5815a127df3c91731dea5", "pid": "031531121", "note": [{"label": ["Laval RVM, 1992-02"], "noteType": "dataNotFound"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/031531121", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031531121", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12272835k", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12272835", "source": "BNF"}], "variant_access_point": ["Marché commun sud-américain"], "authorized_access_point": "Intégration économique - Amérique du Sud"} 1 +2024-09-10 15:43:13.016616 2024-09-10 15:43:13.016621 f7536fd3-9999-461d-bbd2-f01eb2fd6b8e {"md5": "337b440d949b609c338deb271ae4ceb9", "pid": "03166010X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fonctionnaires - Rome"}, {"authorized_access_point": "Provinces romaines"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Légats (Rome)"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85075776", "source": "LCSH"}], "authorized_access_point": "Legates (Rome)"}], "identifier": "http://www.idref.fr/03166010X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03166010X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12283328c", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12283328", "source": "BNF"}], "variant_access_point": ["Legati"], "authorized_access_point": "Légats (Rome)"} 1 +2024-09-10 15:43:13.084538 2024-09-10 15:43:13.084542 7dbdbcff-d8d2-4637-914d-334724a16043 {"md5": "5c1bd2331eb2327eaaf2924c97cde342", "pid": "031819877", "note": [{"label": ["GDEL"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent de la pratique des nations africaines de remplacer les fonctionnaires, les hommes d'affaires etc. par des Africains"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Africanisation"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85001756", "source": "LCSH"}], "authorized_access_point": "Africanization"}], "identifier": "http://www.idref.fr/031819877", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031819877", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12296380d", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12296380", "source": "BNF"}], "authorized_access_point": "Africanisation"} 1 +2024-09-10 15:43:13.151425 2024-09-10 15:43:13.15143 42cb4ea4-583c-484e-b35a-9cd317216dd4 {"md5": "40075cd9ac2951cc5f45d95a70c7e6ca", "pid": "032027524", "note": [{"label": ["Rens. tél., 1993-06-04, INRIA"], "noteType": "dataSource"}, {"label": ["Laval RVM (en ligne), 2003-08-28"], "noteType": "dataNotFound"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Interfaces (informatique)"}, {"authorized_access_point": "Programmation (informatique)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/032027524", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032027524", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12313565v", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12313565", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "authorized_access_point": "Générateurs d'interfaces (logiciels)"} 1 +2024-09-10 15:43:13.224057 2024-09-10 15:43:13.22406 b2b223cd-c0d7-4420-ac45-d37824dd1ff4 {"md5": "e0fb6de3a3d731cc9456a795045bbc3d", "pid": "032184034", "note": [{"label": ["Encycl. universalis (art. : Argentine) - http://www.universalis-edu.com (2024-05-30)", "Disparition et témoignage : réinventer la résistance dans l'Argentine des mères de la place de Mai / A. Verstraeten, 2013", "Les folles de la place de Mai / J.-P. Bousquet, 1982"], "noteType": "dataSource"}, {"label": ["Femmes proches des \\"disparus\\" de la dictature militaire de 1976-1983, qui manifestaient silencieusement sur la place de Mai à Buenos Aires chaque jeudi à partir d'avril 1977"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Personnes disparues - Argentine"}, {"authorized_access_point": "Argentine - 1976-1983 (Dictature militaire)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/032184034", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032184034", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb123263986", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12326398", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "950"}], "variant_access_point": ["Folles de la place de Mai", "Folles de la place de Mai (Argentine)", "Madres de Plaza de Mayo", "Mères de la place de Mai", "Place de Mai, Folles de la", "Place de Mai, Mères de la"], "authorized_access_point": "Mères de la place de Mai (Argentine)"} 1 +2024-09-10 15:43:13.293759 2024-09-10 15:43:13.293763 0da23d59-6fe5-410f-9192-ed3c0c23e37a {"md5": "13e2ef19810acc4cb39c3729b766bb78", "pid": "032317468", "note": [{"label": ["Voir aussi la subdivision Ressources Internet à tous sujets noms communs et noms propres pour les ressources électroniques sur ces sujets disponibles sur Internet"], "noteType": "seeReference"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Réseaux à grande distance (informatique)"}], "related": [{"authorized_access_point": "Administration électronique"}, {"authorized_access_point": "Babillards électroniques"}, {"authorized_access_point": "Internet - Gestion"}, {"authorized_access_point": "Internet et femmes"}, {"authorized_access_point": "Internet et immigrés"}, {"authorized_access_point": "Internet et personnes âgées"}, {"authorized_access_point": "Internet et propagande"}, {"authorized_access_point": "Intranets"}, {"authorized_access_point": "Langage et Internet"}, {"authorized_access_point": "Lecture sur écran"}, {"authorized_access_point": "Médias numériques"}, {"authorized_access_point": "Neutralité de l'Internet"}, {"authorized_access_point": "Cinéma et Internet"}, {"authorized_access_point": "Outernets"}, {"authorized_access_point": "RENATER"}, {"authorized_access_point": "Ressources Internet"}, {"authorized_access_point": "Théâtre et internet"}, {"authorized_access_point": "Viralité"}, {"authorized_access_point": "Cyberespace"}, {"authorized_access_point": "Démocratie électronique"}, {"authorized_access_point": "Droits de la personnalité et Internet"}, {"authorized_access_point": "Espaces publics multimédias"}, {"authorized_access_point": "Extranets"}, {"authorized_access_point": "Génération Internet"}, {"authorized_access_point": "Internet - Droit"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Thérapie en ligne"}, {"authorized_access_point": "Internet - Aspect économique"}, {"authorized_access_point": "Réputation numérique"}, {"authorized_access_point": "Formation en ligne"}, {"authorized_access_point": "Internet - Protection de la jeunesse"}, {"authorized_access_point": "Archives de l'Internet"}, {"authorized_access_point": "Internet dans les campagnes électorales"}, {"authorized_access_point": "Cybersexe"}, {"authorized_access_point": "Internet mobile"}, {"authorized_access_point": "Internet à haut débit"}, {"authorized_access_point": "Adresses Internet"}, {"authorized_access_point": "Chat (Internet)"}, {"authorized_access_point": "Aide psychologique en ligne"}, {"authorized_access_point": "Droit - Ressources Internet"}, {"authorized_access_point": "Ingénierie - Ressources Internet"}, {"authorized_access_point": "Médecine - Ressources Internet"}, {"authorized_access_point": "Noms de domaine (Internet)"}, {"authorized_access_point": "Pharmacie - Ressources Internet"}, {"authorized_access_point": "Programmation sur Internet"}, {"authorized_access_point": "Recherche sur Internet"}, {"authorized_access_point": "Sciences - Ressources Internet"}, {"authorized_access_point": "Serveurs gophers"}, {"authorized_access_point": "Téléphonie Internet"}, {"authorized_access_point": "Télévision - Ressources Internet"}, {"authorized_access_point": "WAIS (système d'information)"}, {"authorized_access_point": "Web"}, {"authorized_access_point": "Internet sur la télévision"}, {"authorized_access_point": "Enfants - Ressources Internet"}, {"authorized_access_point": "Visioconférences sur Internet"}, {"authorized_access_point": "Radio - Ressources Internet"}, {"authorized_access_point": "Bibliothèques - Ressources Internet"}, {"authorized_access_point": "Réseaux sociaux (Internet)"}, {"authorized_access_point": "Internet en milieu de travail"}, {"authorized_access_point": "Enquêtes en ligne"}, {"authorized_access_point": "Internet des objets"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Internet"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh92002816", "source": "LCSH"}], "authorized_access_point": "Internet"}], "identifier": "http://www.idref.fr/032317468", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032317468", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12337059x", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12337059", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Net (réseau d'ordinateurs)", "Sites Internet"], "authorized_access_point": "Internet"} 1 +2024-09-10 15:43:13.377508 2024-09-10 15:43:13.377511 6b80498b-f664-4e75-a9f2-1407532a341c {"md5": "7ae3406a562aeb0a6b86fa6a08719397", "pid": "032324650", "note": [{"label": ["Orphanet - https://www.orpha.net (2024-05-28)", "Syndrome de Laron : aspects diagnostiques, thérapeutiques et pronostiques / H. Latrech, M. Polak [in] La Presse médicale, 2016, 45, 1", "Dict. de médecine Flammarion, 2008 : Laron (syndrome de)", "Dict. de l'Académie de médecine : nanisme de type Laron - https://www.academie-medecine.fr/le-dictionnaire (2024-05-28)", "Dict. illustré des termes de médecine, 2012 : nanisme type Laron"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Maladies héréditaires"}, {"authorized_access_point": "Nanisme"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh93001158", "source": "LCSH"}], "authorized_access_point": "Laron dwarfism"}, {"source": "MeSH", "identifiedBy": [{"type": "uri", "value": "https://id.nlm.nih.gov/mesh/M0452907", "source": "MeSH"}], "authorized_access_point": "Laron Syndrome"}, {"source": "RVMLaval", "authorized_access_point": "Nanisme de Laron"}], "identifier": "http://www.idref.fr/032324650", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032324650", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb123376138", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12337613", "source": "BNF"}], "classification": [{"name": "Sciences médicales et paramédicales", "type": "bf:ClassificationDdc", "classificationPortion": "610"}], "variant_access_point": ["Déficience en récepteur d'hormone de croissance", "Déficit du récepteur à l'hormone de croissance", "Insensibilité complète à l'hormone de croissance", "Insensibilité primaire à l'hormone de croissance", "Laron, Syndrome de", "Nanisme de Laron", "Nanisme de type Laron", "Nanisme hypophysaire de type II", "Nanisme type Laron", "Résistance primaire à l'hormone de croissance", "Syndrome de l'insensibilité à l'hormone de croissance"], "authorized_access_point": "Syndrome de Laron"} 1 +2024-09-10 15:43:13.825134 2024-09-10 15:43:13.825138 ef3eaefe-a84f-4bc9-8438-315bb1ad4e3f {"md5": "d677fcb4c39b9ece6d1e2d253a2b94b3", "pid": "03256953X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Géomatique"}, {"authorized_access_point": "Logiciels"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/03256953X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03256953X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12357433r", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12357433", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}, {"name": "Géographie, tourisme (guides) et voyages", "type": "bf:ClassificationDdc", "classificationPortion": "910"}], "variant_access_point": ["Géographie - Logiciels"], "authorized_access_point": "Géographie (discipline) - Logiciels"} 1 +2024-09-10 15:43:13.461235 2024-09-10 15:43:13.461238 a1541fbb-9a71-4884-bc2e-20d243b04e07 {"md5": "d900d9574460b5f2007d2606e8d6ed03", "pid": "032324804", "note": [{"label": ["Les IGFs (insulin like growth factors) et leurs protéines de liaison (IGFBPs) [in] Journal de pédiatrie et de puériculture, 1996, 9, 7", "Rôle et variations de l'expression de la superfamille des protéines IGFBP par les cellules bêta des îlots pancréatiques, notamment en cas d'atteinte pancréatique comme celle induite par le diabète / C. Neftel, 2014 [mémoire]"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Protéines de liaison"}], "related": [{"authorized_access_point": "Facteurs de croissance IGF"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh90000055", "source": "LCSH"}], "authorized_access_point": "Insulin-like growth factor-binding proteins"}, {"source": "RVMLaval", "authorized_access_point": "Protéines de liaison de la somatomédine"}], "identifier": "http://www.idref.fr/032324804", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032324804", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12337626m", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12337626", "source": "BNF"}], "classification": [{"name": "Sciences de la vie", "type": "bf:ClassificationDdc", "classificationPortion": "570"}], "variant_access_point": ["IGF binding proteins", "IGFBP (protéines)", "Insulin-like growth factor binding proteins", "Protéines de liaison aux IGF", "Protéines de liaison de la somatomédine", "Protéines de liaison des IGF"], "authorized_access_point": "Protéines IGFBP"} 1 +2024-09-10 15:43:13.531444 2024-09-10 15:43:13.531449 5ca31536-fbc5-4974-a063-31e1c0a182fd {"md5": "a52f127bd771878490fc2fc823fca8e5", "pid": "032370474", "note": [{"label": ["Grand dict. encyclopédique Larousse (art. : Staline, Joseph) : complot des blouses blanches", "Les derniers complots de Staline : l'affaire des blouses blanches / Jean-Jacques Marie, 1993"], "noteType": "dataSource"}, {"label": ["Le 13 janvier 1953, à Moscou, des médecins juifs d'une organisation d'assistance sont accusés de l'assassinat de hauts dirigeants du régime. Ils seront réhabilités et libérés le 4 avril, après la mort de Staline"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Politique et gouvernement - URSS - 1941-1953"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/032370474", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032370474", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12341305k", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12341305", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "950"}], "variant_access_point": ["Affaire des blouses blanches (URSS ; 1953)", "Blouses blanches, Affaire des (1953)", "Complot des blouses blanches (1953)"], "authorized_access_point": "Affaire des blouses blanches (1953)"} 1 +2024-09-10 15:43:13.604095 2024-09-10 15:43:13.6041 cc8a71a3-f832-4164-8021-2617f4b9d806 {"md5": "f8a102d071d43014fae50c942f0c3c89", "pid": "03243782X", "note": [{"label": ["Grand Larousse universel", "Encycl. universalis (art. : Suppression des \\"Corn Laws\\") - http://www.universalis-edu.com (2018-08-14)", "Dict. encyclopédique d'histoire / M. Mourre, 1996"], "noteType": "dataSource"}, {"label": ["Législation protectionniste sur la production céréalière britannique, favorable aux grands propriétaires terriens. Renforcée en 1815, elle fut abolie en 1846-1849 à la suite de la campagne libre-échangiste de Richard Cobden et l'Anti-Corn-Law League"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Céréales - Industrie et commerce - Droit"}, {"authorized_access_point": "Protectionnisme"}, {"authorized_access_point": "Grande-Bretagne - Histoire"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Corn-Laws (Grande-Bretagne)"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85032773", "source": "LCSH"}], "authorized_access_point": "Corn laws (Great Britain)"}], "identifier": "http://www.idref.fr/03243782X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03243782X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb123467810", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12346781", "source": "BNF"}], "classification": [{"name": "Économie politique", "type": "bf:ClassificationDdc", "classificationPortion": "330"}, {"name": "Droit", "type": "bf:ClassificationDdc", "classificationPortion": "340"}, {"name": "Histoire de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "940"}], "variant_access_point": ["Lois sur le blé (Histoire de Grande-Bretagne)"], "authorized_access_point": "Corn-laws (Histoire de Grande-Bretagne)"} 1 +2024-09-10 15:43:13.686902 2024-09-10 15:43:13.686906 a3b26a24-9cb1-467b-bb93-5bf75a00f7f7 {"md5": "84d5dfa4d7e8d4d069f1942961721a1f", "pid": "032493940", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Philosophie - Chine - Histoire"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85100892", "source": "LCSH"}], "authorized_access_point": "Philosophy, Chinese--20th century"}], "identifier": "http://www.idref.fr/032493940", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032493940", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12351319g", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12351319", "source": "BNF"}], "classification": [{"name": "Philosophie", "type": "bf:ClassificationDdc", "classificationPortion": "100"}], "authorized_access_point": "Philosophie - Chine - 20e siècle"} 1 +2024-09-10 15:43:13.760322 2024-09-10 15:43:13.760327 a7f6110e-a0c5-4308-b4e9-cdc59625117f {"md5": "f05d4727090a3a8630daadd74d8f8689", "pid": "032506929", "note": [{"label": ["Grand Larousse universel", "Nouveau petit Robert 2008"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Vêtements de femme"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/032506929", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032506929", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12352358m", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12352358", "source": "BNF"}], "classification": [{"name": "Costume et apparence personnelle", "type": "bf:ClassificationDdc", "classificationPortion": "391"}, {"name": "Économie domestique", "type": "bf:ClassificationDdc", "classificationPortion": "640"}], "authorized_access_point": "Saris"} 1 +2024-09-10 15:43:13.896959 2024-09-10 15:43:13.896965 d1d6af60-a555-4aac-b93e-5fda4d0cff47 {"md5": "81bfe309f24b74d1f85075f50c72e359", "pid": "032675011", "note": [{"label": ["GLU", "Encycl. universalis, thesaurus"], "noteType": "dataSource"}, {"label": ["Cités préexistantes à la conquête et soumises à Rome, les municipes pouvaient être de droit romain, de droit latin, ou conserver un droit propre"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Administration locale"}, {"authorized_access_point": "Droit romain"}, {"authorized_access_point": "Provinces romaines"}], "related": [{"authorized_access_point": "Canabae"}, {"authorized_access_point": "Villes antiques"}, {"authorized_access_point": "Droit latin"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85088457", "source": "LCSH"}], "authorized_access_point": "Municipal corporations (Roman law)"}], "identifier": "http://www.idref.fr/032675011", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032675011", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12365897t", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12365897", "source": "BNF"}], "variant_access_point": ["Municipalités (droit romain)", "Municipia"], "authorized_access_point": "Municipes (droit romain)"} 1 +2024-09-10 15:43:13.968196 2024-09-10 15:43:13.968202 f72b94eb-70ed-4991-bd96-5b1319f9c1a5 {"md5": "f1e012830fbf1dd49dc763ca2172c33c", "pid": "032709501", "note": [{"label": ["Laval RVM (en ligne), 2005-03-18"], "noteType": "dataNotFound"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Données - Compression (informatique)"}, {"authorized_access_point": "Utilitaires (logiciels)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/032709501", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032709501", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb123687540", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12368754", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Logiciels de compactage des données (informatique)", "Logiciels de compression des données (informatique)"], "authorized_access_point": "Données - Compression (informatique) - Logiciels"} 1 +2024-09-10 15:43:14.04426 2024-09-10 15:43:14.044263 34016dab-40c0-4b88-93bb-d64ca61068ac {"md5": "ca63849f97f9257f2ae49e8d28604c79", "pid": "032916078", "note": [{"label": ["Sous cette vedette, on trouve les documents sur la gestion des systèmes informatiques. Les documents sur l'informatique appliquée à la gestion sont sous la vedette Gestion -- Informatique. Les documents sur les systèmes d'information spécialisés en gestion sont sous la vedette Systèmes d'information en gestion"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gestion"}], "related": [{"authorized_access_point": "Migration des systèmes d'information"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Gouvernance des données"}, {"authorized_access_point": "Scalabilité (informatique)"}, {"authorized_access_point": "Microsoft Windows Server Update Services (serveur)"}, {"authorized_access_point": "Infogérance"}, {"authorized_access_point": "Informatique - Procédures de secours"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Informatique -- Gestion"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2008102940", "source": "LCSH"}], "authorized_access_point": "Electronic data processing--Management"}], "identifier": "http://www.idref.fr/032916078", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032916078", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12385286x", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12385286", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Gestion de l'informatique", "Gestion de parc d'ordinateurs", "Systèmes informatiques - Gestion", "Gestion de parc informatique", "Gestion des systèmes informatiques", "Informatique, Centres d' - Gestion", "Informatique - Planification", "Ordinateurs - Gestion", "Parc d'ordinateurs - Gestion", "Parc informatique - Gestion", "Planification informatique"], "authorized_access_point": "Informatique - Gestion"} 1 +2024-09-10 15:43:14.151355 2024-09-10 15:43:14.15136 84a402bd-3e01-4c78-acbe-045c94589722 {"md5": "eee86744b82f888ca0dcbeaf6a522879", "pid": "032978294", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Arts - Japon"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Art - Japon - 794-1185 (Époque de Heian)"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85008402", "source": "LCSH"}], "authorized_access_point": "Arts, Japanese--Heian period, 794-1185"}], "identifier": "http://www.idref.fr/032978294", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032978294", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb123896175", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12389617", "source": "BNF"}], "classification": [{"name": "Arts (sauf littérature)", "type": "bf:ClassificationDdc", "classificationPortion": "700"}], "authorized_access_point": "Arts - Japon - 794-1185 (Époque de Heian)"} 1 +2024-09-10 15:43:14.229902 2024-09-10 15:43:14.229906 7bceeb76-07dd-4395-afd2-fff040378842 {"md5": "88873f512f1699637732f016da4d9cce", "pid": "033125341", "note": [{"label": ["Les tentatives de réforme du calendrier grégorien entre la fin du XIXe siècle et le milieu du XXe siècle / P. Rocher, 2011 - http://www.imcce.fr (2015-09-21)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Calendrier (chronologie)"}], "related": [{"authorized_access_point": "Réforme"}, {"authorized_access_point": "Calendrier grégorien"}, {"authorized_access_point": "Calendrier julien"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/033125341", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/033125341", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12402334r", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12402334", "source": "BNF"}], "classification": [{"name": "Astronomie", "type": "bf:ClassificationDdc", "classificationPortion": "520"}, {"name": "Histoire", "type": "bf:ClassificationDdc", "classificationPortion": "900"}], "variant_access_point": ["Calendrier - Réforme", "Réforme du calendrier"], "authorized_access_point": "Calendrier (chronologie) - Réforme"} 1 +2024-09-10 15:43:14.30744 2024-09-10 15:43:14.307445 c307c42f-740c-46f2-83a1-b5811920462d {"md5": "6f83b177de17b77eb6067ffa7160fcfb", "pid": "033136831", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Système tributaire (Chine)"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85137436", "source": "LCSH"}], "authorized_access_point": "Tributary system (China)"}], "identifier": "http://www.idref.fr/033136831", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/033136831", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12403376x", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12403376", "source": "BNF"}], "variant_access_point": ["Tribut (Chine)"], "authorized_access_point": "Système tributaire (Chine)"} 1 +2024-09-10 15:43:14.376437 2024-09-10 15:43:14.376441 a32b1533-2272-4ce1-bb7e-bbf3d90c039e {"md5": "20f39fdd5dbc6f9c5516e5230a985bc5", "pid": "033422605", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Art - Grande-Bretagne"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Architecture - Grande-Bretagne - 17e siècle"}, {"authorized_access_point": "Art jacobéen"}, {"authorized_access_point": "Art Stuart"}], "identifier": "http://www.idref.fr/033422605", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/033422605", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12428983g", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12428983", "source": "BNF"}], "classification": [{"name": "Arts (sauf littérature)", "type": "bf:ClassificationDdc", "classificationPortion": "700"}], "authorized_access_point": "Art - Grande-Bretagne - 17e siècle"} 1 +2024-09-10 15:43:14.447096 2024-09-10 15:43:14.447101 bba25c2a-4d16-4af9-a4c5-20329d1d7e91 {"md5": "12e3b4a8c3fe8863db02ce1ab6290efd", "pid": "033433763", "note": [{"label": ["Grand Larousse universel", "Encycl. universalis, 1989 (art. : Canada)", "Petit Robert 1, 1993", "The way of the WASP : how it made America, and how it can save it, so to speak / R. Brookhiser, 1991"], "noteType": "dataSource"}, {"label": ["Nom donné, aux États-Unis et au Canada, aux citoyens d'origine anglo-saxonne et de religion protestante, constituant ou ayant constitué les couches dirigeantes du pays"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Conditions sociales - États-Unis"}, {"authorized_access_point": "Blancs"}, {"authorized_access_point": "Ethnologie - Canada"}, {"authorized_access_point": "Ethnologie - États-Unis"}, {"authorized_access_point": "Protestants"}], "related": [{"authorized_access_point": "Américains d'origine britannique"}, {"authorized_access_point": "Canadiens anglophones"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/033433763", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/033433763", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12429955g", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12429955", "source": "BNF"}], "classification": [{"name": "Religion", "type": "bf:ClassificationDdc", "classificationPortion": "200"}, {"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}, {"name": "Groupes sociaux", "type": "bf:ClassificationDdc", "classificationPortion": "305"}, {"name": "Ethnologie", "type": "bf:ClassificationDdc", "classificationPortion": "390"}], "variant_access_point": ["WASPs", "White Anglo-Saxon Protestants"], "authorized_access_point": "WASP"} 1 +2024-09-10 15:43:14.518067 2024-09-10 15:43:14.518071 e406cece-8f09-4bca-a1b5-de697c13a4f6 {"md5": "90d2e5541fd97e61566a3725f87eed9e", "pid": "033642036", "note": [{"label": ["GLU"], "noteType": "dataSource"}, {"label": ["Partisans de Savonarole"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Histoire religieuse - Italie - 16e siècle"}, {"authorized_access_point": "Florence (Italie) - 1494-1512 (Exil des Médicis)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/033642036", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/033642036", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12448906f", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12448906", "source": "BNF"}], "authorized_access_point": "Piagnoni (Mouvement de Savonarole)"} 1 +2024-09-10 15:43:14.601314 2024-09-10 15:43:14.601319 66f1c716-fb9a-4a82-85d9-66aadd6221a1 {"md5": "6d77397339c4220f9c5eb08ac2362b2c", "pid": "033738653", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Utilitaires (logiciels)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/033738653", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/033738653", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12457541t", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12457541", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Disques rigides - Gestion"], "authorized_access_point": "Disques durs - Gestion"} 1 +2024-09-10 15:43:14.670381 2024-09-10 15:43:14.670387 a83b3305-7e9e-41a0-b5b2-1e761f997585 {"md5": "44aaa769cda6420b9ca60d118024bcc8", "pid": "03374033X", "note": [{"label": ["Laval RVM, 1994-08. - LCSH, 1994-09"], "noteType": "dataNotFound"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Équateur"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/03374033X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03374033X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12457696c", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12457696", "source": "BNF"}], "authorized_access_point": "Relations extérieures - Équateur"} 1 +2024-09-10 15:43:14.741492 2024-09-10 15:43:14.741495 00b6de3c-aad2-49b0-ba8e-9192c7435e91 {"md5": "018f2ebf90985a7f8152193bdd9535cd", "pid": "033869235", "note": [{"label": ["Une introduction à l'analyse du discours argumentatif / V. Mendenhall, 1990", "Grammaire du discours argumentatif / E. Eggs, 1994", "Le développement des discours argumentatifs / C. Golder, 1996"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Discours (linguistique)"}], "related": [{"authorized_access_point": "Argumentation"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/033869235", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/033869235", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12468269t", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12468269", "source": "BNF"}], "classification": [{"name": "Linguistique générale", "type": "bf:ClassificationDdc", "classificationPortion": "401"}], "variant_access_point": ["Analyse du discours argumentatif", "Argumentation (linguistique)", "Argumentation dans la langue", "Parole argumentative", "Texte - Argumentation", "Texte argumentatif", "Textes argumentatifs", "Topoï (linguistique)"], "authorized_access_point": "Discours argumentatif"} 1 +2024-09-10 15:43:14.810105 2024-09-10 15:43:14.810108 ac1bc1b9-0b7c-46bf-a425-73c45ebd9485 {"md5": "5a4815da484ad07f94ef9e23bfd4d7c4", "pid": "033895732", "note": [{"label": ["Laval RVM, 1997-02"], "noteType": "dataNotFound"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Logiciels"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/033895732", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/033895732", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12470661f", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12470661", "source": "BNF"}], "variant_access_point": ["Logiciels de gestion du personnel"], "authorized_access_point": "Personnel - Direction -- Logiciels"} 1 +2024-09-10 15:43:14.906249 2024-09-10 15:43:14.906253 c3b88179-18d3-4374-a791-405274b5beca {"md5": "3b1aecdbf84a7b41c454db92a3b1165c", "pid": "034054693", "note": [{"label": ["Grand Larousse universel", "Mourre"], "noteType": "dataSource"}, {"label": ["En Amérique latine, au 19e siècle et au début du 20e siècle, chefs politiques se faisant les champions des masses métisses et indiennes contre la bourgeoisie blanche et exerçant le pouvoir par des méthodes dictatoriales, avec l'appui de l'armée : par ex. J. Francia, J.A. Páez, J.M. Rosas, R. Carrera, P. Díaz, J.V. Gomez"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Politique et gouvernement - Amérique latine - 20e siècle"}, {"authorized_access_point": "Dictateurs"}, {"authorized_access_point": "Gouvernement militaire"}, {"authorized_access_point": "Hommes politiques"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Caudillos"}], "identifier": "http://www.idref.fr/034054693", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034054693", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb124850000", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12485000", "source": "BNF"}], "classification": [{"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}], "authorized_access_point": "Caudillos"} 1 +2024-09-10 15:43:14.976681 2024-09-10 15:43:14.976685 d4eb4c2d-b4ec-4014-b454-043475934665 {"md5": "611543313761e05ee3b9bf4c225c66e8", "pid": "03405491X", "note": [{"label": ["Encycl. universalis (Médiatisation d'Empire)", "GLU ; Mourre (Médiatisation)", "Mediatisierung ; SWD, 1995-04"], "noteType": "dataSource"}, {"label": ["Incorporation d'un État relevant directement de l'empereur dans un autre État de l'empire (Saint Empire puis Empire allemand)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Souveraineté"}, {"authorized_access_point": "Territoire - Acquisition"}, {"authorized_access_point": "Saint Empire romain germanique"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85082854", "source": "LCSH"}], "authorized_access_point": "Mediatized states"}], "identifier": "http://www.idref.fr/03405491X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03405491X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12485021z", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12485021", "source": "BNF"}], "classification": [{"name": "Sciences politiques", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Histoire médiévale, moderne et contemporaine (sauf la France)", "type": "bf:ClassificationDdc", "classificationPortion": "940"}], "variant_access_point": ["Médiatisation (Saint Empire romain germanique)"], "authorized_access_point": "Médiatisation d'Empire"} 1 +2024-09-10 15:43:15.043054 2024-09-10 15:43:15.043057 7906f23c-7143-4e75-92ce-538901f416c8 {"md5": "59182ee571cbef1c4ff4a2c65daddb20", "pid": "034133704", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Chartreuses (monastères) - [Localisations géographiques]"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Gosnay (Pas-de-Calais) - Chartreuse du Val Saint-Esprit"}, {"authorized_access_point": "Aix-en-Provence (Bouches-du-Rhône) - Couvent des Chartreux"}], "identifier": "http://www.idref.fr/034133704", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034133704", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12492226q", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12492226", "source": "BNF"}], "classification": [{"name": "Religion", "type": "bf:ClassificationDdc", "classificationPortion": "200"}, {"name": "Construction", "type": "bf:ClassificationDdc", "classificationPortion": "690"}, {"name": "Architecture", "type": "bf:ClassificationDdc", "classificationPortion": "720"}], "authorized_access_point": "Chartreuses (monastères) - France"} 1 +2024-09-10 15:43:15.116073 2024-09-10 15:43:15.116076 67a590a5-8a91-4734-9df5-25e2b4d2f850 {"md5": "89d92e202cba287aac804a2daa1cc412", "pid": "034195688", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Philosophie - Chine - Histoire"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85100889", "source": "LCSH"}], "authorized_access_point": "Philosophy, Chinese--960-1644"}], "identifier": "http://www.idref.fr/034195688", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034195688", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb124978822", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12497882", "source": "BNF"}], "classification": [{"name": "Philosophie", "type": "bf:ClassificationDdc", "classificationPortion": "100"}], "authorized_access_point": "Philosophie - Chine - 960-1644"} 1 +2024-09-10 15:43:15.200249 2024-09-10 15:43:15.200253 92509115-106c-45d6-8884-20ccacc526f2 {"md5": "93d99e3eabaf1b440ace88017257a407", "pid": "034254145", "note": [{"label": ["Access Basic 2 / B. Blier, 1995", "Crash course in Access Basic / A. Wyatt, S. Gilmore, 1994", "Access Basic cookbook / C. S. Valentine, 1993"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "BASIC (langage de programmation)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/034254145", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034254145", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12502863w", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12502863", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["AccessBasic (langage de programmation)"], "authorized_access_point": "Access Basic (langage de programmation)"} 1 +2024-09-10 15:43:15.282324 2024-09-10 15:43:15.28233 21acca3e-5b18-422c-8b9e-508469ab9769 {"md5": "1f1bce3a014d56e80ef098b6c1522c58", "pid": "034259910", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Partis politiques -- Bangladesh"}], "identifier": "http://www.idref.fr/034259910", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034259910", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12503320g", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12503320", "source": "BNF"}], "authorized_access_point": "Partis politiques - Bangladesh"} 1 +2024-09-10 15:43:15.355871 2024-09-10 15:43:15.355874 5c7893e7-9f79-4a37-bfbf-3cc6cd6716ad {"md5": "41ae46326a30714338c8e57e71b55584", "pid": "034308695", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Microordinateurs"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Amiga (ordinateur)"}, {"authorized_access_point": "CBM (ordinateur)"}, {"authorized_access_point": "Commodore 64 (ordinateur)"}, {"authorized_access_point": "Commodore 128 (ordinateur)"}, {"authorized_access_point": "PET (ordinateur)"}, {"authorized_access_point": "VIC 20 (ordinateur)"}], "identifier": "http://www.idref.fr/034308695", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034308695", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb125076777", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12507677", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "authorized_access_point": "Commodore (ordinateurs)"} 1 +2024-09-10 15:43:15.423939 2024-09-10 15:43:15.423942 78cddb7f-0243-4905-9078-95aef9be1617 {"md5": "dbf65946bd1c453d392ad216772afe17", "pid": "034342230", "note": [{"label": ["Vocabulaire de l'analyse littéraire / D. Bergez, V. Géraud, J.-J. Robrieux, 1994", "Dict. des termes littéraires, 2001", "Dict. du littéraire / P. Aron, D. Saint-Jacques, A. Viala, 2002", "Dict. des termes littéraires, 2005"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature - Esthétique"}], "related": [{"authorized_access_point": "Polyphonie (littérature)"}, {"authorized_access_point": "Carnavalesque"}, {"authorized_access_point": "Dialogue (littérature)"}, {"authorized_access_point": "Intertextualité"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh00009821", "source": "LCSH"}], "authorized_access_point": "Dialogism (Literary analysis)"}, {"source": "RVMLaval", "authorized_access_point": "Dialogisme"}], "identifier": "http://www.idref.fr/034342230", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034342230", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12510697c", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12510697", "source": "BNF"}], "classification": [{"name": "Poésie", "type": "bf:ClassificationDdc", "classificationPortion": "801"}], "authorized_access_point": "Dialogisme"} 1 +2024-09-10 15:43:15.490106 2024-09-10 15:43:15.490109 d586159d-d4a6-409c-b823-672681f4980b {"md5": "5135039fedbd1bcdf07f24fd94458aef", "pid": "034566228", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Philosophie - Chine - Histoire"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85100890", "source": "LCSH"}], "authorized_access_point": "Philosophy, Chinese--1644-1912"}], "identifier": "http://www.idref.fr/034566228", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034566228", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12530940n", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12530940", "source": "BNF"}], "classification": [{"name": "Philosophie", "type": "bf:ClassificationDdc", "classificationPortion": "100"}], "authorized_access_point": "Philosophie - Chine - 1644-1912"} 1 +2024-09-10 15:43:15.568916 2024-09-10 15:43:15.568922 c351c8b1-ecf6-4653-89b3-f1639f2366ec {"md5": "e4d21da8479fcaac27b6fab444f7f986", "pid": "034591966", "note": [{"label": ["Encycl. universalis (art. : Langages de programmation) - http://www.universalis-edu.com (2011-11-04)", "Encycl. de l'informatique et des systèmes d'information, 2006", "Langage Java / P. Bellot, C. Matiachoff [in] Techniques de l'ingénieur, 1998, H3088", "TermSciences - http://www.termsciences.fr (2011-11-04)", "The encycl. of computer languages - http://hopl.murdoch.edu.au (2011-11-04)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Langages de programmation"}], "related": [{"authorized_access_point": "Akka (plate-forme informatique)"}, {"authorized_access_point": "BlueJ (environnement de développement d'applications)"}, {"authorized_access_point": "Scala (langage de programmation)"}, {"authorized_access_point": "Hadoop (plate-forme informatique)"}, {"authorized_access_point": "OSGi (plate-forme informatique)"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Java Persistence API"}], "identifier": "http://www.idref.fr/034591966", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034591966", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12533207m", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12533207", "source": "BNF"}], "classification": [{"name": "Mathématiques", "type": "bf:ClassificationDdc", "classificationPortion": "510"}, {"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "authorized_access_point": "Java (langage de programmation)"} 1 +2024-09-10 15:43:15.649731 2024-09-10 15:43:15.649737 03e213f7-ebe0-475f-b55d-467c63eb6be7 {"md5": "434169f5015c6130ad610e7130710702", "pid": "034623574", "note": [{"label": ["L'aménagement linguistique dans le monde - http://www.tlfq.ulaval.ca (2008-11-26)", "Ethnologue (15th ed.) - http://www.ethnologue.com (2008-11-26)"], "noteType": "dataSource"}, {"label": ["Les langues du monde / M. Sala, I. Vintila-Radulescu, 1984. - Les langues dans le monde ancien et moderne / J. Perrot, 1981"], "noteType": "dataNotFound"}, {"label": ["Langue de Nouvelle-Calédonie (France)", "L'adjectif de langue correspondant est \\"tayo\\". Il est invariable"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Langues créoles françaises"}], "related": [{"authorized_access_point": "Langues mélanésiennes"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Tayo (langue)"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh95001065", "source": "LCSH"}], "authorized_access_point": "Tayo language"}], "identifier": "http://www.idref.fr/034623574", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034623574", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12536022p", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12536022", "source": "BNF"}], "classification": [{"name": "Langues", "type": "bf:ClassificationDdc", "classificationPortion": "400"}], "variant_access_point": ["Caldoche (langue)", "Kaldosh (langue)", "Langues créoles françaises - Nouvelle-Calédonie", "Patois de St-Louis (langue)"], "authorized_access_point": "Tayo (langue)"} 1 +2024-09-10 15:43:15.725775 2024-09-10 15:43:15.72578 bd54a30c-5233-4ba2-9cae-6cf57b1f204a {"md5": "559c53624db39749d36b47091d64a1e9", "pid": "034679391", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Informatique - Gestion"}, {"authorized_access_point": "Protection de l'information (informatique)"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Informatique -- Procédures de secours"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh89004334", "source": "LCSH"}], "authorized_access_point": "Electronic data processing--Backup processing alternatives"}], "identifier": "http://www.idref.fr/034679391", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034679391", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12540873j", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12540873", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Copies de sauvegarde (informatique)", "Copies de secours (informatique)", "Sauvegardes (informatique)", "Traitement déporté (informatique)", "Copies de sécurité (informatique)", "Informatique - Reprises en secours", "Informatique - Sauvegardes", "Informatique - Traitement déporté", "Mesures de sauvegarde (informatique)", "Procédures de sauvegarde (informatique)", "Procédures de secours (informatique)", "Reprises en secours (informatique)"], "authorized_access_point": "Informatique - Procédures de secours"} 1 +2024-09-10 15:43:15.803395 2024-09-10 15:43:15.803398 840ea0c5-8b57-4b4c-8164-40f3aa5be9e4 {"md5": "b1c9d7c5d81418dc737790057ecbb9a1", "pid": "034705384", "note": [{"label": ["Année 1994 dans \\"Le Monde", "Quid 1996 (p. 1161)", "Monde, 1997-02-24"], "noteType": "dataSource"}, {"label": ["Affaire consécutive à la faillite en 1989 de la société d'aménagement immobilier Whitewater Development, créée en 1978 dans l'Arkansas par les époux Clinton en copropriété avec des amis ; révélé en mars 1992 par le New York Times, le scandale du projet immobilier Whitewater devient alors une affaire politico-judiciaire qui a entraîné la condamnation de plusieurs proches des Clinton et pourrait connaître son dénouement en 1997-1998"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Politique et gouvernement - États-Unis - 1993-2001"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/034705384", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034705384", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12543176c", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12543176", "source": "BNF"}], "variant_access_point": ["Affaire Whitewater (1992-....)"], "authorized_access_point": "Whitewater, Affaire (1992-....)"} 1 +2024-09-10 15:43:15.864373 2024-09-10 15:43:15.864378 344b48b5-c67e-4a55-9520-8a5abcd03cec {"md5": "2485b554db2651eaf95c1aac25977f90", "pid": "03472690X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Serveurs (informatique)"}, {"authorized_access_point": "Web"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/03472690X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03472690X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12545061j", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12545061", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["MSN (serveur)"], "authorized_access_point": "Microsoft Network (serveur)"} 1 +2024-09-10 15:43:15.931481 2024-09-10 15:43:15.931486 4ef53443-005c-4387-bdbd-0d1fae746fd2 {"md5": "cffbf1a13cb2e72cd2b3a28bd31ed483", "pid": "034766995", "note": [{"label": ["LCNA (en ligne) 2004-09-20 : Microsoft BackOffice"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Architecture client-serveur (informatique)"}, {"authorized_access_point": "Gestionnaires de réseaux (logiciels)"}], "related": [{"authorized_access_point": "SNA (architecture des réseaux d'ordinateurs)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/034766995", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034766995", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb125486790", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12548679", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Back Office (logiciels)", "BackOffice (logiciels)", "Microsoft Back Office (logiciels)"], "authorized_access_point": "Microsoft BackOffice (logiciels)"} 1 +2024-09-10 15:43:16.012682 2024-09-10 15:43:16.012685 5f9e6b9e-b11d-4769-a40b-806b53de8865 {"md5": "f5f25464399df9cc3bbbfc75d74d07e3", "pid": "034781897", "note": [{"label": ["Laval RVM (en ligne), 2001-03-22"], "noteType": "dataNotFound"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bases de données relationnelles"}, {"authorized_access_point": "Langages de programmation"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/034781897", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034781897", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb125499792", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12549979", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Jet (langage de programmation)", "Microsoft Jet database engine (langage de programmation)", "Microsoft Jet DB engine (langage de programmation)", "Microsoft Jet engine (langage de programmation)"], "authorized_access_point": "Microsoft Jet (langage de programmation)"} 1 +2024-09-10 15:43:17.182063 2024-09-10 15:43:17.182067 28518a6f-575b-4591-9953-75ba7ee01ec7 {"md5": "1243ec663fdfc3f307b23269caf0b659", "pid": "035658622", "note": [{"label": ["LCSH (en ligne), 1998-09-07"], "noteType": "dataNotFound"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Didacticiels"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/035658622", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035658622", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13327542h", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13327542", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}, {"name": "Education et enseignement", "type": "bf:ClassificationDdc", "classificationPortion": "370"}, {"name": "Mathématiques", "type": "bf:ClassificationDdc", "classificationPortion": "510"}], "variant_access_point": ["Géométrie - Étude et enseignement -- Logiciels"], "authorized_access_point": "Géométrie - Didacticiels"} 1 +2024-09-10 15:43:16.085082 2024-09-10 15:43:16.085086 4d47706c-0317-4254-b0af-4ffe1833fe8c {"md5": "e235615a825de5cf3c793ebbb5286c2f", "pid": "034857923", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Droit d'auteur - Domaine public"}, {"authorized_access_point": "Droit d'auteur et informatique"}], "related": [{"authorized_access_point": "Droit d'auteur - Logiciels"}, {"authorized_access_point": "Logiciels gratuits"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh91002599", "source": "LCSH"}], "authorized_access_point": "Shareware (Computer software)"}], "identifier": "http://www.idref.fr/034857923", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034857923", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb125566086", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12556608", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Contribuciels", "Contributiels", "Logiciels à contribution volontaire", "Logiciels du domaine public", "Logiciels non brevetés", "Logiciels partagés", "Logiciels publics", "Logiciels tombés dans le domaine public", "Partagiciels", "Shareware (logiciels)"], "authorized_access_point": "Logiciels contributifs"} 1 +2024-09-10 15:43:16.183359 2024-09-10 15:43:16.183364 f3f030da-0307-4bce-8327-0c28ebbbd701 {"md5": "bd71d2661a762b599865e76587868397", "pid": "034885420", "note": [{"label": ["Laval RVM (en ligne), 2005-05-24"], "noteType": "dataNotFound"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "E-justice"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/034885420", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034885420", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb125590502", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12559050", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}, {"name": "Droit", "type": "bf:ClassificationDdc", "classificationPortion": "340"}], "authorized_access_point": "Justice - Administration - Logiciels"} 1 +2024-09-10 15:43:16.250277 2024-09-10 15:43:16.250281 0ebf3120-1866-4ed3-8e5a-f0d946890e09 {"md5": "1633ee32eeb05750e65ba2cd9c153303", "pid": "034892710", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Intégration de données (informatique)"}, {"authorized_access_point": "Bases de données - Conception"}, {"authorized_access_point": "Exploration de données"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Entrepôts de données"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh97003695", "source": "LCSH"}], "authorized_access_point": "Data warehousing"}], "identifier": "http://www.idref.fr/034892710", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034892710", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12559694b", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12559694", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Data warehouse", "Centralisation de données", "Entreposage de données", "Magasins de données"], "authorized_access_point": "Entrepôts de données"} 1 +2024-09-10 15:43:16.324224 2024-09-10 15:43:16.324227 4dae2553-7f07-4651-864a-91be23b9ed1e {"md5": "50d2763b38990d6ea4dbba0fbda3e5b1", "pid": "034960848", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Logiciels - Maintenance"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Gestion de configurations des logiciels"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh91002171", "source": "LCSH"}], "authorized_access_point": "Software configuration management"}], "identifier": "http://www.idref.fr/034960848", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034960848", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12565703q", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12565703", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Logiciels - Configuration -- Gestion", "Logiciels - Gestion de configuration", "Gestion de configuration logiciel"], "authorized_access_point": "Gestion de configurations des logiciels"} 1 +2024-09-10 15:43:16.404469 2024-09-10 15:43:16.404474 705a7900-23b8-4195-9e77-5796dea8fe59 {"md5": "6fe008391400b3b115c36f27ffb958f4", "pid": "035061308", "note": [{"label": ["Convergence et diversité à l'heure de la mondialisation / Économica, 1997"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Développement économique"}, {"authorized_access_point": "Économie ouverte"}], "related": [{"authorized_access_point": "Aide économique"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/035061308", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035061308", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12574241v", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12574241", "source": "BNF"}], "variant_access_point": ["Convergence des économies", "Convergence économique", "Harmonisation économique", "Productivité - Convergence", "Rapprochement (économie politique)"], "authorized_access_point": "Convergence (économie politique)"} 1 +2024-09-10 15:43:16.471543 2024-09-10 15:43:16.471546 265548bd-9128-4fd0-a2ca-5aeacda3bff7 {"md5": "396eabb7c7c3615816b1679314195884", "pid": "035095679", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Langages de script (informatique)"}, {"authorized_access_point": "Interpréteurs (logiciels)"}, {"authorized_access_point": "Microsoft Visual BASIC (langage de programmation)"}], "related": [{"authorized_access_point": "HTML (langage de balisage)"}, {"authorized_access_point": "Sites Web - Conception"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/035095679", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035095679", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb131666483", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13166648", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["VB Script (langage de programmation)", "Microsoft Visual BASIC Scripting Edition (langage de programmation)"], "authorized_access_point": "VBScript (langage de programmation)"} 1 +2024-09-10 15:43:16.54089 2024-09-10 15:43:16.540894 72b81861-7dbb-4fb9-b3a6-d9c1974e15b2 {"md5": "e0de63d30ef295601859d89dcef319ac", "pid": "035167734", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bases de données - Interrogation"}, {"authorized_access_point": "Recherche sur Internet"}, {"authorized_access_point": "Web"}, {"authorized_access_point": "Moteurs de recherche"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Qwant"}, {"authorized_access_point": "Google"}, {"authorized_access_point": "FUSIN (système informatique)"}, {"authorized_access_point": "Portails Internet"}, {"authorized_access_point": "Sites Web - Référencement"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Moteurs de recherche sur Internet"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh97007463", "source": "LCSH"}], "authorized_access_point": "Web search engines"}], "identifier": "http://www.idref.fr/035167734", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035167734", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb131716541", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13171654", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Annuaires électroniques (Internet)", "Index électroniques (Internet)", "Internet - Moteurs de recherche", "Internet - Outils de recherche", "Outils de recherche sur Internet", "Web - Moteurs de recherche", "Web - Outils de recherche"], "authorized_access_point": "Moteurs de recherche sur Internet"} 1 +2024-09-10 15:43:16.609706 2024-09-10 15:43:16.60971 516f0b15-1453-4bb2-b3fc-49a2356f449c {"md5": "e6ebede047027fbbe1d37c91a33772ee", "pid": "035198222", "note": [{"label": ["Le data warehouse : le data mining / J.-M. Franco..., 1997"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bases de données - Interrogation"}], "related": [{"authorized_access_point": "Analyse des données symboliques"}, {"authorized_access_point": "Entrepôts de données"}, {"authorized_access_point": "Modélisation prédictive"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Fouille de règles d'associations"}, {"authorized_access_point": "Systèmes de recommandation (informatique)"}, {"authorized_access_point": "Web usage mining"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh97002073", "source": "LCSH"}], "authorized_access_point": "Data mining"}], "identifier": "http://www.idref.fr/035198222", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035198222", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13173501n", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13173501", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Data mining", "Datamining", "Exploration de données (informatique)", "Extraction de données", "Forage de données", "Fouille de données", "Fouille de texte", "Prospection de données", "Text mining"], "authorized_access_point": "Exploration de données"} 1 +2024-09-10 15:43:16.679465 2024-09-10 15:43:16.679469 e825f222-4124-409a-abab-e5c9a2abcf7d {"md5": "4f2ce6bae2621c25985fa430c37d2a48", "pid": "035260521", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Langages de balisage"}], "related": [{"authorized_access_point": "XQuery (langage de programmation)"}, {"authorized_access_point": "Ressource Description Framework (informatique)"}, {"authorized_access_point": "SOA"}, {"authorized_access_point": "XUL (langage de balisage)"}, {"authorized_access_point": "SVG (langage de balisage)"}, {"authorized_access_point": "XSL (langage de balisage)"}, {"authorized_access_point": "SOAP (protocole de réseaux d'ordinateurs)"}, {"authorized_access_point": "SGML (langage de balisage)"}, {"authorized_access_point": "WML (langage de balisage)"}, {"authorized_access_point": "XSLT (langage de programmation)"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "SCXML (langage de balisage)"}, {"authorized_access_point": "ebXML (langage de balisage)"}, {"authorized_access_point": "Atom (XML)"}], "identifier": "http://www.idref.fr/035260521", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035260521", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb131774360", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13177436", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Extendible Markup language (langage de balisage)", "eXtensible Markup language (langage de balisage)", "Langage de balisage extensible"], "authorized_access_point": "XML (langage de balisage)"} 1 +2024-09-10 15:43:16.74646 2024-09-10 15:43:16.746464 f0711994-0de3-48ad-a9f2-b588018c1383 {"md5": "23ac7ad773d1588206e3cd89a3db92bb", "pid": "035461152", "note": [{"label": ["Téléphonie Internet / F. Toutain [in] Techniques de l'ingénieur,2000 ,TE7510", "L'impact de la téléphonie Internet sur l'industrie des télécommunications / C. Sajo, 1999 [thèse]", "Voix sur IP : Internet, fixe et mobile : état de l'art, enjeux et perspectives / J. Pons [in] Techniques de l'ingénieur, 2009, TE7532"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Internet"}, {"authorized_access_point": "Téléphone"}], "related": [{"authorized_access_point": "IMS (protocole de réseaux d'ordinateurs)"}, {"authorized_access_point": "Modems ADSL"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "SIP (protocole de réseaux d'ordinateurs)"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Téléphonie Internet"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh98004350", "source": "LCSH"}], "authorized_access_point": "Internet telephony"}], "identifier": "http://www.idref.fr/035461152", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035461152", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb131909421", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13190942", "source": "BNF"}], "classification": [{"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}, {"type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Cyberphone", "Téléphone Internet", "Voix sur IP", "Téléphone par Internet", "Téléphone sur Internet", "Téléphonie IP", "Téléphonie par Internet", "Téléphonie sur Internet", "Téléphonie via Internet", "Voice over IP", "VOIP"], "authorized_access_point": "Téléphonie Internet"} 1 +2024-09-10 15:43:17.249162 2024-09-10 15:43:17.249167 f8b3551b-8ee5-4e16-8981-3a7f232b5c72 {"md5": "71c5ce28cf1b80ac4570ab05d2317927", "pid": "035724099", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ordinateurs de poche"}], "related": [{"authorized_access_point": "Palm (ordinateur)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/035724099", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035724099", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13332134s", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13332134", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "authorized_access_point": "PalmPilot (ordinateur)"} 1 +2024-09-10 15:43:16.816288 2024-09-10 15:43:16.81629 9ac25876-5789-49a5-9d9a-2a0c9cf237c6 {"md5": "857b06840f01baeea2e77846e81e797e", "pid": "035486686", "note": [{"label": ["Quid 1998", "Wikipédia - http://fr.wikipedia.org (2008-04-09)"], "noteType": "dataSource"}, {"label": ["Élection présidentielle du 2 novembre 1948 : Harry S. Truman (démocrate) est élu avec 49,6% des voix contre Thomas E. Dewey (républicain, 45,1%)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Présidents - États-Unis - Élection"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2010106959", "source": "LCSH"}], "authorized_access_point": "Presidents--United States--Election--1948"}], "identifier": "http://www.idref.fr/035486686", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035486686", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13192308p", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13192308", "source": "BNF"}], "classification": [{"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Histoire du reste du monde", "type": "bf:ClassificationDdc", "classificationPortion": "950"}], "authorized_access_point": "Présidents - États-Unis - Élection (1948)"} 1 +2024-09-10 15:43:16.881847 2024-09-10 15:43:16.881851 dffd9f0e-e689-4c6c-8782-813790ab54a1 {"md5": "1ebb31a84fb9dce56ff8840902fab49a", "pid": "035527250", "note": [{"label": ["Grand Larousse universel", "Dict. encyclopédique d'histoire / M. Mourre, 1996"], "noteType": "dataSource"}, {"label": ["1er-2 août 1798 : victoire de la flotte britannique (Nelson) sur la flotte française (Brueys d'Aigalliers, qui fut tué) dans la baie d'Aboukir (Égypte)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Guerre de la deuxième coalition (1798-1801) - Opérations militaires - Égypte"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85091947", "source": "LCSH"}], "authorized_access_point": "Nile, Battle of the, Egypt, 1798"}], "identifier": "http://www.idref.fr/035527250", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035527250", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13194746t", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13194746", "source": "BNF"}], "classification": [{"name": "Histoire du reste du monde", "type": "bf:ClassificationDdc", "classificationPortion": "950"}], "variant_access_point": ["Aboukir, Bataille d' (1798)", "1re bataille d'Aboukir (1798)", "Nil, Bataille du (1798)", "Première bataille d'Aboukir (1798)"], "authorized_access_point": "Bataille d'Aboukir (1798)"} 1 +2024-09-10 15:43:16.959447 2024-09-10 15:43:16.959452 603d3f8e-c474-4c81-8ed6-d98b6e38681c {"md5": "7918188bf30fc5ea5e5812984941ff3e", "pid": "035621664", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Informatique"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Programmation concurrente"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Fonctionnement multitâche"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh92001010", "source": "LCSH"}], "authorized_access_point": "Multitasking (Computer science)"}], "identifier": "http://www.idref.fr/035621664", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035621664", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13325133z", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13325133", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Multitâche, Fonctionnement", "Traitement multitâche"], "authorized_access_point": "Fonctionnement multitâche"} 1 +2024-09-10 15:43:17.047111 2024-09-10 15:43:17.047116 6dcbc486-6d78-4816-a3c3-30520f1643f2 {"md5": "6d2e63c685e0bf3ba1fed36cbfc19ee7", "pid": "035634847", "note": [{"label": ["Grand Larousse universel", "Dict. encyclopédique d'histoire / M. Mourre, 1986", "Holidays and festivals index / H. Henderson, B. Puckett, 1995", "Celebrating the fourth : Independence Day and the rites of Nationalism in the Early Republic / L. Travers, 1997"], "noteType": "dataSource"}, {"label": ["Fête nationale des États-Unis (4 juillet) commémorant la Déclaration d'Indépendance (1776)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fêtes - Etats-Unis"}, {"authorized_access_point": "Fêtes nationales"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85051103", "source": "LCSH"}], "authorized_access_point": "Fourth of July celebrations"}], "identifier": "http://www.idref.fr/035634847", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035634847", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13325977s", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13325977", "source": "BNF"}], "classification": [{"name": "Sciences politiques", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Ethnologie, anthropologie, folklore", "type": "bf:ClassificationDdc", "classificationPortion": "390"}], "variant_access_point": ["4 juillet (fête nationale américaine)", "Anniversaire de l'Indépendance américaine", "Fête de l'Indépendance américaine", "Fête nationale américaine", "Fourth of July (fête nationale américaine)", "Jour de l'indépendance (fête nationale américaine)", "July 4th (fête nationale américaine)", "Quatre juillet (fête nationale américaine)"], "authorized_access_point": "Independence Day (fête nationale américaine)"} 1 +2024-09-10 15:43:17.118616 2024-09-10 15:43:17.118619 3ac6c280-9258-4bb1-bbdb-6c4285a63943 {"md5": "9f1ad4f1d095d19981e2dcf5fd148fcd", "pid": "035650532", "note": [{"label": ["Linux et XFree86 / E. Georgescu, 1997"], "noteType": "dataSource"}, {"label": ["LCSH (en ligne), 1998-09-03"], "noteType": "dataNotFound"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "X Window System (système informatique)"}, {"authorized_access_point": "Linux (logiciels)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/035650532", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035650532", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb133270366", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13327036", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["XFree 86 (système informatique)"], "authorized_access_point": "XFree86 (système informatique)"} 1 +2024-09-10 15:43:17.314373 2024-09-10 15:43:17.314379 e60ec5e3-abb0-439e-8a20-434f507c22ff {"md5": "5223b85097db81c754c6b51a244e293e", "pid": "050124315", "note": [{"label": ["GLU", "Mourre"], "noteType": "dataSource"}, {"label": ["Nom donné à un schisme qui se produisit dans l'ouest de la France au moment du Concordat de 1801 : l'une des clauses du Concordat était la démission de tous les évêques de l'ancienne Église de France ; les évêques non démissionnaires regroupèrent autour d'eux les communautés catholiques anti-concordataires qui donnèrent naissance à la Petite Église"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Église catholique - France"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85078480", "source": "LCSH"}], "authorized_access_point": "Louisets"}], "identifier": "http://www.idref.fr/050124315", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050124315", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12650661c", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12650661", "source": "BNF"}], "authorized_access_point": "Petite Église"} 1 +2024-09-10 15:43:17.380087 2024-09-10 15:43:17.380091 8d567a9b-7227-42c2-b9d4-470b59c1438a {"md5": "4796bcef17094d2abbedc2a1b45f5031", "pid": "050186647", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Pilotes de périphérique (logiciels)"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "DOS, Pilotes de périphérique pour (logiciels)"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh90004446", "source": "LCSH"}], "authorized_access_point": "DOS device drivers (Computer programs)"}], "identifier": "http://www.idref.fr/050186647", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050186647", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb133408511", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13340851", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Pilotes de périphérique pour DOS (logiciels)"], "authorized_access_point": "DOS, Pilotes de périphérique pour (logiciels)"} 1 +2024-09-10 15:43:17.452315 2024-09-10 15:43:17.452318 3d715385-894e-4793-9d99-fa4705f4ef78 {"md5": "6d46055fe2c5840e8d790c0fdd0af397", "pid": "050220284", "note": [{"label": ["LCNA (en ligne) 2004-09-20 : Active server pages"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Microsoft Windows DNA"}, {"authorized_access_point": "Serveurs Web"}, {"authorized_access_point": "Sites Web - Systèmes-auteur"}], "related": [{"authorized_access_point": "ASP.NET (langage de programmation)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/050220284", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050220284", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13506900c", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13506900", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["ASP", "Microsoft Active Server Pages"], "authorized_access_point": "Active Server Pages"} 1 +2024-09-10 15:43:17.520669 2024-09-10 15:43:17.520672 a9a21b14-69bb-4715-a8c3-c9d2103f4e7d {"md5": "2d655bbfedb85524dc0a86bd30c28261", "pid": "050366157", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Église et État - France - Histoire"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Séparation des Églises et de l'État (France ; 1905-1906)"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2009119658", "source": "LCSH"}], "authorized_access_point": "Church and state--France--History--20th century"}], "identifier": "http://www.idref.fr/050366157", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050366157", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13511352z", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13511352", "source": "BNF"}], "classification": [{"name": "Religion", "type": "bf:ClassificationDdc", "classificationPortion": "200"}, {"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}], "variant_access_point": ["Église et État - France - 20e siècle"], "authorized_access_point": "Église et État - France - 1905-...."} 1 +2024-09-10 15:43:17.592185 2024-09-10 15:43:17.59219 ac8fae83-4971-481e-b839-5f083e8f9f74 {"md5": "73d3d775d80f9bf4b3ecfa982d6cf1d4", "pid": "05041870X", "note": [{"label": ["Grand Larousse universel", "Dict. encyclopédique d'histoire / M. Mourre, 1996"], "noteType": "dataSource"}, {"label": ["7 octobre 1879 : alliance conclue à Vienne entre l'Allemagne et l'Autriche-Hongrie"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Relations extérieures - Autriche-Hongrie"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85039839", "source": "LCSH"}], "authorized_access_point": "Dual Alliance, 1879"}], "identifier": "http://www.idref.fr/05041870X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/05041870X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13512801p", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13512801", "source": "BNF"}], "classification": [{"name": "Histoire de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "940"}], "variant_access_point": ["Alliance, Double (1879)", "Double Alliance (1879)", "Zweibund (1879)"], "authorized_access_point": "Duplice (1879)"} 1 +2024-09-10 15:43:17.664421 2024-09-10 15:43:17.664426 0d1423f5-5792-4cbe-a003-9c538d85888e {"md5": "717d08e8eea525215b8f442c0cdfed17", "pid": "050516760", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/050516760", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050516760", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13533849b", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13533849", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}, {"name": "Histoire", "type": "bf:ClassificationDdc", "classificationPortion": "900"}], "authorized_access_point": "Généalogie - Logiciels"} 1 +2024-09-10 15:43:17.729071 2024-09-10 15:43:17.729075 d30f24d5-5956-4f76-9974-ddb88b3eb23d {"md5": "827e57111ebb52fbf4e7f14bd7a6bcd1", "pid": "050518526", "note": [{"label": ["Encycl. universalis (art. : Arenas, Reinaldo (1943-1990)) - http://www.universalis.fr (2017-06-08)", "Wikipédia - http://fr.wikipedia.org (2017-06-08)", "Castro, l'infidèle / S. Raffy, 2003 (p. 499-501)", "La génération des Cubains de Mariel et leur presse littéraire aux États-Unis / L. Hasson [in] America : cahiers du Criccal, 1986, 1 (p. 117-130)", "L'Amérique latine de 1945 à nos jours / P. Riado, 1992 (p. 378-379) : exode des Marielitos", "Les quatre saisons de Fidel Castro / J.-P. Clerc, 1996 (p. 301-302) : \\"crise de Mariel", "Encycl. of Latin American history and culture / J. Kinsbrunner, 2008 (art. : Cuba : since 1959) : Mariel boatlift"], "noteType": "dataSource"}, {"label": ["15 avril-31 octobre 1980 : à la suite d'un afflux massif de réfugiés cubains à l'ambassade du Pérou à La Havane, 125.000 Cubains (\\"Marielitos\\") sont autorisés à émigrer en Floride par le port de Mariel"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Cuba - 1959-...."}, {"authorized_access_point": "États-Unis - 1969-1981"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/050518526", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050518526", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb135340392", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13534039", "source": "BNF"}], "classification": [{"name": "Histoire du reste du monde", "type": "bf:ClassificationDdc", "classificationPortion": "950"}], "variant_access_point": ["Affaire de Mariel (1980)", "Crise de Mariel (1980)", "Exode des Marielitos (1980)", "Mariel, Exode de (1980)", "Marielitos, Exode des (1980)"], "authorized_access_point": "Exode de Mariel (1980)"} 1 +2024-09-10 15:43:17.794673 2024-09-10 15:43:17.794677 675642e8-6aa8-44f4-9b86-657e5f9a707f {"md5": "436626028cd2823885abf351611542c0", "pid": "050534882", "note": [{"label": ["Wikipédia - https://fr.wikipedia.org (2017-10-20)", "Dict. encyclopédique du bouddhisme / P. Cornu, 2001", "Dict. de la sagesse orientale : bouddhisme, hindouisme, taoïsme, zen, 1989 : Lamdre", "The Sakya School of Tibetan Buddhism / Dhongthog Rinpoche, 2016 : Lamdre", "BNF Service indien"], "noteType": "dataSource"}, {"label": ["Littéralement : \\"Voie, but\\". Doctrine du bouddhisme Vajrayāna, fondée par Virūpa et transmise par l'école Sa-skya-pa"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bouddhisme - Doctrines"}], "related": [{"authorized_access_point": "Sa-skya-pa"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh 85074158", "source": "LCSH"}], "authorized_access_point": "Lam-ʾbras (Sa-skya-pa)"}], "identifier": "http://www.idref.fr/050534882", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050534882", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb135355715", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13535571", "source": "BNF"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}], "variant_access_point": ["Lam-'bras", "Lam Dre", "Lamdre"], "authorized_access_point": "Lamdré"} 1 +2024-09-10 15:43:17.864675 2024-09-10 15:43:17.864679 8a182997-0ae3-4810-9ad0-1eeee93bfa30 {"md5": "eac1c00a396a0b40e99551349cb9e3f2", "pid": "05056479X", "note": [{"label": ["The Oregon Trail / F. Parkman, 1994 (p. 458)", "Kearny's Plains Reconnaissance, 1845 - http://www.topogs.org/Kearny.htm (2017-06-16)"], "noteType": "dataSource"}, {"label": ["Expédition commandée par le colonel Stephen W. Kearny le long de l'Oregon Trail jusqu'à South Pass (Wyo.), qui obtint des Sioux une garantie de passage pour les immigrants vers l'Oregon, et cartographia la région"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "États-Unis (ouest) - Jusqu'à 1848"}], "related": [{"authorized_access_point": "Oregon Trail (États-Unis)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/05056479X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/05056479X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12649132c", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12649132", "source": "BNF"}], "classification": [{"name": "Géographie du reste du monde", "type": "bf:ClassificationDdc", "classificationPortion": "915"}, {"name": "Histoire du reste du monde", "type": "bf:ClassificationDdc", "classificationPortion": "950"}], "variant_access_point": ["Kearny, Expédition de (1845)"], "authorized_access_point": "Expédition de Kearny (1845)"} 1 +2024-09-10 15:43:17.9313 2024-09-10 15:43:17.931305 a03d8bda-34d9-4fca-aca2-acd8d14f2dde {"md5": "e97728113613d9231b4078cda577c812", "pid": "050582453", "note": [{"label": ["Grand Larousse universel", "Petit Robert 1"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Orientalistes"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85122928", "source": "LCSH"}], "authorized_access_point": "Sinologists"}, {"source": "RVMLaval", "authorized_access_point": "Sinologues"}], "identifier": "http://www.idref.fr/050582453", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050582453", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12650586f", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12650586", "source": "BNF"}], "classification": [{"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}, {"name": "Histoire du reste du monde", "type": "bf:ClassificationDdc", "classificationPortion": "950"}], "variant_access_point": ["Sinisants", "Spécialistes de la Chine"], "authorized_access_point": "Sinologues"} 1 +2024-09-10 15:43:18.021036 2024-09-10 15:43:18.02104 88e656ff-190b-4edd-80ab-d194befb0620 {"md5": "76aee98e6f1f40ffa5edfb00f38aa2ba", "pid": "050602195", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Civilisation - Japon"}, {"authorized_access_point": "Mythologie d'Asie orientale"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Dieux japonais"}, {"authorized_access_point": "Tengu (mythologie)"}, {"authorized_access_point": "Yōkai"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85089404", "source": "LCSH"}], "authorized_access_point": "Mythology, Japanese"}, {"source": "RVMLaval", "authorized_access_point": "Mythologie japonaise"}], "identifier": "http://www.idref.fr/050602195", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050602195", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12652113m", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12652113", "source": "BNF"}], "classification": [{"name": "Religion", "type": "bf:ClassificationDdc", "classificationPortion": "200"}], "authorized_access_point": "Mythologie japonaise"} 1 +2024-09-10 15:43:18.116427 2024-09-10 15:43:18.116431 f08b8513-01cd-4c42-944a-4d13ed620d18 {"md5": "2ffa8fa1727c2b0626ec063dbf49bc8a", "pid": "050627953", "note": [{"label": ["Propagande de la Russie soviétique, puis de l'URSS (1917-1991)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Politique et gouvernement - URSS"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh89002047", "source": "LCSH"}], "authorized_access_point": "Propaganda, Soviet"}, {"source": "RVMLaval", "authorized_access_point": "Propagande soviétique"}], "identifier": "http://www.idref.fr/050627953", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050627953", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12654249c", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12654249", "source": "BNF"}], "classification": [{"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}], "authorized_access_point": "Propagande soviétique"} 1 +2024-09-10 15:43:18.185785 2024-09-10 15:43:18.185789 9873e7d5-65a3-42b1-a5a4-63ab0c3bf190 {"md5": "1301cb208e2b12da1c5ea4371c2d70a7", "pid": "050702858", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Systèmes, Conception de"}], "related": [{"authorized_access_point": "Logiciels - Développement"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "AltaRica (méthode formelle)"}, {"authorized_access_point": "B (méthode formelle)"}, {"authorized_access_point": "Z (méthode formelle)"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Méthodes formelles (informatique)"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh99003622", "source": "LCSH"}], "authorized_access_point": "Formal methods (Computer science)"}], "identifier": "http://www.idref.fr/050702858", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050702858", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13539618z", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13539618", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}], "authorized_access_point": "Méthodes formelles (informatique)"} 1 +2024-09-10 15:43:18.273971 2024-09-10 15:43:18.273975 411090b0-24dc-4ec4-9043-a3db32bc64e6 {"md5": "78a69b24d67ccbefb8c1aad116f180de", "pid": "050764861", "note": [{"label": ["Programmation MTS et MSMQ avec Visual Basic et ASP / Alex Homer..., 1999"], "noteType": "dataSource"}, {"label": ["LCNA (en ligne), 2000-03-01"], "noteType": "dataNotFound"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sites Web - Systèmes-auteur"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Active Server Pages"}, {"authorized_access_point": "COM (architecture des ordinateurs)"}], "identifier": "http://www.idref.fr/050764861", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050764861", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13544731f", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13544731", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["DNA", "Windows DNA"], "authorized_access_point": "Microsoft Windows DNA"} 1 +2024-09-10 15:43:18.344347 2024-09-10 15:43:18.344351 1461edcf-459e-4eb0-8f09-a4ce6234b5d4 {"md5": "fa41cb32742c813327e716e7c1fcc195", "pid": "050773313", "note": [{"label": ["LCSH (en ligne), 2000-03-08"], "noteType": "dataNotFound"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Linux, Pilotes de périphérique pour (logiciels)"}, {"authorized_access_point": "XFree86 (système informatique)"}], "identifier": "http://www.idref.fr/050773313", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050773313", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb135454237", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13545423", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "authorized_access_point": "Linux (logiciels)"} 1 +2024-09-10 15:43:18.415676 2024-09-10 15:43:18.41568 2ee5f13e-f659-418f-98e1-7fbd154e377f {"md5": "7cfde81a1dc0d00074a4e8f43fe583b6", "pid": "050784005", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/050784005", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050784005", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13546289v", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13546289", "source": "BNF"}], "classification": [{"name": "Histoire du reste du monde", "type": "bf:ClassificationDdc", "classificationPortion": "950"}], "variant_access_point": ["Conflit israélo-arabe - Processus de paix (1993-....)", "Oslo, Processus d' (1993-....)", "Processus d'Oslo (1993-....)", "Processus de paix israélo-arabe", "Processus de paix israélo-palestinien"], "authorized_access_point": "Conflit israélo-arabe - 1993-.... - Paix"} 1 +2024-09-10 15:43:18.478745 2024-09-10 15:43:18.478748 995946f8-107a-4317-aa8a-f4fccdc1af52 {"md5": "351479d16fa3d8981640d24031b4840c", "pid": "050808583", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Compilateurs de silicium"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Synthèse de haut niveau (informatique)"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Circuits intégrés -- Conception assistée par ordinateur"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85067118", "source": "LCSH"}], "authorized_access_point": "Integrated circuits--Design and construction"}], "identifier": "http://www.idref.fr/050808583", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050808583", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb135547638", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13554763", "source": "BNF"}], "classification": [{"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "variant_access_point": ["CAO électronique", "EDA"], "authorized_access_point": "Circuits intégrés - Conception assistée par ordinateur"} 1 +2024-09-10 15:43:18.546512 2024-09-10 15:43:18.546516 8ef86816-4902-455d-807c-7b3c3db46445 {"md5": "bd795103ead127a581f07189490ad551", "pid": "050827405", "note": [{"label": ["Dict. des systèmes d'information / Robert Reix, 1999", "Grand dict. Marabout de l'informatique et de l'Internet / Virga, 1996"], "noteType": "dataSource"}, {"label": ["Laval RVM (en ligne), 2000-04-27"], "noteType": "dataNotFound"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fichiers (informatique) - Organisation"}], "related": [{"authorized_access_point": "Adobe Acrobat (logiciels)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/050827405", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050827405", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb135554928", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13555492", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Portable Document Format"], "authorized_access_point": "PDF (format)"} 1 +2024-09-10 15:43:18.610497 2024-09-10 15:43:18.6105 5d9bebd6-9422-416f-967d-64c3df564eda {"md5": "4e724bf9954ffd6551a95ca2e2812868", "pid": "052587207", "note": [{"label": ["Programmer avec Qt / Matthias Kalle Dalheimer, 2000"], "noteType": "dataSource"}, {"label": ["LCNA (en ligne), 2000-08-16"], "noteType": "dataNotFound"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Interfaces graphiques (informatique)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/052587207", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/052587207", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13566350h", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13566350", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "authorized_access_point": "Qt (logiciels)"} 1 +2024-09-10 15:43:18.673405 2024-09-10 15:43:18.673409 0b6f5f3e-80f1-492d-87a6-b00ba89cb08c {"md5": "1221183d12114a0be4407c8085536406", "pid": "052634833", "note": [{"label": ["Programmation Linux avec GTK+.../ David Odin, 2000"], "noteType": "dataSource"}, {"label": ["LCNA (en ligne), 2000-09-27"], "noteType": "dataNotFound"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Interfaces graphiques (informatique)"}], "related": [{"authorized_access_point": "GNOME"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/052634833", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/052634833", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb135705577", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13570557", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Gimp Toolkit"], "authorized_access_point": "GTK+"} 1 +2024-09-10 15:43:18.740006 2024-09-10 15:43:18.740009 ab9044b3-dde0-45a5-b9e2-99d2e6beee18 {"md5": "d24ce76d771dacfa2c4fe19e57938d19", "pid": "053469844", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "CEGAR (algorithme)"}, {"authorized_access_point": "Logiciels - Exactitude"}, {"authorized_access_point": "Logiciels - Essais"}, {"authorized_access_point": "Logiciels - Validation"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Vérification de modèles (informatique)"}, {"authorized_access_point": "Filtres (informatique)"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Logiciels -- Vérification"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85029528", "source": "LCSH"}], "authorized_access_point": "Computer programs--Verification"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85029537", "source": "LCSH"}], "authorized_access_point": "Computer software--Verification"}], "identifier": "http://www.idref.fr/053469844", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/053469844", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb135762613", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13576261", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Analyse dynamique (informatique)", "Analyse statique (informatique)", "Comparaisons des données", "Logiciels - Analyse statique", "Logiciels - Analyse dynamique", "Vérification des logiciels"], "authorized_access_point": "Logiciels - Vérification"} 1 +2024-09-10 15:43:18.813714 2024-09-10 15:43:18.813718 13b4f9ea-3d41-462f-9513-4b7baa3013e8 {"md5": "83e67ee95a59ba68ce4a9b1d9df0d62c", "pid": "055308600", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Animaux célèbres"}], "related": [{"authorized_access_point": "Mammouth laineux"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2002005766", "source": "LCSH"}], "authorized_access_point": "Jarkov mammoth"}], "identifier": "http://www.idref.fr/055308600", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/055308600", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb136060769", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13606076", "source": "BNF"}], "classification": [{"name": "Paléontologie", "type": "bf:ClassificationDdc", "classificationPortion": "560"}, {"name": "Zoologie", "type": "bf:ClassificationDdc", "classificationPortion": "590"}], "variant_access_point": ["Jarkov, Mammouth", "Mammouth Jarkov"], "authorized_access_point": "Jarkov (mammouth)"} 1 +2024-09-10 15:43:18.88219 2024-09-10 15:43:18.882193 41bc7084-47f5-48ee-a713-ec7159d58143 {"md5": "8e7fa4289a311bf472a742805f5da222", "pid": "059302208", "note": [{"label": ["Grand dict. terminologique (en ligne), 2001-07-10"], "noteType": "dataSource"}, {"label": ["Grand dict. Marabout de l'informatique et de l'Internet / Virga, 1997 (Art : Hébergement de serveur)"], "noteType": "dataNotFound"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Fournisseurs de services Internet"}, {"authorized_access_point": "Sites Web"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Hébergement Web"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2002010032", "source": "LCSH"}], "authorized_access_point": "Web hosting"}], "identifier": "http://www.idref.fr/059302208", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/059302208", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13623447h", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13623447", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Hébergement (informatique)", "Hébergement de pages Web", "Hébergement de serveur", "Hébergement de sites Web", "Hébergement Internet", "Sites Web - Hébergement"], "authorized_access_point": "Hébergement Web"} 1 +2024-09-10 15:43:36.812286 2024-09-10 15:43:36.812289 3ffeea69-b884-4016-a776-539485f963b5 {"md5": "70a42fc78f050f5355fd6e2185dfbe3f", "pid": "279034792", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Roman américain"}, {"authorized_access_point": "Satire américaine"}], "bnf_type": "genre/forme Rameau", "identifier": "http://www.idref.fr/279034792", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279034792", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181502330", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18150233", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Roman satirique américain"} 1 +2024-09-10 15:43:18.95651 2024-09-10 15:43:18.956514 f4d82d50-4053-41a1-800a-f258ba0b90d8 {"md5": "9a43ec63caf93ee1835b3d36eaba0b77", "pid": "05930278X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Art - France"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Art pompier"}, {"authorized_access_point": "Arts incohérents (mouvement artistique)"}, {"authorized_access_point": "Cénacles romantiques"}, {"authorized_access_point": "Peinture - France - 19e siècle"}, {"authorized_access_point": "Réalisme (mouvement artistique)"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85007804", "source": "LCSH"}], "authorized_access_point": "Art, French--19th century"}], "identifier": "http://www.idref.fr/05930278X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/05930278X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13738221v", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13738221", "source": "BNF"}], "classification": [{"name": "Arts (sauf littérature)", "type": "bf:ClassificationDdc", "classificationPortion": "700"}], "authorized_access_point": "Art - France - 19e siècle"} 1 +2024-09-10 15:43:19.022535 2024-09-10 15:43:19.022539 c92d06ce-e362-4b6c-a5f3-43135575cf8f {"md5": "d4e1fea0de64469df29888b0cbed02ab", "pid": "059307374", "note": [{"label": ["Rois et souverains -- Géorgie (République) ; Laval RVM, 2001-01"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh96007489", "source": "LCSH"}], "authorized_access_point": "Georgia (Republic)--Kings and rulers"}], "identifier": "http://www.idref.fr/059307374", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/059307374", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13744704w", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13744704", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "950"}], "authorized_access_point": "Rois et souverains - Géorgie"} 1 +2024-09-10 15:43:19.086927 2024-09-10 15:43:19.086931 970646d7-1534-4541-a0fc-f65bc4bc2a9a {"md5": "3864edcf501ccfa8225b02f0ebdeae79", "pid": "06082929X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Microsoft .NET"}, {"authorized_access_point": "Sites Web - Développement"}], "related": [{"authorized_access_point": "Xamarin (plate-forme informatique)"}, {"authorized_access_point": "Microsoft Windows PowerShell (langage de programmation)"}, {"authorized_access_point": "VB .NET (langage de programmation)"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Microsoft Entity Framework Core (plate-forme informatique)"}, {"authorized_access_point": "Common Language Runtime (informatique)"}, {"authorized_access_point": "Microsoft Windows Presentation Foundation (plate-forme informatique)"}, {"authorized_access_point": "Microsoft Windows Workflow Foundation (plate-forme informatique)"}, {"authorized_access_point": "Microsoft Windows Communication Foundation (plate-forme informatique)"}, {"authorized_access_point": "ASP.NET (langage de programmation)"}], "identifier": "http://www.idref.fr/06082929X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/06082929X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb14410737w", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF14410737", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": [".NET (plate-forme informatique)", ".NET Framework", "Microsoft .NET (plate-forme informatique)", "Microsoft .NET Framework", "Microsoft.NET Framework"], "authorized_access_point": "Microsoft .NET Framework (plate-forme informatique)"} 1 +2024-09-10 15:43:19.151558 2024-09-10 15:43:19.151562 8eb7268c-2df7-4c59-850c-2b32e080b4ee {"md5": "d838ce24f4763ba2328d2a586828123f", "pid": "06160738X", "note": [{"label": ["Wikipédia : légende noire espagnole - https://fr.wikipedia.org (2017-10-20)", "Encycl. universalis (art. : Las Casas, Barthomé de (1474-1566)) : légende noire antihispanique - http://www.universalis-edu.com (2017-10-20)", "Hist. de l'Espagne / P. Noury, 2013 (p. 207)", "Les Amériques. T1, Du Précolombien à 1830, 2016", "Civilisation espagnole / M. Jullian, 2010", "Dict. culturel de l'Espagne / J.-P. Duviols, J. Soriano, 2006", "L'Espagne de 1492 à 1808 / J.-P. Dedieu, 2005", "La légende noire de l'Espagne / J. Pérez, 2009", "Dicc. de hist. de España / C. Ferrera Cuestra, 2005 : leyenda negra"], "noteType": "dataSource"}, {"label": ["Jugement négatif porté à l'étranger sur la civilisation espagnole, son expansion et son influence dans le monde, particulièrement en Amérique. Il condamne le massacre des Amérindiens, dénoncé par Bartolomé de las Casas dans sa \\"Brevísima Relación de la Destrucción de las Indias\\", ainsi que les erreurs et les crimes de la vie privée et politique de Philippe II"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Espagne - Histoire"}], "related": [{"authorized_access_point": "Colonies espagnoles"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh93007281", "source": "LCSH"}], "authorized_access_point": "Black Legend (Spanish history)"}, {"source": "RVMLaval", "authorized_access_point": "Légende noire (Histoire espagnole)"}], "identifier": "http://www.idref.fr/06160738X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/06160738X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13749265x", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13749265", "source": "BNF"}], "classification": [{"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}, {"name": "Histoire de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "940"}], "variant_access_point": ["Légende noire antihispanique", "Légende noire de l'Espagne", "Légende noire espagnole", "Leyenda negra (Histoire d'Espagne)", "Leyenda negra española", "Leyenda negra hispanoamericana"], "authorized_access_point": "Légende noire (Histoire de l'Espagne)"} 1 +2024-09-10 15:43:19.223347 2024-09-10 15:43:19.223351 f8cb6d37-f5f7-498b-b764-6947a74152a7 {"md5": "dc370117198a2b0071f2c6d4662f6c43", "pid": "075000504", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mythologie indonésienne"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh93005942", "source": "LCSH"}], "authorized_access_point": "Mythology, Javanese"}], "identifier": "http://www.idref.fr/075000504", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/075000504", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15105630t", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF15105630", "source": "BNF"}], "classification": [{"name": "Religion", "type": "bf:ClassificationDdc", "classificationPortion": "200"}], "authorized_access_point": "Mythologie javanaise"} 1 +2024-09-10 15:43:19.295585 2024-09-10 15:43:19.29559 6e6d8258-bbd3-4fc0-98bf-43864e5d5df8 {"md5": "e1d840b58e33723297c84d4f8fa71ea1", "pid": "077057589", "note": [{"label": ["Vocab. juridique / G. Cornu, 2001"], "noteType": "dataSource"}, {"label": ["Marchés de travaux, privés ou publics, dans lesquels le prix d'ensemble de l'ouvrage est déterminé ou fixé de façon définitive entre le maître d'ouvrage et l'entrepreneur"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Contrats d'entreprise"}, {"authorized_access_point": "Marchés de travaux publics"}, {"authorized_access_point": "Prix - Fixation"}], "related": [{"authorized_access_point": "Contrats à long terme"}, {"authorized_access_point": "Marchés publics - Prix"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Marchés à forfait"}], "identifier": "http://www.idref.fr/077057589", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/077057589", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb14408398q", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF14408398", "source": "BNF"}], "classification": [{"name": "Droit", "type": "bf:ClassificationDdc", "classificationPortion": "340"}], "variant_access_point": ["Contrats à prix forfaitaire", "Marchés de travaux à prix forfaitaire"], "authorized_access_point": "Marchés à forfait"} 1 +2024-09-10 15:43:19.379988 2024-09-10 15:43:19.379992 4d95f308-0a65-46d3-842a-03102033d334 {"md5": "66b0a4a33028fa699d529cb86b419866", "pid": "077060377", "note": [{"label": ["Pierrot gourmand : un siècle de création sucrée / A. Besson, 2002", "Bases de données Marques - https://bases-marques.inpi.fr (2016-12-19)"], "noteType": "dataSource"}, {"label": ["Pierrot gourmand est une appellation commerciale"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Confiserie"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/077060377", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/077060377", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb144197717", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF14419771", "source": "BNF"}], "classification": [{"name": "Economie domestique, hôtellerie", "type": "bf:ClassificationDdc", "classificationPortion": "640"}], "variant_access_point": ["Pégé (confiserie)", "Pierrot gourmand (marque déposée)", "Confiseries Pierrot gourmand"], "authorized_access_point": "Pierrot gourmand (confiserie)"} 1 +2024-09-10 15:43:19.447122 2024-09-10 15:43:19.447126 c78068de-d8e3-493a-942b-b84a0fda2b67 {"md5": "5740772322bb7664a4afcbe3df79d56d", "pid": "077062809", "note": [{"label": ["GLU", "Mourre", "Brockhaus, 19. Aufl", "Berlinkrise <1958> ; Berlinkrise <1961> ; SWD, 1995-04"], "noteType": "dataSource"}, {"label": ["Crise déclenchée en 1958 par la volonté de l'URSS de revoir le statut de Berlin, qui se résolut en 1961 par la construction du Mur (13 août) qui gela le statu quo"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Relations extérieures - URSS - 1953-1975"}, {"authorized_access_point": "Statut international - Berlin (Allemagne)"}, {"authorized_access_point": "Guerre froide"}, {"authorized_access_point": "Allemagne - 1945-1990"}], "related": [{"authorized_access_point": "Berlin (Allemagne) - Berliner Mauer"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/077062809", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/077062809", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb14430123z", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF14430123", "source": "BNF"}], "classification": [{"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Histoire de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "940"}], "variant_access_point": ["Berlin, Crise de (1958-1961)", "Mur de Berlin, Construction du (1961)"], "authorized_access_point": "Crise de Berlin (1958-1961)"} 1 +2024-09-10 15:43:19.523707 2024-09-10 15:43:19.523711 9f57bdd6-daa9-4548-a850-70038032bd55 {"md5": "7845fa35b4ecd8cb147a8588b459b026", "pid": "077075757", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Langages de balisage"}], "related": [{"authorized_access_point": "D3.js (informatique)"}, {"authorized_access_point": "XML (langage de balisage)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/077075757", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/077075757", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb14487634q", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF14487634", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Langage graphique vectoriel (langage de balisage)", "Scalable Vector Graphics (langage de balisage)"], "authorized_access_point": "SVG (langage de balisage)"} 1 +2024-09-10 15:43:19.595962 2024-09-10 15:43:19.595967 d5d3dcd9-547a-4e48-a678-c03e5d544ff8 {"md5": "28b99a95d0d36675e7fc51cf48260f4a", "pid": "077088883", "note": [{"label": ["Laval RVM (en ligne), 2005-05-09"], "noteType": "dataNotFound"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Logiciels"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/077088883", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/077088883", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb14498699r", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF14498699", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}, {"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}], "authorized_access_point": "Analyse de contenu (communication) - Logiciels"} 1 +2024-09-10 15:43:19.664215 2024-09-10 15:43:19.66422 bc07bb3d-69de-47a4-986b-9379459c130e {"md5": "f5217de6eb19b26e893dfc11b9e28139", "pid": "077091035", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/077091035", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/077091035", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb14513380t", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF14513380", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}, {"name": "Audiovisuel", "type": "bf:ClassificationDdc", "classificationPortion": "791"}], "authorized_access_point": "Son - Enregistrement et reproduction - Techniques numériques - Logiciels"} 1 +2024-09-10 15:43:19.741152 2024-09-10 15:43:19.741156 1d0fab94-bc6e-43a3-b04e-485ce21840de {"md5": "ad1d23bc51d1730cfe89516c7187ba98", "pid": "077397827", "note": [{"label": ["Quid 1996", "Wikipedia - http://fr.wikipedia.org (2007-06-21)"], "noteType": "dataSource"}, {"label": ["Le 12 décembre 1969 une bombe explose dans le hall de la Banque de l'Agriculture, Piazza Fontana à Milan, faisant 16 morts et 107 blessés. La responsabilité de cet attentat n'a pas été officiellement établie"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Attentats - Italie"}, {"authorized_access_point": "Milan (Italie) - 1945-"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2002002032", "source": "LCSH"}], "authorized_access_point": "Piazza Fontana Bombing, Milan, Italy, 1969"}], "identifier": "http://www.idref.fr/077397827", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/077397827", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb14555186n", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF14555186", "source": "BNF"}], "relation_pid": {"type": "redirect_from", "value": "080489095"}, "classification": [{"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Histoire de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "940"}], "variant_access_point": ["Milan, Attentat de (1969)"], "authorized_access_point": "Piazza Fontana, Attentat de la (1969)"} 1 +2024-09-10 15:43:19.837727 2024-09-10 15:43:19.837732 43774f72-2c76-4d04-ac30-c0a0358c5ceb {"md5": "41b0df7154cae2706cb303022c135b56", "pid": "077937007", "note": [{"label": ["Une hist. des Juifs / P. Johnson, 1989 (pp. 278-281)", "Dict. du judaïsme : histoire, mythes et traditions / A. Unterman, 1997"], "noteType": "dataSource"}, {"label": ["Négociants, banquiers et fournisseurs juifs au service des rois et souverains de l'Europe centrale aux 17e et 18e siècles"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Conditions économiques - Europe - 18e siècle"}, {"authorized_access_point": "Cour et courtisans"}, {"authorized_access_point": "Hommes d'affaires juifs"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85033553", "source": "LCSH"}], "authorized_access_point": "Court Jews"}, {"source": "RVMLaval", "authorized_access_point": "Juifs de cour"}], "identifier": "http://www.idref.fr/077937007", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/077937007", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb14508891v", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF14508891", "source": "BNF"}], "classification": [{"name": "Économie politique", "type": "bf:ClassificationDdc", "classificationPortion": "330"}, {"name": "Ethnologie", "type": "bf:ClassificationDdc", "classificationPortion": "390"}, {"name": "Histoire de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "940"}], "variant_access_point": ["Cour, Juifs de", "Hofjuden"], "authorized_access_point": "Juifs de cour"} 1 +2024-09-10 15:43:19.916511 2024-09-10 15:43:19.916513 63e123a6-8bb5-4541-8b5c-15c5b97fc93f {"md5": "7b8da90ca4829b5b1af8bc7b0b982a86", "pid": "078974089", "note": [{"label": ["Système intégré et multiplate-forme permettant aux entreprises et aux organisations de gérer rapidement et facilement le contenu dynamique et rédactionnel d'un site Web"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sites Web - Gestion"}], "related": [{"authorized_access_point": "ECM (gestion)"}, {"authorized_access_point": "Sites Web - Systèmes-auteur"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Portfolios électroniques"}, {"authorized_access_point": "Plateformes d'apprentissage en ligne"}], "identifier": "http://www.idref.fr/078974089", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/078974089", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb145496336", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF14549633", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}, {"name": "Sciences de l'information", "type": "bf:ClassificationDdc", "classificationPortion": "020"}], "variant_access_point": ["Sites Web - Gestion - Logiciels", "CMS (Web)", "Content management systems", "SGC (Web)"], "authorized_access_point": "Systèmes de gestion de contenu Web"} 1 +2024-09-10 15:43:19.988003 2024-09-10 15:43:19.988005 eeceff41-b020-4e05-909e-5012753924e1 {"md5": "af4e17b6feaf8a2e317bd1513922e9a2", "pid": "079180043", "note": [{"label": ["ITunes 4 et iPod / Virga, 2004"], "noteType": "dataSource"}, {"label": ["Laval RVM (en ligne), 2004-06-14"], "noteType": "dataNotFound"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Lecteurs MP3"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/079180043", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/079180043", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb14548815k", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF14548815", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}, {"name": "Audiovisuel", "type": "bf:ClassificationDdc", "classificationPortion": "791"}], "authorized_access_point": "iPod"} 1 +2024-09-10 15:43:20.060328 2024-09-10 15:43:20.060331 29d71e72-7b47-43a8-adf0-742de51d7df4 {"md5": "c8f7a202f85f7c50615421630e6c0522", "pid": "081665660", "note": [{"label": ["La Révolution conservatrice en Allemagne, 1918-1932 / Armin Mohler, trad. par Henri Plard et Hector Lipstick, 1993", "Normdaten : SWD, 2005-01 : Konservative Revolution"], "noteType": "dataSource"}, {"label": ["Courant de pensée politique de la République de Weimar, développé notamment par Arthur Moeller van den Bruck, Oswald Spengler, Ernst Jünger et Ernst von Salomon, qui préconise un nationalisme autoritaire comme modèle alternatif au libéralisme et au communisme"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Politique et gouvernement - Allemagne - 1918-1933"}, {"authorized_access_point": "Conservatisme"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/081665660", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/081665660", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb14614901r", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF14614901", "source": "BNF"}], "classification": [{"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}], "variant_access_point": ["Konservative Revolution"], "authorized_access_point": "Révolution conservatrice (Allemagne)"} 1 +2024-09-10 15:43:20.1234 2024-09-10 15:43:20.123405 46c85477-7b50-4b3d-880d-bc1d46aaf3b3 {"md5": "984cb2471e44f696d13ede315a5546a1", "pid": "083421467", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Disques compacts enregistrables"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/083421467", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/083421467", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb145971143", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF14597114", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}, {"name": "Audiovisuel", "type": "bf:ClassificationDdc", "classificationPortion": "791"}], "variant_access_point": ["Cédéroms - Gravure - Logiciels"], "authorized_access_point": "Cédéroms - Systèmes-auteur"} 1 +2024-09-10 15:43:20.193369 2024-09-10 15:43:20.193373 1fcf89ec-32ad-45c8-a4e6-695ac330c65b {"md5": "68078eeb8e94905e7947fbf6a3b2a568", "pid": "083972684", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Composition musicale assistée par ordinateur"}, {"authorized_access_point": "Musique par ordinateur - Logiciels"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/083972684", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/083972684", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb145986121", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF14598612", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}, {"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "variant_access_point": ["Logiciels de composition musicale"], "authorized_access_point": "Composition musicale assistée par ordinateur - Logiciels"} 1 +2024-09-10 15:43:20.26584 2024-09-10 15:43:20.265842 f3647058-5f73-4e95-b7d4-bb8344227276 {"md5": "fac37c53da2c4d22a0d2f2515505b4ed", "pid": "08523611X", "note": [{"label": ["Wikipedia - http://fr.wikipedia.org (2008-05-02)", "Election of 1912 - http://www.u-s-history.com/pages/h887.html (2008-05-02)"], "noteType": "dataSource"}, {"label": ["Élection présidentielle du 4 novembre 1912 : Woodrow Wilson (démocrate) est élu contre Theodore Roosevelt (Progressive Party, scission du parti républicain), William H. Taft (républicain), Eugene V. Debs (socialiste) et Eugene W. Chafin (Prohibition Party)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Présidents - États-Unis - Élection"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2010106963", "source": "LCSH"}], "authorized_access_point": "Presidents--United States--Election--1912"}], "identifier": "http://www.idref.fr/08523611X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/08523611X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb146122360", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF14612236", "source": "BNF"}], "classification": [{"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Histoire du reste du monde", "type": "bf:ClassificationDdc", "classificationPortion": "950"}], "authorized_access_point": "Présidents - États-Unis - Élection (1912)"} 1 +2024-09-10 15:43:20.334283 2024-09-10 15:43:20.334287 534ed6e9-7e69-430b-a262-9c30020b6551 {"md5": "27437f58f91ee03298a0beed01dd35f8", "pid": "087834979", "note": [{"label": ["Le scrapbooking de A à Z, 2012", "Dict. du scrapbooking / V. Alber-Latour, H. Meynard, 2011", "Le scrapbooking : montages créatifs / F. Fichet, 2005"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Loisirs créatifs"}], "related": [{"authorized_access_point": "Albums de photographies"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2008002216", "source": "LCSH"}], "authorized_access_point": "Scrapbooking"}], "identifier": "http://www.idref.fr/087834979", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/087834979", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb14633930h", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF14633930", "source": "BNF"}], "classification": [{"name": "Dessin, arts décoratifs, artisanat d'art", "type": "bf:ClassificationDdc", "classificationPortion": "740"}, {"name": "Photographie", "type": "bf:ClassificationDdc", "classificationPortion": "770"}, {"name": "Jeux", "type": "bf:ClassificationDdc", "classificationPortion": "793"}], "variant_access_point": ["Albums de photographies - Décoration", "Albums-souvenirs - Mise en page"], "authorized_access_point": "Scrapbooking"} 1 +2024-09-10 15:43:20.399357 2024-09-10 15:43:20.399361 efd8f955-c177-4f99-a46b-bf5c542813a5 {"md5": "4c169b45af0957b7fb9cc72ebdf9a09c", "pid": "087960621", "note": [{"label": ["Mourre"], "noteType": "dataSource"}, {"label": ["Le référendum du 2 juin 1946 (jour des élections à l'Assemblée constituante) instaure la République, par 12 072 000 voix contre 10 719 284 pour la monarchie. Le roi Humbert II, en faveur duquel son père Victor-Emmanuel III avait abdiqué le 9 mai 1946, part en exil sans toutefois abdiquer"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/087960621", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/087960621", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15011139m", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF15011139", "source": "BNF"}], "classification": [{"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Histoire de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "940"}], "variant_access_point": ["Référendum sur la monarchie (Italie ; 1946)"], "authorized_access_point": "Référendum - Italie - 1946"} 1 +2024-09-10 15:43:21.880045 2024-09-10 15:43:21.880049 77f5e910-932b-454f-8617-7aa8853d7320 {"md5": "0e6dbe3690392c71f1630ae312bfb7b2", "pid": "132211378", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Assistance militaire"}], "related": [{"authorized_access_point": "Forces armées russes"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/132211378", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/132211378", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb178103476", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF17810347", "source": "BNF"}], "classification": [{"name": "Sciences politiques", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Art et science militaires", "type": "bf:ClassificationDdc", "classificationPortion": "355"}], "authorized_access_point": "Assistance militaire russe"} 1 +2024-09-10 15:43:20.477792 2024-09-10 15:43:20.477794 342f0dcb-4bb0-4bcd-80fa-0a245428e8ec {"md5": "f2c46fb062cfd8d61e08db17470a0ae6", "pid": "092468594", "note": [{"label": ["Scotland decides : the Devolution issue and the 1997 referendum / David Denver et al., 2000"], "noteType": "dataSource"}, {"label": ["1997-09-11 : la création d'un Parlement écossais est approuvée par référendum (74,3 % de oui)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/092468594", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/092468594", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb150114999", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF15011499", "source": "BNF"}], "classification": [{"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Histoire de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "940"}], "authorized_access_point": "Référendum - Grande-Bretagne - Écosse (GB) - 1997"} 1 +2024-09-10 15:43:20.548388 2024-09-10 15:43:20.548392 120084ab-3959-4f50-9ee1-1b755de912fd {"md5": "6b74594998c1ea3e36770b845ca3693e", "pid": "092468950", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Monnaies européennes"}], "related": [{"authorized_access_point": "Monnaie - Russie"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85027859", "source": "LCSH"}], "authorized_access_point": "Coins, Russian"}, {"source": "RVMLaval", "authorized_access_point": "Monnaies russes"}], "identifier": "http://www.idref.fr/092468950", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/092468950", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb150128520", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF15012852", "source": "BNF"}], "classification": [{"name": "Économie politique", "type": "bf:ClassificationDdc", "classificationPortion": "330"}, {"name": "Sculpture", "type": "bf:ClassificationDdc", "classificationPortion": "730"}, {"name": "Histoire de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "940"}], "variant_access_point": ["Pièces de monnaie russes"], "authorized_access_point": "Monnaies russes"} 1 +2024-09-10 15:43:20.629316 2024-09-10 15:43:20.62932 ea405fc2-c291-49d7-bedf-191581086653 {"md5": "5bc9088ff76d9c2ec9a2be5fdb63b824", "pid": "101481071", "note": [{"label": ["LC Authorities (en ligne), 2009-08-05", "Microsoft - http://www.microsoft.fr (2009-08-05)", "Développer avec Visual studio 2005 éditions Express / L. Desmons, 2006", "ASP.NET avec C# sous Visual studio 2008 : conception et développement d'applications Web / B.-A. Guérin, 2009"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Logiciels - Développement"}, {"authorized_access_point": "Sites Web - Systèmes-auteur"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/101481071", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/101481071", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15060332j", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF15060332", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Microsoft Visual studio .NET (environnement de développement d'applications)", "Microsoft Visual studio 97 (environnement de développement d'applications)", "Microsoft Visual studio 2005 Express Edition (environnement de développement d'applications)", "Microsoft Visual studio 2008 (environnement de développement d'applications)", "Visual studio (environnement de développement d'applications)", "Visual studio .NET (environnement de développement d'applications)", "Visual studio 97 (environnement de développement d'applications)", "Visual studio 2005 Express Edition (environnement de développement d'applications)", "Visual studio 2008 (environnement de développement d'applications)"], "authorized_access_point": "Microsoft Visual studio (environnement de développement d'applications)"} 1 +2024-09-10 15:43:20.705275 2024-09-10 15:43:20.705279 65166e7e-7230-4ec5-b8c5-7d57a36f5843 {"md5": "39070f23fde7816fef87d963194c9135", "pid": "110905687", "note": [{"label": ["Images numériques et formats graphiques / G. Michel-Duthel, 2000"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fichiers d'images"}], "related": [{"authorized_access_point": "Caméras vidéo numériques"}, {"authorized_access_point": "Camescopes numériques"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/110905687", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/110905687", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb151251703", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF15125170", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}, {"name": "Photographie", "type": "bf:ClassificationDdc", "classificationPortion": "770"}], "variant_access_point": ["Fichiers RAW", "Formats de fichier RAW", "Formats de fichiers RAW", "Formats RAW"], "authorized_access_point": "RAW (fichiers d'images)"} 1 +2024-09-10 15:43:20.770354 2024-09-10 15:43:20.770357 352c31ea-51cb-4319-9465-8bff63d54088 {"md5": "d349697b3eb3d3af9a3c1ff0256ab8ed", "pid": "111597153", "note": [{"label": ["La destruction des juifs d'Europe / R. Hilberg, 2006 (t.1, p. 280)", "Monde, 05-07-2002", "Vokabular des Nationalsozialismus / C. Schmitz-Berning, 1998 (art. : Rassenschande)", "Dict. encycl. d'histoire / M. Mourre, 1996 (art. : Nuremberg)"], "noteType": "dataSource"}, {"label": ["L'une des lois promulguées à Nuremberg le 15 septembre 1935, la loi de protection du sang allemand et de l'honneur allemand (Gesetz zum Schutze des deutschen Blutes und der deutschen Ehre), interdisait les mariages et relations sexuelles entre juifs et Allemands"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Politique et gouvernement - Allemagne - 1933-1945"}, {"authorized_access_point": "Juifs - Statut juridique"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Souillure de la race (Lois de Nuremberg, 1935)"}], "identifier": "http://www.idref.fr/111597153", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/111597153", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15126159t", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF15126159", "source": "BNF"}], "classification": [{"name": "Sciences politiques", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Histoire médiévale, moderne et contemporaine (sauf la France)", "type": "bf:ClassificationDdc", "classificationPortion": "940"}], "variant_access_point": ["Atteinte à la pureté raciale (Lois de Nuremberg ; 1935)", "Attentat à la pureté raciale (Lois de Nuremberg ; 1935)", "Profanation de la race (Lois de Nuremberg ; 1935)", "Protection du sang et de l'honneur allemands (Lois de Nuremberg ; 1935)", "Pureté raciale, Atteinte à la (Lois de Nuremberg ; 1935)", "Race - Souillure (Lois de Nuremberg ; 1935)", "Rassenschande (Lois de Nuremberg ; 1935)", "Souillure raciale (Lois de Nuremberg ; 1935)"], "authorized_access_point": "Souillure de la race (Lois de Nuremberg ; 1935)"} 1 +2024-09-10 15:43:21.172013 2024-09-10 15:43:21.172017 89b66082-39db-4830-b256-5730ca551289 {"md5": "bb5629257d1f3bb56652e0654e3ee9f3", "pid": "120299658", "note": [{"label": ["The encycl. of computer language - http://hopl.murdoch.edu.au (2010-04-27)", "SAP et ABAP / Y. Szwec, 2007", "SAP Developper Network - http://www.sdn.sap.com (2010-04-27)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Langages de 4e génération"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/120299658", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/120299658", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15589937c", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF15589937", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["ABAP/4 (langage de programmation)", "Advanced Business Application Programming (langage de programmation)"], "authorized_access_point": "ABAP (langage de programmation)"} 1 +2024-09-10 15:43:20.83555 2024-09-10 15:43:20.835555 df446125-4f0c-42c6-a76d-b657d7385c41 {"md5": "67046c314f1e9ffb2c51b00ea32fb011", "pid": "112539750", "note": [{"label": ["Les IAS : international accounting standards / C. Bigoy, 2003 - http://www.enssib.fr/bibliotheque/documents (2007-01-10)", "Les normes comptables internationales IAS/IFRS - http://www.comptalia.com (2007-01-10)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Normes comptables"}], "related": [{"authorized_access_point": "États financiers consolidés"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Normes IPSAS"}], "identifier": "http://www.idref.fr/112539750", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/112539750", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15126768f", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF15126768", "source": "BNF"}], "classification": [{"name": "Gestion", "type": "bf:ClassificationDdc", "classificationPortion": "650"}], "variant_access_point": ["Comptabilité - Normes internationales", "IAS", "IFRS", "International Accounting Standards", "International Financial Reporting Standards", "NCI", "Normalisation comptable internationale", "Normes internationales d'information financière"], "authorized_access_point": "Normes comptables internationales"} 1 +2024-09-10 15:43:20.906374 2024-09-10 15:43:20.90638 3861b219-7fb3-40cd-b7f7-d72470c2ffe1 {"md5": "2a906f6113b2d50e0cd207c912b58f96", "pid": "115898840", "note": [{"label": ["Wikipédia - http://fr.wikipedia.org/wiki (2007)", "SY 2006", "Laval RVM (en ligne), 2007-06-04 : Québec (Province) -- Histoire -- 1995 (Référendum constitutionnel)"], "noteType": "dataSource"}, {"label": ["Le 30-10-1995, à une majorité de 50,58%, les Québécois refusent d'accorder au gouvernement de Jacques Parizeau le mandat de négocier une souveraineté-association avec le reste du Canada"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Québec (Canada ; province) - Autonomie et mouvements indépendantistes"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/115898840", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/115898840", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15542056n", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF15542056", "source": "BNF"}], "classification": [{"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Histoire du reste du monde", "type": "bf:ClassificationDdc", "classificationPortion": "950"}], "variant_access_point": ["Référendum constitutionnel (Québec ; 1995)"], "authorized_access_point": "Référendum - Canada - Québec (Canada ; province) - 1995"} 1 +2024-09-10 15:43:20.969109 2024-09-10 15:43:20.969113 19693d01-c982-4672-ad5e-2b356830a6e4 {"md5": "7663c32ca98b34b0fed158fe7ce33126", "pid": "118419722", "note": [{"label": ["Wikidata - https://www.wikidata.org/wiki/Q22645 (2023-09-25)", "Dict. de français Larousse : ordiphone ; smartphone - http://www.larousse.fr/dictionnaires (2016-01-21)", "Le guide du pocket PC, du smartphone et du portable Media center / G. de Lussigny, 2006", "Smartphones sous Windows mobile 2003 / P. Antouly, 2006"], "noteType": "dataSource"}, {"label": ["Téléphone mobile disposant des fonctions d'un assistant numérique personnel (PDA : personal digital assistant), d'un appareil photo numérique et d'un ordinateur portable"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ordinateurs de poche"}, {"authorized_access_point": "Téléphonie mobile"}], "related": [{"authorized_access_point": "Applications mobiles"}, {"authorized_access_point": "Écosystèmes d'applications mobiles (informatique)"}, {"authorized_access_point": "Nomophobie"}, {"authorized_access_point": "Photographie mobile"}, {"authorized_access_point": "Vidéo mobile"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "BlackBerry (smartphone)"}, {"authorized_access_point": "iPhone (smartphone)"}, {"authorized_access_point": "Samsung Galaxy (smartphones)"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2007006251", "source": "LCSH"}], "authorized_access_point": "Smartphones"}, {"source": "RVMLaval", "authorized_access_point": "Téléphones intelligents"}], "identifier": "http://www.idref.fr/118419722", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/118419722", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15561010h", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF15561010", "source": "BNF"}], "classification": [{"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}, {"type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Ordiphones", "Téléphones assistants personnels", "Téléphones intelligents", "Téléphones multifonctions", "Téléphones PDA"], "authorized_access_point": "Smartphones"} 1 +2024-09-10 15:43:21.047505 2024-09-10 15:43:21.04751 137de9ac-f954-445e-8a33-6a7a2e1a4de0 {"md5": "77ecb5048a46a45fdf899bb6841c91c2", "pid": "118420763", "note": [{"label": ["Dict. encyclopédique du bouddhisme / P. Cornu, 2006", "Dict. de la sagesse orientale : bouddhisme, hindouisme, taoïsme, zen, 1989", "Encycl. of Buddhism / R. E. Buswell, 2003 (art. : Bodhicitta) : lam rim literature", "Encycl. des religions / F. Lenoir, Y. Tardan-Masquelier, 1997 (p. 1043) : \\"voie graduelle vers l'Éveil"], "noteType": "dataSource"}, {"label": ["Corpus de doctrine bouddhique proposant une méthode de progression vers l'Éveil"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bouddhisme - Doctrines"}, {"authorized_access_point": "Littérature bouddhique"}], "related": [{"authorized_access_point": "Bka'-gdams-pa"}, {"authorized_access_point": "Dge-lugs-pa (secte)"}, {"authorized_access_point": "Éveil (bouddhisme)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/118420763", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/118420763", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15556981h", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF15556981", "source": "BNF"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}], "variant_access_point": ["Lam-rim", "Voie graduelle vers l'Éveil", "Voie progressive (bouddhisme)"], "authorized_access_point": "Lamrim"} 1 +2024-09-10 15:43:21.112275 2024-09-10 15:43:21.112279 19bc192c-c012-43f4-9b35-b823fa0c7027 {"md5": "cf38422421fedd08b04cf9bc71b7620a", "pid": "11948949X", "note": [{"label": ["Loi n° 85-30 du 09 Janvier 1985 relative au développement et à la protection de la montagne - http://www.senat.fr (2007-11-08)", "International law and protection of mountain areas, 2002"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Espaces naturels - Protection"}], "related": [{"authorized_access_point": "Montagnes - Politique publique"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/11948949X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/11948949X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15570251m", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF15570251", "source": "BNF"}], "classification": [{"name": "Écologie", "type": "bf:ClassificationDdc", "classificationPortion": "577"}], "variant_access_point": ["Protection de la montagne", "Protection des montagnes"], "authorized_access_point": "Montagnes - Protection"} 1 +2024-09-10 15:43:21.236238 2024-09-10 15:43:21.236243 955c5e71-1245-4307-9c66-519e683afd22 {"md5": "99f60cf99823acdd5fa6b3fb891da12e", "pid": "12059353X", "note": [{"label": ["Dict. encyclopédique d'histoire / M. Mourre, 1996", "Dict. du Grand siècle / F. Bluche, 2005"], "noteType": "dataSource"}, {"label": ["A la mort du duc Vincent II de Gonzague (16 décembre 1627), la succession de Mantoue est disputée entre les Nevers (soutenus par la France) et les Guastalla (soutenus par l'Espagne), tandis que le duc de Savoie Charles Emmanuel I revendique le Montferrat. 26 avril 1631 : le traité de Cherasco attribue la succession à Charles de Nevers"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Relations extérieures - France - 1610-1643"}, {"authorized_access_point": "Italie - 17e siècle"}], "related": [{"authorized_access_point": "Mantoue (Italie ; duché)"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Bataille du pas de Suse (1629)"}, {"authorized_access_point": "Siège de Mantoue (Italie ; 1629-1630)"}, {"authorized_access_point": "Sièges de Casale Monferrato (Italie ; 1628-1630)"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2017003035", "source": "LCSH"}], "authorized_access_point": "Mantuan Succession, War of the, 1628-1631"}], "identifier": "http://www.idref.fr/12059353X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/12059353X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb155937336", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF15593733", "source": "BNF"}], "classification": [{"name": "Histoire de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "940"}], "variant_access_point": ["Crise de la succession de Mantoue (1628-1631)", "Guerre de Mantoue (1628-1631)", "Guerre de succession de Mantoue (1628-1631)", "Mantoue, Guerre de (1628-1631)", "Succession de Mantoue, Guerre de la (1628-1631)"], "authorized_access_point": "Guerre de la succession de Mantoue (1628-1631)"} 1 +2024-09-10 15:43:21.306004 2024-09-10 15:43:21.306007 d118942c-2850-4b79-90e2-4d3eed149e76 {"md5": "dcdffeb0fccd8452b6ce50bbf64e6f6e", "pid": "122348486", "note": [{"label": ["Services numériques - http://www2.educnet.education.fr (2008-02-15)", "Espaces numériques de travail - http://savoirscdi.cndp.fr (2008-02-15)", "ENT-SCOL : environnement numérique de travail, 2008"], "noteType": "dataSource"}, {"label": ["Dispositif global fournissant à un usager, un point d'accès, à travers les réseaux, à l'ensemble des ressources et des services numériques en rapport avec son activité"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Technologie éducative"}, {"authorized_access_point": "Portails Internet"}], "related": [{"authorized_access_point": "Environnement d'apprentissage personnel"}, {"authorized_access_point": "Tableaux blancs interactifs"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Plateformes d'apprentissage en ligne"}, {"authorized_access_point": "Universités virtuelles"}], "identifier": "http://www.idref.fr/122348486", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/122348486", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb156044499", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF15604449", "source": "BNF"}], "classification": [{"name": "Éducation", "type": "bf:ClassificationDdc", "classificationPortion": "370"}, {"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Bureaux virtuels (éducation)", "ENT", "Environnements numériques de travail (éducation)", "Espace numérique de travail (éducation)", "Espaces numériques de travail (éducation)"], "authorized_access_point": "Environnement numérique de travail"} 1 +2024-09-10 15:43:21.371957 2024-09-10 15:43:21.37196 ef469e30-10bc-4c03-8cba-bb9c9787ed74 {"md5": "ed60c3a0ad3ec6ec0c50fa5ff5ef9757", "pid": "122348877", "note": [{"label": ["iPhone / P. Fontaine, 2008", "Films & vidéos sur iPhone - iPod touch, 2007 [cédérom]", "Apple - http://www.apple.fr (2008-03-13)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Smartphones"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2007007371", "source": "LCSH"}], "authorized_access_point": "iPhone (Smartphone)"}], "identifier": "http://www.idref.fr/122348877", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/122348877", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb156082549", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF15608254", "source": "BNF"}], "classification": [{"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}, {"type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Apple iPhone (smartphone)"], "authorized_access_point": "iPhone (smartphone)"} 1 +2024-09-10 15:43:21.435262 2024-09-10 15:43:21.435265 6a010004-fc55-4659-8de3-5d0908b74094 {"md5": "f05df613fbe61a783e736aa7c6d0cd24", "pid": "122957032", "note": [{"label": ["Les Kindertransport, 1938-1940 - http://www.ushmm.org (2008-03-31)", "Dict. of the Holocaust / E. J. Epstein, P. Rosen, 1990"], "noteType": "dataSource"}, {"label": ["Hist. du peuple juif au XXe siècle : de 1914 à nos jours / S. Epstein, 1998. - Encycl. of the Holocaust / I. Gutman, 1990"], "noteType": "dataNotFound"}, {"label": ["Opération de sauvetage (décembre 1938-mai 1940) qui permit de transférer en Grande-Bretagne environ 10000 enfants juifs d'Allemagne, d'Autriche, de Tchécoslovaquie et de Dantzig"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Juifs - 1933-1945"}], "related": [{"authorized_access_point": "Enfants juifs pendant la Shoah"}, {"authorized_access_point": "Enfants réfugiés"}, {"authorized_access_point": "Guerre mondiale (1939-1945) - Enfants"}, {"authorized_access_point": "Guerre mondiale (1939-1945) - Juifs -- Sauvetage"}, {"authorized_access_point": "Réfugiés juifs"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh00008556", "source": "LCSH"}], "authorized_access_point": "Kindertransports (Rescue operations)"}], "identifier": "http://www.idref.fr/122957032", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/122957032", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb156163936", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF15616393", "source": "BNF"}], "classification": [{"name": "Histoire médiévale, moderne et contemporaine (sauf la France)", "type": "bf:ClassificationDdc", "classificationPortion": "940"}], "variant_access_point": ["Kindertransports (opérations de sauvetage ; 1938-1940)"], "authorized_access_point": "Kindertransport (opération de sauvetage ; 1938-1940)"} 1 +2024-09-10 15:43:21.514087 2024-09-10 15:43:21.514091 d3ad980f-9d5a-4799-b168-40421bf74f17 {"md5": "3a19043eb1b3581ca802313ae5cd8699", "pid": "123472466", "note": [{"label": ["Encycl. de l'informatique et des systèmes d'information, 2006", "Entrepôts de données [in] Techniques de l'ingénieur, 2005, H3870", "Modélisation et implémentation de systèmes OLAP pour des objets mobiles / T. Wan, 2007 [thèse]", "Refonte globale d'un cube OLAP des ventes européennes de la société / M. Bellec, 2007 [mémoire]", "OLAP solutions : building multidimensional information systems / E. Thomsen, 2002"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Systèmes d'aide à la décision"}], "related": [{"authorized_access_point": "Bases de données multidimensionnelles"}, {"authorized_access_point": "Bases de données"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/123472466", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/123472466", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15711780x", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF15711780", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}, {"name": "Gestion et organisation de l'entreprise", "type": "bf:ClassificationDdc", "classificationPortion": "650"}], "variant_access_point": ["Applications OLAP (informatique)", "Cubes OLAP (informatique)", "Online Analytical Processing (informatique)", "Systèmes OLAP (informatique)"], "authorized_access_point": "OLAP (informatique)"} 1 +2024-09-10 15:43:21.573557 2024-09-10 15:43:21.57356 9ae1acb8-297c-49e7-b8cc-d602ac04db75 {"md5": "1db597c195740ba7f3ee661d68632389", "pid": "124452248", "note": [{"label": ["LC Authorities (en ligne), 2008-06-16", "WPF : Windows Presentation Foundation : Développez des applications riches sous Windows / O. Dewit, 2008", "WPF : le développement d'interfaces riches : introduction à Silverlight / M. Diaz Orlich, X. Poinas, Y. Lautredou, 2008", "Foundations of WPF : an introduction to Windows Presentation Foundation / L. Moroney, 2006"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Microsoft .NET Framework (plate-forme informatique)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/124452248", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/124452248", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15661929k", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF15661929", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Microsoft WPF (plate-forme informatique)", "Windows Presentation Foundation (plate-forme informatique)", "WPF (plate-forme informatique)"], "authorized_access_point": "Microsoft Windows Presentation Foundation (plate-forme informatique)"} 1 +2024-09-10 15:43:21.637097 2024-09-10 15:43:21.6371 cf4ac662-5a81-4dc4-86f8-fc2a235c907f {"md5": "7c5443eee9da02b7001dca20d83514ee", "pid": "129822051", "note": [{"label": ["Wikidata - https://www.wikidata.org/wiki/Q836386 (2023-08-31)", "Robert encyclopédique des noms propres 2008", "L'année 2004 dans Le Monde / D. Rioux, 2005", "Universalia 2005", "Historical dict. of Ukraine / Z. E. Kohut, B. Y. Nebesio, M. Yurkevich, 2005 (p. 9-14)", "Le Monde, 2004-11-23"], "noteType": "dataSource"}, {"label": ["Novembre-décembre 2004 : manifestations pacifiques de masse à Kiev et dans les grandes villes d'Ukraine pour protester contre le résultat officiel de l'élection présidentielle, favorable au candidat pro-russe Viktor Ianoukovitch, contre Viktor Iouchtchenko (pro-occidental). Cette mobilisation et les pressions internationales aboutissent à un nouveau second tour et la victoire de V. Iouchtchenko (26 décembre)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ukraine - 1991-...."}], "related": [{"authorized_access_point": "Présidents - Ukraine - Élection (2004)"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2005001194", "source": "LCSH"}], "authorized_access_point": "Ukraine--History--Orange Revolution, 2004"}, {"source": "RVMLaval", "authorized_access_point": "Ukraine--Histoire--2004 (Révolution orange)"}], "identifier": "http://www.idref.fr/129822051", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/129822051", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15847405k", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF15847405", "source": "BNF"}], "classification": [{"name": "Sciences politiques", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Histoire médiévale, moderne et contemporaine (sauf la France)", "type": "bf:ClassificationDdc", "classificationPortion": "940"}], "variant_access_point": ["Marronniers, Révolution des (Ukraine ; 2004)", "Orange, Révolution (Ukraine ; 2004)", "Orange Revolution (Ukraine ; 2004)", "Révolution des marronniers (Ukraine ; 2004)"], "authorized_access_point": "Révolution Orange (Ukraine ; 2004)"} 1 +2024-09-10 15:43:21.69599 2024-09-10 15:43:21.695993 cd44aca0-4011-408a-a514-5ed2ea257985 {"md5": "39f6d8ab9ab1e2704bd6fba739bd285d", "pid": "130683035", "note": [{"label": ["Petit Robert 2009", "Pédagogie, dict. des concepts-clés : apprentissage, formation, psychologie cognitive / F. Raynal, A. Rieunier, 2005", "Dict. encyclopédique de l'éducation et de la formation / P. Champy, C. Étévé, 1994", "Dict. de l'éducation / A. van Zanten, 2008"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Comportement humain"}, {"authorized_access_point": "Éducation"}], "related": [{"authorized_access_point": "Apprentissage - Physiologie"}, {"authorized_access_point": "Apprentissage professionnel"}, {"authorized_access_point": "Compétence"}, {"authorized_access_point": "Compréhension"}, {"authorized_access_point": "Conception universelle de l'apprentissage"}, {"authorized_access_point": "Mathétique"}, {"authorized_access_point": "Psychologie de l'apprentissage"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Acquisition linguistique"}, {"authorized_access_point": "Apprentissage contextualisé"}, {"authorized_access_point": "Apprentissage exploratoire"}, {"authorized_access_point": "Apprentissage mixte"}, {"authorized_access_point": "Apprentissage organisationnel"}, {"authorized_access_point": "Apprentissage par investigation"}, {"authorized_access_point": "Apprentissage par la découverte"}, {"authorized_access_point": "Apprentissage par la pratique"}, {"authorized_access_point": "Apprentissage par le jeu"}, {"authorized_access_point": "Apprentissage social"}, {"authorized_access_point": "Apprentissage transformationnel"}, {"authorized_access_point": "Dispositifs pédagogiques"}, {"authorized_access_point": "Environnement d'apprentissage personnel"}, {"authorized_access_point": "Tâches (éducation)"}, {"authorized_access_point": "Transfert d'apprentissage"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Apprentissage"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85075520", "source": "LCSH"}], "authorized_access_point": "Learning"}], "identifier": "http://www.idref.fr/130683035", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/130683035", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb159423983", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF15942398", "source": "BNF"}], "classification": [{"name": "Psychologie, psychanalyse", "type": "bf:ClassificationDdc", "classificationPortion": "150"}, {"name": "Education et enseignement", "type": "bf:ClassificationDdc", "classificationPortion": "370"}], "variant_access_point": ["Processus d'apprentissage"], "authorized_access_point": "Apprentissage"} 1 +2024-09-10 15:43:21.756938 2024-09-10 15:43:21.756941 a74bfbb7-a5ab-4b00-94bb-ba6fc01a8dd1 {"md5": "57e69a62ccfb316aced3ccd94209234a", "pid": "13073019X", "note": [{"label": ["Hist. de la France au XXe siècle. 2, 1930-1945 / S. Berstein, P. Milza, 2003 (p. 64-65)", "Hist. de la France politique. 4, La République recommencée : de 1914 à nos jours / S. Berstein, M. Winock, 2004 (p. 62)", "Le siècle des intellectuels / M. Winock, 1997 (p. 204)", "Hist. politique de la Jeune Droite, 1929-1942 / S. Kessler, 2001"], "noteType": "dataSource"}, {"label": ["Hist. des droites en France. 2, Cultures / J.-F. Sirinelli, 2006"], "noteType": "dataNotFound"}, {"label": ["Nom donné par Emmanuel Mounier à un groupe d'écrivains et d'intellectuels français dits \\"non conformistes\\" des années 1930, d'obédience nationaliste et principalement catholique, qui voulaient renouveler la pensée de Charles Maurras (Jean de Fabrègues, Jean-Pierre Maxence, Thierry Maulnier)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Politique et gouvernement - France - 1914-1940"}, {"authorized_access_point": "Partis de droite"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/13073019X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/13073019X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb159000410", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF15900041", "source": "BNF"}], "classification": [{"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Histoire de la France", "type": "bf:ClassificationDdc", "classificationPortion": "944"}], "variant_access_point": ["Droite, Jeune"], "authorized_access_point": "Jeune Droite"} 1 +2024-09-10 15:43:21.818226 2024-09-10 15:43:21.818229 5184787a-63a7-4b32-a0a3-1dd5308d2fae {"md5": "ec36ec3d23d89e96e07d115bd648d099", "pid": "131981226", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Art - Italie"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Peinture - Italie - 19e siècle"}, {"authorized_access_point": "Scapigliatura"}], "identifier": "http://www.idref.fr/131981226", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/131981226", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15936258b", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF15936258", "source": "BNF"}], "classification": [{"name": "Arts (sauf littérature)", "type": "bf:ClassificationDdc", "classificationPortion": "700"}], "authorized_access_point": "Art - Italie - 19e siècle"} 1 +2024-09-10 15:43:21.94465 2024-09-10 15:43:21.944653 92509b4b-c139-46c4-bbdb-c4a572bec13c {"md5": "25c54e86348b7242d57d3230ee7b8adc", "pid": "133566129", "note": [{"label": ["GVK - Gemeinsamer Verbundkatalog : Freundschafts- Handels- und Schifffahrts- Vertrag zwischen Preußen und den übrigen Staaten des Zollvereins einerseits und der Argentinischen Konföderation andereseits - http://gso.gbv.de (2009-04-28)", "El tratado argentino-alemán de amistad, comercio y navegación de 1857 : estudios histórico-jurídicos / T. Duve, 2007"], "noteType": "dataSource"}, {"label": ["Traité signé le 19 septembre1857, ratifié le 3 juin 1859"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Relations extérieures - Prusse - 1815-1871"}, {"authorized_access_point": "Relations extérieures - Allemagne - 1848-1870"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/133566129", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/133566129", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb160053063", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16005306", "source": "BNF"}], "classification": [{"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Économie politique", "type": "bf:ClassificationDdc", "classificationPortion": "330"}, {"name": "Droit", "type": "bf:ClassificationDdc", "classificationPortion": "340"}], "variant_access_point": ["Freundschafts- Handels- und Schifffahrts- Vertrag zwischen Preußen und den übrigen Staaten des Zollvereins einerseits und der Argentinischen Konföderation andererseits (1857)", "Tratado argentino-alemán de amistad, comercio y navegación (1857)"], "authorized_access_point": "Tratado de amistad, comercio y navegación entre la Prusia y los otros Estados del Zollverein alemán por una parte y la Confederación argentina por la otra parte (1857)"} 1 +2024-09-10 15:43:22.008069 2024-09-10 15:43:22.008072 d1f0adba-fed9-4927-9805-df19b0befd9a {"md5": "955dd33aabd40010b6e5f6a28b762777", "pid": "135615003", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/135615003", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/135615003", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb160730930", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16073093", "source": "BNF"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}, {"name": "Sciences politiques", "type": "bf:ClassificationDdc", "classificationPortion": "320"}], "variant_access_point": ["Église catholique - Relations extérieures - 21e siècle"], "authorized_access_point": "Diplomatie pontificale - 21e siècle"} 1 +2024-09-10 15:43:22.07017 2024-09-10 15:43:22.070174 2254878f-9218-4da3-a764-f823d89cb05d {"md5": "a8b7e22d29ca220bb445333794542e9c", "pid": "136707165", "note": [{"label": ["Encycl. universalis (art. : Chiisme ou shī‘isme) - http://www.universalis-edu.com (2018-05-29)", "Al-wasaṭ - http://www.alwasatnews.com (2018-05-14)", "Wīkī Šīʿaẗ - http://ar.wikishia.net (2018-05-14)", "Dict. encyclopédique de l'Islam / C. Glassé, 1991", "Dict. historique de l'Islam / D. et J. Sourdel, 2004", "Hist. de l'Islam / S. Mervin, 2001 : courant akhbārī", "Qu'est-ce que le shî'isme? / M.-A. Amir-Moezzi, C. Jambet, 2004 : Akhbārīyya", "The Oxford dict. of Islam / J.-L. Esposito, 2003", "BnF Service arabe, 2018-05-14"], "noteType": "dataSource"}, {"label": ["Membres d'une École du chiisme duodécimain, partisans d'une jurisprudence exclusivement fondée sur les traditions reçues (akhbār) des imams"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Chiites"}, {"authorized_access_point": "Théologiens musulmans"}], "related": [{"authorized_access_point": "Imāmat"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2008007856", "source": "LCSH"}], "authorized_access_point": "Akhbārīyah"}], "identifier": "http://www.idref.fr/136707165", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/136707165", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb161107725", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16110772", "source": "BNF"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}, {"type": "bf:ClassificationDdc", "classificationPortion": "305"}], "variant_access_point": ["Akhbārī", "Aẖbārī", "أخباري", "Aẖbāriyyaẗ", "أخباريّة", "Akhbārīyah", "Akhbārīyya", "Aẖbāriyyūn", "أخباريّون", "Al- aẖbārī", "الأخباري", "Al- aẖbāriyyaẗ", "الأخباريّة", "Al- aẖbāriyyūn", "الأخباريّون", "Akhbarisme", "Courant akhbārī", "École akhbārīe", "Mouvement akhbārī", "Traditionalistes akhbārī"], "authorized_access_point": "Akhbārīs"} 1 +2024-09-10 15:43:22.136329 2024-09-10 15:43:22.136335 1db85ab7-679c-4d7a-ae36-4e055f7322d9 {"md5": "b95e055ed19a9de582cf550722e06d25", "pid": "13776541X", "note": [{"label": ["L'année 1989 dans Le Monde / E. Masurel, 1990", "Dict. encyclopédique d'histoire / M. Mourre (art. : Hongrie)", "Mil ans d'hist. hongroise / I. G. Tóth, 2003 (p. 667)", "Historical dict. of Hungary / S. B. Várdy, 1997 (art. : Communism, Collapse of (1989-1990) ; Iron Curtain)"], "noteType": "dataSource"}, {"label": ["27 mai 1989 : les ministres autrichien et hongrois des affaires étrangères (Alois Mock et Gyula Horn) coupent symboliquement les défenses frontalières. 19 août : l'organisation près de Sopron d'un \\"pique-nique paneuropéen\\" par Otto de Habsbourg et Imre Pozsgay permet à environ 500 Allemands de l'Est de passer en Autriche. 10 septembre : G. Horn annonce l'ouverture de la frontière, qu'environ 25.000 Allemands de l'Est franchissent en septembre"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Frontières - Hongrie"}, {"authorized_access_point": "Frontières - Autriche"}, {"authorized_access_point": "Rideau de fer (frontière)"}, {"authorized_access_point": "Europe de l'Est - 1989-1990 (Chute du communisme)"}], "related": [{"authorized_access_point": "Allemagne - 1989-1990 (Unification)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/13776541X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/13776541X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb161648597", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16164859", "source": "BNF"}], "classification": [{"name": "Histoire de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "940"}], "variant_access_point": ["Frontière austro-hongroise, Ouverture de la (1989)", "Ouverture du Rideau de fer (1989)", "Pique-nique paneuropéen (1989)", "Rideau de fer, Ouverture du (1989)"], "authorized_access_point": "Ouverture de la frontière austro-hongroise (1989)"} 1 +2024-09-10 15:43:22.198869 2024-09-10 15:43:22.198874 59f74fd4-69a8-429a-943d-b85697fb042c {"md5": "131896d234a397932582dc25e0f57e15", "pid": "137978685", "note": [{"label": ["Quid - http://www.quid.fr (2009-11-14)", "Wikipédia : Affaire des ventes d'armes à l'Angola - http://fr.wikipedia.org (2009-11-14)", "Les hommes de l'\\"Angolagate\\" / S. Smith [in] Le Monde, 2001-01-13", "Angolagate : Pasqua implique de nouveau Chirac et Villepin [in] Le Figaro, 2009-11-13"], "noteType": "dataSource"}, {"label": ["Affaire de trafic d'armes vers l'Angola au cours de la guerre civile entre 1993 et 1998. L'enquête, commencée en juillet 2000, a impliqué notamment Pierre Falcone, Arkadi Gaydamak, Charles Pasqua et Jean-Christophe Mitterrand. Le nom d'\\"Angolagate\\" (par allusion au Watergate), donné à l'affaire par le journal Le Monde en janvier 2001, a fait florès. 6 octobre 2008-27 octobre 2009 : procès en première instance"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Politique et gouvernement - France - 1995-2007"}, {"authorized_access_point": "Politique et gouvernement - France - 1993-1995"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/137978685", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/137978685", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16157417q", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16157417", "source": "BNF"}], "classification": [{"name": "Histoire de la France", "type": "bf:ClassificationDdc", "classificationPortion": "944"}, {"name": "Histoire du reste du monde", "type": "bf:ClassificationDdc", "classificationPortion": "950"}], "variant_access_point": ["Affaire des ventes d'armes à l'Angola (1993-....)", "Affaire du trafic d'armes vers l'Angola (1993-....)", "Affaire Falcone (1993-....)", "Procès de l'Angolagate (2008-....)", "Scandale de l'Angolagate (1993-....)", "Trafic d'armes vers l'Angola, Affaire du (1993-....)", "Ventes d'armes à l'Angola, Affaire des (1993-....)"], "authorized_access_point": "Angolagate (1993-....)"} 1 +2024-09-10 15:43:22.265584 2024-09-10 15:43:22.265587 bf4deb1f-7724-41b8-af44-2e8bb2b0356c {"md5": "0bec2468047b34a5bec9aba34e68122e", "pid": "139100857", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mythologie coréenne"}], "related": [{"authorized_access_point": "Dieux taoïstes"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2006004413", "source": "LCSH"}], "authorized_access_point": "Gods, Korean"}], "identifier": "http://www.idref.fr/139100857", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/139100857", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16158627t", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16158627", "source": "BNF"}], "classification": [{"name": "Religion", "type": "bf:ClassificationDdc", "classificationPortion": "200"}], "authorized_access_point": "Dieux coréens"} 1 +2024-09-10 15:43:22.378463 2024-09-10 15:43:22.378467 d041d0b3-9f87-4c09-b25a-5e10d024d4df {"md5": "d84fcab6eccff9f388ec2026f3ed2029", "pid": "142761583", "note": [{"label": ["LC Authorities (en ligne), 2010-03-08", "VMware cookbook / R. Troy, M. Helmke, 2010", "VMware Virtualization Software for Desktops, Servers & Virtual Machines for a Private Cloud - http://www.vmware.com (2010-03-08)", "Virtualisation des systèmes d'information avec VMware / P. Gillet, 2009"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Systèmes virtuels (informatique)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/142761583", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/142761583", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16186298c", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16186298", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "authorized_access_point": "VMware (logiciels)"} 1 +2024-09-10 15:43:22.44648 2024-09-10 15:43:22.446483 1b388a0f-593b-4d2e-93a0-d8e20dd9e8d3 {"md5": "d8f0b212e86cf8a6d6d39ad5d728ee9f", "pid": "144664194", "note": [{"label": ["Apple - http://www.apple.com/fr (2010-05-25)", "Développer pour l'iPhone et l'iPad / É. Vautherin, 2010", "My new iPad : simple ways to get started / W. Wang, 2010"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tablettes numériques"}, {"authorized_access_point": "Apple (ordinateurs)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/144664194", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/144664194", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16204308w", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16204308", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["iPad (ordinateur)"], "authorized_access_point": "Apple iPad (ordinateur)"} 1 +2024-09-10 15:43:22.521949 2024-09-10 15:43:22.521953 cd9d9736-3d04-43a7-a683-cfdff54103ea {"md5": "896ec8a9307ead26e55d2ff83a5a88fa", "pid": "145035468", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Grec (langue) biblique"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Ai̓ṓn (le mot grec)"}, {"authorized_access_point": "Diakonía (le mot grec)"}, {"authorized_access_point": "Didáskalos (le mot grec)"}, {"authorized_access_point": "Dýnamis (le mot grec)"}, {"authorized_access_point": "Ei̓kṓn (le mot grec)"}, {"authorized_access_point": "Fōnī ́ (le mot grec)"}, {"authorized_access_point": "Gnōstikós (le mot grec)"}, {"authorized_access_point": "Kardía (le mot grec)"}, {"authorized_access_point": "Koinōnía (le mot grec)"}, {"authorized_access_point": "Leitourgía (le mot grec)"}, {"authorized_access_point": "Martyría (le mot grec)"}, {"authorized_access_point": "Mathītī́s (le mot grec)"}, {"authorized_access_point": "Mystī́rion (le mot grec)"}, {"authorized_access_point": "Nómos (le mot grec)"}, {"authorized_access_point": "Noûs (le mot grec)"}, {"authorized_access_point": "Oi̓kodomeîn (le mot grec)"}, {"authorized_access_point": "Oi̓kodomī́ (le mot grec)"}, {"authorized_access_point": "Oi̓konomía (le mot grec)"}, {"authorized_access_point": "Paideía (le mot grec)"}, {"authorized_access_point": "Paráklit̄os (le mot grec)"}, {"authorized_access_point": "Parrīsía (le mot grec)"}, {"authorized_access_point": "Pâs (le mot grec)"}, {"authorized_access_point": "Peripatô̄ (le mot grec)"}, {"authorized_access_point": "Perisseía (le mot grec)"}, {"authorized_access_point": "Perisseúein (le mot grec)"}, {"authorized_access_point": "Pístis (le mot grec)"}, {"authorized_access_point": "Proaíresis (le mot grec)"}, {"authorized_access_point": "Prosérchomai (le mot grec)"}, {"authorized_access_point": "Sōtī́r (le mot grec)"}, {"authorized_access_point": "Syggnṓmī (le mot grec)"}, {"authorized_access_point": "Syneídīsis (le mot grec)"}, {"authorized_access_point": "Téleios (le mot grec)"}, {"authorized_access_point": "Télos (le mot grec)"}, {"authorized_access_point": "Theosofía (le mot grec)"}, {"authorized_access_point": "Tīreîn (le mot grec)"}], "identifier": "http://www.idref.fr/145035468", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/145035468", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb162077797", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16207779", "source": "BNF"}], "classification": [{"name": "Religion", "type": "bf:ClassificationDdc", "classificationPortion": "200"}, {"name": "Langues", "type": "bf:ClassificationDdc", "classificationPortion": "400"}], "authorized_access_point": "Grec (langue) biblique - Vocabulaire"} 1 +2024-09-10 15:43:22.590433 2024-09-10 15:43:22.590437 15ad6c67-7310-4dd6-8e88-82993570f9cf {"md5": "a5793170a479b2307bfb6b55a405a03e", "pid": "145909093", "note": [{"label": ["Wikipédia : Attentat du 8 mai 2002 à Karachi - http://fr.wikipedia.org (2010-06-28)", "Encycl. universalis (art. : Pakistan actualité (1990-2008)) - http://www.universalis-edu.com (2010-06-28)", "L'année 2002 dans Le Monde / M. Roche, 2003", "Collectif de familles de victimes décédées dans l'attentat du 8 mai 2002 à Karachi - http://www.verite-attentat-karachi.org (2010-06-28)"], "noteType": "dataSource"}, {"label": ["8 mai 2002 : un attentat à la voiture piégée à Karachi (Pakistan) tue 14 personnes, dont 11 Français travaillant à la Direction des constructions navales, et fait plus de 20 blessés (dont 12 Français)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Attentats - Pakistan"}, {"authorized_access_point": "Pakistan - 1947-...."}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/145909093", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/145909093", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16205959p", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16205959", "source": "BNF"}], "classification": [{"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Histoire du reste du monde", "type": "bf:ClassificationDdc", "classificationPortion": "950"}], "variant_access_point": ["Attentat de Karachi (2002)"], "authorized_access_point": "Karachi, Attentat de (2002)"} 1 +2024-09-10 15:43:22.653388 2024-09-10 15:43:22.653392 9b425200-acde-4a87-b1ff-9826040a10eb {"md5": "d084f8d535295b2180c86bfdf6ff164b", "pid": "146923081", "note": [{"label": ["Apple - http://www.apple.fr (2010-09-29)", "Ipod touch / A. Glevarec, 2008", "The iPod touch pocket guide / C. Breen, 2009"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Lecteurs MP3"}, {"authorized_access_point": "Ordinateurs de poche"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/146923081", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/146923081", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16232911k", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16232911", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}, {"name": "Audiovisuel", "type": "bf:ClassificationDdc", "classificationPortion": "791"}], "variant_access_point": ["Apple iPod touch (baladeur numérique)"], "authorized_access_point": "iPod touch (baladeur numérique)"} 1 +2024-09-10 15:43:22.717187 2024-09-10 15:43:22.717191 c116afde-2ad6-4e9a-abc7-b84abd2864cd {"md5": "b4bd630ab769bf9dfab6f25b8d5448e4", "pid": "147286433", "note": [{"label": ["Wikipedia - http://fr.wikipedia.org (2010-11-02)", "Mind map : dessine-moi l'intelligence / T. et B. Buzan,1995", "Organisez votre vie avec le mind mapping / P. Mongin, X. Delengaigne, 2009"], "noteType": "dataSource"}, {"label": ["Représentations graphiques des liens entre idées et/ou concepts sous une forme généralement arborescente. Pour des cartes mentales en géographie, voir la vedette \\"Perception géographique", "S'emploie également en subdivision"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Méthodes graphiques"}, {"authorized_access_point": "Psychologie cognitive"}], "related": [{"authorized_access_point": "Cartes cognitives"}, {"authorized_access_point": "Créativité"}, {"authorized_access_point": "Heuristique"}, {"authorized_access_point": "Traitement de l'information (psychologie)"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2007007421", "source": "LCSH"}], "authorized_access_point": "Concept mapping"}, {"source": "RVMLaval", "authorized_access_point": "Cartographie conceptuelle"}], "identifier": "http://www.idref.fr/147286433", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/147286433", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16241164x", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16241164", "source": "BNF"}], "classification": [{"name": "Psychologie, psychanalyse", "type": "bf:ClassificationDdc", "classificationPortion": "150"}], "variant_access_point": ["Arborescences heuristiques", "Arbres à idées", "Arbres heuristiques", "Cartes des idées", "Cartes mentales (psychologie)", "Diagrammes heuristiques", "Idées, Cartes des", "Mind mapping", "Schémas heuristiques", "Topogrammes"], "authorized_access_point": "Cartes heuristiques"} 1 +2024-09-10 15:43:22.78415 2024-09-10 15:43:22.784154 3f680d0e-932a-481b-91df-48d80bd5f0e5 {"md5": "260895b048a9ed26d7ee85623b5ddc64", "pid": "148541372", "note": [{"label": ["Grand dict. terminologique : ardoise électronique ; tablette électronique ; ordinateur tablette - http://www.granddictionnaire.com (2010-12-02)", "Faut-il se laisser tenter par la tablette numérique ? [in] Le Particulier, 2010, 1054", "Les systèmes d'information de gestion / J. O'Brien, 1997 : tablettes électroniques"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ordinateurs portatifs"}], "related": [{"authorized_access_point": "Applications mobiles"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Samsung Galaxy Note 8.0 (ordinateur)"}, {"authorized_access_point": "Amazon Kindle Fire (ordinateur)"}, {"authorized_access_point": "Microsoft Surface (ordinateur)"}, {"authorized_access_point": "Google Nexus (ordinateur)"}, {"authorized_access_point": "Amazon Kindle (ordinateur)"}, {"authorized_access_point": "Samsung Galaxy Tab (ordinateur)"}, {"authorized_access_point": "Apple iPad (ordinateur)"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2010009240", "source": "LCSH"}], "authorized_access_point": "Tablet computers"}], "identifier": "http://www.idref.fr/148541372", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/148541372", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb162446761", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16244676", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Ardoises électroniques", "Ordinateurs tablettes", "Tablettes électroniques"], "authorized_access_point": "Tablettes numériques"} 1 +2024-09-10 15:43:22.851618 2024-09-10 15:43:22.851622 12eb71da-9978-4582-80a0-2f38bab92ce5 {"md5": "d9a885aeed453780fb54488d456a6efc", "pid": "148542182", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Tolérance religieuse"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/148542182", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/148542182", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16248927m", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16248927", "source": "BNF"}], "classification": [{"name": "Religion", "type": "bf:ClassificationDdc", "classificationPortion": "200"}, {"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Histoire", "type": "bf:ClassificationDdc", "classificationPortion": "900"}], "authorized_access_point": "Tolérance religieuse - Histoire"} 1 +2024-09-10 15:43:22.933874 2024-09-10 15:43:22.93388 5b425126-91d7-470b-a06c-248afc32221f {"md5": "3a9d628e408468f8c645fa9c418b52c2", "pid": "151385432", "note": [{"label": ["Wikipédia - http://fr.wikipedia.org (2011-03-28)", "Hist. des États-Unis / J.-M. Lacroix, 2010", "Hist. des États-Unis : de 1776 à nos jours / J. Portes, 2010 (p. 22)", "Dict. des États-Unis / D. Royot, 2010 (art. : Constitution)", "Une hist. populaire des États-Unis / H. Zinn, 2002", "La Révolution américaine / B. Cottret, 2003 (p. 305) : Founding Fathers", "Historical dict. of Revolutionary America / T. M. Mays, 2005 : Founding Fathers"], "noteType": "dataSource"}, {"label": ["Nom donné aux 56 rédacteurs de la déclaration d'indépendance des États-Unis (1776) et aux 55 délégués à la Convention de Philadelphie, rédacteurs de la Constitution américaine (1787). Les principaux sont Georges Washington, James Madison, Thomas Jefferson, Benjamin Franklin, Alexander Hamilton et John Jay"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Hommes d'État - États-Unis"}, {"authorized_access_point": "États-Unis - 1775-1783 (Révolution)"}, {"authorized_access_point": "États-Unis - 1783-1789 (Confédération)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/151385432", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/151385432", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16276915r", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16276915", "source": "BNF"}], "classification": [{"name": "Groupes sociaux", "type": "bf:ClassificationDdc", "classificationPortion": "305"}, {"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Histoire du reste du monde", "type": "bf:ClassificationDdc", "classificationPortion": "950"}], "variant_access_point": ["Fondateurs des États-Unis", "Founding Fathers of the United States"], "authorized_access_point": "Pères fondateurs des États-Unis"} 1 +2024-09-10 15:43:22.993942 2024-09-10 15:43:22.993945 d2baa4f4-9c9b-47d2-83b9-55753168ee65 {"md5": "15825648591329a2c8e34fef8fa4421f", "pid": "15212201X", "note": [{"label": ["LC online cat., 2017-06-09 : Embassy takeovers -- England -- London", "Wikipédia : Opération Nimrod - https://fr.wikipedia.org (2017-06-09)", "Universalia 1981", "The Longman companion to Britain since 1945 / C. Cook, J. Stevenson, 2000", "Operation Nimrod : the Iranian Embassy Siege - http://www.eliteukforces.info - 2017-06-09 (2017-06-09)"], "noteType": "dataSource"}, {"label": ["30 avril 1980 : un commando de 6 Arabes iraniens du Khouzistan opposés à la République islamique prend en otage 26 membres du personnel de l'ambassade d'Iran à Londres, et réclament la libération de 91 prisonniers en Iran, que refuse le président Bani Sadr ; un otage est exécuté et 5 sont relâchés. Le 5 mai les SAS donnent l'assaut (opération Nimrod) : 5 des 6 membres du commando sont abattus, un otage est tué et 19 sont libérés"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Otages - Grande-Bretagne"}, {"authorized_access_point": "Grande-Bretagne - 1979-...."}, {"authorized_access_point": "Londres (GB) - Histoire"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/15212201X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/15212201X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb165050300", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16505030", "source": "BNF"}], "classification": [{"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Histoire de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "940"}], "variant_access_point": ["Ambassade d'Iran à Londres, Prise d'otages de l' (1980)", "Londres, Prise d'otages de (1980)", "Nimrod, Opération (1980)", "Opération Nimrod (1980)", "Otages de l'ambassade d'Iran à Londres (1980)", "Prise d'otages de Londres (1980)", "Siège de l'ambassade d'Iran à Londres (1980)"], "authorized_access_point": "Prise d'otages de l'ambassade d'Iran à Londres (1980)"} 1 +2024-09-10 15:43:23.058591 2024-09-10 15:43:23.058594 2c293974-899e-4082-aaea-5d05e809f1a4 {"md5": "deeeedef9fbb886cf3361b48a964cc8b", "pid": "15909545X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Art - [Localisations géographiques]"}], "related": [{"authorized_access_point": "Art kazakh"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/15909545X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/15909545X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb165747246", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16574724", "source": "BNF"}], "classification": [{"name": "Arts (sauf littérature)", "type": "bf:ClassificationDdc", "classificationPortion": "700"}], "authorized_access_point": "Art - Kazakhstan"} 1 +2024-09-10 15:43:23.130844 2024-09-10 15:43:23.130848 7c554268-f5c0-45cb-b259-1c27bea34d7e {"md5": "eeabc9b558ba68de8c7e195da4914251", "pid": "167934813", "note": [{"label": ["Cloud computing : une rupture décisive pour l'informatique d'entreprise / G. Plouin, 2011", "Mashups : architecture des applications Web tactiques d'entreprise / J.-M. Chauvet [in] Techniques de l'ingénieur, 2012, H6025", "Big data glossary : a guide to the new generation of data tools / P. Warden, 2011", "Storing and managing big data : NoSQL, Hadoop and more / K. Roebuck, 2011"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bases de données"}], "related": [{"authorized_access_point": "Données massives"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/167934813", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/167934813", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16665965j", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16665965", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}], "authorized_access_point": "NoSQL"} 1 +2024-09-10 15:43:23.193997 2024-09-10 15:43:23.194 7dcc88e9-3bf5-4c55-8c87-8dd400670f85 {"md5": "f36622ba6d4416cb835d022dfbdcede4", "pid": "168476010", "note": [{"label": ["Code civil (art.16 à 16-9) - http://www.legifrance-gouv.fr (2013-03-26)", "Convention d'Oviédo du 4 avril 1997 sur les droits de l'homme et la biomédecine / Conseil de l'Europe, 1998", "Déclaration universelle sur la bioéthique et les droits de l'homme / Unesco, 2005 - http://portal.unesco.org (2013-03-26)", "Droits de l'homme, bioéthique et rapport au corps / Commission Nationale Consultative des droits de l'homme, 2007 - http://www.cncdh.fr (2013-03-26)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Bioéthique"}, {"authorized_access_point": "Droits de l'homme"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/168476010", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/168476010", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16672663h", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16672663", "source": "BNF"}], "classification": [{"name": "Droit", "type": "bf:ClassificationDdc", "classificationPortion": "340"}, {"name": "Médecine", "type": "bf:ClassificationDdc", "classificationPortion": "610"}], "variant_access_point": ["Bioéthique et droits de l'homme"], "authorized_access_point": "Droits de l'homme et bioéthique"} 1 +2024-09-10 15:43:23.255561 2024-09-10 15:43:23.255565 9d32f9c8-9e8a-41c9-a1c5-2b3f63027e99 {"md5": "6f0b5ddfa9d36db5ae973620008b3001", "pid": "169910733", "note": [{"label": ["Wikipédia : Élection présidentielle sénégalaise de 2012 - http://fr.wikipedia.org (2013-06-06)", "Les élections présidentielles au Sénégal de mars 2012 / A. A. Sy, 2013"], "noteType": "dataSource"}, {"label": ["26 février et 25 mars 2012 : Macky Sall (Alliance pour la République) est élu avec 65,8 % des voix face au président sortant Abdoulaye Wade (Parti démocratique sénégalais)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/169910733", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/169910733", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb166886279", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16688627", "source": "BNF"}], "classification": [{"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Histoire du reste du monde", "type": "bf:ClassificationDdc", "classificationPortion": "950"}], "authorized_access_point": "Présidents - Sénégal - Élection (2012)"} 1 +2024-09-10 15:43:23.325755 2024-09-10 15:43:23.325759 5ecb89ba-9f3a-4258-bef5-58a27d853cc6 {"md5": "b15c29f8e3ffc288a4ff7c774422f0f5", "pid": "17129226X", "note": [{"label": ["Bullecourt / G. Keech, 1999", "Les batailles de Bullecourt en 1917 / P. Duhamel, 2013", "Dict. of battles and sieges / T. Jaques, 2007 (art. : Arras - 1917)", "The Times hist. of the War, t. XV (p. 55-66)"], "noteType": "dataSource"}, {"label": ["11 avril et 3 mai 1917 : échec de deux offensives australiennes contre la Ligne Hindenburg à Bullecourt (Pas-de-Calais), dans le cadre de la bataille d'Arras"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bataille d'Arras (1917)"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2001007955", "source": "LCSH"}], "authorized_access_point": "Bullecourt, Battle of, Bullecourt, France, 1917"}, {"source": "RVMLaval", "authorized_access_point": "Bataille de Bullecourt, Bullecourt, France, 1917"}], "identifier": "http://www.idref.fr/17129226X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/17129226X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb167037941", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16703794", "source": "BNF"}], "classification": [{"name": "Histoire de la France", "type": "bf:ClassificationDdc", "classificationPortion": "944"}], "variant_access_point": ["Bataille de Bullecourt (1917)", "Bullecourt, Batailles de (1917)"], "authorized_access_point": "Batailles de Bullecourt (1917)"} 1 +2024-09-10 15:43:23.386457 2024-09-10 15:43:23.386462 d38d6965-0119-46b1-a611-573004c7ab5b {"md5": "a907ee33aaeb7c90157de0de8e1b27ad", "pid": "17523308X", "note": [{"label": ["Encycl. universalis (art. : Bosnie-Herzégovine) - http://www.universalis-edu.com (2013-12-18)", "Dict. encyclopédique d'histoire / M. Mourre, 1996 (art. : Bosnie-Herzégovine)", "L'empire austro-hongrois, 1815-1918 / J. Bérenger, 2011", "The decline and fall of the Habsburg Empire, 1815-1918 / A. Shed, 1995 (p. 252-253) : Bosnian crisis", "Hist. du continent européen, de 1850 à la fin du XXe siècle / J.-M. Gaillard, A. Rowley, 1998 (p. 277-278)", "Hist. des Balkans, XIVe-XXe siècles / G. Castellan, 1991 (p. 367-368) : 4e crise d'Orient", "L'Europe de 1815 à nos jours / J.-B. Duroselle, 1993 (p. 159) : crise de Bosnie-Herzégovine"], "noteType": "dataSource"}, {"label": ["5 octobre 1908 : l'annexion de la Bosnie-Herzégovine (sous administration austro-hongroise depuis 1878) par l'Autriche-Hongrie suscite une crise européenne, résolue par une médiation allemande (29 mars 1909) : l'Empire ottoman accepte l'annexion moyennant la restitution du sandjak de Novi Pazar"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Politique et gouvernement - Europe - 1871-1918"}, {"authorized_access_point": "Orient, Question d' (Balkans)"}, {"authorized_access_point": "Bosnie-Herzégovine - 1878-1918"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/17523308X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/17523308X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16731093w", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16731093", "source": "BNF"}], "classification": [{"name": "Histoire de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "940"}], "variant_access_point": ["Bosnie-Herzégovine, Crise de (1908-1909)", "Crise de Bosnie-Herzégovine (1908-1909)"], "authorized_access_point": "Crise bosniaque (1908-1909)"} 1 +2024-09-10 15:43:23.513584 2024-09-10 15:43:23.513587 86643919-d550-4a16-ac8b-41c07670cafc {"md5": "cb9aa058d48a2b5422cfc08f16b879ba", "pid": "180214845", "note": [{"label": ["The complete costume dict. / E. J. Lewandowski, 2011", "Encycl. of national dress / J. Condra, 2013"], "noteType": "dataSource"}, {"label": ["Manteau traditionnel des bergers hongrois"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Manteaux"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/180214845", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/180214845", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16902679z", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16902679", "source": "BNF"}], "classification": [{"name": "Costume et apparence personnelle", "type": "bf:ClassificationDdc", "classificationPortion": "391"}, {"name": "Économie domestique", "type": "bf:ClassificationDdc", "classificationPortion": "640"}], "variant_access_point": ["Cifraszür"], "authorized_access_point": "Szür"} 1 +2024-09-10 15:43:23.578427 2024-09-10 15:43:23.57843 643438f6-ff82-4d77-8824-73294c5d4710 {"md5": "af884b30a569b0bb49b0ade00573623d", "pid": "180214926", "note": [{"label": ["Wikipédia - http://fr.wikipedia.org (2014-08-07)", "L'Écosse et la tentation de l'indépendance : le référendum d'autodétermination de 2014 / E. Camp-Pietrain, 2014", "En Écosse, le oui à l'indépendance progresse / É. Albert [in] Le Monde, 2014-04-12 - http://www.lemonde.fr (2014-08-07)"], "noteType": "dataSource"}, {"label": ["Référendum sur l'indépendance prévu le 8 septembre 2014"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/180214926", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/180214926", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16902747m", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16902747", "source": "BNF"}], "classification": [{"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Histoire de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "940"}], "variant_access_point": ["Référendum sur l'indépendance de l'Écosse (2014)"], "authorized_access_point": "Référendum - Grande-Bretagne - Écosse (GB) - 2014"} 1 +2024-09-10 15:43:23.640207 2024-09-10 15:43:23.64021 4d5bd6af-9702-4aac-abac-5c193a2b0c17 {"md5": "6ac6ca591d9187de5d3240d413d8ebab", "pid": "18028505X", "note": [{"label": ["S'emploie uniquement en subdivision aux guerres, par ex. : Guerre de Hollande (1672-1678) -- Prisonniers et prisons des Néerlandais"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/18028505X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/18028505X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16904476v", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16904476", "source": "BNF"}], "classification": [{"name": "Art et science militaires", "type": "bf:ClassificationDdc", "classificationPortion": "355"}, {"name": "Histoire", "type": "bf:ClassificationDdc", "classificationPortion": "900"}], "authorized_access_point": "Prisonniers et prisons des Néerlandais"} 1 +2024-09-10 15:43:23.702935 2024-09-10 15:43:23.702938 8743bd71-912c-4cf9-adad-6716950e6afe {"md5": "a3fe8803599c9908e18be60df6a367c6", "pid": "181882604", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Aide économique des pays BRICS"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh99002742", "source": "LCSH"}], "authorized_access_point": "Economic assistance, South African"}, {"source": "RVMLaval", "authorized_access_point": "Aide économique sud-africaine"}], "identifier": "http://www.idref.fr/181882604", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/181882604", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb169205548", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16920554", "source": "BNF"}], "classification": [{"name": "Économie politique", "type": "bf:ClassificationDdc", "classificationPortion": "330"}], "authorized_access_point": "Aide économique sud-africaine"} 1 +2024-09-10 15:43:23.76815 2024-09-10 15:43:23.768153 1004b9f3-625d-4a99-928a-2f155317b1cf {"md5": "5d3945dede53104e2504f1742a17f29f", "pid": "182446174", "note": [{"label": ["Wikipédia : Freedom Summer - http://fr.wikipedia.org (2014-12-23)", "Freedom Summer : luttes pour les droits civiques, Mississippi 1964 / D. McAdam, 2012", "Student activism and civil rights in Mississippi : protest politics and the struggle for racial justice, 1960-1965 / J. P. Marshall, 2013"], "noteType": "dataSource"}, {"label": ["Campagne menée au cours de l'été 1964 dans l'État du Mississippi par le Council of Federated Organizations (COFO) pour faire inscrire le maximum de Noirs sur les listes électorales"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Politique et gouvernement - États-Unis - 1963-1969"}, {"authorized_access_point": "Noirs américains - 1964-...."}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/182446174", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/182446174", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16934377j", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16934377", "source": "BNF"}], "classification": [{"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Histoire du reste du monde", "type": "bf:ClassificationDdc", "classificationPortion": "950"}], "variant_access_point": ["Freedom Summer (Mississippi ; 1964)", "Mississippi Summer Freedom Project (1964)", "Summer Freedom Project (Mississippi ; 1964)"], "authorized_access_point": "Mississippi Freedom Project (1964)"} 1 +2024-09-10 15:43:24.175232 2024-09-10 15:43:24.175237 9f89ef53-d10b-475e-ba6c-9bc16d6e602a {"md5": "d0a94b238f6f60ba9fce4438244f20db", "pid": "190795786", "note": [{"label": ["Lazarus - http://www.lazarus-ide.org (2016-01-12)", "Getting started with Lazarus and Free Pascal : a beginners and intermediate guide to Free Pascal using Lazarus Ide / M. Abiola-Ellison, 2015"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Développement rapide d'applications"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/190795786", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/190795786", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb17018624x", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF17018624", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "authorized_access_point": "Lazarus (environnement de développement d'applications)"} 1 +2024-09-10 15:43:23.841497 2024-09-10 15:43:23.841502 5fe58871-8655-41f9-a4ab-3c32d149866e {"md5": "d3b444a0355c4943a0ae75cfa1666db0", "pid": "183790936", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Métis - [Localisations géographiques]"}, {"authorized_access_point": "Ethnologie - États-Unis"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85083454", "source": "LCSH"}], "authorized_access_point": "Melungeons"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh94000806", "source": "LCSH"}], "authorized_access_point": "Racially mixed people--United States"}, {"source": "RVMLaval", "authorized_access_point": "Métis -- États-Unis"}], "identifier": "http://www.idref.fr/183790936", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/183790936", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb169439535", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16943953", "source": "BNF"}], "classification": [{"name": "Ethnologie", "type": "bf:ClassificationDdc", "classificationPortion": "390"}], "variant_access_point": ["Américains métis", "Malungeons", "Melungeons", "Métis américains"], "authorized_access_point": "Métis - États-Unis"} 1 +2024-09-10 15:43:23.902532 2024-09-10 15:43:23.902535 0738c442-1ced-4574-8a1f-9ec4957a464f {"md5": "f9b716f33e0ae149a224c8d187ade4f7", "pid": "183791428", "note": [{"label": ["Traité sur le fonctionnement de l'UE (art. 26)", "La libre circulation des ressortissants de l'UE - http://ec.europa.eu (2015-02-12)", "La dynamique du principe de proportionnalité : essai dans le contexte des libertés de circulation du droit de l'Union européenne / A. Marzal-Yetano"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Marché intérieur - Droit européen"}], "related": [{"authorized_access_point": "Libre circulation des personnes"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/183791428", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/183791428", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16945349r", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16945349", "source": "BNF"}], "classification": [{"name": "Droit", "type": "bf:ClassificationDdc", "classificationPortion": "340"}], "authorized_access_point": "Libre circulation des personnes - Droit européen"} 1 +2024-09-10 15:43:23.96653 2024-09-10 15:43:23.966536 0a10aa19-8fc5-419c-9c82-9b13ea672551 {"md5": "5fd271904cb02cf26f1ab78015dc5e7b", "pid": "184625807", "note": [{"label": ["Wikidata : Euromaïdan - https://www.wikidata.org/wiki/Q15224558 (2023-08-31)", "Wikipédia : Euromaïdan - http://fr.wikipedia.org (2015-03-23)", "Encycl. universalis (art. : Kiev) : Maïdan - http://www.universalis.fr (2015-03-23)", "Les dessous de la Révolution ukrainienne / O. Ostriichouk [in] Le Débat, 2014, 180 (pp. 3-16) - http://www.cairn.info (2015-03-23)", "L'insurrection à Kiev : lieux et acteurs / M. Sagnol [in] Les Temps modernes, 2014, 678 (pp. 148-169) - http://www.cairn.info (2015-03-23)", "Journal de Maïdan / A. Kourkov, 2014"], "noteType": "dataSource"}, {"label": ["21 novembre 2013 : la décision du gouvernement ukrainien de ne pas signer un accord d'association avec l'Union européenne suscite un mouvement d'opposition connu sous le nom d'Euromaïdan ou Maïdan, du nom de la Place de l'Indépendance (Maidan Nezalejnosti) à Kiev, lieu principal des rassemblements ; 22 février 2014 : destitution par le Parlement ukrainien du président Viktor Ianoukovitch, en fuite depuis la veille"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ukraine - 2013-...."}], "related": [{"authorized_access_point": "Guerre du Donbass (Ukraine ; 2014-....)"}, {"authorized_access_point": "Guerre russo-ukrainienne (2022-....)"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Ukraine--Histoire--2013-2014 (Euromaïdan)"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2014001396", "source": "LCSH"}], "authorized_access_point": "Ukraine -- History -- Euromaidan Protests, 2013-2014"}], "identifier": "http://www.idref.fr/184625807", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/184625807", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16954349q", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16954349", "source": "BNF"}], "classification": [{"name": "Sciences politiques", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Histoire médiévale, moderne et contemporaine (sauf la France)", "type": "bf:ClassificationDdc", "classificationPortion": "940"}], "variant_access_point": ["Євромайдан", "Майдан Незалежності", "Maïdan (Ukraine ; 2013-2014)", "Révolution d'Euromaïdan (Ukraine ; 2013-2014)", "Révolution de février 2014 (Ukraine)", "Révolution de Maïdan (Ukraine ; 2013-2014)"], "authorized_access_point": "Euromaïdan (Ukraine ; 2013-2014)"} 1 +2024-09-10 15:43:24.041046 2024-09-10 15:43:24.041049 033e3d2b-c135-4fac-8ff5-757214b59940 {"md5": "20c930cb749d3993a782dc0aca920b9f", "pid": "185018440", "note": [{"label": ["AngularJS - https://www.angularjs.org (2015-03-30)", "AngularJS / P. Tarasiewicz, R. Böhm, 2014", "Learning AngularJS : a guide to AngularJS development / K. Williamson, 2015", "AngularJS : développez aujourd'hui les applications web de demain / S. Olliver, P.-A. Gury, 2015"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Langages de programmation"}], "related": [{"authorized_access_point": "Applications Web"}, {"authorized_access_point": "HTML (langage de balisage)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/185018440", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/185018440", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16956089m", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16956089", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "authorized_access_point": "AngularJS (langage de programmation)"} 1 +2024-09-10 15:43:24.106258 2024-09-10 15:43:24.106261 905a8263-92cb-44ab-9c22-806434747184 {"md5": "3fdd1f7b60438a59cfed4af9aa043f9d", "pid": "187082324", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Musique par ordinateur"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/187082324", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/187082324", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb169750099", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16975009", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}, {"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "authorized_access_point": "Éditeurs de partitions (logiciels)"} 1 +2024-09-10 15:43:34.952102 2024-09-10 15:43:34.952105 23841d39-4e92-46b5-9068-66bcc1e67273 {"md5": "4baf0f051b5629fc07ab8ba7309235f1", "pid": "278746934", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Roman mexicain"}], "bnf_type": "genre/forme Rameau", "identifier": "http://www.idref.fr/278746934", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278746934", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18148094c", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18148094", "source": "BNF"}], "classification": [{"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}, {"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Roman social mexicain"} 1 +2024-09-10 15:43:24.250284 2024-09-10 15:43:24.250288 89128762-a759-4b20-97c5-997e7b643e61 {"md5": "137c8b608d0e34243487a6c54979dcc0", "pid": "190994320", "note": [{"label": ["Théo, 2009", "Dict. encyclopédique du christianisme ancien / A. Di Berardino, 1990 (art. : Acace de Constantinople)", "Dict. encyclopédique d'histoire / M. Mourre, 1996 (art. : Acace de Constantinople) : schisme d'Acace"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Église - 30-600 (Église primitive)"}, {"authorized_access_point": "Schisme d'Orient"}], "related": [{"authorized_access_point": "Monophysisme"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/190994320", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/190994320", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16928417q", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16928417", "source": "BNF"}], "classification": [{"name": "Religion", "type": "bf:ClassificationDdc", "classificationPortion": "200"}, {"name": "Histoire", "type": "bf:ClassificationDdc", "classificationPortion": "900"}], "variant_access_point": ["Acace, Schisme d'", "Schisme d'Acace"], "authorized_access_point": "Schisme acacien (484-519)"} 1 +2024-09-10 15:43:24.31538 2024-09-10 15:43:24.315383 61bf63fb-a4d3-463f-b68c-8f4458c3b6ac {"md5": "8f5f066b8f253bbe2c26cb2f2f27b651", "pid": "193304104", "note": [{"label": ["Wikipédia : référendum sur l'appartenance du Royaume-Uni à l'Union européenne - http://fr.wikipedia.org (2017-04-27)", "Brexit : résultat des sondages, définition, date du référendum,... 5 clés pour comprendre / B. Deshayes, 2016 - http://www.linternaute.com/actualite/politique/1279823-brexit-definition-date-du-referendum-resultat-consequences (2016-05-20)", "\\"Brexit\\" : le jour où le Royaume-Uni est sorti de l'Europe [in] Le Monde, 2016-06-24 - http://www.lemonde.fr (2017-04-27)"], "noteType": "dataSource"}, {"label": ["23 juin 2016 : 51,89 % des électeurs britanniques se prononcent pour la sortie du Royaume-Uni de l'Union européenne"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Brexit"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Grande-Bretagne -- Histoire -- 2016 (Référendum sur la sortie de l'Union européenne)"}], "identifier": "http://www.idref.fr/193304104", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/193304104", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb170444330", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF17044433", "source": "BNF"}], "classification": [{"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Histoire de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "940"}], "variant_access_point": ["Brexit, Référendum sur le (2016)", "Référendum sur l'appartenance du Royaume-Uni à l'Union européenne (2016)", "Référendum sur la sortie de la Grande-Bretagne de l'Union européenne (2016)", "Référendum sur le Brexit (2016)", "Référendum sur le maintien de la Grande-Bretagne dans l'Union européenne (2016)"], "authorized_access_point": "Référendum - Grande-Bretagne - 2016"} 1 +2024-09-10 15:43:24.378944 2024-09-10 15:43:24.378948 3e89c145-b241-4f1c-ada5-ca13f0a3de99 {"md5": "97dd35f2671899766a46661ef31dedbe", "pid": "193617668", "note": [{"label": ["Bases de données Marques - https://bases-marques.inpi.fr (2016-05-25)", "La Worcester sauce / M. Dargent, 2015"], "noteType": "dataSource"}, {"label": ["Worcestershire Sauce est une appellation commerciale"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sauces"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Sauce Worcestershire"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85148091", "source": "LCSH"}], "authorized_access_point": "Worcestershire sauce"}], "identifier": "http://www.idref.fr/193617668", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/193617668", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb170482620", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF17048262", "source": "BNF"}], "classification": [{"name": "Economie domestique, hôtellerie", "type": "bf:ClassificationDdc", "classificationPortion": "640"}], "variant_access_point": ["Sauce Worcester", "Sauce Worcestershire - Recettes", "Worcestershire, Sauce"], "authorized_access_point": "Sauce Worcestershire"} 1 +2024-09-10 15:43:24.441383 2024-09-10 15:43:24.441387 33d03098-067c-4151-851d-8c3b8acb7c01 {"md5": "aad9dbfa363d001258a5ac5ad6cba4c5", "pid": "196951763", "note": [{"label": ["Wikipedia : arbitrismo - https://es.wikipedia.org (2016-11-24)", "Les sociétés au XVIIe siècle : Angleterre, Espagne, France / A. Antoine, C. Michon, 2006 (p. 358-359)", "L'arbitrisme, un concept d'historien ? / A. Dubet [in] Les Cahiers du Centre de Recherches Historiques, 2000, 24 - https://ccrh.revues.org/2062 (2016-11-24)", "La pensée économique, Les auteurs : La Renaissance en Europe / J.-P. Potier, 2005 - http://ses.ens-lyon.fr/articles/les-auteurs-25452 (2016-11-24)"], "noteType": "dataSource"}, {"label": ["Penseurs économiques espagnols (fin 16e-17e siècle) qui adressaient aux autorités des mémoires pour que par leurs décisions (arbitrio) elles résolvent les problèmes économiques"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Vie intellectuelle - Espagne - 1516-1700"}, {"authorized_access_point": "Économie politique - Jusqu'à 1800"}, {"authorized_access_point": "Économistes"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/196951763", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/196951763", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb170883801", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF17088380", "source": "BNF"}], "classification": [{"name": "Groupes sociaux", "type": "bf:ClassificationDdc", "classificationPortion": "305"}, {"name": "Économie politique", "type": "bf:ClassificationDdc", "classificationPortion": "330"}], "variant_access_point": ["Arbitrisme", "Arbitrismo", "Arbitristas"], "authorized_access_point": "Arbitristes"} 1 +2024-09-10 15:43:24.513611 2024-09-10 15:43:24.513615 807b535d-3b29-4d43-b985-9c2ad5f5b839 {"md5": "90eafab81e6f9c5a327fd221274cb7c0", "pid": "197956653", "note": [{"label": ["\\"Dis Siri\\", enquête sur le génie à l'intérieur du smartphone / N. Santolaria, 2016", "Le deuxième âge de la machine : travail et prospérité à l'heure de la révolution technologique / E. Brynjolfsson, A. McAfee, 205", "Tous digitalisés : et si votre futur avait commencé sans vous ? / M. Diaz, 2015 (p. 58)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Agents intelligents (logiciels)"}, {"authorized_access_point": "Interfaces utilisateur (informatique)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/197956653", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/197956653", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb17100386p", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF17100386", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Assistants intelligents", "Assistants numériques", "Assistants personnels virtuels", "Assistants virtuels"], "authorized_access_point": "Assistants personnels intelligents (logiciels)"} 1 +2024-09-10 15:43:24.623324 2024-09-10 15:43:24.623329 daf10155-6dd2-4898-86a3-baedda7ca2ba {"md5": "8095da7af9497ffd83d73492631438a3", "pid": "197957358", "note": [{"label": ["S'emploie uniquement en subdivision"], "noteType": "general"}, {"label": ["Voir aussi la subdivision Enseignement biblique"], "noteType": "seeReference"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Dans la littérature"}, {"authorized_access_point": "Enseignement biblique"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/197957358", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/197957358", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb17103399r", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF17103399", "source": "BNF"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}], "variant_access_point": ["Dans l'Ancien Testament", "Dans le Nouveau Testament", "Dans les livres bibliques", "Représentation biblique", "Représentation dans la Bible", "Thème biblique"], "authorized_access_point": "Dans la Bible"} 1 +2024-09-10 15:43:24.695157 2024-09-10 15:43:24.695162 d8c7ddd7-0281-4260-81cf-2e995c841f3d {"md5": "b698c35b92ee3bdfccda89095b793697", "pid": "199344019", "note": [{"label": ["S'emploie uniquement en subdivision"], "noteType": "general"}, {"label": ["Voir aussi la subdivision Enseignement coranique"], "noteType": "seeReference"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Dans la littérature"}, {"authorized_access_point": "Enseignement coranique"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/199344019", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/199344019", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb171125084", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF17112508", "source": "BNF"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}], "variant_access_point": ["Représentation coranique", "Représentation dans le Coran", "Thème coranique"], "authorized_access_point": "Dans le Coran"} 1 +2024-09-10 15:43:24.774378 2024-09-10 15:43:24.774383 3095ac33-cba5-4faa-b545-1cd83633408e {"md5": "d0fcca899f13b9e287af7219ad2bd9d0", "pid": "199344248", "note": [{"label": ["Wikipédia : Table des Rangs - https://fr.wikipedia.org (2017-03-09)", "Hist. de la Russie des tsars / R. Pipes, 2013", "Pierre le Grand : le premier empereur de toutes les Russies / F.-D. Liechtenhan, 2015 (p. 327-330)", "Pierre le Grand : et son oeuvre / V. O. Klioutchevski, 1991 (p. 107-108)", "À propos de la notion de service dans la noblesse russe au XVIIIe et XIXe siècles / M. Confino [in] Cahiers du monde russe et soviétique, 1993, 34, 1-2 (p. 47-58) - http://www.persee.fr (2017-03-09)", "Encycl. of Russian hist. / J. R. Millar, 2004 : Table of Ranks", "Historical dict. of Russia / B. Raymond, P. Duffy, 1998 : Tabel o Rangakh (Table of Ranks)"], "noteType": "dataSource"}, {"label": ["Table créée par un oukase de Pierre le Grand du 24 janvier/4 février 1722, hiérarchisant en 14 degrés la noblesse, définie comme l'ensemble des serviteurs de l'État (tchinovniki), civils, militaires et de la Cour. Elle fut abolie le 11 novembre 1917"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Conditions sociales - Russie - 1801-1917"}, {"authorized_access_point": "Noblesse - Russie"}, {"authorized_access_point": "Stratification sociale"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/199344248", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/199344248", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb17113185q", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF17113185", "source": "BNF"}], "classification": [{"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}, {"name": "Histoire de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "940"}], "variant_access_point": ["Čin, Table des (Russie)", "Rangs, Table des (Russie)", "Tabel' o rangakh (Russie)", "Table des čin (Russie)", "Table des tchins (Russie)", "Table impériale des Rangs (Russie)", "Tchins, Table des (Russie)"], "authorized_access_point": "Table des Rangs (Russie)"} 1 +2024-09-10 15:43:24.861067 2024-09-10 15:43:24.861072 5c987a40-6377-4c0a-b546-8aa97707c002 {"md5": "f1662a82154ff55d893252be26ba325d", "pid": "200582038", "note": [{"label": ["Wikipédia - https://fr.wikipedia.org (2017-04-24)", "Hist. de la RDA / S. Lorrain, 1994 (p. 42)", "Frontières du communisme / S. Carré, S. Dullin, 2007", "Berlin, guerre des images d'une mémoire partagée (1945-1989) / C. Delage [in] Vingtième siècle, 1992, 34 - http://www.jstor.org (2017-04-24)", "The German democratic Republic / P. Grider, 2012 : Combat groups of the working class", "Proletarischer Mythos und realer Sozialismus : die Kampfgruppen der Arbeitsklasse in der DDR / T. Siebeneichner, 2014"], "noteType": "dataSource"}, {"label": ["Organisations paramilitaires d'employés dans les entreprises de la République démocratique allemande (1953-1989), dépendant du SED"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Forces paramilitaires"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4240507-5", "source": "GND"}], "authorized_access_point": "Betriebskampfgruppe"}, {"source": "GND", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1041423551", "source": "GND"}], "authorized_access_point": "Sozialistische Einheitspartei Deutschlands. Kampfgruppen der Arbeitsklasse"}], "identifier": "http://www.idref.fr/200582038", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/200582038", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb171224020", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF17122402", "source": "BNF"}], "classification": [{"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}], "variant_access_point": ["Betriebskampfgruppen (République démocratique allemande)", "Groupes de combat d'entreprise (République démocratique allemande)", "Kampfgruppen der Arbeitsklasse (République démocratique allemande)"], "authorized_access_point": "Groupes de combat de la classe ouvrière (République démocratique allemande)"} 1 +2024-09-10 15:43:24.935107 2024-09-10 15:43:24.935112 f405f106-6d9e-4765-91d7-f7c3826b66d1 {"md5": "2247d87bd784c0a8ae558a5ea1b57592", "pid": "200884530", "note": [{"label": ["Du pain, du sel et du coeur, recettes de cuisine albanaise / R. Cela Grasset, 2017", "The best of Albanian cooking : favorite family recipes / K. et R. John Hysa, 1998"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Cuisine balkanique"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh98003206", "source": "LCSH"}], "authorized_access_point": "Cooking, Albanian"}], "identifier": "http://www.idref.fr/200884530", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/200884530", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb171255547", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF17125554", "source": "BNF"}], "classification": [{"name": "Économie domestique", "type": "bf:ClassificationDdc", "classificationPortion": "640"}], "variant_access_point": ["Cuisine albanaise - Albanie"], "authorized_access_point": "Cuisine albanaise"} 1 +2024-09-10 15:43:25.005822 2024-09-10 15:43:25.005826 23899820-f837-4089-9962-aeae8315ff6a {"md5": "2d5baead9d085fceb44ba7f2fc6a099e", "pid": "204008557", "note": [{"label": ["Wikipedia : meridionalismo - https://it.wikipedia.org (2017-09-07)", "L'émergence d'un néo-méridionalisme politique en Italie : vers l'accroissement de la fracture territoriale ? / A. Fazzi [in] Critique internationale, 2011/1, 50 (p. 111-128) - http://www.cairn.info (2017-09-07)", "Meridionalismo critico : scritti sulla questione meridionale (1945-1973) / B. Caizzi, 1998", "Tradizione e attualità del meridionalismo / S. Cafiero, 1989"], "noteType": "dataSource"}, {"label": ["Études spécialisées sur le développement économique, social et culturel de l'Italie du Sud, en particulier dans le cadre de l'État unitaire italien"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Conditions économiques - Italie"}, {"authorized_access_point": "Conditions sociales - Italie"}], "related": [{"authorized_access_point": "Régionalisme"}, {"authorized_access_point": "Italie (sud)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/204008557", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/204008557", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb17149211h", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF17149211", "source": "BNF"}], "classification": [{"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}, {"name": "Économie politique", "type": "bf:ClassificationDdc", "classificationPortion": "330"}, {"name": "Problèmes et services sociaux", "type": "bf:ClassificationDdc", "classificationPortion": "360"}], "variant_access_point": ["Études méridionalistes (Italie)", "Meridionalismo", "Question méridionale (Italie)"], "authorized_access_point": "Méridionalisme (Italie)"} 1 +2024-09-10 15:43:25.076335 2024-09-10 15:43:25.07634 a36adecd-ad0a-43db-b826-a8179f37f847 {"md5": "c72d99cc651b5475f9c42523b1bbe4cb", "pid": "219951152", "note": [{"label": ["Android developers - https://developer.android.com (2017-09-26)", "Démarrer avec Android Studio / B. Hohensee, 2014", "Expert Android Studio / M. Yener, O. Dundar, 2016", "Android Studio cookbook / M. van Drongelen, 2015"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Générateurs (logiciels)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/219951152", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/219951152", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb17153081w", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF17153081", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Android Studio (environnement de développement d'applications)"], "authorized_access_point": "Google Android Studio (environnement de développement d'applications)"} 1 +2024-09-10 15:43:25.158679 2024-09-10 15:43:25.158683 c633ebd6-b3c9-4672-bc2a-3612b33c5d1c {"md5": "b4b62d3f97e33ba16cd7464c5005e2b9", "pid": "219966540", "note": [{"label": ["Wikipédia : Black Lives Matter - https://fr.wikipedia.org (2019-01-10)", "Black Lives Matter : un nouveau souffle pour les voix des Noirs / R. Diallo [in] Libération, 2016-05-28 - http://www.liberation.fr (2019-01-10)", "The making of Black lives matter : a brief history of an idea / C. J. Lebron, 2017", "Black Lives Matter - https://blacklivesmatter.com (2019-01-10)"], "noteType": "dataSource"}, {"label": ["Mouvement militant afro-américain apparu en 2013, qui se mobilise contre la violence et le racisme systémique envers les Noirs"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Politique et gouvernement - États-Unis - 2009-2017"}, {"authorized_access_point": "Mouvements sociaux - États-Unis"}], "related": [{"authorized_access_point": "Mouvements des droits civiques"}, {"authorized_access_point": "Noirs américains - Droits"}, {"authorized_access_point": "Lutte contre le racisme"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/219966540", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/219966540", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb17156838p", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF17156838", "source": "BNF"}], "classification": [{"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Économie politique", "type": "bf:ClassificationDdc", "classificationPortion": "330"}], "variant_access_point": ["Black Lives Matter", "BLM", "Les vies des Noirs comptent (mouvement)", "Mouvement Black Lives Matter", "Les vies des Noirs comptent (mouvement)"], "authorized_access_point": "Black Lives Matter (mouvement)"} 1 +2024-09-10 15:43:25.244053 2024-09-10 15:43:25.244058 9611db3b-9640-4c03-b76a-1e8c8e984cb7 {"md5": "4794494c5a69837992fa431746c50c40", "pid": "223495913", "note": [{"label": ["Wikipedia : Asaba massacre - https://en.wikipedia.org (2018-10-11)", "La crise du Biafra / J.-L. Clergerie, 1994 (p. 239)", "The Asaba massacre : trauma, memory, and the Nigerian civil war / S. E. Bird, F. M. Ottanelli, 2017", "The history and legacy of the Asaba, Nigeria, Massacres / S. E. Bird, F. Ottanelli [in] African studies Review, 2011, 54 - https://www.cambridge.org (2018-10-11)", "Asaba massacre of 1967 / Oldnaija - https://oldnaija.org (2018-10-11)"], "noteType": "dataSource"}, {"label": ["5-7 octobre 1967 : massacres par l'armée nigériane de la population civile d'Asaba, majoritairement ibo et soupçonnée de connivence avec les Biafrais : le 5, les militaires entrent dans la ville, pillent et tuent hommes, femmes et enfants ; le 7, ils rassemblent à l'écart la population masculine et l'exécutent à la mitrailleuse (plus de 1000 victimes au total) ; dans les jours suivants les femmes et filles sont violées ou mariées de force"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Massacres - Nigeria"}, {"authorized_access_point": "Nigeria - 1967-1970 (Guerre civile) - Atrocités"}], "related": [{"authorized_access_point": "Asaba (Nigeria)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/223495913", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/223495913", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb17703943t", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF17703943", "source": "BNF"}], "classification": [{"name": "Histoire du reste du monde", "type": "bf:ClassificationDdc", "classificationPortion": "950"}], "variant_access_point": ["Asaba, Massacre d' (1967)", "Massacres d'Asaba (1967)"], "authorized_access_point": "Massacre d'Asaba (1967)"} 1 +2024-09-10 15:43:25.307286 2024-09-10 15:43:25.307289 8764f36b-cc77-41c3-8d33-931e1e48e8c4 {"md5": "dd6181faebcfbb4b18f98271f46e272b", "pid": "223831840", "note": [{"label": ["MIT App Inventor - http://appinventor.mit.edu (2018-01-22)", "Absolute App Inventor 2 : Android programming for all / H. Amerkashi, 2015", "App Inventor 2 : create your own Android apps, 2014", "Learning MIT App Inventor : a hands-on guide to building your own Android apps / D. Walter, M. Sherman, 2014"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Générateurs (logiciels)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/223831840", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/223831840", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb177092571", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF17709257", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["App Inventor pour Android (environnement de développement d'applications)"], "authorized_access_point": "App Inventor (environnement de développement d'applications)"} 1 +2024-09-10 15:43:35.15157 2024-09-10 15:43:35.151574 bc3cd03f-6099-4fed-a2ac-3a9bfa98ac68 {"md5": "4085fbff15899dce8c79b409ca8f4568", "pid": "278746977", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Roman australien"}], "bnf_type": "genre/forme Rameau", "identifier": "http://www.idref.fr/278746977", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278746977", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18148301c", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18148301", "source": "BNF"}], "classification": [{"name": "Problèmes et services sociaux", "type": "bf:ClassificationDdc", "classificationPortion": "360"}, {"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Thriller (roman) australien"} 1 +2024-09-10 15:43:25.372058 2024-09-10 15:43:25.372061 184870d5-de1e-435d-b3a0-032c01f6362b {"md5": "2dc8e521aa234b6278d8c2748a230fa8", "pid": "225382520", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2017003944", "source": "LCSH"}], "authorized_access_point": "Diplomatic and consular service, Paraguayan"}], "identifier": "http://www.idref.fr/225382520", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/225382520", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb17720890r", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF17720890", "source": "BNF"}], "classification": [{"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}], "authorized_access_point": "Service diplomatique et consulaire paraguayen"} 1 +2024-09-10 15:43:25.435218 2024-09-10 15:43:25.435221 27f37cdb-1db3-45eb-999d-beb910696e07 {"md5": "b021be3042b9a9034c5796c2b8e186e2", "pid": "227367677", "note": [{"label": ["Wikipédia : référendum irlandais sur l'adhésion aux communautés européennes - http://fr.wikipedia.org (2018-06-01)", "Dict. encyclopédique d'histoire / M. Mourre, 1996", "Hist. de l'Irlande : de 1912 à nos jours / A. Slaby, 2016"], "noteType": "dataSource"}, {"label": ["10 mai 1972 : l'adhésion de la République d'Irlande aux Communautés européennes (3e amendement de la Constitution de 1937) est approuvée par 83 % des votants, avec un taux de participation de 70,8 %; elle est effective le 1er janvier 1973"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/227367677", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/227367677", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb177386832", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF17738683", "source": "BNF"}], "relation_pid": {"type": "redirect_from", "value": "226068277"}, "classification": [{"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Histoire de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "940"}], "variant_access_point": ["Adhésion de l'Irlande aux Communautés européennes, Référendum sur l' (1972)", "Référendum sur l'adhésion aux Communautés européennes (Irlande ; 1972)", "Référendum sur l'adhésion de l'Irlande aux Communautés européennes (1972)"], "authorized_access_point": "Référendum - Irlande - 1972"} 1 +2024-09-10 15:43:25.499215 2024-09-10 15:43:25.49922 489eb59e-3a73-4293-ab6b-feb42e90c489 {"md5": "426d5946cd0234e7eead8a294dc5cf3f", "pid": "227858689", "note": [{"label": ["Wikipédia - https://fr.wikipedia.org (2018-06-12)", "Encycl. universalis (art. : Extrême droite) : völkisch allemands - http://www.universalis-edu.com (2018-06-12)", "Aspects du fondamentalisme national en Allemagne de 1890 à 1945 / L. Dupeux, 2001 (p. 173-175)", "L'Europe et le mythe de l'Occident : la construction d'une histoire / G. Corm, 2012", "Handbuch zur \\"Völkischen Bewegung\\" 1871-1918 / U. Puschner, W. Schmitz, J. H. Ulbricht, 1996"], "noteType": "dataSource"}, {"label": ["Mouvement intellectuel et politique allemand (deuxième moitié du 19e siècle et début du 20e siècle), d'inspiration nationaliste, ethniciste et néopaïenne"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Vie intellectuelle - Allemagne - 1871-1918"}, {"authorized_access_point": "Nationalisme"}], "related": [{"authorized_access_point": "Néopaganisme"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/227858689", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/227858689", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb177411580", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF17741158", "source": "BNF"}], "classification": [{"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}], "variant_access_point": ["Völkisch, Mouvement", "Völkische Bewegung"], "authorized_access_point": "Mouvement völkisch"} 1 +2024-09-10 15:43:25.563335 2024-09-10 15:43:25.563338 6f8c6254-92eb-4165-92bb-d566331afa1f {"md5": "75c46061835d3c5850515a20f05a6164", "pid": "228803608", "note": [{"label": ["Hist. contemporaine des relations Sud-Sud. Les contours d'une évolution graduelle / F. Soulé-Kohndou [in] Afrique contemporaine, 2013, 248, (p. 108-111) - https://www.cairn.info (2018-06-26)", "Les relations Sud-Sud : culture et diplomatie [n° spécial de] Cahiers d'Amérique latine, 2015, 80", "Les nouvelles alliances Sud-Sud et le rôle des relations tricontinentales dans la crise / P. Hugon [in] Revue internationale et stratégique, 2012, 86 (p. 57-65) - https://www.cairn.info (2018-06-26)"], "noteType": "dataSource"}, {"label": ["Voir aussi la subdivision Relations extérieures aux continents et pays du Sud, par ex. : Amérique latine -- Relations extérieures -- Pays arabes"], "noteType": "seeReference"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Relations extérieures - Pays en voie de développement"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Coopération entre pays en voie de développement"}], "identifier": "http://www.idref.fr/228803608", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/228803608", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb17744530f", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF17744530", "source": "BNF"}], "classification": [{"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}], "variant_access_point": ["Relations internationales Sud-Sud", "Sud-Sud, Relations"], "authorized_access_point": "Relations Sud-Sud"} 1 +2024-09-10 15:43:25.98448 2024-09-10 15:43:25.984484 b380abcd-c843-4bf2-9b97-ced3955226cf {"md5": "3f0150ab311beaf55944f6cbb4a8437c", "pid": "261901915", "note": [{"label": ["S'emploie uniquement en subdivision aux collectivités (à l'exception des types de collectivités) et aux personnes", "Pour l'application générale de cette subdivision, voir les notes sous le renvoi général Et [nom géographique]"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Et l'Égypte"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/261901915", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/261901915", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18007814v", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18007814", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "915"}], "authorized_access_point": "Et Alexandrie"} 1 +2024-09-10 15:43:25.63683 2024-09-10 15:43:25.636834 f56bc8c9-a793-4045-8d9b-8b169c93e26d {"md5": "94e1f908a08d391e51771c82abb67d14", "pid": "232818665", "note": [{"label": ["Grand dict. encyclopédique Larousse", "Encycl. universalis (art. : Pandanales) - http://www.universalis-edu.com (2018-12-11)", "Inventaire National du Patrimoine Naturel - http://inpn.mnhn.fr (2018-12-11)", "Le bon jardinier, 1992 (art. : Pandanus)", "Elsevier's dict. of plant names, 1996", "ITIS : Pandanus utilis - https://www.itis.gov (2018-12-11)", "NCBI : Pandanus utilis - https://www.ncbi.nlm.nih.gov/Taxonomy (2018-12-11)", "Dict. of plant names in Latin, German, English and French / H. Nikolov, 1996 : Pandanus utilis ; vacoi"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Pandanus"}], "related": [{"authorized_access_point": "Travail des feuilles de vaquois"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2009007922", "source": "LCSH"}], "authorized_access_point": "Vacoa"}], "identifier": "http://www.idref.fr/232818665", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/232818665", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb17780931r", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF17780931", "source": "BNF"}], "classification": [{"name": "Botanique", "type": "bf:ClassificationDdc", "classificationPortion": "580"}], "variant_access_point": ["Baquois", "Pandanus utilis", "Vacoi", "Vacoi utile", "Vacoua"], "authorized_access_point": "Vaquois"} 1 +2024-09-10 15:43:25.701474 2024-09-10 15:43:25.701478 c487b4c8-4060-48fb-8d76-e8e51fe0706a {"md5": "4baf4210a745804510ce4457313d68ec", "pid": "234183721", "note": [{"label": ["Internet Information Services 6 / [Johnny Brochard], cop. 2005"], "noteType": "dataSource"}, {"label": ["Intègre des fonctionnalités de serveur Web. IIS 6.0 fonctionne uniquement sur Microsoft Windows Server 2003"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Serveurs Web"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/234183721", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/234183721", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15077072v", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF15077072", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Microsoft Internet Information Services 6.0 (serveur)", "IIS (serveur)"], "authorized_access_point": "Microsoft Internet Information Services (serveur)"} 1 +2024-09-10 15:43:25.776846 2024-09-10 15:43:25.776849 d5fe0399-8266-4351-841f-1b1375606902 {"md5": "f7aedabfdf0500c3c3e53fea3ecfdcf8", "pid": "236280147", "note": [{"label": ["Mission d'expertise sur la fiscalité de l'économie numérique / P. Collin, N. Colin, 2013 - https://www.economie.gouv.fr (2023-02-17)", "Le guide de la transformation digitale / V. Dreney, E. Vivier, 2016", "Encycl. of e-commerce development, implementation, and management, 2016 : mobile application ecosystem", "Competition in the mobile application ecosystem / Department of commerce, february 2023 - https://www.ntia.gov (2023-02-16)", "Écosystème des architectures mobiles / O. Cata, 2017 - https://www.asprom.com (2023-02-27)", "Tizen, le concurrent d'Android et d'iOS, est presque mort-né / Y. Rousseau [in] Les échos, n° 21609 du 21-01-2014"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Applications mobiles"}, {"authorized_access_point": "Économie numérique"}], "related": [{"authorized_access_point": "Logiciels - Développement"}, {"authorized_access_point": "OSI (architecture de réseaux)"}, {"authorized_access_point": "Smartphones"}, {"authorized_access_point": "Systèmes d'exploitation (ordinateurs)"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2014000122", "source": "LCSH"}], "authorized_access_point": "Software ecosystems"}], "identifier": "http://www.idref.fr/236280147", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/236280147", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18064574d", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18064574", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Ecosystem of communication apps (informatique)", "Écosystèmes d'applications de communication (informatique)", "Mobile application ecosystem", "Software ecosystems"], "authorized_access_point": "Écosystèmes d'applications mobiles (informatique)"} 1 +2024-09-10 15:43:25.851935 2024-09-10 15:43:25.851939 fe4a5aac-4657-46df-a380-5ac66f66f80b {"md5": "868316e9163395a03b97e66b273b2809", "pid": "26110683X", "note": [{"label": ["Wikipédia - http://fr.wikipedia.org (2022-03-03)", "Eurovoc : PESC - http://eurovoc.europa.eu (2022-03-03)", "Aux origines de la diplomatie européenne : les neuf et la coopération politique européenne de 1973 à 1980 / M. Găinar, 2012", "La Dynamique intégrationniste des communautés européennes : à travers la Coopération politique européenne, CPE et l'Acte unique / V. Monte, 1990"], "noteType": "dataSource"}, {"label": ["Projet de coordination des politiques étrangères entre les États membres amorcée dès les années 1970. La CPE est intégrée dans le Traité sur l'Union européenne (1986) et officialisée par la «politique étrangère de sécurité commune (1992). La coopération politique européenne (CPE) est l'ancêtre de la politique étrangère et de sécurité commune (PESC) et de la politique européenne de sécurité et de défense (PESD) de l'Union européenne"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Politique et gouvernement - Pays de l'Union européenne"}], "related": [{"authorized_access_point": "Politique de sécurité et de défense commune"}, {"authorized_access_point": "Politique étrangère et de sécurité commune"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCA", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/names/n91064789", "source": "LCA"}], "authorized_access_point": "European Political Cooperation"}], "identifier": "http://www.idref.fr/26110683X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/26110683X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18001102g", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18001102", "source": "BNF"}], "classification": [{"name": "Sciences politiques", "type": "bf:ClassificationDdc", "classificationPortion": "320"}], "variant_access_point": ["Cooperazione politica europea", "CPE", "EPC", "Europäische Politische Zusammenarbeit", "European Political Co-operation", "European Political Cooperation", "Politique étrangère européenne"], "authorized_access_point": "Coopération politique européenne (1986-1992)"} 1 +2024-09-10 15:43:25.913804 2024-09-10 15:43:25.913809 f10fcab5-a41a-42b1-9f79-95714789ad12 {"md5": "f624295665bcd45ddf73d6fc1c75a892", "pid": "261107119", "note": [{"label": ["Wikipédia : Système de Law - http://fr.wikipedia.org (2022-03-09)", "Lexique d'économie / A. Silem, J.-M. Albertini, 2002 (art. : Law (Système bancaire de John))", "Histoire du système de John Law, 1716-1720 / N. Dutot, 2020", "The medals concerning John Law and the Mississippi system / J. W. Adams, 2005"], "noteType": "dataSource"}, {"label": ["Mis en place progressivement à partir de 1716, le Système de Law constitue la première expérience de papier-monnaie menée en France. Il a pour objectif initial d'assainir les finances publiques françaises en facilitant le commerce et l'investissement. Système à l'origine des premières grandes émissions de titres boursiers. La banque royale de John Law, autorisée par le régent, émet des billets à cours forcé en 1718 et la Compagnie du Mississipi lancée en 1717 fait l'objet d'une spéculation éffrénée qui se terminera en faillite en 1720. La banqueroute du système de Law retardera par la suite l'emploi de la monnaie fiduciaire et la création d'une banque centrale en France"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Histoire économique - 1600-1750"}, {"authorized_access_point": "France - 1715-1723 (Régence)"}], "related": [{"authorized_access_point": "Banqueroute"}, {"authorized_access_point": "Papier-monnaie"}, {"authorized_access_point": "Spéculation"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/261107119", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/261107119", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180021330", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18002133", "source": "BNF"}], "classification": [{"name": "Economie", "type": "bf:ClassificationDdc", "classificationPortion": "330"}, {"name": "Histoire de la France (depuis 486)", "type": "bf:ClassificationDdc", "classificationPortion": "944"}], "variant_access_point": ["Law, Système bancaire de", "Law, Système de", "Mississippi system", "Système bancaire de John Law", "Système du Mississipi"], "authorized_access_point": "Système de Law"} 1 +2024-09-10 15:43:26.069686 2024-09-10 15:43:26.069691 d9c764ed-2476-4c35-845b-cbd47d158770 {"md5": "d347831c39b651939d9c89259534dfaf", "pid": "263499758", "note": [{"label": ["S'emploie uniquement en subdivision aux livres ou groupes de livres de l'Ancien et du Nouveau Testament, par ex. : Bible. A.T.. Exode -- Relation avec Jonas", "On établit une vedette-matière additionnelle inverse, par ex. : Bible. A.T.. Jonas -- Relation avec l'Exode"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Relation avec les Petits Prophètes"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/263499758", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263499758", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180221609", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18022160", "source": "BNF"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}], "variant_access_point": ["Relation avec le Livre de Jonas"], "authorized_access_point": "Relation avec Jonas"} 1 +2024-09-10 15:43:26.132348 2024-09-10 15:43:26.132351 e0bfb716-308d-4631-ad55-0701d6bc50c2 {"md5": "8fde9b5e3e3773b057bde47a7a49d649", "pid": "264222423", "note": [{"label": ["S'emploie également en subdivision"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Colonies"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/264222423", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/264222423", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb17996787t", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "915"}, {"type": "bf:ClassificationDdc", "classificationPortion": "950"}], "authorized_access_point": "Colonies australiennes"} 1 +2024-09-10 15:43:26.199716 2024-09-10 15:43:26.19972 3dc9e18c-b839-4485-b333-0760866ada5d {"md5": "625423f2bb749eaa7e846c6c488e9fd6", "pid": "264325974", "note": [{"label": ["Le Japon : dict. et civilisation / L. Frédéric, 1996", "Hist. politique du Japon de 1853 à nos jours / E. Dufourmont, 2020 : Zainichi chôsenjin", "La langue japonaise est-elle la \\"mère\\" des Zainichi ? / A. Hosoi [in] Transtext(e)s transcultures 2013, 8", "Zainichi, les Coréens du Japon / M. Lesage [in] Journal du Japon, 2020-11-08 - https://www.journaldujapon.com (2022-03-21)", "Routledge handbook of Japanese culture and society / V. Lyon Bestor, T. C. Bestor, 2011 : Zainichi Koreans"], "noteType": "dataSource"}, {"label": ["Coréens établis au Japon entre 1910 et 1945 et leurs descendants. Le nom donné par les Japonais est péjoratif et signifie à l'origine \\"soleil de gauche\\" ou \\"ceux qui résident au Japon", "L'adjectif ethnique correspondant est \\"zainichi\\". Il est invariable"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Coréens"}, {"authorized_access_point": "Ethnologie - Japon"}], "related": [{"authorized_access_point": "Corée - 1910-1945 (Occupation japonaise)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/264325974", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/264325974", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18004124h", "source": "BNF"}], "classification": [{"name": "Ethnologie, anthropologie, folklore", "type": "bf:ClassificationDdc", "classificationPortion": "390"}], "variant_access_point": ["Coréens (Zainichi)", "Coréens zainichi", "Zainichi chôsenjin", "Zainichi kankokuchôsenjin"], "authorized_access_point": "Zainichi"} 1 +2024-09-10 15:43:26.266755 2024-09-10 15:43:26.266761 b9fbb2b5-c130-4661-b6de-08e8bd101ff2 {"md5": "53bf71ffe535164072157ab28a768e52", "pid": "264387414", "note": [{"label": ["Encycl. Larousse (art. : Guyana) - https://www.larousse.fr", "Robert encyclopédique des noms propres, 2008 (art. : Guyana) : Guyanais ou Guyaniens", "Nouveau petit Robert 2009 (partie dérivés des noms propres) : guyanais, aise ou guyanien, ienne (2022-03-31)"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, obligatoirement suivie d'une subdivision géographique ou de la subdivision : À l'étranger, directement ou après une subdivision de sujet, on trouve les documents sur les Guyaniens hors de la Guyana. Les documents sur les Guyaniens en Guyana se trouvent sous des vedettes-matière telles que : Moeurs et coutumes -- Guyana ; etc"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ethnologie - Guyana"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Américains d'origine guyanienne"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85058026", "source": "LCSH"}], "authorized_access_point": "Guyanese"}, {"source": "RVMLaval", "authorized_access_point": "Guyanais"}], "identifier": "http://www.idref.fr/264387414", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/264387414", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18006303k", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18006303", "source": "BNF"}], "classification": [{"name": "Ethnologie, anthropologie, folklore", "type": "bf:ClassificationDdc", "classificationPortion": "390"}], "variant_access_point": ["Guyanais (de la Guyana)"], "authorized_access_point": "Guyaniens"} 1 +2024-09-10 15:43:26.347491 2024-09-10 15:43:26.347494 3ea9b924-07f7-4e62-bd1f-fbdb0f89f179 {"md5": "0329aeae0a6b4eb4563dfa69227192b0", "pid": "264387538", "note": [{"label": ["Grand dict. encyclopédique Larousse (art. : Bergame)", "Robert encyclopédique des noms propres, 2008 (art. : Bergame)", "Trésor de la langue française (en ligne) : bergamasque"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, obligatoirement suivie d'une subdivision géographique ou de la subdivision : À l'étranger, directement ou après une subdivision de sujet, on trouve les documents sur les Bergamasques hors de la ville ou de la province de Bergame. Les documents sur les Bergamasques à Bergame se trouvent sous des vedettes-matière telles que : Moeurs et coutumes -- Bergame (italie) ; Moeurs et coutumes -- Bergame (Italie ; province) ; etc"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ethnologie - Italie"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Voyageurs bergamasques"}], "identifier": "http://www.idref.fr/264387538", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/264387538", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18005762z", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18005762", "source": "BNF"}], "classification": [{"name": "Ethnologie, anthropologie, folklore", "type": "bf:ClassificationDdc", "classificationPortion": "390"}], "authorized_access_point": "Bergamasques"} 1 +2024-09-10 15:43:26.421285 2024-09-10 15:43:26.421289 9aadf8d8-344f-48d5-b9d1-035addf789e5 {"md5": "32e06b2c935a8ed8df23199a85c6fe20", "pid": "26438833X", "note": [{"label": ["Grand dict. encyclopédique Larousse : percheron, onne", "Nouveau petit Robert 2009 (partie dérivés des noms propres) (art. : Perche (France)) : percheron, onne", "Du Perche au Canada : qui étaient ces colons français du XVIIIe siècle ? [in] Geo Histoire, 2021, 55 - https://www.geo.fr (2022-03-29)"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, obligatoirement suivie d'une subdivision géographique ou de la subdivision : À l'étranger, directement ou après une subdivision de sujet, on trouve les documents sur les Percherons hors du Perche. Les documents sur les Percherons dans le Perche se trouvent sous des vedettes-matière telles que : Moeurs et coutumes -- Perche (France) ; etc"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ethnologie - France"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Percherons"}], "identifier": "http://www.idref.fr/26438833X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/26438833X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18005688c", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18005688", "source": "BNF"}], "classification": [{"name": "Ethnologie, anthropologie, folklore", "type": "bf:ClassificationDdc", "classificationPortion": "390"}], "variant_access_point": ["Percherons (habitants du Perche)"], "authorized_access_point": "Percherons"} 1 +2024-09-10 15:43:26.489494 2024-09-10 15:43:26.489497 7b16b734-9295-4113-8d0e-d0afe13087ed {"md5": "097b612f1218a4e7b04cb23fcb3ddbe9", "pid": "271981423", "note": [{"label": ["Paradoxographie et religion / M. García Teijeiro, M. T. Molinos Tejada [in] Kernos : revue internationale et pluridisciplinaire de religion grecque antique, 1994, 7 - https://journals.openedition.org/kernos (2023-08-29)", "The Oxford dict. of Byzantium / A. P. Kazhdan, 2005 - https://www.oxfordreference.com (2023-08-29)", "Religion past and present - https://referenceworks.brillonline.com (2023-08-29)", "The Oxford classical dict. / S. Hornblower, A. Spawforth, 2005 : paradoxographers - https://www.oxfordreference.com (2023-08-29)", "Wikidata : paradoxography - https://www.wikidata.org/wiki/Q686892 (2023-08-29)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature antique"}], "related": [{"authorized_access_point": "Merveilleux (littérature)"}, {"authorized_access_point": "Paradoxe"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/271981423", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271981423", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180991357", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18099135", "source": "BNF"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}, {"name": "Poésie", "type": "bf:ClassificationDdc", "classificationPortion": "801"}], "variant_access_point": ["Paradoxographes"], "authorized_access_point": "Paradoxographie"} 1 +2024-09-10 15:43:26.553821 2024-09-10 15:43:26.553826 461363bc-c9da-4262-adca-ffe16027d054 {"md5": "7e2046542e708d46c140b1919f7dc52f", "pid": "27874690X", "note": [{"label": ["Wikidata : Goncourt des animaux - https://www.wikidata.org/wiki/Q56256265 (2024-05-22)", "Wikipédia : Goncourt des animaux - https://fr.wikipedia.org (2024-05-22)", "Le palmarès du Prix Littéraire 30 Millions d'Amis - http://www.lalettredulibraire.com (2024-05-22)", "120 ans de prix Goncourt : une histoire littéraire française / J.-Y. Le Naour, C. Valenti, 2023", "Vincent Maillard, Prix Littéraire 30 Millions d'Amis / M. De Roux, A. Develey [in] Le Figaro, 23 nov. 2021"], "noteType": "dataSource"}, {"label": ["Prix littéraire 30 millions d'amis, plus couramment appelé le Goncourt des animaux, est un prix annuel qui récompense un roman ou un essai qui met à l'honneur les animaux"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Prix littéraires - France"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/27874690X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/27874690X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181480099", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18148009", "source": "BNF"}], "classification": [{"name": "Généralités", "type": "bf:ClassificationDdc", "classificationPortion": "000"}, {"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["30 millions d'amis, Prix littéraire", "Goncourt des animaux", "Goncourt des animaux, Prix", "Prix littéraire 30 millions d'amis"], "authorized_access_point": "Prix Goncourt des animaux"} 1 +2024-09-10 15:43:26.621522 2024-09-10 15:43:26.621526 78d862f8-5422-4499-bef5-5c615c6ec524 {"md5": "f999eac4ffd108aaa83fc010bf340afe", "pid": "278746969", "note": [{"label": ["Wikidata - https://www.wikidata.org/wiki/Q1201953 (2024-05-23)", "Wikipédia : Deutsch als Fremdsprache - https://de.wikipedia.org (2024-05-23)", "Deutsch als Fremdsprache : eine Einführung / H.-W. Huneke, W. Steinig, 2013", "Maîtriser la communication professionnelle : en français et en langue étrangère : allemand, anglais, espagnol, italien : BTS assistant de direction, BTS assistant trilingue, 1997", "Optimal A1 : cours d'allemand langue étrangère : glossaire allemand-français A1, 1994"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Allemand (langue)"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2008105237", "source": "LCSH"}], "authorized_access_point": "German language--Study and teaching--Foreign speakers"}], "identifier": "http://www.idref.fr/278746969", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278746969", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181481652", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18148165", "source": "BNF"}], "classification": [{"name": "Education et enseignement", "type": "bf:ClassificationDdc", "classificationPortion": "370"}, {"name": "Langues et linguistique", "type": "bf:ClassificationDdc", "classificationPortion": "400"}], "variant_access_point": ["ALE", "Allemand (langue) - Étude et enseignement -- Allophones", "Allemand (langue) - Étude et enseignement -- Étudiants étrangers", "Allemand (langue) - Étude et enseignement -- Non-anglophones", "Allemand (langue étrangère) - Étude et enseignement", "Allemand (langue seconde)", "Allemand comme langue étrangère", "DaF", "Deutsch als Fremdsprache", "German as a foreign language"], "authorized_access_point": "Allemand langue étrangère"} 1 +2024-09-10 15:43:35.217769 2024-09-10 15:43:35.217772 a08cf3c5-a5d7-49a6-a6b8-100f8d360b76 {"md5": "eaf0037d7fb4551840e525ef3d89141c", "pid": "278747027", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Roman français"}], "bnf_type": "genre/forme Rameau", "identifier": "http://www.idref.fr/278747027", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278747027", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18148761b", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18148761", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}, {"name": "Préhistoire et histoire ancienne", "type": "bf:ClassificationDdc", "classificationPortion": "930"}], "authorized_access_point": "Roman préhistorique français"} 1 +2024-09-10 15:43:26.686887 2024-09-10 15:43:26.68689 ad7e0376-24e1-4f9a-acc6-40814a340656 {"md5": "845f6e9f6b149d97bc8026e100475058", "pid": "278746985", "note": [{"label": ["Wikipédia : Prix Françoise-Sagan - https://fr.wikipedia.org (2024-05-23)", "Prix Françoise Sagan - https://www.francoisesagan.fr/le-prix (2024-05-23)", "Prix Françoise Sagan - https://www.livreshebdo.fr/prix-litteraires/tous-les-prix/prix-francoise-sagan (2024-05-22)"], "noteType": "dataSource"}, {"label": ["Prix littéraire créé en 2010 par Denis Westhoff, fils de Françoise Sagan. Il récompense chaque année une oeuvre en langue française d'un auteur n'ayant pas une notoriété trop importante et n'ayant pas reçu de prix ou de récompense majeure précédemment"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Prix littéraires - France"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/278746985", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278746985", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181483210", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18148321", "source": "BNF"}], "classification": [{"name": "Généralités", "type": "bf:ClassificationDdc", "classificationPortion": "000"}, {"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Françoise-Sagan, Prix", "Françoise-Sagan, Prix littéraire", "Françoise Sagan, Prix", "Françoise Sagan, Prix littéraire", "Prix Françoise Sagan", "Prix littéraire Françoise-Sagan", "Prix littéraire Françoise Sagan"], "authorized_access_point": "Prix Françoise-Sagan"} 1 +2024-09-10 15:43:26.74829 2024-09-10 15:43:26.748296 5fd53094-dfa7-44ba-af2c-fe895a61ff1b {"md5": "042ab675aac80ed3f15428953944fc25", "pid": "278746993", "note": [{"label": ["Prix Marcel Pagnol - https://www.marcel-pagnol.com/manifestations/prix-marcel-pagnol (2024-05-23)", "Les cinq finalistes du prix Marcel Pagnol 2024 / E. Carreira [in] LivresHebdo, 30 avr. 2024", "Attribution du prix Marcel-Pagnol 2024 / E. Carreira [in] L'Humanité, 8 juin 2000"], "noteType": "dataSource"}, {"label": ["Prix littéraire créé en 2000 qui récompense chaque année un roman en langue française sur le thème du souvenir d'enfance"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Prix littéraires - France"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/278746993", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278746993", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181483330", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18148333", "source": "BNF"}], "classification": [{"name": "Généralités", "type": "bf:ClassificationDdc", "classificationPortion": "000"}, {"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Marcel-Pagnol, Prix", "Marcel-Pagnol, Prix littéraire", "Marcel Pagnol, Prix", "Marcel Pagnol, Prix littéraire", "Prix Marcel Pagnol", "Prix littéraire Marcel-Pagnol", "Prix littéraire Marcel Pagnol"], "authorized_access_point": "Prix Marcel-Pagnol"} 1 +2024-09-10 15:43:26.814855 2024-09-10 15:43:26.814859 82f32d1b-61e0-451b-9f14-40f58d8155c7 {"md5": "64e6ac462f068ab8f48fe73b38b98050", "pid": "278747000", "note": [{"label": ["Intervention en séance unique (ISU) : un projet novateur au CISSS de la Montérégie-Ouest, [in] Portail Santé Montérégie, 19 juin 2023 - https://www.santemonteregie.qc.ca (2024-05-23)", "Problèmes de dépendance des enfants : Vitalité tente une nouvelle stratégie / S. Paquette [in] Acadie nouvelle, 16 jan. 2023", "Une séance unique avec un psy pour gérer un problème / M.-E. Cousineau, [in] Le devoir, 13 juin 2022"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Psychothérapie brève"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh90001965", "source": "LCSH"}], "authorized_access_point": "Single-session psychotherapy"}, {"source": "RVMLaval", "authorized_access_point": "Psychothérapie en une séance"}], "identifier": "http://www.idref.fr/278747000", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278747000", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18148359p", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18148359", "source": "BNF"}], "classification": [{"name": "Psychologie, psychanalyse", "type": "bf:ClassificationDdc", "classificationPortion": "150"}], "variant_access_point": ["ISU", "Psychothérapie en une séance", "Thérapie à séance unique"], "authorized_access_point": "Intervention en séance unique"} 1 +2024-09-10 15:43:26.873714 2024-09-10 15:43:26.873717 3ddb340d-b57c-499a-8738-fa03d033801c {"md5": "2ebe1aeacfcb5e652edff3fdbf0155a8", "pid": "278747019", "note": [{"label": ["L'oreille interne artificielle : implant cochléaire et vestibulaire / J.-P. Guyot, M. Pelizzone [in] Revue médicale suisse, 2023, 845-2", "Challenges anatomiques de la voie extralabyrinthique pour l'implantation vestibulaire / M. Senol, 2023 [thèse]"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Neuroprothèses"}, {"authorized_access_point": "Prothèses auditives"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/278747019", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278747019", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181487542", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18148754", "source": "BNF"}], "classification": [{"name": "Sciences médicales et paramédicales", "type": "bf:ClassificationDdc", "classificationPortion": "610"}], "variant_access_point": ["Neuroprothèses vestibulaires"], "authorized_access_point": "Implants vestibulaires"} 1 +2024-09-10 15:43:28.639981 2024-09-10 15:43:28.639985 cabc0388-759b-4606-86b8-cbe6ba6dd388 {"md5": "5a13469e278e2b638f01ab0431a906b1", "pid": "27903508X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Navigation (aéronautique)"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2020000351", "source": "LCSH"}], "authorized_access_point": "Drone aircraft--Piloting"}], "identifier": "http://www.idref.fr/27903508X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/27903508X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181533183", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18153318", "source": "BNF"}], "classification": [{"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "authorized_access_point": "Drones - Pilotage"} 1 +2024-09-10 15:43:26.933676 2024-09-10 15:43:26.933681 b51a77ac-2009-4ecd-ace8-ab9bf282bc8c {"md5": "4a220b2d03dd2c364b0bf4450f1c2bb7", "pid": "278747043", "note": [{"label": ["Kanski, ophtalmologie clinique : une approche systématique / J. F. Salmon, J. Chammas, R. K. Khanna, 2021", "Progression de la rétinopathie diabétique durant la grossesse [in] Journal français d'ophtalmologie, 2010, 33, 5", "Rétinopathie diabétique / P. Massin, A. Erginay, 2010", "Dict. de l'Académie de médecine : anomalie microvasculaire intrarétinienne de la rétinopathie diabétique (AMIR) - https://www.academie-medecine.fr/le-dictionnaire (2024-05-31)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Rétinopathie diabétique"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/278747043", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278747043", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18148767d", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18148767", "source": "BNF"}], "classification": [{"name": "Sciences médicales et paramédicales", "type": "bf:ClassificationDdc", "classificationPortion": "610"}], "variant_access_point": ["AMIR (maladies)", "Anomalies microvasculaires intrarétiniennes de la rétinopathie diabétique", "Rétinopathie diabétique, Anomalies microvasculaires intrarétiniennes de la"], "authorized_access_point": "Anomalies microvasculaires intrarétiniennes"} 1 +2024-09-10 15:43:26.994177 2024-09-10 15:43:26.99418 42df9b50-1e69-4451-98a3-ce458cf37f3f {"md5": "ab8bcf37415256fb70b34c6a27c4e7a3", "pid": "278747167", "note": [{"label": ["Physiopathologie du lymphome à cellules du manteau / D. Chiron [in] Horizons hémato, 2016, 6, 2", "Duplication de génome et évolution de la famille Sox chez les poissons téléostéens / E. Voldoire, 2013 [thèse]"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Facteurs de transcription"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/278747167", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278747167", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18148935b", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18148935", "source": "BNF"}], "classification": [{"name": "Sciences de la vie", "type": "bf:ClassificationDdc", "classificationPortion": "570"}], "variant_access_point": ["Facteur de transcription SOX-11", "SOX11"], "authorized_access_point": "Facteur de transcription SOX11"} 1 +2024-09-10 15:43:27.054282 2024-09-10 15:43:27.054287 6f4f1035-a528-48ff-8661-a0af30b0fbfd {"md5": "bce576faae3120f6002d87abb01ebfe3", "pid": "278747175", "note": [{"label": ["Dict. thématique de biologie / C. Blanchet, 2020", "La gouttelette lipidique : un nouvel organite ? / P. Roingeard [in] Médecine/sciences, 2013, 29, 5", "Développement, architecture et dynamique des gouttelettes lipidiques de la diatomée Phaeodactylum tricornutum / J. Lupette, 2016 [thèse]", "Un regard neuf sur les gouttelettes lipidiques des adipocytes : jouent-elles un rôle dans la détection de l'état du stock de triglycérides ? / C. Blouin, E. Hajduch, I. Dugail [in] Journal de la Société de biologie, 2006, 200, 1"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Organites"}], "related": [{"authorized_access_point": "Lipides"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/278747175", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278747175", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181489716", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18148971", "source": "BNF"}], "classification": [{"name": "Sciences de la vie", "type": "bf:ClassificationDdc", "classificationPortion": "570"}], "variant_access_point": ["Adiposomes"], "authorized_access_point": "Gouttelettes lipidiques"} 1 +2024-09-10 15:43:27.120888 2024-09-10 15:43:27.120892 c69175f6-d2bc-4d01-9905-8501fafdaced {"md5": "e16aec93df814cf77a42db16d3cff7ee", "pid": "278747183", "note": [{"label": ["Vocabulaire de l'analyse littéraire / D. Bergez, V. Géraud, J.-J. Robrieux, 1994", "Dict. des termes littéraires, 2001", "Dict. des termes littéraires, 2005", "Les figures à l'épreuve du discours : dialogisme et polyphonie, 2012"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature - Esthétique"}], "related": [{"authorized_access_point": "Carnavalesque"}, {"authorized_access_point": "Dialogisme"}, {"authorized_access_point": "Dialogue (littérature)"}, {"authorized_access_point": "Intertextualité"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/278747183", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278747183", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18148976x", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18148976", "source": "BNF"}], "classification": [{"name": "Poésie", "type": "bf:ClassificationDdc", "classificationPortion": "801"}], "authorized_access_point": "Polyphonie (littérature)"} 1 +2024-09-10 15:43:27.193695 2024-09-10 15:43:27.193699 c0965146-456f-4ec4-a304-5f2c8de8f0a2 {"md5": "ba50b1ae9c2192927c95e70fc0bf029f", "pid": "278747191", "note": [{"label": ["Loterre : Nutrition artificielle (thésaurus) - https://www.loterre.fr (2024-05-29)", "Existe-t-il une relation entre la dose d'hormone de croissance et d'éventuelles complications tumorales ou cardiovasculaires ? / Y. Le Bouc, F. Brioude [in] Bulletin de l'Académie nationale de médecine, 2012, 196, 1", "Dict. de biologie / J. Berthet, 2007 (art. : IGF) : IGF-1", "Dict. de médecine Flammarion, 2008 (art. : Somatomédine) : IGF I", "Dict. illustré des termes de médecine, 2012 (art. : IGF) : IGF I", "Dict. de l'Académie de médecine (art. : IGF) : IGF-I - https://www.academie-medecine.fr/le-dictionnaire (2024-05-29)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Facteurs de croissance IGF"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/278747191", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278747191", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18149178n", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18149178", "source": "BNF"}], "classification": [{"name": "Sciences de la vie", "type": "bf:ClassificationDdc", "classificationPortion": "570"}], "variant_access_point": ["IGF-1 (protéine)", "IGF-I (protéine)", "IGF I (protéine)", "IGF1 (protéine)", "IGFI (protéine)", "Insulin-like growth factor-1", "Somatomédine C"], "authorized_access_point": "Facteur de croissance IGF-1"} 1 +2024-09-10 15:43:27.271943 2024-09-10 15:43:27.271946 3cf46e08-446d-4b12-9ce4-0957518f6049 {"md5": "7cfde1c77eb53c9a6546b9d71b80be9a", "pid": "27874723X", "note": [{"label": ["L'onguent armaire entre science et folklore médical. Pour une épistémologie historique du concept de guérison / R. Poma [in] Archives de philosophie, 2010, 73, 4", "L'harmonie au prisme du mesmérisme : recompositions scientifiques, politiques et morales au tournant des XVIIIe et XIXe siècles [in] La Révolution française : cahiers de l'Institut d'histoire de la Révolution française, 2023, 24", "Petite hist. des remèdes magnétiques / P. Pinet [in] Revue d'histoire de la pharmacie, 2008, 360", "Exposition « Savoirs cachés », du 19 septembre au 22 décembre 2021, Bibliothèque Sainte-Geneviève - https://genovefa.bsg.univ-paris3.fr/s/esoterisme/page/accueil (2024-05-31)"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les documents sur le courant de pensée médicale datant du XVIIème siècle. Les documents sur le traitement des maladies à l'aide de champs magnétiques se trouvent sous Magnétothérapie"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Médecine - Philosophie"}, {"authorized_access_point": "Médecine et ésotérisme"}], "related": [{"authorized_access_point": "Magnétisme animal"}, {"authorized_access_point": "Magnétothérapie"}, {"authorized_access_point": "Mesmérisme"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/27874723X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/27874723X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181498804", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18149880", "source": "BNF"}], "classification": [{"name": "Philosophie", "type": "bf:ClassificationDdc", "classificationPortion": "100"}, {"name": "Esotérisme, phénomènes paranormaux", "type": "bf:ClassificationDdc", "classificationPortion": "130"}, {"name": "Sciences médicales et paramédicales", "type": "bf:ClassificationDdc", "classificationPortion": "610"}], "authorized_access_point": "Médecine magnétique"} 1 +2024-09-10 15:43:27.33541 2024-09-10 15:43:27.335414 e4f5ac93-7f8a-426b-8df4-ea526ce9430a {"md5": "5acb671f8ee7fa0efca1bc89683fab6f", "pid": "278747280", "note": [{"label": ["LC online cat., 2024-06-04 : Porticoes -- Italy"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Portiques (architecture) - [Localisations géographiques]"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/278747280", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278747280", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18150656r", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18150656", "source": "BNF"}], "classification": [{"name": "Bâtiment", "type": "bf:ClassificationDdc", "classificationPortion": "690"}, {"name": "Architecture", "type": "bf:ClassificationDdc", "classificationPortion": "720"}], "authorized_access_point": "Portiques (architecture) - Italie"} 1 +2024-09-10 15:43:27.400882 2024-09-10 15:43:27.400887 42a2d0d6-5690-4f7f-97d7-18ead65ca828 {"md5": "b5af416af0e60006733fab047f373218", "pid": "278747329", "note": [{"label": ["Sous cette vedette, obligatoirement suivie d'une subdivision géographique ou de la subdivision : À l'étranger, directement ou après une subdivision de sujet, on trouve les documents sur les animateurs de radio tchécoslovaques hors de Tchécoslovaquie. Les documents sur les animateurs de radio tchécoslovaques en Tchécoslovaquie se trouvent sous des vedettes-matière telles que : Animateurs de radio -- Tchécoslovaquie ; Animateurs de radio -- [Subdivision de sujet] -- Tchécoslovaquie ; etc"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tchécoslovaques"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/278747329", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278747329", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18151274t", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18151274", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "305"}, {"name": "Ethnologie, anthropologie, folklore", "type": "bf:ClassificationDdc", "classificationPortion": "390"}, {"name": "Audiovisuel", "type": "bf:ClassificationDdc", "classificationPortion": "791"}], "authorized_access_point": "Animateurs de radio tchécoslovaques"} 1 +2024-09-10 15:43:27.47675 2024-09-10 15:43:27.476756 fbbe7fb1-35c1-42c3-a9b0-78a9f973a18a {"md5": "21decc29e2b77175892775495943ee73", "pid": "279034725", "note": [{"label": ["Rôle du facteur de transcription Nrf2 dans le contrôle de l'allergie cutanée en réponse aux molécules allergisantes / Z. El Ali, 2013 [thèse]", "Rôle du facteur de transcription Nrf2 dans la régulation des fonctions du neutrophile in vitro et dans l'allergie cutanée / D. Helou, 2018 [thèse]", "La voie Nrf2 en pathologie respiratoire [in] Médecine/sciences, 2011, 27, 11"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Facteurs de transcription"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279034725", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279034725", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181050359", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18105035", "source": "BNF"}], "classification": [{"name": "Sciences de la vie", "type": "bf:ClassificationDdc", "classificationPortion": "570"}], "variant_access_point": ["Facteur de transcription Nrf-2", "NF-E2-related factor 2", "Nrf-2 (protéine)", "Nrf2 (protéine)", "Nuclear factor E2-related factor 2", "Nuclear factor erythroid-2-related factor 2"], "authorized_access_point": "Facteur de transcription Nrf2"} 1 +2024-09-10 15:43:27.539333 2024-09-10 15:43:27.53934 7667a058-af20-4286-9a03-b0d86edacf1d {"md5": "779ec3e784a4ce407da3a6b57a05fd6b", "pid": "279034733", "note": [{"label": ["Étude fonctionnelle de mutants de DCLRE1B/Apollo dans l'oncogenèse rénale / C. Bories, 2023 [thèse]", "DCLRE1B/Apollo germline mutations associated with renal cell carcinoma impair telomere protection [in] BBA. Molecular basis of disease, 2024, 1870, 4"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gènes"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279034733", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279034733", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18140209x", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18140209", "source": "BNF"}], "classification": [{"name": "Sciences de la vie", "type": "bf:ClassificationDdc", "classificationPortion": "570"}], "variant_access_point": ["Apollo/DCLRE1B (gène)", "DCLRE1B/Apollo (gène)", "Gène Apollo/DCLRE1B"], "authorized_access_point": "Gène DCLRE1B/Apollo"} 1 +2024-09-10 15:43:38.085702 2024-09-10 15:43:38.085707 7a61ff20-719d-4327-9ebc-df447aad2855 {"md5": "361f1bbaf893c66d08451cc9b94c8887", "pid": "279307403", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature érotique française"}], "bnf_type": "genre/forme Rameau", "identifier": "http://www.idref.fr/279307403", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307403", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18152992x", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18152992", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Dark romance française"} 1 +2024-09-10 15:43:27.60037 2024-09-10 15:43:27.600374 1068a442-e360-4ecc-83b1-993ce145b437 {"md5": "7007a983d1b880e9931e7926af50c850", "pid": "279034741", "note": [{"label": ["Valeurs et modalités de mise en œuvre de la conception universelle de l'apprentissage dans les pays de langue française : une étude de portée / D. Odier-Guedj, L. Lefèvre, M.-E. Boisvert Hamelin, [in] La nouvelle revue - Éducation et société inclusives, 2023, 97, 3", "L'utilisation des principes de la conception universelle de l'apprentissage pour le développement d'un programme d'interventions basées sur la présence attentive pour les personnes adolescentes de 12 à 19 ans / C. Duranleau, N. Rousseau, F. Dionne [in] Éducation et francophonie, 2023, 51, 1", "La conception universelle de l'apprentissage : un « pont dynamique » entre une différenciation pédagogique et une évaluation humaniste ? / C. Eid [in] Contextes et didactiques, 2019, 13"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Pédagogie"}], "related": [{"authorized_access_point": "Apprentissage"}, {"authorized_access_point": "Intégration scolaire"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Conception universelle de l'apprentissage"}], "identifier": "http://www.idref.fr/279034741", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279034741", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181489491", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18148949", "source": "BNF"}], "classification": [{"name": "Education et enseignement", "type": "bf:ClassificationDdc", "classificationPortion": "370"}], "variant_access_point": ["Accessibilité universelle à l'apprentissage", "Conception universelle de l'enseignement", "CUA", "CUE", "Pédagogie universelle"], "authorized_access_point": "Conception universelle de l'apprentissage"} 1 +2024-09-10 15:43:27.664783 2024-09-10 15:43:27.664788 7ff066c4-ec74-44c9-b5c2-ea16022f0920 {"md5": "25baae94747a6e4eedd73beb8b6f0387", "pid": "27903475X", "note": [{"label": ["Roman choral : fiction à voix multiples / J. Domingues de Almeida et F. Outeirinho, 2024", "Le Roman Polyphonique / B. Thibault [in] Danièle Sallenave et le don des morts, Collection Monographique Rodopi en Littérature Française Contemporaine, 2004, 40", "Le roman au XVIIIe siècle en Europe / A. Montandon, 1999, p. 221"], "noteType": "dataSource"}, {"label": ["Procédé narratif, ne relève pas du référentiel genre/forme"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Narration"}, {"authorized_access_point": "Roman - Technique"}], "related": [{"authorized_access_point": "Point de vue (littérature)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/27903475X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/27903475X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181496990", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18149699", "source": "BNF"}], "classification": [{"name": "Poésie", "type": "bf:ClassificationDdc", "classificationPortion": "801"}], "variant_access_point": ["Roman polyphonique", "Roman à plusieurs voix", "Roman à voix multiples"], "authorized_access_point": "Roman choral"} 1 +2024-09-10 15:43:27.728846 2024-09-10 15:43:27.72885 910d9c8f-ed46-4298-be1b-e1b432051db8 {"md5": "0ddbb1532903f60100a8e875736b861b", "pid": "279034806", "note": [{"label": ["Influence de la rigidité du substrat sur la migration des cellules souches de la pulpe dentaire / C. Ehlinger, 2020 [thèse]", "La migration des cellules et leur sensibilité aux propriétés physiques de la matrice extracellulaire : rôle d'ICAP-1, un régulateur des intégrines et de la contractilité / M. Régent, 2011 [thèse]", "Activité et réponse à une blessure d'un tapis de cellules [in] Reflets de la physique, 2010, 18"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Cellules - Motilité"}, {"authorized_access_point": "Taxie"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279034806", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279034806", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181509228", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18150922", "source": "BNF"}], "classification": [{"name": "Sciences de la vie", "type": "bf:ClassificationDdc", "classificationPortion": "570"}], "variant_access_point": ["Durotactisme"], "authorized_access_point": "Durotaxie"} 1 +2024-09-10 15:43:27.793339 2024-09-10 15:43:27.793342 1eedec2d-7a0e-4892-b59a-3ce6bc43a16c {"md5": "cfa32fb19b08099dca8a372680f2ac69", "pid": "279034814", "note": [{"label": ["Vitrine linguistique - https://vitrinelinguistique.oqlf.gouv.qc.ca (2024-06-05)", "Tour d'horizon des lignées de cellules souches pluripotentes / E. Kieffer, S. Kuntz, S. Viville [in] Médecine/sciences, 2010, 26, 10", "Biologie cellulaire et moléculaire, 2022"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Cellules souches"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279034814", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279034814", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18150984t", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18150984", "source": "BNF"}], "classification": [{"name": "Sciences de la vie", "type": "bf:ClassificationDdc", "classificationPortion": "570"}], "authorized_access_point": "Cellules souches pluripotentes"} 1 +2024-09-10 15:43:27.856935 2024-09-10 15:43:27.856938 34c9f545-c9e8-42dd-8c43-c59fe91df787 {"md5": "6b42fd79fa678e35eb251d13462d2032", "pid": "279034822", "note": [{"label": ["eVidal - https://evidal.vidal.fr (2024-06-11)", "La découverte des propriétés antidépressives de la kétamine / P. de Maricourt, R. Gaillard [in] Annales médico-psychologiques, revue psychiatrique, 2017, 175, 7", "Psychotropes du futur : de l'imipramine à la kétamine [in] Bulletin de l'Académie nationale de médecine, 2020, 204, 9", "PubChem : esketamine - https://pubchem.ncbi.nlm.nih.gov (2024-06-11)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Antidépresseurs"}, {"authorized_access_point": "Kétamine"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "MeSH", "identifiedBy": [{"type": "uri", "value": "https://id.nlm.nih.gov/mesh/M000647133", "source": "MeSH"}], "authorized_access_point": "Esketamine"}], "identifier": "http://www.idref.fr/279034822", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279034822", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181510341", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18151034", "source": "BNF"}], "classification": [{"name": "Chimie, minéralogie, cristallographie", "type": "bf:ClassificationDdc", "classificationPortion": "540"}, {"type": "bf:ClassificationDdc", "classificationPortion": "615"}], "authorized_access_point": "Eskétamine"} 1 +2024-09-10 15:43:27.923959 2024-09-10 15:43:27.923962 afaf252d-d768-40a3-86ea-45d0fdc2c3b0 {"md5": "1133348db635cf607f8bc2da8df23fce", "pid": "279034849", "note": [{"label": ["Le flux 4D : technique et principales applications pour l'étude de l'aorte thoracique [in] Journal d'imagerie diagnostique et interventionnelle, 2021, 4, 2", "Scanner et imagerie par résonance magnétique des cardiopathies congénitales à l'âge adulte [in] EMC. Radiologie et imagerie médicale. Cardiovasculaire - thoracique - cervicale, 2022, 40, 4", "Évaluation des flux en imagerie par résonance magnétique cardiaque : l'imagerie de flux 4D / J.-F. Paul [in] Annales de cardiologie et d'angéiologie, 2020, 69, 5"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Imagerie par résonance magnétique"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279034849", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279034849", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18151339k", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18151339", "source": "BNF"}], "classification": [{"name": "Sciences médicales et paramédicales", "type": "bf:ClassificationDdc", "classificationPortion": "610"}], "variant_access_point": ["Imagerie de flux 4D", "IRM 4D de flux", "IRM 4D flow", "IRM de contraste de phase 4D", "IRM de flux 4D", "IRM en flux 4D", "IRM flux 4D"], "authorized_access_point": "Flux 4D"} 1 +2024-09-10 15:43:27.989902 2024-09-10 15:43:27.989906 992bc37e-44f9-4a9c-b87e-d362bdaf2d72 {"md5": "7abc84a86271171cc636c7eb289dab34", "pid": "279034881", "note": [{"label": ["« Le parlage des jeunes » à la Réunion : bilan et perspectives / G. Ledegen [in] Cahiers de sociolinguistique, 2004, 1, 9", "Anéantir : les exécutions capitales à l'île Bourbon (1803-1848) / B. Maillard [in] Annales historiques de la Révolution française, 2023, 4, 414", "L'île Maurice et la société mauricienne / L. Simonnin [in] La Revue des Deux Mondes, 1861, 36, 1"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Vannerie"}], "related": [{"authorized_access_point": "Vaquois"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279034881", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279034881", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181517370", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18151737", "source": "BNF"}], "classification": [{"name": "Dessin, arts décoratifs, artisanat d'art", "type": "bf:ClassificationDdc", "classificationPortion": "740"}, {"name": "Jeux", "type": "bf:ClassificationDdc", "classificationPortion": "793"}], "variant_access_point": ["Feuilles de vacoa tressées", "Feuilles de vaquois tressées", "Objets en feuilles de vacoa", "Objets en feuilles de vaquois", "Ouvrages en feuilles de vacoa", "Ouvrages en feuilles de vaquois", "Travail des feuilles de vacoa", "Tressage des feuilles de vacoa", "Tressage des feuilles de vaquois"], "authorized_access_point": "Travail des feuilles de vaquois"} 1 +2024-09-10 15:43:28.058012 2024-09-10 15:43:28.058015 68c3d3fa-3c55-4c43-9fbf-9055b9dc4c8c {"md5": "9e921a719f8d5e893ce3f9140ca68280", "pid": "27903492X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Artistes africains"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/27903492X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/27903492X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18152251d", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18152251", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "305"}, {"name": "Ethnologie, anthropologie, folklore", "type": "bf:ClassificationDdc", "classificationPortion": "390"}, {"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "authorized_access_point": "Musiciens africains"} 1 +2024-09-10 15:43:28.132888 2024-09-10 15:43:28.132893 5b340812-7a0b-4af0-92ed-f709f3b383b3 {"md5": "b259cb236e90c0f31b5a7f9f4b6cbbed", "pid": "279034946", "note": [{"label": ["Sous cette vedette, obligatoirement suivie d'une subdivision géographique ou de la subdivision : À l'étranger, directement ou après une subdivision de sujet, on trouve les documents sur les viticulteurs italiens hors d'Italie. Les documents sur les viticulteurs italiens en Italie se trouvent sous des vedettes-matière telles que : Viticulteurs -- Italie ; Viticulteurs -- [Subdivision de sujet] -- Italie ; etc"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Italiens"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279034946", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279034946", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181525308", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18152530", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "305"}, {"name": "Economie", "type": "bf:ClassificationDdc", "classificationPortion": "330"}, {"name": "Ethnologie, anthropologie, folklore", "type": "bf:ClassificationDdc", "classificationPortion": "390"}, {"name": "Agriculture, élevage", "type": "bf:ClassificationDdc", "classificationPortion": "630"}], "authorized_access_point": "Viticulteurs italiens"} 1 +2024-09-10 15:43:28.211065 2024-09-10 15:43:28.211069 ad7604ef-fd06-4897-8219-226d92ff9a0d {"md5": "93a83fa41d09d525664b21a8a6fd40bf", "pid": "279034962", "note": [{"label": ["Étude de la co-exposition aux contraintes physiques et aux produits chimiques neurotoxiques chez les salariés des Pays de la Loire [in] Archives des maladies professionnelles et de l'environnement, 2014, 75, 4", "Risques liés à la co-exposition bruit et substances chimiques ototoxiques / C. Dematteo, T. Kerebel, A.-H. Liebert, 2005 [rapport]", "Multi-exposition en milieu urbain : approche multi-échelle de l'exposition humaine au bruit et à la pollution atmosphérique / Q. Tenailleau, 2014 [thèse]", "Polyexpositions - https://www.inrs.fr (2024-06-14)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Polluants"}, {"authorized_access_point": "Pollution"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279034962", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279034962", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18152715x", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18152715", "source": "BNF"}], "classification": [{"name": "Sciences de la vie", "type": "bf:ClassificationDdc", "classificationPortion": "570"}], "variant_access_point": ["Coexposition", "Exposition à de multiples polluants", "Exposition combinée", "Exposition conjointe", "Exposition multi-agents", "Exposition multiple", "Multi-exposition", "Multiexposition", "Poly-exposition", "Polyexposition"], "authorized_access_point": "Co-exposition"} 1 +2024-09-10 15:43:28.287003 2024-09-10 15:43:28.287007 c0e91599-891e-4671-ad42-49679c415771 {"md5": "861b60000cece04c4cd7b532ab144f79", "pid": "279034970", "note": [{"label": ["Dict. de l'Académie de médecine - https://www.academie-medecine.fr/le-dictionnaire (2024-06-14)", "Le nouveau dict. médical, 2018", "Élastopathies et atteintes vasculaires / A. Rossi, M. Frank, E. Messas [in] EMC. Angéiologie, 2016, 11, 1", "L'invalidation du gène de la fibuline-5 induit une élastinopathie / M.-P. Jacob [in] Médecine/sciences, 2003, 19, 4"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tissu conjonctif - Maladies"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279034970", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279034970", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181527435", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18152743", "source": "BNF"}], "classification": [{"name": "Sciences médicales et paramédicales", "type": "bf:ClassificationDdc", "classificationPortion": "610"}], "variant_access_point": ["Élastinopathies", "Maladies du tissu élastique", "Tissu élastique (histologie) - Maladies"], "authorized_access_point": "Élastopathies"} 1 +2024-09-10 15:43:28.359888 2024-09-10 15:43:28.359892 5cccc491-6578-469d-8cb9-5fd0cd2947fc {"md5": "73ec9867ea9ad8975113def80a83925f", "pid": "279034997", "note": [{"label": ["GBIF - https://www.gbif.org/species (2024-06-17)", "NCBI - https://www.ncbi.nlm.nih.gov/Taxonomy (2024-06-17)", "Field guide to the micro-moths of Great Britain and Ireland / P. Sterling, M. Parsons, 2023", "British moths : a photographic guide to the moths of Britain and Ireland / C. Manley, 2015"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Lépidoptères"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279034997", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279034997", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18152978c", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18152978", "source": "BNF"}], "classification": [{"name": "Zoologie", "type": "bf:ClassificationDdc", "classificationPortion": "590"}], "variant_access_point": ["Ochsenheimeriidae", "Ypsolophinae"], "authorized_access_point": "Ypsolophidae"} 1 +2024-09-10 15:43:28.426948 2024-09-10 15:43:28.426952 3dd0f905-5eb0-45e3-892a-75c87648853d {"md5": "46eb08121fc53e202ba746c202925619", "pid": "279035020", "note": [{"label": ["NCBI - https://www.ncbi.nlm.nih.gov/Taxonomy (2024-06-17)", "GBIF - https://www.gbif.org/species (2024-06-17)", "Aphids on the world's herbaceous plants and shrubs / R. L. Blackman, V. F. Eastop, 2006"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Aphididés"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Rhopalosiphum padi"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "https://id.loc.gov/authorities/subjects/sh85113791", "source": "LCSH"}], "authorized_access_point": "Rhopalosiphum"}, {"source": "RVMLaval", "authorized_access_point": "Rhopalosiphum"}], "identifier": "http://www.idref.fr/279035020", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279035020", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18153059v", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18153059", "source": "BNF"}], "classification": [{"name": "Zoologie", "type": "bf:ClassificationDdc", "classificationPortion": "590"}], "authorized_access_point": "Rhopalosiphum"} 1 +2024-09-10 15:43:28.495782 2024-09-10 15:43:28.495787 4d5af691-68c3-45ac-ad47-00235ee6241f {"md5": "0db8bc3cec075e24b4f02686962b317c", "pid": "279035063", "note": [{"label": ["La révolution arcade de SEGA : de 1945 à nos jours / K. Horowitz, 2020", "Jeux d'arcade pour le Web : de la conception à la réalisation avec JavaScript / F. Delobel, 2020", "Programmation des jeux d'arcade en C / D. Gruber, 1995", "Arcade : une histoire du jeu d'Arcade à travers les âges, volume 1, 2023"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les documents sur le matériel ainsi que sur les jeux eux-mêmes"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Jeux vidéo"}], "related": [{"authorized_access_point": "Salles d'arcades"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2009000044", "source": "LCSH"}], "authorized_access_point": "Video arcades"}, {"source": "RVMLaval", "authorized_access_point": "Jeux vidéo"}], "identifier": "http://www.idref.fr/279035063", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279035063", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181532749", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18153274", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}, {"name": "Jeux", "type": "bf:ClassificationDdc", "classificationPortion": "793"}], "variant_access_point": ["Bornes d'arcade", "Jeux vidéo d'arcade"], "authorized_access_point": "Arcade (jeux vidéo)"} 1 +2024-09-10 15:43:28.571601 2024-09-10 15:43:28.571605 2563a7ea-63c7-42e6-a73b-b3b72b5d6a6a {"md5": "67e750fca7e26e0286687467270b07bd", "pid": "279035071", "note": [{"label": ["Compositions artistiques et creatives avec DALL-E 3 / P. Rey, 2024", "Développer des applications avec GPT-4 et ChatGPT / M.-A. Blete, O. Caelen, 2024", "Grand lexique français de l'intelligence artificielle - https://datafranca.org (2024-06-18)", "Unlocking the secrets of prompt engineering / G. Mizrahi, 2024", "The quick guide to prompt engineering / I. Khan, 2024"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Intelligence artificielle"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279035071", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279035071", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18153302q", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18153302", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Ingénierie de requête", "Prompt engeneering"], "authorized_access_point": "Ingénierie de prompt"} 1 +2024-09-10 15:43:28.712049 2024-09-10 15:43:28.712053 92dbbf85-11dc-48d4-b553-c4ad3b2b8732 {"md5": "e1e72b75a368ba2782c0b6fb7139c775", "pid": "279035098", "note": [{"label": ["Trésor de la langue française", "Grand dict. encyclopédique Larousse"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Géomètres"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh90000849", "source": "LCSH"}], "authorized_access_point": "Women surveyors"}, {"source": "RVMLaval", "authorized_access_point": "Femmes géomètres"}], "identifier": "http://www.idref.fr/279035098", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279035098", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18153323p", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18153323", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "305"}, {"name": "Economie", "type": "bf:ClassificationDdc", "classificationPortion": "330"}, {"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "variant_access_point": ["Arpenteures géométres", "Géomètres expertes"], "authorized_access_point": "Femmes géométres"} 1 +2024-09-10 15:43:28.779365 2024-09-10 15:43:28.779369 3a74fa3d-2bf9-4393-b9ae-525d9a110f4f {"md5": "5597107ae10db4904d8ce270944ca255", "pid": "279035101", "note": [{"label": ["Trésor de la langue française (art. : Tuile)", "Grand dict. encyclopédique Larousse (art. : Vernisser)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tuiles"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279035101", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279035101", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18153329r", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18153329", "source": "BNF"}], "classification": [{"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}, {"name": "Bâtiment", "type": "bf:ClassificationDdc", "classificationPortion": "690"}], "authorized_access_point": "Tuiles vernissées"} 1 +2024-09-10 15:43:28.854961 2024-09-10 15:43:28.854966 deedbb66-4878-4a34-a951-d113c5d366d9 {"md5": "26a69ea3b0cbcc310880f75fc91688dd", "pid": "279035144", "note": [{"label": ["ISO : organisation internationale de normalisation - https://www.iso.org (2024-06-20)", "Afnor normalisation - https://normalisation.afnor.org (2024-06-20)", "Déploiement de la connectique sécurisée NRFit® au CHU de Tours : état des lieux, difficultés et alternatives envisagées / J. Michelat, 2023 [thèse]"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Dispositifs médicaux implantables"}, {"authorized_access_point": "Raccords (technologie)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279035144", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279035144", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181537484", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18153748", "source": "BNF"}], "classification": [{"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "variant_access_point": ["Norme ISO 80369-1", "Norme ISO 80369-6", "NRFit"], "authorized_access_point": "Norme ISO 80369"} 1 +2024-09-10 15:43:28.919037 2024-09-10 15:43:28.919042 71ec8a33-e4ec-4278-9e4e-30913134e897 {"md5": "e64a8edee603f5974623d2c300f6e91b", "pid": "279035241", "note": [{"label": ["LC online cat., 2024-06-22 : Ukrainian Canadian women"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Canadiens d'origine ukrainienne"}], "related": [{"authorized_access_point": "Ukrainiennes"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Canadiennes d'origine ukrainienne"}], "identifier": "http://www.idref.fr/279035241", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279035241", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18154151m", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18154151", "source": "BNF"}], "classification": [{"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}, {"type": "bf:ClassificationDdc", "classificationPortion": "305"}, {"name": "Ethnologie, anthropologie, folklore", "type": "bf:ClassificationDdc", "classificationPortion": "390"}], "variant_access_point": ["Canadiens d'origine ukrainienne - Femmes"], "authorized_access_point": "Canadiennes d'origine ukrainienne"} 1 +2024-09-10 15:43:28.996006 2024-09-10 15:43:28.99601 270dab51-dc09-48e6-b4f2-6f6070f4691c {"md5": "924bbc04faca1432fe3143dbfeaceca7", "pid": "027233960", "note": [{"label": ["L'amour qui ose dire son nom : art et homosexualité / D. Fernandez, 2001", "The sexual perspective : homosexuality and art in the last 100 years in the West / E. Cooper, 1994"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Art"}, {"authorized_access_point": "Artistes homosexuels"}, {"authorized_access_point": "Homoérotisme"}, {"authorized_access_point": "Homosexualité"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Homosexualité et architecture"}, {"authorized_access_point": "Homosexualité et mode"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85061787", "source": "LCSH"}], "authorized_access_point": "Homosexuality and art"}, {"source": "RVMLaval", "authorized_access_point": "Homosexualité et art"}], "identifier": "http://www.idref.fr/027233960", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027233960", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11932036z", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11932036", "source": "BNF"}], "classification": [{"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}, {"name": "Arts", "type": "bf:ClassificationDdc", "classificationPortion": "700"}], "variant_access_point": ["Art et homosexualité"], "authorized_access_point": "Homosexualité et art"} 1 +2024-09-10 15:43:29.064091 2024-09-10 15:43:29.064098 70980555-6ee6-494e-a2bc-6e1b24fe696b {"md5": "f3a81b9eb38208fb9a141a93be1d7d3f", "pid": "027238431", "note": [{"label": ["Grand Larousse universel", "Petit Robert 1, 1993"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, obligatoirement suivie d'une subdivision géographique ou de la subdivision : À l'étranger, directement ou après une subdivision de sujet, on trouve les documents sur les Malgaches hors de Madagascar. Les documents sur les Malgaches à Madagascar se trouvent sous des vedettes-matière telles que : Madagascar -- Moeurs et coutumes ; etc"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ethnologie - Madagascar"}], "related": [{"authorized_access_point": "Madagascar"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Écrivains malgaches"}, {"authorized_access_point": "Femmes malgaches"}, {"authorized_access_point": "Militaires malgaches"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Malgaches"}], "identifier": "http://www.idref.fr/027238431", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027238431", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119324064", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11932406", "source": "BNF"}], "classification": [{"name": "Ethnologie", "type": "bf:ClassificationDdc", "classificationPortion": "390"}], "authorized_access_point": "Malgaches"} 1 +2024-09-10 15:43:29.132476 2024-09-10 15:43:29.132481 bea53332-4ad0-467e-9da4-57cb8f18a94d {"md5": "24a79d4dad0d73192c31b52619128608", "pid": "027248720", "note": [{"label": ["Grand Larousse universel", "Grand Robert de la langue française, 2001"], "noteType": "dataSource"}, {"label": ["S'emploie également en subdivision. Cette subdivision s'applique aux catégories de personnes, groupes ethniques et personnes"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Assistance sexuelle aux handicapés"}, {"authorized_access_point": "Communisme et sexualité"}, {"authorized_access_point": "Éducation sexuelle"}, {"authorized_access_point": "Érotisme"}, {"authorized_access_point": "Fascisme et sexualité"}, {"authorized_access_point": "Géographie des sexualités"}, {"authorized_access_point": "Industries du sexe"}, {"authorized_access_point": "Minorités sexuelles"}, {"authorized_access_point": "Musique et sexualité"}, {"authorized_access_point": "National-socialisme et sexualité"}, {"authorized_access_point": "Objets érotiques"}, {"authorized_access_point": "Relations amoureuses"}, {"authorized_access_point": "Sexologie"}, {"authorized_access_point": "Sexualité (biologie)"}, {"authorized_access_point": "Sexualité (psychologie)"}, {"authorized_access_point": "Sexualité - Aspect symbolique"}, {"authorized_access_point": "Sexualité - Dans la littérature"}, {"authorized_access_point": "Sexualité - Droit"}, {"authorized_access_point": "Sexualité - Religion"}, {"authorized_access_point": "Sexualité dans les arts du spectacle"}, {"authorized_access_point": "Sorcellerie et sexualité"}, {"authorized_access_point": "Sports et sexualité"}, {"authorized_access_point": "Vie sexuelle"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Abstinence sexuelle"}, {"authorized_access_point": "Adolescents - Sexualité"}, {"authorized_access_point": "Alcooliques - Sexualité"}, {"authorized_access_point": "Asexualité"}, {"authorized_access_point": "Comportement sexuel des animaux"}, {"authorized_access_point": "Consentement sexuel"}, {"authorized_access_point": "Cybersexe"}, {"authorized_access_point": "Enfants - Sexualité"}, {"authorized_access_point": "Exhibitionnisme"}, {"authorized_access_point": "Hétérosexualité"}, {"authorized_access_point": "Homosexualité"}, {"authorized_access_point": "Hygiène sexuelle"}, {"authorized_access_point": "Instinct sexuel"}, {"authorized_access_point": "Masturbation"}, {"authorized_access_point": "Paraplégiques - Sexualité"}, {"authorized_access_point": "Perversion sexuelle"}, {"authorized_access_point": "Polyamour"}, {"authorized_access_point": "Prisonniers - Sexualité"}, {"authorized_access_point": "Relations sexuelles"}, {"authorized_access_point": "Sexualité dans le mariage"}, {"authorized_access_point": "Sexualité dans les rêves"}, {"authorized_access_point": "Sexualité de groupe"}, {"authorized_access_point": "Sexualité féminine"}, {"authorized_access_point": "Sexualité masculine"}, {"authorized_access_point": "Sexualité prémaritale"}, {"authorized_access_point": "Travestisme"}, {"authorized_access_point": "Troubles sexuels"}, {"authorized_access_point": "Voyeurisme"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85120549", "source": "LCSH"}], "authorized_access_point": "Sex"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2001008764", "source": "LCSH"}], "authorized_access_point": "Sexual behavior"}, {"source": "RVMLaval", "authorized_access_point": "Sexualité"}], "identifier": "http://www.idref.fr/027248720", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027248720", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11933266p", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11933266", "source": "BNF"}], "relation_pid": {"type": "redirect_from", "value": "02864297X"}, "classification": [{"name": "Psychologie, psychanalyse", "type": "bf:ClassificationDdc", "classificationPortion": "150"}, {"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}], "variant_access_point": ["Comportement sexuel", "Pratiques sexuelles", "Sexe", "Sexualité humaine"], "authorized_access_point": "Sexualité"} 1 +2024-09-10 15:43:29.202182 2024-09-10 15:43:29.202185 9297ab68-f39e-4fe4-9f0d-cea38ba816b9 {"md5": "69b6d080f74b7ee08cbd91d1d9666a94", "pid": "027255522", "note": [{"label": ["Nouveau petit Robert 2010", "Nouveau Littré 2006", "Trésor de la langue française"], "noteType": "dataSource"}, {"label": ["Voir aussi les vedettes du type Verrerie [adjectif de civilisation, ethnique, de nationalité ou d'origine géographique]"], "noteType": "seeReference"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Art du verre"}], "related": [{"authorized_access_point": "Marques de verriers"}, {"authorized_access_point": "Verre - Fabrication"}, {"authorized_access_point": "Verre - Industrie et commerce"}, {"authorized_access_point": "Verreries"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Bijoux en verre"}, {"authorized_access_point": "Boules à neige"}, {"authorized_access_point": "Bouteilles à sujet"}, {"authorized_access_point": "Clochettes en verre"}, {"authorized_access_point": "Cristallerie"}, {"authorized_access_point": "Fleurs en verre"}, {"authorized_access_point": "Meubles en verre"}, {"authorized_access_point": "Millefiori"}, {"authorized_access_point": "Opaline"}, {"authorized_access_point": "Ouraline"}, {"authorized_access_point": "Perles en verre"}, {"authorized_access_point": "Presse-papiers"}, {"authorized_access_point": "Sulfures (verrerie)"}, {"authorized_access_point": "Verre camée"}, {"authorized_access_point": "Verrerie antique"}, {"authorized_access_point": "Verrerie de la Renaissance"}, {"authorized_access_point": "Verrerie de Murano"}, {"authorized_access_point": "Verrerie médiévale"}, {"authorized_access_point": "Verrerie préhistorique"}, {"authorized_access_point": "Verres filés"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85055188", "source": "LCSH"}], "authorized_access_point": "Glassware"}, {"source": "RVMLaval", "authorized_access_point": "Verrerie"}], "identifier": "http://www.idref.fr/027255522", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027255522", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119337751", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11933775", "source": "BNF"}], "classification": [{"name": "Arts plastiques, sculpture", "type": "bf:ClassificationDdc", "classificationPortion": "730"}, {"name": "Dessin, arts décoratifs, artisanat d'art", "type": "bf:ClassificationDdc", "classificationPortion": "740"}], "variant_access_point": ["Objets en verre", "Verre, Objets en", "Verroterie"], "authorized_access_point": "Verrerie"} 1 +2024-09-10 15:43:29.269731 2024-09-10 15:43:29.269734 bd35009c-37ef-4c79-9863-5d01bce8e8a6 {"md5": "984a402d49f44d71a418761961eb6bae", "pid": "027258556", "note": [{"label": ["Grand Larousse universel", "Encycl. universalis - http://www.universalis-edu.com (2008-09-04)", "Dict. des sciences humaines / S. Mesure, P. Savidan, 2006"], "noteType": "dataSource"}, {"label": ["S'emploie également en subdivision", "Aux personnes, cette subdivision s'emploie également pour des études généalogiques. Dans ce cas, établir une vedette-matière additionnelle au nom de la famille"], "noteType": "general"}, {"label": ["Voir aussi les vedettes du type Familles [adjectif ethnique], par ex. : Familles juives"], "noteType": "seeReference"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Institutions sociales"}], "related": [{"authorized_access_point": "Archives familiales"}, {"authorized_access_point": "Bibliothèques et famille"}, {"authorized_access_point": "Démographie de la famille"}, {"authorized_access_point": "Entraide familiale"}, {"authorized_access_point": "Entreprises familiales"}, {"authorized_access_point": "Famille - Anthropologie"}, {"authorized_access_point": "Famille - Loisirs"}, {"authorized_access_point": "Famille - Vie religieuse"}, {"authorized_access_point": "Famille et école"}, {"authorized_access_point": "Family office"}, {"authorized_access_point": "Fêtes de famille"}, {"authorized_access_point": "Formation parentale"}, {"authorized_access_point": "Généalogie"}, {"authorized_access_point": "Mariage"}, {"authorized_access_point": "Médias et famille"}, {"authorized_access_point": "Médiation familiale"}, {"authorized_access_point": "Ménages"}, {"authorized_access_point": "Ordinateurs et famille"}, {"authorized_access_point": "Parenté"}, {"authorized_access_point": "Pastorale des familles"}, {"authorized_access_point": "Politique familiale"}, {"authorized_access_point": "Relations famille-malade"}, {"authorized_access_point": "Relations personnel médical-famille"}, {"authorized_access_point": "Secrets de famille"}, {"authorized_access_point": "Service social familial"}, {"authorized_access_point": "Travail et famille"}, {"authorized_access_point": "Vie domestique"}, {"authorized_access_point": "Photographie de famille"}, {"authorized_access_point": "Roman familial (littérature)"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Arrière-grands-parents"}, {"authorized_access_point": "Brus"}, {"authorized_access_point": "Chefs de famille"}, {"authorized_access_point": "Éducation familiale"}, {"authorized_access_point": "Enfants"}, {"authorized_access_point": "Famille inadaptée"}, {"authorized_access_point": "Famille monoparentale"}, {"authorized_access_point": "Famille recomposée"}, {"authorized_access_point": "Famille rurale"}, {"authorized_access_point": "Familles à double carrière"}, {"authorized_access_point": "Familles choisies"}, {"authorized_access_point": "Familles d'accueil"}, {"authorized_access_point": "Familles immigrées"}, {"authorized_access_point": "Familles issues de maisons royales"}, {"authorized_access_point": "Familles mixtes"}, {"authorized_access_point": "Familles ouvrières"}, {"authorized_access_point": "Familles transnationales"}, {"authorized_access_point": "Frères et soeurs"}, {"authorized_access_point": "Gendres"}, {"authorized_access_point": "Grands-parents"}, {"authorized_access_point": "Grands-parents et enfants"}, {"authorized_access_point": "Maisons royales"}, {"authorized_access_point": "Oncles"}, {"authorized_access_point": "Parents"}, {"authorized_access_point": "Parents et enfants"}, {"authorized_access_point": "Rang de naissance"}, {"authorized_access_point": "Structure familiale"}, {"authorized_access_point": "Tantes"}, {"authorized_access_point": "Violence familiale"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh00005743", "source": "LCSH"}], "authorized_access_point": "Family"}, {"source": "RVMLaval", "authorized_access_point": "Famille"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh99005369", "source": "LCSH"}], "authorized_access_point": "Family relationships"}, {"source": "RVMLaval", "authorized_access_point": "Relations familiales"}], "identifier": "http://www.idref.fr/027258556", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027258556", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119339867", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11933986", "source": "BNF"}], "classification": [{"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}], "variant_access_point": ["Cellule familiale", "Et la famille", "Vie familiale", "Et les relations familiales", "Famille - Aspect social", "Famille - Conditions sociales", "Famille nucléaire", "Liens familiaux", "Milieu familial", "Parents (membres d'une famille)", "Relations familiales"], "authorized_access_point": "Famille"} 1 +2024-09-10 15:43:29.338044 2024-09-10 15:43:29.338048 4a5b0a4c-1422-4798-a18e-879e23542475 {"md5": "4d266ba958fba3ca6bb146271671a1d3", "pid": "027266273", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Femmes"}, {"authorized_access_point": "Travailleurs du sexe"}], "related": [{"authorized_access_point": "Enfants de prostituées"}, {"authorized_access_point": "Ex-prostituées"}, {"authorized_access_point": "Prostitution"}, {"authorized_access_point": "Proxénètes"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Courtisanes"}, {"authorized_access_point": "Enfants prostitués"}, {"authorized_access_point": "Escorts"}, {"authorized_access_point": "Femmes de réconfort"}, {"authorized_access_point": "Pastorale des prostituées"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85107622", "source": "LCSH"}], "authorized_access_point": "Prostitutes"}, {"source": "RVMLaval", "authorized_access_point": "Prostituées"}], "identifier": "http://www.idref.fr/027266273", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027266273", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119345495", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11934549", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "305"}, {"name": "Problèmes et services sociaux", "type": "bf:ClassificationDdc", "classificationPortion": "360"}], "variant_access_point": ["Femmes prostituées", "Prostituées féminines", "Prostitués féminins", "Prostitution féminine"], "authorized_access_point": "Prostituées"} 1 +2024-09-10 15:43:29.405962 2024-09-10 15:43:29.405966 f807a53a-6295-499a-882b-9fdab7a9bb8f {"md5": "fe2aec524df4c254d3352293b188e8f3", "pid": "027314073", "note": [{"label": ["Grand Larousse universel", "Grand Robert de la langue française, 2001", "Robert des sports : dict. de la langue des sports / G. Petiot, 1982 (art. : Record)"], "noteType": "dataSource"}, {"label": ["S'emploie également en subdivision"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Performance (sports)"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Jeux olympiques - Records"}, {"authorized_access_point": "Records de vitesse"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85126900", "source": "LCSH"}], "authorized_access_point": "Sports records"}, {"source": "RVMLaval", "authorized_access_point": "Sports--Records"}], "identifier": "http://www.idref.fr/027314073", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027314073", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119383336", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11938333", "source": "BNF"}], "classification": [{"name": "Jeux", "type": "bf:ClassificationDdc", "classificationPortion": "793"}], "variant_access_point": ["Records", "Records (sports)", "Records mondiaux", "Sports - Records"], "authorized_access_point": "Records sportifs"} 1 +2024-09-10 15:43:29.484415 2024-09-10 15:43:29.484421 aeea38ef-bc15-4ec7-9021-0dd45d202384 {"md5": "cb4b88b54a11e0faa90026ca967dabd4", "pid": "027361705", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Hommes"}, {"authorized_access_point": "Travailleurs du sexe"}], "related": [{"authorized_access_point": "Prostitution"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Escorts"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85107630", "source": "LCSH"}], "authorized_access_point": "Male prostitutes"}, {"source": "RVMLaval", "authorized_access_point": "Prostitués"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85107630", "source": "LCSH"}], "authorized_access_point": "Male Prostitution"}, {"source": "RVMLaval", "authorized_access_point": "Prostitution masculine"}], "identifier": "http://www.idref.fr/027361705", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027361705", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119420098", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11942009", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "305"}, {"name": "Problèmes et services sociaux", "type": "bf:ClassificationDdc", "classificationPortion": "360"}], "variant_access_point": ["Prostitution masculine", "Prostitués masculins", "Prostitués mâles"], "authorized_access_point": "Prostitués"} 1 +2024-09-10 15:43:29.551801 2024-09-10 15:43:29.551806 742f7b44-523f-43c1-ae33-bb2dd04f8772 {"md5": "b4debc6062672079b528be5d36fd3f33", "pid": "027390349", "note": [{"label": ["Garnier DTTM, 1992"], "noteType": "dataSource"}, {"label": ["Voir aussi la subdivision Tomographie [+ subd géogr.] aux maladies, parties du corps"], "noteType": "seeReference"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Imagerie pour le diagnostic"}], "related": [{"authorized_access_point": "Tomographie"}, {"authorized_access_point": "Scanographes"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Scanographie en médecine vétérinaire"}, {"authorized_access_point": "Scanographie en pédiatrie"}, {"authorized_access_point": "Scanographie hélicoïdale"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Scanographie"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh00006372", "source": "LCSH"}], "authorized_access_point": "Tomography"}], "identifier": "http://www.idref.fr/027390349", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027390349", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11944283q", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11944283", "source": "BNF"}], "relation_pid": {"type": "redirect_from", "value": "241357721"}, "classification": [{"name": "Sciences médicales et paramédicales", "type": "bf:ClassificationDdc", "classificationPortion": "610"}], "variant_access_point": ["Tomodensitométrie", "Tomographie axiale", "Tomographie informatisée"], "authorized_access_point": "Scanographie"} 1 +2024-09-10 15:43:29.619596 2024-09-10 15:43:29.619602 e4fbc9d5-84da-432d-ac24-409d40b650c4 {"md5": "5b3e4b2d6e0326a95ab79c50dfd34ffe", "pid": "02741664X", "note": [{"label": ["Les politiques linguistiques / L.-J. Calvet, 1996", "L'idée de politique linguistique : actes du colloque du 18 décembre 2008 organisé à l'École normale supérieure / Société française de terminologie, 2009", "Politique linguistique : faits et théorie / N. Halaoui, 2011"], "noteType": "dataSource"}, {"label": ["S'emploie également en subdivision"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Langues - Aspect politique"}, {"authorized_access_point": "Politique culturelle"}, {"authorized_access_point": "Politique de la communication"}], "related": [{"authorized_access_point": "Diffusion des langues"}, {"authorized_access_point": "Discrimination linguistique"}, {"authorized_access_point": "Écologie des langues"}, {"authorized_access_point": "Langues - Droit"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Monolinguisme"}, {"authorized_access_point": "Alphabétisation"}, {"authorized_access_point": "Cadre européen commun de référence en langue"}, {"authorized_access_point": "Féminisation (linguistique)"}, {"authorized_access_point": "Francophonie"}, {"authorized_access_point": "Langue d'enseignement"}, {"authorized_access_point": "Langue de travail"}, {"authorized_access_point": "Langue universelle"}, {"authorized_access_point": "Normalisation linguistique"}, {"authorized_access_point": "Organisations internationales - Politique linguistique"}, {"authorized_access_point": "Orthographe - Réforme"}, {"authorized_access_point": "Préservation des langues"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Politique linguistique"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85074563", "source": "LCSH"}], "authorized_access_point": "Language planning"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85074564", "source": "LCSH"}], "authorized_access_point": "Language policy"}], "identifier": "http://www.idref.fr/02741664X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02741664X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11946264x", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11946264", "source": "BNF"}], "classification": [{"name": "Administration publique", "type": "bf:ClassificationDdc", "classificationPortion": "350"}, {"type": "bf:ClassificationDdc", "classificationPortion": "401"}], "variant_access_point": ["Action linguistique", "Aménagement linguistique", "État et langues", "Glottopolitique", "Langues - Planification", "Langues - Politique publique", "Langues et État", "Langues et nationalisme", "Langues et politique", "Langues nationales", "Langues officielles", "Nationalisme et langues", "Planification linguistique", "Politique de la langue", "Politique et langues"], "authorized_access_point": "Politique linguistique"} 1 +2024-09-10 15:43:29.686887 2024-09-10 15:43:29.686892 6a0a720d-71b5-4815-9fcf-2c4d9d312bc6 {"md5": "3a31172f50a2a19693b27343c342c87b", "pid": "027802973", "note": [{"label": ["Grand Larousse universel", "Grand Robert de la langue française, 2001"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Constructions commerciales"}], "related": [{"authorized_access_point": "Centres commerciaux"}, {"authorized_access_point": "Commerçants"}, {"authorized_access_point": "Commerce de détail"}, {"authorized_access_point": "Coopératives de consommation"}, {"authorized_access_point": "Entreprises à succursales"}, {"authorized_access_point": "Magasins - Façades"}, {"authorized_access_point": "Magasins - Horaires et jours d'ouverture"}, {"authorized_access_point": "Magasins - Localisation"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Dépôts-ventes"}, {"authorized_access_point": "Grands magasins"}, {"authorized_access_point": "Magasins d'usine"}, {"authorized_access_point": "Magasins de centre-ville"}, {"authorized_access_point": "Magasins discount"}, {"authorized_access_point": "Magasins en libre-service"}, {"authorized_access_point": "Magasins éphémères"}, {"authorized_access_point": "Magasins populaires"}, {"authorized_access_point": "Magasins spécialisés"}, {"authorized_access_point": "Petits commerces"}, {"authorized_access_point": "Rayons de magasin"}, {"authorized_access_point": "Sex-shops"}, {"authorized_access_point": "Tabernae"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85128377", "source": "LCSH"}], "authorized_access_point": "Stores, Retail"}, {"source": "RVMLaval", "authorized_access_point": "Magasins"}], "identifier": "http://www.idref.fr/027802973", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027802973", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119766650", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11976665", "source": "BNF"}], "classification": [{"name": "Economie", "type": "bf:ClassificationDdc", "classificationPortion": "330"}, {"name": "Bâtiment", "type": "bf:ClassificationDdc", "classificationPortion": "690"}], "variant_access_point": ["Boutiques", "Commerces", "Établissements commerciaux", "Magasins de détail", "Magasins de vente au détail"], "authorized_access_point": "Magasins"} 1 +2024-09-10 15:43:29.752868 2024-09-10 15:43:29.752873 94ad98bd-2ad5-449c-8cd5-25e73a73e276 {"md5": "1a105487a5d60f06fa7fd3b5790f9b92", "pid": "027824586", "note": [{"label": ["Dict. de l'Académie de médecine - http://dictionnaire.academie-medecine.fr (2013-07-17)", "Dict. de médecine Flammarion, 2008", "Dict. français de médecine et de biologie, 1981", "Dict. illustré des termes de médecine, 2008 : glycogénique (maladie)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Maladies héréditaires métaboliques"}, {"authorized_access_point": "Troubles du métabolisme des glucides"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Maladie de McArdle"}, {"authorized_access_point": "Maladie de Pompe"}, {"authorized_access_point": "Maladie de von Gierke"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85055399", "source": "LCSH"}], "authorized_access_point": "Glycogen storage disease"}, {"source": "MeSH", "identifiedBy": [{"type": "uri", "value": "http://id.nlm.nih.gov/mesh/M0009469", "source": "MeSH"}], "authorized_access_point": "Glycogen Storage Disease"}, {"source": "RVMLaval", "authorized_access_point": "Glycogénose"}], "identifier": "http://www.idref.fr/027824586", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027824586", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11978325d", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11978325", "source": "BNF"}], "classification": [{"name": "Sciences médicales et paramédicales", "type": "bf:ClassificationDdc", "classificationPortion": "610"}], "variant_access_point": ["Glycogen storage diseases", "Glycogénose", "GSD (maladies)", "Maladies glycogéniques", "Polycories glycogéniques"], "authorized_access_point": "Glycogénoses"} 1 +2024-09-10 15:43:29.81979 2024-09-10 15:43:29.819794 92bb87d4-313e-424c-9254-2a0007437b8e {"md5": "66815ce82e026b73fd7707d9f2cf0225", "pid": "027855929", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Droit canonique"}, {"authorized_access_point": "Église catholique - Finances"}], "related": [{"authorized_access_point": "Messe"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85081908", "source": "LCSH"}], "authorized_access_point": "Mass stipends"}, {"source": "RVMLaval", "authorized_access_point": "Honoraires de messe"}], "identifier": "http://www.idref.fr/027855929", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027855929", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11980818s", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11980818", "source": "BNF"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}], "variant_access_point": ["Offrandes de messe"], "authorized_access_point": "Honoraires de messe"} 1 +2024-09-10 15:43:29.882944 2024-09-10 15:43:29.882948 a33db7f4-9b90-42ec-afbc-a519a5bc9b10 {"md5": "a82d7a4dff389ed146ab9c3595b6c361", "pid": "028205847", "note": [{"label": ["Ensemble des activités économiques et financières ayant pour objet les transactions, les échanges, etc", "S'emploie également en subdivision"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Économie politique"}], "related": [{"authorized_access_point": "Astrologie et affaires"}, {"authorized_access_point": "Commerce"}, {"authorized_access_point": "Gestion"}, {"authorized_access_point": "Gestion d'entreprise"}, {"authorized_access_point": "Médias et affaires"}, {"authorized_access_point": "Prostitution et affaires"}, {"authorized_access_point": "Quartiers d'affaires"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Banques d'affaires"}, {"authorized_access_point": "Comptabilité"}, {"authorized_access_point": "Créativité dans les affaires"}, {"authorized_access_point": "Droit des affaires"}, {"authorized_access_point": "Entrepreneuriat"}, {"authorized_access_point": "Entreprises"}, {"authorized_access_point": "Éthique des affaires"}, {"authorized_access_point": "Femmes d'affaires"}, {"authorized_access_point": "Finances"}, {"authorized_access_point": "Gestion budgétaire"}, {"authorized_access_point": "Goodwill"}, {"authorized_access_point": "Hommes d'affaires"}, {"authorized_access_point": "Immobilier"}, {"authorized_access_point": "Industries du sexe"}, {"authorized_access_point": "Langage commercial et des affaires"}, {"authorized_access_point": "Marchandisation"}, {"authorized_access_point": "Négociations (affaires)"}, {"authorized_access_point": "Profit"}, {"authorized_access_point": "Relations avec la clientèle"}, {"authorized_access_point": "Secteur privé"}, {"authorized_access_point": "Sociétés"}, {"authorized_access_point": "Succès dans les affaires"}, {"authorized_access_point": "Téléphone dans les affaires"}, {"authorized_access_point": "Tenue des livres"}, {"authorized_access_point": "Voyages d'affaires"}, {"authorized_access_point": "Publicité"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Affaires"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85018260", "source": "LCSH"}], "authorized_access_point": "Business"}], "identifier": "http://www.idref.fr/028205847", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028205847", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13319296w", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13319296", "source": "BNF"}], "classification": [{"name": "Economie", "type": "bf:ClassificationDdc", "classificationPortion": "330"}], "variant_access_point": ["Et les affaires"], "authorized_access_point": "Affaires"} 1 +2024-09-10 15:43:29.948319 2024-09-10 15:43:29.948322 df37545a-4731-493b-b66e-aff37a4afa2b {"md5": "f2fb0fc9722de5018452e9f4a2473872", "pid": "028221044", "note": [{"label": ["LCSH, 1991-12. - Laval RVM, 1992-02"], "noteType": "dataNotFound"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/028221044", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028221044", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12010061v", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12010061", "source": "BNF"}], "relation_pid": {"type": "redirect_from", "value": "14024994X"}, "authorized_access_point": "Conditions économiques - Afrique du Nord - 1960-...."} 1 +2024-09-10 15:43:30.011863 2024-09-10 15:43:30.011867 27bcd953-a1bf-46c1-ba6c-bd6834fc2bb6 {"md5": "387379e330b2211b4e2f66a1b8c7af0e", "pid": "028889347", "note": [{"label": ["S'emploie également en subdivision"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Enseignement"}], "related": [{"authorized_access_point": "Documents audiovisuels"}, {"authorized_access_point": "Documentation audiovisuelle"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Étude et enseignement -- Aides audiovisuelles"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2001009046", "source": "LCSH"}], "authorized_access_point": "Study and teaching--Audio-visual aids"}], "identifier": "http://www.idref.fr/028889347", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028889347", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12063139q", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12063139", "source": "BNF"}], "classification": [{"name": "Education et enseignement", "type": "bf:ClassificationDdc", "classificationPortion": "370"}], "variant_access_point": ["Enseignement - Méthodes audiovisuelles", "Étude et enseignement - Aides audiovisuelles", "Magnétophones dans l'enseignement", "Radio en éducation", "Radio scolaire", "Télévision en éducation", "Télévision scolaire", "Vidéo en éducation", "Vidéodisques en éducation"], "authorized_access_point": "Enseignement audiovisuel"} 1 +2024-09-10 15:43:35.278739 2024-09-10 15:43:35.278742 f7f54794-977a-4b69-980d-f02569574640 {"md5": "af91dd69c84d59917709b5a8e9bf03e3", "pid": "278747035", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Roman camerounais de langue française"}], "bnf_type": "genre/forme Rameau", "identifier": "http://www.idref.fr/278747035", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278747035", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18148765q", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18148765", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Roman familial francophone camerounais"], "authorized_access_point": "Roman familial camerounais de langue française"} 1 +2024-09-10 15:43:30.089268 2024-09-10 15:43:30.089272 4df86239-fb91-41d1-820e-51a769067775 {"md5": "e55bdea3eada5a18b8ef9beed8e7aea2", "pid": "028938615", "note": [{"label": ["Wikipédia : Industrie du sexe - http://fr.wikipedia.org (2011-09-02)", "La mondialisation des industries du sexe / R. Poulin, 2005", "L'industrie du sexe / D. Haddad, 1992"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Affaires"}], "related": [{"authorized_access_point": "Cybersexe"}, {"authorized_access_point": "Pornographie"}, {"authorized_access_point": "Sexualité"}, {"authorized_access_point": "Travailleurs du sexe"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Maisons de prostitution"}, {"authorized_access_point": "Prostitution"}, {"authorized_access_point": "Sex-shops"}, {"authorized_access_point": "Strip-tease"}, {"authorized_access_point": "Tourisme sexuel"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Industrie pornographique"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85120657", "source": "LCSH"}], "authorized_access_point": "Sex-oriented businesses"}], "identifier": "http://www.idref.fr/028938615", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028938615", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb120670727", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12067072", "source": "BNF"}], "classification": [{"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}, {"name": "Economie", "type": "bf:ClassificationDdc", "classificationPortion": "330"}], "variant_access_point": ["Sexe - Industrie et commerce", "Sexualité - Industrie et commerce", "Commerce pornographique", "Commerce sexuel", "Industrie du sexe", "Industrie pornographique", "Messageries roses", "Porno business", "Pornographie - Industrie et commerce", "Sex business"], "authorized_access_point": "Industries du sexe"} 1 +2024-09-10 15:43:30.170557 2024-09-10 15:43:30.170562 05f7dba6-336b-471d-b60a-e71d8ccaf4f2 {"md5": "5872283340e497ecd0230dac84562803", "pid": "031082599", "note": [{"label": ["Thesaurus international de la terminologie relative aux réfugiés / HCR-la Documentation française, 1992"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les documents sur les personnes nées à l'étranger entrées dans un pays dans l'intention de s'y établir, voire d'en devenir citoyens. Cette vedette peut être suivie d'une subdivision géographique qui indique le pays où les immigrés s'établissent. Pour préciser éventuellement l'origine géographique des immigrés, on établit une seconde vedette matière du type : [Nationalité] -- [Pays], par ex. : Irlandais -- États-Unis", "S'emploie également en subdivision"], "noteType": "general"}, {"label": ["Voir aussi la subdivision Participation des immigrés aux guerres"], "noteType": "seeReference"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Population"}], "related": [{"authorized_access_point": "Émigration et immigration"}, {"authorized_access_point": "Enfants d'immigrés"}, {"authorized_access_point": "Envois de fonds"}, {"authorized_access_point": "Étrangers"}, {"authorized_access_point": "Immigrés - Acculturation"}, {"authorized_access_point": "Internet et immigrés"}, {"authorized_access_point": "Participation des immigrés"}, {"authorized_access_point": "Pastorale des migrants"}, {"authorized_access_point": "Travailleurs étrangers"}, {"authorized_access_point": "Écrits d'immigrés"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Adolescents immigrés"}, {"authorized_access_point": "Bibliothèques et immigrés"}, {"authorized_access_point": "Diasporas"}, {"authorized_access_point": "Familles immigrées"}, {"authorized_access_point": "Immigrées"}, {"authorized_access_point": "Immigrés âgés"}, {"authorized_access_point": "Immigrés clandestins"}, {"authorized_access_point": "Immigrés dans l'industrie du cinéma"}, {"authorized_access_point": "Jeunes immigrés"}, {"authorized_access_point": "Service social auprès des immigrés"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Immigrants"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85064517", "source": "LCSH"}], "authorized_access_point": "Immigrants"}], "identifier": "http://www.idref.fr/031082599", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031082599", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb122368540", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12236854", "source": "BNF"}], "classification": [{"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}], "variant_access_point": ["Émigrants", "Et les émigrés", "Émigrés", "Et l'immigration", "Et les travailleurs étrangers", "Expatriés", "Immigrants", "Migrants", "Population d'origine étrangère"], "authorized_access_point": "Immigrés"} 1 +2024-09-10 15:43:30.241315 2024-09-10 15:43:30.241318 935bb9f6-1864-4151-b0c6-3e771e634abd {"md5": "decb1da49bf0505c76a537d2e2f1ef5f", "pid": "031955274", "note": [{"label": ["Grand Larousse universel", "Encycl. universalis (art. : Chalemie) : sahnāī (shahnāī, shehnāī) - http://www.universalis-edu.com (2011-02-15)", "Dict. de la musique / M. Honegger, 1976 (art. : Inde)", "Dict. de la musique / M. Vignal, 2005 (art. : Indienne (Musique)) : sahnaï", "Dict. des mots de la musique / J. Siron, 2006 : shahnāī", "Encycl. des instruments de musique / A. Buchner, 1980 : sahnaï", "Encycl. de la musique, 1992 : shenai", "Médiathèque de la Cité de la musique : sahnai - http://mediatheque.cite-musique.fr (2011-02-15)", "Dict. encyclopédique de la musique / D. Arnold, 1988 (art. : Inde ; Chalemie) : shahnaï ou sahnaï", "Oxford Music online : śahnāī - http://www.oxfordmusiconline.com (2011-02-15)", "Dict. général hindi-français / N. Balbir, 1992 : ś́ahnāī", "BnF Service indien, 2017-07-17"], "noteType": "dataSource"}, {"label": ["Inde du Nord, Pakistan, Bangladesh. Hautbois en feuille de palmier séchée, montée dans une petite base métallique conique insérée dans un tuyau en bois d'environ 50 cm avec 7 trous équidistants dans lequel est emboîté un pavillon métallique conique (facture pour la musique hindoustanie). Dans certaines traditions régionales, le tuyau et le pavillon ne forment qu'une seule pièce en bois ou en métal, le nombre de trous varie entre 6 et 8, et il y a parfois un trou pour le pouce"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Hautbois (famille d'instruments)"}, {"authorized_access_point": "Instruments de musique - Inde"}], "related": [{"authorized_access_point": "Sahanai (hautbois népalais)"}, {"authorized_access_point": "Shanāī, Musique de"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCMP", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/performanceMediums/mp2013015636", "source": "LCMP"}], "authorized_access_point": "Śahnāī"}, {"source": "RVMLaval", "authorized_access_point": "Shahnaï"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85121263", "source": "LCSH"}], "authorized_access_point": "Shehnai"}], "identifier": "http://www.idref.fr/031955274", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031955274", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb123075977", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12307597", "source": "BNF"}], "classification": [{"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "variant_access_point": ["Śahnāī", "Sahnaī", "Sahnai", "Shahnaï", "Shehnāī", "Shenai"], "authorized_access_point": "Shanāī (hautbois indien)"} 1 +2024-09-10 15:43:30.305863 2024-09-10 15:43:30.305868 eadab809-f9fc-453f-b125-312a2a188893 {"md5": "d488f044f437a5d2ce9167717cac244e", "pid": "03465500X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Enseignement - Méthodes actives"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Méthode Agazzi"}, {"authorized_access_point": "Pédagogie Germaine Tortel"}, {"authorized_access_point": "Tapis de lecture"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Éducation de la première enfance -- Méthodes actives"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh89003664", "source": "LCSH"}], "authorized_access_point": "Early childhood education--Activity programs"}], "identifier": "http://www.idref.fr/03465500X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03465500X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb125387672", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12538767", "source": "BNF"}], "classification": [{"name": "Education et enseignement", "type": "bf:ClassificationDdc", "classificationPortion": "370"}], "authorized_access_point": "Éducation de la première enfance - Méthodes actives"} 1 +2024-09-10 15:43:31.128621 2024-09-10 15:43:31.128626 c51a05e1-e316-4b09-a426-9838daa63c44 {"md5": "db2b6de1584758e66bbd934bc237a322", "pid": "273372777", "note": [{"label": ["Salmson : la belle mécanique française / C. et L. Chevalier, 2010", "Salmson register 1921-1930 / D. L. Hill, 2007", "The Salmson story : David & Charles / C. Draper, 1974"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Avions"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/273372777", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/273372777", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181130549", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18113054", "source": "BNF"}], "relation_pid": {"type": "redirect_from", "value": "272925985"}, "classification": [{"name": "Economie", "type": "bf:ClassificationDdc", "classificationPortion": "330"}, {"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "authorized_access_point": "Salmson (avions)"} 1 +2024-09-10 15:43:30.368305 2024-09-10 15:43:30.368309 5d3c1348-7749-4afd-a111-26e61501db25 {"md5": "58faa7a6cbb7fa6c407ea9c08f470903", "pid": "035141913", "note": [{"label": ["La géographie culturelle / Paul Claval, 1995", "Les mots de la géographie / Roger Brunet, 1992 (art. culture)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Culture"}, {"authorized_access_point": "Géographie humaine"}], "related": [{"authorized_access_point": "Études régionales"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Géographie des sexualités"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Géographie culturelle"}], "identifier": "http://www.idref.fr/035141913", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035141913", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb131699688", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13169968", "source": "BNF"}], "classification": [{"name": "Ethnologie, anthropologie, folklore", "type": "bf:ClassificationDdc", "classificationPortion": "390"}, {"name": "Géographie, tourisme (guides) et voyages", "type": "bf:ClassificationDdc", "classificationPortion": "910"}], "variant_access_point": ["Anthropogéographie"], "authorized_access_point": "Géographie culturelle"} 1 +2024-09-10 15:43:30.432071 2024-09-10 15:43:30.432074 b16e1ed0-0d6c-426d-a1c4-5e5132a3a905 {"md5": "46768379f222e6e251d15f4c018bdee7", "pid": "05058748X", "note": [{"label": ["Grand Larousse universel"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Aphrodisiaques"}, {"authorized_access_point": "Art érotique"}, {"authorized_access_point": "Homoérotisme"}, {"authorized_access_point": "Libertinage"}, {"authorized_access_point": "Morale sexuelle"}, {"authorized_access_point": "Objets érotiques"}, {"authorized_access_point": "Pornographie"}, {"authorized_access_point": "Séduction"}, {"authorized_access_point": "Sexualité"}, {"authorized_access_point": "Sexualité dans les arts du spectacle"}, {"authorized_access_point": "Bandes dessinées érotiques"}, {"authorized_access_point": "Films érotiques"}, {"authorized_access_point": "Photographie érotique"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Littérature érotique"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85044718", "source": "LCSH"}], "authorized_access_point": "Erotica"}, {"source": "RVMLaval", "authorized_access_point": "Érotisme"}], "identifier": "http://www.idref.fr/05058748X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/05058748X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12650884k", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12650884", "source": "BNF"}], "classification": [{"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}, {"name": "Arts", "type": "bf:ClassificationDdc", "classificationPortion": "700"}], "variant_access_point": ["Érographie"], "authorized_access_point": "Érotisme"} 1 +2024-09-10 15:43:30.49906 2024-09-10 15:43:30.499065 7fb65946-420d-42aa-9433-82296cf3b4a7 {"md5": "7c433852bae11003badd0358080dc623", "pid": "061612820", "note": [{"label": ["Sous cette vedette, on trouve les documents sur les périodiques en malgache ; ou publiés à Madagascar (quelle qu'en soit la langue) ; ou publiés par des Malgaches à l'étranger"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Malgache (langue)"}, {"authorized_access_point": "Madagascar"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85080027", "source": "LCSH"}], "authorized_access_point": "Malagasy periodicals"}], "identifier": "http://www.idref.fr/061612820", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/061612820", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13757124s", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13757124", "source": "BNF"}], "classification": [{"name": "Sciences de l'information", "type": "bf:ClassificationDdc", "classificationPortion": "020"}, {"name": "Ethnologie", "type": "bf:ClassificationDdc", "classificationPortion": "390"}, {"name": "Langues", "type": "bf:ClassificationDdc", "classificationPortion": "400"}], "variant_access_point": ["Périodiques en malgache"], "authorized_access_point": "Périodiques malgaches"} 1 +2024-09-10 15:43:30.578732 2024-09-10 15:43:30.578737 1d384ecc-b726-4bd1-ba17-469596c33295 {"md5": "6a1942196dc18ae3f9eec8aa4e143223", "pid": "127977996", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Madagascar"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/127977996", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/127977996", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16079309j", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16079309", "source": "BNF"}], "classification": [{"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}, {"name": "Ethnologie", "type": "bf:ClassificationDdc", "classificationPortion": "390"}], "variant_access_point": ["Malgaches - Caractère national"], "authorized_access_point": "Caractère national malgache"} 1 +2024-09-10 15:43:30.663408 2024-09-10 15:43:30.663411 8cbd2a95-dd87-43f6-b7fe-711f3794a375 {"md5": "7136f5b0787793bc728758b292f21e9d", "pid": "131462415", "note": [{"label": ["S'emploie uniquement en subdivision aux collectivités (à l'exception des types de collectivités) et aux personnes", "Pour l'application générale de cette subdivision, voir les notes sous le renvoi général Et [nom géographique]"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Madagascar"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/131462415", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/131462415", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16061704s", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16061704", "source": "BNF"}], "classification": [{"name": "Géographie du reste du monde", "type": "bf:ClassificationDdc", "classificationPortion": "915"}], "variant_access_point": ["Et les Malgaches"], "authorized_access_point": "Et Madagascar"} 1 +2024-09-10 15:43:31.191382 2024-09-10 15:43:31.191385 c639f061-8d34-4a14-b41d-ef2aba07b619 {"md5": "2497b21e94904cf2788ed89c44545eab", "pid": "273372785", "note": [{"label": ["Bois d'aviation / J.-M. Ballu, 2013", "Notice technique de l'hélice Chauvière, type 351 pour avion Morane 406 à moteur Hispano 12 Y 31 (liaison à cannelures), 1939"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Hélices (aéronautique)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/273372785", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/273372785", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18113058p", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18113058", "source": "BNF"}], "relation_pid": {"type": "redirect_from", "value": "272965758"}, "classification": [{"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "authorized_access_point": "Chauvière (hélices aériennes)"} 1 +2024-09-10 15:43:30.737048 2024-09-10 15:43:30.737051 665ef2ae-42db-4492-bba0-e0854fddbe4f {"md5": "0b598ffce2f62fd13eb52dd9fbf5aa6a", "pid": "144331373", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Allemand (langue)"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Deutsche Sprachprüfung für den Hochschulzugang"}, {"authorized_access_point": "Goethe-Zertifikat A1"}, {"authorized_access_point": "Goethe-Zertifikat A2"}, {"authorized_access_point": "Goethe-Zertifikat B1"}, {"authorized_access_point": "Goethe-Zertifikat B2"}, {"authorized_access_point": "Goethe-Zertifikat C1"}, {"authorized_access_point": "Goethe-Zertifikat C2"}, {"authorized_access_point": "Test Deutsch als Fremdsprache"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2008008787", "source": "LCSH"}], "authorized_access_point": "German language -- Examinations"}], "identifier": "http://www.idref.fr/144331373", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/144331373", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb162021301", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16202130", "source": "BNF"}], "classification": [{"name": "Education et enseignement", "type": "bf:ClassificationDdc", "classificationPortion": "370"}, {"name": "Langues et linguistique", "type": "bf:ClassificationDdc", "classificationPortion": "400"}], "authorized_access_point": "Allemand (langue) - Examens"} 1 +2024-09-10 15:43:30.799223 2024-09-10 15:43:30.799227 b983717c-b4a1-44e1-88a9-c1287dbf866c {"md5": "712550eb17c7dcfa5ced42bad8d43f0a", "pid": "180213911", "note": [{"label": ["Wikidata - https://www.wikidata.org/wiki/Q967853 (2024-06-27)", "France Terme - http://www.culture.fr (2014-08-04)", "Benoît Hamon introduit le cours en ligne massif et ouvert (CLOM) \\"Enseigner et former avec le numérique\\", destiné à la communauté enseignante - http://www.education.gouv.fr (2014-08-04)", "Un MOOC pour enseigner et former par le numérique - http://www.education.gouv.fr (2014-08-04)"], "noteType": "dataSource"}, {"label": ["Cours en ligne ouvert à tous, souvent gratuit, qui peut accueillir un très grand nombre de participants simultanément"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Formation en ligne"}], "related": [{"authorized_access_point": "Internet en éducation"}, {"authorized_access_point": "Universités virtuelles"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2013002540", "source": "LCSH"}], "authorized_access_point": "MOOCs (Web-based instruction)"}, {"source": "RVMLaval", "authorized_access_point": "Cours en ligne ouverts à tous"}], "identifier": "http://www.idref.fr/180213911", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/180213911", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16901246n", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16901246", "source": "BNF"}], "classification": [{"name": "Economie", "type": "bf:ClassificationDdc", "classificationPortion": "330"}, {"name": "Education et enseignement", "type": "bf:ClassificationDdc", "classificationPortion": "370"}, {"type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["CLOM", "COOC", "Corporate open online courses", "Cours en ligne", "Cours en ligne ouverts et massifs", "Masse open online courses", "Massively open online courses", "MOOC", "MOOC d'entreprise"], "authorized_access_point": "Cours en ligne ouverts à tous"} 1 +2024-09-10 15:43:30.864347 2024-09-10 15:43:30.864354 713dc414-6c85-4bb8-ab2f-8a424586a141 {"md5": "e60b3a43f77ff9fba579261daef993d2", "pid": "181492628", "note": [{"label": ["Prüfungstraining Deutsch. Goethe-Zertifikat, C1. Zentrale Mittelstufenprüfung (ZMP) / G. Baier, R. Dittrich, 2008"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Allemand (langue) - Examens"}], "related": [{"authorized_access_point": "Goethe-Zertifikat A1"}, {"authorized_access_point": "Goethe-Zertifikat B1"}, {"authorized_access_point": "Goethe-Zertifikat C2"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/181492628", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/181492628", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16932316v", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16932316", "source": "BNF"}], "classification": [{"name": "Education et enseignement", "type": "bf:ClassificationDdc", "classificationPortion": "370"}, {"name": "Langues et linguistique", "type": "bf:ClassificationDdc", "classificationPortion": "400"}], "authorized_access_point": "Goethe-Zertifikat C1"} 1 +2024-09-10 15:43:30.932156 2024-09-10 15:43:30.932164 dc851962-323a-43e1-ab72-59df0dd2e301 {"md5": "ab5bf7d138b3688852f4ca1015060c63", "pid": "273372734", "note": [{"label": ["Félix Amiot : un industriel normand de l'aéronautique et de la construction navale / J. Lecarpentier, 2020"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Avions"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/273372734", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/273372734", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18113037q", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18113037", "source": "BNF"}], "relation_pid": {"type": "redirect_from", "value": "272748889"}, "classification": [{"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "variant_access_point": ["Société d'emboutissage et de constructions mécaniques (avions)"], "authorized_access_point": "Amiot (avions)"} 1 +2024-09-10 15:43:31.004291 2024-09-10 15:43:31.004294 ded6feea-c5e8-43ce-9e1c-5ae64af3078d {"md5": "ca728bfa2d1f37ffdb8286beb21866c8", "pid": "273372742", "note": [{"label": ["Jane's encycl. of aviation, M. J. Taylor, 1980"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Avions"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/273372742", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/273372742", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18113041z", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18113041", "source": "BNF"}], "relation_pid": {"type": "redirect_from", "value": "272765120"}, "classification": [{"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "authorized_access_point": "Farman (avions)"} 1 +2024-09-10 15:43:31.066443 2024-09-10 15:43:31.066447 2ff636c2-e729-46de-afa7-1bd3c53f55fe {"md5": "59ac69aa9274c8a17052ace23ddb401e", "pid": "273372750", "note": [{"label": ["Aviation française - https://www.aviafrance.com (2023-11-09)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Avions"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/273372750", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/273372750", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18113046p", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18113046", "source": "BNF"}], "relation_pid": {"type": "redirect_from", "value": "272860972"}, "classification": [{"name": "Economie", "type": "bf:ClassificationDdc", "classificationPortion": "330"}, {"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "authorized_access_point": "Hanriot (avions)"} 1 +2024-09-10 15:43:31.254342 2024-09-10 15:43:31.254345 5ef316a1-f176-4557-afa0-b824e70e829a {"md5": "2918e185d609f869d2f008074858448b", "pid": "277418216", "note": [{"label": ["Voir aussi aux régions et aux pays africains"], "noteType": "seeReference"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ethnologie - Iran"}], "related": [{"authorized_access_point": "Africains"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/277418216", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/277418216", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181432712", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18143271", "source": "BNF"}], "relation_pid": {"type": "redirect_from", "value": "274969289"}, "classification": [{"name": "Ethnologie, anthropologie, folklore", "type": "bf:ClassificationDdc", "classificationPortion": "390"}], "authorized_access_point": "Iraniens d'origine africaine"} 1 +2024-09-10 15:43:31.317046 2024-09-10 15:43:31.317049 7eab97c7-ce87-413b-a56d-2820cf0848cd {"md5": "77d0f89048644a56b3032890c150177d", "pid": "279035152", "note": [{"label": ["L'industrie automobile : 1905-1971 / J.-L. Loubet, 1999", "Club Delahaye - https://clubdelahaye.com (2024-06-20)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Camions"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279035152", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279035152", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181537573", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18153757", "source": "BNF"}], "relation_pid": {"type": "redirect_from", "value": "278618901"}, "classification": [{"name": "Economie", "type": "bf:ClassificationDdc", "classificationPortion": "330"}, {"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "authorized_access_point": "Delahaye (camions)"} 1 +2024-09-10 15:43:31.384919 2024-09-10 15:43:31.384923 cabc1139-806a-41c1-835e-dc5ebe031a21 {"md5": "df4cc4a4d82674da8cfc301c7edabe72", "pid": "279035160", "note": [{"label": ["Planète Renault - https://www.planeterenault.com (2024-06-20)", "Notice technique de l'autobus Renault type SXB moteur Renault 15 CV type 370‎ / Ministère de l'air. Armée de l'air, 1934"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Autobus"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279035160", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279035160", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18153768r", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18153768", "source": "BNF"}], "relation_pid": {"type": "redirect_from", "value": "278626599"}, "classification": [{"name": "Economie", "type": "bf:ClassificationDdc", "classificationPortion": "330"}, {"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "authorized_access_point": "Renault (autobus)"} 1 +2024-09-10 15:43:31.445662 2024-09-10 15:43:31.445665 2a41ec1e-1d9c-4009-be6c-ad4b1f87a9ab {"md5": "8b0221e01f3364410f2ed2048345cfe8", "pid": "279035179", "note": [{"label": ["Wikipedia (art. : Latil (entreprise)) - https://fr.wikipedia.org (2024-06-20)", "Fondation Berliet - https://www.fondationberliet.org (2024-06-20)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Autobus"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279035179", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279035179", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18153789q", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18153789", "source": "BNF"}], "relation_pid": {"type": "redirect_from", "value": "278653340"}, "classification": [{"name": "Economie", "type": "bf:ClassificationDdc", "classificationPortion": "330"}, {"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "authorized_access_point": "Latil (autobus)"} 1 +2024-09-10 15:43:31.5046 2024-09-10 15:43:31.504603 76948bae-a1d6-474d-b4a8-f153180ebd05 {"md5": "c65e6faa1b96a65d64fadb262095d06e", "pid": "279035187", "note": [{"label": ["L'encycl. mondiale des camions / P.-J. Davis, 2003", "L'Atlas des camions français / F. Dréer, 2007"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Camions"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279035187", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279035187", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181537949", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18153794", "source": "BNF"}], "relation_pid": {"type": "redirect_from", "value": "278971148"}, "classification": [{"name": "Economie", "type": "bf:ClassificationDdc", "classificationPortion": "330"}, {"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "authorized_access_point": "Latil (camions)"} 1 +2024-09-10 15:43:31.571118 2024-09-10 15:43:31.571121 cb9d6b5b-9fa9-471c-a219-f145518e2f8a {"md5": "fb46d85eb8185798ed5d1d0cd6b9b6ec", "pid": "279307322", "note": [{"label": ["Wikidata - https://www.wikidata.org/wiki/Q190333 (2024-05-24)", "Wikipédia - https://en.wikipedia.org (2024-05-24)", "Goethe Institut - http://www.goethe.de (2024-05-24)", "Goethe-Zertifikat C2 : Grosses Deutsches Sprachdiplom : Übungsbuch mit Audios Online, Deutsch als Fremdsprache / J. Gerbes, 2022"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Allemand (langue) - Examens"}], "related": [{"authorized_access_point": "Goethe-Zertifikat C1"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279307322", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307322", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18148590c", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18148590", "source": "BNF"}], "classification": [{"name": "Education et enseignement", "type": "bf:ClassificationDdc", "classificationPortion": "370"}, {"name": "Langues et linguistique", "type": "bf:ClassificationDdc", "classificationPortion": "400"}], "authorized_access_point": "Goethe-Zertifikat C2"} 1 +2024-09-10 15:43:31.63477 2024-09-10 15:43:31.634774 acd39fd4-36c2-40db-95bc-74a963a896e5 {"md5": "e9d260517a5be227e9de4ef5976db134", "pid": "279307330", "note": [{"label": ["La famille choisie toujours d'actualité ? Vers une diversification des formes de liens familiaux pour les minorités sexuelles et de genre au Québec [in] Écritures des sexualités, 2023, 29", "Familles choisies et réseaux sociaux : quelle importance pour les personnes LGBTQ ? / S. Doucet [in] Partenariat de recherche SAVIE-LGBTQ, 2018, 1", "La famille élective / D . Mehl [in] Dialogue, 2023, 242, 4"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Famille"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Familles choisies"}], "identifier": "http://www.idref.fr/279307330", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307330", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18148927q", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18148927", "source": "BNF"}], "classification": [{"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}], "variant_access_point": ["Famille choisie", "Famille de choix", "Famille élective", "Familles de choix", "Familles électives"], "authorized_access_point": "Familles choisies"} 1 +2024-09-10 15:43:31.703323 2024-09-10 15:43:31.703326 00be405c-13fe-4555-92d8-c0893315b44a {"md5": "84e3acccef9961eb365e6476bff3cbc3", "pid": "279307349", "note": [{"label": ["Grand Robert de la langue française (art. : binaire) - https://grandrobert-lerobert-com (2024-06-10)", "Grand dict. terminologique (art. : personne non binaire) - https://vitrinelinguistique.oqlf.gouv.qc.ca (2024-06-10)", "Binaires / Non-Binaires [in] Adolescences, 2023, 41, 2"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Minorités sexuelles"}], "related": [{"authorized_access_point": "Non-binarité"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2017004882", "source": "LCSH"}], "authorized_access_point": "Gender-nonconforming people"}, {"source": "MeSH", "identifiedBy": [{"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D000096224", "source": "MeSH"}], "authorized_access_point": "Gender-Nonconforming Persons"}, {"source": "RVMLaval", "authorized_access_point": "Personnes non binaires"}], "identifier": "http://www.idref.fr/279307349", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307349", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18151606f", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18151606", "source": "BNF"}], "classification": [{"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}], "variant_access_point": ["Personnes non-binaires", "Non-binaires", "Personnes de genre non binaires", "Personnes non binaires dans le genre"], "authorized_access_point": "Personnes non binaires"} 1 +2024-09-10 15:43:31.767374 2024-09-10 15:43:31.767377 d24b3ff3-8639-4402-9821-2818959e8a4d {"md5": "792c067723e5dcb601fcbf3f5bbcf2c6", "pid": "279307357", "note": [{"label": ["Wikidata - https://www.wikidata.org/wiki/Q221618 (2024-06-13)", "Trésor de la langue française - http://atilf.atilf.fr (2024-06-13)", "Grand Larousse universel", "Grand Robert de la langue française, 2001", "Le travail pornographique : enquête sur la production des fantasme / M. Trachman, 2013", "Sociologie de la sexualité / M. Bozon, 2018"], "noteType": "dataSource"}, {"label": ["Magasin d'articles ayant à voir avec la sexualité et la pornographie"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Industries du sexe"}, {"authorized_access_point": "Magasins"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279307357", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307357", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18152495k", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18152495", "source": "BNF"}], "classification": [{"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}, {"name": "Economie", "type": "bf:ClassificationDdc", "classificationPortion": "330"}, {"name": "Bâtiment", "type": "bf:ClassificationDdc", "classificationPortion": "690"}], "variant_access_point": ["Boutiques érotiques", "Boutiques pornographiques"], "authorized_access_point": "Sex-shops"} 1 +2024-09-10 15:43:31.838422 2024-09-10 15:43:31.838426 e7d7fd05-671b-402e-ab01-d1bf894ddf1b {"md5": "bcca4c971f70894ecb1a4b3aab0db794", "pid": "279307365", "note": [{"label": ["Wikidata - https://www.wikidata.org/wiki/Q2069508 (2024-06-13)", "Wikipédia - https://fr.wikipedia.org (2024-06-13)", "Dict. de la psychologie / W. D. Fröhlich, 1997", "Dict. des cultures gays et lesbiennes / D. Eribon, 2003"], "noteType": "dataSource"}, {"label": ["Relations érotiques, mais pas nécessairement sexuelles, entre personnes du même sexe. - Imaginaire mettant en scène le jeu du désir entre deux personnes du même sexe"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Homosexualité"}], "related": [{"authorized_access_point": "Érotisme"}, {"authorized_access_point": "Homosexualité et art"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279307365", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307365", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18152519r", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18152519", "source": "BNF"}], "classification": [{"name": "Psychologie, psychanalyse", "type": "bf:ClassificationDdc", "classificationPortion": "150"}, {"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}, {"name": "Arts", "type": "bf:ClassificationDdc", "classificationPortion": "700"}], "authorized_access_point": "Homoérotisme"} 1 +2024-09-10 15:43:35.014698 2024-09-10 15:43:35.014702 31b984cf-ee42-4272-bab6-d37e7880b71b {"md5": "489d7b7978d930106d1d4b9be62697f0", "pid": "278746942", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature burkinabé pour la jeunesse"}, {"authorized_access_point": "Roman burkinabé de langue française"}], "bnf_type": "genre/forme Rameau", "identifier": "http://www.idref.fr/278746942", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278746942", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18148101t", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18148101", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Roman francophone burkinabé pour la jeunesse", "Roman pour la jeunesse burkinabé de langue française", "Roman pour la jeunesse francophone burkinabé"], "authorized_access_point": "Roman burkinabé de langue française pour la jeunesse"} 1 +2024-09-10 15:43:31.910932 2024-09-10 15:43:31.910939 733ff558-aef1-4864-8613-6c4b164ff87e {"md5": "695eb8b5e2d88f0c9e03ed8e8ab3b365", "pid": "279307373", "note": [{"label": ["Géographies culturelles : objets, concepts, méthodes / P. Guinard, 2019", "Mapping desire : geographies of sexualities / D. Bell, G. Valentine, 1995", "Géographie de la sexualité ou sexualité du géographe ? Quelques leçons autour d'une injonction / M. Blidon [in] Annales de géographie, 2012, 5-6"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Géographie culturelle"}], "related": [{"authorized_access_point": "Sexualité"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279307373", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307373", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18152571v", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18152571", "source": "BNF"}], "classification": [{"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}, {"name": "Géographie, tourisme (guides) et voyages", "type": "bf:ClassificationDdc", "classificationPortion": "910"}], "variant_access_point": ["Géographie de la sexualité", "Sexualité - Géographie"], "authorized_access_point": "Géographie des sexualités"} 1 +2024-09-10 15:43:31.977961 2024-09-10 15:43:31.977967 071ce83b-2fd2-47c8-8847-46a7f53b90a7 {"md5": "65af92be57ea892e3aba19996599c76d", "pid": "279307462", "note": [{"label": ["Vitrine linguistique - https://vitrinelinguistique.oqlf.gouv.qc.ca (2024-06-24)", "Dict. de l'Académie de médecine - https://www.academie-medecine.fr/le-dictionnaire (2024-06-24)", "Loterre : Nutrition artificielle (thésaurus) - https://www.loterre.fr (2024-06-24)", "Dict. médical de poche / I. Marroun, T. Sené, J. Quevauvilliers, 2018", "Hyperprotéinémies et hypoprotéinémies chez le chien et le chat / C. Coisnon, A. Briend-Marchal [in] EMC-Vétérinaire, 2020, 29, 1", "Dict. illustré des termes de médecine, 2012 : hypo-albuminémie"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Hypoprotéinémie"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "MeSH", "identifiedBy": [{"type": "uri", "value": "https://id.nlm.nih.gov/mesh/M0404823", "source": "MeSH"}], "authorized_access_point": "Hypoalbuminemia"}], "identifier": "http://www.idref.fr/279307462", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307462", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18154211n", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18154211", "source": "BNF"}], "classification": [{"name": "Sciences médicales et paramédicales", "type": "bf:ClassificationDdc", "classificationPortion": "610"}], "variant_access_point": ["Hypo-albuminémie"], "authorized_access_point": "Hypoalbuminémie"} 1 +2024-09-10 15:43:32.043814 2024-09-10 15:43:32.043818 e9ac9106-065b-4efa-b27c-7df99a00cb4a {"md5": "6ca6e85a5cfa41cd132c33fa9ba394bd", "pid": "279307470", "note": [{"label": ["Encycl. universalis - https://www.universalis-edu.com (2024-06-24)", "Dict. de l'Académie de médecine - https://www.academie-medecine.fr/le-dictionnaire (2024)", "Dict. illustré des termes de médecine, 2012", "Dict. de médecine Flammarion, 2008", "Dict. français de médecine et de biologie, 1981"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Arythmie"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "https://id.loc.gov/authorities/subjects/sh85046589", "source": "LCSH"}], "authorized_access_point": "Extrasystole"}, {"source": "MeSH", "identifiedBy": [{"type": "uri", "value": "https://id.nlm.nih.gov/mesh/M0008072", "source": "MeSH"}], "authorized_access_point": "Cardiac Complexes, Premature"}, {"source": "RVMLaval", "authorized_access_point": "Extrasystole"}], "identifier": "http://www.idref.fr/279307470", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307470", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181542391", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18154239", "source": "BNF"}], "classification": [{"name": "Sciences médicales et paramédicales", "type": "bf:ClassificationDdc", "classificationPortion": "610"}], "variant_access_point": ["Extrasystoles"], "authorized_access_point": "Extrasystole"} 1 +2024-09-10 15:43:32.115631 2024-09-10 15:43:32.115635 3ebf8a72-a42b-418d-bd6c-3d72a6f82722 {"md5": "3f11d9da851879853640eea7368b326c", "pid": "279307519", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279307519", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307519", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181549138", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18154913", "source": "BNF"}], "classification": [{"name": "Physique", "type": "bf:ClassificationDdc", "classificationPortion": "530"}, {"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "authorized_access_point": "Installations nucléaires - Russie"} 1 +2024-09-10 15:43:32.181231 2024-09-10 15:43:32.181235 3d1cc395-8027-419b-ac88-f6a548b77853 {"md5": "b44905ab184b0bc6c7411f1a4b47e013", "pid": "279307535", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Architecture antique"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279307535", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307535", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18155060j", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18155060", "source": "BNF"}], "classification": [{"name": "Ethnologie, anthropologie, folklore", "type": "bf:ClassificationDdc", "classificationPortion": "390"}, {"name": "Architecture", "type": "bf:ClassificationDdc", "classificationPortion": "720"}, {"name": "Préhistoire et histoire ancienne", "type": "bf:ClassificationDdc", "classificationPortion": "930"}], "variant_access_point": ["Cananéens - Architecture"], "authorized_access_point": "Architecture cananéenne"} 1 +2024-09-10 15:43:35.079515 2024-09-10 15:43:35.079518 dd76dadf-efe6-404a-b1bd-442d9f07d940 {"md5": "dcc81edbcea96096cfed8543dc7e3055", "pid": "278746950", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature coréenne"}], "bnf_type": "genre/forme Rameau", "identifier": "http://www.idref.fr/278746950", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278746950", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181481087", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18148108", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Feel-good book coréen"} 1 +2024-09-10 15:43:32.247224 2024-09-10 15:43:32.247227 388368ef-95bc-4e8e-bf7f-f5141659bf9c {"md5": "b05833ceade791171dab78bdc004189f", "pid": "27930756X", "note": [{"label": ["Dict. de l'Académie nationale de pharmacie - https://dictionnaire.acadpharm.org (2024-06-28)", "Dict. de la chimie et de ses applications / C. et R. Duval, J.-C. Richer, 2010", "Dict. pharmaceutique : pharmacologie et chimie des médicaments / Y. Landry, Y. Rival, 2007", "Guide pratique des médicaments : Dorosz / D. Vital Durand, C. Le Jeunne, 2013", "Dict. de médecine Flammarion, 2008", "The Merck index, 2013 : naproxen"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Arylcarboxyliques"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "https://id.loc.gov/authorities/subjects/sh85089785", "source": "LCSH"}], "authorized_access_point": "Naproxen"}, {"source": "MeSH", "identifiedBy": [{"type": "uri", "value": "https://id.nlm.nih.gov/mesh/M0014467", "source": "MeSH"}], "authorized_access_point": "Naproxen"}, {"source": "RVMLaval", "authorized_access_point": "Naproxène"}], "identifier": "http://www.idref.fr/27930756X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/27930756X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18155270d", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18155270", "source": "BNF"}], "classification": [{"name": "Chimie, minéralogie, cristallographie", "type": "bf:ClassificationDdc", "classificationPortion": "540"}, {"type": "bf:ClassificationDdc", "classificationPortion": "615"}], "authorized_access_point": "Naproxène"} 1 +2024-09-10 15:43:32.314997 2024-09-10 15:43:32.315001 c0ce2362-cdac-4f8d-846d-cc8d283dd121 {"md5": "e4c22e6e78baf484420907f1c41d7308", "pid": "279307578", "note": [{"label": ["Dict. illustré des termes de médecine, 2012", "Dict. de médecine Flammarion, 2008", "Myélinolyse centropontine [in] La Presse médicale, 2008, 37, 12", "Dict. de l'Académie de médecine : myélinolyse centrale du pont cérébral - https://www.academie-medecine.fr/le-dictionnaire (2024-06-28)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Démyélinisation"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "MeSH", "identifiedBy": [{"type": "uri", "value": "https://id.nlm.nih.gov/mesh/M0026656", "source": "MeSH"}], "authorized_access_point": "Myelinolysis, Central Pontine"}], "identifier": "http://www.idref.fr/279307578", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307578", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18155286s", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18155286", "source": "BNF"}], "classification": [{"name": "Sciences médicales et paramédicales", "type": "bf:ClassificationDdc", "classificationPortion": "610"}], "variant_access_point": ["Myélinolyse centrale du pont cérébral", "Myélinolyse centro-pontine", "Syndrome de démyélinisation osmotique"], "authorized_access_point": "Myélinolyse centropontine"} 1 +2024-09-10 15:43:32.385438 2024-09-10 15:43:32.385441 27b1391c-9778-460c-9d2c-d3a5414f6f22 {"md5": "21c4ee8f7cf7f0f633072c281a6d7563", "pid": "279307586", "note": [{"label": ["Dict. de l'Académie de médecine - https://www.academie-medecine.fr/le-dictionnaire (2024-06-28)", "Dict. illustré des termes de médecine, 2012", "Manuel d'échocardiographie clinique, 2012"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Cardiopathies"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "https://id.loc.gov/authorities/subjects/sh85020160", "source": "LCSH"}], "authorized_access_point": "Carcinoid heart disease"}, {"source": "MeSH", "identifiedBy": [{"type": "uri", "value": "https://id.nlm.nih.gov/mesh/M0003420", "source": "MeSH"}], "authorized_access_point": "Carcinoid Heart Disease"}], "identifier": "http://www.idref.fr/279307586", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307586", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18155294d", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18155294", "source": "BNF"}], "classification": [{"name": "Sciences médicales et paramédicales", "type": "bf:ClassificationDdc", "classificationPortion": "610"}], "authorized_access_point": "Cardiopathie carcinoïde"} 1 +2024-09-10 15:43:32.447982 2024-09-10 15:43:32.447986 f6d5c611-fd7f-4de4-b935-c66ce3b8e441 {"md5": "99c95b2ba870ecb0af7cd3b8a5e48998", "pid": "279307594", "note": [{"label": ["La néoglucogenèse intestinale : une fonction insulinomimétique / G. Mithieux [in] Biologie aujourd'hui, 2022, 216, 1-2", "Effets protecteurs de la néoglucogenèse intestinale dans le développement de l'obésité et de ses complications / J. Vily-Petit, 2020 [thèse]", "Microbiote intestinal et santé humaine, 2021"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Métabolisme"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279307594", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307594", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18155316w", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18155316", "source": "BNF"}], "classification": [{"name": "Sciences de la vie", "type": "bf:ClassificationDdc", "classificationPortion": "570"}], "variant_access_point": ["Gluconéogenèse intestinale", "Glyconéogenèse intestinale", "Néoglycogenèse intestinale", "NGI (biologie)"], "authorized_access_point": "Néoglucogenèse intestinale"} 1 +2024-09-10 15:43:32.913798 2024-09-10 15:43:32.913802 8ea265ae-0d0c-4f53-9a0b-8f2c2484e2f2 {"md5": "fad67e35cbd2b57c3589d4b5ad62e150", "pid": "279307799", "note": [{"label": ["Wikidata - https://www.wikidata.org/wiki/Q814356 (2024-07-02)", "Grand Larousse universel", "Grand Robert de la langue française, 2001", "Trésor de la langue française (art. : Girl) - http://atilf.atilf.fr (2024-07-02)", "Wikipédia - https://fr.wikipedia.org (2024-07-02)"], "noteType": "dataSource"}, {"label": ["Personnes prostituées n'exerçant pas sur la voie publique et que l'on contacte, par exemple, par téléphone"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Prostituées"}, {"authorized_access_point": "Prostitués"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279307799", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307799", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181557923", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18155792", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "305"}, {"name": "Problèmes et services sociaux", "type": "bf:ClassificationDdc", "classificationPortion": "360"}], "variant_access_point": ["Call-boys", "Call-girls", "Escort-girls"], "authorized_access_point": "Escorts"} 1 +2024-09-10 15:43:32.514948 2024-09-10 15:43:32.514953 e3ad6ceb-05de-4a8a-bd29-988b52ec633f {"md5": "9d8a0a6e452a21c4ebf22792b80152c2", "pid": "279307632", "note": [{"label": ["Termium plus® - https://www.btb.termiumplus.gc.ca (2024-07-01)", "Mise en pratique du traitement de reperfusion dans les infarctus du myocarde avec élévation du segment ST [in] Revue médicale de Liège, 2010, 65, 1", "Une cause rare de syndrome coronarien aigu : l'embolie paradoxale [in] Annales de cardiologie et d'angéiologie, 2024, 73, 2", "L'infarctus du myocarde en France métropolitaine de 1995 à 2010 : évolution de la typologie des patients, de la prise en charge et du pronostic à court terme [in] Bulletin de l'Académie nationale de médecine, 2014, 198, 1 : infarctus du myocarde avec sus-décalage du segment ST", "Traitement de l'infarctus myocardique. Pourquoi l'angioplastie coronaire ? / C. Beauloye [in] Louvain médical, 2017, 136, 8 : STEMI", "Dict. de l'Académie de médecine : infarctus transmural - https://www.academie-medecine.fr/le-dictionnaire (2024-07-01)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Infarctus du myocarde"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "MeSH", "identifiedBy": [{"type": "uri", "value": "https://id.nlm.nih.gov/mesh/M000617719", "source": "MeSH"}], "authorized_access_point": "ST Elevation Myocardial Infarction"}], "identifier": "http://www.idref.fr/279307632", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307632", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181554552", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18155455", "source": "BNF"}], "classification": [{"name": "Sciences médicales et paramédicales", "type": "bf:ClassificationDdc", "classificationPortion": "610"}], "variant_access_point": ["Infarctus avec onde Q", "Infarctus avec sus-décalage du segment ST", "Infarctus avec sus-décalage persistant du segment ST", "Infarctus du myocarde avec sus-décalage du segment ST", "Infarctus du myocarde avec sus-décalage persistant du segment ST", "Infarctus du myocarde de type STEMI", "Infarctus STEMI", "Infarctus trans-mural", "Infarctus transmural", "ST elevation myocardial infarction", "STEMI (maladie)"], "authorized_access_point": "Infarctus du myocarde avec élévation du segment ST"} 1 +2024-09-10 15:43:32.582116 2024-09-10 15:43:32.58212 e8213638-2ee5-4a2a-9b06-e95b0b6068f2 {"md5": "db8e8c572ce5829a0bec71e921a1643a", "pid": "279307713", "note": [{"label": ["Termium plus® - https://www.btb.termiumplus.gc.ca (2024-07-01)", "Indications à la coronarographie en urgence. Partie II : syndromes coronariens aigus sans élévation du segment ST [in] Revue médicale suisse, 2009, 205", "Pronostic des syndromes coronariens aigus. Absence de différence en fonction du sexe [in] Bulletin de l'Académie nationale de médecine, 2004, 188, 3", "L'infarctus du myocarde en France métropolitaine de 1995 à 2010 : évolution de la typologie des patients, de la prise en charge et du pronostic à court terme [in] Bulletin de l'Académie nationale de médecine, 2014, 198, 1 : infarctus sans sus-décalage du segment ST", "Traitement de l'infarctus myocardique. Pourquoi l'angioplastie coronaire ? / C. Beauloye [in] Louvain médical, 2017, 136, 8 : NSTEMI"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Infarctus du myocarde"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "MeSH", "identifiedBy": [{"type": "uri", "value": "https://id.nlm.nih.gov/mesh/M000617720", "source": "MeSH"}], "authorized_access_point": "Non-ST Elevated Myocardial Infarction"}], "identifier": "http://www.idref.fr/279307713", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307713", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181555618", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18155561", "source": "BNF"}], "classification": [{"name": "Sciences médicales et paramédicales", "type": "bf:ClassificationDdc", "classificationPortion": "610"}], "variant_access_point": ["Infarctus du myocarde de type NSTEMI", "Infarctus du myocarde sans sus-décalage du segment ST", "Infarctus du myocarde sans sus-décalage persistant du segment ST", "Infarctus non trans-mural", "Infarctus non transmural", "Infarctus NSTEMI", "Infarctus sans onde Q", "Infarctus sans sus-décalage du segment ST", "Infarctus sans sus-décalage persistant du segment ST", "Non ST elevation myocardial infarction", "NSTEMI (maladie)"], "authorized_access_point": "Infarctus du myocarde sans élévation du segment ST"} 1 +2024-09-10 15:43:32.665398 2024-09-10 15:43:32.665401 ec50ed3c-6baa-48c8-80f5-bf92d6629e08 {"md5": "7ab5e3dfc22fd0f44c614c47f5326e1d", "pid": "27930773X", "note": [{"label": ["Vitrine linguistique - https://vitrinelinguistique.oqlf.gouv.qc.ca (2024-007-01)", "Dict. des sciences de la terre / M. Moureau, G. Brace, 2000", "Dict. de géologie / A. Foucault, J.-F. Raoult, 2000"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tectonique"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/27930773X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/27930773X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18155575z", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18155575", "source": "BNF"}], "classification": [{"name": "Sciences de la Terre", "type": "bf:ClassificationDdc", "classificationPortion": "550"}], "authorized_access_point": "Paléotectonique"} 1 +2024-09-10 15:43:32.736565 2024-09-10 15:43:32.736573 2c3ba770-7a94-4fa7-a9fa-ad101199b46a {"md5": "bb96508436bcb3471e095d6766086706", "pid": "279307748", "note": [{"label": ["Termium plus® - https://www.btb.termiumplus.gc.ca (2024-07-01)", "GBIF - https://www.gbif.org/fr/species (2024-07-01)", "Dict. of animal names in five languages, birds / R. L. Boehme, V. E. Flint, 1994", "The IUCN Red List of Threatened Species : Hylophylax naevioides - http://www.iucnredlist.org (2024-07-01)", "Grzimek's animal life encycl.. Volume 10, Birds III, 2003 : Hylophylax naevioides", "The Howard and Moore complete checklist of the birds of the world, 2003 : Hylophylax naevioides"], "noteType": "dataSource"}, {"label": ["Rang taxonomique : espèce"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Hylophylax"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "https://id.loc.gov/authorities/subjects/sh85126968", "source": "LCSH"}], "authorized_access_point": "Spotted antbird"}, {"source": "RVMLaval", "authorized_access_point": "Fourmilier grivelé"}], "identifier": "http://www.idref.fr/279307748", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307748", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18155596x", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18155596", "source": "BNF"}], "classification": [{"name": "Zoologie", "type": "bf:ClassificationDdc", "classificationPortion": "590"}], "variant_access_point": ["Hylophylax naevioides"], "authorized_access_point": "Fourmilier grivelé"} 1 +2024-09-10 15:43:32.827001 2024-09-10 15:43:32.827006 c5445133-1ca5-4680-b6ac-06caac9630dd {"md5": "6016a02e16215ce2b9d244b8747874af", "pid": "279307780", "note": [{"label": ["L'Italie : de Botticelli à Bonaparte / J. Delumeau, 2022", "Histoire économique de l'Europe moderne : XVe-XVIIIe siècle / F. Delleaux, 2015", "Les 100 mots de Venise / O. Alberti, 2021"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Verrerie"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279307780", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307780", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181557505", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18155750", "source": "BNF"}], "classification": [{"name": "Arts plastiques, sculpture", "type": "bf:ClassificationDdc", "classificationPortion": "730"}, {"name": "Dessin, arts décoratifs, artisanat d'art", "type": "bf:ClassificationDdc", "classificationPortion": "740"}], "variant_access_point": ["Verre de Murano", "Verreries de Murano"], "authorized_access_point": "Verrerie de Murano"} 1 +2024-09-10 15:43:32.992786 2024-09-10 15:43:32.99279 e110244c-c198-432e-90cc-98c1fd51e6ad {"md5": "cf79e9f0326e0ae6b297e2ed5f2f1e95", "pid": "279307810", "note": [{"label": ["GBIF - https://www.gbif.org/species (2024-07-03)", "NCBI - https://www.ncbi.nlm.nih.gov/Taxonomy (2024-07-03)", "Dict. of animal names in five languages, birds / R. L. Boehme, V. E. Flint, 1994", "Grzimek's animal life encycl.. Volume 10, Birds III, 2003", "The Howard and Moore complete checklist of the birds of the world, 2003"], "noteType": "dataSource"}, {"label": ["Rang taxonomique : genre"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Thamnophilidae"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Fourmilier grivelé"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "https://id.loc.gov/authorities/subjects/sh85063574", "source": "LCSH"}], "authorized_access_point": "Hylophylax (Birds)"}], "identifier": "http://www.idref.fr/279307810", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307810", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18155931f", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18155931", "source": "BNF"}], "classification": [{"name": "Zoologie", "type": "bf:ClassificationDdc", "classificationPortion": "590"}], "authorized_access_point": "Hylophylax"} 1 +2024-09-10 15:43:33.120765 2024-09-10 15:43:33.12077 e4097e10-b8fe-46ca-b446-ac9f10459fa7 {"md5": "840d171a22a4bd919d65976f1d046475", "pid": "279307837", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Asie du Sud"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279307837", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307837", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18156044j", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18156044", "source": "BNF"}], "classification": [{"name": "Préhistoire et histoire ancienne", "type": "bf:ClassificationDdc", "classificationPortion": "930"}], "authorized_access_point": "Antiquités - Asie du Sud"} 1 +2024-09-10 15:43:33.183447 2024-09-10 15:43:33.18345 02fbe222-bf97-4247-875b-9e25d7c0f3ea {"md5": "e9dcf12c647c49531a2be6ed6b8de156", "pid": "279307853", "note": [{"label": ["Sous cette vedette, obligatoirement suivie d'une subdivision géographique ou de la subdivision : À l'étranger, directement ou après une subdivision de sujet, on trouve les documents sur les familles nicaraguayennes hors du Nicaragua. Les documents sur les familles nicaraguayennes au Nicaragua se trouvent sous des vedettes-matière telles que : Famille -- Nicaragua ; Famille -- [Subdivision de sujet] -- Nicaragua ; etc"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Nicaraguayens"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279307853", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307853", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18156498k", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18156498", "source": "BNF"}], "classification": [{"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}, {"type": "bf:ClassificationDdc", "classificationPortion": "305"}, {"name": "Ethnologie, anthropologie, folklore", "type": "bf:ClassificationDdc", "classificationPortion": "390"}], "authorized_access_point": "Familles nicaraguayennes"} 1 +2024-09-10 15:43:33.248425 2024-09-10 15:43:33.248428 df7b3a22-b9ac-4f43-850a-375bb3cbe62a {"md5": "66da5c2a7c6f5f0275f870400c6a705a", "pid": "027222144", "note": [{"label": ["S'emploie également en subdivision"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Catalogues commerciaux"}], "related": [{"authorized_access_point": "Librairie"}], "bnf_type": "genre/forme Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Catalogues de librairies"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85020902", "source": "LCSH"}], "authorized_access_point": "Booksellers' catalogs"}], "identifier": "http://www.idref.fr/027222144", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027222144", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119311240", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11931124", "source": "BNF"}], "classification": [{"name": "Sciences de l'information", "type": "bf:ClassificationDdc", "classificationPortion": "020"}, {"name": "Economie", "type": "bf:ClassificationDdc", "classificationPortion": "330"}], "variant_access_point": ["Catalogues de librairies"], "authorized_access_point": "Catalogues de libraires"} 1 +2024-09-10 15:43:33.310715 2024-09-10 15:43:33.310718 5918c0f4-7269-400c-8197-16771c2a79b3 {"md5": "19036be0fb25c6f541dd3f4dfefb4b68", "pid": "027236897", "note": [{"label": ["S'emploie également en subdivision", "Les subdivisions chronologiques spécifiques employées sous la vedette Littérature espagnole doivent être utilisées pour tous les genres littéraires espagnols"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Civilisation - Espagne"}, {"authorized_access_point": "Littérature hispanophone"}, {"authorized_access_point": "Littérature ibérique"}], "related": [{"authorized_access_point": "Écrivains espagnols"}, {"authorized_access_point": "Littérature comparée - Allemande et espagnole"}, {"authorized_access_point": "Littérature comparée - Américaine et espagnole"}, {"authorized_access_point": "Littérature comparée - Anglaise et espagnole"}, {"authorized_access_point": "Littérature comparée - Arabe et espagnole"}, {"authorized_access_point": "Littérature comparée - Argentine et espagnole"}, {"authorized_access_point": "Littérature comparée - Autrichienne et espagnole"}, {"authorized_access_point": "Littérature comparée - Brésilienne et espagnole"}, {"authorized_access_point": "Littérature comparée - Catalane et espagnole"}, {"authorized_access_point": "Littérature comparée - Chilienne et espagnole"}, {"authorized_access_point": "Littérature comparée - Chinoise et espagnole"}, {"authorized_access_point": "Littérature comparée - Cubaine et espagnole"}, {"authorized_access_point": "Littérature comparée - Espagnole et européenne"}, {"authorized_access_point": "Littérature comparée - Espagnole et française"}, {"authorized_access_point": "Littérature comparée - Espagnole et grecque"}, {"authorized_access_point": "Littérature comparée - Espagnole et irlandaise"}, {"authorized_access_point": "Littérature comparée - Espagnole et italienne"}, {"authorized_access_point": "Littérature comparée - Espagnole et mexicaine"}, {"authorized_access_point": "Littérature comparée - Espagnole et occitane"}, {"authorized_access_point": "Littérature comparée - Espagnole et polonaise"}, {"authorized_access_point": "Littérature comparée - Espagnole et portugaise"}, {"authorized_access_point": "Littérature comparée - Espagnole et russe"}, {"authorized_access_point": "Littérature comparée - Espagnole et suédoise"}, {"authorized_access_point": "Mouvements littéraires - Espagne"}, {"authorized_access_point": "Prix littéraires - Espagne"}, {"authorized_access_point": "Citations espagnoles"}], "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Autobiographie espagnole"}, {"authorized_access_point": "Biographie espagnole"}, {"authorized_access_point": "Chroniques espagnoles"}, {"authorized_access_point": "Contes littéraires espagnols"}, {"authorized_access_point": "Dialogues (genre littéraire) espagnols"}, {"authorized_access_point": "Discours espagnols"}, {"authorized_access_point": "Écrits anonymes espagnols"}, {"authorized_access_point": "Écrits d'immigrés espagnols"}, {"authorized_access_point": "Écrits de jeunes espagnols"}, {"authorized_access_point": "Écrits de lesbiennes espagnoles"}, {"authorized_access_point": "Écrits de militaires espagnols"}, {"authorized_access_point": "Écrits de prisonniers espagnols"}, {"authorized_access_point": "Essai (genre littéraire) espagnol"}, {"authorized_access_point": "Fantasy espagnole"}, {"authorized_access_point": "Journaux intimes espagnols"}, {"authorized_access_point": "Littérature clandestine espagnole"}, {"authorized_access_point": "Littérature d'épouvante espagnole"}, {"authorized_access_point": "Littérature d'exil espagnole"}, {"authorized_access_point": "Littérature de colportage espagnole"}, {"authorized_access_point": "Littérature dialectale espagnole"}, {"authorized_access_point": "Littérature didactique espagnole"}, {"authorized_access_point": "Littérature épistolaire espagnole"}, {"authorized_access_point": "Littérature érotique espagnole"}, {"authorized_access_point": "Littérature espagnole - Auteurs juifs"}, {"authorized_access_point": "Littérature espagnole - Avant 1500"}, {"authorized_access_point": "Littérature espagnole - 1500-1700 (Période classique)"}, {"authorized_access_point": "Littérature espagnole - 18e siècle"}, {"authorized_access_point": "Littérature espagnole - 19e siècle"}, {"authorized_access_point": "Littérature espagnole - 1870-1914"}, {"authorized_access_point": "Littérature espagnole - 20e siècle"}, {"authorized_access_point": "Littérature espagnole - 1975-...."}, {"authorized_access_point": "Littérature espagnole pour la jeunesse"}, {"authorized_access_point": "Littérature expérimentale espagnole"}, {"authorized_access_point": "Littérature fantastique espagnole"}, {"authorized_access_point": "Littérature humoristique espagnole"}, {"authorized_access_point": "Littérature libertaire espagnole"}, {"authorized_access_point": "Littérature pastorale espagnole"}, {"authorized_access_point": "Littérature policière espagnole"}, {"authorized_access_point": "Littérature populaire espagnole"}, {"authorized_access_point": "Littérature religieuse espagnole"}, {"authorized_access_point": "Littérature révolutionnaire espagnole"}, {"authorized_access_point": "Mémoires (genre littéraire) espagnols"}, {"authorized_access_point": "Nouvelles espagnoles"}, {"authorized_access_point": "Pamphlets espagnols"}, {"authorized_access_point": "Parodie espagnole"}, {"authorized_access_point": "Poésie espagnole"}, {"authorized_access_point": "Portraits (genre littéraire) espagnols"}, {"authorized_access_point": "Prose espagnole"}, {"authorized_access_point": "Récits de guerre espagnols"}, {"authorized_access_point": "Récits de voyages espagnols"}, {"authorized_access_point": "Roman espagnol"}, {"authorized_access_point": "Satire espagnole"}, {"authorized_access_point": "Science-fiction espagnole"}, {"authorized_access_point": "Théâtre (genre littéraire) espagnol"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85126268", "source": "LCSH"}], "authorized_access_point": "Spanish literature"}, {"source": "RVMLaval", "authorized_access_point": "Littérature espagnole"}], "identifier": "http://www.idref.fr/027236897", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027236897", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11932273q", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11932273", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Et la littérature espagnole", "Littérature castillane"], "authorized_access_point": "Littérature espagnole"} 1 +2024-09-10 15:43:33.382568 2024-09-10 15:43:33.382572 38afaf3b-2acd-4c50-b298-66b13c97735a {"md5": "ba767b6821c3a5dd83526d5fb403294c", "pid": "027276457", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature australienne"}, {"authorized_access_point": "Roman anglophone"}], "related": [{"authorized_access_point": "Romanciers australiens"}], "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Roman autobiographique australien"}, {"authorized_access_point": "Roman d'amour australien"}, {"authorized_access_point": "Roman d'aventures australien"}, {"authorized_access_point": "Roman de science-fiction australien"}, {"authorized_access_point": "Roman familial australien"}, {"authorized_access_point": "Roman gothique australien"}, {"authorized_access_point": "Roman historique australien"}, {"authorized_access_point": "Roman policier australien"}, {"authorized_access_point": "Thriller (roman) australien"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85009635", "source": "LCSH"}], "authorized_access_point": "Australian fiction"}], "identifier": "http://www.idref.fr/027276457", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027276457", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12647669m", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12647669", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Roman australien"} 1 +2024-09-10 15:43:33.459562 2024-09-10 15:43:33.459566 2df729d1-9c38-47c8-a0bd-0fc32fd98f07 {"md5": "1be2b72204f6650b5c48fa209dc5e5da", "pid": "027307565", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature canadienne de langue française"}, {"authorized_access_point": "Théâtre (genre littéraire) canadien"}, {"authorized_access_point": "Théâtre (genre littéraire) francophone"}], "related": [{"authorized_access_point": "Auteurs dramatiques canadiens de langue française"}], "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Théâtre canadien de langue française pour la jeunesse"}, {"authorized_access_point": "Théâtre documentaire canadien de langue française"}, {"authorized_access_point": "Théâtre politique canadien de langue française"}, {"authorized_access_point": "Théâtre radiophonique canadien de langue française"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85051768", "source": "LCSH"}], "authorized_access_point": "French-Canadian drama"}], "identifier": "http://www.idref.fr/027307565", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027307565", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11937806f", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11937806", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Théâtre (genre littéraire) francophone canadien", "Théâtre (genre littéraire) québécois", "Théâtre canadien de langue française"], "authorized_access_point": "Théâtre (genre littéraire) canadien de langue française"} 1 +2024-09-10 15:43:33.530141 2024-09-10 15:43:33.530145 8eca135a-ba98-4256-9b63-95197a8b38ba {"md5": "f1fc32935d50c7a494f3e744b2feaa0f", "pid": "02767391X", "note": [{"label": ["Encycl. des jeux vidéo / F. Sanchez, 2008", "La saga des jeux vidéo / D. Ichbiah, 2011", "Jeuxvideo.com : la référence des jeux vidéo sur PC et consoles"], "noteType": "dataSource"}, {"label": ["S'emploie également en subdivision"], "noteType": "general"}, {"label": ["Voir aussi la subdivision Dans les jeux vidéo à tous sujets noms communs et noms propres"], "noteType": "seeReference"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Jeux"}, {"authorized_access_point": "Jeux électroniques"}, {"authorized_access_point": "Logiciels"}], "related": [{"authorized_access_point": "Allegro (informatique)"}, {"authorized_access_point": "Bibliothèques et jeux vidéo"}, {"authorized_access_point": "Cinéma et jeux vidéo"}, {"authorized_access_point": "Concepteurs de jeux vidéo"}, {"authorized_access_point": "Dans les jeux vidéo"}, {"authorized_access_point": "Jeux vidéo et histoire"}, {"authorized_access_point": "Joueurs de jeux vidéo"}, {"authorized_access_point": "Pixel art"}, {"authorized_access_point": "Salles d'arcades"}, {"authorized_access_point": "Machinimas"}, {"authorized_access_point": "Musique de jeux vidéo"}], "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Arcade (jeux vidéo)"}, {"authorized_access_point": "Game Boy (jeux vidéo)"}, {"authorized_access_point": "Jeux de combat (jeux vidéo)"}, {"authorized_access_point": "Jeux de gestion (jeux vidéo)"}, {"authorized_access_point": "Jeux vidéo de course"}, {"authorized_access_point": "Jeux vidéo de rôle"}, {"authorized_access_point": "Manettes de jeux vidéo"}, {"authorized_access_point": "Neo-Geo (jeux vidéo)"}, {"authorized_access_point": "Nintendo (jeux vidéo)"}, {"authorized_access_point": "PC-Engine (jeux vidéo)"}, {"authorized_access_point": "Personnages de jeux vidéo"}, {"authorized_access_point": "PlayStation (jeux vidéo)"}, {"authorized_access_point": "Publicité intégrée dans les jeux vidéo"}, {"authorized_access_point": "Sega (jeux vidéo)"}, {"authorized_access_point": "Sport électronique"}, {"authorized_access_point": "Xbox (jeux vidéo)"}, {"authorized_access_point": "Jeux d'aventure (jeux vidéo)"}, {"authorized_access_point": "Jeux de civilisation"}, {"authorized_access_point": "Jeux de guerre (jeux vidéo)"}, {"authorized_access_point": "Jeux musicaux (jeux vidéo)"}, {"authorized_access_point": "Jeux sur mobiles"}, {"authorized_access_point": "Logiciels ludoéducatifs"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85143202", "source": "LCSH"}], "authorized_access_point": "Video games"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85029499", "source": "LCSH"}], "authorized_access_point": "Computer games"}, {"source": "RVMLaval", "authorized_access_point": "Jeux vidéo"}, {"source": "RVMLaval", "authorized_access_point": "Jeux d'ordinateur"}], "identifier": "http://www.idref.fr/02767391X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02767391X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13318902d", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13318902", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}, {"name": "Jeux", "type": "bf:ClassificationDdc", "classificationPortion": "793"}], "variant_access_point": ["Consoles de jeux vidéo", "Jeux - Logiciels", "Jeux d'ordinateur", "Jeux informatiques", "Jeux informatisés", "Jeux sur consoles", "Jeux sur microordinateurs", "Jeux sur ordinateur", "Logiciels de jeu", "Logiciels ludiques", "Ludiciels"], "authorized_access_point": "Jeux vidéo"} 1 +2024-09-10 15:43:33.600972 2024-09-10 15:43:33.600979 45f86b26-8b19-414d-9107-70e3705a1c5c {"md5": "8cc52628df0da731518fdcc859e6fea0", "pid": "027800512", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature française"}, {"authorized_access_point": "Roman francophone"}], "related": [{"authorized_access_point": "Romanciers français"}], "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Nouveau roman"}, {"authorized_access_point": "Politique-fiction française"}, {"authorized_access_point": "Roman biographique français"}, {"authorized_access_point": "Roman courtois français"}, {"authorized_access_point": "Roman d'amour français"}, {"authorized_access_point": "Roman d'aventures français"}, {"authorized_access_point": "Roman d'éducation français"}, {"authorized_access_point": "Roman d'espionnage français"}, {"authorized_access_point": "Roman de chevalerie français"}, {"authorized_access_point": "Roman de moeurs français"}, {"authorized_access_point": "Roman de science-fiction français"}, {"authorized_access_point": "Roman en vers français"}, {"authorized_access_point": "Roman épistolaire français"}, {"authorized_access_point": "Roman expérimental français"}, {"authorized_access_point": "Roman fantastique français"}, {"authorized_access_point": "Roman français pour la jeunesse"}, {"authorized_access_point": "Roman gothique français"}, {"authorized_access_point": "Roman héroïque"}, {"authorized_access_point": "Roman historique français"}, {"authorized_access_point": "Roman pastoral français"}, {"authorized_access_point": "Roman philosophique français"}, {"authorized_access_point": "Roman picaresque français"}, {"authorized_access_point": "Roman policier français"}, {"authorized_access_point": "Roman populaire français"}, {"authorized_access_point": "Roman préhistorique français"}, {"authorized_access_point": "Roman régionaliste français"}, {"authorized_access_point": "Roman rustique français"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85051802", "source": "LCSH"}], "authorized_access_point": "French fiction"}, {"source": "RVMLaval", "authorized_access_point": "Roman français"}], "identifier": "http://www.idref.fr/027800512", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027800512", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11976487r", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11976487", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Roman français"} 1 +2024-09-10 15:43:33.672838 2024-09-10 15:43:33.672843 6814c2b1-1816-4198-ace1-0afc6ff7b857 {"md5": "b29dcfb0e2aa890d53b2c9a348440a53", "pid": "02781971X", "note": [{"label": ["Sous cette vedette, on trouve les recueils de littérature danoise de divers genres"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Civilisation - Danemark"}, {"authorized_access_point": "Littérature scandinave"}], "related": [{"authorized_access_point": "Danois (langue)"}, {"authorized_access_point": "Écrivains danois"}, {"authorized_access_point": "Littérature comparée - Allemande et danoise"}, {"authorized_access_point": "Littérature comparée - Danoise et française"}], "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Autobiographie danoise"}, {"authorized_access_point": "Contes littéraires danois"}, {"authorized_access_point": "Écrits anonymes danois"}, {"authorized_access_point": "Essai (genre littéraire) danois"}, {"authorized_access_point": "Fables danoises"}, {"authorized_access_point": "Journaux intimes danois"}, {"authorized_access_point": "Littérature danoise pour la jeunesse"}, {"authorized_access_point": "Littérature populaire danoise"}, {"authorized_access_point": "Mémoires (genre littéraire) danois"}, {"authorized_access_point": "Nouvelles danoises"}, {"authorized_access_point": "Poésie danoise"}, {"authorized_access_point": "Prose danoise"}, {"authorized_access_point": "Récits de voyages danois"}, {"authorized_access_point": "Roman danois"}, {"authorized_access_point": "Science-fiction danoise"}, {"authorized_access_point": "Sermons danois"}, {"authorized_access_point": "Théâtre (genre littéraire) danois"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85035735", "source": "LCSH"}], "authorized_access_point": "Danish literature"}, {"source": "RVMLaval", "authorized_access_point": "Littérature danoise"}], "identifier": "http://www.idref.fr/02781971X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02781971X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11977960b", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11977960", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Littérature danoise"} 1 +2024-09-10 15:43:34.880475 2024-09-10 15:43:34.880478 8a87b067-5c75-4760-b551-e3801f52ccb0 {"md5": "7c03e3fe2ea10651a73c9e1ad8593857", "pid": "278746926", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Théâtre (genre littéraire) canadien de langue française"}], "bnf_type": "genre/forme Rameau", "identifier": "http://www.idref.fr/278746926", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278746926", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181480873", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18148087", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Théâtre documentaire canadien-français", "Théâtre documentaire francophone canadien"], "authorized_access_point": "Théâtre documentaire canadien de langue française"} 1 +2024-09-10 15:43:33.757461 2024-09-10 15:43:33.757465 1a5c7099-def5-4e50-8569-f74b22635ed1 {"md5": "849f5676b55827697b118be0b5ca4d1c", "pid": "02787642X", "note": [{"label": ["Sous cette vedette, on trouve les romans américains en langue anglaise. Les romans non anglophones produits aux États-Unis se trouvent sous des vedettes telles que : Roman américain de langue française ; Roman mexicain-américain"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature américaine"}, {"authorized_access_point": "Roman anglophone"}], "related": [{"authorized_access_point": "Romanciers américains"}], "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Politique-fiction américaine"}, {"authorized_access_point": "Roman américain - Auteurs d'origine mexicaine"}, {"authorized_access_point": "Roman américain - Auteurs indiens d'Amérique"}, {"authorized_access_point": "Roman américain - Auteurs juifs"}, {"authorized_access_point": "Roman américain - Auteurs noirs américains"}, {"authorized_access_point": "Roman américain pour la jeunesse"}, {"authorized_access_point": "Roman biographique américain"}, {"authorized_access_point": "Roman d'amour américain"}, {"authorized_access_point": "Roman d'aventures américain"}, {"authorized_access_point": "Roman d'éducation américain"}, {"authorized_access_point": "Roman d'espionnage américain"}, {"authorized_access_point": "Roman de la route américain"}, {"authorized_access_point": "Roman de science-fiction américain"}, {"authorized_access_point": "Roman épistolaire américain"}, {"authorized_access_point": "Roman expérimental américain"}, {"authorized_access_point": "Roman familial américain"}, {"authorized_access_point": "Roman gothique américain"}, {"authorized_access_point": "Roman historique américain"}, {"authorized_access_point": "Roman pastoral américain"}, {"authorized_access_point": "Roman picaresque américain"}, {"authorized_access_point": "Roman policier américain"}, {"authorized_access_point": "Roman populaire américain"}, {"authorized_access_point": "Roman régionaliste américain"}, {"authorized_access_point": "Roman religieux américain"}, {"authorized_access_point": "Roman satirique américain"}, {"authorized_access_point": "Roman sentimental américain"}, {"authorized_access_point": "Westerns (littérature)"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85004317", "source": "LCSH"}], "authorized_access_point": "American fiction"}, {"source": "RVMLaval", "authorized_access_point": "Roman américain"}], "identifier": "http://www.idref.fr/02787642X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02787642X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11982432q", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11982432", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Roman américain"} 1 +2024-09-10 15:43:33.832898 2024-09-10 15:43:33.832902 1c9db05e-4ee3-4e47-b941-35a63f0646ad {"md5": "f4202fea2bf19d6cef98861c86358168", "pid": "028374878", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature néerlandaise"}], "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Récits de mer néerlandais"}, {"authorized_access_point": "Roman biographique néerlandais"}, {"authorized_access_point": "Roman courtois néerlandais"}, {"authorized_access_point": "Roman d'éducation néerlandais"}, {"authorized_access_point": "Roman historique néerlandais"}, {"authorized_access_point": "Roman policier néerlandais"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Roman néerlandais"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85040103", "source": "LCSH"}], "authorized_access_point": "Dutch fiction"}], "identifier": "http://www.idref.fr/028374878", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028374878", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12022290p", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12022290", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Roman néerlandais"} 1 +2024-09-10 15:43:33.901248 2024-09-10 15:43:33.901252 adb6e276-ec93-4622-8ab1-013a226010fe {"md5": "97875b12dbb672370893fc4f1b993d3b", "pid": "028932358", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature mexicaine"}], "related": [{"authorized_access_point": "Romanciers mexicains"}], "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Roman-photo mexicain"}, {"authorized_access_point": "Roman historique mexicain"}, {"authorized_access_point": "Roman picaresque mexicain"}, {"authorized_access_point": "Roman policier mexicain"}, {"authorized_access_point": "Roman social mexicain"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85084515", "source": "LCSH"}], "authorized_access_point": "Mexican fiction"}, {"source": "RVMLaval", "authorized_access_point": "Roman mexicain"}], "identifier": "http://www.idref.fr/028932358", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028932358", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb120665533", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12066553", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Roman mexicain"} 1 +2024-09-10 15:43:33.990504 2024-09-10 15:43:33.990508 e88ce092-6d5a-4361-9709-88b3aef23d03 {"md5": "c9182cff906e2c8eb3a773fea8da7c7b", "pid": "030120640", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature galloise"}], "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Roman autobiographique gallois"}, {"authorized_access_point": "Roman historique gallois"}, {"authorized_access_point": "Roman policier gallois"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85146067", "source": "LCSH"}], "authorized_access_point": "Welsh fiction"}, {"source": "RVMLaval", "authorized_access_point": "Roman gallois"}], "identifier": "http://www.idref.fr/030120640", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030120640", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb121600198", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12160019", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Roman gallois"} 1 +2024-09-10 15:43:34.076521 2024-09-10 15:43:34.076526 f8eff84d-56cc-446f-a966-5d25c076ae36 {"md5": "3dd0e923fb2cda629c479c09c10124a5", "pid": "03136795X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature comparée - Irlandaise et moyen-orientale"}, {"authorized_access_point": "Littérature comparée - Grecque et moyen-orientale"}, {"authorized_access_point": "Philologie moyen-orientale"}], "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Autobiographie moyen-orientale"}, {"authorized_access_point": "Littérature sémitique"}, {"authorized_access_point": "Poésie moyen-orientale"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Littérature moyen-orientale"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85090516", "source": "LCSH"}], "authorized_access_point": "Middle Eastern literature"}], "identifier": "http://www.idref.fr/03136795X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03136795X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb122596537", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12259653", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Littérature proche-orientale"], "authorized_access_point": "Littérature moyen-orientale"} 1 +2024-09-10 15:43:34.144621 2024-09-10 15:43:34.144624 89ffadfc-8e04-4c02-8438-81910dd7e623 {"md5": "853e0aeeaf17261786c49284018e076c", "pid": "033293074", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature belge de langue française"}, {"authorized_access_point": "Théâtre (genre littéraire) francophone"}], "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Farces belges de langue française"}, {"authorized_access_point": "Vaudevilles belges de langue française"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85051793", "source": "LCSH"}], "authorized_access_point": "Belgian drama (French)"}], "identifier": "http://www.idref.fr/033293074", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/033293074", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12417356g", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12417356", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Théâtre (genre littéraire) francophone belge", "Théâtre belge de langue française"], "authorized_access_point": "Théâtre (genre littéraire) belge de langue française"} 1 +2024-09-10 15:43:34.210671 2024-09-10 15:43:34.210679 658ce582-e1d8-460e-878c-fac11ab0e602 {"md5": "4d86e685f4d0e8a33e7c5e21e32291cc", "pid": "050174495", "note": [{"label": ["Sous cette vedette, on trouve la littérature italophone des États-Unis. La littérature américaine de langue anglaise par des auteurs d'origine italienne se trouve sous la vedette-matière Littérature américaine -- Auteurs d'origine italienne"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature - États-Unis"}], "related": [{"authorized_access_point": "Littérature américaine"}], "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Micronouvelles américaines de langue italienne"}, {"authorized_access_point": "Poésie américaine de langue italienne"}, {"authorized_access_point": "Théâtre (genre littéraire) américain de langue italienne"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85068775", "source": "LCSH"}], "authorized_access_point": "Italian American literature"}], "identifier": "http://www.idref.fr/050174495", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050174495", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13340210s", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13340210", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Littérature italo-américaine"], "authorized_access_point": "Littérature américaine de langue italienne"} 1 +2024-09-10 15:43:34.283832 2024-09-10 15:43:34.283835 93ce5d08-f518-42b2-918d-b9aabbb18e2a {"md5": "2dd34ea4f58a7185f588210c2995216a", "pid": "06008989X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature burkinabé de langue française"}, {"authorized_access_point": "Roman francophone"}], "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Roman biographique burkinabé de langue française"}, {"authorized_access_point": "Roman burkinabé de langue française pour la jeunesse"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh96004053", "source": "LCSH"}], "authorized_access_point": "Burkinabe fiction (French)"}, {"source": "RVMLaval", "authorized_access_point": "Roman burkinabé (français)"}], "identifier": "http://www.idref.fr/06008989X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/06008989X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb150866029", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF15086602", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Roman francophone burkinabé"], "authorized_access_point": "Roman burkinabé de langue française"} 1 +2024-09-10 15:43:34.359397 2024-09-10 15:43:34.359401 af99c66c-fe60-4ca3-8859-f9f8447d30bc {"md5": "99597307272d6063fc888dda66fec6de", "pid": "061604496", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature belge de langue française"}, {"authorized_access_point": "Nouvelles francophones"}], "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Nouvelles fantastiques belges de langue française"}, {"authorized_access_point": "Nouvelles policières belges de langue française"}, {"authorized_access_point": "Thriller (nouvelles) belge de langue française"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh97001385", "source": "LCSH"}], "authorized_access_point": "Short stories, Belgian (French)"}], "identifier": "http://www.idref.fr/061604496", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/061604496", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13769729v", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13769729", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Nouvelles francophones belges"], "authorized_access_point": "Nouvelles belges de langue française"} 1 +2024-09-10 15:43:34.421777 2024-09-10 15:43:34.42178 e8836876-a47b-495b-b795-e1efd9641946 {"md5": "5e0f33629fc07c53015921786eda9ebe", "pid": "178480231", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature portugaise"}], "related": [{"authorized_access_point": "Autobiographie portugaise"}], "bnf_type": "genre/forme Rameau", "identifier": "http://www.idref.fr/178480231", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/178480231", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16764890d", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16764890", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Mémoires portugais"], "authorized_access_point": "Mémoires (genre littéraire) portugais"} 1 +2024-09-10 15:43:34.485268 2024-09-10 15:43:34.485275 559702a9-c9ba-4812-8d42-c0aabf6f9322 {"md5": "17424388ebd2bf8ed60484c32f97e0d0", "pid": "238529495", "note": [{"label": ["Sous cette vedette, on trouve les oeuvres littéraires elles-mêmes. Les documents sur ces oeuvres se trouvent sous cette même vedette suivie de Histoire et critique ou de toute autre subdivision de sujet ou de forme appropriée"], "noteType": "general"}, {"label": ["Voir aussi aux romans autobiographiques des différents pays arabes, par ex. : Roman autobiographique algérien"], "noteType": "seeReference"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Autobiographie arabe"}], "bnf_type": "genre/forme Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh95009760", "source": "LCSH"}], "authorized_access_point": "Autobiographical fiction, Arabic"}], "identifier": "http://www.idref.fr/238529495", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/238529495", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb178386926", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF17838692", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Roman autobiographique arabe"} 1 +2024-09-10 15:43:34.550005 2024-09-10 15:43:34.550008 fd4cd8e7-2c19-4863-9c5e-4e9793d123ff {"md5": "0fe0ccf0ba8f157789390775b5544808", "pid": "263906442", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Estonien (langue)"}, {"authorized_access_point": "Chansons estoniennes"}, {"authorized_access_point": "Poésie estonienne"}], "bnf_type": "genre/forme Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "https://authorities.loc", "source": "LCSH"}], "authorized_access_point": "Songs, Finnish"}], "identifier": "http://www.idref.fr/263906442", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263906442", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18026157c", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18026157", "source": "BNF"}], "classification": [{"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "authorized_access_point": "Mélodies estoniennes"} 1 +2024-09-10 15:43:34.613543 2024-09-10 15:43:34.613548 d72e8146-23a5-470e-9acb-505793503b4b {"md5": "351b32a75489d2cf03e7a10224f1f30a", "pid": "264225260", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Roman canadien de langue anglaise"}, {"authorized_access_point": "Roman policier canadien"}], "bnf_type": "genre/forme Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85037272", "source": "LCSH"}], "authorized_access_point": "Detective and mystery stories, Canadian"}, {"source": "RVMLaval", "authorized_access_point": "Roman policier canadien-anglais"}], "identifier": "http://www.idref.fr/264225260", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/264225260", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18024108p", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18024108", "source": "BNF"}], "classification": [{"name": "Problèmes et services sociaux", "type": "bf:ClassificationDdc", "classificationPortion": "360"}, {"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Roman policier canadien-anglais"], "authorized_access_point": "Roman policier canadien de langue anglaise"} 1 +2024-09-10 15:43:34.684332 2024-09-10 15:43:34.684335 61771cb9-e5ea-40b4-9736-d705cbd8d9e3 {"md5": "2d4da267f374ceb02a8ddf26387bafdc", "pid": "276037685", "note": [{"label": ["Sous cette vedette, on trouve les micronouvelles américaines italophones des États-Unis"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature américaine de langue italienne"}], "bnf_type": "genre/forme Rameau", "identifier": "http://www.idref.fr/276037685", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/276037685", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181291307", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18129130", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Micronouvelles italiennes - États-Unis", "Micronouvelles italophones américaines"], "authorized_access_point": "Micronouvelles américaines de langue italienne"} 1 +2024-09-10 15:43:34.747279 2024-09-10 15:43:34.747282 fe7db1e5-e561-4ee6-8d07-1b610a06a9f6 {"md5": "e42c0da136c2b9aa2f34ef30115a8664", "pid": "278746896", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Roman irlandais"}], "bnf_type": "genre/forme Rameau", "identifier": "http://www.idref.fr/278746896", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278746896", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181471843", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18147184", "source": "BNF"}], "classification": [{"name": "Art et science militaires", "type": "bf:ClassificationDdc", "classificationPortion": "355"}, {"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}, {"name": "Histoire et géographie (généralités)", "type": "bf:ClassificationDdc", "classificationPortion": "900"}], "authorized_access_point": "Roman de guerre irlandais"} 1 +2024-09-10 15:43:34.820209 2024-09-10 15:43:34.820213 dc94757f-8d86-4384-8014-972b133df10f {"md5": "7cba3231391b4563d2e67a88129073fb", "pid": "278746918", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Roman canadien de langue anglaise"}], "bnf_type": "genre/forme Rameau", "identifier": "http://www.idref.fr/278746918", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278746918", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18148067g", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18148067", "source": "BNF"}], "classification": [{"name": "Problèmes et services sociaux", "type": "bf:ClassificationDdc", "classificationPortion": "360"}, {"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Roman à suspense anglophone canadien", "Roman à suspense canadien-anglais", "Roman à suspense canadien de langue anglaise", "Thriller (roman) anglophone canadien", "Thriller (roman) canadien-anglais"], "authorized_access_point": "Thriller (roman) canadien de langue anglaise"} 1 +2024-09-10 15:43:35.3418 2024-09-10 15:43:35.341803 8eae463b-39aa-458f-9112-6bba4e379959 {"md5": "d891e91d708e76319d83a043668916e3", "pid": "278747051", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Roman écossais"}], "bnf_type": "genre/forme Rameau", "identifier": "http://www.idref.fr/278747051", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278747051", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181487709", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18148770", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Roman de fantasy écossais pour adolescents", "Roman de fantasy écossais pour enfants", "Roman de fantasy écossais pour jeunes adultes"], "authorized_access_point": "Roman de fantasy écossais pour la jeunesse"} 1 +2024-09-10 15:43:35.404151 2024-09-10 15:43:35.404154 8d8a688c-1406-40e0-8a84-f6530c587319 {"md5": "d5c3569e41091f4a4ca66d6b79246aa3", "pid": "27874706X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Théâtre (genre littéraire) belge de langue française"}], "bnf_type": "genre/forme Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh96004610", "source": "LCSH"}], "authorized_access_point": "Belgian farces (French)"}, {"source": "RVMLaval", "authorized_access_point": "Farces belges (françaises)"}], "identifier": "http://www.idref.fr/27874706X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/27874706X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18148776c", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18148776", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Farces francophones belges"], "authorized_access_point": "Farces belges de langue française"} 1 +2024-09-10 15:43:35.479574 2024-09-10 15:43:35.479577 fe09b988-cec9-416c-9164-ffcf387d089d {"md5": "2a5a3101cccca3c3bd14eaa9adf8093b", "pid": "278747086", "note": [{"label": ["Sous cette vedette, on trouve les romans autobiographiques algériens de langue arabe ainsi que les romans autobiographiques algériens en diverses langues"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Roman algérien"}], "bnf_type": "genre/forme Rameau", "identifier": "http://www.idref.fr/278747086", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278747086", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18148797b", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18148797", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Roman autobiographique algérien de langue arabe", "Roman autobiographique arabe - Algérie"], "authorized_access_point": "Roman autobiographique algérien"} 1 +2024-09-10 15:43:35.542538 2024-09-10 15:43:35.542542 a83a6e96-0802-4fb9-a636-38a4c6cd53d8 {"md5": "a5817bc7087aa66b4f11fad1c31880aa", "pid": "278747094", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature qatarienne"}], "bnf_type": "genre/forme Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2001000526", "source": "LCSH"}], "authorized_access_point": "Arabic poetry--Qatar"}, {"source": "RVMLaval", "authorized_access_point": "Poésie qatarienne"}], "identifier": "http://www.idref.fr/278747094", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278747094", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181488639", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18148863", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Poésie arabe - Qatar", "Poésie du Qatar", "Poésie qatarie", "Poésie qatarie de langue arabe", "Poésie qatarienne de langue arabe", "Poésie qatariote", "Poésie qatariote de langue arabe"], "authorized_access_point": "Poésie qatarienne"} 1 +2024-09-10 15:43:35.612204 2024-09-10 15:43:35.612208 dfcaf410-ad7b-4c2e-9ce6-f8ee544edbcc {"md5": "3772732c08c35337fa07a93c0b7faa01", "pid": "278747108", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Poésie qatarienne"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2001000527", "source": "LCSH"}], "authorized_access_point": "Arabic literature--Qatar"}, {"source": "RVMLaval", "authorized_access_point": "Littérature qatarienne"}], "identifier": "http://www.idref.fr/278747108", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278747108", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18148867p", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18148867", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Littérature arabe - Qatar", "Littérature qatarie", "Littérature qatarie de langue arabe", "Littérature qatarienne de langue arabe", "Littérature qatariote", "Littérature qatariote de langue arabe"], "authorized_access_point": "Littérature qatarienne"} 1 +2024-09-10 15:43:35.683447 2024-09-10 15:43:35.683453 1abc29ae-0cc3-485b-bfd3-d16fd43af4ce {"md5": "4e97eedfb86992385c24af642328b94c", "pid": "278747116", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Biographie néerlandaise"}, {"authorized_access_point": "Roman néerlandais"}], "bnf_type": "genre/forme Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2015001131", "source": "LCSH"}], "authorized_access_point": "Biographical fiction, Dutch"}, {"source": "RVMLaval", "authorized_access_point": "Roman biographique néerlandais"}], "identifier": "http://www.idref.fr/278747116", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278747116", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18148871x", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18148871", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Roman biographique néerlandais"} 1 +2024-09-10 15:43:35.753314 2024-09-10 15:43:35.753318 e12056d6-d311-4e54-95e6-afe8e74a54b8 {"md5": "0179f49872866c32976c64df1db3abe2", "pid": "278747124", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature danoise"}], "related": [{"authorized_access_point": "Autobiographie danoise"}, {"authorized_access_point": "Journaux intimes danois"}], "bnf_type": "genre/forme Rameau", "identifier": "http://www.idref.fr/278747124", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278747124", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18148880w", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18148880", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Mémoires danois"], "authorized_access_point": "Mémoires (genre littéraire) danois"} 1 +2024-09-10 15:43:35.813117 2024-09-10 15:43:35.81312 4480f583-8ddb-43bd-9d69-69edb685cbf1 {"md5": "b72fe0ab6c187365ed07aa4aac9f3bce", "pid": "278747132", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature espagnole"}], "related": [{"authorized_access_point": "Autobiographie espagnole"}, {"authorized_access_point": "Journaux intimes espagnols"}], "bnf_type": "genre/forme Rameau", "identifier": "http://www.idref.fr/278747132", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278747132", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181488848", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18148884", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Mémoires espagnols"], "authorized_access_point": "Mémoires (genre littéraire) espagnols"} 1 +2024-09-10 15:43:35.878902 2024-09-10 15:43:35.878905 675adda7-e57e-4e1b-96c0-e4ea7c95936a {"md5": "35b0239bf521c68f0ebdf731924a4220", "pid": "278747140", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Théâtre (genre littéraire) belge de langue française"}], "bnf_type": "genre/forme Rameau", "identifier": "http://www.idref.fr/278747140", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278747140", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18148900p", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18148900", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Vaudevilles francophones belges"], "authorized_access_point": "Vaudevilles belges de langue française"} 1 +2024-09-10 15:43:35.938335 2024-09-10 15:43:35.938339 e3e5317b-b38b-47f6-936b-e1ad736142c0 {"md5": "61da6db8dda9968e6f83b7ac2b28b846", "pid": "278747159", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Roman bosniaque"}], "bnf_type": "genre/forme Rameau", "identifier": "http://www.idref.fr/278747159", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278747159", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18148911b", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18148911", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Roman humoristique bosniaque"} 1 +2024-09-10 15:43:36.004439 2024-09-10 15:43:36.004442 4e9cc048-0222-4d12-ad01-b8d8dc33250f {"md5": "ebca3caff18c1ec210a0bd283daf58a2", "pid": "278747213", "note": [{"label": ["Sous cette vedette, on trouve les compositions (qui n'ont pas de forme ou de genre particulier) pour orgue, violoncelle et orchestre, et les recueils de compositions de formes et de genres différents pour cette même formation"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Concertos (violoncelle et orgue)"}], "identifier": "http://www.idref.fr/278747213", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278747213", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181495015", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18149501", "source": "BNF"}], "classification": [{"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "authorized_access_point": "Orgue, violoncelle et orchestre"} 1 +2024-09-10 15:43:36.068839 2024-09-10 15:43:36.068843 d4ab55c2-bb0f-42b0-8b62-516f5436cd9b {"md5": "ad87b4d419c145be36fc982a978fff99", "pid": "278747221", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Orgue, violoncelle et orchestre"}], "bnf_type": "genre/forme Rameau", "identifier": "http://www.idref.fr/278747221", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278747221", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18149502h", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18149502", "source": "BNF"}], "classification": [{"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "authorized_access_point": "Concertos (violoncelle et orgue)"} 1 +2024-09-10 15:43:36.138199 2024-09-10 15:43:36.138202 9f59bc12-f6f4-4646-b44c-46489a6b9f0b {"md5": "537a17aafb69941f63ab80ac5fa5b95a", "pid": "278747248", "note": [{"label": ["Sous cette vedette, on trouve les compositions (qui n'ont pas de forme ou de genre particulier) pour voix (employée comme un instrument), piano, flûte à bec et guitare, et les recueils de compositions de formes et de genres différents pour cette même formation"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Quatuors ([distributions instrumentales])"}], "bnf_type": "genre/forme Rameau", "identifier": "http://www.idref.fr/278747248", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278747248", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18150117g", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18150117", "source": "BNF"}], "classification": [{"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "authorized_access_point": "Quatuors (voix, piano, flûte à bec, guitare)"} 1 +2024-09-10 15:43:36.20169 2024-09-10 15:43:36.201694 ff3e41db-4ce6-4697-b769-8f144d5d9c12 {"md5": "4f0c54f0a8e10dd23042bc7b08cacfa8", "pid": "278747256", "note": [{"label": ["Sous cette vedette, on trouve les compositions pour un ou plusieurs récitant(s), soliste(s), choeur(s) d'hommes et ensemble instrumental"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "genre/forme Rameau", "identifier": "http://www.idref.fr/278747256", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278747256", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18150337n", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18150337", "source": "BNF"}], "classification": [{"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "authorized_access_point": "Récitants, solistes, choeurs d'hommes et ensemble instrumental"} 1 +2024-09-10 15:43:36.266616 2024-09-10 15:43:36.266619 acf0d3a1-d350-472b-a280-4dcae78a9287 {"md5": "d8a16c9663fa7e360799a361af0a34f6", "pid": "278747264", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "genre/forme Rameau", "identifier": "http://www.idref.fr/278747264", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278747264", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18150473s", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18150473", "source": "BNF"}], "classification": [{"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "authorized_access_point": "Sextuors de cuivres (trombones (2), trompettes (3), tuba)"} 1 +2024-09-10 15:43:36.332954 2024-09-10 15:43:36.332957 4794552e-7c1a-4107-84b9-338e513df2f8 {"md5": "bba6930caa055702eafbbf327153aade", "pid": "278747272", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Musique électroacoustique mixte ([distributions instrumentales])"}], "related": [{"authorized_access_point": "Orgue et ensemble à percussion"}], "bnf_type": "genre/forme Rameau", "identifier": "http://www.idref.fr/278747272", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278747272", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181505701", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18150570", "source": "BNF"}], "classification": [{"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "variant_access_point": ["PiOrgue, ensemble à percussion et musique électroacoustique"], "authorized_access_point": "Musique électroacoustique mixte (orgue et ensemble à percussion)"} 1 +2024-09-10 15:43:36.416743 2024-09-10 15:43:36.416748 92d30e07-ea8b-4181-8882-017d7b2d574a {"md5": "59e856a97bddb345cc49f27eb48daa88", "pid": "278747299", "note": [{"label": ["Sous cette vedette, on trouve les compositions (qui n'ont pas de forme ou de genre particulier) pour flûte, percussion et violoncelle, et les recueils de compositions de formes et de genres différents pour cette même formation"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Trios ([distributions instrumentales])"}], "bnf_type": "genre/forme Rameau", "identifier": "http://www.idref.fr/278747299", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278747299", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181506600", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18150660", "source": "BNF"}], "classification": [{"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "authorized_access_point": "Trios (flûte, percussion, violoncelle)"} 1 +2024-09-10 15:43:36.48455 2024-09-10 15:43:36.484555 dc34816a-17b3-42eb-bd72-ce68296abfd1 {"md5": "390ecef941bc88ef56e8143fe2996238", "pid": "278747302", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Musique électroacoustique mixte ([distributions instrumentales])"}], "related": [{"authorized_access_point": "Flûte et orchestre"}], "bnf_type": "genre/forme Rameau", "identifier": "http://www.idref.fr/278747302", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278747302", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18150800p", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18150800", "source": "BNF"}], "classification": [{"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "authorized_access_point": "Musique électroacoustique mixte (flûte et orchestre)"} 1 +2024-09-10 15:43:36.548875 2024-09-10 15:43:36.548878 dcf89aff-63e0-440a-a885-5a4e0ae896b1 {"md5": "2fd0edc5519f1e2c83f1a3431678168e", "pid": "279034768", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Nouvelles belges de langue française"}], "bnf_type": "genre/forme Rameau", "identifier": "http://www.idref.fr/279034768", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279034768", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18150205r", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18150205", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Thriller (nouvelles) belge de langue française"} 1 +2024-09-10 15:43:36.618303 2024-09-10 15:43:36.618308 fd826f83-cf12-41d6-ae1b-5106cc29ce65 {"md5": "ae803cb5116ed92886c2d94883d0d887", "pid": "279034776", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Roman français pour la jeunesse"}], "bnf_type": "genre/forme Rameau", "identifier": "http://www.idref.fr/279034776", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279034776", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18150214q", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18150214", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Roman d'épouvante pour la jeunesse français"], "authorized_access_point": "Roman d'épouvante français pour la jeunesse"} 1 +2024-09-10 15:43:36.692496 2024-09-10 15:43:36.6925 ac08b5d4-984b-4e6e-b7c7-4a54e0f216b0 {"md5": "755dbd2440ec876fbc777e9879632b50", "pid": "279034784", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature érotique américaine"}], "bnf_type": "genre/forme Rameau", "identifier": "http://www.idref.fr/279034784", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279034784", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18150222b", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18150222", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Dark romance américaine"} 1 +2024-09-10 15:43:36.876473 2024-09-10 15:43:36.876478 b3b3f66d-b25d-4d4d-95ae-6dfb5358df66 {"md5": "9a844ff9d412a3fb54dbe5f42b6974c2", "pid": "279034865", "note": [{"label": ["Sous cette vedette, on trouve les compositions (qui n'ont pas de forme ou de genre particulier) pour synthétiseur et orchestre, et les recueils de compositions de formes et de genres différents pour synthétiseur et ensemble à vent"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "genre/forme Rameau", "identifier": "http://www.idref.fr/279034865", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279034865", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181515572", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18151557", "source": "BNF"}], "classification": [{"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "authorized_access_point": "Synthétiseur et orchestre"} 1 +2024-09-10 15:43:36.94682 2024-09-10 15:43:36.946825 ff576baa-58f7-4c02-86e3-38c1e49c0eae {"md5": "2dc885060a5083c520d2211b11540f9c", "pid": "279034873", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Roman gallois"}], "bnf_type": "genre/forme Rameau", "identifier": "http://www.idref.fr/279034873", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279034873", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18151562n", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18151562", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Roman historique gallois"} 1 +2024-09-10 15:43:37.008088 2024-09-10 15:43:37.008093 061dd4a2-490a-4424-9eb5-0e5aa98cc8c0 {"md5": "da3385db70f62d917a6a64e9b7d8e3f9", "pid": "27903489X", "note": [{"label": ["Sous cette vedette, on trouve les compositions (qui n'ont pas de forme ou de genre particulier) pour clavecin et ensemble de clarinettes, et les recueils de compositions de formes et de genres différents pour clavecin et ensemble à vent"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "genre/forme Rameau", "identifier": "http://www.idref.fr/27903489X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/27903489X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181518525", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18151852", "source": "BNF"}], "classification": [{"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "authorized_access_point": "Clavecin et ensemble de clarinettes"} 1 +2024-09-10 15:43:37.079053 2024-09-10 15:43:37.079057 1b34713e-9fef-4833-b158-48e13870012b {"md5": "a35afb5a58260835c73d8f6b772860b0", "pid": "279034903", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Roman luxembourgeois de langue allemande"}], "bnf_type": "genre/forme Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Roman luxembourgeois"}], "identifier": "http://www.idref.fr/279034903", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279034903", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181519486", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18151948", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Roman psychologique germanophone luxembourgeois"], "authorized_access_point": "Roman psychologique luxembourgeois de langue allemande"} 1 +2024-09-10 15:43:37.165896 2024-09-10 15:43:37.1659 d68f1f65-e0ab-4cdc-9978-a663d1195f3d {"md5": "8b6453747bdda87e529928e5681ff96c", "pid": "279035039", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Roman guatémaltèque"}], "bnf_type": "genre/forme Rameau", "identifier": "http://www.idref.fr/279035039", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279035039", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18153143r", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18153143", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Roman policier guatemaltèque"} 1 +2024-09-10 15:43:37.234007 2024-09-10 15:43:37.23401 899c8973-118e-4b68-a19b-2aff1d62acc7 {"md5": "bef7ec1cc4e76072913df0584ca02dfd", "pid": "027275639", "note": [{"label": ["Sous cette vedette, on trouve les recueils de littérature belge francophone de divers genres"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature belge"}, {"authorized_access_point": "Littérature francophone"}], "related": [{"authorized_access_point": "Écrivains belges de langue française"}, {"authorized_access_point": "Littérature comparée - Belge de langue française et française"}, {"authorized_access_point": "Littérature comparée - Belge de langue française et italienne"}], "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Autobiographie belge de langue française"}, {"authorized_access_point": "Biographie belge de langue française"}, {"authorized_access_point": "Contes belges de langue française"}, {"authorized_access_point": "Essai (genre littéraire) belge de langue française"}, {"authorized_access_point": "Littérature belge de langue française - 1830-1900"}, {"authorized_access_point": "Littérature belge de langue française pour la jeunesse"}, {"authorized_access_point": "Littérature didactique belge de langue française"}, {"authorized_access_point": "Littérature épistolaire belge de langue française"}, {"authorized_access_point": "Littérature érotique belge de langue française"}, {"authorized_access_point": "Littérature expérimentale belge de langue française"}, {"authorized_access_point": "Littérature fantastique belge de langue française"}, {"authorized_access_point": "Nouvelles belges de langue française"}, {"authorized_access_point": "Poésie belge de langue française"}, {"authorized_access_point": "Roman belge de langue française"}, {"authorized_access_point": "Satire belge de langue française"}, {"authorized_access_point": "Théâtre (genre littéraire) belge de langue française"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85051872", "source": "LCSH"}], "authorized_access_point": "Belgian literature (French)"}, {"source": "RVMLaval", "authorized_access_point": "Littérature belge (française)"}], "identifier": "http://www.idref.fr/027275639", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027275639", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119352994", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11935299", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Littérature francophone belge"], "authorized_access_point": "Littérature belge de langue française"} 1 +2024-09-10 15:43:37.31322 2024-09-10 15:43:37.313224 1418ae82-d42d-47a4-8140-2a3d3c32c6eb {"md5": "848cae59b4f9183f5088feece5cea7d6", "pid": "027362434", "note": [{"label": ["Sous cette vedette, on trouve les recueils de littérature suisse francophone de divers genres"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature francophone"}, {"authorized_access_point": "Littérature suisse"}], "related": [{"authorized_access_point": "Écrivains suisses de langue française"}], "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Contes suisses de langue française"}, {"authorized_access_point": "Dark romance suisse de langue française"}, {"authorized_access_point": "Essai (genre littéraire) suisse de langue française"}, {"authorized_access_point": "Fantasy suisse de langue française"}, {"authorized_access_point": "Littérature dialectale française - Suisse"}, {"authorized_access_point": "Littérature policière suisse de langue française"}, {"authorized_access_point": "Littérature révolutionnaire suisse de langue française"}, {"authorized_access_point": "Littérature suisse de langue française pour la jeunesse"}, {"authorized_access_point": "Nouvelles suisses de langue française"}, {"authorized_access_point": "Poésie suisse de langue française"}, {"authorized_access_point": "Proverbes suisses de langue française"}, {"authorized_access_point": "Roman suisse de langue française"}, {"authorized_access_point": "Science-fiction suisse de langue française"}, {"authorized_access_point": "Théâtre (genre littéraire) suisse de langue française"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85051883", "source": "LCSH"}], "authorized_access_point": "Swiss literature (French)"}, {"source": "RVMLaval", "authorized_access_point": "Littérature suisse (française)"}], "identifier": "http://www.idref.fr/027362434", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027362434", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11942062q", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11942062", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Littérature francophone suisse", "Littérature romande"], "authorized_access_point": "Littérature suisse de langue française"} 1 +2024-09-10 15:43:37.385709 2024-09-10 15:43:37.385714 6504cbd4-0d7d-41d3-844e-dbfe6c6a8a33 {"md5": "13cf85dd89b42db3a13d19c0ca92906f", "pid": "027612163", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature canadienne de langue anglaise"}, {"authorized_access_point": "Roman anglophone"}, {"authorized_access_point": "Roman canadien"}], "related": [{"authorized_access_point": "Romanciers canadiens de langue anglaise"}], "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Roman autobiographique canadien de langue anglaise"}, {"authorized_access_point": "Roman d'aventures canadien de langue anglaise"}, {"authorized_access_point": "Roman historique canadien de langue anglaise"}, {"authorized_access_point": "Roman policier canadien de langue anglaise"}, {"authorized_access_point": "Roman sentimental canadien de langue anglaise"}, {"authorized_access_point": "Thriller (roman) canadien de langue anglaise"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85019380", "source": "LCSH"}], "authorized_access_point": "Canadian fiction"}, {"source": "RVMLaval", "authorized_access_point": "Roman canadien-anglais"}], "identifier": "http://www.idref.fr/027612163", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027612163", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11961467q", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11961467", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Roman anglophone canadien"], "authorized_access_point": "Roman canadien de langue anglaise"} 1 +2024-09-10 15:43:37.462067 2024-09-10 15:43:37.462072 735b56ca-5290-4c90-8a3f-0884d4c33381 {"md5": "9e4d39fe78653afafba6f70e95e9242a", "pid": "029385571", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature turque"}], "related": [{"authorized_access_point": "Poètes turcs"}, {"authorized_access_point": "Chansons turques"}, {"authorized_access_point": "Prose turque"}], "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Élégies turques"}, {"authorized_access_point": "Épopées turques"}, {"authorized_access_point": "Poésie contestataire turque"}, {"authorized_access_point": "Poésie d'amour turque"}, {"authorized_access_point": "Poésie islamique turque"}, {"authorized_access_point": "Poésie patriotique turque"}, {"authorized_access_point": "Poésie populaire turque"}, {"authorized_access_point": "Poésie turque - 13e-19e siècles (dîvan)"}, {"authorized_access_point": "Poésie turque pour la jeunesse"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85138898", "source": "LCSH"}], "authorized_access_point": "Turkish poetry"}, {"source": "RVMLaval", "authorized_access_point": "Poésie turque"}], "identifier": "http://www.idref.fr/029385571", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029385571", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb121024006", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12102400", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Poésie turque"} 1 +2024-09-10 15:43:37.54359 2024-09-10 15:43:37.543592 3c5d8134-004c-4509-af89-b0c362a9f5fd {"md5": "03b05a15fdbe97c3110f76a86a1886fc", "pid": "029877555", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature didactique belge de langue française"}], "related": [{"authorized_access_point": "Aphorismes et apophtegmes belges de langue française"}], "bnf_type": "genre/forme Rameau", "identifier": "http://www.idref.fr/029877555", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029877555", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12141099k", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12141099", "source": "BNF"}], "classification": [{"name": "Ethnologie, anthropologie, folklore", "type": "bf:ClassificationDdc", "classificationPortion": "390"}, {"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Proverbes francophones belges"], "authorized_access_point": "Proverbes belges de langue française"} 1 +2024-09-10 15:43:37.608534 2024-09-10 15:43:37.608538 ff7d0963-f873-403a-b31d-8645d78a97cf {"md5": "70de566b1838a53d885c8fccf91b5bcd", "pid": "033689725", "note": [{"label": ["Encycl. universalis (art. : Policier, roman ; Pigasse, Albert (1887-1985)) - http://www.universalis-edu.com (2012-06-21)", "Dict. des littératures de langue française / J.-P. de Beaumarchais, D. Couty, A. Rey, 1987 (art. : Roman policier)", "Stanislas-André Steeman. Aux limites de la fiction policière / A. Huftier, 2006", "Dict. des littératures policières / C. Mesplède, 2007 : whodunit", "Dict. du roman policier / J. Tulard, 2005 : whodunit"], "noteType": "dataSource"}, {"label": ["Dict. des termes littéraires, 2005. - Lexique des termes littéraires / M. Jarrety, 2001"], "noteType": "dataNotFound"}, {"label": ["Sous cette vedette, on trouve les recueils de romans d'énigme de divers pays ou en diverses langues"], "noteType": "general"}, {"label": ["Voir aussi les vedettes du type Roman d'énigme [adjectif de langue, de nationalité ou géographique]"], "noteType": "seeReference"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Roman policier"}], "related": [{"authorized_access_point": "Cosy mystery"}], "bnf_type": "genre/forme Rameau", "identifier": "http://www.idref.fr/033689725", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/033689725", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12453179f", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12453179", "source": "BNF"}], "classification": [{"name": "Problèmes et services sociaux", "type": "bf:ClassificationDdc", "classificationPortion": "360"}, {"name": "Poésie", "type": "bf:ClassificationDdc", "classificationPortion": "801"}], "variant_access_point": ["Énigme (roman)", "Roman à énigme", "Roman d'énigme en chambre close", "Roman de détection", "Roman de mystère", "Roman jeu", "Roman policier à énigme", "Roman problème", "Whodunit"], "authorized_access_point": "Roman d'énigme"} 1 +2024-09-10 15:43:38.160823 2024-09-10 15:43:38.160828 5cbc064a-5526-41f8-8b5d-5f9054d76667 {"md5": "81172e7db2621c51bb36c21b9c668fe4", "pid": "279307411", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Poésie belge de langue française"}, {"authorized_access_point": "Poésie visuelle belge"}], "bnf_type": "genre/forme Rameau", "identifier": "http://www.idref.fr/279307411", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307411", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181529938", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18152993", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Poésie visuelle francophone belge"], "authorized_access_point": "Poésie visuelle belge de langue française"} 1 +2024-09-10 15:43:37.668116 2024-09-10 15:43:37.668119 4089ed0b-5fc5-464b-8384-a2c4b2dccdf6 {"md5": "6c9fc611c6593423ba16038786cfb955", "pid": "035381795", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Roman scandinave"}, {"authorized_access_point": "Littérature danoise"}], "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Roman biographique danois"}, {"authorized_access_point": "Roman d'espionnage danois"}, {"authorized_access_point": "Roman de science-fiction danois pour la jeunesse"}, {"authorized_access_point": "Roman fantastique danois"}, {"authorized_access_point": "Roman historique danois"}, {"authorized_access_point": "Roman policier danois"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85035729", "source": "LCSH"}], "authorized_access_point": "Danish fiction"}], "identifier": "http://www.idref.fr/035381795", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035381795", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13185670f", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13185670", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Roman danois"} 1 +2024-09-10 15:43:37.736533 2024-09-10 15:43:37.736537 7a40356c-5727-4379-9945-6d5f82858673 {"md5": "d50fc3c115493531214731cd1c771726", "pid": "174718276", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature suisse de langue française"}, {"authorized_access_point": "Roman francophone"}, {"authorized_access_point": "Roman suisse"}], "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Roman biographique suisse de langue française"}, {"authorized_access_point": "Roman d'éducation suisse de langue française"}, {"authorized_access_point": "Roman fantastique suisse de langue française"}, {"authorized_access_point": "Roman historique suisse de langue française"}, {"authorized_access_point": "Roman humoristique suisse de langue française"}, {"authorized_access_point": "Roman policier suisse de langue française"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh96002305", "source": "LCSH"}], "authorized_access_point": "Swiss fiction (French)"}, {"source": "RVMLaval", "authorized_access_point": "Roman suisse (français)"}], "identifier": "http://www.idref.fr/174718276", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/174718276", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16732628b", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16732628", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Roman francophone suisse"], "authorized_access_point": "Roman suisse de langue française"} 1 +2024-09-10 15:43:37.804693 2024-09-10 15:43:37.804697 1e2cc90d-cafd-4f08-a368-feb5438ad28c {"md5": "5956022c8cc470bcd83c6510aa37f3bc", "pid": "278747078", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature didactique belge de langue française"}], "related": [{"authorized_access_point": "Aphorismes et apophtegmes belges de langue française"}], "bnf_type": "genre/forme Rameau", "identifier": "http://www.idref.fr/278747078", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278747078", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18148788c", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18148788", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Maximes francophones belges"], "authorized_access_point": "Maximes belges de langue française"} 1 +2024-09-10 15:43:37.87101 2024-09-10 15:43:37.871017 5dcdf7af-12f7-4e94-9029-8e6ead5e7aa8 {"md5": "594128679b5fa48c6075dcb5041fd33d", "pid": "279034954", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature kikuyu"}], "bnf_type": "genre/forme Rameau", "identifier": "http://www.idref.fr/279034954", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279034954", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181526598", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18152659", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Épopées kikuyu"} 1 +2024-09-10 15:43:37.952568 2024-09-10 15:43:37.952574 9c8e5f1f-48b5-45bb-8a8b-da69ee8e9647 {"md5": "6fed94e505cf1711e018ad67ca50c7f8", "pid": "279307381", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Poésie géorgienne"}], "bnf_type": "genre/forme Rameau", "identifier": "http://www.idref.fr/279307381", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307381", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18152987b", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18152987", "source": "BNF"}], "classification": [{"name": "Sciences politiques", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Poésie contestataire géorgienne"} 1 +2024-09-10 15:43:38.023242 2024-09-10 15:43:38.023245 cf4ad0eb-d329-471a-a554-ce8e4a50740f {"md5": "44304aab8f07c5b6e018a54a769203c1", "pid": "27930739X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature contestataire turque"}, {"authorized_access_point": "Poésie turque"}], "bnf_type": "genre/forme Rameau", "identifier": "http://www.idref.fr/27930739X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/27930739X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181529891", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18152989", "source": "BNF"}], "classification": [{"name": "Sciences politiques", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Poésie contestataire turque"} 1 +2024-09-10 15:43:38.223037 2024-09-10 15:43:38.223043 a97b7825-1f0d-48ff-9fb8-16e1e3bb789a {"md5": "d9d046f642c63c7ff654b818d105328b", "pid": "27930742X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Roman canadien de langue anglaise"}, {"authorized_access_point": "Roman sentimental canadien"}], "bnf_type": "genre/forme Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Histoires d'amour canadiennes-anglaises"}], "identifier": "http://www.idref.fr/27930742X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/27930742X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18153031g", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18153031", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Roman sentimental canadien-anglais"], "authorized_access_point": "Roman sentimental canadien de langue anglaise"} 1 +2024-09-10 15:43:38.288794 2024-09-10 15:43:38.288798 68eb42f6-5b0d-4501-8e06-ed629aa0e17b {"md5": "d6eda1c15c06684b5c0bef6d4593ec7c", "pid": "279307438", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature suisse de langue française"}], "bnf_type": "genre/forme Rameau", "identifier": "http://www.idref.fr/279307438", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307438", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18153842b", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18153842", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Dark romance francophone suisse"], "authorized_access_point": "Dark romance suisse de langue française"} 1 +2024-09-10 15:43:38.372053 2024-09-10 15:43:38.372058 17e3eb8a-64cf-4d5b-97a6-4b20534fd406 {"md5": "30908a93dae85a8641b1aa19659a8b04", "pid": "279307446", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Roman danois"}], "bnf_type": "genre/forme Rameau", "identifier": "http://www.idref.fr/279307446", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307446", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181538472", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18153847", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Roman de science-fiction pour la jeunesse danois"], "authorized_access_point": "Roman de science-fiction danois pour la jeunesse"} 1 +2024-09-10 15:43:38.460086 2024-09-10 15:43:38.46009 56d106d2-62d2-447d-a077-4a897e3f0834 {"md5": "6962f6021145534f62fce7a1e65bc2ee", "pid": "279307454", "note": [{"label": ["Tapis à histoire - https://educdome.puy-de-dome.fr/ressources/6468 (2024-06-21)", "Les tapis de lecture : un pont entre l'enfant et le livre / C. Frasson-Cochet, interviewée par M. de Miribel [in] Veiller au confort des lecteurs, 2015", "Le raconte-tapis : un outil d'appropriation, d'expression et de transmission du plaisir de lire / V. Guilbaud, 2007"], "noteType": "dataSource"}, {"label": ["\\"Raconte-tapis\\" est une appellation commerciale"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Éducation de la première enfance - Méthodes actives"}], "bnf_type": "genre/forme Rameau", "identifier": "http://www.idref.fr/279307454", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307454", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18153935b", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18153935", "source": "BNF"}], "classification": [{"name": "Education et enseignement", "type": "bf:ClassificationDdc", "classificationPortion": "370"}, {"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Raconte-tapis (marque déposée)", "Tapis à histoire", "Tapis bavard", "Tapis narratif"], "authorized_access_point": "Tapis de lecture"} 1 +2024-09-10 15:43:38.5268 2024-09-10 15:43:38.526802 f899ac77-c61a-4348-83d0-43240bd8fbf7 {"md5": "0f9988e07be77c3c9b6b58deb453d3ed", "pid": "279307543", "note": [{"label": ["Sous cette vedette, on trouve les compositions (qui n'ont pas de forme ou de genre particulier) pour basson, flûte, hautbois et harpe, et les recueils de compositions de formes et de genres différents pour cette même formation"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Quatuors ([distributions instrumentales])"}], "bnf_type": "genre/forme Rameau", "identifier": "http://www.idref.fr/279307543", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307543", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18155078m", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18155078", "source": "BNF"}], "classification": [{"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "authorized_access_point": "Quatuors (basson, flûte, hautbois, harpe)"} 1 +2024-09-10 15:43:38.593693 2024-09-10 15:43:38.593698 a1aa655c-900c-4db8-ab74-c594c5f63918 {"md5": "72bec42c5a23388cbf7c9db1973b747e", "pid": "279307608", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Roman uruguayen"}], "bnf_type": "genre/forme Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "https://lccn.loc.gov/sh2009007782", "source": "LCSH"}], "authorized_access_point": "Historical fiction, Uruguayan"}], "identifier": "http://www.idref.fr/279307608", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307608", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18155352r", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18155352", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}, {"name": "Histoire et géographie (généralités)", "type": "bf:ClassificationDdc", "classificationPortion": "900"}], "authorized_access_point": "Roman historique uruguayen"} 1 +2024-09-10 15:43:38.659316 2024-09-10 15:43:38.659319 48b47eda-1986-47fc-8e21-7ee3ea493aec {"md5": "d4b1a1efa4b5f86d3e6f572b044cd828", "pid": "279307616", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Roman arménien"}], "bnf_type": "genre/forme Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "https://id.loc.gov/authorities/subjects/sh89000504", "source": "LCSH"}], "authorized_access_point": "Historical fiction, Armenian"}], "identifier": "http://www.idref.fr/279307616", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307616", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18155375d", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18155375", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}, {"name": "Histoire et géographie (généralités)", "type": "bf:ClassificationDdc", "classificationPortion": "900"}], "authorized_access_point": "Roman historique arménien"} 1 +2024-09-10 15:43:38.735321 2024-09-10 15:43:38.735325 f9e4ad4e-2604-4458-a8b3-9aecf484fc21 {"md5": "952302d472403ba4c61db68dbcb2885f", "pid": "279307640", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Nouvelles pour la jeunesse"}, {"authorized_access_point": "Nouvelles fantastiques"}], "bnf_type": "genre/forme Rameau", "identifier": "http://www.idref.fr/279307640", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307640", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18155525d", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18155525", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Nouvelles fantastiques pour adolescents", "Nouvelles fantastiques pour enfants", "Nouvelles fantastiques pour jeunes adultes"], "authorized_access_point": "Nouvelles fantastiques pour la jeunesse"} 1 +2024-09-10 15:43:38.804169 2024-09-10 15:43:38.804173 ef62b1f0-3480-4204-9626-b4070a3dbf75 {"md5": "ea12a388cd63b40f5831157ad1f070eb", "pid": "279307659", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Poésie yiddish"}], "bnf_type": "genre/forme Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "https://lccn.loc.gov/sh2022007681", "source": "LCSH"}], "authorized_access_point": "Epic poetry, Yiddish"}], "identifier": "http://www.idref.fr/279307659", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307659", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181555300", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18155530", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Épopées yiddish"} 1 +2024-09-10 15:43:38.886461 2024-09-10 15:43:38.886464 aff37cf6-eba7-4f2f-ba48-0168feb8c01a {"md5": "b784e6cdb05956f895e9dc6e4f70105b", "pid": "279307667", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Roman fantastique suisse de langue française"}], "bnf_type": "genre/forme Rameau", "identifier": "http://www.idref.fr/279307667", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307667", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181555362", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18155536", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Roman fantastique francophone suisse pour adolescents", "Roman fantastique francophone suisse pour enfants", "Roman fantastique francophone suisse pour jeunes adultes", "Roman fantastique francophone suisse pour la jeunesse", "Roman fantastique suisse de langue française pour adolescents", "Roman fantastique suisse de langue française pour enfants", "Roman fantastique suisse de langue française pour jeunes adultes"], "authorized_access_point": "Roman fantastique suisse de langue française pour la jeunesse"} 1 +2024-09-10 15:43:38.950336 2024-09-10 15:43:38.95034 8b3def35-9fc7-4ffe-b015-fc95bc9b5322 {"md5": "360d2849925a8edc362cacb9a5fed178", "pid": "279307675", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Roman français"}], "bnf_type": "genre/forme Rameau", "identifier": "http://www.idref.fr/279307675", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307675", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18155543b", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18155543", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Roman d'énigme français"} 1 +2024-09-10 15:43:39.020154 2024-09-10 15:43:39.02016 836fe915-cbfd-41b6-9f62-62bb0f97d46d {"md5": "f5babb2bf745f2e31f7be455c6e3ce17", "pid": "279307683", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature didactique belge de langue française"}], "related": [{"authorized_access_point": "Maximes belges de langue française"}, {"authorized_access_point": "Proverbes belges de langue française"}], "bnf_type": "genre/forme Rameau", "identifier": "http://www.idref.fr/279307683", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307683", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181555482", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18155548", "source": "BNF"}], "classification": [{"name": "Education et enseignement", "type": "bf:ClassificationDdc", "classificationPortion": "370"}, {"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Aphorismes et apophtegmes francophones belges"], "authorized_access_point": "Aphorismes et apophtegmes belges de langue française"} 1 +2024-09-10 15:43:39.083905 2024-09-10 15:43:39.083909 f26848ac-e865-4454-9dae-c9ef976e0213 {"md5": "c3c17980244005a8d91481f3dc34eb6c", "pid": "279307705", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature belge de langue française"}], "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Aphorismes et apophtegmes belges de langue française"}, {"authorized_access_point": "Maximes belges de langue française"}, {"authorized_access_point": "Proverbes belges de langue française"}], "identifier": "http://www.idref.fr/279307705", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307705", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18155558c", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18155558", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Littérature didactique francophone belge"], "authorized_access_point": "Littérature didactique belge de langue française"} 1 +2024-09-10 15:43:39.148979 2024-09-10 15:43:39.148985 530a74cf-4591-4fbe-84af-016852626859 {"md5": "f88b31ca17c5bce6759afc90323acb79", "pid": "279307721", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Roman mexicain"}], "bnf_type": "genre/forme Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2023003043", "source": "LCSH"}], "authorized_access_point": "Autobiographical fiction, Mexican"}], "identifier": "http://www.idref.fr/279307721", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307721", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181555660", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18155566", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Roman autobiographique mexicain"} 1 +2024-09-10 15:43:39.211372 2024-09-10 15:43:39.211375 578721e1-e3a4-4dde-85f8-d03d9ff58028 {"md5": "3ed9a2573bb9c9ed40f5c6e3a26d80f5", "pid": "279307756", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Roman suisse de langue française"}], "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Roman fantastique suisse de langue française pour la jeunesse"}], "identifier": "http://www.idref.fr/279307756", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307756", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18155609f", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18155609", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Roman fantastique francophone suisse"], "authorized_access_point": "Roman fantastique suisse de langue française"} 1 diff --git a/data/cidref_pidstore.csv b/data/cidref_pidstore.csv index a252fa20..5d9f7df1 100644 --- a/data/cidref_pidstore.csv +++ b/data/cidref_pidstore.csv @@ -1,273 +1,551 @@ -2023-08-08 13:37:37.279849 2023-08-08 13:37:37.279855 cidref 027224430 R rec c4f5d555-0cb2-44e5-8609-86a0a9abd7c2 -2023-08-08 13:37:37.363257 2023-08-08 13:37:37.363262 cidref 027227219 R rec cb66f8c4-bf3b-4320-8e51-f127777f294e -2023-08-08 13:37:37.420937 2023-08-08 13:37:37.420941 cidref 027235548 R rec f4711140-6695-45e4-a13f-8afc376b6d02 -2023-08-08 13:37:37.469825 2023-08-08 13:37:37.469829 cidref 027236226 R rec 24764221-a437-40ab-92f2-81709d3cd66a -2023-08-08 13:37:37.51685 2023-08-08 13:37:37.516855 cidref 027243087 R rec ffb81954-7944-4fd0-8837-c7be39605ac6 -2023-08-08 13:37:37.57209 2023-08-08 13:37:37.572095 cidref 027246655 R rec a3b6ade6-9b94-47c7-bd98-553c6e5f5a8a -2023-08-08 13:37:37.632862 2023-08-08 13:37:37.632867 cidref 027256251 R rec cfd2fa00-c337-495e-aaec-4c186b4f7876 -2023-08-08 13:37:37.687279 2023-08-08 13:37:37.687283 cidref 027287289 R rec ba76549e-5f28-40bd-8b9e-bdfe59670832 -2023-08-08 13:37:37.735179 2023-08-08 13:37:37.735185 cidref 027294358 R rec 2715cfbd-d469-4ed6-bfba-d9faf31e435c -2023-08-08 13:37:37.782278 2023-08-08 13:37:37.782283 cidref 02730440X R rec 5c4676d3-8ef4-4d31-96fa-dab230df8905 -2023-08-08 13:37:37.828374 2023-08-08 13:37:37.828379 cidref 027328295 R rec 6386658a-b2b6-4041-9285-049b23e86833 -2023-08-08 13:37:37.879773 2023-08-08 13:37:37.879783 cidref 027354431 R rec 9abb3632-b40d-4c2c-99ba-354baccb7ddf -2023-08-08 13:37:37.958836 2023-08-08 13:37:37.958841 cidref 027366669 R rec 98baff3c-7e31-4f88-825c-7b6d563e9e0b -2023-08-08 13:37:38.041973 2023-08-08 13:37:38.041979 cidref 027389782 R rec ef11c0c0-edb0-4216-919e-a43bf2aee518 -2023-08-08 13:37:38.135518 2023-08-08 13:37:38.135523 cidref 027430162 R rec b6fbfec4-1100-44ca-bb94-e7a0ca002052 -2023-08-08 13:37:38.231425 2023-08-08 13:37:38.231663 cidref 027488462 R rec b4d49233-7c96-4c4d-ac16-c339f1dabd38 -2023-08-08 13:37:38.323323 2023-08-08 13:37:38.323334 cidref 02750610X R rec 60f21845-3787-4928-98bb-4ab3645602a9 -2023-08-08 13:37:38.41347 2023-08-08 13:37:38.413481 cidref 027510387 R rec f28ed9bd-c6b8-457d-b67e-f2713b5f4242 -2023-08-08 13:37:38.478691 2023-08-08 13:37:38.478701 cidref 027599701 R rec b04286af-15e1-48c9-b86e-9758c3b008eb -2023-08-08 13:37:38.551526 2023-08-08 13:37:38.551532 cidref 027652254 R rec 48dc1eab-56df-4e20-99d4-2080c2d418a7 -2023-08-08 13:37:38.619064 2023-08-08 13:37:38.619069 cidref 027661504 R rec 9a705760-060e-4c6e-ab0e-b22b54d8357f -2023-08-08 13:37:38.66669 2023-08-08 13:37:38.666695 cidref 027675823 R rec 90bf29e4-14ae-4ede-b9d6-2fae39e72794 -2023-08-08 13:37:38.717738 2023-08-08 13:37:38.717743 cidref 027688739 R rec ea6db838-8cc7-42fb-8fcb-ea9c8867400a -2023-08-08 13:37:38.764946 2023-08-08 13:37:38.764951 cidref 027699870 R rec 660a5aeb-ae05-4151-b483-6121a347c9fd -2023-08-08 13:37:38.812226 2023-08-08 13:37:38.812231 cidref 02770940X R rec d75cb1aa-6ca9-42b9-b90a-e9497d4fab0b -2023-08-08 13:37:38.867186 2023-08-08 13:37:38.867197 cidref 027741060 R rec ef8f49c4-98d4-4e5a-af45-fdb916daf346 -2023-08-08 13:37:38.947966 2023-08-08 13:37:38.947977 cidref 027741125 R rec 942230ad-9848-4f2a-8f3e-7010577ca49b -2023-08-08 13:37:39.016655 2023-08-08 13:37:39.016666 cidref 027765369 R rec cdbc2ed0-2a20-4a83-9c2e-81161b9aa4a7 -2023-08-08 13:37:39.075397 2023-08-08 13:37:39.075402 cidref 027785084 R rec 8eb81f3a-e1f3-47d7-a724-2a288275f289 -2023-08-08 13:37:39.147288 2023-08-08 13:37:39.147298 cidref 027805220 R rec b90bd685-3be0-45e4-8d8c-2023d72922f3 -2023-08-08 13:37:39.228614 2023-08-08 13:37:39.228619 cidref 027809781 R rec 1b0d280d-15af-4222-ab67-cfa75beed7f8 -2023-08-08 13:37:39.318806 2023-08-08 13:37:39.318818 cidref 027811611 R rec a315472d-07b8-4805-91c8-9afd6ea6b34f -2023-08-08 13:37:39.394738 2023-08-08 13:37:39.394743 cidref 027825280 R rec 0e29b412-5509-4e51-bac6-598e413304ce -2023-08-08 13:37:39.465771 2023-08-08 13:37:39.465776 cidref 027832953 R rec 519a4cd1-c078-4e97-b7da-4c6d90093d29 -2023-08-08 13:37:39.53157 2023-08-08 13:37:39.531575 cidref 027838919 R rec e230e8fc-8e47-4175-a36c-cdbbb12bb5a0 -2023-08-08 13:37:39.582771 2023-08-08 13:37:39.582784 cidref 02784532X R rec 0dbc6ae0-137c-4ddb-8159-e7874ac463cb -2023-08-08 13:37:39.651988 2023-08-08 13:37:39.651993 cidref 027852547 R rec a9b0b3ab-cca4-4dce-8c9d-fb9f5d966727 -2023-08-08 13:37:39.702429 2023-08-08 13:37:39.702434 cidref 028004698 R rec 28eed3bd-1ba4-432f-a446-f3a1710880a1 -2023-08-08 13:37:39.750434 2023-08-08 13:37:39.750439 cidref 028244494 R rec 1a928111-7486-4e27-92b8-64a9f2b0d69c -2023-08-08 13:37:39.803234 2023-08-08 13:37:39.803238 cidref 028283678 R rec 28b6eb17-89d2-44e2-a073-93da4ed30630 -2023-08-08 13:37:39.849624 2023-08-08 13:37:39.84963 cidref 028354559 R rec 6260af52-7445-4d79-8d48-bda09217b548 -2023-08-08 13:37:39.899673 2023-08-08 13:37:39.899683 cidref 028359070 R rec 6fa7d72f-b0e9-4365-86f4-7367406b49c1 -2023-08-08 13:37:39.980692 2023-08-08 13:37:39.980703 cidref 028701755 R rec e2672535-4a92-4bbf-8679-e4d977076198 -2023-08-08 13:37:40.051218 2023-08-08 13:37:40.051224 cidref 028910044 R rec 0a829037-d335-40c5-a6d3-9a4fcd8433f7 -2023-08-08 13:37:40.123535 2023-08-08 13:37:40.12354 cidref 028962389 R rec 96fc0147-4f4f-45ff-a843-243d39ee879c -2023-08-08 13:37:40.196216 2023-08-08 13:37:40.196227 cidref 02897297X R rec 3774dddb-99d7-4ac0-95c3-d24cb6e8c97d -2023-08-08 13:37:40.268873 2023-08-08 13:37:40.268878 cidref 029241693 R rec 5232e8e8-8aed-44fc-b765-176fb3829de9 -2023-08-08 13:37:40.358312 2023-08-08 13:37:40.358317 cidref 029260892 R rec 237ef3da-ffd2-4727-8717-7510288aa198 -2023-08-08 13:37:40.449144 2023-08-08 13:37:40.449154 cidref 029560020 R rec 228eb790-1a84-426d-ae8b-35816fbf4425 -2023-08-08 13:37:40.532346 2023-08-08 13:37:40.532351 cidref 029563321 R rec c70be705-e061-4fae-b4d4-1cdbe4fefea4 -2023-08-08 13:37:40.590218 2023-08-08 13:37:40.590223 cidref 029910609 R rec a5069a14-8590-435a-9d93-fb1e59731225 -2023-08-08 13:37:40.664696 2023-08-08 13:37:40.664701 cidref 030714451 R rec bf398d03-6552-4ecb-adcc-9e23a7c8851c -2023-08-08 13:37:40.735469 2023-08-08 13:37:40.735474 cidref 030763762 R rec fc5ef599-2851-44c3-9b74-d23f5ff5b120 -2023-08-08 13:37:40.806524 2023-08-08 13:37:40.806529 cidref 030767806 R rec 8b20633b-d431-4dbd-9684-9ae9306752db -2023-08-08 13:37:40.856109 2023-08-08 13:37:40.856114 cidref 03116207X R rec 42cf0a6f-bca9-41ac-bc42-ea0fb314906b -2023-08-08 13:37:40.914393 2023-08-08 13:37:40.914403 cidref 031474284 R rec 95acff84-4d76-46e4-be9e-7281d8b57973 -2023-08-08 13:37:41.007153 2023-08-08 13:37:41.007158 cidref 031911056 R rec 8a0261fd-e97d-45e4-a399-a836b7330d35 -2023-08-08 13:37:41.073456 2023-08-08 13:37:41.073461 cidref 031992234 R rec a5996cba-92d3-45ba-b8ee-250278cbb57a -2023-08-08 13:37:41.151398 2023-08-08 13:37:41.151408 cidref 03212743X R rec 5f571655-b3a7-4393-b949-2b11881ae6d1 -2023-08-08 13:37:41.238761 2023-08-08 13:37:41.238767 cidref 032187130 R rec 890a7f5a-1a27-49f9-959a-1898a69b4dc0 -2023-08-08 13:37:41.327938 2023-08-08 13:37:41.327948 cidref 032563507 R rec afcaaf3c-0284-4b4f-ad93-0b7896fc50d9 -2023-08-08 13:37:41.423626 2023-08-08 13:37:41.423637 cidref 032972938 R rec ed6f2c2d-8851-4551-8dc5-5b43d2814cb0 -2023-08-08 13:37:41.511014 2023-08-08 13:37:41.511019 cidref 03388157X R rec 993ca3b3-a378-4171-963f-8f093b084322 -2023-08-08 13:37:41.564473 2023-08-08 13:37:41.564478 cidref 034160523 R rec a4620f96-ccb4-4959-983e-2d7d2ff5d8c1 -2023-08-08 13:37:41.649008 2023-08-08 13:37:41.649017 cidref 034490906 R rec 888c2b35-ad18-43dc-9f5a-c2a00a0034f9 -2023-08-08 13:37:41.739574 2023-08-08 13:37:41.739579 cidref 034680365 R rec 877cd5a6-7f0b-424b-8cd8-ea5e696816c0 -2023-08-08 13:37:41.793831 2023-08-08 13:37:41.793836 cidref 035801123 R rec 11caf531-2c9e-477f-aaa3-3a89b5190f43 -2023-08-08 13:37:41.845797 2023-08-08 13:37:41.845802 cidref 050203177 R rec 517033cf-d16f-4ec2-a65d-f2d2ab6211c5 -2023-08-08 13:37:41.906885 2023-08-08 13:37:41.90689 cidref 050513478 R rec 980ea5aa-8387-44f1-b554-6ef8f1b4128a -2023-08-08 13:37:41.974862 2023-08-08 13:37:41.974867 cidref 077061284 R rec 4fc3234f-2eec-4186-8272-cfd373352061 -2023-08-08 13:37:42.056395 2023-08-08 13:37:42.0564 cidref 080206913 R rec 02c51d91-b16d-410d-abbc-523e9e11e1b9 -2023-08-08 13:37:42.131176 2023-08-08 13:37:42.131181 cidref 083620338 R rec 2a758e2d-ff16-40fb-a97e-bcf8043b8f60 -2023-08-08 13:37:42.216102 2023-08-08 13:37:42.216111 cidref 083622519 R rec 7a8c8457-8a03-44f4-bfae-b88074ac5e38 -2023-08-08 13:37:42.281793 2023-08-08 13:37:42.281803 cidref 092468675 R rec 00d72b51-ef99-40fe-bf0b-02779d5961e8 -2023-08-08 13:37:42.37505 2023-08-08 13:37:42.375054 cidref 113531923 R rec 3bb91178-7c4a-4b84-9807-26a1894daec1 -2023-08-08 13:37:42.467132 2023-08-08 13:37:42.467138 cidref 119256347 R rec 559a2be3-1f78-44bc-8119-77eb09df2bb3 -2023-08-08 13:37:42.547958 2023-08-08 13:37:42.547962 cidref 130730173 R rec ef63110e-d76a-4836-bbdc-2dbde1e4fd22 -2023-08-08 13:37:42.619449 2023-08-08 13:37:42.619459 cidref 132184214 R rec 0576fde7-69a6-4401-a4ca-0d033de4f356 -2023-08-08 13:37:42.722688 2023-08-08 13:37:42.722693 cidref 146321944 R rec 0d5fa7cd-17e5-4f9e-8bed-57707e36ef7e -2023-08-08 13:37:42.798851 2023-08-08 13:37:42.798856 cidref 146774094 R rec 4efc7b99-b2d9-49eb-abc7-ad98748cfefb -2023-08-08 13:37:42.848241 2023-08-08 13:37:42.848246 cidref 16573762X R rec 8a35e448-aad6-402c-9500-40e746129728 -2023-08-08 13:37:42.898633 2023-08-08 13:37:42.898638 cidref 16719416X R rec 36efb1cd-2551-4847-883b-60a7e5fcc40f -2023-08-08 13:37:42.951966 2023-08-08 13:37:42.951971 cidref 172690250 R rec 8f7707d6-5e96-4858-942e-d9bd58605344 -2023-08-08 13:37:43.001076 2023-08-08 13:37:43.001082 cidref 174131887 R rec 07e5fe60-6ca7-46e3-9166-af9b308fb07e -2023-08-08 13:37:43.058428 2023-08-08 13:37:43.058434 cidref 18456381X R rec 8a075055-432c-4783-8aa8-b98721ae7ea0 -2023-08-08 13:37:43.139802 2023-08-08 13:37:43.139806 cidref 245367888 R rec 5f0e396e-e587-4130-a199-3f94b9205566 -2023-08-08 13:37:43.226266 2023-08-08 13:37:43.226271 cidref 252252063 R rec 16b08667-c4cb-4ddd-b90e-f833e56afb0d -2023-08-08 13:37:43.316362 2023-08-08 13:37:43.316372 cidref 25410875X R rec 1cb4f9da-2dcc-4815-bc2d-69d7d2bc9d26 -2023-08-08 13:37:43.412729 2023-08-08 13:37:43.412734 cidref 255690444 R rec fc391a5f-587f-4bf3-9063-d2e9a4205969 -2023-08-08 13:37:43.478801 2023-08-08 13:37:43.478806 cidref 256524203 R rec c14db206-b3a5-4ea3-b88e-654dc272ef93 -2023-08-08 13:37:43.560121 2023-08-08 13:37:43.560126 cidref 258617527 R rec 1bc315af-8d88-4610-9780-3ff86ce92bd7 -2023-08-08 13:37:43.648134 2023-08-08 13:37:43.648144 cidref 25906288X R rec d1eb5cb8-0597-46f3-b218-3aad43a5c53e -2023-08-08 13:37:43.741317 2023-08-08 13:37:43.741323 cidref 259596337 R rec 5b0e2923-47a5-4f7d-8338-ee39e53561dd -2023-08-08 13:37:43.822581 2023-08-08 13:37:43.822587 cidref 259599174 R rec 564be194-0dfa-4629-bdfc-57fb8841f95c -2023-08-08 13:37:43.873853 2023-08-08 13:37:43.873858 cidref 259943401 R rec 4e42a26d-4632-49cf-a7a5-11729b80525f -2023-08-08 13:37:43.924597 2023-08-08 13:37:43.924603 cidref 259951293 R rec 29371555-eb1b-4386-b464-08054b33a488 -2023-08-08 13:37:43.978232 2023-08-08 13:37:43.978237 cidref 259974811 R rec f4cf6a8e-44ff-4f96-ba37-8f98a0d567c6 -2023-08-08 13:37:44.02815 2023-08-08 13:37:44.028155 cidref 259995118 R rec ec796417-0adc-475a-8aaf-b0273521ce5c -2023-08-08 13:37:44.075971 2023-08-08 13:37:44.075976 cidref 261107909 R rec b9680856-5a24-4692-87cc-4d39fd49286c -2023-08-08 13:37:44.150071 2023-08-08 13:37:44.15008 cidref 261196715 R rec 5fba171d-003d-494c-bd48-c1e89cc37710 -2023-08-08 13:37:44.23979 2023-08-08 13:37:44.239795 cidref 261901532 R rec c5e8ff27-3263-4022-9bfd-1b3b854f9280 -2023-08-08 13:37:44.298838 2023-08-08 13:37:44.298848 cidref 262111012 R rec 3f080b95-8ccf-453b-80f0-beb4f9954b5e -2023-08-08 13:37:44.379603 2023-08-08 13:37:44.379612 cidref 262111020 R rec eb451445-62b1-4033-a514-de55248fb188 -2023-08-08 13:37:44.473276 2023-08-08 13:37:44.47328 cidref 262111039 R rec 106e21c4-3d4d-4679-a999-77b84f008495 -2023-08-08 13:37:44.538621 2023-08-08 13:37:44.538626 cidref 262111071 R rec 19c8c914-4725-41a7-865e-4c9e28dbc75b -2023-08-08 13:37:44.597017 2023-08-08 13:37:44.597029 cidref 26211108X R rec f0a499fa-41bb-4211-a7b5-3afb14a8976b -2023-08-08 13:37:44.694675 2023-08-08 13:37:44.694684 cidref 262111098 R rec e105e009-9df4-4d65-9677-f648c398025d -2023-08-08 13:37:44.780051 2023-08-08 13:37:44.780061 cidref 262125927 R rec 3d6f937e-addc-4e71-916a-b62d0d0b74a4 -2023-08-08 13:37:44.876312 2023-08-08 13:37:44.876318 cidref 262413817 R rec 3436d0a6-93d5-467b-ae0b-3e5bbc302d22 -2023-08-08 13:37:44.927043 2023-08-08 13:37:44.927048 cidref 262414023 R rec 92ac3144-2c62-44e6-932f-d37e0baa03ae -2023-08-08 13:37:44.975538 2023-08-08 13:37:44.975543 cidref 262414082 R rec 4659a9bf-dd38-42ef-8467-ce1fa903abf7 -2023-08-08 13:37:45.022973 2023-08-08 13:37:45.022977 cidref 262414112 R rec 86cbc751-c3c2-498b-bfc9-d2b73f75bfcb -2023-08-08 13:37:45.073379 2023-08-08 13:37:45.073385 cidref 262668858 R rec 6577f639-3dc5-4cf2-ae8c-ac3675c84b07 -2023-08-08 13:37:45.138369 2023-08-08 13:37:45.138379 cidref 262669161 R rec f200497e-707e-499d-9b7a-14cecc477cf2 -2023-08-08 13:37:45.216465 2023-08-08 13:37:45.216475 cidref 262669188 R rec 199c34c5-60f4-4aa1-9cbf-b4e6cb21eb7c -2023-08-08 13:37:45.299047 2023-08-08 13:37:45.299056 cidref 26266920X R rec d6b487f9-bf92-4fdd-a47d-5c0c6455a1fb -2023-08-08 13:37:45.366033 2023-08-08 13:37:45.366043 cidref 262669234 R rec d9b3954f-c581-414f-be09-df18421a9e1e -2023-08-08 13:37:45.44655 2023-08-08 13:37:45.446556 cidref 262669242 R rec 4292796d-f764-4b46-9fab-674bbaae6533 -2023-08-08 13:37:45.535835 2023-08-08 13:37:45.53584 cidref 262669250 R rec 591f8b9a-e5fa-4fc5-955c-a9f2e3c1526c -2023-08-08 13:37:45.599105 2023-08-08 13:37:45.599114 cidref 262805111 R rec 7f6547cc-01bd-4c1b-9c4f-115e6d0247a4 -2023-08-08 13:37:45.680078 2023-08-08 13:37:45.680088 cidref 262915219 R rec 84426a96-ee07-4aa9-9eaa-257c0b2c0b2e -2023-08-08 13:37:45.752301 2023-08-08 13:37:45.752306 cidref 262928264 R rec 813991ee-58b1-47f8-be35-694eb9fa257f -2023-08-08 13:37:45.831596 2023-08-08 13:37:45.831605 cidref 26292837X R rec e7c6b687-b2e0-420c-ab84-cb55ba1c6c23 -2023-08-08 13:37:45.914459 2023-08-08 13:37:45.914464 cidref 262928507 R rec 9a615b04-57d8-467d-9325-129b05a99ae3 -2023-08-08 13:37:45.964743 2023-08-08 13:37:45.964748 cidref 262928701 R rec 2998877c-921c-4a17-b5ae-5ad45b5f260b -2023-08-08 13:37:46.03254 2023-08-08 13:37:46.032545 cidref 26307837X R rec be95cf49-680e-43aa-85ed-7161542b31d9 -2023-08-08 13:37:46.096458 2023-08-08 13:37:46.096464 cidref 263492680 R rec f183e6b6-208d-413e-a146-cda28aac7c2c -2023-08-08 13:37:46.169819 2023-08-08 13:37:46.169829 cidref 263499944 R rec 653d3f4a-5bc1-43d8-8706-83068933b933 -2023-08-08 13:37:46.246055 2023-08-08 13:37:46.24606 cidref 263499979 R rec ad585b2d-c68c-445e-ba1e-67bb62a24161 -2023-08-08 13:37:46.328165 2023-08-08 13:37:46.328175 cidref 263500047 R rec f543da2c-929a-405a-8662-9d6bac837920 -2023-08-08 13:37:46.416989 2023-08-08 13:37:46.416999 cidref 263500071 R rec 86f01ddc-b7f7-448f-a8e9-ff6ab47fdf81 -2023-08-08 13:37:46.527202 2023-08-08 13:37:46.527208 cidref 263500187 R rec 79f98fed-26ab-48bb-9998-70dd3d9fd32a -2023-08-08 13:37:46.626541 2023-08-08 13:37:46.626547 cidref 263610918 R rec 7080360e-1d40-4535-b27a-e448658210f0 -2023-08-08 13:37:46.679391 2023-08-08 13:37:46.679396 cidref 263714233 R rec 96c62ea3-8d0a-4ca2-870e-b72de9cfa9d6 -2023-08-08 13:37:46.733398 2023-08-08 13:37:46.733403 cidref 263714241 R rec 547dda4c-ca2b-43b6-bf47-f68936eb1e27 -2023-08-08 13:37:46.781978 2023-08-08 13:37:46.781983 cidref 26371425X R rec 5fcff600-051d-43a0-8ff7-94515380c89c -2023-08-08 13:37:46.831604 2023-08-08 13:37:46.831609 cidref 263714268 R rec 1f43ac26-91fb-4b8d-870c-4be9ee7cfb09 -2023-08-08 13:37:46.919337 2023-08-08 13:37:46.919347 cidref 263714276 R rec 467705f3-9079-4797-b050-e230f29241a1 -2023-08-08 13:37:46.973489 2023-08-08 13:37:46.973495 cidref 263714284 R rec 3fcd9b40-8aad-4129-a266-01e6d33605d1 -2023-08-08 13:37:47.023097 2023-08-08 13:37:47.023101 cidref 263714292 R rec 1b07ff3a-85bb-4e28-adac-878a8ef2f6b2 -2023-08-08 13:37:47.073116 2023-08-08 13:37:47.073121 cidref 263714306 R rec b3d7e379-1b9c-443b-a458-9ac4f50d25f0 -2023-08-08 13:37:47.127607 2023-08-08 13:37:47.127612 cidref 263714314 R rec c987614c-4aef-4615-b6cb-d824903f5d64 -2023-08-08 13:37:47.188104 2023-08-08 13:37:47.188108 cidref 263714322 R rec a75d7e0e-ed34-4e2d-9ca2-f0544b03105a -2023-08-08 13:37:47.26501 2023-08-08 13:37:47.265021 cidref 263714330 R rec c5c2f360-fe8f-409c-94ae-b4f57b566c95 -2023-08-08 13:37:47.349578 2023-08-08 13:37:47.349588 cidref 263714349 R rec 32bb6900-42b7-42a7-85f8-eae0476802ef -2023-08-08 13:37:47.44966 2023-08-08 13:37:47.449669 cidref 263714357 R rec 04202c57-1d2f-4b95-82cd-3a63c8be2e66 -2023-08-08 13:37:47.536849 2023-08-08 13:37:47.536854 cidref 263714365 R rec 51675c1e-ea80-41ac-b0c7-ca79583876a7 -2023-08-08 13:37:47.616654 2023-08-08 13:37:47.616659 cidref 263714373 R rec f6971c4d-1601-40bb-9b40-54fc13f9cf35 -2023-08-08 13:37:47.682255 2023-08-08 13:37:47.682265 cidref 26371439X R rec 17186f61-5b84-4a40-b8b2-afa4226083b6 -2023-08-08 13:37:47.778286 2023-08-08 13:37:47.778291 cidref 263714403 R rec 395cca02-cb53-4ea3-83f5-ddd77ebd4ea6 -2023-08-08 13:37:47.850136 2023-08-08 13:37:47.850146 cidref 263714411 R rec 7bd35b7b-33bf-4368-ae76-c352a13cac81 -2023-08-08 13:37:47.963554 2023-08-08 13:37:47.963559 cidref 26371442X R rec 249a50a4-2632-4971-827c-b9fa5dbb39d0 -2023-08-08 13:37:48.021713 2023-08-08 13:37:48.021717 cidref 263714438 R rec c41c5eeb-7a5f-4f67-a67f-a9aeff2a6b19 -2023-08-08 13:37:48.070586 2023-08-08 13:37:48.07059 cidref 263714446 R rec 2a749317-4f4e-4516-9986-4020cae9d454 -2023-08-08 13:37:48.122224 2023-08-08 13:37:48.122228 cidref 263714454 R rec e173339e-1f04-45ba-a504-616b50c2bdc1 -2023-08-08 13:37:48.171243 2023-08-08 13:37:48.171247 cidref 263714462 R rec 483c1ec3-b084-4148-b75a-ea5586416199 -2023-08-08 13:37:48.22367 2023-08-08 13:37:48.223675 cidref 263714470 R rec 5fbe4b66-2768-4014-900b-09e8e6a7589f -2023-08-08 13:37:48.297172 2023-08-08 13:37:48.297181 cidref 263714489 R rec aabcf15c-8a34-4a2a-97c2-4ae723199e7d -2023-08-08 13:37:48.391764 2023-08-08 13:37:48.391769 cidref 263714500 R rec 0918ebc1-0c99-4489-980d-7be8f58f67b7 -2023-08-08 13:37:48.490959 2023-08-08 13:37:48.490963 cidref 263714519 R rec 5475b721-056a-40e0-bbfc-d94000b83eb8 -2023-08-08 13:37:48.55891 2023-08-08 13:37:48.558915 cidref 263714527 R rec 6741db49-8d90-47f3-91f3-919e489f258b -2023-08-08 13:37:48.619317 2023-08-08 13:37:48.619328 cidref 263714535 R rec daea8caf-f348-4ba0-9dec-4f1f0db22e2e -2023-08-08 13:37:48.6928 2023-08-08 13:37:48.692805 cidref 263714543 R rec 8455f57d-f086-4b31-b543-87319d3832e5 -2023-08-08 13:37:48.761728 2023-08-08 13:37:48.761733 cidref 263714551 R rec 895280bd-88ad-4082-80ad-c083f96488a3 -2023-08-08 13:37:48.833385 2023-08-08 13:37:48.833397 cidref 26371456X R rec f1bbff97-3c88-4da5-a566-6133b3fc0668 -2023-08-08 13:37:48.913721 2023-08-08 13:37:48.913731 cidref 263714578 R rec 4cb57e12-a584-49f7-aec1-387b195c4677 -2023-08-08 13:37:48.996656 2023-08-08 13:37:48.996666 cidref 263714594 R rec cec9f9e5-6189-42b6-b814-1e3f2b728055 -2023-08-08 13:37:49.059021 2023-08-08 13:37:49.059026 cidref 263714608 R rec 8e1eba43-e5d7-4694-856e-c1edee20c129 -2023-08-08 13:37:49.114097 2023-08-08 13:37:49.114102 cidref 263714616 R rec 44c3fdfa-5bce-498a-806c-108ce6384587 -2023-08-08 13:37:49.163449 2023-08-08 13:37:49.163454 cidref 263714624 R rec bfc511ac-4e23-4926-8b57-a5a8c655ebdd -2023-08-08 13:37:49.213673 2023-08-08 13:37:49.213677 cidref 263714632 R rec e9a42c7a-03e2-4e5e-bfcf-acefe8dd06a8 -2023-08-08 13:37:49.267774 2023-08-08 13:37:49.267783 cidref 263714640 R rec 7740d1fb-1a78-453f-85a1-f0b7acd1de25 -2023-08-08 13:37:49.343002 2023-08-08 13:37:49.343012 cidref 263714659 R rec 5db9dab6-72e2-402c-bc82-f5dce3bdf0c7 -2023-08-08 13:37:49.430903 2023-08-08 13:37:49.430913 cidref 263714667 R rec aa93a2cc-1c85-487c-9c9e-959268ed17c0 -2023-08-08 13:37:49.519281 2023-08-08 13:37:49.519292 cidref 263714691 R rec 166d9f1e-7fb6-45d5-8084-ad568ff04c1e -2023-08-08 13:37:49.572735 2023-08-08 13:37:49.57274 cidref 263714705 R rec bab99072-979a-40c2-a58c-68dcdf272d2f -2023-08-08 13:37:49.643563 2023-08-08 13:37:49.643568 cidref 263714713 R rec 27eef000-77a1-4f05-bab9-5a4c233d4280 -2023-08-08 13:58:50.833206 2023-08-08 13:58:50.833212 cidref 027794687 R rec 52dd2fc8-bc87-4e7f-b3bb-4985ccf26ee6 -2023-08-08 14:25:02.798204 2023-08-08 14:25:02.79821 cidref 029531411 R rec 99024c9b-1e95-46e9-952f-0012b00b9d1e -2023-08-08 14:25:03.865353 2023-08-08 14:25:03.865359 cidref 033466300 R rec 3ca071f0-ddbc-47ab-84b1-051e28b3ccf0 -2023-08-08 14:25:04.592775 2023-08-08 14:25:04.59278 cidref 050665391 R rec 8eabcdf6-cfa4-466d-9109-fcc3bf4561ca -2023-08-08 14:28:41.189194 2023-08-08 14:28:41.189197 cidref 027796930 R rec f4f0e682-c018-4cd2-8dbc-7b32e2cd2048 -2023-08-08 14:28:41.282252 2023-08-08 14:28:41.282261 cidref 027797619 R rec 32da71f8-3f15-4a87-b399-e73704929f9d -2023-08-08 14:28:41.383524 2023-08-08 14:28:41.383533 cidref 027798461 R rec b6fdadc1-d4c0-47ae-b013-4e44193d618a -2023-08-08 14:28:41.491258 2023-08-08 14:28:41.491267 cidref 027798682 R rec 21442fef-901b-409f-9dc9-df9e5411c1e1 -2023-08-08 14:28:41.597485 2023-08-08 14:28:41.597492 cidref 027799395 R rec 95e02703-3e3a-4ff6-879e-0b81a0517ce4 -2023-08-08 14:28:41.67389 2023-08-08 14:28:41.673895 cidref 027799409 R rec fac1ced9-3c64-43db-a6aa-8f055bc0d255 -2023-08-08 14:28:41.758146 2023-08-08 14:28:41.758155 cidref 027799425 R rec 72a7f534-4e8c-487a-b375-b6d71d6b4f36 -2023-08-08 14:28:41.855634 2023-08-08 14:28:41.855642 cidref 027804380 R rec 3f58dea9-b00b-46d7-ae6e-8b9cf80b756b -2023-08-08 14:28:41.991634 2023-08-08 14:28:41.991644 cidref 027805158 R rec 69396906-17f8-4f31-9b92-82eb7740fd74 -2023-08-08 14:28:42.136308 2023-08-08 14:28:42.136318 cidref 027805301 R rec 44ad847b-e2d5-4862-be53-417c0dfd25aa -2023-08-08 14:28:42.251155 2023-08-08 14:28:42.25116 cidref 027805824 R rec 48cd9898-f24d-4d28-93d7-e281b5632435 -2023-08-08 14:28:43.986749 2023-08-08 14:28:43.986752 cidref 027812596 R rec 84d4b0ee-072c-40c5-8954-74d841656051 -2023-08-08 14:28:44.064779 2023-08-08 14:28:44.064783 cidref 02781341X R rec 5e578a34-4d43-49b6-a5ad-0a9d6339a388 -2023-08-08 14:28:44.856938 2023-08-08 14:28:44.856943 cidref 027813533 R rec 81f1b867-0897-4444-b8b2-5a2b77d61233 -2023-08-08 14:28:46.896263 2023-08-08 14:28:46.896269 cidref 027804232 R rec 536add5e-018f-4e98-aedf-ae6b7be1d1a9 -2023-08-08 14:34:56.651919 2023-08-08 14:34:56.651924 cidref 033297746 R rec 8e919197-8fe9-4c9f-8c99-11a69cb349ec -2023-08-08 14:34:56.739639 2023-08-08 14:34:56.739644 cidref 050170406 R rec fa7e361b-808e-4a30-8ebd-3467a4a9befc -2023-08-08 14:34:56.80273 2023-08-08 14:34:56.802739 cidref 098272225 R rec 396f5ee3-eb51-4d85-9ec8-ecb32d47e8a8 -2023-08-08 14:34:56.902499 2023-08-08 14:34:56.902504 cidref 241963974 R rec f23d7806-3e56-44fe-8499-7c0f84293fbd -2023-08-08 14:36:35.612884 2023-08-08 14:36:35.612898 cidref 027793974 R rec d9a213e6-e932-48f7-9d2d-fcc984520412 -2023-08-08 14:36:35.794368 2023-08-08 14:36:35.794379 cidref 027794016 R rec d3de9aa0-6938-4e14-a8f8-cfdabb78514c -2023-08-08 14:36:35.912787 2023-08-08 14:36:35.912793 cidref 027794903 R rec 71d8d265-c917-496e-9d67-afa415d3ebbf -2023-08-08 14:36:36.01651 2023-08-08 14:36:36.016521 cidref 027794954 R rec 1a2c6162-ce90-486a-a187-79407712c2af -2023-08-08 14:36:36.148567 2023-08-08 14:36:36.148574 cidref 027794962 R rec 7be0f4cb-6092-49af-937d-67c577a22892 -2023-08-08 14:36:36.247537 2023-08-08 14:36:36.247542 cidref 027794970 R rec d51cab3c-3402-4bbc-9433-882ffc8725e3 -2023-08-08 14:36:36.316487 2023-08-08 14:36:36.316494 cidref 027795926 R rec 97674a84-34c2-4f53-bcb2-bde96ccb969c -2023-08-08 14:36:36.421935 2023-08-08 14:36:36.421945 cidref 027796817 R rec fd1c8618-f5f8-4474-883d-91d0a8cbd332 -2023-08-08 14:36:36.523495 2023-08-08 14:36:36.523505 cidref 027799433 R rec 020bf9a9-fa75-4fea-bc71-06d203fcc4ae -2023-08-08 14:36:36.634223 2023-08-08 14:36:36.634233 cidref 027804038 R rec 09bf1911-ebfc-42dd-bd15-875a04744e74 -2023-08-08 14:36:36.733977 2023-08-08 14:36:36.733989 cidref 027804186 R rec b775665f-e8f2-455d-80cd-ee3e36b045f0 -2023-08-08 14:36:36.859555 2023-08-08 14:36:36.85956 cidref 030860466 R rec 06f00fc5-8fa3-429d-a624-2de659f12cbd -2023-08-08 14:36:36.942587 2023-08-08 14:36:36.942596 cidref 031022219 R rec f477327a-5ef0-45bd-9501-aa8da9a7064b -2023-08-08 14:36:37.039223 2023-08-08 14:36:37.039229 cidref 031937667 R rec b98b4d1f-e5d2-4865-873f-4ca9c125944b -2023-08-08 14:36:37.16718 2023-08-08 14:36:37.167193 cidref 033070202 R rec 09fa9bc5-7bc3-4136-b7ea-6c0443794d3c -2023-08-08 14:36:37.249696 2023-08-08 14:36:37.2497 cidref 034577769 R rec 7d278631-1934-4a72-9c8b-3b6b8ca3e5cc -2023-08-08 14:36:37.311955 2023-08-08 14:36:37.311959 cidref 03483446X R rec 4974ccd2-aed1-4c51-aca4-cef932987328 -2023-08-08 14:36:37.380182 2023-08-08 14:36:37.380193 cidref 034853537 R rec 56165ddd-8151-41a4-9afb-d6f899f66f83 -2023-08-08 14:36:37.474304 2023-08-08 14:36:37.474314 cidref 03487156X R rec db8d6bb2-8ebb-4b75-94f3-117c616bab14 -2023-08-08 14:36:37.581522 2023-08-08 14:36:37.581528 cidref 034933697 R rec ea879123-ffc8-4981-8c45-d6ea94c8e630 -2023-08-08 14:36:37.693913 2023-08-08 14:36:37.693978 cidref 034934774 R rec e2ead26d-888c-414a-9627-e6dda081523b -2023-08-08 14:36:37.827252 2023-08-08 14:36:37.827265 cidref 034934936 R rec e29aba64-5c62-409d-8413-24f976c6654b -2023-08-08 14:36:37.93341 2023-08-08 14:36:37.933422 cidref 034935061 R rec c5414354-19e0-40e8-8490-83f2273b7503 -2023-08-08 14:36:38.037711 2023-08-08 14:36:38.037717 cidref 034935134 R rec a0f0022f-342d-44fc-a41e-df6a2a4147d3 -2023-08-08 14:36:38.156706 2023-08-08 14:36:38.156711 cidref 034935177 R rec b1bd4159-659e-42a4-911f-43a22c1815f8 -2023-08-08 14:36:38.271438 2023-08-08 14:36:38.271449 cidref 034935207 R rec 905b11a4-a57c-4547-bb02-e6bdf1a657ac -2023-08-08 14:36:38.328082 2023-08-08 14:36:38.328086 cidref 034935274 R rec 8c8030e0-9385-42bb-8059-b4564db69157 -2023-08-08 14:36:38.38758 2023-08-08 14:36:38.387586 cidref 034935290 R rec 1cf39e6e-f634-4c66-a5e4-aaba65228782 -2023-08-08 14:36:38.5026 2023-08-08 14:36:38.50261 cidref 034935304 R rec f3bcc4c5-3dba-4e27-a74c-999bee8bc73a -2023-08-08 14:36:38.60884 2023-08-08 14:36:38.608852 cidref 034935827 R rec 2aa7711c-1eeb-4dc3-99da-ba94a1c9c11b -2023-08-08 14:36:38.712651 2023-08-08 14:36:38.712656 cidref 034935835 R rec b3276933-966c-4c6e-994d-3bf17b33d73b -2023-08-08 14:36:38.808097 2023-08-08 14:36:38.808103 cidref 034935908 R rec a5d1eb4b-4345-414e-9f1f-5c0212eef780 -2023-08-08 14:36:38.907616 2023-08-08 14:36:38.907626 cidref 034936890 R rec cbda8652-82ec-45ba-ba83-fc44175180eb -2023-08-08 14:36:39.021685 2023-08-08 14:36:39.021691 cidref 034937072 R rec bf47cc82-eee1-422d-a9d5-cecdc5385e2e -2023-08-08 14:36:39.109576 2023-08-08 14:36:39.109581 cidref 034937099 R rec 0d0d8135-7eb1-46f8-addc-dda95a118ad4 -2023-08-08 14:36:39.207126 2023-08-08 14:36:39.207137 cidref 034937129 R rec dd0bbd4a-0e71-46ca-85f8-7655b99e9558 -2023-08-08 14:36:39.323939 2023-08-08 14:36:39.32395 cidref 035021128 R rec 7363f33b-2cdc-4145-be7d-a1744ff52b67 -2023-08-08 14:36:39.386907 2023-08-08 14:36:39.386912 cidref 035021179 R rec 864db971-841c-44eb-9315-0911e1bac34e -2023-08-08 14:36:39.442682 2023-08-08 14:36:39.442686 cidref 035077948 R rec b05461e5-628e-4165-b53e-6d2af2971567 -2023-08-08 14:36:39.507903 2023-08-08 14:36:39.507909 cidref 035077964 R rec eb5d813d-729c-4ffe-98c4-c783981b5076 -2023-08-08 14:36:39.617093 2023-08-08 14:36:39.617104 cidref 035078316 R rec f35d61f2-7ac1-443d-ab88-d1498a5eece0 -2023-08-08 14:36:39.716595 2023-08-08 14:36:39.716607 cidref 035087625 R rec 9501b2b0-1dde-4b18-aed5-e01cdac4be65 -2023-08-08 14:36:39.836864 2023-08-08 14:36:39.836875 cidref 03509446X R rec 7b48bfdc-2ba6-48c9-b823-7b3018af040d -2023-08-08 14:36:39.937081 2023-08-08 14:36:39.937091 cidref 035207191 R rec a6a542b3-a439-4bf3-8b55-67b2e757714e -2023-08-08 14:36:40.060287 2023-08-08 14:36:40.060294 cidref 03528076X R rec 5c0217bc-6953-4d95-90a9-cc81637cf867 -2023-08-08 14:36:40.157852 2023-08-08 14:36:40.157858 cidref 035383925 R rec 915d7477-0b1e-42e5-8684-50d2ca8babfd -2023-08-08 14:36:40.252559 2023-08-08 14:36:40.252569 cidref 035623683 R rec cc09ce48-53eb-46c6-af37-31ef9d14f58d -2023-08-08 14:36:40.372868 2023-08-08 14:36:40.372874 cidref 035623691 R rec 96d970fe-b145-470c-81ff-5b5558863fc1 -2023-08-08 14:36:40.436191 2023-08-08 14:36:40.436196 cidref 050323148 R rec 38c9b788-03f8-49bc-9184-e9f9fffcc5f6 -2023-08-08 14:36:40.502231 2023-08-08 14:36:40.502242 cidref 050323172 R rec d43dd8d6-e710-4274-b7b8-2522ce42fa20 -2023-08-08 14:36:40.610104 2023-08-08 14:36:40.610109 cidref 061617296 R rec c8d10c27-e59e-49d2-af5d-59ac1147dfea -2023-08-08 14:36:40.718297 2023-08-08 14:36:40.71831 cidref 077057384 R rec c3393fdb-f1ea-460f-8b6d-88df824e9d69 -2023-08-08 14:36:40.844318 2023-08-08 14:36:40.844323 cidref 101481241 R rec 1b3fb804-5c26-425b-a1ff-915331b91612 -2023-08-08 14:36:40.956285 2023-08-08 14:36:40.956292 cidref 101481330 R rec 5181758e-5127-41fe-b525-424c1a3eb400 -2023-08-08 14:36:41.05347 2023-08-08 14:36:41.053481 cidref 101481349 R rec 2aa7c940-85b3-43e2-a2ee-b25387d6a571 -2023-08-08 14:36:41.175708 2023-08-08 14:36:41.175719 cidref 101481438 R rec 1ecf2b92-fb7c-45c4-936f-0dba10ae91d4 -2023-08-08 14:36:41.289133 2023-08-08 14:36:41.289143 cidref 107841363 R rec 61f29ac2-2457-40d6-8b58-9800acf67e0f -2023-08-08 14:36:41.393905 2023-08-08 14:36:41.393915 cidref 108812987 R rec 9ecd5844-f64d-431e-be99-9d9844fec014 -2023-08-08 14:36:41.469575 2023-08-08 14:36:41.46958 cidref 109094883 R rec 5ecf25ad-12a3-48e3-846e-a817644fde56 -2023-08-08 14:36:41.521808 2023-08-08 14:36:41.521813 cidref 11353213X R rec a73f845f-2673-4cc4-801a-77b41b79b62a -2023-08-08 14:36:41.585675 2023-08-08 14:36:41.585686 cidref 11393260X R rec 3fb920b4-b90c-42ce-8611-ac2ce3f135e9 -2023-08-08 14:36:42.04023 2023-08-08 14:36:42.04024 cidref 12007432X R rec ba21535e-1b75-4844-a604-147c4db2984e -2023-08-08 14:36:42.174808 2023-08-08 14:36:42.174824 cidref 120593904 R rec 0a8d783d-7802-472c-8c2b-46cfe469330c -2023-08-08 14:36:42.277975 2023-08-08 14:36:42.277985 cidref 144664119 R rec e21c737c-9807-42e8-a6a0-91e0270c27fa -2023-08-08 14:36:42.379497 2023-08-08 14:36:42.379506 cidref 146322134 R rec 9a6344f3-53b4-4d81-aa75-d32b09bf8cd4 -2023-08-08 14:36:42.473968 2023-08-08 14:36:42.473972 cidref 148171095 R rec 15c728d5-ee99-4e0c-b89c-74e7deae803b -2023-08-08 14:36:42.526702 2023-08-08 14:36:42.526706 cidref 169177742 R rec 6206b21d-f40d-4809-bbc4-e504c1d462e0 -2023-08-08 14:36:42.578759 2023-08-08 14:36:42.578763 cidref 169177750 R rec 1baada6f-9073-479c-8acb-5deed5f10b55 -2023-08-08 14:36:42.643921 2023-08-08 14:36:42.643932 cidref 17089018X R rec 6d573203-aaaa-43b8-9aae-93d4ae8dd54b -2023-08-08 14:36:42.750367 2023-08-08 14:36:42.750378 cidref 180122312 R rec 4b0e5cb4-bbd1-459e-9495-cb3601e3cb9c -2023-08-08 14:36:42.860597 2023-08-08 14:36:42.860607 cidref 185676146 R rec 120a2199-58e1-4284-b808-70df2ca0f5f7 -2023-08-08 14:36:42.965382 2023-08-08 14:36:42.965394 cidref 196345359 R rec f28d79f9-2e01-4374-afe5-dd770e9f3baa -2023-08-08 14:36:43.958922 2023-08-08 14:36:43.958928 cidref 027809773 R rec 4fa1111e-edee-4671-b4dc-e88b3e1e580c +2024-09-10 15:42:56.316328 2024-09-10 15:42:56.316336 cidref 027225798 R rec c9c81157-da5a-4d62-ac9d-d7e9885dcd24 +2024-09-10 15:42:56.484421 2024-09-10 15:42:56.484426 cidref 027242250 R rec b805388e-6965-4ee2-8c68-071b537cb912 +2024-09-10 15:42:56.548504 2024-09-10 15:42:56.548516 cidref 027246159 R rec 98c21ab3-b8cb-43e1-b682-657afcd7b24d +2024-09-10 15:42:56.667029 2024-09-10 15:42:56.667041 cidref 027248062 R rec 5a121641-5ac8-4fa4-8872-795442359905 +2024-09-10 15:42:56.768641 2024-09-10 15:42:56.768657 cidref 027255468 R rec d20d00a9-5203-465a-8d8a-62db3b877edc +2024-09-10 15:42:56.870687 2024-09-10 15:42:56.870704 cidref 027256138 R rec 79a1584d-3b55-4efb-9db5-5dfda724d60e +2024-09-10 15:42:56.976987 2024-09-10 15:42:56.977004 cidref 027257045 R rec 5c7e8514-7128-4798-ad70-b3c684f6625d +2024-09-10 15:42:57.082832 2024-09-10 15:42:57.082844 cidref 027268284 R rec 2834f522-99c1-4c73-b573-660f4294a89e +2024-09-10 15:42:57.182331 2024-09-10 15:42:57.182349 cidref 027274144 R rec 2c8bff03-59f7-423e-bd05-b8d0d76ddbbb +2024-09-10 15:42:57.290236 2024-09-10 15:42:57.290252 cidref 02727991X R rec 7884154d-8a14-4030-8389-94cc9111ebc4 +2024-09-10 15:42:57.3841 2024-09-10 15:42:57.384116 cidref 02728607X R rec 45dabd2c-cd10-488e-9484-c2bc7747000c +2024-09-10 15:42:57.48188 2024-09-10 15:42:57.481893 cidref 027292916 R rec f0edc7d7-9961-4463-a425-c700e3d7311d +2024-09-10 15:42:57.573315 2024-09-10 15:42:57.57333 cidref 027302148 R rec bca44207-d84b-4b71-8bd3-8a3e1af6a190 +2024-09-10 15:42:57.650902 2024-09-10 15:42:57.65091 cidref 027308359 R rec 1c33a446-1f95-43b1-9e7d-29b8a9f4c1d5 +2024-09-10 15:42:57.722973 2024-09-10 15:42:57.722986 cidref 027317145 R rec 923619a4-bbb0-4681-b412-f50dc3c7b1d0 +2024-09-10 15:42:57.824307 2024-09-10 15:42:57.82432 cidref 027323552 R rec 01a5ae78-6ad6-4295-882a-51266de98bc6 +2024-09-10 15:42:57.912915 2024-09-10 15:42:57.912928 cidref 027328589 R rec 0ba0243d-227a-4433-a505-584618737ecd +2024-09-10 15:42:57.998304 2024-09-10 15:42:57.998316 cidref 027330176 R rec 736825cf-37bd-47ca-bb98-8cd195e7ed69 +2024-09-10 15:42:58.120906 2024-09-10 15:42:58.120919 cidref 027333930 R rec 8e27b50e-6677-4aac-9fb9-05e50887da96 +2024-09-10 15:42:58.266209 2024-09-10 15:42:58.266221 cidref 027336913 R rec ae02c109-aa98-44ef-bec8-eb9d9ec4586c +2024-09-10 15:42:58.361175 2024-09-10 15:42:58.36119 cidref 027345203 R rec 4395b9fa-5133-41aa-98d3-e40a7a18bcec +2024-09-10 15:42:58.448853 2024-09-10 15:42:58.448865 cidref 027355152 R rec cde07201-fba7-4b34-b095-10dbbd580e52 +2024-09-10 15:42:58.54517 2024-09-10 15:42:58.545183 cidref 027355578 R rec 1ddd8bcc-0b40-4dba-9931-75ab2b55ce34 +2024-09-10 15:42:58.646274 2024-09-10 15:42:58.646289 cidref 027355985 R rec d16f8ddd-c12b-40e1-bcfc-9a1808cd59be +2024-09-10 15:42:58.706714 2024-09-10 15:42:58.706718 cidref 027356493 R rec d2d65e59-6a05-43f9-9ec6-6e81b0779c41 +2024-09-10 15:42:58.773795 2024-09-10 15:42:58.77381 cidref 027365697 R rec 31a6cabe-5b64-410e-b9b4-1d0b76ec4b53 +2024-09-10 15:42:58.866927 2024-09-10 15:42:58.866943 cidref 027368661 R rec 52220798-ce76-4eea-b215-0eede2c230ff +2024-09-10 15:42:58.961123 2024-09-10 15:42:58.961138 cidref 027374351 R rec ca09e52c-c246-4d03-b133-7dd042e362bd +2024-09-10 15:42:59.099672 2024-09-10 15:42:59.099688 cidref 027376982 R rec aed21af3-bc27-4e8d-8d79-29929eda249b +2024-09-10 15:42:59.209795 2024-09-10 15:42:59.209808 cidref 027391396 R rec 16e15897-b69e-4317-b0b6-f66ed14a2831 +2024-09-10 15:42:59.299171 2024-09-10 15:42:59.299189 cidref 027396924 R rec 185fd231-abe8-4a7c-9072-670804ece1bf +2024-09-10 15:42:59.406591 2024-09-10 15:42:59.406607 cidref 02739770X R rec 2b019016-33ba-498b-a759-bee13dcccd21 +2024-09-10 15:42:59.513555 2024-09-10 15:42:59.513571 cidref 027415252 R rec 7f6eec3f-08ce-46ac-838b-9ebb26234ea0 +2024-09-10 15:42:59.621671 2024-09-10 15:42:59.621684 cidref 02743141X R rec ab470c31-f1d1-4766-9bb6-8866abcd4902 +2024-09-10 15:42:59.716246 2024-09-10 15:42:59.716252 cidref 027431444 R rec 1a1e14af-5aa7-4f14-8924-2da604e94599 +2024-09-10 15:42:59.796819 2024-09-10 15:42:59.796831 cidref 027436683 R rec 3ac19346-8199-4652-9306-8d0a18f990ac +2024-09-10 15:42:59.899379 2024-09-10 15:42:59.899394 cidref 027455092 R rec 389b8f76-8fd4-4d33-867f-2aaccdeddcbf +2024-09-10 15:42:59.996564 2024-09-10 15:42:59.996577 cidref 027461599 R rec 8564762c-44ce-40a1-86e2-96fd648f5157 +2024-09-10 15:43:00.082539 2024-09-10 15:43:00.082549 cidref 027478033 R rec 73339ec9-4a37-4526-b596-d3ed0a0a7151 +2024-09-10 15:43:00.162582 2024-09-10 15:43:00.162592 cidref 027481352 R rec 3fdb6f8e-fd74-4aad-ac64-2a149b6e8938 +2024-09-10 15:43:00.233136 2024-09-10 15:43:00.233146 cidref 027486753 R rec f9542ca6-d7e1-476e-a3d5-35be6d676c62 +2024-09-10 15:43:00.312686 2024-09-10 15:43:00.312699 cidref 027493032 R rec 7c39693e-067a-483f-bcfc-8c9bb031d32d +2024-09-10 15:43:00.416697 2024-09-10 15:43:00.416709 cidref 027495213 R rec b469235c-a493-4579-a96c-1ad212577def +2024-09-10 15:43:00.511954 2024-09-10 15:43:00.511967 cidref 027495922 R rec d668ce23-f16e-4f99-b391-4fba8767c80b +2024-09-10 15:43:00.607803 2024-09-10 15:43:00.607814 cidref 02750333X R rec f44291c1-7a85-4e54-bd65-cc37e0353fc6 +2024-09-10 15:43:00.694064 2024-09-10 15:43:00.694077 cidref 027506762 R rec 402dfa60-1b44-4e5b-ba0c-9e33067255c9 +2024-09-10 15:43:00.765319 2024-09-10 15:43:00.765324 cidref 027516652 R rec 11630268-7f77-4f4a-960f-ad1dd94fae49 +2024-09-10 15:43:00.840488 2024-09-10 15:43:00.8405 cidref 027519546 R rec e27ba797-a710-40ef-83be-f9fcf7aa41f6 +2024-09-10 15:43:00.936986 2024-09-10 15:43:00.936999 cidref 027519686 R rec 5aa0e295-236d-4f66-8b8e-f257d0881f22 +2024-09-10 15:43:01.045772 2024-09-10 15:43:01.045788 cidref 027528820 R rec e713b15e-7502-4783-9a6c-0cad30cd5fe5 +2024-09-10 15:43:01.168111 2024-09-10 15:43:01.168122 cidref 027532488 R rec a4700c29-52a8-4af1-8a0f-553049971b03 +2024-09-10 15:43:01.257691 2024-09-10 15:43:01.257704 cidref 027545822 R rec fa178b4c-c0c4-4773-83f1-04d4c587bc1b +2024-09-10 15:43:01.364919 2024-09-10 15:43:01.364936 cidref 027564878 R rec e8674aec-c875-4b30-9550-7e621866e1d8 +2024-09-10 15:43:01.464815 2024-09-10 15:43:01.464831 cidref 027578747 R rec be711c8e-72be-466b-9b4f-8d3525044707 +2024-09-10 15:43:01.557687 2024-09-10 15:43:01.557704 cidref 02758254X R rec 8d0f3058-37a7-45f3-9652-505fb9182df9 +2024-09-10 15:43:01.671155 2024-09-10 15:43:01.671173 cidref 027613275 R rec 5d4a94b4-b479-4771-abc9-d8b7d7bfb257 +2024-09-10 15:43:01.75879 2024-09-10 15:43:01.7588 cidref 027616908 R rec 93bd3b49-af1a-4c9a-b0cb-300900766688 +2024-09-10 15:43:01.82818 2024-09-10 15:43:01.82819 cidref 027636461 R rec 23f30471-8912-43ba-8552-1c3ce1dd4369 +2024-09-10 15:43:01.914347 2024-09-10 15:43:01.91436 cidref 027674118 R rec b0a7b061-b1ae-42b8-ad1d-d28b6891c422 +2024-09-10 15:43:02.004216 2024-09-10 15:43:02.004229 cidref 027674150 R rec 3cd97303-fa36-4b66-95a9-2701d2cb4b82 +2024-09-10 15:43:02.108705 2024-09-10 15:43:02.108718 cidref 027682226 R rec 75944242-9c90-4ba2-834d-b8ba86aba968 +2024-09-10 15:43:02.196217 2024-09-10 15:43:02.196228 cidref 027688836 R rec ac402421-03eb-4973-be78-122464df3541 +2024-09-10 15:43:02.288558 2024-09-10 15:43:02.288569 cidref 027694852 R rec 8f59a230-ed3f-4ad6-b687-891d35a93f80 +2024-09-10 15:43:02.398148 2024-09-10 15:43:02.398167 cidref 027710025 R rec f4aeeeb3-885f-485d-a2cc-1a4398dbf3ad +2024-09-10 15:43:02.497059 2024-09-10 15:43:02.497072 cidref 027727327 R rec 5a0e6d27-6ffe-42fa-b04a-cc1400658d0d +2024-09-10 15:43:02.600549 2024-09-10 15:43:02.600567 cidref 027727521 R rec bdc9a5b6-3fc9-441d-839d-ba2c870d25e5 +2024-09-10 15:43:02.710507 2024-09-10 15:43:02.710516 cidref 027729044 R rec 00d117e2-6044-4528-81fb-fa3d64c2e5a4 +2024-09-10 15:43:02.810249 2024-09-10 15:43:02.810257 cidref 027735893 R rec 47a04618-d488-4b78-9985-a61cd9375d37 +2024-09-10 15:43:02.873941 2024-09-10 15:43:02.873952 cidref 027756580 R rec 5dd71598-f39a-4bd7-ae7b-f710078610ca +2024-09-10 15:43:02.988877 2024-09-10 15:43:02.988883 cidref 027756653 R rec 52ddaf9c-4da3-4a75-a158-21a051d2565d +2024-09-10 15:43:03.113648 2024-09-10 15:43:03.113659 cidref 027759547 R rec 92cb09dc-78d7-4e4a-8e82-d6e8106bb29f +2024-09-10 15:43:03.203685 2024-09-10 15:43:03.203701 cidref 027789551 R rec adde1375-d004-4fa1-8305-80ad3513f784 +2024-09-10 15:43:03.314341 2024-09-10 15:43:03.314353 cidref 027793575 R rec 20b6cd71-a339-4d2c-9b98-a5ad80c0122c +2024-09-10 15:43:03.407106 2024-09-10 15:43:03.407121 cidref 027808394 R rec 9536ba06-760f-407a-8a62-a7a91c17a21f +2024-09-10 15:43:03.517366 2024-09-10 15:43:03.517382 cidref 027808629 R rec ebf89218-077d-47a5-a301-1e77dfff3145 +2024-09-10 15:43:03.623306 2024-09-10 15:43:03.623326 cidref 027826171 R rec 904f47a3-1a2e-40e8-8d5a-10d4e3e3e239 +2024-09-10 15:43:03.738406 2024-09-10 15:43:03.738421 cidref 027845214 R rec 16b861cb-4304-44bc-bb01-cfb384ace8a6 +2024-09-10 15:43:03.843544 2024-09-10 15:43:03.843549 cidref 02785082X R rec 7d082d0c-4d60-4484-81f0-eab4f698ec3d +2024-09-10 15:43:03.906102 2024-09-10 15:43:03.906115 cidref 027856097 R rec 1de0c870-0b00-4fb9-aa26-ab79e3ba0a1a +2024-09-10 15:43:04.008104 2024-09-10 15:43:04.008122 cidref 02785714X R rec 644d9b1c-93a8-4ab3-a49a-489622aac0fc +2024-09-10 15:43:04.109706 2024-09-10 15:43:04.109722 cidref 027867277 R rec 074c86f1-ce43-4968-aa2b-93fa23e37a08 +2024-09-10 15:43:04.209688 2024-09-10 15:43:04.209703 cidref 02786765X R rec b5543339-2f2e-467b-9146-9c6677fb8916 +2024-09-10 15:43:04.296706 2024-09-10 15:43:04.29672 cidref 027868338 R rec da04ff30-6b8f-47b2-9ce2-e01294ef9ae4 +2024-09-10 15:43:04.397899 2024-09-10 15:43:04.397914 cidref 027870510 R rec 064604e2-623c-498b-a0b1-83b12154add8 +2024-09-10 15:43:04.52362 2024-09-10 15:43:04.523633 cidref 027873196 R rec 413a5419-2dd2-43a9-9414-43bee3e6c519 +2024-09-10 15:43:04.615712 2024-09-10 15:43:04.615729 cidref 02787608X R rec 447099dc-bd69-4203-a388-6dd29264aa0f +2024-09-10 15:43:04.72842 2024-09-10 15:43:04.728434 cidref 027883094 R rec 036ba2b0-c4db-4578-a0ff-96a30f852338 +2024-09-10 15:43:04.836103 2024-09-10 15:43:04.836118 cidref 02788547X R rec c1c13259-7a56-488c-a8d7-44243ed581b3 +2024-09-10 15:43:04.908876 2024-09-10 15:43:04.908882 cidref 027885496 R rec 74a4eb44-abf1-4530-b794-2320a08e6f90 +2024-09-10 15:43:04.989387 2024-09-10 15:43:04.9894 cidref 027887960 R rec 2af1ac0b-42c0-435c-a34a-14491b05b914 +2024-09-10 15:43:05.084935 2024-09-10 15:43:05.084953 cidref 027908380 R rec cd46fa94-1052-41fa-8664-2d40f499013d +2024-09-10 15:43:05.194944 2024-09-10 15:43:05.194959 cidref 027910210 R rec b06e9490-8d01-4a22-abf0-e788ca7b9e73 +2024-09-10 15:43:05.288047 2024-09-10 15:43:05.288059 cidref 027915115 R rec e9e18642-fa93-4f3c-9029-2d6f1be91772 +2024-09-10 15:43:05.370762 2024-09-10 15:43:05.370772 cidref 027920216 R rec 3503bddb-cca6-4e2a-a725-7b5ebb358e27 +2024-09-10 15:43:05.450471 2024-09-10 15:43:05.450481 cidref 027940373 R rec 9816ee8a-bf18-447e-8acd-70bf47cead7f +2024-09-10 15:43:05.540231 2024-09-10 15:43:05.540241 cidref 027944492 R rec 56163203-5efe-41dc-b6b1-1b9465a378e3 +2024-09-10 15:43:05.619899 2024-09-10 15:43:05.619914 cidref 027950808 R rec 38586d39-cc5c-4e1a-afb3-e6c68a25998d +2024-09-10 15:43:05.710309 2024-09-10 15:43:05.710322 cidref 027963675 R rec 38f93763-1452-45e0-90be-37fd726500e8 +2024-09-10 15:43:05.803003 2024-09-10 15:43:05.803015 cidref 028060563 R rec a35f756b-f5ee-4e87-83c6-3ff645516c55 +2024-09-10 15:43:05.879223 2024-09-10 15:43:05.879233 cidref 028071867 R rec 32fdbfb7-7da3-48d8-8343-aa4e60447589 +2024-09-10 15:43:05.945101 2024-09-10 15:43:05.945117 cidref 028071964 R rec 5b1f7db5-a415-4803-969a-1143871cc6c3 +2024-09-10 15:43:06.038801 2024-09-10 15:43:06.038819 cidref 02807842X R rec c490f71e-bd0f-4efc-aa36-9e0eaaaff4df +2024-09-10 15:43:06.142982 2024-09-10 15:43:06.143001 cidref 02810160X R rec d761b4bc-7c55-48f5-90e6-84f0d4cc1392 +2024-09-10 15:43:06.244155 2024-09-10 15:43:06.244168 cidref 028140362 R rec b3d61dc0-68d6-41d7-95e7-119d40afca45 +2024-09-10 15:43:06.332895 2024-09-10 15:43:06.332909 cidref 028148800 R rec bef030e2-4808-4bae-b4d8-1b83dfe643cc +2024-09-10 15:43:06.443956 2024-09-10 15:43:06.443967 cidref 028211162 R rec 2fdfb9e7-048c-4187-a10c-964a45d1f3a8 +2024-09-10 15:43:06.523293 2024-09-10 15:43:06.523308 cidref 028225090 R rec f9888594-7c25-44ff-a7d6-f6a4afd8acca +2024-09-10 15:43:06.622251 2024-09-10 15:43:06.622262 cidref 028225767 R rec d35b5a12-9487-4dea-b100-d88b2da46d96 +2024-09-10 15:43:06.732271 2024-09-10 15:43:06.732287 cidref 028233506 R rec a75f3943-10c9-4895-88a9-a7364f4f3e12 +2024-09-10 15:43:06.835594 2024-09-10 15:43:06.83561 cidref 028262220 R rec 845f4f7d-8b80-4696-9cda-a4d0cff0b5c6 +2024-09-10 15:43:06.942631 2024-09-10 15:43:06.942636 cidref 028287169 R rec ee092c97-20d5-41f7-af1c-5a10e7660a84 +2024-09-10 15:43:07.028869 2024-09-10 15:43:07.028885 cidref 028359380 R rec 538362b6-9854-4860-97cc-9644b8e79ee4 +2024-09-10 15:43:07.133082 2024-09-10 15:43:07.133095 cidref 028431855 R rec eb27522c-2c77-453d-8f90-6e7ccbcfeb53 +2024-09-10 15:43:07.243386 2024-09-10 15:43:07.243396 cidref 028433890 R rec 2cd01716-a7e3-4dec-ae83-e3f07f89f843 +2024-09-10 15:43:07.328778 2024-09-10 15:43:07.32879 cidref 028497244 R rec 1e928bc3-3ca9-4a37-b87f-00c402c984fb +2024-09-10 15:43:07.422203 2024-09-10 15:43:07.422218 cidref 028517180 R rec a89342dd-11d8-4935-a7c9-5784dbcb22f1 +2024-09-10 15:43:07.535602 2024-09-10 15:43:07.535613 cidref 02852019X R rec 089ef480-fbd1-46d6-8bca-788186d4a0bb +2024-09-10 15:43:07.620162 2024-09-10 15:43:07.620173 cidref 028549082 R rec 80df2e9d-7512-4f84-ac15-91500f9a8738 +2024-09-10 15:43:07.702002 2024-09-10 15:43:07.702015 cidref 028631609 R rec d9170b59-989a-4a0b-af06-65289a6c047d +2024-09-10 15:43:07.806949 2024-09-10 15:43:07.806965 cidref 028637720 R rec bb074d97-1f08-42f4-9939-835f80bd8542 +2024-09-10 15:43:07.907359 2024-09-10 15:43:07.907372 cidref 028675274 R rec c61e5225-30ad-490f-87c1-cfb6bd9ad7f6 +2024-09-10 15:43:08.020317 2024-09-10 15:43:08.020322 cidref 028676661 R rec 682154ca-47e6-4c89-a4e3-eba7affae24e +2024-09-10 15:43:08.180346 2024-09-10 15:43:08.180351 cidref 02868589X R rec 7d465408-cf3a-48b4-a6e5-1b1f4560b91b +2024-09-10 15:43:08.361197 2024-09-10 15:43:08.361203 cidref 028698703 R rec 814c4ca8-9175-4109-a4cf-9abd0d40c74d +2024-09-10 15:43:08.459631 2024-09-10 15:43:08.459636 cidref 028700139 R rec fa888eea-4f4e-4112-b743-c0000a445351 +2024-09-10 15:43:08.527243 2024-09-10 15:43:08.527249 cidref 028700171 R rec 9b70d0ed-18e0-4498-9fd0-6290ae4f4cbd +2024-09-10 15:43:08.596451 2024-09-10 15:43:08.596458 cidref 028725387 R rec 952cc620-3ab0-4032-abe5-92dc146f632a +2024-09-10 15:43:08.674719 2024-09-10 15:43:08.674724 cidref 028898338 R rec adb9b2e0-dd85-4262-b050-8ad2830d95cf +2024-09-10 15:43:08.744936 2024-09-10 15:43:08.744942 cidref 028909917 R rec 9229c793-464c-43b0-a1f1-ab39cd9e7f5a +2024-09-10 15:43:08.819641 2024-09-10 15:43:08.819647 cidref 028910737 R rec d0c84480-6fcf-4814-b11a-a052ea2fa884 +2024-09-10 15:43:08.89187 2024-09-10 15:43:08.891876 cidref 028912098 R rec 130418dd-0053-4d9e-8f5e-0bf036e62b3e +2024-09-10 15:43:08.961868 2024-09-10 15:43:08.961874 cidref 028929098 R rec af17f430-19a3-41d6-a16d-c5812fe1e9eb +2024-09-10 15:43:09.035849 2024-09-10 15:43:09.035854 cidref 028973631 R rec b517009a-3208-41dc-a4fb-d735d0c18470 +2024-09-10 15:43:09.116104 2024-09-10 15:43:09.11611 cidref 02900294X R rec ac85ac27-1880-462e-b189-55753204627d +2024-09-10 15:43:09.189273 2024-09-10 15:43:09.189281 cidref 02904197X R rec 33ab3b0b-c329-480f-a8e5-f11e012172ed +2024-09-10 15:43:09.25625 2024-09-10 15:43:09.256256 cidref 029042046 R rec a7a072c8-a494-4692-be58-cf63acd986ee +2024-09-10 15:43:09.346787 2024-09-10 15:43:09.346793 cidref 029042186 R rec 1e87005d-d947-4f06-b5c5-cf9876c26c85 +2024-09-10 15:43:09.423916 2024-09-10 15:43:09.423922 cidref 02905026X R rec 51c2e540-2d07-4463-bdc4-6f0b86e2c15a +2024-09-10 15:43:09.710378 2024-09-10 15:43:09.710384 cidref 029182387 R rec 46a40065-b34f-4c87-9909-c8d76a648b7d +2024-09-10 15:43:10.019153 2024-09-10 15:43:10.019158 cidref 029205794 R rec 3addcf7b-2e50-48ef-af7a-6cbe339f8747 +2024-09-10 15:43:10.120506 2024-09-10 15:43:10.120511 cidref 029342147 R rec 3dcfde9e-9899-4e5e-b1f8-cb98769e0703 +2024-09-10 15:43:10.195159 2024-09-10 15:43:10.195165 cidref 029344212 R rec 61a5211b-a608-42de-b389-3d01da583969 +2024-09-10 15:43:10.273139 2024-09-10 15:43:10.273145 cidref 029347254 R rec ccc31ecd-b36c-492d-b59e-49e9852d5c59 +2024-09-10 15:43:10.339837 2024-09-10 15:43:10.339843 cidref 029349230 R rec aed1e814-6c28-44e9-8f62-672431ca7442 +2024-09-10 15:43:10.407549 2024-09-10 15:43:10.407555 cidref 029404614 R rec 52fe7a19-1f12-4b5c-a6f8-fcbf64712927 +2024-09-10 15:43:10.481282 2024-09-10 15:43:10.481288 cidref 029410312 R rec c36455c1-d7b1-44a8-9d79-c8fb5a607698 +2024-09-10 15:43:10.583285 2024-09-10 15:43:10.583291 cidref 029575168 R rec b6667bf8-a055-4854-be06-ccd739c400f5 +2024-09-10 15:43:10.663984 2024-09-10 15:43:10.66399 cidref 029652308 R rec 3455f905-0392-4219-ba38-af45a99a3a3a +2024-09-10 15:43:10.736275 2024-09-10 15:43:10.736281 cidref 029726190 R rec b2457d5e-32e3-448e-95c6-3ef862cecbc2 +2024-09-10 15:43:10.811984 2024-09-10 15:43:10.81199 cidref 029753090 R rec ce23246d-905b-44a5-9805-849625a55e53 +2024-09-10 15:43:10.884803 2024-09-10 15:43:10.884809 cidref 029755999 R rec 6f8ef096-4fa5-409d-9a5e-c273be7533b3 +2024-09-10 15:43:10.960988 2024-09-10 15:43:10.960994 cidref 029795826 R rec cdb6fbd5-caf7-40d3-8398-36b15a5bb700 +2024-09-10 15:43:11.035417 2024-09-10 15:43:11.035423 cidref 029888026 R rec 7c8719ee-78d4-40ae-bb97-ec63808cf9e6 +2024-09-10 15:43:11.122065 2024-09-10 15:43:11.122071 cidref 029918006 R rec 82735d26-5c9b-4e91-a55f-aef5be488198 +2024-09-10 15:43:11.199993 2024-09-10 15:43:11.199999 cidref 029933730 R rec 3d2d7659-710b-4a55-8174-4df1d04abb6d +2024-09-10 15:43:11.279811 2024-09-10 15:43:11.279817 cidref 029958857 R rec 00ad3bb9-914c-4d02-9760-8d8bf290b360 +2024-09-10 15:43:11.356979 2024-09-10 15:43:11.356984 cidref 03001235X R rec 6b2b0748-4821-4f02-b073-ac399903f626 +2024-09-10 15:43:11.426409 2024-09-10 15:43:11.426416 cidref 030017653 R rec d8562bb6-424b-4ac2-9265-8ec36491d0df +2024-09-10 15:43:11.505327 2024-09-10 15:43:11.505333 cidref 030055849 R rec f6ce75bc-4c85-45b4-8772-58009d2ad084 +2024-09-10 15:43:11.57976 2024-09-10 15:43:11.579766 cidref 030086469 R rec 95ec21a7-e684-449d-8e4a-e792b0a4111d +2024-09-10 15:43:11.682662 2024-09-10 15:43:11.682668 cidref 030128145 R rec 1cf8e661-2f54-43ea-ba86-3e5d2bfc03ed +2024-09-10 15:43:11.754388 2024-09-10 15:43:11.754394 cidref 03018729X R rec e01d9165-8e8e-4287-a0b7-184f84043575 +2024-09-10 15:43:11.821893 2024-09-10 15:43:11.821899 cidref 030219884 R rec a95ed022-d337-45f9-9290-a87ed1951da5 +2024-09-10 15:43:11.892317 2024-09-10 15:43:11.892322 cidref 030336880 R rec 4a23d234-93dc-480e-b1c9-bc340a6e1259 +2024-09-10 15:43:11.964759 2024-09-10 15:43:11.964765 cidref 030423724 R rec 5d861181-3917-4965-8a9c-99a2bedd9857 +2024-09-10 15:43:12.032787 2024-09-10 15:43:12.032792 cidref 030435056 R rec a8208272-a7d3-4973-8678-2b144e046227 +2024-09-10 15:43:12.11006 2024-09-10 15:43:12.110065 cidref 030642841 R rec f56770d1-5a81-468e-b6a0-9ee8425c79f8 +2024-09-10 15:43:12.193397 2024-09-10 15:43:12.193403 cidref 030768381 R rec ecc8af91-d51a-4530-aad7-d28ef85de1b3 +2024-09-10 15:43:12.264589 2024-09-10 15:43:12.264595 cidref 03082401X R rec e24c2d09-d647-4735-a1d3-c192bfac2abf +2024-09-10 15:43:12.334661 2024-09-10 15:43:12.334667 cidref 030904218 R rec dee329b2-82e6-4553-a582-0a97a611d1eb +2024-09-10 15:43:12.405375 2024-09-10 15:43:12.405381 cidref 030909120 R rec 84955690-6d73-4f5d-9fcf-a6c7aa4a6dd2 +2024-09-10 15:43:12.490669 2024-09-10 15:43:12.490675 cidref 030924987 R rec f0977f83-c44b-4334-a787-5c44ee3cb9ee +2024-09-10 15:43:12.561655 2024-09-10 15:43:12.561661 cidref 030975689 R rec 2af48b15-6f05-4a84-ad5f-68b270b26d52 +2024-09-10 15:43:12.625378 2024-09-10 15:43:12.625384 cidref 031018866 R rec 52b567e9-809d-4cfc-8e50-967582f4e54c +2024-09-10 15:43:12.722384 2024-09-10 15:43:12.72239 cidref 031067956 R rec cfc44925-6081-4220-960b-40e3f1e775a1 +2024-09-10 15:43:12.802362 2024-09-10 15:43:12.802369 cidref 031208495 R rec d9990ce6-6a82-4209-9288-ec7d9f7a1bbd +2024-09-10 15:43:12.871535 2024-09-10 15:43:12.871541 cidref 031380107 R rec c453b0be-c5ed-4205-b7a4-f65e167059ce +2024-09-10 15:43:12.94215 2024-09-10 15:43:12.942155 cidref 031531121 R rec 2df19881-d795-4749-9d01-6d8350e35792 +2024-09-10 15:43:13.013677 2024-09-10 15:43:13.013683 cidref 03166010X R rec f7536fd3-9999-461d-bbd2-f01eb2fd6b8e +2024-09-10 15:43:13.081779 2024-09-10 15:43:13.081787 cidref 031819877 R rec 7dbdbcff-d8d2-4637-914d-334724a16043 +2024-09-10 15:43:13.148405 2024-09-10 15:43:13.148411 cidref 032027524 R rec 42cb4ea4-583c-484e-b35a-9cd317216dd4 +2024-09-10 15:43:13.221528 2024-09-10 15:43:13.221534 cidref 032184034 R rec b2b223cd-c0d7-4420-ac45-d37824dd1ff4 +2024-09-10 15:43:13.290776 2024-09-10 15:43:13.290782 cidref 032317468 R rec 0da23d59-6fe5-410f-9192-ed3c0c23e37a +2024-09-10 15:43:13.374965 2024-09-10 15:43:13.37497 cidref 032324650 R rec 6b80498b-f664-4e75-a9f2-1407532a341c +2024-09-10 15:43:13.458449 2024-09-10 15:43:13.458455 cidref 032324804 R rec a1541fbb-9a71-4884-bc2e-20d243b04e07 +2024-09-10 15:43:13.528552 2024-09-10 15:43:13.528558 cidref 032370474 R rec 5ca31536-fbc5-4974-a063-31e1c0a182fd +2024-09-10 15:43:13.600523 2024-09-10 15:43:13.600528 cidref 03243782X R rec cc8a71a3-f832-4164-8021-2617f4b9d806 +2024-09-10 15:43:13.683955 2024-09-10 15:43:13.683962 cidref 032493940 R rec a3b26a24-9cb1-467b-bb93-5bf75a00f7f7 +2024-09-10 15:43:13.757817 2024-09-10 15:43:13.757823 cidref 032506929 R rec a7f6110e-a0c5-4308-b4e9-cdc59625117f +2024-09-10 15:43:13.822647 2024-09-10 15:43:13.822653 cidref 03256953X R rec ef3eaefe-a84f-4bc9-8438-315bb1ad4e3f +2024-09-10 15:43:13.894078 2024-09-10 15:43:13.894084 cidref 032675011 R rec d1d6af60-a555-4aac-b93e-5fda4d0cff47 +2024-09-10 15:43:13.965484 2024-09-10 15:43:13.96549 cidref 032709501 R rec f72b94eb-70ed-4991-bd96-5b1319f9c1a5 +2024-09-10 15:43:14.041747 2024-09-10 15:43:14.041753 cidref 032916078 R rec 34016dab-40c0-4b88-93bb-d64ca61068ac +2024-09-10 15:43:14.148467 2024-09-10 15:43:14.148473 cidref 032978294 R rec 84a402bd-3e01-4c78-acbe-045c94589722 +2024-09-10 15:43:14.22715 2024-09-10 15:43:14.227156 cidref 033125341 R rec 7bceeb76-07dd-4395-afd2-fff040378842 +2024-09-10 15:43:14.304692 2024-09-10 15:43:14.304698 cidref 033136831 R rec c307c42f-740c-46f2-83a1-b5811920462d +2024-09-10 15:43:14.374065 2024-09-10 15:43:14.37407 cidref 033422605 R rec a32b1533-2272-4ce1-bb7e-bbf3d90c039e +2024-09-10 15:43:14.444005 2024-09-10 15:43:14.44401 cidref 033433763 R rec bba25c2a-4d16-4af9-a4c5-20329d1d7e91 +2024-09-10 15:43:14.514794 2024-09-10 15:43:14.514802 cidref 033642036 R rec e406cece-8f09-4bca-a1b5-de697c13a4f6 +2024-09-10 15:43:14.598707 2024-09-10 15:43:14.598713 cidref 033738653 R rec 66f1c716-fb9a-4a82-85d9-66aadd6221a1 +2024-09-10 15:43:14.667143 2024-09-10 15:43:14.667149 cidref 03374033X R rec a83b3305-7e9e-41a0-b5b2-1e761f997585 +2024-09-10 15:43:14.738742 2024-09-10 15:43:14.738748 cidref 033869235 R rec 00b6de3c-aad2-49b0-ba8e-9192c7435e91 +2024-09-10 15:43:14.807635 2024-09-10 15:43:14.807642 cidref 033895732 R rec ac1bc1b9-0b7c-46bf-a425-73c45ebd9485 +2024-09-10 15:43:14.903429 2024-09-10 15:43:14.903436 cidref 034054693 R rec c3b88179-18d3-4374-a791-405274b5beca +2024-09-10 15:43:14.973965 2024-09-10 15:43:14.973974 cidref 03405491X R rec d4eb4c2d-b4ec-4014-b454-043475934665 +2024-09-10 15:43:15.040533 2024-09-10 15:43:15.040541 cidref 034133704 R rec 7906f23c-7143-4e75-92ce-538901f416c8 +2024-09-10 15:43:15.1134 2024-09-10 15:43:15.113405 cidref 034195688 R rec 67a590a5-8a91-4734-9df5-25e2b4d2f850 +2024-09-10 15:43:15.19593 2024-09-10 15:43:15.195936 cidref 034254145 R rec 92509115-106c-45d6-8884-20ccacc526f2 +2024-09-10 15:43:15.278546 2024-09-10 15:43:15.278553 cidref 034259910 R rec 21acca3e-5b18-422c-8b9e-508469ab9769 +2024-09-10 15:43:15.353295 2024-09-10 15:43:15.3533 cidref 034308695 R rec 5c7893e7-9f79-4a37-bfbf-3cc6cd6716ad +2024-09-10 15:43:15.421499 2024-09-10 15:43:15.421504 cidref 034342230 R rec 78cddb7f-0243-4905-9078-95aef9be1617 +2024-09-10 15:43:15.487647 2024-09-10 15:43:15.487652 cidref 034566228 R rec d586159d-d4a6-409c-b823-672681f4980b +2024-09-10 15:43:15.565843 2024-09-10 15:43:15.565849 cidref 034591966 R rec c351c8b1-ecf6-4653-89b3-f1639f2366ec +2024-09-10 15:43:15.646739 2024-09-10 15:43:15.646748 cidref 034623574 R rec 03e213f7-ebe0-475f-b55d-467c63eb6be7 +2024-09-10 15:43:15.722415 2024-09-10 15:43:15.722421 cidref 034679391 R rec bd54a30c-5233-4ba2-9cae-6cf57b1f204a +2024-09-10 15:43:15.800814 2024-09-10 15:43:15.80082 cidref 034705384 R rec 840ea0c5-8b57-4b4c-8164-40f3aa5be9e4 +2024-09-10 15:43:15.861528 2024-09-10 15:43:15.861534 cidref 03472690X R rec 344b48b5-c67e-4a55-9520-8a5abcd03cec +2024-09-10 15:43:15.928339 2024-09-10 15:43:15.928345 cidref 034766995 R rec 4ef53443-005c-4387-bdbd-0d1fae746fd2 +2024-09-10 15:43:16.009894 2024-09-10 15:43:16.0099 cidref 034781897 R rec 5f9e6b9e-b11d-4769-a40b-806b53de8865 +2024-09-10 15:43:16.082264 2024-09-10 15:43:16.08227 cidref 034857923 R rec 4d47706c-0317-4254-b0af-4ffe1833fe8c +2024-09-10 15:43:16.180328 2024-09-10 15:43:16.180334 cidref 034885420 R rec f3f030da-0307-4bce-8327-0c28ebbbd701 +2024-09-10 15:43:16.247555 2024-09-10 15:43:16.247561 cidref 034892710 R rec 0ebf3120-1866-4ed3-8e5a-f0d946890e09 +2024-09-10 15:43:16.321828 2024-09-10 15:43:16.321833 cidref 034960848 R rec 4dae2553-7f07-4651-864a-91be23b9ed1e +2024-09-10 15:43:16.40161 2024-09-10 15:43:16.401615 cidref 035061308 R rec 705a7900-23b8-4195-9e77-5796dea8fe59 +2024-09-10 15:43:16.468863 2024-09-10 15:43:16.468869 cidref 035095679 R rec 265548bd-9128-4fd0-a2ca-5aeacda3bff7 +2024-09-10 15:43:16.538147 2024-09-10 15:43:16.538152 cidref 035167734 R rec 72b81861-7dbb-4fb9-b3a6-d9c1974e15b2 +2024-09-10 15:43:16.60685 2024-09-10 15:43:16.606856 cidref 035198222 R rec 516f0b15-1453-4bb2-b3fc-49a2356f449c +2024-09-10 15:43:16.676531 2024-09-10 15:43:16.676536 cidref 035260521 R rec e825f222-4124-409a-abab-e5c9a2abcf7d +2024-09-10 15:43:16.74361 2024-09-10 15:43:16.743616 cidref 035461152 R rec f0711994-0de3-48ad-a9f2-b588018c1383 +2024-09-10 15:43:16.813477 2024-09-10 15:43:16.813483 cidref 035486686 R rec 9ac25876-5789-49a5-9d9a-2a0c9cf237c6 +2024-09-10 15:43:16.878826 2024-09-10 15:43:16.878832 cidref 035527250 R rec dffd9f0e-e689-4c6c-8782-813790ab54a1 +2024-09-10 15:43:16.956667 2024-09-10 15:43:16.956673 cidref 035621664 R rec 603d3f8e-c474-4c81-8ed6-d98b6e38681c +2024-09-10 15:43:17.044101 2024-09-10 15:43:17.044107 cidref 035634847 R rec 6dcbc486-6d78-4816-a3c3-30520f1643f2 +2024-09-10 15:43:17.115976 2024-09-10 15:43:17.115989 cidref 035650532 R rec 3ac6c280-9258-4bb1-bbdb-6c4285a63943 +2024-09-10 15:43:17.17924 2024-09-10 15:43:17.179245 cidref 035658622 R rec 28518a6f-575b-4591-9953-75ba7ee01ec7 +2024-09-10 15:43:17.246219 2024-09-10 15:43:17.246225 cidref 035724099 R rec f8b3551b-8ee5-4e16-8981-3a7f232b5c72 +2024-09-10 15:43:17.311275 2024-09-10 15:43:17.311281 cidref 050124315 R rec e60ec5e3-abb0-439e-8a20-434f507c22ff +2024-09-10 15:43:17.377424 2024-09-10 15:43:17.377429 cidref 050186647 R rec 8d567a9b-7227-42c2-b9d4-470b59c1438a +2024-09-10 15:43:17.449959 2024-09-10 15:43:17.449965 cidref 050220284 R rec 3d715385-894e-4793-9d99-fa4705f4ef78 +2024-09-10 15:43:17.518106 2024-09-10 15:43:17.518112 cidref 050366157 R rec a9a21b14-69bb-4715-a8c3-c9d2103f4e7d +2024-09-10 15:43:17.589478 2024-09-10 15:43:17.589484 cidref 05041870X R rec ac8fae83-4971-481e-b839-5f083e8f9f74 +2024-09-10 15:43:17.661608 2024-09-10 15:43:17.661615 cidref 050516760 R rec 0d1423f5-5792-4cbe-a003-9c538d85888e +2024-09-10 15:43:17.726452 2024-09-10 15:43:17.726458 cidref 050518526 R rec d30f24d5-5956-4f76-9974-ddb88b3eb23d +2024-09-10 15:43:17.791881 2024-09-10 15:43:17.791887 cidref 050534882 R rec 675642e8-6aa8-44f4-9b86-657e5f9a707f +2024-09-10 15:43:17.861679 2024-09-10 15:43:17.861685 cidref 05056479X R rec 8a182997-0ae3-4810-9ad0-1eeee93bfa30 +2024-09-10 15:43:17.928144 2024-09-10 15:43:17.92815 cidref 050582453 R rec a03d8bda-34d9-4fca-aca2-acd8d14f2dde +2024-09-10 15:43:18.018058 2024-09-10 15:43:18.018064 cidref 050602195 R rec 88e656ff-190b-4edd-80ab-d194befb0620 +2024-09-10 15:43:18.113586 2024-09-10 15:43:18.113592 cidref 050627953 R rec f08b8513-01cd-4c42-944a-4d13ed620d18 +2024-09-10 15:43:18.183224 2024-09-10 15:43:18.183229 cidref 050702858 R rec 9873e7d5-65a3-42b1-a5a4-63ab0c3bf190 +2024-09-10 15:43:18.271466 2024-09-10 15:43:18.271472 cidref 050764861 R rec 411090b0-24dc-4ec4-9043-a3db32bc64e6 +2024-09-10 15:43:18.34155 2024-09-10 15:43:18.341556 cidref 050773313 R rec 1461edcf-459e-4eb0-8f09-a4ce6234b5d4 +2024-09-10 15:43:18.412816 2024-09-10 15:43:18.412822 cidref 050784005 R rec 2ee5f13e-f659-418f-98e1-7fbd154e377f +2024-09-10 15:43:18.476222 2024-09-10 15:43:18.476233 cidref 050808583 R rec 995946f8-107a-4317-aa8a-f4fccdc1af52 +2024-09-10 15:43:18.543904 2024-09-10 15:43:18.54391 cidref 050827405 R rec 8ef86816-4902-455d-807c-7b3c3db46445 +2024-09-10 15:43:18.608097 2024-09-10 15:43:18.608103 cidref 052587207 R rec 5d9bebd6-9422-416f-967d-64c3df564eda +2024-09-10 15:43:18.671 2024-09-10 15:43:18.671011 cidref 052634833 R rec 0b6f5f3e-80f1-492d-87a6-b00ba89cb08c +2024-09-10 15:43:18.737437 2024-09-10 15:43:18.737442 cidref 053469844 R rec ab9044b3-dde0-45a5-b9e2-99d2e6beee18 +2024-09-10 15:43:18.810949 2024-09-10 15:43:18.810954 cidref 055308600 R rec 13b4f9ea-3d41-462f-9513-4b7baa3013e8 +2024-09-10 15:43:18.879264 2024-09-10 15:43:18.87927 cidref 059302208 R rec 41bc7084-47f5-48ee-a713-ec7159d58143 +2024-09-10 15:43:18.95396 2024-09-10 15:43:18.953966 cidref 05930278X R rec f4d82d50-4053-41a1-800a-f258ba0b90d8 +2024-09-10 15:43:19.019947 2024-09-10 15:43:19.019952 cidref 059307374 R rec c92d06ce-e362-4b6c-a5f3-43135575cf8f +2024-09-10 15:43:19.084617 2024-09-10 15:43:19.084622 cidref 06082929X R rec 970646d7-1534-4541-a0fc-f65bc4bc2a9a +2024-09-10 15:43:19.148465 2024-09-10 15:43:19.14847 cidref 06160738X R rec 8eb7268c-2df7-4c59-850c-2b32e080b4ee +2024-09-10 15:43:19.220557 2024-09-10 15:43:19.220564 cidref 075000504 R rec f8cb6d37-f5f7-498b-b764-6947a74152a7 +2024-09-10 15:43:19.293084 2024-09-10 15:43:19.293089 cidref 077057589 R rec 6e6d8258-bbd3-4fc0-98bf-43864e5d5df8 +2024-09-10 15:43:19.37725 2024-09-10 15:43:19.377256 cidref 077060377 R rec 4d95f308-0a65-46d3-842a-03102033d334 +2024-09-10 15:43:19.444352 2024-09-10 15:43:19.444359 cidref 077062809 R rec c78068de-d8e3-493a-942b-b84a0fda2b67 +2024-09-10 15:43:19.52126 2024-09-10 15:43:19.521266 cidref 077075757 R rec 9f57bdd6-daa9-4548-a850-70038032bd55 +2024-09-10 15:43:19.593252 2024-09-10 15:43:19.593258 cidref 077088883 R rec d5d3dcd9-547a-4e48-a678-c03e5d544ff8 +2024-09-10 15:43:19.661534 2024-09-10 15:43:19.661539 cidref 077091035 R rec bc07bb3d-69de-47a4-986b-9379459c130e +2024-09-10 15:43:19.738613 2024-09-10 15:43:19.738619 cidref 077397827 R rec 1d0fab94-bc6e-43a3-b04e-485ce21840de +2024-09-10 15:43:19.834859 2024-09-10 15:43:19.834864 cidref 077937007 R rec 43774f72-2c76-4d04-ac30-c0a0358c5ceb +2024-09-10 15:43:19.913565 2024-09-10 15:43:19.913571 cidref 078974089 R rec 63e123a6-8bb5-4541-8b5c-15c5b97fc93f +2024-09-10 15:43:19.985721 2024-09-10 15:43:19.985726 cidref 079180043 R rec eeceff41-b020-4e05-909e-5012753924e1 +2024-09-10 15:43:20.057966 2024-09-10 15:43:20.057974 cidref 081665660 R rec 29d71e72-7b47-43a8-adf0-742de51d7df4 +2024-09-10 15:43:20.120913 2024-09-10 15:43:20.120919 cidref 083421467 R rec 46c85477-7b50-4b3d-880d-bc1d46aaf3b3 +2024-09-10 15:43:20.190512 2024-09-10 15:43:20.190519 cidref 083972684 R rec 1fcf89ec-32ad-45c8-a4e6-695ac330c65b +2024-09-10 15:43:20.262805 2024-09-10 15:43:20.26281 cidref 08523611X R rec f3647058-5f73-4e95-b7d4-bb8344227276 +2024-09-10 15:43:20.331621 2024-09-10 15:43:20.331626 cidref 087834979 R rec 534ed6e9-7e69-430b-a262-9c30020b6551 +2024-09-10 15:43:20.396624 2024-09-10 15:43:20.39663 cidref 087960621 R rec efd8f955-c177-4f99-a46b-bf5c542813a5 +2024-09-10 15:43:20.475284 2024-09-10 15:43:20.47529 cidref 092468594 R rec 342f0dcb-4bb0-4bcd-80fa-0a245428e8ec +2024-09-10 15:43:20.545185 2024-09-10 15:43:20.545191 cidref 092468950 R rec 120084ab-3959-4f50-9ee1-1b755de912fd +2024-09-10 15:43:20.626594 2024-09-10 15:43:20.6266 cidref 101481071 R rec ea405fc2-c291-49d7-bedf-191581086653 +2024-09-10 15:43:20.702455 2024-09-10 15:43:20.70246 cidref 110905687 R rec 65166e7e-7230-4ec5-b8c5-7d57a36f5843 +2024-09-10 15:43:20.767606 2024-09-10 15:43:20.767611 cidref 111597153 R rec 352c31ea-51cb-4319-9465-8bff63d54088 +2024-09-10 15:43:20.832945 2024-09-10 15:43:20.83295 cidref 112539750 R rec df446125-4f0c-42c6-a76d-b657d7385c41 +2024-09-10 15:43:20.903943 2024-09-10 15:43:20.903948 cidref 115898840 R rec 3861b219-7fb3-40cd-b7f7-d72470c2ffe1 +2024-09-10 15:43:20.966408 2024-09-10 15:43:20.966416 cidref 118419722 R rec 19693d01-c982-4672-ad5e-2b356830a6e4 +2024-09-10 15:43:21.044875 2024-09-10 15:43:21.04488 cidref 118420763 R rec 137de9ac-f954-445e-8a33-6a7a2e1a4de0 +2024-09-10 15:43:21.109719 2024-09-10 15:43:21.109724 cidref 11948949X R rec 19bc192c-c012-43f4-9b35-b823fa0c7027 +2024-09-10 15:43:21.169455 2024-09-10 15:43:21.169461 cidref 120299658 R rec 89b66082-39db-4830-b256-5730ca551289 +2024-09-10 15:43:21.233181 2024-09-10 15:43:21.233187 cidref 12059353X R rec 955c5e71-1245-4307-9c66-519e683afd22 +2024-09-10 15:43:21.303066 2024-09-10 15:43:21.303072 cidref 122348486 R rec d118942c-2850-4b79-90e2-4d3eed149e76 +2024-09-10 15:43:21.369411 2024-09-10 15:43:21.369419 cidref 122348877 R rec ef469e30-10bc-4c03-8cba-bb9c9787ed74 +2024-09-10 15:43:21.432503 2024-09-10 15:43:21.432509 cidref 122957032 R rec 6a010004-fc55-4659-8de3-5d0908b74094 +2024-09-10 15:43:21.511592 2024-09-10 15:43:21.511599 cidref 123472466 R rec d3ad980f-9d5a-4799-b168-40421bf74f17 +2024-09-10 15:43:21.570951 2024-09-10 15:43:21.570956 cidref 124452248 R rec 9ae1acb8-297c-49e7-b8cc-d602ac04db75 +2024-09-10 15:43:21.634562 2024-09-10 15:43:21.634567 cidref 129822051 R rec cf4ac662-5a81-4dc4-86f8-fc2a235c907f +2024-09-10 15:43:21.693341 2024-09-10 15:43:21.693346 cidref 130683035 R rec cd44aca0-4011-408a-a514-5ed2ea257985 +2024-09-10 15:43:21.754559 2024-09-10 15:43:21.754565 cidref 13073019X R rec a74bfbb7-a5ab-4b00-94bb-ba6fc01a8dd1 +2024-09-10 15:43:21.81576 2024-09-10 15:43:21.815765 cidref 131981226 R rec 5184787a-63a7-4b32-a0a3-1dd5308d2fae +2024-09-10 15:43:21.877666 2024-09-10 15:43:21.877672 cidref 132211378 R rec 77f5e910-932b-454f-8617-7aa8853d7320 +2024-09-10 15:43:21.941787 2024-09-10 15:43:21.941793 cidref 133566129 R rec 92509b4b-c139-46c4-bbdb-c4a572bec13c +2024-09-10 15:43:22.005621 2024-09-10 15:43:22.005627 cidref 135615003 R rec d1f0adba-fed9-4927-9805-df19b0befd9a +2024-09-10 15:43:22.067268 2024-09-10 15:43:22.067274 cidref 136707165 R rec 2254878f-9218-4da3-a764-f823d89cb05d +2024-09-10 15:43:22.133823 2024-09-10 15:43:22.133829 cidref 13776541X R rec 1db85ab7-679c-4d7a-ae36-4e055f7322d9 +2024-09-10 15:43:22.196023 2024-09-10 15:43:22.19603 cidref 137978685 R rec 59f74fd4-69a8-429a-943d-b85697fb042c +2024-09-10 15:43:22.26323 2024-09-10 15:43:22.263235 cidref 139100857 R rec bf4deb1f-7724-41b8-af44-2e8bb2b0356c +2024-09-10 15:43:22.376037 2024-09-10 15:43:22.376043 cidref 142761583 R rec d041d0b3-9f87-4c09-b25a-5e10d024d4df +2024-09-10 15:43:22.443736 2024-09-10 15:43:22.443742 cidref 144664194 R rec 1b388a0f-593b-4d2e-93a0-d8e20dd9e8d3 +2024-09-10 15:43:22.519361 2024-09-10 15:43:22.519366 cidref 145035468 R rec cd9d9736-3d04-43a7-a683-cfdff54103ea +2024-09-10 15:43:22.58787 2024-09-10 15:43:22.587875 cidref 145909093 R rec 15ad6c67-7310-4dd6-8e88-82993570f9cf +2024-09-10 15:43:22.650651 2024-09-10 15:43:22.650658 cidref 146923081 R rec 9b425200-acde-4a87-b1ff-9826040a10eb +2024-09-10 15:43:22.714309 2024-09-10 15:43:22.714314 cidref 147286433 R rec c116afde-2ad6-4e9a-abc7-b84abd2864cd +2024-09-10 15:43:22.781198 2024-09-10 15:43:22.781204 cidref 148541372 R rec 3f680d0e-932a-481b-91df-48d80bd5f0e5 +2024-09-10 15:43:22.84859 2024-09-10 15:43:22.8486 cidref 148542182 R rec 12eb71da-9978-4582-80a0-2f38bab92ce5 +2024-09-10 15:43:22.931189 2024-09-10 15:43:22.931197 cidref 151385432 R rec 5b425126-91d7-470b-a06c-248afc32221f +2024-09-10 15:43:22.991231 2024-09-10 15:43:22.991239 cidref 15212201X R rec d2baa4f4-9c9b-47d2-83b9-55753168ee65 +2024-09-10 15:43:23.056154 2024-09-10 15:43:23.056159 cidref 15909545X R rec 2c293974-899e-4082-aaea-5d05e809f1a4 +2024-09-10 15:43:23.128257 2024-09-10 15:43:23.128263 cidref 167934813 R rec 7c554268-f5c0-45cb-b259-1c27bea34d7e +2024-09-10 15:43:23.191601 2024-09-10 15:43:23.191607 cidref 168476010 R rec 7dcc88e9-3bf5-4c55-8c87-8dd400670f85 +2024-09-10 15:43:23.25291 2024-09-10 15:43:23.252916 cidref 169910733 R rec 9d32f9c8-9e8a-41c9-a1c5-2b3f63027e99 +2024-09-10 15:43:23.323055 2024-09-10 15:43:23.323064 cidref 17129226X R rec 5ecb89ba-9f3a-4258-bef5-58a27d853cc6 +2024-09-10 15:43:23.383858 2024-09-10 15:43:23.383864 cidref 17523308X R rec d38d6965-0119-46b1-a611-573004c7ab5b +2024-09-10 15:43:23.450012 2024-09-10 15:43:23.45002 cidref 17939360X R rec 26dcf341-1999-41ef-9f63-23dbb98bc069 +2024-09-10 15:43:23.511004 2024-09-10 15:43:23.51101 cidref 180214845 R rec 86643919-d550-4a16-ac8b-41c07670cafc +2024-09-10 15:43:23.575842 2024-09-10 15:43:23.57585 cidref 180214926 R rec 643438f6-ff82-4d77-8824-73294c5d4710 +2024-09-10 15:43:23.63779 2024-09-10 15:43:23.637795 cidref 18028505X R rec 4d5bd6af-9702-4aac-abac-5c193a2b0c17 +2024-09-10 15:43:23.700577 2024-09-10 15:43:23.700583 cidref 181882604 R rec 8743bd71-912c-4cf9-adad-6716950e6afe +2024-09-10 15:43:23.7657 2024-09-10 15:43:23.765706 cidref 182446174 R rec 1004b9f3-625d-4a99-928a-2f155317b1cf +2024-09-10 15:43:23.839 2024-09-10 15:43:23.839007 cidref 183790936 R rec 5fe58871-8655-41f9-a4ab-3c32d149866e +2024-09-10 15:43:23.900053 2024-09-10 15:43:23.900059 cidref 183791428 R rec 0738c442-1ced-4574-8a1f-9ec4957a464f +2024-09-10 15:43:23.963598 2024-09-10 15:43:23.963604 cidref 184625807 R rec 0a10aa19-8fc5-419c-9c82-9b13ea672551 +2024-09-10 15:43:24.038101 2024-09-10 15:43:24.038106 cidref 185018440 R rec 033e3d2b-c135-4fac-8ff5-757214b59940 +2024-09-10 15:43:24.103789 2024-09-10 15:43:24.103795 cidref 187082324 R rec 905a8263-92cb-44ab-9c22-806434747184 +2024-09-10 15:43:24.172297 2024-09-10 15:43:24.172303 cidref 190795786 R rec 9f89ef53-d10b-475e-ba6c-9bc16d6e602a +2024-09-10 15:43:24.247682 2024-09-10 15:43:24.247691 cidref 190994320 R rec 89128762-a759-4b20-97c5-997e7b643e61 +2024-09-10 15:43:24.312739 2024-09-10 15:43:24.312742 cidref 193304104 R rec 61bf63fb-a4d3-463f-b68c-8f4458c3b6ac +2024-09-10 15:43:24.376257 2024-09-10 15:43:24.376262 cidref 193617668 R rec 3e89c145-b241-4f1c-ada5-ca13f0a3de99 +2024-09-10 15:43:24.438522 2024-09-10 15:43:24.438528 cidref 196951763 R rec 33d03098-067c-4151-851d-8c3b8acb7c01 +2024-09-10 15:43:24.51021 2024-09-10 15:43:24.510216 cidref 197956653 R rec 807b535d-3b29-4d43-b985-9c2ad5f5b839 +2024-09-10 15:43:24.620429 2024-09-10 15:43:24.620435 cidref 197957358 R rec daf10155-6dd2-4898-86a3-baedda7ca2ba +2024-09-10 15:43:24.69255 2024-09-10 15:43:24.692556 cidref 199344019 R rec d8c7ddd7-0281-4260-81cf-2e995c841f3d +2024-09-10 15:43:24.77141 2024-09-10 15:43:24.771416 cidref 199344248 R rec 3095ac33-cba5-4faa-b545-1cd83633408e +2024-09-10 15:43:24.858113 2024-09-10 15:43:24.858119 cidref 200582038 R rec 5c987a40-6377-4c0a-b546-8aa97707c002 +2024-09-10 15:43:24.932324 2024-09-10 15:43:24.932329 cidref 200884530 R rec f405f106-6d9e-4765-91d7-f7c3826b66d1 +2024-09-10 15:43:25.002798 2024-09-10 15:43:25.002805 cidref 204008557 R rec 23899820-f837-4089-9962-aeae8315ff6a +2024-09-10 15:43:25.073378 2024-09-10 15:43:25.073384 cidref 219951152 R rec a36adecd-ad0a-43db-b826-a8179f37f847 +2024-09-10 15:43:25.155331 2024-09-10 15:43:25.155336 cidref 219966540 R rec c633ebd6-b3c9-4672-bc2a-3612b33c5d1c +2024-09-10 15:43:25.241519 2024-09-10 15:43:25.241525 cidref 223495913 R rec 9611db3b-9640-4c03-b76a-1e8c8e984cb7 +2024-09-10 15:43:25.304974 2024-09-10 15:43:25.30498 cidref 223831840 R rec 8764f36b-cc77-41c3-8d33-931e1e48e8c4 +2024-09-10 15:43:25.369574 2024-09-10 15:43:25.36958 cidref 225382520 R rec 184870d5-de1e-435d-b3a0-032c01f6362b +2024-09-10 15:43:25.432583 2024-09-10 15:43:25.432589 cidref 227367677 R rec 27f37cdb-1db3-45eb-999d-beb910696e07 +2024-09-10 15:43:25.496464 2024-09-10 15:43:25.496471 cidref 227858689 R rec 489eb59e-3a73-4293-ab6b-feb42e90c489 +2024-09-10 15:43:25.56091 2024-09-10 15:43:25.560918 cidref 228803608 R rec 6f8c6254-92eb-4165-92bb-d566331afa1f +2024-09-10 15:43:25.634002 2024-09-10 15:43:25.634012 cidref 232818665 R rec f56bc8c9-a793-4045-8d9b-8b169c93e26d +2024-09-10 15:43:25.698884 2024-09-10 15:43:25.698889 cidref 234183721 R rec c487b4c8-4060-48fb-8d76-e8e51fe0706a +2024-09-10 15:43:25.774087 2024-09-10 15:43:25.774093 cidref 236280147 R rec d5fe0399-8266-4351-841f-1b1375606902 +2024-09-10 15:43:25.849156 2024-09-10 15:43:25.849164 cidref 26110683X R rec fe4a5aac-4657-46df-a380-5ac66f66f80b +2024-09-10 15:43:25.911121 2024-09-10 15:43:25.911127 cidref 261107119 R rec f10fcab5-a41a-42b1-9f79-95714789ad12 +2024-09-10 15:43:25.981983 2024-09-10 15:43:25.981989 cidref 261901915 R rec b380abcd-c843-4bf2-9b97-ced3955226cf +2024-09-10 15:43:26.067153 2024-09-10 15:43:26.067161 cidref 263499758 R rec d9c764ed-2476-4c35-845b-cbd47d158770 +2024-09-10 15:43:26.129961 2024-09-10 15:43:26.129967 cidref 264222423 R rec e0bfb716-308d-4631-ad55-0701d6bc50c2 +2024-09-10 15:43:26.197105 2024-09-10 15:43:26.197111 cidref 264325974 R rec 3dc9e18c-b839-4485-b333-0760866ada5d +2024-09-10 15:43:26.263427 2024-09-10 15:43:26.263434 cidref 264387414 R rec b9fbb2b5-c130-4661-b6de-08e8bd101ff2 +2024-09-10 15:43:26.345016 2024-09-10 15:43:26.345021 cidref 264387538 R rec 3ea9b924-07f7-4e62-bd1f-fbdb0f89f179 +2024-09-10 15:43:26.418633 2024-09-10 15:43:26.418639 cidref 26438833X R rec 9aadf8d8-344f-48d5-b9d1-035addf789e5 +2024-09-10 15:43:26.486896 2024-09-10 15:43:26.486901 cidref 271981423 R rec 7b16b734-9295-4113-8d0e-d0afe13087ed +2024-09-10 15:43:26.550786 2024-09-10 15:43:26.550792 cidref 27874690X R rec 461363bc-c9da-4262-adca-ffe16027d054 +2024-09-10 15:43:26.618692 2024-09-10 15:43:26.618698 cidref 278746969 R rec 78d862f8-5422-4499-bef5-5c615c6ec524 +2024-09-10 15:43:26.68418 2024-09-10 15:43:26.684186 cidref 278746985 R rec ad7e0376-24e1-4f9a-acc6-40814a340656 +2024-09-10 15:43:26.745439 2024-09-10 15:43:26.745444 cidref 278746993 R rec 5fd53094-dfa7-44ba-af2c-fe895a61ff1b +2024-09-10 15:43:26.812091 2024-09-10 15:43:26.812097 cidref 278747000 R rec 82f32d1b-61e0-451b-9f14-40f58d8155c7 +2024-09-10 15:43:26.871216 2024-09-10 15:43:26.871222 cidref 278747019 R rec 3ddb340d-b57c-499a-8738-fa03d033801c +2024-09-10 15:43:26.931094 2024-09-10 15:43:26.9311 cidref 278747043 R rec b51a77ac-2009-4ecd-ace8-ab9bf282bc8c +2024-09-10 15:43:26.991711 2024-09-10 15:43:26.991717 cidref 278747167 R rec 42df9b50-1e69-4451-98a3-ce458cf37f3f +2024-09-10 15:43:27.051679 2024-09-10 15:43:27.051685 cidref 278747175 R rec 6f4f1035-a528-48ff-8661-a0af30b0fbfd +2024-09-10 15:43:27.118386 2024-09-10 15:43:27.118392 cidref 278747183 R rec c69175f6-d2bc-4d01-9905-8501fafdaced +2024-09-10 15:43:27.19049 2024-09-10 15:43:27.190496 cidref 278747191 R rec c0965146-456f-4ec4-a304-5f2c8de8f0a2 +2024-09-10 15:43:27.269139 2024-09-10 15:43:27.269145 cidref 27874723X R rec 3cf46e08-446d-4b12-9ce4-0957518f6049 +2024-09-10 15:43:27.332825 2024-09-10 15:43:27.332831 cidref 278747280 R rec e4f5ac93-7f8a-426b-8df4-ea526ce9430a +2024-09-10 15:43:27.398272 2024-09-10 15:43:27.398278 cidref 278747329 R rec 42a2d0d6-5690-4f7f-97d7-18ead65ca828 +2024-09-10 15:43:27.474223 2024-09-10 15:43:27.474229 cidref 279034725 R rec fbbe7fb1-35c1-42c3-a9b0-78a9f973a18a +2024-09-10 15:43:27.536747 2024-09-10 15:43:27.536753 cidref 279034733 R rec 7667a058-af20-4286-9a03-b0d86edacf1d +2024-09-10 15:43:27.597674 2024-09-10 15:43:27.59768 cidref 279034741 R rec 1068a442-e360-4ecc-83b1-993ce145b437 +2024-09-10 15:43:27.662031 2024-09-10 15:43:27.662037 cidref 27903475X R rec 7ff066c4-ec74-44c9-b5c2-ea16022f0920 +2024-09-10 15:43:27.726154 2024-09-10 15:43:27.72616 cidref 279034806 R rec 910d9c8f-ed46-4298-be1b-e1b432051db8 +2024-09-10 15:43:27.79084 2024-09-10 15:43:27.790846 cidref 279034814 R rec 1eedec2d-7a0e-4892-b59a-3ce6bc43a16c +2024-09-10 15:43:27.854448 2024-09-10 15:43:27.854456 cidref 279034822 R rec 34c9f545-c9e8-42dd-8c43-c59fe91df787 +2024-09-10 15:43:27.921533 2024-09-10 15:43:27.921538 cidref 279034849 R rec afaf252d-d768-40a3-86ea-45d0fdc2c3b0 +2024-09-10 15:43:27.987489 2024-09-10 15:43:27.987493 cidref 279034881 R rec 992bc37e-44f9-4a9c-b87e-d362bdaf2d72 +2024-09-10 15:43:28.055529 2024-09-10 15:43:28.055534 cidref 27903492X R rec 68c3d3fa-3c55-4c43-9fbf-9055b9dc4c8c +2024-09-10 15:43:28.129784 2024-09-10 15:43:28.12979 cidref 279034946 R rec 5b340812-7a0b-4af0-92ed-f709f3b383b3 +2024-09-10 15:43:28.207673 2024-09-10 15:43:28.207679 cidref 279034962 R rec ad7604ef-fd06-4897-8219-226d92ff9a0d +2024-09-10 15:43:28.28389 2024-09-10 15:43:28.283896 cidref 279034970 R rec c0e91599-891e-4671-ad42-49679c415771 +2024-09-10 15:43:28.357235 2024-09-10 15:43:28.357242 cidref 279034997 R rec 5cccc491-6578-469d-8cb9-5fd0cd2947fc +2024-09-10 15:43:28.424324 2024-09-10 15:43:28.42433 cidref 279035020 R rec 3dd0f905-5eb0-45e3-892a-75c87648853d +2024-09-10 15:43:28.492914 2024-09-10 15:43:28.49292 cidref 279035063 R rec 4d5af691-68c3-45ac-ad47-00235ee6241f +2024-09-10 15:43:28.569006 2024-09-10 15:43:28.569012 cidref 279035071 R rec 2563a7ea-63c7-42e6-a73b-b3b72b5d6a6a +2024-09-10 15:43:28.637237 2024-09-10 15:43:28.637242 cidref 27903508X R rec cabc0388-759b-4606-86b8-cbe6ba6dd388 +2024-09-10 15:43:28.709112 2024-09-10 15:43:28.709118 cidref 279035098 R rec 92dbbf85-11dc-48d4-b553-c4ad3b2b8732 +2024-09-10 15:43:28.776689 2024-09-10 15:43:28.776695 cidref 279035101 R rec 3a74fa3d-2bf9-4393-b9ae-525d9a110f4f +2024-09-10 15:43:28.852275 2024-09-10 15:43:28.852281 cidref 279035144 R rec deedbb66-4878-4a34-a951-d113c5d366d9 +2024-09-10 15:43:28.916129 2024-09-10 15:43:28.916136 cidref 279035241 R rec 71ec8a33-e4ec-4278-9e4e-30913134e897 +2024-09-10 15:43:28.993297 2024-09-10 15:43:28.993304 cidref 027233960 R rec 270dab51-dc09-48e6-b4f2-6f6070f4691c +2024-09-10 15:43:29.061106 2024-09-10 15:43:29.061111 cidref 027238431 R rec 70980555-6ee6-494e-a2bc-6e1b24fe696b +2024-09-10 15:43:29.128576 2024-09-10 15:43:29.128581 cidref 027248720 R rec bea53332-4ad0-467e-9da4-57cb8f18a94d +2024-09-10 15:43:29.199217 2024-09-10 15:43:29.199222 cidref 027255522 R rec 9297ab68-f39e-4fe4-9f0d-cea38ba816b9 +2024-09-10 15:43:29.266681 2024-09-10 15:43:29.266687 cidref 027258556 R rec bd35009c-37ef-4c79-9863-5d01bce8e8a6 +2024-09-10 15:43:29.335308 2024-09-10 15:43:29.335313 cidref 027266273 R rec 4a5b0a4c-1422-4798-a18e-879e23542475 +2024-09-10 15:43:29.403075 2024-09-10 15:43:29.403081 cidref 027314073 R rec f807a53a-6295-499a-882b-9fdab7a9bb8f +2024-09-10 15:43:29.481313 2024-09-10 15:43:29.481318 cidref 027361705 R rec aeea38ef-bc15-4ec7-9021-0dd45d202384 +2024-09-10 15:43:29.548788 2024-09-10 15:43:29.548793 cidref 027390349 R rec 742f7b44-523f-43c1-ae33-bb2dd04f8772 +2024-09-10 15:43:29.616327 2024-09-10 15:43:29.616333 cidref 02741664X R rec e4fbc9d5-84da-432d-ac24-409d40b650c4 +2024-09-10 15:43:29.683589 2024-09-10 15:43:29.683596 cidref 027802973 R rec 6a0a720d-71b5-4815-9fcf-2c4d9d312bc6 +2024-09-10 15:43:29.749688 2024-09-10 15:43:29.749691 cidref 027824586 R rec 94ad98bd-2ad5-449c-8cd5-25e73a73e276 +2024-09-10 15:43:29.816797 2024-09-10 15:43:29.816803 cidref 027855929 R rec 92bb87d4-313e-424c-9254-2a0007437b8e +2024-09-10 15:43:29.880045 2024-09-10 15:43:29.88005 cidref 028205847 R rec a33db7f4-9b90-42ec-afbc-a519a5bc9b10 +2024-09-10 15:43:29.945849 2024-09-10 15:43:29.945861 cidref 028221044 R rec df37545a-4731-493b-b66e-aff37a4afa2b +2024-09-10 15:43:30.008963 2024-09-10 15:43:30.00897 cidref 028889347 R rec 27bcd953-a1bf-46c1-ba6c-bd6834fc2bb6 +2024-09-10 15:43:30.086549 2024-09-10 15:43:30.086555 cidref 028938615 R rec 4df86239-fb91-41d1-820e-51a769067775 +2024-09-10 15:43:30.16754 2024-09-10 15:43:30.167546 cidref 031082599 R rec 05f7dba6-336b-471d-b60a-e71d8ccaf4f2 +2024-09-10 15:43:30.238505 2024-09-10 15:43:30.23851 cidref 031955274 R rec 935bb9f6-1864-4151-b0c6-3e771e634abd +2024-09-10 15:43:30.303234 2024-09-10 15:43:30.30324 cidref 03465500X R rec eadab809-f9fc-453f-b125-312a2a188893 +2024-09-10 15:43:30.365541 2024-09-10 15:43:30.365547 cidref 035141913 R rec 5d3c1348-7749-4afd-a111-26e61501db25 +2024-09-10 15:43:30.429156 2024-09-10 15:43:30.429161 cidref 05058748X R rec b16e1ed0-0d6c-426d-a1c4-5e5132a3a905 +2024-09-10 15:43:30.495887 2024-09-10 15:43:30.495893 cidref 061612820 R rec 7fb65946-420d-42aa-9433-82296cf3b4a7 +2024-09-10 15:43:30.57591 2024-09-10 15:43:30.575916 cidref 127977996 R rec 1d384ecc-b726-4bd1-ba17-469596c33295 +2024-09-10 15:43:30.661008 2024-09-10 15:43:30.661014 cidref 131462415 R rec 8cbd2a95-dd87-43f6-b7fe-711f3794a375 +2024-09-10 15:43:30.734383 2024-09-10 15:43:30.734388 cidref 144331373 R rec 665ef2ae-42db-4492-bba0-e0854fddbe4f +2024-09-10 15:43:30.796169 2024-09-10 15:43:30.796175 cidref 180213911 R rec b983717c-b4a1-44e1-88a9-c1287dbf866c +2024-09-10 15:43:30.861344 2024-09-10 15:43:30.861352 cidref 181492628 R rec 713dc414-6c85-4bb8-ab2f-8a424586a141 +2024-09-10 15:43:30.92965 2024-09-10 15:43:30.929656 cidref 273372734 R rec dc851962-323a-43e1-ab72-59df0dd2e301 +2024-09-10 15:43:31.001787 2024-09-10 15:43:31.001793 cidref 273372742 R rec ded6feea-c5e8-43ce-9e1c-5ae64af3078d +2024-09-10 15:43:31.063751 2024-09-10 15:43:31.063757 cidref 273372750 R rec 2ff636c2-e729-46de-afa7-1bd3c53f55fe +2024-09-10 15:43:31.126033 2024-09-10 15:43:31.126044 cidref 273372777 R rec c51a05e1-e316-4b09-a426-9838daa63c44 +2024-09-10 15:43:31.18896 2024-09-10 15:43:31.188967 cidref 273372785 R rec c639f061-8d34-4a14-b41d-ef2aba07b619 +2024-09-10 15:43:31.251855 2024-09-10 15:43:31.25186 cidref 277418216 R rec 5ef316a1-f176-4557-afa0-b824e70e829a +2024-09-10 15:43:31.314723 2024-09-10 15:43:31.314728 cidref 279035152 R rec 7eab97c7-ce87-413b-a56d-2820cf0848cd +2024-09-10 15:43:31.38224 2024-09-10 15:43:31.382245 cidref 279035160 R rec cabc1139-806a-41c1-835e-dc5ebe031a21 +2024-09-10 15:43:31.443367 2024-09-10 15:43:31.443372 cidref 279035179 R rec 2a41ec1e-1d9c-4009-be6c-ad4b1f87a9ab +2024-09-10 15:43:31.502185 2024-09-10 15:43:31.50219 cidref 279035187 R rec 76948bae-a1d6-474d-b4a8-f153180ebd05 +2024-09-10 15:43:31.568567 2024-09-10 15:43:31.568573 cidref 279307322 R rec cb9d6b5b-9fa9-471c-a219-f145518e2f8a +2024-09-10 15:43:31.631918 2024-09-10 15:43:31.631924 cidref 279307330 R rec acd39fd4-36c2-40db-95bc-74a963a896e5 +2024-09-10 15:43:31.700692 2024-09-10 15:43:31.700698 cidref 279307349 R rec 00be405c-13fe-4555-92d8-c0893315b44a +2024-09-10 15:43:31.764653 2024-09-10 15:43:31.764661 cidref 279307357 R rec d24b3ff3-8639-4402-9821-2818959e8a4d +2024-09-10 15:43:31.835652 2024-09-10 15:43:31.835657 cidref 279307365 R rec e7d7fd05-671b-402e-ab01-d1bf894ddf1b +2024-09-10 15:43:31.908205 2024-09-10 15:43:31.908211 cidref 279307373 R rec 733ff558-aef1-4864-8613-6c4b164ff87e +2024-09-10 15:43:31.975478 2024-09-10 15:43:31.975486 cidref 279307462 R rec 071ce83b-2fd2-47c8-8847-46a7f53b90a7 +2024-09-10 15:43:32.041099 2024-09-10 15:43:32.041105 cidref 279307470 R rec e9ac9106-065b-4efa-b27c-7df99a00cb4a +2024-09-10 15:43:32.112886 2024-09-10 15:43:32.112892 cidref 279307519 R rec 3ebf8a72-a42b-418d-bd6c-3d72a6f82722 +2024-09-10 15:43:32.17858 2024-09-10 15:43:32.178586 cidref 279307535 R rec 3d1cc395-8027-419b-ac88-f6a548b77853 +2024-09-10 15:43:32.244573 2024-09-10 15:43:32.244579 cidref 27930756X R rec 388368ef-95bc-4e8e-bf7f-f5141659bf9c +2024-09-10 15:43:32.312166 2024-09-10 15:43:32.312172 cidref 279307578 R rec c0ce2362-cdac-4f8d-846d-cc8d283dd121 +2024-09-10 15:43:32.382908 2024-09-10 15:43:32.382913 cidref 279307586 R rec 27b1391c-9778-460c-9d2c-d3a5414f6f22 +2024-09-10 15:43:32.44551 2024-09-10 15:43:32.445516 cidref 279307594 R rec f6d5c611-fd7f-4de4-b935-c66ce3b8e441 +2024-09-10 15:43:32.51214 2024-09-10 15:43:32.512145 cidref 279307632 R rec e3ad6ceb-05de-4a8a-bd29-988b52ec633f +2024-09-10 15:43:32.579267 2024-09-10 15:43:32.579274 cidref 279307713 R rec e8213638-2ee5-4a2a-9b06-e95b0b6068f2 +2024-09-10 15:43:32.662983 2024-09-10 15:43:32.662989 cidref 27930773X R rec ec50ed3c-6baa-48c8-80f5-bf92d6629e08 +2024-09-10 15:43:32.733632 2024-09-10 15:43:32.733638 cidref 279307748 R rec 2c3ba770-7a94-4fa7-a9fa-ad101199b46a +2024-09-10 15:43:32.824062 2024-09-10 15:43:32.824069 cidref 279307780 R rec c5445133-1ca5-4680-b6ac-06caac9630dd +2024-09-10 15:43:32.911027 2024-09-10 15:43:32.911033 cidref 279307799 R rec 8ea265ae-0d0c-4f53-9a0b-8f2c2484e2f2 +2024-09-10 15:43:32.990118 2024-09-10 15:43:32.990123 cidref 279307810 R rec e110244c-c198-432e-90cc-98c1fd51e6ad +2024-09-10 15:43:33.118108 2024-09-10 15:43:33.118113 cidref 279307837 R rec e4097e10-b8fe-46ca-b446-ac9f10459fa7 +2024-09-10 15:43:33.180947 2024-09-10 15:43:33.180953 cidref 279307853 R rec 02fbe222-bf97-4247-875b-9e25d7c0f3ea +2024-09-10 15:43:33.246045 2024-09-10 15:43:33.24605 cidref 027222144 R rec df7b3a22-b9ac-4f43-850a-375bb3cbe62a +2024-09-10 15:43:33.307749 2024-09-10 15:43:33.307756 cidref 027236897 R rec 5918c0f4-7269-400c-8197-16771c2a79b3 +2024-09-10 15:43:33.379913 2024-09-10 15:43:33.379919 cidref 027276457 R rec 38afaf3b-2acd-4c50-b298-66b13c97735a +2024-09-10 15:43:33.45685 2024-09-10 15:43:33.456856 cidref 027307565 R rec 2df729d1-9c38-47c8-a0bd-0fc32fd98f07 +2024-09-10 15:43:33.527015 2024-09-10 15:43:33.52702 cidref 02767391X R rec 8eca135a-ba98-4256-9b63-95197a8b38ba +2024-09-10 15:43:33.598282 2024-09-10 15:43:33.598288 cidref 027800512 R rec 45f86b26-8b19-414d-9107-70e3705a1c5c +2024-09-10 15:43:33.669889 2024-09-10 15:43:33.669895 cidref 02781971X R rec 6814c2b1-1816-4198-ace1-0afc6ff7b857 +2024-09-10 15:43:33.754283 2024-09-10 15:43:33.754289 cidref 02787642X R rec 1a5c7099-def5-4e50-8569-f74b22635ed1 +2024-09-10 15:43:33.830451 2024-09-10 15:43:33.830456 cidref 028374878 R rec 1c9db05e-4ee3-4e47-b941-35a63f0646ad +2024-09-10 15:43:33.898334 2024-09-10 15:43:33.898337 cidref 028932358 R rec adb6e276-ec93-4622-8ab1-013a226010fe +2024-09-10 15:43:33.987893 2024-09-10 15:43:33.987899 cidref 030120640 R rec e88ce092-6d5a-4361-9709-88b3aef23d03 +2024-09-10 15:43:34.073786 2024-09-10 15:43:34.073792 cidref 03136795X R rec f8eff84d-56cc-446f-a966-5d25c076ae36 +2024-09-10 15:43:34.14206 2024-09-10 15:43:34.142067 cidref 033293074 R rec 89ffadfc-8e04-4c02-8438-81910dd7e623 +2024-09-10 15:43:34.207818 2024-09-10 15:43:34.207823 cidref 050174495 R rec 658ce582-e1d8-460e-878c-fac11ab0e602 +2024-09-10 15:43:34.28133 2024-09-10 15:43:34.281335 cidref 06008989X R rec 93ce5d08-f518-42b2-918d-b9aabbb18e2a +2024-09-10 15:43:34.356737 2024-09-10 15:43:34.356743 cidref 061604496 R rec af99c66c-fe60-4ca3-8859-f9f8447d30bc +2024-09-10 15:43:34.419414 2024-09-10 15:43:34.41942 cidref 178480231 R rec e8836876-a47b-495b-b795-e1efd9641946 +2024-09-10 15:43:34.482515 2024-09-10 15:43:34.482521 cidref 238529495 R rec 559702a9-c9ba-4812-8d42-c0aabf6f9322 +2024-09-10 15:43:34.547377 2024-09-10 15:43:34.547382 cidref 263906442 R rec fd4cd8e7-2c19-4863-9c5e-4e9793d123ff +2024-09-10 15:43:34.6105 2024-09-10 15:43:34.610505 cidref 264225260 R rec d72e8146-23a5-470e-9acb-505793503b4b +2024-09-10 15:43:34.681654 2024-09-10 15:43:34.681659 cidref 276037685 R rec 61771cb9-e5ea-40b4-9736-d705cbd8d9e3 +2024-09-10 15:43:34.744608 2024-09-10 15:43:34.744613 cidref 278746896 R rec fe7db1e5-e561-4ee6-8d07-1b610a06a9f6 +2024-09-10 15:43:34.817377 2024-09-10 15:43:34.817382 cidref 278746918 R rec dc94757f-8d86-4384-8014-972b133df10f +2024-09-10 15:43:34.877956 2024-09-10 15:43:34.877961 cidref 278746926 R rec 8a87b067-5c75-4760-b551-e3801f52ccb0 +2024-09-10 15:43:34.949787 2024-09-10 15:43:34.949792 cidref 278746934 R rec 23841d39-4e92-46b5-9068-66bcc1e67273 +2024-09-10 15:43:35.012064 2024-09-10 15:43:35.01207 cidref 278746942 R rec 31b984cf-ee42-4272-bab6-d37e7880b71b +2024-09-10 15:43:35.077149 2024-09-10 15:43:35.077154 cidref 278746950 R rec dd76dadf-efe6-404a-b1bd-442d9f07d940 +2024-09-10 15:43:35.148896 2024-09-10 15:43:35.148901 cidref 278746977 R rec bc3cd03f-6099-4fed-a2ac-3a9bfa98ac68 +2024-09-10 15:43:35.215434 2024-09-10 15:43:35.21544 cidref 278747027 R rec a08cf3c5-a5d7-49a6-a6b8-100f8d360b76 +2024-09-10 15:43:35.276421 2024-09-10 15:43:35.276426 cidref 278747035 R rec f7f54794-977a-4b69-980d-f02569574640 +2024-09-10 15:43:35.339275 2024-09-10 15:43:35.339279 cidref 278747051 R rec 8eae463b-39aa-458f-9112-6bba4e379959 +2024-09-10 15:43:35.401276 2024-09-10 15:43:35.401283 cidref 27874706X R rec 8d8a688c-1406-40e0-8a84-f6530c587319 +2024-09-10 15:43:35.477025 2024-09-10 15:43:35.47703 cidref 278747086 R rec fe09b988-cec9-416c-9164-ffcf387d089d +2024-09-10 15:43:35.53985 2024-09-10 15:43:35.539856 cidref 278747094 R rec a83a6e96-0802-4fb9-a636-38a4c6cd53d8 +2024-09-10 15:43:35.609597 2024-09-10 15:43:35.609602 cidref 278747108 R rec dfcaf410-ad7b-4c2e-9ce6-f8ee544edbcc +2024-09-10 15:43:35.680589 2024-09-10 15:43:35.680595 cidref 278747116 R rec 1abc29ae-0cc3-485b-bfd3-d16fd43af4ce +2024-09-10 15:43:35.750922 2024-09-10 15:43:35.750928 cidref 278747124 R rec e12056d6-d311-4e54-95e6-afe8e74a54b8 +2024-09-10 15:43:35.810814 2024-09-10 15:43:35.810819 cidref 278747132 R rec 4480f583-8ddb-43bd-9d69-69edb685cbf1 +2024-09-10 15:43:35.876562 2024-09-10 15:43:35.876569 cidref 278747140 R rec 675adda7-e57e-4e1b-96c0-e4ea7c95936a +2024-09-10 15:43:35.93584 2024-09-10 15:43:35.935846 cidref 278747159 R rec e3e5317b-b38b-47f6-936b-e1ad736142c0 +2024-09-10 15:43:36.001968 2024-09-10 15:43:36.001974 cidref 278747213 R rec 4e9cc048-0222-4d12-ad01-b8d8dc33250f +2024-09-10 15:43:36.066111 2024-09-10 15:43:36.066116 cidref 278747221 R rec d4ab55c2-bb0f-42b0-8b62-516f5436cd9b +2024-09-10 15:43:36.135617 2024-09-10 15:43:36.135623 cidref 278747248 R rec 9f59bc12-f6f4-4646-b44c-46489a6b9f0b +2024-09-10 15:43:36.19908 2024-09-10 15:43:36.199086 cidref 278747256 R rec ff3e41db-4ce6-4697-b769-8f144d5d9c12 +2024-09-10 15:43:36.263985 2024-09-10 15:43:36.26399 cidref 278747264 R rec acf0d3a1-d350-472b-a280-4dcae78a9287 +2024-09-10 15:43:36.330404 2024-09-10 15:43:36.330409 cidref 278747272 R rec 4794552e-7c1a-4107-84b9-338e513df2f8 +2024-09-10 15:43:36.413987 2024-09-10 15:43:36.413993 cidref 278747299 R rec 92d30e07-ea8b-4181-8882-017d7b2d574a +2024-09-10 15:43:36.481783 2024-09-10 15:43:36.481793 cidref 278747302 R rec dc34816a-17b3-42eb-bd72-ce68296abfd1 +2024-09-10 15:43:36.546237 2024-09-10 15:43:36.546243 cidref 279034768 R rec dcf89aff-63e0-440a-a885-5a4e0ae896b1 +2024-09-10 15:43:36.615418 2024-09-10 15:43:36.615424 cidref 279034776 R rec fd826f83-cf12-41d6-ae1b-5106cc29ce65 +2024-09-10 15:43:36.689469 2024-09-10 15:43:36.689475 cidref 279034784 R rec ac08b5d4-984b-4e6e-b7c7-4a54e0f216b0 +2024-09-10 15:43:36.809747 2024-09-10 15:43:36.809753 cidref 279034792 R rec 3ffeea69-b884-4016-a776-539485f963b5 +2024-09-10 15:43:36.874115 2024-09-10 15:43:36.874121 cidref 279034865 R rec b3b3f66d-b25d-4d4d-95ae-6dfb5358df66 +2024-09-10 15:43:36.944305 2024-09-10 15:43:36.944311 cidref 279034873 R rec ff576baa-58f7-4c02-86e3-38c1e49c0eae +2024-09-10 15:43:37.005527 2024-09-10 15:43:37.005532 cidref 27903489X R rec 061dd4a2-490a-4424-9eb5-0e5aa98cc8c0 +2024-09-10 15:43:37.076253 2024-09-10 15:43:37.076258 cidref 279034903 R rec 1b34713e-9fef-4833-b158-48e13870012b +2024-09-10 15:43:37.1632 2024-09-10 15:43:37.163207 cidref 279035039 R rec d68f1f65-e0ab-4cdc-9978-a663d1195f3d +2024-09-10 15:43:37.231184 2024-09-10 15:43:37.23119 cidref 027275639 R rec 899c8973-118e-4b68-a19b-2aff1d62acc7 +2024-09-10 15:43:37.310405 2024-09-10 15:43:37.310411 cidref 027362434 R rec 1418ae82-d42d-47a4-8140-2a3d3c32c6eb +2024-09-10 15:43:37.382558 2024-09-10 15:43:37.382564 cidref 027612163 R rec 6504cbd4-0d7d-41d3-844e-dbfe6c6a8a33 +2024-09-10 15:43:37.459057 2024-09-10 15:43:37.459062 cidref 029385571 R rec 735b56ca-5290-4c90-8a3f-0884d4c33381 +2024-09-10 15:43:37.540968 2024-09-10 15:43:37.540974 cidref 029877555 R rec 3c5d8134-004c-4509-af89-b0c362a9f5fd +2024-09-10 15:43:37.605852 2024-09-10 15:43:37.605858 cidref 033689725 R rec ff7d0963-f873-403a-b31d-8645d78a97cf +2024-09-10 15:43:37.665807 2024-09-10 15:43:37.665813 cidref 035381795 R rec 4089ed0b-5fc5-464b-8384-a2c4b2dccdf6 +2024-09-10 15:43:37.733727 2024-09-10 15:43:37.733732 cidref 174718276 R rec 7a40356c-5727-4379-9945-6d5f82858673 +2024-09-10 15:43:37.802225 2024-09-10 15:43:37.802231 cidref 278747078 R rec 1e2cc90d-cafd-4f08-a368-feb5438ad28c +2024-09-10 15:43:37.868539 2024-09-10 15:43:37.868545 cidref 279034954 R rec 5dcdf7af-12f7-4e94-9029-8e6ead5e7aa8 +2024-09-10 15:43:37.949545 2024-09-10 15:43:37.949551 cidref 279307381 R rec 9c8e5f1f-48b5-45bb-8a8b-da69ee8e9647 +2024-09-10 15:43:38.020915 2024-09-10 15:43:38.020921 cidref 27930739X R rec cf4ad0eb-d329-471a-a554-ce8e4a50740f +2024-09-10 15:43:38.082665 2024-09-10 15:43:38.082671 cidref 279307403 R rec 7a61ff20-719d-4327-9ebc-df447aad2855 +2024-09-10 15:43:38.158552 2024-09-10 15:43:38.158557 cidref 279307411 R rec 5cbc064a-5526-41f8-8b5d-5f9054d76667 +2024-09-10 15:43:38.220256 2024-09-10 15:43:38.220261 cidref 27930742X R rec a97b7825-1f0d-48ff-9fb8-16e1e3bb789a +2024-09-10 15:43:38.28625 2024-09-10 15:43:38.286256 cidref 279307438 R rec 68eb42f6-5b0d-4501-8e06-ed629aa0e17b +2024-09-10 15:43:38.36878 2024-09-10 15:43:38.368787 cidref 279307446 R rec 17e3eb8a-64cf-4d5b-97a6-4b20534fd406 +2024-09-10 15:43:38.457512 2024-09-10 15:43:38.457517 cidref 279307454 R rec 56d106d2-62d2-447d-a077-4a897e3f0834 +2024-09-10 15:43:38.524221 2024-09-10 15:43:38.524226 cidref 279307543 R rec f899ac77-c61a-4348-83d0-43240bd8fbf7 +2024-09-10 15:43:38.590996 2024-09-10 15:43:38.591002 cidref 279307608 R rec a1aa655c-900c-4db8-ab74-c594c5f63918 +2024-09-10 15:43:38.656451 2024-09-10 15:43:38.656456 cidref 279307616 R rec 48b47eda-1986-47fc-8e21-7ee3ea493aec +2024-09-10 15:43:38.732323 2024-09-10 15:43:38.732329 cidref 279307640 R rec f9e4ad4e-2604-4458-a8b3-9aecf484fc21 +2024-09-10 15:43:38.801663 2024-09-10 15:43:38.801669 cidref 279307659 R rec ef62b1f0-3480-4204-9626-b4070a3dbf75 +2024-09-10 15:43:38.88345 2024-09-10 15:43:38.883456 cidref 279307667 R rec aff37cf6-eba7-4f2f-ba48-0168feb8c01a +2024-09-10 15:43:38.947489 2024-09-10 15:43:38.947495 cidref 279307675 R rec 8b3def35-9fc7-4ffe-b015-fc95bc9b5322 +2024-09-10 15:43:39.017644 2024-09-10 15:43:39.01765 cidref 279307683 R rec 836fe915-cbfd-41b6-9f62-62bb0f97d46d +2024-09-10 15:43:39.08114 2024-09-10 15:43:39.081146 cidref 279307705 R rec f26848ac-e865-4454-9dae-c9ef976e0213 +2024-09-10 15:43:39.146313 2024-09-10 15:43:39.146318 cidref 279307721 R rec 530a74cf-4591-4fbe-84af-016852626859 +2024-09-10 15:43:39.209111 2024-09-10 15:43:39.209121 cidref 279307756 R rec 578721e1-e3a4-4dde-85f8-d03d9ff58028 diff --git a/data/cognd.json b/data/cognd.json new file mode 100644 index 00000000..6497ad8d --- /dev/null +++ b/data/cognd.json @@ -0,0 +1,127207 @@ +[ + { + "authorized_access_point": "Arithmetische Kombinatorik", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1334542139" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334542139" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1334542139" + } + ], + "identifier": "http://d-nb.info/gnd/1334542139", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://en.wikipedia.org/w/index.php?title=Arithmetic_combinatorics&oldid=1174356901" + ] + }, + { + "noteType": "general", + "label": [ + "Mathematisches Forschungsgebiet zwischen Zahlentheorie, Kombinatorik, Ergodentheorie und Harmonischer Analyse" + ] + } + ], + "pid": "1334542139", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kombinatorik" + } + ], + "related": [ + { + "authorized_access_point": "Arithmetische Operation" + }, + { + "authorized_access_point": "Arithmetische Folge" + } + ], + "variant_access_point": [ + "Arithmetic Combinatorics" + ], + "md5": "ec1012f5b9545ce2fa5f0923a1b8d933" + }, + { + "authorized_access_point": "oikodomeo\u0304", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1334538549" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334538549" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1334538549" + } + ], + "identifier": "http://d-nb.info/gnd/1334538549", + "note": [ + { + "noteType": "general", + "label": [ + "Kombiniere mit Sprachbezeichnung und Wortart; z.B. SWW Griechisch ; Verb ; oikodomeo\u0304" + ] + } + ], + "pid": "1334538549", + "type": "bf:Topic", + "variant_access_point": [ + "oikodomein", + "\u03bf\u03b9\u03ba\u03bf\u03b4\u03bf\u03bc\u03b5\u03b9\u03bd", + "\u03bf\u03b9\u03ba\u03bf\u03b4\u03bf\u03bc\u03b5\u03c9" + ], + "md5": "bd59f731dfd7076282389f93730fecf1" + }, + { + "authorized_access_point": "Mundart Holla\u0308ndisch (Het Bildt)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1334484775" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334484775" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1334484775" + } + ], + "identifier": "http://d-nb.info/gnd/1334484775", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://nl.wikipedia.org/w/index.php?title=Bildts&oldid=67394558" + ] + } + ], + "pid": "1334484775", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Holla\u0308ndisch" + } + ], + "variant_access_point": [ + "Bildts (Holla\u0308ndisch)", + "Bildtse taal (Holla\u0308ndisch)" + ], + "md5": "58a820ceaac45a94be853f0ba1c660fb" + }, + { + "authorized_access_point": "Diamantoide", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1334336342" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334336342" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1334336342" + } + ], + "identifier": "http://d-nb.info/gnd/1334336342", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Diamantoide&oldid=227953008" + ] + } + ], + "pid": "1334336342", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ka\u0308figverbindungen" + } + ], + "variant_access_point": [ + "Diamantartige", + "Polymantane", + "Nanodiamanten", + "Diamondoids" + ], + "md5": "f86c6435a664d4ef676a8f03bd0c5d2f" + }, + { + "authorized_access_point": "Inklusionsbetrieb", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1334320462" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334320462" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1334320462" + } + ], + "identifier": "http://d-nb.info/gnd/1334320462", + "pid": "1334320462", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Betrieb" + } + ], + "md5": "fdf4d72a7eba34843b2b25f89f066775" + }, + { + "authorized_access_point": "heiEDITIONS", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1334314950" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334314950" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1334314950" + } + ], + "identifier": "http://d-nb.info/gnd/1334314950", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Homepage - https://heieditions.github.io/" + ] + }, + { + "noteType": "general", + "label": [ + "technische Infrastruktur fu\u0308r die Online-Publikation von digitalisiertem Quellenmaterial inkl. Redaktionsmodul" + ] + } + ], + "pid": "1334314950", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Softwareplattform" + } + ], + "related": [ + { + "authorized_access_point": "Digitale Edition" + } + ], + "variant_access_point": [ + "Heidelberger digitale Editionen" + ], + "md5": "ee15b9b1e90c89a5ed9b477616e29a78" + }, + { + "authorized_access_point": "Witten-Index", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1334231826" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334231826" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1334231826" + } + ], + "identifier": "http://d-nb.info/gnd/1334231826", + "note": [ + { + "noteType": "dataSource", + "label": [ + "ncatlab - https://ncatlab.org/nlab/show/Witten+index" + ] + }, + { + "noteType": "general", + "label": [ + "Supersymmetrische Verteilungsfunktion in der Quantenfeldtheorie" + ] + } + ], + "pid": "1334231826", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Verteilungsfunktion" + }, + { + "authorized_access_point": "Supersymmetrie" + } + ], + "md5": "f1679b1e01a32ad6e05aee9e51d5539b" + }, + { + "authorized_access_point": "Limit-Absoprtion Principle", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1334230463" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334230463" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1334230463" + } + ], + "identifier": "http://d-nb.info/gnd/1334230463", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Encyclopedia of Math - https://encyclopediaofmath.org/index.php?title=Limit-absorption_principle&oldid=53491" + ] + }, + { + "noteType": "general", + "label": [ + "Methode aus der Operatprtheorie und Streutheorie zum Finden von Lo\u0308sungen der Helmholtz-Schwingungsgleichung und verwandter Gleichungen." + ] + } + ], + "pid": "1334230463", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Operatortheorie" + }, + { + "authorized_access_point": "Streutheorie" + } + ], + "related": [ + { + "authorized_access_point": "Helmholtz-Schwingungsgleichung" + } + ], + "variant_access_point": [ + "Limiting Absorption Principle" + ], + "md5": "710cc2b15b229b5d03d5fd21f471874e" + }, + { + "authorized_access_point": "Laplace-Matrix", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1334227209" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334227209" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1334227209" + } + ], + "identifier": "http://d-nb.info/gnd/1334227209", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Laplace-Matrix&oldid=237255983" + ] + }, + { + "noteType": "general", + "label": [ + "Die Lapcematrix ist die diskrete Version des Laplace-Operator und hat Anwendungen in der Graphentheorie." + ] + } + ], + "pid": "1334227209", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Graphentheorie" + } + ], + "related": [ + { + "authorized_access_point": "Laplace-Operator" + } + ], + "variant_access_point": [ + "Kirchhoff-Matrix", + "Diskreter Laplace-Operator", + "Graph Laplacian" + ], + "md5": "f98f0b2354bec90414d48b17ccb8b1ab" + }, + { + "authorized_access_point": "Hirzebruch-Fla\u0308che", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1334225907" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334225907" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1334225907" + } + ], + "identifier": "http://d-nb.info/gnd/1334225907", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Spektrum Lexikon der Mathematik - https://www.spektrum.de/lexikon/mathematik/hirzebruch-flaeche/3987", + "Wikipedia - https://en.wikipedia.org/w/index.php?title=Hirzebruch_surface&oldid=1177831601" + ] + }, + { + "noteType": "general", + "label": [ + "Eine Hirzebruch-Fla\u0308che ist Regelfla\u0308che u\u0308ber der projektiven Geraden." + ] + } + ], + "pid": "1334225907", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Komplexe Mannigfaltigkeit" + }, + { + "authorized_access_point": "Regelfla\u0308che" + }, + { + "authorized_access_point": "Projektive Gerade" + } + ], + "variant_access_point": [ + "Hirzebruch Surface" + ], + "md5": "7165160e5fd1a027f17ba6347d29ee9d" + }, + { + "authorized_access_point": "Gro\u00dfbiber", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1334131074" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334131074" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1334131074" + } + ], + "identifier": "http://d-nb.info/gnd/1334131074", + "note": [ + { + "noteType": "general", + "label": [ + "eiszeitlicher Biber" + ] + } + ], + "pid": "1334131074", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Biber (Familie)" + }, + { + "authorized_access_point": "Fossile Nagetiere" + } + ], + "variant_access_point": [ + "Trogontherium cuvieri" + ], + "md5": "03b367121344938385efe1c8ea7d045e" + }, + { + "authorized_access_point": "Zwergmaulwurf", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1334127158" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334127158" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1334127158" + } + ], + "identifier": "http://d-nb.info/gnd/1334127158", + "note": [ + { + "noteType": "general", + "label": [ + "eiszeitlicher Maulwurf, disjunkte Funde in Su\u0308deuropa, Balkan, Kaukasus und Japan, aber auch in Mitteleuropa" + ] + } + ], + "pid": "1334127158", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Maulwu\u0308rfe (Familie)" + }, + { + "authorized_access_point": "Fossile Kleinsa\u0308uger" + } + ], + "variant_access_point": [ + "Talpa minor" + ], + "md5": "88803d00f96a9f3f0980f48c739c94bd" + }, + { + "authorized_access_point": "Werner-Bra\u0308uning-Literaturpreis", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1334091412" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334091412" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1334091412" + } + ], + "identifier": "http://d-nb.info/gnd/1334091412", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Werner_Br%C3%A4unig&oldid=237561503#Leben_und_Wirken" + ] + } + ], + "pid": "1334091412", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Literaturpreis" + } + ], + "md5": "5c76b62c4a63ab308e2fc8a817f3dc70" + }, + { + "authorized_access_point": "Fontane-Preis", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1334089663" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334089663" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1334089663" + } + ], + "identifier": "http://d-nb.info/gnd/1334089663", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Homepage - https://www.fontanepreis.de/", + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Fontane-Preis&oldid=236484432" + ] + }, + { + "noteType": "general", + "label": [ + "Wu\u0308rdigung eine:r Schriftsteller:in im europa\u0308ischen Raum, der/die durch Arbeiten und Werke in besonderem Ma\u00dfe hervorgetreten ist. - seit 2012 Ausrichtung auf Reiseliteratur und -journalismus", + "erstmals von 1913 bis 1922 vergeben. - nach 1949 gab es zwei Fontane-Preise (Westberliner Preis und Preis des DDR-Bezirks Potsdam). - 1994 wurde der Fontane-Literaturpreis von Theodor Fontanes Geburtsstadt Neuruppin neu gestiftet. - ab 2019 alle zwei Jahre gemeinschaftlich von der Fontanestadt Neuruppin und dem Land Brandenburg vergeben" + ] + } + ], + "pid": "1334089663", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Literaturpreis" + } + ], + "variant_access_point": [ + "Fontane-Preis fu\u0308r Literatur der Fontanestadt Neuruppin", + "Berliner Kunstpreis fu\u0308r Literatur", + "Kunstpreis Berlin fu\u0308r Literatur", + "Gro\u00dfer Kunstpreis Berlin fu\u0308r Literatur" + ], + "md5": "d6f49ed5ac8263ddb51bc047717b55a0" + }, + { + "authorized_access_point": "Walter-Serner-Preis", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1334088837" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334088837" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1334088837" + } + ], + "identifier": "http://d-nb.info/gnd/1334088837", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Homepage - https://web.archive.org/web/20180821112655/https://www.kulturradio.de/programm/literatur/walter_serner_preis/", + "kulturpreise.de - https://www.kulturpreise.de/web/preise_info.php?preisd_id=48" + ] + }, + { + "noteType": "general", + "label": [ + "vergeben fu\u0308r eine Kurzgeschichte zu einem vorgegebenen Thema" + ] + } + ], + "pid": "1334088837", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Literaturpreis" + } + ], + "variant_access_point": [ + "Walter Serner Preis" + ], + "md5": "83ebffff21467376e92c4904f42cd51b" + }, + { + "authorized_access_point": "Poeta Laureatus", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1334088217" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334088217" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1334088217" + } + ], + "identifier": "http://d-nb.info/gnd/1334088217", + "note": [ + { + "noteType": "general", + "label": [ + "Auf Initiative des Lyrikers Raoul Schrott und mit Unterstu\u0308tzung des Tourismusbu\u0308ros von Lech Zu\u0308rs wird ja\u0308hrlich ein \u201ePoeta Laureatus\u201c gewa\u0308hlt." + ] + } + ], + "pid": "1334088217", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Literaturpreis" + } + ], + "md5": "adac94e924aace59852d0967bf8ab394" + }, + { + "authorized_access_point": "Hamburger Matrikelportal", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1334087156" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334087156" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1334087156" + } + ], + "identifier": "http://d-nb.info/gnd/1334087156", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Homepage - https://www.matrikelportal.uni-hamburg.de/content/index.xml" + ] + } + ], + "pid": "1334087156", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Datenbank" + } + ], + "variant_access_point": [ + "Matrikelportal (Hamburg)" + ], + "md5": "1c7fde6869b33f599dfa25c4dea43278" + }, + { + "authorized_access_point": "Deninger-Ba\u0308r", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/133400076X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)133400076X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)133400076X" + } + ], + "identifier": "http://d-nb.info/gnd/133400076X", + "note": [ + { + "noteType": "general", + "label": [ + "ausgestorbene Ba\u0308renart, die wa\u0308hrend des Pleistoza\u0308ns in Eurasien beheimatet war" + ] + } + ], + "pid": "133400076X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ba\u0308ren (Familie)" + }, + { + "authorized_access_point": "Fossile Ba\u0308ren" + } + ], + "variant_access_point": [ + "Ursus deningeri" + ], + "md5": "960a6548ec3e021ac9c00e3248f4e45c" + }, + { + "authorized_access_point": "Netzwerkgesellschaft", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1333993331" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333993331" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1333993331" + } + ], + "identifier": "http://d-nb.info/gnd/1333993331", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Lex. Soz., S. 533 - https://doi.org/10.1007/978-3-658-30834-6", + "Wikipedia - https://de.wikipedia.org/w/index.php?oldid=216806976", + "Thes. Sozialwiss. - http://lod.gesis.org/thesoz/concept_10068103" + ] + }, + { + "noteType": "general", + "label": [ + "Gesellschaftsform, die auf der Universalisierung des Organisationsprinzips des sozialen Netzwerks, i.S. von dezentralen, offenen Strukturen von interagierenden Knoten, beruht" + ] + } + ], + "pid": "1333993331", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gesellschaft" + } + ], + "related": [ + { + "authorized_access_point": "Soziales Netzwerk" + } + ], + "variant_access_point": [ + "Network Society" + ], + "md5": "82cfa2452956b02dcc0bda165f9b269c" + }, + { + "authorized_access_point": "Breitstirnelch", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1333992548" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333992548" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1333992548" + } + ], + "identifier": "http://d-nb.info/gnd/1333992548", + "note": [ + { + "noteType": "general", + "label": [ + "spa\u0308tpleistoza\u0308ner Riesenhirsch, oder -Elch" + ] + } + ], + "pid": "1333992548", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Hirsche" + }, + { + "authorized_access_point": "Fossile Hirsche" + } + ], + "variant_access_point": [ + "Alces latifrons" + ], + "md5": "2ccd9cc57f524c9c0aad71698a9ff7ec" + }, + { + "authorized_access_point": "Pflanzliche Milch", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1333987366" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333987366" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1333987366" + } + ], + "identifier": "http://d-nb.info/gnd/1333987366", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Pflanzliche_Milch&oldid=244609687" + ] + } + ], + "pid": "1333987366", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Pflanzliches Produkt" + } + ], + "variant_access_point": [ + "Pflanzenmilch (Lebensmittel)" + ], + "md5": "7f81accba2e25893694ebd715fd0383c" + }, + { + "authorized_access_point": "Late-Night-Show", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/133396420X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)133396420X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)133396420X" + } + ], + "identifier": "http://d-nb.info/gnd/133396420X", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?oldid=242602086" + ] + }, + { + "noteType": "general", + "label": [ + "Eine Late-Night-Show ist eine am spa\u0308ten Abend ausgestrahlte Fernsehsendung, die Comedy- und Talkshow-Elemente kombiniert und typische Bestandteile wie Stand-up-Einlagen, ein Studiopublikum, sowie ggf. einen Gast und eine Showband entha\u0308lt." + ] + } + ], + "pid": "133396420X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Unterhaltungssendung" + }, + { + "authorized_access_point": "Fernsehsendung" + } + ], + "variant_access_point": [ + "Late-night show", + "Late night show" + ], + "md5": "25fa90c89fecee71785e4cba408d883c" + }, + { + "authorized_access_point": "Mosbachpferd", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1333876874" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333876874" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1333876874" + } + ], + "identifier": "http://d-nb.info/gnd/1333876874", + "note": [ + { + "noteType": "general", + "label": [ + "erstes echtes Pferd der Gattung Equus in Eurasien, im Mittelpleistoza\u0308n, es ist benannt nach dem ersten Fundort der Fossilien, wurde aber spa\u0308ter auch im ganzen eurasischen Raum gefunden" + ] + } + ], + "pid": "1333876874", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Pferde (Familie)" + }, + { + "authorized_access_point": "Fossile Pferde" + } + ], + "variant_access_point": [ + "Mosbacher Wildpferd", + "Mosbacher Pferd", + "Equus mosbachensis" + ], + "md5": "c63f01779bc587da18ba3c1851fd4618" + }, + { + "authorized_access_point": "Halsbandlemminge", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1333855907" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333855907" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1333855907" + } + ], + "identifier": "http://d-nb.info/gnd/1333855907", + "note": [ + { + "noteType": "general", + "label": [ + "Gattung" + ] + } + ], + "pid": "1333855907", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Lemminge" + } + ], + "variant_access_point": [ + "Dicrostonyx" + ], + "md5": "068826b7cb41ca9afdecfd2d9b36596b" + }, + { + "authorized_access_point": "Nordische Wu\u0308hlmaus", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/133385501X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)133385501X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)133385501X" + } + ], + "identifier": "http://d-nb.info/gnd/133385501X", + "pid": "133385501X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Feldmaus (Gattung)" + } + ], + "variant_access_point": [ + "Sumpfmaus", + "Microtus oeconomus" + ], + "md5": "43e2e899aba9f75cc753449fa1d283ce" + }, + { + "authorized_access_point": "Waldbison", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1333853084" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333853084" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1333853084" + } + ], + "identifier": "http://d-nb.info/gnd/1333853084", + "pid": "1333853084", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bison" + } + ], + "variant_access_point": [ + "Bison bison athabascae" + ], + "md5": "7b3bdb84f7032c6e8f9022e1aef0b522" + }, + { + "authorized_access_point": "Waldnashorn", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1333852673" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333852673" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1333852673" + } + ], + "identifier": "http://d-nb.info/gnd/1333852673", + "note": [ + { + "noteType": "general", + "label": [ + "bis zum Ende der letzten Eiszeit in Europa verbreitet, lebte in Laubwa\u0308ldern, Savannen und Grasla\u0308ndern, in Mitteleuropa bis zum Ende des letzten Interglazials, in Spanien bis zum Beginn der Wu\u0308rm-Eiszeit" + ] + } + ], + "pid": "1333852673", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Nasho\u0308rner" + } + ], + "variant_access_point": [ + "Merck-Nashorn", + "Dicerorhinus kirchbergensis", + "Stephanorhinus kirchbergensis" + ], + "md5": "5dfe60e5909c9571a7fa59c39f34bcc9" + }, + { + "authorized_access_point": "Authentizita\u0308t (Motiv)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1333849788" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333849788" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1333849788" + } + ], + "identifier": "http://d-nb.info/gnd/1333849788", + "pid": "1333849788", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "a4db220e713117ea6096851c5530540f" + }, + { + "authorized_access_point": "Ku\u0308nstlersignatur (Motiv)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1333849435" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333849435" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1333849435" + } + ], + "identifier": "http://d-nb.info/gnd/1333849435", + "pid": "1333849435", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "861e9bd198af82a5f9c935a4487deda8" + }, + { + "authorized_access_point": "Ambiguita\u0308t (Motiv)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1333729863" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333729863" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1333729863" + } + ], + "identifier": "http://d-nb.info/gnd/1333729863", + "pid": "1333729863", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "32337cc81fb3bdba05015d53d7972e50" + }, + { + "authorized_access_point": "Durchlaufku\u0308hlung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1333716354" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333716354" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1333716354" + } + ], + "identifier": "http://d-nb.info/gnd/1333716354", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=W%C3%A4rmekraftwerk&oldid=245966421#Durchlaufk%C3%BChlung_ohne_K%C3%BChlturm" + ] + }, + { + "noteType": "general", + "label": [ + "Wenn das erwa\u0308rmte Ku\u0308hlwasser unbehandelt in das Gewa\u0308sser zuru\u0308ckgefu\u0308hrt wird, handelt es sich um eine Durchlaufku\u0308hlung." + ] + } + ], + "pid": "1333716354", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ku\u0308hlung" + } + ], + "related": [ + { + "authorized_access_point": "Kraftwerk" + } + ], + "md5": "b0dbe0a5b85e39e8b78d7fe273564508" + }, + { + "authorized_access_point": "Akka (Software)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1333566352" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333566352" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1333566352" + } + ], + "identifier": "http://d-nb.info/gnd/1333566352", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://en.wikipedia.org/w/index.php?title=Akka_(toolkit)&oldid=1214896464" + ] + } + ], + "pid": "1333566352", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Middleware" + } + ], + "md5": "7b76088c75f8c7944efe2e56a0b276b6" + }, + { + "authorized_access_point": "Letzte Meile", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1333421427" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333421427" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1333421427" + } + ], + "identifier": "http://d-nb.info/gnd/1333421427", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Letzte_Meile&oldid=235677594" + ] + }, + { + "noteType": "general", + "label": [ + "letzter Abschnitt einer Transportkette bis zum Endverbraucher, Empfa\u0308nger, oder zum Reiseziel, z.B. bei der Energieversorgung, im Gu\u0308terverkehr, im Individualverkehr oder in der Telekommunikationstechnik" + ] + } + ], + "pid": "1333421427", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Transportkette (Gu\u0308terverkehr)" + }, + { + "authorized_access_point": "Gu\u0308terverkehr" + }, + { + "authorized_access_point": "Individualverkehr" + } + ], + "md5": "da9ad66c935e495490930002ffb604e2" + }, + { + "authorized_access_point": "Zortziko", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1333376049" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333376049" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1333376049" + } + ], + "identifier": "http://d-nb.info/gnd/1333376049", + "note": [ + { + "noteType": "general", + "label": [ + "Baskischer Tanz im 5/8-Takt" + ] + } + ], + "pid": "1333376049", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Volkstanz" + } + ], + "variant_access_point": [ + "Zorcico" + ], + "md5": "2c0ed3135b390d8fdd814d0a24111c4c" + }, + { + "authorized_access_point": "Schwanenblume", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/133335245X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)133335245X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)133335245X" + } + ], + "identifier": "http://d-nb.info/gnd/133335245X", + "pid": "133335245X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schwanenblumengewa\u0308chse" + } + ], + "variant_access_point": [ + "Blumenbinse", + "Butomus umbellatus" + ], + "md5": "21ea6b30a5345ddccc21492dcd9d4fb9" + }, + { + "authorized_access_point": "Mundart Venezianisch (Segusino)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1333352085" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333352085" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1333352085" + } + ], + "identifier": "http://d-nb.info/gnd/1333352085", + "pid": "1333352085", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Venezianisch" + } + ], + "md5": "7c9d1d0e91a7725095d5f6f55ca8b563" + }, + { + "authorized_access_point": "Schwanenblumengewa\u0308chse", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1333331002" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333331002" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1333331002" + } + ], + "identifier": "http://d-nb.info/gnd/1333331002", + "pid": "1333331002", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Einkeimbla\u0308ttrige" + } + ], + "variant_access_point": [ + "Butomaceae", + "Blumenlieschgewa\u0308chse" + ], + "md5": "4b54a79d3f69ecafdcc87964a9292312" + }, + { + "authorized_access_point": "Modalwert", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1333323778" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333323778" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1333323778" + } + ], + "identifier": "http://d-nb.info/gnd/1333323778", + "note": [ + { + "noteType": "general", + "label": [ + "Wert, an dem die Dichtefunktion einer stetigen Zufallsgro\u0308\u00dfe ein relatives Maximum aufweist" + ] + } + ], + "pid": "1333323778", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Lageparameter" + }, + { + "authorized_access_point": "Deskriptive Statistik" + } + ], + "variant_access_point": [ + "Modus (Statistik)", + "Modal value", + "Mode" + ], + "md5": "b1eab2be8487350869063ec7ef6d1e79" + }, + { + "authorized_access_point": "Mark Tree", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1333312415" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333312415" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1333312415" + } + ], + "identifier": "http://d-nb.info/gnd/1333312415", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/wiki/Mark_Tree" + ] + } + ], + "pid": "1333312415", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schlaginstrument" + } + ], + "md5": "95f076b0ac93d74704c5ab095983d858" + }, + { + "authorized_access_point": "Mandoloncello", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1333312326" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333312326" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1333312326" + } + ], + "identifier": "http://d-nb.info/gnd/1333312326", + "pid": "1333312326", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zupfinstrument" + } + ], + "md5": "02a27236b2e1c3be9b21c9465edd8914" + }, + { + "authorized_access_point": "Mundart Okzitanisch (Argentera, Provinz Cuneo)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1333270267" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333270267" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1333270267" + } + ], + "identifier": "http://d-nb.info/gnd/1333270267", + "pid": "1333270267", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Okzitanisch" + } + ], + "md5": "9bf1f023f56fc0b264e2183336a01153" + }, + { + "authorized_access_point": "Kuhglocke (Musikinstrument)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/133326514X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)133326514X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)133326514X" + } + ], + "identifier": "http://d-nb.info/gnd/133326514X", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/wiki/Kuhglocke_(Schlaginstrument)" + ] + }, + { + "noteType": "general", + "label": [ + "Konische Metallglocke ohne Innenklo\u0308ppel" + ] + } + ], + "pid": "133326514X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schlaginstrument" + } + ], + "variant_access_point": [ + "Cowbell" + ], + "md5": "07e70a26d9bba3d99568c53d68024f5a" + }, + { + "authorized_access_point": "Kontrabasstuba", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1333260830" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333260830" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1333260830" + } + ], + "identifier": "http://d-nb.info/gnd/1333260830", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wiki - https://de.wikipedia.org/w/index.php?title=Tuba&oldid=245431105" + ] + } + ], + "pid": "1333260830", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tuba" + } + ], + "md5": "5f47099ce163aeac25bda5d636bed4e7" + }, + { + "authorized_access_point": "Kobyz", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1333256302" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333256302" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1333256302" + } + ], + "identifier": "http://d-nb.info/gnd/1333256302", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/wiki/Kobys" + ] + } + ], + "pid": "1333256302", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Laute" + } + ], + "variant_access_point": [ + "Kobys" + ], + "md5": "7e18abf6181de35e12e5282281e78105" + }, + { + "authorized_access_point": "Klavierharfe", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/133325590X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)133325590X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)133325590X" + } + ], + "identifier": "http://d-nb.info/gnd/133325590X", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/wiki/Klavierharfe" + ] + } + ], + "pid": "133325590X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Harfe" + } + ], + "variant_access_point": [ + "Harfenklavier" + ], + "md5": "b2acbf680e0bb66bdc9f5c7ec2e07af7" + }, + { + "authorized_access_point": "Ichigenkin", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1333255616" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333255616" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1333255616" + } + ], + "identifier": "http://d-nb.info/gnd/1333255616", + "note": [ + { + "noteType": "general", + "label": [ + "Einsaitige Zither aus Japan" + ] + } + ], + "pid": "1333255616", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zither" + }, + { + "authorized_access_point": "Monochord" + } + ], + "variant_access_point": [ + "Sumagoto" + ], + "md5": "a1726e4ea86730eaee24700219300804" + }, + { + "authorized_access_point": "Helikon (Musikinstrument)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1333210043" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333210043" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1333210043" + } + ], + "identifier": "http://d-nb.info/gnd/1333210043", + "pid": "1333210043", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tuba" + } + ], + "variant_access_point": [ + "Helikontuba" + ], + "md5": "f30eb6f94aaccf7e042f908971136a70" + }, + { + "authorized_access_point": "Gu\u0308iro", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1333209908" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333209908" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1333209908" + } + ], + "identifier": "http://d-nb.info/gnd/1333209908", + "pid": "1333209908", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schlaginstrument" + } + ], + "variant_access_point": [ + "Guiro", + "Ku\u0308rbisraspel" + ], + "md5": "3f703cb5fcc664b9583600449b2f4f5d" + }, + { + "authorized_access_point": "Diskantinstrument", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1333208901" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333208901" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1333208901" + } + ], + "identifier": "http://d-nb.info/gnd/1333208901", + "pid": "1333208901", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Musikinstrument" + } + ], + "variant_access_point": [ + "Diskant-Instrument" + ], + "md5": "ea9c75a8944dd07cf22b9767afc26795" + }, + { + "authorized_access_point": "Cristal Baschet", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1333141017" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333141017" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1333141017" + } + ], + "identifier": "http://d-nb.info/gnd/1333141017", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/wiki/Cristal_Baschet" + ] + } + ], + "pid": "1333141017", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Glasharmonika" + } + ], + "variant_access_point": [ + "Crystal (Musikinstrument)", + "Kristal Baschet" + ], + "md5": "986e572196a35cef3b04bc97679e5e3e" + }, + { + "authorized_access_point": "Altenburger Gotisch", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1333125127" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333125127" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1333125127" + } + ], + "identifier": "http://d-nb.info/gnd/1333125127", + "note": [ + { + "noteType": "general", + "label": [ + "Enstehungszeit 1928" + ] + } + ], + "pid": "1333125127", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gotische Schrift" + } + ], + "md5": "c47f1624d9ddb6f8f30fc2262d639e6a" + }, + { + "authorized_access_point": "Primo VE (Bibliotheksinformationssystem)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1333119267" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333119267" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1333119267" + } + ], + "identifier": "http://d-nb.info/gnd/1333119267", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Homepage - https://knowledge.exlibrisgroup.com/Primo/Product_Documentation/020Primo_VE" + ] + }, + { + "noteType": "general", + "label": [ + "Bibliotheksinformationssystem (Frontend, Discovery Service) der Ex Libris Group" + ] + } + ], + "pid": "1333119267", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bibliotheksinformationssystem" + } + ], + "md5": "981d4001bda93aadd938e7e0dcde5bc7" + }, + { + "authorized_access_point": "Werk-Grotesk", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1333118023" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333118023" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1333118023" + } + ], + "identifier": "http://d-nb.info/gnd/1333118023", + "pid": "1333118023", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Groteskschrift" + } + ], + "variant_access_point": [ + "Werk Grotesk", + "Werk-Grotesque", + "Werk Grotesque" + ], + "md5": "ce5e3b887a926a470e27b1bdc1478285" + }, + { + "authorized_access_point": "Alma (Bibliotheksinformationssystem)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1333117329" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333117329" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1333117329" + } + ], + "identifier": "http://d-nb.info/gnd/1333117329", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Alma_(Bibliothekssoftware)&oldid=232264077" + ] + }, + { + "noteType": "general", + "label": [ + "Bibliotheksinformationssystem (Backend) der Ex Libris Group" + ] + } + ], + "pid": "1333117329", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bibliotheksinformationssystem" + } + ], + "md5": "d78b549f6671f65679de6c891b9a2b2d" + }, + { + "authorized_access_point": "Werbe-Grotesk", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1333115881" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333115881" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1333115881" + } + ], + "identifier": "http://d-nb.info/gnd/1333115881", + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungszeit der Halbfetten Werbe-Grotesk 1926" + ] + } + ], + "pid": "1333115881", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Groteskschrift" + }, + { + "authorized_access_point": "Auszeichnungsschrift" + } + ], + "variant_access_point": [ + "Werbegrotesk", + "Halbfette Werbe-Grotesk", + "Schmalfette Werbe-Grotesk" + ], + "md5": "05fd867f49f18089a9dc2bb6e522d3c7" + }, + { + "authorized_access_point": "Werbekraft (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1333113749" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333113749" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1333113749" + } + ], + "identifier": "http://d-nb.info/gnd/1333113749", + "pid": "1333113749", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fraktur (Druckschrift)" + }, + { + "authorized_access_point": "Auszeichnungsschrift" + } + ], + "md5": "8a3c4fc5cc8ce2249de646911d83cd1d" + }, + { + "authorized_access_point": "Fru\u0308hdynastische Zeit (Mesopotamien)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1333065841" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333065841" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1333065841" + } + ], + "identifier": "http://d-nb.info/gnd/1333065841", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Fr%C3%BChdynastische_Zeit_(Mesopotamien)&oldid=241217962" + ] + }, + { + "noteType": "general", + "label": [ + "Epochenbezeichnung der altorientalischen Geschichte" + ] + } + ], + "pid": "1333065841", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Bronzezeit" + } + ], + "variant_access_point": [ + "Fru\u0308hdynastikum (Mesopotamien)", + "Pra\u0308sargonidenzeit" + ], + "md5": "49ed8a998add007b94580d2de0ecde43" + }, + { + "authorized_access_point": "Pra\u0308keramisches Neolithikum C", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1333064136" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333064136" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1333064136" + } + ], + "identifier": "http://d-nb.info/gnd/1333064136", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Pr%C3%A4keramisches_Neolithikum&oldid=242925924", + "engl. Wikipedia - https://en.wikipedia.org/w/index.php?title=Pre-Pottery_Neolithic&oldid=1230052305" + ] + }, + { + "noteType": "general", + "label": [ + "Diese Stufe des pra\u0308keramischen Neolithikums wurde erstmals in Ain Ghazal festgestellt", + "Epochenbezeichnung der Vorderasiatischen Archa\u0308ologie" + ] + } + ], + "pid": "1333064136", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Neolithikum" + } + ], + "variant_access_point": [ + "PPNC", + "Pre-pottery Neolithic C", + "Akeramisches Neolithikum C", + "Vorkeramische Jungsteinzeit C" + ], + "md5": "34fe9f99bf5cbcab6021e7ef98d6e299" + }, + { + "authorized_access_point": "Pra\u0308keramisches Neolithikum B", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1333063970" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333063970" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1333063970" + } + ], + "identifier": "http://d-nb.info/gnd/1333063970", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Pr%C3%A4keramisches_Neolithikum_B&oldid=239924777" + ] + }, + { + "noteType": "general", + "label": [ + "Folgt auf das Pra\u0308keramische Neolithikum A der Levante, von Kathleen Kenyon aufgrund der Befunde von Jericho definiert", + "Epochenbezeichnung der Vorderasiatischen Archa\u0308ologie" + ] + } + ], + "pid": "1333063970", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Neolithikum" + } + ], + "variant_access_point": [ + "Pre-pottery Neolithic B", + "PPNB", + "Akeramisches Neolithikum B" + ], + "md5": "a993e556ab79324f964b3c2435280292" + }, + { + "authorized_access_point": "Pra\u0308keramisches Neolithikum A", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1333063717" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333063717" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1333063717" + } + ], + "identifier": "http://d-nb.info/gnd/1333063717", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Pr%C3%A4keramisches_Neolithikum_A&oldid=239924826" + ] + }, + { + "noteType": "general", + "label": [ + "Fru\u0308hjungsteinzeitliche Epoche im Vorderen Orient, von Kathleen Kenyon anhand der Stratigraphie von Jericho definiert, lo\u0308ste das Natufian ab", + "Epochenbezeichnung der Vorderasiatischen Archa\u0308ologie" + ] + } + ], + "pid": "1333063717", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Neolithikum" + } + ], + "variant_access_point": [ + "Pre-pottery Neolithic A", + "PPNA", + "Akeramisches Neolithikum A" + ], + "md5": "40cd24b703882a7a0c8746e95ef7fb4e" + }, + { + "authorized_access_point": "Markenverletzung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/133306179X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)133306179X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)133306179X" + } + ], + "identifier": "http://d-nb.info/gnd/133306179X", + "note": [ + { + "noteType": "general", + "label": [ + "Versto\u00df gegen markenrechtliche Vorschriften" + ] + } + ], + "pid": "133306179X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Markenrecht" + } + ], + "variant_access_point": [ + "Markenrechtsverletzung", + "Markenrechtsversto\u00df", + "Markenrecht" + ], + "md5": "ef476f34ffcff179665a936ad52e5a0b" + }, + { + "authorized_access_point": "Kuki-Aufstand", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1333037414" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333037414" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1333037414" + } + ], + "identifier": "http://d-nb.info/gnd/1333037414", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Aufst%C3%A4nde_und_Revolten_gegen_die_britische_Herrschaft_in_Indien&oldid=244895818#1859_bis_1947", + "Engl. Wikipedia - https://en.wikipedia.org/w/index.php?title=Kuki_Rebellion_of_1917%E2%80%931919&oldid=1187443399" + ] + }, + { + "noteType": "general", + "label": [ + "Rebellion der Kuki-Sta\u0308mme von Manipur gegen die Einmischung der britischen Kolonialherrschaft in die Lebensgrundlage der Kuki" + ] + } + ], + "pid": "1333037414", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Aufstand" + }, + { + "authorized_access_point": "Kolonialkrieg" + } + ], + "variant_access_point": [ + "Anglo-Kuki-Krieg", + "Anglo-Kuki Rebellion", + "Anglo-Kuki war" + ], + "md5": "d02d571e8e7d9e0b65fe82eceacc6905" + }, + { + "authorized_access_point": "Pro-Lie-Gruppe", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1333027249" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333027249" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1333027249" + } + ], + "identifier": "http://d-nb.info/gnd/1333027249", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Pro-Lie-Gruppe&oldid=233764246" + ] + }, + { + "noteType": "general", + "label": [ + "Eine Pro-Lie-Gruppe ist in der Mathematik eine topologische Gruppe, die sich in gewisser Weise als Grenzwert von Lie-Gruppen schreiben la\u0308sst." + ] + } + ], + "pid": "1333027249", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Topologische Gruppe" + }, + { + "authorized_access_point": "Lie-Theorie" + } + ], + "variant_access_point": [ + "Pro-Lie Group" + ], + "md5": "7f06242f98cb55664c352e3558e2e1d6" + }, + { + "authorized_access_point": "Mundart Holla\u0308ndisch (Zaan-Gebiet)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1332990258" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332990258" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1332990258" + } + ], + "identifier": "http://d-nb.info/gnd/1332990258", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://nl.wikipedia.org/w/index.php?title=Zaans&oldid=67492702" + ] + } + ], + "pid": "1332990258", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Holla\u0308ndisch" + } + ], + "variant_access_point": [ + "Zaans (Holla\u0308ndisch)" + ], + "md5": "af112fe0674bcae876349afe6a7d4c68" + }, + { + "authorized_access_point": "Scha\u0308ferlauf", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1332899730" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332899730" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1332899730" + } + ], + "identifier": "http://d-nb.info/gnd/1332899730", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Sch%C3%A4ferlauf&oldid=239016245" + ] + }, + { + "noteType": "general", + "label": [ + "entwickelte sich aus dem Zunftfest der gewerblichen Scha\u0308ferrei; heute wu\u0308rttembergisches Volksfest (Jahrmarkt) in den Sta\u0308dten Markgro\u0308ningen, Bad Urach und Wildberg" + ] + } + ], + "pid": "1332899730", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Volksfest" + } + ], + "md5": "6338e59d24d4fdb91f09a0b2b3adf4cf" + }, + { + "authorized_access_point": "TigerGraph (Graphdatenbank)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1332895018" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332895018" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1332895018" + } + ], + "identifier": "http://d-nb.info/gnd/1332895018", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://en.wikipedia.org/w/index.php?title=TigerGraph&oldid=1183528280" + ] + } + ], + "pid": "1332895018", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Graphdatenbank" + } + ], + "md5": "f1c1b810c691c48e6c208407da0b291c" + }, + { + "authorized_access_point": "gRPC (Software)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1332889549" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332889549" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1332889549" + } + ], + "identifier": "http://d-nb.info/gnd/1332889549", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://en.wikipedia.org/w/index.php?title=GRPC&oldid=1228337631" + ] + }, + { + "noteType": "general", + "label": [ + "Framework von Google" + ] + } + ], + "pid": "1332889549", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Framework (Informatik)" + }, + { + "authorized_access_point": "Open Source" + } + ], + "variant_access_point": [ + "gRPC Remote Procedure Calls" + ], + "md5": "f44f94bb41894864fef170df2333d3f9" + }, + { + "authorized_access_point": "Parameterabha\u0308ngige Differentialgleichung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1332775381" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332775381" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1332775381" + } + ], + "identifier": "http://d-nb.info/gnd/1332775381", + "note": [ + { + "noteType": "general", + "label": [ + "Das Lo\u0308sungsverhalten von einem Parameter abha\u0308ngiger Differentialgleichungen ist insb. in Hinblick auf Sto\u0308rungen interessant." + ] + } + ], + "pid": "1332775381", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Differentialgleichung" + }, + { + "authorized_access_point": "Parameter (Mathematik)" + } + ], + "related": [ + { + "authorized_access_point": "Sto\u0308rungstheorie" + } + ], + "variant_access_point": [ + "Parametrische Differentialgleichung", + "Parametric Differential Equation" + ], + "md5": "7500e6f4a12c297a1d58f682c3e686eb" + }, + { + "authorized_access_point": "Hessenland (Heroldsname)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1332774113" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332774113" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1332774113" + } + ], + "identifier": "http://d-nb.info/gnd/1332774113", + "note": [ + { + "noteType": "general", + "label": [ + "Die Herolde 'Hessenland' erscheinen in Quellen oft nur mit den Amtsnamen, wa\u0308hrend ihre Eigennamen oder Hinweise auf die genaue Funktion fehlen. Landgraf Ludwig I. (1402-1458) bediente sich eines Herolds, der den Namen seines Landes trug." + ] + } + ], + "pid": "1332774113", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Heroldsname" + } + ], + "md5": "cccabb9239bb567be7b88ac6aa110510" + }, + { + "authorized_access_point": "Python 3.12", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/133276648X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)133276648X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)133276648X" + } + ], + "identifier": "http://d-nb.info/gnd/133276648X", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Homepage - https://docs.python.org/dev/whatsnew/3.12html" + ] + } + ], + "pid": "133276648X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Objektorientierte Programmiersprache" + } + ], + "related": [ + { + "authorized_access_point": "Python 3.7" + } + ], + "md5": "292e1c49133ea9360dc191d6578ac57c" + }, + { + "authorized_access_point": "Heroldsname", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1332759254" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332759254" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1332759254" + } + ], + "identifier": "http://d-nb.info/gnd/1332759254", + "note": [ + { + "noteType": "general", + "label": [ + "Amtsnamen aus Toponymen von Herolden des Mittelalters, die fest im Dienst eines Landesherrn standen, auf die der Name indirekt verwies. Mit dem Namenswechsel zum Amtsnamen erschienen diese Personen fortan oft ohne Vornamen." + ] + } + ], + "pid": "1332759254", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Name" + } + ], + "variant_access_point": [ + "Herold" + ], + "md5": "5e01ba0b240514814f27f0dced3f2c23" + }, + { + "authorized_access_point": "Posthumanismus (Motiv)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1332688047" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332688047" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1332688047" + } + ], + "identifier": "http://d-nb.info/gnd/1332688047", + "pid": "1332688047", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "e1ae56f22781ebb9255f88783341f6fa" + }, + { + "authorized_access_point": "Kleine Binsenjungfer", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1332661297" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332661297" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1332661297" + } + ], + "identifier": "http://d-nb.info/gnd/1332661297", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Kleine_Binsenjungfer&oldid=221779523" + ] + }, + { + "noteType": "general", + "label": [ + "Libelle der Gattung der Binsenjungfern, Familie der Teichjungfern" + ] + } + ], + "pid": "1332661297", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Teichjungfern" + } + ], + "variant_access_point": [ + "Lestes virens" + ], + "md5": "4bafa18f18f67dee1c9e8b3bfebed452" + }, + { + "authorized_access_point": "Zuckerbirke", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1332657273" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332657273" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1332657273" + } + ], + "identifier": "http://d-nb.info/gnd/1332657273", + "pid": "1332657273", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Birkengewa\u0308chse" + } + ], + "variant_access_point": [ + "Betula lenta" + ], + "md5": "64405af6ff68fc3d15139eed5676216c" + }, + { + "authorized_access_point": "Zimmermannsbock", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1332649688" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332649688" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1332649688" + } + ], + "identifier": "http://d-nb.info/gnd/1332649688", + "pid": "1332649688", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bockka\u0308fer" + } + ], + "variant_access_point": [ + "Zimmerbock", + "Acanthocinus aedilis" + ], + "md5": "fe6ccd2c17f6a76f0775e7844727fe5d" + }, + { + "authorized_access_point": "Polyzephalie", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1332459587" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332459587" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1332459587" + } + ], + "identifier": "http://d-nb.info/gnd/1332459587", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Polyzephalie&oldid=224564950" + ] + }, + { + "noteType": "general", + "label": [ + "bezeichnet allgemein das Auftreten mehrerer Ko\u0308pfe bei Lebewesen" + ] + } + ], + "pid": "1332459587", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Missbildung" + } + ], + "variant_access_point": [ + "Mehrko\u0308pfigkeit" + ], + "md5": "53200bf6e1593503e07ab830bbf5d0bd" + }, + { + "authorized_access_point": "Konzertzettel", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1332430376" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332430376" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1332430376" + } + ], + "identifier": "http://d-nb.info/gnd/1332430376", + "note": [ + { + "noteType": "general", + "label": [ + "Ein Konzertzettel gibt Information u\u0308ber Veranstalter, Ort, Datum und Zeit einer oder mehreren Konzertveranstaltungen und listet alle geplanten Programmpunkte auf, in der Regel mit Angabe der Komponisten und der Interpreten. Oft ist der Eintrittspreis angegeben, manchmal sind Verhaltensregeln fu\u0308r den Konzertsaal genannt. Im Gegensatz zum Konzertprogramm entha\u0308lt ein Konzertzettel keine weitergehenden Informationen zu den Stu\u0308cken und den Interpreten.", + "Zu verwenden fu\u0308r ein einseitig oder beidseitig bedrucktes Blatt im Handzettel-, Faltblatt- oder Plakatformat.", + "Als Formangabe fu\u0308r die Art des Inhalts als Teil des optionalen Sets zugelassen." + ] + } + ], + "pid": "1332430376", + "type": "bf:Topic", + "variant_access_point": [ + "Konzert" + ], + "md5": "f7695b99ac94430d28cb3778495356f9" + }, + { + "authorized_access_point": "Perso\u0308nliches Fotobuch", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1332426751" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332426751" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1332426751" + } + ], + "identifier": "http://d-nb.info/gnd/1332426751", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Fotobuch&oldid=229660915" + ] + }, + { + "noteType": "general", + "label": [ + "Individuelles, u\u0308ber ein Layoutprogramm eines Foto-Anbieters digital erstelltes Fotobuch; in der Regel nur in sehr geringer Stu\u0308ckzahl produziert.", + "Als Formangabe fu\u0308r die Art des Inhalts als Teil des optionalen Sets zugelassen." + ] + } + ], + "pid": "1332426751", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bildband" + } + ], + "related": [ + { + "authorized_access_point": "Fotobuch" + }, + { + "authorized_access_point": "CEWE Fotobuch Pro" + } + ], + "variant_access_point": [ + "Personalisiertes Fotobuch", + "Personalisiertes Photobuch", + "Perso\u0308nliches Photobuch" + ], + "md5": "73f16e45bf7f0e063a3a5b730256d550" + }, + { + "authorized_access_point": "Kattunpapier", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1332365841" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332365841" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1332365841" + } + ], + "identifier": "http://d-nb.info/gnd/1332365841", + "note": [ + { + "noteType": "general", + "label": [ + "Im Handdruckverfahren mit Modeln gefertigtes Buntpapier, das nach handgemalten Entwu\u0308rfen oft gro\u00dffla\u0308chig mit Kleisterfarben bedruckt wurde." + ] + } + ], + "pid": "1332365841", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Buntpapier" + } + ], + "variant_access_point": [ + "Modeldruckpapier", + "Zitzpapier" + ], + "md5": "be9a1dae0f3828c4d754d14a26af5eaa" + }, + { + "authorized_access_point": "Elektronisches Wertpapier", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1332318142" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332318142" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1332318142" + } + ], + "identifier": "http://d-nb.info/gnd/1332318142", + "note": [ + { + "noteType": "general", + "label": [ + "Als elektronisches Wertpapier bezeichnet man ein Wertpapier ohne Urkunde, dessen Begebung dadurch erfolgt, dass der Emittent anstelle der Ausstellung einer Wertpapierurkunde eine Eintragung in ein elektronisches Wertpapierregister bewirkt." + ] + } + ], + "pid": "1332318142", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Wertpapier" + } + ], + "variant_access_point": [ + "E-Wertpapier" + ], + "md5": "5f40701e2661402bf7bed64514ef13d2" + }, + { + "authorized_access_point": "Small Modular Reactor", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1332111971" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332111971" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1332111971" + } + ], + "identifier": "http://d-nb.info/gnd/1332111971", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Small_Modular_Reactor&oldid=245567340" + ] + }, + { + "noteType": "general", + "label": [ + "Small Modular Reactors sind modulare Kernspaltungsreaktoren, die kleiner als herko\u0308mmliche Reaktoren sind und daher in einer Fabrik vorgefertigt und anschlie\u00dfend an einen Montageort verbracht werden ko\u0308nnen." + ] + } + ], + "pid": "1332111971", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kernkraftwerk" + } + ], + "variant_access_point": [ + "SMR", + "kleiner modularer Reaktor", + "Miniatomkraftwerk", + "Minikernkraftwerk" + ], + "md5": "2e4921f86a432638121bd77436590335" + }, + { + "authorized_access_point": "Schaufensterpuppe (Motiv)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1332095119" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332095119" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1332095119" + } + ], + "identifier": "http://d-nb.info/gnd/1332095119", + "pid": "1332095119", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "5a9641b78503c0c7b6cb1eb3917edc92" + }, + { + "authorized_access_point": "Gro\u00dfflu\u0308geliger Wanzensame", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/133197612X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)133197612X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)133197612X" + } + ], + "identifier": "http://d-nb.info/gnd/133197612X", + "pid": "133197612X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fuchsschwanzgewa\u0308chse" + } + ], + "variant_access_point": [ + "Corispermum leptopterum" + ], + "md5": "aeb88d9bb81afe31b5f1bc57b86e3169" + }, + { + "authorized_access_point": "Kleines Nixenkraut", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/133197593X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)133197593X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)133197593X" + } + ], + "identifier": "http://d-nb.info/gnd/133197593X", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Kleines_Nixenkraut&oldid=217982529" + ] + } + ], + "pid": "133197593X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Froschbissgewa\u0308chse" + } + ], + "variant_access_point": [ + "Najas minor" + ], + "md5": "c5778e3f1816c3648a40dcd12c4c857c" + }, + { + "authorized_access_point": "Ruten-Lattich", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1331975794" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331975794" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1331975794" + } + ], + "identifier": "http://d-nb.info/gnd/1331975794", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Ruten-Lattich&oldid=234087294" + ] + } + ], + "pid": "1331975794", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Lactuceae" + } + ], + "variant_access_point": [ + "Lactuca viminea", + "Rutenlattich" + ], + "md5": "610d0f0f2d9b162e5330bacf88282cef" + }, + { + "authorized_access_point": "Grimmia crinita", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1331886929" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331886929" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1331886929" + } + ], + "identifier": "http://d-nb.info/gnd/1331886929", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia unter Grimmia - https://de.wikipedia.org/w/index.php?title=Grimmia&oldid=227976746" + ] + } + ], + "pid": "1331886929", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Grimmiaceae" + } + ], + "variant_access_point": [ + "Mausfell-Kissenmoos" + ], + "md5": "63018292f419c18f15d0e561b0520a49" + }, + { + "authorized_access_point": "Microsoft dot net 8", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1331876540" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331876540" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1331876540" + } + ], + "identifier": "http://d-nb.info/gnd/1331876540", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=.NET_(Plattform)&oldid=245448784" + ] + } + ], + "pid": "1331876540", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Framework (Informatik)" + } + ], + "related": [ + { + "authorized_access_point": "Microsoft dot net 7" + } + ], + "variant_access_point": [ + "Microsoft dot net 8.0", + "Microsoft.Net 8", + "Microsoft.Net 8.0", + ".Net 8", + ".Net Framework 8", + "Microsoft .NET Framework 8" + ], + "md5": "0e2f202f06975b4cae9203fe59b9af11" + }, + { + "authorized_access_point": "Eggon (Volk)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1331840627" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331840627" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1331840627" + } + ], + "identifier": "http://d-nb.info/gnd/1331840627", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://en.wikipedia.org/w/index.php?title=Eggon_people&oldid=1212081727" + ] + }, + { + "noteType": "general", + "label": [ + "Ethnische Gruppe, die hauptsa\u0308chlich im Norden Zentralnigerias (na\u0308mlich Nassarawa und im Bundesstaat Plateau) beheimatet ist. Muttersprache ist die Eggon-Sprache, die die meisten Eggon-Leute auch heute noch sprechen." + ] + } + ], + "pid": "1331840627", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Egon-Sprache" + } + ], + "variant_access_point": [ + "Eggon people", + "Egon (Volk)", + "Ero (Volk)", + "Mo Egon (Volk)" + ], + "md5": "8ce725fd5704f8651c35029b4ee48a62" + }, + { + "authorized_access_point": "Riesenbakterien", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1331747716" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331747716" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1331747716" + } + ], + "identifier": "http://d-nb.info/gnd/1331747716", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Riesenbakterium&oldid=237975080" + ] + } + ], + "pid": "1331747716", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bakterien" + } + ], + "variant_access_point": [ + "Riesenbakterium" + ], + "md5": "3eb36d0b573c67a2e5f3addbb0fe267b" + }, + { + "authorized_access_point": "Galli (Priesterkollegium)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1331734126" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331734126" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1331734126" + } + ], + "identifier": "http://d-nb.info/gnd/1331734126", + "note": [ + { + "noteType": "general", + "label": [ + "als freiwillige Kastraten Begleiter/Priester der Magna Mater (Kybele)" + ] + } + ], + "pid": "1331734126", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Priesterkollegium" + } + ], + "related": [ + { + "authorized_access_point": "Kybelekult" + } + ], + "variant_access_point": [ + "Galloi" + ], + "md5": "4f32c19b09bbb01c32e96f43e5f08991" + }, + { + "authorized_access_point": "Unehrlichkeit", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1331734045" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331734045" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1331734045" + } + ], + "identifier": "http://d-nb.info/gnd/1331734045", + "pid": "1331734045", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Ehrlichkeit" + }, + { + "authorized_access_point": "Unaufrichtigkeit" + }, + { + "authorized_access_point": "Heuchelei" + } + ], + "md5": "c857edd55bbdf50ea874079acae647ae" + }, + { + "authorized_access_point": "Crista", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1331733316" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331733316" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1331733316" + } + ], + "identifier": "http://d-nb.info/gnd/1331733316", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Crista_(Helm)&oldid=229512606" + ] + }, + { + "noteType": "general", + "label": [ + "lat. fu\u0308r \"Kamm\"; Helmzier/Helmbusch ro\u0308mischer Legiona\u0308re" + ] + } + ], + "pid": "1331733316", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Helm" + } + ], + "md5": "db8b70e191eca1ca09810fcf51559b61" + }, + { + "authorized_access_point": "Seidenbienen-O\u0308lka\u0308fer", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1331723361" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331723361" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1331723361" + } + ], + "identifier": "http://d-nb.info/gnd/1331723361", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Seidenbienen-%C3%96lk%C3%A4fer&oldid=238939855" + ] + } + ], + "pid": "1331723361", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "O\u0308lka\u0308fer (Familie)" + } + ], + "variant_access_point": [ + "Schwarze Pelzbienen-O\u0308lka\u0308fer", + "Stenoria analis" + ], + "md5": "3fa729892fbb53cf58707f89502844f4" + }, + { + "authorized_access_point": "Attenuation (Molekulargenetik)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1331719054" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331719054" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1331719054" + } + ], + "identifier": "http://d-nb.info/gnd/1331719054", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Attenuation_(Genexpression)&oldid=239090494" + ] + } + ], + "pid": "1331719054", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Genregulation" + } + ], + "md5": "9dfc3b73c9b298a01d84b77da84ad31c" + }, + { + "authorized_access_point": "Tricuspid Anular Plane Systolic Excursion", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1331717353" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331717353" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1331717353" + } + ], + "identifier": "http://d-nb.info/gnd/1331717353", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=TAPSE&oldid=221946233" + ] + } + ], + "pid": "1331717353", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ultraschallkardiografie" + } + ], + "variant_access_point": [ + "TAPSE", + "Tricuspid annular motion" + ], + "md5": "e26c29a07dc836e030ca5004d141c9a0" + }, + { + "authorized_access_point": "Maximaler Toroid", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1331710464" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331710464" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1331710464" + } + ], + "identifier": "http://d-nb.info/gnd/1331710464", + "note": [ + { + "noteType": "general", + "label": [ + "Begriff in der Theorie kompakter Gruppen, insb. der kompakten Lie-Gruppen" + ] + } + ], + "pid": "1331710464", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Toroid (Gruppentheorie)" + }, + { + "authorized_access_point": "Kompakte Gruppe" + } + ], + "variant_access_point": [ + "Maximaler Torus", + "Maximal Torus" + ], + "md5": "8b7e6a781d7e8f769048383461abb802" + }, + { + "authorized_access_point": "Wiegemeister", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1331704014" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331704014" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1331704014" + } + ], + "identifier": "http://d-nb.info/gnd/1331704014", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia unter Dorfwaage - https://de.wikipedia.org/w/index.php?title=Dorfwaage&oldid=232866456" + ] + } + ], + "pid": "1331704014", + "type": "bf:Topic", + "variant_access_point": [ + "Waagemeister" + ], + "md5": "a690dd227c881a2dfd10ee93cda5b071" + }, + { + "authorized_access_point": "Flu\u0308gelhelm", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1331614392" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331614392" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1331614392" + } + ], + "identifier": "http://d-nb.info/gnd/1331614392", + "note": [ + { + "noteType": "general", + "label": [ + "Helm, an dem beidseits nachgebildete Flu\u0308gel angebracht sind; findet sich in antiken und antikisierenden Darstellungen von Go\u0308ttern (u.a. Hermes/Merkur) und Go\u0308ttinnen" + ] + } + ], + "pid": "1331614392", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Helm" + } + ], + "md5": "c035cc315b02fcd4a3721db9a509d39d" + }, + { + "authorized_access_point": "Sonnenwagen", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1331613426" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331613426" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1331613426" + } + ], + "identifier": "http://d-nb.info/gnd/1331613426", + "note": [ + { + "noteType": "general", + "label": [ + "in der fru\u0308hen Mythologie stellt der Sonnenwagen den scheinbar ta\u0308glichen Sonnenlauf von Ost nach West und den noch vollkommen unklare Ru\u0308ckweg dar, u\u0308berliefert in mytholog. Darstellungen" + ] + } + ], + "pid": "1331613426", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kultwagen" + }, + { + "authorized_access_point": "Motiv" + } + ], + "md5": "59875c045047f62825808cddc3d47726" + }, + { + "authorized_access_point": "Krakauer Auschwitz-Prozess", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1331605164" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331605164" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1331605164" + } + ], + "identifier": "http://d-nb.info/gnd/1331605164", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Krakauer_Auschwitzprozess&oldid=244500822" + ] + } + ], + "pid": "1331605164", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kriegsverbrecherprozess" + } + ], + "variant_access_point": [ + "Auschwitz-Prozess (Krakau)", + "Auschwitz-Prozess (1947)" + ], + "md5": "ab976ff4cbddc451559f2f882f555604" + }, + { + "authorized_access_point": "Phrygische Mu\u0308tze (Motiv)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1331605091" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331605091" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1331605091" + } + ], + "identifier": "http://d-nb.info/gnd/1331605091", + "pid": "1331605091", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "83c1b1c305abaaffda36e4145046dfc2" + }, + { + "authorized_access_point": "Phrygische Mu\u0308tze", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1331604893" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331604893" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1331604893" + } + ], + "identifier": "http://d-nb.info/gnd/1331604893", + "note": [ + { + "noteType": "general", + "label": [ + "antike, auf kleinasiatische Urspru\u0308nge zuru\u0308ckgehende kegelfo\u0308rmige Mu\u0308tze der Phryger und Perser aus Stoff oder Leder mit nach vorn fallender rundlicher Spitze" + ] + } + ], + "pid": "1331604893", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mu\u0308tze" + } + ], + "md5": "7e1d5d1467b931df203b23e2174f7674" + }, + { + "authorized_access_point": "Hippokampos", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1331603897" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331603897" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1331603897" + } + ], + "identifier": "http://d-nb.info/gnd/1331603897", + "note": [ + { + "noteType": "general", + "label": [ + "Fabelwesen, im ersten Teil ein Pferd, im letzten in einen schlangenartigen Fisch u\u0308bergehend" + ] + } + ], + "pid": "1331603897", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fabeltiere" + } + ], + "variant_access_point": [ + "Hippokamp", + "Hippocamp" + ], + "md5": "7f7ee84db9e371eef42e63a153039d05" + }, + { + "authorized_access_point": "Schlacht um Pensacola (1781)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1331594014" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331594014" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1331594014" + } + ], + "identifier": "http://d-nb.info/gnd/1331594014", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Schlacht_um_Pensacola_(1781)&oldid=185703545", + "Wikipedia - https://en.wikipedia.org/w/index.php?title=Siege_of_Pensacola&oldid=1231422844" + ] + }, + { + "noteType": "general", + "label": [ + "Teil des spanischen Feldzugs gegen die britische Kolonie Westflorida wa\u0308hrend des amerik. Unabha\u0308ngigkeitskrieges." + ] + } + ], + "pid": "1331594014", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schlacht" + } + ], + "related": [ + { + "authorized_access_point": "Nordamerikanischer Unabha\u0308ngigkeitskrieg" + } + ], + "variant_access_point": [ + "Belagerung von Pensacola", + "Siege of Pensacola" + ], + "md5": "4cec398dad86c1a7a431ea1892211b81" + }, + { + "authorized_access_point": "Mu\u0308cken-Ha\u0308ndelwurz", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1331592208" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331592208" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1331592208" + } + ], + "identifier": "http://d-nb.info/gnd/1331592208", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=M%C3%BCcken-H%C3%A4ndelwurz&oldid=245590641" + ] + }, + { + "noteType": "general", + "label": [ + "Art aus der Gattung der Ha\u0308ndelwurzen" + ] + } + ], + "pid": "1331592208", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Orchideen" + } + ], + "variant_access_point": [ + "Gymnadenia conopsea", + "Langsporn-Ha\u0308ndelwurz", + "Fliegen-Ha\u0308ndelwurz", + "Gro\u00dfe Ha\u0308ndelwurz" + ], + "md5": "e3d5c3de74d2aee3b82025a0815ececd" + }, + { + "authorized_access_point": "Vizekanzlerin", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1331584167" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331584167" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1331584167" + } + ], + "identifier": "http://d-nb.info/gnd/1331584167", + "pid": "1331584167", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Vizekanzler" + } + ], + "md5": "bf6dc683d0f13f05bcbd8f355f05541d" + }, + { + "authorized_access_point": "Holzmerkmal", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1331530806" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331530806" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1331530806" + } + ], + "identifier": "http://d-nb.info/gnd/1331530806", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Holzmerkmal&oldid=230021794" + ] + }, + { + "noteType": "general", + "label": [ + "Als Holzmerkmale werden alle Eigenschaften bezeichnet, welche die individuelle Gestalt von Holz beschreiben." + ] + } + ], + "pid": "1331530806", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Holz" + } + ], + "variant_access_point": [ + "Holz" + ], + "md5": "6807daa6dd9197c33d94e0ef82f37af3" + }, + { + "authorized_access_point": "Isoelektrischer Punkt", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1331496918" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331496918" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1331496918" + } + ], + "identifier": "http://d-nb.info/gnd/1331496918", + "pid": "1331496918", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Wasserstoffionenkonzentration" + } + ], + "md5": "a83fdc72205fb4da7f1de5c9a3cc51e7" + }, + { + "authorized_access_point": "Abrechnungsbetrug", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1331482941" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331482941" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1331482941" + } + ], + "identifier": "http://d-nb.info/gnd/1331482941", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Abrechnungsbetrug&oldid=239347627" + ] + }, + { + "noteType": "general", + "label": [ + "Als Abrechnungsbetrug bezeichnet man eine vorsa\u0308tzliche Manipulation bei der Rechnungsstellung durch einen Leistungserbringer im Gesundheitswesen, die den Empfa\u0308nger zu einer Vermo\u0308gensdisposition veranlasst, obwohl die vom jeweiligen Vergu\u0308tungssystem vorgesehenen Voraussetzungen nicht vorliegen." + ] + } + ], + "pid": "1331482941", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Betrug" + } + ], + "md5": "4e2d44e5adf7ed7ea16d2b47ad7c2176" + }, + { + "authorized_access_point": "Blumensprache (Motiv)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1331380073" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331380073" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1331380073" + } + ], + "identifier": "http://d-nb.info/gnd/1331380073", + "pid": "1331380073", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "c2d2ba371b449c0cb43dbf8fcc887598" + }, + { + "authorized_access_point": "Versehgarnitur", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1331102170" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331102170" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1331102170" + } + ], + "identifier": "http://d-nb.info/gnd/1331102170", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Versehgarnitur&oldid=244395395" + ] + }, + { + "noteType": "general", + "label": [ + "Eine Versehgarnitur (auch Versehbesteck) gab es bis in die Mitte des 20. Jahrhunderts hinein in vielen katholischen Haushalten. Der Priester gebrauchte sie bei der Spendung der Krankensalbung." + ] + } + ], + "pid": "1331102170", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kirchengera\u0308t" + } + ], + "variant_access_point": [ + "Versehbesteck" + ], + "md5": "3b2e18b4e062bfa4dbb3c03ccbcb99a2" + }, + { + "authorized_access_point": "Klangsynthese", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1330854640" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1330854640" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1330854640" + } + ], + "identifier": "http://d-nb.info/gnd/1330854640", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Klangsynthese&oldid=237322405" + ] + }, + { + "noteType": "general", + "label": [ + "Methode zur Herstellung ku\u0308nstlicher oder Abwandlung natu\u0308rlicher Kla\u0308nge" + ] + } + ], + "pid": "1330854640", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Klangerzeugung" + } + ], + "md5": "fcbd05aab735b6e1c974f916a223f052" + }, + { + "authorized_access_point": "Theaterbau (Motiv)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1330843584" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1330843584" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1330843584" + } + ], + "identifier": "http://d-nb.info/gnd/1330843584", + "pid": "1330843584", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "34bbd6846a4b148274ef26095cf69297" + }, + { + "authorized_access_point": "Daihatsu Feroza", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1330586557" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1330586557" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1330586557" + } + ], + "identifier": "http://d-nb.info/gnd/1330586557", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Daihatsu_Feroza&oldid=240372676" + ] + } + ], + "pid": "1330586557", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Personenkraftwagen" + } + ], + "related": [ + { + "authorized_access_point": "Daihatsu" + } + ], + "md5": "4d8bc154dec10729fd1d9c4728ad87a7" + }, + { + "authorized_access_point": "Elbe 3 (Schiff, 1888-)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1330586271" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1330586271" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1330586271" + } + ], + "identifier": "http://d-nb.info/gnd/1330586271", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Elbe_3_(Schiff,_1888)&oldid=238101652" + ] + }, + { + "noteType": "general", + "label": [ + "Seit 1979 im Museumshafen Oevelgo\u0308nne in Hamburg liegend; nicht zu verwechseln mit dem weiteren Feuerschiff gleichen Namens \"Elbe 3 / Bu\u0308rgermeister Abendroth\" im Bremerhavener Museumshafens" + ] + } + ], + "pid": "1330586271", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Feuerschiff" + } + ], + "variant_access_point": [ + "Leuchtschiff Weser", + "Weser (Schiff, 1888-)" + ], + "md5": "6c9b8600869f204e9380494fdb86cf9b" + }, + { + "authorized_access_point": "Vespa P80X", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1330585992" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1330585992" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1330585992" + } + ], + "identifier": "http://d-nb.info/gnd/1330585992", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Vespa_P80X&oldid=197009978" + ] + } + ], + "pid": "1330585992", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Vespa" + } + ], + "broader": [ + { + "authorized_access_point": "Motorroller" + } + ], + "md5": "cc673fb85b38a7ac60c2f6b9e2035775" + }, + { + "authorized_access_point": "Zu\u0308ndapp R 50", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1330585747" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1330585747" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1330585747" + } + ], + "identifier": "http://d-nb.info/gnd/1330585747", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Z%C3%BCndapp_R_50&oldid=243884554" + ] + } + ], + "pid": "1330585747", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motorroller" + } + ], + "related": [ + { + "authorized_access_point": "Zu\u0308ndapp" + } + ], + "md5": "5e51183518ad3fda21f35e8ad49477c0" + }, + { + "authorized_access_point": "Massaker von Sabra und Schatila (Motiv)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1330447611" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1330447611" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1330447611" + } + ], + "identifier": "http://d-nb.info/gnd/1330447611", + "pid": "1330447611", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "a3552c4f6658392de2074b2f46d03e95" + }, + { + "authorized_access_point": "Witkar (Elektroauto)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1330433858" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1330433858" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1330433858" + } + ], + "identifier": "http://d-nb.info/gnd/1330433858", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia (unter Geschichte des Elektroautos) - https://de.wikipedia.org/w/index.php?title=Geschichte_des_Elektroautos&oldid=243876878" + ] + }, + { + "noteType": "general", + "label": [ + "Dreira\u0308driges Zwei-Personen-Auto" + ] + } + ], + "pid": "1330433858", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Personenkraftwagen" + }, + { + "authorized_access_point": "Elektrofahrzeug" + } + ], + "md5": "2a9eb46a4736f7f9c8cfa1c3d384975d" + }, + { + "authorized_access_point": "Datsun (Marke)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1330430964" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1330430964" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1330430964" + } + ], + "identifier": "http://d-nb.info/gnd/1330430964", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Datsun&oldid=243657328" + ] + } + ], + "pid": "1330430964", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Markenname" + } + ], + "variant_access_point": [ + "Datson (Marke)" + ], + "md5": "267e52d7f2fc046dbfcd802d1c519fe1" + }, + { + "authorized_access_point": "Bergisch Gladbach (Motiv)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1330343085" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1330343085" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1330343085" + } + ], + "identifier": "http://d-nb.info/gnd/1330343085", + "pid": "1330343085", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "63c150f5a0caead858add000a69c42b3" + }, + { + "authorized_access_point": "Ambisonics", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1330186664" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1330186664" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1330186664" + } + ], + "identifier": "http://d-nb.info/gnd/1330186664", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Ambisonics&oldid=237488687" + ] + }, + { + "noteType": "general", + "label": [ + "ein Verfahren zur Aufnahme und Wiedergabe eines Klangfeldes" + ] + } + ], + "pid": "1330186664", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Technische Akustik" + }, + { + "authorized_access_point": "Audiotechnik" + } + ], + "variant_access_point": [ + "Ambisonic" + ], + "md5": "3c21b6e33bd8ddf448455e9b2731db56" + }, + { + "authorized_access_point": "Mundart Kajkavisch (Varaz\u030cdin)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1329650123" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1329650123" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1329650123" + } + ], + "identifier": "http://d-nb.info/gnd/1329650123", + "pid": "1329650123", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Kajkavisch" + } + ], + "md5": "fd43df77fb44554a87bb5e4efa56b441" + }, + { + "authorized_access_point": "Ordensleute (Motiv)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1329573331" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1329573331" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1329573331" + } + ], + "identifier": "http://d-nb.info/gnd/1329573331", + "pid": "1329573331", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "11747ab9adb07b62ce8d918ff88e446a" + }, + { + "authorized_access_point": "Meduse (Motiv)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1329325958" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1329325958" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1329325958" + } + ], + "identifier": "http://d-nb.info/gnd/1329325958", + "pid": "1329325958", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "d8658e4f1cb7ea2767f379bcafb12be5" + }, + { + "authorized_access_point": "Kaiserkrone (Pflanze, Motiv)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1328905152" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1328905152" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1328905152" + } + ], + "identifier": "http://d-nb.info/gnd/1328905152", + "pid": "1328905152", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + }, + { + "authorized_access_point": "Pflanzendarstellung" + } + ], + "md5": "b6e5d6b893d8c231655c590fe0901126" + }, + { + "authorized_access_point": "Intertype Medieval", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1328159116" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1328159116" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1328159116" + } + ], + "identifier": "http://d-nb.info/gnd/1328159116", + "note": [ + { + "noteType": "general", + "label": [ + "Nachgewiesen 1929" + ] + } + ], + "pid": "1328159116", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Renaissance-Antiqua" + } + ], + "variant_access_point": [ + "Intertype Mediaeval", + "Medieval (Druckschrift)", + "Mediaeval (Druckschrift)", + "Medieval (Druckschrift, New York)", + "Intertype-Medieval", + "Intertype-Mediaeval" + ], + "md5": "6f21f4b533989ae2ae48695e72af7f64" + }, + { + "authorized_access_point": "Kleina\u0308ugige Wu\u0308hlmaus", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1328114813" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1328114813" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1328114813" + } + ], + "identifier": "http://d-nb.info/gnd/1328114813", + "closeMatch": [ + { + "authorized_access_point": "Microtus subterraneus", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333493223" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85102534" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85102534" + } + ] + } + ], + "pid": "1328114813", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Feldmaus (Gattung)" + } + ], + "variant_access_point": [ + "Microtus subterraneus", + "Kleine Wu\u0308hlmaus", + "Pitymys subterraneus", + "Kleinwu\u0308hlmaus" + ], + "md5": "a1161ed0c410604956cef87584e3f903" + }, + { + "authorized_access_point": "Gqom", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1326598325" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1326598325" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1326598325" + } + ], + "identifier": "http://d-nb.info/gnd/1326598325", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Gqom&oldid=246252358" + ] + }, + { + "noteType": "general", + "label": [ + "Genre der elektronischen Tanzmusik, das Anfang der 2010er Jahre in Durban, Su\u0308dafrika, entstand" + ] + } + ], + "pid": "1326598325", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Elektronische Tanzmusik" + }, + { + "authorized_access_point": "House" + } + ], + "variant_access_point": [ + "Igqom", + "Igqomu", + "Qgom", + "Gqom tech", + "Sghubu" + ], + "md5": "3665a551a687efd098d5554e308b94ec" + }, + { + "authorized_access_point": "Minolta SR-T 303", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1325970743" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1325970743" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1325970743" + } + ], + "identifier": "http://d-nb.info/gnd/1325970743", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Minolta_SR-T_303&oldid=228565347" + ] + }, + { + "noteType": "general", + "label": [ + "mechanische Kleinbild-Spiegelreflexkamera, die von der japanischen Firma Minolta in verschiedenen Varianten von 1973 bis 1980 hergestellt wurde" + ] + } + ], + "pid": "1325970743", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Spiegelreflexkamera" + }, + { + "authorized_access_point": "Kleinbildkamera" + } + ], + "md5": "9c1b2a3b5a38c0e5883aae48b1c7e326" + }, + { + "authorized_access_point": "Kryptowert", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1325836214" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1325836214" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1325836214" + } + ], + "identifier": "http://d-nb.info/gnd/1325836214", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Kryptowert&oldid=240601727" + ] + } + ], + "pid": "1325836214", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Finanzinstrument" + } + ], + "variant_access_point": [ + "Kryptotoken", + "Token (Kryptologie)", + "Crypto-Asset" + ], + "md5": "20396cbadf8a87de8f92cb11c6206382" + }, + { + "authorized_access_point": "Microcredential", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1325526541" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1325526541" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1325526541" + } + ], + "identifier": "http://d-nb.info/gnd/1325526541", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Micro-Credential&oldid=231500268", + "EU Vocabularies - https://op.europa.eu/de/web/eu-vocabularies/concept/-/resource?uri=http://eurovoc.europa.eu/c_6659516b", + "ABl. EU 2022, C243, S.1 - https://eur-lex.europa.eu/legal-content/DE/TXT/?uri=CELEX:32022H0627(02)" + ] + }, + { + "noteType": "general", + "label": [ + "Qualifikation zum Nachweis von Lernergebnissen, die im Rahmen eines kurzen, transparenten Kurses oder Moduls erzielt wurde" + ] + } + ], + "pid": "1325526541", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Leistungspunkt" + } + ], + "variant_access_point": [ + "Micro-Credential" + ], + "md5": "43093b8ab54d03917acb066fdb278a2f" + }, + { + "authorized_access_point": "Terrorangriff der Hamas auf Israel 2023", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1324473703" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1324473703" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1324473703" + } + ], + "identifier": "http://d-nb.info/gnd/1324473703", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Terrorangriff_der_Hamas_auf_Israel_2023&oldid=243422572" + ] + }, + { + "noteType": "general", + "label": [ + "Terroristischer U\u0308berfall unter Fu\u0308hrung der pala\u0308stinensischen radikal-islamistischen Hamas, der vom Gazastreifen aus gegen Israel veru\u0308bt wurde." + ] + } + ], + "pid": "1324473703", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Nahostkonflikt" + }, + { + "authorized_access_point": "Israel-Hamas-Krieg" + } + ], + "broader": [ + { + "authorized_access_point": "Attentat" + } + ], + "variant_access_point": [ + "Anschlag der Hamas auf Israel 2023", + "Operation Al-Aksa-Flut", + "7. Oktober (Attentat)", + "Siebenter Oktober (Attentat)", + "Siebter Oktober (Attentat)" + ], + "md5": "25853d14f346cb93a4ea23be2dfbe835" + }, + { + "authorized_access_point": "Anarchafeminismus", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1324101571" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1324101571" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1324101571" + } + ], + "identifier": "http://d-nb.info/gnd/1324101571", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Anarchafeminismus&oldid=243042613" + ] + } + ], + "pid": "1324101571", + "type": "bf:Topic", + "md5": "7f5b266779f76cea9afe167b5b9894fb" + }, + { + "authorized_access_point": "Elektrotriebwagen Baureihe 270", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1322498083" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1322498083" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1322498083" + } + ], + "identifier": "http://d-nb.info/gnd/1322498083", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=DR-Baureihe_270&oldid=240684515#cite_note-1" + ] + }, + { + "noteType": "general", + "label": [ + "Triebwagen der Berliner S-Bahn" + ] + } + ], + "pid": "1322498083", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Elektrotriebwagen" + } + ], + "related": [ + { + "authorized_access_point": "S-Bahn" + } + ], + "variant_access_point": [ + "Baureihe 270", + "Baureihe 485", + "DB-Baureihe 485", + "DB-Baureihe 485/885", + "DR-Baureihe 270" + ], + "md5": "6809f93fac51175f59e3472d770bc0fa" + }, + { + "authorized_access_point": "Buckeltanzfliegen", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1321930690" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1321930690" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1321930690" + } + ], + "identifier": "http://d-nb.info/gnd/1321930690", + "closeMatch": [ + { + "authorized_access_point": "Hybotidae", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)133349338X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16649867" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16649867h" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Buckeltanzfliegen&oldid=211586716", + "NCBI-Taxonomy - https://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=1446258" + ] + } + ], + "pid": "1321930690", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Empidoidea" + } + ], + "variant_access_point": [ + "Hybotidae" + ], + "md5": "5ace2b86b7f2998f229223c49823ae25" + }, + { + "authorized_access_point": "Gender", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1321369956" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1321369956" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1321369956" + } + ], + "identifier": "http://d-nb.info/gnd/1321369956", + "note": [ + { + "noteType": "general", + "label": [ + "Gender ist eine analytische Kategorie der Geschlechterforschung bzw. Gender Studies. Sie untersucht (historische, sozio-kulturelle und praxeologische) Zuschreibungen an sowie Verhaltensweisen und Beziehungen von Menschen in Hinblick auf ihre Vergeschlechtlichung. Neues Schlagwort ab 2024. Titel wurden davor meist mit der Kombination der folgenden Schlagwo\u0308rter erschlossen: Geschlechterrolle, Geschlechterverha\u0308ltnis und Geschlechterforschung, ggf. weitere", + "Zu verwenden bei eher umfassenden oder theoretischen Darstellungen zum Thema des vergeschlechtlichten Zusammenlebens von Menschen. Fu\u0308r thematisch eingegrenzte Darstellungen sind spezifischere Schlagwo\u0308rter vorzuziehen, wie z.B. \"Geschlechterrolle\", \"Geschlechterverha\u0308ltnis\", usw." + ] + } + ], + "pid": "1321369956", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Geschlechterforschung" + } + ], + "related": [ + { + "authorized_access_point": "Geschlechterrolle" + }, + { + "authorized_access_point": "Geschlechterverha\u0308ltnis" + }, + { + "authorized_access_point": "Geschlecht" + }, + { + "authorized_access_point": "Geschlechtsunterschied" + }, + { + "authorized_access_point": "Geschlechtsidentita\u0308t" + }, + { + "authorized_access_point": "Drittes Geschlecht" + }, + { + "authorized_access_point": "Transgender" + }, + { + "authorized_access_point": "Nichtbina\u0308re Geschlechtsidentita\u0308t" + } + ], + "variant_access_point": [ + "Soziales Geschlecht", + "Geschlecht (Kategorie)", + "Geschlecht (Gender)" + ], + "md5": "14c2dfdb5d187059c077e1a610b39859" + }, + { + "authorized_access_point": "Fundamentbuch", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1321325754" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1321325754" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1321325754" + } + ], + "identifier": "http://d-nb.info/gnd/1321325754", + "note": [ + { + "noteType": "general", + "label": [ + "Handwerksanweisungen fu\u0308r Tasten- und Saiteninstrumente mit Lehrbeispielen als Lehrgrundlage fu\u0308r die Spielfertigkeit, das mehrstimmige Improvisieren und Intavolieren auf diesen Instrumenten" + ] + } + ], + "pid": "1321325754", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Instrumentaltechnik" + }, + { + "authorized_access_point": "Anleitung" + } + ], + "variant_access_point": [ + "Fundamentum" + ], + "md5": "83d84331ce0d55f6324731c2f416b7f7" + }, + { + "authorized_access_point": "Jinghu", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/132121202X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)132121202X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)132121202X" + } + ], + "identifier": "http://d-nb.info/gnd/132121202X", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://en.wikipedia.org/w/index.php?title=Jinghu_(instrument)&oldid=1158694952" + ] + }, + { + "noteType": "general", + "label": [ + "chinesisches Streichinstrument, das hauptsa\u0308chlich in der Peking-Oper verwendet wird" + ] + } + ], + "pid": "132121202X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Streichinstrument" + } + ], + "md5": "18dab9583c06b0c3affbfc4fdfdf973c" + }, + { + "authorized_access_point": "Staatsstreich in Spanien (1923)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1319608302" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1319608302" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1319608302" + } + ], + "identifier": "http://d-nb.info/gnd/1319608302", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://en.wikipedia.org/w/index.php?title=1923_Spanish_coup_d%27%C3%A9tat&oldid=1228246566" + ] + }, + { + "noteType": "general", + "label": [ + "Staatsstreich von Miguel Primo de Rivera 1923 in Spanien" + ] + } + ], + "pid": "1319608302", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Staatsstreich" + } + ], + "variant_access_point": [ + "Putsch in Spanien (1923)" + ], + "md5": "aa03c2b6c5f6a91b2bed47909c29cc2a" + }, + { + "authorized_access_point": "Walhai", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1319352146" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1319352146" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1319352146" + } + ], + "identifier": "http://d-nb.info/gnd/1319352146", + "closeMatch": [ + { + "authorized_access_point": "Whale shark", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333493509" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85146344" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85146344" + } + ] + }, + { + "authorized_access_point": "Requin baleine", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333493509" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF15515151" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb155151519" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Einzige Art der Familie Walhaie (Rhincodontidae)" + ] + } + ], + "pid": "1319352146", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Haie (Ordnung)" + } + ], + "variant_access_point": [ + "Rhincodon typus" + ], + "md5": "86303381dba8e41b3e61e9b8d447505c" + }, + { + "authorized_access_point": "Israel-Hamas-Krieg", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1318875676" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1318875676" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1318875676" + } + ], + "identifier": "http://d-nb.info/gnd/1318875676", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Krieg_in_Israel_und_Gaza_seit_2023&oldid=242011894" + ] + }, + { + "noteType": "general", + "label": [ + "Krieg zwischen Israel und Hamas, ausgelo\u0308st durch den Terrorangriff der Hamas auf Israel am 7. Oktober 2023" + ] + } + ], + "pid": "1318875676", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Terrorangriff der Hamas auf Israel 2023" + }, + { + "authorized_access_point": "Nahostkonflikt" + } + ], + "broader": [ + { + "authorized_access_point": "Krieg" + } + ], + "variant_access_point": [ + "Hamas-Israel-Krieg", + "Krieg Israel-Hamas", + "Krieg Hamas-Israel", + "Krieg zwischen Israel und Hamas", + "Krieg zwischen Hamas und Israel", + "Israel-Gaza-Krieg", + "Krieg Gaza-Israel", + "Israel-Hamas war", + "Hamas-Israel war", + "Israel-Gaza war", + "Gaza-Israel war", + "Guerre Israe\u0308l-Hamas", + "Guerre Hamas-Israe\u0308l", + "Guerre Israe\u0308l-Gaza", + "Guerre Gaza-Israe\u0308l" + ], + "md5": "ab57955de2485df7a9dedcf67bda8cf5" + }, + { + "authorized_access_point": "Haager Schule", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1318600871" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1318600871" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1318600871" + } + ], + "identifier": "http://d-nb.info/gnd/1318600871", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Haager_Schule&oldid=240944142" + ] + }, + { + "noteType": "general", + "label": [ + "Bezeichnung fu\u0308r eine Gruppe niederla\u0308ndischer Ku\u0308nstler, die nach einer Erneuerung der Malerei strebte; Hauptvertreter W. Roelofs, J. Israe\u0308ls, J. H. Weissenbruch, H. W. Mesdag, J., M. und W. Maris sowie A. Mauve, die sta\u0308ndig oder zeitweise in Den Haag lebten" + ] + } + ], + "pid": "1318600871", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ku\u0308nstlerschule" + } + ], + "related": [ + { + "authorized_access_point": "Malerei" + } + ], + "variant_access_point": [ + "Haagse School", + "Schule von Den Haag", + "E\u0301cole de La Haye" + ], + "md5": "cbe8a93e2f998c3079a42443e07f0422" + }, + { + "authorized_access_point": "Okkultistin", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1318529573" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1318529573" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1318529573" + } + ], + "identifier": "http://d-nb.info/gnd/1318529573", + "closeMatch": [ + { + "authorized_access_point": "Women occultists", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331753716" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2020008750" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2020008750" + } + ] + } + ], + "pid": "1318529573", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Okkultist" + }, + { + "authorized_access_point": "Okkultismus" + } + ], + "md5": "172b1cf5ffaae0c3d77ce8dd1b94c360" + }, + { + "authorized_access_point": "Mod (Computerspiel)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1315438240" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1315438240" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1315438240" + } + ], + "identifier": "http://d-nb.info/gnd/1315438240", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Unterhaltungssoftware Selbstkontrolle. Lexikon - https://usk.de/alle-lexikonbegriffe/mod/", + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Mod_(Computerspiele)&oldid=240387416" + ] + }, + { + "noteType": "general", + "label": [ + "Kurzwort fu\u0308r die oftmals communitybasierte Modifikation eines Computerspiels" + ] + } + ], + "pid": "1315438240", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Computerspiel" + }, + { + "authorized_access_point": "A\u0308nderung" + } + ], + "variant_access_point": [ + "Modifikation (Computerspiel)", + "Video Game Mod" + ], + "md5": "4a68935a6994c7f84a59f726250efc33" + }, + { + "authorized_access_point": "Subsidia\u0308rer Schutz", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1315344238" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1315344238" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1315344238" + } + ], + "identifier": "http://d-nb.info/gnd/1315344238", + "pid": "1315344238", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Aufenthaltsrecht" + } + ], + "md5": "e5c7aed1a256b06b8478239b4a7c2d9b" + }, + { + "authorized_access_point": "Massim", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1315166526" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1315166526" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1315166526" + } + ], + "identifier": "http://d-nb.info/gnd/1315166526", + "exactMatch": [ + { + "authorized_access_point": "Massim (peuple de Papouasie-Nouvelle-Guine\u0301e)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134218907" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12223472" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12223472w" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Sammelbezeichnung fu\u0308r die v.a. austronesische Sprachen sprechenden melanesischen Bevo\u0308lkerungsgruppen im a\u0308u\u00dfersten Su\u0308dosten von Neuguinea und den no\u0308rdlich und o\u0308stlich vorgelagerten Archipelen" + ] + } + ], + "pid": "1315166526", + "type": "bf:Topic", + "md5": "5401772b47d025a4bef568c722d0d2c0" + }, + { + "authorized_access_point": "Musik fu\u0308r zwei Orgeln", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1314207296" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1314207296" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1314207296" + } + ], + "identifier": "http://d-nb.info/gnd/1314207296", + "note": [ + { + "noteType": "general", + "label": [ + "Werke fu\u0308r zwei und mehr Spielende auf zwei Orgeln" + ] + } + ], + "pid": "1314207296", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Orgelmusik" + } + ], + "variant_access_point": [ + "Musik fu\u0308r 2 Orgeln", + "Orgelmusik fu\u0308r zwei Instrumente" + ], + "md5": "83f4099f69b838592a8eb72430d3ccc7" + }, + { + "authorized_access_point": "Biathletin", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1314016547" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1314016547" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1314016547" + } + ], + "identifier": "http://d-nb.info/gnd/1314016547", + "pid": "1314016547", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Sportlerin" + } + ], + "related": [ + { + "authorized_access_point": "Biathlon" + }, + { + "authorized_access_point": "Biathlet" + } + ], + "md5": "988d62839f9fff0221cf91d5bd2bc955" + }, + { + "authorized_access_point": "Biathlet", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1314016032" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1314016032" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1314016032" + } + ], + "identifier": "http://d-nb.info/gnd/1314016032", + "pid": "1314016032", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Sportler" + } + ], + "related": [ + { + "authorized_access_point": "Biathlon" + }, + { + "authorized_access_point": "Biathletin" + } + ], + "md5": "e352aa5e676547f12b0d8c032bc16702" + }, + { + "authorized_access_point": "Gimbri", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1311509100" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1311509100" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1311509100" + } + ], + "identifier": "http://d-nb.info/gnd/1311509100", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Gimbri&oldid=230664992" + ] + }, + { + "noteType": "general", + "label": [ + "eine 1 bis 1,5 Meter lange gezupfte Binnenspie\u00dflaute mit drei Saiten in den La\u0308ndern Marokko, Tunesien und Algerien" + ] + } + ], + "pid": "1311509100", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Laute" + } + ], + "variant_access_point": [ + "Ginbri", + "Guinbri", + "Guembri", + "Gmbri", + "Gnibra", + "Gombri", + "Gunbri", + "Gunibri" + ], + "md5": "a61a049f0b086bb4a100b2da41ad1afb" + }, + { + "authorized_access_point": "Ko\u0308rpertambura", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/131143609X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)131143609X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)131143609X" + } + ], + "identifier": "http://d-nb.info/gnd/131143609X", + "note": [ + { + "noteType": "general", + "label": [ + "aus dem indischen Saiteninstrument Tanpura abgeleitetes und umgeformtes Saiteninstrument, das auf den Ko\u0308rper gelegt wird" + ] + } + ], + "pid": "131143609X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zupfinstrument" + } + ], + "related": [ + { + "authorized_access_point": "Tanbur" + } + ], + "variant_access_point": [ + "Body Tambura" + ], + "md5": "2a1daf1220afb9b62959588860131279" + }, + { + "authorized_access_point": "Hilberts Hotel", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1311352430" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1311352430" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1311352430" + } + ], + "identifier": "http://d-nb.info/gnd/1311352430", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Hilberts_Hotel&oldid=243090788" + ] + }, + { + "noteType": "general", + "label": [ + "Von David Hilbert erdachtes Gedankenexperiment zur Veranschaulichung von Unendlichkeiten, Paradoxon" + ] + } + ], + "pid": "1311352430", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Unendlichkeit" + } + ], + "broader": [ + { + "authorized_access_point": "Gedankenexperiment" + }, + { + "authorized_access_point": "Paradoxon" + } + ], + "variant_access_point": [ + "Hilbert's paradox of the Grand Hotel", + "Hilbert's hotel", + "Hilberts Paradoxon des Grand Hotels", + "Unendliches Hotelparadoxon", + "Hotel infinity" + ], + "md5": "da566f669dc6588d33d28e77b7c16024" + }, + { + "authorized_access_point": "Aussetzung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1310159343" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1310159343" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1310159343" + } + ], + "identifier": "http://d-nb.info/gnd/1310159343", + "note": [ + { + "noteType": "general", + "label": [ + "Verknu\u0308pfe mit dem jeweils zutreffenden Sachverhalt, z. B. Eucharistie. Nicht zu verwenden fu\u0308r rechtliche Sachverhalte; hier liegen speziellere SWW vor, z. B. Dispens oder Aussetzung (Strafrecht)." + ] + } + ], + "pid": "1310159343", + "type": "bf:Topic", + "md5": "68189bdea500950fd0018b3d191f4170" + }, + { + "authorized_access_point": "Live-Coding", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/130899687X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)130899687X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)130899687X" + } + ], + "identifier": "http://d-nb.info/gnd/130899687X", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://en.wikipedia.org/w/index.php?title=Live_coding&oldid=1168454487" + ] + }, + { + "noteType": "general", + "label": [ + "Live-Coding beschreibt eine ku\u0308nstlerische Praxis und kreative Technik, bei der Computerprogramme in Echtzeit und auf der Bu\u0308hne geschrieben werden, wird ha\u0308ufig zur Erstellung von klang- und bildbasierten digitalen Medien sowie von Lichtsystemen, improvisiertem Tanz und Poesie, Computermusik verwendet" + ] + } + ], + "pid": "130899687X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Programmierung" + } + ], + "variant_access_point": [ + "Live Coding", + "Just-in-Time-Programmierung", + "On-the-fly-Programmierung", + "Konversationsprogrammierung" + ], + "md5": "c936d8263886f55880632bb93c68f59a" + }, + { + "authorized_access_point": "Science and Technology Studies", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1308455038" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1308455038" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1308455038" + } + ], + "identifier": "http://d-nb.info/gnd/1308455038", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Science_and_Technology_Studies&oldid=233892252", + "Niewo\u0308hner, S\u00f8rensen, Beck: Science and Technology Studies. Eine sozialanthropologische Einfu\u0308hrung - https://doi.org/10.14361/transcript.9783839421062.intro", + "Havard University. What is STS? - https://sts.hks.harvard.edu/about/whatissts.html" + ] + }, + { + "noteType": "general", + "label": [ + "Interdisziplina\u0308res Forschungsfeld bzw. interdisziplina\u0308rer Studiengang, der sich mit der Verschra\u0308nkung von Wissenschaft, Technologie und Gesellschaft bescha\u0308ftigt" + ] + } + ], + "pid": "1308455038", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Forschung" + } + ], + "related": [ + { + "authorized_access_point": "Wissenschaftsforschung" + }, + { + "authorized_access_point": "Techniksoziologie" + }, + { + "authorized_access_point": "Wissenschaftssoziologie" + }, + { + "authorized_access_point": "Actor-Network-Theory" + } + ], + "variant_access_point": [ + "Wissenschafts- und Technikforschung", + "STS" + ], + "md5": "a4bb0d1786ab772ec202584d573b6cd7" + }, + { + "authorized_access_point": "Stammzelltransplantation", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1305992857" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1305992857" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1305992857" + } + ], + "identifier": "http://d-nb.info/gnd/1305992857", + "exactMatch": [ + { + "authorized_access_point": "Stem Cell Transplantation", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1305993039" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D033581" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D033581" + } + ] + } + ], + "pid": "1305992857", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zelltransplantation" + } + ], + "variant_access_point": [ + "Stammzellentransplantation" + ], + "md5": "1406dd5849397d0a511b00c152117eca" + }, + { + "authorized_access_point": "Gruppenvergewaltigung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1302496050" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1302496050" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1302496050" + } + ], + "identifier": "http://d-nb.info/gnd/1302496050", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Vergewaltigung&oldid=236552945#Gruppenvergewaltigung" + ] + }, + { + "noteType": "general", + "label": [ + "Vergewaltigung einer oder mehrerer Personen durch eine Gruppe von Personen." + ] + } + ], + "pid": "1302496050", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Vergewaltigung" + } + ], + "md5": "832837aad21e4fe9aab52c731e011dea" + }, + { + "authorized_access_point": "Motivierende Gespra\u0308chsfu\u0308hrung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/129922539X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)129922539X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)129922539X" + } + ], + "identifier": "http://d-nb.info/gnd/129922539X", + "closeMatch": [ + { + "authorized_access_point": "Motivational interviewing", + "source": "GND", + "identifiedBy": [ + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2006005865" + }, + { + "type": "uri", + "value": "https://id.loc.gov/authorities/subjects/sh2006005865" + } + ] + }, + { + "authorized_access_point": "Entretiens motivationnels", + "source": "GND", + "identifiedBy": [ + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16167865" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16167865w" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Motivierende_Gespr%C3%A4chsf%C3%BChrung&oldid=232935635" + ] + } + ], + "pid": "129922539X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gespra\u0308chsfu\u0308hrung" + } + ], + "variant_access_point": [ + "Motivationale Gespra\u0308chsfu\u0308hrung" + ], + "md5": "aecff357e98e384e5049dbde4460903e" + }, + { + "authorized_access_point": "Retrocomputing", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1298858054" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1298858054" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1298858054" + } + ], + "identifier": "http://d-nb.info/gnd/1298858054", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Retrocomputing&oldid=232682995" + ] + }, + { + "noteType": "general", + "label": [ + "Nutzung alter, von ihren Herstellern aufgegebener Hard- und Software zur Datensicherung, Forschung oder zum Zeitvertreib (fu\u0308r letzteres verwandter Begriff: Retrogaming)" + ] + } + ], + "pid": "1298858054", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Computer" + } + ], + "related": [ + { + "authorized_access_point": "Software" + }, + { + "authorized_access_point": "Datenverarbeitung" + }, + { + "authorized_access_point": "Retrogaming" + } + ], + "variant_access_point": [ + "Retro-Computing", + "Computerarcha\u0308ologie" + ], + "md5": "5c5e50583ea93d30a39090a279f52b83" + }, + { + "authorized_access_point": "Emin", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1298312817" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1298312817" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1298312817" + } + ], + "identifier": "http://d-nb.info/gnd/1298312817", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Homepage - https://emin.org" + ] + }, + { + "noteType": "general", + "label": [ + "1971 durch Raymond Armin, genannt Leo, in London begru\u0308ndet, heute internationales Netzwerk Gleichgesinnter" + ] + } + ], + "pid": "1298312817", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Esoterik" + } + ], + "broader": [ + { + "authorized_access_point": "Lebensphilosophie" + }, + { + "authorized_access_point": "Neue Religion" + }, + { + "authorized_access_point": "Netzwerk" + } + ], + "variant_access_point": [ + "Emin society", + "The Eminent Way", + "Template Network", + "Emin movement" + ], + "md5": "a20d66c59e065a89176559a1a9b7bb38" + }, + { + "authorized_access_point": "White Power", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1297822668" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1297822668" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1297822668" + } + ], + "identifier": "http://d-nb.info/gnd/1297822668", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=White_Power&oldid=235014502" + ] + }, + { + "noteType": "general", + "label": [ + "Urspru\u0308nglich Losungswort des \"Ku-Klux-Klans\". Inzwischen Schlu\u0308sselbegriff aus rassistischen oder neonazistischen Szenen; steht fu\u0308r die nazistische und rassistische Theorie von der Vorherrschaft der \u201ewei\u00dfen Rasse\u201c" + ] + } + ], + "pid": "1297822668", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Slogan" + }, + { + "authorized_access_point": "Politische Theorie" + } + ], + "related": [ + { + "authorized_access_point": "Rassismus" + } + ], + "variant_access_point": [ + "White Pride", + "WP" + ], + "md5": "ac01ada52ae0dca4698e0cac412f2786" + }, + { + "authorized_access_point": "Tchamba", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1295539519" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1295539519" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1295539519" + } + ], + "identifier": "http://d-nb.info/gnd/1295539519", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Tchamba_(Kult)&oldid=224257647" + ] + }, + { + "noteType": "general", + "label": [ + "Besessenheitskult v.a. im Su\u0308den von Togo und Benin, bei dem die Geister ehemaliger Sklaven geehrt werden, die v.a. die Nachfahren fru\u0308herer Sklaven und Sklavenbesitzer befallen" + ] + } + ], + "pid": "1295539519", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Geister" + }, + { + "authorized_access_point": "Wodu" + } + ], + "broader": [ + { + "authorized_access_point": "Besessenheitskult" + } + ], + "variant_access_point": [ + "Tsamba", + "Tsaba", + "Tsemba", + "Tseba", + "Tchamba-Kult" + ], + "md5": "e32f2913c779c5082e9e3310318eceff" + }, + { + "authorized_access_point": "Gabel (Familienname)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1293306673" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1293306673" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1293306673" + } + ], + "identifier": "http://d-nb.info/gnd/1293306673", + "pid": "1293306673", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Familienname" + } + ], + "variant_access_point": [ + "Gabelmann (Familienname)" + ], + "md5": "9ee11005a634c0d7e2b3e0f0200ed8cf" + }, + { + "authorized_access_point": "Calothrixine", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1283002477" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1283002477" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1283002477" + } + ], + "identifier": "http://d-nb.info/gnd/1283002477", + "note": [ + { + "noteType": "general", + "label": [ + "Calothrixin A oder I und Calothrixin B oder II sind Metabolite des Cyanobakteriums Calothrix mit potentieller Anti-Malaria-Wirkung" + ] + } + ], + "pid": "1283002477", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Alkaloide" + } + ], + "md5": "9fa427dedcc14b5f8a59e1c0fdd1dc69" + }, + { + "authorized_access_point": "Viva Maria (Politische Bewegung)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/127857025X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)127857025X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)127857025X" + } + ], + "identifier": "http://d-nb.info/gnd/127857025X", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia (eng) - https://en.wikipedia.org/w/index.php?title=Viva_Maria_(movement)&oldid=1039075561" + ] + }, + { + "noteType": "general", + "label": [ + "Antinapoleonische Bewegung in Italien zwischen 1799 und 1800" + ] + } + ], + "pid": "127857025X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Politische Bewegung" + } + ], + "md5": "66fcfed67d203fe04380869d5578b051" + }, + { + "authorized_access_point": "Dritter Ort", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1278063730" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1278063730" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1278063730" + } + ], + "identifier": "http://d-nb.info/gnd/1278063730", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Dritter_Ort&oldid=227398286" + ] + }, + { + "noteType": "general", + "label": [ + "1989 vom Soziologen Ray Oldenburg gepra\u0308gter Begriff, der Orte der Gemeinschaft umschreibt, als Ausgleich zum Zuhause (erster Ort) und zum Arbeitsplatz (zweiter Ort)." + ] + } + ], + "pid": "1278063730", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "O\u0308ffentlicher Raum" + } + ], + "related": [ + { + "authorized_access_point": "Sozialraum" + } + ], + "variant_access_point": [ + "Third place", + "Great good place" + ], + "md5": "af3727528ccf4c17d9dbf301dd98c2c7" + }, + { + "authorized_access_point": "Kalmarkrieg", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1277678871" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1277678871" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1277678871" + } + ], + "identifier": "http://d-nb.info/gnd/1277678871", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Kalmarkrieg&oldid=196297680" + ] + }, + { + "noteType": "general", + "label": [ + "Krieg zwischen Da\u0308nemark und Schweden um die Kontrolle der Finnmark" + ] + } + ], + "pid": "1277678871", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Krieg" + } + ], + "variant_access_point": [ + "Kalmarkriget", + "Kalmarkrigen" + ], + "md5": "45847765ae41063135a7e56fe7cbae76" + }, + { + "authorized_access_point": "Mundart Su\u0308ditalienisch, Basilicata (Monte-Pollino-Gebiet)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1277560676" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1277560676" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1277560676" + } + ], + "identifier": "http://d-nb.info/gnd/1277560676", + "pid": "1277560676", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Mundart Su\u0308ditalienisch (Basilicata)" + } + ], + "md5": "953c92652b510847ab787f7e4c74dcdb" + }, + { + "authorized_access_point": "Emittent", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1276707304" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1276707304" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1276707304" + } + ], + "identifier": "http://d-nb.info/gnd/1276707304", + "note": [ + { + "noteType": "general", + "label": [ + "Als Emittenten bezeichnet man eine juristische Person, die zum Handel bestimmte Wertpapiere und Vermo\u0308gensanlagen ausgibt." + ] + } + ], + "pid": "1276707304", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kapitalmarktrecht" + } + ], + "related": [ + { + "authorized_access_point": "Kreditwesen" + } + ], + "md5": "82b6b11b51956c2482a3484a863527c9" + }, + { + "authorized_access_point": "Bushcrafting", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1276176597" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1276176597" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1276176597" + } + ], + "identifier": "http://d-nb.info/gnd/1276176597", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Bushcrafting&oldid=228966190" + ] + } + ], + "pid": "1276176597", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "U\u0308berlebenstraining" + }, + { + "authorized_access_point": "Trekking" + } + ], + "variant_access_point": [ + "Bushcraft", + "Waldhandwerk", + "Buschhandwerk", + "Buschfertigkeit", + "Naturhandwerk", + "Naturfertigkeit" + ], + "md5": "e65b0b1272803297f58e6db5c4521969" + }, + { + "authorized_access_point": "Knickfu\u00df", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1275619533" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1275619533" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1275619533" + } + ], + "identifier": "http://d-nb.info/gnd/1275619533", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Knickfu%C3%9F&oldid=200221909" + ] + }, + { + "noteType": "general", + "label": [ + "Fehlstellung des Fu\u00dfes mit einer Senkung am inneren Fu\u00dfrand und einer Anhebung des a\u0308u\u00dferen Fu\u00dfrandes" + ] + } + ], + "pid": "1275619533", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fu\u00dfdeformita\u0308t" + }, + { + "authorized_access_point": "Fehlstellung" + } + ], + "variant_access_point": [ + "Pes valgus", + "X-Fu\u00df" + ], + "md5": "f7845a2b05854dc6649a7e6955809d03" + }, + { + "authorized_access_point": "The legend of Zelda (Abenteuerspiel)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1275172962" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1275172962" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1275172962" + } + ], + "identifier": "http://d-nb.info/gnd/1275172962", + "closeMatch": [ + { + "authorized_access_point": "Legend of Zelda (Game)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331595134" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh90003532" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh90003532" + } + ] + }, + { + "authorized_access_point": "Zeruda no densetsu (jeu vide\u0301o ; se\u0301rie)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331595134" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16549048" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16549048v" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=The_Legend_of_Zelda&oldid=233760337" + ] + }, + { + "noteType": "general", + "label": [ + "Videospielserie, in bisher 20 Teilen erschienen ab 1986; die gleichnamigen Mangas beruhen auf den Spielen; inzwischen auch als Fernsehserie erschienen" + ] + } + ], + "pid": "1275172962", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Abenteuerspiel" + } + ], + "variant_access_point": [ + "Zeruda no densetsu (Abenteuerspiel)", + "Die Legende von Zelda", + "Zelda" + ], + "md5": "98d676c722f1d9d44ba650b7c0c944a4" + }, + { + "authorized_access_point": "Tat (Motiv)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1274948169" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1274948169" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1274948169" + } + ], + "identifier": "http://d-nb.info/gnd/1274948169", + "pid": "1274948169", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "6187b4e7d0138e688fa1efb936a181ef" + }, + { + "authorized_access_point": "Spieleautorin", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1274269121" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1274269121" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1274269121" + } + ], + "identifier": "http://d-nb.info/gnd/1274269121", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - http://de.wikipedia.org/wiki/Spieleautor" + ] + }, + { + "noteType": "general", + "label": [ + "Spieleautoren erfinden und entwickeln Gesellschaftsspiele." + ] + } + ], + "pid": "1274269121", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Spieleautor" + }, + { + "authorized_access_point": "Gesellschaftsspiel" + } + ], + "broader": [ + { + "authorized_access_point": "Autorin" + } + ], + "variant_access_point": [ + "Spiele-Autorin" + ], + "md5": "3f3e17f132069aa234d7bb4b4f868cba" + }, + { + "authorized_access_point": "Sa\u0308chsischer Verlagspreis", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1273395077" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1273395077" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1273395077" + } + ], + "identifier": "http://d-nb.info/gnd/1273395077", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Homepage - https://www.so-geht-saechsisch.de/saechsischer-verlagspreis", + "Wikipedia - https://de.wikipedia.org/w/index.php?title=S%C3%A4chsischer_Verlagspreis&oldid=217233083" + ] + }, + { + "noteType": "general", + "label": [ + "Branchenpreis - Auszeichnung unabha\u0308ngiger sa\u0308chsischer Verlage fu\u0308r ihr Wirken und besondere verlegerische Leistungen", + "Vergabe seit 2018, anfangs an jeweils einen Verlag, ab 2022 an bis zu 20 Verlage" + ] + } + ], + "pid": "1273395077", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Verlag" + } + ], + "broader": [ + { + "authorized_access_point": "Kulturpreis" + } + ], + "md5": "cc6e3a44105e87b6223d5b7a8741c4ed" + }, + { + "authorized_access_point": "Elektronisches Rezept", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1273298268" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1273298268" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1273298268" + } + ], + "identifier": "http://d-nb.info/gnd/1273298268", + "exactMatch": [ + { + "authorized_access_point": "Electronic Prescribing", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333252048" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D055695" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D055695" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Elektronisches_Rezept&oldid=227742217" + ] + } + ], + "pid": "1273298268", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Arzneiverordnung" + }, + { + "authorized_access_point": "Elektronische Gesundheitskarte" + } + ], + "variant_access_point": [ + "E-Rezept", + "eRezept" + ], + "md5": "4a69316c87526034407cc08c7ae2e4a7" + }, + { + "authorized_access_point": "Pescetarische Kost", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1273295374" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1273295374" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1273295374" + } + ], + "identifier": "http://d-nb.info/gnd/1273295374", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Pescetarismus&oldid=225934559" + ] + } + ], + "pid": "1273295374", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Erna\u0308hrung" + }, + { + "authorized_access_point": "Speise" + } + ], + "variant_access_point": [ + "Pescetarische Erna\u0308hrung", + "Pescetarier-Dia\u0308t" + ], + "md5": "03543c98c8bc423a229908943fd18028" + }, + { + "authorized_access_point": "Luhya", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1270459880" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1270459880" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1270459880" + } + ], + "identifier": "http://d-nb.info/gnd/1270459880", + "exactMatch": [ + { + "authorized_access_point": "Luyia (African people)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332861334" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85079057" + }, + { + "type": "uri", + "value": "https://id.loc.gov/authorities/subjects/sh85079057" + } + ] + }, + { + "authorized_access_point": "Luyia (peuple d'Afrique)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332861334" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13496553" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13496553j" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Aus mehreren Ethnien zusammengesetzte Volksgruppe der Bantu in Ostafrika, die gro\u0308\u00dftenteils in der West-Provinz (Hauptstadt: Kakamega) von Kenia in der Region um den Mount Elgon und in Su\u0308dostuganda leben." + ] + } + ], + "pid": "1270459880", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Bantu" + } + ], + "variant_access_point": [ + "Luhia", + "Baluhya", + "Bantu-Kavirondo", + "Lujia", + "Luyia", + "Abaluhyia", + "Abaluyia" + ], + "md5": "7e8604abccc2bd23526790b9f8d88ba4" + }, + { + "authorized_access_point": "Thrombotische Mikroangiopathie", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1268867829" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1268867829" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1268867829" + } + ], + "identifier": "http://d-nb.info/gnd/1268867829", + "exactMatch": [ + { + "authorized_access_point": "Thrombotic Microangiopathies", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1277091897" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D057049" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D057049" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "OBV - https://permalink.obvsg.at/AC16604043" + ] + }, + { + "noteType": "general", + "label": [ + "Sammelbezeichnung fu\u0308r Syndrome mit mikroangiopathischer ha\u0308molytischer Ana\u0308mie, Thrombozythopenie und thrombotischen Verschlu\u0308ssen in der Mikrozirkulation" + ] + } + ], + "pid": "1268867829", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mikroangiopathie" + } + ], + "related": [ + { + "authorized_access_point": "Mikrozirkulationssto\u0308rung" + } + ], + "variant_access_point": [ + "TMA" + ], + "md5": "edf6ba665706e3e0156db28d6c224c49" + }, + { + "authorized_access_point": "Rohrbach Ro IV", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1267608781" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1267608781" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1267608781" + } + ], + "identifier": "http://d-nb.info/gnd/1267608781", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Rohrbach_Ro_IV&oldid=215067231" + ] + }, + { + "noteType": "general", + "label": [ + "Britisches Flugboot, unter Lizenz nach einem Entwurf von Rohrbach gebaut von Beardsmore, Erstflug 1925" + ] + } + ], + "pid": "1267608781", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Flugboot" + } + ], + "variant_access_point": [ + "Beardmore Inverness", + "Beardmore BeRo.2 Inverness", + "Inverness (Flugboot)", + "Ro IV", + "BeRo Inverness", + "Ro-IV Inverness" + ], + "md5": "cead7fc24d93a63581786931af7e111b" + }, + { + "authorized_access_point": "Beardmore Inflexible", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1267608366" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1267608366" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1267608366" + } + ], + "identifier": "http://d-nb.info/gnd/1267608366", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia (eng) - https://en.wikipedia.org/w/index.php?title=Beardmore_Inflexible&oldid=1018097769" + ] + }, + { + "noteType": "general", + "label": [ + "Britischer Bomber, zwischen 1925 und 1927 hergestellt von Beardmore nach einem Entwurf von Rohrbach. 1928 Erstflug, 1930 Au\u00dferdienststellung." + ] + } + ], + "pid": "1267608366", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bombenflugzeug" + } + ], + "variant_access_point": [ + "Rohrbach Ro VI", + "BeRo Inflexible", + "Inflexible (Flugzeug)", + "Ro VI", + "Beadmore AV 1 Inflexible", + "BeRo 1" + ], + "md5": "3923087747dd1d1811b53571cf025e9f" + }, + { + "authorized_access_point": "Beurteilung (Motiv)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1267358122" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1267358122" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1267358122" + } + ], + "identifier": "http://d-nb.info/gnd/1267358122", + "pid": "1267358122", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "eb328cb7fbbd7befc1119c4f8fed4ffe" + }, + { + "authorized_access_point": "Pflegefachfrau", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1266800611" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1266800611" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1266800611" + } + ], + "identifier": "http://d-nb.info/gnd/1266800611", + "exactMatch": [ + { + "authorized_access_point": "Women nurses", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333271700" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2016000330" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2016000330" + } + ] + } + ], + "closeMatch": [ + { + "authorized_access_point": "Nurses", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)133327260X" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D009726" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D009726" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "- BERUFENET - https://berufenet.arbeitsagentur.de/berufenet/faces/index;BERUFENETJSESSIONID=Mtv0BwN248FRIrQfZ4wj9Z21aQDNCzvOiov-sEw9T51hrJVD2gfR!-131719411?path=null/suchergebnisse/kurzbeschreibung&dkz=132173&such=pflegefachmann" + ] + }, + { + "noteType": "general", + "label": [ + "Seit dem 1.1.2020 neue offizielle Berufsbezeichnung in Dtld., das Pflegeberufegesetz fu\u0308hrt die bisherigen Berufsausbildungen der Altenpflege, der Gesundheits- und Krankenpflege und der Gesundheits- und Kinderkrankenpflege zusammen.", + "Als Homonymenzusatz bei Personenschlagwo\u0308rtern zugelassen." + ] + } + ], + "pid": "1266800611", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Pflegepersonal" + } + ], + "related": [ + { + "authorized_access_point": "Pflegefachmann" + } + ], + "md5": "143b999a9e6c783edb02d4b7205cb47c" + }, + { + "authorized_access_point": "Pflegefachmann", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1266799931" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1266799931" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1266799931" + } + ], + "identifier": "http://d-nb.info/gnd/1266799931", + "exactMatch": [ + { + "authorized_access_point": "Male nurses", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)133327288X" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85083530" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85083530" + } + ] + } + ], + "closeMatch": [ + { + "authorized_access_point": "Nurses, Male", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333273010" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D009727" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D009727" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "- BERUFENET - https://berufenet.arbeitsagentur.de/berufenet/faces/index;BERUFENETJSESSIONID=Mtv0BwN248FRIrQfZ4wj9Z21aQDNCzvOiov-sEw9T51hrJVD2gfR!-131719411?path=null/suchergebnisse/kurzbeschreibung&dkz=132173&such=pflegefachmann" + ] + }, + { + "noteType": "general", + "label": [ + "Seit dem 1.1.2020 neue offizielle Berufsbezeichnung in Dtld., das Pflegeberufegesetz fu\u0308hrt die bisherigen Berufsausbildungen der Altenpflege, der Gesundheits- und Krankenpflege und der Gesundheits- und Kinderkrankenpflege zusammen.", + "Als Homonymenzusatz bei Personenschlagwo\u0308rtern zugelassen." + ] + } + ], + "pid": "1266799931", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Pflegepersonal" + } + ], + "related": [ + { + "authorized_access_point": "Pflegefachfrau" + } + ], + "md5": "6b947fdf4e1cd1dcd791e27e83311a51" + }, + { + "authorized_access_point": "Methodenmix", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1264956134" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1264956134" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1264956134" + } + ], + "identifier": "http://d-nb.info/gnd/1264956134", + "exactMatch": [ + { + "authorized_access_point": "Mixed methods research", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332866999" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2010001158" + }, + { + "type": "uri", + "value": "https://id.loc.gov/authorities/subjects/sh2010001158" + } + ] + }, + { + "authorized_access_point": "Me\u0301thodes de recherche mixtes", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332866999" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16582642" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16582642k" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Forschungsplan, der verschiedene Verfahren kombiniert; gemeint sind meist qualitative und quantitative Methoden" + ] + } + ], + "pid": "1264956134", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Forschungsmethode" + } + ], + "variant_access_point": [ + "Mixed-Methods", + "Mixed methods" + ], + "md5": "9f488c9d5dd39f729b1f3d8c8bef86f1" + }, + { + "authorized_access_point": "Globale Gesundheit", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1262928265" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1262928265" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1262928265" + } + ], + "identifier": "http://d-nb.info/gnd/1262928265", + "exactMatch": [ + { + "authorized_access_point": "World health", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133930549" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85148199" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85148199" + } + ] + }, + { + "authorized_access_point": "Sante\u0301 publique", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133930549" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11933219" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119332195" + } + ] + }, + { + "authorized_access_point": "Global Health", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1277080682" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D014943" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D014943" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://en.wikipedia.org/w/index.php?oldid=1095914761" + ] + } + ], + "pid": "1262928265", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gesundheit" + } + ], + "related": [ + { + "authorized_access_point": "Planetare Gesundheit" + } + ], + "variant_access_point": [ + "Global Health", + "Weltgesundheit", + "Internationale Gesundheit" + ], + "md5": "950d4cf53ee7139efcb135ce02773cda" + }, + { + "authorized_access_point": "Ordenstheater", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1261933737" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1261933737" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1261933737" + } + ], + "identifier": "http://d-nb.info/gnd/1261933737", + "note": [ + { + "noteType": "dataSource", + "label": [ + "MGG online - https://www.mgg-online.com/mgg/stable/403049" + ] + } + ], + "pid": "1261933737", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Theater" + } + ], + "variant_access_point": [ + "Klostertheater" + ], + "md5": "cd44b52cf4ec05f7bf3cf2de46676288" + }, + { + "authorized_access_point": "De\u0301coupage (Film)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1259460460" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1259460460" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1259460460" + } + ], + "identifier": "http://d-nb.info/gnd/1259460460", + "note": [ + { + "noteType": "general", + "label": [ + "Letzte (technische) Fassung eines Drehbuchs, die in die einzelnen zu drehenden Aufnahmen zerlegt ist." + ] + } + ], + "pid": "1259460460", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Drehbuch" + } + ], + "variant_access_point": [ + "Shooting script" + ], + "md5": "2406937adde949a02c7eacfca3697d47" + }, + { + "authorized_access_point": "Balangao", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1258881675" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1258881675" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1258881675" + } + ], + "identifier": "http://d-nb.info/gnd/1258881675", + "exactMatch": [ + { + "authorized_access_point": "Balangao (Philippine people)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332862187" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh91005542" + }, + { + "type": "uri", + "value": "https://id.loc.gov/authorities/subjects/sh91005542" + } + ] + } + ], + "pid": "1258881675", + "type": "bf:Topic", + "variant_access_point": [ + "Balangao Bontoc", + "Balangao-Bontok", + "Balangaw" + ], + "md5": "aea15f1f2ef402d9c3f79b928a2efdc4" + }, + { + "authorized_access_point": "Paddy-Reis", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/125746423X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)125746423X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)125746423X" + } + ], + "identifier": "http://d-nb.info/gnd/125746423X", + "pid": "125746423X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Reis" + } + ], + "variant_access_point": [ + "Paddyreis", + "gedroschener Reis", + "bespelzte Reisko\u0308rner" + ], + "md5": "6441baf9a654af2b38608bd9b38bff32" + }, + { + "authorized_access_point": "Luftultraschall", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1257346415" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1257346415" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1257346415" + } + ], + "identifier": "http://d-nb.info/gnd/1257346415", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Internet - https://wiki.polymerservice-merseburg.de/index.php/Luftultraschall" + ] + } + ], + "pid": "1257346415", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ultraschallpru\u0308fung" + } + ], + "md5": "bd9c04c92a24e31684002d32313ffa2e" + }, + { + "authorized_access_point": "Geldart-Gruppe B", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1257092804" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1257092804" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1257092804" + } + ], + "identifier": "http://d-nb.info/gnd/1257092804", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Wirbelschicht&oldid=215906776" + ] + } + ], + "pid": "1257092804", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schu\u0308ttgut" + }, + { + "authorized_access_point": "Wirbelschicht" + } + ], + "md5": "8b1ee4ce802ae6adcb5534ef7fad7c9a" + }, + { + "authorized_access_point": "Vibrio natriegens", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1254569642" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254569642" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1254569642" + } + ], + "identifier": "http://d-nb.info/gnd/1254569642", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia englisch - https://en.wikipedia.org/w/index.php?title=Vibrio_natriegens&oldid=1064078091" + ] + } + ], + "pid": "1254569642", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gram-negative Bakterien" + } + ], + "md5": "fec9d0aff82af1799cee160ca66b832f" + }, + { + "authorized_access_point": "mRNA-Impfstoff", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1254535594" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254535594" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1254535594" + } + ], + "identifier": "http://d-nb.info/gnd/1254535594", + "exactMatch": [ + { + "authorized_access_point": "mRNA vaccines", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332908640" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2022005581" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2022005581" + } + ] + }, + { + "authorized_access_point": "Vaccins a\u0300 ARN messager", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332908640" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18084862" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb18084862n" + } + ] + }, + { + "authorized_access_point": "mRNA Vaccines", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1260520943" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D000087503" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D000087503" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Pschyrembel online - https://www.pschyrembel.de/mRNA-Impfstoff/A0TVP/doc/" + ] + }, + { + "noteType": "general", + "label": [ + "Impfstofftyp, bei dem RNA (in aller Regel mRNA) injiziert wird, die fu\u0308r einen Bestandteil des Erregers codiert. In der Zelle wird aus der mRNA das nichtpathogene Protein des Erregers gebildet (Antigen), das schlie\u00dflich die Immunantwort triggert. Die ersten zugelassenen mRNA-Impfstoffe sind die SARS-CoV-2-Impfstoffe von BioNTech und Moderna" + ] + } + ], + "pid": "1254535594", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Impfstoff" + } + ], + "variant_access_point": [ + "mRNA-Vakzin", + "RNA-Impfstoff", + "RNA-Vakzin", + "RNS-Impfstoff", + "mRNA-Impfung (Quasisynonym)" + ], + "md5": "68288390e2e54ac16f1c7af65086e8d3" + }, + { + "authorized_access_point": "Planetare Gesundheit", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1253837457" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1253837457" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1253837457" + } + ], + "identifier": "http://d-nb.info/gnd/1253837457", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Planetary_Health&oldid=217168638" + ] + } + ], + "pid": "1253837457", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Umweltmedizin" + }, + { + "authorized_access_point": "Globale Gesundheit" + } + ], + "broader": [ + { + "authorized_access_point": "Gesundheitsvorsorge" + } + ], + "variant_access_point": [ + "Planetary Health", + "Sante\u0301 plane\u0301taire" + ], + "md5": "63038819739461faf5f1b1654fc05d6b" + }, + { + "authorized_access_point": "Kontrollturm (Luftfahrt)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1252827512" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1252827512" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1252827512" + } + ], + "identifier": "http://d-nb.info/gnd/1252827512", + "closeMatch": [ + { + "authorized_access_point": "Airport control towers", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133865976" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85002968" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85002968" + } + ] + }, + { + "authorized_access_point": "Tours de contro\u0302le (ae\u0301roports)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133865976" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13543290" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13543290b" + } + ] + } + ], + "pid": "1252827512", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Flugsicherung" + }, + { + "authorized_access_point": "Turm" + } + ], + "variant_access_point": [ + "Tower (Luftfahrt)", + "Flugverkehrskontrollturm" + ], + "md5": "351959f93cfb80e0cc5e312be05f6c2f" + }, + { + "authorized_access_point": "Kankurang", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1252257295" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1252257295" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1252257295" + } + ], + "identifier": "http://d-nb.info/gnd/1252257295", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Kankurang&oldid=207951252" + ] + } + ], + "pid": "1252257295", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Initiation" + } + ], + "md5": "63f8e8b3f5d91fdb656459cc5a54e3cd" + }, + { + "authorized_access_point": "COVID-19-Pandemie", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1251536492" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1251536492" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1251536492" + } + ], + "identifier": "http://d-nb.info/gnd/1251536492", + "pid": "1251536492", + "type": "bf:Topic", + "variant_access_point": [ + "Corona-Pandemie" + ], + "md5": "d3c6b9e30a586566d328d7fdc17fb74a" + }, + { + "authorized_access_point": "Jaina", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1250258731" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1250258731" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1250258731" + } + ], + "identifier": "http://d-nb.info/gnd/1250258731", + "exactMatch": [ + { + "authorized_access_point": "Jains", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134089961" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85069288" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85069288" + } + ] + }, + { + "authorized_access_point": "Jaina", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134089961" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11997604" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11997604f" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Jainismus&oldid=219669705670" + ] + }, + { + "noteType": "general", + "label": [ + "Anha\u0308nger der indischen Religion Jainismus" + ] + } + ], + "pid": "1250258731", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Jainismus" + } + ], + "variant_access_point": [ + "Jains", + "Jina", + "Dschaina", + "Jain", + "Dschain" + ], + "md5": "1b044270c9a9720235b7ddd02f4b8aa9" + }, + { + "authorized_access_point": "Keraiten", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/124994516X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)124994516X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)124994516X" + } + ], + "identifier": "http://d-nb.info/gnd/124994516X", + "exactMatch": [ + { + "authorized_access_point": "Kereyid", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332859674" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2010012538" + }, + { + "type": "uri", + "value": "https://id.loc.gov/authorities/subjects/sh2010012538" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Zentralmonogolischer Stammesverband in der Zeit vor dem Mongolischen Reich" + ] + } + ], + "pid": "124994516X", + "type": "bf:Topic", + "variant_access_point": [ + "Kerait", + "Kereit", + "Kera\u0308it", + "Kereyid" + ], + "md5": "fccb9f1c86634af8e66a8e17d614d2e2" + }, + { + "authorized_access_point": "Pyridopyrimidine", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1249112877" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1249112877" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1249112877" + } + ], + "identifier": "http://d-nb.info/gnd/1249112877", + "exactMatch": [ + { + "authorized_access_point": "Pyridodiazines", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134439474" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF14546066" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb14546066s" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://en.wikipedia.org/w/index.php?title=Pyridopyrimidine&oldid=879376703" + ] + } + ], + "pid": "1249112877", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Pyrimidinderivate" + }, + { + "authorized_access_point": "Pyridinderivate" + } + ], + "variant_access_point": [ + "Pyridopyrimidinderivate", + "Pyridopyrimidin" + ], + "md5": "0f76c3519b48ebd9176697ab668f4e1f" + }, + { + "authorized_access_point": "Streich (Scherz, Motiv)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1248945506" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1248945506" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1248945506" + } + ], + "identifier": "http://d-nb.info/gnd/1248945506", + "exactMatch": [ + { + "authorized_access_point": "Practical jokes in literature", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333635532" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2010006454" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2010006454" + } + ] + } + ], + "pid": "1248945506", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "951c7b9ac02f336a89ae88b44edd997b" + }, + { + "authorized_access_point": "Kulturelle Aneignung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1247639401" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1247639401" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1247639401" + } + ], + "identifier": "http://d-nb.info/gnd/1247639401", + "closeMatch": [ + { + "authorized_access_point": "Cultural appropriation", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331872340" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2018001171" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2018001171" + } + ] + }, + { + "authorized_access_point": "Appropriation culturelle", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331872340" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18004355" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb18004355b" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Kulturelle_Aneignung&oldid=218864021" + ] + }, + { + "noteType": "general", + "label": [ + "U\u0308bernahme eines Bestandteils einer Kultur von Mitgliedern einer anderen Kultur oder Identita\u0308t bezeichnet. Die ethische Dimension kultureller Aneignung wird in der Regel nur dann kritisiert, wenn die angeeignete Kultur einer Minderheit angeho\u0308rt, die als sozial, politisch, wirtschaftlich oder milita\u0308risch benachteiligt gilt, etwa wegen ethnischer Konflikte. Die Kultur werde aus Sicht der Kritiker durch ihre historischen Unterdru\u0308cker ihrem Kontext entrissen." + ] + } + ], + "pid": "1247639401", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kulturbeziehungen" + } + ], + "variant_access_point": [ + "Cultural appropriation" + ], + "md5": "eccd193f9f6c7db54bea7a3d2c747462" + }, + { + "authorized_access_point": "Traubenkirsche", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1246126877" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1246126877" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1246126877" + } + ], + "identifier": "http://d-nb.info/gnd/1246126877", + "note": [ + { + "noteType": "general", + "label": [ + "Kleiner Baum oder gro\u00dfer Strauch aus der Pflanzenfamilie der Rosaceae." + ] + } + ], + "pid": "1246126877", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Prunus" + } + ], + "variant_access_point": [ + "Prunus padus", + "Gewo\u0308hnliche Traubenkirsche", + "Ahlkirsche" + ], + "md5": "bf283ca46f7a137864d568c43b3646dc" + }, + { + "authorized_access_point": "Impfpass", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/124608841X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)124608841X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)124608841X" + } + ], + "identifier": "http://d-nb.info/gnd/124608841X", + "pid": "124608841X", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Gesundheitszeugnis" + } + ], + "variant_access_point": [ + "Impfausweis", + "Impfnachweis", + "Impfzertifikat", + "Impfbescheinigung", + "Impfdokumentation" + ], + "md5": "39ac82d204491cc7849318b805f6a8eb" + }, + { + "authorized_access_point": "Kuhlien", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1241975299" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1241975299" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1241975299" + } + ], + "identifier": "http://d-nb.info/gnd/1241975299", + "closeMatch": [ + { + "authorized_access_point": "Kuhliidae", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333442068" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85073370" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85073370" + } + ] + }, + { + "authorized_access_point": "Kuhliidae", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333442068" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17155128" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb171551286" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Familie der Barschartigen Fische" + ] + } + ], + "pid": "1241975299", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Barschartige Fische" + } + ], + "variant_access_point": [ + "Kuhlie", + "Kuhliidae" + ], + "md5": "a8a14684a4d4ce13e7bfedd6f81fe048" + }, + { + "authorized_access_point": "Knurrende Guramis", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1234514702" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1234514702" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1234514702" + } + ], + "identifier": "http://d-nb.info/gnd/1234514702", + "exactMatch": [ + { + "authorized_access_point": "Trichopsis", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333957734" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17805197" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb178051976" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Su\u0308dostasiatisch verbreitete Gattung der Anabantoidei. Ko\u0308nnen knurrende Gera\u0308usche erzeugen." + ] + } + ], + "pid": "1234514702", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Labyrinthfische" + } + ], + "variant_access_point": [ + "Trichopsis" + ], + "md5": "eea4b0e0ea9e3d0f99198b7137f46eb3" + }, + { + "authorized_access_point": "Benutzererlebnis", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1232346071" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1232346071" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1232346071" + } + ], + "identifier": "http://d-nb.info/gnd/1232346071", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=User_Experience&oldid=211010591" + ] + }, + { + "noteType": "general", + "label": [ + "Umschreibt alle Aspekte der Eindru\u0308cke und das Erlebnis eines Nutzers bei der Interaktion mit einem Produkt, Dienst, einer Umgebung oder Einrichtung. Dazu za\u0308hlen auch Software und IT-Systeme." + ] + } + ], + "pid": "1232346071", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Benutzerfreundlichkeit" + }, + { + "authorized_access_point": "Benutzerru\u0308ckmeldung" + } + ], + "variant_access_point": [ + "User experience", + "Nutzererfahrung", + "Nutzererlebnis", + "Nutzungserlebnis" + ], + "md5": "1ac199a5ae20956ea040cfc1414ee79e" + }, + { + "authorized_access_point": "Zoogamie", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1228154325" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1228154325" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1228154325" + } + ], + "identifier": "http://d-nb.info/gnd/1228154325", + "note": [ + { + "noteType": "general", + "label": [ + "U\u0308bertragung des Pollens einer Blu\u0308te auf die Narbe einer artgleichen anderen Blu\u0308te durch ein Tier" + ] + } + ], + "pid": "1228154325", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Besta\u0308ubung" + } + ], + "related": [ + { + "authorized_access_point": "Anemogamie" + } + ], + "variant_access_point": [ + "Anthophilie", + "Zoophilie (Blu\u0308teno\u0308kologie)", + "Tierblu\u0308tigkeit", + "Tierbesta\u0308ubung" + ], + "md5": "3c0f8e7a7ffd0b7c3af8db26c55e9130" + }, + { + "authorized_access_point": "Erotischer Comic", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1225893461" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1225893461" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1225893461" + } + ], + "identifier": "http://d-nb.info/gnd/1225893461", + "closeMatch": [ + { + "authorized_access_point": "Erotic comic books, strips, etc.", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113424097X" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh88001850" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh88001850" + } + ] + }, + { + "authorized_access_point": "Bandes dessine\u0301es e\u0301rotiques", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113424097X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12262211" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12262211q" + } + ] + } + ], + "pid": "1225893461", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Comic" + }, + { + "authorized_access_point": "Erotik (Motiv)" + } + ], + "md5": "fa5a919f50f3dc15b440b00d026200b6" + }, + { + "authorized_access_point": "Arkebuse", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1219598135" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1219598135" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1219598135" + } + ], + "identifier": "http://d-nb.info/gnd/1219598135", + "closeMatch": [ + { + "authorized_access_point": "Arquebuses", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333656866" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF14408507" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb144085074" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Anfang des 15. Jahrhunderts aus dem Faustrohr entwickeltes Gewehr mit glattem Lauf und Luntenschloss" + ] + } + ], + "pid": "1219598135", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Vorderlader" + }, + { + "authorized_access_point": "Gewehr" + } + ], + "variant_access_point": [ + "Hakenbu\u0308chse" + ], + "md5": "15aed64c4b4f0ef551bdf91a13e08453" + }, + { + "authorized_access_point": "Yalla Italia", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1210456753" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1210456753" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1210456753" + } + ], + "identifier": "http://d-nb.info/gnd/1210456753", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Homepage - https://www.yallaitalia.it" + ] + } + ], + "pid": "1210456753", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Araber" + }, + { + "authorized_access_point": "Islam" + } + ], + "broader": [ + { + "authorized_access_point": "Weblog" + } + ], + "variant_access_point": [ + "Yalla" + ], + "md5": "b05149c523a07604bb622ad0ebcba37a" + }, + { + "authorized_access_point": "Bu\u0308hnenmanuskript", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1202575048" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1202575048" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1202575048" + } + ], + "identifier": "http://d-nb.info/gnd/1202575048", + "note": [ + { + "noteType": "general", + "label": [ + "Hauptsa\u0308chlich vom Bu\u0308hnenvertrieb und Vereinen hergestelltes Manuskript oder Typoskript, noch nicht vero\u0308ffentlichter oder noch nicht gespielter Stu\u0308cke, Stu\u0308ckfassungen oder -u\u0308bersetzungen.", + "Fu\u0308r bereits vero\u0308ffentlichte Stu\u0308cke bzw. Werke verwende \"Theaterstu\u0308ck\".", + "Als Formangabe fu\u0308r die Art des Inhalts als Teil des optionalen Sets fu\u0308r die Darstellende Kunst zugelassen." + ] + } + ], + "pid": "1202575048", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Drama" + }, + { + "authorized_access_point": "Inszenierung" + } + ], + "md5": "9c20e26bbae5ee0c798fa8aadbd23e3b" + }, + { + "authorized_access_point": "Moyamoya-Krankheit", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1201330661" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1201330661" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1201330661" + } + ], + "identifier": "http://d-nb.info/gnd/1201330661", + "closeMatch": [ + { + "authorized_access_point": "Maladie de moya-moya", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133799884" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12447412" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12447412r" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Moyamoya Disease", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1282200224" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D009072" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D009072" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Moyamoya&oldid=188131848" + ] + } + ], + "pid": "1201330661", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Hirngefa\u0308\u00dfkrankheit" + } + ], + "variant_access_point": [ + "Moyamoya-Erkrankung", + "Moyamoya-Syndrom", + "Moya-Moya-Syndrom", + "Moyamoya-Angiopathie", + "Moyamoya disease", + "Cerebrovascular Moyamoya Disease", + "Moyamoya Vasculopathy", + "MMV" + ], + "md5": "0549a0e8e2e928ddff3a0bc78bd62a3c" + }, + { + "authorized_access_point": "Donaukaulbarsch", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1199404365" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1199404365" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1199404365" + } + ], + "identifier": "http://d-nb.info/gnd/1199404365", + "closeMatch": [ + { + "authorized_access_point": "Gymnocephalus baloni", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333473451" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17805417" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17805417j" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/wiki/Donaukaulbarsch" + ] + }, + { + "noteType": "general", + "label": [ + "Im Unterlauf der Donau und deren Nebengewa\u0308ssern lebende endemische Art der Barsche" + ] + } + ], + "pid": "1199404365", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Barsche" + } + ], + "variant_access_point": [ + "Gymnocephalus baloni" + ], + "md5": "ab3533ec04da58d7f072fbf1d2707cca" + }, + { + "authorized_access_point": "Insulysin", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1198723262" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1198723262" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1198723262" + } + ], + "identifier": "http://d-nb.info/gnd/1198723262", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Insulysin&oldid=177216971" + ] + }, + { + "noteType": "general", + "label": [ + "Den zellula\u0308ren Abbau von Insulin, Glucagon und anderen Polypeptiden beeinflussendes Enzym" + ] + } + ], + "pid": "1198723262", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Endopeptidasen" + }, + { + "authorized_access_point": "Metalloproteinasen" + } + ], + "related": [ + { + "authorized_access_point": "Insulinabbau" + } + ], + "variant_access_point": [ + "Insulinase", + "Insulin-abbauendes Enzym", + "IDE", + "Insulin-degrading enzyme", + "Insulin protease", + "EC 3.4.24.56" + ], + "md5": "b3f4bee62dce943e219af7fa0840293a" + }, + { + "authorized_access_point": "Maria\u0308 Empfa\u0308ngnis (Fest)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1191508781" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1191508781" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1191508781" + } + ], + "identifier": "http://d-nb.info/gnd/1191508781", + "closeMatch": [ + { + "authorized_access_point": "Feast of the Immaculate Conception", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133870880" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85064510" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85064510" + } + ] + }, + { + "authorized_access_point": "Immacule\u0301e Conception (fe\u0302te)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133870880" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13569072" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13569072q" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Nur f. das Fest; fu\u0308r das Geschehen SW Unbefleckte Empfa\u0308ngnis. Hochfest am 8. Dezember" + ] + } + ], + "pid": "1191508781", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Marienfest" + } + ], + "related": [ + { + "authorized_access_point": "Unbefleckte Empfa\u0308ngnis" + } + ], + "variant_access_point": [ + "Empfa\u0308ngnis Maria\u0308 (Fest)", + "Empfa\u0308ngnis Mariens (Fest)", + "Hochfest der ohne Erbsu\u0308nde empfangenen Jungfrau und Gottesmutter Maria", + "Immaculata conceptio Mariae (Fest)", + "Immaculata conceptio Beatae Mariae Virginis (Fest)", + "Immaculata conceptio B.M.V. (Fest)" + ], + "md5": "7196956dd70f57d8eb549c4790c12e30" + }, + { + "authorized_access_point": "Sigmund-Freud-Preis", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1188589024" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1188589024" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1188589024" + } + ], + "identifier": "http://d-nb.info/gnd/1188589024", + "note": [ + { + "noteType": "general", + "label": [ + "Preis fu\u0308r wissenschaftliche Prosa, verliehen von der Deutschen Akademie fu\u0308r Sprache und Dichtung und gefo\u0308rdert von der ENTEGA Stiftung" + ] + } + ], + "pid": "1188589024", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Preis (Auszeichnung)" + } + ], + "related": [ + { + "authorized_access_point": "Wissenschaftliche Literatur" + } + ], + "variant_access_point": [ + "Sigmund-Freud-Preis fu\u0308r wissenschaftliche Prosa" + ], + "md5": "b6e2a27c5c1d14600189553dc39469cf" + }, + { + "authorized_access_point": "Sonntag der Osterzeit 3", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1183863349" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1183863349" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1183863349" + } + ], + "identifier": "http://d-nb.info/gnd/1183863349", + "closeMatch": [ + { + "authorized_access_point": "Dimanche de la Divine Mise\u0301ricorde", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331870097" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF15100620" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb151006209" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Sonntage_der_Osterzeit&oldid=183677215" + ] + }, + { + "noteType": "general", + "label": [ + "Zweiter Sonntag nach Ostern." + ] + } + ], + "pid": "1183863349", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Sonntag" + }, + { + "authorized_access_point": "Osterzeit" + } + ], + "variant_access_point": [ + "Sonntag nach Ostern 2", + "Misericordia", + "Misericordias Domini" + ], + "md5": "db2c9bec1780d6fafb40097483ce717b" + }, + { + "authorized_access_point": "Futura Halbfett", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1181268311" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1181268311" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1181268311" + } + ], + "identifier": "http://d-nb.info/gnd/1181268311", + "pid": "1181268311", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Futura (Druckschrift)" + } + ], + "variant_access_point": [ + "Futura medium", + "Futura demi-gras", + "Futura seminegra", + "Futura neretto", + "Futura halvfet" + ], + "md5": "704c951a29f3b2498b23d0cfd2398174" + }, + { + "authorized_access_point": "Afrikanischer Knochenzu\u0308ngler", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1181007100" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1181007100" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1181007100" + } + ], + "identifier": "http://d-nb.info/gnd/1181007100", + "closeMatch": [ + { + "authorized_access_point": "Heterotis niloticus", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333491085" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12038061" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb120380616" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/wiki/Afrikanischer_Knochenz%C3%BCngler", + "Wikimedia - https://species.wikimedia.org/wiki/Heterotis_niloticus" + ] + } + ], + "pid": "1181007100", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Knochenzu\u0308nglera\u0308hnliche" + } + ], + "variant_access_point": [ + "Heterotis niloticus", + "Clupisudis niloticus", + "Heterotis adansoni Valenciennes", + "Heterotis adansonii", + "Heterotis ehrenbergii Valenciennes", + "Heterotis nilotica", + "Sudis adansonii Cuvier", + "Sudis nilotica Cuvier", + "Sudis niloticus Cuvier", + "Sudis niloticus Ru\u0308ppell" + ], + "md5": "2e6078a340d9d435043c6768362f77c7" + }, + { + "authorized_access_point": "Mittelbare Patentverletzung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1173842845" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1173842845" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1173842845" + } + ], + "identifier": "http://d-nb.info/gnd/1173842845", + "note": [ + { + "noteType": "general", + "label": [ + "Das Anbieten oder Liefern von Mitteln zur unbefugten Benutzung einer Erfindung (\u00a7 10 PatG)" + ] + } + ], + "pid": "1173842845", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Patentverletzung" + } + ], + "variant_access_point": [ + "Indirekte Patentverletzung", + "Indirect patent infringement" + ], + "md5": "968c84f5e2c5b57e9e1f4f13ab532be9" + }, + { + "authorized_access_point": "Schadensersatz statt der Leistung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1173062238" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1173062238" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1173062238" + } + ], + "identifier": "http://d-nb.info/gnd/1173062238", + "note": [ + { + "noteType": "general", + "label": [ + "Geregelt in \u00a7\u00a7 280 Abs. 3, 281-283, 311a Abs. 2 BGB" + ] + } + ], + "pid": "1173062238", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schadensersatz" + } + ], + "related": [ + { + "authorized_access_point": "Nichterfu\u0308llungsschaden" + } + ], + "md5": "dfc6ca7b025c7b08cf390f9214497043" + }, + { + "authorized_access_point": "Fluiddynamik", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1172567794" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1172567794" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1172567794" + } + ], + "identifier": "http://d-nb.info/gnd/1172567794", + "closeMatch": [ + { + "authorized_access_point": "Fluid dynamics", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333587996" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85049376" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85049376" + } + ] + }, + { + "authorized_access_point": "Fluides, Dynamique des", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333587996" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11931416" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119314166" + } + ] + }, + { + "authorized_access_point": "Dina\u0301mica de fluidos", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1299918271" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX4659783" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX4659783" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Fluiddynamik&oldid=166437703" + ] + }, + { + "noteType": "general", + "label": [ + "\"Die Fluiddynamik ist ein Teilgebiet der Stro\u0308mungslehre und bescha\u0308ftigt sich mit bewegten Fluiden (Flu\u0308ssigkeiten und Gasen). Teilgebiet fu\u0308r Gase ist die Aerodynamik, fu\u0308r Flu\u0308ssigkeiten die Hydrodynamik. Untersucht werden z. B. laminare und turbulente Stro\u0308mungen in offenen und geschlossenen Gerinnen sowie Bewegungen und Kraftverha\u0308ltnisse in Druckleitungen.\" (Wikipedia: Fluiddynamik)" + ] + } + ], + "pid": "1172567794", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Stro\u0308mungsmechanik" + } + ], + "md5": "d1927c9d85b31f03fcaeb0574b1599ec" + }, + { + "authorized_access_point": "Beschwerde (Motiv)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1166161722" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1166161722" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1166161722" + } + ], + "identifier": "http://d-nb.info/gnd/1166161722", + "pid": "1166161722", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "3f5c44b7669ce5d1378e9b749cb4c248" + }, + { + "authorized_access_point": "Zirkustiere", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1165352362" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1165352362" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1165352362" + } + ], + "identifier": "http://d-nb.info/gnd/1165352362", + "closeMatch": [ + { + "authorized_access_point": "Circus animals", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113431275X" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85026086" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85026086" + } + ] + }, + { + "authorized_access_point": "Animaux de cirque", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113431275X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12403950" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12403950w" + } + ] + } + ], + "pid": "1165352362", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tiere" + }, + { + "authorized_access_point": "Zirkus" + } + ], + "variant_access_point": [ + "Zirkus" + ], + "md5": "c60ac50719d268ea0072ba36e0c52f83" + }, + { + "authorized_access_point": "Wei\u00dfsein", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1165347768" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1165347768" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1165347768" + } + ], + "identifier": "http://d-nb.info/gnd/1165347768", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?oldid=243277040" + ] + }, + { + "noteType": "general", + "label": [ + "Begriff zur Kategorisierung von Menschen und transdisziplina\u0308res Studienfeld" + ] + } + ], + "pid": "1165347768", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Wei\u00dfe" + }, + { + "authorized_access_point": "Ethnische Beziehungen" + } + ], + "variant_access_point": [ + "Whiteness", + "Kritische Wei\u00dfseinsforschung", + "Critical Whiteness Studies" + ], + "md5": "fc026c2f638bc26c42f8d4531eabc435" + }, + { + "authorized_access_point": "shaday", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1162072040" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1162072040" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1162072040" + } + ], + "identifier": "http://d-nb.info/gnd/1162072040", + "note": [ + { + "noteType": "general", + "label": [ + "Verknu\u0308pfe mit Sprachbezeichnung (hier: Hebra\u0308isch) und Wortart" + ] + } + ], + "pid": "1162072040", + "type": "bf:Topic", + "variant_access_point": [ + "shadday", + "s\u030caddaj", + "\u05e9\u05b7\u05c1\u05d3\u05b7\u05bc\u05d9" + ], + "md5": "87595ee863aa845f1d95b7c5b8f04205" + }, + { + "authorized_access_point": "Baoan", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1161142878" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1161142878" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1161142878" + } + ], + "identifier": "http://d-nb.info/gnd/1161142878", + "note": [ + { + "noteType": "general", + "label": [ + "Mongolischsta\u0308mmige muslimische ethnische Minderheit der Volksrepublik China." + ] + } + ], + "pid": "1161142878", + "type": "bf:Topic", + "variant_access_point": [ + "Bao\u2019an", + "Paoan", + "Bonan" + ], + "md5": "c437c886fa47cbf854c64b1224e8735c" + }, + { + "authorized_access_point": "Hybride Genres", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1155851412" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1155851412" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1155851412" + } + ], + "identifier": "http://d-nb.info/gnd/1155851412", + "closeMatch": [ + { + "authorized_access_point": "Brouillage ge\u0301ne\u0301rique", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331493722" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17041531" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17041531v" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Bezeichnung von literarischen Textsorten, die Merkmale unterschiedlicher Gattungen in sich vereinen" + ] + } + ], + "pid": "1155851412", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Gattungstheorie" + }, + { + "authorized_access_point": "Intermedialita\u0308t" + }, + { + "authorized_access_point": "Intertextualita\u0308t" + } + ], + "broader": [ + { + "authorized_access_point": "Literaturgattung" + } + ], + "variant_access_point": [ + "Gattungskontamination", + "Gattungsvermischung" + ], + "md5": "581e1712fbf82b737fed6b1ef420fc75" + }, + { + "authorized_access_point": "Amylograph", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1155424573" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1155424573" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1155424573" + } + ], + "identifier": "http://d-nb.info/gnd/1155424573", + "note": [ + { + "noteType": "general", + "label": [ + "Messung der Viskosita\u0308t von Mehl" + ] + } + ], + "pid": "1155424573", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Viskosimeter" + } + ], + "md5": "90dea7f90631d0762a07bd8e70169750" + }, + { + "authorized_access_point": "Gezielte To\u0308tung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1153834367" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1153834367" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1153834367" + } + ], + "identifier": "http://d-nb.info/gnd/1153834367", + "closeMatch": [ + { + "authorized_access_point": "Targeted killing", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331566177" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2011002213" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2011002213" + } + ] + }, + { + "authorized_access_point": "Assassinat cible\u0301", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331566177" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17047512" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb170475121" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/wiki/Gezielte_To\u0308tung" + ] + }, + { + "noteType": "general", + "label": [ + "Die absichtliche, vorsa\u0308tzliche u. bewusste To\u0308tung von mutma\u00dflichen Terroristen und anderen nichtstaatlichen Gewaltakteuren durch staatliche Akteure; unter Vorgabe der Rechtma\u0308\u00dfigkeit erfolgen die Liquidierungen auch auf fremden Gebiet, zunehmend unter Einsatz unbemannter Fluggera\u0308te, wobei auch Unbeteiligte geto\u0308tet werden; die Vorgehensweise ist ethisch und juristisch umstritten und wird als Bruch des Vo\u0308lkerrechts angesehen, aber unter westlichen Staaten u. ihren Verbu\u0308ndeten gegenseitig geduldet" + ] + } + ], + "pid": "1153834367", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "To\u0308tung" + } + ], + "variant_access_point": [ + "Targeted killing", + "Targeted killings", + "Assassinat cible\u0301" + ], + "md5": "559f5d32cfae13abd9ab0690abc31114" + }, + { + "authorized_access_point": "Werbetexterin", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1150861010" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1150861010" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1150861010" + } + ], + "identifier": "http://d-nb.info/gnd/1150861010", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Berufenet - https://berufenet.arbeitsagentur.de/berufenet/faces/index?path=null/suchergebnisse&such=werbetexter" + ] + } + ], + "pid": "1150861010", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Werbetexter" + }, + { + "authorized_access_point": "Werbesprache" + } + ], + "md5": "ce9dedd3fd64f2e65e6e436611a171ff" + }, + { + "authorized_access_point": "Multispektralkamera", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1145186815" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1145186815" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1145186815" + } + ], + "identifier": "http://d-nb.info/gnd/1145186815", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia unter Multispektral - https://de.wikipedia.org/w/index.php?title=Multispektral&oldid=172622311" + ] + }, + { + "noteType": "general", + "label": [ + "Multispektralkamera ist ein analoges Kamerasystem. Multispektralkameras bestehen aus vier, sechs oder neun auf einem Tra\u0308ger montierten Me\u00dfkameras mit gena\u0308hert gleicher innerer Orientierung. Die Aufnahmeachsen sind exakt parallel ausgerichtet, um eine Kongruenz der aufgenommenen Bilder zu gewa\u0308hrleisten. Die Objektive werden mit verschiedenen Filtern und Filmen (panchromatisch, schwarzwei\u00df, infrarot) kombiniert. Es entstehen von einer Szene geometrisch identische schwarzwei\u00dfe Fotos, die durch die jeweiligen Film-Filter-Kombinationen unterschiedliche spektrale Inhalte aufzeichnen." + ] + } + ], + "pid": "1145186815", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mehrkamerasystem" + } + ], + "related": [ + { + "authorized_access_point": "Multispektraltechnik" + } + ], + "variant_access_point": [ + "Multispektrale Kamera", + "Multispectral camera" + ], + "md5": "612ed6f38d1a343a625a8f2dc0e840bb" + }, + { + "authorized_access_point": "Arma (Volk)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1144301971" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1144301971" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1144301971" + } + ], + "identifier": "http://d-nb.info/gnd/1144301971", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://en.wikipedia.org/w/index.php?oldid=944815699" + ] + }, + { + "noteType": "general", + "label": [ + "Ethnische Gruppe am mittleren Niger, von den marokkanischen und andalusischen Einwanderern des 16. Jh. abstammend." + ] + } + ], + "pid": "1144301971", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Songhai-Sprache" + } + ], + "variant_access_point": [ + "Ruma (Volk)" + ], + "md5": "8f696b73e9549dfb5e5e414246155f91" + }, + { + "authorized_access_point": "Eidgeno\u0308ssischer Dank-, Buss- und Bettag", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/114005791X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)114005791X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)114005791X" + } + ], + "identifier": "http://d-nb.info/gnd/114005791X", + "closeMatch": [ + { + "authorized_access_point": "Jeu\u0302ne fe\u0301de\u0301ral", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331870496" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17157263" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17157263g" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "In der Schweiz ein staatlich angeordneter u\u0308berkonfessioneller Feiertag, der jeweils am dritten Sonntag im September begangen wird." + ] + } + ], + "pid": "114005791X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bu\u00df- und Bettag" + }, + { + "authorized_access_point": "Feiertag" + } + ], + "variant_access_point": [ + "Jeu\u0302ne fe\u0301de\u0301ral", + "Digiuno federale", + "Rogaziun federala" + ], + "md5": "a188440e5cda7b8301aea20bdbd2faac" + }, + { + "authorized_access_point": "Knurrha\u0308hne", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1139178725" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1139178725" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1139178725" + } + ], + "identifier": "http://d-nb.info/gnd/1139178725", + "closeMatch": [ + { + "authorized_access_point": "Triglidae", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333487517" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85137512" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85137512" + } + ] + }, + { + "authorized_access_point": "Triglide\u0301s", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333487517" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17751355" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17751355q" + } + ] + } + ], + "pid": "1139178725", + "type": "bf:Topic", + "variant_access_point": [ + "Triglidae", + "Seeha\u0308hne" + ], + "md5": "b2fdb5bd97c04af375a3574979ee0717" + }, + { + "authorized_access_point": "Nichtlineare modellpra\u0308diktive Regelung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1135938261" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1135938261" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1135938261" + } + ], + "identifier": "http://d-nb.info/gnd/1135938261", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Nichtlineare_modellbasierte_pr%C3%A4diktive_Regelung&oldid=182549694" + ] + }, + { + "noteType": "general", + "label": [ + "Die nichtlineare modellpra\u0308diktive Regelung ist eine Methode aus dem Teilgebiet der Kontrolltheorie und Regelungstechnik und wird speziell dazu verwendet, um nichtlineare Prozesse mit Einschra\u0308nkungen und ohne Linearisierung behandeln zu ko\u0308nnen." + ] + } + ], + "pid": "1135938261", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Modellpra\u0308diktive Regelung" + } + ], + "variant_access_point": [ + "Non-Linear Model-Predictive-Control" + ], + "md5": "7271ac9ee14224fdb959655a9bb893f0" + }, + { + "authorized_access_point": "Hermitesche Mannigfaltigkeit", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1122355092" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1122355092" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1122355092" + } + ], + "identifier": "http://d-nb.info/gnd/1122355092", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://en.wikipedia.org/w/index.php?title=Hermitian_manifold&oldid=887773398" + ] + } + ], + "pid": "1122355092", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Komplexe Mannigfaltigkeit" + } + ], + "related": [ + { + "authorized_access_point": "Riemannscher Raum" + } + ], + "md5": "17b1d6bf08ce388e66f802e25738d014" + }, + { + "authorized_access_point": "Tetris", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1121689914" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1121689914" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1121689914" + } + ], + "identifier": "http://d-nb.info/gnd/1121689914", + "closeMatch": [ + { + "authorized_access_point": "Tetris (Game)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331594111" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2019000397" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2019000397" + } + ] + }, + { + "authorized_access_point": "Tetris (jeu vide\u0301o)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331594111" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16703785" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb167037852" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Tetris&oldid=187895104" + ] + } + ], + "pid": "1121689914", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Computerspiel" + } + ], + "md5": "bac545399c0c8e70ac2c7c8fac12ff2f" + }, + { + "authorized_access_point": "A\u0308lterer Mensch (60-80 Jahre, Motiv)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1118514823" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1118514823" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1118514823" + } + ], + "identifier": "http://d-nb.info/gnd/1118514823", + "pid": "1118514823", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Alter (Motiv)" + }, + { + "authorized_access_point": "Motiv" + } + ], + "variant_access_point": [ + "Erwachsener (60-80 Jahre, Motiv)", + "Alter (60-80 Jahre, Motiv)" + ], + "md5": "9e444ce9d0873638ca4ccb861f13dc42" + }, + { + "authorized_access_point": "Mobilita\u0308t 4.0", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1117164012" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1117164012" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1117164012" + } + ], + "identifier": "http://d-nb.info/gnd/1117164012", + "note": [ + { + "noteType": "general", + "label": [ + "Digitalisierung der Mobilita\u0308t, Digitalisierung im Verkehr" + ] + } + ], + "pid": "1117164012", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Verkehr" + } + ], + "variant_access_point": [ + "Mobility 4.0" + ], + "md5": "f962878309b960ed9be00578746931b1" + }, + { + "authorized_access_point": "Werbetexter", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1116981521" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1116981521" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1116981521" + } + ], + "identifier": "http://d-nb.info/gnd/1116981521", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Werbetexter&oldid=209682870", + "Berufenet - https://berufenet.arbeitsagentur.de/berufenet/faces/index?path=null/suchergebnisse&such=werbetexter" + ] + } + ], + "pid": "1116981521", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Werbesprache" + }, + { + "authorized_access_point": "Werbetexterin" + } + ], + "md5": "be6d644511d56e64fdc60ad91b034199" + }, + { + "authorized_access_point": "Debonding", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1115371371" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1115371371" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1115371371" + } + ], + "identifier": "http://d-nb.info/gnd/1115371371", + "note": [ + { + "noteType": "general", + "label": [ + "Debonding occurs when an adhesive stops sticking (adhering) to an adherend or substrate material." + ] + } + ], + "pid": "1115371371", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kleben" + }, + { + "authorized_access_point": "Adha\u0308sion" + } + ], + "md5": "991b8f716da588eff621f669f9e1b196" + }, + { + "authorized_access_point": "M 29", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1099123399" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1099123399" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1099123399" + } + ], + "identifier": "http://d-nb.info/gnd/1099123399", + "note": [ + { + "noteType": "general", + "label": [ + "1932 fu\u0308r den Wettbewerb \"Europarundflug\" konstruiert" + ] + } + ], + "pid": "1099123399", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Sportflugzeug" + } + ], + "variant_access_point": [ + "M-29", + "Messerschmitt M 29", + "Me 29" + ], + "md5": "047d519199def346e5fec484ea582633" + }, + { + "authorized_access_point": "Virtuelle Wa\u0308hrung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1081489480" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1081489480" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1081489480" + } + ], + "identifier": "http://d-nb.info/gnd/1081489480", + "exactMatch": [ + { + "authorized_access_point": "Virtuelle Wa\u0308hrung", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1136961666" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "30143-2" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/30143-2" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Digitales Zahlungsmittel" + ] + } + ], + "pid": "1081489480", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zahlungsmittel" + }, + { + "authorized_access_point": "Kryptowert" + } + ], + "variant_access_point": [ + "Digitale Wa\u0308hrung", + "Kryptogeld", + "Kryptowa\u0308hrung", + "Virtual currency", + "Payment Token" + ], + "md5": "7d010cc33c9558d6a9b813fd511d7bcc" + }, + { + "authorized_access_point": "Knochenzu\u0308nglera\u0308hnliche", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1078298378" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1078298378" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1078298378" + } + ], + "identifier": "http://d-nb.info/gnd/1078298378", + "closeMatch": [ + { + "authorized_access_point": "Oste\u0301oglossomorphes", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333490674" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17839916" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb178399165" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/wiki/Knochenz%C3%BCngler%C3%A4hnliche" + ] + }, + { + "noteType": "general", + "label": [ + "Kohorte der Echten Knochenfische (Teleostei)" + ] + } + ], + "pid": "1078298378", + "type": "bf:Topic", + "variant_access_point": [ + "Osteoglossomorpha" + ], + "md5": "423c1e2af5ea7c5a83a9a5d004846543" + }, + { + "authorized_access_point": "Hybridkrieg", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/107366371X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)107366371X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)107366371X" + } + ], + "identifier": "http://d-nb.info/gnd/107366371X", + "exactMatch": [ + { + "authorized_access_point": "Hybrid warfare", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1217682147" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2016001601" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2016001601" + } + ] + }, + { + "authorized_access_point": "Guerre hybride", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1217682147" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb18146328x" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Hybridkrieg&oldid=223107821" + ] + }, + { + "noteType": "general", + "label": [ + "Kriegsfu\u0308hrung des 21. Jhs.: Operation von Soldaten u. milita\u0308rischer Ausru\u0308stung ohne Hoheitszeichen auf fremdem Territorium, begleitet von Desinformationskampagnen u. Cyberattacken" + ] + } + ], + "pid": "107366371X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kriegfu\u0308hrung" + } + ], + "variant_access_point": [ + "Hybrider Krieg", + "Hybride Kriegfu\u0308hrung" + ], + "md5": "fcea83960e7bf4268d5dcf69ae5a3467" + }, + { + "authorized_access_point": "Double-Chooz-Experiment", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1073212491" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1073212491" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1073212491" + } + ], + "identifier": "http://d-nb.info/gnd/1073212491", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Homepage - http://doublechooz.in2p3.fr" + ] + }, + { + "noteType": "general", + "label": [ + "Experiment zur Bestimmung der Umwandlungswahrscheinlichkeit (Mischungswinkel \u03b813) von Elektronenneutrinos bei Neutrinooszillationen." + ] + } + ], + "pid": "1073212491", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Neutrinooszillation" + } + ], + "broader": [ + { + "authorized_access_point": "Teilchendetektor" + } + ], + "variant_access_point": [ + "Double Chooz", + "Double Chooz experiment", + "Double-Chooz-Detektor", + "Double Chooz detector" + ], + "md5": "1ca26feb92225dc1b18fd46678e349c2" + }, + { + "authorized_access_point": "Personalreferentin", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1072727021" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1072727021" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1072727021" + } + ], + "identifier": "http://d-nb.info/gnd/1072727021", + "pid": "1072727021", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Personalverwaltung" + }, + { + "authorized_access_point": "Personalentwicklung" + }, + { + "authorized_access_point": "Personalreferent" + } + ], + "md5": "fd0cc623ee96c3dec06ba96c7ab7faff" + }, + { + "authorized_access_point": "Personalreferent", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1072723875" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1072723875" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1072723875" + } + ], + "identifier": "http://d-nb.info/gnd/1072723875", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Personalreferent&oldid=212451022" + ] + } + ], + "pid": "1072723875", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Personalentwicklung" + }, + { + "authorized_access_point": "Personalverwaltung" + }, + { + "authorized_access_point": "Personalreferentin" + } + ], + "md5": "234bcb8da8797ea5d9dd2dc16923d4f5" + }, + { + "authorized_access_point": "Rapmusikerin", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/107257439X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)107257439X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)107257439X" + } + ], + "identifier": "http://d-nb.info/gnd/107257439X", + "closeMatch": [ + { + "authorized_access_point": "Women rap musicians", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331602416" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2008006704" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2008006704" + } + ] + }, + { + "authorized_access_point": "Rappeuses", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331602416" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17881108" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17881108f" + } + ] + } + ], + "pid": "107257439X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Musikerin" + } + ], + "related": [ + { + "authorized_access_point": "Rapmusiker" + } + ], + "variant_access_point": [ + "Rap", + "Rapperin" + ], + "md5": "a494ecaa5044e6439da2f96a5842c9b8" + }, + { + "authorized_access_point": "Polar-Code (Codierungstheorie)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1070750409" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1070750409" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1070750409" + } + ], + "identifier": "http://d-nb.info/gnd/1070750409", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Kanalkodierung&oldid=243666848#Polar_Codes" + ] + } + ], + "pid": "1070750409", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Blockcode" + }, + { + "authorized_access_point": "Fehlerkorrekturcode" + } + ], + "md5": "efbb1b7273ba10664cc6b313307d7e09" + }, + { + "authorized_access_point": "Ethnisches Profiling", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1069698822" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1069698822" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1069698822" + } + ], + "identifier": "http://d-nb.info/gnd/1069698822", + "closeMatch": [ + { + "authorized_access_point": "Racial profiling in law enforcement", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331567602" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh00007474" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh00007474" + } + ] + }, + { + "authorized_access_point": "Profilage ethnique", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331567602" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16571541" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16571541h" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "U\u0308berwiegend benutzt im Zusammenhang mit polizeilichen und beho\u0308rdlichen Ma\u00dfnahmen" + ] + } + ], + "pid": "1069698822", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Auslese" + }, + { + "authorized_access_point": "Institutioneller Rassismus" + } + ], + "variant_access_point": [ + "Racial Profiling" + ], + "md5": "2733cb538d4ce31b825fa09dac425085" + }, + { + "authorized_access_point": "Gender-Medizin", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1069336971" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1069336971" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1069336971" + } + ], + "identifier": "http://d-nb.info/gnd/1069336971", + "note": [ + { + "noteType": "general", + "label": [ + "Gender-Medizin ist ein Teilgebiet der Humanmedizin und der personalisierten Medizin und bescha\u0308ftigt sich mit dem Einfluss von biologischen und soziokulturellen Geschlechteraspekten auf die Pra\u0308vention, Entstehung, Diagnose, Therapie und Erforschung von Erkrankungen." + ] + } + ], + "pid": "1069336971", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Individualisierte Medizin" + } + ], + "variant_access_point": [ + "Geschlechtsspezifische Medizin", + "Gender medicine", + "Gender-specific medicine" + ], + "md5": "9b9bd3fd8bfced48ca26b0e6639dd120" + }, + { + "authorized_access_point": "Minecraft (Computerspiel)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1068604875" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1068604875" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1068604875" + } + ], + "identifier": "http://d-nb.info/gnd/1068604875", + "closeMatch": [ + { + "authorized_access_point": "Minecraft (Game)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331592720" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2012000023" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2012000023" + } + ] + }, + { + "authorized_access_point": "Minecraft (jeu vide\u0301o)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331592720" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16737735" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb167377353" + } + ] + } + ], + "pid": "1068604875", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Computerspiel" + } + ], + "md5": "b856304b8837a25029cd2dbefeefbefd" + }, + { + "authorized_access_point": "Bogolan", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1066801789" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1066801789" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1066801789" + } + ], + "identifier": "http://d-nb.info/gnd/1066801789", + "closeMatch": [ + { + "authorized_access_point": "Bogolan cloth", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332765262" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2001002069" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2001002069" + } + ] + }, + { + "authorized_access_point": "Bogolan", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332765262" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12207632" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12207632r" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/wiki/Bogolan" + ] + }, + { + "noteType": "general", + "label": [ + "handgewebte Baumwollstoffe, Produkt einer afrikanischen Web- und Fa\u0308rbetechnik, die urspru\u0308nglich in Mali beheimatet ist" + ] + } + ], + "pid": "1066801789", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Stoff (Textilien)" + } + ], + "variant_access_point": [ + "Mud Cloth", + "Bogolanfini" + ], + "md5": "5249154a216dd76c7cbbefd96993e09e" + }, + { + "authorized_access_point": "Radiererin", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1064698727" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1064698727" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1064698727" + } + ], + "identifier": "http://d-nb.info/gnd/1064698727", + "closeMatch": [ + { + "authorized_access_point": "Women engravers", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113386158X" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85147529" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85147529" + } + ] + }, + { + "authorized_access_point": "Graveuses", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113386158X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13554116" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb135541163" + } + ] + } + ], + "pid": "1064698727", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Radierer" + } + ], + "md5": "e905dd81aa477b10453057a7bf6eda03" + }, + { + "authorized_access_point": "Roteichen-Zwergwickler", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1064281230" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1064281230" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1064281230" + } + ], + "identifier": "http://d-nb.info/gnd/1064281230", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Internet - http://www.lepiforum.de/lepiwiki.pl?Bucculatrix_Ainsliella" + ] + }, + { + "noteType": "general", + "label": [ + "In den USA verbreitete Mottenart aus der Familie der Bucculatricidae" + ] + } + ], + "pid": "1064281230", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motten (Familie)" + } + ], + "variant_access_point": [ + "Bucculatrix ainsliella" + ], + "md5": "b7ce2db39ff71bb8f63fd261fe1aa7b9" + }, + { + "authorized_access_point": "Thysanoplusia orichalcea", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1064280692" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1064280692" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1064280692" + } + ], + "identifier": "http://d-nb.info/gnd/1064280692", + "note": [ + { + "noteType": "general", + "label": [ + "Nachtfalter aus der Familie der Eulenfalter" + ] + } + ], + "pid": "1064280692", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Eulen (Schmetterlinge)" + } + ], + "md5": "4a138c93808b71a2373097a50c1b30e2" + }, + { + "authorized_access_point": "Wiesenrauten-Goldeule", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/106427546X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)106427546X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)106427546X" + } + ], + "identifier": "http://d-nb.info/gnd/106427546X", + "note": [ + { + "noteType": "general", + "label": [ + "Nachtfalter aus der Familie der Eulenfalter" + ] + } + ], + "pid": "106427546X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Eulen (Schmetterlinge)" + } + ], + "variant_access_point": [ + "Lamprotes c-aureum" + ], + "md5": "79dfdc43b727dbfac9b9f818c47599e1" + }, + { + "authorized_access_point": "Mundart Westfla\u0308misch (Roeselare)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1064098363" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1064098363" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1064098363" + } + ], + "identifier": "http://d-nb.info/gnd/1064098363", + "pid": "1064098363", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Westfla\u0308misch" + } + ], + "variant_access_point": [ + "Roeselaars" + ], + "md5": "04dd6fea5da2fa3319d70e24fa64a2f4" + }, + { + "authorized_access_point": "Managementwissenschaftlerin", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1063927137" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1063927137" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1063927137" + } + ], + "identifier": "http://d-nb.info/gnd/1063927137", + "pid": "1063927137", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Wissenschaftlerin" + } + ], + "related": [ + { + "authorized_access_point": "Managementwissenschaftler" + } + ], + "md5": "e36a49b12e7f40d3184e366cc7aaa014" + }, + { + "authorized_access_point": "Managementwissenschaftler", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1063927110" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1063927110" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1063927110" + } + ], + "identifier": "http://d-nb.info/gnd/1063927110", + "pid": "1063927110", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Wissenschaftler" + } + ], + "related": [ + { + "authorized_access_point": "Managementwissenschaftlerin" + } + ], + "md5": "a0ab71b3e35f1e4c2f31f81e47697f61" + }, + { + "authorized_access_point": "Kieferchirurg", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1063925908" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1063925908" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1063925908" + } + ], + "identifier": "http://d-nb.info/gnd/1063925908", + "pid": "1063925908", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Chirurg" + } + ], + "related": [ + { + "authorized_access_point": "Kieferchirurgie" + } + ], + "md5": "73660c3e18c7dd1d7435824b0e93c3f3" + }, + { + "authorized_access_point": "Gru\u0308nlaubsa\u0308nger", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1063349230" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1063349230" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1063349230" + } + ], + "identifier": "http://d-nb.info/gnd/1063349230", + "note": [ + { + "noteType": "general", + "label": [ + "Singvogel aus der Familie der Grasmu\u0308ckenartigen (Sylviidae), geho\u0308rt zur Gattung der Laubsa\u0308nger (Phylloscopus)" + ] + } + ], + "pid": "1063349230", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Grasmu\u0308cken (Familie)" + } + ], + "variant_access_point": [ + "Phylloscopus trochiloides" + ], + "md5": "734b3d1e4cc19668272e5dbd7cf17232" + }, + { + "authorized_access_point": "Eduard-Mu\u0308ller-Krematorium (Hagen, Motiv)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1062937325" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1062937325" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1062937325" + } + ], + "identifier": "http://d-nb.info/gnd/1062937325", + "pid": "1062937325", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "907f73f27978d638823c5fc189662b8c" + }, + { + "authorized_access_point": "Teatr'Absentia", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1060931796" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1060931796" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1060931796" + } + ], + "identifier": "http://d-nb.info/gnd/1060931796", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Internet - http://www.inboxproject.it/schedacompagnia.php?lang=&id=617" + ] + }, + { + "noteType": "general", + "label": [ + "Theaterkonzept des Installationsku\u0308nstlers Paolo Ferrari" + ] + } + ], + "pid": "1060931796", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Theater" + } + ], + "related": [ + { + "authorized_access_point": "Theater der Grausamkeit" + } + ], + "variant_access_point": [ + "Teatro dell'Oggetto Mancato", + "Teatro dell'O.M.", + "T.O.M." + ], + "md5": "6fa5f74f1a73c97a6b56c46cdc1e64ee" + }, + { + "authorized_access_point": "Mundart Westfa\u0308lisch (Marienmu\u0308nster-Vo\u0308rden)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1060912503" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1060912503" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1060912503" + } + ], + "identifier": "http://d-nb.info/gnd/1060912503", + "pid": "1060912503", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Westfa\u0308lisch" + } + ], + "variant_access_point": [ + "Vo\u0308rdener Platt" + ], + "md5": "7d42e6369d3269807f790ce35434b92b" + }, + { + "authorized_access_point": "Mundart Westfa\u0308lisch (Steinhagen, Gu\u0308tersloh)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1060909251" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1060909251" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1060909251" + } + ], + "identifier": "http://d-nb.info/gnd/1060909251", + "pid": "1060909251", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Westfa\u0308lisch" + } + ], + "md5": "35389ed9a54ec40b5fe3dd316a791ad2" + }, + { + "authorized_access_point": "Mundart Westfa\u0308lisch (Unna)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1060907534" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1060907534" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1060907534" + } + ], + "identifier": "http://d-nb.info/gnd/1060907534", + "pid": "1060907534", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Westfa\u0308lisch" + } + ], + "variant_access_point": [ + "Unnaer Platt" + ], + "md5": "af0f41ebf895dc4001ec24f9892c8c3e" + }, + { + "authorized_access_point": "Mundart Westfa\u0308lisch (Reken- Klein Reken)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1060882345" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1060882345" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1060882345" + } + ], + "identifier": "http://d-nb.info/gnd/1060882345", + "pid": "1060882345", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Westfa\u0308lisch" + } + ], + "md5": "0e20a8138303406b8658837ab39daba4" + }, + { + "authorized_access_point": "Mundart Westfa\u0308lisch (Hagen-Hohenlimburg)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1060882191" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1060882191" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1060882191" + } + ], + "identifier": "http://d-nb.info/gnd/1060882191", + "pid": "1060882191", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Westfa\u0308lisch" + } + ], + "md5": "a03093bd2dfd8ec54b5dbd70b5b61959" + }, + { + "authorized_access_point": "Mundart Westfa\u0308lisch (Gronau (Westf.))", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1060881373" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1060881373" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1060881373" + } + ], + "identifier": "http://d-nb.info/gnd/1060881373", + "pid": "1060881373", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Westfa\u0308lisch" + } + ], + "md5": "764f5f3ae2645654f4996162b8e0b697" + }, + { + "authorized_access_point": "Mundart Westfa\u0308lisch (Ahaus-Alsta\u0308tte)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1060881039" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1060881039" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1060881039" + } + ], + "identifier": "http://d-nb.info/gnd/1060881039", + "pid": "1060881039", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Westfa\u0308lisch" + } + ], + "md5": "99fe531bf25a9a2fb9334c560269ecd7" + }, + { + "authorized_access_point": "Mundart Westfla\u0308misch (Torhout)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1060858703" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1060858703" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1060858703" + } + ], + "identifier": "http://d-nb.info/gnd/1060858703", + "pid": "1060858703", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Westfla\u0308misch" + } + ], + "md5": "dd3315ba5bccee1d03c3607b856e5119" + }, + { + "authorized_access_point": "Comenius-Preis", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1060811529" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1060811529" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1060811529" + } + ], + "identifier": "http://d-nb.info/gnd/1060811529", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Homepage J. A. Comenius-Stiftung - http://www.comenius-stiftung.de/" + ] + }, + { + "noteType": "general", + "label": [ + "Seit 1992 an Menschen, die sich in besonderer Weise um die Kinder- und Jugendhilfe verdient gemacht haben, vergebener Preis" + ] + } + ], + "pid": "1060811529", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Preis (Auszeichnung)" + } + ], + "related": [ + { + "authorized_access_point": "Jugendhilfe" + } + ], + "variant_access_point": [ + "J.-A.-Comenius-Preis" + ], + "md5": "706ba0d4287e9220d3cdf73e4990f2de" + }, + { + "authorized_access_point": "Mundart Westfa\u0308lisch (Osnabru\u0308cker Land)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1060804263" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1060804263" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1060804263" + } + ], + "identifier": "http://d-nb.info/gnd/1060804263", + "pid": "1060804263", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Westfa\u0308lisch" + } + ], + "variant_access_point": [ + "Osnabru\u0308cker Platt" + ], + "md5": "2dd2df93e238a04e010571e3991e11bc" + }, + { + "authorized_access_point": "Blauer Baumwaran", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1060778947" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1060778947" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1060778947" + } + ], + "identifier": "http://d-nb.info/gnd/1060778947", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Internet - http://species.wikimedia.org/wiki/Varanus_macraei", + "Internet - http://reptile-database.reptarium.cz/species?genus=Varanus&species=macraei&search_param=%28%28search%3D%27varanus+macraei%27%29%29" + ] + } + ], + "pid": "1060778947", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Warane" + } + ], + "variant_access_point": [ + "Varanus macraei", + "Blaugefleckter Baumwaran", + "MacRae's Waran" + ], + "md5": "9bf5e9cb58100bcbb9580384814075c5" + }, + { + "authorized_access_point": "Frechheit (Motiv)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1060674483" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1060674483" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1060674483" + } + ], + "identifier": "http://d-nb.info/gnd/1060674483", + "pid": "1060674483", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "9e6f260080bed5ddc0df31a8e4281dba" + }, + { + "authorized_access_point": "Mundart Mittelitalienisch, Marken (San Severino Marche)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1060581957" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1060581957" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1060581957" + } + ], + "identifier": "http://d-nb.info/gnd/1060581957", + "pid": "1060581957", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Mundart Mittelitalienisch (Marken)" + } + ], + "md5": "868966f8cdefc7aa3412ca04f3ae5a90" + }, + { + "authorized_access_point": "Mundart Sizilianisch (Lentini)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1060577895" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1060577895" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1060577895" + } + ], + "identifier": "http://d-nb.info/gnd/1060577895", + "pid": "1060577895", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Sizilianisch" + } + ], + "md5": "ef2f4c01fb864545e09726f6068716a3" + }, + { + "authorized_access_point": "Mundart Burgundisch (Puisaye)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/106057683X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)106057683X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)106057683X" + } + ], + "identifier": "http://d-nb.info/gnd/106057683X", + "pid": "106057683X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Burgundisch" + } + ], + "md5": "56ced0abdfc6a27f92b60c1d66d3586d" + }, + { + "authorized_access_point": "Koordinatorin", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1060521229" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1060521229" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1060521229" + } + ], + "identifier": "http://d-nb.info/gnd/1060521229", + "note": [ + { + "noteType": "dataSource", + "label": [ + "DWDS - https://www.dwds.de/wb/Koordinator" + ] + } + ], + "pid": "1060521229", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Koordinator" + } + ], + "md5": "122ae9b39e4db786d56f77305e781fed" + }, + { + "authorized_access_point": "SDL Trados Studio 2014", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1060471329" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1060471329" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1060471329" + } + ], + "identifier": "http://d-nb.info/gnd/1060471329", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Homepage - http://www.sdl.com/products/sdl-trados-studio/", + "Wikipedia - http://de.wikipedia.org/wiki/SDL_Trados#SDL_Trados_Studio_2014" + ] + } + ], + "pid": "1060471329", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "U\u0308bersetzungsspeicher" + }, + { + "authorized_access_point": "Computerunterstu\u0308tzte U\u0308bersetzung" + } + ], + "broader": [ + { + "authorized_access_point": "Programm" + } + ], + "md5": "a3729afe72d46f2e95cc4fda31d637ab" + }, + { + "authorized_access_point": "SeverinsBu\u0308rgerpreis", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1060399172" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1060399172" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1060399172" + } + ], + "identifier": "http://d-nb.info/gnd/1060399172", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Homepage - http://www.severinsbuergerpreis.de/" + ] + }, + { + "noteType": "general", + "label": [ + "Seit 1984 ja\u0308hrlich verliehener Preis fu\u0308r Personen oder Institutionen, die sich in besonderem Ma\u00dfe um ko\u0308lnische Sprache, Kultur und Lebensart sowie ko\u0308lnisches Brauchtum verdient gemacht haben" + ] + } + ], + "pid": "1060399172", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kulturpreis" + } + ], + "variant_access_point": [ + "Severins-Bu\u0308rgerpreis", + "Severinsbu\u0308rgerpreis" + ], + "md5": "340d14bcf15eeac77414e018a3b49b6e" + }, + { + "authorized_access_point": "Verwandtenehe (Motiv)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1060358328" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1060358328" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1060358328" + } + ], + "identifier": "http://d-nb.info/gnd/1060358328", + "pid": "1060358328", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "b6926405fb232aef17f5466c13436e4f" + }, + { + "authorized_access_point": "Mundart Italienisch (San Severino Marche)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/106013411X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)106013411X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)106013411X" + } + ], + "identifier": "http://d-nb.info/gnd/106013411X", + "pid": "106013411X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Italienisch" + } + ], + "md5": "3af77bc67eef5b5c9e39458b1f0d7a03" + }, + { + "authorized_access_point": "Senn (Motiv)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1060114909" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1060114909" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1060114909" + } + ], + "identifier": "http://d-nb.info/gnd/1060114909", + "pid": "1060114909", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "3dc202b9a5321b3aca72c44133d26037" + }, + { + "authorized_access_point": "Kappa-Zahl", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1060090236" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1060090236" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1060090236" + } + ], + "identifier": "http://d-nb.info/gnd/1060090236", + "note": [ + { + "noteType": "general", + "label": [ + "Ma\u00df fu\u0308r die relative Ha\u0308rte, die Bleichbarkeit und den Aufschlussgrad von Zellstoffen" + ] + } + ], + "pid": "1060090236", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zahlenwert" + }, + { + "authorized_access_point": "Zellstoff" + } + ], + "variant_access_point": [ + "Kappazahl", + "Kappa number" + ], + "md5": "04ad1a9f8a84c6515daa701b95683143" + }, + { + "authorized_access_point": "Pandemie (Motiv)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1060077914" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1060077914" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1060077914" + } + ], + "identifier": "http://d-nb.info/gnd/1060077914", + "pid": "1060077914", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "9432a501548a58d308eed165d8c8d8fd" + }, + { + "authorized_access_point": "Grippe (Motiv)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1060077817" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1060077817" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1060077817" + } + ], + "identifier": "http://d-nb.info/gnd/1060077817", + "pid": "1060077817", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "eb422b707fb879800c74e45fd29993f3" + }, + { + "authorized_access_point": "Nanodisc", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1059889455" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1059889455" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1059889455" + } + ], + "identifier": "http://d-nb.info/gnd/1059889455", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - http://en.wikipedia.org" + ] + }, + { + "noteType": "general", + "label": [ + "Selbstorganisierende Modellmembran aus einem kleinen Lipiddoppelschicht-Fragment und zwei Kopien eines amphipathischen Geru\u0308stproteins; Nanodiscs eignen sich zur funktionellen Rekonstitution und Solubilisierung zahlreicher integraler Membranproteine" + ] + } + ], + "pid": "1059889455", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Nanobiotechnologie" + }, + { + "authorized_access_point": "Phospholipidmembran" + } + ], + "variant_access_point": [ + "Nanodisk", + "Nano-Disc", + "Nano-Disk" + ], + "md5": "30b8fb1a96720751ed8d26aec84ce92f" + }, + { + "authorized_access_point": "Adventssingen", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1059823527" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1059823527" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1059823527" + } + ], + "identifier": "http://d-nb.info/gnd/1059823527", + "pid": "1059823527", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Vokalmusik" + }, + { + "authorized_access_point": "Advent" + } + ], + "md5": "b87698b18f5b0e3099ce9acd2eea685b" + }, + { + "authorized_access_point": "Eurocopter X\u00b3", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1059732483" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1059732483" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1059732483" + } + ], + "identifier": "http://d-nb.info/gnd/1059732483", + "note": [ + { + "noteType": "general", + "label": [ + "Flugschrauber, ein Prototyp steht heute im Muse\u0301e de l\u2019air et de l\u2019espace in Le Bourget bei Paris" + ] + } + ], + "pid": "1059732483", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Hubschrauber" + } + ], + "variant_access_point": [ + "X\u00b3", + "X3", + "Eurocopter X3", + "X 3", + "Highspeed-Hybrid-Helicopter", + "H3" + ], + "md5": "4410dc4c0bacd7a6375ecc33d5c1d669" + }, + { + "authorized_access_point": "Hu\u0308zu\u0308n", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/105962091X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)105962091X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)105962091X" + } + ], + "identifier": "http://d-nb.info/gnd/105962091X", + "note": [ + { + "noteType": "general", + "label": [ + "Seelenhaltung der Melancholie u. Traurigkeit in der tu\u0308rkischen Kultur" + ] + } + ], + "pid": "105962091X", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Melancholie" + }, + { + "authorized_access_point": "Traurigkeit" + } + ], + "md5": "a03449a114ff6f79255b8d2fdf824e5f" + }, + { + "authorized_access_point": "Li\u0301tost", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/105960552X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)105960552X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)105960552X" + } + ], + "identifier": "http://d-nb.info/gnd/105960552X", + "note": [ + { + "noteType": "general", + "label": [ + "Seelenhaltung der Traurigkeit und des Bedauerns in der tschechischen Kultur" + ] + } + ], + "pid": "105960552X", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Traurigkeit" + }, + { + "authorized_access_point": "Reue" + } + ], + "md5": "19a136022cea6dc67cd3dbccf677ed65" + }, + { + "authorized_access_point": "Spieleautor", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1059558653" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1059558653" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1059558653" + } + ], + "identifier": "http://d-nb.info/gnd/1059558653", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - http://de.wikipedia.org/wiki/Spieleautor" + ] + }, + { + "noteType": "general", + "label": [ + "Spieleautoren erfinden und entwickeln Gesellschaftsspiele." + ] + } + ], + "pid": "1059558653", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Spieleautorin" + }, + { + "authorized_access_point": "Gesellschaftsspiel" + } + ], + "broader": [ + { + "authorized_access_point": "Autor" + } + ], + "variant_access_point": [ + "Spiele-Autor" + ], + "md5": "b121d96f9a34cdd905709901744dd360" + }, + { + "authorized_access_point": "Carabus apotomopterus", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1059464667" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1059464667" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1059464667" + } + ], + "identifier": "http://d-nb.info/gnd/1059464667", + "note": [ + { + "noteType": "general", + "label": [ + "Untergattung d. Familie d. Laufka\u0308fer" + ] + } + ], + "pid": "1059464667", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Laufka\u0308fer" + } + ], + "md5": "bbeae53abb715a2d695f4b8b70c9a755" + }, + { + "authorized_access_point": "Zentrifugenwaage", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1059463385" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1059463385" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1059463385" + } + ], + "identifier": "http://d-nb.info/gnd/1059463385", + "note": [ + { + "noteType": "general", + "label": [ + "Waage zur Kontrolle des gleichma\u0308\u00dfigen Gewichts von Zentrifugenro\u0308hrchen, bis Mitte des 20. Jh. in Gebrauch" + ] + } + ], + "pid": "1059463385", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Waage" + }, + { + "authorized_access_point": "Laborgera\u0308t" + } + ], + "md5": "fe2925c40102e87cce83093243f50153" + }, + { + "authorized_access_point": "Riesensalamander", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1059408058" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1059408058" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1059408058" + } + ], + "identifier": "http://d-nb.info/gnd/1059408058", + "note": [ + { + "noteType": "general", + "label": [ + "Familie d. Schwanzlurche" + ] + } + ], + "pid": "1059408058", + "type": "bf:Topic", + "variant_access_point": [ + "Cryptobranchidae" + ], + "md5": "71eb0d2da77715c24bd2fc4f2c25ff38" + }, + { + "authorized_access_point": "Defibrinierung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1059388502" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1059388502" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1059388502" + } + ], + "identifier": "http://d-nb.info/gnd/1059388502", + "note": [ + { + "noteType": "general", + "label": [ + "Entfernen von Fibrinogen aus Blut oder Plasma durch U\u0308berfu\u0308hren in Fibrin" + ] + } + ], + "pid": "1059388502", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fibrinogen" + } + ], + "variant_access_point": [ + "Defibrinieren" + ], + "md5": "03854495bcac7a82f7013d0563fd6561" + }, + { + "authorized_access_point": "Schlammteufel", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1059388499" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1059388499" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1059388499" + } + ], + "identifier": "http://d-nb.info/gnd/1059388499", + "note": [ + { + "noteType": "general", + "label": [ + "Monospezif. Gattung aus d. Familie d. Riesensalamander" + ] + } + ], + "pid": "1059388499", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Riesensalamander" + } + ], + "variant_access_point": [ + "Cryptobranchus alleganiensis", + "Hellbender" + ], + "md5": "b009347dc4ab83e0346af19ab0094d81" + }, + { + "authorized_access_point": "Schlagflu\u0308gel", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1059388464" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1059388464" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1059388464" + } + ], + "identifier": "http://d-nb.info/gnd/1059388464", + "pid": "1059388464", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tragflu\u0308gel" + } + ], + "md5": "9a80799fb57337dd174d898d87ed6831" + }, + { + "authorized_access_point": "Pioneer 11", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1059384434" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1059384434" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1059384434" + } + ], + "identifier": "http://d-nb.info/gnd/1059384434", + "pid": "1059384434", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Raumsonde" + } + ], + "md5": "5f823fe2ba259e5d5124c8ba45c7fcc7" + }, + { + "authorized_access_point": "Pioneer 10", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1059383780" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1059383780" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1059383780" + } + ], + "identifier": "http://d-nb.info/gnd/1059383780", + "pid": "1059383780", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Raumsonde" + } + ], + "variant_access_point": [ + "Pioneer-Saturn" + ], + "md5": "292d83b506c8282fcd4a79a74b97fec4" + }, + { + "authorized_access_point": "Schirmfo\u0308rmige Glanzleuchteralge", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1059323001" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1059323001" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1059323001" + } + ], + "identifier": "http://d-nb.info/gnd/1059323001", + "pid": "1059323001", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Armleuchteralgen (Familie)" + } + ], + "variant_access_point": [ + "Zarteste Glanzleuchteralge", + "Nitella tenuissima" + ], + "md5": "196995a7cd326e9df1f06de87b31287f" + }, + { + "authorized_access_point": "Goldschakal", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1059271745" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1059271745" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1059271745" + } + ], + "identifier": "http://d-nb.info/gnd/1059271745", + "note": [ + { + "noteType": "general", + "label": [ + "Art d. Familie d. Canidae" + ] + } + ], + "pid": "1059271745", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Hundeartige" + } + ], + "variant_access_point": [ + "Canis aureus" + ], + "md5": "e77cf07f1a68797653835b0a6624977c" + }, + { + "authorized_access_point": "Canon EOS 1200D", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1059254697" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1059254697" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1059254697" + } + ], + "identifier": "http://d-nb.info/gnd/1059254697", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Homepage - http://www.canon.de/For_Home/Product_Finder/Cameras/Digital_SLR/EOS_1200D/discover/" + ] + } + ], + "pid": "1059254697", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Spiegelreflexkamera" + }, + { + "authorized_access_point": "Digitalkamera" + } + ], + "md5": "93bc9ec0f1cf8d2b711851d31d5cbf21" + }, + { + "authorized_access_point": "Nikon D3300", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1059254646" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1059254646" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1059254646" + } + ], + "identifier": "http://d-nb.info/gnd/1059254646", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Homepage - http://www.nikon.de/de_DE/product/digital-cameras/slr/consumer/d3300" + ] + } + ], + "pid": "1059254646", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Spiegelreflexkamera" + }, + { + "authorized_access_point": "Digitalkamera" + } + ], + "md5": "f8bd864b816c9eb29046d0c15ebffcd4" + }, + { + "authorized_access_point": "Weibliche Steuerfachangestellte", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1059226529" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1059226529" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1059226529" + } + ], + "identifier": "http://d-nb.info/gnd/1059226529", + "pid": "1059226529", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bu\u0308roberuf" + } + ], + "related": [ + { + "authorized_access_point": "Steuerfachangestellter" + } + ], + "variant_access_point": [ + "Steuerfachgehilfin", + "Fachgehilfin in steuer- und wirtschaftsberatenden Berufen", + "Steuergehilfin", + "Weibliche Fachangestellte fu\u0308r steuer- und wirtschaftsberatende Berufe" + ], + "md5": "3cacb4627d12c1ad90ffea9eeb498d9e" + }, + { + "authorized_access_point": "Diesellokomotive Baureihe 2048", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1059152312" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1059152312" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1059152312" + } + ], + "identifier": "http://d-nb.info/gnd/1059152312", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia als O\u0308BB 2048 - https://de.wikipedia.org/wiki/%C3%96BB_2048" + ] + }, + { + "noteType": "general", + "label": [ + "o\u0308sterr. Diesellokomotive", + "Die Baureihe entstand ab 1991 durch Umbau aus DB Reihe 211 (vormals V 100)" + ] + } + ], + "pid": "1059152312", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Diesellokomotive Baureihe V 100" + }, + { + "authorized_access_point": "Diesellokomotive Baureihe 211" + } + ], + "broader": [ + { + "authorized_access_point": "Diesellokomotive" + } + ], + "variant_access_point": [ + "O\u0308BB 2048" + ], + "md5": "76cb97bea81fee2d52e04a155a68254c" + }, + { + "authorized_access_point": "Ma\u0308tresse (Motiv)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1059103257" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1059103257" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1059103257" + } + ], + "identifier": "http://d-nb.info/gnd/1059103257", + "pid": "1059103257", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "variant_access_point": [ + "Maitresse (Motiv)" + ], + "md5": "34802e5ca68f42c4e1b272826a9507da" + }, + { + "authorized_access_point": "Graswurzel-Journalismus", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1059090767" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1059090767" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1059090767" + } + ], + "identifier": "http://d-nb.info/gnd/1059090767", + "closeMatch": [ + { + "authorized_access_point": "Citizen journalism", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1219100331" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2009003468" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2009003468" + } + ] + }, + { + "authorized_access_point": "Journalisme participatif", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1219100331" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF15619301" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb15619301f" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Graswurzel-Journalismus&oldid=195160241" + ] + }, + { + "noteType": "general", + "label": [ + "Journalismus, in dem Bu\u0308rger eine aktive Rolle im Prozess der Recherche, des Berichtens, des Analysierens sowie des Verbreitens von Nachrichten und Informationen einnehmen" + ] + } + ], + "pid": "1059090767", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Journalismus" + } + ], + "variant_access_point": [ + "Bu\u0308rger-Journalismus", + "Partizipativer Journalismus", + "Citizen journalism" + ], + "md5": "b1eb3ce53314f44bcc56fc83fa8a0a84" + }, + { + "authorized_access_point": "Family Literacy", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1059087871" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1059087871" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1059087871" + } + ], + "identifier": "http://d-nb.info/gnd/1059087871", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://en.wikipedia.org/w/index.php?title=Family_literacy&oldid=1070312475" + ] + }, + { + "noteType": "general", + "label": [ + "Generationsu\u0308bergreifender Lernansatz zur Fo\u0308rderung von Schriftsprachkompetenz" + ] + } + ], + "pid": "1059087871", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Schreib- und Lesefa\u0308higkeit" + } + ], + "broader": [ + { + "authorized_access_point": "Bildungsfo\u0308rderung" + }, + { + "authorized_access_point": "Alphabetisierung" + } + ], + "md5": "6eeef44521d0fe5a213611322742b4a5" + }, + { + "authorized_access_point": "Bag\u0306lamaspiel", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1058986295" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1058986295" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1058986295" + } + ], + "identifier": "http://d-nb.info/gnd/1058986295", + "pid": "1058986295", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Sazspiel" + } + ], + "variant_access_point": [ + "Bag\u0306lama", + "Langhalslaute" + ], + "md5": "b91f2ff1bbb55eaaac6ffd1be6da57a8" + }, + { + "authorized_access_point": "Kreiseltheodolit", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/105896920X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)105896920X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)105896920X" + } + ], + "identifier": "http://d-nb.info/gnd/105896920X", + "pid": "105896920X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Theodolit" + } + ], + "md5": "e6244209713cd13e0c602daac0b2dd05" + }, + { + "authorized_access_point": "RhB Ge 4/6", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1058846361" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1058846361" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1058846361" + } + ], + "identifier": "http://d-nb.info/gnd/1058846361", + "pid": "1058846361", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Elektrolokomotive" + }, + { + "authorized_access_point": "Schmalspurlokomotive" + } + ], + "variant_access_point": [ + "Ge 4/6", + "Gebirgslokomotive 4/6" + ], + "md5": "19092ebb0cc850c92cb71c5114898c39" + }, + { + "authorized_access_point": "Orangenpapier", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1058723790" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1058723790" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1058723790" + } + ], + "identifier": "http://d-nb.info/gnd/1058723790", + "note": [ + { + "noteType": "general", + "label": [ + "Meist du\u0308nnes, mit bunten Motiven bedrucktes Papier, in das Orangen eingewickelt zum Verkauf angeboten werden; als Sammelobjekt beliebt" + ] + } + ], + "pid": "1058723790", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Papierverpackung" + } + ], + "md5": "5154aa41e0baece0a8e2020414e41acb" + }, + { + "authorized_access_point": "Hiebssatz", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1058674900" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1058674900" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1058674900" + } + ], + "identifier": "http://d-nb.info/gnd/1058674900", + "pid": "1058674900", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Holzeinschlag" + } + ], + "variant_access_point": [ + "Hiebsatz", + "Nutzungssatz", + "Abnutzungssatz" + ], + "md5": "1de94754cada8c8c8c209219a50ede87" + }, + { + "authorized_access_point": "PZL P.11", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1058669559" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1058669559" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1058669559" + } + ], + "identifier": "http://d-nb.info/gnd/1058669559", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - http://de.wikipedia.org/wiki/PZL_P.11" + ] + }, + { + "noteType": "general", + "label": [ + "1931-1939 von den staatlichen polnischen Flugzeugwerken (PZL) in mehreren Serien gebautes Jagdflugzeug; bei Ausbruch des Zweiten Weltkrieges Standardja\u0308ger der polnischen Luftwaffe." + ] + } + ], + "pid": "1058669559", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Jagdflugzeug" + } + ], + "variant_access_point": [ + "P.11 (Jagdflugzeug)" + ], + "md5": "de02ae3b5de86013da577fe62cac690b" + }, + { + "authorized_access_point": "Radarelektroniker", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/105862394X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)105862394X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)105862394X" + } + ], + "identifier": "http://d-nb.info/gnd/105862394X", + "pid": "105862394X", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Radar" + } + ], + "broader": [ + { + "authorized_access_point": "Elektroniker" + } + ], + "variant_access_point": [ + "Radartechniker", + "Flugsicherungs-Radartechniker" + ], + "md5": "40580f873665090cadaf22e460df27d4" + }, + { + "authorized_access_point": "Mundart Sizilianisch (Pachino)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1058513710" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1058513710" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1058513710" + } + ], + "identifier": "http://d-nb.info/gnd/1058513710", + "pid": "1058513710", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Sizilianisch" + } + ], + "md5": "dd304889f97aa43b7c2beaec95bd192c" + }, + { + "authorized_access_point": "Ethnolekt", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1058507044" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1058507044" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1058507044" + } + ], + "identifier": "http://d-nb.info/gnd/1058507044", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Ethnolekt&oldid=193420767" + ] + }, + { + "noteType": "general", + "label": [ + "Sammelbegriff fu\u0308r sprachliche Varianten bzw. Sprechstile, die von Sprechern einer ethnischen (eigentlich: sprachlichen) Minderheit in einem bestimmten Sprachraum verwendet und als fu\u0308r sie typisch eingestuft werden" + ] + } + ], + "pid": "1058507044", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Soziolinguistik" + } + ], + "related": [ + { + "authorized_access_point": "Dialekt (Verhaltensforschung)" + }, + { + "authorized_access_point": "Soziolekt" + } + ], + "md5": "ebee3f8ce350e621324a153312a8843b" + }, + { + "authorized_access_point": "Tilopteridales", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1058389041" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1058389041" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1058389041" + } + ], + "identifier": "http://d-nb.info/gnd/1058389041", + "note": [ + { + "noteType": "general", + "label": [ + "Ordnung der Braunalgen" + ] + } + ], + "pid": "1058389041", + "type": "bf:Topic", + "md5": "32925755738bb6a4b470c92f20b26c3a" + }, + { + "authorized_access_point": "Mundart Westfa\u0308lisch (Brilon-Alme)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1058382799" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1058382799" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1058382799" + } + ], + "identifier": "http://d-nb.info/gnd/1058382799", + "pid": "1058382799", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Westfa\u0308lisch" + } + ], + "variant_access_point": [ + "Almer Platt" + ], + "md5": "8efa680b2d865e74211c900b1b2acdbe" + }, + { + "authorized_access_point": "Dochmius", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1058371266" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1058371266" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1058371266" + } + ], + "identifier": "http://d-nb.info/gnd/1058371266", + "note": [ + { + "noteType": "general", + "label": [ + "5-teiliger antiker Versfu\u00df" + ] + } + ], + "pid": "1058371266", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Versfu\u00df" + } + ], + "md5": "19a09f0855f07ff4032946e075f6bc06" + }, + { + "authorized_access_point": "Castrop-Rauxel (Motiv)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1058370677" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1058370677" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1058370677" + } + ], + "identifier": "http://d-nb.info/gnd/1058370677", + "pid": "1058370677", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "186a49e015caad48d539af67c433a23f" + }, + { + "authorized_access_point": "oht", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1058284371" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1058284371" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1058284371" + } + ], + "identifier": "http://d-nb.info/gnd/1058284371", + "note": [ + { + "noteType": "general", + "label": [ + "Kombiniere mit Sprachbezeichnung und SW Morphem, z. B. SWW Altenglisch ; Morphem ; oht" + ] + } + ], + "pid": "1058284371", + "type": "bf:Topic", + "md5": "e10f43463aa21e339795657998b6f6bb" + }, + { + "authorized_access_point": "aht (Morphem)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1058284304" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1058284304" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1058284304" + } + ], + "identifier": "http://d-nb.info/gnd/1058284304", + "note": [ + { + "noteType": "general", + "label": [ + "Kombiniere mit Sprachbezeichnung und SW Morphem, z. B. SWW Altenglisch ; Morphem ; aht, Morphem" + ] + } + ], + "pid": "1058284304", + "type": "bf:Topic", + "md5": "ac1692004edf15a6b79061aad4027121" + }, + { + "authorized_access_point": "OH/IR-Stern", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1058284096" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1058284096" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1058284096" + } + ], + "identifier": "http://d-nb.info/gnd/1058284096", + "pid": "1058284096", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Roter Riese" + } + ], + "md5": "0b187aa17156462ec32f0b22dba7e619" + }, + { + "authorized_access_point": "saelic", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1058280910" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1058280910" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1058280910" + } + ], + "identifier": "http://d-nb.info/gnd/1058280910", + "note": [ + { + "noteType": "general", + "label": [ + "Kombiniere mit Sprachbezeichnung und Wortart, z.B. SWW Mittelhochdeutsch ; Adjektiv ; saelic" + ] + } + ], + "pid": "1058280910", + "type": "bf:Topic", + "md5": "8f6618e4df2d79c63d11ded47e12596f" + }, + { + "authorized_access_point": "Hinterbein", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1058249436" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1058249436" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1058249436" + } + ], + "identifier": "http://d-nb.info/gnd/1058249436", + "note": [ + { + "noteType": "general", + "label": [ + "Benutzt fu\u0308r Tiere" + ] + } + ], + "pid": "1058249436", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bein" + } + ], + "variant_access_point": [ + "Hinterlauf" + ], + "md5": "878205a31639381b8be4dc3adfeaae02" + }, + { + "authorized_access_point": "Mundart Albanisch (Petreshtice\u0308)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1058206753" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1058206753" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1058206753" + } + ], + "identifier": "http://d-nb.info/gnd/1058206753", + "pid": "1058206753", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Gegisch" + } + ], + "variant_access_point": [ + "Petreshtice\u0308r Albanisch" + ], + "md5": "5dde538edc1ef7e12425448e25dd52ef" + }, + { + "authorized_access_point": "Bluesmusikerin", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1058118161" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1058118161" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1058118161" + } + ], + "identifier": "http://d-nb.info/gnd/1058118161", + "closeMatch": [ + { + "authorized_access_point": "Women blues musicians", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331602610" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh96006944" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh96006944" + } + ] + }, + { + "authorized_access_point": "Musiciennes de blues", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331602610" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16619055" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16619055p" + } + ] + } + ], + "pid": "1058118161", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Musikerin" + } + ], + "related": [ + { + "authorized_access_point": "Bluesmusiker" + }, + { + "authorized_access_point": "Blues" + } + ], + "md5": "fd26c413f2aa21047665b56dcd27dd43" + }, + { + "authorized_access_point": "Mundart Gaskonisch (Entre-deux-Mers)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1055857745" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1055857745" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1055857745" + } + ], + "identifier": "http://d-nb.info/gnd/1055857745", + "pid": "1055857745", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Gaskonisch" + } + ], + "md5": "2e5561364765db95bad3dc49b379199e" + }, + { + "authorized_access_point": "Spiritueller Tourismus", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1054037531" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1054037531" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1054037531" + } + ], + "identifier": "http://d-nb.info/gnd/1054037531", + "closeMatch": [ + { + "authorized_access_point": "Spiritual tourism", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332366457" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2021007042" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2021007042" + } + ] + }, + { + "authorized_access_point": "Tourisme spirituel", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332366457" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12323007" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12323007h" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Sammelbezeichnung fu\u0308r Reisen mit geistlichen, religio\u0308sen oder kirchlichen Inhalten" + ] + } + ], + "pid": "1054037531", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tourismus" + } + ], + "variant_access_point": [ + "Religio\u0308ser Tourismus" + ], + "md5": "ced119e28dfad2e95e39212332c96740" + }, + { + "authorized_access_point": "Projektionsraum (Kino)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1052970427" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1052970427" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1052970427" + } + ], + "identifier": "http://d-nb.info/gnd/1052970427", + "note": [ + { + "noteType": "general", + "label": [ + "Raum, Kabine fu\u0308r den Projektor in einem Kino" + ] + } + ], + "pid": "1052970427", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Kino" + } + ], + "variant_access_point": [ + "Filmvorfu\u0308hrraum", + "Vorfu\u0308hrraum", + "Projektionskabine" + ], + "md5": "070fa2309e478e97c18015aa44b831da" + }, + { + "authorized_access_point": "Socie\u0301te\u0301 des Ambianceurs et des Personnes E\u0301le\u0301gantes", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1051355478" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1051355478" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1051355478" + } + ], + "identifier": "http://d-nb.info/gnd/1051355478", + "note": [ + { + "noteType": "general", + "label": [ + "Soziale Bewegung mit Zentrum in der kongolesischen Hauptstadt Brazzaville, die sich durch das Tragen sehr eleganter Kleidung im Stile englischer Dandys bzw. Gentleman auszeichnet" + ] + } + ], + "pid": "1051355478", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Soziale Bewegung" + } + ], + "related": [ + { + "authorized_access_point": "Mode" + }, + { + "authorized_access_point": "Sapeur" + } + ], + "variant_access_point": [ + "La Sape" + ], + "md5": "3258e5e1dcbcd59fd84e9264eacdd209" + }, + { + "authorized_access_point": "Mundart Westfla\u0308misch (Bachten de Kupe)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1050801644" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1050801644" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1050801644" + } + ], + "identifier": "http://d-nb.info/gnd/1050801644", + "pid": "1050801644", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Westfla\u0308misch" + } + ], + "md5": "78a390dabc7f37127a3986d866d8f0de" + }, + { + "authorized_access_point": "Wiru", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1050440188" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1050440188" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1050440188" + } + ], + "identifier": "http://d-nb.info/gnd/1050440188", + "closeMatch": [ + { + "authorized_access_point": "Wiru (peuple de Papouasie-Nouvelle-Guine\u0301e)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134383754" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12699651" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb126996512" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Ethnie im Hochland Papua-Neuguineas, Southern Highlands Province" + ] + } + ], + "pid": "1050440188", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Papua" + } + ], + "variant_access_point": [ + "Witu (Volk)", + "Pangia" + ], + "md5": "2b664ca21f74356dfd7eb8337e565f6f" + }, + { + "authorized_access_point": "Sonnenbarsch", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1049971213" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1049971213" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1049971213" + } + ], + "identifier": "http://d-nb.info/gnd/1049971213", + "closeMatch": [ + { + "authorized_access_point": "Pumpkinseed (Fish)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333375107" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85109081" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85109081" + } + ] + }, + { + "authorized_access_point": "Crapet-soleil", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333375107" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17800495" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb178004954" + } + ] + } + ], + "pid": "1049971213", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Sonnenbarsche (Familie)" + } + ], + "variant_access_point": [ + "Gemeiner Sonnenbarsch", + "Lepomis gibbosus" + ], + "md5": "486dade1f836b952679da6a2e56bb37f" + }, + { + "authorized_access_point": "Urheberrechtsverletzung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1049453719" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1049453719" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1049453719" + } + ], + "identifier": "http://d-nb.info/gnd/1049453719", + "exactMatch": [ + { + "authorized_access_point": "Copyright infringement", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113404321X" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85032500" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85032500" + } + ] + }, + { + "authorized_access_point": "Infractions au droit d'auteur", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113404321X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11976722" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119767220" + } + ] + } + ], + "closeMatch": [ + { + "authorized_access_point": "Delitos contra la propiedad intelectual", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254498478" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX4576999" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX4576999" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Urheberrechtsverletzung&oldid=196809744" + ] + }, + { + "noteType": "general", + "label": [ + "Versto\u00df gegen urheberrechtliche Vorschriften" + ] + } + ], + "pid": "1049453719", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Urheberrecht" + }, + { + "authorized_access_point": "Rechtsverletzung" + } + ], + "variant_access_point": [ + "Urheberrechtsversto\u00df", + "Urheberrecht" + ], + "md5": "1758d0ff6d9b979298f896e1f1ee581b" + }, + { + "authorized_access_point": "Schnabeldelphine", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/104797553X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)104797553X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)104797553X" + } + ], + "identifier": "http://d-nb.info/gnd/104797553X", + "closeMatch": [ + { + "authorized_access_point": "River dolphins", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331847222" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85114240" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85114240" + } + ] + }, + { + "authorized_access_point": "Dauphins d'eau douce", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331847222" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13541390" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb135413904" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Flussdelphine des Ganges-Brahmaputra-Systems und des Mittellaufs des Indus" + ] + } + ], + "pid": "104797553X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zahnwale" + } + ], + "variant_access_point": [ + "Su\u0308\u00dfwasserdelphine", + "Gangesdelphine", + "Indusdelphine", + "Platanistidae" + ], + "md5": "08564600d47fc1c6a56827c5d3e10621" + }, + { + "authorized_access_point": "Marsch auf Washington fu\u0308r Arbeit und Freiheit", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1047231085" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1047231085" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1047231085" + } + ], + "identifier": "http://d-nb.info/gnd/1047231085", + "closeMatch": [ + { + "authorized_access_point": "March on Washington for Jobs and Freedom (1963 : Washington, D.C.)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133845851" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "n2012036795" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/names/n2012036795" + } + ] + }, + { + "authorized_access_point": "Marche sur Washington (1963)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133845851" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13194028" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13194028z" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Politische Demonstration 28.8.1963 fu\u0308r mehr Menschenrechte der afroamerikanischen Bu\u0308rger" + ] + } + ], + "pid": "1047231085", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bu\u0308rgerrechtsbewegung" + }, + { + "authorized_access_point": "Demonstration" + } + ], + "variant_access_point": [ + "March on Washington for jobs and freedom", + "Marsch auf Washington", + "The great March on Washington" + ], + "md5": "0d70126cc6de4c78006bf8c205e8a514" + }, + { + "authorized_access_point": "Nocebo-Effekt", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1041610890" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1041610890" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1041610890" + } + ], + "identifier": "http://d-nb.info/gnd/1041610890", + "closeMatch": [ + { + "authorized_access_point": "Effet nocebo", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1222525097" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16254337" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16254337h" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Nocebo Effect", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)128220467X" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D064786" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D064786" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Als Nocebo-Effekt (Nocebo = lat. \u201eIch werde schaden.\u201c) bezeichnet man das Auftreten oder die Zunahme von Krankheitssymptomen nach einer medizinischen oder pharmakologischen Behandlung, wobei die Symtomatik von den negativen Erwartungen des Patienten ausgelo\u0308st wird, nicht von der Behandlung selbst." + ] + } + ], + "pid": "1041610890", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Nebenwirkung" + } + ], + "variant_access_point": [ + "Nocebo", + "Nocebowirkung", + "Noceboantwort" + ], + "md5": "90d4d0560634643c8d4aa6dc0ad107a6" + }, + { + "authorized_access_point": "Menantes-Preis fu\u0308r erotische Dichtung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1037919874" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1037919874" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1037919874" + } + ], + "identifier": "http://d-nb.info/gnd/1037919874", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Internet - http://www.menantes-wandersleben.de/litpreis.html" + ] + }, + { + "noteType": "general", + "label": [ + "Seit 2006 alle zwei Jahre vom Menantes-Fo\u0308rderkreis und Ev. Kirchengemeinde Wandersleben vergebener Literaturpreis" + ] + } + ], + "pid": "1037919874", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Literaturpreis" + } + ], + "variant_access_point": [ + "Menantes-Preis", + "Menantes-Preis fu\u0308r erotische Literatur" + ], + "md5": "5df715b1f8efc90e16f5325392c1cbe5" + }, + { + "authorized_access_point": "Hauswirtschaft (Motiv)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1034281828" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1034281828" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1034281828" + } + ], + "identifier": "http://d-nb.info/gnd/1034281828", + "pid": "1034281828", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "6bd3a603864f95e3563060f183ec8166" + }, + { + "authorized_access_point": "Maria\u0308 Geburt", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1033705691" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1033705691" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1033705691" + } + ], + "identifier": "http://d-nb.info/gnd/1033705691", + "closeMatch": [ + { + "authorized_access_point": "Nativite\u0301 de Marie (fe\u0302te)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331871239" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17737043" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17737043x" + } + ] + } + ], + "pid": "1033705691", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Marienfest" + } + ], + "md5": "72e5ec4d4f308de1331904301227efdf" + }, + { + "authorized_access_point": "Stoff (Motiv)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1030464197" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1030464197" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1030464197" + } + ], + "identifier": "http://d-nb.info/gnd/1030464197", + "pid": "1030464197", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "33a31f6d20778604521745a0743d1cda" + }, + { + "authorized_access_point": "Visuelle Ethnologie", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1028524978" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1028524978" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1028524978" + } + ], + "identifier": "http://d-nb.info/gnd/1028524978", + "closeMatch": [ + { + "authorized_access_point": "Visual anthropology", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134386982" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh93005976" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh93005976" + } + ] + }, + { + "authorized_access_point": "Anthropologie visuelle", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134386982" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13168664" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13168664t" + } + ] + }, + { + "authorized_access_point": "Antropologi\u0301a visual", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254500537" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX545504" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX545504" + } + ] + } + ], + "pid": "1028524978", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ethnologie" + } + ], + "variant_access_point": [ + "Visuelle Anthropologie", + "Visual anthropology" + ], + "md5": "c72bfd44c6ba97128c8e41c4dd5ba4a2" + }, + { + "authorized_access_point": "Furchenkrebse", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1027073808" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1027073808" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1027073808" + } + ], + "identifier": "http://d-nb.info/gnd/1027073808", + "closeMatch": [ + { + "authorized_access_point": "Galatheidae", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331845491" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh88020731" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh88020731" + } + ] + }, + { + "authorized_access_point": "Galathe\u0301ide\u0301s", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331845491" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF15749610" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb157496101" + } + ] + } + ], + "pid": "1027073808", + "type": "bf:Topic", + "variant_access_point": [ + "Galatheidae", + "Squat lobsters" + ], + "md5": "9b263d0de9efac3af832f1b22ae29a26" + }, + { + "authorized_access_point": "Sciaenops ocellatus", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1027071171" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1027071171" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1027071171" + } + ], + "identifier": "http://d-nb.info/gnd/1027071171", + "closeMatch": [ + { + "authorized_access_point": "Red drum", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333485506" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85022524" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85022524" + } + ] + }, + { + "authorized_access_point": "Tambour rouge", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333485506" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17807388" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb178073888" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "NCBI-Taxonomy - http://www.ncbi.nlm.nih.gov/taxonomy?term=sciaenops%20ocellatus" + ] + } + ], + "pid": "1027071171", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Umberfische" + } + ], + "variant_access_point": [ + "Perca ocellata", + "Red drum", + "Roter Trommler" + ], + "md5": "bbac2a7688aeba5ce2ed914cad507fa1" + }, + { + "authorized_access_point": "DHC-4 Caribou", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1026470986" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1026470986" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1026470986" + } + ], + "identifier": "http://d-nb.info/gnd/1026470986", + "note": [ + { + "noteType": "general", + "label": [ + "Erstflug 1958" + ] + } + ], + "pid": "1026470986", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Transportflugzeug" + } + ], + "variant_access_point": [ + "De Havilland Canada DHC-4 Caribou", + "De Havilland D.H. 4 Caribou", + "D.H. 4 Caribou", + "DHC 4", + "DHC-4" + ], + "md5": "30373054dac61f959244916e9efe8b47" + }, + { + "authorized_access_point": "Pintadera", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1026351537" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1026351537" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1026351537" + } + ], + "identifier": "http://d-nb.info/gnd/1026351537", + "closeMatch": [ + { + "authorized_access_point": "Pintaderas", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334232970" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18066386" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb18066386b" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Tonstempel mit verschiedenen Verzierungsmustern, schon in d. Jungsteinzeit bekannt" + ] + } + ], + "pid": "1026351537", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Stempel" + } + ], + "related": [ + { + "authorized_access_point": "Brotlaibidol" + } + ], + "md5": "8133893052612f0665a90a195c357c92" + }, + { + "authorized_access_point": "Geschlechtersoziologie", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1025228928" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1025228928" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1025228928" + } + ], + "identifier": "http://d-nb.info/gnd/1025228928", + "exactMatch": [ + { + "authorized_access_point": "Geschlechterforschung", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1026988039" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10044108" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10044108" + } + ] + } + ], + "pid": "1025228928", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Spezielle Soziologie" + } + ], + "md5": "8131efd5653d83e3ea7d47dbc1e529dd" + }, + { + "authorized_access_point": "Stromtankstelle", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1023745712" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1023745712" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1023745712" + } + ], + "identifier": "http://d-nb.info/gnd/1023745712", + "closeMatch": [ + { + "authorized_access_point": "Battery charging stations (Electric vehicles)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1228385939" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2012003590" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2012003590" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Ladeinfrastruktur", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)120528379X" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "30212-2" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/30212-2" + } + ] + } + ], + "pid": "1023745712", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tankstelle" + }, + { + "authorized_access_point": "Batterieaufladung" + } + ], + "variant_access_point": [ + "Elektrotankstelle", + "Ladestation", + "Ladesa\u0308ule", + "Ladeinfrastruktur", + "Charging station" + ], + "md5": "79db6abc01ae723b40aae739e2ce616d" + }, + { + "authorized_access_point": "Sonnenbarsche (Familie)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1023362872" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1023362872" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1023362872" + } + ], + "identifier": "http://d-nb.info/gnd/1023362872", + "closeMatch": [ + { + "authorized_access_point": "Centrarchidae", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)133337481X" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85021929" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85021929" + } + ] + }, + { + "authorized_access_point": "Centrarchide\u0301s", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)133337481X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF15555678" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb15555678j" + } + ] + } + ], + "pid": "1023362872", + "type": "bf:Topic", + "variant_access_point": [ + "Centrarchidae", + "Sunfish" + ], + "md5": "b6be3e807238f7f2e51a85152c2dd32d" + }, + { + "authorized_access_point": "Mucoraceae", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1022832425" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1022832425" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1022832425" + } + ], + "identifier": "http://d-nb.info/gnd/1022832425", + "closeMatch": [ + { + "authorized_access_point": "Mucoraceae", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134250681" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh86007263" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh86007263" + } + ] + }, + { + "authorized_access_point": "Mucorace\u0301es", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134250681" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12270265" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12270265c" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Ordnung Mucorales" + ] + } + ], + "pid": "1022832425", + "type": "bf:Topic", + "md5": "990214383bd8f1061979941c6b07519c" + }, + { + "authorized_access_point": "Tetraquark", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7863105-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1021256064" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7863105-1" + } + ], + "identifier": "http://d-nb.info/gnd/7863105-1", + "note": [ + { + "noteType": "general", + "label": [ + "Hypothetisches Meson aus vier Quarks." + ] + } + ], + "pid": "1021256064", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Exotisches Hadron" + } + ], + "related": [ + { + "authorized_access_point": "Quark (Physik)" + } + ], + "md5": "216bff78d4764192589d854b73df869c" + }, + { + "authorized_access_point": "Mundart Westfa\u0308lisch (Kreis Herford)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7846068-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1018220429" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7846068-2" + } + ], + "identifier": "http://d-nb.info/gnd/7846068-2", + "pid": "1018220429", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Westfa\u0308lisch" + } + ], + "md5": "ba2c884ce2fb56accc761da768ccf999" + }, + { + "authorized_access_point": "Elektrotriebwagen Baureihe 4030", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7843328-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1017491062" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7843328-9" + } + ], + "identifier": "http://d-nb.info/gnd/7843328-9", + "note": [ + { + "noteType": "dataSource", + "label": [ + "OBV - https://permalink.obvsg.at/AC08535334", + "Wikipedia - https://de.wikipedia.org/wiki/%C3%96BB_4030" + ] + }, + { + "noteType": "general", + "label": [ + "Elektrotriebwagen der O\u0308BB, gebaut 1956-1975" + ] + } + ], + "pid": "1017491062", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Elektrotriebwagen" + } + ], + "variant_access_point": [ + "Triebwagen Baureihe 4030", + "O\u0308BB Reihe 4030", + "O\u0308BB 4030" + ], + "md5": "7b40455a7c362687eb23c98270eb2607" + }, + { + "authorized_access_point": "Elektrotriebwagen Baureihe 4020", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7843327-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1017490090" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7843327-7" + } + ], + "identifier": "http://d-nb.info/gnd/7843327-7", + "note": [ + { + "noteType": "dataSource", + "label": [ + "OBV - https://permalink.obvsg.at/AC08535331", + "Wikipedia - https://de.wikipedia.org/wiki/%C3%96BB_4020" + ] + }, + { + "noteType": "general", + "label": [ + "Elektrotriebwagen der O\u0308BB, gebaut 1978-1987" + ] + } + ], + "pid": "1017490090", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Elektrotriebwagen" + } + ], + "variant_access_point": [ + "Triebwagen Baureihe 4020", + "O\u0308BB Reihe 4020", + "O\u0308BB 4020" + ], + "md5": "16661b9d7047635e5b8b4988d6a6650d" + }, + { + "authorized_access_point": "Psaphidinae", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7842430-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1017217165" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7842430-6" + } + ], + "identifier": "http://d-nb.info/gnd/7842430-6", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia unter Noctuoidea - https://de.wikipedia.org/wiki/Noctuoidea" + ] + }, + { + "noteType": "general", + "label": [ + "Unterfamilie der Schmetterlingsfamilie Eulen" + ] + } + ], + "pid": "1017217165", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Eulen (Schmetterlinge)" + } + ], + "md5": "f2c5ba89959606bb71d3367c2c031c67" + }, + { + "authorized_access_point": "Chilenische Einwanderin", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7842262-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1017177503" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7842262-0" + } + ], + "identifier": "http://d-nb.info/gnd/7842262-0", + "pid": "1017177503", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Einwanderin" + }, + { + "authorized_access_point": "Chilenin" + } + ], + "md5": "36104ed088435b57e6ee149bfa62ee70" + }, + { + "authorized_access_point": "Picrodendraceae", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7841608-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1017027366" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7841608-5" + } + ], + "identifier": "http://d-nb.info/gnd/7841608-5", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/wiki/Picrodendraceae" + ] + }, + { + "noteType": "general", + "label": [ + "zweikeimbla\u0308ttrige Familie, mit den Wolfsmilchgewa\u0308chsen nah verwandt" + ] + } + ], + "pid": "1017027366", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Malpighienartige" + } + ], + "related": [ + { + "authorized_access_point": "Wolfsmilchgewa\u0308chse" + } + ], + "variant_access_point": [ + "Euphorbiaceae subtrib. Picrodendrinae", + "Euphorbiaceae trib. Picrodendreae", + "Euphorbiaceae subfam. Oldfieldioideae", + "Euphorbiaceae subtrib. Dissiliariinae", + "Euphorbiaceae subtrib. Paivaeusinae", + "Euphorbiaceae subtrib. Petalostimatinae", + "Euphorbiaceae subtrib. Toxicodendrinae" + ], + "md5": "258201a25aac16d71a4774da28b33a2d" + }, + { + "authorized_access_point": "Kugelka\u0308fer", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7840811-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1016810989" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7840811-8" + } + ], + "identifier": "http://d-nb.info/gnd/7840811-8", + "closeMatch": [ + { + "authorized_access_point": "Sphaeriusidae", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133797040" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12438548" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb124385482" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/wiki/Kugelk%C3%A4fer" + ] + }, + { + "noteType": "general", + "label": [ + "Ka\u0308ferfamilie" + ] + } + ], + "pid": "1016810989", + "type": "bf:Topic", + "variant_access_point": [ + "Sphaeriusidae", + "Sphaeridae", + "Sphaeriidae", + "Microsporidae", + "Sphaerius" + ], + "md5": "8144bf38a7e5515e3b6ce16f4a764f47" + }, + { + "authorized_access_point": "Okkultist", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7840293-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1016599463" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7840293-1" + } + ], + "identifier": "http://d-nb.info/gnd/7840293-1", + "closeMatch": [ + { + "authorized_access_point": "Occultists", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331753430" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh87003651" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh87003651" + } + ] + }, + { + "authorized_access_point": "Occultistes", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331753430" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16745674" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16745674f" + } + ] + } + ], + "pid": "1016599463", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Okkultistin" + }, + { + "authorized_access_point": "Okkultismus" + } + ], + "md5": "56e3145f2784506a64bf3565de44dbee" + }, + { + "authorized_access_point": "Natu\u0308rliches System", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7836847-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1016326106" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7836847-9" + } + ], + "identifier": "http://d-nb.info/gnd/7836847-9", + "note": [ + { + "noteType": "general", + "label": [ + "auf Homologien beruhende, den verwandtschaftlichen Beziehungen entsprechende Gruppierung der Organismen" + ] + } + ], + "pid": "1016326106", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Klassifikation" + }, + { + "authorized_access_point": "Systematik" + } + ], + "md5": "6d05108247332035c07ab7dbc97c936b" + }, + { + "authorized_access_point": "Anschluss O\u0308sterreichs (Motiv)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7758150-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1015079253" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7758150-7" + } + ], + "identifier": "http://d-nb.info/gnd/7758150-7", + "pid": "1015079253", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "23a61e795274b476e5b7a13d8ce34715" + }, + { + "authorized_access_point": "Marktmanipulation", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7749818-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1013014065" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7749818-5" + } + ], + "identifier": "http://d-nb.info/gnd/7749818-5", + "note": [ + { + "noteType": "general", + "label": [ + "\u00a7 20a WpHG" + ] + } + ], + "pid": "1013014065", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Manipulation" + } + ], + "variant_access_point": [ + "Bo\u0308rsen- und Marktmanipulation", + "Kursmanipulation", + "Marktpreismanipulation", + "Strafbare Marktmanipulation", + "Marktmanipulationsverbot", + "Kursbetrug", + "Kurs- und Marktpreismanipulation", + "Marktmanipulation", + "Finanzinstrument" + ], + "md5": "e28d79154a7baf67f90b718ae3a4c8f2" + }, + { + "authorized_access_point": "Dorschbarsche", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7746334-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1011954141" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7746334-1" + } + ], + "identifier": "http://d-nb.info/gnd/7746334-1", + "closeMatch": [ + { + "authorized_access_point": "Percichthyidae", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333473001" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85099724" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85099724" + } + ] + }, + { + "authorized_access_point": "Percichthyidae", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333473001" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17156205" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb171562052" + } + ] + } + ], + "pid": "1011954141", + "type": "bf:Topic", + "variant_access_point": [ + "Percichthyidae" + ], + "md5": "2d1cc6418036ffba4791f40c12a53a4e" + }, + { + "authorized_access_point": "Welt-Fraktur", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7746253-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1011935201" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7746253-1" + } + ], + "identifier": "http://d-nb.info/gnd/7746253-1", + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungsjahr: 1910, auch halbfett 1910" + ] + } + ], + "pid": "1011935201", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fraktur (Druckschrift)" + } + ], + "variant_access_point": [ + "Weltfraktur" + ], + "md5": "aa2d5546bc71b0fb324521c6883e779d" + }, + { + "authorized_access_point": "Macquaria australasica", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7744753-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1011536455" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7744753-0" + } + ], + "identifier": "http://d-nb.info/gnd/7744753-0", + "closeMatch": [ + { + "authorized_access_point": "Macquarie perch", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134832605" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh92004648" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh92004648" + } + ] + }, + { + "authorized_access_point": "Macquaria australasica", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134832605" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17156241" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17156241x" + } + ] + } + ], + "pid": "1011536455", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Dorschbarsche" + } + ], + "variant_access_point": [ + "Macquarie Perch", + "Mountain Perch" + ], + "md5": "2c3c3bd6f7afde65fa39f3b6746dbfad" + }, + { + "authorized_access_point": "Kobrapflanze", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7743987-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1011385856" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7743987-9" + } + ], + "identifier": "http://d-nb.info/gnd/7743987-9", + "closeMatch": [ + { + "authorized_access_point": "Darlingtonia californica", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134821107" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85035810" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85035810" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia unter Kobralilie - https://de.wikipedia.org/wiki/Kobralilie" + ] + }, + { + "noteType": "general", + "label": [ + "in NW-Amerika endemische, monotypische Gattung der Schlauchpflanzengewa\u0308chse" + ] + } + ], + "pid": "1011385856", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schlauchpflanzengewa\u0308chse" + } + ], + "variant_access_point": [ + "Darlingtonia", + "Darlingtonia californica", + "Darlingtonie", + "Kobraschlauchpflanze (Gattung)", + "Kobralilie (Gattung)", + "Kobralilien (Gattung)", + "Kobraschlauchpflanze", + "Kobralilie", + "Chrysamphora", + "Chrysamphora californica" + ], + "md5": "c6ec28458d560ab66c630b4fa8358f7b" + }, + { + "authorized_access_point": "Tetradiclidaceae", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7743628-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1011285738" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7743628-3" + } + ], + "identifier": "http://d-nb.info/gnd/7743628-3", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia unter Seifenbaumartige - https://de.wikipedia.org/wiki/Seifenbaumartige" + ] + }, + { + "noteType": "general", + "label": [ + "Familie der Seifenbaumartigen (Sapindales)" + ] + } + ], + "pid": "1011285738", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Seifenbaumartige" + } + ], + "variant_access_point": [ + "Tetradiclis" + ], + "md5": "96c10f158875065960a9cecac470001b" + }, + { + "authorized_access_point": "Nitrariaceae", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7743625-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1011285436" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7743625-8" + } + ], + "identifier": "http://d-nb.info/gnd/7743625-8", + "closeMatch": [ + { + "authorized_access_point": "Nitraria", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134821166" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16063257" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16063257g" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/wiki/Nitrariaceae" + ] + }, + { + "noteType": "general", + "label": [ + "Familie der Seifenbaumartigen [Sapindales]" + ] + } + ], + "pid": "1011285436", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Seifenbaumartige" + } + ], + "variant_access_point": [ + "Nitraria" + ], + "md5": "089148c7e605980d16067c10f8cd9779" + }, + { + "authorized_access_point": "Kirkiaceae", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7743599-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1011282518" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7743599-0" + } + ], + "identifier": "http://d-nb.info/gnd/7743599-0", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/wiki/Kirkiaceae" + ] + }, + { + "noteType": "general", + "label": [ + "Familie der Seifenbaumartigen [sensu Sapindales]" + ] + } + ], + "pid": "1011282518", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Seifenbaumartige" + } + ], + "md5": "f4415b4e910657844a2b52be68f37ee8" + }, + { + "authorized_access_point": "Keulenfruchtgewa\u0308chse", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7743592-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1011281368" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7743592-8" + } + ], + "identifier": "http://d-nb.info/gnd/7743592-8", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia unter Keulenfru\u0308chte - https://de.wikipedia.org/wiki/Keulenfr%C3%BCchte" + ] + }, + { + "noteType": "general", + "label": [ + "Familie unsicherer systematischer Stellung fru\u0308her zu den Spindelbaumartigen heute eher zu den Cucurbitales gerechnet" + ] + } + ], + "pid": "1011281368", + "type": "bf:Topic", + "variant_access_point": [ + "Keulenfrucht (Gattung)", + "Keulenfru\u0308chte (Gattung)", + "Corynocarpaceae", + "Corynocarpus", + "Karakabaum (Gattung)", + "Corinocarpus", + "Merretia" + ], + "md5": "96f86fb35805a2c551e250d605885245" + }, + { + "authorized_access_point": "Biebersteiniaceae", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7743558-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1011278723" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7743558-8" + } + ], + "identifier": "http://d-nb.info/gnd/7743558-8", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/wiki/Biebersteinia" + ] + }, + { + "noteType": "general", + "label": [ + "Familie der Seifenbaumartigen; Einzige Gattung Biebersteinia" + ] + } + ], + "pid": "1011278723", + "type": "bf:Topic", + "variant_access_point": [ + "Biebersteinia" + ], + "md5": "631dc8a974f543713c2c92b5e446644a" + }, + { + "authorized_access_point": "Australheidegewa\u0308chse", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7743404-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1011253313" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7743404-3" + } + ], + "identifier": "http://d-nb.info/gnd/7743404-3", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/wiki/Australheidegew%C3%A4chse" + ] + }, + { + "noteType": "general", + "label": [ + "Familie der Heidekrautartigen" + ] + } + ], + "pid": "1011253313", + "type": "bf:Topic", + "variant_access_point": [ + "Epacridaceae", + "Australheidengewa\u0308chse", + "Styphelioideae" + ], + "md5": "4ee23ad607ef8c1c53b18eb2827cf359" + }, + { + "authorized_access_point": "Lactoridales", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7743251-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1011212722" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7743251-4" + } + ], + "identifier": "http://d-nb.info/gnd/7743251-4", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia unter Lactoris fernandeziana - https://de.wikipedia.org/wiki/Lactoris_fernandeziana" + ] + }, + { + "noteType": "general", + "label": [ + "monotypische Ordnung der Magnoliopsida, deren einzige Gattung mit nur manchmal auch zu den Pfefferartigen oder zu den Osterluzeigewa\u0308chsen gerechnet wird" + ] + } + ], + "pid": "1011212722", + "type": "bf:Topic", + "variant_access_point": [ + "Lactoridaceae", + "Lactoris", + "Lactoris fernandeziana" + ], + "md5": "2ec806560c0050c6aa0cdb56f5c5b4cd" + }, + { + "authorized_access_point": "Cunoniagewa\u0308chse", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7743101-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1011172399" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7743101-7" + } + ], + "identifier": "http://d-nb.info/gnd/7743101-7", + "closeMatch": [ + { + "authorized_access_point": "Cunoniaceae", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133862942" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85034815" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85034815" + } + ] + }, + { + "authorized_access_point": "Cunoniace\u0301es", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133862942" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13515290" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb135152906" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Lex. Biol. (1999) als Cunoniaceae - http://www.spektrum.de/lexikon/biologie/cunoniaceae/16042", + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Cunoniaceae&oldid=165412165" + ] + }, + { + "noteType": "general", + "label": [ + "zweikeimbla\u0308ttrige Pflanzenfamilie" + ] + } + ], + "pid": "1011172399", + "type": "bf:Topic", + "variant_access_point": [ + "Cunoniengewa\u0308chse", + "Cunoniaceae" + ], + "md5": "8c21ab4b6870a7f4be6af2a2d55fdb41" + }, + { + "authorized_access_point": "Phormiaceae", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7742665-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1011095351" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7742665-4" + } + ], + "identifier": "http://d-nb.info/gnd/7742665-4", + "closeMatch": [ + { + "authorized_access_point": "Hemerocallidaceae", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134821204" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2003011156" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2003011156" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia unter Liliena\u0308hnliche - https://de.wikipedia.org/wiki/Lilien%C3%A4hnliche" + ] + }, + { + "noteType": "general", + "label": [ + "einkeimbla\u0308ttrige Famile aus der Ordnung der Spargelartigen" + ] + } + ], + "pid": "1011095351", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Spargelartige" + } + ], + "md5": "926d593cfd24ad44b254a2298cae5cfe" + }, + { + "authorized_access_point": "Hesperioidea", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7740844-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1010824597" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7740844-5" + } + ], + "identifier": "http://d-nb.info/gnd/7740844-5", + "note": [ + { + "noteType": "general", + "label": [ + "U\u0308berfamilie der Schmetterlinge" + ] + } + ], + "pid": "1010824597", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schmetterlinge" + } + ], + "md5": "d92379f7b8619f788e879534cd2daeff" + }, + { + "authorized_access_point": "Drepanoidea", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7740801-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1010820389" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7740801-9" + } + ], + "identifier": "http://d-nb.info/gnd/7740801-9", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia unter Systematik der Schmetterlinge - https://de.wikipedia.org/wiki/Systematik_der_Schmetterlinge" + ] + }, + { + "noteType": "general", + "label": [ + "U\u0308berfamilie der Schmetterlinge innerhalb der Unterordnung Glossata" + ] + } + ], + "pid": "1010820389", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schmetterlinge" + } + ], + "md5": "81593860f8c64e6b2dbe55e4ca934147" + }, + { + "authorized_access_point": "Spinner und Schwa\u0308rmer (U\u0308berfamilie)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7740795-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)101081933X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7740795-7" + } + ], + "identifier": "http://d-nb.info/gnd/7740795-7", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Internet - http://tierdoku.de/index.php?title=Spinnerartige" + ] + }, + { + "noteType": "general", + "label": [ + "U\u0308berfamilie der Schmetterlinge" + ] + } + ], + "pid": "101081933X", + "type": "bf:Topic", + "variant_access_point": [ + "Bombycoidea", + "Spinnerartige", + "Spinner (U\u0308berfamilie)" + ], + "md5": "5f9e0e6dbaf704828f472dec645cc496" + }, + { + "authorized_access_point": "Telekommunikationsu\u0308berwachung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7732308-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)100974786X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7732308-7" + } + ], + "identifier": "http://d-nb.info/gnd/7732308-7", + "closeMatch": [ + { + "authorized_access_point": "E\u0301coute e\u0301lectronique", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1218115521" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11961331" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11961331f" + } + ] + } + ], + "pid": "100974786X", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Fernmeldegeheimnis" + }, + { + "authorized_access_point": "Postu\u0308berwachung" + }, + { + "authorized_access_point": "Telefonu\u0308berwachung" + } + ], + "variant_access_point": [ + "Telekommunikation", + "Telecommunication surveillance", + "TKU\u0308" + ], + "md5": "98a9d5156207493fd1924c56037ca84b" + }, + { + "authorized_access_point": "MAS Go Beyond", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7728838-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1009172255" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7728838-5" + } + ], + "identifier": "http://d-nb.info/gnd/7728838-5", + "note": [ + { + "noteType": "general", + "label": [ + "ab 2003 Fo\u0308rderprogramm fu\u0308r Textilarbeiterinnen der Firma MAS Holdings Pvt. Ltd." + ] + } + ], + "pid": "1009172255", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Textilarbeiterin" + } + ], + "broader": [ + { + "authorized_access_point": "Fo\u0308rderungsprogramm" + } + ], + "variant_access_point": [ + "MAS Holdings", + "Women Go Beyond", + "Go Beyond", + "MAS Women Go Beyond Programme" + ], + "md5": "9b51171e9db713924e0fefb824442427" + }, + { + "authorized_access_point": "Wager (Schiff)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7728659-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)100914135X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7728659-5" + } + ], + "identifier": "http://d-nb.info/gnd/7728659-5", + "note": [ + { + "noteType": "general", + "label": [ + "Ca. 1734 erbaut, urspru\u0308nglich Handelsschiff, spa\u0308ter im Dienst d. engl. Marine, sank 1741 vor d. Westku\u0308ste Chiles" + ] + } + ], + "pid": "100914135X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Segelschiff" + }, + { + "authorized_access_point": "Handelsschiff" + } + ], + "md5": "3ca1c15b9f0767c760917758d2ae6661" + }, + { + "authorized_access_point": "Boden-Boden-Rakete", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7725945-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1008599360" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7725945-2" + } + ], + "identifier": "http://d-nb.info/gnd/7725945-2", + "closeMatch": [ + { + "authorized_access_point": "Surface-to-surface missiles", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134177372" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85130729" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85130729" + } + ] + }, + { + "authorized_access_point": "Missiles sol-sol", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134177372" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12124483" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12124483m" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Rakete, die vom Boden auf ein Bodenziel abgeschossen wird" + ] + } + ], + "pid": "1008599360", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Milita\u0308rische Rakete" + } + ], + "md5": "b029ab00c814ad6359acf442fbc387aa" + }, + { + "authorized_access_point": "Astronotus", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7719954-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1007558903" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7719954-6" + } + ], + "identifier": "http://d-nb.info/gnd/7719954-6", + "closeMatch": [ + { + "authorized_access_point": "Astronotus", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134832648" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh99003794" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh99003794" + } + ] + }, + { + "authorized_access_point": "Astronotus", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134832648" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17801808" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17801808q" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Geho\u0308rt zu d. UF Astronotinae d. Neuweltbuntbarsche" + ] + } + ], + "pid": "1007558903", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Buntbarsche" + } + ], + "md5": "6ec34d3aacf5da77a5c7cfeae5bf34cc" + }, + { + "authorized_access_point": "Hippocampus zosterae", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7719938-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1007553405" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7719938-8" + } + ], + "identifier": "http://d-nb.info/gnd/7719938-8", + "closeMatch": [ + { + "authorized_access_point": "Dwarf sea horse", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333488432" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85040183" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85040183" + } + ] + }, + { + "authorized_access_point": "Hippocampus zosterae", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333488432" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17817676" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb178176769" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Zwergseepferdchenart" + ] + } + ], + "pid": "1007553405", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Seenadeln" + } + ], + "variant_access_point": [ + "Florida-Zwergseepferdchen" + ], + "md5": "35d39330aeb754a3787f536c0598e400" + }, + { + "authorized_access_point": "Green-IT", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7717106-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1007096462" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7717106-8" + } + ], + "identifier": "http://d-nb.info/gnd/7717106-8", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Green_IT&oldid=244326078" + ] + } + ], + "pid": "1007096462", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Informationstechnik" + } + ], + "variant_access_point": [ + "Green IT", + "Green ICT", + "Green computing", + "Gru\u0308ne IT", + "Green IS", + "Green-IS", + "Green information systems" + ], + "md5": "a2efca33978fd4132ecf08dda56f0199" + }, + { + "authorized_access_point": "Ausspa\u0308hen von Daten", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7714184-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1006156577" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7714184-2" + } + ], + "identifier": "http://d-nb.info/gnd/7714184-2", + "pid": "1006156577", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Computerkriminalita\u0308t" + }, + { + "authorized_access_point": "Spionage" + } + ], + "variant_access_point": [ + "Datenspionage", + "Computerspionage", + "Cyberspionage" + ], + "md5": "f40abbcc12f519c1c54f547806cd5d73" + }, + { + "authorized_access_point": "Tretauto", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7713696-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1005952930" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7713696-2" + } + ], + "identifier": "http://d-nb.info/gnd/7713696-2", + "closeMatch": [ + { + "authorized_access_point": "Pedal cars", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)133278884X" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh90001167" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh90001167" + } + ] + } + ], + "pid": "1005952930", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Spielgera\u0308t" + } + ], + "md5": "95ceede48254fc4220f1485262b94729" + }, + { + "authorized_access_point": "iPad", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7712886-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1005638322" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7712886-2" + } + ], + "identifier": "http://d-nb.info/gnd/7712886-2", + "closeMatch": [ + { + "authorized_access_point": "iPad (Computer)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113482369X" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2010009235" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2010009235" + } + ] + }, + { + "authorized_access_point": "Apple iPad (ordinateur)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113482369X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16204308" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16204308w" + } + ] + }, + { + "authorized_access_point": "iPad (Ordenador)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)125444470X" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX5019827" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX5019827" + } + ] + } + ], + "pid": "1005638322", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Apple (Marke)" + } + ], + "broader": [ + { + "authorized_access_point": "Tablet PC" + } + ], + "variant_access_point": [ + "Apple iPad" + ], + "md5": "56af752b5478dcf17781a4ae2f729513" + }, + { + "authorized_access_point": "Zweikomponentensystem (Molekularbiologie)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7710598-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1005003262" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7710598-9" + } + ], + "identifier": "http://d-nb.info/gnd/7710598-9", + "pid": "1005003262", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Signaltransduktion" + } + ], + "variant_access_point": [ + "Two-component system", + "TCS" + ], + "md5": "0de7c84ba66b26652215889b7c2138ef" + }, + { + "authorized_access_point": "O\u0308kologischer Fu\u00dfabdruck", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7705788-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1003591590" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7705788-0" + } + ], + "identifier": "http://d-nb.info/gnd/7705788-0", + "closeMatch": [ + { + "authorized_access_point": "Empreinte e\u0301cologique", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332366201" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF15566354" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb155663545" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Ein eindimensionaler Ansatz der O\u0308kobilanzierung. Messung der Klimarelevanz von Ta\u0308tigkeiten, Prozessen, Produkten und Dienstleistungen." + ] + } + ], + "pid": "1003591590", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Umweltbilanz" + } + ], + "related": [ + { + "authorized_access_point": "Umweltbelastung" + } + ], + "md5": "6c717e72eeb146b97c67826bb872532b" + }, + { + "authorized_access_point": "Pogona", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7696635-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1001213157" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7696635-5" + } + ], + "identifier": "http://d-nb.info/gnd/7696635-5", + "closeMatch": [ + { + "authorized_access_point": "Bearded dragons (Reptiles)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133848672" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh98005624" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh98005624" + } + ] + }, + { + "authorized_access_point": "Pogona", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133848672" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13327120" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb133271203" + } + ] + } + ], + "pid": "1001213157", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Agamen" + } + ], + "variant_access_point": [ + "Bartagame (Gattung)" + ], + "md5": "ffbd9d51ee2abe3681a127af892fa34c" + }, + { + "authorized_access_point": "Mundart Westfa\u0308lisch (Tecklenburg)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7692522-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1000465403" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7692522-5" + } + ], + "identifier": "http://d-nb.info/gnd/7692522-5", + "pid": "1000465403", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Westfa\u0308lisch" + } + ], + "variant_access_point": [ + "Tecklenburger Platt" + ], + "md5": "32854c96e4b47b281c59b5ceee277043" + }, + { + "authorized_access_point": "Gro\u00dfguramis", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7687772-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)999617249" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7687772-3" + } + ], + "identifier": "http://d-nb.info/gnd/7687772-3", + "closeMatch": [ + { + "authorized_access_point": "Osphronemidae", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333946120" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF15080454" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb15080454j" + } + ] + } + ], + "pid": "999617249", + "type": "bf:Topic", + "variant_access_point": [ + "Osphronemidae" + ], + "md5": "e6e31bd65435fa8fa77b8a1a6a3d563e" + }, + { + "authorized_access_point": "Zwergfadenfisch (Gattung)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7687697-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)999602810" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7687697-4" + } + ], + "identifier": "http://d-nb.info/gnd/7687697-4", + "closeMatch": [ + { + "authorized_access_point": "Colisa", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333946708" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF15952715" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb15952715w" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Gattung d. Gro\u00dfguramis" + ] + } + ], + "pid": "999602810", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gro\u00dfguramis" + } + ], + "variant_access_point": [ + "Colisa" + ], + "md5": "f6cb00a61f8285ef3ee56df00fb037f6" + }, + { + "authorized_access_point": "Groppen (Familie)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7685452-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)999129317" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7685452-8" + } + ], + "identifier": "http://d-nb.info/gnd/7685452-8", + "closeMatch": [ + { + "authorized_access_point": "Cottidae", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333486758" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85033299" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85033299" + } + ] + }, + { + "authorized_access_point": "Cottide\u0301s", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333486758" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16207651" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16207651k" + } + ] + } + ], + "pid": "999129317", + "type": "bf:Topic", + "variant_access_point": [ + "Cottidae" + ], + "md5": "12db6bc8b00f61d1e1316b58f5e47dbd" + }, + { + "authorized_access_point": "Katagami", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7685117-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)999038095" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7685117-5" + } + ], + "identifier": "http://d-nb.info/gnd/7685117-5", + "closeMatch": [ + { + "authorized_access_point": "Katagami", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332766072" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16595573" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16595573h" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Japanische Stofffa\u0308rbeschablonen, die unter dem Namen Katagami-Technik bekannt geworden sind." + ] + } + ], + "pid": "999038095", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schablone" + } + ], + "md5": "5614e934f6ddb72939fee89e03c50fb4" + }, + { + "authorized_access_point": "Moresca (Motiv)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7683770-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)998759074" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7683770-1" + } + ], + "identifier": "http://d-nb.info/gnd/7683770-1", + "pid": "998759074", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "variant_access_point": [ + "Morisca (Motiv)" + ], + "md5": "be6267d9e364b1de701e696f109f7e26" + }, + { + "authorized_access_point": "VirtualDub", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7679461-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)997781491" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7679461-1" + } + ], + "identifier": "http://d-nb.info/gnd/7679461-1", + "pid": "997781491", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Videobearbeitung" + } + ], + "broader": [ + { + "authorized_access_point": "Programm" + } + ], + "md5": "bebb304e7f4f97f9601546ed7fca5703" + }, + { + "authorized_access_point": "Quadratfreie Zahl", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7661563-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)994660987" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7661563-7" + } + ], + "identifier": "http://d-nb.info/gnd/7661563-7", + "pid": "994660987", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zahl" + } + ], + "md5": "1ec4ccbf58f64196d3a6a258d8ab03d6" + }, + { + "authorized_access_point": "Fotobuch", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7660057-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)994508417" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7660057-9" + } + ], + "identifier": "http://d-nb.info/gnd/7660057-9", + "closeMatch": [ + { + "authorized_access_point": "Photobooks", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1223003159" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2006009091" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2006009091" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Buch, dessen Autor zumeist ein Fotograf ist und dessen prima\u0308re Aussage durch die enthaltenen Fotografien transportiert wird", + "Fu\u0308r Bu\u0308cher, die man sich von eigenen digitalen Fotos erstellen lassen kann, verwende \u201ePerso\u0308nliches Fotobuch\u201c.", + "Fu\u0308r vorliegende Fotobu\u0308cher wird in der Sacherschlie\u00dfung das SW Fotografie (oder ein engeres zutreffendes Schlagwort) zusammen mit dem Formbegriff Bildband vergeben.", + "Als Formangabe fu\u0308r die Art des Inhalts als Teil des optionalen Sets zugelassen" + ] + } + ], + "pid": "994508417", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Perso\u0308nliches Fotobuch" + } + ], + "broader": [ + { + "authorized_access_point": "Buch" + } + ], + "variant_access_point": [ + "Fotobuch (Kunst)", + "Photobuch", + "Photobuch (Kunst)", + "Photobook" + ], + "md5": "3d694108b37c9728d62a51ffda6ab46d" + }, + { + "authorized_access_point": "Feldzug gegen Da\u0308nemark (1657-1658)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7657707-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)994042582" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7657707-7" + } + ], + "identifier": "http://d-nb.info/gnd/7657707-7", + "note": [ + { + "noteType": "general", + "label": [ + "Feldzug Schwedens unter Karl X. Gustav, der den zugefrorenen Kleinen und Gro\u00dfen Belt u\u0308berquert und im Frieden von Roskilde die Abtretung gro\u00dfer Landgebiete durchsetzt." + ] + } + ], + "pid": "994042582", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Schwedisch-Da\u0308nischer Krieg (1657-1660)" + } + ], + "md5": "0d352d2271a7e4b3a9881bd32f786fc8" + }, + { + "authorized_access_point": "Renaissance-Antiqua", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7657325-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)993971806" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7657325-4" + } + ], + "identifier": "http://d-nb.info/gnd/7657325-4", + "note": [ + { + "noteType": "general", + "label": [ + "Oberbegriff fu\u0308r die zwei ersten Gruppen in der Klassifikation von Schrift nach DIN 16518", + "Mediaeval nannt man Antiqua-Schriften, die im Zuge einer typographischen Erneuerungsbewegung im 19. Jahrhundert entstanden sind (Lex. ges. Buchwesens, Bd. V, S. 110), engl. U\u0308bersetzung/Schreibweise ist medieval" + ] + } + ], + "pid": "993971806", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Antiqua" + } + ], + "variant_access_point": [ + "Mediaeval", + "Mediaeval-Antiqua" + ], + "md5": "bcceebafc2b824708861742d4bf7d767" + }, + { + "authorized_access_point": "Schneidler-Mediaeval", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7648207-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992779871" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7648207-8" + } + ], + "identifier": "http://d-nb.info/gnd/7648207-8", + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungsjahr 1937" + ] + } + ], + "pid": "992779871", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Venezianische Renaissance-Antiqua" + } + ], + "related": [ + { + "authorized_access_point": "Amalthea (Druckschrift)" + } + ], + "md5": "1ddb75414a0a5cf7e3cb22c6f6796ebf" + }, + { + "authorized_access_point": "ITC Weidemann", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7647886-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992757681" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7647886-5" + } + ], + "identifier": "http://d-nb.info/gnd/7647886-5", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia unter Kurt Weidemann - http://www.linotype.com/639/kurtweidemann.html" + ] + }, + { + "noteType": "general", + "label": [ + "Entstehungsjahr: 1983" + ] + } + ], + "pid": "992757681", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Venezianische Renaissance-Antiqua" + } + ], + "variant_access_point": [ + "Weidemann (Druckschrift)" + ], + "md5": "814fe070a203e69b938492045dcbeadd" + }, + { + "authorized_access_point": "Amalthea (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7647523-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992754151" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7647523-2" + } + ], + "identifier": "http://d-nb.info/gnd/7647523-2", + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungsjahr: 1956, Deutsches Buch- und Schriftmuseum 1954" + ] + } + ], + "pid": "992754151", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kursive" + } + ], + "related": [ + { + "authorized_access_point": "Schneidler-Mediaeval" + } + ], + "variant_access_point": [ + "Schneidler-Amalthea (Druckschrift)", + "Schneidler (Druckschrift)", + "Schneidler-Kursiv", + "Schneidler-Mediaeval kursiv" + ], + "md5": "e929a241593b1f67b1422eff6171b636" + }, + { + "authorized_access_point": "Laudahn-Kanzlei", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7647466-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992753589" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7647466-5" + } + ], + "identifier": "http://d-nb.info/gnd/7647466-5", + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungszeit 1913" + ] + } + ], + "pid": "992753589", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gebrochene Schrift" + } + ], + "related": [ + { + "authorized_access_point": "Kanzleischrift" + } + ], + "variant_access_point": [ + "Laudan-Kanzlei" + ], + "md5": "0e31f928bd72b10261637c941cfa1767" + }, + { + "authorized_access_point": "Altenburger Werk-Gotisch", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7647384-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992747260" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7647384-3" + } + ], + "identifier": "http://d-nb.info/gnd/7647384-3", + "note": [ + { + "noteType": "general", + "label": [ + "Enstehungszeit 1928" + ] + } + ], + "pid": "992747260", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gotische Schrift" + } + ], + "md5": "6a97785f374097d0dbaf8b87c8837d23" + }, + { + "authorized_access_point": "Augustea", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7647226-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992745489" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7647226-7" + } + ], + "identifier": "http://d-nb.info/gnd/7647226-7", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Mengel, Willi: Druckschriften der Gegenwart, Stuttgart 1966 - http://www.klingspor-museum.de/KlingsporKuenstler/Schriftgiessereien/Berthold/BertholdAG.pdf" + ] + }, + { + "noteType": "general", + "label": [ + "Entstehungszeit 1905-1926; weitere Formen: kursiv, halbfett, fett, kursiv fett" + ] + } + ], + "pid": "992745489", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Klassizistische Antiqua" + } + ], + "related": [ + { + "authorized_access_point": "Pressa-Antiqua" + } + ], + "md5": "d8e6383fc3bfe6451168b7a60dd83e1c" + }, + { + "authorized_access_point": "Welt-Antiqua", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7647121-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992744431" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7647121-4" + } + ], + "identifier": "http://d-nb.info/gnd/7647121-4", + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungszeit 1928 (leicht, kra\u0308ftig)" + ] + } + ], + "pid": "992744431", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Egyptienne" + } + ], + "variant_access_point": [ + "Landi (Druckschrift)" + ], + "md5": "52fb87f418bf7fe4823765b09fbeed74" + }, + { + "authorized_access_point": "Maxim (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7647080-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992744040" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7647080-5" + } + ], + "identifier": "http://d-nb.info/gnd/7647080-5", + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungsjahr 1956" + ] + } + ], + "pid": "992744040", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schreibschrift (Druckschrift)" + } + ], + "md5": "c4460641400bf9ae09fa178eeeb13900" + }, + { + "authorized_access_point": "Sonderdruck-Antiqua", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7646878-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992742145" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7646878-1" + } + ], + "identifier": "http://d-nb.info/gnd/7646878-1", + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungszeit 1922; nach Vorlage des 18. Jh.; Bezeichnung der Schriftgiesserei Ludwig & Mayer fu\u0308r die Schrift \"Nicolas Cochin\"; auch kursiv u. fett" + ] + } + ], + "pid": "992742145", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Antiqua" + } + ], + "variant_access_point": [ + "Nicolas Cochin (Druckschrift)" + ], + "md5": "6b2510c784b07d05f1b2b3e7356adb6d" + }, + { + "authorized_access_point": "Wei\u00df-Rundgotisch", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7646722-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992740622" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7646722-3" + } + ], + "identifier": "http://d-nb.info/gnd/7646722-3", + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungsjahr: 1937" + ] + } + ], + "pid": "992740622", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Rundgotische Schrift" + } + ], + "md5": "df1648afb581921feecdb7e4d06607e6" + }, + { + "authorized_access_point": "Lucian (Druckschrift, Frankfurt am Main)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7646656-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992740002" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7646656-5" + } + ], + "identifier": "http://d-nb.info/gnd/7646656-5", + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungsjahr: 1932" + ] + } + ], + "pid": "992740002", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Lucian (Druckschrift)" + } + ], + "variant_access_point": [ + "Lucian-Schrift", + "Lucian-Antiqua (Frankfurt am Main)" + ], + "md5": "40f081bb64dcaee50628fd9476013c3b" + }, + { + "authorized_access_point": "Batarde (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7646644-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992739888" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7646644-9" + } + ], + "identifier": "http://d-nb.info/gnd/7646644-9", + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungsjahr 1915" + ] + } + ], + "pid": "992739888", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schreibschrift (Druckschrift)" + } + ], + "md5": "966a3440ac58663a384f4ce5e461771f" + }, + { + "authorized_access_point": "Erasmus-Mediaeval", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7646131-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992734894" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7646131-2" + } + ], + "identifier": "http://d-nb.info/gnd/7646131-2", + "note": [ + { + "noteType": "general", + "label": [ + "Enstehungsjahr 1923" + ] + } + ], + "pid": "992734894", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Renaissance-Antiqua" + } + ], + "variant_access_point": [ + "Erasmus (Druckschrift)" + ], + "md5": "48e3ef4f7d497e1383f949a0b74b3891" + }, + { + "authorized_access_point": "Baskerville-Antiqua (Frankfurt am Main, 1923)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7645998-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992733510" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7645998-6" + } + ], + "identifier": "http://d-nb.info/gnd/7645998-6", + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungsjahr: 1923 (Hausschnitt)" + ] + } + ], + "pid": "992733510", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Baskerville-Antiqua" + } + ], + "md5": "b2bdf36abc87ba1833b24ba68ee2e353" + }, + { + "authorized_access_point": "Minbar", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7642353-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992258820" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7642353-0" + } + ], + "identifier": "http://d-nb.info/gnd/7642353-0", + "closeMatch": [ + { + "authorized_access_point": "Minbars", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334558051" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh98000721" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh98000721" + } + ] + }, + { + "authorized_access_point": "Minbars", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334558051" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16908643" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16908643d" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Kanzel in der Moschee, auf der die Freitagspredigt gehalten wird" + ] + } + ], + "pid": "992258820", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Moschee" + } + ], + "variant_access_point": [ + "Mimbar" + ], + "md5": "13342b400fae64ae8a0397f4ea005176" + }, + { + "authorized_access_point": "Kritische Infrastruktur", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7636249-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)991512669" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7636249-8" + } + ], + "identifier": "http://d-nb.info/gnd/7636249-8", + "note": [ + { + "noteType": "general", + "label": [ + "Kritische Infrastrukturen sind Organisationen und Einrichtung mit wichtiger Bedeutung fu\u0308r das staatliche Gemeinwesen, bei deren Beeintra\u0308chtigung oder Ausfall nachhaltig wirkende Versorgungsengpa\u0308sse, erhebliche Sto\u0308rungen der o\u0308ffentlichen Sicherheit oder andere dramatische Folgen eintra\u0308ten." + ] + } + ], + "pid": "991512669", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Infrastruktur" + } + ], + "variant_access_point": [ + "Critical infrastructure", + "KRITIS" + ], + "md5": "1bb0f793decf0ab4d941cd301fc40a19" + }, + { + "authorized_access_point": "Puppenmo\u0308bel", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7632599-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)99110546X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7632599-4" + } + ], + "identifier": "http://d-nb.info/gnd/7632599-4", + "closeMatch": [ + { + "authorized_access_point": "Doll furniture", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113396169X" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85038854" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85038854" + } + ] + }, + { + "authorized_access_point": "Meubles de poupe\u0301e", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113396169X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11946086" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11946086p" + } + ] + } + ], + "pid": "99110546X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Puppenhaus" + } + ], + "md5": "078c0e08f11184a4d45785fe4f6ad152" + }, + { + "authorized_access_point": "Maschinenbauingenieurin", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7627826-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)990635139" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7627826-8" + } + ], + "identifier": "http://d-nb.info/gnd/7627826-8", + "pid": "990635139", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ingenieurin" + } + ], + "related": [ + { + "authorized_access_point": "Maschinenbauingenieur" + } + ], + "variant_access_point": [ + "Maschineningenieurin" + ], + "md5": "324ef0e5a08c7033ad7884b3083c1e82" + }, + { + "authorized_access_point": "Default", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7620656-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)989819264" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7620656-7" + } + ], + "identifier": "http://d-nb.info/gnd/7620656-7", + "note": [ + { + "noteType": "general", + "label": [ + "Voreingestellter Wert fu\u0308r System- oder Programmparameter" + ] + } + ], + "pid": "989819264", + "type": "bf:Topic", + "variant_access_point": [ + "Defaultwert", + "Voreinstellung" + ], + "md5": "557a773af1b67b4d8b803c067469a35c" + }, + { + "authorized_access_point": "Pommernfeldzug", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7597978-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)987246100" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7597978-0" + } + ], + "identifier": "http://d-nb.info/gnd/7597978-0", + "pid": "987246100", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Nordischer Krieg (1700-1721)" + } + ], + "md5": "8317fcfd5a4a5c59cbaa3114f90db816" + }, + { + "authorized_access_point": "Buchhalterin", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7586536-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)986124265" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7586536-1" + } + ], + "identifier": "http://d-nb.info/gnd/7586536-1", + "closeMatch": [ + { + "authorized_access_point": "Women accountants", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331760119" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85147420" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85147420" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Buchhalter", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)986131555" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "29760-2" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/29760-2" + } + ] + } + ], + "pid": "986124265", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kauffrau" + } + ], + "related": [ + { + "authorized_access_point": "Buchhalter" + } + ], + "md5": "173c104a3c0bbd3146732b826ca8182e" + }, + { + "authorized_access_point": "Nilbarsch", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7584064-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)985953780" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7584064-9" + } + ], + "identifier": "http://d-nb.info/gnd/7584064-9", + "closeMatch": [ + { + "authorized_access_point": "Nile perch", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133714390" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85091950" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85091950" + } + ] + }, + { + "authorized_access_point": "Perche du Nil", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133714390" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12061925" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12061925r" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Art d. Glasbarsche" + ] + } + ], + "pid": "985953780", + "type": "bf:Topic", + "variant_access_point": [ + "Lates niloticus", + "Viktoriabarsch" + ], + "md5": "bc3a4d7e8b59e2d78c24ccb8e0616843" + }, + { + "authorized_access_point": "Erotisches Ma\u0308rchen", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7583981-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)985948116" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7583981-7" + } + ], + "identifier": "http://d-nb.info/gnd/7583981-7", + "closeMatch": [ + { + "authorized_access_point": "Erotic stories", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)133160835X" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85044708" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85044708" + } + ] + }, + { + "authorized_access_point": "Contes e\u0301rotiques", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)133160835X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16918747" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb169187478" + } + ] + } + ], + "pid": "985948116", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ma\u0308rchen" + }, + { + "authorized_access_point": "Erotische Literatur" + } + ], + "md5": "d33d118ff91f4b61f33fa2829346da6c" + }, + { + "authorized_access_point": "Heimsuchung Maria\u0308 (Fest)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7576849-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)985147172" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7576849-5" + } + ], + "identifier": "http://d-nb.info/gnd/7576849-5", + "closeMatch": [ + { + "authorized_access_point": "Visitation Festival", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133660339" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85143888" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85143888" + } + ] + }, + { + "authorized_access_point": "Visitation (fe\u0302te)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133660339" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11961516" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119615163" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Mari%C3%A4_Heimsuchung&oldid=185056160" + ] + }, + { + "noteType": "general", + "label": [ + "Das Fest Maria\u0308 Heimsuchung am 2. Juli (oder mancherorts am 31. Mai)." + ] + } + ], + "pid": "985147172", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Marienfest" + }, + { + "authorized_access_point": "Kirchenfest" + } + ], + "variant_access_point": [ + "Mariae Heimsuchung (Fest)", + "Maria Heimsuchung", + "Visitatio Beatae Mariae Virginis", + "Visitatio Mariae" + ], + "md5": "8bb980f50c47f671a2ad1e826bdd6312" + }, + { + "authorized_access_point": "Selbsterlo\u0308sung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7576365-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)985075619" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7576365-5" + } + ], + "identifier": "http://d-nb.info/gnd/7576365-5", + "pid": "985075619", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Erlo\u0308sung" + } + ], + "variant_access_point": [ + "Autosoterik" + ], + "md5": "a45aed83855d1447e8070a2d2e22a8cb" + }, + { + "authorized_access_point": "Pogona henrylawsoni", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7571568-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)984505180" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7571568-5" + } + ], + "identifier": "http://d-nb.info/gnd/7571568-5", + "closeMatch": [ + { + "authorized_access_point": "Agame barbu de Lawson", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333990774" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF15961384" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb15961384k" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Art d. Gattung Pogona , UF Amphibolurinae, Fam. Agamen (Agamidae)" + ] + } + ], + "pid": "984505180", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Agamen" + } + ], + "variant_access_point": [ + "Zwergbartagame", + "Schwarzerde-Bartagame" + ], + "md5": "9d7a3933169b329d9d54ccdc35f2cf3c" + }, + { + "authorized_access_point": "Epigenetik", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7566079-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)983782784" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7566079-9" + } + ], + "identifier": "http://d-nb.info/gnd/7566079-9", + "closeMatch": [ + { + "authorized_access_point": "E\u0301pige\u0301ne\u0301tique", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134695667" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF14560895" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb14560895j" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Teilgebiet der Genetik, das untersucht, wie und warum Gene in unterschiedlicher Weise ein- und ausgeschaltet werden, ohne dass sich dabei die Nukleotidsequenzen dieser Gene a\u0308ndern." + ] + } + ], + "pid": "983782784", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Genetik" + } + ], + "related": [ + { + "authorized_access_point": "Epigenese" + } + ], + "md5": "1301719bae59d4ea5081bda6cd58b7a0" + }, + { + "authorized_access_point": "Eleganz", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7564301-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)983616299" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7564301-7" + } + ], + "identifier": "http://d-nb.info/gnd/7564301-7", + "closeMatch": [ + { + "authorized_access_point": "E\u0301le\u0301gance", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333314981" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12068131" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb120681315" + } + ] + } + ], + "pid": "983616299", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "A\u0308sthetik" + } + ], + "related": [ + { + "authorized_access_point": "Vornehmheit" + } + ], + "md5": "d2140174d0ee7c7b321dd4079e4ef381" + }, + { + "authorized_access_point": "Armenierin", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7563049-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)98350816X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7563049-7" + } + ], + "identifier": "http://d-nb.info/gnd/7563049-7", + "exactMatch": [ + { + "authorized_access_point": "Armenier", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1007250054" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "26103-4" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/26103-4" + } + ] + } + ], + "closeMatch": [ + { + "authorized_access_point": "Arme\u0301niennes", + "source": "GND", + "identifiedBy": [ + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17942155" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17942155j" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Benutzt, soweit au\u00dferhalb Armeniens, sonst verknu\u0308pfe Armenien ; Frau" + ] + } + ], + "pid": "98350816X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ausla\u0308nderin" + } + ], + "related": [ + { + "authorized_access_point": "Armenier" + } + ], + "variant_access_point": [ + "Armenische Frau" + ], + "md5": "b5e6c7347057b5b0fc6ce28ed61d6eec" + }, + { + "authorized_access_point": "Ringdrossel", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7562902-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)983481644" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7562902-1" + } + ], + "identifier": "http://d-nb.info/gnd/7562902-1", + "closeMatch": [ + { + "authorized_access_point": "Ring ouzel", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333493673" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh94009324" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh94009324" + } + ] + }, + { + "authorized_access_point": "Merle a\u0300 plastron", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333493673" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17998713" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17998713r" + } + ] + } + ], + "pid": "983481644", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Drosseln" + } + ], + "variant_access_point": [ + "Turdus torquatus" + ], + "md5": "968266d4ebfcddcc6f4bd9d5ea28932d" + }, + { + "authorized_access_point": "Misteldrossel", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7562900-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)983481628" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7562900-8" + } + ], + "identifier": "http://d-nb.info/gnd/7562900-8", + "closeMatch": [ + { + "authorized_access_point": "Grive draine", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333493827" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12491932" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12491932b" + } + ] + } + ], + "pid": "983481628", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Drosseln" + } + ], + "variant_access_point": [ + "Turdus viscivorus" + ], + "md5": "7092baf43f183f0964de65c80b50e028" + }, + { + "authorized_access_point": "Legende (Bild)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7557792-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)982938322" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7557792-6" + } + ], + "identifier": "http://d-nb.info/gnd/7557792-6", + "closeMatch": [ + { + "authorized_access_point": "Photograph captions", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331595843" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2002000621" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2002000621" + } + ] + }, + { + "authorized_access_point": "Le\u0301gendes (images)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331595843" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18058702" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb18058702v" + } + ] + } + ], + "pid": "982938322", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Beschriftung" + } + ], + "variant_access_point": [ + "Bildlegende", + "Bildunterschrift", + "Begleittext (Bild)" + ], + "md5": "196d7e4d1efcadc58e42bd407efe7659" + }, + { + "authorized_access_point": "Vidunda", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7553407-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)982377649" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7553407-1" + } + ], + "identifier": "http://d-nb.info/gnd/7553407-1", + "closeMatch": [ + { + "authorized_access_point": "Vidunda language", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134833679" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2011001549" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2011001549" + } + ] + }, + { + "authorized_access_point": "Vidunda (langue)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134833679" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17951629" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17951629b" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Bantu-Sprache in Tansania, S Kilosa Dist." + ] + } + ], + "pid": "982377649", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Bantusprachen" + } + ], + "variant_access_point": [ + "ChiVidunda", + "KiVidunda", + "Ndunda" + ], + "md5": "1e9bcc0aad88cd67a33f08a8b5f92c7f" + }, + { + "authorized_access_point": "Strepsirhini", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7551325-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)982125461" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7551325-0" + } + ], + "identifier": "http://d-nb.info/gnd/7551325-0", + "closeMatch": [ + { + "authorized_access_point": "Prosimians", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)133325802X" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh95008717" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh95008717" + } + ] + }, + { + "authorized_access_point": "Strepsirhiniens", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)133325802X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13571212" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13571212p" + } + ] + } + ], + "pid": "982125461", + "type": "bf:Topic", + "variant_access_point": [ + "Strepsirrhini", + "Feuchtnasenaffen" + ], + "md5": "3d844b704e9aa9b3c08e0a65c4ad0840" + }, + { + "authorized_access_point": "Theaterkritikerin", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7541288-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)981073328" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7541288-3" + } + ], + "identifier": "http://d-nb.info/gnd/7541288-3", + "closeMatch": [ + { + "authorized_access_point": "Women theater critics", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331761549" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2010007778" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2010007778" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Als Homonymenzusatz bei Personenschlagworten zugelassen." + ] + } + ], + "pid": "981073328", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kritikerin" + } + ], + "related": [ + { + "authorized_access_point": "Theaterkritiker" + } + ], + "md5": "9ca3247e9d0e1163fe2890b50e2f49bc" + }, + { + "authorized_access_point": "Statistikerin", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7541108-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)98106521X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7541108-8" + } + ], + "identifier": "http://d-nb.info/gnd/7541108-8", + "closeMatch": [ + { + "authorized_access_point": "Women statisticians", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331756308" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85147716" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85147716" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Berufenet - https://berufenet.arbeitsagentur.de/berufenet/faces/index?path=null/suchergebnisse/kurzbeschreibung&dkz=58778&such=Statistiker%2Fin" + ] + }, + { + "noteType": "general", + "label": [ + "Als Homonymenzusatz bei Personenschlagworten zugelassen" + ] + } + ], + "pid": "98106521X", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Statistiker" + } + ], + "md5": "3030ac1da95cddba024100fdf41f6339" + }, + { + "authorized_access_point": "Ma\u0308nnliche Hebamme", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7538946-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)980868459" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7538946-0" + } + ], + "identifier": "http://d-nb.info/gnd/7538946-0", + "note": [ + { + "noteType": "general", + "label": [ + "Als Homonymenzusatz bei Personenschlagworten zugelassen." + ] + } + ], + "pid": "980868459", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Medizinisches Personal" + } + ], + "related": [ + { + "authorized_access_point": "Hebamme" + } + ], + "variant_access_point": [ + "Entbindungspfleger", + "Geburtshelfer (Ma\u0308nnliche Hebamme)" + ], + "md5": "6ffb89e9a2ceb7097400191badf9b016" + }, + { + "authorized_access_point": "Schlacht von Otterburn", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7532405-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)980347890" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7532405-2" + } + ], + "identifier": "http://d-nb.info/gnd/7532405-2", + "closeMatch": [ + { + "authorized_access_point": "Otterburn, Bataille d' (1388)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134272138" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12317384" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12317384j" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Schlacht_von_Otterburn&oldid=216793433" + ] + }, + { + "noteType": "general", + "label": [ + "15. August 1388" + ] + } + ], + "pid": "980347890", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schlacht" + } + ], + "variant_access_point": [ + "Battle of Otterburn" + ], + "md5": "bec2e457c82820f8739a6ae0bd99c36b" + }, + { + "authorized_access_point": "Elektrotriebwagen Baureihe ET 165", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7526925-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)979633079" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7526925-9" + } + ], + "identifier": "http://d-nb.info/gnd/7526925-9", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=DR-Baureihe_ET_165&oldid=221388856" + ] + }, + { + "noteType": "general", + "label": [ + "Elektrischer Triebwagen, der von 1928 bis 1932 fu\u0308r die Berliner S-Bahn gebaut wurde" + ] + } + ], + "pid": "979633079", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Elektrotriebwagen" + } + ], + "variant_access_point": [ + "Stadtbahner", + "DR-Baureihe ET 165", + "Baureihe 275 (DR)", + "Baureihe 475 (DB)" + ], + "md5": "adf6f66e5bac4d61d4ca091a5c189c04" + }, + { + "authorized_access_point": "Mikrofertigung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7523640-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)979217253" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7523640-0" + } + ], + "identifier": "http://d-nb.info/gnd/7523640-0", + "pid": "979217253", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fertigung" + } + ], + "related": [ + { + "authorized_access_point": "Mikrosystemtechnik" + } + ], + "variant_access_point": [ + "Mikrofertigungsverfahren" + ], + "md5": "8cdfbfcc739934d5eddd43b98b65b460" + }, + { + "authorized_access_point": "Ku\u0308nstlerisches Manifest", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7523608-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)979214998" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7523608-4" + } + ], + "identifier": "http://d-nb.info/gnd/7523608-4", + "closeMatch": [ + { + "authorized_access_point": "Art manifestos", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333996292" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2016001208" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2016001208" + } + ] + }, + { + "authorized_access_point": "Manifestes litte\u0301raires et artistiques", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333996292" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12536532" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12536532c" + } + ] + } + ], + "pid": "979214998", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Manifest" + } + ], + "variant_access_point": [ + "Manifest" + ], + "md5": "ce8b68336e41a2ef0af7b283bcf5b809" + }, + { + "authorized_access_point": "Schiffshalter", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7500175-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)977813762" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7500175-5" + } + ], + "identifier": "http://d-nb.info/gnd/7500175-5", + "closeMatch": [ + { + "authorized_access_point": "Echeneidae", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333377096" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85040688" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85040688" + } + ] + }, + { + "authorized_access_point": "E\u0301che\u0301ne\u0301ide\u0301s", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333377096" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17153281" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17153281f" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Familie d. Barschartigen Fische im Atlantik, Pazifik u. Indischen Ozean" + ] + } + ], + "pid": "977813762", + "type": "bf:Topic", + "variant_access_point": [ + "Kopfsauger", + "Echeneidae" + ], + "md5": "9e6863b2c35ba5692925f7cf0f9722b7" + }, + { + "authorized_access_point": "Kubrawi", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4998520-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)977682633" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4998520-6" + } + ], + "identifier": "http://d-nb.info/gnd/4998520-6", + "note": [ + { + "noteType": "general", + "label": [ + "Sufiorden in Zentralasien" + ] + } + ], + "pid": "977682633", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Sufi-Bruderschaft" + } + ], + "variant_access_point": [ + "Kubravi", + "Kubra\u0304viya", + "Kubrawiyya", + "Kubraviyya", + "Kubrawi\u0304ya", + "Ku\u0308breviyye" + ], + "md5": "298719c0802a22e520390bf24e358a25" + }, + { + "authorized_access_point": "Toter Winkel", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4997436-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)977294390" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4997436-1" + } + ], + "identifier": "http://d-nb.info/gnd/4997436-1", + "pid": "977294390", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Sichtfeld" + } + ], + "md5": "50cfd70d64e009eeb8c387652113e60e" + }, + { + "authorized_access_point": "Symphodus tinca", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4847293-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)976865351" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4847293-1" + } + ], + "identifier": "http://d-nb.info/gnd/4847293-1", + "closeMatch": [ + { + "authorized_access_point": "Cre\u0301nilabre paon", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333266111" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17803725" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17803725h" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Art der Lippfische (Labridae); Putzerfisch" + ] + } + ], + "pid": "976865351", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Lippfische" + } + ], + "variant_access_point": [ + "Pfauenlippfisch" + ], + "md5": "00192072f33e614e279d0724ff411bb7" + }, + { + "authorized_access_point": "Gestreifte Meerbarbe", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4847270-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)976859416" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4847270-0" + } + ], + "identifier": "http://d-nb.info/gnd/4847270-0", + "closeMatch": [ + { + "authorized_access_point": "Rouget de roche", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333450095" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17804174" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb178041749" + } + ] + } + ], + "pid": "976859416", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Meerbarben" + } + ], + "variant_access_point": [ + "Mullus surmuletus" + ], + "md5": "6b0adb4984b2b3d6c4d9913fd72eb154" + }, + { + "authorized_access_point": "Fa\u0308dlerfische", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4838008-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)976009048" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4838008-8" + } + ], + "identifier": "http://d-nb.info/gnd/4838008-8", + "closeMatch": [ + { + "authorized_access_point": "Polynemidae", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333484488" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85104687" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85104687" + } + ] + }, + { + "authorized_access_point": "Polynemidae", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333484488" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17157668" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb171576689" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Familie der Barschartigen Fische" + ] + } + ], + "pid": "976009048", + "type": "bf:Topic", + "variant_access_point": [ + "Polynemidae", + "Fingerfische" + ], + "md5": "03fe2d2fbcd608bf1e27195b2e3d4d83" + }, + { + "authorized_access_point": "Reklamation", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4834499-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)975670824" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4834499-0" + } + ], + "identifier": "http://d-nb.info/gnd/4834499-0", + "closeMatch": [ + { + "authorized_access_point": "Consumer complaints", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113450019X" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85031477" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85031477" + } + ] + }, + { + "authorized_access_point": "Re\u0301clamations clients", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113450019X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16582482" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb165824828" + } + ] + }, + { + "authorized_access_point": "Reclamaciones de consumo", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254479023" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX547082" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX547082" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Beschwerdemanagement", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)975677063" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "19134-5" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/19134-5" + } + ] + }, + { + "authorized_access_point": "Reklamation", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)975677306" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10056526" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10056526" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "fu\u0308r das Beschwerdemanagement verknu\u0308pfe mit Kundenmanagement, Servicepolitik o.a\u0308." + ] + } + ], + "pid": "975670824", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Retoure" + } + ], + "variant_access_point": [ + "Beschwerde (Reklamation)", + "Verbraucherbeschwerde", + "Verbraucherreklamation", + "Verbraucher", + "Verbraucher", + "Kundenbeschwerde", + "Kundenreklamation", + "Kunde", + "Kunde", + "Complaint" + ], + "md5": "07864387b0889643740c758d2f627147" + }, + { + "authorized_access_point": "FRAM (Informatik)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4830042-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)975199056" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4830042-1" + } + ], + "identifier": "http://d-nb.info/gnd/4830042-1", + "closeMatch": [ + { + "authorized_access_point": "Ferroelectric storage cells", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134626886" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85047879" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85047879" + } + ] + } + ], + "pid": "975199056", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "RAM" + }, + { + "authorized_access_point": "Nichtflu\u0308chtiger Speicher" + } + ], + "variant_access_point": [ + "FeRAM", + "F-RAM", + "Ferroelectric random access memory", + "Ferroelectric RAM", + "Ferroelektrischer Speicher mit wahlfreiem Zugriff" + ], + "md5": "0e0d4f0855462d22e9b8e31cbad984d1" + }, + { + "authorized_access_point": "Penetrationstest", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4825817-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)97466068X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4825817-9" + } + ], + "identifier": "http://d-nb.info/gnd/4825817-9", + "closeMatch": [ + { + "authorized_access_point": "Penetration testing (Computer security)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334217106" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2011003137" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2011003137" + } + ] + }, + { + "authorized_access_point": "Tests d'intrusion (informatique)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334217106" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17163606" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb171636060" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Der kontrollierten Versuch (\"gelenktes Hacking\") , von au\u00dfen in ein bestimmtes Computersystem bzw. -netzwerk einzudringen, um Schwachstellen zu identifizieren. Dazu werden die gleichen bzw. a\u0308hnliche Techniken eingesetzt, die auch bei einem realen Angriff verwendet werden. (Bundesamt fu\u0308r Sicherheit in der Informationstechnik)", + "Fu\u0308r das Erkennen versuchter Angriffe verwende Eindringerkennung." + ] + } + ], + "pid": "97466068X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Computersicherheit" + } + ], + "variant_access_point": [ + "Penetration Testing", + "Pen-Test" + ], + "md5": "77743d6da97d666509737f9783e2c21a" + }, + { + "authorized_access_point": "Leuchthaus-Bewegung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4824680-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)974476560" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4824680-3" + } + ], + "identifier": "http://d-nb.info/gnd/4824680-3", + "closeMatch": [ + { + "authorized_access_point": "Lighthouse movement", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331867320" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh00006530" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh00006530" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "urspru\u0308ngl. von den USA ausgehende Evangelisationsbewegung" + ] + } + ], + "pid": "974476560", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Evangelikale Bewegung" + } + ], + "variant_access_point": [ + "Discipling A Whole Nation", + "Lighthouse-Bewegung", + "DAWN-Bewegung", + "DAWN-Strategie", + "Lighthouse Movement" + ], + "md5": "341b103c8d08664c6b6e3f7bebeeb6f6" + }, + { + "authorized_access_point": "Helvetica (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4819794-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)974160032" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4819794-4" + } + ], + "identifier": "http://d-nb.info/gnd/4819794-4", + "closeMatch": [ + { + "authorized_access_point": "Helvetica type", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134800983" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2010012863" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2010012863" + } + ] + }, + { + "authorized_access_point": "Caracte\u0300res Helvetica", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134800983" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16084551" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16084551w" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "1957 von Max Miedinger fu\u0308r die Haas'sche Schriftgiesserei in Basel entwickelte serifenlose Schrift. 1960 Umbenennung in Helvetica", + "Benutzt fu\u0308r alle Helvetica-Schriften. Einzelne Helvetica-Schriften werden getrennt angesetzt." + ] + } + ], + "pid": "974160032", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Groteskschrift" + } + ], + "related": [ + { + "authorized_access_point": "Neue Haas-Grotesk" + } + ], + "md5": "75788d04a79a8778eab6c9d3dbb7ff8f" + }, + { + "authorized_access_point": "Schwarzer Bru\u0308llaffe", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4817251-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)97397687X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4817251-0" + } + ], + "identifier": "http://d-nb.info/gnd/4817251-0", + "closeMatch": [ + { + "authorized_access_point": "Black howler monkey", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133818668" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85014575" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85014575" + } + ] + }, + { + "authorized_access_point": "Hurleur noir", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133818668" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12509694" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb125096949" + } + ] + } + ], + "pid": "97397687X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kapuzineraffenartige" + } + ], + "variant_access_point": [ + "Alouatta caraya", + "Caraya" + ], + "md5": "4b52e98b3e4ef6439843423caf7eba50" + }, + { + "authorized_access_point": "Tunesierin", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4801057-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)972616705" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4801057-1" + } + ], + "identifier": "http://d-nb.info/gnd/4801057-1", + "closeMatch": [ + { + "authorized_access_point": "Tunisians", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134403763" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85138663" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85138663" + } + ] + }, + { + "authorized_access_point": "Tunisiennes", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134403763" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF14412750" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb14412750k" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Tunesier", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1011431920" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "26827-4" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/26827-4" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Benutzt, soweit au\u00dferhalb von Tunesien, sonst verknu\u0308pfe Tunesien ; Frau" + ] + } + ], + "pid": "972616705", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ausla\u0308nderin" + } + ], + "related": [ + { + "authorized_access_point": "Tunesier" + } + ], + "variant_access_point": [ + "Tunesische Frau" + ], + "md5": "3573c8073c2fbfe7e44965a527790cc2" + }, + { + "authorized_access_point": "Keimzelltumor", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4796842-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)972391010" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4796842-4" + } + ], + "identifier": "http://d-nb.info/gnd/4796842-4", + "pid": "972391010", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tumor" + } + ], + "variant_access_point": [ + "Germinaler Tumor" + ], + "md5": "40ffbc12df518c44fb0d5c1315690a5a" + }, + { + "authorized_access_point": "Geoffroy-Klammeraffe", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4779167-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)971044899" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4779167-6" + } + ], + "identifier": "http://d-nb.info/gnd/4779167-6", + "closeMatch": [ + { + "authorized_access_point": "Central American spider monkey", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)133326125X" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85021897" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85021897" + } + ] + } + ], + "pid": "971044899", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kapuzineraffenartige" + } + ], + "variant_access_point": [ + "Ateles geoffroyi" + ], + "md5": "9fe24e99e120b58a1e2358142766d9a2" + }, + { + "authorized_access_point": "Ayin-i Cem", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4774342-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970758065" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4774342-6" + } + ], + "identifier": "http://d-nb.info/gnd/4774342-6", + "note": [ + { + "noteType": "general", + "label": [ + "Religio\u0308ses Fest der anatolischen Alewiten und Bektaschiten in Verbindung mit Tanz und Alkoholgenuss" + ] + } + ], + "pid": "970758065", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Religio\u0308ses Fest" + } + ], + "related": [ + { + "authorized_access_point": "Bektaschismus" + } + ], + "variant_access_point": [ + "Cem Ayini", + "Ayinu\u0308'l-cem" + ], + "md5": "d7559ca0b67a39240edeefc4967f36ee" + }, + { + "authorized_access_point": "Gitter-Boltzmann-Methode", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4772570-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970679645" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4772570-9" + } + ], + "identifier": "http://d-nb.info/gnd/4772570-9", + "closeMatch": [ + { + "authorized_access_point": "Lattice Boltzmann methods", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134532490" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2008008129" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2008008129" + } + ] + }, + { + "authorized_access_point": "Me\u0301thode de Boltzmann sur re\u0301seau", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134532490" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18052725" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb180527252" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/wiki/Lattice-Boltzmann-Methode" + ] + }, + { + "noteType": "general", + "label": [ + "Numerisches Verfahren zur Simulation von Stro\u0308mungs- und Transportvorga\u0308ngen. Die Simulation wird auf der Teilchenebene durchgefu\u0308hrt. Dabei werden im Gegensatz zu den Lattice-Gas-Verfahren keine bina\u0308ren Teilchen sondern kontinuierliche Teilchendichten verwendet." + ] + } + ], + "pid": "970679645", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Numerisches Verfahren" + } + ], + "related": [ + { + "authorized_access_point": "Numerische Stro\u0308mungssimulation" + } + ], + "variant_access_point": [ + "Gitter-Boltzmann-Verfahren", + "Lattice-Boltzmann-Methode", + "Lattice-Boltzmann-Verfahren", + "Lattice Boltzmann Method", + "LBM" + ], + "md5": "306b71d0e78de6264fe86d7667ef8bdc" + }, + { + "authorized_access_point": "Aalmutter", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4767596-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970190417" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4767596-2" + } + ], + "identifier": "http://d-nb.info/gnd/4767596-2", + "closeMatch": [ + { + "authorized_access_point": "Zoarces viviparus", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113483294X" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85149936" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85149936" + } + ] + }, + { + "authorized_access_point": "Loquette d'Europe", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113483294X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17810619" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17810619s" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Fischart" + ] + } + ], + "pid": "970190417", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Aalmuttern (Familie)" + } + ], + "variant_access_point": [ + "Zoarces viviparus" + ], + "md5": "0a35a75ebbcd7b0ad108d899f83acc56" + }, + { + "authorized_access_point": "Plurigeschlecht", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4760319-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)969678363" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4760319-7" + } + ], + "identifier": "http://d-nb.info/gnd/4760319-7", + "pid": "969678363", + "type": "bf:Topic", + "variant_access_point": [ + "Mehrgeschlecht", + "Plurigenus" + ], + "md5": "60f4054f21d14cdbec96b56dc0e8a66f" + }, + { + "authorized_access_point": "Kletterfisch", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4752661-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)969131240" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4752661-0" + } + ], + "identifier": "http://d-nb.info/gnd/4752661-0", + "exactMatch": [ + { + "authorized_access_point": "Anabas testudineus", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333960581" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17797530" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb177975306" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Art der Labyrinthfische" + ] + } + ], + "pid": "969131240", + "type": "bf:Topic", + "variant_access_point": [ + "Kletterbarsch", + "Anabas testudineus" + ], + "md5": "58e73063cb31c5be157eb6875899715f" + }, + { + "authorized_access_point": "Coq-a\u0300-l'a\u0302ne", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4744950-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)968663664" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4744950-0" + } + ], + "identifier": "http://d-nb.info/gnd/4744950-0", + "closeMatch": [ + { + "authorized_access_point": "Coq-a\u0300-l'a\u0302ne", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134067267" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11980993" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11980993t" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Satir. Gattung der frz. Renaissancedichtung" + ] + } + ], + "pid": "968663664", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Satirische Lyrik" + } + ], + "related": [ + { + "authorized_access_point": "Franzo\u0308sisch" + } + ], + "variant_access_point": [ + "Franzo\u0308sisch" + ], + "md5": "66f466b71cdbda9360b92c1fc90ea2f9" + }, + { + "authorized_access_point": "Chipkartenherstellung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4744435-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)968634737" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4744435-6" + } + ], + "identifier": "http://d-nb.info/gnd/4744435-6", + "pid": "968634737", + "type": "bf:Topic", + "variant_access_point": [ + "Chipkarte" + ], + "md5": "be1d0fa80d47a921c48da5c5c7081eca" + }, + { + "authorized_access_point": "Forellenbarsch", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4741261-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)968438121" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4741261-6" + } + ], + "identifier": "http://d-nb.info/gnd/4741261-6", + "closeMatch": [ + { + "authorized_access_point": "Largemouth bass", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333375506" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85074713" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85074713" + } + ] + }, + { + "authorized_access_point": "Black-bass a\u0300 grande bouche", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333375506" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17800601" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17800601h" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Fischart" + ] + } + ], + "pid": "968438121", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Sonnenbarsche (Familie)" + } + ], + "variant_access_point": [ + "Micropterus salmoides" + ], + "md5": "3ce39a2a8ce05978ad7fb5beacf6cb49" + }, + { + "authorized_access_point": "Elliptischer Kegel", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4740628-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)968387705" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4740628-8" + } + ], + "identifier": "http://d-nb.info/gnd/4740628-8", + "pid": "968387705", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kegel" + } + ], + "md5": "2fb1efdf193c80e6bd7ee8f1d7b60be2" + }, + { + "authorized_access_point": "Dissidentin", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4740335-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)968377955" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4740335-4" + } + ], + "identifier": "http://d-nb.info/gnd/4740335-4", + "closeMatch": [ + { + "authorized_access_point": "Dissidentes", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113450991X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17766693" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17766693h" + } + ] + } + ], + "pid": "968377955", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Dissident" + } + ], + "md5": "8b95b8f6b1e2572891237a6e1b00ac51" + }, + { + "authorized_access_point": "Stabkarte", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4740073-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)968360009" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4740073-0" + } + ], + "identifier": "http://d-nb.info/gnd/4740073-0", + "note": [ + { + "noteType": "dataSource", + "label": [ + "B 1996, Internet - http://www.abenteuerreisen.de/wg/mh/wg_mh__rf09__01.htm" + ] + }, + { + "noteType": "general", + "label": [ + "Du\u0308nne, gesplei\u00dfte Bambussta\u0308be und kleine Kaurischnecken, von feinen Pandanusblatt-Streifen zusammengehalten. Mit ihnen versuchten erfahrene Navigatoren auf den Marshallinseln ihr profundes Wissen an andere Mitglieder ihres Clans weiterzugeben." + ] + } + ], + "pid": "968360009", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Seekarte" + } + ], + "variant_access_point": [ + "Sta\u0308bchenkarte" + ], + "md5": "8df518c27b5953cf4434647230433020" + }, + { + "authorized_access_point": "Kirchplatz", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4739584-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)96832780X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4739584-9" + } + ], + "identifier": "http://d-nb.info/gnd/4739584-9", + "closeMatch": [ + { + "authorized_access_point": "Parvis", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334557888" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12349199" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb123491994" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Platz vor einer Kirche" + ] + } + ], + "pid": "96832780X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Platz" + } + ], + "variant_access_point": [ + "Kirchenplatz" + ], + "md5": "6c726f6878404a63ab7c172016ca0733" + }, + { + "authorized_access_point": "Immersion (Virtuelle Realita\u0308t)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4736034-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)967876710" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4736034-3" + } + ], + "identifier": "http://d-nb.info/gnd/4736034-3", + "closeMatch": [ + { + "authorized_access_point": "Shared virtual environments", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134758278" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2006004463" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2006004463" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Empfindung des Cybernauten (= Benutzer einer virtuellen Welt), Teil der virtuellen Welt zu sein" + ] + } + ], + "pid": "967876710", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Telepra\u0308senz" + } + ], + "variant_access_point": [ + "Pra\u0308senzerleben", + "Virtuelle Realita\u0308t (Virtuelle Realita\u0308t)" + ], + "md5": "8cb96c9067111ce4a8c7c2f842e84805" + }, + { + "authorized_access_point": "Mehrfachmalignom", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4733618-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)967734657" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4733618-3" + } + ], + "identifier": "http://d-nb.info/gnd/4733618-3", + "pid": "967734657", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Onkologie" + } + ], + "variant_access_point": [ + "Prima\u0308re Mehrfachmalignome", + "Multiple malignant tumors" + ], + "md5": "a865f3257b43b8232ac91e7737fd1af0" + }, + { + "authorized_access_point": "Fackel", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4732668-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)967659523" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4732668-2" + } + ], + "identifier": "http://d-nb.info/gnd/4732668-2", + "closeMatch": [ + { + "authorized_access_point": "Flambeaux", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333320264" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17135690" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17135690k" + } + ] + } + ], + "pid": "967659523", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Stab" + }, + { + "authorized_access_point": "Leuchte" + } + ], + "md5": "b154584d176eb61f862f5e5ca639895c" + }, + { + "authorized_access_point": "Ko\u0308nigsbarsch", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4731987-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)967617987" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4731987-2" + } + ], + "identifier": "http://d-nb.info/gnd/4731987-2", + "closeMatch": [ + { + "authorized_access_point": "Cobia", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)133348514X" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh93003516" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh93003516" + } + ] + }, + { + "authorized_access_point": "Mafou", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)133348514X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17157745" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17157745x" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Cobia&oldid=183936477" + ] + }, + { + "noteType": "general", + "label": [ + "Fischart" + ] + } + ], + "pid": "967617987", + "type": "bf:Topic", + "variant_access_point": [ + "Rachycentron canadum", + "Cobia", + "Kobia", + "Ko\u0308nigsfisch", + "Offiziersbarsch" + ], + "md5": "f0506af5fbd440ca96af56a1d79711c5" + }, + { + "authorized_access_point": "Eigenu\u0308bersetzung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4727899-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)967326133" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4727899-7" + } + ], + "identifier": "http://d-nb.info/gnd/4727899-7", + "closeMatch": [ + { + "authorized_access_point": "Self-translation", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)133156462X" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2015002455" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2015002455" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "wikipedia - https://de.wikipedia.org/w/index.php?title=Selbst%C3%BCbersetzung&oldid=208077138" + ] + }, + { + "noteType": "general", + "label": [ + "U\u0308bersetzung eines Werkes durch seinen Autor" + ] + } + ], + "pid": "967326133", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "U\u0308bersetzung" + } + ], + "variant_access_point": [ + "Selbstu\u0308bersetzung", + "Ipsou\u0308bersetzung" + ], + "md5": "b5b0a7618af4b9edfb5bf8c5d0bbe6be" + }, + { + "authorized_access_point": "Eisenbauteil", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4725280-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)96717757X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4725280-7" + } + ], + "identifier": "http://d-nb.info/gnd/4725280-7", + "pid": "96717757X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Metallbauteil" + } + ], + "variant_access_point": [ + "Eisen", + "Eisen" + ], + "md5": "e56b95a1219bb32bafd441ae95104bc1" + }, + { + "authorized_access_point": "Wellnesstourismus", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4725163-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)967169399" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4725163-3" + } + ], + "identifier": "http://d-nb.info/gnd/4725163-3", + "closeMatch": [ + { + "authorized_access_point": "Tourisme de bien e\u0302tre", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134501994" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17047235" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17047235v" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Gesundheitstourismus", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1019769505" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "29062-5" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/29062-5" + } + ] + } + ], + "pid": "967169399", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tourismus" + } + ], + "variant_access_point": [ + "Wellness", + "Gesundheitstourismus", + "Gesundheit", + "Gesundheitsorientierter Urlaub" + ], + "md5": "cd05068e8ed696db5393821e11fd15e7" + }, + { + "authorized_access_point": "Solist", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4724917-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)967155223" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4724917-1" + } + ], + "identifier": "http://d-nb.info/gnd/4724917-1", + "closeMatch": [ + { + "authorized_access_point": "Solistes (musiciens)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133859593" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13510667" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13510667k" + } + ] + } + ], + "pid": "967155223", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Virtuose" + } + ], + "md5": "11037409ac36117a3feca5c693b0668d" + }, + { + "authorized_access_point": "Cahn-Hilliard-Gleichung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4723055-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)966649052" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4723055-1" + } + ], + "identifier": "http://d-nb.info/gnd/4723055-1", + "closeMatch": [ + { + "authorized_access_point": "E\u0301quations de Cahn-Hilliard", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333589484" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16605436" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16605436b" + } + ] + } + ], + "pid": "966649052", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Nichtlineare parabolische Differentialgleichung" + } + ], + "variant_access_point": [ + "Cahn-Hilliard equation" + ], + "md5": "3e4f8e77bcd1ca2763b462e5f139ef43" + }, + { + "authorized_access_point": "Coris julis", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4721357-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)966536304" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4721357-7" + } + ], + "identifier": "http://d-nb.info/gnd/4721357-7", + "closeMatch": [ + { + "authorized_access_point": "Girelle", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333268718" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17803543" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17803543w" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Art der Barschartigen Fische" + ] + } + ], + "pid": "966536304", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Lippfische" + } + ], + "md5": "72e7e3c826f884bc9efe762322ef3a58" + }, + { + "authorized_access_point": "Robin-Randwertproblem", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4708822-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)965652785" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4708822-9" + } + ], + "identifier": "http://d-nb.info/gnd/4708822-9", + "closeMatch": [ + { + "authorized_access_point": "Conditions de Robin", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333590725" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17773664" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17773664d" + } + ] + } + ], + "pid": "965652785", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Randwertproblem" + } + ], + "variant_access_point": [ + "Robin Boundary Value Problem", + "Robin Boundary Condition", + "Robin-Randbedingung", + "Dritte Randbedingung" + ], + "md5": "1445b1e1f15be5e23b13a22b13e39010" + }, + { + "authorized_access_point": "Eindringerkennung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4706627-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)965576825" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4706627-1" + } + ], + "identifier": "http://d-nb.info/gnd/4706627-1", + "closeMatch": [ + { + "authorized_access_point": "Intrusion detection systems (Computer security)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334216967" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2010008203" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2010008203" + } + ] + }, + { + "authorized_access_point": "Syste\u0300mes de de\u0301tection d'intrusion (informatique)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334216967" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17163602" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17163602m" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Intrusion_Detection_System&oldid=188067782" + ] + }, + { + "noteType": "general", + "label": [ + "Teilgebiet aus dem IT-Sicherheitsbereich. Methoden und (Software-)Systeme, mit deren Hilfe Angriffe auf Rechnersysteme erkannt werden ko\u0308nnen.", + "Fu\u0308r Systeme zur Erkennung physischer Eindringversuche auf ein Gela\u0308nde, in ein Geba\u0308ude oder in einen Raum verwende Einbruchmeldeanlage" + ] + } + ], + "pid": "965576825", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Computersicherheit" + } + ], + "variant_access_point": [ + "Intrusion Detection", + "Einbruchserkennung (Informatik)", + "Erkennen von Eindringversuchen (Informatik)", + "Erkennung von Eindringlingen (Informatik)", + "Intruder Detection", + "Angriffserkennungssystem", + "Eindring-Erkennungssystem", + "Intrusion Detection System", + "IDS (Informatik)", + "Eindringerkennungssystem" + ], + "md5": "44d3d121ad259cfbf896ff1c38c1b867" + }, + { + "authorized_access_point": "gro\u00df", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4702395-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)965369846" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4702395-8" + } + ], + "identifier": "http://d-nb.info/gnd/4702395-8", + "closeMatch": [ + { + "authorized_access_point": "Gross (The German word)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134009992" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2012004781" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2012004781" + } + ] + }, + { + "authorized_access_point": "Gross (le mot allemand)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134009992" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11965640" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119656406" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Kombiniere mit Sprachbezeichnung und Wortart, z.B. SWW Deutsch ; Adjektiv ; gro\u00df" + ] + } + ], + "pid": "965369846", + "type": "bf:Topic", + "md5": "a38aa5dd5e8a9388f3d9ccc02a41bbcd" + }, + { + "authorized_access_point": "Saltarello", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4702316-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)965367924" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4702316-8" + } + ], + "identifier": "http://d-nb.info/gnd/4702316-8", + "closeMatch": [ + { + "authorized_access_point": "Saltarellos", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134405928" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85116888" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85116888" + } + ] + }, + { + "authorized_access_point": "Saltarelles", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134405928" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF14418759" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb144187594" + } + ] + }, + { + "authorized_access_point": "Saltarelli", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254398546" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "70395" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/70395" + } + ] + } + ], + "pid": "965367924", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Volkstanz" + } + ], + "variant_access_point": [ + "Passo brabante", + "Pas de breban", + "Alta danza", + "Hupfauff", + "Hupfauf", + "Springtanz", + "Nachtanz", + "Tripla" + ], + "md5": "ed0ba2eb8e88da94c1271663276a466f" + }, + { + "authorized_access_point": "O.K.", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4699958-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)965252973" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4699958-9" + } + ], + "identifier": "http://d-nb.info/gnd/4699958-9", + "note": [ + { + "noteType": "general", + "label": [ + "Verknu\u0308pfe mit Sprachbezeichnung und hier nicht permutierender Wortart; z.B. SWW Amerikanisches Englisch ; Interjektion ; O.K." + ] + } + ], + "pid": "965252973", + "type": "bf:Topic", + "variant_access_point": [ + "O. K.", + "okay" + ], + "md5": "be19684d1ea427012ab451911786911d" + }, + { + "authorized_access_point": "Schonischer Krieg", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4695869-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)964979683" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4695869-1" + } + ], + "identifier": "http://d-nb.info/gnd/4695869-1", + "note": [ + { + "noteType": "general", + "label": [ + "Da\u0308n.-schwed. Krieg 1675-1679" + ] + } + ], + "pid": "964979683", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Krieg" + } + ], + "md5": "8b780b4ea017fd3e3f549fe06df195b4" + }, + { + "authorized_access_point": "Schurkenstaat", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4692880-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)964866862" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4692880-7" + } + ], + "identifier": "http://d-nb.info/gnd/4692880-7", + "closeMatch": [ + { + "authorized_access_point": "E\u0301tats voyous", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331527570" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16772002" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16772002t" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "In der politischen Auseinandersetzung international gebra\u0308uchlich gewordene Bezeichnung fu\u0308r Staaten, deren Politik als unberechenbar und friedensgefa\u0308hrdend betrachtet wird" + ] + } + ], + "pid": "964866862", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Staat" + } + ], + "variant_access_point": [ + "Rogue State" + ], + "md5": "08407952f4044bc4c3deae9d8510c7a1" + }, + { + "authorized_access_point": "Garcinia", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4692790-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)964848651" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4692790-6" + } + ], + "identifier": "http://d-nb.info/gnd/4692790-6", + "closeMatch": [ + { + "authorized_access_point": "Garcinia", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134521839" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85053063" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85053063" + } + ] + }, + { + "authorized_access_point": "Garcinia", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134521839" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16649644" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb166496449" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Garcinia", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1256215473" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "3190" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_3190" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Altweltlich-tropische Gattung der Johanniskrautgewa\u0308chse" + ] + } + ], + "pid": "964848651", + "type": "bf:Topic", + "md5": "dbad46abb21320eb089be62a503ef267" + }, + { + "authorized_access_point": "Numerische Stro\u0308mungssimulation", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4690080-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)96473222X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4690080-9" + } + ], + "identifier": "http://d-nb.info/gnd/4690080-9", + "exactMatch": [ + { + "authorized_access_point": "Computational fluid dynamics", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1281121487" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2007008173" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2007008173" + } + ] + } + ], + "closeMatch": [ + { + "authorized_access_point": "Mode\u0301lisation CFD", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1281121487" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17104887" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17104887c" + } + ] + } + ], + "pid": "96473222X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Numerische Mathematik" + }, + { + "authorized_access_point": "Fluiddynamik" + } + ], + "variant_access_point": [ + "CFD", + "Computational fluid dynamics", + "Numerische Stro\u0308mungsmechanik", + "Stro\u0308mungsmechanik" + ], + "md5": "f8b82a2a60037b22d7db5953a6df5728" + }, + { + "authorized_access_point": "Jagdmesser", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4689877-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)964720272" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4689877-3" + } + ], + "identifier": "http://d-nb.info/gnd/4689877-3", + "closeMatch": [ + { + "authorized_access_point": "Couteaux de chasse", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334235244" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17711271" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17711271v" + } + ] + } + ], + "pid": "964720272", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Messer" + }, + { + "authorized_access_point": "Jagdwaffe" + }, + { + "authorized_access_point": "Hieb- und Sto\u00dfwaffe" + } + ], + "md5": "d1dea02cf5c9fa080cebd55f377c01fa" + }, + { + "authorized_access_point": "Kampfmesser", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4686440-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)964519194" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4686440-4" + } + ], + "identifier": "http://d-nb.info/gnd/4686440-4", + "closeMatch": [ + { + "authorized_access_point": "Cutlasses", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334551006" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2002007547" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2002007547" + } + ] + }, + { + "authorized_access_point": "Couteaux de combat", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334551006" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16672701" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb166727017" + } + ] + } + ], + "pid": "964519194", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Messer" + }, + { + "authorized_access_point": "Hieb- und Sto\u00dfwaffe" + } + ], + "related": [ + { + "authorized_access_point": "Dolch" + } + ], + "variant_access_point": [ + "Kampf-Messer", + "Taktisches Einsatzmesser" + ], + "md5": "238c479090c4a1f35a6d5827a387b20f" + }, + { + "authorized_access_point": "Eierbecher", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4684942-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)964421062" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4684942-7" + } + ], + "identifier": "http://d-nb.info/gnd/4684942-7", + "closeMatch": [ + { + "authorized_access_point": "Eggcups", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133852424" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85041219" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85041219" + } + ] + }, + { + "authorized_access_point": "Coquetiers", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133852424" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13335794" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb133357941" + } + ] + } + ], + "pid": "964421062", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Becher" + }, + { + "authorized_access_point": "Essgeschirr" + } + ], + "md5": "b5187b792fe252bd7c0a89547df87f4f" + }, + { + "authorized_access_point": "Faltfa\u0308cher", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4683225-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)964339676" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4683225-7" + } + ], + "identifier": "http://d-nb.info/gnd/4683225-7", + "note": [ + { + "noteType": "general", + "label": [ + "Zusammenklappbarer Fa\u0308cher mit Gestell aus Sta\u0308ben, die durch ein gefaltetes Blatt (meist aus Papier) miteinander verbunden sind." + ] + } + ], + "pid": "964339676", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fa\u0308cher" + } + ], + "md5": "258f58329c74f27e1fd338e85aae73b7" + }, + { + "authorized_access_point": "Mittelmeer-Makrele", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4683068-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)964334666" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4683068-6" + } + ], + "identifier": "http://d-nb.info/gnd/4683068-6", + "closeMatch": [ + { + "authorized_access_point": "Chub mackerel", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333371233" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85025467" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85025467" + } + ] + }, + { + "authorized_access_point": "Maquereau espagnol", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333371233" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17807471" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17807471t" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Art der Makrelen (Scombridae)" + ] + } + ], + "pid": "964334666", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Makrelen und Thunfische" + } + ], + "variant_access_point": [ + "Scomber japonicus", + "Scomber japonicus japonicus", + "Pneumatophorus japonicus", + "Pneumatophorus colias", + "Thunmakrele", + "Chub mackerel" + ], + "md5": "a7109334687318fbc86f6dd1fff51cb1" + }, + { + "authorized_access_point": "Rho-Proteine", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4681926-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)964248026" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4681926-5" + } + ], + "identifier": "http://d-nb.info/gnd/4681926-5", + "closeMatch": [ + { + "authorized_access_point": "GTPases Rho", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133811779" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12488550" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12488550n" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "GTP-bindende Proteine; Regulatoren fu\u0308r Zellfunktionen" + ] + } + ], + "pid": "964248026", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kleine GTP-bindende Proteine" + } + ], + "variant_access_point": [ + "Rho-GTPasen", + "Rho-GTPase", + "Rho-Guanosintriphosphatasen", + "Rho-Guanin-Triphosphatasen", + "EC 3.6.5.2", + "P21 (rho)Protein", + "Rho G-Proteins", + "Rho GTP-Binding Protein", + "Rho GTPases", + "Rho Protein P21", + "Rho Small GTP-Binding Proteins" + ], + "md5": "b735dd3651c4637e0efb64de1a338ddb" + }, + { + "authorized_access_point": "Gru\u0308ner Baumpython", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4678979-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)964078880" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4678979-0" + } + ], + "identifier": "http://d-nb.info/gnd/4678979-0", + "closeMatch": [ + { + "authorized_access_point": "Python vert", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134673639" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF15046308" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb15046308q" + } + ] + } + ], + "pid": "964078880", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Riesenschlangen" + } + ], + "variant_access_point": [ + "Chondropython viridis", + "Morelia viridis" + ], + "md5": "063fe882c694d346204b17a0a88f300b" + }, + { + "authorized_access_point": "Su\u0308\u00dflippen", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4670781-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)963708708" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4670781-5" + } + ], + "identifier": "http://d-nb.info/gnd/4670781-5", + "closeMatch": [ + { + "authorized_access_point": "Grunts (Fishes)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333377517" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85057550.html" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85057550.html" + } + ] + }, + { + "authorized_access_point": "Haemulidae", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333377517" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16593896" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16593896h" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Familie der Barschfische" + ] + } + ], + "pid": "963708708", + "type": "bf:Topic", + "variant_access_point": [ + "Pomadasyidae", + "Grunzer", + "Haemulidae" + ], + "md5": "4b2294d1013a8bb3400532c7671d0a2b" + }, + { + "authorized_access_point": "Olivgru\u0308ner Snook", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4670732-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)963707906" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4670732-3" + } + ], + "identifier": "http://d-nb.info/gnd/4670732-3", + "closeMatch": [ + { + "authorized_access_point": "Snook", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333376200" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85123762" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85123762" + } + ] + }, + { + "authorized_access_point": "Centropomus undecimalis", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333376200" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17798724" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb177987242" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Fischart" + ] + } + ], + "pid": "963707906", + "type": "bf:Topic", + "variant_access_point": [ + "Centropomus undecimalis" + ], + "md5": "20f3b17cc9ba284da0db72c0736cf115" + }, + { + "authorized_access_point": "Mullus", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4670731-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)963707884" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4670731-1" + } + ], + "identifier": "http://d-nb.info/gnd/4670731-1", + "closeMatch": [ + { + "authorized_access_point": "Mullus", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333447876" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85088336" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85088336" + } + ] + }, + { + "authorized_access_point": "Mullus", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333447876" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17093883" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17093883f" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Mullus", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1256238872" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "4981" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_4981" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Fischgattung" + ] + } + ], + "pid": "963707884", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Meerbarben" + } + ], + "md5": "d875b2057a85e4e42d6f177c93f8f118" + }, + { + "authorized_access_point": "Renuntiation", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4666004-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)963495046" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4666004-5" + } + ], + "identifier": "http://d-nb.info/gnd/4666004-5", + "note": [ + { + "noteType": "general", + "label": [ + "Erkla\u0308rung des Verzichts auf bestimmte Rechte oder Einreden" + ] + } + ], + "pid": "963495046", + "type": "bf:Topic", + "variant_access_point": [ + "Verzichtserkla\u0308rung", + "Einrede", + "Verzicht", + "Renunziation", + "Waiver" + ], + "md5": "26aa4c5c3a1548a2c4290f6911f2ee5d" + }, + { + "authorized_access_point": "Private Altersversorgung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4665610-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)963483927" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4665610-8" + } + ], + "identifier": "http://d-nb.info/gnd/4665610-8", + "exactMatch": [ + { + "authorized_access_point": "Private Altersvorsorge", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)966914562" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "18739-4" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/18739-4" + } + ] + } + ], + "pid": "963483927", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Altersversorgung" + } + ], + "variant_access_point": [ + "Private Alterssicherung", + "Riester-Rente", + "Private Altersvorsorge" + ], + "md5": "e944df796d8fb7816d67a6c749efa70d" + }, + { + "authorized_access_point": "Spiegelglasmanufaktur", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4661091-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)96317066X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4661091-1" + } + ], + "identifier": "http://d-nb.info/gnd/4661091-1", + "pid": "96317066X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Manufaktur" + } + ], + "variant_access_point": [ + "Spiegelglas" + ], + "md5": "8082792adbed46e557200591e2ebdb79" + }, + { + "authorized_access_point": "Elefantenorden", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4659956-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)963127608" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4659956-3" + } + ], + "identifier": "http://d-nb.info/gnd/4659956-3", + "note": [ + { + "noteType": "general", + "label": [ + "Oberster da\u0308n. Orden; gu\u0308ltige Form mit d. Statuen v. 1693 festgelegt." + ] + } + ], + "pid": "963127608", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Orden (Ehrenzeichen)" + } + ], + "md5": "4d2a4ba11834af37e81932dabca7ef35" + }, + { + "authorized_access_point": "Wissenschaftlicher Ausschuss", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4659913-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)963125125" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4659913-7" + } + ], + "identifier": "http://d-nb.info/gnd/4659913-7", + "pid": "963125125", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ausschuss" + } + ], + "md5": "1dce25efcabfe95393ab2e143d12c85e" + }, + { + "authorized_access_point": "Makrele", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4657894-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)963005553" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4657894-8" + } + ], + "identifier": "http://d-nb.info/gnd/4657894-8", + "closeMatch": [ + { + "authorized_access_point": "Atlantic mackerel", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134189834" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh99004145" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh99004145" + } + ] + }, + { + "authorized_access_point": "Maquereau", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134189834" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12149035" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb121490358" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "mackerel", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1256234591" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "4498" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_4498" + } + ] + } + ], + "pid": "963005553", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Makrelen und Thunfische" + } + ], + "variant_access_point": [ + "Europa\u0308ische Makrele", + "Scomber scrombrus" + ], + "md5": "96bf87a554ccc7d9aa02bde513bdabc4" + }, + { + "authorized_access_point": "Kunstkritikerin", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4656207-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)962883026" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4656207-2" + } + ], + "identifier": "http://d-nb.info/gnd/4656207-2", + "closeMatch": [ + { + "authorized_access_point": "Women art critics", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331761115" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85147442" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85147442" + } + ] + }, + { + "authorized_access_point": "Femmes critiques d'art", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331761115" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13506562" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13506562t" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Als Homonymenzusatz bei Personenschlagwo\u0308rtern zugelassen" + ] + } + ], + "pid": "962883026", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kritikerin" + } + ], + "related": [ + { + "authorized_access_point": "Kunstkritiker" + } + ], + "variant_access_point": [ + "Kunst" + ], + "md5": "3c823cef377dcc282658d97f24dcb5fb" + }, + { + "authorized_access_point": "Catharus minimus", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4655437-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)962846104" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4655437-3" + } + ], + "identifier": "http://d-nb.info/gnd/4655437-3", + "closeMatch": [ + { + "authorized_access_point": "Gray-cheeked thrush", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333493991" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85013886" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85013886" + } + ] + }, + { + "authorized_access_point": "Grive a\u0300 joues grises", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333493991" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF15642549" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb15642549x" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Art der Drosseln (Turdidae)" + ] + } + ], + "pid": "962846104", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Drosseln" + } + ], + "md5": "644dfdaf7079ed57c8e5af3e784b29d0" + }, + { + "authorized_access_point": "Komparator (La\u0308ngenmessung)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4654254-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)962794015" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4654254-1" + } + ], + "identifier": "http://d-nb.info/gnd/4654254-1", + "pid": "962794015", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Messgera\u0308t" + } + ], + "md5": "845527194120461780c90160580ddc65" + }, + { + "authorized_access_point": "droit", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4651342-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)962681539" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4651342-5" + } + ], + "identifier": "http://d-nb.info/gnd/4651342-5", + "note": [ + { + "noteType": "general", + "label": [ + "Verknu\u0308pfe mit Sprachbezeichnung und hier nicht permutierender Wortart, z.B. SWW Franzo\u0308sisch ; Adjektiv ; droit" + ] + } + ], + "pid": "962681539", + "type": "bf:Topic", + "md5": "42c6ae06d0d69751545080a15e1ba242" + }, + { + "authorized_access_point": "Mundart Ho\u0308chstalemannisch (Pra\u0308ttigau)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4647862-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)962256978" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4647862-0" + } + ], + "identifier": "http://d-nb.info/gnd/4647862-0", + "pid": "962256978", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Ho\u0308chstalemannisch" + }, + { + "authorized_access_point": "Walliserdeutsch" + }, + { + "authorized_access_point": "Schweizerdeutsch" + } + ], + "md5": "2af271ec9b14ed09006b1d9433b5e2ad" + }, + { + "authorized_access_point": "Fu\u00dfball (Sportgera\u0308t)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4643833-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)962005959" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4643833-6" + } + ], + "identifier": "http://d-nb.info/gnd/4643833-6", + "exactMatch": [ + { + "authorized_access_point": "Footballs", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1290726485" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85050423" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85050423" + } + ] + } + ], + "closeMatch": [ + { + "authorized_access_point": "Ballons de football", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333710399" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18096033" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb18096033j" + } + ] + } + ], + "pid": "962005959", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ball" + } + ], + "md5": "89abd085b845f15a08794dbd30aafc33" + }, + { + "authorized_access_point": "Zinkkugelpost", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4641892-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)961909021" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4641892-1" + } + ], + "identifier": "http://d-nb.info/gnd/4641892-1", + "closeMatch": [ + { + "authorized_access_point": "Boules de Moulins", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331570603" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13745361" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13745361v" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Not-Postbefo\u0308rderung in wasserdichten, unter der Wasseroberfla\u0308che treibenden Zinkkugeln, angewendet 1871 zur Postbefo\u0308rderung in das belagerte Paris" + ] + } + ], + "pid": "961909021", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Post" + } + ], + "variant_access_point": [ + "Unterwasserpost", + "Schwimmkugelpost", + "Flusskugelpost", + "Boules-des-Moulins", + "Paris-par-Moulins" + ], + "md5": "1ef17f8c3d10e309444024d82582af48" + }, + { + "authorized_access_point": "Fischha\u0308ndler", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4634759-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)961468319" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4634759-8" + } + ], + "identifier": "http://d-nb.info/gnd/4634759-8", + "closeMatch": [ + { + "authorized_access_point": "Fishmongers", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113452787X" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2019000240" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2019000240" + } + ] + }, + { + "authorized_access_point": "Poissonniers", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113452787X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13337698" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13337698m" + } + ] + }, + { + "authorized_access_point": "Pescivendoli", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254384502" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "52128" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/52128" + } + ] + } + ], + "pid": "961468319", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ha\u0308ndler" + } + ], + "related": [ + { + "authorized_access_point": "Fischhandel" + } + ], + "variant_access_point": [ + "Fische" + ], + "md5": "7e76406a2a6f5f1c9ca86aa1b1889a36" + }, + { + "authorized_access_point": "Weltbu\u0308rger", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4625760-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)960936785" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4625760-3" + } + ], + "identifier": "http://d-nb.info/gnd/4625760-3", + "closeMatch": [ + { + "authorized_access_point": "Citoyennete\u0301 mondiale", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134570465" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF15115323" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb15115323x" + } + ] + } + ], + "pid": "960936785", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Weltbu\u0308rgerin" + }, + { + "authorized_access_point": "Weltbu\u0308rgertum" + } + ], + "variant_access_point": [ + "Kosmopolit" + ], + "md5": "83de97b617bea9fc83713c8094e1a595" + }, + { + "authorized_access_point": "Gauchheil", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4622149-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)960733108" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4622149-9" + } + ], + "identifier": "http://d-nb.info/gnd/4622149-9", + "closeMatch": [ + { + "authorized_access_point": "Anthemis", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134525567" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2009010914" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2009010914" + } + ] + }, + { + "authorized_access_point": "Anthemis", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134525567" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12290124" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12290124x" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Gattung der Primelgewa\u0308chse" + ] + } + ], + "pid": "960733108", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Primelgewa\u0308chse" + } + ], + "variant_access_point": [ + "Anagallis" + ], + "md5": "c434ff00118f917c32bc641ef3e95b86" + }, + { + "authorized_access_point": "Turdus", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4620929-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)960658491" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4620929-3" + } + ], + "identifier": "http://d-nb.info/gnd/4620929-3", + "closeMatch": [ + { + "authorized_access_point": "Turdus", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333493878" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh93001601" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh93001601" + } + ] + }, + { + "authorized_access_point": "Turdus", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333493878" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12266592" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12266592b" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Gattung der Drosseln" + ] + } + ], + "pid": "960658491", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Drosseln" + } + ], + "md5": "e7f92c4ce3f139280d0ee4d75aefc55d" + }, + { + "authorized_access_point": "Anpassungskonstruktion", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4613026-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)960161872" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4613026-3" + } + ], + "identifier": "http://d-nb.info/gnd/4613026-3", + "pid": "960161872", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Konstruktion" + } + ], + "variant_access_point": [ + "A\u0308nderungskonstruktion" + ], + "md5": "5d6af71d6baa3d563b1389c8ee19db67" + }, + { + "authorized_access_point": "Pflegediagnose", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4609251-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)959965831" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4609251-1" + } + ], + "identifier": "http://d-nb.info/gnd/4609251-1", + "closeMatch": [ + { + "authorized_access_point": "Diagnostic infirmier", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133778232" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12344924" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb123449247" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Nursing Diagnosis", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1241617775" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D009733" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D009733" + } + ] + } + ], + "pid": "959965831", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Diagnose" + } + ], + "variant_access_point": [ + "Krankenpflege", + "Pflegediagnostik" + ], + "md5": "4967325a21e436b4281b5c49b16cad7d" + }, + { + "authorized_access_point": "Dornhonen", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4609158-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)959960775" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4609158-0" + } + ], + "identifier": "http://d-nb.info/gnd/4609158-0", + "pid": "959960775", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Honen" + } + ], + "variant_access_point": [ + "Precidor-Honen" + ], + "md5": "c8ed732beaf8e9bc4d30efa5f30ee073" + }, + { + "authorized_access_point": "Gotizismus", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4607525-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)959893202" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4607525-2" + } + ], + "identifier": "http://d-nb.info/gnd/4607525-2", + "note": [ + { + "noteType": "general", + "label": [ + "skandinavische Kulturideologie des 17. -19. Jhs: proklamiert skandinavische U\u0308berlegenheit unter Berufung auf die Goten und ihren Sieg u\u0308ber Rom" + ] + } + ], + "pid": "959893202", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Nationalismus" + } + ], + "variant_access_point": [ + "Goticismus", + "Go\u0308tizismus" + ], + "md5": "2bda02739887f97991dbc115c5e57f75" + }, + { + "authorized_access_point": "Ratsche (Physik)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4605880-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)959807241" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4605880-1" + } + ], + "identifier": "http://d-nb.info/gnd/4605880-1", + "note": [ + { + "noteType": "general", + "label": [ + "System , das in der Lage ist, in einer periodischen Struktur Teilchen mit nichtverschwindender makroskopischen Geschwindigkeit zu transportieren, obwohl im zeitlichen Mittel keine Kraft wirkt" + ] + } + ], + "pid": "959807241", + "type": "bf:Topic", + "variant_access_point": [ + "Ratchet", + "Ratscheneffekt" + ], + "md5": "63a02427cfa937c141e9446bbe7f8f4a" + }, + { + "authorized_access_point": "Kartesische Abgeschlossenheit", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4603779-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)959710248" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4603779-2" + } + ], + "identifier": "http://d-nb.info/gnd/4603779-2", + "pid": "959710248", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Abgeschlossenheit" + } + ], + "variant_access_point": [ + "Cartesische Abgeschlossenheit" + ], + "md5": "0e0010cedf248feb1f69d7a1d8f53160" + }, + { + "authorized_access_point": "Transportables Gera\u0308t", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4592565-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)959143459" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4592565-3" + } + ], + "identifier": "http://d-nb.info/gnd/4592565-3", + "pid": "959143459", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gera\u0308t" + } + ], + "variant_access_point": [ + "Fahrbares Gera\u0308t", + "Mobiles Gera\u0308t", + "Tragbares Gera\u0308t" + ], + "md5": "8d7351a658eafe9df214dcbed53f9bdc" + }, + { + "authorized_access_point": "DVD-ROM", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4585131-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)958745404" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4585131-1" + } + ], + "identifier": "http://d-nb.info/gnd/4585131-1", + "closeMatch": [ + { + "authorized_access_point": "DVD-ROMs", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133880940" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh00009187" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh00009187" + } + ] + }, + { + "authorized_access_point": "DVD-ROM", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133880940" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13616261" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb136162611" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "DVD-Applikation und -standard zum Verbreiten und Abspielen von Daten", + "Verwendet als Sach- und Formschlagwort; als Formschlagwort fu\u0308r alle Arten von DVDs, fu\u0308r die ein Computer als Abspielgera\u0308t notwendig ist (vgl. auch Hinweis bei \"DVD-Video\")." + ] + } + ], + "pid": "958745404", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "DVD" + } + ], + "md5": "63976700a7a44275b60ea452093be532" + }, + { + "authorized_access_point": "DVD-Audio", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4585129-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)958745374" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4585129-3" + } + ], + "identifier": "http://d-nb.info/gnd/4585129-3", + "closeMatch": [ + { + "authorized_access_point": "DVD-Audio discs", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133861881" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2001004459" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2001004459" + } + ] + }, + { + "authorized_access_point": "DVD audio", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133861881" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13514059" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb135140598" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "DVD-Applikation und -standard zum Verbreiten und Abspielen von Audiodaten", + "Verwendet als Sach- und Formschlagwort" + ] + } + ], + "pid": "958745374", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "DVD" + }, + { + "authorized_access_point": "Tontra\u0308ger" + } + ], + "md5": "d48cec252a2f699461544ad6330d7cd8" + }, + { + "authorized_access_point": "DVD-Video", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4585125-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)958745307" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4585125-6" + } + ], + "identifier": "http://d-nb.info/gnd/4585125-6", + "closeMatch": [ + { + "authorized_access_point": "DVD-Video discs", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133861857" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh99002636" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh99002636" + } + ] + }, + { + "authorized_access_point": "DVD vide\u0301o", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133861857" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13514055" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13514055w" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "DVD-Applikation und -standard zum Verbreiten und Abspielen von bewegten Bildern", + "Verwendet als Sach- und Formschlagwort; \"DVD-Video\" wird nur dann als Formschlagwort benutzt, wenn als Abspielgera\u0308te DVD-Player und TVs ausreichen; Videos mit interaktiven Lernprogrammen erfordern einen Computer und bekommen als Formschlagwort \"DVD-Rom\"." + ] + } + ], + "pid": "958745307", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "DVD" + } + ], + "variant_access_point": [ + "DVD-Film" + ], + "md5": "a2b582535849e33785e38e3653e15163" + }, + { + "authorized_access_point": "Turnover Typus", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4582452-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)958577447" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4582452-6" + } + ], + "identifier": "http://d-nb.info/gnd/4582452-6", + "note": [ + { + "noteType": "general", + "label": [ + "Funde der Urnenfelderkultur im Gebiet der Mittleren Iser, Nordbo\u0308hm. Gebiet" + ] + } + ], + "pid": "958577447", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Urnenfelderkultur" + } + ], + "variant_access_point": [ + "Turnover Typ" + ], + "md5": "097155ed236fda78143aff2305a1f289" + }, + { + "authorized_access_point": "Walpurgisnacht", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4581377-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)958508402" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4581377-2" + } + ], + "identifier": "http://d-nb.info/gnd/4581377-2", + "closeMatch": [ + { + "authorized_access_point": "Walpurgis Night", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331749921" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2010013672" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2010013672" + } + ] + }, + { + "authorized_access_point": "Nuit de Walpurgis", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331749921" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16626256" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb166262562" + } + ] + } + ], + "pid": "958508402", + "type": "bf:Topic", + "md5": "6843c4d664fd59bb29f328d70ab701cf" + }, + { + "authorized_access_point": "Doppelfolge", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4575172-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)958195455" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4575172-9" + } + ], + "identifier": "http://d-nb.info/gnd/4575172-9", + "pid": "958195455", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Folge (Mathematik)" + } + ], + "md5": "7308e48ea006adc0ff9fa847532b9e16" + }, + { + "authorized_access_point": "Laienlinguistik", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4572685-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)958121966" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4572685-1" + } + ], + "identifier": "http://d-nb.info/gnd/4572685-1", + "pid": "958121966", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Linguistik" + } + ], + "variant_access_point": [ + "Volkslinguistik" + ], + "md5": "ea6436749fbb08b47302c751bd8d6839" + }, + { + "authorized_access_point": "Farbkupplung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4561589-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)957564554" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4561589-5" + } + ], + "identifier": "http://d-nb.info/gnd/4561589-5", + "note": [ + { + "noteType": "general", + "label": [ + "Terminus der Phototechnik" + ] + } + ], + "pid": "957564554", + "type": "bf:Topic", + "md5": "952aa3b51d63d9e94298aed11bccc313" + }, + { + "authorized_access_point": "Washington (DC) - Vertrag (1871)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4555543-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)957193599" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4555543-6" + } + ], + "identifier": "http://d-nb.info/gnd/4555543-6", + "note": [ + { + "noteType": "general", + "label": [ + "Vertrag zur Regelung von gegenseitigen Reparationszahlungen zwischen Gro\u00dfbritannien und USA fu\u0308r Scha\u0308den im amerikan. Bu\u0308rgerkrieg" + ] + } + ], + "pid": "957193599", + "type": "bf:Topic", + "variant_access_point": [ + "Washington, DC (1871)" + ], + "md5": "aefa09546d7fdab524c8ee55f3044743" + }, + { + "authorized_access_point": "beide", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4554787-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)957133235" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4554787-7" + } + ], + "identifier": "http://d-nb.info/gnd/4554787-7", + "note": [ + { + "noteType": "general", + "label": [ + "Verknu\u0308pfe mit Sprachbezeichnung und hier nicht permutierender Wortart; z.B. SWW Deutsch ; Pronomen ; beide" + ] + } + ], + "pid": "957133235", + "type": "bf:Topic", + "md5": "73a61f0ba19ba77359f573bd2c6d223f" + }, + { + "authorized_access_point": "Grafikerin", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4550852-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)956836976" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4550852-5" + } + ], + "identifier": "http://d-nb.info/gnd/4550852-5", + "closeMatch": [ + { + "authorized_access_point": "Women graphic artists", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331597935" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2022007951" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2022007951" + } + ] + } + ], + "pid": "956836976", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ku\u0308nstlerin" + } + ], + "related": [ + { + "authorized_access_point": "Grafiker" + } + ], + "variant_access_point": [ + "Graphikerin" + ], + "md5": "94695a0c83dcac825b8df29358542519" + }, + { + "authorized_access_point": "Washington (DC) - Eroberung (1814)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4536367-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)956033679" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4536367-5" + } + ], + "identifier": "http://d-nb.info/gnd/4536367-5", + "closeMatch": [ + { + "authorized_access_point": "Washington (D.C.) - History - Capture by the British, 1814", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1239387687" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85145353" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85145353" + } + ] + } + ], + "pid": "956033679", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Britisch-Amerikanischer Krieg" + } + ], + "variant_access_point": [ + "Washington, DC (1814)" + ], + "md5": "785e3414e48c34c0e2283134b4c563ab" + }, + { + "authorized_access_point": "Galectine", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4534183-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)955952638" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4534183-7" + } + ], + "identifier": "http://d-nb.info/gnd/4534183-7", + "note": [ + { + "noteType": "general", + "label": [ + "Lektine, die spez. \u00df-Galactosidase binden." + ] + } + ], + "pid": "955952638", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Lectine" + } + ], + "variant_access_point": [ + "Galektine" + ], + "md5": "1e99ee6cc41099dafa329e51b9e52a14" + }, + { + "authorized_access_point": "Oreochromis", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4531766-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)955845483" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4531766-5" + } + ], + "identifier": "http://d-nb.info/gnd/4531766-5", + "exactMatch": [ + { + "authorized_access_point": "Oreochromis", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333965303" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF15597084" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb155970844" + } + ] + }, + { + "authorized_access_point": "Oreochromis", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1256242535" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "26596" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_26596" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Gattung der Buntbarsche" + ] + } + ], + "pid": "955845483", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Buntbarsche" + } + ], + "md5": "2c162647144fbc34845836918e7735ea" + }, + { + "authorized_access_point": "Schwedisch-Da\u0308nischer Krieg (1657-1660)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4530836-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)955777844" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4530836-6" + } + ], + "identifier": "http://d-nb.info/gnd/4530836-6", + "exactMatch": [ + { + "authorized_access_point": "Dano-Swedish Wars, 1657-1660", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)127182888X" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85035763" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85035763" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Krieg zwischen Schweden unter Karl X. Gustav und Da\u0308nemark; nach dem Tod Karls wurde am 3.5.1660 der Friede von Oliva und am 6.6.1660 der Friede von Kopenhagen geschlossen." + ] + } + ], + "pid": "955777844", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Krieg" + } + ], + "related": [ + { + "authorized_access_point": "Schwedisch-polnisch-da\u0308nischer Krieg" + } + ], + "variant_access_point": [ + "Da\u0308nisch-Schwedischer Krieg (1657-1660)" + ], + "md5": "83942090f4cdda1a42df58eb9733c620" + }, + { + "authorized_access_point": "Pulsverarbeitendes neuronales Netz", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4529621-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)955671906" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4529621-2" + } + ], + "identifier": "http://d-nb.info/gnd/4529621-2", + "note": [ + { + "noteType": "general", + "label": [ + "Zusammenfassende Bezeichnung fu\u0308r Neuronale Netze, in denen der Puls die verwendete Informationseinheit beschreibt.", + "Ansetzung nach Auskunft der Uni Bonn (Prof. Dr. Anlauf, Dipl. Ing. C. Grassmann)" + ] + } + ], + "pid": "955671906", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Neuronales Netz" + } + ], + "variant_access_point": [ + "Pulsgekoppeltes neuronales Netz", + "Pulskodiertes neuronales Netz", + "Pulscodiertes neuronales Netz", + "PCNN", + "Pulse coupled neural networks", + "Spikendes neuronales Netz", + "Pulsed neural network", + "Spiking neural network", + "Impulskodierendes neuronales Netz" + ], + "md5": "616008e0e91748b9b663d5917ede5e0e" + }, + { + "authorized_access_point": "Plasmawindkanal", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4529416-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)955633087" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4529416-1" + } + ], + "identifier": "http://d-nb.info/gnd/4529416-1", + "pid": "955633087", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Windkanal" + } + ], + "md5": "434697d2ffe92e1eb03c4eb76f3d8c13" + }, + { + "authorized_access_point": "Meerschwalbe", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4529376-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)955631963" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4529376-4" + } + ], + "identifier": "http://d-nb.info/gnd/4529376-4", + "exactMatch": [ + { + "authorized_access_point": "Labroides dimidiatus", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333268149" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh88004894" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh88004894" + } + ] + }, + { + "authorized_access_point": "Labroides dimidiatus", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333268149" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17803581" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17803581f" + } + ] + } + ], + "pid": "955631963", + "type": "bf:Topic", + "variant_access_point": [ + "Labroides dimidiatus", + "Labrus dimidiatus" + ], + "md5": "31e12d16912b18347fc2fd0f31748273" + }, + { + "authorized_access_point": "Wachtturm", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4528427-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)955522552" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4528427-1" + } + ], + "identifier": "http://d-nb.info/gnd/4528427-1", + "closeMatch": [ + { + "authorized_access_point": "Watchtowers", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334015155" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh00004969" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh00004969" + } + ] + }, + { + "authorized_access_point": "Tours de guet", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334015155" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16902666" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16902666m" + } + ] + } + ], + "pid": "955522552", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Turm" + } + ], + "variant_access_point": [ + "Wachturm", + "Wartturm", + "Warte" + ], + "md5": "083080a7716379d92b8b9ec93930b3eb" + }, + { + "authorized_access_point": "Messkette (Schaltung)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4528272-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)955510392" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4528272-9" + } + ], + "identifier": "http://d-nb.info/gnd/4528272-9", + "closeMatch": [ + { + "authorized_access_point": "Mesure", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134731035" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11938453" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119384533" + } + ] + } + ], + "pid": "955510392", + "type": "bf:Topic", + "variant_access_point": [ + "Kettenstruktur (Messtechnik)", + "Reihenschaltung" + ], + "md5": "e3685218e2bc671450eb3ac28d3fd38e" + }, + { + "authorized_access_point": "Glasaugenbarsch", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4527911-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)955497205" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4527911-1" + } + ], + "identifier": "http://d-nb.info/gnd/4527911-1", + "closeMatch": [ + { + "authorized_access_point": "Walleye (Fish)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333483384" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85144937" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85144937" + } + ] + }, + { + "authorized_access_point": "Dore\u0301 jaune", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333483384" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17805480" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb178054809" + } + ] + } + ], + "pid": "955497205", + "type": "bf:Topic", + "variant_access_point": [ + "Stizostedion vitreum", + "Perca vitrea", + "Perca salmonea", + "Lucioperca americana" + ], + "md5": "429dfb026d5070e4c56fd8798e856592" + }, + { + "authorized_access_point": "Flu\u0308ssiges Helium", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4525343-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)955324300" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4525343-2" + } + ], + "identifier": "http://d-nb.info/gnd/4525343-2", + "closeMatch": [ + { + "authorized_access_point": "Liquid helium", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134227558" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85077369" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85077369" + } + ] + }, + { + "authorized_access_point": "He\u0301lium liquide", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134227558" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12242449" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12242449j" + } + ] + }, + { + "authorized_access_point": "Elio liquido", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254347356" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "19751" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/19751" + } + ] + } + ], + "pid": "955324300", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Helium" + } + ], + "variant_access_point": [ + "Helium", + "Liquid helium" + ], + "md5": "1af316a5c4213f0ed592d630093bb610" + }, + { + "authorized_access_point": "Selbsthilfefirma", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4525077-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)955297966" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4525077-7" + } + ], + "identifier": "http://d-nb.info/gnd/4525077-7", + "closeMatch": [ + { + "authorized_access_point": "E\u0301tablissements et services d'aide par le travail", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133959911" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11945380" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119453806" + } + ] + } + ], + "pid": "955297966", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gemeinnu\u0308tziges Unternehmen" + } + ], + "variant_access_point": [ + "Integrationsfirma" + ], + "md5": "36c9027157e86a2787146dec08ab8750" + }, + { + "authorized_access_point": "Ho\u0308fische Tanzmusik", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4524885-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)955286999" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4524885-0" + } + ], + "identifier": "http://d-nb.info/gnd/4524885-0", + "closeMatch": [ + { + "authorized_access_point": "Court dances (Music)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332662544" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2011000868" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2011000868" + } + ] + } + ], + "pid": "955286999", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Hofmusik" + }, + { + "authorized_access_point": "Tanzmusik" + } + ], + "md5": "7be3a17e34dd3a23929cba8a9900137d" + }, + { + "authorized_access_point": "Schlangenkopffische", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4524273-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)955249929" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4524273-2" + } + ], + "identifier": "http://d-nb.info/gnd/4524273-2", + "closeMatch": [ + { + "authorized_access_point": "Snakeheads (Fish)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134450273" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2003001333" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2003001333" + } + ] + }, + { + "authorized_access_point": "Channidae", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134450273" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF14589077" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb145890770" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Familie der Knochenfische" + ] + } + ], + "pid": "955249929", + "type": "bf:Topic", + "variant_access_point": [ + "Schlangenko\u0308pfe", + "Channidae", + "Ophicephalidae" + ], + "md5": "23ac10a44cbd3a41ced4eb6f8007383b" + }, + { + "authorized_access_point": "Audiovisuelles Material (fu\u0308r Kinder)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4523048-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)955181178" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4523048-1" + } + ], + "identifier": "http://d-nb.info/gnd/4523048-1", + "note": [ + { + "noteType": "general", + "label": [ + "Fu\u0308r vorliegendes audiovisuelles Material, das nicht unter einen der zugelassenen Unterbegriffe fa\u0308llt, oder eine Kombination von mindestens zwei audiovisuellen Materialien; nicht fu\u0308r elektronische Publikationen.", + "Nur als Form-SW zula\u0308ssig" + ] + } + ], + "pid": "955181178", + "type": "bf:Topic", + "md5": "d6d7a1217ba513678ef9571b38fb42e3" + }, + { + "authorized_access_point": "Azulejo", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4522486-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)955150507" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4522486-9" + } + ], + "identifier": "http://d-nb.info/gnd/4522486-9", + "closeMatch": [ + { + "authorized_access_point": "Azulejos", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332766943" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11994207" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11994207n" + } + ] + }, + { + "authorized_access_point": "Azulejos", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1299918867" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX529896" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX529896" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Fayencewandfliesen mit ornamentalem oder figu\u0308rlichem Dekor, die von den Mauren auf der Iberischen Halbinsel eingefu\u0308hrt wurden; spa\u0308ter neben Portugal u. Spanien auch in deren Kolonien verbreitet; oft in Form von grossen Tableaus verwendet." + ] + } + ], + "pid": "955150507", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fayencefliese" + } + ], + "variant_access_point": [ + "Azulejos" + ], + "md5": "99c0e1cabdcb77844332f3b66ea71082" + }, + { + "authorized_access_point": "Paschkowianer", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4517749-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)954752554" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4517749-1" + } + ], + "identifier": "http://d-nb.info/gnd/4517749-1", + "closeMatch": [ + { + "authorized_access_point": "Pashkovism", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331867657" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85098434" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85098434" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Russ. evangelikale Sekte" + ] + } + ], + "pid": "954752554", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Sekte" + }, + { + "authorized_access_point": "Evangelikale Bewegung" + } + ], + "variant_access_point": [ + "Pas\u030ckovcy" + ], + "md5": "8f54fbc2cf7eea59a35f643c0af02e77" + }, + { + "authorized_access_point": "Fadenfisch (Gattung)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4517241-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)95471752X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4517241-9" + } + ], + "identifier": "http://d-nb.info/gnd/4517241-9", + "exactMatch": [ + { + "authorized_access_point": "Trichogaster", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333955340" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85137463" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85137463" + } + ] + }, + { + "authorized_access_point": "Trichogaster", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333955340" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17805195" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17805195h" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Lt. NCBI-Taxonomy Gattung aus d. UF Luciocephalinae=Hechtkopfartige.(Fru\u0308her UF Trichogasterinae). Einige Trichogasterarten werden der Gattung Zwergfadenfisch=Colisa zugeordnet und haben den Gattungsnamen Trichogaster als Synonym." + ] + } + ], + "pid": "95471752X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gro\u00dfguramis" + } + ], + "variant_access_point": [ + "Trichogaster" + ], + "md5": "4b5c8a8d6fe2d3e418dc62e23d1a540f" + }, + { + "authorized_access_point": "Due Diligence", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4516677-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)95469483X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4516677-8" + } + ], + "identifier": "http://d-nb.info/gnd/4516677-8", + "exactMatch": [ + { + "authorized_access_point": "Due Diligence", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1019866322" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "29559-2" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/29559-2" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Due Diligence (engl. \u201egebotene Sorgfalt\u201c) bezeichnet im US-amerikanischen Recht einen Verhaltensma\u00dfstab, der zwecks Haftungsvermeidung zu beachten ist. U\u0308ber diese allgemeine Bedeutung hinaus wird die Bezeichnung im gesellschaftsrechtlichen Kontext fu\u0308r die sorgfa\u0308ltige Pru\u0308fung der wirtschaftlichen und rechtlichen Verha\u0308ltnisse eines Unternehmens verwendet, deren Ergebnisse im Rahmen der Unternehmensfu\u0308hrung als Informationsgrundlage beno\u0308tigt werden, etwa zur Vorbereitung der Unternehmensvera\u0308u\u00dferung, des Bo\u0308rsengangs, einer Kreditgewa\u0308hrung gegenu\u0308ber dem Unternehmen oder zur Ermittlung der Ho\u0308he von Abfindungsanspru\u0308chen.", + "Mergers and Acquisitions ist nicht pleonastisch" + ] + } + ], + "pid": "95469483X", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Sorgfaltspflicht" + }, + { + "authorized_access_point": "Unternehmensbewertung" + } + ], + "md5": "913206dee9ffaa820b6dc6cc24b60aa9" + }, + { + "authorized_access_point": "Tilapia zillii", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4516008-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)954658248" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4516008-9" + } + ], + "identifier": "http://d-nb.info/gnd/4516008-9", + "exactMatch": [ + { + "authorized_access_point": "Tilapia zillii", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333965699" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85135344" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85135344" + } + ] + }, + { + "authorized_access_point": "Coptodon zillii", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333965699" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17838469" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb178384694" + } + ] + }, + { + "authorized_access_point": "Tilapia zillii", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1256264210" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "35437" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_35437" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Art d. Afrikanischen Buntbarsche" + ] + } + ], + "pid": "954658248", + "type": "bf:Topic", + "variant_access_point": [ + "Zilles Buntbarsch", + "Tilapia zilli" + ], + "md5": "11718eaceef4afa45c9cd56979937b81" + }, + { + "authorized_access_point": "Materialita\u0308t", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4512697-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)95439836X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4512697-5" + } + ], + "identifier": "http://d-nb.info/gnd/4512697-5", + "closeMatch": [ + { + "authorized_access_point": "Mate\u0301rialite\u0301", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332896871" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF177105" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17710562g" + } + ] + } + ], + "pid": "95439836X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Materie" + } + ], + "variant_access_point": [ + "Stofflichkeit" + ], + "md5": "8260e94d7528258f33e24dfb39c1d0ad" + }, + { + "authorized_access_point": "guot", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4511160-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)954299973" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4511160-1" + } + ], + "identifier": "http://d-nb.info/gnd/4511160-1", + "note": [ + { + "noteType": "general", + "label": [ + "Verknu\u0308pfe mit Sprachbezeichnung und hier nicht permutierender Wortart, z.B. Mittelhochdeutsch ; Adjektiv ; guot" + ] + } + ], + "pid": "954299973", + "type": "bf:Topic", + "md5": "6ec47ad40d7a647c38dd2023fcd38e26" + }, + { + "authorized_access_point": "Schiff (Architektur)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4508350-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)954068572" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4508350-2" + } + ], + "identifier": "http://d-nb.info/gnd/4508350-2", + "closeMatch": [ + { + "authorized_access_point": "Nefs (architecture)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334556873" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13508234" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb135082347" + } + ] + } + ], + "pid": "954068572", + "type": "bf:Topic", + "variant_access_point": [ + "Kirchenschiff" + ], + "md5": "ec4f896e11f51301d33a48a377d9d680" + }, + { + "authorized_access_point": "Seitenschiff", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4508348-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)95406853X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4508348-4" + } + ], + "identifier": "http://d-nb.info/gnd/4508348-4", + "closeMatch": [ + { + "authorized_access_point": "Bas-co\u0302te\u0301s (architecture)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334557225" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF15085485" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb150854851" + } + ] + } + ], + "pid": "95406853X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schiff (Architektur)" + } + ], + "variant_access_point": [ + "Nebenschiff" + ], + "md5": "56ab8856b03c6de5ba26285f884b308b" + }, + { + "authorized_access_point": "Reihenfolge", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4507704-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)954021185" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4507704-6" + } + ], + "identifier": "http://d-nb.info/gnd/4507704-6", + "pid": "954021185", + "type": "bf:Topic", + "variant_access_point": [ + "Abfolge", + "Sequenz (Gemeinsprache)", + "Sequenz (Abfolge)", + "Sequenz (Reihenfolge)" + ], + "md5": "f447b9eec23065f1827b0d98323817a8" + }, + { + "authorized_access_point": "Radial-Axialbund-Gleitlager", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4507097-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)953936503" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4507097-0" + } + ], + "identifier": "http://d-nb.info/gnd/4507097-0", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia unter Lager (Maschinenelement) - https://de.wikipedia.org/w/index.php?title=Lager_(Maschinenelement)&oldid=243251254#Radial-Axial-Lager_%28Radiaxlager%29" + ] + } + ], + "pid": "953936503", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gleitlager" + } + ], + "variant_access_point": [ + "Radial-Axialgleitlager" + ], + "md5": "00d2c446c4070dafc22558479ac8b2bf" + }, + { + "authorized_access_point": "Bausoldat", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4499305-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)953467732" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4499305-5" + } + ], + "identifier": "http://d-nb.info/gnd/4499305-5", + "note": [ + { + "noteType": "general", + "label": [ + "Dienstgrad von Wehrpflichtigen, die in der NVA Wehrdienst ohne Waffe leisteten" + ] + } + ], + "pid": "953467732", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kriegsdienstverweigerer" + } + ], + "variant_access_point": [ + "Spatensoldat" + ], + "md5": "550aa32e4499e7a0a93276331eafc920" + }, + { + "authorized_access_point": "Pachyrhizus", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4499220-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)953463176" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4499220-8" + } + ], + "identifier": "http://d-nb.info/gnd/4499220-8", + "exactMatch": [ + { + "authorized_access_point": "Pachyrhizus", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134541414" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh93006873" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh93006873" + } + ] + }, + { + "authorized_access_point": "Pachyrhizus", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1256243051" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "5486" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_5486" + } + ] + } + ], + "closeMatch": [ + { + "authorized_access_point": "Ajipa", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1300115416" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX550734" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX550734" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Gattung der Hu\u0308lsenfru\u0308chtler mit landwirtschaftl. Nutzpflanzen" + ] + } + ], + "pid": "953463176", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Hu\u0308lsenfru\u0308chtler" + } + ], + "md5": "e7035e234e23126a189ec8ecfef77083" + }, + { + "authorized_access_point": "Personenfeststellung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4497117-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)953354431" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4497117-5" + } + ], + "identifier": "http://d-nb.info/gnd/4497117-5", + "closeMatch": [ + { + "authorized_access_point": "Contro\u0302les d'identite\u0301", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)133156705X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12317685" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12317685q" + } + ] + } + ], + "pid": "953354431", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Personenkontrolle" + } + ], + "variant_access_point": [ + "Identita\u0308tsfeststellung", + "Personalienfeststellung", + "Polizeiliche Personenfeststellung" + ], + "md5": "ca009b94c90adc71cf58194478670a78" + }, + { + "authorized_access_point": "Finnin", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4494485-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)95324590X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4494485-8" + } + ], + "identifier": "http://d-nb.info/gnd/4494485-8", + "closeMatch": [ + { + "authorized_access_point": "Finlandaises", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331610125" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16634513" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16634513b" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Finnen", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1008375284" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "26247-1" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/26247-1" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Benutzt, soweit au\u00dferhalb Finnlands lebend, sonst verknu\u0308pfe Finnland ; Frau" + ] + } + ], + "pid": "95324590X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ausla\u0308nderin" + } + ], + "related": [ + { + "authorized_access_point": "Finnen" + } + ], + "variant_access_point": [ + "Finnische Frau" + ], + "md5": "b5a480f6c8fc82925240098582df89f1" + }, + { + "authorized_access_point": "Selbstbeschuldigung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4490382-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)953019209" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4490382-0" + } + ], + "identifier": "http://d-nb.info/gnd/4490382-0", + "closeMatch": [ + { + "authorized_access_point": "Self-incrimination", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334212538" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85119760" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85119760" + } + ] + } + ], + "pid": "953019209", + "type": "bf:Topic", + "variant_access_point": [ + "Selbstbezichtigung", + "Selbstbelastung" + ], + "md5": "0244e6ddda1a1a184f9e1e2f3e5d6c37" + }, + { + "authorized_access_point": "Bartagame", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4490181-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)953011992" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4490181-1" + } + ], + "identifier": "http://d-nb.info/gnd/4490181-1", + "note": [ + { + "noteType": "general", + "label": [ + "Art der Fam. Agamen (Agamidae)" + ] + } + ], + "pid": "953011992", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Agamen" + } + ], + "variant_access_point": [ + "Amphibolorus barbatus", + "Pogona barbata", + "Amphibolurus barbatus", + "Agama barbata" + ], + "md5": "1ca7e7cac084e9f0a25e28de492a0925" + }, + { + "authorized_access_point": "Gemischaufbereitung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4489196-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)952966336" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4489196-9" + } + ], + "identifier": "http://d-nb.info/gnd/4489196-9", + "pid": "952966336", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gemischbildung" + } + ], + "variant_access_point": [ + "Kraftstoff" + ], + "md5": "25309aee4a2893c3344640084e352f60" + }, + { + "authorized_access_point": "Moronidae", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4488675-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)952945991" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4488675-5" + } + ], + "identifier": "http://d-nb.info/gnd/4488675-5", + "closeMatch": [ + { + "authorized_access_point": "Moronidae", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333442521" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh95000247" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh95000247" + } + ] + }, + { + "authorized_access_point": "Moronidae", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333442521" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF15506722" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb15506722d" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Familie Amerikanischer Brachsen" + ] + } + ], + "pid": "952945991", + "type": "bf:Topic", + "md5": "df4cc77efb9be98b0d293ec1f918ee8c" + }, + { + "authorized_access_point": "Glaucosomidae", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4488671-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)952945819" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4488671-8" + } + ], + "identifier": "http://d-nb.info/gnd/4488671-8", + "closeMatch": [ + { + "authorized_access_point": "Pearl perches", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133871984" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh97008600" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh97008600" + } + ] + }, + { + "authorized_access_point": "Glaucosomatidae", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133871984" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13571291" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13571291t" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Familie der Barschfische" + ] + } + ], + "pid": "952945819", + "type": "bf:Topic", + "variant_access_point": [ + "Glaucosomatidae" + ], + "md5": "4046d5ac6374af759a8b7bbcc8e9e7ad" + }, + { + "authorized_access_point": "Iterative Decodierung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4486066-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)952794357" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4486066-3" + } + ], + "identifier": "http://d-nb.info/gnd/4486066-3", + "pid": "952794357", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Decodierung" + } + ], + "variant_access_point": [ + "Turbo-Decodierung" + ], + "md5": "fe0d4f678e8e7f5fdf4fc5c6a26dd5dc" + }, + { + "authorized_access_point": "Fettreduziertes Lebensmittel", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4480030-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)952319888" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4480030-7" + } + ], + "identifier": "http://d-nb.info/gnd/4480030-7", + "closeMatch": [ + { + "authorized_access_point": "Low-fat foods", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133801110" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh90005360" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh90005360" + } + ] + }, + { + "authorized_access_point": "Aliments a\u0300 faible teneur en lipides", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133801110" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12454183" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12454183x" + } + ] + } + ], + "pid": "952319888", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Energiearmes Lebensmittel" + } + ], + "md5": "d6d6720bf3f6f103f616774eb2d657b6" + }, + { + "authorized_access_point": "Interlinearversion", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4476872-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)952090163" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4476872-2" + } + ], + "identifier": "http://d-nb.info/gnd/4476872-2", + "closeMatch": [ + { + "authorized_access_point": "Traductions interline\u0301aires", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134312733" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12403938" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb124039381" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Zwischen d. Zeilen e. fremdsprachigen Textes geschriebene Wort-fu\u0308r-Wort-U\u0308bersetzung ohne Ru\u0308cksicht auf grammat. oder idiomat. Unterschiede zwischen d. Grundtext u. d. U\u0308bersetzung" + ] + } + ], + "pid": "952090163", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Glosse" + } + ], + "variant_access_point": [ + "Interlinearglosse", + "Interlinearu\u0308bersetzung" + ], + "md5": "5fc4ce9ea103f124a28e02f7320080e3" + }, + { + "authorized_access_point": "Folkloregruppe", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4476699-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)952082098" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4476699-3" + } + ], + "identifier": "http://d-nb.info/gnd/4476699-3", + "note": [ + { + "noteType": "general", + "label": [ + "Zusammenfassend fu\u0308r Volkstanz-, Volksmusik-, Trachten- und Brauchtumsgruppen oder -vereine etc." + ] + } + ], + "pid": "952082098", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Volkskultur" + }, + { + "authorized_access_point": "Gruppe" + }, + { + "authorized_access_point": "Verein" + } + ], + "variant_access_point": [ + "Folkloregruppen" + ], + "md5": "978c2959641aacf136d318130714f8d7" + }, + { + "authorized_access_point": "Danzo\u0301n", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4474574-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)951939440" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4474574-6" + } + ], + "identifier": "http://d-nb.info/gnd/4474574-6", + "closeMatch": [ + { + "authorized_access_point": "Danzo\u0301n (Dance)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332687431" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2009009519" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2009009519" + } + ] + }, + { + "authorized_access_point": "Danzo\u0301n (danse)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332687431" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18143564" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb18143564m" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Kuban. Gesellschaftstanz in gemessenem Tempo, der zwischen 1900 und 1920 zum Nationaltanz wurde; aus dem Danzo\u0301n gingen 1939 der Mambo und 1949 der Cha-Cha-Cha hervor" + ] + } + ], + "pid": "951939440", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gesellschaftstanz" + } + ], + "md5": "ec84e970fce3b4644057bc8a5820cbdc" + }, + { + "authorized_access_point": "Zuteilung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4473972-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)95171337X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4473972-2" + } + ], + "identifier": "http://d-nb.info/gnd/4473972-2", + "pid": "95171337X", + "type": "bf:Topic", + "md5": "187e6751ed0c638c13ec2e1c907f6cdc" + }, + { + "authorized_access_point": "Schikane (Technik)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4471593-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)951567241" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4471593-6" + } + ], + "identifier": "http://d-nb.info/gnd/4471593-6", + "pid": "951567241", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Einbau" + } + ], + "variant_access_point": [ + "Sto\u0308rko\u0308rper", + "Ho\u0308cker (Wasserbau)" + ], + "md5": "9a37851879e1d321ddad8ad4c97a99fb" + }, + { + "authorized_access_point": "Aura (Epilepsie)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4469122-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)951452940" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4469122-1" + } + ], + "identifier": "http://d-nb.info/gnd/4469122-1", + "note": [ + { + "noteType": "general", + "label": [ + "Bez. fu\u0308r die sensiblen (z. B. Taubheitsgefu\u0308hl, Kribbeln), sensor. (z. B. Geruchs- od. Geschmacksaura), vegetativen (epigastrische A.) od. psychischen (Glu\u0308cks-, Angstgefu\u0308hl, De\u0301ja\u0300-vu-Erlebnis) Wahrnehmungen unmittelbar vor einem epilept. Anfall." + ] + } + ], + "pid": "951452940", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Epileptischer Anfall" + } + ], + "md5": "79ed238729530f9066853a6bdc39c75a" + }, + { + "authorized_access_point": "Fest der Unschuldigen Kinder", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4467778-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)95136653X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4467778-9" + } + ], + "identifier": "http://d-nb.info/gnd/4467778-9", + "closeMatch": [ + { + "authorized_access_point": "Feast of the Holy Innocents", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331870402" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85061570" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85061570" + } + ] + }, + { + "authorized_access_point": "Fe\u0302te des Saints-Innocents", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331870402" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16612328" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16612328x" + } + ] + } + ], + "pid": "95136653X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kirchenfest" + } + ], + "variant_access_point": [ + "Unschuldige Kinder (Kirchenfest)" + ], + "md5": "b2c477dc5817b9ce076460c19ad2a833" + }, + { + "authorized_access_point": "Portugiesin", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4466604-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)951151541" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4466604-4" + } + ], + "identifier": "http://d-nb.info/gnd/4466604-4", + "exactMatch": [ + { + "authorized_access_point": "Portugiesen", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)101055395X" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "26602-0" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/26602-0" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Benutzt, soweit au\u00dferhalb Portugals lebend, sonst verknu\u0308pfe Portugal ; Frau" + ] + } + ], + "pid": "951151541", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ausla\u0308nderin" + } + ], + "related": [ + { + "authorized_access_point": "Portugiesen" + } + ], + "variant_access_point": [ + "Portugiesische Frau" + ], + "md5": "a4f6ab74af0a8d360c0ca7a0bad6e725" + }, + { + "authorized_access_point": "Etikettieren", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4464866-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)951040960" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4464866-2" + } + ], + "identifier": "http://d-nb.info/gnd/4464866-2", + "closeMatch": [ + { + "authorized_access_point": "E\u0301tiquetage", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113403993X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11976146" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11976146b" + } + ] + } + ], + "pid": "951040960", + "type": "bf:Topic", + "variant_access_point": [ + "Etikettierung" + ], + "md5": "b3ee3504a80e2eee7b1ae681681df816" + }, + { + "authorized_access_point": "Druckgrafiker", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4461989-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)950872555" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4461989-3" + } + ], + "identifier": "http://d-nb.info/gnd/4461989-3", + "closeMatch": [ + { + "authorized_access_point": "Engravers", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134513712" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85043993" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85043993" + } + ] + }, + { + "authorized_access_point": "Printmakers", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134162871" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85106829" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85106829" + } + ] + }, + { + "authorized_access_point": "Graveurs", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134513712" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11931591" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119315917" + } + ] + }, + { + "authorized_access_point": "Graveurs d'estampe", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134162871" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12101115" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb121011155" + } + ] + } + ], + "pid": "950872555", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Grafiker" + } + ], + "related": [ + { + "authorized_access_point": "Druckgrafikerin" + }, + { + "authorized_access_point": "Druckgrafik" + } + ], + "variant_access_point": [ + "Druckgraphiker" + ], + "md5": "0f5d0afd3cfe4c0baf2cd4d7ebe377ea" + }, + { + "authorized_access_point": "Steigerungspartikel", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4456696-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)95058410X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4456696-7" + } + ], + "identifier": "http://d-nb.info/gnd/4456696-7", + "closeMatch": [ + { + "authorized_access_point": "Intensification (Linguistics)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133749372" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2017004979" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2017004979" + } + ] + }, + { + "authorized_access_point": "Intensifs (linguistique)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133749372" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12272694" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12272694j" + } + ] + } + ], + "pid": "95058410X", + "type": "bf:Topic", + "variant_access_point": [ + "Intensifikator", + "Gradmodifikator" + ], + "md5": "a0b14fa7a8080fabed89a0f19c511091" + }, + { + "authorized_access_point": "Bjerkandera adusta", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4454459-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)950461083" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4454459-5" + } + ], + "identifier": "http://d-nb.info/gnd/4454459-5", + "closeMatch": [ + { + "authorized_access_point": "Trame\u0300te bru\u0302le\u0301e", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334020353" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17987279" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17987279v" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Wei\u00dffa\u0308ulepilz" + ] + } + ], + "pid": "950461083", + "type": "bf:Topic", + "md5": "0496350d34cdaca86cd6eb9879b9fe37" + }, + { + "authorized_access_point": "Illustratorin", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4454346-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)950453544" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4454346-3" + } + ], + "identifier": "http://d-nb.info/gnd/4454346-3", + "closeMatch": [ + { + "authorized_access_point": "Women illustrators", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331598281" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2001008322" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2001008322" + } + ] + }, + { + "authorized_access_point": "Illustratrices", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331598281" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17769817" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17769817p" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Verknu\u0308pfe mit der jeweiligen Gattung. z. B. Kinderliteratur / Illustratorin. Als Homonymenzusatz bei Personenschlagwo\u0308rtern verwende Ku\u0308nstlerin" + ] + } + ], + "pid": "950453544", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Illustrator" + }, + { + "authorized_access_point": "Buchmalerin" + } + ], + "variant_access_point": [ + "Buchillustratorin" + ], + "md5": "caa72f5727773326535ca1ef555cf562" + }, + { + "authorized_access_point": "Mugil platanus", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4453023-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)950378682" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4453023-7" + } + ], + "identifier": "http://d-nb.info/gnd/4453023-7", + "closeMatch": [ + { + "authorized_access_point": "Mulet lebranche", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333492510" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17816474" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17816474t" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Art der Meera\u0308schen" + ] + } + ], + "pid": "950378682", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Meera\u0308schen" + } + ], + "md5": "939b869a4d9d2ff6146974711a76f0fd" + }, + { + "authorized_access_point": "Du\u0308nnlippige Meera\u0308sche", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4453022-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)950378658" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4453022-5" + } + ], + "identifier": "http://d-nb.info/gnd/4453022-5", + "closeMatch": [ + { + "authorized_access_point": "Mugil capito", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133944787" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85088271" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85088271" + } + ] + }, + { + "authorized_access_point": "Mulet-porc (poissons)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133944787" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11938288" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119382886" + } + ] + } + ], + "pid": "950378658", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Meera\u0308schen" + } + ], + "variant_access_point": [ + "Mugil capito" + ], + "md5": "6667c3d44681da134a53eca592864400" + }, + { + "authorized_access_point": "Kinderklavier", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4451509-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)950280984" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4451509-1" + } + ], + "identifier": "http://d-nb.info/gnd/4451509-1", + "closeMatch": [ + { + "authorized_access_point": "Toy piano", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332762301" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2001006041" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2001006041" + } + ] + }, + { + "authorized_access_point": "Piano-jouet", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332762301" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16035513" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16035513j" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/wiki/Kinderklavier" + ] + } + ], + "pid": "950280984", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Spielzeug" + } + ], + "variant_access_point": [ + "Spielzeugklavier", + "Toy piano", + "Toypiano" + ], + "md5": "a2daa7d7365149b3989c06828d315174" + }, + { + "authorized_access_point": "Schweden - Bauernaufstand (1743)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4451259-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)950268593" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4451259-4" + } + ], + "identifier": "http://d-nb.info/gnd/4451259-4", + "pid": "950268593", + "type": "bf:Topic", + "variant_access_point": [ + "Bauernaufstand" + ], + "md5": "61655c00c023968fa415828e155e2b1c" + }, + { + "authorized_access_point": "Western Rebellion", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4446374-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)94996591X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4446374-1" + } + ], + "identifier": "http://d-nb.info/gnd/4446374-1", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://en.wikipedia.org/w/index.php?title=Prayer_Book_Rebellion&oldid=1187132856" + ] + }, + { + "noteType": "general", + "label": [ + "Die Durchsetzung der englischen Sprache mittels der Einfu\u0308hrung des ersten \"Book of Common Prayer\", zusammen mit schlechten wirtschaftlichen Bedingungen, fu\u0308hrte 1549 zu einem Volksaufstand in Cornwall und Devon" + ] + } + ], + "pid": "94996591X", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Reformation" + } + ], + "broader": [ + { + "authorized_access_point": "Aufstand" + } + ], + "variant_access_point": [ + "England (West, 1549)", + "Western Rising", + "Prayer Book Rebellion", + "Cornish Prayer Book Rebellion", + "West Country Prayer Book Rebellion" + ], + "md5": "4a4304c8fd67c4a57a5a4b059119695f" + }, + { + "authorized_access_point": "Dusche", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4442449-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)949736864" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4442449-8" + } + ], + "identifier": "http://d-nb.info/gnd/4442449-8", + "closeMatch": [ + { + "authorized_access_point": "Showers (Plumbing fixtures)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332646476" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85122115" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85122115" + } + ] + }, + { + "authorized_access_point": "Douches", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332646476" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13561411" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13561411p" + } + ] + } + ], + "pid": "949736864", + "type": "bf:Topic", + "variant_access_point": [ + "Brause" + ], + "md5": "63eca06b7e98bd308c3f8374481f2c2b" + }, + { + "authorized_access_point": "Sander", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4438987-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)949582964" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4438987-5" + } + ], + "identifier": "http://d-nb.info/gnd/4438987-5", + "note": [ + { + "noteType": "general", + "label": [ + "Flache, ausgedehnte Schotter- oder Sandebene" + ] + } + ], + "pid": "949582964", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ebene" + } + ], + "variant_access_point": [ + "Sandur", + "Sandr" + ], + "md5": "a6bb6b4601ad6e7170f6207846ca40d0" + }, + { + "authorized_access_point": "Spa\u0308her", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4433683-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)94925584X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4433683-4" + } + ], + "identifier": "http://d-nb.info/gnd/4433683-4", + "closeMatch": [ + { + "authorized_access_point": "E\u0301claireurs (reconnaissance)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134048165" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11977593" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119775936" + } + ] + } + ], + "pid": "94925584X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Spa\u0308htrupp" + } + ], + "variant_access_point": [ + "Kundschafter" + ], + "md5": "1f6fae9351dad831121b87e1602c547a" + }, + { + "authorized_access_point": "Stra\u00dfenverka\u0308ufer", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4432422-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)949178594" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4432422-4" + } + ], + "identifier": "http://d-nb.info/gnd/4432422-4", + "closeMatch": [ + { + "authorized_access_point": "Street vendors", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134504179" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh00003150" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh00003150" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wiktionary - https://de.wiktionary.org/w/index.php?title=Stra%C3%9Fenverk%C3%A4ufer&oldid=7904470" + ] + } + ], + "pid": "949178594", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Verka\u0308ufer" + } + ], + "related": [ + { + "authorized_access_point": "Stra\u00dfenverkauf" + }, + { + "authorized_access_point": "Stra\u00dfenverka\u0308uferin" + } + ], + "variant_access_point": [ + "Stra\u00dfenha\u0308ndler" + ], + "md5": "ccc94d0a21fd8869aea97c5d9044cac3" + }, + { + "authorized_access_point": "Kaizen", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4429179-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)948985429" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4429179-6" + } + ], + "identifier": "http://d-nb.info/gnd/4429179-6", + "closeMatch": [ + { + "authorized_access_point": "Production au plus juste", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134492219" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13191265" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb131912650" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "aus Japan stammende Form der Beteiligung von Arbeitnehmern an der Entwicklung von Innovationen in Unternehmen" + ] + } + ], + "pid": "948985429", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Vorschlagswesen" + } + ], + "variant_access_point": [ + "Kontinuierlicher Verbesserungsprozess", + "KVP", + "Continuous Improvement Process" + ], + "md5": "ee5d074c286c7b3a2e0962c761d50fd0" + }, + { + "authorized_access_point": "Pan troglodytes verus", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4427691-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)948861975" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4427691-6" + } + ], + "identifier": "http://d-nb.info/gnd/4427691-6", + "note": [ + { + "noteType": "general", + "label": [ + "Unterart der Schimpansen" + ] + } + ], + "pid": "948861975", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Hominidae" + } + ], + "md5": "11fefa52a7b33979fe692cf8a459e0b0" + }, + { + "authorized_access_point": "Thermische Ermu\u0308dung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4425895-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)948734418" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4425895-1" + } + ], + "identifier": "http://d-nb.info/gnd/4425895-1", + "closeMatch": [ + { + "authorized_access_point": "Fatigue thermique", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134216092" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12218766" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12218766s" + } + ] + } + ], + "pid": "948734418", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Materialermu\u0308dung" + }, + { + "authorized_access_point": "Thermomechanische Eigenschaft" + } + ], + "related": [ + { + "authorized_access_point": "Thermoschock" + }, + { + "authorized_access_point": "Temperaturwechselbesta\u0308ndigkeit" + } + ], + "variant_access_point": [ + "Thermoermu\u0308dung" + ], + "md5": "557279c72f117c6ea923f21d0b89eb45" + }, + { + "authorized_access_point": "Bischofspfalz", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4424386-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)948616792" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4424386-8" + } + ], + "identifier": "http://d-nb.info/gnd/4424386-8", + "closeMatch": [ + { + "authorized_access_point": "Bishops - Homes and haunts", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334012520" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85014421" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85014421" + } + ] + }, + { + "authorized_access_point": "Palais e\u0301piscopaux", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334012520" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16650585" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16650585n" + } + ] + } + ], + "pid": "948616792", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Ko\u0308nigspfalz" + } + ], + "broader": [ + { + "authorized_access_point": "Residenz" + } + ], + "variant_access_point": [ + "Bischofspalast" + ], + "md5": "eda60d9a748d53323f9bd6cd2a82fa4b" + }, + { + "authorized_access_point": "Raufu\u00dfro\u0308hrling", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4423844-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)948581387" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4423844-7" + } + ], + "identifier": "http://d-nb.info/gnd/4423844-7", + "note": [ + { + "noteType": "general", + "label": [ + "Gattung der Ro\u0308hrlinge" + ] + } + ], + "pid": "948581387", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ro\u0308hrlinge" + } + ], + "variant_access_point": [ + "Leccinum", + "Rauhfu\u0308\u00dfe", + "Rauhfu\u00df", + "Raufu\u0308\u00dfe", + "Raufu\u00df", + "Rauhfu\u00dfro\u0308hrling", + "Raustielro\u0308hrling", + "Rauhstielro\u0308hrling" + ], + "md5": "e84b4e5002ba1914c0a4a48c3f874c30" + }, + { + "authorized_access_point": "Ecsenius", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4420692-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)948367032" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4420692-6" + } + ], + "identifier": "http://d-nb.info/gnd/4420692-6", + "closeMatch": [ + { + "authorized_access_point": "Ecsenius", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333368518" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85040884" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85040884" + } + ] + }, + { + "authorized_access_point": "Ecsenius", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333368518" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17798786" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17798786m" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Gattung der Schleimfische" + ] + } + ], + "pid": "948367032", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schuppenlose Schleimfische" + } + ], + "variant_access_point": [ + "Escenius" + ], + "md5": "43eaff22ae3ba47e92de7aa1561bbe8f" + }, + { + "authorized_access_point": "Artistin", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4420603-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)948358742" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4420603-3" + } + ], + "identifier": "http://d-nb.info/gnd/4420603-3", + "closeMatch": [ + { + "authorized_access_point": "Women circus performers", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113382739X" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh96009049" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh96009049" + } + ] + }, + { + "authorized_access_point": "Femmes artistes de cirque", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113382739X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12546462" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb125464627" + } + ] + } + ], + "pid": "948358742", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Artist" + } + ], + "md5": "5d4515d22e9ab358f64485f531a01823" + }, + { + "authorized_access_point": "Passives optisches Netz", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4418747-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)94818387X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4418747-6" + } + ], + "identifier": "http://d-nb.info/gnd/4418747-6", + "closeMatch": [ + { + "authorized_access_point": "Passive optical networks", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134645503" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2007007027" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2007007027" + } + ] + } + ], + "pid": "94818387X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Optisches Kommunikationsnetz" + } + ], + "variant_access_point": [ + "PON", + "Passiv optical network" + ], + "md5": "53d44523d4613c9a67cb2bafc31423b1" + }, + { + "authorized_access_point": "Cancan", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4417076-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)948059028" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4417076-2" + } + ], + "identifier": "http://d-nb.info/gnd/4417076-2", + "closeMatch": [ + { + "authorized_access_point": "Cancan (Dance)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133837832" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2016001989" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2016001989" + } + ] + }, + { + "authorized_access_point": "Cancan (danse)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133837832" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13169985" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13169985v" + } + ] + }, + { + "authorized_access_point": "Cancan", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254395598" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "67289" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/67289" + } + ] + } + ], + "pid": "948059028", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Showtanz" + } + ], + "variant_access_point": [ + "Chahut", + "Can can" + ], + "md5": "f0c721fe14d6882344b27a920db97780" + }, + { + "authorized_access_point": "Su\u0308damerikanischer Kurzschwanzaal", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4416523-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)948023465" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4416523-7" + } + ], + "identifier": "http://d-nb.info/gnd/4416523-7", + "closeMatch": [ + { + "authorized_access_point": "Synbranchus marmoratus", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333488181" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85131604" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85131604" + } + ] + }, + { + "authorized_access_point": "Synbranchus marmoratus", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333488181" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17758506" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17758506r" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Art aus d. Fam. Synbranchidae" + ] + } + ], + "pid": "948023465", + "type": "bf:Topic", + "variant_access_point": [ + "Synbranchus marmoratus" + ], + "md5": "07347ac7545bd0c243df884cd7115e63" + }, + { + "authorized_access_point": "Kardamom", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4416048-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)947999043" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4416048-3" + } + ], + "identifier": "http://d-nb.info/gnd/4416048-3", + "closeMatch": [ + { + "authorized_access_point": "Elettaria", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134409761" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh88022764" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh88022764" + } + ] + }, + { + "authorized_access_point": "Elettaria", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134409761" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF14431349" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb14431349f" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Elettaria cardamomum", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1256226521" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "2529" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_2529" + } + ] + }, + { + "authorized_access_point": "cardamoms", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)125622653X" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "9620" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_9620" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Benutzt fu\u0308r die Pflanze" + ] + } + ], + "pid": "947999043", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Kardamom (Gewu\u0308rz)" + } + ], + "broader": [ + { + "authorized_access_point": "Ingwergewa\u0308chse" + } + ], + "variant_access_point": [ + "Cardamom", + "Elettaria" + ], + "md5": "0efb0e98558203c2eb317e25f36ad8a1" + }, + { + "authorized_access_point": "Aufstand der Vende\u0301e (1832)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4413095-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)947807691" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4413095-8" + } + ], + "identifier": "http://d-nb.info/gnd/4413095-8", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia unter Aufstand der Vende\u0301e - https://de.wikipedia.org/w/index.php?title=Aufstand_der_Vend%C3%A9e&oldid=243780170" + ] + }, + { + "noteType": "general", + "label": [ + "Legitimistische Erhebung fu\u0308r die Thronrechte der Bourbonen gegen die Julimonarchie, angestiftet von der Herzogin von Berry" + ] + } + ], + "pid": "947807691", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Aufstand" + } + ], + "variant_access_point": [ + "Aufstand in der Vende\u0301e (1832)", + "Rebellion in der Vende\u0301e (1832)", + "Legitimistische Erhebung in der Vende\u0301e (1832)" + ], + "md5": "b4d0899e85a2db8a57b6b3d5604cb896" + }, + { + "authorized_access_point": "Menschenpyramide", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4411444-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)947667040" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4411444-8" + } + ], + "identifier": "http://d-nb.info/gnd/4411444-8", + "closeMatch": [ + { + "authorized_access_point": "Pyramids (Gymnastics)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113438873X" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85109303" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85109303" + } + ] + }, + { + "authorized_access_point": "Pyramides humaines", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113438873X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13174928" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb131749281" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Pyramide aus Menschen, sportl.- wettkampfa\u0308hnl. Darbietung, auch Zirkusnummer", + "Verknu\u0308pfe ggf. mit SW Sportakrobatik" + ] + } + ], + "pid": "947667040", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Akrobatik" + } + ], + "variant_access_point": [ + "Pyramide (Akrobatik)" + ], + "md5": "32ef0e1fb6c48cfd8bac0c12b985f32d" + }, + { + "authorized_access_point": "Fotografiestudium", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4411049-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)947636676" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4411049-2" + } + ], + "identifier": "http://d-nb.info/gnd/4411049-2", + "note": [ + { + "noteType": "general", + "label": [ + "Eigensta\u0308ndiger Studiengang z.B. an der Hochschule fu\u0308r Grafik und Buchkunst in Leipzig" + ] + } + ], + "pid": "947636676", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Studium" + } + ], + "related": [ + { + "authorized_access_point": "Kunststudium" + } + ], + "variant_access_point": [ + "Photographiestudium", + "Fotografie" + ], + "md5": "2f221ea0e6a097ac13054ff55e8ffd3e" + }, + { + "authorized_access_point": "Konvexita\u0308t (Kapitalanlage)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4410173-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)947568441" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4410173-9" + } + ], + "identifier": "http://d-nb.info/gnd/4410173-9", + "note": [ + { + "noteType": "general", + "label": [ + "Kennzahl zur Beurteilung von Zinsa\u0308nderungsrisiken, erlaubt im Zusammenhang mit der Duration eine genaue Abscha\u0308tzung des Barwertes der Zinsa\u0308nderung", + "Kapitalanlage + Bewertung oder eng. Sachverhalte nicht pleonastisch" + ] + } + ], + "pid": "947568441", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kennzahl" + } + ], + "variant_access_point": [ + "Convexity", + "Konvexity" + ], + "md5": "604741cad9f73c06957dc7901249239a" + }, + { + "authorized_access_point": "Fruchtzubereitung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4409883-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)947543112" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4409883-2" + } + ], + "identifier": "http://d-nb.info/gnd/4409883-2", + "closeMatch": [ + { + "authorized_access_point": "Fruits - Transformation", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134651961" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12252146" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12252146w" + } + ] + } + ], + "pid": "947543112", + "type": "bf:Topic", + "md5": "020060d1ba4b9805dda073b6d783cfc5" + }, + { + "authorized_access_point": "Bu\u0308ro Plus fu\u0308r WINDOWS 3.0", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4409165-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)947466223" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4409165-5" + } + ], + "identifier": "http://d-nb.info/gnd/4409165-5", + "note": [ + { + "noteType": "general", + "label": [ + "Programmpaket, bestehend aus WinAuftrag 3.0 und WinFiBu 3.0" + ] + } + ], + "pid": "947466223", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Finanzbuchhaltung" + }, + { + "authorized_access_point": "Auftragsabwicklung" + } + ], + "broader": [ + { + "authorized_access_point": "Programm" + } + ], + "variant_access_point": [ + "Bu\u0308ro Plus 3.0 (Programm)" + ], + "md5": "d67330b3f214b67049212e8afc622a23" + }, + { + "authorized_access_point": "Bu\u0308ro Plus fu\u0308r WINDOWS 1.0", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4409161-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)947465928" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4409161-8" + } + ], + "identifier": "http://d-nb.info/gnd/4409161-8", + "note": [ + { + "noteType": "general", + "label": [ + "Programmpaket, bestehend aus WinAuftrag 1.0 und WinFiBu 1.0" + ] + } + ], + "pid": "947465928", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Finanzbuchhaltung" + }, + { + "authorized_access_point": "Auftragsabwicklung" + } + ], + "broader": [ + { + "authorized_access_point": "Programm" + } + ], + "variant_access_point": [ + "Bu\u0308ro Plus 1.0 (Programm)" + ], + "md5": "53cd81d81190c9e6a16d37f78f432c48" + }, + { + "authorized_access_point": "Finnischer Bu\u0308rgerkrieg", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4408662-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)947415874" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4408662-3" + } + ], + "identifier": "http://d-nb.info/gnd/4408662-3", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Finnischer_B%C3%BCrgerkrieg&oldid=201962892" + ] + } + ], + "pid": "947415874", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bu\u0308rgerkrieg" + } + ], + "variant_access_point": [ + "Bu\u0308rgerkrieg in Finnland", + "Suomen sisa\u0308llissota", + "Sisa\u0308llissota (Finnland)" + ], + "md5": "21fe8e1c5f17b52009674694f2f80e6d" + }, + { + "authorized_access_point": "Querschiff", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4408354-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)947397213" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4408354-3" + } + ], + "identifier": "http://d-nb.info/gnd/4408354-3", + "closeMatch": [ + { + "authorized_access_point": "Transepts", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334556784" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2007007528" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2007007528" + } + ] + }, + { + "authorized_access_point": "Transepts", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334556784" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13331557" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb133315579" + } + ] + } + ], + "pid": "947397213", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schiff (Architektur)" + } + ], + "variant_access_point": [ + "Querhaus", + "Transept", + "Transeptum" + ], + "md5": "0ad46aaa94389cd312a5a89b8e8cadb3" + }, + { + "authorized_access_point": "Aufstand der Vende\u0301e (1815)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4408277-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)947389229" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4408277-0" + } + ], + "identifier": "http://d-nb.info/gnd/4408277-0", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia unter Aufstand der Vende\u0301e - https://de.wikipedia.org/w/index.php?title=Aufstand_der_Vend%C3%A9e&oldid=243780170" + ] + }, + { + "noteType": "general", + "label": [ + "Royalistische Erhebung fu\u0308r die Thronrechte der Bourbonen" + ] + } + ], + "pid": "947389229", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Aufstand" + } + ], + "variant_access_point": [ + "Aufstand in der Vende\u0301e (1815)", + "Rebellion in der Vende\u0301e (1815)", + "Royalistische Erhebung in der Vende\u0301e (1815)", + "Guerre de Vende\u0301e et Chouannerie de 1815" + ], + "md5": "883002da913324e7d52eff2960c64c62" + }, + { + "authorized_access_point": "Urteilsberichtigung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4408014-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)94736093X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4408014-1" + } + ], + "identifier": "http://d-nb.info/gnd/4408014-1", + "pid": "94736093X", + "type": "bf:Topic", + "variant_access_point": [ + "Urteilskorrektur", + "Urteil", + "Urteil" + ], + "md5": "86b9fd227591fcef3b8b063bd5f184e8" + }, + { + "authorized_access_point": "Kriwitschen", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4407717-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)947337555" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4407717-8" + } + ], + "identifier": "http://d-nb.info/gnd/4407717-8", + "note": [ + { + "noteType": "general", + "label": [ + "Ostslaw. Stammesverband" + ] + } + ], + "pid": "947337555", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Ostslawen" + } + ], + "variant_access_point": [ + "Kryvic\u030cy", + "Krivic\u030ci" + ], + "md5": "f07e042ba48a75a5c5006e69ba89d3e2" + }, + { + "authorized_access_point": "Unaufrichtigkeit", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4405481-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)947167293" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4405481-6" + } + ], + "identifier": "http://d-nb.info/gnd/4405481-6", + "pid": "947167293", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Unehrlichkeit" + }, + { + "authorized_access_point": "Unwahrheit" + }, + { + "authorized_access_point": "Wahrhaftigkeit" + } + ], + "broader": [ + { + "authorized_access_point": "Lu\u0308ge" + } + ], + "variant_access_point": [ + "Unwahrhaftigkeit" + ], + "md5": "c26fd6ea91b1ef02f1b339c9859e2cba" + }, + { + "authorized_access_point": "democracy", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4404603-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)947085017" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4404603-0" + } + ], + "identifier": "http://d-nb.info/gnd/4404603-0", + "note": [ + { + "noteType": "general", + "label": [ + "Verknu\u0308pfe mit Sprachbezeichnung und hier nicht permutierender Wortart, z.B. Englisch ; Substantiv ; democracy" + ] + } + ], + "pid": "947085017", + "type": "bf:Topic", + "md5": "c7379291c192a72d2af53fcd0f71133c" + }, + { + "authorized_access_point": "Sporotrichum", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4403631-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)947015388" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4403631-0" + } + ], + "identifier": "http://d-nb.info/gnd/4403631-0", + "closeMatch": [ + { + "authorized_access_point": "Sporotrichum", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134560745" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh88022093" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh88022093" + } + ] + }, + { + "authorized_access_point": "Sporotrichum", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134560745" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16624535" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16624535f" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Sporotrichum", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1256259357" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "27613" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_27613" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Formgattung der Fadenpilze" + ] + } + ], + "pid": "947015388", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mucoraceae" + } + ], + "md5": "3cf9becca9669eb6d4554305d6ab58c2" + }, + { + "authorized_access_point": "Seiltanz", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4403427-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)946998051" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4403427-1" + } + ], + "identifier": "http://d-nb.info/gnd/4403427-1", + "closeMatch": [ + { + "authorized_access_point": "Tightrope walking", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134090099" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85135325" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85135325" + } + ] + }, + { + "authorized_access_point": "Funambulisme", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134090099" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11997970" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119979702" + } + ] + } + ], + "pid": "946998051", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Seilta\u0308nzer" + }, + { + "authorized_access_point": "Slacklinen" + } + ], + "md5": "03d93e97db250a734af28db2ba393cf6" + }, + { + "authorized_access_point": "Doppeladler", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4402791-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)946944210" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4402791-6" + } + ], + "identifier": "http://d-nb.info/gnd/4402791-6", + "exactMatch": [ + { + "authorized_access_point": "Double-headed eagle (Emblem)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333635303" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2002005586" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2002005586" + } + ] + } + ], + "pid": "946944210", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Wappentier" + }, + { + "authorized_access_point": "Adler (Motiv)" + } + ], + "variant_access_point": [ + "Doppelko\u0308pfiger Adler" + ], + "md5": "63ba485f343a5120d384db95801dab02" + }, + { + "authorized_access_point": "Welterbe", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4402276-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)946868093" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4402276-1" + } + ], + "identifier": "http://d-nb.info/gnd/4402276-1", + "closeMatch": [ + { + "authorized_access_point": "Patrimoine mondial culturel et naturel", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134105703" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12010561" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb120105617" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "World Heritage List - https://whc.unesco.org/en/list" + ] + } + ], + "pid": "946868093", + "type": "bf:Topic", + "variant_access_point": [ + "World Heritage", + "UNESCO-Welterbe" + ], + "md5": "996b8d77db812012a59d64f645f2ad16" + }, + { + "authorized_access_point": "Stereolithographie", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4401168-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)946792631" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4401168-4" + } + ], + "identifier": "http://d-nb.info/gnd/4401168-4", + "closeMatch": [ + { + "authorized_access_point": "Ste\u0301re\u0301olithographie", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133774687" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12334888" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb123348880" + } + ] + } + ], + "pid": "946792631", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Lasergenerieren" + } + ], + "md5": "39501fe0d63b792661788bc2194835bb" + }, + { + "authorized_access_point": "Erotische Novelle", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4400938-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)946776164" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4400938-0" + } + ], + "identifier": "http://d-nb.info/gnd/4400938-0", + "closeMatch": [ + { + "authorized_access_point": "Erotic stories", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331607299" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85044708" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85044708" + } + ] + }, + { + "authorized_access_point": "Nouvelles e\u0301rotiques", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331607299" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16932431" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb169324311" + } + ] + } + ], + "pid": "946776164", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Novelle" + }, + { + "authorized_access_point": "Erotische Literatur" + } + ], + "md5": "1afdfabae79075d17093f739d2b044f7" + }, + { + "authorized_access_point": "ACAD-Bau 5.1", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4398207-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)946530629" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4398207-4" + } + ], + "identifier": "http://d-nb.info/gnd/4398207-4", + "pid": "946530629", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "AutoCAD" + } + ], + "md5": "1c0461cce835a4cc76329f654219a423" + }, + { + "authorized_access_point": "Proteobakterien", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4397407-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)94646085X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4397407-7" + } + ], + "identifier": "http://d-nb.info/gnd/4397407-7", + "closeMatch": [ + { + "authorized_access_point": "Proteobacteria", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134680317" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2017004780" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2017004780" + } + ] + }, + { + "authorized_access_point": "Prote\u0301obacte\u0301ries", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134680317" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF15537035" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb15537035p" + } + ] + }, + { + "authorized_access_point": "Proteobacteria", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254378596" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "45491" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/45491" + } + ] + } + ], + "pid": "94646085X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bakterien" + } + ], + "md5": "732984cbd0e3b10f1fa6ac83d74120cb" + }, + { + "authorized_access_point": "Ku\u0308stenstadt", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4392076-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)946062706" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4392076-7" + } + ], + "identifier": "http://d-nb.info/gnd/4392076-7", + "closeMatch": [ + { + "authorized_access_point": "Fronts de mer", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134702809" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13554339" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb135543399" + } + ] + } + ], + "pid": "946062706", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Stadt" + } + ], + "md5": "28203e505038e48f9218ce714b6a0e17" + }, + { + "authorized_access_point": "Gavotte", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4391319-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)946022895" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4391319-2" + } + ], + "identifier": "http://d-nb.info/gnd/4391319-2", + "closeMatch": [ + { + "authorized_access_point": "Gavottes", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133885330" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85053573" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85053573" + } + ] + }, + { + "authorized_access_point": "Gavottes", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133885330" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13742456" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13742456t" + } + ] + }, + { + "authorized_access_point": "Gavotte (danse)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332662234" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18071066" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb18071066w" + } + ] + }, + { + "authorized_access_point": "Gavotte", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254394230" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "65536" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/65536" + } + ] + } + ], + "pid": "946022895", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tanz" + } + ], + "variant_access_point": [ + "Gavotto", + "Gavotta", + "Gavot (Tanz)", + "Gavota" + ], + "md5": "06480c252cabfa7a08dd8f74f3d1e716" + }, + { + "authorized_access_point": "Hitzestress", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4391224-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)94601888X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4391224-2" + } + ], + "identifier": "http://d-nb.info/gnd/4391224-2", + "closeMatch": [ + { + "authorized_access_point": "Effect of heat on", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134243006" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh00004617" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh00004617" + } + ] + }, + { + "authorized_access_point": "Effets de la chaleur", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134243006" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12264597" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12264597k" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "heat stress", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1256221880" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "11488" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_11488" + } + ] + } + ], + "pid": "94601888X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Stressreaktion" + } + ], + "related": [ + { + "authorized_access_point": "Hitzeschock-Proteine" + } + ], + "variant_access_point": [ + "Hitzeschock (Molekularbiologie)", + "Hitzeschockantwort", + "Heat-shock-response" + ], + "md5": "6cd801c0fe305b52fe8fe2d493752142" + }, + { + "authorized_access_point": "Groppe", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4389859-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)945863837" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4389859-2" + } + ], + "identifier": "http://d-nb.info/gnd/4389859-2", + "closeMatch": [ + { + "authorized_access_point": "Cottus gobio", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)133348710X" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85033386" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85033386" + } + ] + }, + { + "authorized_access_point": "Chabot commun", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)133348710X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17813225" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17813225b" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "sculpins", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1256218782" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "6888" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_6888" + } + ] + } + ], + "pid": "945863837", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Groppen (Familie)" + } + ], + "variant_access_point": [ + "Cottus gobio", + "Koppe", + "Mu\u0308hlkoppe" + ], + "md5": "0c6e08e6e5b34f147fca566738db341f" + }, + { + "authorized_access_point": "Cayuga-Sprache", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4377405-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)944522297" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4377405-2" + } + ], + "identifier": "http://d-nb.info/gnd/4377405-2", + "closeMatch": [ + { + "authorized_access_point": "Cayuga language", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134446675" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh96003821" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh96003821" + } + ] + }, + { + "authorized_access_point": "Cayuga (langue)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134446675" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF14575245" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb14575245r" + } + ] + } + ], + "pid": "944522297", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Irokesische Sprachen" + } + ], + "variant_access_point": [ + "Cayiuker", + "Ruengues", + "Gayogo\u0331ho\u0301:no\u0328\u02c0" + ], + "md5": "242620d55664c932070b274e25f69362" + }, + { + "authorized_access_point": "Hedonischer Preis", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4377236-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)944502172" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4377236-5" + } + ], + "identifier": "http://d-nb.info/gnd/4377236-5", + "closeMatch": [ + { + "authorized_access_point": "Hedonic pricing", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331580285" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2021005695" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2021005695" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Hedonischer Preisindex", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)966773241" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "10199-1" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/10199-1" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Preis, bei dem das Produkt als Bu\u0308ndel von Einzelnutzen /-leistungen aufgefasst wird, die einzeln zu bewerten sind und in den Preis einfliessen" + ] + } + ], + "pid": "944502172", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Preis" + } + ], + "md5": "e8c92307108b62d2d0738af65671e382" + }, + { + "authorized_access_point": "felicitas", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4376981-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)944484611" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4376981-0" + } + ], + "identifier": "http://d-nb.info/gnd/4376981-0", + "closeMatch": [ + { + "authorized_access_point": "Felicitas (The Latin word)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134310730" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh91005717" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh91005717" + } + ] + }, + { + "authorized_access_point": "Felicitas (le mot latin)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134310730" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12398160" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12398160w" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Verknu\u0308pfe mit Sprachbezeichnung und hier nicht permutierender Wortart, z.B. Latein / Substantiv / felicitas" + ] + } + ], + "pid": "944484611", + "type": "bf:Topic", + "md5": "5e5139e88ba1bd31944eb983bccf4901" + }, + { + "authorized_access_point": "aller (Wort)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4374559-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)94430396X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4374559-3" + } + ], + "identifier": "http://d-nb.info/gnd/4374559-3", + "closeMatch": [ + { + "authorized_access_point": "Aller (le mot franc\u0327ais)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134523785" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12533714" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb125337148" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Verknu\u0308pfe mit Sprachbezeichnung und (hier nicht permutierender - gilt bis 31. 03. 2010) Wortart, z.B. Franzo\u0308sisch / Verb / aller " + ] + } + ], + "pid": "94430396X", + "type": "bf:Topic", + "md5": "f15c79a07f35fb2a29a1120fbb42995d" + }, + { + "authorized_access_point": "Haarschwa\u0308nze", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4370633-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)943889170" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4370633-2" + } + ], + "identifier": "http://d-nb.info/gnd/4370633-2", + "closeMatch": [ + { + "authorized_access_point": "Trichiuridae", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333369808" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85137450" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85137450" + } + ] + }, + { + "authorized_access_point": "Trichiuride\u0301s", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333369808" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17160836" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17160836r" + } + ] + } + ], + "pid": "943889170", + "type": "bf:Topic", + "variant_access_point": [ + "Trichiuridae" + ], + "md5": "7f15406fbb877edadc9bd74e59d14470" + }, + { + "authorized_access_point": "Gedenken", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4369798-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)943836476" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4369798-7" + } + ], + "identifier": "http://d-nb.info/gnd/4369798-7", + "pid": "943836476", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Erinnerung" + } + ], + "variant_access_point": [ + "Geda\u0308chtnis (Gedenken)", + "Angedenken" + ], + "md5": "01020393dce09c7b42ec60bad6467f6b" + }, + { + "authorized_access_point": "Abklingzeit", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4367531-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)943625394" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4367531-1" + } + ], + "identifier": "http://d-nb.info/gnd/4367531-1", + "closeMatch": [ + { + "authorized_access_point": "Decay", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134758537" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh99005491" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh99005491" + } + ] + } + ], + "pid": "943625394", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Zeitkonstante" + } + ], + "variant_access_point": [ + "Abklingdauer" + ], + "md5": "b8b5e6120b161f175983e17984c275ea" + }, + { + "authorized_access_point": "Intelligente Konstruktion", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4364681-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)943440017" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4364681-5" + } + ], + "identifier": "http://d-nb.info/gnd/4364681-5", + "note": [ + { + "noteType": "general", + "label": [ + "Technische Konstruktion, die Sto\u0308rungen selbst zu korrigieren vermag,so da\u00df die Funktionsfa\u0308higkeit der Konstruktion erhalten bleibt" + ] + } + ], + "pid": "943440017", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Konstruktion" + } + ], + "related": [ + { + "authorized_access_point": "Intelligenter Werkstoff" + } + ], + "md5": "2d06dbde412b945255cfb992abd0155c" + }, + { + "authorized_access_point": "Dependoviren", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4363893-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)94337426X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4363893-4" + } + ], + "identifier": "http://d-nb.info/gnd/4363893-4", + "closeMatch": [ + { + "authorized_access_point": "Dependoviruses", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133740219" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2017000361" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2017000361" + } + ] + }, + { + "authorized_access_point": "Dependovirus", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133740219" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12254722" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb122547221" + } + ] + } + ], + "pid": "94337426X", + "type": "bf:Topic", + "variant_access_point": [ + "Adeno-assoziierte Viren", + "AAV", + "Defekte Parvoviren" + ], + "md5": "d2c8d352eeea95bd6837423d96165016" + }, + { + "authorized_access_point": "Hu\u0308ttenwartin", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4362317-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)943258170" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4362317-7" + } + ], + "identifier": "http://d-nb.info/gnd/4362317-7", + "closeMatch": [ + { + "authorized_access_point": "Gardiennes de refuge", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334004544" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16986926" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16986926t" + } + ] + } + ], + "pid": "943258170", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Hu\u0308ttenwart" + } + ], + "variant_access_point": [ + "Hu\u0308ttenwirtin", + "Schutzhu\u0308ttenwirtin", + "Schutzhu\u0308ttenwartin" + ], + "md5": "03ff91b921ccf9b8b16ed111a92904de" + }, + { + "authorized_access_point": "Schlangenmakrelen", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4361575-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)943209374" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4361575-2" + } + ], + "identifier": "http://d-nb.info/gnd/4361575-2", + "closeMatch": [ + { + "authorized_access_point": "Gempylide\u0301s", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333946007" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16740937" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16740937v" + } + ] + } + ], + "pid": "943209374", + "type": "bf:Topic", + "variant_access_point": [ + "Gempylidae" + ], + "md5": "064c51b8c7efd92715dfc4fcece59fda" + }, + { + "authorized_access_point": "Tagbanua", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4355229-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)942627644" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4355229-8" + } + ], + "identifier": "http://d-nb.info/gnd/4355229-8", + "exactMatch": [ + { + "authorized_access_point": "Tagbanua (Philippine people)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134335032" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85131909" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85131909" + } + ] + }, + { + "authorized_access_point": "Tagbanuwa (peuple des Philippines)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134335032" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12466856" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12466856n" + } + ] + } + ], + "pid": "942627644", + "type": "bf:Topic", + "variant_access_point": [ + "Tagbanun" + ], + "md5": "906ec42a98a125e61361e80224bc1067" + }, + { + "authorized_access_point": "Online-Dienst", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4354267-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)942531639" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4354267-0" + } + ], + "identifier": "http://d-nb.info/gnd/4354267-0", + "closeMatch": [ + { + "authorized_access_point": "Online information services", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134839154" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh95004892" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh95004892" + } + ] + }, + { + "authorized_access_point": "Servicios de informacio\u0301n en li\u0301nea", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254469117" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX4675869" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX4675869" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Digitale Gu\u0308ter", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)966895487" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "24664-2" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/24664-2" + } + ] + }, + { + "authorized_access_point": "Online-Dienst", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970576986" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10064826" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10064826" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "elektronische Informations- und Kommunikationsdienste, die im Internet angeboten werden und weder Telekommunikationsdienste noch Rundfunk sind (vgl. \u00a7 1 Satz 1 TMG), also z. B. Online-Shops, Online-Banking, elektronische Presse, Chatrooms und Internet-Suchmaschinen", + "Nicht ersatzweise verwenden fu\u0308r online allgemein oder fu\u0308r die Zerlegung von Komposita mit Online." + ] + } + ], + "pid": "942531639", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Mailbox" + }, + { + "authorized_access_point": "Service provider" + } + ], + "variant_access_point": [ + "Onlinedienst", + "Digitaler Dienst", + "Digitale Dienste", + "Telemediendienst", + "Telemedienanbieter" + ], + "md5": "5e1265ace6b9f232c74e97f1221dccc5" + }, + { + "authorized_access_point": "Erotisches Drama", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4352648-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)942348036" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4352648-2" + } + ], + "identifier": "http://d-nb.info/gnd/4352648-2", + "closeMatch": [ + { + "authorized_access_point": "Erotic drama", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331606454" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh98006158" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh98006158" + } + ] + } + ], + "pid": "942348036", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Drama" + }, + { + "authorized_access_point": "Erotische Literatur" + } + ], + "related": [ + { + "authorized_access_point": "Erotisches Theater" + } + ], + "md5": "7e17f7f648b7665030e5f6a9d8eb4bef" + }, + { + "authorized_access_point": "Mondkalender", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4352625-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)942346300" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4352625-1" + } + ], + "identifier": "http://d-nb.info/gnd/4352625-1", + "closeMatch": [ + { + "authorized_access_point": "Lunar calendars", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134480040" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2016000550" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2016000550" + } + ] + }, + { + "authorized_access_point": "Calendrier lunaire", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134480040" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF14642380" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb14642380c" + } + ] + } + ], + "pid": "942346300", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kalender" + } + ], + "md5": "1db54e066e73d6aeabde35e9f8b46de7" + }, + { + "authorized_access_point": "Pangaea", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4350499-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)942142845" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4350499-1" + } + ], + "identifier": "http://d-nb.info/gnd/4350499-1", + "closeMatch": [ + { + "authorized_access_point": "Pangaea (Supercontinent)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133815243" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh89003758" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh89003758" + } + ] + }, + { + "authorized_access_point": "Pange\u0301e (ge\u0301ologie)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133815243" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12500043" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12500043k" + } + ] + } + ], + "pid": "942142845", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kontinentalverschiebung" + } + ], + "md5": "dd087e9f6c6f8acd646ff9f4cc6c2657" + }, + { + "authorized_access_point": "Ionenbeweglichkeitsspektroskopie", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4349293-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)94203712X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4349293-9" + } + ], + "identifier": "http://d-nb.info/gnd/4349293-9", + "closeMatch": [ + { + "authorized_access_point": "Ion mobility spectroscopy", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134484240" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh89005249" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh89005249" + } + ] + }, + { + "authorized_access_point": "Spectroscopie de mobilite\u0301 ionique", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134484240" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF15007908" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb15007908s" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Trennung eines Ionengemisches aufgrund unterschiedlicher Beweglichkeit der Ionen; kein chromatographisches oder massenspektrometrisches Verfahren (nicht: Ionenbeweglichkeits-Massenspektrometrie)" + ] + } + ], + "pid": "94203712X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Spektroskopie" + } + ], + "variant_access_point": [ + "IMS (Analytische Chemie)", + "Ion mobility spectrometry", + "Plasmachromatographie", + "Ionenbeweglichkeitsspektrometrie", + "Ionenmobilita\u0308tsspektrometrie", + "Ionen-Mobilita\u0308ts-Spektrometer", + "Ionenmobilita\u0308tsspektrometer" + ], + "md5": "22586a0f86ee3d828f22f2419970b9f6" + }, + { + "authorized_access_point": "Outlaw", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4347962-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)941869121" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4347962-5" + } + ], + "identifier": "http://d-nb.info/gnd/4347962-5", + "closeMatch": [ + { + "authorized_access_point": "Outlaws", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134661266" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85096166" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85096166" + } + ] + }, + { + "authorized_access_point": "Hors-la-loi", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134661266" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13319110" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb133191102" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Als Homonymenzusatz bei Personenschlagwo\u0308rtern wird Krimineller verwendet" + ] + } + ], + "pid": "941869121", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Krimineller" + } + ], + "related": [ + { + "authorized_access_point": "Bandit" + }, + { + "authorized_access_point": "Weiblicher Outlaw" + } + ], + "variant_access_point": [ + "Gesetzloser", + "Desperado" + ], + "md5": "fc7f8e227e7bf33c5bc7949151ee1d70" + }, + { + "authorized_access_point": "Strecken", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4344537-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)941589021" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4344537-8" + } + ], + "identifier": "http://d-nb.info/gnd/4344537-8", + "pid": "941589021", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "La\u0308ngen" + } + ], + "md5": "1ba9a85f66236dbb25a0e3d1533f99e6" + }, + { + "authorized_access_point": "Mechanisches Versagen", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4343948-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)941532704" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4343948-2" + } + ], + "identifier": "http://d-nb.info/gnd/4343948-2", + "pid": "941532704", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Versagen" + } + ], + "related": [ + { + "authorized_access_point": "Bruch" + } + ], + "md5": "a7b1050a6f3f00f2c7c29bbfe5b4a3ea" + }, + { + "authorized_access_point": "Automatisches Kalibrieren", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4343426-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)941495256" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4343426-5" + } + ], + "identifier": "http://d-nb.info/gnd/4343426-5", + "pid": "941495256", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kalibrieren (Messtechnik)" + } + ], + "variant_access_point": [ + "Autocalibration" + ], + "md5": "60a70b1ae91bad371438d9dfee95015c" + }, + { + "authorized_access_point": "Aussetzung (Strafrecht)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4343351-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)941482774" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4343351-0" + } + ], + "identifier": "http://d-nb.info/gnd/4343351-0", + "closeMatch": [ + { + "authorized_access_point": "Exposure (Criminal law)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134192274" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85046514" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85046514" + } + ] + }, + { + "authorized_access_point": "Abandon d'enfant", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134192274" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12154030" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12154030j" + } + ] + }, + { + "authorized_access_point": "Abbandono", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1312659106" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "12445" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/12445" + } + ] + }, + { + "authorized_access_point": "Abandono de menores", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254408452" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX549929" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX549929" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Als Aussetzung bezeichnet man Vorga\u0308nge, bei denen ein Mensch in eine hilflose Lage versetzt oder trotz bestehender Beistandspflicht in einer hilflosen Lage im Stich gelassen wird." + ] + } + ], + "pid": "941482774", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Strafrecht" + }, + { + "authorized_access_point": "Straftat" + } + ], + "variant_access_point": [ + "Hilflose Person", + "Kindesweglegung" + ], + "md5": "74954a41ecadbd4ccfd4322e632b5e74" + }, + { + "authorized_access_point": "Caesionidae", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4341973-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)941366138" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4341973-2" + } + ], + "identifier": "http://d-nb.info/gnd/4341973-2", + "closeMatch": [ + { + "authorized_access_point": "Caesionidae", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333374453" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh94007272" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh94007272" + } + ] + }, + { + "authorized_access_point": "Caesionidae", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333374453" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18140447" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb181404471" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Familie mariner Barschartiger; Tropische Speisefische" + ] + } + ], + "pid": "941366138", + "type": "bf:Topic", + "variant_access_point": [ + "Fusilier fish" + ], + "md5": "45e7be915baa9ae433ca19a713696e2c" + }, + { + "authorized_access_point": "Schwertfisch", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4341960-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)941365050" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4341960-4" + } + ], + "identifier": "http://d-nb.info/gnd/4341960-4", + "closeMatch": [ + { + "authorized_access_point": "Swordfish", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133860737" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85131354" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85131354" + } + ] + }, + { + "authorized_access_point": "Espadon (poissons)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133860737" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13511922" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13511922p" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "swordfish", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1256256439" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "7559" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_7559" + } + ] + } + ], + "pid": "941365050", + "type": "bf:Topic", + "variant_access_point": [ + "Xiphias gladius" + ], + "md5": "6f00dcacd8696588727f372611dc4cfd" + }, + { + "authorized_access_point": "Nichtabelsche Gruppe", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4340007-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)941158748" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4340007-3" + } + ], + "identifier": "http://d-nb.info/gnd/4340007-3", + "closeMatch": [ + { + "authorized_access_point": "Non-Abelian groups", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)133359335X" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85092216" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85092216" + } + ] + } + ], + "pid": "941158748", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gruppe (Mathematik)" + } + ], + "md5": "3f944078bb0681fb537022b21e9c9a79" + }, + { + "authorized_access_point": "Alphabetische Ordnung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4339733-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)941131572" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4339733-5" + } + ], + "identifier": "http://d-nb.info/gnd/4339733-5", + "pid": "941131572", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ordnung" + } + ], + "variant_access_point": [ + "Alphabetisierung (Ordnung)", + "Alphabetische Anordnung" + ], + "md5": "5387628e1ba35954f0373b8348704006" + }, + { + "authorized_access_point": "Butylalkohol (sekunda\u0308r-)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4337578-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)940921588" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4337578-9" + } + ], + "identifier": "http://d-nb.info/gnd/4337578-9", + "pid": "940921588", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Butanole" + } + ], + "variant_access_point": [ + "Butanol (2-)", + "2-Butanol", + "Butan-2-ol" + ], + "md5": "fbc5813a5d15022204ae780e21fd4578" + }, + { + "authorized_access_point": "Stevia rebaudiana", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4336140-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)940807904" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4336140-7" + } + ], + "identifier": "http://d-nb.info/gnd/4336140-7", + "closeMatch": [ + { + "authorized_access_point": "Stevia rebaudiana", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133878318" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85128079" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85128079" + } + ] + }, + { + "authorized_access_point": "Stevia rebaudiana", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133878318" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13607123" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb136071237" + } + ] + }, + { + "authorized_access_point": "Cuisine (ste\u0301via)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134690886" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13607124" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13607124k" + } + ] + }, + { + "authorized_access_point": "Stevia rebaudiana", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254490841" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX4969935" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX4969935" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Stevia rebaudiana", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)125626055X" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "24805" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_24805" + } + ] + } + ], + "pid": "940807904", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Stevia" + } + ], + "related": [ + { + "authorized_access_point": "Steviosid" + }, + { + "authorized_access_point": "Stevia (Su\u0308\u00dfstoff)" + } + ], + "variant_access_point": [ + "Su\u0308\u00dfkraut", + "Su\u0308\u00dfblatt", + "Honigkraut" + ], + "md5": "7cb6eff1edbdedd06ba16d83bd3503c6" + }, + { + "authorized_access_point": "Verfu\u0308llung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4335910-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)940788187" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4335910-3" + } + ], + "identifier": "http://d-nb.info/gnd/4335910-3", + "pid": "940788187", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Baukonstruktion" + } + ], + "variant_access_point": [ + "Ausfu\u0308llung" + ], + "md5": "3433e6d5869d651416e14492389d99cc" + }, + { + "authorized_access_point": "Cebus olivaceus", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4335637-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)940762048" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4335637-0" + } + ], + "identifier": "http://d-nb.info/gnd/4335637-0", + "closeMatch": [ + { + "authorized_access_point": "Cebus olivaceus", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333264259" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh86000946" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh86000946" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Art der Kapuzinerartigen Affen" + ] + } + ], + "pid": "940762048", + "type": "bf:Topic", + "md5": "3a6e2bf3450cb66c88bc472a135d4640" + }, + { + "authorized_access_point": "Tiefseebeilfische", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4335526-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)940758776" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4335526-2" + } + ], + "identifier": "http://d-nb.info/gnd/4335526-2", + "closeMatch": [ + { + "authorized_access_point": "Sternoptychidae", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333487878" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85128045" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85128045" + } + ] + }, + { + "authorized_access_point": "Sternoptychide\u0301s", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333487878" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17760838" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17760838g" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Familie der Lachsartigen" + ] + } + ], + "pid": "940758776", + "type": "bf:Topic", + "variant_access_point": [ + "Beilfische", + "Sternoptychidae" + ], + "md5": "78111ef2891f8845750b74114e08031a" + }, + { + "authorized_access_point": "Schwedisch-Russischer Krieg (1788-1790)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4335478-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)940755459" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4335478-6" + } + ], + "identifier": "http://d-nb.info/gnd/4335478-6", + "closeMatch": [ + { + "authorized_access_point": "Russo-Swedish War, 1788-1790", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134297904" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85116061" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85116061" + } + ] + }, + { + "authorized_access_point": "Guerre russo-sue\u0301doise (1788-1790)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134297904" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12369215" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12369215z" + } + ] + } + ], + "pid": "940755459", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Krieg" + } + ], + "variant_access_point": [ + "Russisch-Schwedischer Krieg (1788-1790)" + ], + "md5": "6e6be2e5e0a139ff7b7b8fc304ff634b" + }, + { + "authorized_access_point": "Japanerin", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4335258-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)94074449X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4335258-3" + } + ], + "identifier": "http://d-nb.info/gnd/4335258-3", + "exactMatch": [ + { + "authorized_access_point": "Japonaises", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134533144" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12426891" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12426891b" + } + ] + }, + { + "authorized_access_point": "Japaner", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1009504312" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "26360-5" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/26360-5" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Benutzt, soweit au\u00dferhalb Japans lebend, sonst verknu\u0308pfe Japan ; Frau" + ] + } + ], + "pid": "94074449X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ausla\u0308nderin" + } + ], + "related": [ + { + "authorized_access_point": "Japaner" + } + ], + "variant_access_point": [ + "Japanische Frau" + ], + "md5": "622d838cf2d97e8b5bcca61cb2af6fb6" + }, + { + "authorized_access_point": "Kultursendung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4333556-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)940604833" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4333556-1" + } + ], + "identifier": "http://d-nb.info/gnd/4333556-1", + "closeMatch": [ + { + "authorized_access_point": "Cultural television programs", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331210461" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2007003217" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2007003217" + } + ] + }, + { + "authorized_access_point": "E\u0301missions te\u0301le\u0301vise\u0301es culturelles", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331210461" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12066447" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12066447w" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Verknu\u0308pfung mit SW Fernsehsendung bzw. Ho\u0308rfunksendung und ggf. engerem Schlagwort (z.B. Lokaler Ho\u0308rfunk); Verknu\u0308pfung mit Rundfunksendung gilt als pleonastisch." + ] + } + ], + "pid": "940604833", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Rundfunksendung" + } + ], + "variant_access_point": [ + "Kultur", + "Kulturprogramm", + "Kulturmagazin (Rundfunksendung)" + ], + "md5": "3f93ad8092abb831b054edee97b19ebb" + }, + { + "authorized_access_point": "Apogon", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4332961-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)940540959" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4332961-5" + } + ], + "identifier": "http://d-nb.info/gnd/4332961-5", + "closeMatch": [ + { + "authorized_access_point": "Apogon", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333374003" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85006019" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85006019" + } + ] + }, + { + "authorized_access_point": "Apogon (genre)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333374003" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17797552" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17797552h" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Gattung der Kardinalbarsche" + ] + } + ], + "pid": "940540959", + "type": "bf:Topic", + "md5": "a9cfa95f7bdd0b1668ccd11899bfb11e" + }, + { + "authorized_access_point": "In-vitro-Kultur", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4332883-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)940535912" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4332883-0" + } + ], + "identifier": "http://d-nb.info/gnd/4332883-0", + "closeMatch": [ + { + "authorized_access_point": "Micropropagation", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134222505" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh00005933" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh00005933" + } + ] + }, + { + "authorized_access_point": "Multiplication in vitro", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134222505" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12231761" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12231761s" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Fu\u0308r Kulturen von Organismen im Reagenzglas, Bioreaktor usw., fu\u0308r Grundlagenforschung u. Anwendung; verknu\u0308pfe mit Organismus bzw. Teilen bzw. verwende engeres SW, z.B. Zellkultur, Organkultur" + ] + } + ], + "pid": "940535912", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "In vitro" + } + ], + "variant_access_point": [ + "Kultur (Biologie)", + "Mikroorganismus (Biologie)", + "Laborkultur", + "Kultivierung" + ], + "md5": "c4b442ca8b0f6cad1d78d20529f740cf" + }, + { + "authorized_access_point": "Token (Numismatik)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4332618-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)94052113X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4332618-3" + } + ], + "identifier": "http://d-nb.info/gnd/4332618-3", + "note": [ + { + "noteType": "general", + "label": [ + "Notgeld in GB u. seinen Kolonien sowie in den USA im 17. u. 18. Jh.", + "Fu\u0308r die Kryptowa\u0308hrung verwende SW Virtuelle Wa\u0308hrung" + ] + } + ], + "pid": "94052113X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Notgeld" + } + ], + "md5": "4052aa0c9bd4f6709282155cde28a34a" + }, + { + "authorized_access_point": "Kleinpolnisch", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4329873-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)940125897" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4329873-4" + } + ], + "identifier": "http://d-nb.info/gnd/4329873-4", + "pid": "940125897", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Polnisch" + } + ], + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "variant_access_point": [ + "Mundart Polnisch (Kleinpolen)" + ], + "md5": "9e824fbf3a5ee45af568b862d44cb6a3" + }, + { + "authorized_access_point": "Wei\u00dflinge (Fische)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4329678-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)940111187" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4329678-6" + } + ], + "identifier": "http://d-nb.info/gnd/4329678-6", + "closeMatch": [ + { + "authorized_access_point": "Sillaginidae", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333373538" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh95004913" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh95004913" + } + ] + }, + { + "authorized_access_point": "Sillaginidae", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333373538" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17101899" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17101899n" + } + ] + } + ], + "pid": "940111187", + "type": "bf:Topic", + "variant_access_point": [ + "Sillaginidae" + ], + "md5": "14df7815d1a7d822bbdfc508d4d1737b" + }, + { + "authorized_access_point": "Viele-Welten-Deutung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4329474-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)940085798" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4329474-1" + } + ], + "identifier": "http://d-nb.info/gnd/4329474-1", + "closeMatch": [ + { + "authorized_access_point": "Univers paralle\u0300les", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134836198" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16665034" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16665034s" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Benutzt fu\u0308r die bestimmte physikalische Theorie, fu\u0308r allgemein physikalische oder philosophische Sachverhalte verwende Paralleluniversum." + ] + } + ], + "pid": "940085798", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Quantentheorie" + } + ], + "related": [ + { + "authorized_access_point": "Paralleluniversum" + } + ], + "variant_access_point": [ + "Viel-Welten-Deutung", + "Viel-Welten-Theorie", + "Viel-Welten-Interpretation", + "Parallele-Welten-Deutung", + "EWG-Interpretation", + "Many-worlds-Interpretation", + "Vielweltendeutung" + ], + "md5": "f0c86dde3fe1faa2175c556062049162" + }, + { + "authorized_access_point": "Markenbekanntheit", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4329198-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)940049570" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4329198-3" + } + ], + "identifier": "http://d-nb.info/gnd/4329198-3", + "pid": "940049570", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bekanntheit" + } + ], + "variant_access_point": [ + "Marke", + "Bekannte Marke", + "Beru\u0308hmte Marke", + "Starke Marke" + ], + "md5": "f36b0f635b36f1371cfeeaf3d201904a" + }, + { + "authorized_access_point": "Mitla\u0308ufer", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4329122-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)940035731" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4329122-3" + } + ], + "identifier": "http://d-nb.info/gnd/4329122-3", + "exactMatch": [ + { + "authorized_access_point": "Mitla\u0308ufer", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)971410755" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10053774" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10053774" + } + ] + } + ], + "pid": "940035731", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Mitla\u0308uferin" + } + ], + "md5": "458afea572cea595dae0e5fadc473e54" + }, + { + "authorized_access_point": "Ratio legis", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7793148-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)199279101" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7793148-8" + } + ], + "identifier": "http://d-nb.info/gnd/7793148-8", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Ratio_legis&oldid=168865992" + ] + }, + { + "noteType": "general", + "label": [ + "Sinn und Zweck einer Rechtsnorm, bzw. das Ziel, zu dessen Schutz ein Rechtssatz aufgestellt wurde." + ] + } + ], + "pid": "199279101", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ratio" + } + ], + "variant_access_point": [ + "Gesetzeszweck", + "Normzweck", + "Ratio des Gesetzes", + "Ratio einer Norm", + "Rechtsnormzweck", + "Schutzzweck", + "Schutzzweck der Norm" + ], + "md5": "3dc3029d922dce6ebfb53cf986de01fc" + }, + { + "authorized_access_point": "Efeu-Seidenbiene", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7790265-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)199254435" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7790265-8" + } + ], + "identifier": "http://d-nb.info/gnd/7790265-8", + "pid": "199254435", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Seidenbienen (Familie)" + } + ], + "variant_access_point": [ + "Colletes hederae" + ], + "md5": "d2a24e153f496272a9012cdf6b6315d6" + }, + { + "authorized_access_point": "Riedesel (Familienname)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7789724-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)199249903" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7789724-9" + } + ], + "identifier": "http://d-nb.info/gnd/7789724-9", + "note": [ + { + "noteType": "general", + "label": [ + "Verbreitung des Namens im 13.-16. Jh. in der Grafschaft Sayn-Wittgenstein" + ] + } + ], + "pid": "199249903", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Familienname" + } + ], + "md5": "baafb2d96dc13a6a2ccec21f6585b982" + }, + { + "authorized_access_point": "Mundart Westfa\u0308lisch (Lemgo)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7772912-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)199099952" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7772912-2" + } + ], + "identifier": "http://d-nb.info/gnd/7772912-2", + "pid": "199099952", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Westfa\u0308lisch" + } + ], + "md5": "db79a926b5a0d901ad979cae9050bf6c" + }, + { + "authorized_access_point": "Klinische Neuropsychologie", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7508743-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)130755087" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7508743-1" + } + ], + "identifier": "http://d-nb.info/gnd/7508743-1", + "note": [ + { + "noteType": "general", + "label": [ + "Disziplin, die sich mit neuropsychologischen Sto\u0308rungen unter klinischen Gesichtspunkten befa\u00dft (einschl. Behandlung/Rehabilitation)" + ] + } + ], + "pid": "130755087", + "type": "bf:Topic", + "md5": "f3b6008af70019041761d2e0d7d60ec2" + }, + { + "authorized_access_point": "Chinesische Philosophie", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7508128-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)130749478" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7508128-3" + } + ], + "identifier": "http://d-nb.info/gnd/7508128-3", + "pid": "130749478", + "type": "bf:Topic", + "md5": "e132abbb6e0be4d7ba88182e5ade1403" + }, + { + "authorized_access_point": "Betonkorrosion", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7507258-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)130741531" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7507258-0" + } + ], + "identifier": "http://d-nb.info/gnd/7507258-0", + "pid": "130741531", + "type": "bf:Topic", + "md5": "05a2dcf3d69aef25a5473ded71dd9a88" + }, + { + "authorized_access_point": "Alkoholintoleranz", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7505168-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)130722529" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7505168-0" + } + ], + "identifier": "http://d-nb.info/gnd/7505168-0", + "pid": "130722529", + "type": "bf:Topic", + "md5": "ae74dbf9e7b514b60d81cb3aa3d8d38e" + }, + { + "authorized_access_point": "Arzneimittelinkompatibilita\u0308t", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7504353-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)130715107" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7504353-1" + } + ], + "identifier": "http://d-nb.info/gnd/7504353-1", + "note": [ + { + "noteType": "general", + "label": [ + "Von Arzneimittelallergie unterschieden, siehe dort" + ] + } + ], + "pid": "130715107", + "type": "bf:Topic", + "variant_access_point": [ + "Inkompatibilita\u0308t" + ], + "md5": "6675fc40e744d735a351cb8010b49e3f" + }, + { + "authorized_access_point": "Schwefel-Stickstoff-Verbindungen", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7504114-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)130712930" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7504114-5" + } + ], + "identifier": "http://d-nb.info/gnd/7504114-5", + "pid": "130712930", + "type": "bf:Topic", + "variant_access_point": [ + "Stickstoff-Schwefel-Verbindungen", + "Schwefelnitride" + ], + "md5": "539f1cb4c91ef39e85c8472d9e69da4e" + }, + { + "authorized_access_point": "Rekombination (Genetik)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7504017-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)13071206X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7504017-7" + } + ], + "identifier": "http://d-nb.info/gnd/7504017-7", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Rekombination_(Genetik)&oldid=219839856" + ] + } + ], + "pid": "13071206X", + "type": "bf:Topic", + "variant_access_point": [ + "Genetische Rekombination", + "Neukombination", + "Gen" + ], + "md5": "030f4208f91e5616e01df77643316469" + }, + { + "authorized_access_point": "EG-Richtlinie", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7502749-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)130700525" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7502749-5" + } + ], + "identifier": "http://d-nb.info/gnd/7502749-5", + "note": [ + { + "noteType": "general", + "label": [ + "einz. Richtlinien werden nach \u00a7715 RSWK angesetzt" + ] + } + ], + "pid": "130700525", + "type": "bf:Topic", + "md5": "c3867719feef273b72655a8a30236edc" + }, + { + "authorized_access_point": "EG-Dienstrecht", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7502596-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)130699152" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7502596-6" + } + ], + "identifier": "http://d-nb.info/gnd/7502596-6", + "pid": "130699152", + "type": "bf:Topic", + "md5": "fd00a9ea26cdd49a990bf66b92421298" + }, + { + "authorized_access_point": "EG-Beamter", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7502591-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)130699101" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7502591-7" + } + ], + "identifier": "http://d-nb.info/gnd/7502591-7", + "pid": "130699101", + "type": "bf:Topic", + "md5": "d91da77b7874b8f1d6e188c2dbb2b596" + }, + { + "authorized_access_point": "Evangelische Seelsorge", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7502541-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)130698644" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7502541-3" + } + ], + "identifier": "http://d-nb.info/gnd/7502541-3", + "pid": "130698644", + "type": "bf:Topic", + "md5": "e9d3ff466f9ef35f41c4303dad8b63d7" + }, + { + "authorized_access_point": "Kaulbarsch", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4328007-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)043280072" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4328007-9" + } + ], + "identifier": "http://d-nb.info/gnd/4328007-9", + "closeMatch": [ + { + "authorized_access_point": "Gymnocephalus cernuus", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333473583" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85000447" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85000447" + } + ] + }, + { + "authorized_access_point": "Gymnocephalus cernua", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333473583" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17805440" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb178054402" + } + ] + } + ], + "pid": "043280072", + "type": "bf:Topic", + "variant_access_point": [ + "Stur", + "Gymnocephalus cernua", + "Gymnocephalus cernuus" + ], + "md5": "51f19a98887db3b6bf3ec9c49c4e87cd" + }, + { + "authorized_access_point": "haben (Wort)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4327097-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)043270972" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4327097-9" + } + ], + "identifier": "http://d-nb.info/gnd/4327097-9", + "closeMatch": [ + { + "authorized_access_point": "Haben (The German word)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113422303X" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2011001716" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2011001716" + } + ] + }, + { + "authorized_access_point": "Haben (le mot allemand)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113422303X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12232750" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12232750c" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Verknu\u0308pfe mit Sprachbezeichnung und (hier nicht permutierender - gilt bis 31. 03. 2010) Wortart; z.B. Deutsch / Hilfsverb / haben " + ] + } + ], + "pid": "043270972", + "type": "bf:Topic", + "md5": "875c5d50eb737e661841b9163827a619" + }, + { + "authorized_access_point": "Alanate", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4327032-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)043270328" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4327032-3" + } + ], + "identifier": "http://d-nb.info/gnd/4327032-3", + "pid": "043270328", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Aluminiumhydrid" + } + ], + "md5": "b1c140291e2fb0d9859ea5710c087385" + }, + { + "authorized_access_point": "Mitgescho\u0308pf", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4326960-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)043269605" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4326960-6" + } + ], + "identifier": "http://d-nb.info/gnd/4326960-6", + "pid": "043269605", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kreatur" + } + ], + "md5": "4abff647513d5570af846c1b8b0dd760" + }, + { + "authorized_access_point": "Mangostane", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4326500-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)043265006" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4326500-5" + } + ], + "identifier": "http://d-nb.info/gnd/4326500-5", + "closeMatch": [ + { + "authorized_access_point": "Mangosteen", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134596413" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85080526" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85080526" + } + ] + }, + { + "authorized_access_point": "Garcinia mangostana", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134596413" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16649658" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb166496580" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "mangosteen", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1256234893" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "12368" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_12368" + } + ] + } + ], + "pid": "043265006", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Johanniskrautgewa\u0308chse" + } + ], + "variant_access_point": [ + "Garcinia mangostana", + "Mangostanbaum", + "Mangostanapfel" + ], + "md5": "31c9f54a8e896865d22a75173970e1f0" + }, + { + "authorized_access_point": "Jadekunst", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4322939-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)043229395" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4322939-6" + } + ], + "identifier": "http://d-nb.info/gnd/4322939-6", + "closeMatch": [ + { + "authorized_access_point": "Jade carving", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334234000" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh95001703" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh95001703" + } + ] + }, + { + "authorized_access_point": "Sculpture sur jade", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334234000" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF15095710" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb150957105" + } + ] + } + ], + "pid": "043229395", + "type": "bf:Topic", + "variant_access_point": [ + "Jadeschnitzerei" + ], + "md5": "c21a22fa36831a54c96a12078164ab69" + }, + { + "authorized_access_point": "Bankra\u0308uber", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4322527-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)043225276" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4322527-5" + } + ], + "identifier": "http://d-nb.info/gnd/4322527-5", + "closeMatch": [ + { + "authorized_access_point": "Bank robbers", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331709628" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2022005388" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2022005388" + } + ] + } + ], + "pid": "043225276", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ra\u0308uber" + } + ], + "md5": "79b3c0a0b381aa70d762dc2d2b208bea" + }, + { + "authorized_access_point": "Parodontitis", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4322079-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)043220797" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4322079-4" + } + ], + "identifier": "http://d-nb.info/gnd/4322079-4", + "closeMatch": [ + { + "authorized_access_point": "Periodontitis", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134620675" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85099925" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85099925" + } + ] + }, + { + "authorized_access_point": "Parodontopathies", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134620675" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11965426" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119654263" + } + ] + }, + { + "authorized_access_point": "Periodontiti", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254356584" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "25875" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/25875" + } + ] + }, + { + "authorized_access_point": "Periodontitis", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254471235" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX531351" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX531351" + } + ] + }, + { + "authorized_access_point": "Periodonto - Enfermedades", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1299919812" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX700280" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX700280" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Periodontitis", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1241617104" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D010518" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D010518" + } + ] + } + ], + "pid": "043220797", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Entzu\u0308ndung" + }, + { + "authorized_access_point": "Parodontopathie" + } + ], + "variant_access_point": [ + "Paradentitis", + "Paradontitis", + "Parodontose", + "Zahnbettschwund", + "Parodontosis", + "Rasch fortschreitende Parodontitis", + "RPP", + "Rapid progredient parodontitis", + "Early-onset peridontitis" + ], + "md5": "6c1d6ec89c66b446e518435dff8a4f48" + }, + { + "authorized_access_point": "Blindversuch", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4319606-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)043196063" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4319606-8" + } + ], + "identifier": "http://d-nb.info/gnd/4319606-8", + "exactMatch": [ + { + "authorized_access_point": "Single-Blind Method", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)124159404X" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D016037" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D016037" + } + ] + } + ], + "pid": "043196063", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Doppelblindversuch" + } + ], + "variant_access_point": [ + "Blindfold test", + "Einfacher Blindversuch" + ], + "md5": "4e69962af4dcf0fa2be7c54dbd15f8b1" + }, + { + "authorized_access_point": "Kaduzierung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4317241-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)043172415" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4317241-6" + } + ], + "identifier": "http://d-nb.info/gnd/4317241-6", + "note": [ + { + "noteType": "general", + "label": [ + "Ausschluss von Mitgliedern einer Gesellschaft bei Verzug der Einzahlung ihres Kapitalanteils" + ] + } + ], + "pid": "043172415", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gesellschaftsanteil" + } + ], + "md5": "52a0ae22e9d23828cc96b7ff9c0ad6a5" + }, + { + "authorized_access_point": "Sakristei", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4317085-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)043170854" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4317085-7" + } + ], + "identifier": "http://d-nb.info/gnd/4317085-7", + "closeMatch": [ + { + "authorized_access_point": "Sacristies", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334557942" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF15595575" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb155955752" + } + ] + } + ], + "pid": "043170854", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kirchenbau" + } + ], + "md5": "d2e14e05661be6793382418e8f4c151c" + }, + { + "authorized_access_point": "Seebarsch", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4316664-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)043166644" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4316664-7" + } + ], + "identifier": "http://d-nb.info/gnd/4316664-7", + "closeMatch": [ + { + "authorized_access_point": "European seabass", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133652603" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85037661" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85037661" + } + ] + }, + { + "authorized_access_point": "Bar commun", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133652603" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11955348" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11955348x" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "sea bass", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1256256692" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "6893" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_6893" + } + ] + } + ], + "pid": "043166644", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Moronidae" + } + ], + "variant_access_point": [ + "Wolfsbarsch", + "Roccus labrax", + "Dicentrarchus labrax" + ], + "md5": "fe1eee36928e9faec1ce295ba3df5032" + }, + { + "authorized_access_point": "Montblanc-Literaturpreis", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4316620-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)043166202" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4316620-9" + } + ], + "identifier": "http://d-nb.info/gnd/4316620-9", + "pid": "043166202", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Literaturpreis" + } + ], + "variant_access_point": [ + "Montblanc-Literaturpreis fu\u0308r kurze Geschichten" + ], + "md5": "a03b64edd7c1a8891c7b070c56f4641f" + }, + { + "authorized_access_point": "Barramundi", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4316532-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04316532X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4316532-1" + } + ], + "identifier": "http://d-nb.info/gnd/4316532-1", + "closeMatch": [ + { + "authorized_access_point": "Giant perch", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333376375" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85011925" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85011925" + } + ] + }, + { + "authorized_access_point": "Barramundi", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333376375" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16914666" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb169146669" + } + ] + } + ], + "pid": "04316532X", + "type": "bf:Topic", + "variant_access_point": [ + "Plakapong", + "Lates calcarifer" + ], + "md5": "be741526ac6a66e91265bac63504464e" + }, + { + "authorized_access_point": "DBR-Laser", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4315360-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)043153607" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4315360-4" + } + ], + "identifier": "http://d-nb.info/gnd/4315360-4", + "pid": "043153607", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Halbleiterlaser" + } + ], + "variant_access_point": [ + "Distributed-Bragg-Reflektor-Laser" + ], + "md5": "f271cc94485ba71b46e771393cb4167b" + }, + { + "authorized_access_point": "Halsband-Anemonenfisch", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4313447-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)043134475" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4313447-6" + } + ], + "identifier": "http://d-nb.info/gnd/4313447-6", + "closeMatch": [ + { + "authorized_access_point": "Amphiprion frenatus", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333372299" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17805633" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17805633b" + } + ] + } + ], + "pid": "043134475", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Korallenbarsche" + } + ], + "variant_access_point": [ + "Amphiprion frenatus" + ], + "md5": "2549a005350d024b694a014758261565" + }, + { + "authorized_access_point": "Tiefenrausch", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4313410-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)043134106" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4313410-5" + } + ], + "identifier": "http://d-nb.info/gnd/4313410-5", + "closeMatch": [ + { + "authorized_access_point": "Inert gas narcosis", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113419434X" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85065986" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85065986" + } + ] + }, + { + "authorized_access_point": "Narcose a\u0300 l'azote", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113419434X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12160328" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb121603282" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Inert Gas Narcosis", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1282205935" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D007222" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D007222" + } + ] + } + ], + "pid": "043134106", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tauchunfall" + } + ], + "related": [ + { + "authorized_access_point": "High pressure neurological syndrome" + } + ], + "variant_access_point": [ + "Stickstoffnarkose" + ], + "md5": "f8f317fc51b81f5a10a97d5a80eb2c08" + }, + { + "authorized_access_point": "Da\u0308nisch-Schwedischer Krieg (1788-1789)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4313390-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)043133908" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4313390-3" + } + ], + "identifier": "http://d-nb.info/gnd/4313390-3", + "note": [ + { + "noteType": "general", + "label": [ + "Da\u0308nischer Angriff von Norwegen aus auf Schweden" + ] + } + ], + "pid": "043133908", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Krieg" + } + ], + "variant_access_point": [ + "Schwedisch-Da\u0308nischer Krieg (1788-1789)" + ], + "md5": "b76740ee1980512312c4d7e561036ea7" + }, + { + "authorized_access_point": "Regierungskriminalita\u0308t", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4313378-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)043133789" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4313378-2" + } + ], + "identifier": "http://d-nb.info/gnd/4313378-2", + "closeMatch": [ + { + "authorized_access_point": "State crimes", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331581338" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2010008055" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2010008055" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Unter Regierungskriminalita\u0308t versteht man die Verwirklichung strafbarer Handlungen, die der Erhaltung oder Ausweitung politischer Macht dienen, durch oder auf Veranlassung von hochrangigen politischen Machthabern. Hierzu za\u0308hlen etwa Verbrechen gegen die Menschlichkeit zulasten von Regimegegnern, Korruption, Wahlfa\u0308lschung und Rechtsbeugung." + ] + } + ], + "pid": "043133789", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kriminalita\u0308t" + } + ], + "variant_access_point": [ + "Staatskriminalita\u0308t", + "Politische Kriminalita\u0308t", + "Makrokriminalita\u0308t", + "Staatsverbrechen", + "State crime", + "State-organized crime", + "Kriminalita\u0308t der Ma\u0308chtigen", + "Staat" + ], + "md5": "b7d07988137ac0e12f566576c250d906" + }, + { + "authorized_access_point": "Poststation", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4312694-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)043126944" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4312694-7" + } + ], + "identifier": "http://d-nb.info/gnd/4312694-7", + "closeMatch": [ + { + "authorized_access_point": "Posthouses", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133834795" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85105550" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85105550" + } + ] + }, + { + "authorized_access_point": "Relais de poste", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133834795" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12569669" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12569669b" + } + ] + } + ], + "pid": "043126944", + "type": "bf:Topic", + "md5": "c5d53add88b3774624ddb2d9fcf94ed4" + }, + { + "authorized_access_point": "Hochleistungswerkstoff", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4312250-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)043122507" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4312250-4" + } + ], + "identifier": "http://d-nb.info/gnd/4312250-4", + "note": [ + { + "noteType": "general", + "label": [ + "Ma\u00dfgeschneiderte Materialien mit bestimmten gewu\u0308nschten Eigenschaften, die durch gezielte Synthese erreicht werden" + ] + } + ], + "pid": "043122507", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Material" + }, + { + "authorized_access_point": "Werkstoff" + } + ], + "related": [ + { + "authorized_access_point": "Intelligenter Werkstoff" + } + ], + "variant_access_point": [ + "Advanced materials", + "Advanced material", + "High-tech-Werkstoff" + ], + "md5": "1814153ba543c7bee5813025e7645e89" + }, + { + "authorized_access_point": "Spinnenaffe", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4311981-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)043119816" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4311981-5" + } + ], + "identifier": "http://d-nb.info/gnd/4311981-5", + "closeMatch": [ + { + "authorized_access_point": "Southern muriqui", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133798934" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh91006486" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh91006486" + } + ] + }, + { + "authorized_access_point": "Eroi\u0308de", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133798934" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12443392" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb124433920" + } + ] + } + ], + "pid": "043119816", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kapuzineraffenartige" + } + ], + "variant_access_point": [ + "Brachyteles arachnoides" + ], + "md5": "62d1a94e6f8b0d281e79a1fbe6c59422" + }, + { + "authorized_access_point": "Kaskadenregelung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4311704-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04311704X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4311704-1" + } + ], + "identifier": "http://d-nb.info/gnd/4311704-1", + "pid": "04311704X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Regelung" + } + ], + "md5": "5c0821a463c243fe6a8e4e7294e451fb" + }, + { + "authorized_access_point": "Tilapia rendalli", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4311029-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)043110290" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4311029-0" + } + ], + "identifier": "http://d-nb.info/gnd/4311029-0", + "exactMatch": [ + { + "authorized_access_point": "Redbreast tilapia", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333965877" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh00003454" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh00003454" + } + ] + }, + { + "authorized_access_point": "Coptodon rendalli", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333965877" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17838459" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17838459t" + } + ] + }, + { + "authorized_access_point": "Tilapia rendalli", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1256264202" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "35436" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_35436" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Buntbarschart" + ] + } + ], + "pid": "043110290", + "type": "bf:Topic", + "md5": "1482f8ae46404823a6e30d378c5ca1b7" + }, + { + "authorized_access_point": "Alcatel 1000 S12", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4310475-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)043104754" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4310475-7" + } + ], + "identifier": "http://d-nb.info/gnd/4310475-7", + "pid": "043104754", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Digitale Telefonvermittlung" + } + ], + "md5": "d79ca677504380005b4bde201dd79471" + }, + { + "authorized_access_point": "Vertragsa\u0308rztin", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4309275-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)043092756" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4309275-5" + } + ], + "identifier": "http://d-nb.info/gnd/4309275-5", + "pid": "043092756", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "A\u0308rztin" + } + ], + "related": [ + { + "authorized_access_point": "Vertragsarzt" + } + ], + "variant_access_point": [ + "Kassena\u0308rztin" + ], + "md5": "6eaa47dda0683327e9155c2b2825bf50" + }, + { + "authorized_access_point": "Klon", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4308778-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)043087787" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4308778-4" + } + ], + "identifier": "http://d-nb.info/gnd/4308778-4", + "closeMatch": [ + { + "authorized_access_point": "Clones", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134360436" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh00007750" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh00007750" + } + ] + }, + { + "authorized_access_point": "Clones (biologie)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134360436" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12533180" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12533180d" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "clones", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1256227994" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "1678" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_1678" + } + ] + } + ], + "pid": "043087787", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gentechnologie" + }, + { + "authorized_access_point": "Klonierung" + } + ], + "md5": "692d39b9457944bc202682908f57fb69" + }, + { + "authorized_access_point": "Ranking", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4307945-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)043079458" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4307945-3" + } + ], + "identifier": "http://d-nb.info/gnd/4307945-3", + "exactMatch": [ + { + "authorized_access_point": "Ranking-Verfahren", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)966685695" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "15320-0" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/15320-0" + } + ] + }, + { + "authorized_access_point": "Ranking", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)971416281" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10042956" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10042956" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Ranking bezeichnet die Einordnung von Elementen in eine Rangliste." + ] + } + ], + "pid": "043079458", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Rating" + } + ], + "variant_access_point": [ + "Rangreihenverfahren", + "Ranking-Verfahren" + ], + "md5": "54509e5a124e7faa12f5b8aa42d06f48" + }, + { + "authorized_access_point": "Affenimmundefizienzvirus", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4307866-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)043078664" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4307866-7" + } + ], + "identifier": "http://d-nb.info/gnd/4307866-7", + "closeMatch": [ + { + "authorized_access_point": "Virus de l'immunode\u0301ficience simienne", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133790364" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12412463" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12412463t" + } + ] + } + ], + "pid": "043078664", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Retroviren" + } + ], + "variant_access_point": [ + "SIV", + "Simian immunodeficiency virus" + ], + "md5": "0727fc94b1314aadc0d159ce1a6fe786" + }, + { + "authorized_access_point": "Datum", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4306202-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)043062024" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4306202-7" + } + ], + "identifier": "http://d-nb.info/gnd/4306202-7", + "closeMatch": [ + { + "authorized_access_point": "Chronology, Historical", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333671210" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85025412" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85025412" + } + ] + }, + { + "authorized_access_point": "Chronologie historique", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333671210" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13318624" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13318624w" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Datum", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1275766404" + }, + { + "type": "uri", + "value": "https://provenienz.gbv.de/T-PRO_Thesaurus_der_Provenienzbegriffe#Anker:Datum" + } + ] + } + ], + "pid": "043062024", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Chronologie" + } + ], + "variant_access_point": [ + "Datumsangabe", + "Kalendarisches Datum" + ], + "md5": "2ddc5b97659aacf8f3759e4de70d4a9a" + }, + { + "authorized_access_point": "Targetzelle", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4304980-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04304980X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4304980-1" + } + ], + "identifier": "http://d-nb.info/gnd/4304980-1", + "note": [ + { + "noteType": "general", + "label": [ + "Erythrozyt mit abnormer Farbstoffverteilung" + ] + } + ], + "pid": "04304980X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Erythrozyt" + } + ], + "variant_access_point": [ + "Schie\u00dfscheibenzelle", + "Kokardenzelle", + "Leptozyt" + ], + "md5": "982beb8c28bb9c021d9fd34952e5ec41" + }, + { + "authorized_access_point": "Allegro (Bibliotheksinformationssystem)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4304935-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)043049354" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4304935-7" + } + ], + "identifier": "http://d-nb.info/gnd/4304935-7", + "pid": "043049354", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bibliotheksinformationssystem" + } + ], + "md5": "cd4abb80d5dcffd0c694f9bd935e784a" + }, + { + "authorized_access_point": "Begriffskalku\u0308l", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4304781-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)043047815" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4304781-6" + } + ], + "identifier": "http://d-nb.info/gnd/4304781-6", + "pid": "043047815", + "type": "bf:Topic", + "md5": "3d5bc652aaeed24858fe44905403e1c2" + }, + { + "authorized_access_point": "Nichtlinearer Prozess", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4304582-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)043045820" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4304582-0" + } + ], + "identifier": "http://d-nb.info/gnd/4304582-0", + "pid": "043045820", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Stochastischer Prozess" + } + ], + "md5": "0df0219d3632ede5807dc2d5d13c854b" + }, + { + "authorized_access_point": "Moschcowitz-Syndrom", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4302393-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)043023932" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4302393-9" + } + ], + "identifier": "http://d-nb.info/gnd/4302393-9", + "exactMatch": [ + { + "authorized_access_point": "Thrombotic thrombocytopenic purpura", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332910955" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh92002901" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh92002901" + } + ] + }, + { + "authorized_access_point": "Purpura thrombotique thrombocytope\u0301nique", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332910955" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12259284" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12259284d" + } + ] + }, + { + "authorized_access_point": "Purpura, Thrombotic Thrombocytopenic", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1241613486" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D011697" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D011697" + } + ] + } + ], + "pid": "043023932", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Koagulopathie" + }, + { + "authorized_access_point": "Thrombotische Mikroangiopathie" + } + ], + "variant_access_point": [ + "Thrombotisch-thrombozytopenische Purpura", + "Moschcowitz-Singer-Symmers-Syndrom" + ], + "md5": "5e094b949973b82345b813b0aa8ec4b4" + }, + { + "authorized_access_point": "Mantik", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4300770-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)043007708" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4300770-3" + } + ], + "identifier": "http://d-nb.info/gnd/4300770-3", + "closeMatch": [ + { + "authorized_access_point": "Divination", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113479195X" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85038589" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85038589" + } + ] + }, + { + "authorized_access_point": "Divination", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113479195X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11938266" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11938266w" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Mantik hat e. weitere Bedeutung als Wahrsagen" + ] + } + ], + "pid": "043007708", + "type": "bf:Topic", + "md5": "7da5e0728a38a78dbbaaff22d0797dbe" + }, + { + "authorized_access_point": "Kalmarer Statuten", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4300624-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)043006248" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4300624-3" + } + ], + "identifier": "http://d-nb.info/gnd/4300624-3", + "note": [ + { + "noteType": "general", + "label": [ + "Verfasst 1587, sollte die Union Polens u. Schwedens vorbereiten" + ] + } + ], + "pid": "043006248", + "type": "bf:Topic", + "variant_access_point": [ + "Kalmar stadgar" + ], + "md5": "73adbfbe60ca0cc2d08ba3895481aa20" + }, + { + "authorized_access_point": "Ponyrasse", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4297517-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042975174" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4297517-7" + } + ], + "identifier": "http://d-nb.info/gnd/4297517-7", + "closeMatch": [ + { + "authorized_access_point": "Races de poneys", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134711182" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16247535" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16247535w" + } + ] + } + ], + "pid": "042975174", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tierrasse" + } + ], + "related": [ + { + "authorized_access_point": "Pony" + } + ], + "variant_access_point": [ + "Pony" + ], + "md5": "7e091bccfe34e2b5e9b81e2307689631" + }, + { + "authorized_access_point": "Hu\u0308ttenwart", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4296962-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04296962X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4296962-1" + } + ], + "identifier": "http://d-nb.info/gnd/4296962-1", + "closeMatch": [ + { + "authorized_access_point": "Gardiens de refuge", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334004277" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16721482" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb167214824" + } + ] + } + ], + "pid": "04296962X", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Hu\u0308ttenwartin" + } + ], + "variant_access_point": [ + "Hu\u0308ttenwirt", + "Schutzhu\u0308ttenwirt", + "Schutzhu\u0308ttenwart" + ], + "md5": "1a7acb2018052a5dc7a0eb31b7ee2a8c" + }, + { + "authorized_access_point": "Weibliche Person of Color", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4293658-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042936586" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4293658-5" + } + ], + "identifier": "http://d-nb.info/gnd/4293658-5", + "exactMatch": [ + { + "authorized_access_point": "People of Color", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1136963847" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "30160-2" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/30160-2" + } + ] + } + ], + "pid": "042936586", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Person of Color" + } + ], + "variant_access_point": [ + "Weibliche Person of Colour", + "Weibliche Farbige", + "Woman of Color", + "Woman of Colour", + "Farbige", + "Farbige Frau", + "Weibliche Black and People of Color", + "Weibliche Black, Indigenous and People of Color", + "Weibliche PoC", + "Weibliche BPoC", + "Weibliche BIPoC" + ], + "md5": "09f46753b20e5f11a7357d5a660662dd" + }, + { + "authorized_access_point": "Polnisch-Schwedischer Krieg (1600-1629)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4293385-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042933854" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4293385-7" + } + ], + "identifier": "http://d-nb.info/gnd/4293385-7", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Polnisch-Schwedischer_Krieg_(1600%E2%80%931629)&oldid=179265478" + ] + } + ], + "pid": "042933854", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Krieg" + } + ], + "variant_access_point": [ + "Schwedisch-Polnischer Krieg (1600-1629)" + ], + "md5": "5727bbf062436fbd29f4a22179ee1a2e" + }, + { + "authorized_access_point": "Sierpinski-Dichtung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4293229-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042932297" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4293229-4" + } + ], + "identifier": "http://d-nb.info/gnd/4293229-4", + "closeMatch": [ + { + "authorized_access_point": "Tappeti di Sierpin\u0301ski", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254397841" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "69810" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/69810" + } + ] + } + ], + "pid": "042932297", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fraktal" + } + ], + "variant_access_point": [ + "Sierpinski gasket" + ], + "md5": "3df24f92ded5694e79e6d478443b296e" + }, + { + "authorized_access_point": "Wirkungsmechanismus", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4292866-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042928664" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4292866-7" + } + ], + "identifier": "http://d-nb.info/gnd/4292866-7", + "closeMatch": [ + { + "authorized_access_point": "Mechanism of action (Biochemistry)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133739253" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh90002304" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh90002304" + } + ] + }, + { + "authorized_access_point": "Mechanism of action", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134230044" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh00006598" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh00006598" + } + ] + }, + { + "authorized_access_point": "Me\u0301canisme d'action (biochimie)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133739253" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12247262" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12247262d" + } + ] + }, + { + "authorized_access_point": "Me\u0301canisme d'action", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134230044" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12247263" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12247263r" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Nicht permutierendes USW nach bioaktiven Stoffen" + ] + } + ], + "pid": "042928664", + "type": "bf:Topic", + "variant_access_point": [ + "Wirkungsweise", + "Wirkprinzip" + ], + "md5": "f0962c6fe0cc766523e165fc2f8ff047" + }, + { + "authorized_access_point": "Sieg", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4291373-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04291373X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4291373-1" + } + ], + "identifier": "http://d-nb.info/gnd/4291373-1", + "closeMatch": [ + { + "authorized_access_point": "Victoire", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334552770" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12308292" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb151000210" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Ohne USW fu\u0308r das Milita\u0308r" + ] + } + ], + "pid": "04291373X", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Niederlage" + } + ], + "md5": "44e6d67b98fd7adaa3e04d14c0f02996" + }, + { + "authorized_access_point": "Durchgang (Astronomie)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4291270-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042912709" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4291270-2" + } + ], + "identifier": "http://d-nb.info/gnd/4291270-2", + "closeMatch": [ + { + "authorized_access_point": "Transits", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134443021" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85136957" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85136957" + } + ] + }, + { + "authorized_access_point": "Passages (astronomie)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134443021" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF14558309" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb14558309g" + } + ] + } + ], + "pid": "042912709", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Himmelsmechanik" + } + ], + "variant_access_point": [ + "Transit (Astronomie)" + ], + "md5": "8a7f77fd18552461bb401c15dcb27a6c" + }, + { + "authorized_access_point": "Italianismus", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4291191-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042911915" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4291191-6" + } + ], + "identifier": "http://d-nb.info/gnd/4291191-6", + "closeMatch": [ + { + "authorized_access_point": "Italian language - Idioms", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134157150" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2008124258" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2008124258" + } + ] + }, + { + "authorized_access_point": "Emprunts italiens", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134044984" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11977038" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11977038p" + } + ] + }, + { + "authorized_access_point": "Italianismes (idiotismes)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134157150" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12092334" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12092334x" + } + ] + } + ], + "pid": "042911915", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Xenismus" + }, + { + "authorized_access_point": "Entlehnung" + } + ], + "related": [ + { + "authorized_access_point": "Italienisch" + } + ], + "md5": "ff00b4b530b85a860f92f8cd6795eff9" + }, + { + "authorized_access_point": "Essayismus", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4290916-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042909163" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4290916-8" + } + ], + "identifier": "http://d-nb.info/gnd/4290916-8", + "closeMatch": [ + { + "authorized_access_point": "Essay", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113450652X" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85044913" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85044913" + } + ] + }, + { + "authorized_access_point": "Essai (genre litte\u0301raire)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113450652X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11948997" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119489979" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Benutzt fu\u0308r Stilprinzip" + ] + } + ], + "pid": "042909163", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Essay" + } + ], + "md5": "eae93269c1e99de64828442f81a6186c" + }, + { + "authorized_access_point": "Amenabilita\u0308t", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4289825-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042898250" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4289825-0" + } + ], + "identifier": "http://d-nb.info/gnd/4289825-0", + "pid": "042898250", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Harmonische Analyse" + } + ], + "related": [ + { + "authorized_access_point": "Amenabilita\u0308tstheorie" + } + ], + "variant_access_point": [ + "Amenability" + ], + "md5": "3b4407e557609e0cb0c16c31444213d9" + }, + { + "authorized_access_point": "Vorsichtsprinzip", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4287125-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042871255" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4287125-6" + } + ], + "identifier": "http://d-nb.info/gnd/4287125-6", + "closeMatch": [ + { + "authorized_access_point": "Precautionary principle", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134743416" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2004005271" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2004005271" + } + ] + }, + { + "authorized_access_point": "Principe de pre\u0301caution", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134743416" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13564166" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13564166v" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Vorsichtsprinzip", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)966706951" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "12432-4" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/12432-4" + } + ] + } + ], + "pid": "042871255", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bilanzierungsgrundsa\u0308tze" + } + ], + "variant_access_point": [ + "Vorsichtsgrundsatz", + "Bilanzvorsicht", + "Bilanzvorsicht", + "Vorsichtige Bilanzierung", + "Prinzip der vorsichtigen Bewertung" + ], + "md5": "9df86a0dcfde738dfc5b1042effc5089" + }, + { + "authorized_access_point": "Wasserstress", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4287109-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042871093" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4287109-8" + } + ], + "identifier": "http://d-nb.info/gnd/4287109-8", + "closeMatch": [ + { + "authorized_access_point": "Effect of drought on", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134207492" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh00004602" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh00004602" + } + ] + }, + { + "authorized_access_point": "Effets de la se\u0301cheresse", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134207492" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12200367" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12200367w" + } + ] + } + ], + "pid": "042871093", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Stressreaktion" + } + ], + "md5": "8e3194fd6caac370041bfaf2853dd778" + }, + { + "authorized_access_point": "Faltenpilze", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4286869-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042868696" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4286869-5" + } + ], + "identifier": "http://d-nb.info/gnd/4286869-5", + "closeMatch": [ + { + "authorized_access_point": "Meruliaceae", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334020086" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16556915" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16556915v" + } + ] + } + ], + "pid": "042868696", + "type": "bf:Topic", + "variant_access_point": [ + "Fa\u0308ltlinge", + "Meruliaceae" + ], + "md5": "28982b259edb9743345fee377bff52db" + }, + { + "authorized_access_point": "Bo\u0308rseninformation", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4285509-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042855098" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4285509-3" + } + ], + "identifier": "http://d-nb.info/gnd/4285509-3", + "closeMatch": [ + { + "authorized_access_point": "Information financie\u0300re", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134229682" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12246565" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb122465651" + } + ] + } + ], + "pid": "042855098", + "type": "bf:Topic", + "md5": "7cfe7b2653b5467e3d200637a295c587" + }, + { + "authorized_access_point": "Scheinschnapper", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4285408-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042854083" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4285408-8" + } + ], + "identifier": "http://d-nb.info/gnd/4285408-8", + "closeMatch": [ + { + "authorized_access_point": "Nemipteridae", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333472862" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85090721" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85090721" + } + ] + }, + { + "authorized_access_point": "Nemipteridae", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333472862" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17155703" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17155703h" + } + ] + } + ], + "pid": "042854083", + "type": "bf:Topic", + "variant_access_point": [ + "Nemipteridae" + ], + "md5": "f81352667e5e626d0354a72e6e3d16b4" + }, + { + "authorized_access_point": "Tag der deutschen Einheit", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4282976-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042829763" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4282976-8" + } + ], + "identifier": "http://d-nb.info/gnd/4282976-8", + "pid": "042829763", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Nationalfeiertag" + } + ], + "related": [ + { + "authorized_access_point": "Wiedervereinigung (Deutschland)" + } + ], + "variant_access_point": [ + "Dritter Oktober (Nationlfeiertag)", + "3. Oktober (Nationalfeiertag)", + "Tag der deutschen Vereinigung", + "Siebzehnter Juni (Nationalfeiertag)", + "17. Juni (Nationalfeiertag)" + ], + "md5": "19b3aff4b2e744e278f202b8381fb6f4" + }, + { + "authorized_access_point": "Cuntz-Algebra", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4282919-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042829194" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4282919-7" + } + ], + "identifier": "http://d-nb.info/gnd/4282919-7", + "pid": "042829194", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Operatoralgebra" + } + ], + "md5": "8da00007ea5a49199da4cf9081a786b2" + }, + { + "authorized_access_point": "Wasseramseln (Familie)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4282846-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042828465" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4282846-6" + } + ], + "identifier": "http://d-nb.info/gnd/4282846-6", + "closeMatch": [ + { + "authorized_access_point": "Dippers (Birds)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133824234" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85038225" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85038225" + } + ] + }, + { + "authorized_access_point": "Cincles", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133824234" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13621371" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13621371m" + } + ] + } + ], + "pid": "042828465", + "type": "bf:Topic", + "variant_access_point": [ + "Cinclidae" + ], + "md5": "5df010ba700a292e9f0cd0907b3dd569" + }, + { + "authorized_access_point": "Rissverlauf", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4282521-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042825210" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4282521-0" + } + ], + "identifier": "http://d-nb.info/gnd/4282521-0", + "pid": "042825210", + "type": "bf:Topic", + "variant_access_point": [ + "Riss" + ], + "md5": "6cfe564de16ac16ef809c92e20eba0b4" + }, + { + "authorized_access_point": "Laminarprofil", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4281941-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042819415" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4281941-6" + } + ], + "identifier": "http://d-nb.info/gnd/4281941-6", + "pid": "042819415", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Profil (Aerodynamik)" + } + ], + "md5": "9374e9005760b6a845d5808e7e96d189" + }, + { + "authorized_access_point": "Vadstena-Affa\u0308re", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4281729-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042817293" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4281729-8" + } + ], + "identifier": "http://d-nb.info/gnd/4281729-8", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Katharina_Wasa_(1539%E2%80%931610)&oldid=207626567" + ] + }, + { + "noteType": "general", + "label": [ + "Vermutl. Intima zwischen Cecilia v. Schweden und Johann v. Ostfriesland" + ] + } + ], + "pid": "042817293", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Politischer Skandal" + } + ], + "related": [ + { + "authorized_access_point": "Liebesbeziehung" + } + ], + "variant_access_point": [ + "Vadstena-La\u0308rm" + ], + "md5": "143cbdfdbbb5d8ec8f5576ca36b5be8a" + }, + { + "authorized_access_point": "Hornkorallen", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4281390-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042813905" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4281390-6" + } + ], + "identifier": "http://d-nb.info/gnd/4281390-6", + "closeMatch": [ + { + "authorized_access_point": "Gorgones (animaux)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113377640X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12337857" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12337857f" + } + ] + } + ], + "pid": "042813905", + "type": "bf:Topic", + "variant_access_point": [ + "Rindenkorallen", + "Gorgonaria", + "Gorgonien" + ], + "md5": "c537ad59f5917e176224cbab947bcd44" + }, + { + "authorized_access_point": "Warenterminbo\u0308rse", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4280309-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042803098" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4280309-3" + } + ], + "identifier": "http://d-nb.info/gnd/4280309-3", + "closeMatch": [ + { + "authorized_access_point": "Commodity futures", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134086660" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh88001652" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh88001652" + } + ] + }, + { + "authorized_access_point": "Bourses de marchandises", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134086660" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11993552" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119935522" + } + ] + } + ], + "pid": "042803098", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Terminbo\u0308rse" + }, + { + "authorized_access_point": "Warenbo\u0308rse" + } + ], + "md5": "926f8f16a61a0580bb532eddf6f26816" + }, + { + "authorized_access_point": "Westdeutsche", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4279877-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042798779" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4279877-2" + } + ], + "identifier": "http://d-nb.info/gnd/4279877-2", + "exactMatch": [ + { + "authorized_access_point": "Allemands de l'Ouest", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332874800" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF177016487" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb177016487" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Benutzt fu\u0308r Westdeutsche bzw. Bewohner der Bundesrepublik Deutschland (vor 1990) ausserhalb Deutschland " + ] + } + ], + "pid": "042798779", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Deutsche" + } + ], + "variant_access_point": [ + "Deutsche (Westliche La\u0308nder)", + "Deutsche (Bundesrepublik)" + ], + "md5": "9190ff6512ac03aa6b04c3e64766698d" + }, + { + "authorized_access_point": "Ostdeutsche", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4279876-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042798760" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4279876-0" + } + ], + "identifier": "http://d-nb.info/gnd/4279876-0", + "exactMatch": [ + { + "authorized_access_point": "Allemands de l'Est", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332874002" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17701910" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17701910c" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Benutzt fu\u0308r Ostdeutsche, soweit ausserhalb Deutschland lebend" + ] + } + ], + "pid": "042798760", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Deutsche" + } + ], + "variant_access_point": [ + "Deutsche (O\u0308stliche La\u0308nder)" + ], + "md5": "332d4456dfc1f306649bde543975fd9a" + }, + { + "authorized_access_point": "Gehaubter Kapuziner", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4279847-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042798477" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4279847-4" + } + ], + "identifier": "http://d-nb.info/gnd/4279847-4", + "closeMatch": [ + { + "authorized_access_point": "Cebus apella", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333261721" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85021586" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85021586" + } + ] + }, + { + "authorized_access_point": "Sajou apelle", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333261721" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16244425" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16244425k" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Art der Kapuzinerartigen Affen" + ] + } + ], + "pid": "042798477", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kapuzineraffenartige" + } + ], + "variant_access_point": [ + "Apella (Zoologie)", + "Faunaffe", + "Cebus apella" + ], + "md5": "d14e2e528be08bf0875f62e9e8f04c79" + }, + { + "authorized_access_point": "Rekombinantes Protein", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4277353-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042773539" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4277353-2" + } + ], + "identifier": "http://d-nb.info/gnd/4277353-2", + "closeMatch": [ + { + "authorized_access_point": "Recombinant proteins", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133738346" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh90005744" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh90005744" + } + ] + }, + { + "authorized_access_point": "Prote\u0301ines recombine\u0301es", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133738346" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12242267" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12242267x" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Recombinant Proteins", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331727316" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D011994" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D011994" + } + ] + } + ], + "pid": "042773539", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Proteine" + } + ], + "related": [ + { + "authorized_access_point": "Rekombinante DNS" + }, + { + "authorized_access_point": "Recombinasen" + } + ], + "variant_access_point": [ + "Rekombinante Substanz", + "Hybrid-Protein", + "Rekombiniertes Protein", + "Fusionsprotein" + ], + "md5": "2dc64397ba91eed1bfefed3df41255ec" + }, + { + "authorized_access_point": "Lagerkommandant", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4276356-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042763568" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4276356-3" + } + ], + "identifier": "http://d-nb.info/gnd/4276356-3", + "pid": "042763568", + "type": "bf:Topic", + "variant_access_point": [ + "Kommandant (Lagerkommandant)" + ], + "md5": "719abf58034586ca4054f47d704d685f" + }, + { + "authorized_access_point": "O\u0308ffentliche Ordnung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4276243-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04276243X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4276243-1" + } + ], + "identifier": "http://d-nb.info/gnd/4276243-1", + "closeMatch": [ + { + "authorized_access_point": "Public policy", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134595816" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85108741" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85108741" + } + ] + }, + { + "authorized_access_point": "Ordre public", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134595816" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11972065" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11972065c" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "o\u0308ffentliche Ordnung", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970607997" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10047519" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10047519" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Als o\u0308ffentliche Ordnung bezeichnet man die Gesamtheit au\u00dferrechtlicher ungeschriebener Regeln fu\u0308r das Verhalten des Einzelnen in der O\u0308ffentlichkeit, deren Beachtung nach den jeweils herrschenden Anschauungen fu\u0308r ein geordnetes staatsbu\u0308rgerliches Zusammenleben unerla\u0308sslich ist." + ] + } + ], + "pid": "04276243X", + "type": "bf:Topic", + "md5": "a074a87a08edac501302a26fcac0e50b" + }, + { + "authorized_access_point": "Tylochromis", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4275525-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042755255" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4275525-6" + } + ], + "identifier": "http://d-nb.info/gnd/4275525-6", + "closeMatch": [ + { + "authorized_access_point": "Tylochromis", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)133396207X" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh92000995" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh92000995" + } + ] + }, + { + "authorized_access_point": "Tylochromis", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)133396207X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17801991" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17801991c" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Gattung der Buntbarsche" + ] + } + ], + "pid": "042755255", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Buntbarsche" + } + ], + "md5": "0a8881612d9ff2c52d1cb871dc79cd22" + }, + { + "authorized_access_point": "Osteoblast", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4275206-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04275206X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4275206-1" + } + ], + "identifier": "http://d-nb.info/gnd/4275206-1", + "closeMatch": [ + { + "authorized_access_point": "Oste\u0301oblastes", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133798454" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12442115" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12442115r" + } + ] + } + ], + "pid": "04275206X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zelle" + } + ], + "related": [ + { + "authorized_access_point": "Osteoklast" + }, + { + "authorized_access_point": "Osteozyt" + } + ], + "variant_access_point": [ + "Cellula osteoblastica", + "Osteoplast" + ], + "md5": "a0e44d07b4eca4571d8f37157e44f422" + }, + { + "authorized_access_point": "Thoraxkrebs", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4274929-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042749298" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4274929-3" + } + ], + "identifier": "http://d-nb.info/gnd/4274929-3", + "exactMatch": [ + { + "authorized_access_point": "Chest - Cancer", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134574444" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2010008992" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2010008992" + } + ] + }, + { + "authorized_access_point": "Thoracic Neoplasms", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1241624984" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D013899" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D013899" + } + ] + } + ], + "pid": "042749298", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Krebs (Medizin)" + }, + { + "authorized_access_point": "Thoraxtumor" + } + ], + "variant_access_point": [ + "Thorax (Medizin)", + "Thoraxkarzinom", + "Thoraxcarcinom", + "Brustkorb", + "Brustorgan", + "Brustkorbkrebs" + ], + "md5": "428e8fdf4fd6cc846fa04cc5914940d9" + }, + { + "authorized_access_point": "FCT", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4274098-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042740983" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4274098-8" + } + ], + "identifier": "http://d-nb.info/gnd/4274098-8", + "pid": "042740983", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Thyristor" + }, + { + "authorized_access_point": "Abschaltbarer Leistungshalbleiter" + } + ], + "variant_access_point": [ + "Feldgesteuerter Thyristor", + "FTD", + "SI-Thyristor", + "Bipolarer Gridistor" + ], + "md5": "168ec8b58853486b6de4676fc6590fed" + }, + { + "authorized_access_point": "Virtuose", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4272862-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042728622" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4272862-9" + } + ], + "identifier": "http://d-nb.info/gnd/4272862-9", + "closeMatch": [ + { + "authorized_access_point": "Virtuoses (musique)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332757650" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16949658" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16949658h" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Benutzt fu\u0308r Musik" + ] + } + ], + "pid": "042728622", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Musiker" + } + ], + "related": [ + { + "authorized_access_point": "Solist" + } + ], + "variant_access_point": [ + "Kammervirtuose" + ], + "md5": "598bed2ccc0e48d4603e84e20035b254" + }, + { + "authorized_access_point": "Opportunismus", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4272573-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042725739" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4272573-2" + } + ], + "identifier": "http://d-nb.info/gnd/4272573-2", + "exactMatch": [ + { + "authorized_access_point": "Opportunismus", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1068404876" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "30005-0" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/30005-0" + } + ] + }, + { + "authorized_access_point": "Opportunismus", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970577095" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10053773" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10053773" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Handeln auf der Grundlage von Zweckma\u0308\u00dfigkeit. Oft abwertend im Sinn von \"charakterlosem Verhalten\" verwendet." + ] + } + ], + "pid": "042725739", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Politische Ethik" + } + ], + "related": [ + { + "authorized_access_point": "Pragmatismus" + } + ], + "variant_access_point": [ + "Pragmatismus" + ], + "md5": "c5e9e266686a7c08a7150b86de74aa39" + }, + { + "authorized_access_point": "Goldreserve", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4270787-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042707870" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4270787-0" + } + ], + "identifier": "http://d-nb.info/gnd/4270787-0", + "closeMatch": [ + { + "authorized_access_point": "Or comme valeur de placement", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113459996X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12502627" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12502627g" + } + ] + } + ], + "pid": "042707870", + "type": "bf:Topic", + "md5": "bb0a69cb8d4e8d2a5d7404bda5ad29bb" + }, + { + "authorized_access_point": "Verlegerin", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4266720-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042667208" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4266720-3" + } + ], + "identifier": "http://d-nb.info/gnd/4266720-3", + "closeMatch": [ + { + "authorized_access_point": "Women editors", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134507925" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh92005004" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh92005004" + } + ] + }, + { + "authorized_access_point": "Women publishers", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331604567" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85147695" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85147695" + } + ] + }, + { + "authorized_access_point": "E\u0301ditrices", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134507925" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13505351" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13505351c" + } + ] + }, + { + "authorized_access_point": "E\u0301ditrices", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331604567" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13505351" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13505351c" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Als Homonymenzusatz bei Personenschlagworten zugelassen" + ] + } + ], + "pid": "042667208", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Verlag" + }, + { + "authorized_access_point": "Verleger" + } + ], + "variant_access_point": [ + "Verlagsleiterin" + ], + "md5": "13765dd2f8c3a02caa47226c94976664" + }, + { + "authorized_access_point": "Mikronesische Sprachen", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4264044-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04264044X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4264044-1" + } + ], + "identifier": "http://d-nb.info/gnd/4264044-1", + "pid": "04264044X", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Ostozeanisch" + } + ], + "variant_access_point": [ + "Mikronesisch" + ], + "md5": "f5c46725a40638209a526eb637c694fd" + }, + { + "authorized_access_point": "Ausdauernde Pflanzen", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4262502-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042625025" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4262502-6" + } + ], + "identifier": "http://d-nb.info/gnd/4262502-6", + "closeMatch": [ + { + "authorized_access_point": "Perennials", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133929443" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85099785" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85099785" + } + ] + }, + { + "authorized_access_point": "Plantes vivaces", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133929443" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11932972" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119329729" + } + ] + }, + { + "authorized_access_point": "Plantas vivaces", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254408150" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX544340" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX544340" + } + ] + } + ], + "pid": "042625025", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Pflanzen" + } + ], + "variant_access_point": [ + "Perennierende Pflanzen" + ], + "md5": "0aaa323b8df7c3f65586f1c3549bbc7e" + }, + { + "authorized_access_point": "Tiefenverteilung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4261672-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042616727" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4261672-4" + } + ], + "identifier": "http://d-nb.info/gnd/4261672-4", + "closeMatch": [ + { + "authorized_access_point": "Distribution verticale", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134129041" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12043931" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12043931r" + } + ] + } + ], + "pid": "042616727", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ra\u0308umliche Verteilung" + } + ], + "related": [ + { + "authorized_access_point": "Tiefenprofilmessung" + } + ], + "md5": "7fd16d82197438ea5ea0444ad75b7cbf" + }, + { + "authorized_access_point": "Singdrossel", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4261229-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042612292" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4261229-9" + } + ], + "identifier": "http://d-nb.info/gnd/4261229-9", + "closeMatch": [ + { + "authorized_access_point": "Song thrush", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134326912" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85125035" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85125035" + } + ] + }, + { + "authorized_access_point": "Grive musicienne", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134326912" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12443231" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12443231h" + } + ] + } + ], + "pid": "042612292", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Drosseln" + } + ], + "variant_access_point": [ + "Turdus philomelos" + ], + "md5": "52ed1fbb8596099160306a782961b22b" + }, + { + "authorized_access_point": "Gastspiel", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4255674-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042556740" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4255674-0" + } + ], + "identifier": "http://d-nb.info/gnd/4255674-0", + "closeMatch": [ + { + "authorized_access_point": "Tourne\u0301es (arts du spectacle)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113360269X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12453839" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb124538394" + } + ] + } + ], + "pid": "042556740", + "type": "bf:Topic", + "variant_access_point": [ + "Tournee" + ], + "md5": "05b0fcc144ea32a144fa2e0664659aec" + }, + { + "authorized_access_point": "Rating", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4255219-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042552192" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4255219-9" + } + ], + "identifier": "http://d-nb.info/gnd/4255219-9", + "exactMatch": [ + { + "authorized_access_point": "Rating", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1027503195" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10080932" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10080932" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Scha\u0308tzverfahren der empirischen Sozialforschung, bei denen Auskunftspersonen Personen bzw. Sachverhalte anhand einer vorgegebenen Skala beurteilen. Verknu\u0308pfe mit Anwendungsgebiet." + ] + } + ], + "pid": "042552192", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Skalierung" + }, + { + "authorized_access_point": "Ranking" + } + ], + "md5": "3ab5648d2157cf4d47ec268e89b71492" + }, + { + "authorized_access_point": "Ku\u0308nstlerhaus", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4252184-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04252184X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4252184-1" + } + ], + "identifier": "http://d-nb.info/gnd/4252184-1", + "closeMatch": [ + { + "authorized_access_point": "Re\u0301sidences d'artistes", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133799965" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12447905" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12447905v" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Kunstzentrum mit Ateliers, Veranstaltungsort fu\u0308r Theaterspiel, Produktionssta\u0308tten", + "Kein OB fu\u0308r Wohnha\u0308user von Ku\u0308nstlern. Hierfu\u0308r benutze neben der architektonischen Gattungsbezeichnung Haus, Villa, Gartenhaus etc. gegebenenfalls Atelierhaus oder Literarische Sta\u0308tte" + ] + } + ], + "pid": "04252184X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kulturgeba\u0308ude" + } + ], + "md5": "f8f931a21b100d400cdb9d9722e1c92f" + }, + { + "authorized_access_point": "Schwarzbarsch", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4251729-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04251729X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4251729-1" + } + ], + "identifier": "http://d-nb.info/gnd/4251729-1", + "closeMatch": [ + { + "authorized_access_point": "Smallmouth bass", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333375859" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85123609" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85123609" + } + ] + }, + { + "authorized_access_point": "Black-bass a\u0300 petite bouche", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333375859" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17800584" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17800584r" + } + ] + } + ], + "pid": "04251729X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Sonnenbarsche (Familie)" + } + ], + "variant_access_point": [ + "Micropterus dolomieui" + ], + "md5": "fc4214f749aa52905d3f85ff3b387904" + }, + { + "authorized_access_point": "Naturnahe Gestaltung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4249691-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042496918" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4249691-3" + } + ], + "identifier": "http://d-nb.info/gnd/4249691-3", + "pid": "042496918", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Renaturierung (O\u0308kologie)" + }, + { + "authorized_access_point": "Rekultivierung" + }, + { + "authorized_access_point": "Naturnahe Pflege" + } + ], + "variant_access_point": [ + "Naturnaher Ausbau", + "Naturnahe Umgestaltung" + ], + "md5": "d95351e2eb0091761dc8359e86ce192b" + }, + { + "authorized_access_point": "Naturnaher Gewa\u0308sserausbau", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4249689-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042496896" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4249689-5" + } + ], + "identifier": "http://d-nb.info/gnd/4249689-5", + "closeMatch": [ + { + "authorized_access_point": "Rives - Ame\u0301nagement", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134708971" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13745579" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13745579g" + } + ] + } + ], + "pid": "042496896", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gewa\u0308sserausbau" + }, + { + "authorized_access_point": "Naturnahe Gestaltung" + } + ], + "variant_access_point": [ + "Naturnaher Gewa\u0308sserbau" + ], + "md5": "95a2e0283d390c3f6ac6f46a8b0006af" + }, + { + "authorized_access_point": "Abtast- und Haltekreis", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4249101-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042491010" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4249101-0" + } + ], + "identifier": "http://d-nb.info/gnd/4249101-0", + "pid": "042491010", + "type": "bf:Topic", + "variant_access_point": [ + "Sample-and-hold-Schaltung", + "Abtast-halte-Schaltung" + ], + "md5": "76e7601a60c4bdbca724c4ed84bedbe8" + }, + { + "authorized_access_point": "Pakaa\u0301 nova", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4247977-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042479770" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4247977-0" + } + ], + "identifier": "http://d-nb.info/gnd/4247977-0", + "closeMatch": [ + { + "authorized_access_point": "Wari' (Indiens)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134334915" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12466779" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb124667791" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Brasilian. indigene Gruppe" + ] + } + ], + "pid": "042479770", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Indianer" + } + ], + "md5": "1e7506b3fdbb241801a600d369f75730" + }, + { + "authorized_access_point": "Zukunft (Motiv)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4246619-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042466199" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4246619-2" + } + ], + "identifier": "http://d-nb.info/gnd/4246619-2", + "closeMatch": [ + { + "authorized_access_point": "Future, The, in literature", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113455026X" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85052608" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85052608" + } + ] + }, + { + "authorized_access_point": "Future in art", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134550278" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh99001312" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh99001312" + } + ] + } + ], + "pid": "042466199", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "8e6ff53f1f8ff2651569b411c13d8941" + }, + { + "authorized_access_point": "Quantita\u0308t", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4245395-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04245395X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4245395-1" + } + ], + "identifier": "http://d-nb.info/gnd/4245395-1", + "closeMatch": [ + { + "authorized_access_point": "Quantity (Philosophy)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134007892" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85109450" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85109450" + } + ] + }, + { + "authorized_access_point": "Quantite\u0301 (philosophie)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134007892" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11965167" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11965167v" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Quantita\u0308t", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)97058346X" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10044683" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10044683" + } + ] + } + ], + "pid": "04245395X", + "type": "bf:Topic", + "md5": "f0c58f0f7772e6f7af6af2a46a266518" + }, + { + "authorized_access_point": "telo\u0304ne\u0304s", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4243908-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042439086" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4243908-5" + } + ], + "identifier": "http://d-nb.info/gnd/4243908-5", + "note": [ + { + "noteType": "general", + "label": [ + "Verknu\u0308pfe ggf. mit Sprachbezeichnung u. hier nicht permutierender Wortart: z.B. Griechisch / Substantiv / telo\u0304ne\u0304s" + ] + } + ], + "pid": "042439086", + "type": "bf:Topic", + "variant_access_point": [ + "\u03c4\u03b5\u03bb\u03c9\u0301\u03bd\u03b7\u03c2" + ], + "md5": "dc8492ba84d18d6e5e704602d70c312a" + }, + { + "authorized_access_point": "Roll-on-roll-off-Schiff", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4243351-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042433517" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4243351-4" + } + ], + "identifier": "http://d-nb.info/gnd/4243351-4", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=RoRo-Schiff&oldid=233657111" + ] + }, + { + "noteType": "general", + "label": [ + "Frachtschiffe, die bewegliche Gu\u0308ter transportieren, die auf die Schiffe gefahren werden (RoRo-Verfahren)" + ] + } + ], + "pid": "042433517", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Frachtschiff" + } + ], + "variant_access_point": [ + "Ro-ro-Schiff", + "RoRo-Schiff", + "Roll-on-/Roll-off-Schiff", + "RORO ship" + ], + "md5": "42cc1fde955849880e5d4bca9d07b7a5" + }, + { + "authorized_access_point": "Sonderdruck", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4242704-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042427045" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4242704-6" + } + ], + "identifier": "http://d-nb.info/gnd/4242704-6", + "closeMatch": [ + { + "authorized_access_point": "Tire\u0301s a\u0300 part", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)133158230X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18015044" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb180150449" + } + ] + } + ], + "pid": "042427045", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckwerk" + } + ], + "variant_access_point": [ + "Sonderabdruck" + ], + "md5": "2319bbb3d40477724cf2a27d1cec006b" + }, + { + "authorized_access_point": "Textverstehen", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4241679-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042416795" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4241679-6" + } + ], + "identifier": "http://d-nb.info/gnd/4241679-6", + "closeMatch": [ + { + "authorized_access_point": "Reading comprehension", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133936881" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85111686" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85111686" + } + ] + }, + { + "authorized_access_point": "Lecture - Aspect cognitif", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133936881" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12303769" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12303769k" + } + ] + } + ], + "pid": "042416795", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Sprachverstehen" + }, + { + "authorized_access_point": "Textverarbeitung (Psycholinguistik)" + } + ], + "variant_access_point": [ + "Verstehen", + "Textversta\u0308ndnis", + "Leseverstehen (Muttersprache)" + ], + "md5": "9e50de998111b8b99577eb61b67aa73e" + }, + { + "authorized_access_point": "Friedliche Revolution in der DDR (Motiv)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4240288-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042402883" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4240288-8" + } + ], + "identifier": "http://d-nb.info/gnd/4240288-8", + "pid": "042402883", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "96a5d4738db2fe70026ef35c2d5b0437" + }, + { + "authorized_access_point": "Korrektheit", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4240223-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042402239" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4240223-2" + } + ], + "identifier": "http://d-nb.info/gnd/4240223-2", + "closeMatch": [ + { + "authorized_access_point": "Honne\u0302tete\u0301", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134832060" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11979799" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119797999" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Verknu\u0308pfe mit Anwendungsgebiet" + ] + } + ], + "pid": "042402239", + "type": "bf:Topic", + "md5": "7b5f124c523dbcec475f20b65516c687" + }, + { + "authorized_access_point": "Produkthaftpflichtversicherung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4236352-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042363527" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4236352-4" + } + ], + "identifier": "http://d-nb.info/gnd/4236352-4", + "closeMatch": [ + { + "authorized_access_point": "Products liability insurance", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134126891" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85067017" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85067017" + } + ] + }, + { + "authorized_access_point": "Assurance de responsabilite\u0301 civile des produits", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134126891" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12039818" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12039818h" + } + ] + } + ], + "pid": "042363527", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Betriebshaftpflichtversicherung" + } + ], + "variant_access_point": [ + "Produkthaftungsversicherung", + "Produzentenhaftpflichtversicherung" + ], + "md5": "e6749f90cee7d1679bb2b991867cffe2" + }, + { + "authorized_access_point": "Sampling (Musik)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4236246-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042362466" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4236246-5" + } + ], + "identifier": "http://d-nb.info/gnd/4236246-5", + "closeMatch": [ + { + "authorized_access_point": "Sampling (Sound)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134372469" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh96010851" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh96010851" + } + ] + }, + { + "authorized_access_point": "Synthe\u0300se sonore", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134372469" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12572200" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12572200s" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Sampling bezeichnet eine musikalische Kopierpraxis, bei der eine digitale Kopie eines Klangs in einen neuen musikalischen Zusammenhang gestellt wird." + ] + } + ], + "pid": "042362466", + "type": "bf:Topic", + "variant_access_point": [ + "Sound sampling" + ], + "md5": "41d318bd44e3a949907296e5305ce9da" + }, + { + "authorized_access_point": "Wandel (Motiv)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4234988-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042349885" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4234988-6" + } + ], + "identifier": "http://d-nb.info/gnd/4234988-6", + "pid": "042349885", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "a860889eea40d662242697331c7e0105" + }, + { + "authorized_access_point": "Wandel", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4234987-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042349877" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4234987-4" + } + ], + "identifier": "http://d-nb.info/gnd/4234987-4", + "closeMatch": [ + { + "authorized_access_point": "Change", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133693466" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85022510" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85022510" + } + ] + }, + { + "authorized_access_point": "Changement (philosophie)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133693466" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13319201" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13319201c" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "In der Regel fu\u0308r historische Vorga\u0308nge verwendet", + "In Verknu\u0308pfung mit anderen Schlagwo\u0308rtern i.d.R. nicht permutierend" + ] + } + ], + "pid": "042349877", + "type": "bf:Topic", + "variant_access_point": [ + "Wandlung (Wandel)" + ], + "md5": "a149f4e1f00c8441d6f761acd50f8c89" + }, + { + "authorized_access_point": "Hochschulo\u0308konomie", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4231998-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042319986" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4231998-5" + } + ], + "identifier": "http://d-nb.info/gnd/4231998-5", + "closeMatch": [ + { + "authorized_access_point": "Enseignement supe\u0301rieur - Aspect e\u0301conomique", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133922295" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11931253" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11931253v" + } + ] + } + ], + "pid": "042319986", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bildungso\u0308konomie" + } + ], + "variant_access_point": [ + "Hochschule", + "Hochschulwesen", + "Hochschulo\u0308konomik" + ], + "md5": "96daab3a63b1289d03086c0abde59a16" + }, + { + "authorized_access_point": "Schadvo\u0308gel", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4231416-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04231416X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4231416-1" + } + ], + "identifier": "http://d-nb.info/gnd/4231416-1", + "closeMatch": [ + { + "authorized_access_point": "Bird pests", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133637655" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85014297" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85014297" + } + ] + }, + { + "authorized_access_point": "Oiseaux nuisibles", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133637655" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11944219" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11944219m" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "noxious birds", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1256254495" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "5243" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_5243" + } + ] + } + ], + "pid": "04231416X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Vo\u0308gel" + }, + { + "authorized_access_point": "Scha\u0308dling" + } + ], + "variant_access_point": [ + "Scha\u0308dliche Vo\u0308gel" + ], + "md5": "0cd157efdb4cab0b7c8ca91f879c20d4" + }, + { + "authorized_access_point": "Markenpiraterie", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4229411-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042294118" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4229411-3" + } + ], + "identifier": "http://d-nb.info/gnd/4229411-3", + "exactMatch": [ + { + "authorized_access_point": "Produktpiraterie", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1027738478" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10080065" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10080065" + } + ] + } + ], + "pid": "042294118", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Markenverletzung" + } + ], + "related": [ + { + "authorized_access_point": "Produktpiraterie" + } + ], + "variant_access_point": [ + "Markenfa\u0308lschung", + "Trademark piracy", + "Trademark counterfeiting", + "Piraterie de marque" + ], + "md5": "45dcdb0027543de2d5ed1342950b5442" + }, + { + "authorized_access_point": "Pra\u0308disposition", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4225917-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042259177" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4225917-4" + } + ], + "identifier": "http://d-nb.info/gnd/4225917-4", + "closeMatch": [ + { + "authorized_access_point": "Disease susceptibility", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134614748" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85037625" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85037625" + } + ] + }, + { + "authorized_access_point": "Pre\u0301disposition (me\u0301decine)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134614748" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12255741" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12255741j" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Disease Susceptibility", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1241636885" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D004198" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D004198" + } + ] + } + ], + "pid": "042259177", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Disposition (Medizin)" + } + ], + "md5": "64e84c9550025981477f531239f9c3b2" + }, + { + "authorized_access_point": "Purgiernuss", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4225023-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042250234" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4225023-7" + } + ], + "identifier": "http://d-nb.info/gnd/4225023-7", + "closeMatch": [ + { + "authorized_access_point": "Jatropha curcas", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134648898" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2017004395" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2017004395" + } + ] + }, + { + "authorized_access_point": "Jatropha curcas", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134648898" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF15542948" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb15542948h" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Jatropha curcas", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)125624919X" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "16254" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_16254" + } + ] + } + ], + "pid": "042250234", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Wolfsmilchgewa\u0308chse" + } + ], + "variant_access_point": [ + "Jatropha curcas" + ], + "md5": "a9de074bdaa6e0558637f9f95dac1226" + }, + { + "authorized_access_point": "Unternehmenserfolg", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4223768-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042237688" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4223768-3" + } + ], + "identifier": "http://d-nb.info/gnd/4223768-3", + "closeMatch": [ + { + "authorized_access_point": "Success in business", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134694016" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85129589" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85129589" + } + ] + }, + { + "authorized_access_point": "Succe\u0300s dans les affaires", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134694016" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12004278" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12004278w" + } + ] + } + ], + "pid": "042237688", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Erfolg" + } + ], + "related": [ + { + "authorized_access_point": "Unternehmensergebnis" + } + ], + "variant_access_point": [ + "Unternehmen" + ], + "md5": "361a64fdedf22bb9ef20dd9529e0a209" + }, + { + "authorized_access_point": "Posthistoire", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4222123-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042221234" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4222123-7" + } + ], + "identifier": "http://d-nb.info/gnd/4222123-7", + "note": [ + { + "noteType": "general", + "label": [ + "Zeitalter, das den histor. Prozess abschlie\u00dft, meist ein \"drittes\" Zeitalter" + ] + } + ], + "pid": "042221234", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Geschichtsphilosophie" + } + ], + "variant_access_point": [ + "Letztphase", + "Ende der Geschichte", + "The ends of history", + "Posthistorisches Zeitalter", + "Nachgeschichte", + "Geschichte" + ], + "md5": "c25e2d85ac22bdfc9b973ccfb91713ff" + }, + { + "authorized_access_point": "Beamter auf Probe", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4220840-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042208408" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4220840-3" + } + ], + "identifier": "http://d-nb.info/gnd/4220840-3", + "pid": "042208408", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Beamter" + } + ], + "variant_access_point": [ + "Probezeitbeamter" + ], + "md5": "a9f71d732677fc1dd0d7715945110d56" + }, + { + "authorized_access_point": "Privatschulfreiheit", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4220385-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042203856" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4220385-5" + } + ], + "identifier": "http://d-nb.info/gnd/4220385-5", + "note": [ + { + "noteType": "general", + "label": [ + "Art. 7,4-6 GG" + ] + } + ], + "pid": "042203856", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schulrecht" + } + ], + "md5": "45b084f4539d4812a68d0b8769301127" + }, + { + "authorized_access_point": "Ethnosoziologie", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4220302-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042203023" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4220302-8" + } + ], + "identifier": "http://d-nb.info/gnd/4220302-8", + "closeMatch": [ + { + "authorized_access_point": "Ethnosociology", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)133267612X" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2013001662" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2013001662" + } + ] + }, + { + "authorized_access_point": "Ethnosociologie", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)133267612X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17972469" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17972469p" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Ethnologie", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)971397511" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10042835" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10042835" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Von R. Thurnwald begru\u0308ndete, sozialwissenschaftlich ausgerichtete Forschungsrichtung in der Ethnologie, deren Grundlage wie in der britischen Social Anthropology der Funktionalismus ist" + ] + } + ], + "pid": "042203023", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Soziologie" + } + ], + "related": [ + { + "authorized_access_point": "Sozialanthropologie" + }, + { + "authorized_access_point": "Kulturanthropologie" + }, + { + "authorized_access_point": "Ethnosoziologe" + }, + { + "authorized_access_point": "Ethnosoziologin" + }, + { + "authorized_access_point": "Sozialethnologie" + } + ], + "md5": "028f5e48da487f348cdf09bda88b79fc" + }, + { + "authorized_access_point": "Pflichtexemplar", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4219581-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042195810" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4219581-0" + } + ], + "identifier": "http://d-nb.info/gnd/4219581-0", + "closeMatch": [ + { + "authorized_access_point": "Legal deposit of books, etc.", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134054874" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85075741" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85075741" + } + ] + }, + { + "authorized_access_point": "De\u0301po\u0302t le\u0301gal", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134054874" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11978766" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119787663" + } + ] + } + ], + "pid": "042195810", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Freistu\u0308ck" + } + ], + "related": [ + { + "authorized_access_point": "Pflichtexemplarrecht" + }, + { + "authorized_access_point": "Zensurexemplar" + } + ], + "variant_access_point": [ + "Pflichtstu\u0308ck" + ], + "md5": "56b50d615702523804aae2b39e87de20" + }, + { + "authorized_access_point": "Feldflasche", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4219395-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042193958" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4219395-3" + } + ], + "identifier": "http://d-nb.info/gnd/4219395-3", + "closeMatch": [ + { + "authorized_access_point": "Canteens (Beverage containers)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333328788" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh93006012" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh93006012" + } + ] + }, + { + "authorized_access_point": "Gourdes (re\u0301cipients)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333328788" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13743057" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb137430579" + } + ] + } + ], + "pid": "042193958", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Flasche" + } + ], + "md5": "8a9e25e145ce39e53d843559c0eade9d" + }, + { + "authorized_access_point": "Anzeigengestaltung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4219007-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04219007X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4219007-1" + } + ], + "identifier": "http://d-nb.info/gnd/4219007-1", + "pid": "04219007X", + "type": "bf:Topic", + "md5": "4aa2d57408b2789ae5d91901ebd62e48" + }, + { + "authorized_access_point": "Adjuvante Therapie", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4218974-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042189748" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4218974-3" + } + ], + "identifier": "http://d-nb.info/gnd/4218974-3", + "closeMatch": [ + { + "authorized_access_point": "Adjuvant treatment", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133731988" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh99005037" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh99005037" + } + ] + }, + { + "authorized_access_point": "Traitement adjuvant", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133731988" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12185143" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb121851431" + } + ] + } + ], + "pid": "042189748", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Therapie" + } + ], + "variant_access_point": [ + "Supportive Therapie", + "Unterstu\u0308tzende Therapie", + "Begleitende Therapie", + "Begleittherapie", + "Adjuvanstherapie", + "Supportivtherapie" + ], + "md5": "287763a12620705eb72b86088d748ed4" + }, + { + "authorized_access_point": "Erfinderin", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4218749-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042187494" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4218749-7" + } + ], + "identifier": "http://d-nb.info/gnd/4218749-7", + "closeMatch": [ + { + "authorized_access_point": "Women inventors", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331759846" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85147449" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85147449" + } + ] + }, + { + "authorized_access_point": "Inventrices", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331759846" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16742339" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16742339c" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Als Homonymenzusatz bei Personenschlagwo\u0308rtern zugelassen" + ] + } + ], + "pid": "042187494", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Erfinder" + } + ], + "md5": "163053b2786e5e3b284ed61cdb2071d1" + }, + { + "authorized_access_point": "Thermoumformer", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4218080-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042180805" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4218080-6" + } + ], + "identifier": "http://d-nb.info/gnd/4218080-6", + "closeMatch": [ + { + "authorized_access_point": "Thermocouples", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134708769" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85134779" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85134779" + } + ] + }, + { + "authorized_access_point": "Thermocouples", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134708769" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11979701" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11979701r" + } + ] + } + ], + "pid": "042180805", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Messumformer" + } + ], + "variant_access_point": [ + "Thermokonverter" + ], + "md5": "eff9b875294071e9a61737c0dde7e58a" + }, + { + "authorized_access_point": "Mixe", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4215945-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042159458" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4215945-3" + } + ], + "identifier": "http://d-nb.info/gnd/4215945-3", + "note": [ + { + "noteType": "general", + "label": [ + "4 nahe verwandte indigene Gruppen in d. Bundesstaaten Oaxaca u. Veracruz" + ] + } + ], + "pid": "042159458", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Indianer" + } + ], + "variant_access_point": [ + "Mije", + "Ayo\u0308o\u0308k", + "Ayook", + "Ayuc", + "Ayuujk", + "Ayuuk", + "Guichiovian", + "Tapijualapane-Mixe" + ], + "md5": "d678bbd1e1b5378ee9de69536d2db029" + }, + { + "authorized_access_point": "Glasumwandlung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4215431-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042154316" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4215431-5" + } + ], + "identifier": "http://d-nb.info/gnd/4215431-5", + "pid": "042154316", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Phasenumwandlung" + } + ], + "variant_access_point": [ + "Glasu\u0308bergang", + "Erweichung (Glasumwandlung)", + "Glasbildung", + "Glasprozess" + ], + "md5": "ae5f579e5d7e1553eb1a53343e348d39" + }, + { + "authorized_access_point": "Management Buyout", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4215208-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042152089" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4215208-2" + } + ], + "identifier": "http://d-nb.info/gnd/4215208-2", + "closeMatch": [ + { + "authorized_access_point": "Management buyouts", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134171064" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85080351" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85080351" + } + ] + }, + { + "authorized_access_point": "Reprise d'entreprise par les salarie\u0301s", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134171064" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12113560" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12113560s" + } + ] + }, + { + "authorized_access_point": "Compra de empresas por sus gestores", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254458883" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX4911373" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX4911373" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Als Management Buyout bezeichnet man die Unternehmensvera\u0308u\u00dferung an Gescha\u0308ftsfu\u0308hrer oder Vorstandsmitglieder des betreffenden Unternehmens." + ] + } + ], + "pid": "042152089", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Unternehmenskauf" + } + ], + "variant_access_point": [ + "Management Buy Out", + "MBO", + "MBI", + "Management Buyin", + "Management Buy In" + ], + "md5": "a73387419db97efed924a0283693a2d6" + }, + { + "authorized_access_point": "Schwarzer Klammeraffe", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4215087-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042150876" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4215087-5" + } + ], + "identifier": "http://d-nb.info/gnd/4215087-5", + "closeMatch": [ + { + "authorized_access_point": "Ate\u0300le noir", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333261160" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16716962" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16716962w" + } + ] + } + ], + "pid": "042150876", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kapuzineraffenartige" + } + ], + "variant_access_point": [ + "Ateles paniscus", + "Koata" + ], + "md5": "83e670d670b2adc4ab86c3e7dcbb624c" + }, + { + "authorized_access_point": "Jugendfilm", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4214004-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042140048" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4214004-3" + } + ], + "identifier": "http://d-nb.info/gnd/4214004-3", + "closeMatch": [ + { + "authorized_access_point": "Films pour la jeunesse", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133626386" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11936861" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11936861b" + } + ] + }, + { + "authorized_access_point": "Film per ragazzi", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)125434165X" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "15718" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/15718" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Jugendfilm", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970561717" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10043579" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10043579" + } + ] + } + ], + "pid": "042140048", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Film" + } + ], + "related": [ + { + "authorized_access_point": "Kinderfilm" + } + ], + "variant_access_point": [ + "Jugendfilme" + ], + "md5": "a376acb6ba909975d4012533aaa75250" + }, + { + "authorized_access_point": "Sensor-Array", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4213726-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042137268" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4213726-3" + } + ], + "identifier": "http://d-nb.info/gnd/4213726-3", + "pid": "042137268", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Array" + } + ], + "variant_access_point": [ + "Sensoranordnung", + "Matrixsensor", + "Sensormatrix" + ], + "md5": "1caa39bd9a2778ed1b17a16c502ba4b4" + }, + { + "authorized_access_point": "Saisondimorphismus", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4210816-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042108160" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4210816-0" + } + ], + "identifier": "http://d-nb.info/gnd/4210816-0", + "pid": "042108160", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Dimorphismus" + } + ], + "md5": "7d517a0dbe4263648c2f6f1482ff04c2" + }, + { + "authorized_access_point": "Dimorphismus", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4210815-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042108152" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4210815-9" + } + ], + "identifier": "http://d-nb.info/gnd/4210815-9", + "closeMatch": [ + { + "authorized_access_point": "Dimorphism (Plants)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133881483" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85038052" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85038052" + } + ] + }, + { + "authorized_access_point": "Dimorphisme chez les plantes", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133881483" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13617434" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13617434x" + } + ] + } + ], + "pid": "042108152", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Polymorphismus" + } + ], + "md5": "0d5cc94f70cc596777728d52b9cccc0b" + }, + { + "authorized_access_point": "Bla\u0308tterteig", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4210406-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042104068" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4210406-3" + } + ], + "identifier": "http://d-nb.info/gnd/4210406-3", + "closeMatch": [ + { + "authorized_access_point": "Cuisine (pa\u0302te feuillete\u0301e)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134799179" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF15118262" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb151182628" + } + ] + }, + { + "authorized_access_point": "Pa\u0302te feuillete\u0301e", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134799160" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF15118244" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb15118244b" + } + ] + } + ], + "pid": "042104068", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Teig" + } + ], + "md5": "030b792740ce6b83faa61cbbdf62234e" + }, + { + "authorized_access_point": "Ozonbelastung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4209838-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042098386" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4209838-5" + } + ], + "identifier": "http://d-nb.info/gnd/4209838-5", + "closeMatch": [ + { + "authorized_access_point": "Effect of ozone on", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134310439" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh00002519" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh00002519" + } + ] + }, + { + "authorized_access_point": "Effets de l'ozone", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134310439" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12397591" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb123975911" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Ozonbelastung", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1065910479" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "19482-3" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/19482-3" + } + ] + } + ], + "pid": "042098386", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schadstoffbelastung" + } + ], + "variant_access_point": [ + "Ozon" + ], + "md5": "8b51c80c37fcbbf30ef0c690e641ca78" + }, + { + "authorized_access_point": "Drechslerarbeit", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4209217-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042092175" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4209217-6" + } + ], + "identifier": "http://d-nb.info/gnd/4209217-6", + "closeMatch": [ + { + "authorized_access_point": "Turning (Lathe work)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134452365" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85138931" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85138931" + } + ] + }, + { + "authorized_access_point": "Tournage sur bois", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134452365" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF14597781" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb14597781w" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Benutzt fu\u0308r d. Produkt" + ] + } + ], + "pid": "042092175", + "type": "bf:Topic", + "md5": "22faa4314d7f1beea522eab972ff33b4" + }, + { + "authorized_access_point": "Mehrschichtleiterplatte", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4208628-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042086280" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4208628-0" + } + ], + "identifier": "http://d-nb.info/gnd/4208628-0", + "closeMatch": [ + { + "authorized_access_point": "Printed circuits", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134727879" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85106738" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85106738" + } + ] + }, + { + "authorized_access_point": "Circuits imprime\u0301s", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134727879" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11936916" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11936916s" + } + ] + } + ], + "pid": "042086280", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gedruckte Schaltung" + } + ], + "variant_access_point": [ + "Mehrlagenleiterplatte", + "Multilayer (Mehrschichtleiterplatte)", + "Vielschichtleiterplatte" + ], + "md5": "e8037bbca872a15cbdd5874498ef84c0" + }, + { + "authorized_access_point": "Traktion (Medizin)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4208394-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04208394X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4208394-1" + } + ], + "identifier": "http://d-nb.info/gnd/4208394-1", + "closeMatch": [ + { + "authorized_access_point": "Traction (orthope\u0301die)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134234295" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12255417" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12255417v" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Traction", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1241625662" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D014143" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D014143" + } + ] + } + ], + "pid": "04208394X", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Extension (Medizin)" + } + ], + "variant_access_point": [ + "Zug (Medizin)" + ], + "md5": "ef50a50eed8ed060ec128cd826df2844" + }, + { + "authorized_access_point": "Positioniergenauigkeit", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4206610-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042066107" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4206610-4" + } + ], + "identifier": "http://d-nb.info/gnd/4206610-4", + "pid": "042066107", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Genauigkeit" + } + ], + "md5": "d23b9a312ff26fdabb2febabf631f857" + }, + { + "authorized_access_point": "Seilta\u0308nzer", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4205634-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042056349" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4205634-2" + } + ], + "identifier": "http://d-nb.info/gnd/4205634-2", + "exactMatch": [ + { + "authorized_access_point": "Aerialists", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333938861" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85001286" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85001286" + } + ] + }, + { + "authorized_access_point": "Funambules", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333938861" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12651407" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb126514078" + } + ] + } + ], + "pid": "042056349", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Artist" + } + ], + "related": [ + { + "authorized_access_point": "Seiltanz" + }, + { + "authorized_access_point": "Seilta\u0308nzerin" + } + ], + "variant_access_point": [ + "Hochseilartist" + ], + "md5": "9c17e78ddaf2ce8df57ef9a96ac01fd4" + }, + { + "authorized_access_point": "Markierung (Chemie)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4201779-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042017793" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4201779-8" + } + ], + "identifier": "http://d-nb.info/gnd/4201779-8", + "pid": "042017793", + "type": "bf:Topic", + "md5": "4e09fa54be4229e0f146cf32151cc9b8" + }, + { + "authorized_access_point": "Wachdienst", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4201724-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042017246" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4201724-5" + } + ], + "identifier": "http://d-nb.info/gnd/4201724-5", + "note": [ + { + "noteType": "general", + "label": [ + "Verknu\u0308pfe mit Anwendungsgebiet; z.B. Seeschiff" + ] + } + ], + "pid": "042017246", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bewachung" + } + ], + "related": [ + { + "authorized_access_point": "Wa\u0308chter" + } + ], + "variant_access_point": [ + "Wache" + ], + "md5": "159d4aaa18210fb6d5bf3462af360520" + }, + { + "authorized_access_point": "Zeichner", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4200345-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042003458" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4200345-3" + } + ], + "identifier": "http://d-nb.info/gnd/4200345-3", + "closeMatch": [ + { + "authorized_access_point": "Dessinateurs", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133636462" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11944016" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119440161" + } + ] + } + ], + "pid": "042003458", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Grafiker" + } + ], + "related": [ + { + "authorized_access_point": "Zeichnerin" + } + ], + "md5": "7178723eb40c91a82ac23b8e35d98ac0" + }, + { + "authorized_access_point": "Verdeckter Ermittler", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4199572-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041995724" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4199572-7" + } + ], + "identifier": "http://d-nb.info/gnd/4199572-7", + "pid": "041995724", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Polizeibeamter" + } + ], + "related": [ + { + "authorized_access_point": "Verdeckte Ermittlerin" + }, + { + "authorized_access_point": "V-Mann" + }, + { + "authorized_access_point": "Verdeckte Ermittlung" + } + ], + "variant_access_point": [ + "Under-Cover-Agent", + "Undercover investigator" + ], + "md5": "aa14ce82d8443e9d4536ec52fa22eced" + }, + { + "authorized_access_point": "Kollisionsschutz", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4199255-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041992555" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4199255-6" + } + ], + "identifier": "http://d-nb.info/gnd/4199255-6", + "closeMatch": [ + { + "authorized_access_point": "Re\u0301sistance aux collisions", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134320841" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12426400" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb124264003" + } + ] + } + ], + "pid": "041992555", + "type": "bf:Topic", + "variant_access_point": [ + "Kollisionsvermeidung (Technik)" + ], + "md5": "5e1061c5d5a142540e396bbcbf9625c2" + }, + { + "authorized_access_point": "Bourbon (Getra\u0308nk)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4198748-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041987489" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4198748-2" + } + ], + "identifier": "http://d-nb.info/gnd/4198748-2", + "note": [ + { + "noteType": "general", + "label": [ + "Produktbezeichnung" + ] + } + ], + "pid": "041987489", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Whisky" + } + ], + "md5": "cb9e26ddae06869a2833d1de68b68616" + }, + { + "authorized_access_point": "Synbranchus", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4198180-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041981804" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4198180-7" + } + ], + "identifier": "http://d-nb.info/gnd/4198180-7", + "closeMatch": [ + { + "authorized_access_point": "Synbranchus", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333488068" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85131603" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85131603" + } + ] + }, + { + "authorized_access_point": "Synbranchus", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333488068" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17758460" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb177584608" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Gattung d. Familie Kiemenschlitzaale (Synbranchidae)" + ] + } + ], + "pid": "041981804", + "type": "bf:Topic", + "md5": "6ae139727e7669a2741e73ec95f55c45" + }, + { + "authorized_access_point": "Dieselkraftstoff", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4197700-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041977009" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4197700-2" + } + ], + "identifier": "http://d-nb.info/gnd/4197700-2", + "closeMatch": [ + { + "authorized_access_point": "Diesel fuels", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133693911" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85037815" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85037815" + } + ] + }, + { + "authorized_access_point": "Carburants diesel", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133693911" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11981884" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11981884t" + } + ] + }, + { + "authorized_access_point": "Gasolio", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254376836" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "43453" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/43453" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Dieselkraftstoff", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)966722108" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "14214-4" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/14214-4" + } + ] + } + ], + "pid": "041977009", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kraftstoff" + } + ], + "variant_access_point": [ + "Dieselo\u0308l" + ], + "md5": "2542ba4b76b0b6aca00d63de526e391e" + }, + { + "authorized_access_point": "Vokalisierung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4197527-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041975278" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4197527-3" + } + ], + "identifier": "http://d-nb.info/gnd/4197527-3", + "closeMatch": [ + { + "authorized_access_point": "Vocalisation (phone\u0301tique)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134045018" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11977041" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11977041k" + } + ] + } + ], + "pid": "041975278", + "type": "bf:Topic", + "variant_access_point": [ + "Vokalisation" + ], + "md5": "fd311fc265f65f9bf9c553dc3d778d97" + }, + { + "authorized_access_point": "Gibbons (Familie)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4195437-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041954378" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4195437-3" + } + ], + "identifier": "http://d-nb.info/gnd/4195437-3", + "closeMatch": [ + { + "authorized_access_point": "Hylobatide\u0301s", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133681328" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11976149" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11976149c" + } + ] + } + ], + "pid": "041954378", + "type": "bf:Topic", + "variant_access_point": [ + "Hylobatidae", + "Langarmaffen" + ], + "md5": "313d072c5fb2e707bc89b153353c3ef1" + }, + { + "authorized_access_point": "Fahrgastschifffahrt", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4195432-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041954327" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4195432-4" + } + ], + "identifier": "http://d-nb.info/gnd/4195432-4", + "exactMatch": [ + { + "authorized_access_point": "Passagierschifffahrt", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)966898923" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "18589-4" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/18589-4" + } + ] + } + ], + "pid": "041954327", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schifffahrt" + }, + { + "authorized_access_point": "Personenverkehr" + } + ], + "variant_access_point": [ + "Passagierschifffahrt", + "Personenschifffahrt", + "Passagierschifffahrt", + "Personenschifffahrt" + ], + "md5": "d85e251894749562a7ab0e58599dd7fc" + }, + { + "authorized_access_point": "Schadstoffverringerung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4194323-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041943236" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4194323-5" + } + ], + "identifier": "http://d-nb.info/gnd/4194323-5", + "pid": "041943236", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Emissionsverringerung" + } + ], + "variant_access_point": [ + "Schadstoff", + "Schadstoffminderung" + ], + "md5": "e8633638cd5bbff5c58601c318f05ed0" + }, + { + "authorized_access_point": "Schweinswale (Familie)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4192854-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041928547" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4192854-4" + } + ], + "identifier": "http://d-nb.info/gnd/4192854-4", + "closeMatch": [ + { + "authorized_access_point": "Porpoises", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134195974" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85105031" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85105031" + } + ] + }, + { + "authorized_access_point": "Marsouins", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134195974" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12163944" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12163944p" + } + ] + } + ], + "pid": "041928547", + "type": "bf:Topic", + "variant_access_point": [ + "Phocoenidae", + "Phocaenidae" + ], + "md5": "95d359d5bd5bfbb10829e85789a503d5" + }, + { + "authorized_access_point": "Wassermannzeitalter", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4192832-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041928326" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4192832-5" + } + ], + "identifier": "http://d-nb.info/gnd/4192832-5", + "pid": "041928326", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Neues Zeitalter" + }, + { + "authorized_access_point": "New Age" + } + ], + "variant_access_point": [ + "Aquariuszeitalter", + "Wassermann-Zeitalter", + "Age of aquarius" + ], + "md5": "f2e4f5f990af0199fdfe529623350937" + }, + { + "authorized_access_point": "Tensorrechnung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4192487-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041924878" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4192487-3" + } + ], + "identifier": "http://d-nb.info/gnd/4192487-3", + "closeMatch": [ + { + "authorized_access_point": "Calculus of tensors", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113389495X" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85018808" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85018808" + } + ] + }, + { + "authorized_access_point": "Calcul tensoriel", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113389495X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11931685" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11931685k" + } + ] + }, + { + "authorized_access_point": "Calcolo tensoriale", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254362584" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "31130" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/31130" + } + ] + }, + { + "authorized_access_point": "Ca\u0301lculo tensorial", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254494138" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX525919" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX525919" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Nicht synonym mit Multilineare Algebra" + ] + } + ], + "pid": "041924878", + "type": "bf:Topic", + "variant_access_point": [ + "Tensorkalku\u0308l" + ], + "md5": "24179dbb4d5b015e9f917ba3bb405459" + }, + { + "authorized_access_point": "RISC", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4191875-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041918754" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4191875-7" + } + ], + "identifier": "http://d-nb.info/gnd/4191875-7", + "closeMatch": [ + { + "authorized_access_point": "Reduced instruction set computers", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133728634" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh88006799" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh88006799" + } + ] + }, + { + "authorized_access_point": "RISC microprocessors", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134337671" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh90005948" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh90005948" + } + ] + }, + { + "authorized_access_point": "Ordinateurs a\u0300 jeu d'instructions re\u0301duit", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133728634" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12151658" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12151658v" + } + ] + }, + { + "authorized_access_point": "RISC (microprocesseurs)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134337671" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12473275" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12473275r" + } + ] + } + ], + "pid": "041918754", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Computerarchitektur" + } + ], + "variant_access_point": [ + "Reduced instruction set computer", + "Rechner mit reduziertem Befehlsvorrat" + ], + "md5": "3d41edb813119c99512a73a753b0409a" + }, + { + "authorized_access_point": "Zwiefacher", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4191327-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041913272" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4191327-9" + } + ], + "identifier": "http://d-nb.info/gnd/4191327-9", + "pid": "041913272", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Volkstanz" + } + ], + "md5": "bb5e10982ae002a4e3bf0cfb626e6a2d" + }, + { + "authorized_access_point": "Zwanglauf", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4191184-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041911849" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4191184-2" + } + ], + "identifier": "http://d-nb.info/gnd/4191184-2", + "pid": "041911849", + "type": "bf:Topic", + "variant_access_point": [ + "Zwangla\u0308ufigkeit", + "Zwangsla\u0308ufige Bewegung" + ], + "md5": "bdbd6d42ae9ab2ae421c34b90ba809a8" + }, + { + "authorized_access_point": "Zusammensetzung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4191159-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041911598" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4191159-3" + } + ], + "identifier": "http://d-nb.info/gnd/4191159-3", + "closeMatch": [ + { + "authorized_access_point": "Composition", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134038208" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh99004944" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh99004944" + } + ] + }, + { + "authorized_access_point": "Composition", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134038208" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11975822" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119758221" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "in der Regel als USW verwendet" + ] + } + ], + "pid": "041911598", + "type": "bf:Topic", + "md5": "597ea3a0fb0dbe9a6f3e661db3738ab4" + }, + { + "authorized_access_point": "Zugvo\u0308gel", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4191119-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041911199" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4191119-2" + } + ], + "identifier": "http://d-nb.info/gnd/4191119-2", + "closeMatch": [ + { + "authorized_access_point": "Migratory birds", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134219709" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2009008921" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2009008921" + } + ] + }, + { + "authorized_access_point": "Oiseaux migrateurs", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134219709" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12225354" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb122253545" + } + ] + }, + { + "authorized_access_point": "Uccelli migratori", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1312527749" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "38120" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/38120" + } + ] + } + ], + "pid": "041911199", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Vo\u0308gel" + } + ], + "related": [ + { + "authorized_access_point": "Vogelzug" + } + ], + "variant_access_point": [ + "Zugvogel" + ], + "md5": "41f2390a46ed0dc41d35b7e23102108f" + }, + { + "authorized_access_point": "Zu\u0308ndung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4191084-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041910842" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4191084-9" + } + ], + "identifier": "http://d-nb.info/gnd/4191084-9", + "closeMatch": [ + { + "authorized_access_point": "Allumage", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134040016" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11976165" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11976165m" + } + ] + } + ], + "pid": "041910842", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Zu\u0308nder" + } + ], + "md5": "fdc46c1f2b033ab22042db0101c7f4c2" + }, + { + "authorized_access_point": "Zentralbau", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4190707-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041907078" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4190707-3" + } + ], + "identifier": "http://d-nb.info/gnd/4190707-3", + "closeMatch": [ + { + "authorized_access_point": "Constructions a\u0300 plan centre\u0301", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134387849" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13171768" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb131717680" + } + ] + } + ], + "pid": "041907078", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Architektur" + } + ], + "md5": "6e00c1b4a61362850ca46a05a895119a" + }, + { + "authorized_access_point": "Wu\u0308nschelrutenga\u0308nger", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4190295-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041902955" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4190295-6" + } + ], + "identifier": "http://d-nb.info/gnd/4190295-6", + "closeMatch": [ + { + "authorized_access_point": "Dowsers", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)133175478X" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85039245" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85039245" + } + ] + }, + { + "authorized_access_point": "Sourciers", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)133175478X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13571198" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13571198z" + } + ] + } + ], + "pid": "041902955", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Wu\u0308nschelrute" + } + ], + "variant_access_point": [ + "Rutenga\u0308nger", + "Wu\u0308nschelrute" + ], + "md5": "70d994a1d515a12e8f3dc5de6321bef2" + }, + { + "authorized_access_point": "Wohnungsmiete", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4190186-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04190186X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4190186-1" + } + ], + "identifier": "http://d-nb.info/gnd/4190186-1", + "pid": "04190186X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Miete" + } + ], + "variant_access_point": [ + "Wohnung", + "Wohnraummiete" + ], + "md5": "35426dbe8a7b07caf29710f6a75631b6" + }, + { + "authorized_access_point": "Wirtschaftsverwaltung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4190080-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041900804" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4190080-7" + } + ], + "identifier": "http://d-nb.info/gnd/4190080-7", + "pid": "041900804", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Verwaltung" + } + ], + "md5": "585c9315b1163d46ffa158c8ca61ec81" + }, + { + "authorized_access_point": "Wintertourismus", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4189984-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041899849" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4189984-2" + } + ], + "identifier": "http://d-nb.info/gnd/4189984-2", + "closeMatch": [ + { + "authorized_access_point": "Tourisme hivernal", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332366708" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18097333" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb18097333m" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "W. umfasst den Begriff Wintersport (im Sinne des Breitensports) u. ko\u0308nnte als Wintersport im weiteren Sinne bezeichnet werden" + ] + } + ], + "pid": "041899849", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Sporttourismus" + } + ], + "variant_access_point": [ + "Wintersport" + ], + "md5": "6bc989498f6622772f96397e398767a7" + }, + { + "authorized_access_point": "Wiedereintritt", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4189827-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041898273" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4189827-8" + } + ], + "identifier": "http://d-nb.info/gnd/4189827-8", + "pid": "041898273", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Eintritt (Raumfahrt)" + } + ], + "variant_access_point": [ + "Atmospha\u0308renwiedereintritt", + "Reentry" + ], + "md5": "b1d238c3d6494298f84c384fab24fd1c" + }, + { + "authorized_access_point": "Werkverzeichnis", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4189680-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041896807" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4189680-4" + } + ], + "identifier": "http://d-nb.info/gnd/4189680-4", + "closeMatch": [ + { + "authorized_access_point": "Catalogues raisonne\u0301s", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134151365" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh99001388" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh99001388" + } + ] + }, + { + "authorized_access_point": "Catalogues raisonne\u0301s", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134151365" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12078007" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb120780077" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Vollsta\u0308ndiges Verzeichnis des Werks (des Lebenswerks oder eines Teils) von Ku\u0308nstlern (RDA AH-007).", + "Verwendet fu\u0308r bildende und darstellende Ku\u0308nstler (Interpreten, Regisseure, Schauspieler) sowie fu\u0308r Komponisten und Architekten bzw. Architekturbu\u0308ros. Sowohl fu\u0308r einzelne Personen wie fu\u0308r Personengruppen. Bei anderen Werkverzeichnissen verwende Bibliografie (RDA AH-007)." + ] + } + ], + "pid": "041896807", + "type": "bf:Topic", + "variant_access_point": [ + "Werkkatalog", + "Oeuvrekatalog", + "Oeuvre-Verzeichnis", + "Thematischer Katalog (Formschlagwort)", + "Thematisches Verzeichnis (Formschlagwort)" + ], + "md5": "647f19d5b94dda99982221090e85962e" + }, + { + "authorized_access_point": "Bassin", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4189177-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041891775" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4189177-6" + } + ], + "identifier": "http://d-nb.info/gnd/4189177-6", + "closeMatch": [ + { + "authorized_access_point": "Bassins de jardins", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133864058" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13535580" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb135355804" + } + ] + } + ], + "pid": "041891775", + "type": "bf:Topic", + "variant_access_point": [ + "Wasserbecken" + ], + "md5": "9d7aded29391f5a8dd07b92e6d9f8596" + }, + { + "authorized_access_point": "Wandgrabmal", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4189078-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041890787" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4189078-4" + } + ], + "identifier": "http://d-nb.info/gnd/4189078-4", + "pid": "041890787", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Grabmal" + } + ], + "related": [ + { + "authorized_access_point": "Epitaph" + } + ], + "md5": "4728fdd7a2cb36155f69c0a575d0d5f2" + }, + { + "authorized_access_point": "Waldschaden", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4188995-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041889959" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4188995-2" + } + ], + "identifier": "http://d-nb.info/gnd/4188995-2", + "exactMatch": [ + { + "authorized_access_point": "Waldschaden", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)967030552" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "15779-0" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/15779-0" + } + ] + } + ], + "pid": "041889959", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Waldkrankheit" + } + ], + "variant_access_point": [ + "Waldzersto\u0308rung (Waldschaden)", + "Baumschaden (Waldschaden)", + "Forstschaden", + "Wald", + "Waldscha\u0308den", + "Forstscha\u0308den" + ], + "md5": "e5b4695b4e1bb124f8ad2d13fbe4a1cc" + }, + { + "authorized_access_point": "Wacholderdrossel", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4188791-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041887913" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4188791-8" + } + ], + "identifier": "http://d-nb.info/gnd/4188791-8", + "closeMatch": [ + { + "authorized_access_point": "Fieldfare", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133776590" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2009010378" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2009010378" + } + ] + }, + { + "authorized_access_point": "Grive litorne", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133776590" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12338097" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12338097q" + } + ] + } + ], + "pid": "041887913", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Drosseln" + } + ], + "variant_access_point": [ + "Turdus pilaris", + "Krammetsvogel", + "Ziemer" + ], + "md5": "e72d3053cf92fcb96e586502d153d317" + }, + { + "authorized_access_point": "Vulvakrebs", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4188778-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041887786" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4188778-5" + } + ], + "identifier": "http://d-nb.info/gnd/4188778-5", + "exactMatch": [ + { + "authorized_access_point": "Vulva - Cancer", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134590385" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2010010521" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2010010521" + } + ] + }, + { + "authorized_access_point": "Vulvar Neoplasms", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1241627908" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D014846" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D014846" + } + ] + } + ], + "pid": "041887786", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Genitalkrebs" + }, + { + "authorized_access_point": "Vulvakrankheit" + } + ], + "variant_access_point": [ + "Carcinoma vulvae", + "Vulvakarzinom" + ], + "md5": "b8beda5af583b52c986c9c63db3a786e" + }, + { + "authorized_access_point": "Vizekanzler", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4188461-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041884612" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4188461-9" + } + ], + "identifier": "http://d-nb.info/gnd/4188461-9", + "pid": "041884612", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Vizekanzlerin" + } + ], + "md5": "df75e2d0099b1e9ef506dce76efcd979" + }, + { + "authorized_access_point": "Videoaufzeichnung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4188222-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041882229" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4188222-2" + } + ], + "identifier": "http://d-nb.info/gnd/4188222-2", + "exactMatch": [ + { + "authorized_access_point": "Video recording", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1321561245" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh92003035" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh92003035" + } + ] + } + ], + "closeMatch": [ + { + "authorized_access_point": "Vide\u0301o", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1321561245" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11933779" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11933779d" + } + ] + } + ], + "pid": "041882229", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bildaufzeichnung" + } + ], + "related": [ + { + "authorized_access_point": "Videokassette" + }, + { + "authorized_access_point": "Bildplatte" + } + ], + "variant_access_point": [ + "Audiovisuelle Aufzeichnung", + "Audio-visuelle Aufzeichnung", + "Videoaufnahme" + ], + "md5": "c44fde19f7fa54022641b4d80b2a8107" + }, + { + "authorized_access_point": "Verzicht", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4188174-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041881745" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4188174-6" + } + ], + "identifier": "http://d-nb.info/gnd/4188174-6", + "exactMatch": [ + { + "authorized_access_point": "Verzicht", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970602014" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10037167" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10037167" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "auch ausserhalb des Rechts als Allgemeinbegriff verwendet" + ] + } + ], + "pid": "041881745", + "type": "bf:Topic", + "variant_access_point": [ + "Rechtsverzicht", + "Anspruchsverzicht" + ], + "md5": "523ec0fdb36c37867933fb9270bab722" + }, + { + "authorized_access_point": "Verkettung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4187851-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041878515" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4187851-6" + } + ], + "identifier": "http://d-nb.info/gnd/4187851-6", + "closeMatch": [ + { + "authorized_access_point": "Discours argumentatif", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134566506" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12468269" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12468269t" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Verknu\u0308pfe mit Anwendungsgebiet" + ] + } + ], + "pid": "041878515", + "type": "bf:Topic", + "variant_access_point": [ + "Verknu\u0308pfung" + ], + "md5": "48e73466c5cfd6ba2d71b53f7e93e070" + }, + { + "authorized_access_point": "Verfolgter", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4187693-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041876938" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4187693-3" + } + ], + "identifier": "http://d-nb.info/gnd/4187693-3", + "note": [ + { + "noteType": "general", + "label": [ + "SW Verfolgung wird bevorzugt benutzt" + ] + } + ], + "pid": "041876938", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Verfolgung" + }, + { + "authorized_access_point": "Weibliche Verfolgte" + } + ], + "md5": "339a948a1b9abb998a3b2df2e531b5c6" + }, + { + "authorized_access_point": "Ventilsteuerung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4187491-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041874919" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4187491-2" + } + ], + "identifier": "http://d-nb.info/gnd/4187491-2", + "pid": "041874919", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Schiebersteuerung" + } + ], + "variant_access_point": [ + "Ventiltrieb" + ], + "md5": "4aaf7ee1bcc0737333262ff68b0d3ac1" + }, + { + "authorized_access_point": "Vakuumpolarisation", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4187327-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041873270" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4187327-0" + } + ], + "identifier": "http://d-nb.info/gnd/4187327-0", + "closeMatch": [ + { + "authorized_access_point": "Vacuum polarization", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133836054" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85141738" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85141738" + } + ] + }, + { + "authorized_access_point": "Polarisation du vide", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133836054" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12573071" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb125730710" + } + ] + } + ], + "pid": "041873270", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Vakuumfluktuation" + }, + { + "authorized_access_point": "Quantenelektrodynamik" + } + ], + "related": [ + { + "authorized_access_point": "Casimir-Effekt" + } + ], + "variant_access_point": [ + "Polarisation (Vakuum)" + ], + "md5": "f969a182508b70fc38007545dfda461b" + }, + { + "authorized_access_point": "Unvertra\u0308glichkeit", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4187128-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041871286" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4187128-5" + } + ], + "identifier": "http://d-nb.info/gnd/4187128-5", + "note": [ + { + "noteType": "general", + "label": [ + "Verknu\u0308pfe mit Anwendungsgebiet" + ] + } + ], + "pid": "041871286", + "type": "bf:Topic", + "variant_access_point": [ + "Intoleranz (Medizin)", + "Unvertra\u0308glichkeitsreaktion" + ], + "md5": "c343a2e5a7d9485594dd504ce5dfe27b" + }, + { + "authorized_access_point": "Unterwasserschwei\u00dfen", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4187118-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041871189" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4187118-2" + } + ], + "identifier": "http://d-nb.info/gnd/4187118-2", + "closeMatch": [ + { + "authorized_access_point": "Underwater welding and cutting", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133880754" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85139630" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85139630" + } + ] + }, + { + "authorized_access_point": "Oxycoupage et soudage sous l'eau", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133880754" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13615612" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13615612p" + } + ] + }, + { + "authorized_access_point": "Soldadura subacua\u0301tica", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254498338" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX538871" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX538871" + } + ] + } + ], + "pid": "041871189", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schwei\u00dfen" + } + ], + "md5": "ecada24e656feb1ea82aead4c81ae9e1" + }, + { + "authorized_access_point": "Umrichter", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4186778-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041867785" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4186778-6" + } + ], + "identifier": "http://d-nb.info/gnd/4186778-6", + "closeMatch": [ + { + "authorized_access_point": "Electric inverters", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133656927" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85041752" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85041752" + } + ] + }, + { + "authorized_access_point": "Onduleurs (e\u0301lectricite\u0301)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133656927" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11959005" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11959005s" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Umrichter&oldid=245571003" + ] + } + ], + "pid": "041867785", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Stromrichter" + } + ], + "related": [ + { + "authorized_access_point": "Umformer" + } + ], + "md5": "6ab8caac3de90438c0b931eb5f929fa3" + }, + { + "authorized_access_point": "Truthuhn", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4186348-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041863488" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4186348-3" + } + ], + "identifier": "http://d-nb.info/gnd/4186348-3", + "closeMatch": [ + { + "authorized_access_point": "Turkeys", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133670962" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85138859" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85138859" + } + ] + }, + { + "authorized_access_point": "Dindon domestique", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133670962" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11967907" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11967907p" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "turkeys", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)125626606X" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "8016" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_8016" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Pute&oldid=231902473" + ] + } + ], + "pid": "041863488", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fasanenartige" + } + ], + "variant_access_point": [ + "Meleagris gallopavo", + "Pute", + "Haustruthuhn" + ], + "md5": "e885c11c59cf3fd0a0f6eb6cc581a329" + }, + { + "authorized_access_point": "Truthahn", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4186347-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04186347X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4186347-1" + } + ], + "identifier": "http://d-nb.info/gnd/4186347-1", + "closeMatch": [ + { + "authorized_access_point": "Cooking (Turkey)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134370725" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85032143" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85032143" + } + ] + }, + { + "authorized_access_point": "Turkeys", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134790775" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85138859" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85138859" + } + ] + }, + { + "authorized_access_point": "Cuisine (dinde. - viande)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134370725" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12567282" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12567282z" + } + ] + }, + { + "authorized_access_point": "Dindon domestique", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134790775" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11967907" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11967907p" + } + ] + }, + { + "authorized_access_point": "Pavos", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1299911064" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX533616" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX533616" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "turkeys", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1256266051" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "8016" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_8016" + } + ] + } + ], + "pid": "04186347X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Truthuhn" + } + ], + "related": [ + { + "authorized_access_point": "Truthuhnrasse" + } + ], + "variant_access_point": [ + "Puter" + ], + "md5": "5254c26bf0cb8477bd054b74aa0f7a08" + }, + { + "authorized_access_point": "Triumphbogen", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4186247-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041862473" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4186247-8" + } + ], + "identifier": "http://d-nb.info/gnd/4186247-8", + "closeMatch": [ + { + "authorized_access_point": "Triumphal arches", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113368419X" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85006535" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85006535" + } + ] + }, + { + "authorized_access_point": "Arcs de triomphe", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113368419X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11977585" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11977585k" + } + ] + }, + { + "authorized_access_point": "Archi di trionfo", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254341692" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "15752" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/15752" + } + ] + } + ], + "pid": "041862473", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Denkmal" + }, + { + "authorized_access_point": "Bogen (Architektur)" + }, + { + "authorized_access_point": "Torbau" + } + ], + "variant_access_point": [ + "Ehrenbogen" + ], + "md5": "259b5e6c7a47095b7a528e16ee7c0e6c" + }, + { + "authorized_access_point": "Triumph", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4186246-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041862465" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4186246-6" + } + ], + "identifier": "http://d-nb.info/gnd/4186246-6", + "closeMatch": [ + { + "authorized_access_point": "Triumph", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134137931" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85137947" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85137947" + } + ] + }, + { + "authorized_access_point": "Triomphe", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134137931" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12049670" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb120496708" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Ro\u0308misches Reich wird nicht als pleonastisch behandelt" + ] + } + ], + "pid": "041862465", + "type": "bf:Topic", + "md5": "b6d983511a39fe59aa3619dd9c14aad8" + }, + { + "authorized_access_point": "Supraleitendes Bauelement", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4184138-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041841387" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4184138-4" + } + ], + "identifier": "http://d-nb.info/gnd/4184138-4", + "closeMatch": [ + { + "authorized_access_point": "Superconductors", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133689086" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85130585" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85130585" + } + ] + }, + { + "authorized_access_point": "Supraconducteurs", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133689086" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11979263" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11979263x" + } + ] + } + ], + "pid": "041841387", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Elektrisches Bauelement" + } + ], + "related": [ + { + "authorized_access_point": "Supraleitung" + } + ], + "variant_access_point": [ + "Superconducting devices", + "Supraleitende Vorrichtung" + ], + "md5": "b09a28a3abb32e3c7039b7954f97c69f" + }, + { + "authorized_access_point": "Strangulation", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4183566-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041835662" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4183566-9" + } + ], + "identifier": "http://d-nb.info/gnd/4183566-9", + "closeMatch": [ + { + "authorized_access_point": "Strangling", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113381252X" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85128502" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85128502" + } + ] + }, + { + "authorized_access_point": "Strangulation", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113381252X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12491952" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12491952z" + } + ] + } + ], + "pid": "041835662", + "type": "bf:Topic", + "md5": "177864cdcd23249156fffccf9522e739" + }, + { + "authorized_access_point": "Stiller Gesellschafter", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4183333-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041833333" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4183333-8" + } + ], + "identifier": "http://d-nb.info/gnd/4183333-8", + "closeMatch": [ + { + "authorized_access_point": "Silent partners", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134081774" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85122474" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85122474" + } + ] + }, + { + "authorized_access_point": "Bailleurs de fonds", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134081774" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11983551" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11983551h" + } + ] + } + ], + "pid": "041833333", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gesellschafter" + } + ], + "related": [ + { + "authorized_access_point": "Stille Gesellschaft" + } + ], + "variant_access_point": [ + "Stiller Teilhaber" + ], + "md5": "01d3c99083efe5ea50176fc735f1e66a" + }, + { + "authorized_access_point": "Stelzvo\u0308gel", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4183098-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041830989" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4183098-2" + } + ], + "identifier": "http://d-nb.info/gnd/4183098-2", + "closeMatch": [ + { + "authorized_access_point": "Ciconiiformes", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134237480" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85025933" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85025933" + } + ] + }, + { + "authorized_access_point": "E\u0301chassiers", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333255802" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12293127" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12293127p" + } + ] + }, + { + "authorized_access_point": "Ciconiiformes", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134237480" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12259528" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12259528r" + } + ] + }, + { + "authorized_access_point": "Trampolieri", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254372318" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "38774" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/38774" + } + ] + }, + { + "authorized_access_point": "Ciconiformi", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254316930" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "525" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/525" + } + ] + }, + { + "authorized_access_point": "Ciconiformes", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254490582" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX542045" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX542045" + } + ] + } + ], + "pid": "041830989", + "type": "bf:Topic", + "variant_access_point": [ + "Schreitvo\u0308gel", + "Gressores", + "Ciconiiformes" + ], + "md5": "3fbf16b2733c85bc3757d577f0e97d04" + }, + { + "authorized_access_point": "Spitzbogen", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4182378-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041823788" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4182378-3" + } + ], + "identifier": "http://d-nb.info/gnd/4182378-3", + "closeMatch": [ + { + "authorized_access_point": "Ogee arches", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334556091" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2021001467" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2021001467" + } + ] + } + ], + "pid": "041823788", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bogen (Architektur)" + } + ], + "md5": "1af04b594e57cebb21f73fcfb7ed113a" + }, + { + "authorized_access_point": "Spieldose", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4182265-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04182265X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4182265-1" + } + ], + "identifier": "http://d-nb.info/gnd/4182265-1", + "closeMatch": [ + { + "authorized_access_point": "Music box", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133632823" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85088897" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85088897" + } + ] + }, + { + "authorized_access_point": "Boi\u0302tes a\u0300 musique", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133632823" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11940905" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11940905w" + } + ] + } + ], + "pid": "04182265X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mechanisches Musikinstrument" + } + ], + "variant_access_point": [ + "Musikdose" + ], + "md5": "94f300599b9727b90c20cc99df90a734" + }, + { + "authorized_access_point": "Senegalgalago", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4180985-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041809858" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4180985-3" + } + ], + "identifier": "http://d-nb.info/gnd/4180985-3", + "closeMatch": [ + { + "authorized_access_point": "Northern lesser bushbaby", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133674267" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85076193" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85076193" + } + ] + }, + { + "authorized_access_point": "Galago du Se\u0301ne\u0301gal", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133674267" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12653203" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12653203t" + } + ] + } + ], + "pid": "041809858", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Galagos (Familie)" + } + ], + "variant_access_point": [ + "Moholi", + "Galago senegalensis", + "Senegal-Bushbaby" + ], + "md5": "a068edfd3aefcd1cd76b78e6a6828468" + }, + { + "authorized_access_point": "Sellerie", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4180916-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041809165" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4180916-6" + } + ], + "identifier": "http://d-nb.info/gnd/4180916-6", + "closeMatch": [ + { + "authorized_access_point": "Cooking (Celery)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113469086X" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2010012605" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2010012605" + } + ] + }, + { + "authorized_access_point": "Celery", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133860575" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85021621" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85021621" + } + ] + }, + { + "authorized_access_point": "Ce\u0301leri", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133860575" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13511810" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13511810d" + } + ] + }, + { + "authorized_access_point": "Cuisine (ce\u0301leris)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113469086X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13511811" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13511811r" + } + ] + }, + { + "authorized_access_point": "Sedani", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254397086" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "68941" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/68941" + } + ] + }, + { + "authorized_access_point": "Apio", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254486011" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX529731" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX529731" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Apium graveolens", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1256257079" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "535" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_535" + } + ] + }, + { + "authorized_access_point": "celery", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1256257087" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "1412" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_1412" + } + ] + } + ], + "pid": "041809165", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Doldengewa\u0308chse" + } + ], + "variant_access_point": [ + "Apium graveolens" + ], + "md5": "ddcce069f7a901acc6cc5f825074d314" + }, + { + "authorized_access_point": "Selbststudium", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4180852-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041808525" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4180852-6" + } + ], + "identifier": "http://d-nb.info/gnd/4180852-6", + "closeMatch": [ + { + "authorized_access_point": "Autoformation", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134729782" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13324470" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13324470r" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Selbststudium", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970589115" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10057750" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10057750" + } + ] + } + ], + "pid": "041808525", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Studium" + } + ], + "related": [ + { + "authorized_access_point": "E-Learning" + }, + { + "authorized_access_point": "Selbstunterricht" + } + ], + "md5": "36e6d48eb09e151c9f1958f978cd4127" + }, + { + "authorized_access_point": "Seismotektonik", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4180767-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041807677" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4180767-4" + } + ], + "identifier": "http://d-nb.info/gnd/4180767-4", + "closeMatch": [ + { + "authorized_access_point": "Sismotectonique", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334019568" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17038712" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17038712m" + } + ] + } + ], + "pid": "041807677", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tektonik" + } + ], + "md5": "4d9254d604bbff22342d41cc0bbfca2d" + }, + { + "authorized_access_point": "Schwertfechten", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4180534-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041805348" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4180534-3" + } + ], + "identifier": "http://d-nb.info/gnd/4180534-3", + "closeMatch": [ + { + "authorized_access_point": "Swordplay", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134267819" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85131357" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85131357" + } + ] + }, + { + "authorized_access_point": "E\u0301pe\u0301e (sport)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134267819" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12308292" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12308292x" + } + ] + } + ], + "pid": "041805348", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fechten" + } + ], + "md5": "3d5a6d6a76ae20af3bfa7a0375bf164d" + }, + { + "authorized_access_point": "Schwei\u00dfnahtpru\u0308fung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4180466-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04180466X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4180466-1" + } + ], + "identifier": "http://d-nb.info/gnd/4180466-1", + "closeMatch": [ + { + "authorized_access_point": "Welded joints - Testing", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133930867" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85146007" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85146007" + } + ] + }, + { + "authorized_access_point": "Soudures - Essais", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133930867" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11933298" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119332989" + } + ] + } + ], + "pid": "04180466X", + "type": "bf:Topic", + "variant_access_point": [ + "Schwei\u00dfnaht" + ], + "md5": "bd009f901441d4a48b35d8061e5d753f" + }, + { + "authorized_access_point": "Schutzgas", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4180265-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041802659" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4180265-2" + } + ], + "identifier": "http://d-nb.info/gnd/4180265-2", + "pid": "041802659", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Inertgas" + } + ], + "md5": "6b0b95fd3d939df46c6aacc0b6ed656f" + }, + { + "authorized_access_point": "Schnellzug", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4179881-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041798813" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4179881-8" + } + ], + "identifier": "http://d-nb.info/gnd/4179881-8", + "closeMatch": [ + { + "authorized_access_point": "Express trains", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134657854" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85110967" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85110967" + } + ] + }, + { + "authorized_access_point": "Trains rapides", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134657854" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12141363" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12141363d" + } + ] + } + ], + "pid": "041798813", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zuggattung" + } + ], + "variant_access_point": [ + "Schnellzu\u0308ge", + "D-Zug" + ], + "md5": "41ff0e82ea955d30b0e1241f47fcf3fb" + }, + { + "authorized_access_point": "Scheibenbremse", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4179452-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041794524" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4179452-7" + } + ], + "identifier": "http://d-nb.info/gnd/4179452-7", + "closeMatch": [ + { + "authorized_access_point": "Automobiles - Disc brakes", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133699626" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85010244" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85010244" + } + ] + }, + { + "authorized_access_point": "Automobiles - Freins a\u0300 disque", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133699626" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11993213" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11993213b" + } + ] + }, + { + "authorized_access_point": "Freins a\u0300 disque", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134310862" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12398340" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12398340t" + } + ] + } + ], + "pid": "041794524", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Reibungsbremse" + } + ], + "variant_access_point": [ + "Axialbremse" + ], + "md5": "0edf681414a0b87985700761d7239212" + }, + { + "authorized_access_point": "s\u030cava\u0301", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4179243-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041792432" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4179243-9" + } + ], + "identifier": "http://d-nb.info/gnd/4179243-9", + "closeMatch": [ + { + "authorized_access_point": "Shb\u02bb (The Hebrew root)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134004958" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85121185" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85121185" + } + ] + }, + { + "authorized_access_point": "S\u030cB\u02bf (la racine he\u0301brai\u0308que)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134004958" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11963587" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119635873" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Verknu\u0308pfe mit Sprachbezeichnung und hier nicht permutierender Wortart, z. B. Hebra\u0308isch ; Verb ; s\u030cava\u0301" + ] + } + ], + "pid": "041792432", + "type": "bf:Topic", + "variant_access_point": [ + "s\u030cba" + ], + "md5": "58d37f242c745abd8234fa8d9d1f623a" + }, + { + "authorized_access_point": "Roter Buntbarsch", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4178521-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041785215" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4178521-6" + } + ], + "identifier": "http://d-nb.info/gnd/4178521-6", + "exactMatch": [ + { + "authorized_access_point": "Hemichromis bimaculatus", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333964943" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17802092" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17802092g" + } + ] + } + ], + "pid": "041785215", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Buntbarsche" + } + ], + "variant_access_point": [ + "Hemichromis bimaculatus" + ], + "md5": "8c84c1579c39f08963201dc35dedebb0" + }, + { + "authorized_access_point": "Rotalgen", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4178483-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041784839" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4178483-2" + } + ], + "identifier": "http://d-nb.info/gnd/4178483-2", + "closeMatch": [ + { + "authorized_access_point": "Red algae", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133733719" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85113776" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85113776" + } + ] + } + ], + "pid": "041784839", + "type": "bf:Topic", + "variant_access_point": [ + "Rottange", + "Rhodophyceae", + "Rhodophyzeen", + "Rhodophyta", + "Agarophyten", + "Rhodophycophyta" + ], + "md5": "11d4cf9d755ed7e246d943688ffe2d49" + }, + { + "authorized_access_point": "Rinderbandwurm", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4178163-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041781635" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4178163-6" + } + ], + "identifier": "http://d-nb.info/gnd/4178163-6", + "closeMatch": [ + { + "authorized_access_point": "Taenia saginata", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133810713" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12484134" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12484134b" + } + ] + } + ], + "pid": "041781635", + "type": "bf:Topic", + "variant_access_point": [ + "Taeniarhynchus saginatus", + "Taenia saginata" + ], + "md5": "ab13ad52c077a2cc5c6ee5853b0367c8" + }, + { + "authorized_access_point": "Revolutiona\u0308rin", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4177945-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041779452" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4177945-9" + } + ], + "identifier": "http://d-nb.info/gnd/4177945-9", + "closeMatch": [ + { + "authorized_access_point": "Women revolutionaries", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133920535" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85147698" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85147698" + } + ] + }, + { + "authorized_access_point": "Femmes re\u0301volutionnaires", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133920535" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13340891" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb133408918" + } + ] + }, + { + "authorized_access_point": "Rivoluzionarie", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254392122" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "62269" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/62269" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Als Homonymenzusatz bei Personenschlagworten zugelassen." + ] + } + ], + "pid": "041779452", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Revolutiona\u0308r" + } + ], + "md5": "e49b353df68b600f0d2a0f65b0a12a24" + }, + { + "authorized_access_point": "Registratur", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4177443-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041774434" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4177443-7" + } + ], + "identifier": "http://d-nb.info/gnd/4177443-7", + "closeMatch": [ + { + "authorized_access_point": "Archives", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134758804" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13318572" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13318572g" + } + ] + } + ], + "pid": "041774434", + "type": "bf:Topic", + "variant_access_point": [ + "Ablage (Verwaltung)", + "Aktenablage", + "Schriftgutverwaltung", + "Records Management" + ], + "md5": "e757c32c1cd2a93563c05e2f7f945523" + }, + { + "authorized_access_point": "Rechtszug", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4177282-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041772822" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4177282-9" + } + ], + "identifier": "http://d-nb.info/gnd/4177282-9", + "pid": "041772822", + "type": "bf:Topic", + "variant_access_point": [ + "Instanzenzug", + "Instanz" + ], + "md5": "e02acf5f3d26497e25b1efa1afbbd782" + }, + { + "authorized_access_point": "Rechtsverletzung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4177276-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041772768" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4177276-3" + } + ], + "identifier": "http://d-nb.info/gnd/4177276-3", + "closeMatch": [ + { + "authorized_access_point": "Torts", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133978622" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85136182" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85136182" + } + ] + }, + { + "authorized_access_point": "Responsabilite\u0301 civile", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133978622" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11952132" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119521328" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Rechtsverletzung", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970584598" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10040642" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10040642" + } + ] + } + ], + "pid": "041772768", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Zuwiderhandlung" + } + ], + "variant_access_point": [ + "Rechtsbruch", + "Rechtsversto\u00df" + ], + "md5": "1f0f49b21946971d81fb88fc54355e26" + }, + { + "authorized_access_point": "Radierer", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4176793-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041767934" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4176793-7" + } + ], + "identifier": "http://d-nb.info/gnd/4176793-7", + "closeMatch": [ + { + "authorized_access_point": "Engravers", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133923755" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85043993" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85043993" + } + ] + }, + { + "authorized_access_point": "Graveurs", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133923755" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11931591" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119315917" + } + ] + } + ], + "pid": "041767934", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Radiererin" + } + ], + "md5": "32951d7aab2251f4ab1e76b03201d29c" + }, + { + "authorized_access_point": "Quecksilbergehalt", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4176671-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041766717" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4176671-4" + } + ], + "identifier": "http://d-nb.info/gnd/4176671-4", + "closeMatch": [ + { + "authorized_access_point": "Mercury content", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134340494" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2006007175" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2006007175" + } + ] + }, + { + "authorized_access_point": "Teneur en mercure", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134340494" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12480742" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12480742n" + } + ] + } + ], + "pid": "041766717", + "type": "bf:Topic", + "md5": "d79e7a0eac945bd54134fd786026edc3" + }, + { + "authorized_access_point": "Truthenne", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4176420-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04176420X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4176420-1" + } + ], + "identifier": "http://d-nb.info/gnd/4176420-1", + "closeMatch": [ + { + "authorized_access_point": "Dindes", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133695000" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11982369" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11982369s" + } + ] + } + ], + "pid": "04176420X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Truthuhn" + } + ], + "variant_access_point": [ + "Pute (Truthenne)" + ], + "md5": "6e03bddf7a9640a80ec809fbc70ad925" + }, + { + "authorized_access_point": "Pudding", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4176316-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041763165" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4176316-6" + } + ], + "identifier": "http://d-nb.info/gnd/4176316-6", + "closeMatch": [ + { + "authorized_access_point": "Puddings", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134797893" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85108894" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85108894" + } + ] + }, + { + "authorized_access_point": "Flans", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134797893" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF15517468" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb15517468b" + } + ] + } + ], + "pid": "041763165", + "type": "bf:Topic", + "md5": "840f94078d8c23fbb34fdc207aa5cf4f" + }, + { + "authorized_access_point": "Protaminsulfate", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4175983-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041759834" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4175983-7" + } + ], + "identifier": "http://d-nb.info/gnd/4175983-7", + "pid": "041759834", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Protamine" + } + ], + "md5": "12418bb9b5fe5850230b6a48781a906b" + }, + { + "authorized_access_point": "Potlatch", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4175501-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041755014" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4175501-7" + } + ], + "identifier": "http://d-nb.info/gnd/4175501-7", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?oldid=241778247" + ] + } + ], + "pid": "041755014", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fest" + } + ], + "related": [ + { + "authorized_access_point": "Nordwestku\u0308stenindianer" + } + ], + "variant_access_point": [ + "Potlatsch", + "Potlach" + ], + "md5": "d8ac8efd264deb3575d845e9383eab24" + }, + { + "authorized_access_point": "Postkutsche", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4175455-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041754557" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4175455-4" + } + ], + "identifier": "http://d-nb.info/gnd/4175455-4", + "closeMatch": [ + { + "authorized_access_point": "Stagecoaches", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134495595" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2002004206" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2002004206" + } + ] + }, + { + "authorized_access_point": "Ve\u0301hicules hippomobiles", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134495595" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12287719" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12287719g" + } + ] + } + ], + "pid": "041754557", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kutsche" + } + ], + "md5": "3f231d4d45f0475cb4812776387c2869" + }, + { + "authorized_access_point": "Positive Operatorhalbgruppe", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4175431-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04175431X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4175431-1" + } + ], + "identifier": "http://d-nb.info/gnd/4175431-1", + "pid": "04175431X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Operatorhalbgruppe" + } + ], + "md5": "a0fbe09e39f667eb325fee98b42330ed" + }, + { + "authorized_access_point": "Plumplori", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4174926-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04174926X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4174926-1" + } + ], + "identifier": "http://d-nb.info/gnd/4174926-1", + "closeMatch": [ + { + "authorized_access_point": "Slow loris", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333260261" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2004001089" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2004001089" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Art der Familie der Loris" + ] + } + ], + "pid": "04174926X", + "type": "bf:Topic", + "variant_access_point": [ + "Nycticebus coucang" + ], + "md5": "d95df4f397357cef7d70e0aff3aae0fa" + }, + { + "authorized_access_point": "Plattfu\u00df", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4174896-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041748964" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4174896-7" + } + ], + "identifier": "http://d-nb.info/gnd/4174896-7", + "exactMatch": [ + { + "authorized_access_point": "Flatfoot", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333254393" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85049021" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85049021" + } + ] + }, + { + "authorized_access_point": "Flatfoot", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1241618364" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D005413" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D005413" + } + ] + } + ], + "pid": "041748964", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fu\u00dfdeformita\u0308t" + } + ], + "variant_access_point": [ + "Pes planus" + ], + "md5": "21ee53a9e60055609ec899a5d6fc85e8" + }, + { + "authorized_access_point": "Physikalische Akustik", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4174604-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04174604X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4174604-1" + } + ], + "identifier": "http://d-nb.info/gnd/4174604-1", + "pid": "04174604X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Akustik" + } + ], + "md5": "e1c041746e098842f3a47696cbec001d" + }, + { + "authorized_access_point": "Philanthropie", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4174264-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041742648" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4174264-3" + } + ], + "identifier": "http://d-nb.info/gnd/4174264-3", + "closeMatch": [ + { + "authorized_access_point": "Oeuvres de bienfaisance", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134557973" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13318795" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13318795p" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Philanthropie", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1024440249" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10069666" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10069666" + } + ] + } + ], + "pid": "041742648", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Wohlta\u0308tigkeit" + }, + { + "authorized_access_point": "Philanthrop" + }, + { + "authorized_access_point": "Philanthropin" + } + ], + "md5": "c3afb7eddffb6c0c59441ac7e3be4e9d" + }, + { + "authorized_access_point": "Pflege", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4174084-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04174084X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4174084-1" + } + ], + "identifier": "http://d-nb.info/gnd/4174084-1", + "closeMatch": [ + { + "authorized_access_point": "Attention", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113483182X" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85009391" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85009391" + } + ] + }, + { + "authorized_access_point": "Entretien", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113483182X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13318901" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb133189012" + } + ] + }, + { + "authorized_access_point": "Soins", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133944809" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11938292" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11938292f" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Pflege", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970579012" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10035229" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10035229" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Im medizin. Bereich werden nach Mo\u0308glichkeit die SWW Krankenpflege, Altenpflege, Kinderkrankenpflege usw. verwendet." + ] + } + ], + "pid": "04174084X", + "type": "bf:Topic", + "variant_access_point": [ + "Pflegekonzept" + ], + "md5": "92ed7e75ec9df5e6db0526746293faad" + }, + { + "authorized_access_point": "Perle", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4173806-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041738063" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4173806-8" + } + ], + "identifier": "http://d-nb.info/gnd/4173806-8", + "closeMatch": [ + { + "authorized_access_point": "Perlas", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254471987" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX533663" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX533663" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "pearls", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)125624435X" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "5644" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_5644" + } + ] + } + ], + "pid": "041738063", + "type": "bf:Topic", + "variant_access_point": [ + "Perlen" + ], + "md5": "45a1e9b7f5f18ac5d3f84a84e5bcfb88" + }, + { + "authorized_access_point": "Pergamenthandschrift", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4173753-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041737539" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4173753-2" + } + ], + "identifier": "http://d-nb.info/gnd/4173753-2", + "note": [ + { + "noteType": "general", + "label": [ + "Fu\u0308r das Fru\u0308h- und Hochmittelalter nur benutzt, wenn der Beschreibstoff besonders thematisiert ist; sonst SW Handschrift" + ] + } + ], + "pid": "041737539", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Handschrift" + } + ], + "variant_access_point": [ + "Pergament" + ], + "md5": "f8df66d34be0e7e3aa34dc14dc418a89" + }, + { + "authorized_access_point": "Pelletieren", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4173634-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041736346" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4173634-5" + } + ], + "identifier": "http://d-nb.info/gnd/4173634-5", + "closeMatch": [ + { + "authorized_access_point": "Pelletizing", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134745400" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85099278" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85099278" + } + ] + } + ], + "pid": "041736346", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Agglomerieren" + } + ], + "variant_access_point": [ + "Kugelsintern", + "Aufbaugranulieren" + ], + "md5": "255b68ea8b771e53bdd55911770620dc" + }, + { + "authorized_access_point": "Patentverletzung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4173539-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041735390" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4173539-0" + } + ], + "identifier": "http://d-nb.info/gnd/4173539-0", + "closeMatch": [ + { + "authorized_access_point": "Patent infringement", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134665784" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh96001068" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh96001068" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Versto\u00df gegen patentrechtliche Vorschriften" + ] + } + ], + "pid": "041735390", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Patentrecht" + } + ], + "variant_access_point": [ + "Patentrechtsverletzung", + "Patent" + ], + "md5": "3a5f407721cea84b03ba1f58bbd81feb" + }, + { + "authorized_access_point": "Aufzucht", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4173468-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041734688" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4173468-3" + } + ], + "identifier": "http://d-nb.info/gnd/4173468-3", + "closeMatch": [ + { + "authorized_access_point": "Breeding", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332441262" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh99004865" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh99004865" + } + ] + }, + { + "authorized_access_point": "Breeding", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133612407" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85016717" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85016717" + } + ] + }, + { + "authorized_access_point": "Ame\u0301lioration ge\u0301ne\u0301tique", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133612407" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11931237" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11931237m" + } + ] + }, + { + "authorized_access_point": "E\u0301levage", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133922597" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11931346" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11931346v" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Kompositabildung nur mit Bezeichnungen fu\u0308r Jungtiere, z.B. Ka\u0308lberaufzucht; mit anderen Tieren wird verknu\u0308pft, z.B. Orang-Utan ; Aufzucht" + ] + } + ], + "pid": "041734688", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tierzucht" + }, + { + "authorized_access_point": "Tierhaltung" + } + ], + "variant_access_point": [ + "Tieraufzucht" + ], + "md5": "ee9d79b675a95adb589262d7bf72d392" + }, + { + "authorized_access_point": "Parlamentsreform", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4173381-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041733819" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4173381-2" + } + ], + "identifier": "http://d-nb.info/gnd/4173381-2", + "closeMatch": [ + { + "authorized_access_point": "Legislative bodies - Reform", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134142498" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85075821" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85075821" + } + ] + }, + { + "authorized_access_point": "Parlements - Re\u0301forme", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134142498" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12063314" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12063314x" + } + ] + } + ], + "pid": "041733819", + "type": "bf:Topic", + "variant_access_point": [ + "Parlament" + ], + "md5": "d111de789b59f305ca789e8ad5c0d68c" + }, + { + "authorized_access_point": "Oligospermie", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4172552-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041725522" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4172552-9" + } + ], + "identifier": "http://d-nb.info/gnd/4172552-9", + "exactMatch": [ + { + "authorized_access_point": "Oligospermia", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1241615969" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D009845" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D009845" + } + ] + } + ], + "pid": "041725522", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Sperma" + } + ], + "related": [ + { + "authorized_access_point": "Azoospermie" + } + ], + "md5": "fd1bd3bb24090fa3aa12e8ea50a70d15" + }, + { + "authorized_access_point": "Nymphaeum", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4172202-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041722027" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4172202-4" + } + ], + "identifier": "http://d-nb.info/gnd/4172202-4", + "closeMatch": [ + { + "authorized_access_point": "Nymphaea (Architecture)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133747493" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh92004203" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh92004203" + } + ] + }, + { + "authorized_access_point": "Nymphe\u0301es", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133747493" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12268889" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12268889r" + } + ] + } + ], + "pid": "041722027", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Brunnen" + } + ], + "md5": "d00cdaa6a2ee574d7bf8d37ff60eee63" + }, + { + "authorized_access_point": "Schwedisch-polnisch-da\u0308nischer Krieg", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4172004-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041720040" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4172004-0" + } + ], + "identifier": "http://d-nb.info/gnd/4172004-0", + "note": [ + { + "noteType": "general", + "label": [ + "Benutze fu\u0308r den gesamten Krieg und fu\u0308r den Krieg zwischen Schweden und Polen allein; fu\u0308r den Krieg zwischen Schweden und Da\u0308nemark allein benutze \"Schwedisch-Da\u0308nischer Krieg (1657-1660)\"" + ] + } + ], + "pid": "041720040", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Krieg" + } + ], + "variant_access_point": [ + "1. Nordischer Krieg", + "Erster Nordischer Krieg", + "Nordischer Krieg (1655-1660)", + "Schwedisch-Polnisch-Russisch-Da\u0308nischer Krieg", + "Polnisch-schwedischer Krieg (1655-1660)", + "Schwedisch-polnischer Krieg (1655-1660)", + "Zweiter Nordischer Krieg (1655-1661)", + "Zweiter Polnisch-Schwedischer Krieg", + "Kleiner Nordischer Krieg" + ], + "md5": "803dcefe16a60d9d38fad4b6084e2799" + }, + { + "authorized_access_point": "Niederfrequentes Gera\u0308usch", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4171842-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041718429" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4171842-2" + } + ], + "identifier": "http://d-nb.info/gnd/4171842-2", + "pid": "041718429", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gera\u0308usch" + } + ], + "md5": "a2a845720f3db0d33877293b70237209" + }, + { + "authorized_access_point": "Neutrinodetektor", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4171615-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041716159" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4171615-2" + } + ], + "identifier": "http://d-nb.info/gnd/4171615-2", + "pid": "041716159", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Teilchendetektor" + } + ], + "md5": "f32908b0ff316182a187b99d500b62b6" + }, + { + "authorized_access_point": "Negative Feststellungsklage", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4171405-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041714059" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4171405-2" + } + ], + "identifier": "http://d-nb.info/gnd/4171405-2", + "note": [ + { + "noteType": "general", + "label": [ + "Die negative Feststellungsklage ist eine Klageart, mit der die Feststellung des Nichtbestehens eines Rechtsverha\u0308ltnisses geltend gemacht werden kann." + ] + } + ], + "pid": "041714059", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Feststellungsklage" + } + ], + "md5": "384fccb51f6848461616980d2fa09d28" + }, + { + "authorized_access_point": "Nationalita\u0308tenstaat", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4171218-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041712188" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4171218-3" + } + ], + "identifier": "http://d-nb.info/gnd/4171218-3", + "closeMatch": [ + { + "authorized_access_point": "Multinational states", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134669534" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2009003712" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2009003712" + } + ] + }, + { + "authorized_access_point": "E\u0301tats multinationaux", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134669534" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16276182" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16276182p" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Vielvo\u0308lkerstaat", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970602103" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10053023" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10053023" + } + ] + } + ], + "pid": "041712188", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Staat" + } + ], + "variant_access_point": [ + "Vielvo\u0308lkerstaat", + "Multinationaler Staat" + ], + "md5": "9b4b0e6e359039d17276f0c33da5c056" + }, + { + "authorized_access_point": "Nachwachsender Rohstoff", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4171069-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04171069X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4171069-1" + } + ], + "identifier": "http://d-nb.info/gnd/4171069-1", + "exactMatch": [ + { + "authorized_access_point": "nachwachsende Rohstoffe", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970574819" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10065163" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10065163" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Pflanzliche und tierische Materialien" + ] + } + ], + "pid": "04171069X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Organischer Rohstoff" + }, + { + "authorized_access_point": "Agrarprodukt" + } + ], + "related": [ + { + "authorized_access_point": "Erneuerbare Ressourcen" + }, + { + "authorized_access_point": "Biomasse" + }, + { + "authorized_access_point": "Biorohstoff" + } + ], + "variant_access_point": [ + "Nachwachsende Rohstoffe" + ], + "md5": "0ab844b1aa61a36c4695b00f862df290" + }, + { + "authorized_access_point": "Nacherntephysiologie", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4171007-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04171007X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4171007-1" + } + ], + "identifier": "http://d-nb.info/gnd/4171007-1", + "closeMatch": [ + { + "authorized_access_point": "Postharvest physiology", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113380554X" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2002006516" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2002006516" + } + ] + }, + { + "authorized_access_point": "Physiologie apre\u0300s re\u0301colte", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113380554X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12470674" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12470674s" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "postharvest physiology", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1256239585" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "24406" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_24406" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Physiolog. Vorga\u0308nge nach der Ernte" + ] + } + ], + "pid": "04171007X", + "type": "bf:Topic", + "variant_access_point": [ + "Postharvest physiology" + ], + "md5": "3e964836bc50f4020705c7e1ac4f9275" + }, + { + "authorized_access_point": "Multigruppe", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4170710-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041707109" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4170710-2" + } + ], + "identifier": "http://d-nb.info/gnd/4170710-2", + "closeMatch": [ + { + "authorized_access_point": "Hypergroups", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)133359478X" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85063698" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85063698" + } + ] + }, + { + "authorized_access_point": "Hypergroupes", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)133359478X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12451436" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12451436h" + } + ] + } + ], + "pid": "041707109", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gruppe (Mathematik)" + } + ], + "variant_access_point": [ + "Hypergruppe (Gruppentheorie)" + ], + "md5": "2d9dbb820753c4a7c0e2187420108924" + }, + { + "authorized_access_point": "Mondoberfla\u0308che", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4170441-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04170441X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4170441-1" + } + ], + "identifier": "http://d-nb.info/gnd/4170441-1", + "closeMatch": [ + { + "authorized_access_point": "Lune - Surface", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133867782" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13557117" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb135571175" + } + ] + } + ], + "pid": "04170441X", + "type": "bf:Topic", + "variant_access_point": [ + "Mond" + ], + "md5": "f37cfe20d4c0cfcba7b4f52baf5a6752" + }, + { + "authorized_access_point": "Seifenkiste", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4170046-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041700465" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4170046-6" + } + ], + "identifier": "http://d-nb.info/gnd/4170046-6", + "closeMatch": [ + { + "authorized_access_point": "Coaster cars", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133675050" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85027439" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85027439" + } + ] + } + ], + "pid": "041700465", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fahrzeug" + } + ], + "variant_access_point": [ + "Minicar (Seifenkiste)" + ], + "md5": "3c0aa68fdf9271997052eecf0c88832d" + }, + { + "authorized_access_point": "Meineid", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4169344-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041693442" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4169344-9" + } + ], + "identifier": "http://d-nb.info/gnd/4169344-9", + "closeMatch": [ + { + "authorized_access_point": "Perjury", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134106920" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85099968" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85099968" + } + ] + }, + { + "authorized_access_point": "Parjure", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134106920" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12010894" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb120108941" + } + ] + } + ], + "pid": "041693442", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Eid" + }, + { + "authorized_access_point": "Falschaussage" + } + ], + "md5": "685eaad3a275f85fb44f4c29c10959c9" + }, + { + "authorized_access_point": "Meera\u0308schen", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4169240-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041692403" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4169240-8" + } + ], + "identifier": "http://d-nb.info/gnd/4169240-8", + "closeMatch": [ + { + "authorized_access_point": "Gray mullets", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134278373" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85056581" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85056581" + } + ] + }, + { + "authorized_access_point": "Mugilide\u0301s", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134278373" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12330195" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12330195c" + } + ] + } + ], + "pid": "041692403", + "type": "bf:Topic", + "variant_access_point": [ + "Mugilidae" + ], + "md5": "d099c49216b25fe42f03b46b23d96313" + }, + { + "authorized_access_point": "Mediothek", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4169198-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041691989" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4169198-2" + } + ], + "identifier": "http://d-nb.info/gnd/4169198-2", + "closeMatch": [ + { + "authorized_access_point": "Audio-visual library service", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133679013" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85009465" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85009465" + } + ] + }, + { + "authorized_access_point": "Me\u0301diathe\u0300ques", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133679013" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11975004" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11975004w" + } + ] + } + ], + "pid": "041691989", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Medienzentrum" + } + ], + "variant_access_point": [ + "Mediathek" + ], + "md5": "af4b88785baa0b784bf85c0ad3bf8b09" + }, + { + "authorized_access_point": "Maushirsch", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4169150-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041691504" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4169150-7" + } + ], + "identifier": "http://d-nb.info/gnd/4169150-7", + "pid": "041691504", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zwergmoschustiere" + } + ], + "variant_access_point": [ + "Kantschil", + "Tragulus" + ], + "md5": "82ca1f11022a2f8c73d1b5f631c026cd" + }, + { + "authorized_access_point": "Maschinenbauingenieur", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4168997-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041689976" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4168997-5" + } + ], + "identifier": "http://d-nb.info/gnd/4168997-5", + "pid": "041689976", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ingenieur" + } + ], + "related": [ + { + "authorized_access_point": "Maschinenbauingenieurin" + } + ], + "variant_access_point": [ + "Maschineningenieur" + ], + "md5": "8d3c1eda0699d5eec0908614f34eda84" + }, + { + "authorized_access_point": "Mano\u0308vrierfa\u0308higkeit", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4168847-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041688473" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4168847-8" + } + ], + "identifier": "http://d-nb.info/gnd/4168847-8", + "closeMatch": [ + { + "authorized_access_point": "Maniabilite\u0301", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113404609X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11977231" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11977231t" + } + ] + } + ], + "pid": "041688473", + "type": "bf:Topic", + "md5": "22a7c5bfbf2227028cab0e48d608a66c" + }, + { + "authorized_access_point": "Lu\u0308ftung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4168210-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041682106" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4168210-5" + } + ], + "identifier": "http://d-nb.info/gnd/4168210-5", + "closeMatch": [ + { + "authorized_access_point": "Ventilation", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334018308" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85142747" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85142747" + } + ] + }, + { + "authorized_access_point": "Ventilation", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334018308" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11951224" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11951224p" + } + ] + } + ], + "pid": "041682106", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Entlu\u0308ftung" + }, + { + "authorized_access_point": "Durchlu\u0308ftung" + } + ], + "variant_access_point": [ + "Lu\u0308ftungssystem" + ], + "md5": "dbb9fce12e344ddf660ed84db57f9098" + }, + { + "authorized_access_point": "Livla\u0308ndischer Krieg", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4167979-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041679792" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4167979-9" + } + ], + "identifier": "http://d-nb.info/gnd/4167979-9", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Livl%C3%A4ndischer_Krieg&oldid=213445252" + ] + } + ], + "pid": "041679792", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Krieg" + } + ], + "variant_access_point": [ + "Livonskaja vojna" + ], + "md5": "f566259b39e4d014cd3b2e4e332a0b1f" + }, + { + "authorized_access_point": "Literarisches Manifest", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4167853-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041678532" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4167853-9" + } + ], + "identifier": "http://d-nb.info/gnd/4167853-9", + "closeMatch": [ + { + "authorized_access_point": "Literary manifestos", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133824862" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2007010787" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2007010787" + } + ] + }, + { + "authorized_access_point": "Manifestes litte\u0301raires et artistiques", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133824862" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12536532" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12536532c" + } + ] + } + ], + "pid": "041678532", + "type": "bf:Topic", + "variant_access_point": [ + "Manifest" + ], + "md5": "710e690b98b17c1790c68af8dbea2aea" + }, + { + "authorized_access_point": "Langsamer Walzer", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4166709-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041667093" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4166709-8" + } + ], + "identifier": "http://d-nb.info/gnd/4166709-8", + "closeMatch": [ + { + "authorized_access_point": "Boston (Dance)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133811841" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85015940" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85015940" + } + ] + }, + { + "authorized_access_point": "Boston (danse)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133811841" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12489782" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb124897822" + } + ] + } + ], + "pid": "041667093", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Walzer" + }, + { + "authorized_access_point": "Standardta\u0308nze" + } + ], + "variant_access_point": [ + "English waltz", + "English-Waltz", + "Englishwaltz", + "Valse Boston", + "Boston (Musik)" + ], + "md5": "5f7c7b14551442276f4e7d2fd2b1a190" + }, + { + "authorized_access_point": "Laienseelsorge", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4166479-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041664795" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4166479-6" + } + ], + "identifier": "http://d-nb.info/gnd/4166479-6", + "closeMatch": [ + { + "authorized_access_point": "Agents de pastorale", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134596170" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13554687" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb135546870" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Seelsorge durch Laien" + ] + } + ], + "pid": "041664795", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Seelsorge" + } + ], + "related": [ + { + "authorized_access_point": "Laienapostolat" + } + ], + "variant_access_point": [ + "Laie" + ], + "md5": "c1c77e557f456b91aaf2bc9c299b0556" + }, + { + "authorized_access_point": "Korbware", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4165302-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041653025" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4165302-6" + } + ], + "identifier": "http://d-nb.info/gnd/4165302-6", + "closeMatch": [ + { + "authorized_access_point": "Vannerie", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134799934" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13516282" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13516282t" + } + ] + }, + { + "authorized_access_point": "Cesteri\u0301a", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1299909876" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX526260" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX526260" + } + ] + } + ], + "pid": "041653025", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Geflecht (Technik)" + } + ], + "variant_access_point": [ + "Korbflechterei" + ], + "md5": "e18e54cabfe8cd4fbf37f6e486c80322" + }, + { + "authorized_access_point": "Konkordanz", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4165001-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041650018" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4165001-3" + } + ], + "identifier": "http://d-nb.info/gnd/4165001-3", + "closeMatch": [ + { + "authorized_access_point": "Concordances", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133614140" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85030642" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85030642" + } + ] + }, + { + "authorized_access_point": "Concordances", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133614140" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11931766" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11931766k" + } + ] + }, + { + "authorized_access_point": "Concordanze", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254339159" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "13311" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/13311" + } + ] + }, + { + "authorized_access_point": "Concordancias", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254450777" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX526531" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX526531" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Alphabetisches Verzeichnis aller in einer Schrift vorkommenden Wo\u0308rter oder Sachen mit Stellenangabe (RDA AH-007).", + "Auch fu\u0308r Register verwendet (RDA AH-007)." + ] + } + ], + "pid": "041650018", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Verzeichnis" + } + ], + "variant_access_point": [ + "Personenregister", + "Sachregister (Formschlagwort)", + "Wortindex", + "Wo\u0308rterverzeichnis", + "Werkkonkordanz" + ], + "md5": "e065af865a28344e52279a8d5994c251" + }, + { + "authorized_access_point": "Klammeraffe", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4164004-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041640047" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4164004-4" + } + ], + "identifier": "http://d-nb.info/gnd/4164004-4", + "closeMatch": [ + { + "authorized_access_point": "Spider monkeys", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333261039" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85126622" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85126622" + } + ] + }, + { + "authorized_access_point": "Singes-araigne\u0301es", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333261039" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16723695" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16723695h" + } + ] + } + ], + "pid": "041640047", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kapuzineraffenartige" + } + ], + "variant_access_point": [ + "Ateles" + ], + "md5": "c33f8e659ae303eccd1d9ec4da809364" + }, + { + "authorized_access_point": "Kirchenvertrag", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4163938-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041639383" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4163938-8" + } + ], + "identifier": "http://d-nb.info/gnd/4163938-8", + "closeMatch": [ + { + "authorized_access_point": "Concordats", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134706170" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85030644" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85030644" + } + ] + }, + { + "authorized_access_point": "Concordats", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134706170" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13318920" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13318920b" + } + ] + } + ], + "pid": "041639383", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Konkordat" + } + ], + "variant_access_point": [ + "Staatskirchenvertrag", + "Staat" + ], + "md5": "c24dd76d631d134a37f7f554be6e4e5e" + }, + { + "authorized_access_point": "Katalog", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4163417-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041634179" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4163417-2" + } + ], + "identifier": "http://d-nb.info/gnd/4163417-2", + "closeMatch": [ + { + "authorized_access_point": "Publishers' catalogs", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133643949" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85020917" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85020917" + } + ] + }, + { + "authorized_access_point": "Catalogs", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133680755" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2005003411" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2005003411" + } + ] + }, + { + "authorized_access_point": "Catalogues d'e\u0301diteurs", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133643949" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF119484598" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11948459c" + } + ] + }, + { + "authorized_access_point": "Catalogues", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133680755" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF119759400" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119759407" + } + ] + }, + { + "authorized_access_point": "Cataloghi editoriali", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254335196" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "10004" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/10004" + } + ] + }, + { + "authorized_access_point": "Cata\u0301logos de editores", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254447520" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX528701" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX528701" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Catalog", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1253498628" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D019494" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D019494" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Bestandsverzeichnis einer Sammlung (Bibliothek, Museum usw.) oder einer Gesamtheit von Sammlungen (RDA AH-007).", + "Auch fu\u0308r Verlagskataloge. Sofern zutreffend verwende die spezifischen Begriffe Antiquariatskatalog, Auktionskatalog, Ausstellungskatalog, Verkaufskatalog. Bei Archivbesta\u0308nden verwende Inventar. Fu\u0308r andere Arten der Auflistung verwende Verzeichnis (RDA AH-007)." + ] + } + ], + "pid": "041634179", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Verzeichnis" + } + ], + "related": [ + { + "authorized_access_point": "Bibliografie" + }, + { + "authorized_access_point": "Inventar" + }, + { + "authorized_access_point": "Neuerwerbungsliste" + } + ], + "variant_access_point": [ + "Bestandskatalog", + "Bestandsverzeichnis (Formschlagwort)" + ], + "md5": "b6713c8ce8e677be4eea791b0798bc23" + }, + { + "authorized_access_point": "Kampffisch", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4163169-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041631692" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4163169-9" + } + ], + "identifier": "http://d-nb.info/gnd/4163169-9", + "exactMatch": [ + { + "authorized_access_point": "Siamese fighting fish", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333951116" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85122191" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85122191" + } + ] + }, + { + "authorized_access_point": "Betta splendens", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333951116" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF15954764" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb15954764k" + } + ] + } + ], + "pid": "041631692", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gro\u00dfguramis" + } + ], + "variant_access_point": [ + "Siamesischer Kampffisch", + "Betta splendens", + "Schleierkampffisch" + ], + "md5": "865732259ae17c4a3ebc2aca08f6124a" + }, + { + "authorized_access_point": "Kampf", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4163167-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041631676" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4163167-5" + } + ], + "identifier": "http://d-nb.info/gnd/4163167-5", + "closeMatch": [ + { + "authorized_access_point": "Combat", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134052545" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85028791" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85028791" + } + ] + }, + { + "authorized_access_point": "Combat", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134052545" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11978385" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119783858" + } + ] + } + ], + "pid": "041631676", + "type": "bf:Topic", + "md5": "82e65cdd2aec87b98affce474cc474c0" + }, + { + "authorized_access_point": "Kalmarer Union", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4163120-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04163120X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4163120-1" + } + ], + "identifier": "http://d-nb.info/gnd/4163120-1", + "closeMatch": [ + { + "authorized_access_point": "Kalmar, Union of, 1397", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133842003" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85071361" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85071361" + } + ] + }, + { + "authorized_access_point": "Kalmar, Union de (1397)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133842003" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13182978" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb131829789" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Kalmarer_Union&oldid=212527898" + ] + }, + { + "noteType": "general", + "label": [ + "Vereinigung der Ko\u0308nigreiche Da\u0308nemark, Norwegen u. Schweden, mit Unterbrechungen von 1397 bis 1523 (06.06.) bestanden." + ] + } + ], + "pid": "04163120X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bu\u0308ndnis" + } + ], + "md5": "a53609667246c6177088e50a8bafabdd" + }, + { + "authorized_access_point": "Jesus-Bewegung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4162745-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041627458" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4162745-3" + } + ], + "identifier": "http://d-nb.info/gnd/4162745-3", + "closeMatch": [ + { + "authorized_access_point": "Jesus People", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133878296" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85070147" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85070147" + } + ] + }, + { + "authorized_access_point": "Mouvements pour Je\u0301sus", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133878296" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13607037" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13607037n" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "religio\u0308se Bewegung", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970585713" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10048163" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10048163" + } + ] + } + ], + "pid": "041627458", + "type": "bf:Topic", + "variant_access_point": [ + "Jesus-People", + "Jesus-Revolution" + ], + "md5": "89219e2ecd49276c3a2e59bd318ef9f6" + }, + { + "authorized_access_point": "Ionenaustauschermembran", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4162301-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041623010" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4162301-0" + } + ], + "identifier": "http://d-nb.info/gnd/4162301-0", + "closeMatch": [ + { + "authorized_access_point": "Ion-permeable membranes", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133692990" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85067803" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85067803" + } + ] + }, + { + "authorized_access_point": "Membranes e\u0301changeuses d'ions", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133692990" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11981513" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11981513g" + } + ] + }, + { + "authorized_access_point": "Membranas de intercambio io\u0301nico", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254444629" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX553088" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX553088" + } + ] + } + ], + "pid": "041623010", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Semipermeable Membran" + }, + { + "authorized_access_point": "Membranionenaustauscher" + } + ], + "variant_access_point": [ + "Ionenaustauschmembran" + ], + "md5": "11e2f785749c6f4ce25002159602df95" + }, + { + "authorized_access_point": "Intoleranz", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4162166-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041621662" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4162166-9" + } + ], + "identifier": "http://d-nb.info/gnd/4162166-9", + "closeMatch": [ + { + "authorized_access_point": "Toleration", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134651988" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85135882" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85135882" + } + ] + }, + { + "authorized_access_point": "Tole\u0301rance", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134651988" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11933613" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119336136" + } + ] + } + ], + "pid": "041621662", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Toleranz" + } + ], + "md5": "1fe8f9d82e577676a0d68fd6a5349630" + }, + { + "authorized_access_point": "Intensivpflege", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4161963-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041619633" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4161963-8" + } + ], + "identifier": "http://d-nb.info/gnd/4161963-8", + "exactMatch": [ + { + "authorized_access_point": "Intensive care nursing", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133738958" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85067185" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85067185" + } + ] + }, + { + "authorized_access_point": "Soins infirmiers en soins intensifs", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133738958" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12245931" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12245931k" + } + ] + } + ], + "pid": "041619633", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Krankenpflege" + } + ], + "variant_access_point": [ + "Critical care nursing" + ], + "md5": "ce6ffd1bfcf465a5a5f0870507ed882f" + }, + { + "authorized_access_point": "Integriertes Bauelement", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4161936-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041619366" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4161936-5" + } + ], + "identifier": "http://d-nb.info/gnd/4161936-5", + "closeMatch": [ + { + "authorized_access_point": "Microelectromechanical systems", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134739672" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh97007351" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh97007351" + } + ] + }, + { + "authorized_access_point": "Syste\u0300mes microe\u0301lectrome\u0301caniques", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134739672" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13602331" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb136023316" + } + ] + } + ], + "pid": "041619366", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bauelement" + } + ], + "md5": "de079d297f3fa24e78fa074768606a92" + }, + { + "authorized_access_point": "Inhaberschuldverschreibung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4161726-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041617266" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4161726-5" + } + ], + "identifier": "http://d-nb.info/gnd/4161726-5", + "pid": "041617266", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Anleihe" + }, + { + "authorized_access_point": "Inhaberpapier" + } + ], + "variant_access_point": [ + "Schuldverschreibung auf den Inhaber", + "Bearer bond" + ], + "md5": "ae76dccdc0c90e55aec52636e3c4a00e" + }, + { + "authorized_access_point": "Inelastisches Tragwerk", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4161637-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041616375" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4161637-6" + } + ], + "identifier": "http://d-nb.info/gnd/4161637-6", + "pid": "041616375", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tragwerk" + } + ], + "variant_access_point": [ + "Starres Tragwerk" + ], + "md5": "3358bd85a6c0068e37a26094050f9ce7" + }, + { + "authorized_access_point": "Ikat", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4161246-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041612469" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4161246-2" + } + ], + "identifier": "http://d-nb.info/gnd/4161246-2", + "closeMatch": [ + { + "authorized_access_point": "Ikat", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133982174" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85064235" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85064235" + } + ] + }, + { + "authorized_access_point": "Ikat", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133982174" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11953399" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11953399b" + } + ] + } + ], + "pid": "041612469", + "type": "bf:Topic", + "md5": "de5ba5d4503b99ed3d7a768253a19f63" + }, + { + "authorized_access_point": "Humorist", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4160798-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041607988" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4160798-3" + } + ], + "identifier": "http://d-nb.info/gnd/4160798-3", + "pid": "041607988", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Humoristin" + } + ], + "md5": "b7a6abef584a557d30a47d0790c444f3" + }, + { + "authorized_access_point": "Homogene Katalyse", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4160579-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041605799" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4160579-2" + } + ], + "identifier": "http://d-nb.info/gnd/4160579-2", + "closeMatch": [ + { + "authorized_access_point": "Homogeneous catalysis", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134085923" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2014001146" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2014001146" + } + ] + }, + { + "authorized_access_point": "Catalyse homoge\u0300ne", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134085923" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11991895" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11991895p" + } + ] + } + ], + "pid": "041605799", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Katalyse" + } + ], + "md5": "5056620d9c07c40c75a7d2c1f5284612" + }, + { + "authorized_access_point": "Hodenkrebs", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4160317-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041603176" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4160317-5" + } + ], + "identifier": "http://d-nb.info/gnd/4160317-5", + "exactMatch": [ + { + "authorized_access_point": "Testis - Cancer", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134590423" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2010010377" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2010010377" + } + ] + }, + { + "authorized_access_point": "Testicular Neoplasms", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1241605815" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D013736" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D013736" + } + ] + } + ], + "pid": "041603176", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Krebs (Medizin)" + } + ], + "variant_access_point": [ + "Maligner Hodentumor" + ], + "md5": "82d9037fb6c66972b010b8a2348a994c" + }, + { + "authorized_access_point": "Hochfrequenzschaltung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4160147-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041601475" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4160147-6" + } + ], + "identifier": "http://d-nb.info/gnd/4160147-6", + "closeMatch": [ + { + "authorized_access_point": "Microwave circuits", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133676413" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85084954" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85084954" + } + ] + }, + { + "authorized_access_point": "Circuits pour microondes", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133676413" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11972999" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119729995" + } + ] + } + ], + "pid": "041601475", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Elektronische Schaltung" + } + ], + "variant_access_point": [ + "Hochfrequenz-Schaltung" + ], + "md5": "b1c64ccc46d71a533cb144ec410faf72" + }, + { + "authorized_access_point": "Hjelmslevsche Geometrie", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4160062-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041600622" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4160062-9" + } + ], + "identifier": "http://d-nb.info/gnd/4160062-9", + "pid": "041600622", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Geometrie" + } + ], + "md5": "cf4f6fc8f6d200b5d1dab81445e591a9" + }, + { + "authorized_access_point": "Historische Grammatik", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4160001-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041600010" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4160001-0" + } + ], + "identifier": "http://d-nb.info/gnd/4160001-0", + "closeMatch": [ + { + "authorized_access_point": "Grammaire historique", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134037708" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11975748" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11975748f" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Verwendet fu\u0308r Gesamtdarstellungen; bei zeitlich und/oder sachlich eingeschra\u0308nkten Darstellungen verwende Geschichte mit Jahreszahl und ggf. zusa\u0308tzliches Sach-SW." + ] + } + ], + "pid": "041600010", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Grammatik" + }, + { + "authorized_access_point": "Sprachwandel" + } + ], + "variant_access_point": [ + "Grammatik" + ], + "md5": "5b5b54d947c411c524efd4c3de77c3cf" + }, + { + "authorized_access_point": "Herpesviren", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4159627-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041596277" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4159627-4" + } + ], + "identifier": "http://d-nb.info/gnd/4159627-4", + "closeMatch": [ + { + "authorized_access_point": "Herpesviruses", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113400849X" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85060462" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85060462" + } + ] + }, + { + "authorized_access_point": "Herpesviride\u0301s", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113400849X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11965282" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119652821" + } + ] + }, + { + "authorized_access_point": "Herpesviridae", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254328882" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "5356" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/5356" + } + ] + }, + { + "authorized_access_point": "Virus del herpes", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254439528" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX533805" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX533805" + } + ] + } + ], + "pid": "041596277", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Viren" + } + ], + "variant_access_point": [ + "Herpesviridae" + ], + "md5": "0ff4ce962512fc2904a55e66206d78e0" + }, + { + "authorized_access_point": "Hepatitis-Assoziiertes Antigen", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4159550-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041595505" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4159550-6" + } + ], + "identifier": "http://d-nb.info/gnd/4159550-6", + "closeMatch": [ + { + "authorized_access_point": "Hepatitis associated antigen", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133688675" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85060294" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85060294" + } + ] + }, + { + "authorized_access_point": "Antige\u0300ne Australia", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133688675" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11979078" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11979078d" + } + ] + }, + { + "authorized_access_point": "Antigene Australia", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)125435199X" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "22623" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/22623" + } + ] + } + ], + "pid": "041595505", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Antigen" + } + ], + "variant_access_point": [ + "HAA" + ], + "md5": "baa3eef9dbd5f38e277d07b1ba84c123" + }, + { + "authorized_access_point": "Gro\u00dfpolnisch", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4158296-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041582969" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4158296-2" + } + ], + "identifier": "http://d-nb.info/gnd/4158296-2", + "pid": "041582969", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Polnisch" + } + ], + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "variant_access_point": [ + "Mundart Polnisch (Gro\u00dfpolen)" + ], + "md5": "db03364fc8240d830c8787f04d7ad31a" + }, + { + "authorized_access_point": "Gro\u00dffamilie", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4158267-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041582675" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4158267-6" + } + ], + "identifier": "http://d-nb.info/gnd/4158267-6", + "closeMatch": [ + { + "authorized_access_point": "Extended families", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1270440217" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2005004783" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2005004783" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Gro\u00dffamilie", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970555512" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10043232" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10043232" + } + ] + }, + { + "authorized_access_point": "Mehrgenerationenfamilie", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970572069" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10043230" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10043230" + } + ] + } + ], + "pid": "041582675", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Familie" + } + ], + "variant_access_point": [ + "Mehrgenerationenfamilie", + "Mehrgenerationenverband" + ], + "md5": "e2c8d2ee1a24415ea01add25b1ccd399" + }, + { + "authorized_access_point": "Gro\u00dfe Seenadel", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4158250-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041582500" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4158250-0" + } + ], + "identifier": "http://d-nb.info/gnd/4158250-0", + "closeMatch": [ + { + "authorized_access_point": "Syngnathe aiguille", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)133348982X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17818710" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17818710w" + } + ] + } + ], + "pid": "041582500", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Seenadeln" + } + ], + "variant_access_point": [ + "Syngnathus acus" + ], + "md5": "ffdf42a46cafbfc23cab695ab7ea1b7b" + }, + { + "authorized_access_point": "Grammatikunterricht", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4158017-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041580176" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4158017-5" + } + ], + "identifier": "http://d-nb.info/gnd/4158017-5", + "closeMatch": [ + { + "authorized_access_point": "Grammar, Comparative and general - Study and teaching", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134169531" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2008118370" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2008118370" + } + ] + }, + { + "authorized_access_point": "Grammaire - E\u0301tude et enseignement", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134169531" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12110550" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12110550r" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Nur f. sprachenu\u0308bergreifende Sachverhalte, sonst verkn. z.B. Deutsch; Grammatik ; Deutschunterricht" + ] + } + ], + "pid": "041580176", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Sprachunterricht" + } + ], + "md5": "88f4fccaada6ef144bf04bea2744541a" + }, + { + "authorized_access_point": "Gottesurteil", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4157955-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041579550" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4157955-0" + } + ], + "identifier": "http://d-nb.info/gnd/4157955-0", + "closeMatch": [ + { + "authorized_access_point": "Ordeal", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134373848" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85095346" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85095346" + } + ] + }, + { + "authorized_access_point": "Ordalie", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134373848" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12647532" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb126475320" + } + ] + } + ], + "pid": "041579550", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Urteil" + } + ], + "variant_access_point": [ + "Gottesgericht (Gottesurteil)", + "Ordal" + ], + "md5": "0f5ce2145480aad80b2db26d5103cfda" + }, + { + "authorized_access_point": "Gnome", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4157776-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041577760" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4157776-0" + } + ], + "identifier": "http://d-nb.info/gnd/4157776-0", + "note": [ + { + "noteType": "general", + "label": [ + "Form der Lehrdichtung in allen Literaturen, besonders auf der a\u0308lteren Stufe ihrer Entwicklung" + ] + } + ], + "pid": "041577760", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Sinnspruch" + }, + { + "authorized_access_point": "Gnomologie" + } + ], + "related": [ + { + "authorized_access_point": "Sentenz" + } + ], + "md5": "1f4b8b1176beedaf88c1118cd58c8727" + }, + { + "authorized_access_point": "Ginzburg-Landau-Theorie", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4157357-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041573579" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4157357-2" + } + ], + "identifier": "http://d-nb.info/gnd/4157357-2", + "closeMatch": [ + { + "authorized_access_point": "The\u0301orie de Ginzburg-Landau", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333593597" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16534388" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16534388h" + } + ] + } + ], + "pid": "041573579", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Supraleitung" + } + ], + "related": [ + { + "authorized_access_point": "Ginzburg-Landau-Gleichung" + }, + { + "authorized_access_point": "Landau-Theorie" + } + ], + "variant_access_point": [ + "Ginsburg-Landau-Theorie" + ], + "md5": "6660092fff460f694d8ba77723b6006f" + }, + { + "authorized_access_point": "Geschoss", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4157031-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041570316" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4157031-5" + } + ], + "identifier": "http://d-nb.info/gnd/4157031-5", + "closeMatch": [ + { + "authorized_access_point": "Projectiles", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334236135" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85107374" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85107374" + } + ] + }, + { + "authorized_access_point": "Projectiles", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334236135" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13318836" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13318836f" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "ohne HZ fu\u0308r den Sprengko\u0308rper" + ] + } + ], + "pid": "041570316", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Munition" + } + ], + "md5": "3d550bedc073b44fdf1b9cee09fd671c" + }, + { + "authorized_access_point": "Geschlechtsangleichung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4157015-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041570154" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4157015-7" + } + ], + "identifier": "http://d-nb.info/gnd/4157015-7", + "closeMatch": [ + { + "authorized_access_point": "Re\u0301assignation sexuelle", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332649548" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11980654" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119806543" + } + ] + }, + { + "authorized_access_point": "Transexualismo", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254434836" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX533275" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX533275" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Medizinische Ma\u00dfnahmen zur Anpassung der Geschlechtsmerkmale an die Geschlechtsidentita\u0308t" + ] + } + ], + "pid": "041570154", + "type": "bf:Topic", + "variant_access_point": [ + "Geschlechtsumwandlung", + "Geschlechtsmerkmale", + "Geschlechtstransformation" + ], + "md5": "a267bdedbded004f7b8e7a0b16cadfd3" + }, + { + "authorized_access_point": "Gemu\u0308severarbeitung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4156576-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041565762" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4156576-9" + } + ], + "identifier": "http://d-nb.info/gnd/4156576-9", + "closeMatch": [ + { + "authorized_access_point": "Le\u0301gumes - Transformation", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134033109" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11973827" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119738278" + } + ] + } + ], + "pid": "041565762", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Agrarproduktverarbeitung" + } + ], + "variant_access_point": [ + "Gemu\u0308severwertung", + "Gemu\u0308se", + "Gemu\u0308se" + ], + "md5": "c742022e88df2c7da423e48ae0168173" + }, + { + "authorized_access_point": "Geier", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4156340-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041563409" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4156340-2" + } + ], + "identifier": "http://d-nb.info/gnd/4156340-2", + "closeMatch": [ + { + "authorized_access_point": "Vultures", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133665144" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85144471" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85144471" + } + ] + }, + { + "authorized_access_point": "Vautours", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133665144" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11965079" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11965079k" + } + ] + } + ], + "pid": "041563409", + "type": "bf:Topic", + "md5": "16de8328fa832b43ab735d157cf020e3" + }, + { + "authorized_access_point": "Galagos (Familie)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4155812-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04155812X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4155812-1" + } + ], + "identifier": "http://d-nb.info/gnd/4155812-1", + "closeMatch": [ + { + "authorized_access_point": "Galagos", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133871852" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh90005631" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh90005631" + } + ] + }, + { + "authorized_access_point": "Galagide\u0301s", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133871852" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13571216" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb135712162" + } + ] + } + ], + "pid": "04155812X", + "type": "bf:Topic", + "variant_access_point": [ + "Buschbabies", + "Galagidae" + ], + "md5": "ab18a432abebffde01c9ad3431458163" + }, + { + "authorized_access_point": "Galago", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4155810-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041558103" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4155810-8" + } + ], + "identifier": "http://d-nb.info/gnd/4155810-8", + "closeMatch": [ + { + "authorized_access_point": "Galago (Genus)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133871860" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85052750" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85052750" + } + ] + }, + { + "authorized_access_point": "Galago (genre)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133871860" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13571222" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb135712220" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Gattung" + ] + } + ], + "pid": "041558103", + "type": "bf:Topic", + "variant_access_point": [ + "Buschbaby" + ], + "md5": "93788ab38f2c69387f8797959f175b9b" + }, + { + "authorized_access_point": "Funktionstest", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4155698-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041556984" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4155698-7" + } + ], + "identifier": "http://d-nb.info/gnd/4155698-7", + "pid": "041556984", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Pru\u0308ftechnik" + } + ], + "variant_access_point": [ + "Funktionspru\u0308fung", + "Funktionskontrolle" + ], + "md5": "7cbff930e8c40bac75183e6dd8bebb02" + }, + { + "authorized_access_point": "Fructoselysin", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4155525-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041555252" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4155525-9" + } + ], + "identifier": "http://d-nb.info/gnd/4155525-9", + "pid": "041555252", + "type": "bf:Topic", + "md5": "4c1e81c98752cea74440a697fd1adc8c" + }, + { + "authorized_access_point": "Datenerhebung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4155272-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041552725" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4155272-6" + } + ], + "identifier": "http://d-nb.info/gnd/4155272-6", + "exactMatch": [ + { + "authorized_access_point": "Datenerhebung", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)966977858" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "15115-1" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/15115-1" + } + ] + }, + { + "authorized_access_point": "Datengewinnung", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970542453" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10040547" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10040547" + } + ] + } + ], + "pid": "041552725", + "type": "bf:Topic", + "variant_access_point": [ + "Erhebung (Statistik)", + "Statistische Erhebung", + "Datenbeschaffung", + "Datengewinnung", + "Datenproduktion", + "Datengenerierung" + ], + "md5": "a4269b3887af21cbb5025f090e93e865" + }, + { + "authorized_access_point": "Frauenhaus", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4155233-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041552334" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4155233-7" + } + ], + "identifier": "http://d-nb.info/gnd/4155233-7", + "closeMatch": [ + { + "authorized_access_point": "Women's shelters", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134287275" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh87003395" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh87003395" + } + ] + }, + { + "authorized_access_point": "Centres d'he\u0301bergement pour femmes", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134287275" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12346055" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12346055h" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Frauenhaus", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970550995" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10044115" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10044115" + } + ] + } + ], + "pid": "041552334", + "type": "bf:Topic", + "variant_access_point": [ + "Frauenzufluchtsta\u0308tte" + ], + "md5": "7938a895f8a80d8debc73851b58369ca" + }, + { + "authorized_access_point": "Fo\u0308rderwagen", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4154945-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041549457" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4154945-4" + } + ], + "identifier": "http://d-nb.info/gnd/4154945-4", + "pid": "041549457", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Wagen" + } + ], + "variant_access_point": [ + "Grubenwagen", + "Grubenhund" + ], + "md5": "cc8b721ef0f9a23ea48764229956803d" + }, + { + "authorized_access_point": "Filmkritikerin", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4154368-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041543688" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4154368-3" + } + ], + "identifier": "http://d-nb.info/gnd/4154368-3", + "closeMatch": [ + { + "authorized_access_point": "Women film critics", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331760828" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85147650" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85147650" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Als Homonymenzusatz bei Personenschlagworten zugelassen." + ] + } + ], + "pid": "041543688", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Filmkritiker" + } + ], + "variant_access_point": [ + "Filmpublizistin" + ], + "md5": "1168b66314eaba33357a9d030d1754bc" + }, + { + "authorized_access_point": "Fernsehkritiker", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4154065-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041540654" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4154065-7" + } + ], + "identifier": "http://d-nb.info/gnd/4154065-7", + "closeMatch": [ + { + "authorized_access_point": "Critiques de te\u0301le\u0301vision", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331761379" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12423928" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb124239284" + } + ] + } + ], + "pid": "041540654", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kritiker" + } + ], + "md5": "d2d62be36044ab00a2703e4111219922" + }, + { + "authorized_access_point": "Fernmeldesatellit", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4154038-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041540387" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4154038-4" + } + ], + "identifier": "http://d-nb.info/gnd/4154038-4", + "pid": "041540387", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kommunikationssatellit" + } + ], + "md5": "9eb8497380ca7b68259ac4dd1bbd878d" + }, + { + "authorized_access_point": "Feldlerche", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4153934-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041539346" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4153934-5" + } + ], + "identifier": "http://d-nb.info/gnd/4153934-5", + "closeMatch": [ + { + "authorized_access_point": "Skylark", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)133349419X" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85123262" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85123262" + } + ] + }, + { + "authorized_access_point": "Alouette des champs", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)133349419X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16670535" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16670535h" + } + ] + } + ], + "pid": "041539346", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Lerchen" + } + ], + "variant_access_point": [ + "Alauda arvensis" + ], + "md5": "aff8976b2d48450d002c31ca504cd29d" + }, + { + "authorized_access_point": "Fatras", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4153788-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041537882" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4153788-9" + } + ], + "identifier": "http://d-nb.info/gnd/4153788-9", + "pid": "041537882", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Franzo\u0308sisch" + } + ], + "md5": "d72b44345a051c061b51c0abc76076db" + }, + { + "authorized_access_point": "Erotisches Lied", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4152862-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04152862X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4152862-1" + } + ], + "identifier": "http://d-nb.info/gnd/4152862-1", + "closeMatch": [ + { + "authorized_access_point": "Erotic songs", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331605989" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85044707" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85044707" + } + ] + } + ], + "pid": "04152862X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Lied" + }, + { + "authorized_access_point": "Erotische Literatur" + } + ], + "md5": "11125e8d807c6926a2aed72661a0d076" + }, + { + "authorized_access_point": "Erotische Erza\u0308hlung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4152856-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041528565" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4152856-6" + } + ], + "identifier": "http://d-nb.info/gnd/4152856-6", + "closeMatch": [ + { + "authorized_access_point": "Erotic stories", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134530471" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85044708" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85044708" + } + ] + }, + { + "authorized_access_point": "Nouvelles e\u0301rotiques", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134530471" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16932431" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb169324311" + } + ] + }, + { + "authorized_access_point": "Narrativa erotica", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254325360" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "3493" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/3493" + } + ] + }, + { + "authorized_access_point": "Canciones ero\u0301ticas", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254425748" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX4718660" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX4718660" + } + ] + }, + { + "authorized_access_point": "Cuentos ero\u0301ticos", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254425756" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX539152" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX539152" + } + ] + } + ], + "pid": "041528565", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Erza\u0308hlung" + }, + { + "authorized_access_point": "Erotische Literatur" + } + ], + "md5": "9f96ded349bbc4bee8e9ddec9fa45f43" + }, + { + "authorized_access_point": "Ereignis", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4152718-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041527186" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4152718-5" + } + ], + "identifier": "http://d-nb.info/gnd/4152718-5", + "closeMatch": [ + { + "authorized_access_point": "E\u0301ve\u0301nement", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113483179X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12066490" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb120664901" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Ereignis", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1024424219" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10069227" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10069227" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Verknu\u0308pfe mit Anwendungsgebiet" + ] + } + ], + "pid": "041527186", + "type": "bf:Topic", + "variant_access_point": [ + "Ereignisse" + ], + "md5": "fc27e7f6f9ae5166db2bd261b143c152" + }, + { + "authorized_access_point": "Erdo\u0308lversorgung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4152706-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041527062" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4152706-9" + } + ], + "identifier": "http://d-nb.info/gnd/4152706-9", + "closeMatch": [ + { + "authorized_access_point": "Pe\u0301trole - Industrie et commerce - Politique publique", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134494394" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12221792" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12221792v" + } + ] + } + ], + "pid": "041527062", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Energieversorgung" + } + ], + "variant_access_point": [ + "Erdo\u0308l", + "O\u0308lversorgung", + "Erdo\u0308l" + ], + "md5": "b58f8958a7acdae774bbd0734b7841e5" + }, + { + "authorized_access_point": "Endothelzelle", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4152192-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041521927" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4152192-4" + } + ], + "identifier": "http://d-nb.info/gnd/4152192-4", + "closeMatch": [ + { + "authorized_access_point": "Cellules endothe\u0301liales", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134405677" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF14418045" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb14418045h" + } + ] + } + ], + "pid": "041521927", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Endothel" + } + ], + "md5": "872662f96db598c8b6287c7f38395a3e" + }, + { + "authorized_access_point": "Eigenschaft", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4151179-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041511794" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4151179-7" + } + ], + "identifier": "http://d-nb.info/gnd/4151179-7", + "closeMatch": [ + { + "authorized_access_point": "Character", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134831773" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85022615" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85022615" + } + ] + } + ], + "pid": "041511794", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Merkmal" + } + ], + "variant_access_point": [ + "Charakteristische Eigenschaft" + ], + "md5": "a599f9780e86b67418190e6a2bfc2d77" + }, + { + "authorized_access_point": "Ehrlichkeit", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4151136-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041511360" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4151136-0" + } + ], + "identifier": "http://d-nb.info/gnd/4151136-0", + "closeMatch": [ + { + "authorized_access_point": "Honesty", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134060467" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85061841" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85061841" + } + ] + }, + { + "authorized_access_point": "Honne\u0302tete\u0301", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134060467" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11979799" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119797999" + } + ] + }, + { + "authorized_access_point": "Onesta\u0300", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254327169" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "4444" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/4444" + } + ] + } + ], + "pid": "041511360", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Unehrlichkeit" + } + ], + "variant_access_point": [ + "Ehrenhaftigkeit" + ], + "md5": "affaff344e30c93de6e5e2dac3ffcfbb" + }, + { + "authorized_access_point": "Dualisierender Komplex", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4150798-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041507983" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4150798-8" + } + ], + "identifier": "http://d-nb.info/gnd/4150798-8", + "pid": "041507983", + "type": "bf:Topic", + "md5": "ddbdc5bae25f8c91fcb88d3b171c1582" + }, + { + "authorized_access_point": "Dreikronenkrieg", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4150658-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041506588" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4150658-3" + } + ], + "identifier": "http://d-nb.info/gnd/4150658-3", + "exactMatch": [ + { + "authorized_access_point": "Northern Seven Years' War, 1563-1570", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1230558713" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85092571" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85092571" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Dreikronenkrieg&oldid=210977439" + ] + } + ], + "pid": "041506588", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Krieg" + } + ], + "variant_access_point": [ + "Nordischer Siebenja\u0308hriger Krieg", + "Nordischer Krieg (1563-1570)" + ], + "md5": "e1e15cf28cc67c74a38f62570dc0bb4b" + }, + { + "authorized_access_point": "Draht", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4150519-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041505190" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4150519-0" + } + ], + "identifier": "http://d-nb.info/gnd/4150519-0", + "closeMatch": [ + { + "authorized_access_point": "Wire", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133785778" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85147059" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85147059" + } + ] + }, + { + "authorized_access_point": "Fil me\u0301tallique", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133785778" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12384189" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12384189f" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Draht", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)966723422" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "14262-0" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/14262-0" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "In der Regel Kompositumbildung mit dem Material." + ] + } + ], + "pid": "041505190", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "!041253906" + } + ], + "md5": "052b9a075d3fadd062ce864b04c806d7" + }, + { + "authorized_access_point": "Dotierter Halbleiter", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4150492-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041504925" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4150492-6" + } + ], + "identifier": "http://d-nb.info/gnd/4150492-6", + "closeMatch": [ + { + "authorized_access_point": "Doped semiconductors", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134155425" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85039078" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85039078" + } + ] + }, + { + "authorized_access_point": "Semiconducteurs dope\u0301s", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134155425" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12088361" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb120883612" + } + ] + }, + { + "authorized_access_point": "Semiconduttori estrinseci", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254377913" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "44844" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/44844" + } + ] + } + ], + "pid": "041504925", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Halbleiter" + } + ], + "variant_access_point": [ + "Sto\u0308rstellenhalbleiter" + ], + "md5": "a0c04dbbe13dde98174884ff35185b41" + }, + { + "authorized_access_point": "Dispens", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4150195-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041501950" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4150195-0" + } + ], + "identifier": "http://d-nb.info/gnd/4150195-0", + "closeMatch": [ + { + "authorized_access_point": "Dispensations (Canon law)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134024851" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85038453" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85038453" + } + ] + }, + { + "authorized_access_point": "Dispenses (droit canonique)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134024851" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11971132" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11971132f" + } + ] + }, + { + "authorized_access_point": "Dispensa canonica", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254336435" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "11079" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/11079" + } + ] + }, + { + "authorized_access_point": "Dispensas (Derecho cano\u0301nico)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)125442069X" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX537578" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX537578" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Ein Dispens ist die in der Regel einzelfallbezogene Aufhebung einer Rechtspflicht." + ] + } + ], + "pid": "041501950", + "type": "bf:Topic", + "variant_access_point": [ + "Befreiung (Recht)", + "Aussetzung (Recht)", + "Ausnahmebewilligung" + ], + "md5": "605bcf6cd295d865f892330bc40d9ac2" + }, + { + "authorized_access_point": "Diskofox", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4150160-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041501608" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4150160-3" + } + ], + "identifier": "http://d-nb.info/gnd/4150160-3", + "closeMatch": [ + { + "authorized_access_point": "Hustle (Dance)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134576595" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85063225" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85063225" + } + ] + }, + { + "authorized_access_point": "Hustle (danse)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134576595" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16710437" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16710437v" + } + ] + } + ], + "pid": "041501608", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Foxtrott" + } + ], + "variant_access_point": [ + "Beatfox", + "Discofox" + ], + "md5": "ab80a53babb8a200047e0ab4a6d64981" + }, + { + "authorized_access_point": "Differentialtransformator", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4149784-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041497848" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4149784-3" + } + ], + "identifier": "http://d-nb.info/gnd/4149784-3", + "pid": "041497848", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Transformator" + } + ], + "md5": "f8aeb6cb99e2353ec42a4ee4aa2eef44" + }, + { + "authorized_access_point": "Dieb", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4149711-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041497112" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4149711-9" + } + ], + "identifier": "http://d-nb.info/gnd/4149711-9", + "closeMatch": [ + { + "authorized_access_point": "Thieves", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331708486" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85134855" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85134855" + } + ] + }, + { + "authorized_access_point": "Voleurs", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331708486" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13319307" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13319307q" + } + ] + }, + { + "authorized_access_point": "Ladri", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254344241" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "17481" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/17481" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Als Homonymenzusatz bei Personenschlagwo\u0308rtern wird Krimineller verwendet" + ] + } + ], + "pid": "041497112", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Krimineller" + } + ], + "related": [ + { + "authorized_access_point": "Diebin" + }, + { + "authorized_access_point": "Diebstahl" + } + ], + "md5": "a85b7253c8dedfe59d6aa8711ceebeb3" + }, + { + "authorized_access_point": "Denaturieren", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4149067-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041490673" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4149067-8" + } + ], + "identifier": "http://d-nb.info/gnd/4149067-8", + "closeMatch": [ + { + "authorized_access_point": "Denaturation", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134325207" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh99005506" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh99005506" + } + ] + }, + { + "authorized_access_point": "De\u0301naturation (chimie)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134325207" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12437686" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12437686n" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "denaturation", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1256204498" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "2178" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_2178" + } + ] + } + ], + "pid": "041490673", + "type": "bf:Topic", + "variant_access_point": [ + "Denaturierung (Biochemie)" + ], + "md5": "8ecd3a593b99027fb3c6adf6c59e6b30" + }, + { + "authorized_access_point": "Defektelektron", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4148983-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041489837" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4148983-4" + } + ], + "identifier": "http://d-nb.info/gnd/4148983-4", + "pid": "041489837", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ladungstra\u0308ger" + } + ], + "variant_access_point": [ + "Loch (Halbleiterphysik)" + ], + "md5": "c2b15b9415a48603649ec1de1c2bdd97" + }, + { + "authorized_access_point": "Crazing", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4148362-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041483626" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4148362-5" + } + ], + "identifier": "http://d-nb.info/gnd/4148362-5", + "closeMatch": [ + { + "authorized_access_point": "Fissuration", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113404111X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11976355" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11976355v" + } + ] + } + ], + "pid": "041483626", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Werkstoffscha\u0308digung" + } + ], + "variant_access_point": [ + "Crazebildung" + ], + "md5": "1cc1f092f95ade7a271c2ccc5bc2431b" + }, + { + "authorized_access_point": "Chorhaupt", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4147901-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041479017" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4147901-4" + } + ], + "identifier": "http://d-nb.info/gnd/4147901-4", + "closeMatch": [ + { + "authorized_access_point": "Chevets", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334557462" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2006008364" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2006008364" + } + ] + }, + { + "authorized_access_point": "Chevets (architecture)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334557462" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF15043419" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb15043419x" + } + ] + } + ], + "pid": "041479017", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Chorraum" + } + ], + "md5": "b2897f6fb2a3a5e843bc839020899e34" + }, + { + "authorized_access_point": "Brutvo\u0308gel", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4146776-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041467760" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4146776-0" + } + ], + "identifier": "http://d-nb.info/gnd/4146776-0", + "closeMatch": [ + { + "authorized_access_point": "Endemic birds", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134790635" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2007010954" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2007010954" + } + ] + }, + { + "authorized_access_point": "Oiseaux nicheurs", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134790635" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12352687" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb123526871" + } + ] + } + ], + "pid": "041467760", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Vo\u0308gel" + } + ], + "variant_access_point": [ + "Brutvogel", + "Einheimische Vo\u0308gel" + ], + "md5": "980d6f230967685bc95f5fe39b439b6d" + }, + { + "authorized_access_point": "Bornavirus", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4146351-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04146351X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4146351-1" + } + ], + "identifier": "http://d-nb.info/gnd/4146351-1", + "closeMatch": [ + { + "authorized_access_point": "Virus de la maladie de Borna", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133805108" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12469236" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb124692363" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Borna disease virus", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1256199036" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "18805" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_18805" + } + ] + } + ], + "pid": "04146351X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bornaviridae" + } + ], + "related": [ + { + "authorized_access_point": "Borna-Krankheit" + } + ], + "variant_access_point": [ + "Borna disease virus", + "BDV" + ], + "md5": "fd09c8276683cb238e1ed431fe0dccc7" + }, + { + "authorized_access_point": "Borel-Untergruppe", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4146325-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041463250" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4146325-0" + } + ], + "identifier": "http://d-nb.info/gnd/4146325-0", + "closeMatch": [ + { + "authorized_access_point": "Borel subgroups", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333592582" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh87007016" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh87007016" + } + ] + } + ], + "pid": "041463250", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Untergruppe" + } + ], + "md5": "7ce93c850eb812e23223c1b69ca0d276" + }, + { + "authorized_access_point": "Bohrung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4146246-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041462467" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4146246-4" + } + ], + "identifier": "http://d-nb.info/gnd/4146246-4", + "closeMatch": [ + { + "authorized_access_point": "Boring", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134044232" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85015851" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85015851" + } + ] + }, + { + "authorized_access_point": "Forage", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134044232" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11976902" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11976902x" + } + ] + }, + { + "authorized_access_point": "Perforazione", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254340750" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "14775" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/14775" + } + ] + }, + { + "authorized_access_point": "Perforacio\u0301n y sondeo", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254413731" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX526227" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX526227" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "benutzt fu\u0308r das Ergebnis des Bohrens" + ] + } + ], + "pid": "041462467", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bohren" + } + ], + "md5": "1eeecd8483ae02b69b731baf25b3025c" + }, + { + "authorized_access_point": "Biphenyl", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4145662-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041456629" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4145662-2" + } + ], + "identifier": "http://d-nb.info/gnd/4145662-2", + "closeMatch": [ + { + "authorized_access_point": "Biphe\u0301nyles", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134598122" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12364695" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12364695b" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "biphenyl", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1256197475" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "933" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_933" + } + ] + } + ], + "pid": "041456629", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Biaryle" + } + ], + "variant_access_point": [ + "Diphenyl", + "Phenylbenzol" + ], + "md5": "67eea30917585e565d6f69490505537d" + }, + { + "authorized_access_point": "Biobibliografie", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4145590-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041455908" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4145590-3" + } + ], + "identifier": "http://d-nb.info/gnd/4145590-3", + "closeMatch": [ + { + "authorized_access_point": "Bio-bibliography", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133681530" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85014117" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85014117" + } + ] + }, + { + "authorized_access_point": "Biobibliographie", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133681530" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11976253" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11976253w" + } + ] + }, + { + "authorized_access_point": "Biobibliografi\u0301as", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254412220" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX525759" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX525759" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Nicht als FormSW verwendet, hierfu\u0308r f Bibliografie" + ] + } + ], + "pid": "041455908", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Personalbibliografie" + } + ], + "variant_access_point": [ + "Biobibliographie" + ], + "md5": "9a8ee6336ea92e65cacbb49778ec3cc7" + }, + { + "authorized_access_point": "Bildtelefonie", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4145412-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04145412X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4145412-1" + } + ], + "identifier": "http://d-nb.info/gnd/4145412-1", + "closeMatch": [ + { + "authorized_access_point": "Video telephone", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134060017" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85143224" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85143224" + } + ] + }, + { + "authorized_access_point": "Videoconferencing", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134592973" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh88004839" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh88004839" + } + ] + }, + { + "authorized_access_point": "Visioconfe\u0301rences", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134592973" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12192080" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12192080f" + } + ] + }, + { + "authorized_access_point": "Vide\u0301ocommunications", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134592965" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12129502" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb121295028" + } + ] + }, + { + "authorized_access_point": "Visiophone", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134060017" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11979698" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11979698p" + } + ] + } + ], + "pid": "04145412X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Telefonieren" + } + ], + "variant_access_point": [ + "Bildtelephonie", + "Bildfernsprechen" + ], + "md5": "ff9383b36014087646c22e65bf9243a0" + }, + { + "authorized_access_point": "Beweiserhebungsverbot", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4145173-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041451732" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4145173-9" + } + ], + "identifier": "http://d-nb.info/gnd/4145173-9", + "pid": "041451732", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Beweisverbot" + } + ], + "variant_access_point": [ + "Beweisgewinnungsverbot" + ], + "md5": "79ec53192cfc6de9002510735489e172" + }, + { + "authorized_access_point": "Bestechung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4144934-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041449347" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4144934-4" + } + ], + "identifier": "http://d-nb.info/gnd/4144934-4", + "exactMatch": [ + { + "authorized_access_point": "Korruption", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970565925" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10038818" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10038818" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Benutzt fu\u0308r alle Bestechungstatbesta\u0308nde (\u00a7\u00a7 299 ff, 331-335a StGB), die Schlagwo\u0308rter Amtstra\u0308ger oder Angestellter sind nicht pleonastisch." + ] + } + ], + "pid": "041449347", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Korruption" + } + ], + "related": [ + { + "authorized_access_point": "Schmiergeld" + } + ], + "variant_access_point": [ + "Bestechlichkeit", + "Bestechungsdelikt", + "Vorteilsannahme", + "Vorteilsgewa\u0308hrung" + ], + "md5": "14541141d9a7b9fb99cd1a4bc983a72e" + }, + { + "authorized_access_point": "Beschleunigungssensor", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4144872-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041448723" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4144872-8" + } + ], + "identifier": "http://d-nb.info/gnd/4144872-8", + "closeMatch": [ + { + "authorized_access_point": "Accelerometers", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134629885" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85000350" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85000350" + } + ] + }, + { + "authorized_access_point": "Acce\u0301le\u0301rome\u0300tres", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134629885" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12520647" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb125206471" + } + ] + } + ], + "pid": "041448723", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Sensor" + } + ], + "related": [ + { + "authorized_access_point": "Beschleunigungsmesser" + } + ], + "variant_access_point": [ + "Beschleunigungsaufnehmer", + "Tra\u0308gheitssensor", + "Schwingungsaufnehmer", + "Vibrationsaufnehmer" + ], + "md5": "6f92e3df4337009b9206ec33aa30168b" + }, + { + "authorized_access_point": "Benzin-Methanol-Mischkraftstoff", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4144512-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041445120" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4144512-0" + } + ], + "identifier": "http://d-nb.info/gnd/4144512-0", + "pid": "041445120", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Methanolkraftstoff" + } + ], + "variant_access_point": [ + "Methanol-Benzin-Mischkraftstoff" + ], + "md5": "f74805a4e64356194e08a8412490604d" + }, + { + "authorized_access_point": "Benzin-Alkohol-Mischkraftstoff", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4144508-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041445082" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4144508-9" + } + ], + "identifier": "http://d-nb.info/gnd/4144508-9", + "pid": "041445082", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kraftstoff" + } + ], + "variant_access_point": [ + "Alkohol-Benzin-Mischkraftstoff" + ], + "md5": "51245bc17404b65252d84a9148983631" + }, + { + "authorized_access_point": "Benutzerru\u0308ckmeldung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4144481-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041444817" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4144481-4" + } + ], + "identifier": "http://d-nb.info/gnd/4144481-4", + "exactMatch": [ + { + "authorized_access_point": "Nutzererfahrung", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1170172067" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "30168-0" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/30168-0" + } + ] + } + ], + "pid": "041444817", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Benutzerfreundlichkeit" + }, + { + "authorized_access_point": "Benutzererlebnis" + } + ], + "variant_access_point": [ + "Benutzerfeedback", + "Benutzer" + ], + "md5": "dff726d5a3450884331dfbc031762d7a" + }, + { + "authorized_access_point": "Benutzerforschung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4144480-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041444809" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4144480-2" + } + ], + "identifier": "http://d-nb.info/gnd/4144480-2", + "exactMatch": [ + { + "authorized_access_point": "Benutzerforschung", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970537077" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10038141" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10038141" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Empirische Untersuchung der tatsa\u0308chlichen oder auch nur potentiellen Benutzer einer wiss. Bibliothek, im Bereich der O\u0308B meist Leserforschung, im Bereich der Museen Besucherforschung genannt." + ] + } + ], + "pid": "041444809", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Benutzerverhalten" + } + ], + "variant_access_point": [ + "Besucherforschung", + "Benutzer", + "Nutzerforschung", + "Nutzer" + ], + "md5": "6f340a5be812928fd7d841bde6747e66" + }, + { + "authorized_access_point": "Belagerungszustand", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4144410-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041444108" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4144410-3" + } + ], + "identifier": "http://d-nb.info/gnd/4144410-3", + "closeMatch": [ + { + "authorized_access_point": "State of siege", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334565120" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85127508" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85127508" + } + ] + }, + { + "authorized_access_point": "E\u0301tat de sie\u0300ge", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334565120" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11978466" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119784668" + } + ] + } + ], + "pid": "041444108", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Notstandsrecht" + } + ], + "md5": "753d172d095a64f128778951de2c988f" + }, + { + "authorized_access_point": "Basse danse", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4144115-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04144115X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4144115-1" + } + ], + "identifier": "http://d-nb.info/gnd/4144115-1", + "closeMatch": [ + { + "authorized_access_point": "Basse danse (Dance)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133810888" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85012180" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85012180" + } + ] + }, + { + "authorized_access_point": "Basse danse (danse)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133810888" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12484923" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12484923w" + } + ] + } + ], + "pid": "04144115X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tanz" + } + ], + "variant_access_point": [ + "Bassedanse" + ], + "md5": "cf3b4deb9eeaf80bc1c06e3da91e7a98" + }, + { + "authorized_access_point": "Barschfische", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4144070-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041440706" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4144070-5" + } + ], + "identifier": "http://d-nb.info/gnd/4144070-5", + "closeMatch": [ + { + "authorized_access_point": "Percoi\u0308de\u0301s", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333373147" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17092938" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17092938n" + } + ] + } + ], + "pid": "041440706", + "type": "bf:Topic", + "variant_access_point": [ + "Percoidei" + ], + "md5": "26a2d6c3bd91049a3eabdcd0714fbbac" + }, + { + "authorized_access_point": "Bambusflo\u0308te", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4143968-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041439686" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4143968-5" + } + ], + "identifier": "http://d-nb.info/gnd/4143968-5", + "pid": "041439686", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Flo\u0308te" + } + ], + "md5": "be938d5faded58d4d4a9eb4d2890c349" + }, + { + "authorized_access_point": "Ausstellungsplakat", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4143651-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041436512" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4143651-9" + } + ], + "identifier": "http://d-nb.info/gnd/4143651-9", + "closeMatch": [ + { + "authorized_access_point": "Affiches d'expositions", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133809936" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12482403" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12482403d" + } + ] + } + ], + "pid": "041436512", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Plakat" + } + ], + "md5": "01f3f543e5ba87e6db99db25f4c00e2d" + }, + { + "authorized_access_point": "Halbleitergeha\u0308use", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4143472-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041434722" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4143472-9" + } + ], + "identifier": "http://d-nb.info/gnd/4143472-9", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Liste_von_Halbleitergeh%C3%A4usen&oldid=230043997" + ] + } + ], + "pid": "041434722", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Geha\u0308use" + } + ], + "variant_access_point": [ + "Chipgeha\u0308use", + "Package (Elektronik)" + ], + "md5": "4d38f6f074ab5a4d4ac6175686b98884" + }, + { + "authorized_access_point": "Antriebssteuerung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4142754-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041427548" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4142754-3" + } + ], + "identifier": "http://d-nb.info/gnd/4142754-3", + "pid": "041427548", + "type": "bf:Topic", + "variant_access_point": [ + "Antrieb (Technik)" + ], + "md5": "94c1143941a8a624506ec905e7ac37ad" + }, + { + "authorized_access_point": "Ellipsoid", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4142465-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041424654" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4142465-7" + } + ], + "identifier": "http://d-nb.info/gnd/4142465-7", + "pid": "041424654", + "type": "bf:Topic", + "md5": "b56553b024cb4576e03bbd56211bd99e" + }, + { + "authorized_access_point": "Allgemeine Versorgungsbedingungen", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4141946-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041419464" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4141946-7" + } + ], + "identifier": "http://d-nb.info/gnd/4141946-7", + "pid": "041419464", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Energieversorgung" + } + ], + "md5": "ebb39d3b9c13d7ec735b313ab73e4f75" + }, + { + "authorized_access_point": "Actinoidverbindungen", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4141333-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041413334" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4141333-7" + } + ], + "identifier": "http://d-nb.info/gnd/4141333-7", + "closeMatch": [ + { + "authorized_access_point": "Actinides - Compose\u0301s", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134252064" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12272667" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12272667n" + } + ] + } + ], + "pid": "041413334", + "type": "bf:Topic", + "md5": "a47a51f20c679a496772880d9a0e2520" + }, + { + "authorized_access_point": "Acridinfarbstoff", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4141308-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041413083" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4141308-8" + } + ], + "identifier": "http://d-nb.info/gnd/4141308-8", + "pid": "041413083", + "type": "bf:Topic", + "md5": "331a2d09583b1538b63f5283f3a0b206" + }, + { + "authorized_access_point": "Abgeschlossene Kategorie", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4141051-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041410513" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4141051-8" + } + ], + "identifier": "http://d-nb.info/gnd/4141051-8", + "pid": "041410513", + "type": "bf:Topic", + "md5": "924300a0793e0e15c084e1690a2ec86e" + }, + { + "authorized_access_point": "Tiermodell", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4140660-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041406605" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4140660-6" + } + ], + "identifier": "http://d-nb.info/gnd/4140660-6", + "closeMatch": [ + { + "authorized_access_point": "Animal models", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134047444" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh99002322" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh99002322" + } + ] + }, + { + "authorized_access_point": "Mode\u0300les animaux", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134047444" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11977453" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11977453p" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "animal models", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1256264016" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "34782" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_34782" + } + ] + }, + { + "authorized_access_point": "Models, Animal", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1241625255" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D023421" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D023421" + } + ] + } + ], + "pid": "041406605", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Modellorganismus" + } + ], + "related": [ + { + "authorized_access_point": "Tierversuch" + } + ], + "md5": "38af31cadb4c705d81f3b480d1335cf4" + }, + { + "authorized_access_point": "Fertigungsanlage", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4140388-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041403886" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4140388-5" + } + ], + "identifier": "http://d-nb.info/gnd/4140388-5", + "closeMatch": [ + { + "authorized_access_point": "Industrial equipment", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134612893" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85065869" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85065869" + } + ] + }, + { + "authorized_access_point": "E\u0301quipement industriel", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134612893" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13162966" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13162966w" + } + ] + } + ], + "pid": "041403886", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Industrieanlage" + } + ], + "variant_access_point": [ + "Fertigungseinrichtung", + "Produktionsanlage" + ], + "md5": "46729324a9b14b3d44caada4a18ad32c" + }, + { + "authorized_access_point": "Heiligungsbewegung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4140365-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041403657" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4140365-4" + } + ], + "identifier": "http://d-nb.info/gnd/4140365-4", + "closeMatch": [ + { + "authorized_access_point": "Holiness movement", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331869218" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2006006724" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2006006724" + } + ] + }, + { + "authorized_access_point": "Mouvement de sanctification", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331869218" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11968664" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11968664x" + } + ] + } + ], + "pid": "041403657", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Gemeinschaftsbewegung" + } + ], + "variant_access_point": [ + "Holiness movement" + ], + "md5": "0ea76bbf5579c3928cb2e60ddde0efd9" + }, + { + "authorized_access_point": "Kuanua", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4140152-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041401522" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4140152-9" + } + ], + "identifier": "http://d-nb.info/gnd/4140152-9", + "closeMatch": [ + { + "authorized_access_point": "Tolai language", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134153449" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85073344" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85073344" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Sprache des Tolai-Volkes in Papua-Neuguinea; au\u00dferdem Zweitsprache auf der Insel New Britain" + ] + } + ], + "pid": "041401522", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Melanesische Sprachen" + } + ], + "variant_access_point": [ + "Tuna (Sprache)", + "Gunantuna", + "Tolai (Sprache)", + "Tinata Tuna", + "Blanche Bay", + "New Britain Language", + "Tolai Tok Ples", + "Kuanua-Sprache" + ], + "md5": "685a8a48aee3515b9fdb7a0e206e1ddc" + }, + { + "authorized_access_point": "Libido", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4140090-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041400909" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4140090-2" + } + ], + "identifier": "http://d-nb.info/gnd/4140090-2", + "closeMatch": [ + { + "authorized_access_point": "Sexual instinct", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133915647" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85120738" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85120738" + } + ] + }, + { + "authorized_access_point": "Libido", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133915647" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12050215" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb120502152" + } + ] + } + ], + "pid": "041400909", + "type": "bf:Topic", + "md5": "16215926da772b47a76af0683dfc6d27" + }, + { + "authorized_access_point": "Modernita\u0308t", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4139842-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041398424" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4139842-7" + } + ], + "identifier": "http://d-nb.info/gnd/4139842-7", + "closeMatch": [ + { + "authorized_access_point": "Civilization, Modern", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134154844" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85026469" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85026469" + } + ] + }, + { + "authorized_access_point": "Modernite\u0301", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134154844" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12086863" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12086863n" + } + ] + } + ], + "pid": "041398424", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Moderne" + } + ], + "md5": "83fc1370088a865f503aeb82a5c099bf" + }, + { + "authorized_access_point": "Ha\u0308rten", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4139793-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041397932" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4139793-9" + } + ], + "identifier": "http://d-nb.info/gnd/4139793-9", + "closeMatch": [ + { + "authorized_access_point": "Trempe", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134705697" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11976092" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119760927" + } + ] + } + ], + "pid": "041397932", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Wa\u0308rmebehandlung" + } + ], + "related": [ + { + "authorized_access_point": "Ha\u0308rtbarkeit" + } + ], + "variant_access_point": [ + "Ha\u0308rtung" + ], + "md5": "faec65d939a45c03e20b3c7a6e2d5242" + }, + { + "authorized_access_point": "Bruchfestigkeit", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4139715-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041397150" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4139715-0" + } + ], + "identifier": "http://d-nb.info/gnd/4139715-0", + "pid": "041397150", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Festigkeit" + }, + { + "authorized_access_point": "Bruchverhalten" + } + ], + "variant_access_point": [ + "Bruchsicherheit", + "Bruchwiderstand" + ], + "md5": "b36f9cb5fc2d2411a94b72dc815a4e9b" + }, + { + "authorized_access_point": "Geschlechtsbestimmung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4139674-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04139674X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4139674-1" + } + ], + "identifier": "http://d-nb.info/gnd/4139674-1", + "closeMatch": [ + { + "authorized_access_point": "Genetic sex determination", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133633609" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85120579" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85120579" + } + ] + }, + { + "authorized_access_point": "Sex differentiation", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134697333" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85120585" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85120585" + } + ] + }, + { + "authorized_access_point": "Diagnostic sex determination", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134697511" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85120578" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85120578" + } + ] + }, + { + "authorized_access_point": "Human remains (Archaeology) - Sex determination", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134697554" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh00005538" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh00005538" + } + ] + }, + { + "authorized_access_point": "Chicks - Sexing", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134797311" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85023312" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85023312" + } + ] + }, + { + "authorized_access_point": "Fishes - Sexing", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113479732X" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85048804" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85048804" + } + ] + }, + { + "authorized_access_point": "De\u0301termination ge\u0301ne\u0301tique du sexe", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133633609" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11941363" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11941363n" + } + ] + }, + { + "authorized_access_point": "Diffe\u0301renciation sexuelle", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134697333" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11953259" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11953259t" + } + ] + }, + { + "authorized_access_point": "Determinazione del sesso", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254366199" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "33810" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/33810" + } + ] + }, + { + "authorized_access_point": "Sexaje de pollos", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254434798" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX555988" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX555988" + } + ] + }, + { + "authorized_access_point": "Determinacio\u0301n gene\u0301tica del sexo", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254434801" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX4736771" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX4736771" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "sex determination", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1256217190" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "14226" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_14226" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Festlegung des Geschlechts wa\u0308hrend der Individualentwicklung durch genetische oder andere Faktoren" + ] + } + ], + "pid": "04139674X", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Geschlechtsdifferenzierung" + } + ], + "broader": [ + { + "authorized_access_point": "Determination (Ontogenie)" + } + ], + "variant_access_point": [ + "Geschlechtsdetermination", + "Sexuelle Determination" + ], + "md5": "aa846a1e824713486371dd7f38895f29" + }, + { + "authorized_access_point": "Hypopharynxkrebs", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4139578-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041395786" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4139578-5" + } + ], + "identifier": "http://d-nb.info/gnd/4139578-5", + "exactMatch": [ + { + "authorized_access_point": "Hypopharynx - Cancer", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134620969" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2010009369" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2010009369" + } + ] + }, + { + "authorized_access_point": "Hypopharyngeal Neoplasms", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1241606749" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D007012" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D007012" + } + ] + } + ], + "pid": "041395786", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Rachenkrebs" + } + ], + "md5": "bcae90495a7bc383c0de10fe6550eb40" + }, + { + "authorized_access_point": "Kassettenrecorder", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4139531-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04139531X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4139531-1" + } + ], + "identifier": "http://d-nb.info/gnd/4139531-1", + "closeMatch": [ + { + "authorized_access_point": "Cassette tape recorders", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133638651" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85079736" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85079736" + } + ] + }, + { + "authorized_access_point": "Magne\u0301tophones a\u0300 cassettes", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133638651" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11944483" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119444838" + } + ] + } + ], + "pid": "04139531X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tonbandgera\u0308t" + } + ], + "variant_access_point": [ + "Cassettenrecorder", + "Kassettentonbandgera\u0308t", + "Tonbandkassettengera\u0308t" + ], + "md5": "bb270e2504c56ce92bde16404831389e" + }, + { + "authorized_access_point": "Steinbildhauer", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4139384-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041393848" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4139384-3" + } + ], + "identifier": "http://d-nb.info/gnd/4139384-3", + "closeMatch": [ + { + "authorized_access_point": "Sculpteurs sur pierre", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134164718" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12104643" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12104643h" + } + ] + } + ], + "pid": "041393848", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bildhauer" + } + ], + "related": [ + { + "authorized_access_point": "Steinmetz" + }, + { + "authorized_access_point": "Steinplastik" + } + ], + "md5": "28bc0774526ca241839f45a237dd1cad" + }, + { + "authorized_access_point": "Versetzung (Arbeitsrecht)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4139273-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041392736" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4139273-5" + } + ], + "identifier": "http://d-nb.info/gnd/4139273-5", + "closeMatch": [ + { + "authorized_access_point": "Transfer", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334215359" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2001009140" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2001009140" + } + ] + }, + { + "authorized_access_point": "Mutations", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334215359" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13319743" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13319743p" + } + ] + } + ], + "pid": "041392736", + "type": "bf:Topic", + "variant_access_point": [ + "Arbeitnehmer" + ], + "md5": "424c43f953759e56a05e78c438b21fbc" + }, + { + "authorized_access_point": "Marmorpapier", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4138589-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041385896" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4138589-5" + } + ], + "identifier": "http://d-nb.info/gnd/4138589-5", + "closeMatch": [ + { + "authorized_access_point": "Marbled papers", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133679099" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85080956" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85080956" + } + ] + }, + { + "authorized_access_point": "Papier marbre\u0301", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133679099" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11975028" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11975028w" + } + ] + }, + { + "authorized_access_point": "Papel marmoleado", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254459529" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX538888" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX538888" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Buntpapier, das das Aussehen farbigen Marmors imitiert" + ] + } + ], + "pid": "041385896", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Buntpapier" + } + ], + "related": [ + { + "authorized_access_point": "Marmorierung" + } + ], + "variant_access_point": [ + "Marmoriertes Papier", + "Tunkpapier", + "Tunkmarmor", + "Tunkmarmorpapier", + "Tu\u0308rkisch Papier", + "Tu\u0308rkisch Marmor" + ], + "md5": "a7f0620345f6c4f4f6c672a96f6640a9" + }, + { + "authorized_access_point": "Stressreaktion", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4138565-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041385659" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4138565-2" + } + ], + "identifier": "http://d-nb.info/gnd/4138565-2", + "closeMatch": [ + { + "authorized_access_point": "Stress (Physiology)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133756859" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85128702" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85128702" + } + ] + }, + { + "authorized_access_point": "Effect of stress on", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134230729" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh00004590" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh00004590" + } + ] + }, + { + "authorized_access_point": "Stress - Aspect physiologique", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133756859" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13319737" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13319737r" + } + ] + }, + { + "authorized_access_point": "Effets du stress", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134230729" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12248546" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb122485467" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Gemeint ist die adaptive Reaktion des Organismus, z.B.Adrenalinausschu\u0308ttung etc.", + "Im Bedarfsfall kann das SW u\u0308ber eine entsprechende Sys.Nr. auch in der Biologie verwendet werden. Fu\u0308r den psychischen Stress benutze Stress." + ] + } + ], + "pid": "041385659", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Stress" + } + ], + "variant_access_point": [ + "Vegetative Stressreaktion", + "Stressverarbeitung", + "Stress", + "Physiologische Stressreaktion", + "Stressantwort" + ], + "md5": "dfe2f7b5945ccf072c1495463ed565b2" + }, + { + "authorized_access_point": "Wahlpflichtfach", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4138299-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041382994" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4138299-7" + } + ], + "identifier": "http://d-nb.info/gnd/4138299-7", + "closeMatch": [ + { + "authorized_access_point": "Matie\u0300res a\u0300 option", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134333277" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12461627" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb124616279" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Wahlpflichtfach", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970603010" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10061888" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10061888" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Unterrichtsfach aus einer Gruppe von Schulfa\u0308chern, aus der ein Schu\u0308ler auszuwa\u0308hlen hat" + ] + } + ], + "pid": "041382994", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Obligatorischer Unterricht" + }, + { + "authorized_access_point": "Wahlbereich" + }, + { + "authorized_access_point": "Unterrichtsfach" + } + ], + "related": [ + { + "authorized_access_point": "Wahlpflichtunterricht" + }, + { + "authorized_access_point": "Wahlfach" + }, + { + "authorized_access_point": "Pflichtfach" + } + ], + "variant_access_point": [ + "Wahlpflichtfa\u0308cher" + ], + "md5": "4c8933b7a2f6e448ff25fbe3e80ea2af" + }, + { + "authorized_access_point": "Sparkassenaufsicht", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4138082-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041380827" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4138082-4" + } + ], + "identifier": "http://d-nb.info/gnd/4138082-4", + "pid": "041380827", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bankenaufsicht" + } + ], + "variant_access_point": [ + "Sparkasse" + ], + "md5": "99a9445be6e327fe6b2a90aea02e25df" + }, + { + "authorized_access_point": "Holzproduktion", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4137897-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041378970" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4137897-0" + } + ], + "identifier": "http://d-nb.info/gnd/4137897-0", + "exactMatch": [ + { + "authorized_access_point": "wood production", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1256222356" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "28194" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_28194" + } + ] + } + ], + "pid": "041378970", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Forstproduktion" + } + ], + "related": [ + { + "authorized_access_point": "Holzwirtschaft" + } + ], + "variant_access_point": [ + "Holz", + "Holz" + ], + "md5": "cf851eddeb7a7cd6bf75aad00757cc5e" + }, + { + "authorized_access_point": "Urheber", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4137829-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041378296" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4137829-5" + } + ], + "identifier": "http://d-nb.info/gnd/4137829-5", + "pid": "041378296", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Autor" + } + ], + "md5": "04ea82231a073a6908d6c9834266ba4a" + }, + { + "authorized_access_point": "Gesangbuch", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4137651-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04137651X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4137651-1" + } + ], + "identifier": "http://d-nb.info/gnd/4137651-1", + "closeMatch": [ + { + "authorized_access_point": "Hymns", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134587139" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85063599" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85063599" + } + ] + }, + { + "authorized_access_point": "Hymnes", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134587139" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13505214" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13505214w" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Von einer Kirche herausgegebene Sammlung geistlicher Lieder und Gesa\u0308nge zum liturgischen und privaten Gebrauch" + ] + } + ], + "pid": "04137651X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Liederbuch" + } + ], + "related": [ + { + "authorized_access_point": "Kirchenlied" + } + ], + "variant_access_point": [ + "Gesangsbuch", + "Kirchengesangbuch", + "Kirchenliederbuch" + ], + "md5": "e04b1f36cc0637a9f8d727d01c0facdb" + }, + { + "authorized_access_point": "Nachkomme", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4137578-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041375785" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4137578-6" + } + ], + "identifier": "http://d-nb.info/gnd/4137578-6", + "pid": "041375785", + "type": "bf:Topic", + "variant_access_point": [ + "Nachkommenschaft", + "Nachkommen", + "Nachfahre", + "Nachfahren" + ], + "md5": "66f7ae41d8eb0837fa09e1891a178c6d" + }, + { + "authorized_access_point": "Abszess", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4137515-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041375157" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4137515-4" + } + ], + "identifier": "http://d-nb.info/gnd/4137515-4", + "closeMatch": [ + { + "authorized_access_point": "Abce\u0300s", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332651100" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12043461" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb120434619" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "abscesses", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1256187542" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "8564" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_8564" + } + ] + }, + { + "authorized_access_point": "Abscess", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1241589364" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D000038" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D000038" + } + ] + } + ], + "pid": "041375157", + "type": "bf:Topic", + "md5": "1a3cd065f5fb4e583a0b1d7ff685b49d" + }, + { + "authorized_access_point": "Damm", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4137314-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041373146" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4137314-5" + } + ], + "identifier": "http://d-nb.info/gnd/4137314-5", + "closeMatch": [ + { + "authorized_access_point": "Barrages", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331703506" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85011924" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85011924" + } + ] + }, + { + "authorized_access_point": "Barrages", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331703506" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11947035" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119470351" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "dams", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)125620403X" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "2121" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_2121" + } + ] + } + ], + "pid": "041373146", + "type": "bf:Topic", + "md5": "45bcf9c02de5c8b7760a5f0f7b805235" + }, + { + "authorized_access_point": "Unternehmen Seelo\u0308we", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4137286-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041372867" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4137286-4" + } + ], + "identifier": "http://d-nb.info/gnd/4137286-4", + "closeMatch": [ + { + "authorized_access_point": "Operation Sea Lion", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134571194" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85095008" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85095008" + } + ] + }, + { + "authorized_access_point": "Ope\u0301ration Seelo\u0308we (1940)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134571194" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16599920" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb165999200" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Unternehmen_Seel%C3%B6we&oldid=203501632" + ] + } + ], + "pid": "041372867", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Zweiter Weltkrieg" + } + ], + "broader": [ + { + "authorized_access_point": "Invasion" + }, + { + "authorized_access_point": "Planung" + } + ], + "variant_access_point": [ + "Seelo\u0308we (Invasion)", + "Operation Seelo\u0308we", + "Operation Sea Lion", + "Britischer Invasionsplan (1940)" + ], + "md5": "443478b467695095c56740bd8d6c4059" + }, + { + "authorized_access_point": "Photodiode", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4136942-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041369424" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4136942-7" + } + ], + "identifier": "http://d-nb.info/gnd/4136942-7", + "pid": "041369424", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Halbleiterdiode" + }, + { + "authorized_access_point": "Lichtempfindliches Halbleiterbauelement" + }, + { + "authorized_access_point": "Photoelektronisches Bauelement" + }, + { + "authorized_access_point": "Photodetektor" + } + ], + "variant_access_point": [ + "Fotodiode" + ], + "md5": "4435f0a8fb711220e0bbabfc56ea903c" + }, + { + "authorized_access_point": "Kulturzentrum", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4136811-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041368118" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4136811-3" + } + ], + "identifier": "http://d-nb.info/gnd/4136811-3", + "closeMatch": [ + { + "authorized_access_point": "Centres culturels", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133948162" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11939893" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11939893p" + } + ] + } + ], + "pid": "041368118", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kulturelle Einrichtung" + } + ], + "variant_access_point": [ + "Kulturzentren" + ], + "md5": "b0bb78b8b1fb87eb8eaba06ab24ada3b" + }, + { + "authorized_access_point": "Rieselfilm", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4136778-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041367782" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4136778-9" + } + ], + "identifier": "http://d-nb.info/gnd/4136778-9", + "pid": "041367782", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Flu\u0308ssigkeitsfilm" + } + ], + "variant_access_point": [ + "Fallfilm" + ], + "md5": "19e2e7c51edcd9454b915be61f3f0a4f" + }, + { + "authorized_access_point": "Zeugenaussage", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4135890-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041358902" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4135890-9" + } + ], + "identifier": "http://d-nb.info/gnd/4135890-9", + "closeMatch": [ + { + "authorized_access_point": "Depositions", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334231974" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85037044" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85037044" + } + ] + }, + { + "authorized_access_point": "De\u0301positions (proce\u0301dure)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334231974" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11983503" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11983503n" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Zeugenaussage", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970606591" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10062918" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10062918" + } + ] + } + ], + "pid": "041358902", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Aussage" + } + ], + "variant_access_point": [ + "Aussage" + ], + "md5": "cd175947d3f8b500eedd4a473dbb3a1d" + }, + { + "authorized_access_point": "Tonband", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4135867-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041358678" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4135867-3" + } + ], + "identifier": "http://d-nb.info/gnd/4135867-3", + "note": [ + { + "noteType": "general", + "label": [ + "Als Formschlagwort nicht verwendet, hier verwende f Tontra\u0308ger." + ] + } + ], + "pid": "041358678", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tontra\u0308ger" + }, + { + "authorized_access_point": "Magnetband" + } + ], + "variant_access_point": [ + "Magnettonband", + "Tonbandspule" + ], + "md5": "583e7c5b8ca04beaecf867c27500058d" + }, + { + "authorized_access_point": "Aktive Antenne", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4135751-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041357515" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4135751-6" + } + ], + "identifier": "http://d-nb.info/gnd/4135751-6", + "pid": "041357515", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Antenne" + } + ], + "variant_access_point": [ + "Aktivantenne" + ], + "md5": "c59348d9b2ecd3b2faeaed5e79745bad" + }, + { + "authorized_access_point": "Marshall-Plan", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4135116-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041351169" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4135116-2" + } + ], + "identifier": "http://d-nb.info/gnd/4135116-2", + "closeMatch": [ + { + "authorized_access_point": "United States. Foreign Assistance Act of 1948", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134090730" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "no2015079330" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/names/no2015079330" + } + ] + }, + { + "authorized_access_point": "Plan Marshall (1948-1952)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134090730" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11998785" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11998785s" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Wirtschaftlicher Wiederaufbau", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)966738357" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "10610-2" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/10610-2" + } + ] + }, + { + "authorized_access_point": "Marshall-Plan", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970571178" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10051738" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10051738" + } + ] + } + ], + "pid": "041351169", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Wirtschaftsfo\u0308rderung" + } + ], + "variant_access_point": [ + "ERP (abku)", + "Europa\u0308isches Wiederaufbauprogramm", + "European Recovery Program" + ], + "md5": "017325383dac6ff20d7f0dd217f77ca7" + }, + { + "authorized_access_point": "Passionsdarstellung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4134467-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041344677" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4134467-4" + } + ], + "identifier": "http://d-nb.info/gnd/4134467-4", + "closeMatch": [ + { + "authorized_access_point": "Je\u0301sus-Christ - Passion - Dans l'art", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134523947" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12464254" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12464254t" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Ohne HZ Motiv" + ] + } + ], + "pid": "041344677", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Christusdarstellung" + }, + { + "authorized_access_point": "Motiv" + } + ], + "md5": "3b34ffbc25ba63daf30d8d849dca815e" + }, + { + "authorized_access_point": "Gepresste Pflanzen", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4133684-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041336844" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4133684-7" + } + ], + "identifier": "http://d-nb.info/gnd/4133684-7", + "closeMatch": [ + { + "authorized_access_point": "Fleurs presse\u0301es", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134515529" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13188664" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb131886647" + } + ] + } + ], + "pid": "041336844", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Trockenblume" + } + ], + "variant_access_point": [ + "Gepresste Blume", + "Gepresste Pflanze" + ], + "md5": "e76b97f87ae2a3ee733d86647ca0c1b7" + }, + { + "authorized_access_point": "Subunternehmer", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4133672-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041336720" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4133672-0" + } + ], + "identifier": "http://d-nb.info/gnd/4133672-0", + "closeMatch": [ + { + "authorized_access_point": "Subcontractors", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333585977" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh95001761" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh95001761" + } + ] + }, + { + "authorized_access_point": "Sous-traitance", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333585977" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11934339" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119343399" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Subunternehmer", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1283872862" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "30284-5" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/30284-5" + } + ] + }, + { + "authorized_access_point": "Subunternehmen", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970595875" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10060775" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10060775" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Der Generalunternehmer bedient sich zur Ausfu\u0308hrung eines Auftrags des Subunternehmers. Rechtsbeziehungen entstehen nur zwischen Generalunternehmer und Subunternehmer." + ] + } + ], + "pid": "041336720", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Unternehmer" + } + ], + "related": [ + { + "authorized_access_point": "Generalunternehmer" + } + ], + "md5": "4f402cb99db14025ffc52aa1edea72cf" + }, + { + "authorized_access_point": "Nordischer Krieg (1700-1721)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4133215-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041332156" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4133215-5" + } + ], + "identifier": "http://d-nb.info/gnd/4133215-5", + "closeMatch": [ + { + "authorized_access_point": "Northern War, 1700-1721", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134025572" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85092579" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85092579" + } + ] + }, + { + "authorized_access_point": "Guerre du Nord (1700-1721)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134025572" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11971267" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11971267c" + } + ] + }, + { + "authorized_access_point": "Guerra del Norte, 1700-1721", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254468021" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX5369050" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX5369050" + } + ] + } + ], + "pid": "041332156", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Krieg" + } + ], + "variant_access_point": [ + "Gro\u00dfer Nordischer Krieg", + "Zweiter Nordischer Krieg (1700-1721)", + "Dritter Nordischer Krieg (1700-1721)" + ], + "md5": "74b8a20ce6aa2218e2123d25ab4ed84d" + }, + { + "authorized_access_point": "Schutzhu\u0308tte", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4133004-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041330048" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4133004-3" + } + ], + "identifier": "http://d-nb.info/gnd/4133004-3", + "closeMatch": [ + { + "authorized_access_point": "Mountain shelters", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134006896" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85087807" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85087807" + } + ] + }, + { + "authorized_access_point": "Refuges de montagne", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134006896" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11964951" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11964951f" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Bei einzelnen Schutzhu\u0308tten wird ein Geographikum mit \"geoa\" relationiert." + ] + } + ], + "pid": "041330048", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Beherbergungsbetrieb" + } + ], + "variant_access_point": [ + "Alpenvereinshu\u0308tte", + "Alpinistischer Stu\u0308tzpunkt", + "Berghu\u0308tte", + "Bergsteigerstu\u0308tzpunkt", + "Hu\u0308tte (Schutzhu\u0308tte)", + "Alpenvereinshaus", + "Schutzhaus", + "Wanderhu\u0308tte", + "Schutzhu\u0308tten", + "Berghu\u0308tten" + ], + "md5": "6fd84d6c8a2757e557dc50b2d30c6985" + }, + { + "authorized_access_point": "Leib", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4132852-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041328523" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4132852-8" + } + ], + "identifier": "http://d-nb.info/gnd/4132852-8", + "exactMatch": [ + { + "authorized_access_point": "Human body (Philosophy)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332900690" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85015235" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85015235" + } + ] + }, + { + "authorized_access_point": "Corps (philosophie)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332900690" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11965587" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11965587k" + } + ] + } + ], + "pid": "041328523", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Ko\u0308rper" + }, + { + "authorized_access_point": "Leiblichkeit" + }, + { + "authorized_access_point": "Soma" + }, + { + "authorized_access_point": "Leib-Seele-Problem" + } + ], + "md5": "a44ef91ea7a20ad65e04a919f549ac13" + }, + { + "authorized_access_point": "Binnenstaat", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4132789-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041327896" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4132789-5" + } + ], + "identifier": "http://d-nb.info/gnd/4132789-5", + "closeMatch": [ + { + "authorized_access_point": "Landlocked states", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331526035" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh87000305" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh87000305" + } + ] + }, + { + "authorized_access_point": "Pays sans littoral", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331526035" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12107185" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12107185s" + } + ] + } + ], + "pid": "041327896", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Staat" + } + ], + "variant_access_point": [ + "Binnenstaaten" + ], + "md5": "45efbd5b713a39bde7f660bccb9bb1d7" + }, + { + "authorized_access_point": "UCSD p-System", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4132639-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041326393" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4132639-8" + } + ], + "identifier": "http://d-nb.info/gnd/4132639-8", + "closeMatch": [ + { + "authorized_access_point": "UCSD p-System", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134018509" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "n92062941" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/names/n92062941" + } + ] + }, + { + "authorized_access_point": "UCSD p-System", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134018509" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11968223" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119682237" + } + ] + } + ], + "pid": "041326393", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Betriebssystem" + } + ], + "md5": "74c4aba940cecc124ac7ba3950730cf0" + }, + { + "authorized_access_point": "Rechtsnachfolge", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4132510-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041325109" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4132510-2" + } + ], + "identifier": "http://d-nb.info/gnd/4132510-2", + "note": [ + { + "noteType": "general", + "label": [ + "Rechtsnachfolge bezeichnet die Auswechslung des Rechtssubjekts bei ansonsten unvera\u0308ndertem Rechtsbestand." + ] + } + ], + "pid": "041325109", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Rechtsnachfolger" + }, + { + "authorized_access_point": "Rechtserwerb" + } + ], + "variant_access_point": [ + "Subjektwechsel", + "Sukzession (Bu\u0308rgerliches Recht)" + ], + "md5": "ac3a087d0afdfedad3c25852d69ae7ab" + }, + { + "authorized_access_point": "Heuchelei", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4132501-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04132501X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4132501-1" + } + ], + "identifier": "http://d-nb.info/gnd/4132501-1", + "closeMatch": [ + { + "authorized_access_point": "Hypocrisy", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133937241" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85063768" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85063768" + } + ] + }, + { + "authorized_access_point": "Hypocrisie", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133937241" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11935462" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11935462b" + } + ] + } + ], + "pid": "04132501X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Unwahrheit" + } + ], + "related": [ + { + "authorized_access_point": "Unehrlichkeit" + } + ], + "variant_access_point": [ + "Hypokrisie" + ], + "md5": "8e2ccd9dc7b4ebaaad6bbc435168f80d" + }, + { + "authorized_access_point": "Industrieansiedlung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4132178-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041321782" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4132178-9" + } + ], + "identifier": "http://d-nb.info/gnd/4132178-9", + "closeMatch": [ + { + "authorized_access_point": "Parcs d'activite\u0301s e\u0301conomiques", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134609086" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12229177" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb122291777" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Industrieansiedlung", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970558945" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10038906" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10038906" + } + ] + } + ], + "pid": "041321782", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ansiedlung" + } + ], + "variant_access_point": [ + "Industriebetrieb" + ], + "md5": "91f28fd530bb6d43004be96cdac6f65e" + }, + { + "authorized_access_point": "Interesse (Recht)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4131815-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041318153" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4131815-8" + } + ], + "identifier": "http://d-nb.info/gnd/4131815-8", + "closeMatch": [ + { + "authorized_access_point": "Inte\u0301re\u0302t (droit)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134220243" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12226409" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12226409v" + } + ] + } + ], + "pid": "041318153", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schaden" + } + ], + "variant_access_point": [ + "Drittinteresse" + ], + "md5": "e1d70026150eba19d099915e7044aba9" + }, + { + "authorized_access_point": "Sachversta\u0308ndigenbeweis", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4131240-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041312406" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4131240-5" + } + ], + "identifier": "http://d-nb.info/gnd/4131240-5", + "closeMatch": [ + { + "authorized_access_point": "Evidence, Expert", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134028687" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85046005" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85046005" + } + ] + }, + { + "authorized_access_point": "Expertises", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134028687" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11971981" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11971981v" + } + ] + } + ], + "pid": "041312406", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Beweis" + } + ], + "related": [ + { + "authorized_access_point": "Rechtsgutachten" + } + ], + "variant_access_point": [ + "Sachversta\u0308ndiger" + ], + "md5": "a6f14d2ba382c63bdbaa650b00b0bb9d" + }, + { + "authorized_access_point": "Videokonferenz", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4131124-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041311248" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4131124-3" + } + ], + "identifier": "http://d-nb.info/gnd/4131124-3", + "closeMatch": [ + { + "authorized_access_point": "Videoconferencing", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134204450" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh88004839" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh88004839" + } + ] + }, + { + "authorized_access_point": "Visioconfe\u0301rences", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134204450" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12192080" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12192080f" + } + ] + }, + { + "authorized_access_point": "Videoconferencia", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1299905978" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX546241" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX546241" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Videokonferenz", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970602065" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10065463" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10065463" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Als Videokonferenz bezeichnet man eine Form der Telekommunikation, bei der mithilfe von Kameras, Mikrofonen, Bildschirmen und Lautsprechern eine audiovisuelle Verbindung zwischen zwei oder mehr Personen hergestellt und so ein wechselseitiger Informationsaustausch ermo\u0308glicht wird." + ] + } + ], + "pid": "041311248", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Telekonferenz" + } + ], + "related": [ + { + "authorized_access_point": "Telepra\u0308senz" + } + ], + "md5": "09fbcb6eca5efa0b41183a016d0c0c1f" + }, + { + "authorized_access_point": "Schadensanalyse", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4130826-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041308263" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4130826-8" + } + ], + "identifier": "http://d-nb.info/gnd/4130826-8", + "pid": "041308263", + "type": "bf:Topic", + "variant_access_point": [ + "Schadensuntersuchung" + ], + "md5": "49281119aefedb81b2cc06ea56856373" + }, + { + "authorized_access_point": "Gewicht", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4130657-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041306570" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4130657-0" + } + ], + "identifier": "http://d-nb.info/gnd/4130657-0", + "closeMatch": [ + { + "authorized_access_point": "Weights and measures", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133633234" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85145963" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85145963" + } + ] + }, + { + "authorized_access_point": "Poids", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134210590" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12205303" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12205303v" + } + ] + }, + { + "authorized_access_point": "Poids et mesures", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133633234" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11941221" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11941221f" + } + ] + }, + { + "authorized_access_point": "Misure", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254350136" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "21495" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/21495" + } + ] + }, + { + "authorized_access_point": "Pesos y medidas", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254435301" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX526274" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX526274" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "weight", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1256217689" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "8349" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_8349" + } + ] + } + ], + "pid": "041306570", + "type": "bf:Topic", + "md5": "4c037544abfb3994fb983820269f8461" + }, + { + "authorized_access_point": "Fu\u00dfballeuropapokal", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4130647-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041306473" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4130647-8" + } + ], + "identifier": "http://d-nb.info/gnd/4130647-8", + "closeMatch": [ + { + "authorized_access_point": "Football - Ligue des champions", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113480914X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13736020" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13736020g" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Zusammenfassend fu\u0308r alle Wettbewerbe" + ] + } + ], + "pid": "041306473", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Europapokal" + } + ], + "md5": "e5c5026f1d6a5d26650bfb3ee9ed403a" + }, + { + "authorized_access_point": "Autorschaft", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4130545-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041305450" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4130545-0" + } + ], + "identifier": "http://d-nb.info/gnd/4130545-0", + "closeMatch": [ + { + "authorized_access_point": "Authorship", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134155654" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85010030" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85010030" + } + ] + }, + { + "authorized_access_point": "Attribution", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134155654" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12088586" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12088586z" + } + ] + } + ], + "pid": "041305450", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Unechtes Werk" + }, + { + "authorized_access_point": "Zuschreibung" + } + ], + "variant_access_point": [ + "Autorenschaft", + "Verfasserschaft", + "Verfasserschaftsfrage", + "Verfasserfrage" + ], + "md5": "5b33cff1038023f659cdbd8cd795ba8b" + }, + { + "authorized_access_point": "Rezidiv", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4130100-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041301005" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4130100-6" + } + ], + "identifier": "http://d-nb.info/gnd/4130100-6", + "closeMatch": [ + { + "authorized_access_point": "Diseases - Relapse", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134155158" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh98007420" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh98007420" + } + ] + }, + { + "authorized_access_point": "Re\u0301cidives", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134155158" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12087741" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb120877419" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Recurrence", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1241620768" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D012008" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D012008" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Fu\u0308r das Recht benutze Ru\u0308ckfall" + ] + } + ], + "pid": "041301005", + "type": "bf:Topic", + "variant_access_point": [ + "Ru\u0308ckfall (Medizin)", + "Ru\u0308ckfall (Psychologie)" + ], + "md5": "f845423c160ef83f1085c76a80224811" + }, + { + "authorized_access_point": "Kino", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4129654-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041296540" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4129654-0" + } + ], + "identifier": "http://d-nb.info/gnd/4129654-0", + "closeMatch": [ + { + "authorized_access_point": "Motion picture theaters", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133630715" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85088079" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85088079" + } + ] + }, + { + "authorized_access_point": "Cine\u0301mas", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133630715" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11939426" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11939426f" + } + ] + }, + { + "authorized_access_point": "Sale cinematografiche", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254321977" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "2140" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/2140" + } + ] + }, + { + "authorized_access_point": "Cines", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254448837" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX526308" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX526308" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Kino", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)966799305" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "18919-2" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/18919-2" + } + ] + }, + { + "authorized_access_point": "Kino", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970563515" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10043586" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10043586" + } + ] + } + ], + "pid": "041296540", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Theaterbau" + } + ], + "variant_access_point": [ + "Filmtheater", + "Lichtspielhaus", + "Lichtspieltheater" + ], + "md5": "32927be618e7013bee37bfc0f3ae0770" + }, + { + "authorized_access_point": "Betastrahlung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4129110-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041291107" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4129110-4" + } + ], + "identifier": "http://d-nb.info/gnd/4129110-4", + "closeMatch": [ + { + "authorized_access_point": "Beta rays", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134775881" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85013449" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85013449" + } + ] + }, + { + "authorized_access_point": "Rayons be\u0302ta", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134775881" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11978653" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11978653g" + } + ] + } + ], + "pid": "041291107", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Teilchenstrahlung" + }, + { + "authorized_access_point": "Radioaktive Strahlung" + } + ], + "variant_access_point": [ + "Betastrahlen" + ], + "md5": "d5f8f3e9ea69acee15755b53ce0fd341" + }, + { + "authorized_access_point": "Gen", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4128987-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041289870" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4128987-0" + } + ], + "identifier": "http://d-nb.info/gnd/4128987-0", + "closeMatch": [ + { + "authorized_access_point": "Genes", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133736459" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh91000344" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh91000344" + } + ] + }, + { + "authorized_access_point": "Ge\u0300nes", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133736459" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12224891" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12224891h" + } + ] + }, + { + "authorized_access_point": "Geni", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254330909" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "6576" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/6576" + } + ] + }, + { + "authorized_access_point": "Genes", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254433821" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX526735" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX526735" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "genes", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1256216682" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "3214" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_3214" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Mo\u0308glichst keine Komposita fu\u0308r bestimmte Gene bilden (Ausnahme: Gengruppen)." + ] + } + ], + "pid": "041289870", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Genom" + } + ], + "related": [ + { + "authorized_access_point": "Operon" + } + ], + "variant_access_point": [ + "Erbanlage (Gen)", + "Erbeinheit", + "Erbfaktor" + ], + "md5": "27e5c384705ba83889bd71073334749c" + }, + { + "authorized_access_point": "Innervation", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4128876-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041288769" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4128876-2" + } + ], + "identifier": "http://d-nb.info/gnd/4128876-2", + "closeMatch": [ + { + "authorized_access_point": "Innervation", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134045719" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh99002358" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh99002358" + } + ] + }, + { + "authorized_access_point": "Innervation", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134045719" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11977157" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119771577" + } + ] + } + ], + "pid": "041288769", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Nerv" + }, + { + "authorized_access_point": "Nervensystem" + }, + { + "authorized_access_point": "Nervale Regulation" + } + ], + "md5": "6552a5f03f0668877212b7be9d746bf9" + }, + { + "authorized_access_point": "Faserversta\u0308rkter Kunststoff", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4128805-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04128805X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4128805-1" + } + ], + "identifier": "http://d-nb.info/gnd/4128805-1", + "closeMatch": [ + { + "authorized_access_point": "Reinforced plastics", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133927459" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85112457" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85112457" + } + ] + }, + { + "authorized_access_point": "Fiber-reinforced plastics", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134305737" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85048018" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85048018" + } + ] + }, + { + "authorized_access_point": "Matie\u0300res plastiques renforce\u0301es", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133927459" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11932441" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11932441n" + } + ] + }, + { + "authorized_access_point": "Matie\u0300res plastiques renforce\u0301es avec des fibres", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134305737" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12386115" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12386115c" + } + ] + } + ], + "pid": "04128805X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kunststoff" + }, + { + "authorized_access_point": "Faserverbundwerkstoff" + } + ], + "related": [ + { + "authorized_access_point": "Noppenwabe" + } + ], + "variant_access_point": [ + "Faser-Kunststoff-Verbund", + "Faserverbundkunststoff", + "FKV (Werkstoff)", + "FVK (Werkstoff)", + "Fibre-reinforced plastic" + ], + "md5": "c63ce599e1b547e12ffe57d7676cd65b" + }, + { + "authorized_access_point": "Bezirk Detmold (Motiv)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4128788-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041287886" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4128788-5" + } + ], + "identifier": "http://d-nb.info/gnd/4128788-5", + "pid": "041287886", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "1844a20e3ed395fc3011c5045d3eb051" + }, + { + "authorized_access_point": "Kalman-Bucy-Filter", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4128591-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041285913" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4128591-8" + } + ], + "identifier": "http://d-nb.info/gnd/4128591-8", + "closeMatch": [ + { + "authorized_access_point": "Kalman filtering", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113390596X" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85071360" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85071360" + } + ] + }, + { + "authorized_access_point": "Kalman, Filtrage de", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113390596X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12290051" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12290051j" + } + ] + } + ], + "pid": "041285913", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Filter (Stochastik)" + } + ], + "md5": "104158036c625dcda43a90d1b4763f9a" + }, + { + "authorized_access_point": "Scho\u0308nheitsideal", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4128410-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041284100" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4128410-0" + } + ], + "identifier": "http://d-nb.info/gnd/4128410-0", + "closeMatch": [ + { + "authorized_access_point": "Beauty, Personal", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134658567" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85012720" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85012720" + } + ] + }, + { + "authorized_access_point": "Beaute\u0301 corporelle", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134658567" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11938482" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11938482p" + } + ] + }, + { + "authorized_access_point": "Belleza corporal", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254484205" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX525607" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX525607" + } + ] + } + ], + "pid": "041284100", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ideal" + } + ], + "variant_access_point": [ + "Scho\u0308nheit", + "Scho\u0308nheitskult" + ], + "md5": "bbc5a4a65a58bb9cd5481d5ce1432af7" + }, + { + "authorized_access_point": "Luftstrahltriebwerk", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4128278-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041282787" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4128278-4" + } + ], + "identifier": "http://d-nb.info/gnd/4128278-4", + "closeMatch": [ + { + "authorized_access_point": "Airplanes - Turbojet engines", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134724330" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85002908" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85002908" + } + ] + }, + { + "authorized_access_point": "Jet propulsion", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133696430" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85070170" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85070170" + } + ] + }, + { + "authorized_access_point": "Avions - Turbore\u0301acteurs", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134724330" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11944356" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119443563" + } + ] + }, + { + "authorized_access_point": "Propulsion par re\u0301action", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133696430" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11982987" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11982987c" + } + ] + } + ], + "pid": "041282787", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Flugtriebwerk" + } + ], + "variant_access_point": [ + "Du\u0308senantrieb", + "Du\u0308sentriebwerk", + "Durchstro\u0308mtriebwerk", + "Strahlantrieb", + "Strahltriebwerk", + "Luftatmendes Flugtriebwerk" + ], + "md5": "3bb53601f1239edd8766de06fb6a3e16" + }, + { + "authorized_access_point": "Hummeln", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4128062-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041280628" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4128062-3" + } + ], + "identifier": "http://d-nb.info/gnd/4128062-3", + "closeMatch": [ + { + "authorized_access_point": "Bumblebees", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134184484" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85017981" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85017981" + } + ] + }, + { + "authorized_access_point": "Bourdons (insectes)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134184484" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12137395" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb121373958" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Gattungsgruppe" + ] + } + ], + "pid": "041280628", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bienen (Familie)" + } + ], + "variant_access_point": [ + "Bombini" + ], + "md5": "c8992746e5e4061ef9989cfc91d64751" + }, + { + "authorized_access_point": "Lehrverurteilung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4127784-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041277848" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4127784-3" + } + ], + "identifier": "http://d-nb.info/gnd/4127784-3", + "closeMatch": [ + { + "authorized_access_point": "Censures doctrinales", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134615876" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13558002" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb135580023" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "O\u0308ffentl. Verurteilung von dogmat. Aussagen einer anderen Konfession" + ] + } + ], + "pid": "041277848", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Verurteilung" + } + ], + "variant_access_point": [ + "Verwerfungsaussage" + ], + "md5": "5d80fa6adef6afefd7f4944100c50524" + }, + { + "authorized_access_point": "Maklerlohn", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4127709-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041277090" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4127709-0" + } + ], + "identifier": "http://d-nb.info/gnd/4127709-0", + "closeMatch": [ + { + "authorized_access_point": "Business brokerage", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134105134" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85018275" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85018275" + } + ] + }, + { + "authorized_access_point": "Courtage", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134105134" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12010402" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12010402f" + } + ] + } + ], + "pid": "041277090", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Provision" + } + ], + "variant_access_point": [ + "Maklerprovision", + "Maklercourtage", + "Courtage", + "Kurtage", + "Maklergebu\u0308hr", + "Maklervergu\u0308tung" + ], + "md5": "d93ef353a1d0a13a8dbf9f79216d803c" + }, + { + "authorized_access_point": "Outsourcing", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4127582-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041275829" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4127582-2" + } + ], + "identifier": "http://d-nb.info/gnd/4127582-2", + "closeMatch": [ + { + "authorized_access_point": "Contracting out", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134494270" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85031614" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85031614" + } + ] + }, + { + "authorized_access_point": "Externalisation", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134494270" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF15719280" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb15719280g" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Outsourcing", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)966897404" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "19113-6" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/19113-6" + } + ] + }, + { + "authorized_access_point": "Outsourcing", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970577702" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10063041" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10063041" + } + ] + } + ], + "pid": "041275829", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ausgliederung" + } + ], + "related": [ + { + "authorized_access_point": "Fremdbezug" + }, + { + "authorized_access_point": "Make or buy" + }, + { + "authorized_access_point": "Contracting-out" + } + ], + "variant_access_point": [ + "Funktionsbezogene Ausgliederung", + "Funktionsausgliederung" + ], + "md5": "a6c28575558f9caa7b3f0e20df1d36a4" + }, + { + "authorized_access_point": "New Age", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4127405-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041274059" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4127405-2" + } + ], + "identifier": "http://d-nb.info/gnd/4127405-2", + "closeMatch": [ + { + "authorized_access_point": "New Age movement", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134187645" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh87000526" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh87000526" + } + ] + }, + { + "authorized_access_point": "Nouvel a\u0302ge (mouvement)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134187645" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12144385" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12144385f" + } + ] + }, + { + "authorized_access_point": "New Age", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254398813" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "7585" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/7585" + } + ] + }, + { + "authorized_access_point": "Nueva Era", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1299919162" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX535178" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX535178" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "New Age", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970575831" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10048335" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10048335" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Alle Wissensgebiete umfassende spirituelle Bewegung", + "Fu\u0308r Schriften, die sich auf die Anku\u0308ndigung eines heraufkommenden neuen Zeitalters beschra\u0308nken, verwende |s|Neues Zeitalter bzw. |s|Wassermannzeitalter" + ] + } + ], + "pid": "041274059", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Neues Zeitalter" + }, + { + "authorized_access_point": "Wassermannzeitalter" + } + ], + "md5": "3173324dd1bf17807941804c8338be14" + }, + { + "authorized_access_point": "Trivialname", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4127029-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041270290" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4127029-0" + } + ], + "identifier": "http://d-nb.info/gnd/4127029-0", + "closeMatch": [ + { + "authorized_access_point": "Noms vernaculaires", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134080697" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11983360" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11983360x" + } + ] + } + ], + "pid": "041270290", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Name" + }, + { + "authorized_access_point": "Chemische Nomenklatur" + }, + { + "authorized_access_point": "Zoologische Nomenklatur" + }, + { + "authorized_access_point": "Botanische Nomenklatur" + } + ], + "variant_access_point": [ + "Trivialnamen" + ], + "md5": "968f8cb7703023f43b71c6d90c705d6d" + }, + { + "authorized_access_point": "Prokurist", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4126448-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041264487" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4126448-4" + } + ], + "identifier": "http://d-nb.info/gnd/4126448-4", + "closeMatch": [ + { + "authorized_access_point": "Mandat", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134692072" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11977389" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11977389d" + } + ] + } + ], + "pid": "041264487", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fu\u0308hrungskraft" + }, + { + "authorized_access_point": "Bevollma\u0308chtigter" + } + ], + "related": [ + { + "authorized_access_point": "Prokuristin" + }, + { + "authorized_access_point": "Prokura" + } + ], + "md5": "4336d0b88feb2e11cb5d77812730d4e7" + }, + { + "authorized_access_point": "Neues Zeitalter", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4126133-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04126133X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4126133-1" + } + ], + "identifier": "http://d-nb.info/gnd/4126133-1", + "note": [ + { + "noteType": "general", + "label": [ + "die in vielen Religionen und spirituellen Bewegungen vorhandene Idee, dass die Welt von Zeit zu Zeit in ein neues Zeitalter eintritt" + ] + } + ], + "pid": "04126133X", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Wassermannzeitalter" + }, + { + "authorized_access_point": "New Age" + } + ], + "md5": "16d502dd203ce0d8e4efccb58de84d1f" + }, + { + "authorized_access_point": "Meerforelle", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4125881-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041258819" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4125881-2" + } + ], + "identifier": "http://d-nb.info/gnd/4125881-2", + "closeMatch": [ + { + "authorized_access_point": "Sea trout", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134672071" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh88006387" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh88006387" + } + ] + }, + { + "authorized_access_point": "Truite de mer", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134672071" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11987418" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11987418c" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Salmo trutta", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1256235938" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "24702" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_24702" + } + ] + } + ], + "pid": "041258819", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Lachsartige (Familie)" + } + ], + "variant_access_point": [ + "Lachsforelle", + "Salmo trutta trutta" + ], + "md5": "4459867e12efe2b6762cb0d0cadb3649" + }, + { + "authorized_access_point": "Brennverlauf", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4125876-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041258762" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4125876-9" + } + ], + "identifier": "http://d-nb.info/gnd/4125876-9", + "pid": "041258762", + "type": "bf:Topic", + "md5": "0295eb4b7569978c5ce9e7a53f8f20f8" + }, + { + "authorized_access_point": "Telefonieren", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4125536-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041255364" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4125536-7" + } + ], + "identifier": "http://d-nb.info/gnd/4125536-7", + "closeMatch": [ + { + "authorized_access_point": "Communication te\u0301le\u0301phonique", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134720793" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12145482" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12145482x" + } + ] + } + ], + "pid": "041255364", + "type": "bf:Topic", + "variant_access_point": [ + "Telefongespra\u0308ch", + "Fernsprechen", + "Anrufen (Telefonieren)" + ], + "md5": "3d4161bb46e72b04ec824e471b003c4b" + }, + { + "authorized_access_point": "Anthropometrie", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4125475-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041254759" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4125475-2" + } + ], + "identifier": "http://d-nb.info/gnd/4125475-2", + "closeMatch": [ + { + "authorized_access_point": "Anthropome\u0301trie", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133629822" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11938480" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119384800" + } + ] + }, + { + "authorized_access_point": "Antropometria", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254345205" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "18100" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/18100" + } + ] + }, + { + "authorized_access_point": "Antropometri\u0301a", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254404988" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX4576284" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX4576284" + } + ] + } + ], + "pid": "041254759", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Auxologie" + } + ], + "md5": "62a48cd7144b6989cb01c7ab2c1bdac5" + }, + { + "authorized_access_point": "Veranstaltung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4125453-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041254538" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4125453-3" + } + ], + "identifier": "http://d-nb.info/gnd/4125453-3", + "closeMatch": [ + { + "authorized_access_point": "Especta\u0301culos", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1299909892" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX526296" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX526296" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Veranstaltung", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)966670582" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "27683-4" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/27683-4" + } + ] + }, + { + "authorized_access_point": "Veranstaltung", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970600127" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10065094" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10065094" + } + ] + } + ], + "pid": "041254538", + "type": "bf:Topic", + "variant_access_point": [ + "Event", + "Veranstaltungen", + "Events" + ], + "md5": "91033034a096fcdb9e57e37d4fc46255" + }, + { + "authorized_access_point": "Grafiker", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4125173-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041251733" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4125173-8" + } + ], + "identifier": "http://d-nb.info/gnd/4125173-8", + "closeMatch": [ + { + "authorized_access_point": "Commercial artists", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134352247" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85028916" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85028916" + } + ] + }, + { + "authorized_access_point": "Graphic artists", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331597730" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2006004207" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2006004207" + } + ] + }, + { + "authorized_access_point": "Graphistes", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134352247" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12507269" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12507269h" + } + ] + } + ], + "pid": "041251733", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ku\u0308nstler" + } + ], + "related": [ + { + "authorized_access_point": "Grafikerin" + } + ], + "variant_access_point": [ + "Graphiker" + ], + "md5": "f10cae40ae49a2929745eeb1db7e160d" + }, + { + "authorized_access_point": "Unternehmensentwicklung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4125011-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041250117" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4125011-4" + } + ], + "identifier": "http://d-nb.info/gnd/4125011-4", + "closeMatch": [ + { + "authorized_access_point": "Corporations - Growth", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134693982" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85032941" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85032941" + } + ] + }, + { + "authorized_access_point": "Entreprises - Croissance", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134693982" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11961373" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11961373c" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Unternehmenserfolg", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)967010853" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "12069-4" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/12069-4" + } + ] + } + ], + "pid": "041250117", + "type": "bf:Topic", + "variant_access_point": [ + "Unternehmen" + ], + "md5": "a1c12b5505b4ee8bbf0591e01fc4b80f" + }, + { + "authorized_access_point": "Wasserbedarf", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4124436-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041244362" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4124436-9" + } + ], + "identifier": "http://d-nb.info/gnd/4124436-9", + "closeMatch": [ + { + "authorized_access_point": "Water requirements", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134045700" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh00005691" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh00005691" + } + ] + }, + { + "authorized_access_point": "Besoins en eau", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134045700" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11977153" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11977153v" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "water requirements", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1256270288" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "8323" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_8323" + } + ] + } + ], + "pid": "041244362", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bedarf" + } + ], + "variant_access_point": [ + "Wasser" + ], + "md5": "91faf9f4f77a05deaa59f70958815363" + }, + { + "authorized_access_point": "Tochtergesellschaft", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4124317-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04124317X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4124317-1" + } + ], + "identifier": "http://d-nb.info/gnd/4124317-1", + "closeMatch": [ + { + "authorized_access_point": "Subsidiary corporations", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134501099" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85129532" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85129532" + } + ] + }, + { + "authorized_access_point": "Filiales", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134501099" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11971987" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11971987x" + } + ] + }, + { + "authorized_access_point": "Filiales", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1299912303" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX553203" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX553203" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Tochtergesellschaft", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)967004896" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "18119-6" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/18119-6" + } + ] + }, + { + "authorized_access_point": "Tochtergesellschaft", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970597851" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10037293" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10037293" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Eine Tochtergesellschaft ist ein Unternehmen, das unmittelbar oder mittelbar von einem Mutterunternehmen kontrolliert wird." + ] + } + ], + "pid": "04124317X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Abha\u0308ngiges Unternehmen" + } + ], + "variant_access_point": [ + "Tochterunternehmen" + ], + "md5": "5e0ed673ee96bb6c13da9634455a99ba" + }, + { + "authorized_access_point": "Ru\u0308ckstand", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4124083-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041240839" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4124083-2" + } + ], + "identifier": "http://d-nb.info/gnd/4124083-2", + "closeMatch": [ + { + "authorized_access_point": "Re\u0301sidus", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134038585" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11975880" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119758806" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "residues", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1256252875" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "6518" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_6518" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Mit einzelnen Substanzen werden keine Komposita gebildet (Komposita wie Pestizidru\u0308ckstand sollten aber mo\u0308glich sein)" + ] + } + ], + "pid": "041240839", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Reststoff" + }, + { + "authorized_access_point": "Restabfall" + } + ], + "md5": "75637a3adfc5bbdf2457aa6c7e92115b" + }, + { + "authorized_access_point": "Massentourismus", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4123722-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041237226" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4123722-5" + } + ], + "identifier": "http://d-nb.info/gnd/4123722-5", + "closeMatch": [ + { + "authorized_access_point": "Overtourism", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134026447" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2019000183" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2019000183" + } + ] + }, + { + "authorized_access_point": "Tourisme de masse", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134026447" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17901252" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17901252q" + } + ] + } + ], + "pid": "041237226", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tourismus" + } + ], + "md5": "7a07fc44bb235050e3e44ada1e58f94f" + }, + { + "authorized_access_point": "Faseroptischer Sensor", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4123189-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041231899" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4123189-2" + } + ], + "identifier": "http://d-nb.info/gnd/4123189-2", + "closeMatch": [ + { + "authorized_access_point": "Optical fiber detectors", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133827055" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh93001076" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh93001076" + } + ] + }, + { + "authorized_access_point": "De\u0301tecteurs a\u0300 fibres optiques", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133827055" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12545899" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12545899f" + } + ] + } + ], + "pid": "041231899", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Optischer Sensor" + } + ], + "variant_access_point": [ + "Faseroptik", + "FOS (Sensortechnik)" + ], + "md5": "5192aa1e81aa8167feda36dc6ac77d85" + }, + { + "authorized_access_point": "Beurteilungsspielraum", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4122080-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041220803" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4122080-8" + } + ], + "identifier": "http://d-nb.info/gnd/4122080-8", + "pid": "041220803", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Ermessen" + } + ], + "variant_access_point": [ + "Wertungsspielraum" + ], + "md5": "7c383c59fb5f7592d77c88a5bafbc4be" + }, + { + "authorized_access_point": "Vierung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4121876-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041218760" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4121876-0" + } + ], + "identifier": "http://d-nb.info/gnd/4121876-0", + "closeMatch": [ + { + "authorized_access_point": "Crossing (Architecture)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334556571" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85034295" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85034295" + } + ] + } + ], + "pid": "041218760", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schiff (Architektur)" + } + ], + "md5": "a6ffd7bc7234ef6299128fb45a36dafe" + }, + { + "authorized_access_point": "Truthu\u0308hner (Unterfamilie)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4121789-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041217896" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4121789-5" + } + ], + "identifier": "http://d-nb.info/gnd/4121789-5", + "pid": "041217896", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fasanenartige" + } + ], + "variant_access_point": [ + "Meleagridinae", + "Meleagrididae" + ], + "md5": "9b1fa34ff35fd0432e3d9854f13eb121" + }, + { + "authorized_access_point": "Statistisches Modell", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4121722-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041217225" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4121722-6" + } + ], + "identifier": "http://d-nb.info/gnd/4121722-6", + "exactMatch": [ + { + "authorized_access_point": "Stochastic models", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134627246" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2005004376" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2005004376" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Statistisches_Modell&oldid=219273797" + ] + } + ], + "pid": "041217225", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mathematisches Modell" + } + ], + "related": [ + { + "authorized_access_point": "Stochastisches Modell" + } + ], + "variant_access_point": [ + "Statistik" + ], + "md5": "019597ba1163e85af2b98826c694512e" + }, + { + "authorized_access_point": "Spezielle Botanik", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4121702-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041217020" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4121702-0" + } + ], + "identifier": "http://d-nb.info/gnd/4121702-0", + "pid": "041217020", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Botanik" + } + ], + "md5": "a6fe3ac10c6343490772f5710d47d0f3" + }, + { + "authorized_access_point": "Schutzbereich", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4121630-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04121630X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4121630-1" + } + ], + "identifier": "http://d-nb.info/gnd/4121630-1", + "pid": "04121630X", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Ratio legis" + } + ], + "variant_access_point": [ + "Rayon (Schutzbereich)", + "Schutzumfang" + ], + "md5": "8d46076172339462bf32bd3dd253e99d" + }, + { + "authorized_access_point": "Politische Justiz", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4121487-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041214870" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4121487-0" + } + ], + "identifier": "http://d-nb.info/gnd/4121487-0", + "closeMatch": [ + { + "authorized_access_point": "Justice, Administration of - Political aspects", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133696376" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85071136" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85071136" + } + ] + }, + { + "authorized_access_point": "Justice et politique", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133696376" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13319233" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb133192330" + } + ] + }, + { + "authorized_access_point": "Justicia y poli\u0301tica", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254474099" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX549941" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX549941" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "politische Justiz", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970580037" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10054809" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10054809" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Als politische Justiz bezeichnet man die Instrumentalisierung von Gerichtsverfahren zur Benachteiligung oder Ausschaltung von Regimegegnern." + ] + } + ], + "pid": "041214870", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Justiz" + } + ], + "md5": "eb11d8441a079322d01d37dc1084edf3" + }, + { + "authorized_access_point": "Exkursion", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4121233-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041212339" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4121233-2" + } + ], + "identifier": "http://d-nb.info/gnd/4121233-2", + "closeMatch": [ + { + "authorized_access_point": "Tourism and art", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332366899" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85136266" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85136266" + } + ] + }, + { + "authorized_access_point": "E\u0301le\u0300ves du secondaire - Voyages", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332366899" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12528541" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12528541m" + } + ] + } + ], + "pid": "041212339", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Reise" + } + ], + "related": [ + { + "authorized_access_point": "Studienreise" + } + ], + "variant_access_point": [ + "Exkursionen" + ], + "md5": "92966f235f553a56ded4c2168a5af404" + }, + { + "authorized_access_point": "Differenzierung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4121138-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041211383" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4121138-8" + } + ], + "identifier": "http://d-nb.info/gnd/4121138-8", + "exactMatch": [ + { + "authorized_access_point": "Differenzierung", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970543697" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10038458" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10038458" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Verknu\u0308pfe mit Anwendungsgebiet" + ] + } + ], + "pid": "041211383", + "type": "bf:Topic", + "md5": "4344dc61d93643a1b5bf42298959ebd1" + }, + { + "authorized_access_point": "Dachdeckung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4121115-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041211154" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4121115-7" + } + ], + "identifier": "http://d-nb.info/gnd/4121115-7", + "closeMatch": [ + { + "authorized_access_point": "Roofing", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1321205090" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85115317" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85115317" + } + ] + }, + { + "authorized_access_point": "Couverture (construction)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1321205090" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11933684" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11933684q" + } + ] + } + ], + "pid": "041211154", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gewerk" + } + ], + "related": [ + { + "authorized_access_point": "Dachdecker" + } + ], + "variant_access_point": [ + "Dachdecken", + "Dachdeckungsarbeit", + "Dachdeckerarbeit" + ], + "md5": "c86c7ef4ae578a08ca7439f08d0addce" + }, + { + "authorized_access_point": "Amtspflichtverletzung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4120886-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041208862" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4120886-9" + } + ], + "identifier": "http://d-nb.info/gnd/4120886-9", + "closeMatch": [ + { + "authorized_access_point": "Misconduct in office", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133822789" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85085982" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85085982" + } + ] + }, + { + "authorized_access_point": "Fonctionnaires - Responsabilite\u0301 pe\u0301nale", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133822789" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12527222" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb125272228" + } + ] + }, + { + "authorized_access_point": "Pre\u0301varication", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134279477" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12333253" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12333253f" + } + ] + }, + { + "authorized_access_point": "Delitos de los funcionarios", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254512381" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX530145" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX530145" + } + ] + } + ], + "pid": "041208862", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Unerlaubte Handlung" + } + ], + "variant_access_point": [ + "Amtspflicht" + ], + "md5": "72de57d7d4ff7df09095c3f3065d97ae" + }, + { + "authorized_access_point": "Herkunft", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4120440-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041204409" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4120440-2" + } + ], + "identifier": "http://d-nb.info/gnd/4120440-2", + "closeMatch": [ + { + "authorized_access_point": "Provenances", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134650639" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2002006528" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2002006528" + } + ] + }, + { + "authorized_access_point": "Provenance", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134650639" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12452859" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12452859h" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "provenance", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1256221309" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "16022" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_16022" + } + ] + }, + { + "authorized_access_point": "regionale Herkunft", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970585098" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10046547" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10046547" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Herkunft einer Person oder einer Sache.", + "I.d.R. nicht permutierend. Verknu\u0308pfe mit dem jeweiligen Gegenstand bzw. verwende spezifisches SW, z.B. Soziale Herkunft." + ] + } + ], + "pid": "041204409", + "type": "bf:Topic", + "variant_access_point": [ + "Provenienz", + "Regionale Herkunft" + ], + "md5": "3399bcb2d3627f1380fcd8560581d3b2" + }, + { + "authorized_access_point": "Wirtschaftssprache", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4117662-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041176626" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4117662-5" + } + ], + "identifier": "http://d-nb.info/gnd/4117662-5", + "closeMatch": [ + { + "authorized_access_point": "Langage commercial et des affaires", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134015186" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11967113" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11967113d" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Wirtschaftsterminologie", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)968557104" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "30030-1" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/30030-1" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Bei Wo\u0308rterbu\u0308chern ist SW Wirtschaft zu bevorzugen." + ] + } + ], + "pid": "041176626", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fachsprache" + }, + { + "authorized_access_point": "Sondersprache" + } + ], + "variant_access_point": [ + "Gescha\u0308ftssprache", + "Wirtschaft", + "Wirtschaft", + "Handelssprache", + "Handel", + "Handel", + "Kaufmannssprache", + "Businesssprache" + ], + "md5": "d7179996a631f900a797a4bddb67f8fe" + }, + { + "authorized_access_point": "Waldsterben", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4117580-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041175808" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4117580-3" + } + ], + "identifier": "http://d-nb.info/gnd/4117580-3", + "closeMatch": [ + { + "authorized_access_point": "Forest declines", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134203578" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh88004553" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh88004553" + } + ] + }, + { + "authorized_access_point": "Fore\u0302ts - De\u0301pe\u0301rissement", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134203578" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12190274" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12190274k" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "forest decline", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1256269948" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "29300" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_29300" + } + ] + }, + { + "authorized_access_point": "Waldsterben", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970603223" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10061942" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10061942" + } + ] + } + ], + "pid": "041175808", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Waldschaden" + } + ], + "variant_access_point": [ + "Neuartiger Waldschaden" + ], + "md5": "1083963a048155ad289623e4e27c3247" + }, + { + "authorized_access_point": "V-Mann", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4117389-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041173899" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4117389-2" + } + ], + "identifier": "http://d-nb.info/gnd/4117389-2", + "closeMatch": [ + { + "authorized_access_point": "Informers", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134765045" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85066307" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85066307" + } + ] + }, + { + "authorized_access_point": "Indicateurs", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134765045" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11978390" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11978390v" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Eine Vertrauensperson ist eine Person, die weder einer Strafverfolgungsbeho\u0308rde noch einem Nachrichtendienst angeho\u0308rt und die diese Einrichtungen auf la\u0308ngere Zeit bei der Aufkla\u0308rung von Straftaten oder verfassungsfeindlichen Bestrebungen unterstu\u0308tzt, wobei diese Unterstu\u0308tzung Dritten nicht bekannt ist." + ] + } + ], + "pid": "041173899", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Informant" + } + ], + "related": [ + { + "authorized_access_point": "Agent provocateur" + }, + { + "authorized_access_point": "Verdeckter Ermittler" + } + ], + "variant_access_point": [ + "V-Person", + "Vertrauensperson", + "Informant", + "Polizeispitzel", + "Vertrauensmann", + "V-Leute" + ], + "md5": "19f2833755cafb1ec6b6e15b3e3f88a4" + }, + { + "authorized_access_point": "Unrecht", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4117292-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041172922" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4117292-9" + } + ], + "identifier": "http://d-nb.info/gnd/4117292-9", + "pid": "041172922", + "type": "bf:Topic", + "md5": "67660b4dd4dfe0bd12d265de55d416c8" + }, + { + "authorized_access_point": "Tod (Motiv)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4117229-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041172299" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4117229-2" + } + ], + "identifier": "http://d-nb.info/gnd/4117229-2", + "closeMatch": [ + { + "authorized_access_point": "Death in literature", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134546068" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85036108" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85036108" + } + ] + }, + { + "authorized_access_point": "Death in art", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134546076" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85036106" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85036106" + } + ] + } + ], + "pid": "041172299", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "variant_access_point": [ + "Todesdarstellung" + ], + "md5": "e4ff1fd7a562d11ecf83e2d48ab25587" + }, + { + "authorized_access_point": "Schwarze", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4116433-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041164334" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4116433-7" + } + ], + "identifier": "http://d-nb.info/gnd/4116433-7", + "closeMatch": [ + { + "authorized_access_point": "Black people", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133928021" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85014672" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85014672" + } + ] + }, + { + "authorized_access_point": "Black race", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113430949X" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85014604" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85014604" + } + ] + }, + { + "authorized_access_point": "Noirs", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133928021" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11932628" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119326280" + } + ] + }, + { + "authorized_access_point": "Race ne\u0301groi\u0308de", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113430949X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF123951634" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb123951636" + } + ] + }, + { + "authorized_access_point": "Neri", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254343350" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "16861" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/16861" + } + ] + }, + { + "authorized_access_point": "Raza negra", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254484787" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX4576825" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX4576825" + } + ] + }, + { + "authorized_access_point": "Negros", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254484795" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX4576498" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX4576498" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Schwarze Menschen", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970112211" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "15929-0" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/15929-0" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Ethnografikum ohne Territorium. Ausser d. weibl. Form werden keine weiteren Adjektiv-Substantiv-Verbindungen gebildet, sondern es wird mit dem entspr. Sach-SW verknu\u0308pft, z.B. s Schwarze ; s Kind", + "Auch fu\u0308r Schwarze innerhalb Afrikas" + ] + } + ], + "pid": "041164334", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Person of Color" + } + ], + "related": [ + { + "authorized_access_point": "Schwarze Frau" + } + ], + "variant_access_point": [ + "Neger", + "Schwarze Rasse", + "Schwarzer", + "Mohr", + "Schwarze Menschen" + ], + "md5": "fe504768b22249a84afe0e49f5312c53" + }, + { + "authorized_access_point": "Reparatur", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4115746-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04115746X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4115746-1" + } + ], + "identifier": "http://d-nb.info/gnd/4115746-1", + "note": [ + { + "noteType": "general", + "label": [ + "Als Reparatur bezeichnet man einen Prozess, bei dem ein mangelhafter Gegenstand wieder in einen Zustand gebracht wird, in dem es seine bestimmungsgema\u0308\u00dfe Verwendung erfu\u0308llen kann.", + "Im Unterschied dazu werden bei der Instandsetzung Verschleisserscheinungen behoben." + ] + } + ], + "pid": "04115746X", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Instandsetzung" + } + ], + "variant_access_point": [ + "Reparaturen" + ], + "md5": "6b5fea3a5a15f1c3a226384837aaf365" + }, + { + "authorized_access_point": "Mahlen", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4114491-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041144910" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4114491-0" + } + ], + "identifier": "http://d-nb.info/gnd/4114491-0", + "closeMatch": [ + { + "authorized_access_point": "Milling", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134045247" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh00006472" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh00006472" + } + ] + }, + { + "authorized_access_point": "Grain - Milling", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133670695" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85056219" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85056219" + } + ] + }, + { + "authorized_access_point": "Ce\u0301re\u0301ales - Mouture", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133670695" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11967849" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11967849b" + } + ] + }, + { + "authorized_access_point": "Mouture", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134045247" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11977075" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11977075w" + } + ] + }, + { + "authorized_access_point": "Cereales - Molienda", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254458492" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX4663992" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX4663992" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "milling", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1256234427" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "4840" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_4840" + } + ] + } + ], + "pid": "041144910", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zerkleinern" + } + ], + "md5": "3280ceb3feca351c41ca9a481a66bb59" + }, + { + "authorized_access_point": "Kra\u0308uter", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4114299-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041142993" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4114299-8" + } + ], + "identifier": "http://d-nb.info/gnd/4114299-8", + "closeMatch": [ + { + "authorized_access_point": "Erbe", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254338152" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "12724" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/12724" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Kra\u0308uter", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)966822684" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "14068-3" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/14068-3" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Pluralansetzung nach Du. Verwende nach Mo\u0308glichkeit einen engeren Begriff wie Heilpflanzen, Wildkra\u0308uter, Zauberkra\u0308uter, Ku\u0308chenkra\u0308uter" + ] + } + ], + "pid": "041142993", + "type": "bf:Topic", + "md5": "642224ab3b7a91a29e35fd64a1d9f374" + }, + { + "authorized_access_point": "Kochbuch", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4114240-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041142403" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4114240-8" + } + ], + "identifier": "http://d-nb.info/gnd/4114240-8", + "closeMatch": [ + { + "authorized_access_point": "Food writing", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133792855" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh96003769" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh96003769" + } + ] + }, + { + "authorized_access_point": "Livres de cuisine", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133792855" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12425736" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12425736p" + } + ] + }, + { + "authorized_access_point": "Livres de cuisine", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134838743" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12425736" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12425736p" + } + ] + }, + { + "authorized_access_point": "Libros de cocina", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254449876" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX556809" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX556809" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Sammlung von Rezepten aller Art (RDA AH-007).", + "Vorzugsweise mit dem Endprodukt (z. B. Kartoffelgericht, Geba\u0308ck) zu kombinieren, im Einzelnen siehe auch die Hinweise bei den jeweiligen Schlagwo\u0308rtern (z.B. Wildbret u. a\u0308.)." + ] + } + ], + "pid": "041142403", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Anleitung" + } + ], + "variant_access_point": [ + "Kochen", + "Kochrezept", + "Rezepte", + "Rezeptsammlung", + "Rezept" + ], + "md5": "053273ab4c2a2ff527152a237fbfa5d1" + }, + { + "authorized_access_point": "Endokrine Regulation", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4113434-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041134346" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4113434-5" + } + ], + "identifier": "http://d-nb.info/gnd/4113434-5", + "note": [ + { + "noteType": "general", + "label": [ + "Regulation durch Hormone" + ] + } + ], + "pid": "041134346", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Regulation" + } + ], + "variant_access_point": [ + "Hormonale Regulation", + "Hormonelle Regulation", + "Hormonregulation", + "Innersekretorische Regulation", + "Hormonsystem" + ], + "md5": "1f5980810a8c874245811d61cd028c03" + }, + { + "authorized_access_point": "Eigentumsgarantie", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4113388-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041133889" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4113388-2" + } + ], + "identifier": "http://d-nb.info/gnd/4113388-2", + "note": [ + { + "noteType": "general", + "label": [ + "Das Grundgesetz (Artikel 14) sowie die Verfassungen der La\u0308nder in Deutschland enthalten Eigentumsgarantien." + ] + } + ], + "pid": "041133889", + "type": "bf:Topic", + "variant_access_point": [ + "Eigentumsfreiheit", + "Eigentumsgrundrecht" + ], + "md5": "6ecd23261c9c1882e9ca29eca8d5b123" + }, + { + "authorized_access_point": "Altbau", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4112500-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041125002" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4112500-9" + } + ], + "identifier": "http://d-nb.info/gnd/4112500-9", + "exactMatch": [ + { + "authorized_access_point": "Altbau", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)97053146X" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10035178" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10035178" + } + ] + } + ], + "pid": "041125002", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bauwerk" + } + ], + "md5": "d02b2fff5eaf4eba5f154e89db51c2ad" + }, + { + "authorized_access_point": "Schwedisch-norwegische Union", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4106794-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041067940" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4106794-0" + } + ], + "identifier": "http://d-nb.info/gnd/4106794-0", + "pid": "041067940", + "type": "bf:Topic", + "md5": "0f0b6fcd462c5a2f5865b04f33fcc837" + }, + { + "authorized_access_point": "Unternehmensbewertung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4078594-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040785947" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4078594-4" + } + ], + "identifier": "http://d-nb.info/gnd/4078594-4", + "closeMatch": [ + { + "authorized_access_point": "Business enterprises - Valuation", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133973310" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85018291" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85018291" + } + ] + }, + { + "authorized_access_point": "Corporations - Valuation", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133973329" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85032956" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85032956" + } + ] + }, + { + "authorized_access_point": "Entreprises - E\u0301valuation", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133973310" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11950175" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119501752" + } + ] + }, + { + "authorized_access_point": "Empresas - Valoracio\u0301n", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1299908144" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX568310" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX568310" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Unternehmensbewertung", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)967010810" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "12438-6" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/12438-6" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Nur benutzt fu\u0308r die Bewertung des Gesamtunternehmens. Fu\u0308r die Bewertung einzelner Bereiche oder Gegensta\u0308nde verknu\u0308pfe mit dem jeweils zutreffenden SW." + ] + } + ], + "pid": "040785947", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bewertung" + } + ], + "related": [ + { + "authorized_access_point": "Bonita\u0308t" + }, + { + "authorized_access_point": "Fairness Opinion" + }, + { + "authorized_access_point": "Due Diligence" + } + ], + "variant_access_point": [ + "Bewertung", + "Unternehmenswert" + ], + "md5": "d0c93c4ae12d7c85833b5e4bb9aca288" + }, + { + "authorized_access_point": "Stundenbuch", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4077984-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04077984X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4077984-1" + } + ], + "identifier": "http://d-nb.info/gnd/4077984-1", + "closeMatch": [ + { + "authorized_access_point": "Books of hours", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113361633X" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85062530" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85062530" + } + ] + }, + { + "authorized_access_point": "Livres d'heures", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113361633X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13553869" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13553869c" + } + ] + }, + { + "authorized_access_point": "Libri d'ore", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)125432996X" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "5917" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/5917" + } + ] + }, + { + "authorized_access_point": "Libros de horas", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254491937" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX524632" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX524632" + } + ] + } + ], + "pid": "04077984X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gebetbuch" + } + ], + "related": [ + { + "authorized_access_point": "Brevier" + }, + { + "authorized_access_point": "Horologion" + } + ], + "variant_access_point": [ + "Livre d'heures", + "Horarium", + "Stundenbu\u0308cher" + ], + "md5": "2bb9fc5dfe8e536d9d91d2e803eeef7e" + }, + { + "authorized_access_point": "Staatshaftung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4077782-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040777820" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4077782-0" + } + ], + "identifier": "http://d-nb.info/gnd/4077782-0", + "exactMatch": [ + { + "authorized_access_point": "Staatshaftung", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970593023" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10058963" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10058963" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Staatshaftung bezeichnet die Einstandspflicht eines Hoheitstra\u0308gers fu\u0308r die Folgen seines Handelns. Im engeren Sinne umfasst die Benennung nur hoheitliches und rechtswidriges Handeln; im weiteren Sinne bezieht sie sich auch auf privatrechtliches und rechtma\u0308\u00dfiges Handeln." + ] + } + ], + "pid": "040777820", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Allgemeines Verwaltungsrecht" + }, + { + "authorized_access_point": "Haftung" + } + ], + "related": [ + { + "authorized_access_point": "Amtshaftung" + } + ], + "variant_access_point": [ + "Haftung", + "Staatshaftungsrecht", + "O\u0308ffentlich-rechtliche Ersatzleistung", + "O\u0308ffentlich-rechtliche Wiedergutmachung" + ], + "md5": "93888657e9d7dfc44856a793e8a3fb11" + }, + { + "authorized_access_point": "Spitzenlast-Preisbildung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4077683-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040776832" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4077683-9" + } + ], + "identifier": "http://d-nb.info/gnd/4077683-9", + "closeMatch": [ + { + "authorized_access_point": "Peak-load pricing", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331580382" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh94005709" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh94005709" + } + ] + } + ], + "pid": "040776832", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Preisbildung" + } + ], + "variant_access_point": [ + "Peak-load-pricing", + "Preisbildung", + "Spitzenleistung" + ], + "md5": "21c655f73fc223938b65f4b7995839b7" + }, + { + "authorized_access_point": "Pharmakotherapie", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4076066-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040760669" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4076066-2" + } + ], + "identifier": "http://d-nb.info/gnd/4076066-2", + "closeMatch": [ + { + "authorized_access_point": "Chimiothe\u0301rapie", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333246218" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11946047" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11946047s" + } + ] + }, + { + "authorized_access_point": "Farmacoterapia", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)125433095X" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "6603" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/6603" + } + ] + }, + { + "authorized_access_point": "Farmacoterapia", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254472754" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX538644" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX538644" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "drug therapy", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1256245534" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "2394" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_2394" + } + ] + }, + { + "authorized_access_point": "Drug Therapy", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1241636737" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D004358" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D004358" + } + ] + } + ], + "pid": "040760669", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Therapie" + } + ], + "variant_access_point": [ + "Arzneimitteltherapie", + "Arzneitherapie", + "Medikamento\u0308se Therapie" + ], + "md5": "3305275a6d85705ac225c344a3621545" + }, + { + "authorized_access_point": "Musikdruck", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4075121-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04075121X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4075121-1" + } + ], + "identifier": "http://d-nb.info/gnd/4075121-1", + "closeMatch": [ + { + "authorized_access_point": "Musique imprime\u0301e", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134550618" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12135729" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb121357293" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Benutzt fu\u0308r das Erzeugnis, zur Drucktechnik benutze Notendruck. Nach Anlage 6 RSWK 3. Aufl. auch als Formschlagwort zugelassen." + ] + } + ], + "pid": "04075121X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Musikalien" + } + ], + "variant_access_point": [ + "Musik", + "Musikausgabe", + "Notendruck (Musikausgabe)" + ], + "md5": "dc86f905ceebd61aa070979557f1a236" + }, + { + "authorized_access_point": "Lehrmittel", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4074111-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040741117" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4074111-4" + } + ], + "identifier": "http://d-nb.info/gnd/4074111-4", + "closeMatch": [ + { + "authorized_access_point": "Teaching - Aids and devices", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133683266" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85133053" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85133053" + } + ] + }, + { + "authorized_access_point": "Mate\u0301riel didactique", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133683266" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF119771160" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11977116n" + } + ] + }, + { + "authorized_access_point": "Sussidi didattici", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254365559" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "33382" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/33382" + } + ] + }, + { + "authorized_access_point": "Material dida\u0301ctico", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254455639" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX528420" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX528420" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Lehrmaterial", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)966834526" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "18292-6" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/18292-6" + } + ] + }, + { + "authorized_access_point": "Lehrmittel", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970568800" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10050780" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10050780" + } + ] + }, + { + "authorized_access_point": "Studienmaterial", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970595581" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10059636" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10059636" + } + ] + }, + { + "authorized_access_point": "Unterrichtsmaterial", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970599692" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10050859" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10050859" + } + ] + }, + { + "authorized_access_point": "Unterrichtsmedien", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970599706" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10051872" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10051872" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Unterrichtsmedien als Hilfsmittel (RDA AH-007).", + "Fu\u0308r Materialien, die Schulbu\u0308cher erga\u0308nzen oder ersetzen, diesen gegenu\u0308ber eine geringere Verbindlichkeit fu\u0308r die Unterrichtsgestaltung haben und spezielle Themen fu\u0308r eines oder mehrere Unterrichtsfa\u0308cher aufbereiten; analog auch fu\u0308r den au\u00dferschulischen Bereich. Lehrmittel ko\u0308nnen sowohl fu\u0308r Lehrer wie fu\u0308r Schu\u0308ler (Lernende) bestimmt sein. Auch fu\u0308r Darstellungen von Fachwissen, in denen ein anderes Fach als das des eigentlichen Zielberufs behandelt wird. Nicht fu\u0308r studienbegleitende Literatur, Lehrbu\u0308cher und Lehrmaterialien zum Selbststudium; nicht fu\u0308r programmierte, interaktive Lehrmittel (verwende hierfu\u0308r Lernsoftware) (RDA AH-007).", + "Nicht fu\u0308r Studienbegleitende Lit., nicht fu\u0308r Lehrbu\u0308cher u. -materialien zum Selbststudium; zu Lehrbuch siehe dort. Methodisch-didaktische Anleitungen ohne spezielle Materialien (z.B. Medien) erhalten keine Formangabe." + ] + } + ], + "pid": "040741117", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Einfu\u0308hrung" + } + ], + "related": [ + { + "authorized_access_point": "Aufgabensammlung" + }, + { + "authorized_access_point": "Unterrichtstechnologie" + } + ], + "variant_access_point": [ + "Arbeitsmittel", + "Bildungsmittel", + "Lehrmaterial", + "Lernmaterial", + "Lernmittel", + "Unterricht", + "Unterricht", + "Unterrichtsbeispiele", + "Unterrichtsmaterial", + "Unterrichtsmedien", + "Unterrichtsmedium", + "Unterrichtsmittel" + ], + "md5": "f33b4f1425a467fd17e71578c1225b14" + }, + { + "authorized_access_point": "Kreditmarkt", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4073788-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040737888" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4073788-3" + } + ], + "identifier": "http://d-nb.info/gnd/4073788-3", + "closeMatch": [ + { + "authorized_access_point": "Capital market", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134089090" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85019945" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85019945" + } + ] + }, + { + "authorized_access_point": "Marche\u0301 financier", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134089090" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11996016" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11996016j" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Kreditmarkt", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)966818679" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "11433-0" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/11433-0" + } + ] + }, + { + "authorized_access_point": "Finanzmarkt", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970549962" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10034971" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10034971" + } + ] + }, + { + "authorized_access_point": "Kreditmarkt", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970566425" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10044823" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10044823" + } + ] + } + ], + "pid": "040737888", + "type": "bf:Topic", + "variant_access_point": [ + "Finanzmarkt" + ], + "md5": "c81fe000428a4b69ad7df54f590f5f04" + }, + { + "authorized_access_point": "Krebs (Medizin)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4073781-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040737810" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4073781-0" + } + ], + "identifier": "http://d-nb.info/gnd/4073781-0", + "closeMatch": [ + { + "authorized_access_point": "Cancer - Patients", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134509650" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85019519" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85019519" + } + ] + }, + { + "authorized_access_point": "Cance\u0301reux", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134509650" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11931109" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119311093" + } + ] + }, + { + "authorized_access_point": "Cancer", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133610633" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11931105" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11931105q" + } + ] + }, + { + "authorized_access_point": "Cancro", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254349537" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "21132" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/21132" + } + ] + }, + { + "authorized_access_point": "Ca\u0301ncer", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254452176" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX526004" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX526004" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Neoplasms", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1241609667" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D009369" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D009369" + } + ] + }, + { + "authorized_access_point": "Krebskrankheit", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)968411649" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "18899-3" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/18899-3" + } + ] + }, + { + "authorized_access_point": "Krebs", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970566395" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10049933" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10049933" + } + ] + } + ], + "pid": "040737810", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tumor" + } + ], + "variant_access_point": [ + "Carcinom", + "Malignom", + "Maligner Tumor", + "Neoplasma (Krebs)", + "Karzinom", + "Bo\u0308sartiger Tumor", + "Krebserkrankung" + ], + "md5": "fb02e95b96bfa060e71145a55c0f8fd5" + }, + { + "authorized_access_point": "Kontrastive Grammatik", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4073706-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040737063" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4073706-8" + } + ], + "identifier": "http://d-nb.info/gnd/4073706-8", + "exactMatch": [ + { + "authorized_access_point": "Grammaire compare\u0301e", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113404240X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11976576" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11976576c" + } + ] + } + ], + "closeMatch": [ + { + "authorized_access_point": "Grammatica comparata", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254369848" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "36872" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/36872" + } + ] + }, + { + "authorized_access_point": "Grama\u0301tica comparada", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254511776" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX527548" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX527548" + } + ] + } + ], + "pid": "040737063", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Grammatik" + }, + { + "authorized_access_point": "Kontrastive Linguistik" + } + ], + "variant_access_point": [ + "Grammatik", + "Vergleichende Grammatik", + "Konfrontative Grammatik" + ], + "md5": "bbeea1ca40b1181683bab331626c7c89" + }, + { + "authorized_access_point": "Geschlechterrolle", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4071776-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040717763" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4071776-8" + } + ], + "identifier": "http://d-nb.info/gnd/4071776-8", + "closeMatch": [ + { + "authorized_access_point": "Sex role", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133928579" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85120663" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85120663" + } + ] + }, + { + "authorized_access_point": "Ro\u0302le selon le sexe", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133928579" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11932779" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119327795" + } + ] + }, + { + "authorized_access_point": "Rol sexual", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1299901182" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX527889" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX527889" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Geschlechterrolle", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)96696148X" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "30047-5" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/30047-5" + } + ] + }, + { + "authorized_access_point": "Geschlechtsrolle", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)97055379X" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10044127" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10044127" + } + ] + } + ], + "pid": "040717763", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Soziale Rolle" + } + ], + "related": [ + { + "authorized_access_point": "Geschlechtsunterschied" + }, + { + "authorized_access_point": "Gender" + } + ], + "variant_access_point": [ + "Geschlechtsrolle" + ], + "md5": "c95fc4bf02e3fefcbce2795973ce0af1" + }, + { + "authorized_access_point": "Genetik", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4071711-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040717119" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4071711-2" + } + ], + "identifier": "http://d-nb.info/gnd/4071711-2", + "closeMatch": [ + { + "authorized_access_point": "Genetica vegetale", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254320245" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "1542" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/1542" + } + ] + }, + { + "authorized_access_point": "Genetica", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254320229" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "1540" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/1540" + } + ] + }, + { + "authorized_access_point": "Gene\u0301tica", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254433902" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX524577" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX524577" + } + ] + }, + { + "authorized_access_point": "Gene\u0301tica vegetal", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254433899" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX526352" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX526352" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "genetics", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1256216747" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "3222" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_3222" + } + ] + }, + { + "authorized_access_point": "Genetik", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1012494675" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "28854-5" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/28854-5" + } + ] + }, + { + "authorized_access_point": "Genforschung", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970553366" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10045017" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10045017" + } + ] + }, + { + "authorized_access_point": "Genetik", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970553331" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10042870" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10042870" + } + ] + } + ], + "pid": "040717119", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Vererbung" + } + ], + "variant_access_point": [ + "Allgemeine Genetik", + "Erbbiologie", + "Erbforschung", + "Erblehre", + "Vererbungslehre", + "Vererbungswissenschaft", + "Erblichkeitslehre" + ], + "md5": "b9dc06095557f8b18e8b3d0d5f5d9fe3" + }, + { + "authorized_access_point": "Fusionskontrolle", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4071521-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040715213" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4071521-8" + } + ], + "identifier": "http://d-nb.info/gnd/4071521-8", + "exactMatch": [ + { + "authorized_access_point": "Fusionskontrolle", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)966751345" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "10957-6" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/10957-6" + } + ] + } + ], + "pid": "040715213", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Wettbewerbskontrolle" + } + ], + "variant_access_point": [ + "Konzentrationskontrolle", + "Zusammenschlusskontrolle", + "Fusion", + "Unternehmenskonzentration", + "Merger control" + ], + "md5": "749c36900a504f40d170db0ffb3ebb9d" + }, + { + "authorized_access_point": "Filmtheorie", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4071216-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040712168" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4071216-3" + } + ], + "identifier": "http://d-nb.info/gnd/4071216-3", + "closeMatch": [ + { + "authorized_access_point": "Motion pictures - Philosophy", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133955533" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2008108033" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2008108033" + } + ] + }, + { + "authorized_access_point": "Cine - Filosofi\u0301a", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254428917" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX4430093" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX4430093" + } + ] + } + ], + "pid": "040712168", + "type": "bf:Topic", + "variant_access_point": [ + "Film" + ], + "md5": "cdca4219577100b54d6111ee6863dbd1" + }, + { + "authorized_access_point": "Ermittlung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4070924-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040709248" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4070924-3" + } + ], + "identifier": "http://d-nb.info/gnd/4070924-3", + "closeMatch": [ + { + "authorized_access_point": "Criminal investigation", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113393370X" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85034045" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85034045" + } + ] + }, + { + "authorized_access_point": "Enque\u0302tes criminelles", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113393370X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11934170" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11934170w" + } + ] + } + ], + "pid": "040709248", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Beweismittel" + } + ], + "variant_access_point": [ + "Polizeiliche Ermittlungsta\u0308tigkeit", + "Ermitteln", + "Ermittlungsta\u0308tigkeit", + "Ermittlungen" + ], + "md5": "8cbc3a0220a2cbc1978b04e1799b79cc" + }, + { + "authorized_access_point": "Elch", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4070738-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040707385" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4070738-6" + } + ], + "identifier": "http://d-nb.info/gnd/4070738-6", + "closeMatch": [ + { + "authorized_access_point": "Moose", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134206968" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85087175" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85087175" + } + ] + }, + { + "authorized_access_point": "E\u0301lan", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134206968" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16175221" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16175221b" + } + ] + }, + { + "authorized_access_point": "Alci", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)125437163X" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "38252" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/38252" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "elks", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1256207454" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "2536" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_2536" + } + ] + } + ], + "pid": "040707385", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schalenwild" + }, + { + "authorized_access_point": "Hirsche" + } + ], + "variant_access_point": [ + "Alces alces" + ], + "md5": "8f75d397238bee019b85496f9f2b7ae7" + }, + { + "authorized_access_point": "Jainismus", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4070607-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040706079" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4070607-2" + } + ], + "identifier": "http://d-nb.info/gnd/4070607-2", + "closeMatch": [ + { + "authorized_access_point": "Jainism", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133650783" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85069282" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85069282" + } + ] + }, + { + "authorized_access_point": "Jai\u0308nisme", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133650783" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11953383" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11953383z" + } + ] + }, + { + "authorized_access_point": "Giainismo", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254333932" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "8777" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/8777" + } + ] + }, + { + "authorized_access_point": "Jainismo", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254445331" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX542653" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX542653" + } + ] + } + ], + "pid": "040706079", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Jaina" + } + ], + "variant_access_point": [ + "Dschainismus", + "Dschinismus", + "Jaina (Religion)", + "Jinismus" + ], + "md5": "dede4a19e5708d3801fefe8fdf937144" + }, + { + "authorized_access_point": "Dreyfusaffa\u0308re", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4070584-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040705846" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4070584-5" + } + ], + "identifier": "http://d-nb.info/gnd/4070584-5", + "closeMatch": [ + { + "authorized_access_point": "Dreyfus, Alfred, 1859-1935 - Trials, litigation, etc.", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133954790" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2019004577" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2019004577" + } + ] + }, + { + "authorized_access_point": "Dreyfus, Affaire (1894-1906)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133954790" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11942701" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11942701f" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Dreyfus-Aff%C3%A4re&oldid=211040560" + ] + } + ], + "pid": "040705846", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Politischer Skandal" + } + ], + "related": [ + { + "authorized_access_point": "Milita\u0308rgerichtsverfahren" + }, + { + "authorized_access_point": "Antisemitismus" + } + ], + "variant_access_point": [ + "Dreyfus-Affa\u0308re", + "Dreyfus-Prozess" + ], + "md5": "3d1eae463df68c4d8e64c575388cf01b" + }, + { + "authorized_access_point": "Betriebliche Altersversorgung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4069375-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040693759" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4069375-2" + } + ], + "identifier": "http://d-nb.info/gnd/4069375-2", + "note": [ + { + "noteType": "general", + "label": [ + "Fu\u0308r Schweiz benutze Personalvorsorge" + ] + } + ], + "pid": "040693759", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Altersversorgung" + } + ], + "related": [ + { + "authorized_access_point": "Personalvorsorge" + } + ], + "variant_access_point": [ + "Altersversorgung", + "Betriebliche Altersfu\u0308rsorge", + "Betriebliche Altersrente", + "Betriebliche Pension", + "Betriebliche Versorgungsanwartschaft", + "Betriebliches Ruhegeld", + "Betriebspension", + "Betriebsrente", + "Ruhegehalt", + "Ruhegeld", + "Altersversorgung", + "Zweite Sa\u0308ule (Altersversorgung)", + "Company pension" + ], + "md5": "a17eb90efc8c60d3e1d7eabe1e744d3c" + }, + { + "authorized_access_point": "Besamung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4069353-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040693538" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4069353-3" + } + ], + "identifier": "http://d-nb.info/gnd/4069353-3", + "closeMatch": [ + { + "authorized_access_point": "Inse\u0301mination artificielle", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332731503" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11965301" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11965301g" + } + ] + }, + { + "authorized_access_point": "Fecondazione artificiale", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254343601" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "17023" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/17023" + } + ] + }, + { + "authorized_access_point": "Inseminacio\u0301n artificial", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254410945" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX549870" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX549870" + } + ] + }, + { + "authorized_access_point": "artificial insemination", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1256196061" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "638" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_638" + } + ] + } + ], + "pid": "040693538", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zu\u0308chtungstechnik" + } + ], + "related": [ + { + "authorized_access_point": "Besamungsstation" + }, + { + "authorized_access_point": "Insemination" + } + ], + "variant_access_point": [ + "Ku\u0308nstliche Besamung" + ], + "md5": "f5542c0e53b15367bf808d519e56c416" + }, + { + "authorized_access_point": "Anomalie (Medizin)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4068733-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040687333" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4068733-8" + } + ], + "identifier": "http://d-nb.info/gnd/4068733-8", + "closeMatch": [ + { + "authorized_access_point": "Malformations", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134617119" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11953069" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11953069k" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Benutzt fu\u0308r pathologische Varianten in der Medizin" + ] + } + ], + "pid": "040687333", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Missbildung" + }, + { + "authorized_access_point": "Behinderung" + }, + { + "authorized_access_point": "Normvariante" + } + ], + "variant_access_point": [ + "Abart (Medizin)", + "Variation (Medizin)", + "Variante (Medizin)" + ], + "md5": "283bb7b385c5be57baafb8f8345850cd" + }, + { + "authorized_access_point": "Altern", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4068596-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040685969" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4068596-2" + } + ], + "identifier": "http://d-nb.info/gnd/4068596-2", + "closeMatch": [ + { + "authorized_access_point": "Vieillissement", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332657001" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11940843" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119408435" + } + ] + }, + { + "authorized_access_point": "Envejecimiento", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254403310" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX528051" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX528051" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "ageing", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)125619008X" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "192" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_192" + } + ] + }, + { + "authorized_access_point": "Aging", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1282195956" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D000375" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D000375" + } + ] + }, + { + "authorized_access_point": "Altern", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970531648" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10035269" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10035269" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Fu\u0308r die Altersgruppe ab ca. 60 Jahre und in Verbindung mit dem Schlagwort Lebensfu\u0308hrung und dem Formschlagwort Ratgeber wird Alter bevorzugt." + ] + } + ], + "pid": "040685969", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Altersphysiologie" + }, + { + "authorized_access_point": "Gerontologie" + }, + { + "authorized_access_point": "Lebensalter" + }, + { + "authorized_access_point": "Biologisches Alter" + } + ], + "variant_access_point": [ + "Alterungsprozess", + "Altwerden", + "Seneszenz", + "Alterungsprozess (Physiologie)", + "Alterung (Physiologie)" + ], + "md5": "5465476af9b018298d8ee2b3f50bb800" + }, + { + "authorized_access_point": "Zeugen Jehovas", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4067703-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040677036" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4067703-5" + } + ], + "identifier": "http://d-nb.info/gnd/4067703-5", + "closeMatch": [ + { + "authorized_access_point": "Jehovah's Witnesses", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133622674" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85069870" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85069870" + } + ] + }, + { + "authorized_access_point": "Te\u0301moins de Je\u0301hovah", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133622674" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11934681" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11934681x" + } + ] + }, + { + "authorized_access_point": "Testimoni di Geova", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254359044" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "27904" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/27904" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Einzelne Organisationen der Zeugen Jehovas werden als Ko\u0308rperschaften angesetzt" + ] + } + ], + "pid": "040677036", + "type": "bf:Topic", + "variant_access_point": [ + "Bibelforscher", + "Jehovas Zeugen", + "Russelliten", + "Ernste Bibelforscher" + ], + "md5": "5294c0d284d9435cbcfda51045c9f8c8" + }, + { + "authorized_access_point": "Zeuge", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4067701-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04067701X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4067701-1" + } + ], + "identifier": "http://d-nb.info/gnd/4067701-1", + "closeMatch": [ + { + "authorized_access_point": "Witnesses", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334211922" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85147165" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85147165" + } + ] + }, + { + "authorized_access_point": "Te\u0301moins", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334211922" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11975370" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11975370h" + } + ] + }, + { + "authorized_access_point": "Testigos", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1299918964" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX532019" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX532019" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Zeuge", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970606583" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10062915" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10062915" + } + ] + } + ], + "pid": "04067701X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Person" + } + ], + "related": [ + { + "authorized_access_point": "Gewa\u0308hrsmann" + } + ], + "md5": "1a86bb01c893caff3c1e1c129557beee" + }, + { + "authorized_access_point": "Wirtschaftskriminalita\u0308t", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4066464-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040664643" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4066464-8" + } + ], + "identifier": "http://d-nb.info/gnd/4066464-8", + "closeMatch": [ + { + "authorized_access_point": "White collar crimes", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)133158163X" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85146466" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85146466" + } + ] + }, + { + "authorized_access_point": "Criminalite\u0301 des affaires", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)133158163X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13320552" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb133205524" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Wirtschaftskriminalita\u0308t", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)967041279" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "16201-3" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/16201-3" + } + ] + }, + { + "authorized_access_point": "Wirtschaftskriminalita\u0308t", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970604912" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10049794" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10049794" + } + ] + } + ], + "pid": "040664643", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kriminalita\u0308t" + } + ], + "related": [ + { + "authorized_access_point": "Wirtschaftsdelikt" + }, + { + "authorized_access_point": "Wirtschaftsstrafrecht" + } + ], + "variant_access_point": [ + "White-collar crime" + ], + "md5": "866e57e71edaedd084d985800ea53604" + }, + { + "authorized_access_point": "Wirtschaftlichkeit", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4066424-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040664244" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4066424-7" + } + ], + "identifier": "http://d-nb.info/gnd/4066424-7", + "exactMatch": [ + { + "authorized_access_point": "Wirtschaftlichkeit", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)967040701" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "12073-6" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/12073-6" + } + ] + }, + { + "authorized_access_point": "Wirtschaftlichkeit", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)97060470X" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10062371" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10062371" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Wertma\u0308\u00dfig erfassbare Gro\u0308\u00dfe zur Abbildung der Beziehung zwischen Handlungsergebnis und dem dafu\u0308r erforderlichen Mitteleinsatz (bewertetes Verha\u0308ltnis von Ertrag und Aufwand)." + ] + } + ], + "pid": "040664244", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Effizienz" + }, + { + "authorized_access_point": "Effektivita\u0308t" + }, + { + "authorized_access_point": "Unwirtschaftlichkeit" + } + ], + "md5": "fea24c70c2e2ac6898690bbc17a1ae1c" + }, + { + "authorized_access_point": "Wirtschaftliche Integration", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4066410-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040664104" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4066410-7" + } + ], + "identifier": "http://d-nb.info/gnd/4066410-7", + "closeMatch": [ + { + "authorized_access_point": "International economic integration", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133972225" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85067394" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85067394" + } + ] + }, + { + "authorized_access_point": "Inte\u0301gration e\u0301conomique internationale", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133972225" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11949961" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11949961j" + } + ] + }, + { + "authorized_access_point": "Inte\u0301gration e\u0301conomique", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113412998X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12045383" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12045383t" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Wirtschaftsintegration", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)967041201" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "10626-1" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/10626-1" + } + ] + }, + { + "authorized_access_point": "wirtschaftliche Integration", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970604653" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10038303" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10038303" + } + ] + } + ], + "pid": "040664104", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Integration" + } + ], + "related": [ + { + "authorized_access_point": "Integration (Internationale Politik)" + } + ], + "variant_access_point": [ + "Integration (Wirtschaft)", + "Internationale wirtschaftliche Integration", + "Regionale wirtschaftliche Integration", + "Wirtschaft", + "Wirtschaftsintegration", + "O\u0308konomische Integration", + "Regionalismus" + ], + "md5": "92b5cc5a26b7133a9290c5400798da9a" + }, + { + "authorized_access_point": "Weyl-Gruppe", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4065886-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040658864" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4065886-7" + } + ], + "identifier": "http://d-nb.info/gnd/4065886-7", + "closeMatch": [ + { + "authorized_access_point": "Weyl groups", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333591713" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh95002984" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh95002984" + } + ] + }, + { + "authorized_access_point": "Groupes de Weyl", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333591713" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16561878" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16561878g" + } + ] + } + ], + "pid": "040658864", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gruppe (Mathematik)" + } + ], + "variant_access_point": [ + "Weylsche Gruppe" + ], + "md5": "fc0ad2c455278f0bf1832aff6a1a5756" + }, + { + "authorized_access_point": "Weltverantwortung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4065464-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040654648" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4065464-3" + } + ], + "identifier": "http://d-nb.info/gnd/4065464-3", + "pid": "040654648", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Verantwortung" + } + ], + "md5": "143e78be1f41324b58aee5c6bddd5e6c" + }, + { + "authorized_access_point": "Wa\u0308rmebehandlung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4064180-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040641805" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4064180-6" + } + ], + "identifier": "http://d-nb.info/gnd/4064180-6", + "closeMatch": [ + { + "authorized_access_point": "Traitement thermique", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134745354" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11976091" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11976091w" + } + ] + } + ], + "pid": "040641805", + "type": "bf:Topic", + "variant_access_point": [ + "Warmbehandlung" + ], + "md5": "328da8625fb033ca5cf1a67a5974a263" + }, + { + "authorized_access_point": "Verwaltungsfachangestellter", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4063330-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040633306" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4063330-5" + } + ], + "identifier": "http://d-nb.info/gnd/4063330-5", + "closeMatch": [ + { + "authorized_access_point": "Fonction publique - Carrie\u0300res", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134769717" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16015424" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16015424h" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Ausbildungsberuf", + "Fu\u0308r den Mittleren Dienst allgemein verknu\u0308pfe Verwaltungsdienst und Mittlerer Dienst." + ] + } + ], + "pid": "040633306", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fachangestellter" + } + ], + "related": [ + { + "authorized_access_point": "Weibliche Verwaltungsfachangestellte" + } + ], + "md5": "0ba1c35ef38c711c9540c303a145271e" + }, + { + "authorized_access_point": "Verhalten", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4062860-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040628604" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4062860-7" + } + ], + "identifier": "http://d-nb.info/gnd/4062860-7", + "closeMatch": [ + { + "authorized_access_point": "Etologia", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254345035" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "17992" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/17992" + } + ] + }, + { + "authorized_access_point": "Animales - Conducta", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254499482" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX559474" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX559474" + } + ] + }, + { + "authorized_access_point": "Conducta", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1299899013" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX525655" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX525655" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "behaviour", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1256267902" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "868" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_868" + } + ] + }, + { + "authorized_access_point": "Verhalten", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)967018226" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "18859-1" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/18859-1" + } + ] + }, + { + "authorized_access_point": "Verhalten", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)97060064X" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10034530" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10034530" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "SW Mensch ist pleonastisch, mit Tieren wird verknu\u0308pft" + ] + } + ], + "pid": "040628604", + "type": "bf:Topic", + "variant_access_point": [ + "Mensch", + "Menschliches Verhalten" + ], + "md5": "c4d2fb0f747deaafc1b8b7e7b0f6f269" + }, + { + "authorized_access_point": "Verfilmung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4062809-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040628094" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4062809-7" + } + ], + "identifier": "http://d-nb.info/gnd/4062809-7", + "closeMatch": [ + { + "authorized_access_point": "Film adaptations", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133610765" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85048224" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85048224" + } + ] + }, + { + "authorized_access_point": "Television adaptations", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133986668" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85133480" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85133480" + } + ] + }, + { + "authorized_access_point": "Adaptations cine\u0301matographiques", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133610765" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11930825" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119308251" + } + ] + }, + { + "authorized_access_point": "Adaptations te\u0301le\u0301vise\u0301es", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133986668" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11955258" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11955258z" + } + ] + }, + { + "authorized_access_point": "Riduzioni cinematografiche", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254322396" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "2287" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/2287" + } + ] + }, + { + "authorized_access_point": "Adaptaciones cinematogra\u0301ficas", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254499393" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX538457" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX538457" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Verknu\u0308pfe mit Anwendungsgebiet (z. B. Literatur); bei Einzelwerken sowie bei mehreren Werken eines Autors oder Komponisten verknu\u0308pfe mit s Film oder ggf. mit engeren Schlagwo\u0308rtern (s Musikfilm etc.)" + ] + } + ], + "pid": "040628094", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Film" + } + ], + "md5": "4fd03f074a30d760b47a5fa0e4b1e8b8" + }, + { + "authorized_access_point": "Urheberrecht", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4062127-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040621278" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4062127-3" + } + ], + "identifier": "http://d-nb.info/gnd/4062127-3", + "closeMatch": [ + { + "authorized_access_point": "Copyright", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133625290" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85032446" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85032446" + } + ] + }, + { + "authorized_access_point": "Droit d'auteur", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133625290" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13318464" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13318464k" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Urheberrecht", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)967014727" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "16037-4" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/16037-4" + } + ] + }, + { + "authorized_access_point": "Urheberrecht", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970599846" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10040422" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10040422" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Der Begriff umfasst das Urheberrecht im objektiven Sinne (Gesamtheit der Rechtsnormen, die das Verha\u0308ltnis des Urhebers zu seinem Werk regeln) und das Urheberrecht im subjektiven Sinne (absolutes Recht des Urhebers an seinem Werk)." + ] + } + ], + "pid": "040621278", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Immaterialgu\u0308terrecht" + } + ], + "related": [ + { + "authorized_access_point": "Leistungsschutzrecht" + } + ], + "variant_access_point": [ + "Copyright", + "Urheberrechtsschutz", + "Urheberschutz" + ], + "md5": "b2420230092192545967bf9267edd8c1" + }, + { + "authorized_access_point": "Ungarndeutsche", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4061720-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040617203" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4061720-8" + } + ], + "identifier": "http://d-nb.info/gnd/4061720-8", + "exactMatch": [ + { + "authorized_access_point": "Germans--Hungary", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332876544" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2008105294" + }, + { + "type": "uri", + "value": "https://id.loc.gov/authorities/subjects/sh2008105294" + } + ] + }, + { + "authorized_access_point": "Allemands de Hongrie", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332876544" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16173217" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16173217m" + } + ] + } + ], + "pid": "040617203", + "type": "bf:Topic", + "variant_access_point": [ + "Deutsche" + ], + "md5": "2fab1dc4f676e35fc264c05a245b508f" + }, + { + "authorized_access_point": "Thermische Belastung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4059816-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040598160" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4059816-0" + } + ], + "identifier": "http://d-nb.info/gnd/4059816-0", + "closeMatch": [ + { + "authorized_access_point": "Thermal stresses", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113395345X" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85134764" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85134764" + } + ] + }, + { + "authorized_access_point": "Contraintes thermiques", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113395345X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11942174" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119421740" + } + ] + } + ], + "pid": "040598160", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Belastung" + } + ], + "related": [ + { + "authorized_access_point": "Temperaturverhalten" + } + ], + "variant_access_point": [ + "Wa\u0308rmebelastung", + "Temperaturbelastung", + "Temperaturbeanspruchung", + "Temperatur", + "Temperaturzwang" + ], + "md5": "bf5ae6f72a9714dc21093a43f61f5af6" + }, + { + "authorized_access_point": "Textsorte", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4059664-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040596648" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4059664-3" + } + ], + "identifier": "http://d-nb.info/gnd/4059664-3", + "closeMatch": [ + { + "authorized_access_point": "Literary form", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134567472" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85077490" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85077490" + } + ] + }, + { + "authorized_access_point": "Genres litte\u0301raires", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134567472" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11948071" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119480714" + } + ] + } + ], + "pid": "040596648", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Textlinguistik" + } + ], + "variant_access_point": [ + "Textart", + "Texttyp" + ], + "md5": "2ec358f8eb05cdc29f0f1e17b174939f" + }, + { + "authorized_access_point": "Text", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4059596-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04059596X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4059596-1" + } + ], + "identifier": "http://d-nb.info/gnd/4059596-1", + "closeMatch": [ + { + "authorized_access_point": "Texts", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134039182" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh99001271" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh99001271" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Textes", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134039182" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11975991" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119759914" + } + ] + }, + { + "authorized_access_point": "Text", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970597525" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10060183" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10060183" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Als Formschlagwort nur bei lokaler Anwendung fu\u0308r die Erschlie\u00dfung mundartl. Texte (RSWK \u00a7 762,9) sowie fu\u0308r Erschlie\u00dfung scho\u0308ner Literatur, von Kinder- und Jugendliteratur sowie von Altbesta\u0308nden mit Gattungsbegriffen. Als Sach-SW z. B. benutzt fu\u0308r sprachdidakt. verwendete Texte; fu\u0308r linguist. Untersuchungen verknu\u0308pfe mit \"Textsorte\"" + ] + } + ], + "pid": "04059596X", + "type": "bf:Topic", + "md5": "c52d3cdecf36c0cfd3c9b4cf6d70b6c5" + }, + { + "authorized_access_point": "Studentenverbindung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4058178-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040581780" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4058178-0" + } + ], + "identifier": "http://d-nb.info/gnd/4058178-0", + "closeMatch": [ + { + "authorized_access_point": "E\u0301tudiants - Associations", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134062133" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11980097" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11980097q" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Studentenverbindung", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970595395" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10059565" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10059565" + } + ] + } + ], + "pid": "040581780", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ma\u0308nnerbund" + }, + { + "authorized_access_point": "Studentenvereinigung" + } + ], + "related": [ + { + "authorized_access_point": "Couleurstudent" + }, + { + "authorized_access_point": "Damenverbindung" + } + ], + "variant_access_point": [ + "Korporation (Student)", + "Korporierter", + "Studentenkorporation", + "Studentische Korporation", + "Studentische Verbindung", + "Verbindung (Student)", + "Hochschulverbindung", + "Hochschu\u0308lerverbindung", + "Akademische Verbindung" + ], + "md5": "67060dafafc8b9fb1cc7d5198bd63416" + }, + { + "authorized_access_point": "Stra\u00dfennetz", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4057912-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040579123" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4057912-8" + } + ], + "identifier": "http://d-nb.info/gnd/4057912-8", + "exactMatch": [ + { + "authorized_access_point": "Stra\u00dfennetz", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1290456496" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "30329-2" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/30329-2" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Stra%C3%9Fennetz&oldid=240157115" + ] + } + ], + "pid": "040579123", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Stra\u00dfe" + }, + { + "authorized_access_point": "Verkehrsnetz" + }, + { + "authorized_access_point": "Verkehrstra\u0308ger" + } + ], + "related": [ + { + "authorized_access_point": "Wegenetz" + } + ], + "md5": "3980c2bdf46cd556c61db5844747384d" + }, + { + "authorized_access_point": "Stochastisches Modell", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4057633-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040576337" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4057633-4" + } + ], + "identifier": "http://d-nb.info/gnd/4057633-4", + "exactMatch": [ + { + "authorized_access_point": "Stochastic models", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331612225" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2005004376" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2005004376" + } + ] + } + ], + "pid": "040576337", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Statistisches Modell" + } + ], + "variant_access_point": [ + "Probabilistisches Modell", + "Wahrscheinlichkeitsmodell" + ], + "md5": "62d3dcdb86cb0a3c7b02f32da71a3692" + }, + { + "authorized_access_point": "Stickstoffdu\u0308ngung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4057513-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040575136" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4057513-5" + } + ], + "identifier": "http://d-nb.info/gnd/4057513-5", + "pid": "040575136", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Du\u0308ngung" + } + ], + "related": [ + { + "authorized_access_point": "Stickstoffdu\u0308nger" + } + ], + "variant_access_point": [ + "N-Du\u0308ngung", + "Stickstoff" + ], + "md5": "db21cb608460b00ae00873c03c00e751" + }, + { + "authorized_access_point": "Staude", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4057021-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040570215" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4057021-6" + } + ], + "identifier": "http://d-nb.info/gnd/4057021-6", + "pid": "040570215", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ausdauernde Pflanzen" + } + ], + "variant_access_point": [ + "Schmuckstaude", + "Stauden" + ], + "md5": "7e9f6e5089fdde338cb14c730bfe9ea1" + }, + { + "authorized_access_point": "Spiel", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4056218-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040562182" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4056218-9" + } + ], + "identifier": "http://d-nb.info/gnd/4056218-9", + "closeMatch": [ + { + "authorized_access_point": "Juegos", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254489150" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX524861" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX524861" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Spiel", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1012432467" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "27571-1" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/27571-1" + } + ] + }, + { + "authorized_access_point": "Spiel", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)97059223X" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10045837" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10045837" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Satz von Gegensta\u0308nden, der fu\u0308r die Bedienung nach vorgeschriebenen oder impliziten Regeln fu\u0308r Unterricht, Unterhaltung oder Therapie konzipiert ist (RDA AH-007).", + "Auch fu\u0308r Computerspiele, nicht fu\u0308r Planspiele (RDA AH-007)." + ] + } + ], + "pid": "040562182", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Spielwissenschaft" + }, + { + "authorized_access_point": "Spielgera\u0308t" + } + ], + "variant_access_point": [ + "Spielen", + "Spiele" + ], + "md5": "9b9da5764b25ef87ec5b564cdf4067aa" + }, + { + "authorized_access_point": "Schwermetallbelastung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4053964-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040539644" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4053964-7" + } + ], + "identifier": "http://d-nb.info/gnd/4053964-7", + "closeMatch": [ + { + "authorized_access_point": "Heavy metals - Environmental aspects", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134715978" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2008105554" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2008105554" + } + ] + }, + { + "authorized_access_point": "Heavy metal content", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134043589" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2018002960" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2018002960" + } + ] + }, + { + "authorized_access_point": "Teneur en me\u0301taux lourds", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134043589" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11976797" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11976797w" + } + ] + } + ], + "pid": "040539644", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schadstoffbelastung" + } + ], + "variant_access_point": [ + "Schwermetall" + ], + "md5": "b935fa0981325194d45b5236c3e25f48" + }, + { + "authorized_access_point": "Schu\u0308lerbeurteilung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4053376-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04053376X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4053376-1" + } + ], + "identifier": "http://d-nb.info/gnd/4053376-1", + "closeMatch": [ + { + "authorized_access_point": "Students - Rating of", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134729618" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85129308" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85129308" + } + ] + }, + { + "authorized_access_point": "E\u0301le\u0300ves - E\u0301valuation", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134729618" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF15085667" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb15085667n" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Lehrerurteil", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970568762" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10050838" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10050838" + } + ] + } + ], + "pid": "04053376X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Beurteilung" + } + ], + "variant_access_point": [ + "Beurteilung", + "Beurteilung", + "Lehrer", + "Lehrer", + "Lehrerurteil", + "Schulbeurteilung" + ], + "md5": "9ad1104903c80e205a298f035855998f" + }, + { + "authorized_access_point": "Rettungswagen", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4051584-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040515842" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4051584-9" + } + ], + "identifier": "http://d-nb.info/gnd/4051584-9", + "closeMatch": [ + { + "authorized_access_point": "Ambulances", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133685951" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11978147" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119781475" + } + ] + } + ], + "pid": "040515842", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Einsatzfahrzeug" + } + ], + "variant_access_point": [ + "Krankenwagen", + "Notarztwagen", + "Rettungsfahrzeug", + "Sanita\u0308tsfahrzeug" + ], + "md5": "4e168a379c43b5814cd73fa77271a083" + }, + { + "authorized_access_point": "Regierung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4049012-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040490122" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4049012-9" + } + ], + "identifier": "http://d-nb.info/gnd/4049012-9", + "closeMatch": [ + { + "authorized_access_point": "Government", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134039077" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh00005941" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh00005941" + } + ] + }, + { + "authorized_access_point": "Gouvernement", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134039077" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11975971" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11975971h" + } + ] + }, + { + "authorized_access_point": "Gouvernement (science politique)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134495862" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13319146" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb133191462" + } + ] + }, + { + "authorized_access_point": "Politique publique", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134495870" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13319365" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13319365w" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "government", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1256250546" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "11230" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_11230" + } + ] + }, + { + "authorized_access_point": "Regierung", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)966937651" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "16329-5" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/16329-5" + } + ] + }, + { + "authorized_access_point": "Regierung", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970584970" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10040090" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10040090" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Einzelne Regierungen werden nach \u00a7 614 angesetzt. Fu\u0308r die Behandlung mehrer Regierungen in Bundesstaaten verknu\u0308pfe den jeweiligen Bundesstaat mit der Bezeichnung fu\u0308r die betr. Gliedstaaten und dem Sachschlagwort Regierung, z. B. Deutschland; Bundesland; Regierung." + ] + } + ], + "pid": "040490122", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Regierungsfa\u0308higkeit" + } + ], + "variant_access_point": [ + "Kabinett", + "Ministerrat", + "Staatsfu\u0308hrung", + "Regierungspolitik", + "Regierungen" + ], + "md5": "9420156240fd1b23791a6b116f96b1dc" + }, + { + "authorized_access_point": "Prozessvergleich", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4047597-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040475972" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4047597-9" + } + ], + "identifier": "http://d-nb.info/gnd/4047597-9", + "note": [ + { + "noteType": "general", + "label": [ + "Ein Prozessvergleich ist ein nach Klageerhebung zwischen den Parteien, eventuell unter Beitritt eines Dritten, geschlossener Vergleich, der einerseits die Beendigung des Rechtsstreits und andererseits materiell-rechtliche Vereinbarungen, die u\u0308ber den Streitgegenstand hinausgehen ko\u0308nnen, zum Gegenstand hat." + ] + } + ], + "pid": "040475972", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Vergleich (Recht)" + } + ], + "variant_access_point": [ + "Gerichtlicher Vergleich" + ], + "md5": "d6b447ba2529cd1dbfba5efc342bb60d" + }, + { + "authorized_access_point": "Prozess", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4047577-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040475778" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4047577-3" + } + ], + "identifier": "http://d-nb.info/gnd/4047577-3", + "closeMatch": [ + { + "authorized_access_point": "Trials", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133608124" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85137328" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85137328" + } + ] + }, + { + "authorized_access_point": "Litigation", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)133410185X" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85077662" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85077662" + } + ] + }, + { + "authorized_access_point": "Proce\u0300s", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133608124" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13319040" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13319040q" + } + ] + }, + { + "authorized_access_point": "Procesos", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1299899986" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX526521" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX526521" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Gerichtsverfahren", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970553552" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10045081" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10045081" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Ohne Homonymenzusatz nur fu\u0308r das Gerichtsverfahren" + ] + } + ], + "pid": "040475778", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Rechtsstreit" + } + ], + "related": [ + { + "authorized_access_point": "Rechtsprechung" + } + ], + "variant_access_point": [ + "Gerichtsverfahren", + "Gerichtsprozess", + "Prozesse" + ], + "md5": "0acd58bedfe6d64ef105316afb4f1f5a" + }, + { + "authorized_access_point": "Presserecht", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4047171-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040471713" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4047171-8" + } + ], + "identifier": "http://d-nb.info/gnd/4047171-8", + "closeMatch": [ + { + "authorized_access_point": "Press law", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133975852" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85106520" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85106520" + } + ] + }, + { + "authorized_access_point": "Presse - Droit", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133975852" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11951060" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119510600" + } + ] + } + ], + "pid": "040471713", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Medienrecht" + } + ], + "variant_access_point": [ + "Pre\u00dfrecht" + ], + "md5": "f8da22938c956c45b7937a95b320dbab" + }, + { + "authorized_access_point": "Preisrecht", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4047123-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040471233" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4047123-8" + } + ], + "identifier": "http://d-nb.info/gnd/4047123-8", + "closeMatch": [ + { + "authorized_access_point": "Price regulation", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133685374" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85106618" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85106618" + } + ] + }, + { + "authorized_access_point": "Prix - Droit", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133685374" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11977930" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11977930d" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Rechtsnormen, die a) die Festsetzung oder Genehmigung von Preisen sowie die Aufrechterhaltung des Preisstandes (Fest-, Ho\u0308chst- oder Mindestpreis) und b) die Preisangaben einschlie\u00dflich der Preisu\u0308berwachung regeln" + ] + } + ], + "pid": "040471233", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Wirtschaftsverwaltungsrecht" + } + ], + "md5": "2a435453fd58f53988c5a214db5777c0" + }, + { + "authorized_access_point": "Populationsbiologie", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4046800-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040468003" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4046800-8" + } + ], + "identifier": "http://d-nb.info/gnd/4046800-8", + "closeMatch": [ + { + "authorized_access_point": "Population biology", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133684394" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85104917" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85104917" + } + ] + }, + { + "authorized_access_point": "Biologie des populations", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133684394" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11977642" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11977642k" + } + ] + }, + { + "authorized_access_point": "Biologi\u0301a de poblaciones", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254474595" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX534766" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX534766" + } + ] + } + ], + "pid": "040468003", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Biologie" + } + ], + "md5": "f01ad7d839e442a6f1ded783534fdfb6" + }, + { + "authorized_access_point": "Placebo", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4046191-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040461912" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4046191-9" + } + ], + "identifier": "http://d-nb.info/gnd/4046191-9", + "exactMatch": [ + { + "authorized_access_point": "Placebos", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1241618305" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D010919" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D010919" + } + ] + } + ], + "closeMatch": [ + { + "authorized_access_point": "Placebos (Medicine)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133647499" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85102563" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85102563" + } + ] + }, + { + "authorized_access_point": "Effet placebo", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133647499" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11951043" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11951043d" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Ein Placebo (lat. \u201eIch werde gefallen.\u201c) ist eine Scheinsubstanz oder Scheinbehandlung, die die positiven Wirkungen eines Arzneimittels oder einer Intervention nachzuahmen vermag, ohne aber dabei das spezifische Arzneimittel oder die spezifische Behandlungsmethode zu beinhalten." + ] + } + ], + "pid": "040461912", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Arzneimittel" + } + ], + "variant_access_point": [ + "Blindpra\u0308parat", + "Falsumpra\u0308parat", + "Leerpra\u0308parat", + "Plazebo", + "Scheinarznei" + ], + "md5": "2baac73c39703bbdc34646d7ac31a97a" + }, + { + "authorized_access_point": "Pietismus", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4046049-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040460495" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4046049-6" + } + ], + "identifier": "http://d-nb.info/gnd/4046049-6", + "closeMatch": [ + { + "authorized_access_point": "Pietism", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133935265" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85102060" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85102060" + } + ] + }, + { + "authorized_access_point": "Pie\u0301tisme", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133935265" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11934618" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119346185" + } + ] + }, + { + "authorized_access_point": "Pietismo", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254473386" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX535003" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX535003" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Pietismus", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970579403" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10054565" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10054565" + } + ] + } + ], + "pid": "040460495", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Pietist" + } + ], + "broader": [ + { + "authorized_access_point": "Protestantismus" + } + ], + "md5": "a3bd98fe1ba49b0269bec4a45423aa84" + }, + { + "authorized_access_point": "Fotomodell", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4045919-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040459195" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4045919-6" + } + ], + "identifier": "http://d-nb.info/gnd/4045919-6", + "closeMatch": [ + { + "authorized_access_point": "Photographers' models", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1324589744" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh93000734" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh93000734" + } + ] + }, + { + "authorized_access_point": "Mode\u0300les (art)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333668309" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11968862" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11968862s" + } + ] + } + ], + "pid": "040459195", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Mannequin" + }, + { + "authorized_access_point": "Dressman" + } + ], + "variant_access_point": [ + "Photomodell", + "Model (Beruf)" + ], + "md5": "cc95babc40db61fbe13d9413b0a6f98f" + }, + { + "authorized_access_point": "Pathologie", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4044893-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040448932" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4044893-9" + } + ], + "identifier": "http://d-nb.info/gnd/4044893-9", + "closeMatch": [ + { + "authorized_access_point": "Pathology", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113361910X" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85098685" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85098685" + } + ] + }, + { + "authorized_access_point": "Pathologie", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113361910X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11933033" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119330335" + } + ] + }, + { + "authorized_access_point": "Patologi\u0301a", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1299898416" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX525081" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX525081" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "pathology", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1256243809" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "5631" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_5631" + } + ] + }, + { + "authorized_access_point": "Pathology", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1241617228" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D010336" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D010336" + } + ] + }, + { + "authorized_access_point": "Pathologie", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970578377" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10054226" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10054226" + } + ] + } + ], + "pid": "040448932", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Medizin" + } + ], + "variant_access_point": [ + "Allgemeine Pathologie", + "Spezielle Pathologie", + "Klinische Pathologie", + "Allgemeine Krankheitslehre" + ], + "md5": "670100e01f942553d16b972310f77bc7" + }, + { + "authorized_access_point": "Pathographie", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4044892-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040448924" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4044892-7" + } + ], + "identifier": "http://d-nb.info/gnd/4044892-7", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Pathographie&oldid=240762026" + ] + } + ], + "pid": "040448924", + "type": "bf:Topic", + "variant_access_point": [ + "Pathografie" + ], + "md5": "d0f9e732d86ba102247ce0a97464f8f1" + }, + { + "authorized_access_point": "Ethnische Religion", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4041412-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040414124" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4041412-7" + } + ], + "identifier": "http://d-nb.info/gnd/4041412-7", + "closeMatch": [ + { + "authorized_access_point": "Religion primitive", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133630057" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13318507" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb133185071" + } + ] + }, + { + "authorized_access_point": "Religiones primitivas", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254479139" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX525120" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX525120" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Naturreligion", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970575343" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10053067" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10053067" + } + ] + } + ], + "pid": "040414124", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Religionsethnologie" + } + ], + "variant_access_point": [ + "Naturreligion", + "Naturvolk", + "Elementarreligion", + "Primitive Religion", + "Stammesreligion", + "Naturreligionen", + "Indigene Religion", + "Traditionelle Religion", + "Traditionale Religion" + ], + "md5": "260988c3218ee3dfc5531624400f73cd" + }, + { + "authorized_access_point": "Naive Malerei", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4041177-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04041177X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4041177-1" + } + ], + "identifier": "http://d-nb.info/gnd/4041177-1", + "closeMatch": [ + { + "authorized_access_point": "Peinture nai\u0308ve", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133961800" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11946114" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119461143" + } + ] + } + ], + "pid": "04041177X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Malerei" + } + ], + "md5": "82a600b945e1e3292cd08706dd5602f4" + }, + { + "authorized_access_point": "Nahostkonflikt", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4041158-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040411583" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4041158-8" + } + ], + "identifier": "http://d-nb.info/gnd/4041158-8", + "closeMatch": [ + { + "authorized_access_point": "Arab-Israeli conflict", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133712010" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh87002535" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh87002535" + } + ] + }, + { + "authorized_access_point": "Conflit israe\u0301lo-arabe", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133712010" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12047729" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12047729m" + } + ] + }, + { + "authorized_access_point": "Conflicto a\u0301rabe-israeli\u0301", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)129990159X" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX528425" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX528425" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Nahost-Konflikt", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1027620000" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10071133" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10071133" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Benutzt seit der Gru\u0308ndung des Staates Israel" + ] + } + ], + "pid": "040411583", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Pala\u0308stinafrage" + } + ], + "broader": [ + { + "authorized_access_point": "Internationale Politik" + } + ], + "variant_access_point": [ + "Arabisch-israelischer Konflikt", + "Israelisch-arabischer Konflikt" + ], + "md5": "2ecfd5308a962277e77b756244a0d877" + }, + { + "authorized_access_point": "Maler und Lackierer", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4037217-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040372170" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4037217-0" + } + ], + "identifier": "http://d-nb.info/gnd/4037217-0", + "closeMatch": [ + { + "authorized_access_point": "Painters, Industrial", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113401631X" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85096659" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85096659" + } + ] + }, + { + "authorized_access_point": "Peintres en ba\u0302timent", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113401631X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11967308" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11967308c" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Ausbildungsberuf", + "Als Homonymenzusatz bei Personenschlagwo\u0308rtern zugelassen" + ] + } + ], + "pid": "040372170", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Handwerker" + }, + { + "authorized_access_point": "Bauwirtschaftsberuf" + } + ], + "related": [ + { + "authorized_access_point": "Malerin und Lackiererin" + } + ], + "variant_access_point": [ + "Lackierer", + "Anstreicher" + ], + "md5": "74f4932b9be0cf744801fe1717953809" + }, + { + "authorized_access_point": "Lurche", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4036689-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040366898" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4036689-3" + } + ], + "identifier": "http://d-nb.info/gnd/4036689-3", + "closeMatch": [ + { + "authorized_access_point": "Amphibians", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133610870" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85004598" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85004598" + } + ] + }, + { + "authorized_access_point": "Amphibiens", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133610870" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11930880" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119308805" + } + ] + }, + { + "authorized_access_point": "Anfibi", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)125432187X" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "2076" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/2076" + } + ] + }, + { + "authorized_access_point": "Anfibios", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254457917" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX525093" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX525093" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "amphibians", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1256233978" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "359" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_359" + } + ] + } + ], + "pid": "040366898", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Herpetologie" + } + ], + "variant_access_point": [ + "Amphibia", + "Amphibien" + ], + "md5": "229b12e89b922fc4686a27422408c371" + }, + { + "authorized_access_point": "Liko\u0308r", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4035722-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040357228" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4035722-3" + } + ], + "identifier": "http://d-nb.info/gnd/4035722-3", + "closeMatch": [ + { + "authorized_access_point": "Liqueurs", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133926541" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85077347" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85077347" + } + ] + }, + { + "authorized_access_point": "Liqueurs", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133926541" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11932253" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119322533" + } + ] + }, + { + "authorized_access_point": "Liquori", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254351760" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "22490" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/22490" + } + ] + }, + { + "authorized_access_point": "Licores", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254456481" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX527213" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX527213" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "liqueurs", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1256233048" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "4369" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_4369" + } + ] + } + ], + "pid": "040357228", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Spirituosen" + } + ], + "md5": "01bae3a11386f47a93abe7b3e1f45f87" + }, + { + "authorized_access_point": "Leser", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4035441-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040354415" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4035441-6" + } + ], + "identifier": "http://d-nb.info/gnd/4035441-6", + "closeMatch": [ + { + "authorized_access_point": "Books and reading", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134807252" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85015758" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85015758" + } + ] + }, + { + "authorized_access_point": "Books and reading", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332421776" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh99004859" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh99004859" + } + ] + }, + { + "authorized_access_point": "Livres et lecture", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134807252" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13318354" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb133183540" + } + ] + }, + { + "authorized_access_point": "Lettori", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)125436207X" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "30781" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/30781" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Leser", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970569491" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10051152" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10051152" + } + ] + } + ], + "pid": "040354415", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Lektu\u0308re" + }, + { + "authorized_access_point": "Leserin" + }, + { + "authorized_access_point": "Lesen" + } + ], + "variant_access_point": [ + "Lesepublikum", + "Leserschaft" + ], + "md5": "8b67e4364ab08d8cd9c9d2d44c7585ed" + }, + { + "authorized_access_point": "Auszubildender", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4035113-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040351130" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4035113-0" + } + ], + "identifier": "http://d-nb.info/gnd/4035113-0", + "closeMatch": [ + { + "authorized_access_point": "Apprentis", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134495900" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11951682" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11951682z" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Auszubildende", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)966693582" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "11288-4" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/11288-4" + } + ] + }, + { + "authorized_access_point": "Auszubildender", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970535740" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10037155" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10037155" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Personen, die in einem Ausbildungsberuf im dualen System ausgebildet werden.", + "Verknu\u0308pfe mit der Berufsbezeichnung" + ] + } + ], + "pid": "040351130", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Berufsausbildung" + }, + { + "authorized_access_point": "Anlernling" + }, + { + "authorized_access_point": "Lehrling" + }, + { + "authorized_access_point": "Weibliche Auszubildende" + } + ], + "variant_access_point": [ + "Lehrling (O\u0308sterreich)" + ], + "md5": "ff65434b4ed5f166e822ad42baa32a0f" + }, + { + "authorized_access_point": "Lebensmittelindustrie", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4034889-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04034889X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4034889-1" + } + ], + "identifier": "http://d-nb.info/gnd/4034889-1", + "closeMatch": [ + { + "authorized_access_point": "Food industry and trade", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134561490" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85050282" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85050282" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "food industry", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1256232211" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "3020" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_3020" + } + ] + }, + { + "authorized_access_point": "Nahrungs- und Genussmittelgewerbe", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970574878" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10045624" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10045624" + } + ] + } + ], + "pid": "04034889X", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Lebensmittelwirtschaft" + }, + { + "authorized_access_point": "Genussmittelindustrie" + } + ], + "variant_access_point": [ + "Erna\u0308hrungsindustrie", + "Nahrungs- und Genussmittelindustrie", + "Nahrungsmittelindustrie", + "Lebensmittel" + ], + "md5": "7284d85144914ea4212b90b0e868fb59" + }, + { + "authorized_access_point": "Landwirtschaft", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4034402-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040344029" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4034402-2" + } + ], + "identifier": "http://d-nb.info/gnd/4034402-2", + "closeMatch": [ + { + "authorized_access_point": "Agriculture", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133603750" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85002415" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85002415" + } + ] + }, + { + "authorized_access_point": "Agriculture", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133603750" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF119347980" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11934798x" + } + ] + }, + { + "authorized_access_point": "Agricoltura", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254321667" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "1992" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/1992" + } + ] + }, + { + "authorized_access_point": "Agricultura", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254454713" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX4576248" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX4576248" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "agriculture", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1253486611" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "203" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_203" + } + ] + }, + { + "authorized_access_point": "Agriculture", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1253499470" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D000383" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D000383" + } + ] + }, + { + "authorized_access_point": "Landwirtschaft", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)966830601" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "12945-3" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/12945-3" + } + ] + }, + { + "authorized_access_point": "Landwirtschaft", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970568134" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10034547" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10034547" + } + ] + } + ], + "pid": "040344029", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Prima\u0308rer Sektor" + } + ], + "related": [ + { + "authorized_access_point": "Landbau" + } + ], + "variant_access_point": [ + "Agrarwirtschaft", + "Agrarsektor", + "Landwirtschaftlicher Sektor" + ], + "md5": "cb4c648046afcc6b2d0ca92a5d92eb0b" + }, + { + "authorized_access_point": "Kennlinie", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4030248-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040302482" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4030248-9" + } + ], + "identifier": "http://d-nb.info/gnd/4030248-9", + "closeMatch": [ + { + "authorized_access_point": "Curves in engineering", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134426828" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85034931" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85034931" + } + ] + }, + { + "authorized_access_point": "Courbes en technologie", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134426828" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF14495002" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb144950025" + } + ] + } + ], + "pid": "040302482", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kurve" + } + ], + "md5": "cd03bb036be0efaccb0aaf2f0a4dd79e" + }, + { + "authorized_access_point": "Katholische Gemeinde", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4029984-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040299848" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4029984-3" + } + ], + "identifier": "http://d-nb.info/gnd/4029984-3", + "pid": "040299848", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kirchengemeinde" + } + ], + "variant_access_point": [ + "Katholische Kirchengemeinde", + "Katholische Pfarrei", + "Ro\u0308misch-katholische Gemeinde", + "Katholische Gemeinden" + ], + "md5": "686d89318eb56c41d5f649eac7fe05fd" + }, + { + "authorized_access_point": "Karosseriebauer", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4029751-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040297519" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4029751-2" + } + ], + "identifier": "http://d-nb.info/gnd/4029751-2", + "closeMatch": [ + { + "authorized_access_point": "Carriage industry", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134746075" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85020458" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85020458" + } + ] + }, + { + "authorized_access_point": "Carrossiers", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134746075" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13163043" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb131630430" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Ausbildungsberuf 1938-1989, abgelo\u0308st vom Karosserie- und Fahrzeugbauer" + ] + } + ], + "pid": "040297519", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mechaniker" + } + ], + "md5": "490eaba0063d39a3ff8d42a36b70d9f2" + }, + { + "authorized_access_point": "Karikatur", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4029670-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040296709" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4029670-2" + } + ], + "identifier": "http://d-nb.info/gnd/4029670-2", + "closeMatch": [ + { + "authorized_access_point": "Caricatures et dessins humoristiques", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133938841" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11936063" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11936063t" + } + ] + }, + { + "authorized_access_point": "Caricature", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134048718" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11977710" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119777107" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Karikatur", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)97056287X" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10040205" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10040205" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Fu\u0308r bildliche, satirische Darstellungen (RDA AH-007)." + ] + } + ], + "pid": "040296709", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Satire" + } + ], + "related": [ + { + "authorized_access_point": "Humoristische Darstellung" + }, + { + "authorized_access_point": "Cartoon" + } + ], + "variant_access_point": [ + "Satire", + "Cartoon (Formschlagwort)", + "Bildsatire", + "Karikaturen", + "Satirische Darstellung (Kunst)" + ], + "md5": "7d0286b5a3121a61927a17124bf14e6c" + }, + { + "authorized_access_point": "Inhibitor", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4027007-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040270076" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4027007-5" + } + ], + "identifier": "http://d-nb.info/gnd/4027007-5", + "closeMatch": [ + { + "authorized_access_point": "Inhibiteurs", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133717403" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12082271" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12082271n" + } + ] + }, + { + "authorized_access_point": "Inibitori", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254389520" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "58311" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/58311" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Bei Enzymen verwende Enzyminhibitor" + ] + } + ], + "pid": "040270076", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Antagonist" + }, + { + "authorized_access_point": "Inhibition" + } + ], + "variant_access_point": [ + "Hemmstoff" + ], + "md5": "0d726a73a681ed4e21c47747010c8ece" + }, + { + "authorized_access_point": "Reservat (Ethnologie)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4026721-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040267210" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4026721-0" + } + ], + "identifier": "http://d-nb.info/gnd/4026721-0", + "closeMatch": [ + { + "authorized_access_point": "Indian reservations", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133950914" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85065369" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85065369" + } + ] + }, + { + "authorized_access_point": "Re\u0301serves indiennes", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133950914" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11941190" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119411900" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Reservat (Ethnische Gruppe)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1289266360" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "30365-5" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/30365-5" + } + ] + } + ], + "pid": "040267210", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Indian reorganization act" + }, + { + "authorized_access_point": "Indianerreduktion" + } + ], + "variant_access_point": [ + "Indianerreservat", + "Indianerreservation", + "Reservat", + "Indianerreservate", + "Indian Reservation" + ], + "md5": "649b668f30a0c3fd937101b45f5ddada" + }, + { + "authorized_access_point": "Holzfehler", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4025702-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040257029" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4025702-2" + } + ], + "identifier": "http://d-nb.info/gnd/4025702-2", + "closeMatch": [ + { + "authorized_access_point": "Wood - Defects", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134636652" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85147789" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85147789" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "wood defects", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1256222291" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "28188" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_28188" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Holzfehler&oldid=245078730" + ] + }, + { + "noteType": "general", + "label": [ + "Als Holzfehler oder Wuchsfehler werden im Warenverkehr mit Rohholz diejenigen Holzmerkmale bezeichnet, die die Holznutzung beeintra\u0308chtigen." + ] + } + ], + "pid": "040257029", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Holzmerkmal" + } + ], + "variant_access_point": [ + "Holz", + "Wuchsfehler" + ], + "md5": "1ac118e5a6932bdfcfc7518a93f5f594" + }, + { + "authorized_access_point": "Kardiovaskula\u0308res System", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4024665-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040246655" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4024665-6" + } + ], + "identifier": "http://d-nb.info/gnd/4024665-6", + "closeMatch": [ + { + "authorized_access_point": "Appareil cardiovasculaire", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133623077" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11934858" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11934858z" + } + ] + }, + { + "authorized_access_point": "Aparato circulatorio", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254447202" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX525158" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX525158" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Benutzt als Oberbegriff f. Blutgefa\u0308sssystem u. Herz" + ] + } + ], + "pid": "040246655", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Blutkreislauf" + }, + { + "authorized_access_point": "Biologisches System" + } + ], + "variant_access_point": [ + "Herz-Kreislauf-System", + "Cardiovascula\u0308res System" + ], + "md5": "758f78e858d3fd382732eb2b6b1f7e5b" + }, + { + "authorized_access_point": "Grammatik", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4021806-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040218066" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4021806-5" + } + ], + "identifier": "http://d-nb.info/gnd/4021806-5", + "closeMatch": [ + { + "authorized_access_point": "Grammar", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134128304" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85056259" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85056259" + } + ] + }, + { + "authorized_access_point": "Grammar, Comparative and general", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134567324" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85056260" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85056260" + } + ] + }, + { + "authorized_access_point": "Grammaire", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134128304" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF120427815" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12042781h" + } + ] + }, + { + "authorized_access_point": "Grama\u0301tica", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254511822" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX535820" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX535820" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Grammatik", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970555334" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10045876" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10045876" + } + ] + } + ], + "pid": "040218066", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Grammatiker" + } + ], + "md5": "14e6632a52201d28039baa40fcb7d58d" + }, + { + "authorized_access_point": "Glu\u0308ckwunsch", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4021334-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04021334X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4021334-1" + } + ], + "identifier": "http://d-nb.info/gnd/4021334-1", + "closeMatch": [ + { + "authorized_access_point": "Felicitaciones", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1299918344" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX5026483" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX5026483" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wiktionary - https://de.wiktionary.org/wiki/Gl%C3%BCckwunsch" + ] + } + ], + "pid": "04021334X", + "type": "bf:Topic", + "variant_access_point": [ + "Gratulation", + "Glu\u0308ckwu\u0308nsche" + ], + "md5": "dbde92ae0f252df9fc22c340216f12b9" + }, + { + "authorized_access_point": "Gemu\u0308sebau", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4020072-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040200728" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4020072-3" + } + ], + "identifier": "http://d-nb.info/gnd/4020072-3", + "exactMatch": [ + { + "authorized_access_point": "Vegetable gardening", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332122256" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85142483" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85142483" + } + ] + }, + { + "authorized_access_point": "Cultures potage\u0300res", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332122256" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11933904" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119339042" + } + ] + }, + { + "authorized_access_point": "vegetable growing", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1256216615" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "16509" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_16509" + } + ] + }, + { + "authorized_access_point": "Gemu\u0308sebau", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)966757432" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "12942-2" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/12942-2" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Benutzt fu\u0308r erwerbsma\u0308\u00dfigen Anbau, ansonsten verwende SW Gemu\u0308segarten" + ] + } + ], + "pid": "040200728", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gartenbau" + }, + { + "authorized_access_point": "Ackerbau" + } + ], + "variant_access_point": [ + "Gemu\u0308seanbau", + "Gemu\u0308sekultur", + "Gemu\u0308se" + ], + "md5": "5a6fe1f7535db8dfe51b4b604b1eeaf5" + }, + { + "authorized_access_point": "Gemeinschaft", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4020015-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040200159" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4020015-2" + } + ], + "identifier": "http://d-nb.info/gnd/4020015-2", + "closeMatch": [ + { + "authorized_access_point": "Communaute\u0301", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134594607" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13319114" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13319114f" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Gemeinschaft", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)966756886" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "16587-4" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/16587-4" + } + ] + }, + { + "authorized_access_point": "Gemeinschaft", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)97055317X" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10041283" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10041283" + } + ] + } + ], + "pid": "040200159", + "type": "bf:Topic", + "variant_access_point": [ + "Soziale Gemeinschaft", + "Gemeinschaften" + ], + "md5": "347858a01fabea7a93f6bc5b284c26a2" + }, + { + "authorized_access_point": "Grafikdesign", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4019558-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040195589" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4019558-2" + } + ], + "identifier": "http://d-nb.info/gnd/4019558-2", + "pid": "040195589", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Grafik" + }, + { + "authorized_access_point": "Design" + } + ], + "related": [ + { + "authorized_access_point": "Kommunikationsdesign" + } + ], + "variant_access_point": [ + "Gebrauchsgrafik", + "Gebrauchsgraphik", + "Graphikdesign", + "Graphic design", + "Grafik-Design" + ], + "md5": "e2bb186e15d5251dae36ca26fc370fcc" + }, + { + "authorized_access_point": "Firma", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4017250-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040172503" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4017250-8" + } + ], + "identifier": "http://d-nb.info/gnd/4017250-8", + "note": [ + { + "noteType": "general", + "label": [ + "Nicht fu\u0308r die Sacherschlie\u00dfung als Oberbegriff zu einzelnen Unternehmen verwendet; verwende in diesem Fall das Schlagwort \"Unternehmen\" oder einen spezifischeren Begriff. - Hingegen zu verwenden als identifizierender Zusatz (IZ) fu\u0308r die Individualisierung von Ko\u0308rperschaftsnamen in der GND gema\u0308\u00df \u201eKategorie einer Ko\u0308rperschaft\u201c, RDA-E-K070; bei der Verwendung als IZ im Bevorzugten Namen dann auch als instantieller Oberbegriff (obin). (\"Kategorie einer Ko\u0308rperschaft\" verwendet die umgangssprachliche Bedeutung von Firma)." + ] + } + ], + "pid": "040172503", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Unternehmen" + } + ], + "variant_access_point": [ + "Firmierung", + "Firmenname", + "Firmenbezeichnung", + "Unternehmensname", + "Handelsname" + ], + "md5": "000ef232e64b0e802229b458e7747513" + }, + { + "authorized_access_point": "Filmarchiv", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4017107-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040171078" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4017107-3" + } + ], + "identifier": "http://d-nb.info/gnd/4017107-3", + "closeMatch": [ + { + "authorized_access_point": "Motion picture film collections", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133639569" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85088046" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85088046" + } + ] + }, + { + "authorized_access_point": "Film archives", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133676782" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85006925" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85006925" + } + ] + }, + { + "authorized_access_point": "Archives cine\u0301matographiques", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133676782" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11973200" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11973200k" + } + ] + }, + { + "authorized_access_point": "Cine\u0301mathe\u0300ques", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133639569" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11945398" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119453988" + } + ] + }, + { + "authorized_access_point": "Filmotecas", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254428798" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX526197" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX526197" + } + ] + } + ], + "pid": "040171078", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Archiv" + } + ], + "variant_access_point": [ + "Kinemathek", + "Filmothek", + "Film", + "Filmarchive" + ], + "md5": "40b8c535d6306a360728304a22a79b8d" + }, + { + "authorized_access_point": "Fahrtu\u0308chtigkeit", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4016317-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040163172" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4016317-9" + } + ], + "identifier": "http://d-nb.info/gnd/4016317-9", + "closeMatch": [ + { + "authorized_access_point": "Automobilistes - Usage des drogues", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133804497" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12468051" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb124680516" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Fahrtauglichkeit", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970548982" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10043201" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10043201" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Fahrtu\u0308chtigkeit bezeichnet die auf einen konkreten Zeitpunkt bezogene Fa\u0308higkeit einer Person, mit einem Fahrzeug sicher am Stra\u00dfenverkehr teilzunehmen. Sie kann z. B. infolge von Drogenkonsum oder Ermu\u0308dung fehlen.", + "Fu\u0308r die generelle, dauerhafte Fa\u0308higkeit zur sicheren Stra\u00dfenverkehrsteilnahme verwende SW Fahreignung." + ] + } + ], + "pid": "040163172", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tauglichkeit" + } + ], + "related": [ + { + "authorized_access_point": "Fahreignung" + } + ], + "variant_access_point": [ + "Fahrtauglichkeit", + "Verkehrstu\u0308chtigkeit", + "Fahruntu\u0308chtigkeit", + "Fahruntauglichkeit", + "Fahrsicherheit", + "Fahrunsicherheit" + ], + "md5": "61fa2ac77c43080429c3e098369b88c6" + }, + { + "authorized_access_point": "Exlibris", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4015985-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04015985X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4015985-1" + } + ], + "identifier": "http://d-nb.info/gnd/4015985-1", + "closeMatch": [ + { + "authorized_access_point": "Bookplates", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133626777" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85015646" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85015646" + } + ] + }, + { + "authorized_access_point": "Ex-libris", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133626777" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11937172" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119371729" + } + ] + }, + { + "authorized_access_point": "Ex libris", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254334572" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "9382" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/9382" + } + ] + }, + { + "authorized_access_point": "Ex libris", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254426752" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX527355" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX527355" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Exlibris", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1275771874" + }, + { + "type": "uri", + "value": "https://provenienz.gbv.de/T-PRO_Thesaurus_der_Provenienzbegriffe#Anker:Exlibris" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Grafisch gestalteter Besitzervermerk in Zettelform, der auf die Innenseite von Bucheinba\u0308nden geklebt wird" + ] + } + ], + "pid": "04015985X", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Besitzervermerk" + } + ], + "broader": [ + { + "authorized_access_point": "Eigentumsmarke" + } + ], + "variant_access_point": [ + "Bucheignerzeichen", + "Bu\u0308cherzeichen (Exlibris)", + "Buchmarke", + "Ex-Libris" + ], + "md5": "fc25a530bdd8bb8ddaf2db90320667b4" + }, + { + "authorized_access_point": "Evangelische Gemeinde", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4015829-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040158292" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4015829-9" + } + ], + "identifier": "http://d-nb.info/gnd/4015829-9", + "pid": "040158292", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Evangelische Kirche" + }, + { + "authorized_access_point": "Kirchengemeinde" + } + ], + "variant_access_point": [ + "Evangelische Kirchengemeinde", + "Evangelische Pfarrei" + ], + "md5": "b9f640326c5673d8e83ae8f2725edbe5" + }, + { + "authorized_access_point": "Elektronische Baugruppe", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4014350-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040143503" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4014350-8" + } + ], + "identifier": "http://d-nb.info/gnd/4014350-8", + "closeMatch": [ + { + "authorized_access_point": "Electronic systems", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134047428" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85042373" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85042373" + } + ] + }, + { + "authorized_access_point": "Syste\u0300mes e\u0301lectroniques", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134047428" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11977451" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119774510" + } + ] + }, + { + "authorized_access_point": "Sistemi elettronici", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254332472" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "7588" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/7588" + } + ] + } + ], + "pid": "040143503", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Baugruppe" + } + ], + "md5": "410110830b52a294147c6bb8a7f5a583" + }, + { + "authorized_access_point": "Elektronenstrahlung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4014337-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040143376" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4014337-5" + } + ], + "identifier": "http://d-nb.info/gnd/4014337-5", + "closeMatch": [ + { + "authorized_access_point": "Electron beams", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134785607" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85042200" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85042200" + } + ] + }, + { + "authorized_access_point": "Faisceaux e\u0301lectroniques", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134785607" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11953144" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11953144h" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Ungerichtet, im Gegensatz zu Elektronenstrahl" + ] + } + ], + "pid": "040143376", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Teilchenstrahlung" + } + ], + "related": [ + { + "authorized_access_point": "Freies Elektron" + } + ], + "variant_access_point": [ + "Elektronenstrahlen (Elektronenstrahlung)" + ], + "md5": "1340c115bff4170ce4a209fed1c9ac26" + }, + { + "authorized_access_point": "Eierstockkrebs", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4013746-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040137465" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4013746-6" + } + ], + "identifier": "http://d-nb.info/gnd/4013746-6", + "exactMatch": [ + { + "authorized_access_point": "Ovaries - Cancer", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134590326" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2010104661" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2010104661" + } + ] + }, + { + "authorized_access_point": "Ovarian Neoplasms", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1241598770" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D010051" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D010051" + } + ] + } + ], + "pid": "040137465", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Krebs (Medizin)" + }, + { + "authorized_access_point": "Eierstocktumor" + } + ], + "variant_access_point": [ + "Ovarialkarzinom", + "Ovarialcarcinom", + "Ovarialkrebs" + ], + "md5": "e8750cfecd4b5eb5c5866bcf5701ff17" + }, + { + "authorized_access_point": "Ehe", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4013630-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040136302" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4013630-9" + } + ], + "identifier": "http://d-nb.info/gnd/4013630-9", + "exactMatch": [ + { + "authorized_access_point": "Ehe", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)966724763" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "15937-1" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/15937-1" + } + ] + }, + { + "authorized_access_point": "Ehe", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970544901" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10041471" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10041471" + } + ] + } + ], + "pid": "040136302", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Familie" + }, + { + "authorized_access_point": "Eheliche Lebensgemeinschaft" + } + ], + "variant_access_point": [ + "Eheleben", + "Ehen" + ], + "md5": "353addd81f056c658b999116130b9c50" + }, + { + "authorized_access_point": "Du\u0308ngung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4013215-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040132153" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4013215-8" + } + ], + "identifier": "http://d-nb.info/gnd/4013215-8", + "exactMatch": [ + { + "authorized_access_point": "Fertilizers - Application", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134228384" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85047920" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85047920" + } + ] + }, + { + "authorized_access_point": "Engrais et amendements - E\u0301pandage", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134228384" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12244082" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12244082r" + } + ] + }, + { + "authorized_access_point": "fertilizer application", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1256206393" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "10795" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_10795" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Mit dem Du\u0308ngemittel wird i.d.R. ein Kompositum gebildet, z.B. Gu\u0308lledu\u0308ngung" + ] + } + ], + "pid": "040132153", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Pflanzenbau" + } + ], + "related": [ + { + "authorized_access_point": "Du\u0308ngemittel" + }, + { + "authorized_access_point": "Bestellung (Landbau)" + } + ], + "variant_access_point": [ + "Pflanzendu\u0308ngung" + ], + "md5": "54f3c37c6778026c7b11cc85e2842097" + }, + { + "authorized_access_point": "Darmkrebs", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4011068-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040110680" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4011068-0" + } + ], + "identifier": "http://d-nb.info/gnd/4011068-0", + "exactMatch": [ + { + "authorized_access_point": "Intestines - Cancer", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134492731" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85067585" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85067585" + } + ] + }, + { + "authorized_access_point": "Intestinal Neoplasms", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1241596999" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D007414" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D007414" + } + ] + } + ], + "pid": "040110680", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Krebs (Medizin)" + } + ], + "variant_access_point": [ + "Intestinalcarcinom", + "Darmkarzinom" + ], + "md5": "4e1a7d7f70ac9f1e8e751a0177f7242a" + }, + { + "authorized_access_point": "Copolymere", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4010542-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040105423" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4010542-8" + } + ], + "identifier": "http://d-nb.info/gnd/4010542-8", + "closeMatch": [ + { + "authorized_access_point": "Copolymers", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134081979" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh96003095" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh96003095" + } + ] + }, + { + "authorized_access_point": "Copolyme\u0300res", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134081979" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11983800" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11983800f" + } + ] + } + ], + "pid": "040105423", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Polymere" + } + ], + "variant_access_point": [ + "Mischpolymere" + ], + "md5": "f9f3cb1f6ac40120f898e2cda147f1d7" + }, + { + "authorized_access_point": "Chemotaxonomie", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4009892-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040098923" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4009892-8" + } + ], + "identifier": "http://d-nb.info/gnd/4009892-8", + "closeMatch": [ + { + "authorized_access_point": "Chimiotaxinomie", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333245947" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12000515" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12000515v" + } + ] + }, + { + "authorized_access_point": "Plantes - Chimiotaxinomie", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133693687" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11981794" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11981794v" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "chemotaxonomy", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1256201782" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "1526" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_1526" + } + ] + } + ], + "pid": "040098923", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Systematik" + } + ], + "variant_access_point": [ + "Chemosystematik" + ], + "md5": "4c63982b22a59285d72a87f2e4c93d58" + }, + { + "authorized_access_point": "Cadmiumbelastung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4009275-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040092755" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4009275-6" + } + ], + "identifier": "http://d-nb.info/gnd/4009275-6", + "closeMatch": [ + { + "authorized_access_point": "Cadmium - Environmental aspects", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134659253" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2009118139" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2009118139" + } + ] + }, + { + "authorized_access_point": "Effect of cadmium on", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134397658" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh00004598" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh00004598" + } + ] + }, + { + "authorized_access_point": "Effets du cadmium", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134397658" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13757341" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13757341x" + } + ] + } + ], + "pid": "040092755", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schadstoffbelastung" + } + ], + "variant_access_point": [ + "Cadmium", + "Cadmiumgehalt (Cadmiumbelastung)" + ], + "md5": "9caa19e3c084142cd340853e33e59225" + }, + { + "authorized_access_point": "Burg", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4009104-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04009104X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4009104-1" + } + ], + "identifier": "http://d-nb.info/gnd/4009104-1", + "closeMatch": [ + { + "authorized_access_point": "Castles", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134636903" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85020702" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85020702" + } + ] + }, + { + "authorized_access_point": "Cha\u0302teaux forts", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134636903" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11931695" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11931695w" + } + ] + } + ], + "pid": "04009104X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Befestigung" + }, + { + "authorized_access_point": "Adelshaus" + }, + { + "authorized_access_point": "Residenz" + } + ], + "related": [ + { + "authorized_access_point": "Burgenkunde" + } + ], + "variant_access_point": [ + "Burgen" + ], + "md5": "26ddeb23ee21f13cf6aacb9fe38d0465" + }, + { + "authorized_access_point": "Buntpapier", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4009080-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040090809" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4009080-2" + } + ], + "identifier": "http://d-nb.info/gnd/4009080-2", + "note": [ + { + "noteType": "general", + "label": [ + "Papier, das durch den Aufstrich von Farbe oder durch Bedrucken, Kaschieren und andere Oberfla\u0308chenbehandlungen seine Farbigkeit erha\u0308lt" + ] + } + ], + "pid": "040090809", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Spezialpapier" + } + ], + "md5": "3c059ef8e39f0cb9aa5013162a30f585" + }, + { + "authorized_access_point": "Besta\u0308ubung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4007211-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040072118" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4007211-3" + } + ], + "identifier": "http://d-nb.info/gnd/4007211-3", + "closeMatch": [ + { + "authorized_access_point": "Pollination", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133676006" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85104524" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85104524" + } + ] + }, + { + "authorized_access_point": "Pollinisation", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133676006" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11972141" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11972141n" + } + ] + }, + { + "authorized_access_point": "Impollinazione", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254351590" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "22309" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/22309" + } + ] + }, + { + "authorized_access_point": "Polinizacio\u0301n", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254411089" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX555520" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX555520" + } + ] + } + ], + "pid": "040072118", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Besta\u0308uber" + } + ], + "broader": [ + { + "authorized_access_point": "Befruchtung" + } + ], + "variant_access_point": [ + "Blu\u0308tenbesta\u0308ubung", + "Pollination" + ], + "md5": "9dac2cb247c7b29a7fdce4a74e4daa7c" + }, + { + "authorized_access_point": "Blasenkrebs", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4007032-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040070328" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4007032-3" + } + ], + "identifier": "http://d-nb.info/gnd/4007032-3", + "exactMatch": [ + { + "authorized_access_point": "Bladder - Cancer", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134492898" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2009117264" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2009117264" + } + ] + }, + { + "authorized_access_point": "Urinary Bladder Neoplasms", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1241593930" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D001749" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D001749" + } + ] + } + ], + "pid": "040070328", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Krebs (Medizin)" + } + ], + "variant_access_point": [ + "Blasencarcinom", + "Harnblasenkrebs", + "Blasenkarzinom", + "Harnblasenkarzinom" + ], + "md5": "ca4f50ca275147827f9274a765bf6ef7" + }, + { + "authorized_access_point": "Werkstatt fu\u0308r behinderte Menschen", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4006005-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040060055" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4006005-6" + } + ], + "identifier": "http://d-nb.info/gnd/4006005-6", + "closeMatch": [ + { + "authorized_access_point": "Sheltered workshops", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134017553" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85121315" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85121315" + } + ] + }, + { + "authorized_access_point": "Entreprises adapte\u0301es", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134017553" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11967806" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119678062" + } + ] + }, + { + "authorized_access_point": "Centros especiales de empleo", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254503145" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX552311" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX552311" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Behindertenwerksta\u0308tte", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970536852" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10038025" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10038025" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Werkstatt_f%C3%BCr_behinderte_Menschen&oldid=218572538f" + ] + } + ], + "pid": "040060055", + "type": "bf:Topic", + "variant_access_point": [ + "Werkstatt fu\u0308r Behinderte", + "Behindertenwerksta\u0308tte", + "Behindertenwerkstatt", + "Beschu\u0308tzende Werkstatt", + "Fo\u0308rderwerkstatt", + "Werkstatt fu\u0308r Menschen mit Behinderungen", + "WfbM", + "Werksta\u0308tte fu\u0308r Behinderte", + "Geschu\u0308tzte Werkstatt" + ], + "md5": "7f183407dff4c6d27bf062ce24b4f1ed" + }, + { + "authorized_access_point": "Belegtes Brot", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4005402-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040054020" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4005402-0" + } + ], + "identifier": "http://d-nb.info/gnd/4005402-0", + "pid": "040054020", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kalte Ku\u0308che" + } + ], + "variant_access_point": [ + "Butterbrot" + ], + "md5": "5e4b2f0855fcac8b4da79537c82de6a6" + }, + { + "authorized_access_point": "Baumangel", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4004854-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040048543" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4004854-8" + } + ], + "identifier": "http://d-nb.info/gnd/4004854-8", + "exactMatch": [ + { + "authorized_access_point": "Vices de construction", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133626475" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11936918" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11936918g" + } + ] + } + ], + "pid": "040048543", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ma\u0308ngelru\u0308ge" + }, + { + "authorized_access_point": "Mangel" + } + ], + "related": [ + { + "authorized_access_point": "Bauschaden" + } + ], + "variant_access_point": [ + "Bauma\u0308ngel" + ], + "md5": "988221e3a0f91b6d7f197dc383b27d53" + }, + { + "authorized_access_point": "Aufsichtsrat", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4003550-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040035506" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4003550-5" + } + ], + "identifier": "http://d-nb.info/gnd/4003550-5", + "closeMatch": [ + { + "authorized_access_point": "Conseils de surveillance", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134498152" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF14469068" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb14469068f" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Aufsichtsrat", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)966691369" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "12175-5" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/12175-5" + } + ] + }, + { + "authorized_access_point": "Aufsichtsrat", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970534930" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10034959" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10034959" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Ein Aufsichtsrat ist das Organ einer Kapitalgesellschaft, das fu\u0308r die U\u0308berwachung der Gescha\u0308ftsfu\u0308hrung zusta\u0308ndig ist.", + "Benutzt fu\u0308r das Deutsche und Internationale Recht; fu\u0308r das Schweizer Recht benutze Revisionsstelle; Aktiengesellschaft wird nicht als pleonastisch behandelt." + ] + } + ], + "pid": "040035506", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Board of directors" + }, + { + "authorized_access_point": "Revisionsstelle" + } + ], + "md5": "6e101fd53e4937672ea5e04e01c9b096" + }, + { + "authorized_access_point": "Aufbereitung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4003500-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04003500X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4003500-1" + } + ], + "identifier": "http://d-nb.info/gnd/4003500-1", + "closeMatch": [ + { + "authorized_access_point": "Transformation", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134037554" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11975726" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119757264" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Nur bei Nachweis in den entsprechenden NSW Kompositum mit den aufzubereitenden Gut." + ] + } + ], + "pid": "04003500X", + "type": "bf:Topic", + "variant_access_point": [ + "Aufbereiten" + ], + "md5": "5e0598e06d1ea5cbe8af365b8419f87f" + }, + { + "authorized_access_point": "Artist", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4003096-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040030962" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4003096-9" + } + ], + "identifier": "http://d-nb.info/gnd/4003096-9", + "closeMatch": [ + { + "authorized_access_point": "Circus performers", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333994648" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85026090" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85026090" + } + ] + }, + { + "authorized_access_point": "Artistes de cirque", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333994648" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13318653" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13318653g" + } + ] + } + ], + "pid": "040030962", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Artistin" + } + ], + "md5": "32e29a820013b9ecfaed959296d687cf" + }, + { + "authorized_access_point": "Amtshaftung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4001804-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040018040" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4001804-0" + } + ], + "identifier": "http://d-nb.info/gnd/4001804-0", + "exactMatch": [ + { + "authorized_access_point": "Amtshaftung", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970531974" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10035427" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10035427" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Amtshaftung ist ein deliktsrechtlicher Sondertatbestand, der die perso\u0308nliche Haftung einer hoheitlich handelnden Person wegen der schuldhaften Verletzung einer Amtspflicht vorsieht, die ihr gegenu\u0308ber einem durch ihr Verhalten gescha\u0308digten Dritten obliegt." + ] + } + ], + "pid": "040018040", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Haftung" + } + ], + "related": [ + { + "authorized_access_point": "Staatshaftung" + } + ], + "variant_access_point": [ + "Beamtenhaftung", + "Amtstra\u0308ger", + "Beamter" + ], + "md5": "92e32f7fda783f40e43f18067485f1f7" + }, + { + "authorized_access_point": "Akupunktur", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4000986-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040009866" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4000986-5" + } + ], + "identifier": "http://d-nb.info/gnd/4000986-5", + "closeMatch": [ + { + "authorized_access_point": "Acupuncture", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332651356" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11930824" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11930824p" + } + ] + }, + { + "authorized_access_point": "Acupuntura", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254402470" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX524567" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX524567" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "acupuncture", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1256189340" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "16160" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_16160" + } + ] + }, + { + "authorized_access_point": "Acupuncture", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1282203762" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D026881" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D026881" + } + ] + }, + { + "authorized_access_point": "Akupunktur", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970531125" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10035005" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10035005" + } + ] + } + ], + "pid": "040009866", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Reflextherapie" + }, + { + "authorized_access_point": "Alternative Medizin" + }, + { + "authorized_access_point": "Erfahrungsheilkunde" + } + ], + "related": [ + { + "authorized_access_point": "Akupressur" + }, + { + "authorized_access_point": "Shiatsu" + }, + { + "authorized_access_point": "Moxibustion" + } + ], + "md5": "5b4b215e96163c46369ce06b661c1f6e" + }, + { + "authorized_access_point": "Aktie", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4000932-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040009327" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4000932-4" + } + ], + "identifier": "http://d-nb.info/gnd/4000932-4", + "closeMatch": [ + { + "authorized_access_point": "Stocks", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113439179X" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85128226" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85128226" + } + ] + }, + { + "authorized_access_point": "Actions de socie\u0301te\u0301s", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113439179X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11967769" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11967769p" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Aktie", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)966676122" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "12232-5" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/12232-5" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Eine Aktie ist ein Gesellschaftsanteil an einer Aktiengesellschaft, einer Kommanditgesellschaft auf Aktien oder einer Societas Europaea." + ] + } + ], + "pid": "040009327", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Wertpapier" + } + ], + "md5": "54cc694c6d2066785f82537a32e9a65b" + }, + { + "authorized_access_point": "Adaptivregelung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4000457-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040004570" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4000457-0" + } + ], + "identifier": "http://d-nb.info/gnd/4000457-0", + "closeMatch": [ + { + "authorized_access_point": "Adaptive control systems", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113457617X" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85000803" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85000803" + } + ] + }, + { + "authorized_access_point": "Syste\u0300mes adaptatifs", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113457617X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11977921" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11977921f" + } + ] + } + ], + "pid": "040004570", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Regelung" + } + ], + "related": [ + { + "authorized_access_point": "Adaptives System" + }, + { + "authorized_access_point": "Extremwertregelung" + } + ], + "variant_access_point": [ + "Adaptive Regelung" + ], + "md5": "2de20bf8670a5889f6a37b0548f493b2" + }, + { + "authorized_access_point": "Abku\u0308rzung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4000158-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04000158X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4000158-1" + } + ], + "identifier": "http://d-nb.info/gnd/4000158-1", + "closeMatch": [ + { + "authorized_access_point": "Abre\u0301viations", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332649742" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11947909" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11947909z" + } + ] + }, + { + "authorized_access_point": "Abbreviazioni", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254332928" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "7958" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/7958" + } + ] + }, + { + "authorized_access_point": "Abreviaturas", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254400877" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX524425" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX524425" + } + ] + } + ], + "pid": "04000158X", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Akronym" + }, + { + "authorized_access_point": "Kurzzeichen" + } + ], + "variant_access_point": [ + "Abbreviatur", + "Kontraktion (Schrift)", + "Abku\u0308rzungen" + ], + "md5": "dcacbe38b51cc83ec4b0c7b583b2d841" + }, + { + "authorized_access_point": "Vereinigungsmenge", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1336884932" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336884932" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1336884932" + } + ], + "identifier": "http://d-nb.info/gnd/1336884932", + "note": [ + { + "noteType": "general", + "label": [ + "Grundbegriff der Mengenlehre" + ] + } + ], + "pid": "1336884932", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mengenlehre" + } + ], + "related": [ + { + "authorized_access_point": "Summe" + } + ], + "variant_access_point": [ + "Vereinigung (Mengenlehre)", + "Union" + ], + "md5": "a7eb352e024899850915e85f45bbbebb" + }, + { + "authorized_access_point": "Messbare Menge", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1336884762" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336884762" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1336884762" + } + ], + "identifier": "http://d-nb.info/gnd/1336884762", + "note": [ + { + "noteType": "general", + "label": [ + "Eine Menge hei\u00dft messbar, wenn sie Element der Sigma-Algebra eines Messraums ist." + ] + } + ], + "pid": "1336884762", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ma\u00dftheorie" + }, + { + "authorized_access_point": "Menge" + } + ], + "related": [ + { + "authorized_access_point": "Messraum" + } + ], + "variant_access_point": [ + "Measurable Set" + ], + "md5": "368b52a04deef23cb559f3f0a7efef22" + }, + { + "authorized_access_point": "Hunde (Volk)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1336876913" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336876913" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1336876913" + } + ], + "identifier": "http://d-nb.info/gnd/1336876913", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://en.wikipedia.org/w/index.php?title=Hunde_people&oldid=1230006150" + ] + } + ], + "pid": "1336876913", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Hunde-Sprache" + } + ], + "variant_access_point": [ + "Bahunde", + "Kihunde", + "Kobi", + "Rukobi" + ], + "md5": "d08d1842d9e30e455bc2735b4b3aa235" + }, + { + "authorized_access_point": "Ebrie\u0301", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1336874678" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336874678" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1336874678" + } + ], + "identifier": "http://d-nb.info/gnd/1336874678", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://en.wikipedia.org/w/index.php?title=Tchaman&oldid=1116117651" + ] + }, + { + "noteType": "general", + "label": [ + "Urspru\u0308ngliche Namen waren Tchaman, Kyama, Gyama, Chaman oder Achan, Atchan; die Ethnie macht etwa 0,7 % der Bevo\u0308lkerung der Elfenbeinku\u0308ste aus." + ] + } + ], + "pid": "1336874678", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Akan" + }, + { + "authorized_access_point": "Kwa-Sprachen" + } + ], + "variant_access_point": [ + "Atcha", + "Cama", + "Caman", + "Chaman", + "Gyaman", + "Kyama", + "Kyaman", + "Tchaman", + "Tsama", + "Tshaman", + "Tyama" + ], + "md5": "a5350d6849962e0a20b112c0f190288a" + }, + { + "authorized_access_point": "Gutbrod Atlas", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1336874414" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336874414" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1336874414" + } + ], + "identifier": "http://d-nb.info/gnd/1336874414", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Gutbrod_Atlas&oldid=227463637" + ] + } + ], + "pid": "1336874414", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Personenkraftwagen" + }, + { + "authorized_access_point": "Nutzfahrzeug" + } + ], + "md5": "28f010c6fc21f9a3872a41cd4a20060f" + }, + { + "authorized_access_point": "Banachlimes", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/133686463X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)133686463X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)133686463X" + } + ], + "identifier": "http://d-nb.info/gnd/133686463X", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Encyclopedia of Math - https://encyclopediaofmath.org/index.php?title=Banach_limit&oldid=39373" + ] + }, + { + "noteType": "general", + "label": [ + "Verallgeminerung des Grenzwertbegriffs in der Funktionalanalysis" + ] + } + ], + "pid": "133686463X", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Grenzwert (Mathematik)" + }, + { + "authorized_access_point": "Hahn-Banach-Fortsetzungssatz" + } + ], + "broader": [ + { + "authorized_access_point": "Funktional" + } + ], + "variant_access_point": [ + "Banach Limit" + ], + "md5": "f17352d8337bbff999c9bad814442075" + }, + { + "authorized_access_point": "Raspberry Pi 5", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1336835052" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336835052" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1336835052" + } + ], + "identifier": "http://d-nb.info/gnd/1336835052", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Homepage - https://www.raspberrypi.com/products/raspberry-pi-5/" + ] + } + ], + "pid": "1336835052", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Einplatinen-Computer" + } + ], + "variant_access_point": [ + "Raspberry Pi5" + ], + "md5": "367ccba65f473fb6ef4fd65cca80b20c" + }, + { + "authorized_access_point": "Mundart Niederalemannisch (Widnau)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1336765410" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336765410" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1336765410" + } + ], + "identifier": "http://d-nb.info/gnd/1336765410", + "pid": "1336765410", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Niederalemannisch" + } + ], + "md5": "f715014debe3043f0f88543aa8017fc8" + }, + { + "authorized_access_point": "Kumlien (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1336763213" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336763213" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1336763213" + } + ], + "identifier": "http://d-nb.info/gnd/1336763213", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Internet - https://www.klingspor-museum.de/Schriftgiessereien.html" + ] + }, + { + "noteType": "general", + "label": [ + "Entstehungszeit 1948" + ] + } + ], + "pid": "1336763213", + "type": "bf:Topic", + "md5": "0e8433d41a356374d8a0f9ff1133400c" + }, + { + "authorized_access_point": "Asuka-Zeit", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1336761083" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336761083" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1336761083" + } + ], + "identifier": "http://d-nb.info/gnd/1336761083", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Asuka-Zeit&oldid=238607348" + ] + }, + { + "noteType": "general", + "label": [ + "Periode der japanischen Geschichte." + ] + } + ], + "pid": "1336761083", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kofun" + }, + { + "authorized_access_point": "Nara-Zeit" + } + ], + "variant_access_point": [ + "Asuka jidai" + ], + "md5": "c868c9c70374266028ae4a0dda7624a9" + }, + { + "authorized_access_point": "Mundart Kalabresisch (Siderno)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1336749369" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336749369" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1336749369" + } + ], + "identifier": "http://d-nb.info/gnd/1336749369", + "pid": "1336749369", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Kalabresisch" + } + ], + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "md5": "9ace1dfb43d57df5ffba935666c1f4b6" + }, + { + "authorized_access_point": "725-Jahr-Feier der Stadt Borgentreich", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1336591390" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336591390" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1336591390" + } + ], + "identifier": "http://d-nb.info/gnd/1336591390", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Chronik Borgentreich - https://chronik-borgentreich.jimdofree.com/1985-2005/", + "Homepage Borgentreich - https://www.borgentreich.de/media/custom/2564_1496_1.PDF?1556095273" + ] + } + ], + "pid": "1336591390", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Jubila\u0308um" + } + ], + "variant_access_point": [ + "Borgentreich (2005)", + "725-Jahrfeier (Borgentreich)", + "725-Jahr-Feier (Borgentreich)", + "Siebenhundertfu\u0308nfundzwanzig-Jahrfeier (Borgentreich)" + ], + "md5": "f54e5cae1d5feb02c9ba33e4c871f235" + }, + { + "authorized_access_point": "Schlacht um Singapur", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1336589876" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336589876" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1336589876" + } + ], + "identifier": "http://d-nb.info/gnd/1336589876", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/wiki/Schlacht_um_Singapur" + ] + } + ], + "pid": "1336589876", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schlacht" + } + ], + "related": [ + { + "authorized_access_point": "Pazifikkrieg (1941-1945)" + } + ], + "md5": "09778465be9ca88b6f107b50e8c5bcd7" + }, + { + "authorized_access_point": "Japanische Invasion der Malaiischen Halbinsel", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/133658873X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)133658873X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)133658873X" + } + ], + "identifier": "http://d-nb.info/gnd/133658873X", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/wiki/Japanische_Invasion_der_Malaiischen_Halbinsel" + ] + } + ], + "pid": "133658873X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Invasion" + } + ], + "related": [ + { + "authorized_access_point": "Zweiter Weltkrieg" + } + ], + "variant_access_point": [ + "Invasion in die Federated Malay States", + "Japanische Invasion in die Verbu\u0308ndeten Malaienstaaten", + "Operation E" + ], + "md5": "04a3ad5c77e41f2b758680febe318d40" + }, + { + "authorized_access_point": "Pazifik-Studien", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1336532009" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336532009" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1336532009" + } + ], + "identifier": "http://d-nb.info/gnd/1336532009", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://en.wikipedia.org/w/index.php?oldid=1207537941" + ] + }, + { + "noteType": "general", + "label": [ + "Interdisziplina\u0308re akademische Disziplin, die sich mit dem Studium der pazifischen Region (Ozeanien) befasst" + ] + } + ], + "pid": "1336532009", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kulturraumforschung" + } + ], + "variant_access_point": [ + "Pazifikstudien", + "Pacific Studies" + ], + "md5": "f3790aca43f2441f9e81742b7a4973d9" + }, + { + "authorized_access_point": "Fritz-Wortelmann-Preis", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/133646609X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)133646609X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)133646609X" + } + ], + "identifier": "http://d-nb.info/gnd/133646609X", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Homepage Bochum - https://www.bochum.de/Kulturbuero/Dienstleistungen-und-Infos/Staedtische-Kulturpreise", + "Kulturpreise.de - https://www.kulturpreise.de/web/preise_info.php?preisd_id=1765" + ] + }, + { + "noteType": "general", + "label": [ + "A\u0308ltester Bochumer Kulturpreis, bis 1993 zuna\u0308chst ja\u0308hrlich, danach alle 2 Jahre ausgelobt. Zweck des Preises ist die \"Fo\u0308rderung der Auseinandersetzung mit den vielfa\u0308ltigen kreativen Mo\u0308glichkeiten des Figurentheaters\"." + ] + } + ], + "pid": "133646609X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Theaterpreis" + }, + { + "authorized_access_point": "Kulturpreis" + } + ], + "related": [ + { + "authorized_access_point": "Figurentheater" + }, + { + "authorized_access_point": "Laienspiel" + } + ], + "variant_access_point": [ + "Fritz-Wortelmann-Preis der Stadt Bochum", + "Fritz-Wortelmann-Preis der Stadt Bochum fu\u0308r das Amateurfigurentheater", + "Wettbewerb um den Fritz-Wortelmann-Preis" + ], + "md5": "81101972b58fc23a83d83aab41977c8f" + }, + { + "authorized_access_point": "Auenbrugger Ehrenmedaille", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1336401087" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336401087" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1336401087" + } + ], + "identifier": "http://d-nb.info/gnd/1336401087", + "note": [ + { + "noteType": "general", + "label": [ + "Medaille fu\u0308r besondere Verdienste um die Med Uni Graz" + ] + } + ], + "pid": "1336401087", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Medizin" + } + ], + "broader": [ + { + "authorized_access_point": "Preis (Auszeichnung)" + } + ], + "variant_access_point": [ + "Auenbrugger-Ehrenmedaille" + ], + "md5": "f0835d5ec109b52cf956b41f3b9ec559" + }, + { + "authorized_access_point": "Odins Haithabu", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1336381698" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336381698" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1336381698" + } + ], + "identifier": "http://d-nb.info/gnd/1336381698", + "note": [ + { + "noteType": "dataSource", + "label": [ + "homepage - https://www.odins-haddeby.de" + ] + } + ], + "pid": "1336381698", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gaststa\u0308tte" + } + ], + "md5": "f7bf6598b36da8d9342a5631cb8b1797" + }, + { + "authorized_access_point": "Angle-Klasse III", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1336261625" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336261625" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1336261625" + } + ], + "identifier": "http://d-nb.info/gnd/1336261625", + "exactMatch": [ + { + "authorized_access_point": "Malocclusion, Angle Class III", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336262486" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D008313" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D008313" + } + ] + } + ], + "pid": "1336261625", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Angle-Klassifizierung" + } + ], + "md5": "14cadcfb1ce9af5b98d298b185261d2d" + }, + { + "authorized_access_point": "Blockierung (Manuelle Medizin)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1336259086" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336259086" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1336259086" + } + ], + "identifier": "http://d-nb.info/gnd/1336259086", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Blockierung_(Manuelle_Medizin)&oldid=244981953" + ] + } + ], + "pid": "1336259086", + "type": "bf:Topic", + "variant_access_point": [ + "Reversible segmentale Dysfunktion" + ], + "md5": "03c1c1c3250f7aad55f1724413a4ab14" + }, + { + "authorized_access_point": "Tam-Tam (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1336255897" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336255897" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1336255897" + } + ], + "identifier": "http://d-nb.info/gnd/1336255897", + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungszeit 1908; Varianten: Lichte Tam-Tam und Volle Tam-Tam" + ] + } + ], + "pid": "1336255897", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "d3fbaa1513e0909da9a7ffa9b070f68a" + }, + { + "authorized_access_point": "Keilschrift (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1336255692" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336255692" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1336255692" + } + ], + "identifier": "http://d-nb.info/gnd/1336255692", + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungszeit ca. 1908" + ] + } + ], + "pid": "1336255692", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "1f359845e845264a5e8509770a71f36a" + }, + { + "authorized_access_point": "Kegelschrift (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1336255609" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336255609" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1336255609" + } + ], + "identifier": "http://d-nb.info/gnd/1336255609", + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungszeit ca. 1908" + ] + } + ], + "pid": "1336255609", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "ad1ec45c81c1a8a265af52234524611c" + }, + { + "authorized_access_point": "Koch-Kurrent", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1336248335" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336248335" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1336248335" + } + ], + "identifier": "http://d-nb.info/gnd/1336248335", + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungszeit 1935" + ] + } + ], + "pid": "1336248335", + "type": "bf:Topic", + "variant_access_point": [ + "Koch Kurrent" + ], + "md5": "18ca08226c99ee90ad2376e6a5132242" + }, + { + "authorized_access_point": "Moosblu\u0308mchen", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1336235047" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336235047" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1336235047" + } + ], + "identifier": "http://d-nb.info/gnd/1336235047", + "note": [ + { + "noteType": "general", + "label": [ + "Art aus der Familie der Dickblattgewa\u0308chse" + ] + } + ], + "pid": "1336235047", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Dickblattgewa\u0308chse" + } + ], + "variant_access_point": [ + "Moos-Dickblatt", + "Crassula tillaea" + ], + "md5": "563c006d8f3654c292f8a53d6416566a" + }, + { + "authorized_access_point": "Italienfeldzug (1943-1945)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1336230754" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336230754" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1336230754" + } + ], + "identifier": "http://d-nb.info/gnd/1336230754", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Italienfeldzug_(Zweiter_Weltkrieg)&oldid=246969151" + ] + }, + { + "noteType": "general", + "label": [ + "Feldzug der Alliierten gegen die Achsenma\u0308chte in Italien von 1943-1945" + ] + } + ], + "pid": "1336230754", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Feldzug" + } + ], + "related": [ + { + "authorized_access_point": "Zweiter Weltkrieg" + } + ], + "md5": "678b76691acc6a4c0ea25715f028ba5c" + }, + { + "authorized_access_point": "Fashwave", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1336223200" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336223200" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1336223200" + } + ], + "identifier": "http://d-nb.info/gnd/1336223200", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Fashwave&oldid=244165778" + ] + } + ], + "pid": "1336223200", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Subkultur" + } + ], + "related": [ + { + "authorized_access_point": "Faschismus" + }, + { + "authorized_access_point": "Rechtsradikalismus" + } + ], + "md5": "4b2b152abcdd41210608f5c22723e185" + }, + { + "authorized_access_point": "Stepbrett", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1336168528" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336168528" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1336168528" + } + ], + "identifier": "http://d-nb.info/gnd/1336168528", + "note": [ + { + "noteType": "general", + "label": [ + "Ho\u0308henverstellbares Trainingsgera\u0308t, z.B. fu\u0308r Step Aerobic" + ] + } + ], + "pid": "1336168528", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Trainingsgera\u0308t" + } + ], + "variant_access_point": [ + "Stepbank", + "Step-Bench", + "Stepperbrett", + "Steppbrett", + "Trittgera\u0308t", + "Step (Trainingsgera\u0308t)", + "Stepper (Aerobic)" + ], + "md5": "0b979d3bc12d4fddcef3aebb76024812" + }, + { + "authorized_access_point": "Stadtgeschichtsschreibung (Motiv)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1336166509" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336166509" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1336166509" + } + ], + "identifier": "http://d-nb.info/gnd/1336166509", + "pid": "1336166509", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "f3b4ad8823b7458acc2c59dbe0eeae04" + }, + { + "authorized_access_point": "Satz von Poincare\u0301-Hopf", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1336144033" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336144033" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1336144033" + } + ], + "identifier": "http://d-nb.info/gnd/1336144033", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Encyclopedia of Math - https://encyclopediaofmath.org/index.php?title=Poincare\u0301-Hopf_theorem&oldid=32943" + ] + }, + { + "noteType": "general", + "label": [ + "Wichtiger Satz der Differentialtopologie. Bekannter Spezialfall ist der Satz vom Igel." + ] + } + ], + "pid": "1336144033", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Differentialtopologie" + }, + { + "authorized_access_point": "Indexformel" + } + ], + "variant_access_point": [ + "Poincare\u0301-Hopf-Indexformel", + "Poincare\u0301-Hopf-Indextheorem", + "Hopf-Indextheorem", + "Poincare\u0301-Hopf Theorem" + ], + "md5": "c5584ca6f74495b56e26ac35e0b79289" + }, + { + "authorized_access_point": "Offenbacher Schwabacher", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1336140607" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336140607" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1336140607" + } + ], + "identifier": "http://d-nb.info/gnd/1336140607", + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungszeit 1903" + ] + } + ], + "pid": "1336140607", + "type": "bf:Topic", + "md5": "3495687c80d0ed7bb379fd3e843755da" + }, + { + "authorized_access_point": "Epimelet", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1336136634" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336136634" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1336136634" + } + ], + "identifier": "http://d-nb.info/gnd/1336136634", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Epimelet&oldid=220490949" + ] + }, + { + "noteType": "general", + "label": [ + "Aufsichtsbeamter, der politische, wirtschaftliche und kultische Aufgaben wahrnimmt" + ] + } + ], + "pid": "1336136634", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Beamter" + } + ], + "md5": "c25dbf10e8843bc44c3189a382dce05c" + }, + { + "authorized_access_point": "Vignette (Sozialwissenschaften)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1336125306" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336125306" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1336125306" + } + ], + "identifier": "http://d-nb.info/gnd/1336125306", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Scho\u0308neich, Svenja: 'On a Hot Day in the Field...' The Art of Writing Ethnographic Vignettes. In: Ethnoscripts 2021, 23 (1), S. 116-124 - http://nbn-resolving.de/urn:nbn:de:gbv:18-8-16664", + "Wikipedia - https://en.wikipedia.org/w/index.php?oldid=1231406965" + ] + }, + { + "noteType": "general", + "label": [ + "Vignetten sind erza\u0308hlerische Beschreibungen von Szenen, die analytischen Schlussfolgerungen dienen (Ethnologie) oder sind in psychol. u. soziol. Experimenten die Darstellung hypothetischer Situationen, auf die Versuchsteilnehmer*innen reagieren u. dabei ihre Wahrnehmungen, Werte, sozialen Normen oder Eindru\u0308cke von Ereignissen offenbaren" + ] + } + ], + "pid": "1336125306", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Forschungsmethode" + } + ], + "related": [ + { + "authorized_access_point": "Faktorieller Survey" + }, + { + "authorized_access_point": "Feldnotiz" + } + ], + "variant_access_point": [ + "Fallvignette" + ], + "md5": "9fe8c74182a310385d55105ead891dc9" + }, + { + "authorized_access_point": "Windisch Kursiv (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1336043652" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336043652" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1336043652" + } + ], + "identifier": "http://d-nb.info/gnd/1336043652", + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungszeit 1917" + ] + } + ], + "pid": "1336043652", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "variant_access_point": [ + "Windisch-Kursiv (Druckschrift)" + ], + "md5": "e9601a4a9a29d907808ce2ac7e84d79a" + }, + { + "authorized_access_point": "Schlachtkreuzer (Motiv)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/133603906X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)133603906X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)133603906X" + } + ], + "identifier": "http://d-nb.info/gnd/133603906X", + "pid": "133603906X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "9a38144ba36b8e8b28c46c04381042e0" + }, + { + "authorized_access_point": "Kua", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1336037571" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336037571" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1336037571" + } + ], + "identifier": "http://d-nb.info/gnd/1336037571", + "pid": "1336037571", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Zentralkhoisan-Sprachen" + } + ], + "variant_access_point": [ + "Cua (Sprache)", + "Tyhua", + "Tyua", + "Kuasi" + ], + "md5": "4b921e0bd6c7007ed87f2937011739f9" + }, + { + "authorized_access_point": "Infanterie (Motiv)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1336035544" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336035544" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1336035544" + } + ], + "identifier": "http://d-nb.info/gnd/1336035544", + "pid": "1336035544", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "3108499970e1582f35114bd6402d3a0c" + }, + { + "authorized_access_point": "Ipidia binotata", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1336026758" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336026758" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1336026758" + } + ], + "identifier": "http://d-nb.info/gnd/1336026758", + "note": [ + { + "noteType": "dataSource", + "label": [ + "NCBI-Taxonomy - https://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=1553505" + ] + }, + { + "noteType": "general", + "label": [ + "Art aus der Familie der Glanzka\u0308fer" + ] + } + ], + "pid": "1336026758", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Glanzka\u0308fer" + } + ], + "md5": "aed46245e301c20ba5ded765b74279c1" + }, + { + "authorized_access_point": "Megachile genalis", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1336019883" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336019883" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1336019883" + } + ], + "identifier": "http://d-nb.info/gnd/1336019883", + "note": [ + { + "noteType": "dataSource", + "label": [ + "NCBI-Taxonomy - https://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=1542538", + "Wikipedia - https://de.wikipedia.org/w/index.php?title=St%C3%A4ngel-Blattschneiderbiene&oldid=224648687" + ] + }, + { + "noteType": "general", + "label": [ + "Art aus der Familie der Bauchsammlerbienen, Gattung: Megachile" + ] + } + ], + "pid": "1336019883", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bauchsammler (Megachilidae)" + } + ], + "variant_access_point": [ + "Sta\u0308ngel-Blattschneiderbiene" + ], + "md5": "e816cc98bdf13d05e05d68e2d014923e" + }, + { + "authorized_access_point": "Mechanisch verzahnter Werkstoff", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1336015497" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336015497" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1336015497" + } + ], + "identifier": "http://d-nb.info/gnd/1336015497", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Internet - https://www.darpa.mil/program/mechanically-interlocked-materials" + ] + } + ], + "pid": "1336015497", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Funktionswerkstoff" + }, + { + "authorized_access_point": "Metallorganisches Netzwerk" + } + ], + "variant_access_point": [ + "MIMs", + "Mechanically Interlocked Materials" + ], + "md5": "d025e6f71e6d0a4eee983560079fa335" + }, + { + "authorized_access_point": "Math Rock", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1335982361" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1335982361" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1335982361" + } + ], + "identifier": "http://d-nb.info/gnd/1335982361", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Math-Rock&oldid=238152802" + ] + }, + { + "noteType": "general", + "label": [ + "In den spa\u0308ten 80er Jahren entstandene Stilrichtung, die sich durch komplexe, atypische rhythmische Strukturen, abgehackte Melodien, Riffdominanz und dissonante Akkorde auszeichnet." + ] + } + ], + "pid": "1335982361", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Rockmusik" + } + ], + "related": [ + { + "authorized_access_point": "Progressive Rock" + } + ], + "variant_access_point": [ + "Math-Rock" + ], + "md5": "6d53074b89dd3b09e02d5b5d6573d919" + }, + { + "authorized_access_point": "Breckerfeld - 600 Jahre Stadtrechte", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/133595368X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)133595368X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)133595368X" + } + ], + "identifier": "http://d-nb.info/gnd/133595368X", + "pid": "133595368X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Jubila\u0308um" + } + ], + "variant_access_point": [ + "Breckerfeld - 600 Jahre Stadt", + "Jubila\u0308umsjahr 1996 (Breckerfeld)", + "Breckerfeld (1996)" + ], + "md5": "13584666073bf6db68d63a9818acb9a4" + }, + { + "authorized_access_point": "Piva (Tanz)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1335904158" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1335904158" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1335904158" + } + ], + "identifier": "http://d-nb.info/gnd/1335904158", + "note": [ + { + "noteType": "dataSource", + "label": [ + "670 Wikipedia - https://de.wikipedia.org/w/index.php?title=Piva_(Tanz)&oldid=243663985" + ] + } + ], + "pid": "1335904158", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tanz" + } + ], + "md5": "2b019babb8f4c6041a32af83955378c1" + }, + { + "authorized_access_point": "Halling", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1335903623" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1335903623" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1335903623" + } + ], + "identifier": "http://d-nb.info/gnd/1335903623", + "note": [ + { + "noteType": "dataSource", + "label": [ + "670 Wikipedia - https://de.wikipedia.org/w/index.php?title=Halling&oldid=236383404" + ] + } + ], + "pid": "1335903623", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Volkstanz" + } + ], + "variant_access_point": [ + "Hallingdans", + "Lausdans", + "Hallingdansen" + ], + "md5": "9bdd1df093c59f3f43c1c398ba046445" + }, + { + "authorized_access_point": "Hopak", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1335900330" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1335900330" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1335900330" + } + ], + "identifier": "http://d-nb.info/gnd/1335900330", + "note": [ + { + "noteType": "dataSource", + "label": [ + "670 Wikipedia - https://de.wikipedia.org/w/index.php?title=Hopak&oldid=243940069" + ] + }, + { + "noteType": "general", + "label": [ + "Laut Wikipedia (eng.) sind Tropak und Hopak verwandt (\"The tropak shares many musical and choreographic characteristics with the better known hopak.\"). Daher die Quasisynonymie." + ] + } + ], + "pid": "1335900330", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Volkstanz" + } + ], + "variant_access_point": [ + "Gopak", + "Trepak", + "Tropak" + ], + "md5": "68dbd93052bf99c1358931c44e2cb01f" + }, + { + "authorized_access_point": "Mundart Mittelitalienisch, Latium (Anagni)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1335882758" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1335882758" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1335882758" + } + ], + "identifier": "http://d-nb.info/gnd/1335882758", + "pid": "1335882758", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Mundart Mittelitalienisch (Latium)" + } + ], + "md5": "20606260f813164cb26748f34c128892" + }, + { + "authorized_access_point": "Chicano Studies", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1335881247" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1335881247" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1335881247" + } + ], + "identifier": "http://d-nb.info/gnd/1335881247", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://en.wikipedia.org/w/index.php?oldid=1219699028" + ] + }, + { + "noteType": "general", + "label": [ + "Interdisziplina\u0308re akademische Disziplin, die sich mit dem Studium der Chicano-Kultur befasst" + ] + } + ], + "pid": "1335881247", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kulturraumforschung" + } + ], + "related": [ + { + "authorized_access_point": "Chicano Movement" + }, + { + "authorized_access_point": "Chicanos" + } + ], + "variant_access_point": [ + "Chicano/a studies", + "Chicana studies", + "Xicano studies", + "Chicana and Chicano Studies", + "Mexican American studies" + ], + "md5": "6a62577cccc80c67d43f70c8e468eef5" + }, + { + "authorized_access_point": "Neotantra", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/133582569X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)133582569X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)133582569X" + } + ], + "identifier": "http://d-nb.info/gnd/133582569X", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Neotantra&oldid=245226944" + ] + }, + { + "noteType": "general", + "label": [ + "in den 70en Jahren, im Westen entstandene Lehre und Lebenspraxis, in der die sexuellen Aspekte des Tantra im Vordergrund stehen." + ] + } + ], + "pid": "133582569X", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Tantrismus" + }, + { + "authorized_access_point": "Esoterik" + } + ], + "variant_access_point": [ + "Navatantra" + ], + "md5": "2360f086dce5916d398e104607bf89a9" + }, + { + "authorized_access_point": "Step-Aerobic", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1335777539" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1335777539" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1335777539" + } + ], + "identifier": "http://d-nb.info/gnd/1335777539", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Step-Aerobic&oldid=244133339" + ] + }, + { + "noteType": "general", + "label": [ + "Aerobes Gruppenfitnesstraining nach Musik, das mit einem ho\u0308henverstellbaren Stepbrett durchgefu\u0308hrt wird" + ] + } + ], + "pid": "1335777539", + "type": "bf:Topic", + "variant_access_point": [ + "Step Aerobic", + "Step-Training" + ], + "md5": "caed0fc0122cc4ba0ee9f850f20806de" + }, + { + "authorized_access_point": "Elastokalorisches System", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1335762779" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1335762779" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1335762779" + } + ], + "identifier": "http://d-nb.info/gnd/1335762779", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Internet - https://www.ipm.fraunhofer.de/de/gf/energiewandler-thermische/komp/kalorische-systeme/elastokalorische-systeme.html" + ] + } + ], + "pid": "1335762779", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ka\u0308ltetechnik" + } + ], + "variant_access_point": [ + "Elastokalorischer Effekt" + ], + "md5": "b7462f49c32935866b98d769c9a9bc66" + }, + { + "authorized_access_point": "Tausendjahrfeier Schildesche", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1335752897" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1335752897" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1335752897" + } + ], + "identifier": "http://d-nb.info/gnd/1335752897", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Homepage Bielefeld - https://historischer-rueckklick-bielefeld.com/2019/07/01/01072019/" + ] + } + ], + "pid": "1335752897", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Jubila\u0308um" + } + ], + "variant_access_point": [ + "1000 Jahre Schildesche", + "Ortsjubila\u0308um von Schildesche 1939", + "Tausendjahrfeier von Schildesche 1939", + "Bielefeld-Schildesche (1939)", + "Bielefeld-Schildesche", + "Schildesche (1939)" + ], + "md5": "bd1d7102c5171d0343764a82207352b1" + }, + { + "authorized_access_point": "Franzo\u0308sisch-englischer Krieg (1294-1303)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/133575086X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)133575086X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)133575086X" + } + ], + "identifier": "http://d-nb.info/gnd/133575086X", + "note": [ + { + "noteType": "general", + "label": [ + "milita\u0308rischer Konflikt zwischen England und Frankreich, der hauptsa\u0308chlich in der Gascogne sowie in Flandern ausgetragen wurde." + ] + } + ], + "pid": "133575086X", + "type": "bf:Topic", + "variant_access_point": [ + "Englisch-franzo\u0308sischer Krieg (1294-1303)", + "Guerre de Guyenne", + "Gascon war" + ], + "md5": "069501b597448540d2858c72748af09f" + }, + { + "authorized_access_point": "Feldnotiz", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1335736832" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1335736832" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1335736832" + } + ], + "identifier": "http://d-nb.info/gnd/1335736832", + "note": [ + { + "noteType": "dataSource", + "label": [ + "AAT - http://vocab.getty.edu/page/aat/300027201", + "Thomas, S.: Beobachtungsprotokolle und Feldnotizen. In: Ethnografie. Qualitative Sozialforschung. Springer, 2019. - https://doi.org/10.1007/978-3-531-94218-6_5", + "Dellwing; Prus: Einfu\u0308hrung in die interaktionistische Ethnografie. Springer, 2012, S. 163-171. - https://doi.org/10.1007/978-3-531-94265-0_5" + ] + }, + { + "noteType": "general", + "label": [ + "Notizen, die von Forschenden im Laufe der Feldforschung bzw. Vermessung aufgezeichnet werden" + ] + } + ], + "pid": "1335736832", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Feldforschung" + }, + { + "authorized_access_point": "Qualitative Sozialforschung" + } + ], + "variant_access_point": [ + "Feldnotizen", + "Feldbuch", + "Beobachtungsprotokoll" + ], + "md5": "60bc0db937cbfc74efc71b8223ab9f69" + }, + { + "authorized_access_point": "Ukrainischer Schu\u0308ler", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1335733086" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1335733086" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1335733086" + } + ], + "identifier": "http://d-nb.info/gnd/1335733086", + "note": [ + { + "noteType": "general", + "label": [ + "Benutzt, soweit im Ausland lebend" + ] + } + ], + "pid": "1335733086", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ausla\u0308ndischer Schu\u0308ler" + }, + { + "authorized_access_point": "Ukrainer" + } + ], + "md5": "1f0de41df487ff3ae8cc328dc63b12bb" + }, + { + "authorized_access_point": "Umweltpreis der Stadt Bielefeld", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1335729577" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1335729577" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1335729577" + } + ], + "identifier": "http://d-nb.info/gnd/1335729577", + "note": [ + { + "noteType": "general", + "label": [ + "Nach 2009 als \"Umwelt- und Klimaschutzpreis\" fortgefu\u0308hrt und alle 2 Jahre verliehen" + ] + } + ], + "pid": "1335729577", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Preis (Auszeichnung)" + } + ], + "related": [ + { + "authorized_access_point": "Umweltschutz" + } + ], + "variant_access_point": [ + "Umweltpreis (Bielefeld)" + ], + "md5": "94edcd54900b48270eaedd9915e3e98f" + }, + { + "authorized_access_point": "Manchester School", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1335727701" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1335727701" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1335727701" + } + ], + "identifier": "http://d-nb.info/gnd/1335727701", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://en.wikipedia.org/w/index.php?oldid=1021987957", + "Evens; Handelman: The Manchester School: Practice and Ethnographic Praxis in Anthropology. Berghahn, 2006 - https://doi.org/10.1515/9780857458582" + ] + }, + { + "noteType": "general", + "label": [ + "Die Manchester School of Anthropology ist eine interaktionistische Richtung der britischen Ethnologie, die vom Department of Social Anthropology der Victoria University of Manchester ausging, federfu\u0308hrend war Max Gluckman" + ] + } + ], + "pid": "1335727701", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Sozialanthropologie" + } + ], + "variant_access_point": [ + "Manchester School of Anthropology" + ], + "md5": "9e1716e4d41a919cf888f75a3cb90a21" + }, + { + "authorized_access_point": "Moritz von Oraniens Feldzug (1597)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1335528539" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1335528539" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1335528539" + } + ], + "identifier": "http://d-nb.info/gnd/1335528539", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Moritz_von_Oraniens_Feldzug_von_1597&oldid=236205338" + ] + } + ], + "pid": "1335528539", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Achtzigja\u0308hriger Krieg" + } + ], + "broader": [ + { + "authorized_access_point": "Feldzug" + } + ], + "variant_access_point": [ + "Moritz von Oraniens Feldzug von 1597", + "Moritz' Feldzug von 1597" + ], + "md5": "afbb86f7726cbc1aec4f0f0642dcba02" + }, + { + "authorized_access_point": "Nguon", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1335514767" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1335514767" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1335514767" + } + ], + "identifier": "http://d-nb.info/gnd/1335514767", + "note": [ + { + "noteType": "dataSource", + "label": [ + "UNESCO - https://ich.unesco.org/en/RL/nguon-rituals-of-governance-and-associated-expressions-in-the-bamoun-community-01955", + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Ko\u0308nigreich_Bamum&oldid=240119185#Nguon" + ] + }, + { + "noteType": "general", + "label": [ + "Die u\u0308ber 600 Jahre alten Nguon-Rituale zwischen dem Mfon, dem Monarchen, und seinem Volk gelten als Quelle des sozialen Zusammenhalts und Widerstandsfa\u0308higkeit, sie werden von der Bamoun-Gemeinschaft in der Westregion Kameruns durchgefu\u0308hrt." + ] + } + ], + "pid": "1335514767", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ritual" + } + ], + "related": [ + { + "authorized_access_point": "Bamum" + } + ], + "md5": "9272c271943f92dcb4433bc76769bfa9" + }, + { + "authorized_access_point": "Avro 696 Shackleton", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1335503307" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1335503307" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1335503307" + } + ], + "identifier": "http://d-nb.info/gnd/1335503307", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Avro_Shackleton&oldid=230785070" + ] + } + ], + "pid": "1335503307", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Aufkla\u0308rungsflugzeug" + } + ], + "variant_access_point": [ + "Shackleton (Flugzeug)" + ], + "md5": "3112fe226f089670d27037fed8486316" + }, + { + "authorized_access_point": "Medienku\u0308nstler", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1335484930" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1335484930" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1335484930" + } + ], + "identifier": "http://d-nb.info/gnd/1335484930", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Medienkunst&oldid=244560852" + ] + }, + { + "noteType": "general", + "label": [ + "Ku\u0308nstler der sich unterschiedlicher audiovisueller Medien (Radio, Film, Fernsehen, Video, Computer und Internet) bedient" + ] + } + ], + "pid": "1335484930", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ku\u0308nstler" + } + ], + "related": [ + { + "authorized_access_point": "Medienku\u0308nstlerin" + } + ], + "md5": "01efde92d0096233e40d743b021f16f0" + }, + { + "authorized_access_point": "Medienku\u0308nstlerin", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1335484639" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1335484639" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1335484639" + } + ], + "identifier": "http://d-nb.info/gnd/1335484639", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Medienkunst&oldid=244560852" + ] + }, + { + "noteType": "general", + "label": [ + "Ku\u0308nstlerin die die sich unterschiedlicher audiovisueller Medien (Radio, Film, Fernsehen, Video, Computer und Internet) bedient" + ] + } + ], + "pid": "1335484639", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Medienku\u0308nstler" + } + ], + "broader": [ + { + "authorized_access_point": "Ku\u0308nstlerin" + } + ], + "md5": "f4e5b5b6d90bfbd292875f40774424e3" + }, + { + "authorized_access_point": "Gaslighting", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1335475753" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1335475753" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1335475753" + } + ], + "identifier": "http://d-nb.info/gnd/1335475753", + "exactMatch": [ + { + "authorized_access_point": "Gaslighting", + "source": "GND", + "identifiedBy": [ + { + "type": "uri", + "value": "https://id.nlm.nih.gov/mesh/D000090206.html" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Larner, A. J.: A dictionary of neurological signs. Springer, 2016, 4. Aufl., S. 139 - https://doi.org/10.1007/978-3-319-29821-4", + "MeSH - https://id.nlm.nih.gov/mesh/D000090206.html", + "Wikipedia - https://de.wikipedia.org/w/index.php?oldid=243986138", + "Du. - https://www.duden.de/rechtschreibung/Gaslighting" + ] + }, + { + "noteType": "general", + "label": [ + "Form der gezielten psychologischen Manipulation, bei dem ein Opfer dazu gebracht wird, seine Wahrnehmungen der Realita\u0308t inkl. Erinnerungen u.a. in Frage zu stellen" + ] + } + ], + "pid": "1335475753", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Manipulation" + } + ], + "related": [ + { + "authorized_access_point": "Emotionaler Missbrauch" + } + ], + "variant_access_point": [ + "Gaslight Phenomenon", + "Gaslight Syndrome", + "Gaslichtern", + "Gas-lighting" + ], + "md5": "8c34565513791e2446b838e3f0f7daa9" + }, + { + "authorized_access_point": "Wellenschnecke", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1335475575" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1335475575" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1335475575" + } + ], + "identifier": "http://d-nb.info/gnd/1335475575", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Internet - https://www.plastverarbeiter.de/markt/die-perfekte-welle.html" + ] + } + ], + "pid": "1335475575", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schnecke (Maschinenbau)" + } + ], + "related": [ + { + "authorized_access_point": "Extruder" + } + ], + "variant_access_point": [ + "Wave-Schnecke" + ], + "md5": "f80d45677e8c558133a1fa396e837207" + }, + { + "authorized_access_point": "Volkswagen Fellowship fu\u0308r Kunstvermittlung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1335348379" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1335348379" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1335348379" + } + ], + "identifier": "http://d-nb.info/gnd/1335348379", + "note": [ + { + "noteType": "general", + "label": [ + "Seit 2017 vergebenes Stipendium an Kunstvermittler*innen." + ] + } + ], + "pid": "1335348379", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kulturpreis" + }, + { + "authorized_access_point": "Stipendium" + } + ], + "related": [ + { + "authorized_access_point": "Kunstvermittlung" + } + ], + "variant_access_point": [ + "Stipendium Volkswagen Fellowship fu\u0308r Kunstvermittlung", + "Volkswagen Fellowship fu\u0308r Kunstvermittlung an der Sta\u0308dtischen Galerie Wolfsburg", + "Volkswagen Group Fellowship", + "Volkswagen Fellowship" + ], + "md5": "ea9769c60d2785ee5da141c3463dc0f3" + }, + { + "authorized_access_point": "Liouville-Feldtheorie", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1335334955" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1335334955" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1335334955" + } + ], + "identifier": "http://d-nb.info/gnd/1335334955", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://en.wikipedia.org/w/index.php?title=Liouville_field_theory&oldid=1231830939", + "ncatlab - https://ncatlab.org/nlab/show/Liouville+theory" + ] + }, + { + "noteType": "general", + "label": [ + "Zweidimensionale konforme Feldtheorie, deren klassische Bewegungsgleichungen auf einer Verallgemeinerung der Liouville-Gleichung beruhen." + ] + } + ], + "pid": "1335334955", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zweidimensionale konforme Feldtheorie" + }, + { + "authorized_access_point": "Liouville-Gleichung" + } + ], + "related": [ + { + "authorized_access_point": "Quantengravitation" + } + ], + "variant_access_point": [ + "Liouville-Quantengravitation", + "Liouville Field Theory", + "Liouville Theory", + "Liouville Quantum Gravity" + ], + "md5": "b34cfd8989ed9a98984161ef0b834a9f" + }, + { + "authorized_access_point": "Priorisierung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1335332510" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1335332510" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1335332510" + } + ], + "identifier": "http://d-nb.info/gnd/1335332510", + "note": [ + { + "noteType": "dataSource", + "label": [ + "OBV - https://permalink.obvsg.at/AC12153949", + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Priorisierung_medizinischer_Leistungen&oldid=212761464" + ] + }, + { + "noteType": "general", + "label": [ + "Vorrangigkeit bestimmter Indikationen, Patientengruppen od. Verfahren vor anderen; nicht ident mit Rationierung" + ] + } + ], + "pid": "1335332510", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gesundheitspolitik" + }, + { + "authorized_access_point": "Medizinische Versorgung" + } + ], + "variant_access_point": [ + "Priorisierung (Gesundheitswesen)", + "Priorisierung medizinischer Leistungen", + "Medizinische Priorisierung" + ], + "md5": "390f749bcb677e5076fd5d3b3a9fbfc7" + }, + { + "authorized_access_point": "Brustkrankheit", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1335327541" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1335327541" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1335327541" + } + ], + "identifier": "http://d-nb.info/gnd/1335327541", + "exactMatch": [ + { + "authorized_access_point": "Breast - Diseases", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1335330070" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85016683" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85016683" + } + ] + }, + { + "authorized_access_point": "Sein - Maladies", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1335330070" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11938410" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11938410t" + } + ] + }, + { + "authorized_access_point": "Breast Diseases", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1335329935" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D001941" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D001941" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Benutze Kombination \"Mamma AND Krankheit\" fu\u0308r weitere Treffer" + ] + } + ], + "pid": "1335327541", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Senologie" + } + ], + "broader": [ + { + "authorized_access_point": "Krankheit" + } + ], + "variant_access_point": [ + "Brusterkrankung", + "Brustkrankheiten", + "Brusterkrankungen" + ], + "md5": "6c033b8c560ff2b6ed5861c02e7d30b5" + }, + { + "authorized_access_point": "Permutaeder", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1335263977" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1335263977" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1335263977" + } + ], + "identifier": "http://d-nb.info/gnd/1335263977", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Permutaeder&oldid=244419551" + ] + }, + { + "noteType": "general", + "label": [ + "Konvexes Polytop, dessen Ecken sich als Permutation des Vektors (1,2,\u2026,n) definieren." + ] + } + ], + "pid": "1335263977", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Konvexes Polytop" + } + ], + "related": [ + { + "authorized_access_point": "Permutation" + } + ], + "variant_access_point": [ + "Permutohedron", + "Permutahedron" + ], + "md5": "f051e4cf1d1452865eb7d4e0fd5f2d56" + }, + { + "authorized_access_point": "Stadtkreis (Russland)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1335255869" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1335255869" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1335255869" + } + ], + "identifier": "http://d-nb.info/gnd/1335255869", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Stadtkreis_(Russland)&oldid=229834610" + ] + }, + { + "noteType": "general", + "label": [ + "in der Russischen Fo\u0308deration eine Verwaltungseinheit im Rahmen der lokalen Selbstverwaltung" + ] + } + ], + "pid": "1335255869", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Verwaltungseinheit" + } + ], + "variant_access_point": [ + "Gorodskoi Okrug", + "Gorodskoj okrug" + ], + "md5": "8def4acea529f33f798ab30626db8bc6" + }, + { + "authorized_access_point": "Umweltpreis der Stadt Bergkamen", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1335237232" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1335237232" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1335237232" + } + ], + "identifier": "http://d-nb.info/gnd/1335237232", + "pid": "1335237232", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Preis (Auszeichnung)" + } + ], + "related": [ + { + "authorized_access_point": "Umweltschutz" + } + ], + "md5": "e9a6df13aff3ed30b2509cd281f579a2" + }, + { + "authorized_access_point": "Schismogenese", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1335237046" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1335237046" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1335237046" + } + ], + "identifier": "http://d-nb.info/gnd/1335237046", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Spektrum Lex. Psychol. (online) - https://www.spektrum.de/lexikon/psychologie/schismogenese/13471", + "Wikipedia - https://de.wikipedia.org/w/index.php?oldid=245926045" + ] + } + ], + "pid": "1335237046", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Gruppendynamik" + } + ], + "variant_access_point": [ + "Schismogenesis" + ], + "md5": "01db30e9f0dc4c8970a0ed7613c0de73" + }, + { + "authorized_access_point": "Rationalisierung (Soziologie)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/133523490X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)133523490X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)133523490X" + } + ], + "identifier": "http://d-nb.info/gnd/133523490X", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?oldid=228402100" + ] + }, + { + "noteType": "general", + "label": [ + "Unter Rationalisierung ist in der Soziologie der umfassende Prozess zu verstehen, in dem alle gesellschaftlichen Pha\u0308nomene der Vernunft unterworfen werden" + ] + } + ], + "pid": "133523490X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Soziologie" + } + ], + "related": [ + { + "authorized_access_point": "Vernunft" + } + ], + "md5": "c969c26856e11a46aa1b81ce7cef85a4" + }, + { + "authorized_access_point": "Extraktivismus", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1335228187" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1335228187" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1335228187" + } + ], + "identifier": "http://d-nb.info/gnd/1335228187", + "exactMatch": [ + { + "authorized_access_point": "Extractivisme", + "source": "GND", + "identifiedBy": [ + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17034367t" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Rameau - https://data.bnf.fr/ark:/12148/cb17034367t", + "Wikipedia - https://de.wikipedia.org/w/index.php?oldid=236304205" + ] + }, + { + "noteType": "general", + "label": [ + "Formen der Wirtschaft, bei denen natu\u0308rliche Ressourcen entnommen, genutzt und vermarktet werden" + ] + } + ], + "pid": "1335228187", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Rohstoffwirtschaft" + }, + { + "authorized_access_point": "Entwicklungsmodell" + } + ], + "related": [ + { + "authorized_access_point": "Ausbeutung" + }, + { + "authorized_access_point": "Subsistenzwirtschaft" + }, + { + "authorized_access_point": "Rohstoffexport" + } + ], + "variant_access_point": [ + "Neo-Extraktivismus", + "Neuextraktivismus" + ], + "md5": "d14c6d0c99ca399b3f25125687ec3319" + }, + { + "authorized_access_point": "775 Jahre Stadt Borken", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1335212299" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1335212299" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1335212299" + } + ], + "identifier": "http://d-nb.info/gnd/1335212299", + "pid": "1335212299", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Jubila\u0308um" + } + ], + "variant_access_point": [ + "Siebenhundertfu\u0308nfundsiebzig Jahre Stadt Borken", + "Borken (Westf.) (2001)" + ], + "md5": "1027f9f120c68eb89820b14ffec7fd35" + }, + { + "authorized_access_point": "700-Jahr-Feier der Stadt Borken", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/133521075X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)133521075X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)133521075X" + } + ], + "identifier": "http://d-nb.info/gnd/133521075X", + "pid": "133521075X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Jubila\u0308um" + } + ], + "variant_access_point": [ + "700-Jahrfeier der Stadt Borken", + "700-Jahr-Feier der Stadt Borken 1926", + "Siebenhundert-Jahr-Feier der Stadt Borken", + "Borken (Westf.) (1926)" + ], + "md5": "62114d7d9b3d66f140585f2fb4cc54d8" + }, + { + "authorized_access_point": "Vorarlberger Volkserhebung (1809)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1335201068" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1335201068" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1335201068" + } + ], + "identifier": "http://d-nb.info/gnd/1335201068", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Vorarlberger_Volkserhebung_1809&oldid=208849160" + ] + }, + { + "noteType": "general", + "label": [ + "gewaltsamer Widerstand der Bevo\u0308lkerung des o\u0308sterreichischen Landes Vorarlberg gegen die bayerische Fremdherrschaft im Rahmen des O\u0308sterreichisch-Franzo\u0308sischen Kriegs" + ] + } + ], + "pid": "1335201068", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Aufstand" + } + ], + "related": [ + { + "authorized_access_point": "O\u0308sterreichisch-Franzo\u0308sischer Krieg (1809)" + } + ], + "variant_access_point": [ + "Vorarlberger Volksaufstand (1809)", + "Vorarlberger Aufstand (1809)", + "Vorarlberger Erhebung (1809)" + ], + "md5": "f8010065aec34fa68b421a320c98e226" + }, + { + "authorized_access_point": "700-Jahrfeier der Stadt Beckum", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1335134549" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1335134549" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1335134549" + } + ], + "identifier": "http://d-nb.info/gnd/1335134549", + "pid": "1335134549", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Jubila\u0308um" + } + ], + "variant_access_point": [ + "700-Jahrfeier der Stadt Beckum 1924", + "Siebenhundert-Jahrfeier der Stadt Beckum", + "Beckum (1924)" + ], + "md5": "448b56eb9bab9e413fb1d98599262b7b" + }, + { + "authorized_access_point": "Syndemie", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1335054405" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1335054405" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1335054405" + } + ], + "identifier": "http://d-nb.info/gnd/1335054405", + "exactMatch": [ + { + "authorized_access_point": "Syndemics", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336048573" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2014100257" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2014100257" + } + ] + }, + { + "authorized_access_point": "Syndemic", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336048115" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D000076603" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D000076603" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://en.wikipedia.org/w/index.php?&oldid=1232080765", + "Singer; Snipes: Generations of Suffering: Experiences of a Treatment Program for Substance Abuse During Pregnancy, 1992, S. 225 - https://doi.org/10.1353/hpu.2010.0180", + "Medico International: Pandemie? Syndemie! - https://www.medico.de/pandemie-syndemie-18186" + ] + }, + { + "noteType": "general", + "label": [ + "Eine Syndemie ist eine Reihe miteinander verflochtener und sich gegenseitig versta\u0308rkender Gesundheitsprobleme, die im Zusammenwirken mit scha\u0308dlichen sozialen und physischen Bedingungen die Gesamtkrankheitslast und den Gesundheitszustand einer Bevo\u0308lkerung erheblich beeinflussen" + ] + } + ], + "pid": "1335054405", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Sozialepidemiologie" + } + ], + "related": [ + { + "authorized_access_point": "Pandemie" + } + ], + "md5": "42b9204107f6cd30b101c4f7fc3cab73" + }, + { + "authorized_access_point": "Spektrum (Topologie)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1334935475" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334935475" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1334935475" + } + ], + "identifier": "http://d-nb.info/gnd/1334935475", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Spektrum_(Topologie)&oldid=200053574", + "Encyclopedia of Math - https://encyclopediaofmath.org/index.php?title=Spectrum_of_spaces&oldid=52273" + ] + }, + { + "noteType": "general", + "label": [ + "In der algebraischen Topologie werden Spektren zur Definition verallgemeinerter Homologietheorien benutzt." + ] + } + ], + "pid": "1334935475", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Spektrum (Mathematik)" + }, + { + "authorized_access_point": "Algebraische Topologie" + } + ], + "related": [ + { + "authorized_access_point": "Homotopietheorie" + } + ], + "variant_access_point": [ + "Spectrum of Spaces" + ], + "md5": "698974717b5ab96cc1115d48d47c6643" + }, + { + "authorized_access_point": "Finnentrop (Ortsname)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1334906815" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334906815" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1334906815" + } + ], + "identifier": "http://d-nb.info/gnd/1334906815", + "pid": "1334906815", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ortsname" + } + ], + "md5": "d9fbdc7e89ae6a1d108d97db85ecc7af" + }, + { + "authorized_access_point": "Orchesterstudien", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1334879079" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334879079" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1334879079" + } + ], + "identifier": "http://d-nb.info/gnd/1334879079", + "note": [ + { + "noteType": "general", + "label": [ + "Sammlung wichtiger Stellen aus Opern, Konzerten usw. fu\u0308r ein bestimmtes Instrument" + ] + } + ], + "pid": "1334879079", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Musikalien" + } + ], + "md5": "7990fd8e02ae0350fa11a8a0772155a7" + }, + { + "authorized_access_point": "Baumschlag (Landschaftsmalerei)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1334810524" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334810524" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1334810524" + } + ], + "identifier": "http://d-nb.info/gnd/1334810524", + "note": [ + { + "noteType": "general", + "label": [ + "Darstellungsweise des Laubwerks in der bildenden Kunst", + "Ohne IZ Motiv" + ] + } + ], + "pid": "1334810524", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + }, + { + "authorized_access_point": "Landschaftsmalerei" + } + ], + "md5": "bf25653649fb562f39a3f8aa2acc3ac2" + }, + { + "authorized_access_point": "Stockfotografie", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1334804893" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334804893" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1334804893" + } + ], + "identifier": "http://d-nb.info/gnd/1334804893", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Stockfotografie&oldid=243286041" + ] + } + ], + "pid": "1334804893", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fotografie" + } + ], + "md5": "93a0c1874451ca68b5f326df7750545c" + }, + { + "authorized_access_point": "Spitze (Textilien, Motiv)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1334804699" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334804699" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1334804699" + } + ], + "identifier": "http://d-nb.info/gnd/1334804699", + "pid": "1334804699", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "545236a994efc28c39b07fe01fe6ed37" + }, + { + "authorized_access_point": "Ulmer Einsatzgruppen-Prozess", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1334804281" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334804281" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1334804281" + } + ], + "identifier": "http://d-nb.info/gnd/1334804281", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Ulmer_Einsatzgruppen-Prozess&oldid=237591756" + ] + }, + { + "noteType": "general", + "label": [ + "Der Prozess gegen zehn Angeho\u0308rige der \u201eEinsatzgruppe Tilsit\u201c im April 1958 verhandelte den Mord an u\u0308ber 5.500 Menschen im deutsch-litauischen Grenzgebiet 1941" + ] + } + ], + "pid": "1334804281", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kriegsverbrecherprozess" + } + ], + "variant_access_point": [ + "Ulmer Einsatzkommandoprozess" + ], + "md5": "c032448e6d0ee84487b65b91aff38a4a" + }, + { + "authorized_access_point": "Cyberfeminismus", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1334795533" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334795533" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1334795533" + } + ], + "identifier": "http://d-nb.info/gnd/1334795533", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Cyberfeminismus&oldid=243932731" + ] + }, + { + "noteType": "general", + "label": [ + "seit ca. 1990 Bezeichnung fu\u0308r einen feministischen Ansatz, der dazu dient, das Internet, den Cyberspace und neue Medientechnologien im Allgemeinen zu theoretisieren, kritisieren, erforschen und neu zu gestalten" + ] + } + ], + "pid": "1334795533", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Feminismus" + } + ], + "related": [ + { + "authorized_access_point": "Medientheorie" + } + ], + "variant_access_point": [ + "Netzfeminismus", + "Technofeminismus" + ], + "md5": "6169dac611cf4be3f9acedac150b7a4d" + }, + { + "authorized_access_point": "Biowerkstoff", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1334784639" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334784639" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1334784639" + } + ], + "identifier": "http://d-nb.info/gnd/1334784639", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Biowerkstoff&oldid=224587293" + ] + }, + { + "noteType": "general", + "label": [ + "Der Begriff Biowerkstoff wurde als Oberbegriff fu\u0308r Werkstoffe geschaffen, die vollsta\u0308ndig oder zu relevanten Anteilen auf nachwachsenden Rohstoffen (Naturprodukte oder Holz) basieren." + ] + } + ], + "pid": "1334784639", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Werkstoff" + } + ], + "related": [ + { + "authorized_access_point": "Biomaterial" + } + ], + "variant_access_point": [ + "Biobasierter Werkstoff", + "biomaterial (eng)" + ], + "md5": "0c60018defad14d9e6f585a6614da990" + }, + { + "authorized_access_point": "Schlacht um \u0141o\u0301dz\u0301", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1334676844" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334676844" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1334676844" + } + ], + "identifier": "http://d-nb.info/gnd/1334676844", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/wiki/Schlacht_um_%C5%81%C3%B3d%C5%BA" + ] + } + ], + "pid": "1334676844", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schlacht" + } + ], + "related": [ + { + "authorized_access_point": "Erster Weltkrieg" + } + ], + "variant_access_point": [ + "Schlacht um Lodz", + "Bitwa pod \u0141odzia\u0328 (1914)", + "Lodzinskaja operacija", + "\u041b\u043e\u0434\u0437\u0438\u043d\u0441\u043a\u0430\u044f \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u044f" + ], + "md5": "9f401d7a544d54f332ac419b30cdcb40" + }, + { + "authorized_access_point": "Eppinger-Linien-Weg", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1334652074" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334652074" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1334652074" + } + ], + "identifier": "http://d-nb.info/gnd/1334652074", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Homepage - https://www.naturpark-stromberg-heuchelberg.de/erleben/wandern/eppinger-linien-weg" + ] + }, + { + "noteType": "general", + "label": [ + "40 km lange kulturhistorischer Wanderweg im Naturpark Stromberg-Heuchelberg zwischen Eppingen und Mu\u0308hlacker" + ] + } + ], + "pid": "1334652074", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Wanderweg" + } + ], + "md5": "95a0e5ad40d900a747b06809322944e8" + }, + { + "authorized_access_point": "Luftschlacht um England (Motiv)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1334205639" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334205639" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1334205639" + } + ], + "identifier": "http://d-nb.info/gnd/1334205639", + "pid": "1334205639", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "241d11abf92936a98976c60febacea1c" + }, + { + "authorized_access_point": "Hacker (Motiv)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1333849850" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333849850" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1333849850" + } + ], + "identifier": "http://d-nb.info/gnd/1333849850", + "pid": "1333849850", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "e4e29596d9eabe1772b29cf6eba6cc01" + }, + { + "authorized_access_point": "Weibliche Multiple-Sklerose-Kranke", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1333570651" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333570651" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1333570651" + } + ], + "identifier": "http://d-nb.info/gnd/1333570651", + "pid": "1333570651", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Weibliche Kranke" + } + ], + "related": [ + { + "authorized_access_point": "Multiple Sklerose" + }, + { + "authorized_access_point": "Multiple-Sklerose-Kranker" + } + ], + "md5": "ba1cabfceaa5b0370498623777f18333" + }, + { + "authorized_access_point": "Mundart Limousinisch (Saint-Junien)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1333353421" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333353421" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1333353421" + } + ], + "identifier": "http://d-nb.info/gnd/1333353421", + "pid": "1333353421", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Limousinisch" + } + ], + "md5": "92b97338b3905a974a214b63acebb118" + }, + { + "authorized_access_point": "Micropayment", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1333321201" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333321201" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1333321201" + } + ], + "identifier": "http://d-nb.info/gnd/1333321201", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Micropayment&oldid=239826416" + ] + }, + { + "noteType": "general", + "label": [ + "Zahlungsverfahren fu\u0308r geringe Summen, vor allem beim Kauf digitaler Gu\u0308ter." + ] + } + ], + "pid": "1333321201", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zahlungsverfahren" + }, + { + "authorized_access_point": "Elektronischer Zahlungsverkehr" + } + ], + "variant_access_point": [ + "Mikrozahlung", + "Micro payment", + "Micro transaction", + "Mikrotransaktion" + ], + "md5": "2a0b4cb179f3dec3e4344fa2f9f1cd4d" + }, + { + "authorized_access_point": "Komabue", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1333260148" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333260148" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1333260148" + } + ], + "identifier": "http://d-nb.info/gnd/1333260148", + "closeMatch": [ + { + "authorized_access_point": "Komabue", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334653623" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16961839" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb169618398" + } + ] + } + ], + "pid": "1333260148", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bambusflo\u0308te" + } + ], + "md5": "7d0950638acc5428af3f2a176b226778" + }, + { + "authorized_access_point": "Wolfram (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1333126433" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333126433" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1333126433" + } + ], + "identifier": "http://d-nb.info/gnd/1333126433", + "pid": "1333126433", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + }, + { + "authorized_access_point": "Auszeichnungsschrift" + } + ], + "md5": "0d2aed8c5e43f9e419c7de715766d3f7" + }, + { + "authorized_access_point": "Mundart Spanisch (Provinz Salamanca)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1333115482" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333115482" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1333115482" + } + ], + "identifier": "http://d-nb.info/gnd/1333115482", + "pid": "1333115482", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Spanisch" + } + ], + "md5": "ad3192b1c0de39041d4a6d60fce15e3b" + }, + { + "authorized_access_point": "Tiera\u0308rztliche Hausapotheke", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1332860451" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332860451" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1332860451" + } + ], + "identifier": "http://d-nb.info/gnd/1332860451", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Tier%C3%A4rztliche_Hausapotheke&oldid=223225029" + ] + } + ], + "pid": "1332860451", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Hausapotheke" + } + ], + "md5": "e57a636647967021daf8d2205b989051" + }, + { + "authorized_access_point": "Aimol-Sprache", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1332767702" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332767702" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1332767702" + } + ], + "identifier": "http://d-nb.info/gnd/1332767702", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://en.wikipedia.org/w/index.php?title=Aimol_language&oldid=1218551092" + ] + }, + { + "noteType": "general", + "label": [ + "Sprache der Aimol im indischen Bundesstaat Maipur" + ] + } + ], + "pid": "1332767702", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Kukisch" + } + ], + "variant_access_point": [ + "Aimual-Sprache" + ], + "md5": "1cf0f4e8dcb911fb761c9e32f86d71b9" + }, + { + "authorized_access_point": "Xavante-Sprache", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1332765785" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332765785" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1332765785" + } + ], + "identifier": "http://d-nb.info/gnd/1332765785", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Glottolog - https://glottolog.org/resource/languoid/id/xava1240", + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Xavante_(Sprache)&oldid=213259576" + ] + } + ], + "pid": "1332765785", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Ge" + } + ], + "variant_access_point": [ + "Shavante-Sprache", + "Chavante-Sprache", + "Acua", + "Akua\u0308n", + "Akuen", + "Akwen (Sprache)", + "Chavantean", + "Akwe (Sprache)" + ], + "md5": "947b0222789a7ec4304896dd73ea43e3" + }, + { + "authorized_access_point": "Transiente Osteoporose", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1332734316" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332734316" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1332734316" + } + ], + "identifier": "http://d-nb.info/gnd/1332734316", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Transiente_Osteoporose&oldid=243930206", + "OBV - https://permalink.obvsg.at/AC17191350" + ] + }, + { + "noteType": "general", + "label": [ + "Schmerzhafte, zeitlich begrenzte Erkrankung der Hu\u0308fte (selten anderer Knochen)" + ] + } + ], + "pid": "1332734316", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Osteoporose" + } + ], + "variant_access_point": [ + "Knochenmarko\u0308dem-Syndrom", + "Transitorische Osteoporose", + "Knochenmarko\u0308demsyndrom", + "KMO\u0308S" + ], + "md5": "e5c65ee519218f7ba8f33c5458dbd484" + }, + { + "authorized_access_point": "Azadi\u0302", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1332672701" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332672701" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1332672701" + } + ], + "identifier": "http://d-nb.info/gnd/1332672701", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/wiki/Azadi" + ] + }, + { + "noteType": "general", + "label": [ + "Kurdische Widerstandsorganisation gegen die Abschaffung des Kalifats" + ] + } + ], + "pid": "1332672701", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Politische Gruppe" + } + ], + "variant_access_point": [ + "Civata Azadiya Kurd", + "Civata Xweseriya Kurd", + "Ku\u0308rt I\u0307stikla\u0302l Komitesi", + "Azadi\u0302 o\u0308rgu\u0308tu\u0308" + ], + "md5": "6928b21bd82cc58cd8c32058eb3c15a3" + }, + { + "authorized_access_point": "Grenzsoldatin", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1332661327" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332661327" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1332661327" + } + ], + "identifier": "http://d-nb.info/gnd/1332661327", + "pid": "1332661327", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Soldatin" + } + ], + "related": [ + { + "authorized_access_point": "Grenzsoldat" + } + ], + "md5": "983d68eadad388382e0db43f1a42976d" + }, + { + "authorized_access_point": "Amerikanische Einwanderin", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1332426336" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332426336" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1332426336" + } + ], + "identifier": "http://d-nb.info/gnd/1332426336", + "pid": "1332426336", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Einwanderin" + }, + { + "authorized_access_point": "Amerikanerin" + } + ], + "related": [ + { + "authorized_access_point": "Amerikanischer Einwanderer" + } + ], + "variant_access_point": [ + "US-Amerikanische Einwanderin" + ], + "md5": "0108ed60b41a1568c81f4ad9550b1c20" + }, + { + "authorized_access_point": "Paunaka", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1332101607" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332101607" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1332101607" + } + ], + "identifier": "http://d-nb.info/gnd/1332101607", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Paunaka&oldid=220820255", + "Terhart, Lena: A grammar of Paunaka. 2024 - https://refubium.fu-berlin.de/handle/fub188/42745" + ] + }, + { + "noteType": "general", + "label": [ + "Stark bedrohte Sprache gesprochen in der bolivianischen Region Chiquitani\u0301a" + ] + } + ], + "pid": "1332101607", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Arawak-Sprachen" + } + ], + "variant_access_point": [ + "Paunaca", + "Pauneca", + "Pauna" + ], + "md5": "d0aa5eed80f72e38b6dd24b62c7545f9" + }, + { + "authorized_access_point": "Mundart Hochalemannisch (Balgach)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1331864321" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331864321" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1331864321" + } + ], + "identifier": "http://d-nb.info/gnd/1331864321", + "pid": "1331864321", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Schweizerdeutsch" + }, + { + "authorized_access_point": "Hochalemannisch" + } + ], + "md5": "2474aac08b1126cada35a58c451050c9" + }, + { + "authorized_access_point": "Mundart Walliserdeutsch (Avers)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1331496861" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331496861" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1331496861" + } + ], + "identifier": "http://d-nb.info/gnd/1331496861", + "pid": "1331496861", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Walliserdeutsch" + }, + { + "authorized_access_point": "Schweizerdeutsch" + } + ], + "variant_access_point": [ + "Avner Mundart", + "Oovnrtu\u0308u\u0308tsch" + ], + "md5": "4bca431ca88b70c5932f4c004c024f59" + }, + { + "authorized_access_point": "Grupul Infra-Noir", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1331098114" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331098114" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1331098114" + } + ], + "identifier": "http://d-nb.info/gnd/1331098114", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://ro.wikipedia.org/w/index.php?title=Grupul_Infra-Noir&oldid=15774257" + ] + } + ], + "pid": "1331098114", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schriftstellergruppe" + } + ], + "variant_access_point": [ + "Grupul Infra Noir", + "Grupul Infranoir" + ], + "md5": "08333bd64325c5f54b4fe67e1146c004" + }, + { + "authorized_access_point": "Shewanella oneidensis", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/133099051X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)133099051X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)133099051X" + } + ], + "identifier": "http://d-nb.info/gnd/133099051X", + "exactMatch": [ + { + "authorized_access_point": "Shewanella oneidensis", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336047755" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "C000635046" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/C000635046" + } + ] + } + ], + "pid": "133099051X", + "type": "bf:Topic", + "md5": "632a597ad408f8b2642f6d8171b8032c" + }, + { + "authorized_access_point": "Adlercreutzia equolifaciens", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1330990056" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1330990056" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1330990056" + } + ], + "identifier": "http://d-nb.info/gnd/1330990056", + "pid": "1330990056", + "type": "bf:Topic", + "md5": "58918401499e952669064431e97c955c" + }, + { + "authorized_access_point": "Mundart Hochalemannisch (Steckborn)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1330988728" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1330988728" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1330988728" + } + ], + "identifier": "http://d-nb.info/gnd/1330988728", + "pid": "1330988728", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Hochalemannisch" + }, + { + "authorized_access_point": "Schweizerdeutsch" + } + ], + "md5": "add9771415105acbb20d631d987d22d1" + }, + { + "authorized_access_point": "Phorbeia", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1330985524" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1330985524" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1330985524" + } + ], + "identifier": "http://d-nb.info/gnd/1330985524", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Phorbeia&oldid=240313163" + ] + }, + { + "noteType": "general", + "label": [ + "Leder- oder Leinenbinden, die um den Kopf des Musikers geschlungen waren, zum Spielen von antiken Rohrblattinstrumenten, hauptsa\u0308chlich von Aulousspielern genutzt" + ] + } + ], + "pid": "1330985524", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Aulet" + } + ], + "variant_access_point": [ + "Capistrum" + ], + "md5": "b9fd7fc771b0535909870f56fa49151e" + }, + { + "authorized_access_point": "Nicht-ST-Hebungsinfarkt", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1330588517" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1330588517" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1330588517" + } + ], + "identifier": "http://d-nb.info/gnd/1330588517", + "exactMatch": [ + { + "authorized_access_point": "Non-ST Elevated Myocardial Infarction", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336044314" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D000072658" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D000072658" + } + ] + } + ], + "pid": "1330588517", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Akutes Koronarsyndrom" + }, + { + "authorized_access_point": "Herzinfarkt" + } + ], + "variant_access_point": [ + "Akutes Koronarsyndrom ohne ST-Hebung", + "NSTE-ACS", + "NSTEMI", + "Nicht-ST-Hebungs-Infarkt", + "Nicht-ST-Hebungs-Myokardinfarkt", + "Non-ST-segment elevation myocardial infarction" + ], + "md5": "801f599448d76202fc0db1039cbfe005" + }, + { + "authorized_access_point": "Planctomycetota", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1330408837" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1330408837" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1330408837" + } + ], + "identifier": "http://d-nb.info/gnd/1330408837", + "exactMatch": [ + { + "authorized_access_point": "Planctomycetes", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336044411" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D000090643" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D000090643" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Planctomyceten&oldid=243380997" + ] + }, + { + "noteType": "general", + "label": [ + "Phylum innerhalb der Bakterien" + ] + } + ], + "pid": "1330408837", + "type": "bf:Topic", + "variant_access_point": [ + "Planctomyceten", + "Planctomycetes" + ], + "md5": "fccc7ec4f307452585661471a07c0379" + }, + { + "authorized_access_point": "Geschichtsvermittlung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1330360036" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1330360036" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1330360036" + } + ], + "identifier": "http://d-nb.info/gnd/1330360036", + "note": [ + { + "noteType": "general", + "label": [ + "Zu verwenden fu\u0308r den au\u00dferschulischen Bereich, fu\u0308r den schulischen Bereich verwende Geschichtsunterricht." + ] + } + ], + "pid": "1330360036", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Vermittlung" + } + ], + "related": [ + { + "authorized_access_point": "Geschichtsunterricht" + } + ], + "variant_access_point": [ + "Geschichte" + ], + "md5": "cb73d4e4c5c2331313e0d9d209d555b7" + }, + { + "authorized_access_point": "Midostaurin", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1330201647" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1330201647" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1330201647" + } + ], + "identifier": "http://d-nb.info/gnd/1330201647", + "exactMatch": [ + { + "authorized_access_point": "midostaurin", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336044195" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "C059539" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/C059539" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "INN" + ] + } + ], + "pid": "1330201647", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Enzyminhibitor" + } + ], + "variant_access_point": [ + "CAS 120685-11-2", + "Rydapt" + ], + "md5": "dff12022049c510c4670074373d360de" + }, + { + "authorized_access_point": "Da\u0308nischer Schu\u0308ler", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1330126599" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1330126599" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1330126599" + } + ], + "identifier": "http://d-nb.info/gnd/1330126599", + "note": [ + { + "noteType": "general", + "label": [ + "Benutzt, soweit im Ausland lebend" + ] + } + ], + "pid": "1330126599", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ausla\u0308ndischer Schu\u0308ler" + } + ], + "md5": "eb81ab3556baf5b27c1e01a61ad371af" + }, + { + "authorized_access_point": "Dibenzyltoluol", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/132940422X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)132940422X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)132940422X" + } + ], + "identifier": "http://d-nb.info/gnd/132940422X", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Dibenzyltoluol&oldid=240106931" + ] + } + ], + "pid": "132940422X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Toluolderivate" + } + ], + "variant_access_point": [ + "Dibenzylmethylbenzol", + "Marlotherm SH", + "DBT (Dibenzyltoluol)", + "CAS 26898-17-9" + ], + "md5": "c8f7c507dc665c6c201d580d20004f24" + }, + { + "authorized_access_point": "Prostataspezifisches Membranantigen", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1329376129" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1329376129" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1329376129" + } + ], + "identifier": "http://d-nb.info/gnd/1329376129", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Prostataspezifisches_Membranantigen&oldid=214439179" + ] + } + ], + "pid": "1329376129", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tumormarker" + }, + { + "authorized_access_point": "Membranproteine" + }, + { + "authorized_access_point": "Glykoproteine" + }, + { + "authorized_access_point": "Carboxypeptidasen" + } + ], + "variant_access_point": [ + "PSMA", + "Prostata-Spezifisches-Membran-Antigen", + "CAS 9074-87-7", + "Glutamatcarboxypeptidase II", + "EC 3.4.17.21", + "Prostate-specific membrane antigen" + ], + "md5": "11d71450329f4cedb83df69286b0fcf2" + }, + { + "authorized_access_point": "Hochstapler-Syndrom", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/132935639X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)132935639X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)132935639X" + } + ], + "identifier": "http://d-nb.info/gnd/132935639X", + "exactMatch": [ + { + "authorized_access_point": "imposter syndrome", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)133604392X" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "C000711547" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/C000711547" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Hochstapler-Syndrom&oldid=238870181" + ] + }, + { + "noteType": "general", + "label": [ + "Psychologisches Pha\u0308nomen, bei dem Betroffene von massiven Selbstzweifeln hinsichtlich eigener Fa\u0308higkeiten, Leistungen und Erfolge geplagt werden und sich selbst fu\u0308r Hochstapler halten." + ] + } + ], + "pid": "132935639X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Verzerrte Kognition" + } + ], + "variant_access_point": [ + "Impostor-Syndrom", + "Impostor-Pha\u0308nomen" + ], + "md5": "04ccfee0ecf40ab58865636697666cad" + }, + { + "authorized_access_point": "Mundart Amerikanisches Englisch (Missouri-Gebiet)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1329174003" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1329174003" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1329174003" + } + ], + "identifier": "http://d-nb.info/gnd/1329174003", + "pid": "1329174003", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Amerikanisches Englisch" + } + ], + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "variant_access_point": [ + "Missouri English" + ], + "md5": "f8117b7cb8fe7bca3ff8011bebb8dc9d" + }, + { + "authorized_access_point": "Djizya", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1329171675" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1329171675" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1329171675" + } + ], + "identifier": "http://d-nb.info/gnd/1329171675", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Brockhaus - https://brockhaus.de/ecs/enzy/article/djizya-islam", + "Wikipedia - https://de.wikipedia.org/wiki/Dschizya" + ] + }, + { + "noteType": "general", + "label": [ + "Kopfsteuer fu\u0308r nichtmuslimische Schutzbefohlene (Dhimmi) unter islamischer Herrschaft" + ] + } + ], + "pid": "1329171675", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Steuer" + } + ], + "related": [ + { + "authorized_access_point": "D\u0331h\u0331immi\u0304" + } + ], + "variant_access_point": [ + "Dschizya", + "G\u030cizya", + "Cizye", + "Jizya", + "Jizyah" + ], + "md5": "7f24895757d69a6eef9bc0c55ea4a056" + }, + { + "authorized_access_point": "Penicillium citrinum", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1328712400" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1328712400" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1328712400" + } + ], + "identifier": "http://d-nb.info/gnd/1328712400", + "exactMatch": [ + { + "authorized_access_point": "Penicillium citrinum", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336044381" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "C000698383" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/C000698383" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://en.wikipedia.org/wiki/Penicillium_citrinum" + ] + } + ], + "pid": "1328712400", + "type": "bf:Topic", + "md5": "cc9fb93f21ab10d7a8674845701dc55e" + }, + { + "authorized_access_point": "Berbice-Niederla\u0308ndisch", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1327991349" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1327991349" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1327991349" + } + ], + "identifier": "http://d-nb.info/gnd/1327991349", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Berbice-Niederl%C3%A4ndisch&oldid=208367674" + ] + }, + { + "noteType": "general", + "label": [ + "Niederla\u0308ndischbasierte Kreolsprache, die etwa bis zur Mitte des 20. Jahrhunderts in Guyana gesprochen wurde" + ] + } + ], + "pid": "1327991349", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Kreolische Sprachen" + }, + { + "authorized_access_point": "Niederla\u0308ndisch" + } + ], + "variant_access_point": [ + "Berbice-Nederlands", + "Berbice Dutch Creole", + "Berbice Creole Dutch", + "Berbice Dutch", + "Berbice (Sprache)", + "Berbice-Kreolisch" + ], + "md5": "aa319f40d5d4af5b985f96d45963588d" + }, + { + "authorized_access_point": "Matrosin", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1327910268" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1327910268" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1327910268" + } + ], + "identifier": "http://d-nb.info/gnd/1327910268", + "note": [ + { + "noteType": "general", + "label": [ + "Seema\u0308nnin der Handelsschifffahrt mit mehrja\u0308hriger Ausbildung (Berufsbezeichnung) oder Soldatin des Dienstgrades Matrose" + ] + } + ], + "pid": "1327910268", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Weiblicher Seemann" + } + ], + "variant_access_point": [ + "Seema\u0308nnin" + ], + "md5": "733fdfa3ef0d21c781e1e0b6d617ef9f" + }, + { + "authorized_access_point": "Solarpunk", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1327458667" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1327458667" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1327458667" + } + ], + "identifier": "http://d-nb.info/gnd/1327458667", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Solarpunk&oldid=237852295" + ] + }, + { + "noteType": "general", + "label": [ + "Optimistisches Genre der Science-Fiction- und Phantastik-Literatur, ku\u0308nstlerisches Genre und Kultur- und Nachhaltigkeitsbewegung." + ] + } + ], + "pid": "1327458667", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Literarische Bewegung" + }, + { + "authorized_access_point": "Kulturbewegung" + }, + { + "authorized_access_point": "Subkultur" + } + ], + "md5": "90dfb8edac30bd132ee3324b507f282a" + }, + { + "authorized_access_point": "Newcastle-disease-Virus", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1326349392" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1326349392" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1326349392" + } + ], + "identifier": "http://d-nb.info/gnd/1326349392", + "exactMatch": [ + { + "authorized_access_point": "Newcastle disease virus", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134301715" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85091547" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85091547" + } + ] + }, + { + "authorized_access_point": "Virus de la maladie de Newcastle", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134301715" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12377360" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12377360s" + } + ] + }, + { + "authorized_access_point": "Newcastle disease virus", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336044268" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D009522" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D009522" + } + ] + } + ], + "pid": "1326349392", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Paramyxoviren" + } + ], + "related": [ + { + "authorized_access_point": "Newcastle-Krankheit" + } + ], + "variant_access_point": [ + "NDV", + "Geflu\u0308gelpestvirus (Newcastle-Krankheit)" + ], + "md5": "6909fdf46775fcc052e3359a53875844" + }, + { + "authorized_access_point": "Feuchtwiesen-Kra\u0308utereule", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/132585283X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)132585283X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)132585283X" + } + ], + "identifier": "http://d-nb.info/gnd/132585283X", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Feuchtwiesen-Kr%C3%A4utereule&oldid=240451943" + ] + }, + { + "noteType": "general", + "label": [ + "Ist ein Schmetterling (Nachtfalter) aus der Familie der Eulenfalter (Noctuidae)" + ] + } + ], + "pid": "132585283X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Eulen (Schmetterlinge)" + } + ], + "variant_access_point": [ + "Rote Mooreule", + "Lacanobia (Diataraxia) splendens", + "Lacanobia splendens" + ], + "md5": "807701749efd3ac19bdc062c573aa4dc" + }, + { + "authorized_access_point": "Prosektor", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1325643645" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1325643645" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1325643645" + } + ], + "identifier": "http://d-nb.info/gnd/1325643645", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Prosektor&oldid=242227867" + ] + }, + { + "noteType": "general", + "label": [ + "Historische Berufsbezeichnung fu\u0308r den \u201eSezierer\u201c einer anatomischen Anstalt, dem die Entnahme der aus Leichen gewonnenen Pra\u0308parate oblag bzw. (in gro\u0308\u00dferen Krankenha\u0308usern) historisch auch Bezeichnung fu\u0308r A\u0308rzte, die zur Feststellung der Todesursache Leichen sezierten.", + "Ausschlie\u00dflich fu\u0308r historische Sachverhalte und Personen zu verwenden; ansonsten benutze \"Anatom\" oder \"Pathologe\"!" + ] + } + ], + "pid": "1325643645", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Medizinisches Personal" + } + ], + "variant_access_point": [ + "Prosector" + ], + "md5": "05fc66c1d936514f966792fe647e3c36" + }, + { + "authorized_access_point": "Della Cruscans", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1325061557" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1325061557" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1325061557" + } + ], + "identifier": "http://d-nb.info/gnd/1325061557", + "note": [ + { + "noteType": "general", + "label": [ + "Dichterkreis europa\u0308ischer sentimentaler Lyriker des spa\u0308ten 18. Jh., gegr. von Robert Merry, Mitglied der Accademia Della Crusca" + ] + } + ], + "pid": "1325061557", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schriftstellergruppe" + } + ], + "md5": "20b40d9b708c74cc95f7e0906d7176d9" + }, + { + "authorized_access_point": "Verticillium nonalfalfae", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1324688629" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1324688629" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1324688629" + } + ], + "identifier": "http://d-nb.info/gnd/1324688629", + "exactMatch": [ + { + "authorized_access_point": "Verticillium nonalfalfae", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336050047" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "C000685650" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/C000685650" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "NCBI-Taxonomy - https://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=1051616" + ] + } + ], + "pid": "1324688629", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Verticillium" + } + ], + "md5": "73b81682a09109973d8421062c18cee6" + }, + { + "authorized_access_point": "Mundart Venezianisch (Rijeka)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1324590173" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1324590173" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1324590173" + } + ], + "identifier": "http://d-nb.info/gnd/1324590173", + "pid": "1324590173", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Venezianisch" + } + ], + "variant_access_point": [ + "Dialetto fiumano" + ], + "md5": "245a487a448d6112831f30fc31f0079d" + }, + { + "authorized_access_point": "Sicherheitsbeauftragte", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1324101318" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1324101318" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1324101318" + } + ], + "identifier": "http://d-nb.info/gnd/1324101318", + "pid": "1324101318", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Sicherheitsbeauftragter" + } + ], + "variant_access_point": [ + "Arbeitssicherheit" + ], + "md5": "c16e86972e041d894ff7db477587ae11" + }, + { + "authorized_access_point": "Haushu\u0308terin", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1324092424" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1324092424" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1324092424" + } + ], + "identifier": "http://d-nb.info/gnd/1324092424", + "note": [ + { + "noteType": "general", + "label": [ + "Personen, die bei Abwesenheit d. Eigentu\u0308mers das Haus hu\u0308ten" + ] + } + ], + "pid": "1324092424", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Haushu\u0308ter" + } + ], + "md5": "fdfccde151c82a95b8e9fac844205839" + }, + { + "authorized_access_point": "Transkreation", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1323913084" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1323913084" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1323913084" + } + ], + "identifier": "http://d-nb.info/gnd/1323913084", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Transkreation&oldid=206768584" + ] + }, + { + "noteType": "general", + "label": [ + "Bei der Transkreation wird eine U\u0308bertragung des Textes in den kulturellen Kontext des Empfa\u0308ngers angestrebt, so dass sich das Ergebnis im Gegensatz zu einer sich nah am Ursprungstext haltenden U\u0308bersetzung relativ weit vom Ursprungstext entfernen kann." + ] + } + ], + "pid": "1323913084", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "U\u0308bersetzung" + } + ], + "variant_access_point": [ + "Transcreation" + ], + "md5": "991239e9f534a92934d77b4bd5bbd401" + }, + { + "authorized_access_point": "Planctopirus limnophila", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1323835148" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1323835148" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1323835148" + } + ], + "identifier": "http://d-nb.info/gnd/1323835148", + "exactMatch": [ + { + "authorized_access_point": "Planctopirus limnophila", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336044586" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "C000644441" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/C000644441" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Internet - https://bacdive-dsmz-de.translate.goog/strain/11940?_x_tr_sl=en&_x_tr_tl=de&_x_tr_hl=de&_x_tr_pto=sc" + ] + } + ], + "pid": "1323835148", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Planctomycetaceae" + } + ], + "variant_access_point": [ + "Planctopirus limnophilus", + "Planctomyces limnophilus" + ], + "md5": "5543469296eccd601ea6f0400a94b280" + }, + { + "authorized_access_point": "Roti", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1323832262" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1323832262" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1323832262" + } + ], + "identifier": "http://d-nb.info/gnd/1323832262", + "pid": "1323832262", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Ostindonesische Sprachen" + } + ], + "variant_access_point": [ + "Lote", + "Rote", + "Rotinesisch", + "Rotti", + "Rottinesisch" + ], + "md5": "262919af574dd2891387d62af7591be1" + }, + { + "authorized_access_point": "Dhurga", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1323804129" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1323804129" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1323804129" + } + ], + "identifier": "http://d-nb.info/gnd/1323804129", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://en.wikipedia.org/wiki/Yuin%E2%80%93Kuric_languages" + ] + }, + { + "noteType": "general", + "label": [ + "Eine Sprache der Aborigines in Neusu\u0308dwales" + ] + } + ], + "pid": "1323804129", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Pama-Nyunganisch" + } + ], + "variant_access_point": [ + "Durga (Sprache)", + "Thoorga", + "Thurga-Sprache" + ], + "md5": "cd37886d16e795bf450cde86d1c26bc6" + }, + { + "authorized_access_point": "zr\u02bf", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1323769536" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1323769536" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1323769536" + } + ], + "identifier": "http://d-nb.info/gnd/1323769536", + "note": [ + { + "noteType": "general", + "label": [ + "Verknu\u0308pfe mit Sprachbezeichnung und Wortart, z.B. Hebra\u0308isch ; Verb ; zr'" + ] + } + ], + "pid": "1323769536", + "type": "bf:Topic", + "variant_access_point": [ + "\u05d6\u05e8\u05e2" + ], + "md5": "1f72c2935bed53be2ff61f793895c71c" + }, + { + "authorized_access_point": "Janitscharenmusik", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1323705910" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1323705910" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1323705910" + } + ], + "identifier": "http://d-nb.info/gnd/1323705910", + "note": [ + { + "noteType": "general", + "label": [ + "Milita\u0308rmusik der Janitscharen" + ] + } + ], + "pid": "1323705910", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Milita\u0308rmusik" + }, + { + "authorized_access_point": "Marsch (Musik)" + } + ], + "related": [ + { + "authorized_access_point": "Janitscharen" + } + ], + "variant_access_point": [ + "Tu\u0308rkische Musik", + "Janissary Music", + "Turkish Music", + "Musique des Janissaires", + "Musique Turque", + "Banda" + ], + "md5": "249995e69349510c031a60946023cc9f" + }, + { + "authorized_access_point": "Ecclesia ab Abel", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1323590102" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1323590102" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1323590102" + } + ], + "identifier": "http://d-nb.info/gnd/1323590102", + "note": [ + { + "noteType": "general", + "label": [ + "Von Augustinus stammende Bezeichnung einer universalen Kirche vor Christus und au\u00dferhalb ihrer Grenzen, die aufgrund der universalen Heilsmittlerschaft Christi alle Gerechten von Abel an in der Heilsgemeinde Gottes versammelt." + ] + } + ], + "pid": "1323590102", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ekklesiologie" + } + ], + "md5": "3e91cb2f3312de97d3be37758206d6f1" + }, + { + "authorized_access_point": "Xin Xiangyu", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1323303669" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1323303669" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1323303669" + } + ], + "identifier": "http://d-nb.info/gnd/1323303669", + "note": [ + { + "noteType": "general", + "label": [ + "Eine der beiden Xiangyu-Dialektgruppen (NW-Hunan)" + ] + } + ], + "pid": "1323303669", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Xiangyu" + } + ], + "variant_access_point": [ + "Hsin Hsiang-yu\u0308", + "Pei-p'ien Hsiang-yu\u0308", + "Beipian Xiangyu" + ], + "md5": "1a4dcdb2cc8256e50722b7bcc6bcc223" + }, + { + "authorized_access_point": "Lao Xiangyu", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1323303103" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1323303103" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1323303103" + } + ], + "identifier": "http://d-nb.info/gnd/1323303103", + "note": [ + { + "noteType": "general", + "label": [ + "Eine der beiden Xiangyu-Dialektgruppen (Su\u0308d-Hunan)" + ] + } + ], + "pid": "1323303103", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Xiangyu" + } + ], + "variant_access_point": [ + "Lao Hsiang-yu\u0308", + "Nanpian Xiangyu", + "Nan-p'ien Hsiang-yu\u0308" + ], + "md5": "332d7e5ffe3409a3a3726485d3bbdea1" + }, + { + "authorized_access_point": "Sarnami-Hindi", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1323069380" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1323069380" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1323069380" + } + ], + "identifier": "http://d-nb.info/gnd/1323069380", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://en.wikipedia.org/w/index.php?title=Caribbean_Hindustani&oldid=1211330438", + "Wikipedia - https://nl.wikipedia.org/w/index.php?title=Cara%C3%AFbisch-Hindoestani&oldid=65241041" + ] + }, + { + "noteType": "general", + "label": [ + "Indoarische Sprache, die in Surinam gesprochen wird. Entha\u0308lt Anteile von Bhojpuri und Bihari." + ] + } + ], + "pid": "1323069380", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Bihari" + }, + { + "authorized_access_point": "Bhojpuri\u0304" + } + ], + "variant_access_point": [ + "Sarname Hindustani", + "Aili-Gaili", + "Surinam-Hindustani", + "Caribbean Hindi", + "Sarnami", + "Sarnami Hindoestani", + "Sarnami Hindustani", + "Surinamse Hindustani", + "Surinamisches Hindustani", + "Surinaams Hindostaans", + "Carai\u0308bisch-Hindoestani", + "Hindoustani caribe\u0301en" + ], + "md5": "8a858dff9a1d570b72454b82a973c442" + }, + { + "authorized_access_point": "Bosniakin", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1322662401" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1322662401" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1322662401" + } + ], + "identifier": "http://d-nb.info/gnd/1322662401", + "note": [ + { + "noteType": "general", + "label": [ + "Entgegen den Regelungen in RSWK \u00a7330a 1.a, 1.b und 2 wird dieses Ethnografikum auch zur Beschlagwortung von Dokumenten verwendet, die die Situation bosniakischer Frauen in Bosnien-Herzegowina behandeln." + ] + } + ], + "pid": "1322662401", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Bosniaken (Volk)" + }, + { + "authorized_access_point": "Muslimin" + } + ], + "variant_access_point": [ + "Bosnische Frau" + ], + "md5": "1d36d297390d1ccf8fb78c7cd2539a00" + }, + { + "authorized_access_point": "Bosniaken (Volk)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1322661030" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1322661030" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1322661030" + } + ], + "identifier": "http://d-nb.info/gnd/1322661030", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Bosniaken&oldid=242002094" + ] + }, + { + "noteType": "general", + "label": [ + "Bosniaken (serbokroatisch \u0411\u043e\u0448\u045a\u0430\u0446\u0438 Bos\u030cnjaci, Sg.: \u0411\u043e\u0448\u045a\u0430\u043a Bos\u030cnjak, auch Bosnische Muslime) sind eine su\u0308dslawische Ethnie mit etwa drei Millionen Angeho\u0308rigen, davon u\u0308ber zwei Millionen prima\u0308r in Bosnien und Herzegowina, aber auch in Serbien und Montenegro, Kosovo und Albanien. Ethnische Sa\u0308uberungen wa\u0308hrend des Bosnienkrieges 1992-1995 haben ihre ethnische Struktur und Verteilung in Bosnien und Herzegowina sehr vera\u0308ndert. U\u0308ber eine Million ausgewanderter oder wa\u0308hrend des Bosnienkrieges geflu\u0308chteter Bosniaken leben heute verteilt auf der ganzen Welt.", + "Entgegen den Regelungen in RSWK \u00a7330a 1.a, 1.b und 2 wird dieses Ethnografikum auch zur Beschlagwortung von Dokumenten verwendet, die die Situation der Bosniaken in Bosnien-Herzegowina behandeln." + ] + } + ], + "pid": "1322661030", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Bosniakin" + }, + { + "authorized_access_point": "Su\u0308dslawen" + } + ], + "broader": [ + { + "authorized_access_point": "Muslim" + } + ], + "variant_access_point": [ + "Bosnjaken", + "Bos\u030cnjaci", + "Bos\u030cnjak", + "Bosnische Muslime" + ], + "md5": "fae0cd0a76867852eccdc4b357a0015a" + }, + { + "authorized_access_point": "yph", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1322508801" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1322508801" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1322508801" + } + ], + "identifier": "http://d-nb.info/gnd/1322508801", + "note": [ + { + "noteType": "general", + "label": [ + "Verknu\u0308pfe mit Sprachbezeichnung und Wortart, z.B. Hebra\u0308isch ; Adjektiv ; yph" + ] + } + ], + "pid": "1322508801", + "type": "bf:Topic", + "variant_access_point": [ + "jph", + "\u05d9\u05e4\u05d4" + ], + "md5": "ffce346739d80e8c1ab749695605cf86" + }, + { + "authorized_access_point": "zo\u0302le\u0304la\u0304h", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1322264716" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1322264716" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1322264716" + } + ], + "identifier": "http://d-nb.info/gnd/1322264716", + "note": [ + { + "noteType": "general", + "label": [ + "Verknu\u0308pfe mit Sprachbezeichnung (hier: Hebra\u0308isch) und Wortart" + ] + } + ], + "pid": "1322264716", + "type": "bf:Topic", + "variant_access_point": [ + "zo\u0302le\u0304la\u0304", + "\u05d6\u05d5\u05b9\u05dc\u05b0\u05dc\u05b8\u05d4" + ], + "md5": "d6ba179dc47d0d978775074f4696f512" + }, + { + "authorized_access_point": "Flussbasiertes generatives Modell", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1321257988" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1321257988" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1321257988" + } + ], + "identifier": "http://d-nb.info/gnd/1321257988", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia, unter der ga\u0308ngigen falschen U\u0308bersetzung \"normalisierter Fluss\" (statt \"normierter Fluss)\" - https://de.wikipedia.org/w/index.php?title=Normalisierter_Fluss&oldid=238188256" + ] + }, + { + "noteType": "general", + "label": [ + "Modell zur statistischen Klassifikation, das auf einem Variablenwechsel zur Berechnung der Wahrscheinlichkeitsdichte beruht" + ] + } + ], + "pid": "1321257988", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Stochastisches Modell" + } + ], + "related": [ + { + "authorized_access_point": "Maschinelles Lernen" + }, + { + "authorized_access_point": "Dichte (Stochastik)" + } + ], + "variant_access_point": [ + "Flow-based generative model", + "Normalizing Flow" + ], + "md5": "2a91fc7a07f5e98dafbb1622661bb542" + }, + { + "authorized_access_point": "chevalier", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1321125623" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1321125623" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1321125623" + } + ], + "identifier": "http://d-nb.info/gnd/1321125623", + "note": [ + { + "noteType": "general", + "label": [ + "Kombiniere mit Sprachbezeichnung und Wortart, z. B. SWW s Franzo\u0308sisch ; s Substantiv ; s chevalier" + ] + } + ], + "pid": "1321125623", + "type": "bf:Topic", + "md5": "66f9d75879db9f5a014fc45dd390d5f5" + }, + { + "authorized_access_point": "baron (Wort)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1321125577" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1321125577" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1321125577" + } + ], + "identifier": "http://d-nb.info/gnd/1321125577", + "note": [ + { + "noteType": "general", + "label": [ + "Kombiniere mit Sprachbezeichnung und Wortart, z. B. SWW s Franzo\u0308sisch ; s Substantiv ; s baron (Wort)" + ] + } + ], + "pid": "1321125577", + "type": "bf:Topic", + "md5": "cc0155f2a43d2e9fbab31bf30775f4f4" + }, + { + "authorized_access_point": "Plasmamedizin", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1319483321" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1319483321" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1319483321" + } + ], + "identifier": "http://d-nb.info/gnd/1319483321", + "note": [ + { + "noteType": "dataSource", + "label": [ + "OBV - https://permalink.obvsg.at/AC17027232", + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Plasmamedizin&oldid=225082653" + ] + }, + { + "noteType": "general", + "label": [ + "Anwendung von kalten physikalischen Plasmen fu\u0308r therapeutische Zwecke", + "Nicht zu verwenden fu\u0308r die (vor allem kosmetische) Behandlung mit Blutplasma!" + ] + } + ], + "pid": "1319483321", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Therapie" + } + ], + "related": [ + { + "authorized_access_point": "Kaltes Plasma" + } + ], + "variant_access_point": [ + "Plasmabehandlung", + "Plasmatherapie" + ], + "md5": "161116a7c6feb10b313cde0c994b47c5" + }, + { + "authorized_access_point": "Mundart Franzo\u0308sisch (Beaune-la-Rolande)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1319390072" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1319390072" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1319390072" + } + ], + "identifier": "http://d-nb.info/gnd/1319390072", + "pid": "1319390072", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Franzo\u0308sisch" + } + ], + "md5": "5994043b419d4b9e3a59be02bc2a2221" + }, + { + "authorized_access_point": "\u02beal", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1318715598" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1318715598" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1318715598" + } + ], + "identifier": "http://d-nb.info/gnd/1318715598", + "note": [ + { + "noteType": "general", + "label": [ + "Verknu\u0308pfe mit Sprachbezeichnung und hier nicht permutierender Wortart, z. B. Hebra\u0308isch / Partikel / \u02beal" + ] + } + ], + "pid": "1318715598", + "type": "bf:Topic", + "md5": "89b368c5f2761722222a0bd1ad3944a0" + }, + { + "authorized_access_point": "Mundart Hochalemannisch (Tuggen)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1318430968" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1318430968" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1318430968" + } + ], + "identifier": "http://d-nb.info/gnd/1318430968", + "pid": "1318430968", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Hochalemannisch" + }, + { + "authorized_access_point": "Schweizerdeutsch" + } + ], + "md5": "311d30ab4493562e429bc709f62dac1c" + }, + { + "authorized_access_point": "Else-Lasker-Schu\u0308ler-Lyrikpreis", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/131634410X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)131634410X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)131634410X" + } + ], + "identifier": "http://d-nb.info/gnd/131634410X", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Else-Lasker-Sch%C3%BCler-Gesellschaft&oldid=240984809#Else-Lasker-Sch%C3%BCler-Lyrikpreis" + ] + }, + { + "noteType": "general", + "label": [ + "bisher vergeben in den Jahren 1994, 1996, 2016, 2018 und 2022" + ] + } + ], + "pid": "131634410X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Literaturpreis" + } + ], + "variant_access_point": [ + "Else Lasker-Schu\u0308ler-Lyrikpreis", + "Else-Lasker-Schu\u0308ler-Preis fu\u0308r Lyrik", + "Fo\u0308rderpreis des Else-Lasker-Schu\u0308ler-Lyrikpreises", + "Else-Lasker-Schu\u0308ler-Fo\u0308rderpreis" + ], + "md5": "688877ff6594d0d59829c09a515e43c3" + }, + { + "authorized_access_point": "Oskar-Pastior-Preis", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1315679264" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1315679264" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1315679264" + } + ], + "identifier": "http://d-nb.info/gnd/1315679264", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Oskar_Pastior&oldid=240480140#Oskar-Pastior-Stiftung_und_Oskar-Pastior-Preis" + ] + }, + { + "noteType": "general", + "label": [ + "Literaturpreis fu\u0308r experimentelle Lyrik" + ] + } + ], + "pid": "1315679264", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Literaturpreis" + } + ], + "variant_access_point": [ + "Oskar Pastior Preis" + ], + "md5": "51b78bbb74e59acf847f905dad127ac1" + }, + { + "authorized_access_point": "Dendrophoroi", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1315456125" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1315456125" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1315456125" + } + ], + "identifier": "http://d-nb.info/gnd/1315456125", + "note": [ + { + "noteType": "general", + "label": [ + "Das Kollegium der Dendrophori geho\u0308rte zu einem hohen Feiertag des Kybelekults und hatte die Aufgabe, die heilige Kiefer zu fa\u0308llen und zum Bildnis des Attis zu bringen" + ] + } + ], + "pid": "1315456125", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Priesterkollegium" + } + ], + "related": [ + { + "authorized_access_point": "Kybelekult" + } + ], + "variant_access_point": [ + "Dendrophori" + ], + "md5": "365f5166b6c6d3cfd77abf29a92a17fa" + }, + { + "authorized_access_point": "Mundart Frankoprovenzalisch (Balme)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1315226715" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1315226715" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1315226715" + } + ], + "identifier": "http://d-nb.info/gnd/1315226715", + "note": [ + { + "noteType": "general", + "label": [ + "gem. Tagliavini (S. 344) wird in den Lanzo-Ta\u0308lern eine frankoprovenzalische Mundart gesprochen" + ] + } + ], + "pid": "1315226715", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Frankoprovenzalisch" + } + ], + "variant_access_point": [ + "Mundart Frankoprovenzalisch (Ba\u0300rmes)" + ], + "md5": "862c6f3cdb4408f6273ed2d7fbf2dc0a" + }, + { + "authorized_access_point": "Buyruk", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1315045133" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1315045133" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1315045133" + } + ], + "identifier": "http://d-nb.info/gnd/1315045133", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Buyruk&oldid=229267516" + ] + }, + { + "noteType": "general", + "label": [ + "Sammlung von alevitischen Glaubensinhalten, Rezitationsvorschriften sowie moralischen Ermahnungen" + ] + } + ], + "pid": "1315045133", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Aleviten" + } + ], + "broader": [ + { + "authorized_access_point": "Religio\u0308se Literatur" + } + ], + "md5": "6ee23c9b4821a90f9838e27ebabacd1f" + }, + { + "authorized_access_point": "Magister Equitum", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/131453260X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)131453260X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)131453260X" + } + ], + "identifier": "http://d-nb.info/gnd/131453260X", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Magister_equitum&oldid=236888767" + ] + }, + { + "noteType": "general", + "label": [ + "In der ro\u0308mischen Republik der vom Diktator (urspru\u0308nglich Magister Populi) ernannte Befehlshaber der Reiterei; In der ro\u0308mischen Kaiserzeit einer der Magistri Militum (Magister)." + ] + } + ], + "pid": "131453260X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Magistrat" + } + ], + "md5": "de24c3a80ec94a0400fda6eb9c2a2797" + }, + { + "authorized_access_point": "Proteste im Irak", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1314347403" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1314347403" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1314347403" + } + ], + "identifier": "http://d-nb.info/gnd/1314347403", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Proteste_im_Irak_2019/2020&oldid=245262844" + ] + } + ], + "pid": "1314347403", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Aufstand" + } + ], + "variant_access_point": [ + "T\u0331aurat Tis\u030cri\u0304n", + "Thawrat Tishri\u0304n", + "Tishri\u0304n-Aufstand", + "Tishreen-Revolution", + "Tishreen Movement", + "October Protest Movement", + "Oktoberrevolution (2019-2020)", + "\u062b\u0648\u0631\u0629 \u062a\u0634\u0631\u064a\u0646", + "\u0627\u0644\u0627\u0646\u062a\u0641\u0627\u0636\u0629 \u0627\u0644\u062a\u0634\u0631\u064a\u0646\u064a\u0629" + ], + "md5": "ff385f067d1647df9b8f02ced0c9f608" + }, + { + "authorized_access_point": "Cabinentaxi", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1314019333" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1314019333" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1314019333" + } + ], + "identifier": "http://d-nb.info/gnd/1314019333", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Cabinentaxi&oldid=238294207" + ] + }, + { + "noteType": "general", + "label": [ + "Entwicklungsprojekt des bundesdeutschen Forschungsministeriums fu\u0308r ein Personentransportsystem" + ] + } + ], + "pid": "1314019333", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kabinenbahn (Nahverkehr)" + } + ], + "variant_access_point": [ + "CabinenTaxi", + "Cabintaxi PRT System", + "C-Bahn", + "Kleinkabinenbahn", + "Kabinentaxi" + ], + "md5": "919bf5bf72cfc88c92935cc6b1d334b1" + }, + { + "authorized_access_point": "pho\u0304tiste\u0304rion", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1312507497" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1312507497" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1312507497" + } + ], + "identifier": "http://d-nb.info/gnd/1312507497", + "note": [ + { + "noteType": "general", + "label": [ + "Kombiniere mit Sprachbezeichnung und Wortart, z.B. s Griechisch ; s Substantiv ; s pho\u0304tiste\u0304rion" + ] + } + ], + "pid": "1312507497", + "type": "bf:Topic", + "variant_access_point": [ + "\u03c6\u03c9\u03c4\u03b9\u03c3\u03c4\u03b7\u03c1\u03b9\u03bf\u03bd" + ], + "md5": "846e68350aed369fda8f211d2002ae35" + }, + { + "authorized_access_point": "poiein", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1312506059" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1312506059" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1312506059" + } + ], + "identifier": "http://d-nb.info/gnd/1312506059", + "note": [ + { + "noteType": "general", + "label": [ + "Verknu\u0308pfe mit Sprachbezeichnung und Wortart, z.B. Griechisch / Verb / poiein" + ] + } + ], + "pid": "1312506059", + "type": "bf:Topic", + "variant_access_point": [ + "\u03c0\u03bf\u03b9\u03b5\u03b9\u03bd" + ], + "md5": "4ff648f2bf7f549e7582f07f0d241425" + }, + { + "authorized_access_point": "Ghale", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1311262989" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1311262989" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1311262989" + } + ], + "identifier": "http://d-nb.info/gnd/1311262989", + "note": [ + { + "noteType": "general", + "label": [ + "Geho\u0308rt zu den bodischen Sprachen" + ] + } + ], + "pid": "1311262989", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Tibeto-Himalaja-Sprachen" + } + ], + "variant_access_point": [ + "Galle Gurung", + "Ghale Gurung" + ], + "md5": "b074cc6178634a2ca5a539c853c61bd7" + }, + { + "authorized_access_point": "Kutang Ghale", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1311025847" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1311025847" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1311025847" + } + ], + "identifier": "http://d-nb.info/gnd/1311025847", + "note": [ + { + "noteType": "general", + "label": [ + "Dialekt der Sprache Ghale" + ] + } + ], + "pid": "1311025847", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Ghale" + } + ], + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "variant_access_point": [ + "Bhotte", + "Kutang", + "Kuke" + ], + "md5": "a76f22c7a3a4306622590997fbf07af9" + }, + { + "authorized_access_point": "Pharos (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1310673683" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1310673683" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1310673683" + } + ], + "identifier": "http://d-nb.info/gnd/1310673683", + "pid": "1310673683", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + }, + { + "authorized_access_point": "Auszeichnungsschrift" + } + ], + "md5": "465466e19da79e331038f9d74894e527" + }, + { + "authorized_access_point": "Retro", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1309822123" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1309822123" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1309822123" + } + ], + "identifier": "http://d-nb.info/gnd/1309822123", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Retro&oldid=242338507" + ] + }, + { + "noteType": "general", + "label": [ + "Nachahmung od. Wiederbelebung von Elementen fru\u0308herer Stilrichtungen in Musik, Design, Architektur, Literatur o. A\u0308. aus einer nostalgischen Motivation. Diese kulturelle Stro\u0308mung gibt es ca. seit den 1970er Jahren, mit einer Nachahmung von Stilen ab den 1920er Jahren." + ] + } + ], + "pid": "1309822123", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Stil" + } + ], + "variant_access_point": [ + "Retro-Stil", + "Vintage-Stil", + "Retrowelle" + ], + "md5": "864ea67d8bbcd7a3b22fd14979bbe3bf" + }, + { + "authorized_access_point": "Disruptive Innovation", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1308550189" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1308550189" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1308550189" + } + ], + "identifier": "http://d-nb.info/gnd/1308550189", + "closeMatch": [ + { + "authorized_access_point": "Disruptive technologies", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334878129" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2005020553" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2005020553" + } + ] + }, + { + "authorized_access_point": "Technologie de rupture", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334878129" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF171317510" + }, + { + "type": "uri", + "value": "https://catalogue.bnf.fr/ark:/12148/cb171317510" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Disruptive Innovation", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1308891393" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "30176-1" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/30176-1" + } + ] + } + ], + "pid": "1308550189", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Innovation" + } + ], + "variant_access_point": [ + "Disruptive Technologie", + "Disruptive innovation", + "Disruptive technology" + ], + "md5": "6c23d6f15b56937afb50232349e1ab81" + }, + { + "authorized_access_point": "boe\u0304the\u0301o\u0304", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1305189876" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1305189876" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1305189876" + } + ], + "identifier": "http://d-nb.info/gnd/1305189876", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wiktionary - https://en.wiktionary.org/w/index.php?title=%CE%B2%CE%BF%CE%B7%CE%B8%CE%AD%CF%89&oldid=69059160" + ] + }, + { + "noteType": "general", + "label": [ + "Verknu\u0308pfe mit Sprachbezeichnung und Wortart, z.B. Griechisch / Verb / boe\u0304the\u0301o\u0304" + ] + } + ], + "pid": "1305189876", + "type": "bf:Topic", + "variant_access_point": [ + "\u03b2\u03bf\u03b7\u03b8\u03b5\u0301\u03c9" + ], + "md5": "20207ea37f9b3e0b7044db28bc365e0b" + }, + { + "authorized_access_point": "Erntekranz", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1304711749" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1304711749" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1304711749" + } + ], + "identifier": "http://d-nb.info/gnd/1304711749", + "note": [ + { + "noteType": "general", + "label": [ + "Getreidegebinde, angefertigt zum Ende der Getreideernte anla\u0308sslich des Ernetdankfestes" + ] + } + ], + "pid": "1304711749", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kranz" + }, + { + "authorized_access_point": "Brauch" + } + ], + "related": [ + { + "authorized_access_point": "Getreideernte" + }, + { + "authorized_access_point": "Erntedankfest" + }, + { + "authorized_access_point": "Bauernleben" + } + ], + "variant_access_point": [ + "Erntekrone" + ], + "md5": "0dc36846b6b94183cab8a8d098c3dc97" + }, + { + "authorized_access_point": "Queerfeindlichkeit", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1304458741" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1304458741" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1304458741" + } + ], + "identifier": "http://d-nb.info/gnd/1304458741", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Homosaurus - https://homosaurus.org/v3/homoit0001229", + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Queerfeindlichkeit&oldid=233532639", + "Queer Lexikon - https://queer-lexikon.net/glossar/" + ] + }, + { + "noteType": "general", + "label": [ + "Feindlichkeit gegenu\u0308ber queeren Menschen" + ] + } + ], + "pid": "1304458741", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Vorurteil" + } + ], + "variant_access_point": [ + "Queerphobie", + "Queerphobia" + ], + "md5": "b67792ecac7df3245044f71f403d8f0c" + }, + { + "authorized_access_point": "Motor (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1303066408" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1303066408" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1303066408" + } + ], + "identifier": "http://d-nb.info/gnd/1303066408", + "note": [ + { + "noteType": "general", + "label": [ + "Weiterer Schriftschnitt: Lichte Motor nach Zeichnung von Karl Sommer in fu\u0308nf Graden von 36 bis 72 Punkten" + ] + } + ], + "pid": "1303066408", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + }, + { + "authorized_access_point": "Auszeichnungsschrift" + } + ], + "md5": "1baeff360d35aea24275d18a309e53dd" + }, + { + "authorized_access_point": "1200 Jahre Corvey", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1302981390" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1302981390" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1302981390" + } + ], + "identifier": "http://d-nb.info/gnd/1302981390", + "pid": "1302981390", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Jubila\u0308um" + } + ], + "variant_access_point": [ + "1200 Jahre Corvey 822-2022", + "Tausendzweihundert Jahre Corvey", + "Kloster Corvey (2022-2023)", + "Corvey-Jubila\u0308um (2022-2023)" + ], + "md5": "036344079f9e2a78b909def16b0a1d88" + }, + { + "authorized_access_point": "Lux (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1302782517" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1302782517" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1302782517" + } + ], + "identifier": "http://d-nb.info/gnd/1302782517", + "pid": "1302782517", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + }, + { + "authorized_access_point": "Auszeichnungsschrift" + } + ], + "md5": "2cb1ec4217d42e365953ada4c72d6d16" + }, + { + "authorized_access_point": "Lumina (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1302782274" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1302782274" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1302782274" + } + ], + "identifier": "http://d-nb.info/gnd/1302782274", + "pid": "1302782274", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + }, + { + "authorized_access_point": "Auszeichnungsschrift" + } + ], + "md5": "8fc37b7429586a05adb3529dc3981d1f" + }, + { + "authorized_access_point": "Lucina (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1302781162" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1302781162" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1302781162" + } + ], + "identifier": "http://d-nb.info/gnd/1302781162", + "pid": "1302781162", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + }, + { + "authorized_access_point": "Auszeichnungsschrift" + } + ], + "md5": "bd390564fb66775016eda746563a4ec5" + }, + { + "authorized_access_point": "Lautsprecher (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1302592122" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1302592122" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1302592122" + } + ], + "identifier": "http://d-nb.info/gnd/1302592122", + "pid": "1302592122", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "7c7cd86d52927a57a9c1c35f0af8cfd2" + }, + { + "authorized_access_point": "Cercle Harmonique", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1298190746" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1298190746" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1298190746" + } + ], + "identifier": "http://d-nb.info/gnd/1298190746", + "note": [ + { + "noteType": "general", + "label": [ + "Informelle Gruppe afrokreolischer Ma\u0308nner, die in New Orleans spiritistische Sitzungen abhielten. Die Praxis des Cercle Harmonique verband Religion und Politik, da viele Botschaften, die sie erhielten, die Rechte der Schwarzen und soziale Gleichheit forderten" + ] + } + ], + "pid": "1298190746", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Spiritismus" + } + ], + "broader": [ + { + "authorized_access_point": "Ma\u0308nnergruppe" + } + ], + "md5": "e9ccfac51b48c36c945f3d72d6be3e79" + }, + { + "authorized_access_point": "Elfe (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1296860906" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1296860906" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1296860906" + } + ], + "identifier": "http://d-nb.info/gnd/1296860906", + "note": [ + { + "noteType": "general", + "label": [ + "1905 Elfe halbfett" + ] + } + ], + "pid": "1296860906", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + }, + { + "authorized_access_point": "Kursive" + } + ], + "variant_access_point": [ + "Kunstschrift Elfe" + ], + "md5": "473e496594916d5639077925a5a5d448" + }, + { + "authorized_access_point": "Rumba (Tanzmusik)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1296369811" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1296369811" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1296369811" + } + ], + "identifier": "http://d-nb.info/gnd/1296369811", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://en.wikipedia.org/wiki/Congolese_rumba", + "Internet - https://www.aai.uni-hamburg.de/afrika/veranstaltungen/ausstellung/2-musik/5-rumba-lingala-kongo.html" + ] + }, + { + "noteType": "general", + "label": [ + "Die Kongolesische Rumba ist eine Tanzmusik aus der Region um Brazzaville und Kinshasa und wird oft in der Sprache Lingala gesungen." + ] + } + ], + "pid": "1296369811", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tanzmusik" + } + ], + "related": [ + { + "authorized_access_point": "Soukous" + }, + { + "authorized_access_point": "Lingala" + } + ], + "variant_access_point": [ + "Kongolesische Rumba", + "Rumba Lingala", + "Kongo-Rumba", + "Zaire-Musik" + ], + "md5": "f543fa40a84efd7bd3c665f5572c202a" + }, + { + "authorized_access_point": "Sozialrendite", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1295208512" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1295208512" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1295208512" + } + ], + "identifier": "http://d-nb.info/gnd/1295208512", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Sozialrendite&oldid=228032253" + ] + }, + { + "noteType": "general", + "label": [ + "Ab 2002 entwickelter Ansatz zur Bewertung des gesellschaftlichen Mehrwerts durch soziale Projekte" + ] + } + ], + "pid": "1295208512", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Return on Investment" + } + ], + "variant_access_point": [ + "Social Return on Investment", + "SROI" + ], + "md5": "39b43b8cfb31a6fafa793232ac81449e" + }, + { + "authorized_access_point": "Reederin", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1294996460" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1294996460" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1294996460" + } + ], + "identifier": "http://d-nb.info/gnd/1294996460", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Duden online - https://www.duden.de/rechtschreibung/Reederin" + ] + }, + { + "noteType": "general", + "label": [ + "Als Homonymenzusatz bei Personen verwende Unternehmerin" + ] + } + ], + "pid": "1294996460", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Reeder" + } + ], + "md5": "bf20cc2320b326af2e37654e99931a8e" + }, + { + "authorized_access_point": "Nollywood", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1294772627" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1294772627" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1294772627" + } + ], + "identifier": "http://d-nb.info/gnd/1294772627", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Internet - https://www.bpb.de/shop/zeitschriften/apuz/nigeria-2021/337820/nollywood/", + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Nigerianischer_Film&oldid=234975760", + "Wikipedia - https://en.wikipedia.org/wiki/Cinema_of_Nigeria" + ] + }, + { + "noteType": "general", + "label": [ + "Nigeria ist inzwischen die zweitgro\u0308\u00dfte Filmnation der Welt nach Indien und vor den USA. Seit den 1970er Jahren werden in Nigeria Filme gedreht, doch erst seit den 1990er Jahren in gro\u0308\u00dferem Umfang. In Anlehnung an Hollywood wird der nigerianische Film auch unter dem Namen Nollywood vermarktet. Seit 2004 kommen nigerianische Filmemacher zur Berlinale. Okechukwu Ogunjiofor gilt als \"Erfinder\" Nollywoods." + ] + } + ], + "pid": "1294772627", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Filmwirtschaft" + }, + { + "authorized_access_point": "Filmproduktion" + } + ], + "variant_access_point": [ + "Nigerianischer Film", + "Cinema of Nigeria" + ], + "md5": "c78caa709da2c9486a41fbcab96d24d0" + }, + { + "authorized_access_point": "Furor poeticus", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/129400283X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)129400283X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)129400283X" + } + ], + "identifier": "http://d-nb.info/gnd/129400283X", + "note": [ + { + "noteType": "general", + "label": [ + "nach antiker platonischer Auffassung Zustand der rauschhaften dichterischen Begeisterung" + ] + } + ], + "pid": "129400283X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Enthusiasmus" + } + ], + "md5": "fdc12a47cdc9dd96d6c3e3ff3457ff97" + }, + { + "authorized_access_point": "Allen-Cahn-Gleichung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1292845384" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1292845384" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1292845384" + } + ], + "identifier": "http://d-nb.info/gnd/1292845384", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://en.wikipedia.org/w/index.php?title=Allen%E2%80%93Cahn_equation&oldid=1086819347" + ] + }, + { + "noteType": "general", + "label": [ + "Reaktions-Diffusionsgleichung, welche z.B. die Phasentrennung in Mehrkomponenten-Legierungen beschreibt" + ] + } + ], + "pid": "1292845384", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Reaktions-Diffusionsgleichung" + } + ], + "related": [ + { + "authorized_access_point": "Ginzburg-Landau-Gleichung" + } + ], + "variant_access_point": [ + "Allen-Cahn equation" + ], + "md5": "9ad2ab7bfa55684a6ed26c0e73e64210" + }, + { + "authorized_access_point": "\u02bfa\u0304ma\u0304l", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1286766397" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1286766397" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1286766397" + } + ], + "identifier": "http://d-nb.info/gnd/1286766397", + "note": [ + { + "noteType": "general", + "label": [ + "Verknu\u0308pfe mit Sprachbezeichnung und Wortart, Z.B. Hebra\u0308isch / Substantiv / \u02bfa\u0304ma\u0304l" + ] + } + ], + "pid": "1286766397", + "type": "bf:Topic", + "variant_access_point": [ + "\u02bfamal", + "\u05e2\u05b8\u05de\u05b8\u05dc" + ], + "md5": "827831b09ca77da33c6c5590c5b5e0bf" + }, + { + "authorized_access_point": "Terroranschla\u0308ge am 13. November 2015 in Paris", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1286227941" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1286227941" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1286227941" + } + ], + "identifier": "http://d-nb.info/gnd/1286227941", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/wiki/Terroranschl%C3%A4ge_am_13._November_2015_in_Paris" + ] + }, + { + "noteType": "general", + "label": [ + "Die Terroranschla\u0308ge in Paris am Freitag, dem 13. November 2015, waren koordinierte, islamistisch motivierte Attentate an fu\u0308nf verschiedenen Orten im 10. und 11. Pariser Arrondissement sowie in der Umgebung des Stade de France im Vorort Saint-Denis." + ] + } + ], + "pid": "1286227941", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Attentat" + } + ], + "variant_access_point": [ + "Attentats du 13 novembre 2015 en France", + "November 2015 Paris attacks", + "13. November 2015", + "Terroranschlag im Stade de France", + "Terroranschlag im Bataclan-Theater" + ], + "md5": "a224319d1b15e677a0e4d6cbe698f44e" + }, + { + "authorized_access_point": "Vajra", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1286106745" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1286106745" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1286106745" + } + ], + "identifier": "http://d-nb.info/gnd/1286106745", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Vajra&oldid=239624111" + ] + }, + { + "noteType": "general", + "label": [ + "Ritualgera\u0308t im tibetischen Buddhismus" + ] + } + ], + "pid": "1286106745", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kultgegenstand" + } + ], + "variant_access_point": [ + "Dorje", + "Donnerkeil", + "Diamantzepter" + ], + "md5": "64211053258a11bbf420eb59cc6f0223" + }, + { + "authorized_access_point": "Prozessionsstangenaufsatz", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1285304527" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1285304527" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1285304527" + } + ], + "identifier": "http://d-nb.info/gnd/1285304527", + "pid": "1285304527", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Prozessionsstange" + } + ], + "variant_access_point": [ + "Prozessionsstange" + ], + "md5": "da1270d112fdb5a1c6227eebd93a894b" + }, + { + "authorized_access_point": "Zollvertrag Schweiz-Liechtenstein - Jubila\u0308um (2023)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1284854744" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1284854744" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1284854744" + } + ], + "identifier": "http://d-nb.info/gnd/1284854744", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Homepage - https://www.zollvertrag.li/" + ] + } + ], + "pid": "1284854744", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Jubila\u0308um" + } + ], + "variant_access_point": [ + "Zollvertrag Schweiz-Liechtenstein (2023)" + ], + "md5": "b8d36ff8dd53db47cee686de082952cf" + }, + { + "authorized_access_point": "Opferlo\u0308ffel", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1284760456" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1284760456" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1284760456" + } + ], + "identifier": "http://d-nb.info/gnd/1284760456", + "note": [ + { + "noteType": "general", + "label": [ + "Verwendung wa\u0308hrend eines Feueropfers zum Gie\u00dfen von flu\u0308ssigem Butterfett als Opfergabe in die Flammen" + ] + } + ], + "pid": "1284760456", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Lo\u0308ffel" + }, + { + "authorized_access_point": "Kultgera\u0308t" + } + ], + "variant_access_point": [ + "Opfer" + ], + "md5": "9f2d0b4172fe970b5f02b95500c1c23f" + }, + { + "authorized_access_point": "Rheinromantik", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/127990271X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)127990271X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)127990271X" + } + ], + "identifier": "http://d-nb.info/gnd/127990271X", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Rheinromantik&oldid=228805995" + ] + } + ], + "pid": "127990271X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Romantik" + } + ], + "md5": "a2d7bc60af5cf98d96e8fa552230b053" + }, + { + "authorized_access_point": "Georg Weerth - Jubila\u0308um (2022)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1279534311" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1279534311" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1279534311" + } + ], + "identifier": "http://d-nb.info/gnd/1279534311", + "note": [ + { + "noteType": "general", + "label": [ + "Jubila\u0308umsjahr zum 200. Geburtstag des Dichters Georg Weerth" + ] + } + ], + "pid": "1279534311", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Jubila\u0308um" + } + ], + "variant_access_point": [ + "Georg Weerth-Jahr (2022)", + "200 Jahre Georg Weerth (2022)", + "Weerth 200 (2022)" + ], + "md5": "380f2379582b08ff4edb18878892c6cf" + }, + { + "authorized_access_point": "Saltire Society Literary Awards", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1278300821" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1278300821" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1278300821" + } + ], + "identifier": "http://d-nb.info/gnd/1278300821", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://en.wikipedia.org/wiki/Saltire_Society_Literary_Awards" + ] + }, + { + "noteType": "general", + "label": [ + "The Saltire Society Literary Awards are made annually by the Saltire Society. The awards seek to recognise books which are either by \"living authors of Scottish descent or residing in Scotland,\" or which deal with \"the work or life of a Scot or with a Scottish question, event or situation.\"" + ] + } + ], + "pid": "1278300821", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Literaturpreis" + } + ], + "md5": "ca9a31724ccf5c7d5df2325e4bd6bba3" + }, + { + "authorized_access_point": "Nichtnullsummenspiel", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1275762158" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1275762158" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1275762158" + } + ], + "identifier": "http://d-nb.info/gnd/1275762158", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Nullsummenspiel&oldid=226909291" + ] + } + ], + "pid": "1275762158", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Spieltheorie" + } + ], + "related": [ + { + "authorized_access_point": "Nullsummenspiel" + }, + { + "authorized_access_point": "Coopetition" + } + ], + "variant_access_point": [ + "Nicht-Nullsummenspiel" + ], + "md5": "790857a582c8afb6c6c3d405c70a2dec" + }, + { + "authorized_access_point": "Buchfluch", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1275016057" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1275016057" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1275016057" + } + ], + "identifier": "http://d-nb.info/gnd/1275016057", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Buchfluch&oldid=222549031" + ] + }, + { + "noteType": "general", + "label": [ + "Schriftlich fixierte magisch-religio\u0308s wirkende Formel, die fu\u0308r Diebstahl, Vernichtung oder Verfa\u0308lschung von Texten und Bu\u0308chern eine Verwu\u0308nschung androht" + ] + } + ], + "pid": "1275016057", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fluch" + } + ], + "variant_access_point": [ + "Bu\u0308cherfluch" + ], + "md5": "ca15070656658bf3634c02653d769581" + }, + { + "authorized_access_point": "Triolett", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1274846765" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1274846765" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1274846765" + } + ], + "identifier": "http://d-nb.info/gnd/1274846765", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Triolett&oldid=204730333" + ] + } + ], + "pid": "1274846765", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Lyrik" + } + ], + "variant_access_point": [ + "Triolet" + ], + "md5": "304f7b7ef29d9d1e1837fb524671be55" + }, + { + "authorized_access_point": "Merkantil Kursiv", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1272439836" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1272439836" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1272439836" + } + ], + "identifier": "http://d-nb.info/gnd/1272439836", + "pid": "1272439836", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "e1df40fa77fb3405bac450f1b51614f9" + }, + { + "authorized_access_point": "Klassische Grotesk", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1272436322" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1272436322" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1272436322" + } + ], + "identifier": "http://d-nb.info/gnd/1272436322", + "pid": "1272436322", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "82e849b7c43e4ff4d060dee4980a45f9" + }, + { + "authorized_access_point": "Ferrum (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/127243124X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)127243124X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)127243124X" + } + ], + "identifier": "http://d-nb.info/gnd/127243124X", + "pid": "127243124X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "2363215c4b657de2883948589a704d2e" + }, + { + "authorized_access_point": "Alarm (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1272429997" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1272429997" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1272429997" + } + ], + "identifier": "http://d-nb.info/gnd/1272429997", + "pid": "1272429997", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "d7d232bbe44f1530fd6124f67a8a059e" + }, + { + "authorized_access_point": "Marschall (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1272339785" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1272339785" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1272339785" + } + ], + "identifier": "http://d-nb.info/gnd/1272339785", + "pid": "1272339785", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "2f084752ff50eeffc787aa5f90c4b666" + }, + { + "authorized_access_point": "Consul (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1272271439" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1272271439" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1272271439" + } + ], + "identifier": "http://d-nb.info/gnd/1272271439", + "pid": "1272271439", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "1c5e2628464c997ff99bf14a211c502c" + }, + { + "authorized_access_point": "Bibliophile Antiqua", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1272267792" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1272267792" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1272267792" + } + ], + "identifier": "http://d-nb.info/gnd/1272267792", + "pid": "1272267792", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "b6c17f47c1b7b46343999bafd231f010" + }, + { + "authorized_access_point": "Admiral (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1272258963" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1272258963" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1272258963" + } + ], + "identifier": "http://d-nb.info/gnd/1272258963", + "pid": "1272258963", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "6dc10a593e83f573cd9613211d26253c" + }, + { + "authorized_access_point": "Wieynck-Gotisch", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1271905698" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1271905698" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1271905698" + } + ], + "identifier": "http://d-nb.info/gnd/1271905698", + "pid": "1271905698", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "9b42939dde9e1e118de2a47561597903" + }, + { + "authorized_access_point": "Supremo-Versalien", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1271895765" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1271895765" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1271895765" + } + ], + "identifier": "http://d-nb.info/gnd/1271895765", + "pid": "1271895765", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "781ed3788ee21bb8a783faca9eb121c0" + }, + { + "authorized_access_point": "Schreibedeutsch", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/127188898X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)127188898X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)127188898X" + } + ], + "identifier": "http://d-nb.info/gnd/127188898X", + "pid": "127188898X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "223f42abb8a16965632d720df585d314" + }, + { + "authorized_access_point": "Hof Kroog", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1271822776" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1271822776" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1271822776" + } + ], + "identifier": "http://d-nb.info/gnd/1271822776", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Kiel-Wiki - https://www.kiel-wiki.de/index.php?title=Hof_Kroog&oldid=58147" + ] + }, + { + "noteType": "general", + "label": [ + "Elmenschagener Flurbezeichnung" + ] + } + ], + "pid": "1271822776", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Flurname" + } + ], + "md5": "55d39cdca689da92f7064de1007d08aa" + }, + { + "authorized_access_point": "Ne-Po", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1271808897" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1271808897" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1271808897" + } + ], + "identifier": "http://d-nb.info/gnd/1271808897", + "pid": "1271808897", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "05fb57bb6d5ff25e0e67a8bcb65a82c6" + }, + { + "authorized_access_point": "Kursachsen (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1271790165" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1271790165" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1271790165" + } + ], + "identifier": "http://d-nb.info/gnd/1271790165", + "pid": "1271790165", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "2764d9fdcb9040edc8c65bcb245f0488" + }, + { + "authorized_access_point": "Energos", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1271715899" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1271715899" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1271715899" + } + ], + "identifier": "http://d-nb.info/gnd/1271715899", + "pid": "1271715899", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "1dd447b3dfc1bafcca7beee50d8d04e6" + }, + { + "authorized_access_point": "Jumli", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1271381702" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1271381702" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1271381702" + } + ], + "identifier": "http://d-nb.info/gnd/1271381702", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia (engl.) - https://en.wikipedia.org/w/index.php?title=Jumli_language&oldid=1145680164" + ] + }, + { + "noteType": "general", + "label": [ + "eng mit Nepali verwandt, wird hauptsa\u0308chlich in der Provinz Karnali in Nepal gesprochen" + ] + } + ], + "pid": "1271381702", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Nepali" + } + ], + "variant_access_point": [ + "Jumli\u0304", + "Jumleli" + ], + "md5": "67d4824fac947af3c9b7f22dceedc33b" + }, + { + "authorized_access_point": "Green New Deal", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1270556959" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1270556959" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1270556959" + } + ], + "identifier": "http://d-nb.info/gnd/1270556959", + "closeMatch": [ + { + "authorized_access_point": "Green New Deal", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334882894" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2020001010" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2020001010" + } + ] + }, + { + "authorized_access_point": "Green New Deal", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334882894" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF180064402" + }, + { + "type": "uri", + "value": "https://catalogue.bnf.fr/ark:/12148/cb180064402" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Green Deal", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1317470362" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "30419-1" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/30419-1" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Green_New_Deal&oldid=225070424" + ] + }, + { + "noteType": "general", + "label": [ + "Konzept(e) zur Einleitung einer o\u0308kologischen Wende der Industriegesellschaft" + ] + } + ], + "pid": "1270556959", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Wirtschaftspolitik" + } + ], + "related": [ + { + "authorized_access_point": "New Deal" + }, + { + "authorized_access_point": "Wirtschaftsentwicklung" + }, + { + "authorized_access_point": "Nachhaltigkeit" + } + ], + "variant_access_point": [ + "Green Deal", + "Gru\u0308ner Deal", + "Der Gru\u0308ne Deal" + ], + "md5": "bbf64e98f2cae14491b4829aefc77d6e" + }, + { + "authorized_access_point": "Australischer Soldat", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1268246964" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1268246964" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1268246964" + } + ], + "identifier": "http://d-nb.info/gnd/1268246964", + "closeMatch": [ + { + "authorized_access_point": "Militaires australiens", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334684014" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16555302" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16555302m" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Nur soweit au\u00dferhalb der eigenen Armee in ausla\u0308nd. Einheiten dienend. Ansonsten Verknu\u0308pfungskette Australien ; Soldat" + ] + } + ], + "pid": "1268246964", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Soldat" + } + ], + "related": [ + { + "authorized_access_point": "Australier" + } + ], + "md5": "9356672f6f2811016d1b4cd19eef39d5" + }, + { + "authorized_access_point": "Roland-Grotesk (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/126750370X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)126750370X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)126750370X" + } + ], + "identifier": "http://d-nb.info/gnd/126750370X", + "pid": "126750370X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "ddde1ee040e2c3dd187481d1e69f1dd4" + }, + { + "authorized_access_point": "Parcival-Antiqua", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1267495847" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1267495847" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1267495847" + } + ], + "identifier": "http://d-nb.info/gnd/1267495847", + "pid": "1267495847", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "e511195191a1bcfacff75c73b26a5ea4" + }, + { + "authorized_access_point": "Isabel (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1267493216" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1267493216" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1267493216" + } + ], + "identifier": "http://d-nb.info/gnd/1267493216", + "pid": "1267493216", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "2c8d73490053cb5d6f8ebdaa0455661a" + }, + { + "authorized_access_point": "tekme\u0304rion", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1266330917" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1266330917" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1266330917" + } + ], + "identifier": "http://d-nb.info/gnd/1266330917", + "note": [ + { + "noteType": "general", + "label": [ + "Verknu\u0308pfe mit Sprachbezeichnung und Wortart, z. B. Griechisch ; Substantiv ; tekme\u0304rion" + ] + } + ], + "pid": "1266330917", + "type": "bf:Topic", + "variant_access_point": [ + "\u03c4\u03b5\u03ba\u03bc\u03b7\u0301\u03c1\u03b9\u03bf\u03bd" + ], + "md5": "d22b5b65c1cb79746cbb488233e39499" + }, + { + "authorized_access_point": "Streetartku\u0308nstler", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1265612927" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1265612927" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1265612927" + } + ], + "identifier": "http://d-nb.info/gnd/1265612927", + "pid": "1265612927", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Streetartku\u0308nstlerin" + }, + { + "authorized_access_point": "Streetart" + } + ], + "broader": [ + { + "authorized_access_point": "Ku\u0308nstler" + } + ], + "variant_access_point": [ + "Strassenku\u0308nstler", + "Streetart-Ku\u0308nstler" + ], + "md5": "5204ba70e900636fc43c980a9eb35fa9" + }, + { + "authorized_access_point": "Fleetenkieker", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1265218374" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1265218374" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1265218374" + } + ], + "identifier": "http://d-nb.info/gnd/1265218374", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?oldid=207466436" + ] + }, + { + "noteType": "general", + "label": [ + "Zum Erhalt der beno\u0308tigten Wassertiefe ku\u0308mmerten sich Fleetenkieker seit dem 16. Jh. um die Reinhaltung der Fleete von Abfall, Schlick und Exkrementen. Ab dem 18. Jh. bis Anfang des 20. Jh. wurden so arme Leute bezeichnet, die die Fleete bei Ebbe nach verwertbarem Abfall durchsuchten. Ha\u0308ufig wurden Darstellungen romantisiert." + ] + } + ], + "pid": "1265218374", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Fahrwasser" + }, + { + "authorized_access_point": "Abfallbeseitigung" + }, + { + "authorized_access_point": "Gewa\u0308sserreinigung" + } + ], + "broader": [ + { + "authorized_access_point": "Mu\u0308llwerker" + } + ], + "md5": "fc3e675cb4f52939db1a2b5d2051cdce" + }, + { + "authorized_access_point": "Bumpy (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1261254937" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1261254937" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1261254937" + } + ], + "identifier": "http://d-nb.info/gnd/1261254937", + "pid": "1261254937", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + }, + { + "authorized_access_point": "Font" + } + ], + "md5": "f31150c8a432f051807edaf96ea263c9" + }, + { + "authorized_access_point": "Gen FKBP5", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1259273660" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1259273660" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1259273660" + } + ], + "identifier": "http://d-nb.info/gnd/1259273660", + "note": [ + { + "noteType": "general", + "label": [ + "Protein codierendes Gen. Genprodukt FKBP Prolyl Isomerase 5; wird auch bezeichnet als EC 5.2.1.8, Rotamase, FKBP-51, Peptidylprolyl Cis-Trans Isomerase u.a." + ] + } + ], + "pid": "1259273660", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gen" + } + ], + "variant_access_point": [ + "FKBP5 Gene", + "FKBP5" + ], + "md5": "d099d23256ddb70ffbd5e75b763b5a57" + }, + { + "authorized_access_point": "Vexiergefa\u0308\u00df", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1257092030" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1257092030" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1257092030" + } + ], + "identifier": "http://d-nb.info/gnd/1257092030", + "note": [ + { + "noteType": "general", + "label": [ + "Trinkgefa\u0308\u00df aus Fayence, Glas, Steinzeug oder Silber, ha\u0308ufig in Form von Tieren, Stiefeln oder Fa\u0308ssern, das beim Trinken besondere Geschicklichkeit erfordert, weil die Flu\u0308ssigkeit z.B. durch den Henkel emporsteigt; besonders im 16.\u201318. Jahrhundert verbreitet" + ] + } + ], + "pid": "1257092030", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Trinkgefa\u0308\u00df" + } + ], + "variant_access_point": [ + "Vexierglas", + "Scherzglas", + "Vexiergefa\u0308\u00dfe", + "Scherzgefa\u0308\u00df", + "Vexiergla\u0308ser" + ], + "md5": "4d0bb0e0c185f83632d2b36bd5d72216" + }, + { + "authorized_access_point": "Cancellandum", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1256073210" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1256073210" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1256073210" + } + ], + "identifier": "http://d-nb.info/gnd/1256073210", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Cancellans&oldid=160063593" + ] + }, + { + "noteType": "general", + "label": [ + "Fehlerhaft gedrucktes Blatt, das ha\u0308ufig durch Einschnitt oder Ausri\u00df markiert und vom Buchbinder durch ein neu gedrucktes Austauschblatt (Cancellans) ersetzt werden sollte" + ] + } + ], + "pid": "1256073210", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Cancellans" + }, + { + "authorized_access_point": "Analytische Druckforschung" + } + ], + "variant_access_point": [ + "Cancellatum", + "Canceled leaf" + ], + "md5": "620ed0ed8b0be84d4edeb56d996b88da" + }, + { + "authorized_access_point": "Cancellans", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1256072893" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1256072893" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1256072893" + } + ], + "identifier": "http://d-nb.info/gnd/1256072893", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Cancellans&oldid=160063593" + ] + }, + { + "noteType": "general", + "label": [ + "Vom korrigierten Satz neu gedrucktes Ersatzblatt, das vom Buchbinder fu\u0308r ein fehlerhaft gedrucktes Blatt (Cancellandum) eingeklebt werden sollte" + ] + } + ], + "pid": "1256072893", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Cancellandum" + }, + { + "authorized_access_point": "Analytische Druckforschung" + } + ], + "variant_access_point": [ + "Austauschblatt", + "Auswechselblatt", + "Cancelans", + "Cancel", + "Canceling leaf", + "Karton", + "Carton" + ], + "md5": "d88d174885a800a053cbb1f2026a5566" + }, + { + "authorized_access_point": "Postapokalypse (Motiv)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1254291482" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254291482" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1254291482" + } + ], + "identifier": "http://d-nb.info/gnd/1254291482", + "pid": "1254291482", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "94c610019cc05af238884d6c49372e6a" + }, + { + "authorized_access_point": "Nichtverbale Kommunikation (Motiv)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1251426239" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1251426239" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1251426239" + } + ], + "identifier": "http://d-nb.info/gnd/1251426239", + "pid": "1251426239", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "b7555670755502b02242581188db433f" + }, + { + "authorized_access_point": "Tage Ethischer Orientierung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1248276604" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1248276604" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1248276604" + } + ], + "identifier": "http://d-nb.info/gnd/1248276604", + "note": [ + { + "noteType": "general", + "label": [ + "Modell schulkooperativer Bildungs- und Erziehungsarbeit von Schulen und evangelischen Landeskirchen in Norddeutschland" + ] + } + ], + "pid": "1248276604", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kirchliche Kinderarbeit" + }, + { + "authorized_access_point": "Jugendarbeit" + }, + { + "authorized_access_point": "Schulsozialarbeit" + } + ], + "variant_access_point": [ + "TEO" + ], + "md5": "872fe62c758a40504ed4067fedade9e0" + }, + { + "authorized_access_point": "Gezeitenmu\u0308hle", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1245158511" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1245158511" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1245158511" + } + ], + "identifier": "http://d-nb.info/gnd/1245158511", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Gezeitenm%C3%BChle&oldid=216756166", + "Homepage Tide Mill Institute - https://www.tidemillinstitute.org/" + ] + }, + { + "noteType": "general", + "label": [ + "Periodisch mittels Ebbe und Flut angetriebene Mu\u0308hle; wurde ab dem fru\u0308hen Mittelalter vorwiegend an Ku\u0308sten mit ausreichendem Tidenhub errichtet" + ] + } + ], + "pid": "1245158511", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mu\u0308hle" + } + ], + "related": [ + { + "authorized_access_point": "Wassermu\u0308hle" + } + ], + "variant_access_point": [ + "Flutmu\u0308hle", + "Tidenmu\u0308hle", + "Tidemu\u0308hle", + "Tide mill", + "Tidal mill", + "Getijdenmolen" + ], + "md5": "0c8d323cb6ccee1726dba3dccaffb2e7" + }, + { + "authorized_access_point": "GWA Effie-Award", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1242560637" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1242560637" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1242560637" + } + ], + "identifier": "http://d-nb.info/gnd/1242560637", + "note": [ + { + "noteType": "dataSource", + "label": [ + "H Kulturpreise Online - http://www.kulturpreise.de/web/preise_info.php?preisd_id=2534", + "Wikipedia unter Effie (Preis) - https://de.wikipedia.org/w/index.php?title=Effie_(Preis)&oldid=205963252" + ] + }, + { + "noteType": "general", + "label": [ + "In Deutschland seit 1981 jedes Jahr vom Gesamtverband Kommunikationsagenturen GWA e. V. innerhalb der nationalen Werbe- und Kommunikationsbranche verliehen fu\u0308r die beste Marketingkommunikation bzgl. Wirksamkeit und Effizienz in zehn Kategorien. 2021 erstmals in Leipzig statt in Frankfurt a. Main verliehen. Der Effie wurde 1968 in den Vereinigten Staaten durch die New York American Marketing Association (NYAMA) gegru\u0308ndet. Neben u\u0308ber 40 nationalen Effies gibt es 5 regionale und einen Effie Worldwide." + ] + } + ], + "pid": "1242560637", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Preis (Auszeichnung)" + } + ], + "related": [ + { + "authorized_access_point": "Werbung" + }, + { + "authorized_access_point": "Marketingkonzept" + } + ], + "variant_access_point": [ + "GWA Effie Award", + "Effie-Award (Gesamtverband Werbeagenturen)", + "GWA Effie Awards", + "GWA Effie", + "Effie Awards Germany", + "Effie Germany Awards", + "Effie Germany", + "Effie (Preis, Auszeichnung)", + "Effie (Preis)" + ], + "md5": "cf02a4cbb5228f1f288859fc45509304" + }, + { + "authorized_access_point": "Sunday Assembly", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/124129562X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)124129562X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)124129562X" + } + ], + "identifier": "http://d-nb.info/gnd/124129562X", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Sonntagsversammlung&oldid=191625041" + ] + }, + { + "noteType": "general", + "label": [ + "Bezeichnet eine Versammlung nichtreligio\u0308ser Menschen, die von den britischen Komikern Sanderson Jones und Pippa Evans im Januar 2013 in London erstmals durchgefu\u0308hrt wurde. Die Versammlung hat in erster Linie das Ziel, Menschen ohne Konfession zusammenzubringen und ihnen ein positives Gemeinschaftserlebnis zu bieten, das auf Bezu\u0308ge zu religio\u0308sen Vorstellungen verzichtet. Das Motto der Sunday Assembly lautet: \u201eLive better, help often and wonder more\u201c \u2013 auf Deutsch etwa \u201eLebe besser, hilf oft, staune mehr\u201c bzw. \u201eLebe besser, hilf oft, denk mehr nach\u201c. Heute gibt es zahlreiche lokale Assemblies auf der ganzen Welt" + ] + } + ], + "pid": "124129562X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Versammlung" + }, + { + "authorized_access_point": "Gemeinschaft" + }, + { + "authorized_access_point": "Soziale Bewegung" + } + ], + "related": [ + { + "authorized_access_point": "Sonntag" + }, + { + "authorized_access_point": "Religionslosigkeit" + } + ], + "variant_access_point": [ + "Sonntagsversammlung" + ], + "md5": "556b4d84f56ee45508c6efcf305581b1" + }, + { + "authorized_access_point": "CV Dida", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1239152302" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1239152302" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1239152302" + } + ], + "identifier": "http://d-nb.info/gnd/1239152302", + "note": [ + { + "noteType": "general", + "label": [ + "Sans- und Serif-Schriftfamilie fu\u0308r die Lernprodukte des Cornelsen Verlages", + "Benutzt fu\u0308r alle CV-Dida-Schriften. Einzelne CV-Dida-Schriften werden getrennt angesetzt." + ] + } + ], + "pid": "1239152302", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + }, + { + "authorized_access_point": "Font" + } + ], + "variant_access_point": [ + "CV-Dida", + "Dida (Druckschrift)" + ], + "md5": "65bcfa39c715b939aab5e8ca162880d0" + }, + { + "authorized_access_point": "Massaker von Jeju-do", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1237145422" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1237145422" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1237145422" + } + ], + "identifier": "http://d-nb.info/gnd/1237145422", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Massaker_in_S%C3%BCdkorea&oldid=210930843", + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Jeju-Aufstand&oldid=187183989" + ] + }, + { + "noteType": "general", + "label": [ + "Widerstand gegen Polizeirepression und die Angst vor Fremdbestimmung der Insel hatten einen Aufstand linksgerichteter Rebellen ausgelo\u0308st. Am 3. April 1948 griffen diese auf der ganzen Insel Polizeikommandos sowie die Einrichtungen einer rechtsextremen paramilita\u0308rischen Organisation an. Polizei und Armee schlugen mit gro\u00dfer Brutalita\u0308t zuru\u0308ck und verfolgten eine Strategie der verbrannten Erde. Um die Aufsta\u0308ndischen im bergigen Landesinnern zu isolieren, wurden alle Do\u0308rfer, die mehr als vier Kilometer von der Ku\u0308ste entfernt waren, dem Erdboden gleichgemacht. Nach offiziellen su\u0308dkoreanischen Angaben wurden dadurch zwischen April 1948 und August 1949 270 von insgesamt 400 Do\u0308rfern auf der Insel ausgelo\u0308scht. Mehr als 27.000 Personen wurden geto\u0308tet, zum u\u0308berwiegenden Teil Zivilisten; Scha\u0308tzungen der Opferzahl weichen allerdings deutlich voneinander ab. Auch das Ende der Unruhen Anfang der 1950er wird unterschiedlich angesetzt." + ] + } + ], + "pid": "1237145422", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Massaker" + } + ], + "variant_access_point": [ + "Jeju-Massaker", + "Jeju-Aufstand", + "Cheju-Massaker", + "Massaker von Cheju-do", + "Jeju massacre", + "Cheju massacre" + ], + "md5": "ec8d0c7aba30e6357d2b0884b6cb935d" + }, + { + "authorized_access_point": "Armenischer Student", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1232354244" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1232354244" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1232354244" + } + ], + "identifier": "http://d-nb.info/gnd/1232354244", + "closeMatch": [ + { + "authorized_access_point": "Armenian students", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334679487" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh87002994" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh87002994" + } + ] + }, + { + "authorized_access_point": "E\u0301tudiants arme\u0301niens", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334679487" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17881071" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17881071x" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Benutzt, soweit im Ausland leben" + ] + } + ], + "pid": "1232354244", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ausla\u0308ndischer Student" + }, + { + "authorized_access_point": "Armenier" + } + ], + "md5": "10b26747de9f342e1083548c6c428aca" + }, + { + "authorized_access_point": "Pansexualita\u0308t", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1229013695" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1229013695" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1229013695" + } + ], + "identifier": "http://d-nb.info/gnd/1229013695", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Pansexualit%C3%A4t&oldid=208933170" + ] + } + ], + "pid": "1229013695", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Sexuelle Orientierung" + } + ], + "related": [ + { + "authorized_access_point": "Bisexualita\u0308t" + } + ], + "variant_access_point": [ + "Omnisexualita\u0308t" + ], + "md5": "b011f007431dd399e07488497c67f325" + }, + { + "authorized_access_point": "Mangaka", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1225001064" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1225001064" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1225001064" + } + ], + "identifier": "http://d-nb.info/gnd/1225001064", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Mangaka&oldid=205181449" + ] + }, + { + "noteType": "general", + "label": [ + "Mangaka, oder auch Manga-ka, sind professionell fu\u0308r einen Manga-Verlag arbeitende Manga-Zeichnerinnen und -Zeichner. Es gibt keine Unterscheidung einer weiblichen und ma\u0308nnlichen Bezeichnung. Der Begriff setzt sich zusammen aus dem Wort Manga fu\u0308r japanische Comics und der Endung -ka im Sinne von \u201eMacher\u201c oder \u201eScho\u0308pfer\u201c. Die meisten Mangaka zeichnen ihre Geschichten nicht nur, sondern schreiben auch den dazugeho\u0308rigen Text. In Japan sind Mangaka eine eigene Berufsgruppe." + ] + } + ], + "pid": "1225001064", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zeichner" + } + ], + "variant_access_point": [ + "Manga-ka", + "Manga-Zeichner", + "Mangazeichnerin" + ], + "md5": "be1806ad94aae07d088a31ee33ad7b3e" + }, + { + "authorized_access_point": "Crowdsourcing", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1217543678" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1217543678" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1217543678" + } + ], + "identifier": "http://d-nb.info/gnd/1217543678", + "closeMatch": [ + { + "authorized_access_point": "Crowdsourcing", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334879311" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2017004056" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2017004056" + } + ] + }, + { + "authorized_access_point": "Crowdsourcing", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334879311" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF167129727" + }, + { + "type": "uri", + "value": "https://catalogue.bnf.fr/ark:/12148/cb167129727" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Crowdsourcing", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1217543686" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "29770-6" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/29770-6" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Crowdsourcing&oldid=203048762" + ] + }, + { + "noteType": "general", + "label": [ + "Crowdsourcing ist die Auslagerung bestimmter Aufgaben an eine undefinierte Vielzahl an Menschen mittels eines offenen Aufrufs. Die Bezeichnung wird verschiedentlich auch als Synonym zu Crowdworking gesehen." + ] + } + ], + "pid": "1217543678", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Outsourcing" + } + ], + "related": [ + { + "authorized_access_point": "Prosumerismus" + } + ], + "variant_access_point": [ + "Schwarmauslagerung" + ], + "md5": "c405b5a1db51b0f6e006f4ce8147910f" + }, + { + "authorized_access_point": "Populationsgenomik", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1213474337" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1213474337" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1213474337" + } + ], + "identifier": "http://d-nb.info/gnd/1213474337", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Universita\u0308t Hohenheim - https://popgenomik.uni-hohenheim.de/", + "Ludwig-Maximilians-Universita\u0308t Mu\u0308nchen - https://www.genom.vetmed.uni-muenchen.de/forschung/forschungsschwerpunkte/populationsgenomik/index.html", + "Wikipedia (engl.) - https://en.wikipedia.org/w/index.php?title=Population_genomics&oldid=955719198" + ] + }, + { + "noteType": "general", + "label": [ + "Verfahren zur populationsgenetischen Analyse mittels gro\u00dfer (Sequenz-)Datensa\u0308tzen, die durch Hochdurchsatzverfahren gewonnen werden. Insbesondere erlaubt das Sequenzieren von Stichproben von ganzen Genomen, die genetische Variation von Populationen zu analysieren" + ] + } + ], + "pid": "1213474337", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Populationsgenetik" + } + ], + "variant_access_point": [ + "Population genomics" + ], + "md5": "296136b600a46deb15b6b8300cf6cc1f" + }, + { + "authorized_access_point": "Catimbo\u0301", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1213276500" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1213276500" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1213276500" + } + ], + "identifier": "http://d-nb.info/gnd/1213276500", + "note": [ + { + "noteType": "general", + "label": [ + "Afroamerikanische Religion in Brasilien" + ] + } + ], + "pid": "1213276500", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Afroamerikanischer Synkretismus" + } + ], + "variant_access_point": [ + "Catimbo\u0301s" + ], + "md5": "e01183b98aa0bf40e4ef9a3c87ae937e" + }, + { + "authorized_access_point": "Synagogenvorsteher", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1211610659" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1211610659" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1211610659" + } + ], + "identifier": "http://d-nb.info/gnd/1211610659", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/wiki/Synagogenvorsteher" + ] + } + ], + "pid": "1211610659", + "type": "bf:Topic", + "variant_access_point": [ + "Archisyna\u0301go\u0304gos", + "Archisynagogos", + "Archisynagogus", + "Rosh ha-knesset", + "Rosch ha-Knesset", + "Rosch hake\u0306nesset", + "Synagogenvorsitzender", + "Princeps synagogae" + ], + "md5": "52bbd372c2b00fe6377d503406744e88" + }, + { + "authorized_access_point": "Szientometrie", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1206111984" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1206111984" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1206111984" + } + ], + "identifier": "http://d-nb.info/gnd/1206111984", + "exactMatch": [ + { + "authorized_access_point": "Szientometrie", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1239139888" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10064428" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10064428" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Szientometrie&oldid=196832777" + ] + }, + { + "noteType": "general", + "label": [ + "Szientometrie ist die Wissenschaft der Wissenschaftsmessung, die mathematische und statistische Methoden zur Analyse von wissenschaftlichen Vero\u0308ffentlichungen und Forschungsergebnissen verwendet." + ] + } + ], + "pid": "1206111984", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Wissenschaftsforschung" + }, + { + "authorized_access_point": "Informetrie" + } + ], + "related": [ + { + "authorized_access_point": "Bibliometrie" + } + ], + "variant_access_point": [ + "Scientometrie" + ], + "md5": "7ad34f59b343bdc529e4294c2720b31d" + }, + { + "authorized_access_point": "Treyford Type", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1205504184" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1205504184" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1205504184" + } + ], + "identifier": "http://d-nb.info/gnd/1205504184", + "note": [ + { + "noteType": "general", + "label": [ + "Entworfen als Hausschrift fu\u0308r die Oxford University, an Rohrfederhandschriften angelehnt, erstes gedrucktes Buch mit dieser wieder in Blei gegossenen Schrift: Krohn, Tim: Zum Paradies, Edition Offizin Parnassia Va\u0308ttis, 2015" + ] + } + ], + "pid": "1205504184", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Antiqua" + }, + { + "authorized_access_point": "Druckschrift" + } + ], + "variant_access_point": [ + "Treyford (Druckschrift)", + "Type Treyford" + ], + "md5": "0ef6d397f4a891b6e7bc7870f930d1ca" + }, + { + "authorized_access_point": "Holzha\u0308ndler", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1204138915" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1204138915" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1204138915" + } + ], + "identifier": "http://d-nb.info/gnd/1204138915", + "pid": "1204138915", + "type": "bf:Topic", + "md5": "f2ee3e817fd245f5ff00a5432292af4b" + }, + { + "authorized_access_point": "Chemokinrezpetor", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/120246193X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)120246193X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)120246193X" + } + ], + "identifier": "http://d-nb.info/gnd/120246193X", + "exactMatch": [ + { + "authorized_access_point": "Receptors, Chemokine", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336575654" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D019707" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D019707" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Chemokinrezeptoren&oldid=183008713" + ] + } + ], + "pid": "120246193X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "G-Protein gekoppelter Rezeptor" + } + ], + "variant_access_point": [ + "Chemokine receptor" + ], + "md5": "ed97fea142e1807a8c830e0fde798894" + }, + { + "authorized_access_point": "TopChre\u0301tien", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1201306663" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1201306663" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1201306663" + } + ], + "identifier": "http://d-nb.info/gnd/1201306663", + "pid": "1201306663", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Portal (Internet)" + }, + { + "authorized_access_point": "Online-Community" + } + ], + "related": [ + { + "authorized_access_point": "Evangelikale Bewegung" + } + ], + "variant_access_point": [ + "TopChre\u0301tien.com" + ], + "md5": "3d872ce618839654766da172cb7aa7b5" + }, + { + "authorized_access_point": "Slowakischer Student", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1197813853" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1197813853" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1197813853" + } + ], + "identifier": "http://d-nb.info/gnd/1197813853", + "closeMatch": [ + { + "authorized_access_point": "Slovak students", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334683123" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh94004603" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh94004603" + } + ] + }, + { + "authorized_access_point": "E\u0301tudiants slovaques", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334683123" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12392703" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb123927038" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Benutzt, soweit im Ausland lebend" + ] + } + ], + "pid": "1197813853", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ausla\u0308ndischer Student" + }, + { + "authorized_access_point": "Slowaken" + } + ], + "md5": "c9feac4d9cf26a9e7c90b8591f2779bc" + }, + { + "authorized_access_point": "Open Science", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1197084231" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1197084231" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1197084231" + } + ], + "identifier": "http://d-nb.info/gnd/1197084231", + "closeMatch": [ + { + "authorized_access_point": "Open scholarship", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331216990" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2022002066" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2022002066" + } + ] + }, + { + "authorized_access_point": "Science ouverte", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1331216990" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18068255" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb180682558" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Open science", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1289086672" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "30309-1" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/30309-1" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Open_Science&oldid=242180012" + ] + }, + { + "noteType": "general", + "label": [ + "Sammelbegriff fu\u0308r z.B. Open Access, Open Data, Open Educational Resources, Open Methodology, Open Peer Review, Open Source etc. Ziel ist, wissenschaftliche Prozesse transparent und reproduzierbar sowie Wissenschaft fu\u0308r alle frei zuga\u0308nglich zu machen" + ] + } + ], + "pid": "1197084231", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Wissenschaft" + } + ], + "variant_access_point": [ + "Offene Wissenschaft", + "O\u0308ffentliche Wissenschaft", + "Open Research", + "Open Scholarship" + ], + "md5": "0f92eaa8ccb1f2a3b09cfe869172ce83" + }, + { + "authorized_access_point": "Assassin's Creed (Computerspiel, Serie)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1196153183" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1196153183" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1196153183" + } + ], + "identifier": "http://d-nb.info/gnd/1196153183", + "exactMatch": [ + { + "authorized_access_point": "Assassin's creed series (Video games)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1272017613" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "no2016008920" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/names/no2016008920" + } + ] + }, + { + "authorized_access_point": "Assassin's creed (jeu vide\u0301o ; se\u0301rie)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1272017613" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16573084" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/16573084/assassin_s_creed___jeu_video/" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/wiki/Assassin%E2%80%99s_Creed" + ] + }, + { + "noteType": "general", + "label": [ + "Computerspielserie aus dem Genre Action-Adventure, ab 2007 wurden 11 Hauptspiele und zahlreiche Ableger vero\u0308ffentlicht" + ] + } + ], + "pid": "1196153183", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Computerspiel" + }, + { + "authorized_access_point": "Serie" + }, + { + "authorized_access_point": "Abenteuerspiel" + } + ], + "variant_access_point": [ + "Assassin's-Creed-Reihe", + "Assassin's creed series" + ], + "md5": "1a260fc369c687a618fa1bfe0864b9e2" + }, + { + "authorized_access_point": "rDzong pa", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1195721455" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1195721455" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1195721455" + } + ], + "identifier": "http://d-nb.info/gnd/1195721455", + "note": [ + { + "noteType": "dataSource", + "label": [ + "The treasury of lives - https://treasuryoflives.org/tradition/Sakya" + ] + }, + { + "noteType": "general", + "label": [ + "Einer der drei Zweige der Sa skya Tradition des tibetischen Buddhismus; ngor pa, tshar pa, rdzong pa/gong dkar pa; verbunden mit dem Kloster Gongkar Chode (Gong dkar chos sde) - gegru\u0308ndet von Gong dkar rdo rje gdan pa kun dga' rnam rgyal (1432-1496)" + ] + } + ], + "pid": "1195721455", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Sakyapa" + } + ], + "variant_access_point": [ + "rDzong-pa", + "rDzon\u0307 pa", + "Dzongpa", + "rDzong pa-Zweig", + "rDzong pa Unterschule", + "rDzong Tradition", + "Dzongpa Tradition", + "Dzongpa-Tradition", + "Gong dkar ba", + "Gon\u0307 dkar ba", + "Gong dkar-Zweig", + "Gong dkar Tradition", + "Gongkar" + ], + "md5": "e153b5038db04924b28c094225f8895c" + }, + { + "authorized_access_point": "Ngor pa", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1195720424" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1195720424" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1195720424" + } + ], + "identifier": "http://d-nb.info/gnd/1195720424", + "note": [ + { + "noteType": "dataSource", + "label": [ + "The treasury of lives - https://treasuryoflives.org/tradition/Sakya" + ] + }, + { + "noteType": "general", + "label": [ + "Einer der drei Zweige der Sa skya Tradition des tibetischen Buddhismus; ngor pa, tshar pa, rdzong pa/gong dkar pa; etabliert von Ngor chen kun dga' bzang po mit der Gru\u0308ndung des Klosters Ngor Ewam\u0323 Choden (Ngor e wam\u0323 chos ldan) in 1429" + ] + } + ], + "pid": "1195720424", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Sakyapa" + } + ], + "variant_access_point": [ + "Ngor-pa", + "N\u0307or pa", + "Ngor pa-Zweig", + "Ngor pa Unterschule", + "Ngor Tradition" + ], + "md5": "4c8715f521b20d1a22c2163cf61b082e" + }, + { + "authorized_access_point": "Ruzong Shenjiao", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1192998324" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1192998324" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1192998324" + } + ], + "identifier": "http://d-nb.info/gnd/1192998324", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://en.wikipedia.org/wiki/Way_of_the_Gods_according_to_the_Confucian_Tradition" + ] + }, + { + "noteType": "general", + "label": [ + "Ansetzung als Personengruppe, da ohne einheitliche ko\u0308rperschaftliche Struktur" + ] + } + ], + "pid": "1192998324", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Religio\u0308se Bewegung" + }, + { + "authorized_access_point": "Konfuzianismus" + } + ], + "variant_access_point": [ + "Ru\u0301zo\u0304ng She\u0301njia\u0300o", + "Way of the Gods according to the Confucian tradition", + "Luandao", + "Phoenix Way", + "Phoenix Gate", + "Phoenix halls", + "Phoenix churches", + "Lua\u0301nme\u0301n", + "Luanism", + "Lua\u0301njia\u0300o", + "Rumen", + "Holy Church of the Confucian Tradition", + "Ru\u0301zo\u0304ng She\u0300ngjia\u0300o" + ], + "md5": "47f92bd96b29bd8b6702c95525973eaa" + }, + { + "authorized_access_point": "zeit.punktNRW", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/119298918X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)119298918X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)119298918X" + } + ], + "identifier": "http://d-nb.info/gnd/119298918X", + "note": [ + { + "noteType": "general", + "label": [ + "Im Juni 2018 freigeschaltetes Portal mit digitalisierten Lokalzeitungen aus Nordrhein-Westfalen im Zeitraum von 1801-1845" + ] + } + ], + "pid": "119298918X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Portal (Internet)" + } + ], + "related": [ + { + "authorized_access_point": "Zeitung" + } + ], + "variant_access_point": [ + "zeit.punktNRW (Portal, Internet)", + "Zeitungsportal Nordrhein-Westfalen", + "Zeitungsport NRW" + ], + "md5": "d5a3867293bb52bcf9a03655eb944048" + }, + { + "authorized_access_point": "Ziza (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1191213307" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1191213307" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1191213307" + } + ], + "identifier": "http://d-nb.info/gnd/1191213307", + "note": [ + { + "noteType": "general", + "label": [ + "\"Color Fonts\" (mehrfarbige Schrift, pro Letter mehrere Farben) fu\u0308r U\u0308berschriften und Mengentext" + ] + } + ], + "pid": "1191213307", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + }, + { + "authorized_access_point": "Font" + } + ], + "md5": "15c602fa0d67014d06b660f36f8ff029" + }, + { + "authorized_access_point": "Mehrspartentheater", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1190744996" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1190744996" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1190744996" + } + ], + "identifier": "http://d-nb.info/gnd/1190744996", + "note": [ + { + "noteType": "general", + "label": [ + "Theater, das Eigenproduktionen in mehreren Sparten der Bu\u0308hnenkunst (Musik, Schauspiel, Tanz) zeigt. Fu\u0308r jede Sparte ist ein eigenes Ensemble engagiert" + ] + } + ], + "pid": "1190744996", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Theater" + } + ], + "variant_access_point": [ + "Zweispartentheater", + "Dreispartentheater", + "Vierspartentheater", + "Fu\u0308nfspartentheater" + ], + "md5": "f621a8ba46c59d5955e3d4cdf2f3c48c" + }, + { + "authorized_access_point": "Zwangsvorstellung (Motiv)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1189251949" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1189251949" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1189251949" + } + ], + "identifier": "http://d-nb.info/gnd/1189251949", + "pid": "1189251949", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "30e3b6f98a300d46163bf45e180ceff2" + }, + { + "authorized_access_point": "Futura Mager", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1181270391" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1181270391" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1181270391" + } + ], + "identifier": "http://d-nb.info/gnd/1181270391", + "pid": "1181270391", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Futura (Druckschrift)" + } + ], + "md5": "e7ef261251bd7a26bccc555913d05867" + }, + { + "authorized_access_point": "Gen ENTPD1", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1177428253" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1177428253" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1177428253" + } + ], + "identifier": "http://d-nb.info/gnd/1177428253", + "pid": "1177428253", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gen" + } + ], + "variant_access_point": [ + "ENTPD1 Gene", + "Ectonucleoside triphosphate diphosphohydrolase 1", + "CD39", + "SPG64", + "ATPDase", + "NTPDase-1" + ], + "md5": "cdc22a17b37ad1a1f00b661a830cc37b" + }, + { + "authorized_access_point": "Rektorat (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1172931720" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1172931720" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1172931720" + } + ], + "identifier": "http://d-nb.info/gnd/1172931720", + "note": [ + { + "noteType": "general", + "label": [ + "basieren auf der Beschriftung, die nach 1933 fu\u0308r das Geba\u0308ude der Kunstgewerbeschule Zu\u0308rich (heute ZHdK) und dem Museum fu\u0308r Gestaltung gezeichnet wurde, geschaffen von der Foundry Nouvelle Noire, Zu\u0308rich, 14 Schriftschnitte erha\u0308ltlich", + "Benutzt fu\u0308r alle Rektorat-Schriften. Einzelne Rektorat-Schriften werden getrennt angesetzt." + ] + } + ], + "pid": "1172931720", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + }, + { + "authorized_access_point": "Font" + } + ], + "md5": "8a4c4a98bef35ae7241554ddbd7a8340" + }, + { + "authorized_access_point": "Melmaruvathur movement", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1164102931" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1164102931" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1164102931" + } + ], + "identifier": "http://d-nb.info/gnd/1164102931", + "note": [ + { + "noteType": "general", + "label": [ + "Hinduistische Gruppierung mit wachsender Popularita\u0308t; VerehrerInnen der Go\u0308ttin A\u0304tipara\u0304cakti" + ] + } + ], + "pid": "1164102931", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Hinduismus" + } + ], + "broader": [ + { + "authorized_access_point": "Religio\u0308se Bewegung" + } + ], + "variant_access_point": [ + "Melmaruvathur Adhiparasakthi Spiritual Movement" + ], + "md5": "763e5cec7235b5e86c5c5e0de822d43e" + }, + { + "authorized_access_point": "\u02bfzr", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1162074078" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1162074078" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1162074078" + } + ], + "identifier": "http://d-nb.info/gnd/1162074078", + "note": [ + { + "noteType": "general", + "label": [ + "Verknu\u0308pfe mit Sprachbezeichnung (hier: Hebra\u0308isch) und Wortart" + ] + } + ], + "pid": "1162074078", + "type": "bf:Topic", + "variant_access_point": [ + "\u05e2\u05d6\u05e8" + ], + "md5": "1c57a2faf3a936c93090c77a2baa8644" + }, + { + "authorized_access_point": "ml\u02be", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1162070234" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1162070234" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1162070234" + } + ], + "identifier": "http://d-nb.info/gnd/1162070234", + "note": [ + { + "noteType": "general", + "label": [ + "Verknu\u0308pfe mit Sprachbezeichnung (hier: Hebra\u0308isch) und Wortart" + ] + } + ], + "pid": "1162070234", + "type": "bf:Topic", + "variant_access_point": [ + "\u05de\u05dc\u05d0" + ], + "md5": "e696e7dd13627bbeb2d2ccbdfd96b95b" + }, + { + "authorized_access_point": "mabu\u0302l", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1162069848" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1162069848" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1162069848" + } + ], + "identifier": "http://d-nb.info/gnd/1162069848", + "note": [ + { + "noteType": "general", + "label": [ + "Verknu\u0308pfe mit Sprachbezeichnung (hier: Hebra\u0308isch) und Wortart" + ] + } + ], + "pid": "1162069848", + "type": "bf:Topic", + "variant_access_point": [ + "mabbul", + "mabbu\u0302l", + "\u05de\u05b7\u05d1\u05bc\u05d5\u05bc\u05dc" + ], + "md5": "20e3aade22458935fe52a124bf6e6db0" + }, + { + "authorized_access_point": "yph\u0323", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1162069279" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1162069279" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1162069279" + } + ], + "identifier": "http://d-nb.info/gnd/1162069279", + "note": [ + { + "noteType": "general", + "label": [ + "Verknu\u0308pfe mit Sprachbezeichnung (hier: Hebra\u0308isch) und Wortart" + ] + } + ], + "pid": "1162069279", + "type": "bf:Topic", + "variant_access_point": [ + "jph\u0323", + "\u05d9\u05e4\u05d7" + ], + "md5": "cb9d90f09e336b7c60bad30236ff220d" + }, + { + "authorized_access_point": "Su\u0308damerikanischer Einwanderer", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1161370048" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1161370048" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1161370048" + } + ], + "identifier": "http://d-nb.info/gnd/1161370048", + "pid": "1161370048", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Su\u0308damerikaner" + }, + { + "authorized_access_point": "Einwanderer" + } + ], + "related": [ + { + "authorized_access_point": "Su\u0308damerikanische Einwanderin" + } + ], + "md5": "28ec16e7a186061c5b2e52c13c9e2975" + }, + { + "authorized_access_point": "Schiller-Jubila\u0308umsschrift", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1160916276" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1160916276" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1160916276" + } + ], + "identifier": "http://d-nb.info/gnd/1160916276", + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungszeit 1904" + ] + } + ], + "pid": "1160916276", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "fe4a43ada8e696259259fe9c1bb17502" + }, + { + "authorized_access_point": "Jordanischer Student", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1160040834" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1160040834" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1160040834" + } + ], + "identifier": "http://d-nb.info/gnd/1160040834", + "closeMatch": [ + { + "authorized_access_point": "Jordanian students", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334682283" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh98006531" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh98006531" + } + ] + }, + { + "authorized_access_point": "E\u0301tudiants jordaniens", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334682283" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16080762" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb160807624" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Benutzt, soweit im Ausland lebend" + ] + } + ], + "pid": "1160040834", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ausla\u0308ndischer Student" + }, + { + "authorized_access_point": "Jordanier" + } + ], + "md5": "04bca214022b7142ee4b4341caa97d49" + }, + { + "authorized_access_point": "Succes (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1159933278" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1159933278" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1159933278" + } + ], + "identifier": "http://d-nb.info/gnd/1159933278", + "pid": "1159933278", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "e18dd7f83ed37b6b576a2774b7e71e44" + }, + { + "authorized_access_point": "Rondo (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1159933006" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1159933006" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1159933006" + } + ], + "identifier": "http://d-nb.info/gnd/1159933006", + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungszeit 1948, Rondo Fett: 1954" + ] + } + ], + "pid": "1159933006", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "f7f2d7358fa63d20b519bf6c1ac0f539" + }, + { + "authorized_access_point": "Juno (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/115992869X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)115992869X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)115992869X" + } + ], + "identifier": "http://d-nb.info/gnd/115992869X", + "pid": "115992869X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "0f3b0cdfb71719660a86f27ae24ff4bc" + }, + { + "authorized_access_point": "Carlton (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1159920850" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1159920850" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1159920850" + } + ], + "identifier": "http://d-nb.info/gnd/1159920850", + "pid": "1159920850", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "605668d82ede408743709f8324c6aa58" + }, + { + "authorized_access_point": "Bristol (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/115992063X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)115992063X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)115992063X" + } + ], + "identifier": "http://d-nb.info/gnd/115992063X", + "pid": "115992063X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "00faa70856f3b42b7db6118a012920d7" + }, + { + "authorized_access_point": "Orator (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1159919828" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1159919828" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1159919828" + } + ], + "identifier": "http://d-nb.info/gnd/1159919828", + "pid": "1159919828", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "2378817a64ed563ffb3b82421681ae02" + }, + { + "authorized_access_point": "Nu\u0308rnberg (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1159716978" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1159716978" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1159716978" + } + ], + "identifier": "http://d-nb.info/gnd/1159716978", + "pid": "1159716978", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "19dfa2dafa60b93c5f6b7c7d5839b219" + }, + { + "authorized_access_point": "Mammut (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1159673381" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1159673381" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1159673381" + } + ], + "identifier": "http://d-nb.info/gnd/1159673381", + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungsjahr: 1928; Mammut Schmalfett 1932" + ] + } + ], + "pid": "1159673381", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "df7ab259f0dd066771126bc98dd8f1ce" + }, + { + "authorized_access_point": "Dynamit (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1159652686" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1159652686" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1159652686" + } + ], + "identifier": "http://d-nb.info/gnd/1159652686", + "pid": "1159652686", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "10d778150e0ad9b7aefdf43bcf648931" + }, + { + "authorized_access_point": "Kardinal (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1158529643" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1158529643" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1158529643" + } + ], + "identifier": "http://d-nb.info/gnd/1158529643", + "pid": "1158529643", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "fcf1d5a67f9780f26c600ca1b2e76a5e" + }, + { + "authorized_access_point": "Auflage (Einbandkunde)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1156463467" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1156463467" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1156463467" + } + ], + "identifier": "http://d-nb.info/gnd/1156463467", + "note": [ + { + "noteType": "general", + "label": [ + "Verzierung d. Bucheinbands durch aufgeklebte Leder- oder Textilstu\u0308ckchen" + ] + } + ], + "pid": "1156463467", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Buchgestaltung" + } + ], + "md5": "aeba7aa49cf70403497b46e8d28e3d30" + }, + { + "authorized_access_point": "Titelschild", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1153904039" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1153904039" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1153904039" + } + ], + "identifier": "http://d-nb.info/gnd/1153904039", + "pid": "1153904039", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Etikett" + } + ], + "related": [ + { + "authorized_access_point": "Buchgestaltung" + } + ], + "md5": "27bd23e8be4c5bdb16e22561d64df83f" + }, + { + "authorized_access_point": "Ru\u0308ckgewa\u0308hranspruch", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1153848325" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1153848325" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1153848325" + } + ], + "identifier": "http://d-nb.info/gnd/1153848325", + "note": [ + { + "noteType": "general", + "label": [ + "Anspruch auf Ru\u0308ckgewa\u0308hr einer erbrachten Leistung" + ] + } + ], + "pid": "1153848325", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Anspruch" + } + ], + "related": [ + { + "authorized_access_point": "Ru\u0308ckforderung" + } + ], + "variant_access_point": [ + "Ru\u0308ckerstattungsanspruch", + "Ru\u0308ckforderungsanspruch" + ], + "md5": "8b693e4cc998e9aac47946283efb08c0" + }, + { + "authorized_access_point": "Kognitive Religionswissenschaft", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1153645505" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1153645505" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1153645505" + } + ], + "identifier": "http://d-nb.info/gnd/1153645505", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/wiki/Kognitive_Religionswissenschaft" + ] + }, + { + "noteType": "general", + "label": [ + "Interdisziplina\u0308res Forschungsgebiet, das die Religion aus kognitionswissenschaftlicher Sicht untersucht; 1975 aus einem Forschungsfo\u0308rderungsprogramm entstanden" + ] + } + ], + "pid": "1153645505", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Religionswissenschaft" + }, + { + "authorized_access_point": "Kognitionswissenschaft" + } + ], + "variant_access_point": [ + "Cognitive science of religion" + ], + "md5": "82383dc6b995240a4348268b65eeb502" + }, + { + "authorized_access_point": "prostatis", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1148983325" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1148983325" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1148983325" + } + ], + "identifier": "http://d-nb.info/gnd/1148983325", + "note": [ + { + "noteType": "general", + "label": [ + "Verknu\u0308pfe mit Sprachbezeichnung und Wortart Substantiv" + ] + } + ], + "pid": "1148983325", + "type": "bf:Topic", + "variant_access_point": [ + "\u03c0\u03c1\u03bf\u03c3\u03c4\u03b1\u0301\u03c4\u03b9\u03c2" + ], + "md5": "404c270b5c4dda3f09d15bf59ab80554" + }, + { + "authorized_access_point": "prostate\u0304s", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1148983317" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1148983317" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1148983317" + } + ], + "identifier": "http://d-nb.info/gnd/1148983317", + "note": [ + { + "noteType": "general", + "label": [ + "Verknu\u0308pfe mit Sprachbezeichnung und Wortart Substantiv" + ] + } + ], + "pid": "1148983317", + "type": "bf:Topic", + "variant_access_point": [ + "\u03c0\u03c1\u03bf\u03c3\u03c4\u03b1\u0301\u03c4\u03b7\u03c2" + ], + "md5": "657e146c684e3479ada8eb0000ab74c2" + }, + { + "authorized_access_point": "oikos", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1148982329" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1148982329" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1148982329" + } + ], + "identifier": "http://d-nb.info/gnd/1148982329", + "note": [ + { + "noteType": "general", + "label": [ + "Verknu\u0308pfe mit Sprachbezeichnung und Wortart" + ] + } + ], + "pid": "1148982329", + "type": "bf:Topic", + "variant_access_point": [ + "\u03bf\u03b9\u0313\u0342\u03ba\u03bf\u03c2" + ], + "md5": "5f6529b6f65108b280b1d2757a14d240" + }, + { + "authorized_access_point": "Kunstradfahrer", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1145164617" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1145164617" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1145164617" + } + ], + "identifier": "http://d-nb.info/gnd/1145164617", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Kunstradfahren&oldid=171099299" + ] + } + ], + "pid": "1145164617", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Radfahrer" + } + ], + "related": [ + { + "authorized_access_point": "Kunstradfahren" + }, + { + "authorized_access_point": "Kunstradfahrerin" + } + ], + "variant_access_point": [ + "Kunstfahrer", + "Kunstradsportler" + ], + "md5": "5c19693d744c7ba1ecd5ac3aa1873b56" + }, + { + "authorized_access_point": "Zartheit", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/113724061X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113724061X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)113724061X" + } + ], + "identifier": "http://d-nb.info/gnd/113724061X", + "note": [ + { + "noteType": "general", + "label": [ + "Ohne HZ Motiv" + ] + } + ], + "pid": "113724061X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "variant_access_point": [ + "Das Zarte", + "Zartes", + "Zartheit (Motiv)" + ], + "md5": "8b190c482da5a7829adda650d2d2a2b8" + }, + { + "authorized_access_point": "Bradford Beta", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1136198113" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1136198113" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1136198113" + } + ], + "identifier": "http://d-nb.info/gnd/1136198113", + "pid": "1136198113", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "variant_access_point": [ + "Bradford-Beta", + "Bradford (Druckschrift)", + "Beta (Druckschrift)" + ], + "md5": "ad3a4785453e67a51945ef8940c84bb5" + }, + { + "authorized_access_point": "Zweite industrielle Revolution", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1136044426" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1136044426" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1136044426" + } + ], + "identifier": "http://d-nb.info/gnd/1136044426", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Zweite_industrielle_Revolution&oldid=221638655" + ] + }, + { + "noteType": "general", + "label": [ + "Automatisierung der Fertigungstechnik, U\u0308bergang zur Massenproduktion basierend auf der Rationalisierung der industriellen Fertigung durch Automatisierung." + ] + } + ], + "pid": "1136044426", + "type": "bf:Topic", + "md5": "94e83dce095225e9a8dded9d32eea813" + }, + { + "authorized_access_point": "Ca\u0306lus\u0327 (Tanz)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1133521657" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133521657" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1133521657" + } + ], + "identifier": "http://d-nb.info/gnd/1133521657", + "closeMatch": [ + { + "authorized_access_point": "Ca\u0306lus\u0327", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334651957" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17763168" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb177631686" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=C%C4%83lu%C8%99ari&oldid=148469577", + "Internet - https://ich.unesco.org/en/RL/calus-ritual-00090" + ] + }, + { + "noteType": "general", + "label": [ + "urspru\u0308nglich ritueller Tanz eines in Ruma\u0308nien existierenden bru\u0308derlichen Geheimbundes; 2008 von der UNESCO u\u0308bernommen in die Repra\u0308sentative Liste des immateriellen Kulturerbes der Menschheit" + ] + } + ], + "pid": "1133521657", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kulttanz" + } + ], + "md5": "fd96d259720e885efe5aa88e4a1df578" + }, + { + "authorized_access_point": "Damana", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1132275067" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1132275067" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1132275067" + } + ], + "identifier": "http://d-nb.info/gnd/1132275067", + "note": [ + { + "noteType": "general", + "label": [ + "Indigene Ethnie im karibischen Teil Kolumbiens" + ] + } + ], + "pid": "1132275067", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Indianer" + } + ], + "variant_access_point": [ + "Arosario", + "Arsario", + "Arzario", + "Dimina", + "D'm'na", + "Guamaca", + "Malayo", + "Maracasero", + "Maromasero", + "Sanha\u0301", + "Sanja", + "Sanke\u0301", + "Wiwa (Kolumbien)" + ], + "md5": "8f5da6f15a60ea6e8f188420db15431a" + }, + { + "authorized_access_point": "Stra\u00dfenexerzitien", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1132231477" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1132231477" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1132231477" + } + ], + "identifier": "http://d-nb.info/gnd/1132231477", + "note": [ + { + "noteType": "general", + "label": [ + "Geistliche U\u0308bungen auf der Stra\u00dfe, im o\u0308ffentlichen Raum einer Stadt, bei ausgeschlossenen Randgruppen, in Suppenku\u0308chen, Drogentreffs, vor dem Sozialamt; begru\u0308ndet durch Christian Herwartz S.J." + ] + } + ], + "pid": "1132231477", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Exerzitien" + } + ], + "variant_access_point": [ + "Exerzitien auf der Stra\u00dfe" + ], + "md5": "1e0aa0296671f5abdee1f63deb54cae4" + }, + { + "authorized_access_point": "Produktmanagerin", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1131360478" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1131360478" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1131360478" + } + ], + "identifier": "http://d-nb.info/gnd/1131360478", + "pid": "1131360478", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Produktmanager" + }, + { + "authorized_access_point": "Produktmanagement" + } + ], + "md5": "d33396cac99dc84bf497dfd941ae432c" + }, + { + "authorized_access_point": "Primitive Baptists", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1127087932" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1127087932" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1127087932" + } + ], + "identifier": "http://d-nb.info/gnd/1127087932", + "note": [ + { + "noteType": "general", + "label": [ + "Sammelbezeichnung antimissionarischer Baptistenvereinigungen und Kirchen in den USA, hauptsa\u0308chlich in den su\u0308dl. Staaten" + ] + } + ], + "pid": "1127087932", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Baptisten" + } + ], + "variant_access_point": [ + "Anti-Mission Baptists", + "Old School Baptists", + "Predestinarian Baptists", + "Hard Shell Baptists" + ], + "md5": "4f67031d9a811dde61b716fccd8ec511" + }, + { + "authorized_access_point": "PoP Art (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1126284823" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1126284823" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1126284823" + } + ], + "identifier": "http://d-nb.info/gnd/1126284823", + "note": [ + { + "noteType": "general", + "label": [ + "Entworfen neben R. Kegler auch vom Schriftgestalter Desmond Poirier, Schriftfamilie mit 5 Schriften: Pop Art Comic, Pop Art Comic Bold Italic, Pop Art Comic Stencil, Pop Art Comic Three D, Pop Art Extras", + "Benutzt fu\u0308r alle PoP-Art-Schriften. Einzelne PoP-Art-Schriften werden getrennt angesetzt." + ] + } + ], + "pid": "1126284823", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + }, + { + "authorized_access_point": "Font" + } + ], + "variant_access_point": [ + "PoP-Art (Druckschrift)", + "P22 PoP Art", + "P22 PoP Art Comic", + "P22 PoP Art (Druckschrift)", + "P22-PoP-Art (Druckschrift)", + "P22-PoP-Art" + ], + "md5": "c4a2f1590091fb97707d30d903bc2a55" + }, + { + "authorized_access_point": "Braut Christi (Motiv)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1124811885" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1124811885" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1124811885" + } + ], + "identifier": "http://d-nb.info/gnd/1124811885", + "pid": "1124811885", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "29a77ce90c5272943b3973abfa88ca4e" + }, + { + "authorized_access_point": "Hilfswerk", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1124612114" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1124612114" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1124612114" + } + ], + "identifier": "http://d-nb.info/gnd/1124612114", + "pid": "1124612114", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kirchliche Organisation" + } + ], + "related": [ + { + "authorized_access_point": "Hilfsorganisation" + } + ], + "variant_access_point": [ + "Hilfswerke" + ], + "md5": "0d246d9e74126ec25d935b4ebdf2a877" + }, + { + "authorized_access_point": "Batang (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1120527775" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1120527775" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1120527775" + } + ], + "identifier": "http://d-nb.info/gnd/1120527775", + "note": [ + { + "noteType": "general", + "label": [ + "Herausgeber: HanYang Information & Communication, gibt es nicht nur fu\u0308r lateinische Alphabete" + ] + } + ], + "pid": "1120527775", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + }, + { + "authorized_access_point": "Serifenschrift" + }, + { + "authorized_access_point": "Font" + } + ], + "md5": "db68e57765be04b5f6f06a012e08d78a" + }, + { + "authorized_access_point": "NiteClub (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1120526310" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1120526310" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1120526310" + } + ], + "identifier": "http://d-nb.info/gnd/1120526310", + "pid": "1120526310", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + }, + { + "authorized_access_point": "Font" + } + ], + "variant_access_point": [ + "Nite Club (Druckschrift)" + ], + "md5": "e4f9e8a16c813304a9e96e44439816b7" + }, + { + "authorized_access_point": "Gabengebet", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1119923417" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1119923417" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1119923417" + } + ], + "identifier": "http://d-nb.info/gnd/1119923417", + "pid": "1119923417", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Oration" + } + ], + "related": [ + { + "authorized_access_point": "Gabenbereitung" + }, + { + "authorized_access_point": "Offertorium" + } + ], + "variant_access_point": [ + "Oratio secreta" + ], + "md5": "75a8244b6ad0c9b863bb03da582009c0" + }, + { + "authorized_access_point": "Niqab", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1117228215" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1117228215" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1117228215" + } + ], + "identifier": "http://d-nb.info/gnd/1117228215", + "note": [ + { + "noteType": "general", + "label": [ + "Gesichtsschleier muslimischer Frauen mit schmalem Augenschlitz, im Unterschied zur die Augen vollsta\u0308ndig bedeckenden Burka, v.a. auf der arabischen Halbinsel verbreitet; als wei\u00dfer Niqab bereits vor der islamischen Kultur von Beduinen als Schutz vor Sonne und Sand verwendet; schwarz und in Verbindung mit einem Tschador getragen, verbreitete er sich seit Ende des 19. Jh. zuna\u0308chst im Osmanischen Reich" + ] + } + ], + "pid": "1117228215", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Burka" + } + ], + "broader": [ + { + "authorized_access_point": "Schleier" + } + ], + "variant_access_point": [ + "Nikab", + "Nikap", + "niqa\u0304b" + ], + "md5": "69df76bb638c462fd8c4a31bee2217bc" + }, + { + "authorized_access_point": "Metropolitanstadt", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1114188395" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1114188395" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1114188395" + } + ], + "identifier": "http://d-nb.info/gnd/1114188395", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/wiki/Italienische_Metropolitanst%C3%A4dte" + ] + }, + { + "noteType": "general", + "label": [ + "Als Metropolitansta\u0308dte werden Gebietsko\u0308rperschaften bezeichnet, die sich auf dem Metropolitangebiet bzw. auf dem Gebiet vierzehn italienischer Gro\u00dfsta\u0308dte und deren Umland erstrecken. Anders als der Wortlaut suggeriert, handelt es sich bei den Metropolitansta\u0308dten nicht um Sta\u0308dte im eigentlichen Sinne, sondern um administrativ abgegrenzte Stadtregionen, die neben der Kernstadt auch ein gro\u00dfes Hinterland umfassen. Als solche sind die italienischen Metropolitansta\u0308dte die Rechtsnachfolger von ehemaligen Provinzen, die umbenannt und mit zusa\u0308tzlichen Funktionen ausgestattet wurden." + ] + } + ], + "pid": "1114188395", + "type": "bf:Topic", + "variant_access_point": [ + "Citta\u0300 metropolitana", + "Gro\u00dfstadt" + ], + "md5": "b9d1216718096bdc88447d6a06745cfe" + }, + { + "authorized_access_point": "Bioverbundwerkstoff", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1113031921" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1113031921" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1113031921" + } + ], + "identifier": "http://d-nb.info/gnd/1113031921", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Biokomposit&oldid=165586163" + ] + }, + { + "noteType": "general", + "label": [ + "Verbundwerkstoffe mit einer biogenen Komponente, z.B. der Matrixwerkstoff ist ein Harz wie z.B. Polymer oder Biopolymer und die Versta\u0308rkung erfolgt durch eine Naturfaser wie z.B. Hanf." + ] + } + ], + "pid": "1113031921", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Faserverbundwerkstoff" + }, + { + "authorized_access_point": "Biowerkstoff" + } + ], + "variant_access_point": [ + "Biokomposit", + "Biocomposit" + ], + "md5": "976e3365cc2ed8d947ce7b8a274a6013" + }, + { + "authorized_access_point": "Lebensreform (Motiv)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1111593051" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1111593051" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1111593051" + } + ], + "identifier": "http://d-nb.info/gnd/1111593051", + "pid": "1111593051", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "5f4b08b01c87f73a7299b24f416293c2" + }, + { + "authorized_access_point": "Mangan (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/110642154X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)110642154X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)110642154X" + } + ], + "identifier": "http://d-nb.info/gnd/110642154X", + "note": [ + { + "noteType": "general", + "label": [ + "Satzschrift, verwendet fu\u0308r das Gutenberg-Jahrbuch 2016" + ] + } + ], + "pid": "110642154X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Font" + } + ], + "md5": "05d873707cd350380bb5f116c3f3f625" + }, + { + "authorized_access_point": "Orthodoxer Christ", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1104861453" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1104861453" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1104861453" + } + ], + "identifier": "http://d-nb.info/gnd/1104861453", + "note": [ + { + "noteType": "general", + "label": [ + "Angeho\u0308riger einer orthodoxen Kirche" + ] + } + ], + "pid": "1104861453", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Christ" + } + ], + "md5": "e22f85a1499e872c999e577bc7b0c762" + }, + { + "authorized_access_point": "Bibliolog", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1103248596" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1103248596" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1103248596" + } + ], + "identifier": "http://d-nb.info/gnd/1103248596", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/wiki/Bibliolog" + ] + }, + { + "noteType": "general", + "label": [ + "Hermeneutisch-methodischer Zugang zu biblischen Texten, der auf die Begegnung zwischen Mensch und biblischem Text zielt; eine Gruppe, Gemeinde oder Schulklasse identifiziert sich mit biblischen Gestalten und entdeckt auf diesem Wege einen biblischen Text, der Leiter gibt den Text vor und weist die Rollen zu, methodisch bewegt sich der Bibliolog auf der rein sprachlichen Ebene, eng am Text; hermeneutisch an der Texterkenntnis orientiert" + ] + } + ], + "pid": "1103248596", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Darstellendes Spiel" + } + ], + "related": [ + { + "authorized_access_point": "Bibliodrama" + } + ], + "md5": "f78edd4f0778e3ffa303baf691c93078" + }, + { + "authorized_access_point": "Schleifenquantengravitation", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1103240579" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1103240579" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1103240579" + } + ], + "identifier": "http://d-nb.info/gnd/1103240579", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://en.wikipedia.org/w/index.php?title=Loop_quantum_gravity&oldid=1232727400" + ] + }, + { + "noteType": "general", + "label": [ + "Hintergrundmetrikunabha\u0308ngige Theorie der Quantengravitation, in der die Raum-Zeit durch ein Netzwerk dargestellt wird; also diskret ist." + ] + } + ], + "pid": "1103240579", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Hintergrundunabha\u0308ngigkeit" + }, + { + "authorized_access_point": "Quantengravitation" + } + ], + "related": [ + { + "authorized_access_point": "Wilson-Loop" + }, + { + "authorized_access_point": "Quantenkosmologie" + }, + { + "authorized_access_point": "Raum-Zeit" + } + ], + "variant_access_point": [ + "Loop-Quantengravitation", + "Loop Quantum Gravity" + ], + "md5": "a768fb7e0bf690be63dfd0d66d9eaaad" + }, + { + "authorized_access_point": "Ungeziefer (Motiv)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1101498900" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1101498900" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1101498900" + } + ], + "identifier": "http://d-nb.info/gnd/1101498900", + "pid": "1101498900", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "d196040640361c33007577e1e593be67" + }, + { + "authorized_access_point": "Tomtom (Musikinstrument)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1085190633" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1085190633" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1085190633" + } + ], + "identifier": "http://d-nb.info/gnd/1085190633", + "closeMatch": [ + { + "authorized_access_point": "Tom-tom", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334657823" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2003002994" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2003002994" + } + ] + }, + { + "authorized_access_point": "Tom-tom", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334657823" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16258655" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb162586557" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "BSZ Liste: \"Musikalische Besetzungen\" - http://verbund-swop.bsz-bw.de/volltexte/2010/174/" + ] + } + ], + "pid": "1085190633", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Trommel" + } + ], + "variant_access_point": [ + "Tom-Tom (Musikinstrument)", + "Tom (Musikinstrument)" + ], + "md5": "321b7b7280b6395d1d654b96d078c4a4" + }, + { + "authorized_access_point": "Kleopatra (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/108229814X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)108229814X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)108229814X" + } + ], + "identifier": "http://d-nb.info/gnd/108229814X", + "pid": "108229814X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + }, + { + "authorized_access_point": "Auszeichnungsschrift" + }, + { + "authorized_access_point": "Font" + } + ], + "md5": "b59bf987734cf52660c29a9a0b8388dd" + }, + { + "authorized_access_point": "Umstandskleidung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1077459335" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1077459335" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1077459335" + } + ], + "identifier": "http://d-nb.info/gnd/1077459335", + "note": [ + { + "noteType": "general", + "label": [ + "Besonders geschnittene Kleidung fu\u0308r Frauen, die schwanger sind" + ] + } + ], + "pid": "1077459335", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Frauenkleidung" + } + ], + "variant_access_point": [ + "Umstandsmode", + "Schwangerschaftskleidung" + ], + "md5": "750418ba79614e84990dd76f2e7c5628" + }, + { + "authorized_access_point": "FS Silas", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1077386478" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1077386478" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1077386478" + } + ], + "identifier": "http://d-nb.info/gnd/1077386478", + "note": [ + { + "noteType": "general", + "label": [ + "Schriftfamilie, mit und ohne Serifen, hergestellt von Fontsmith", + "Benutzt fu\u0308r alle FS-Silas-Schriften. Einzelne FS-Silas-Schriften werden getrennt angesetzt." + ] + } + ], + "pid": "1077386478", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Antiqua" + }, + { + "authorized_access_point": "Font" + } + ], + "variant_access_point": [ + "Silas (Druckschrift)" + ], + "md5": "f98116f30d592315a2a4f1383d017e38" + }, + { + "authorized_access_point": "Halb-o\u0308ffentliche Organisation", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1077065876" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1077065876" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1077065876" + } + ], + "identifier": "http://d-nb.info/gnd/1077065876", + "pid": "1077065876", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Organisation" + } + ], + "md5": "dca5138435d3c4e6c80277877b77c84c" + }, + { + "authorized_access_point": "Markenwelt", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1069876534" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1069876534" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1069876534" + } + ], + "identifier": "http://d-nb.info/gnd/1069876534", + "note": [ + { + "noteType": "general", + "label": [ + "Themenpark oder Ausstellung, die eine Marke oder ein Unternehmen erlebbar machen, Bsp. Autostadt Wolfsburg, BMW-Welt Mu\u0308nchen" + ] + } + ], + "pid": "1069876534", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Marketing" + }, + { + "authorized_access_point": "Themenpark" + } + ], + "related": [ + { + "authorized_access_point": "Ausstellung" + } + ], + "variant_access_point": [ + "Brandland", + "Industrieerlebniswelt" + ], + "md5": "eb13bbaca1eb1f98a3783fe1641ab3b8" + }, + { + "authorized_access_point": "Kobolt (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1069526703" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1069526703" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1069526703" + } + ], + "identifier": "http://d-nb.info/gnd/1069526703", + "note": [ + { + "noteType": "general", + "label": [ + "Speziell fu\u0308r ein Buch aus der Handschrift von Alexandra Klobouk entwickelt" + ] + } + ], + "pid": "1069526703", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + }, + { + "authorized_access_point": "Font" + } + ], + "md5": "c0281fe977a774940fb8ef17b0496b3f" + }, + { + "authorized_access_point": "Kleist-Fraktur", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1069453420" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1069453420" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1069453420" + } + ], + "identifier": "http://d-nb.info/gnd/1069453420", + "note": [ + { + "noteType": "general", + "label": [ + "Kostenlose digitalisierte Version von Dieter Steffmann" + ] + } + ], + "pid": "1069453420", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fraktur (Druckschrift)" + }, + { + "authorized_access_point": "Font" + } + ], + "md5": "f56112efc25fcf9560bb2751aee4b372" + }, + { + "authorized_access_point": "Hilbertsche Geometrie", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1068825820" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1068825820" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1068825820" + } + ], + "identifier": "http://d-nb.info/gnd/1068825820", + "pid": "1068825820", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Geometrie" + } + ], + "variant_access_point": [ + "Hilbert-Geometrie", + "Hilbert geometry", + "Hilbertian geometry" + ], + "md5": "5db9d3316b42415238707720e0b996ef" + }, + { + "authorized_access_point": "Marketingberaterin", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1068606975" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1068606975" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1068606975" + } + ], + "identifier": "http://d-nb.info/gnd/1068606975", + "pid": "1068606975", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Marketingberatung" + } + ], + "related": [ + { + "authorized_access_point": "Marketingberater" + } + ], + "md5": "412371b913ce7e6757dc7bc554770f79" + }, + { + "authorized_access_point": "Prayer Book (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1068048328" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1068048328" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1068048328" + } + ], + "identifier": "http://d-nb.info/gnd/1068048328", + "note": [ + { + "noteType": "general", + "label": [ + "Zuerst verwendet im Book of common prayer (Prayer Book of King Edward VII), Essex House Press 1903" + ] + } + ], + "pid": "1068048328", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "variant_access_point": [ + "Prayer Book Type" + ], + "md5": "e3040be4d14e24799aa47b0fca9a3666" + }, + { + "authorized_access_point": "Bollenhut", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1067974490" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1067974490" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1067974490" + } + ], + "identifier": "http://d-nb.info/gnd/1067974490", + "note": [ + { + "noteType": "general", + "label": [ + "Zum Inbegriff der Schwarzwa\u0308lder Tracht gewordene weibliche Kopfbedeckung aus Stroh mit roten (bei Ma\u0308dchen) oder schwarzen (bei Frauen) Wollba\u0308llchen (\"Bollen\")" + ] + } + ], + "pid": "1067974490", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Damenhut" + }, + { + "authorized_access_point": "Tracht" + } + ], + "md5": "540c99fe56b2ed9c9f9db5441be42eb5" + }, + { + "authorized_access_point": "Orius laevigatus", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1066896534" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1066896534" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1066896534" + } + ], + "identifier": "http://d-nb.info/gnd/1066896534", + "note": [ + { + "noteType": "general", + "label": [ + "Nu\u0308tzlinge aus der Familie der Blumenwanzen" + ] + } + ], + "pid": "1066896534", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Blumenwanzen" + } + ], + "variant_access_point": [ + "Triphleps laevigata" + ], + "md5": "a0e51d595935597fedf2559e3708454b" + }, + { + "authorized_access_point": "Yard Sale", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1065486421" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1065486421" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1065486421" + } + ], + "identifier": "http://d-nb.info/gnd/1065486421", + "note": [ + { + "noteType": "general", + "label": [ + "Majuskelschrift gru\u0308ndet auf der handgeschriebenen Schrift eines unbekannten Nachbarn" + ] + } + ], + "pid": "1065486421", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Font" + }, + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "271e12f174de75b2fdded283047b7d58" + }, + { + "authorized_access_point": "Mundart Valencianisch (Valldigna)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/106307147X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)106307147X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)106307147X" + } + ], + "identifier": "http://d-nb.info/gnd/106307147X", + "note": [ + { + "noteType": "general", + "label": [ + "Valencianische Mundart im Tal Valldigna in der span. Provinz Valencia" + ] + } + ], + "pid": "106307147X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Valencianisch" + } + ], + "md5": "ec224a667c7692402611829a92da25e1" + }, + { + "authorized_access_point": "Folkmusiker", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/105858488X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)105858488X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)105858488X" + } + ], + "identifier": "http://d-nb.info/gnd/105858488X", + "closeMatch": [ + { + "authorized_access_point": "Folk musicians", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133818382" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh97002077" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh97002077" + } + ] + }, + { + "authorized_access_point": "Musiciens de folk", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133818382" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12508672" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12508672r" + } + ] + } + ], + "pid": "105858488X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Musiker" + } + ], + "related": [ + { + "authorized_access_point": "Folkmusikerin" + }, + { + "authorized_access_point": "Folk music" + } + ], + "md5": "5a4931548215b8b39a63b3bd7fe2f743" + }, + { + "authorized_access_point": "Fresco (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1055013458" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1055013458" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1055013458" + } + ], + "identifier": "http://d-nb.info/gnd/1055013458", + "pid": "1055013458", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Antiqua" + }, + { + "authorized_access_point": "Font" + } + ], + "md5": "4efc0c25807ca94bae21ecf01bb74643" + }, + { + "authorized_access_point": "Zeitungsmarke", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1054183104" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1054183104" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1054183104" + } + ], + "identifier": "http://d-nb.info/gnd/1054183104", + "note": [ + { + "noteType": "general", + "label": [ + "Markengattung zum Frankieren von Zeitungssendungen" + ] + } + ], + "pid": "1054183104", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Briefmarke" + } + ], + "md5": "493ab6bd0521c6d69ea248f3c30a8849" + }, + { + "authorized_access_point": "Gescha\u0308ftsdrucksachenmarke", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1054182779" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1054182779" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1054182779" + } + ], + "identifier": "http://d-nb.info/gnd/1054182779", + "note": [ + { + "noteType": "general", + "label": [ + "Markenart zur Freimachung bei Massenauslieferung von Gescha\u0308ftsdrucksachen" + ] + } + ], + "pid": "1054182779", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Drucksachenmarke" + } + ], + "md5": "097a6d9f1f10a35670050b69af6732e5" + }, + { + "authorized_access_point": "Drucksachenmarke", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1054182620" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1054182620" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1054182620" + } + ], + "identifier": "http://d-nb.info/gnd/1054182620", + "note": [ + { + "noteType": "general", + "label": [ + "Markengattung zum Freimachen von Drucksachen" + ] + } + ], + "pid": "1054182620", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Briefmarke" + } + ], + "md5": "424810654c8c4677d0f08e683c4e36ed" + }, + { + "authorized_access_point": "Line (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1051146089" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1051146089" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1051146089" + } + ], + "identifier": "http://d-nb.info/gnd/1051146089", + "note": [ + { + "noteType": "general", + "label": [ + "Fu\u0308r das schwedische Mode- und Kulturmagazin \"Rodeo\" 2012 bei \"Letters from Sweden\" entworfen; beeinflusst von Scho\u0308nheit, Schreibschrift, Graffiti und Kritzeleien" + ] + } + ], + "pid": "1051146089", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + }, + { + "authorized_access_point": "Font" + } + ], + "md5": "a71f8de36d0dda8a7132bbe4586a3f90" + }, + { + "authorized_access_point": "Niclosamid", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1049270851" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1049270851" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1049270851" + } + ], + "identifier": "http://d-nb.info/gnd/1049270851", + "exactMatch": [ + { + "authorized_access_point": "Niclosamide", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1279524227" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D009534" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D009534" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Derivat der Salicylsa\u0308ure und des Anilins, die miteinander als Amid verknu\u0308pft sind (Salicylanilid); Wirkung: Vermizid und Molluskizid; C13H8Cl2N2O4" + ] + } + ], + "pid": "1049270851", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Salicylsa\u0308urederivate" + }, + { + "authorized_access_point": "Anilinderivate" + } + ], + "variant_access_point": [ + "Ethanolamin-Salz" + ], + "md5": "0d7ed6e97779b59e80c0a5e88fbbb1dd" + }, + { + "authorized_access_point": "Sommelie\u0300re", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1044279206" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1044279206" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1044279206" + } + ], + "identifier": "http://d-nb.info/gnd/1044279206", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Weinkellner&oldid=209455822" + ] + } + ], + "pid": "1044279206", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kellnerin" + } + ], + "related": [ + { + "authorized_access_point": "Sommelier" + } + ], + "variant_access_point": [ + "Weinkellnerin" + ], + "md5": "e91509660914ddd4c432b2af15c5a4a3" + }, + { + "authorized_access_point": "Crowdfunding", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1041611064" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1041611064" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1041611064" + } + ], + "identifier": "http://d-nb.info/gnd/1041611064", + "closeMatch": [ + { + "authorized_access_point": "Crowd funding", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334879613" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2012003482" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2012003482" + } + ] + }, + { + "authorized_access_point": "Financement participatif", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334879613" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16596756q" + }, + { + "type": "uri", + "value": "https://catalogue.bnf.fr/ark:/12148/cb16596756q" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Crowdfunding", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1042215081" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "30026-6" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/30026-6" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Meist u\u0308ber digitale Plattformen abgewickelte Finanzierungsmo\u0308glichkeit, bei der eine gro\u0308\u00dfere Anzahl von Personen den Finanzierungsbedarf eines Projektes deckt." + ] + } + ], + "pid": "1041611064", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Finanzierung" + }, + { + "authorized_access_point": "Kapitalbeschaffung" + }, + { + "authorized_access_point": "Crowdsourcing" + } + ], + "variant_access_point": [ + "Schwarmfinanzierung", + "Crowdinvestment", + "Crowdinvesting" + ], + "md5": "6958db55152f21e5a98a217af3e8b5b6" + }, + { + "authorized_access_point": "Belgischer Student", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1036907430" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1036907430" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1036907430" + } + ], + "identifier": "http://d-nb.info/gnd/1036907430", + "closeMatch": [ + { + "authorized_access_point": "Belgian students", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334679959" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85012953" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85012953" + } + ] + }, + { + "authorized_access_point": "E\u0301tudiants belges", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334679959" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16084808" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16084808k" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Benutzt soweit im Ausland lebend" + ] + } + ], + "pid": "1036907430", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ausla\u0308ndischer Student" + }, + { + "authorized_access_point": "Belgier" + } + ], + "md5": "a3d3bf0f0229e4866eebca321d2fb2be" + }, + { + "authorized_access_point": "Emotionaler Missbrauch", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1036857263" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1036857263" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1036857263" + } + ], + "identifier": "http://d-nb.info/gnd/1036857263", + "closeMatch": [ + { + "authorized_access_point": "Psychological abuse", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1221158570" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh94002308" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh94002308" + } + ] + }, + { + "authorized_access_point": "Violence psychologique", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1221158570" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16918426" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16918426g" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia, unter Kindesmisshandlung - https://de.wikipedia.org/w/index.php?oldid=245619752" + ] + } + ], + "pid": "1036857263", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Missbrauch" + } + ], + "related": [ + { + "authorized_access_point": "Psychoterror" + }, + { + "authorized_access_point": "Mobbing" + }, + { + "authorized_access_point": "Gaslighting" + } + ], + "variant_access_point": [ + "Psychischer Missbrauch", + "Emotionale Gewalt", + "Psychische Gewalt", + "Seelische Gewalt" + ], + "md5": "bf3d40893ec49aabfc5ce9575da7a783" + }, + { + "authorized_access_point": "Movimiento 15-M", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1029263361" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1029263361" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1029263361" + } + ], + "identifier": "http://d-nb.info/gnd/1029263361", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Proteste_in_Spanien_2011/2012&oldid=246952051", + "Wikipedia - https://es.wikipedia.org/wiki/Movimiento_15-M" + ] + }, + { + "noteType": "general", + "label": [ + "Span. polit. Protestbewegung seit d. 15. Mai 2011" + ] + } + ], + "pid": "1029263361", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Protestbewegung" + } + ], + "variant_access_point": [ + "15M", + "15-M", + "Indignados", + "Movimiento de los indignados", + "Bewegung 15. Mai" + ], + "md5": "91e6abb788f3604b5c3b5d04f223c375" + }, + { + "authorized_access_point": "O\u0308sterreichischer Student", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7855380-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1019980389" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7855380-5" + } + ], + "identifier": "http://d-nb.info/gnd/7855380-5", + "closeMatch": [ + { + "authorized_access_point": "Austrian students", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)133467972X" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85009755" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85009755" + } + ] + }, + { + "authorized_access_point": "E\u0301tudiants autrichiens", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)133467972X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17124632" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17124632z" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Benutzt soweit im Ausland lebend" + ] + } + ], + "pid": "1019980389", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ausla\u0308ndischer Student" + }, + { + "authorized_access_point": "O\u0308sterreicher" + } + ], + "md5": "ff93d899538ffd39ba4dbc7886619609" + }, + { + "authorized_access_point": "Kieselschiefer", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7758564-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1015187382" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7758564-1" + } + ], + "identifier": "http://d-nb.info/gnd/7758564-1", + "pid": "1015187382", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kieselsediment" + } + ], + "md5": "f556dbc08b616f00c7d7f75dff500091" + }, + { + "authorized_access_point": "Briefmarkenauktion", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7755757-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1014400783" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7755757-8" + } + ], + "identifier": "http://d-nb.info/gnd/7755757-8", + "closeMatch": [ + { + "authorized_access_point": "Postage stamp auctions", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1335137777" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2003012332" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2003012332" + } + ] + } + ], + "pid": "1014400783", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Auktion" + } + ], + "variant_access_point": [ + "Briefmarke", + "Briefmarkenversteigerung" + ], + "md5": "fd606fbfde3af941b47510a67ca22005" + }, + { + "authorized_access_point": "Gigaku", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7753091-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1013709640" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7753091-3" + } + ], + "identifier": "http://d-nb.info/gnd/7753091-3", + "closeMatch": [ + { + "authorized_access_point": "Gigaku", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134319576" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh88005510" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh88005510" + } + ] + }, + { + "authorized_access_point": "Gigaku", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134319576" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12423745" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb124237455" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Japan. Tanzform, im 8. Jh. aus China u\u0308bernommen" + ] + } + ], + "pid": "1013709640", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tanz" + } + ], + "md5": "9f436db9c2125dbeef943d5f4d2850cc" + }, + { + "authorized_access_point": "Krait", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7736415-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1010242008" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7736415-6" + } + ], + "identifier": "http://d-nb.info/gnd/7736415-6", + "exactMatch": [ + { + "authorized_access_point": "Bungarus fasciatus", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1323122141" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17057750" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17057750b" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Art der Giftnattern (Elapidae)" + ] + } + ], + "pid": "1010242008", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Giftnattern" + } + ], + "variant_access_point": [ + "Gelber Bungar", + "Ba\u0308nder-Krait", + "Geba\u0308nderter Krait", + "Bungarus fasciatus" + ], + "md5": "e67512a2879e680d6bbab0111eeafab2" + }, + { + "authorized_access_point": "Reflexion (Psychologie)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7733566-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1009887017" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7733566-1" + } + ], + "identifier": "http://d-nb.info/gnd/7733566-1", + "note": [ + { + "noteType": "general", + "label": [ + "Zuru\u0308cklenkung der Aufmerksamkeit auf das Ich und seine Ta\u0308tigkeit." + ] + } + ], + "pid": "1009887017", + "type": "bf:Topic", + "md5": "89b5d0c17a8854748e1d78b890b8f513" + }, + { + "authorized_access_point": "Kammersonate", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7727964-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1008996270" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7727964-5" + } + ], + "identifier": "http://d-nb.info/gnd/7727964-5", + "note": [ + { + "noteType": "general", + "label": [ + "Im Barock als Gegensatz zur Kirchensonate, im 20. Jhdt. als Bezeichnung wieder aufgegriffen" + ] + } + ], + "pid": "1008996270", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Sonate" + } + ], + "variant_access_point": [ + "Sonata da camera", + "Sonate de chambre" + ], + "md5": "e7565eeed5c0acdbca61067d4b05e027" + }, + { + "authorized_access_point": "Messerschmiedezunft", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7722831-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1008049115" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7722831-5" + } + ], + "identifier": "http://d-nb.info/gnd/7722831-5", + "pid": "1008049115", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zunft" + } + ], + "variant_access_point": [ + "Messerschmied" + ], + "md5": "eda4c2b888611654d8cf0ec609af1c28" + }, + { + "authorized_access_point": "Golfkrieg (1990-1991, Motiv)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7718660-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)100735531X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7718660-6" + } + ], + "identifier": "http://d-nb.info/gnd/7718660-6", + "pid": "100735531X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "7012e925a503ae42d91f0fef87f85d79" + }, + { + "authorized_access_point": "Poller", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7716437-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1006894675" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7716437-4" + } + ], + "identifier": "http://d-nb.info/gnd/7716437-4", + "pid": "1006894675", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Sa\u0308ule" + } + ], + "md5": "bc150a39f85a53f280db966cdfa9451c" + }, + { + "authorized_access_point": "Conditio humana", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7701000-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1002238951" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7701000-0" + } + ], + "identifier": "http://d-nb.info/gnd/7701000-0", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/wiki/Conditio_humana" + ] + }, + { + "noteType": "general", + "label": [ + "Die Umsta\u0308nde des Menschseins und die Natur des Menschen als Gegenstand der Philosophischen Anthropologie" + ] + } + ], + "pid": "1002238951", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Philosophische Anthropologie" + } + ], + "variant_access_point": [ + "condicio humana" + ], + "md5": "4cd6346674cc9cc53efa587043f0f483" + }, + { + "authorized_access_point": "Steinschrift", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7693298-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1000642119" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7693298-9" + } + ], + "identifier": "http://d-nb.info/gnd/7693298-9", + "note": [ + { + "noteType": "general", + "label": [ + "Benutzt fu\u0308r alle Steinschrift-Schriften. Einzelne Steinschrift-Schriften werden getrennt angesetzt." + ] + } + ], + "pid": "1000642119", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Antiqua" + } + ], + "md5": "ee3da820cdab3b130c864b589ec265c2" + }, + { + "authorized_access_point": "Mo\u0308rike-Fraktur", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7690681-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1000168972" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7690681-4" + } + ], + "identifier": "http://d-nb.info/gnd/7690681-4", + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungsjahr: 1923" + ] + } + ], + "pid": "1000168972", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fraktur (Druckschrift)" + } + ], + "md5": "47f29786b213f1aaecf778ec678b434b" + }, + { + "authorized_access_point": "Gebrochene Schrift", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7683814-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)998776785" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7683814-6" + } + ], + "identifier": "http://d-nb.info/gnd/7683814-6", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - http://www.typolexikon.de/g/gebrochene-schriften.html" + ] + }, + { + "noteType": "general", + "label": [ + "Auch Blackletter, Gotische Schrift oder Frakturschrift umgangssprachlich genannt" + ] + } + ], + "pid": "998776785", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "related": [ + { + "authorized_access_point": "Gotische Schrift" + }, + { + "authorized_access_point": "Fraktur (Druckschrift)" + } + ], + "variant_access_point": [ + "Deutsche Schrift" + ], + "md5": "6745466e5ee0edd3ca1f5510098ad19d" + }, + { + "authorized_access_point": "Kettenschmied", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7668511-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)995780951" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7668511-1" + } + ], + "identifier": "http://d-nb.info/gnd/7668511-1", + "note": [ + { + "noteType": "general", + "label": [ + "Schmied, der spezialisiert ist auf das Schmieden von Gliederketten aus Eisen" + ] + } + ], + "pid": "995780951", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schmied" + } + ], + "md5": "76b6bc8bb6715619f2df5f071ff1e10e" + }, + { + "authorized_access_point": "Jongo", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7661541-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)994659857" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7661541-8" + } + ], + "identifier": "http://d-nb.info/gnd/7661541-8", + "closeMatch": [ + { + "authorized_access_point": "Jongo (Dance)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334651493" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2006000144" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2006000144" + } + ] + }, + { + "authorized_access_point": "Jongo (danse)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334651493" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17146982" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb171469827" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Afrobrasilianischer Tanz" + ] + } + ], + "pid": "994659857", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tanz" + } + ], + "variant_access_point": [ + "Caxambu (Tanz)" + ], + "md5": "d7365ac1e3d809bca32757e53ebaa9e4" + }, + { + "authorized_access_point": "A\u0308rztliche Behandlung (Motiv)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7657749-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)99405212X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7657749-1" + } + ], + "identifier": "http://d-nb.info/gnd/7657749-1", + "pid": "99405212X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "13a326fa3bc0f99d55ae4479fe5105ff" + }, + { + "authorized_access_point": "Pachisi", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7648685-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)99283600X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7648685-0" + } + ], + "identifier": "http://d-nb.info/gnd/7648685-0", + "pid": "99283600X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Brettspiel" + } + ], + "variant_access_point": [ + "Chaupad", + "Chaupar", + "Chaupat", + "Chaupur", + "Pat (Brettspiel)" + ], + "md5": "fb152191b2038626285717ec166cfbf3" + }, + { + "authorized_access_point": "Neu-Fraktur", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7647830-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992757126" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7647830-0" + } + ], + "identifier": "http://d-nb.info/gnd/7647830-0", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia unter Koch, Rudolf - http://www.klingspor-museum.de/KlingsporKuenstler/Schriftdesigner/Koch/koch_special.pdf" + ] + }, + { + "noteType": "general", + "label": [ + "Entstehungsjahr: 1933/34" + ] + } + ], + "pid": "992757126", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fraktur (Druckschrift)" + } + ], + "md5": "085a9e389400aa6bb98cdd0693362a55" + }, + { + "authorized_access_point": "Retina (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7647600-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992754909" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7647600-5" + } + ], + "identifier": "http://d-nb.info/gnd/7647600-5", + "pid": "992754909", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "99eb49e6e9ef6257875c0dc6de6101fe" + }, + { + "authorized_access_point": "Arabische Schrift (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7647567-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992754550" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7647567-0" + } + ], + "identifier": "http://d-nb.info/gnd/7647567-0", + "closeMatch": [ + { + "authorized_access_point": "Arabic type", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113367707X" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85139095" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85139095" + } + ] + }, + { + "authorized_access_point": "Caracte\u0300res arabes (imprimerie)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113367707X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11973333" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11973333t" + } + ] + }, + { + "authorized_access_point": "Tipos de imprenta a\u0301rabes", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254405860" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX550520" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX550520" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Verwendet fu\u0308r alle auf dem arabischen Schriftsystem basierenden Druckschriften; Einordnung in Gruppe XI der DIN 16518" + ] + } + ], + "pid": "992754550", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + }, + { + "authorized_access_point": "Arabische Schrift" + } + ], + "md5": "8c62562f677beb911cacd42ce89ce418" + }, + { + "authorized_access_point": "Typewriter Elite", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7647565-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992754534" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7647565-7" + } + ], + "identifier": "http://d-nb.info/gnd/7647565-7", + "pid": "992754534", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Antiqua" + }, + { + "authorized_access_point": "Font" + } + ], + "md5": "d4478b4069672102ab1737d16fb4b6a0" + }, + { + "authorized_access_point": "FF Schulbuch", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7647539-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992754305" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7647539-6" + } + ], + "identifier": "http://d-nb.info/gnd/7647539-6", + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungszeit 1992, bei MyFonts ab Januar 2000" + ] + } + ], + "pid": "992754305", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Groteskschrift" + }, + { + "authorized_access_point": "Font" + } + ], + "md5": "c3cbe9bc8d432549c9117070ad048c78" + }, + { + "authorized_access_point": "Koch-Antiqua", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7647475-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992753694" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7647475-6" + } + ], + "identifier": "http://d-nb.info/gnd/7647475-6", + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungszeit 1922, auch kursiv" + ] + } + ], + "pid": "992753694", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Antiqua" + } + ], + "md5": "3b1e9d8e1019c59580bcd8152ffae542" + }, + { + "authorized_access_point": "Maximilian-Gotisch", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7647473-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)99275366X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7647473-2" + } + ], + "identifier": "http://d-nb.info/gnd/7647473-2", + "note": [ + { + "noteType": "general", + "label": [ + "Vero\u0308ffentlicht: 1914. Abweichende Entstehungszeit 1917 (Klingspor)", + "Die Benennung Maximilian-Fraktur (Zettelkatalog Deutsches Buch- und Schriftmuseum, Entstehungszeit 1922) ist bislang nur nachgewiesen in: Faust : eine Monatsschrift fu\u0308r Kunst, Literatur und Musik. Die Zeitschrift erschien von 1921-1926. Die Maximilian-Fraktur entspricht der Maximilian-Gotisch (Stand: 22.10.2021)" + ] + } + ], + "pid": "99275366X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gebrochene Schrift" + } + ], + "variant_access_point": [ + "Maximilian (Druckschrift)", + "Maximilian-Fraktur" + ], + "md5": "409cb64ba10edf463f1da3d2a6d21787" + }, + { + "authorized_access_point": "Metro (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7647406-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992752973" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7647406-9" + } + ], + "identifier": "http://d-nb.info/gnd/7647406-9", + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungsjahr 1929 (normal, mager, halbfett, fett)", + "Benutzt fu\u0308r alle Metro-Schriften. Einzelne Metro-Schriften werden getrennt angesetzt." + ] + } + ], + "pid": "992752973", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Groteskschrift" + } + ], + "variant_access_point": [ + "Metroblack", + "Metrolite", + "Metrothin", + "Metromedium" + ], + "md5": "b39eb2e71636d2e9145c88f6d23569d0" + }, + { + "authorized_access_point": "Astre\u0301e", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7647399-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992751020" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7647399-5" + } + ], + "identifier": "http://d-nb.info/gnd/7647399-5", + "pid": "992751020", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "887e6e48fc44620e4b78489e5a9aa93a" + }, + { + "authorized_access_point": "Offenbacher Fraktur", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7647389-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)99274881X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7647389-2" + } + ], + "identifier": "http://d-nb.info/gnd/7647389-2", + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungszeit 1901; Hausschnitt" + ] + } + ], + "pid": "99274881X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fraktur (Druckschrift)" + } + ], + "md5": "99688cd2f030cb0f11a449455f805586" + }, + { + "authorized_access_point": "Helena (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7647381-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992747031" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7647381-8" + } + ], + "identifier": "http://d-nb.info/gnd/7647381-8", + "pid": "992747031", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + }, + { + "authorized_access_point": "Font" + } + ], + "md5": "7ae40f82ff28b9b5b9aeeddd73d079de" + }, + { + "authorized_access_point": "Wilhelm-Klingspor-Schrift", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7647356-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992746779" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7647356-9" + } + ], + "identifier": "http://d-nb.info/gnd/7647356-9", + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungszeit 1924; weitere Formen: Wilhelm-Klingspor-Gotisch, Wilhelm-Klingspor-Fraktur" + ] + } + ], + "pid": "992746779", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gebrochene Schrift" + } + ], + "variant_access_point": [ + "Wilhelm Klingspor Schrift" + ], + "md5": "ab7b7f17c8db82d71be6d724feafe9cb" + }, + { + "authorized_access_point": "Offenbacher Schwabacher", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7647301-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992746248" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7647301-6" + } + ], + "identifier": "http://d-nb.info/gnd/7647301-6", + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungszeit: 1900" + ] + } + ], + "pid": "992746248", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schwabacher" + } + ], + "md5": "0de8c49e8c4c2c8fa5c94920e8a698e9" + }, + { + "authorized_access_point": "Meidoorn (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7647276-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992745969" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7647276-0" + } + ], + "identifier": "http://d-nb.info/gnd/7647276-0", + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungszeit 1927; Schrift der Heuvelpers" + ] + } + ], + "pid": "992745969", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "variant_access_point": [ + "Meidoorntype" + ], + "md5": "156d19ec15ecfcfca9ed507d734e1da8" + }, + { + "authorized_access_point": "Konupkova italka", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7647206-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992745292" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7647206-1" + } + ], + "identifier": "http://d-nb.info/gnd/7647206-1", + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungszeit vor 1940" + ] + } + ], + "pid": "992745292", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "bf98dad56d8bdc6cb4faa0cd72a45b36" + }, + { + "authorized_access_point": "Ko\u0308nig-Antiqua", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7647196-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992745187" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7647196-2" + } + ], + "identifier": "http://d-nb.info/gnd/7647196-2", + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungszeit 1905" + ] + } + ], + "pid": "992745187", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Antiqua" + } + ], + "md5": "b6ed4c7a151f792c76269d2850ca8a77" + }, + { + "authorized_access_point": "Liturgisch (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7647185-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)99274508X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7647185-8" + } + ], + "identifier": "http://d-nb.info/gnd/7647185-8", + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungszeit um 1906" + ] + } + ], + "pid": "99274508X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gotische Schrift" + } + ], + "variant_access_point": [ + "Hupp-Liturgisch" + ], + "md5": "d51c7635335d6346d4c8137cf8da61f8" + }, + { + "authorized_access_point": "Offenbach (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7647157-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992744792" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7647157-3" + } + ], + "identifier": "http://d-nb.info/gnd/7647157-3", + "note": [ + { + "noteType": "general", + "label": [ + "Gestalter: Koch, Rudolf <1876-1934>, fertiggestellt von Friedrich Heinrichsen, Halbfette von Hans Ku\u0308hne; Druckschrift mit gebrochenen Versalien" + ] + } + ], + "pid": "992744792", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "variant_access_point": [ + "Offenbacher Schrift (Druckschrift)" + ], + "md5": "c21f5cb635e4743c69899875a29767fc" + }, + { + "authorized_access_point": "Amelia (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7647085-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992744091" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7647085-4" + } + ], + "identifier": "http://d-nb.info/gnd/7647085-4", + "note": [ + { + "noteType": "general", + "label": [ + "Enstehungsjahr 1965" + ] + } + ], + "pid": "992744091", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + }, + { + "authorized_access_point": "Font" + } + ], + "md5": "0eb841ccbd11bd2851f3112c20be986e" + }, + { + "authorized_access_point": "Cocotte minute (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7647034-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992743605" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7647034-9" + } + ], + "identifier": "http://d-nb.info/gnd/7647034-9", + "note": [ + { + "noteType": "general", + "label": [ + "Nachgewiesen 2005" + ] + } + ], + "pid": "992743605", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "5438515634363d2d527503c1d7e1097e" + }, + { + "authorized_access_point": "Zeppelin (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7647001-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992743273" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7647001-5" + } + ], + "identifier": "http://d-nb.info/gnd/7647001-5", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia unter Rudolf Koch - http://www.klingspor-museum.de/KlingsporKuenstler/Schriftdesigner/Koch/RudolfKoch.pdf" + ] + }, + { + "noteType": "general", + "label": [ + "Entstehunmgsjahr 1929; Auszeichnungsschrift" + ] + } + ], + "pid": "992743273", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Groteskschrift" + } + ], + "related": [ + { + "authorized_access_point": "Kabel (Druckschrift)" + } + ], + "md5": "0a34adced758d48897019afa261dac43" + }, + { + "authorized_access_point": "Tiemann-Gotisch", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7646956-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992742889" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7646956-6" + } + ], + "identifier": "http://d-nb.info/gnd/7646956-6", + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungszeit 1924" + ] + } + ], + "pid": "992742889", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gotische Schrift" + } + ], + "md5": "bc9c176b415d47be7ee338128a537370" + }, + { + "authorized_access_point": "Wallau (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7646953-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992742854" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7646953-0" + } + ], + "identifier": "http://d-nb.info/gnd/7646953-0", + "note": [ + { + "noteType": "general", + "label": [ + "Benannt nach Heinrich Wallau, einem Buchdrucker und Schriftkenner aus Mainz, mit der Breitfeder entworfen, auch mager, fett, halbfett und mit unterschiedlichen Gro\u00dfbuchstaben" + ] + } + ], + "pid": "992742854", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Rundgotische Schrift" + } + ], + "md5": "caf6bcf8482917ed4f102f68efb0879c" + }, + { + "authorized_access_point": "Superba (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7646939-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992742722" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7646939-6" + } + ], + "identifier": "http://d-nb.info/gnd/7646939-6", + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungsjahr 1934 (normal u.fett); licht 1937" + ] + } + ], + "pid": "992742722", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "c9d3c7f83d970bfa0e5abcfcc48ecb92" + }, + { + "authorized_access_point": "Stahl (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7646915-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992742498" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7646915-3" + } + ], + "identifier": "http://d-nb.info/gnd/7646915-3", + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungszeit 1939; mager, fett, kursiv, schmal fett" + ] + } + ], + "pid": "992742498", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "2004f9d97eb3e5d6e48d01d52bb2b5a5" + }, + { + "authorized_access_point": "Gavotte (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7646834-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992741696" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7646834-3" + } + ], + "identifier": "http://d-nb.info/gnd/7646834-3", + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungsjahr 1939" + ] + } + ], + "pid": "992741696", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schreibschrift (Druckschrift)" + } + ], + "md5": "cd0612a81f963425b441478112d2c2a8" + }, + { + "authorized_access_point": "Peter Schlemihl (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7646814-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992741491" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7646814-8" + } + ], + "identifier": "http://d-nb.info/gnd/7646814-8", + "pid": "992741491", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "variant_access_point": [ + "Schlemihl (Schrift)" + ], + "md5": "a6daa1b5824db1e0cc5759a361240b6c" + }, + { + "authorized_access_point": "Romantiques", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7646620-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992739659" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7646620-6" + } + ], + "identifier": "http://d-nb.info/gnd/7646620-6", + "pid": "992739659", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "4f664883da8194f0a97368fa741c57bc" + }, + { + "authorized_access_point": "Orbis (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7646519-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992738601" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7646519-6" + } + ], + "identifier": "http://d-nb.info/gnd/7646519-6", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - http://www.klingspor-museum.de/KlingsporKuenstler/Schriftdesigner/Brudi/Brudi.pdf" + ] + } + ], + "pid": "992738601", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "8193f6829a146c6ca52ba751db381ada" + }, + { + "authorized_access_point": "Phalanx (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7646473-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992738172" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7646473-8" + } + ], + "identifier": "http://d-nb.info/gnd/7646473-8", + "pid": "992738172", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "23092128eb84c56afeb2ca0066586295" + }, + { + "authorized_access_point": "Tiemann-Antiqua", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7646464-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992738083" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7646464-7" + } + ], + "identifier": "http://d-nb.info/gnd/7646464-7", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia unter Walter Tiemann - http://www.klingspor-museum.de/KlingsporKuenstler/Schriftdesigner/Tiemann/WTiemann.pdf" + ] + }, + { + "noteType": "general", + "label": [ + "Entstehungszeit 1923, halbfett 1917" + ] + } + ], + "pid": "992738083", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Antiqua" + } + ], + "md5": "dcaf4c6ab2424371d3ae884976541b1d" + }, + { + "authorized_access_point": "Salut (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7646463-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992738075" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7646463-5" + } + ], + "identifier": "http://d-nb.info/gnd/7646463-5", + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungszeit 1931" + ] + } + ], + "pid": "992738075", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "3c33d1dab2b1db872b75ae5f989732b8" + }, + { + "authorized_access_point": "Beebop (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7646436-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992737834" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7646436-2" + } + ], + "identifier": "http://d-nb.info/gnd/7646436-2", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Vorlage Deutsches Buch- und Schriftmuseum - http://de.ffonts.net/Beebop.font" + ] + }, + { + "noteType": "general", + "label": [ + "Nachgewiesen 2002" + ] + } + ], + "pid": "992737834", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + }, + { + "authorized_access_point": "Font" + } + ], + "md5": "d9b75488345f935e82496e99a887e8d9" + }, + { + "authorized_access_point": "Space Cowboy", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7646435-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992737826" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7646435-0" + } + ], + "identifier": "http://d-nb.info/gnd/7646435-0", + "note": [ + { + "noteType": "general", + "label": [ + "Nachgewiesen 2004" + ] + } + ], + "pid": "992737826", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + }, + { + "authorized_access_point": "Font" + } + ], + "variant_access_point": [ + "SpaceCowboy" + ], + "md5": "ffcb567ce0e353aa57b2a4c5f32ceb0f" + }, + { + "authorized_access_point": "European PI", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7646431-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992737788" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7646431-3" + } + ], + "identifier": "http://d-nb.info/gnd/7646431-3", + "pid": "992737788", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + }, + { + "authorized_access_point": "Font" + } + ], + "variant_access_point": [ + "European (Druckschrift)", + "Linotype European PI" + ], + "md5": "da7283b66a767d31de20d8a71dab61ae" + }, + { + "authorized_access_point": "Euphorion (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7646406-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992737532" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7646406-4" + } + ], + "identifier": "http://d-nb.info/gnd/7646406-4", + "note": [ + { + "noteType": "general", + "label": [ + "Enstehungsjahr 1936 (Typothek gibt 1928 an)" + ] + } + ], + "pid": "992737532", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "2c49bab197089d5ae18c466199f683fe" + }, + { + "authorized_access_point": "Hupp-Fraktur", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7646277-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992736269" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7646277-8" + } + ], + "identifier": "http://d-nb.info/gnd/7646277-8", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia unter Otto Hupp - http://beepworld.de/members66/vau-ef-be/schriftliste1.htm" + ] + }, + { + "noteType": "general", + "label": [ + "Entstehungsjahr 1911 (abweichend 1910)" + ] + } + ], + "pid": "992736269", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fraktur (Druckschrift)" + } + ], + "md5": "ff146d5706228e0a93fc283c60ec23bd" + }, + { + "authorized_access_point": "Holla (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7646259-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992736099" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7646259-6" + } + ], + "identifier": "http://d-nb.info/gnd/7646259-6", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia unter Rudolf Koch - http://beepworld.de/members66/vau-ef-be/schriftliste2.htm" + ] + }, + { + "noteType": "general", + "label": [ + "Entstehungsjahr 1932" + ] + } + ], + "pid": "992736099", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schreibschrift (Druckschrift)" + } + ], + "md5": "0c8f657fbb7cd39089ee4514cf3b3d88" + }, + { + "authorized_access_point": "Haenel-Fraktur", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7646235-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992735858" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7646235-3" + } + ], + "identifier": "http://d-nb.info/gnd/7646235-3", + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungsjahr 1933, fett" + ] + } + ], + "pid": "992735858", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fraktur (Druckschrift)" + } + ], + "md5": "3dc997f36fd6889480569403470bad7d" + }, + { + "authorized_access_point": "Haenel-Antiqua", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7646234-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)99273584X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7646234-1" + } + ], + "identifier": "http://d-nb.info/gnd/7646234-1", + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungsjahr: nach 1906 (nachgewiesen 1921)" + ] + } + ], + "pid": "99273584X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Antiqua" + } + ], + "md5": "1894b96f41b9772bed31afc1ae7b904f" + }, + { + "authorized_access_point": "Grotius (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7646231-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992735823" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7646231-6" + } + ], + "identifier": "http://d-nb.info/gnd/7646231-6", + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungsjahr: 1925" + ] + } + ], + "pid": "992735823", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Renaissance-Antiqua" + } + ], + "md5": "8d0cafa0fea3c3509fa68b48c49a8a6a" + }, + { + "authorized_access_point": "Folkwang (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7646172-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992735270" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7646172-5" + } + ], + "identifier": "http://d-nb.info/gnd/7646172-5", + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungsjahr 1949; kursiv; halbfett" + ] + } + ], + "pid": "992735270", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "266ef81cb2cdd270efde139a2bacb30a" + }, + { + "authorized_access_point": "Fichte-Fraktur", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7646157-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992735122" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7646157-9" + } + ], + "identifier": "http://d-nb.info/gnd/7646157-9", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Lex. ges. Buchwesen unter Tiemann, Walter - http://www.klingspor-museum.de/KlingsporKuenstler/Schriftdesigner/Tiemann/WTiemann.pdf" + ] + }, + { + "noteType": "general", + "label": [ + "Entstehungsjahre: Fichte-Fraktur mager 1935, Fichte-Fraktur fett 1939" + ] + } + ], + "pid": "992735122", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fraktur (Druckschrift)" + } + ], + "md5": "10ccc288fe14a1598a249cdd38d76d70" + }, + { + "authorized_access_point": "Breitkopf-Fraktur (Offenbach, Main)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7646010-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992733634" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7646010-1" + } + ], + "identifier": "http://d-nb.info/gnd/7646010-1", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Lex. ges. Buchwesen - http://www.klingspor-museum.de/KlingsporKuenstler/Schriftgiessereien/Klingspor/Klingspor.pdf" + ] + }, + { + "noteType": "general", + "label": [ + "Entstehungsjahr: 1905" + ] + } + ], + "pid": "992733634", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Breitkopf-Fraktur" + } + ], + "md5": "5f528b83722df1985766216efc19019a" + }, + { + "authorized_access_point": "Flambard (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7645958-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)99273312X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7645958-5" + } + ], + "identifier": "http://d-nb.info/gnd/7645958-5", + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungsjahr: 1954 (abweichend 1953)" + ] + } + ], + "pid": "99273312X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "related": [ + { + "authorized_access_point": "Studio (Druckschrift)" + } + ], + "md5": "c388a00e4366ca675918507a89e4895f" + }, + { + "authorized_access_point": "Behrens-Schrift", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7645889-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992732468" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7645889-1" + } + ], + "identifier": "http://d-nb.info/gnd/7645889-1", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia unter Peter Behrens - http://www.klingspor-museum.de/KlingsporKuenstler/Schriftdesigner/Behrens/PeterBehrens.pdf" + ] + }, + { + "noteType": "general", + "label": [ + "Entstehungszeit 1901-1907 (auch Behrensschrift Kursiv)" + ] + } + ], + "pid": "992732468", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gebrochene Schrift" + } + ], + "md5": "1cd9ac072bf3956a07eb2ff4a4d951e7" + }, + { + "authorized_access_point": "Charleston (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7645791-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992731496" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7645791-6" + } + ], + "identifier": "http://d-nb.info/gnd/7645791-6", + "pid": "992731496", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "1d89774e2561e5c7f7dbae8143396c11" + }, + { + "authorized_access_point": "Broadway (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7645789-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)99273147X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7645789-8" + } + ], + "identifier": "http://d-nb.info/gnd/7645789-8", + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungsjahr: 1928 (Broadway Condensed 1929)" + ] + } + ], + "pid": "99273147X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "bd75f12f8628a9ecdb927e85d6250195" + }, + { + "authorized_access_point": "Hammer-Unziale", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7645780-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992731348" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7645780-1" + } + ], + "identifier": "http://d-nb.info/gnd/7645780-1", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Lex. ges. Buchwesen - http://www.bleikloetzle.de/html/hammer-unziale.html" + ] + }, + { + "noteType": "general", + "label": [ + "Entstehungsjahr: 1921; handschriftliche Antiqua" + ] + } + ], + "pid": "992731348", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Unziale" + } + ], + "related": [ + { + "authorized_access_point": "Neue Hammer-Unziale" + } + ], + "md5": "e62372645bd2e35119d84dc1d035b749" + }, + { + "authorized_access_point": "Eckmann-Schrift", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7645736-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992730937" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7645736-9" + } + ], + "identifier": "http://d-nb.info/gnd/7645736-9", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia unter Otto Eckmann - http://www.klingspor-museum.de/KlingsporKuenstler/Schriftdesigner/Eckmann/OttoEckmann.pdf" + ] + }, + { + "noteType": "general", + "label": [ + "Entstehungsjahr: 1900; Jugendstilschrift" + ] + } + ], + "pid": "992730937", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "variant_access_point": [ + "Eckmann (Druckschrift)", + "Eckmann-Druckschrift" + ], + "md5": "873cb07a6d44468aea334db02f42ef62" + }, + { + "authorized_access_point": "Behrens-Mediaeval", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7645690-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)99273052X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7645690-0" + } + ], + "identifier": "http://d-nb.info/gnd/7645690-0", + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungszeit 1914" + ] + } + ], + "pid": "99273052X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Renaissance-Antiqua" + } + ], + "variant_access_point": [ + "Mediaeval", + "Media\u0308val" + ], + "md5": "3ebb0781dbe0a7ae8b08e87e758b5f75" + }, + { + "authorized_access_point": "Biokunststoff", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7641320-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992096200" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7641320-2" + } + ], + "identifier": "http://d-nb.info/gnd/7641320-2", + "pid": "992096200", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kunststoff" + }, + { + "authorized_access_point": "Biowerkstoff" + } + ], + "related": [ + { + "authorized_access_point": "Biopolymere" + }, + { + "authorized_access_point": "Biologisch abbaubarer Kunststoff" + } + ], + "md5": "1482fed139b4d345adacb996d744076c" + }, + { + "authorized_access_point": "Heparan-Sulfat-6-O-Endosulfatasen", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7623456-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)99018207X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7623456-3" + } + ], + "identifier": "http://d-nb.info/gnd/7623456-3", + "pid": "99018207X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Sulfotransferasen" + } + ], + "variant_access_point": [ + "Heparan-Sulfat-6-O-Endosulfatase", + "Protein Sulf1", + "Protein Sulf2", + "heparan sulfate 6-O-endosulfatase", + "heparan sulfate 6O-endosulfatase" + ], + "md5": "b198bcf760271ca652a3645289637148" + }, + { + "authorized_access_point": "Cholanaickan", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7604010-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)987870920" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7604010-0" + } + ], + "identifier": "http://d-nb.info/gnd/7604010-0", + "closeMatch": [ + { + "authorized_access_point": "Cholanaickan (Indic people)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113425024X" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh91005878" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh91005878" + } + ] + }, + { + "authorized_access_point": "Cholanaickan (peuple de l'Inde)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113425024X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12269831" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12269831p" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Primitiver Stamm mit dravidischer Sprache in Kerala" + ] + } + ], + "pid": "987870920", + "type": "bf:Topic", + "variant_access_point": [ + "Cholakka\u0304r", + "Cholanaicken" + ], + "md5": "e69acc0f41503b66848ed17b21e6b26a" + }, + { + "authorized_access_point": "Physikstudent", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7595663-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)987031708" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7595663-9" + } + ], + "identifier": "http://d-nb.info/gnd/7595663-9", + "closeMatch": [ + { + "authorized_access_point": "Physics students", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334680612" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2020008950" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2020008950" + } + ] + }, + { + "authorized_access_point": "E\u0301tudiants en physique", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334680612" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11938246" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119382468" + } + ] + } + ], + "pid": "987031708", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Student" + } + ], + "related": [ + { + "authorized_access_point": "Physikstudentin" + } + ], + "variant_access_point": [ + "Physikstudium" + ], + "md5": "2de54030f46fcdbe155b2ba2eac28402" + }, + { + "authorized_access_point": "Nashornviper", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7576822-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)985142758" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7576822-7" + } + ], + "identifier": "http://d-nb.info/gnd/7576822-7", + "note": [ + { + "noteType": "general", + "label": [ + "geho\u0308rt zur Gattung der Puffottern" + ] + } + ], + "pid": "985142758", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Vipern" + } + ], + "variant_access_point": [ + "Bitis nasicornis" + ], + "md5": "9b2ca2f18fa334811fe3f9889d10031a" + }, + { + "authorized_access_point": "Vergaberecht", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7574511-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)984855246" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7574511-2" + } + ], + "identifier": "http://d-nb.info/gnd/7574511-2", + "exactMatch": [ + { + "authorized_access_point": "Vergaberecht", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)984869689" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "11580-1" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/11580-1" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Als Vergaberecht bezeichnet man die Gesamtheit der Rechtsvorschriften, die o\u0308ffentliche Auftraggeber bei der Beschaffung von Gu\u0308tern und Leistungen zu beachten haben." + ] + } + ], + "pid": "984855246", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Wirtschaftsrecht" + } + ], + "variant_access_point": [ + "O\u0308ffentlicher Auftrag", + "Vergabe" + ], + "md5": "0a3b405cf32170767fe7a1e56dc19884" + }, + { + "authorized_access_point": "Inflation Targeting", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7570943-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)984430695" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7570943-0" + } + ], + "identifier": "http://d-nb.info/gnd/7570943-0", + "closeMatch": [ + { + "authorized_access_point": "Inflation targeting", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)133489549X" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2010012786" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2010012786" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Inflationssteuerung", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)985037393" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "19547-1" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/19547-1" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Von der Zentralbank vero\u0308ffentlicher Zielwert oder Zielkorridor einer Inflationsrate, die noch mit dem Ziel der Geldwertstabilita\u0308t vereinbar scheint" + ] + } + ], + "pid": "984430695", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Geldpolitik" + } + ], + "related": [ + { + "authorized_access_point": "Inflationsbeka\u0308mpfung" + } + ], + "variant_access_point": [ + "Inflationsziel", + "Inflation-Forecast Targeting", + "Inflation Forecast Targeting", + "Inflationsrate" + ], + "md5": "939e87a730926f42b1ae8a9ae2b35064" + }, + { + "authorized_access_point": "COBIT", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7544194-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)981355196" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7544194-9" + } + ], + "identifier": "http://d-nb.info/gnd/7544194-9", + "pid": "981355196", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Informationsmanagement" + }, + { + "authorized_access_point": "Corporate Governance" + } + ], + "broader": [ + { + "authorized_access_point": "Framework (Informatik)" + } + ], + "md5": "73db9af0ab808c28c3d48e52984f0833" + }, + { + "authorized_access_point": "Selige", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7541405-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)981078206" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7541405-3" + } + ], + "identifier": "http://d-nb.info/gnd/7541405-3", + "note": [ + { + "noteType": "general", + "label": [ + "Benutzt fu\u0308r weibliche Selige; als instantieller Oberbegriff bei weiblichen seligen Personen obligatorisch; nicht zugelassen als identifizierender Zusatz bei Personen gem. EH-P-10 zur GND nach RDA" + ] + } + ], + "pid": "981078206", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Seliger" + } + ], + "broader": [ + { + "authorized_access_point": "Frau" + } + ], + "variant_access_point": [ + "Weibliche Selige", + "Selige Frau", + "Seliggesprochene Frau" + ], + "md5": "b153d1bc7a7e2ac2f3e2f96f4d5d709c" + }, + { + "authorized_access_point": "Marathon (Druckschrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7535517-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)980596920" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7535517-6" + } + ], + "identifier": "http://d-nb.info/gnd/7535517-6", + "note": [ + { + "noteType": "general", + "label": [ + "Von Rudolf Koch geschaffene, jedoch selten benutzte Antiqua-Schrift; 1930 begonnen, aber erst 1938 in allen Graden vorliegend" + ] + } + ], + "pid": "980596920", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Antiqua" + } + ], + "variant_access_point": [ + "Marathon-Antiqua" + ], + "md5": "2ea8e3038911421fb7904506ee106e9a" + }, + { + "authorized_access_point": "Sportlerin (Motiv)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7533814-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)980485371" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7533814-2" + } + ], + "identifier": "http://d-nb.info/gnd/7533814-2", + "pid": "980485371", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "70ad035fa5bfd4a4a209fe3e829523ec" + }, + { + "authorized_access_point": "Schlacht bei den Pyramiden", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7527686-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)979728509" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7527686-0" + } + ], + "identifier": "http://d-nb.info/gnd/7527686-0", + "note": [ + { + "noteType": "general", + "label": [ + "Schlacht am 21.7.1798 bei Giseh zwischen Franzosen u. Mamelucken, Sieg Napoleons" + ] + } + ], + "pid": "979728509", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "A\u0308gyptische Expedition" + } + ], + "md5": "d57b6aa9bbb8c7057f6f811264b29397" + }, + { + "authorized_access_point": "Smart Device", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7525182-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)979385261" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7525182-6" + } + ], + "identifier": "http://d-nb.info/gnd/7525182-6", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Smart-Ger%C3%A4t&oldid=242686638" + ] + }, + { + "noteType": "general", + "label": [ + "Informationstechnisch aufgeru\u0308stete Alltagsgegensta\u0308nde, die einen Mehrwert durch sensorgestu\u0308tzte Informationsverarbeitung und Kommunikation erhalten" + ] + } + ], + "pid": "979385261", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Mobiles Endgera\u0308t" + }, + { + "authorized_access_point": "Ubiquitous Computing" + } + ], + "variant_access_point": [ + "Smart Devices", + "Smart-Gera\u0308t" + ], + "md5": "5c3266c8212baf7b7b90ac04b26a1343" + }, + { + "authorized_access_point": "Transhumanismus", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7524756-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)979340586" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7524756-2" + } + ], + "identifier": "http://d-nb.info/gnd/7524756-2", + "closeMatch": [ + { + "authorized_access_point": "Transumanesimo", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254397442" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "69366" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/69366" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Transhumanismus&oldid=224666895" + ] + }, + { + "noteType": "general", + "label": [ + "Der Transhumanismus ist eine philosophische Denkrichtung, die sich zum Ziel gesetzt hat, die intellektuellen und ko\u0308rperlichen Fa\u0308higkeiten des Menschen zu erweitern. Dieses Ziel will der Transhumanismus durch eine Synthese des Menschen mit Technik erreichen." + ] + } + ], + "pid": "979340586", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Humanismus" + } + ], + "related": [ + { + "authorized_access_point": "Posthumanismus" + } + ], + "md5": "835dbad9b2e375916c145b5af93588a1" + }, + { + "authorized_access_point": "Menado-Malaiisch", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7517482-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)978483669" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7517482-0" + } + ], + "identifier": "http://d-nb.info/gnd/7517482-0", + "note": [ + { + "noteType": "general", + "label": [ + "Malaiisch, Dialekt: Indonesia, Sulawesi (Celebes)" + ] + } + ], + "pid": "978483669", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "variant_access_point": [ + "Manado-Malaiisch" + ], + "md5": "bda5c6a2d0687b4f51d232c3e94c284a" + }, + { + "authorized_access_point": "Deflektometrie", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4832784-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)97549175X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4832784-0" + } + ], + "identifier": "http://d-nb.info/gnd/4832784-0", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Deflektometrie&oldid=237818776" + ] + } + ], + "pid": "97549175X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Optische Messung" + }, + { + "authorized_access_point": "Oberfla\u0308chenmessung" + } + ], + "md5": "b68879f1e2122aab6990dd590fe7ed5d" + }, + { + "authorized_access_point": "sCHECKup", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4827174-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)974924423" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4827174-3" + } + ], + "identifier": "http://d-nb.info/gnd/4827174-3", + "pid": "974924423", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Haushaltsbuch" + } + ], + "broader": [ + { + "authorized_access_point": "Programm" + } + ], + "variant_access_point": [ + "sCHECK up" + ], + "md5": "7b2564bef69c3cec05e9f798b20499b5" + }, + { + "authorized_access_point": "Selekau-Sprache", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4819075-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)974131733" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4819075-5" + } + ], + "identifier": "http://d-nb.info/gnd/4819075-5", + "note": [ + { + "noteType": "general", + "label": [ + "Gesprochen in Westborneo u. Sarawak" + ] + } + ], + "pid": "974131733", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "variant_access_point": [ + "Salakau", + "Selako", + "Selako Dayak", + "Silakau", + "Salako", + "Bahasa Badamea\u0300", + "Bahasa Damea\u0300" + ], + "md5": "be34e8d273e416671ab73ec593645c45" + }, + { + "authorized_access_point": "Gera\u0308uschmusik", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4806598-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)973073764" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4806598-5" + } + ], + "identifier": "http://d-nb.info/gnd/4806598-5", + "pid": "973073764", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Musik" + } + ], + "md5": "4db0af3ec418880a659254ab5bb7fc05" + }, + { + "authorized_access_point": "Antigen CD68", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4806375-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)973067144" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4806375-7" + } + ], + "identifier": "http://d-nb.info/gnd/4806375-7", + "exactMatch": [ + { + "authorized_access_point": "CD68 Molecule", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)133614288X" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D000097382" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D000097382" + } + ] + } + ], + "pid": "973067144", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Antigen" + } + ], + "variant_access_point": [ + "CD68", + "CD 68", + "CD68-Antigen", + "Makrosialin", + "Macrosialin" + ], + "md5": "1c1c0ae222df6944f710b277971e41f8" + }, + { + "authorized_access_point": "Narom-Sprache", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4788592-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)971890188" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4788592-0" + } + ], + "identifier": "http://d-nb.info/gnd/4788592-0", + "note": [ + { + "noteType": "general", + "label": [ + "Gesprochen auf Sarawak" + ] + } + ], + "pid": "971890188", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "variant_access_point": [ + "Narom (Sprache)", + "Narum (Sprache)" + ], + "md5": "0b3277ad95491744ef783b0587ae4961" + }, + { + "authorized_access_point": "Online-Befragung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4788337-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)971874549" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4788337-6" + } + ], + "identifier": "http://d-nb.info/gnd/4788337-6", + "closeMatch": [ + { + "authorized_access_point": "Internet questionnaires", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134778651" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2003010653" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2003010653" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Online-Befragung", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1012497135" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "28130-5" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/28130-5" + } + ] + }, + { + "authorized_access_point": "Online-Befragung", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)983461716" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10037911" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10037911" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Methode der Demoskopie bzw. Marktforschung" + ] + } + ], + "pid": "971874549", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Umfrage" + } + ], + "variant_access_point": [ + "Online-Umfrage", + "Online-Interview" + ], + "md5": "e2969ccceae941aa583bafb6f14569a4" + }, + { + "authorized_access_point": "Hubwagen", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4786444-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)971750289" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4786444-8" + } + ], + "identifier": "http://d-nb.info/gnd/4786444-8", + "note": [ + { + "noteType": "general", + "label": [ + "Fo\u0308rder-, Transportmittel" + ] + } + ], + "pid": "971750289", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Wagen" + }, + { + "authorized_access_point": "Flurfo\u0308rderer" + } + ], + "md5": "948cbf32a79f2b375ec25853e4447ec3" + }, + { + "authorized_access_point": "Toratan", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4783715-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)971566429" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4783715-9" + } + ], + "identifier": "http://d-nb.info/gnd/4783715-9", + "closeMatch": [ + { + "authorized_access_point": "Ratahan language", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134835175" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh99004097" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh99004097" + } + ] + } + ], + "pid": "971566429", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "variant_access_point": [ + "Ratahan", + "Pasan", + "Bentenan" + ], + "md5": "dcce3491164a10fa9d78a69ca85244ed" + }, + { + "authorized_access_point": "AUSTAL 86", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4774580-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970782195" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4774580-0" + } + ], + "identifier": "http://d-nb.info/gnd/4774580-0", + "pid": "970782195", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Ausbreitung" + }, + { + "authorized_access_point": "Modell" + } + ], + "broader": [ + { + "authorized_access_point": "Programm" + } + ], + "md5": "75c063925e7d2a8b76847641cfc1c408" + }, + { + "authorized_access_point": "Kerinci-Sprache", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4772270-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970665806" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4772270-8" + } + ], + "identifier": "http://d-nb.info/gnd/4772270-8", + "closeMatch": [ + { + "authorized_access_point": "Kerinci language", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134835183" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85072053" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85072053" + } + ] + } + ], + "pid": "970665806", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "variant_access_point": [ + "Kerinchi", + "Kinchai", + "Kerinci (Sprache)" + ], + "md5": "2796f42b83916878c5904dc8c399ae78" + }, + { + "authorized_access_point": "Antigen CD83", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4767577-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970188919" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4767577-9" + } + ], + "identifier": "http://d-nb.info/gnd/4767577-9", + "exactMatch": [ + { + "authorized_access_point": "CD83 Antigen", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336143207" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D000097802" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D000097802" + } + ] + } + ], + "pid": "970188919", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Antigen" + } + ], + "variant_access_point": [ + "CD83-Antigen" + ], + "md5": "fb4c16ef1af510dba73af357b31a0269" + }, + { + "authorized_access_point": "Medizinstudentin", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4766829-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970142838" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4766829-5" + } + ], + "identifier": "http://d-nb.info/gnd/4766829-5", + "closeMatch": [ + { + "authorized_access_point": "Women medical students", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334680930" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85147645" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85147645" + } + ] + }, + { + "authorized_access_point": "E\u0301tudiantes en me\u0301decine", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334680930" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18099017" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb180990171" + } + ] + } + ], + "pid": "970142838", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Studentin" + } + ], + "related": [ + { + "authorized_access_point": "Medizinstudent" + } + ], + "variant_access_point": [ + "Medizinstudium" + ], + "md5": "5faaf4352c2b5b945e33a2bad6709d42" + }, + { + "authorized_access_point": "Radikaler Pietismus", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4762345-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)969789726" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4762345-7" + } + ], + "identifier": "http://d-nb.info/gnd/4762345-7", + "pid": "969789726", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Pietismus" + } + ], + "variant_access_point": [ + "Radikalpietismus" + ], + "md5": "245813bb5addf9d5dcecda53f7c64699" + }, + { + "authorized_access_point": "Mundart Niederla\u0308ndisch (Twente)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4747853-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)968800459" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4747853-6" + } + ], + "identifier": "http://d-nb.info/gnd/4747853-6", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Twents&oldid=187939466" + ] + } + ], + "pid": "968800459", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Niederla\u0308ndisch" + }, + { + "authorized_access_point": "Westfa\u0308lisch" + }, + { + "authorized_access_point": "Niedersa\u0308chsisch" + } + ], + "variant_access_point": [ + "Twents" + ], + "md5": "25966c244c524c8e30401d7f09f4064b" + }, + { + "authorized_access_point": "Laudemium", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4736684-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)967930308" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4736684-9" + } + ], + "identifier": "http://d-nb.info/gnd/4736684-9", + "pid": "967930308", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Abgabe" + } + ], + "variant_access_point": [ + "Honorarium", + "Abfahrtsgeld", + "Abzug (Abgabe)", + "Anfall (Abgabe)", + "Auffahrt (Abgabe)", + "Auffahrtsgeld", + "Ehrschatz", + "Ehrschatzung", + "Eingangsgeld", + "Handlohn", + "Herrenwein", + "Immobiliargebu\u0308hr", + "Kaufgeld", + "Kaufschatz", + "Lehengeld", + "Lehnware", + "Markgroschen", + "Pfundgeld", + "Satzwein" + ], + "md5": "09db85119dd7c456af9ca5f9cc3f066f" + }, + { + "authorized_access_point": "Kaffeetasse", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4732915-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)967681758" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4732915-4" + } + ], + "identifier": "http://d-nb.info/gnd/4732915-4", + "note": [ + { + "noteType": "general", + "label": [ + "Tasse, aus der Kaffee getrunken wird" + ] + } + ], + "pid": "967681758", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tasse" + } + ], + "related": [ + { + "authorized_access_point": "Kaffeegeschirr" + } + ], + "md5": "288b449517a0b80d6b5dfad594bc338a" + }, + { + "authorized_access_point": "Holzmodel", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4731815-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)967612896" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4731815-6" + } + ], + "identifier": "http://d-nb.info/gnd/4731815-6", + "pid": "967612896", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Model (Form)" + } + ], + "md5": "66630cc96becf96e5d24fdb299edb7cf" + }, + { + "authorized_access_point": "Neues chilenisches Lied", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4727316-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)967286034" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4727316-1" + } + ], + "identifier": "http://d-nb.info/gnd/4727316-1", + "note": [ + { + "noteType": "general", + "label": [ + "Ab 1960 in Chile entstandene polit.-sozial ausgerichtete Musikbewegung" + ] + } + ], + "pid": "967286034", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Politisches Lied" + } + ], + "related": [ + { + "authorized_access_point": "Nueva cancio\u0301n (Politisches Lied)" + } + ], + "variant_access_point": [ + "Nueva Cancio\u0301n Chilena", + "NCCh", + "Canto Nuevo de Chile", + "Neues Politisches Lied" + ], + "md5": "dcedd9f67d9de4e9b6d870e4eacfabe4" + }, + { + "authorized_access_point": "Martinsritt", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4720271-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)966464141" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4720271-3" + } + ], + "identifier": "http://d-nb.info/gnd/4720271-3", + "note": [ + { + "noteType": "general", + "label": [ + "Zu Ehren des hl. Martin am 11.11." + ] + } + ], + "pid": "966464141", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Umritt" + } + ], + "variant_access_point": [ + "Martiniritt" + ], + "md5": "9f06791580541a1d5c4c10f59112f71a" + }, + { + "authorized_access_point": "Bu\u0308rgerinformationssystem", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4713287-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)966016297" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4713287-5" + } + ], + "identifier": "http://d-nb.info/gnd/4713287-5", + "note": [ + { + "noteType": "general", + "label": [ + "Kommunale Informationsplattform und interaktives System zwischen Bu\u0308rger und Gemeindeverwaltung" + ] + } + ], + "pid": "966016297", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Informationssystem" + } + ], + "related": [ + { + "authorized_access_point": "E-Government" + } + ], + "variant_access_point": [ + "Kommunales Informationssystem" + ], + "md5": "06e2ca23f412ec86827bc6a6ca3d7bbc" + }, + { + "authorized_access_point": "Duftmarketing", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4712134-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)965886654" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4712134-8" + } + ], + "identifier": "http://d-nb.info/gnd/4712134-8", + "closeMatch": [ + { + "authorized_access_point": "Scent as a marketing device", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334882479" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh90005055" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh90005055" + } + ] + }, + { + "authorized_access_point": "Marketing sensoriel", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334882479" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF15585133t" + }, + { + "type": "uri", + "value": "https://catalogue.bnf.fr/ark:/12148/cb15585133t" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Einsatz von Duftstoffen zur Verkaufsfo\u0308rderung u. zur Schaffung eines angenehmen Raumklimas in Unternehmen, auf Werbedrucksachen usw." + ] + } + ], + "pid": "965886654", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Erlebnismarketing" + } + ], + "variant_access_point": [ + "Air-Design", + "Olfaktorisches Marketing" + ], + "md5": "83d120e42ae6b44d0ac498fd26c120e0" + }, + { + "authorized_access_point": "Angle-Klasse II/2", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4699051-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)965195686" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4699051-3" + } + ], + "identifier": "http://d-nb.info/gnd/4699051-3", + "pid": "965195686", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Angle-Klasse II" + } + ], + "md5": "d9186b9c8861bf292c7f286995d53f80" + }, + { + "authorized_access_point": "Civilite\u0301 (Schrift)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4684771-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)96441631X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4684771-6" + } + ], + "identifier": "http://d-nb.info/gnd/4684771-6", + "note": [ + { + "noteType": "general", + "label": [ + "Der Schreibschrift nachgebildete franz. Druckschrift, 1557 geschaffen von Robert Granjon" + ] + } + ], + "pid": "96441631X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "variant_access_point": [ + "Civilite\u0301-Schrift", + "Caracte\u0300res de civilite\u0301" + ], + "md5": "57025816cb1f3379a7b583f094009376" + }, + { + "authorized_access_point": "Stickerei (Motiv)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4681786-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)964240300" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4681786-4" + } + ], + "identifier": "http://d-nb.info/gnd/4681786-4", + "pid": "964240300", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "0aadc75e1299efc13792b5212a4d4db9" + }, + { + "authorized_access_point": "Hu\u0308ttenarbeiter", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4681784-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)964240254" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4681784-0" + } + ], + "identifier": "http://d-nb.info/gnd/4681784-0", + "note": [ + { + "noteType": "dataSource", + "label": [ + "DWDS - https://www.dwds.de/wb/H%C3%BCttenarbeiter" + ] + }, + { + "noteType": "general", + "label": [ + "Arbeiter am Hoch- u. Schmelzofen in der Eisenindustrie" + ] + } + ], + "pid": "964240254", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Arbeiter" + } + ], + "variant_access_point": [ + "Hu\u0308ttner", + "Eisenhu\u0308ttenarbeiter", + "Hu\u0308ttenwerk" + ], + "md5": "4e7bd34cf22396ed82e45939c45b5251" + }, + { + "authorized_access_point": "Renaturierung (O\u0308kologie)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4679877-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)964115166" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4679877-8" + } + ], + "identifier": "http://d-nb.info/gnd/4679877-8", + "note": [ + { + "noteType": "general", + "label": [ + "Wiederherstellung eines naturnahen Zustandes in einem durch Eingriffe des Menschen zersto\u0308rten oder erheblich beeintra\u0308chtigten Teil der Landschaft im Rahmen von Naturschutz und Landschaftspflege" + ] + } + ], + "pid": "964115166", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Naturschutz" + } + ], + "related": [ + { + "authorized_access_point": "Naturnahe Gestaltung" + }, + { + "authorized_access_point": "Rekultivierung" + } + ], + "variant_access_point": [ + "Revitalisierung (Renaturierung, O\u0308kologie)", + "Rewilding" + ], + "md5": "7d52ff7ea5e5a92e9b4d74db3b3d46e6" + }, + { + "authorized_access_point": "Fehlgeschlagener Versuch", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4670829-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)963711636" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4670829-7" + } + ], + "identifier": "http://d-nb.info/gnd/4670829-7", + "pid": "963711636", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Versuch" + } + ], + "related": [ + { + "authorized_access_point": "Untauglicher Versuch" + } + ], + "variant_access_point": [ + "De\u0301lit manque\u0301" + ], + "md5": "e5cd0b2418d4bb6358249e5dd75f459d" + }, + { + "authorized_access_point": "Tomini-Sprache", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4670798-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)963708872" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4670798-0" + } + ], + "identifier": "http://d-nb.info/gnd/4670798-0", + "note": [ + { + "noteType": "general", + "label": [ + "Westindonesische Sprache, Nordcelebes" + ] + } + ], + "pid": "963708872", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "variant_access_point": [ + "Tiadje", + "Tialo", + "Dondo" + ], + "md5": "acab98cb2d249f19576c4587b92a6332" + }, + { + "authorized_access_point": "Tolitoli-Sprache", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4670794-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)963708856" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4670794-3" + } + ], + "identifier": "http://d-nb.info/gnd/4670794-3", + "closeMatch": [ + { + "authorized_access_point": "Tolitoli language", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134835159" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh96010747" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh96010747" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Westindonesische Sprache, Nordcelebes" + ] + } + ], + "pid": "963708856", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "variant_access_point": [ + "Tontoli", + "Gage (Sprache)", + "Totoli" + ], + "md5": "adf604c23a0716323ba1632586441380" + }, + { + "authorized_access_point": "Hispanist", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4669578-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)963658166" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4669578-3" + } + ], + "identifier": "http://d-nb.info/gnd/4669578-3", + "closeMatch": [ + { + "authorized_access_point": "Hispanists", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134176104" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85061068" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85061068" + } + ] + }, + { + "authorized_access_point": "Hispanistes", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134176104" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12122241" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12122241n" + } + ] + }, + { + "authorized_access_point": "Ispanisti", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254389385" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "58143" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/58143" + } + ] + }, + { + "authorized_access_point": "Hispanistas", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254440216" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX555556" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX555556" + } + ] + } + ], + "pid": "963658166", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Romanist" + } + ], + "related": [ + { + "authorized_access_point": "Hispanistik" + }, + { + "authorized_access_point": "Hispanistin" + } + ], + "md5": "6204d2b1221874c9d90cd01aff47a7e4" + }, + { + "authorized_access_point": "Quadratischer Ko\u0308rper", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4667267-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)963553984" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4667267-9" + } + ], + "identifier": "http://d-nb.info/gnd/4667267-9", + "pid": "963553984", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ko\u0308rper (Algebra)" + } + ], + "md5": "878e64c2fb3ca0bd46a0497de7397e0f" + }, + { + "authorized_access_point": "Truthu\u0308hner", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4644834-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)962075272" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4644834-2" + } + ], + "identifier": "http://d-nb.info/gnd/4644834-2", + "note": [ + { + "noteType": "general", + "label": [ + "Fru\u0308her Familie schwerer, hochbeiniger Hu\u0308hnervo\u0308gel, heute als Unterfamilie Meleagridinae der Fasanenvo\u0308gel gefu\u0308hrt" + ] + } + ], + "pid": "962075272", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fasanenartige" + } + ], + "variant_access_point": [ + "Meleagrididae" + ], + "md5": "1a1c927621970a06712ded4f3e516249" + }, + { + "authorized_access_point": "Audit Committee", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4644800-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)962073881" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4644800-7" + } + ], + "identifier": "http://d-nb.info/gnd/4644800-7", + "closeMatch": [ + { + "authorized_access_point": "Audit committees", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134561563" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85009476" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85009476" + } + ] + }, + { + "authorized_access_point": "Ve\u0301rification comptable", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134561563" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11939756" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119397566" + } + ] + }, + { + "authorized_access_point": "Comite\u0301s de auditori\u0301a", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254407812" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX558471" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX558471" + } + ] + } + ], + "pid": "962073881", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Pru\u0308fungsausschuss" + } + ], + "variant_access_point": [ + "Corporate Audit Committee", + "Bilanzpru\u0308fungsausschuss" + ], + "md5": "b01c50c2da4bf6cf2b661701bd29d7a1" + }, + { + "authorized_access_point": "Vo\u0308lkerkundliche Ausstellung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4641693-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)961897546" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4641693-6" + } + ], + "identifier": "http://d-nb.info/gnd/4641693-6", + "pid": "961897546", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ausstellung" + } + ], + "variant_access_point": [ + "Ethnologische Ausstellung" + ], + "md5": "b41981078571069943d8ec62a47c0dba" + }, + { + "authorized_access_point": "Altdu\u0308ne", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4631459-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)961236752" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4631459-3" + } + ], + "identifier": "http://d-nb.info/gnd/4631459-3", + "pid": "961236752", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Du\u0308ne" + } + ], + "md5": "c4e812ae2ec0895d3d2649f63319dace" + }, + { + "authorized_access_point": "Arabischer Student", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4630739-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)961192356" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4630739-4" + } + ], + "identifier": "http://d-nb.info/gnd/4630739-4", + "closeMatch": [ + { + "authorized_access_point": "Arab students", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134821301" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85006344" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85006344" + } + ] + }, + { + "authorized_access_point": "E\u0301tudiants arabes", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134821301" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16961808" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb169618080" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Benutzt, soweit im Ausland lebend" + ] + } + ], + "pid": "961192356", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ausla\u0308ndischer Student" + }, + { + "authorized_access_point": "Araber" + } + ], + "md5": "f93767af800449eb6927322e7d4dcfb1" + }, + { + "authorized_access_point": "Abwurfsonde", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4628589-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)961049510" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4628589-1" + } + ], + "identifier": "http://d-nb.info/gnd/4628589-1", + "pid": "961049510", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Sonde" + } + ], + "md5": "61532e035d708368c323aa6ed93fb5aa" + }, + { + "authorized_access_point": "Aprilia (Marke)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4624787-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)960895175" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4624787-7" + } + ], + "identifier": "http://d-nb.info/gnd/4624787-7", + "note": [ + { + "noteType": "general", + "label": [ + "Markenname", + "Verknu\u0308pfe mit einer Produktgruppe, z.B. Motorrad" + ] + } + ], + "pid": "960895175", + "type": "bf:Topic", + "md5": "2a33998ce588096c0ec4f886f237e551" + }, + { + "authorized_access_point": "Dajakisch", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4617354-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)96037650X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4617354-7" + } + ], + "identifier": "http://d-nb.info/gnd/4617354-7", + "closeMatch": [ + { + "authorized_access_point": "Dayak language", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134200579" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85040270" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85040270" + } + ] + }, + { + "authorized_access_point": "Langues dayak", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134200579" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12179945" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12179945p" + } + ] + }, + { + "authorized_access_point": "Lengua dayak", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254418776" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX543421" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX543421" + } + ] + } + ], + "pid": "96037650X", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "variant_access_point": [ + "Dayakisch", + "Dajak-Sprache" + ], + "md5": "d5084850cf9c14d8f43d7c891d839974" + }, + { + "authorized_access_point": "Batak-Sprache", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4617338-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)960375988" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4617338-9" + } + ], + "identifier": "http://d-nb.info/gnd/4617338-9", + "closeMatch": [ + { + "authorized_access_point": "Batak language", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134835191" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85012311" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85012311" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Schriftsprache der Batak-Gruppe" + ] + } + ], + "pid": "960375988", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "md5": "174bc3277ab421f8cc79fc6e381059e9" + }, + { + "authorized_access_point": "DORIS (Programm)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4613370-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)960175105" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4613370-7" + } + ], + "identifier": "http://d-nb.info/gnd/4613370-7", + "pid": "960175105", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Dokumentenverwaltungssystem" + } + ], + "variant_access_point": [ + "Dokumenten Retrieval- und Informations-System" + ], + "md5": "cab14842b9bb94e2242122d63925f9db" + }, + { + "authorized_access_point": "EcoBeaker 2.0", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4609145-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)959959750" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4609145-2" + } + ], + "identifier": "http://d-nb.info/gnd/4609145-2", + "note": [ + { + "noteType": "general", + "label": [ + "O\u0308kologisches Computerprogramm" + ] + } + ], + "pid": "959959750", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "O\u0308kologie" + } + ], + "broader": [ + { + "authorized_access_point": "Programm" + } + ], + "md5": "7b747d6bbc55abe97cd78d2a32323586" + }, + { + "authorized_access_point": "Makassarisch", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4605661-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)959794972" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4605661-0" + } + ], + "identifier": "http://d-nb.info/gnd/4605661-0", + "closeMatch": [ + { + "authorized_access_point": "Makasar language", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134818971" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85079988" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85079988" + } + ] + }, + { + "authorized_access_point": "Makasar (langue)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134818971" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13529312" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13529312v" + } + ] + } + ], + "pid": "959794972", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "variant_access_point": [ + "Macassarese", + "Makasarese", + "Tawna", + "Makassar (Sprache)" + ], + "md5": "dd088fb8022850dbdd25404a41bc2c5b" + }, + { + "authorized_access_point": "Iban-Sprache", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4605659-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)959794921" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4605659-2" + } + ], + "identifier": "http://d-nb.info/gnd/4605659-2", + "pid": "959794921", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "variant_access_point": [ + "Ku\u0308sten-Dajak-Sprache", + "See-Dajak-Sprache" + ], + "md5": "6df9cf4c3ac73bf15ea2f32f1b884b43" + }, + { + "authorized_access_point": "Gayo-Sprache", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4605656-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)959794859" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4605656-7" + } + ], + "identifier": "http://d-nb.info/gnd/4605656-7", + "closeMatch": [ + { + "authorized_access_point": "Gayo language", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134818963" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85053584" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85053584" + } + ] + }, + { + "authorized_access_point": "Gayo (langue)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134818963" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16172335" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16172335k" + } + ] + }, + { + "authorized_access_point": "Lingua gayo", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254315152" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "64" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/64" + } + ] + } + ], + "pid": "959794859", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + }, + { + "authorized_access_point": "Gayo" + } + ], + "variant_access_point": [ + "Gajo-Sprache" + ], + "md5": "c0f1a7dd95cc159c06f939bb43bf0666" + }, + { + "authorized_access_point": "Meteorologisches Feld", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4604725-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)959740864" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4604725-6" + } + ], + "identifier": "http://d-nb.info/gnd/4604725-6", + "pid": "959740864", + "type": "bf:Topic", + "md5": "c44516ef981b7cbb237b54b6e5431702" + }, + { + "authorized_access_point": "Uab Meto", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4603925-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)959716688" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4603925-9" + } + ], + "identifier": "http://d-nb.info/gnd/4603925-9", + "note": [ + { + "noteType": "general", + "label": [ + "Ostindonesische Sprachgruppe, vor allem in Westtimor gesprochen" + ] + } + ], + "pid": "959716688", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Ostindonesische Sprachen" + } + ], + "variant_access_point": [ + "Atoni", + "Orang Gunung", + "Orang Timor", + "Timol", + "Timor", + "Timoresisch", + "Uab Atoni Pah Meto", + "Uab Pah Meto" + ], + "md5": "22a1b74dd3bb89502b683cf014d77205" + }, + { + "authorized_access_point": "Mori-Sprache", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4592666-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)959148523" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4592666-9" + } + ], + "identifier": "http://d-nb.info/gnd/4592666-9", + "note": [ + { + "noteType": "general", + "label": [ + "Verbreitung: Celebes, zw. Towuti-See u. Tombuku-Bergland" + ] + } + ], + "pid": "959148523", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "variant_access_point": [ + "Mori (Sprache)", + "Aikoa" + ], + "md5": "2d7f8ad3fb1d0d90abb61d5d4d7c236c" + }, + { + "authorized_access_point": "Bungku", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4592665-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)959148485" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4592665-7" + } + ], + "identifier": "http://d-nb.info/gnd/4592665-7", + "note": [ + { + "noteType": "general", + "label": [ + "Verbreitung: Celebes, Distrikte Bungku u. Labota; Kabaena Is." + ] + } + ], + "pid": "959148485", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "md5": "5a913abf17fabceaf002f106f32dc0b1" + }, + { + "authorized_access_point": "Kendari", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4592664-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)959148477" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4592664-5" + } + ], + "identifier": "http://d-nb.info/gnd/4592664-5", + "note": [ + { + "noteType": "general", + "label": [ + "Verbreitung: Su\u0308dcelebes" + ] + } + ], + "pid": "959148477", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "variant_access_point": [ + "Tolaki" + ], + "md5": "204402d6d876a229771cbe859f16955f" + }, + { + "authorized_access_point": "Selengleichrichter", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4581262-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)958503001" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4581262-7" + } + ], + "identifier": "http://d-nb.info/gnd/4581262-7", + "pid": "958503001", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Sperrschichtgleichrichter" + } + ], + "md5": "278dd2d9ba2ebfe0f49012c0c774c590" + }, + { + "authorized_access_point": "Kenyah", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4580391-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)958467102" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4580391-2" + } + ], + "identifier": "http://d-nb.info/gnd/4580391-2", + "pid": "958467102", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "variant_access_point": [ + "Kanay", + "Kenja", + "Kenjah", + "Kehja", + "Kinyah" + ], + "md5": "509719715546c9a0a90c7715b15b7473" + }, + { + "authorized_access_point": "COACH 5.0", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4576050-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)958224625" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4576050-0" + } + ], + "identifier": "http://d-nb.info/gnd/4576050-0", + "note": [ + { + "noteType": "general", + "label": [ + "1995 ersch." + ] + } + ], + "pid": "958224625", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Wirtschaftssprache" + }, + { + "authorized_access_point": "Sprachkurs" + }, + { + "authorized_access_point": "Englisch" + } + ], + "broader": [ + { + "authorized_access_point": "Programm" + } + ], + "variant_access_point": [ + "MS-DOS" + ], + "md5": "b4396860fddf1b94aacff81adeedb655" + }, + { + "authorized_access_point": "Okulation", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4575226-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)958195889" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4575226-6" + } + ], + "identifier": "http://d-nb.info/gnd/4575226-6", + "exactMatch": [ + { + "authorized_access_point": "budding (grafting)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1256242187" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "1132" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_1132" + } + ] + } + ], + "pid": "958195889", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Veredelung (Pflanzenbau)" + } + ], + "variant_access_point": [ + "Augenveredelung" + ], + "md5": "8d6146dd54f56fded2beaa29c5fabdfd" + }, + { + "authorized_access_point": "Handstein", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4574751-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)958190453" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4574751-9" + } + ], + "identifier": "http://d-nb.info/gnd/4574751-9", + "note": [ + { + "noteType": "general", + "label": [ + "Erzstufen, die eine Handfla\u0308che ausfu\u0308llen" + ] + } + ], + "pid": "958190453", + "type": "bf:Topic", + "variant_access_point": [ + "Handstu\u0308ck" + ], + "md5": "ad7edef127535a766cf16d6635189b7a" + }, + { + "authorized_access_point": "Fakt-Star extra", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4565110-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)957705611" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4565110-3" + } + ], + "identifier": "http://d-nb.info/gnd/4565110-3", + "note": [ + { + "noteType": "general", + "label": [ + "1998 ersch." + ] + } + ], + "pid": "957705611", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Auftragsabwicklung" + } + ], + "broader": [ + { + "authorized_access_point": "Programm" + } + ], + "variant_access_point": [ + "Fakt-Star-Extra", + "MS-DOS 5.0", + "Windows 3.1" + ], + "md5": "bafb0db5d90302b233e8a1619fe24120" + }, + { + "authorized_access_point": "Indischer Student", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4563960-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)95765894X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4563960-7" + } + ], + "identifier": "http://d-nb.info/gnd/4563960-7", + "closeMatch": [ + { + "authorized_access_point": "East Indian students", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134821379" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85040564" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85040564" + } + ] + }, + { + "authorized_access_point": "E\u0301tudiants indiens (de l'Inde)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134821379" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF18034849" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb18034849d" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "benutzt, soweit im Ausland lebend" + ] + } + ], + "pid": "95765894X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ausla\u0308ndischer Student" + }, + { + "authorized_access_point": "Inder" + } + ], + "md5": "717434351496480838e85d63f0c3b602" + }, + { + "authorized_access_point": "Sa\u0308beltanz", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4558162-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)957331940" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4558162-9" + } + ], + "identifier": "http://d-nb.info/gnd/4558162-9", + "pid": "957331940", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tanz" + } + ], + "md5": "2d601ad537e446cfcd0ba374ba843b22" + }, + { + "authorized_access_point": "Geschu\u0308tzgie\u00dferei", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4558147-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)957331673" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4558147-2" + } + ], + "identifier": "http://d-nb.info/gnd/4558147-2", + "pid": "957331673", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gie\u00dferei" + } + ], + "variant_access_point": [ + "Geschu\u0308tz" + ], + "md5": "0a1d5929aaee563609c4cd34406ba658" + }, + { + "authorized_access_point": "Aprindin", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4555512-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)957192517" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4555512-6" + } + ], + "identifier": "http://d-nb.info/gnd/4555512-6", + "exactMatch": [ + { + "authorized_access_point": "Aprindine", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)124159175X" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D001073" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D001073" + } + ] + } + ], + "pid": "957192517", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Antiarrhythmikum" + } + ], + "variant_access_point": [ + "Aprindina", + "Aprindine", + "Aprindinum", + "CAS 37640-71-4" + ], + "md5": "530519548d68fea6d2908e5b70024463" + }, + { + "authorized_access_point": "Borland Delphi/Connect fu\u0308r SAP", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4550881-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)956838049" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4550881-1" + } + ], + "identifier": "http://d-nb.info/gnd/4550881-1", + "pid": "956838049", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "SAP R/3" + } + ], + "broader": [ + { + "authorized_access_point": "Programmierumgebung" + } + ], + "md5": "bf6d82759b587d77680442140fba538d" + }, + { + "authorized_access_point": "Tukangbesi", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4548250-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)956643221" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4548250-0" + } + ], + "identifier": "http://d-nb.info/gnd/4548250-0", + "pid": "956643221", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "md5": "67dd2bb43fe18f2a473d5c55b2c4df30" + }, + { + "authorized_access_point": "Benzolsulfonamid", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4548010-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)956635709" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4548010-2" + } + ], + "identifier": "http://d-nb.info/gnd/4548010-2", + "note": [ + { + "noteType": "general", + "label": [ + "C5H6-SO2-NH2" + ] + } + ], + "pid": "956635709", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Weichmacher" + }, + { + "authorized_access_point": "Benzolderivate" + }, + { + "authorized_access_point": "Sulfonamide" + } + ], + "variant_access_point": [ + "Benzolsulfamid", + "CAS 98-10-2" + ], + "md5": "83ca21aa9398f4a284c1c3f7b42884e6" + }, + { + "authorized_access_point": "Ruma\u0308nischer Student", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4539828-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)956220495" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4539828-8" + } + ], + "identifier": "http://d-nb.info/gnd/4539828-8", + "closeMatch": [ + { + "authorized_access_point": "Romanian students", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134821441" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2008001682" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2008001682" + } + ] + }, + { + "authorized_access_point": "E\u0301tudiants roumains", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134821441" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17141239" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17141239z" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Benutzt, soweit im Ausland lebend" + ] + } + ], + "pid": "956220495", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ausla\u0308ndischer Student" + }, + { + "authorized_access_point": "Ruma\u0308nen" + } + ], + "md5": "a94eca1719ddc8d06cf51ed85ee57eb7" + }, + { + "authorized_access_point": "Informierte Einwilligung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4524137-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)955244641" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4524137-5" + } + ], + "identifier": "http://d-nb.info/gnd/4524137-5", + "closeMatch": [ + { + "authorized_access_point": "Informed consent (Medical law)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113413603X" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85066306" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85066306" + } + ] + }, + { + "authorized_access_point": "Consentement e\u0301claire\u0301 (droit me\u0301dical)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113413603X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12048898" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12048898z" + } + ] + }, + { + "authorized_access_point": "Consentimiento informado (Derecho me\u0301dico)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)129990534X" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX542468" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX542468" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Informierte_Einwilligung&oldid=242937451" + ] + }, + { + "noteType": "general", + "label": [ + "Einwilligung zur Teilnahme an einem Versuch, Behandlung oder Forschung nach vorheriger eingehender Aufkla\u0308rung", + "Nicht im Zusammenhang mit sexuellen Praktiken zu verwenden, verwende hier das SW \"Einwilligung\"" + ] + } + ], + "pid": "955244641", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Einwilligung" + } + ], + "related": [ + { + "authorized_access_point": "A\u0308rztliche Aufkla\u0308rungspflicht" + } + ], + "variant_access_point": [ + "Informed consent", + "Einwilligung nach erfolgter Aufkla\u0308rung", + "Informiertes Einversta\u0308ndnis", + "Informierte Zustimmung", + "Patient" + ], + "md5": "3a8467f0ca26d26f808b933810d76b10" + }, + { + "authorized_access_point": "TARGETS (Programm)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4519867-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)95489748X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4519867-6" + } + ], + "identifier": "http://d-nb.info/gnd/4519867-6", + "note": [ + { + "noteType": "general", + "label": [ + "Programm zur Simulierung von Zielvorstellungen fu\u0308r Umweltvera\u0308nderung und nachhaltige Entwicklung, erarbeitet vom Rijksinstituut voor Volksgezondheit en Milieu (Bilthoven, NL)" + ] + } + ], + "pid": "95489748X", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Umweltvera\u0308nderung" + }, + { + "authorized_access_point": "Nachhaltigkeit" + }, + { + "authorized_access_point": "Zielvorstellung" + }, + { + "authorized_access_point": "Modell" + } + ], + "broader": [ + { + "authorized_access_point": "Programm" + } + ], + "variant_access_point": [ + "Tool to Assess Regional and Global Environmental and Health Targets for Sustainability" + ], + "md5": "b2bafd347e833ee0d09e86d22c0b2d1e" + }, + { + "authorized_access_point": "Lokales Wissen", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4518241-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)954782232" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4518241-3" + } + ], + "identifier": "http://d-nb.info/gnd/4518241-3", + "note": [ + { + "noteType": "general", + "label": [ + "Bezeichnet die u\u0308berlieferten Kenntnisse, Fa\u0308higkeiten und Weltbilder, die in einer bestimmten natu\u0308rlichen Umwelt und einem bestimmten kulturellen Rahmen entstanden sind." + ] + } + ], + "pid": "954782232", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Alltagswissen" + } + ], + "related": [ + { + "authorized_access_point": "Implizites Wissen" + } + ], + "variant_access_point": [ + "Indigenes Wissen", + "Traditionelles Wissen", + "Indigenous knowledge" + ], + "md5": "27f26b805b71193dc75fd1d26c247353" + }, + { + "authorized_access_point": "PRESTO AfA", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4515541-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)95462839X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4515541-0" + } + ], + "identifier": "http://d-nb.info/gnd/4515541-0", + "pid": "95462839X", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Klein- und Mittelbetrieb" + }, + { + "authorized_access_point": "Anlagegut" + }, + { + "authorized_access_point": "Absetzung fu\u0308r Abnutzung" + } + ], + "broader": [ + { + "authorized_access_point": "Programm" + } + ], + "variant_access_point": [ + "Windows 3.1", + "Windows 95" + ], + "md5": "4d8ca8e5a698d1c82151d9b98e05bffb" + }, + { + "authorized_access_point": "Chipy (Programm)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4509985-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)954211774" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4509985-6" + } + ], + "identifier": "http://d-nb.info/gnd/4509985-6", + "pid": "954211774", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Chipkarte" + }, + { + "authorized_access_point": "Funktelefon" + } + ], + "broader": [ + { + "authorized_access_point": "Programm" + } + ], + "md5": "503d6ab6f6a62e0f24462b1dce5ccc6d" + }, + { + "authorized_access_point": "Optionswert (Umwelto\u0308konomie)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4509905-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)954206738" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4509905-4" + } + ], + "identifier": "http://d-nb.info/gnd/4509905-4", + "note": [ + { + "noteType": "general", + "label": [ + "Wert der Verminderung zuku\u0308nftiger Risiken hinsichtlich irreversibler zuku\u0308nftiger Nutzungen von Umweltgu\u0308tern durch pra\u0308ventive Umweltschutzinvestitionen" + ] + } + ], + "pid": "954206738", + "type": "bf:Topic", + "variant_access_point": [ + "Umwelto\u0308konomie (Umwelto\u0308konomie)" + ], + "md5": "19aca0f54f4ae6dad29c18e8da6d58c7" + }, + { + "authorized_access_point": "Pare-Sprache", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4509866-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)954203232" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4509866-9" + } + ], + "identifier": "http://d-nb.info/gnd/4509866-9", + "closeMatch": [ + { + "authorized_access_point": "Asu language", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113442034X" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85009040" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85009040" + } + ] + }, + { + "authorized_access_point": "Asu (langue)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113442034X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF14470028" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb144700287" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Bantusprache in Tansania" + ] + } + ], + "pid": "954203232", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Bantusprachen" + } + ], + "variant_access_point": [ + "Asu-Sprache", + "Chasu-Sprache" + ], + "md5": "630e0d90d236f8f1b13b3396320cef15" + }, + { + "authorized_access_point": "Allogene Zelle", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4502212-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)953679802" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4502212-4" + } + ], + "identifier": "http://d-nb.info/gnd/4502212-4", + "exactMatch": [ + { + "authorized_access_point": "Allogeneic Cells", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336596554" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D000078422" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D000078422" + } + ] + } + ], + "pid": "953679802", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zelle" + } + ], + "md5": "bac2bb1c0a1ba9a1e6baa7472963c15a" + }, + { + "authorized_access_point": "Indexreihe", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4500908-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)953550346" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4500908-9" + } + ], + "identifier": "http://d-nb.info/gnd/4500908-9", + "pid": "953550346", + "type": "bf:Topic", + "variant_access_point": [ + "Indexzahl", + "Statistische Indexreihe", + "Dynamische Indexreihe" + ], + "md5": "e5c760be2bdeeaba9d84e9d618dde2c5" + }, + { + "authorized_access_point": "Karo-Batak-Sprache", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4498755-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)953444201" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4498755-9" + } + ], + "identifier": "http://d-nb.info/gnd/4498755-9", + "note": [ + { + "noteType": "general", + "label": [ + "Auf Sumatra gesprochen" + ] + } + ], + "pid": "953444201", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "variant_access_point": [ + "Karo (Sprache)", + "Karo-Batak (Sprache)" + ], + "md5": "1c763d7e01f9dafd20d73f36a2e10a9a" + }, + { + "authorized_access_point": "Frank-Ru\u0308hl-Hebra\u0308isch", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4491111-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)953056082" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4491111-7" + } + ], + "identifier": "http://d-nb.info/gnd/4491111-7", + "pid": "953056082", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Hebra\u0308ische Schrift (Druckschrift)" + }, + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "a24f3295570b9d91f44955c1b67d2d86" + }, + { + "authorized_access_point": "Change Agent", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4487767-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)952896605" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4487767-5" + } + ], + "identifier": "http://d-nb.info/gnd/4487767-5", + "note": [ + { + "noteType": "general", + "label": [ + "Den Entwicklungsprozess vorantreibender Akteur in der Organisationsentwicklung" + ] + } + ], + "pid": "952896605", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Organisationsentwicklung" + } + ], + "md5": "5ec358bde0d837e879c1124470a7bed5" + }, + { + "authorized_access_point": "humanitas", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4484471-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)952702053" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4484471-2" + } + ], + "identifier": "http://d-nb.info/gnd/4484471-2", + "note": [ + { + "noteType": "general", + "label": [ + "Verknu\u0308pfe mit Sprachbezeichnung und hier nicht permutierender Wortart, z.B. SWW Latein ; Substantiv ; humanitas" + ] + } + ], + "pid": "952702053", + "type": "bf:Topic", + "md5": "c6742841353f01b7483feacfc04df89c" + }, + { + "authorized_access_point": "Geschlechterforschung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4482930-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)952619636" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4482930-9" + } + ], + "identifier": "http://d-nb.info/gnd/4482930-9", + "exactMatch": [ + { + "authorized_access_point": "Geschlechterforschung", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)966762037" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "19757-4" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/19757-4" + } + ] + }, + { + "authorized_access_point": "Geschlechterforschung", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970553757" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10044108" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10044108" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "In weiter Bedeutung verwendet: Forschung in allen geisteswiss., sozialwiss. und historischen Disziplinen u\u0308ber Geschlechterfragen" + ] + } + ], + "pid": "952619636", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Geschlechterverha\u0308ltnis" + } + ], + "broader": [ + { + "authorized_access_point": "Forschung" + } + ], + "variant_access_point": [ + "Gender Studies", + "Gender-Forschung", + "Geschlechterfrage", + "Geschlechtertheorie", + "Gender-Theorie", + "Gendertheorie", + "Genderstudie" + ], + "md5": "d2383233b12a2305b7688bde5e470ce0" + }, + { + "authorized_access_point": "Amerikanischer Einwanderer", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4481511-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)952440431" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4481511-6" + } + ], + "identifier": "http://d-nb.info/gnd/4481511-6", + "pid": "952440431", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Einwanderer" + }, + { + "authorized_access_point": "Amerikaner" + } + ], + "related": [ + { + "authorized_access_point": "Amerikanische Einwanderin" + } + ], + "variant_access_point": [ + "US-Amerikanischer Einwanderer" + ], + "md5": "3316c8226659ed55d9cc7605f014a210" + }, + { + "authorized_access_point": "Informedia-Preis fu\u0308r Wirtschafts-Journalismus", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4481376-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)952431602" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4481376-4" + } + ], + "identifier": "http://d-nb.info/gnd/4481376-4", + "note": [ + { + "noteType": "general", + "label": [ + "Preis d. Informedia-Stiftung fu\u0308r Gesellschaftswissenschaften u. Publizistik fu\u0308r d. Erkla\u0308rung d. Sozialen Marktwirtschaft e. breiten O\u0308ffentlichkeit" + ] + } + ], + "pid": "952431602", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Journalismus" + } + ], + "broader": [ + { + "authorized_access_point": "Preis (Auszeichnung)" + } + ], + "variant_access_point": [ + "Preis der Informedia-Stiftung fu\u0308r Gesellschaftswissenschaften und Publizistik" + ], + "md5": "34aa6dccb1b04a2ccabf115abe51910c" + }, + { + "authorized_access_point": "Jararaca", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4474362-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)951810189" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4474362-2" + } + ], + "identifier": "http://d-nb.info/gnd/4474362-2", + "exactMatch": [ + { + "authorized_access_point": "Jararaca", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1323097007" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17058267" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17058267x" + } + ] + }, + { + "authorized_access_point": "Bothrops jararaca", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336110708" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D000097145" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D000097145" + } + ] + } + ], + "pid": "951810189", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Grubenottern" + } + ], + "variant_access_point": [ + "Bothrops jararaca" + ], + "md5": "c2e06d6cd4c77307417da8908fa07362" + }, + { + "authorized_access_point": "Abreise", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4472809-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)951618563" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4472809-8" + } + ], + "identifier": "http://d-nb.info/gnd/4472809-8", + "pid": "951618563", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Reise" + }, + { + "authorized_access_point": "Aufbruch" + } + ], + "md5": "c984b376568a0ed541fb3562846413da" + }, + { + "authorized_access_point": "Albanuslegende", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4472697-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)951607804" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4472697-1" + } + ], + "identifier": "http://d-nb.info/gnd/4472697-1", + "note": [ + { + "noteType": "general", + "label": [ + "benutzt fu\u0308r den Stoff (O\u0308dipusthematik)" + ] + } + ], + "pid": "951607804", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Legende" + } + ], + "md5": "00080f92fbf9c953c35139180e897abd" + }, + { + "authorized_access_point": "ABC-Transporter", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4472594-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)95159981X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4472594-2" + } + ], + "identifier": "http://d-nb.info/gnd/4472594-2", + "closeMatch": [ + { + "authorized_access_point": "ATP-binding cassette transporters", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134394896" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2004000512" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2004000512" + } + ] + }, + { + "authorized_access_point": "Transporteurs ABC", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134394896" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13743526" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13743526d" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "ATP-Binding Cassette Transporters", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336028378" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D018528" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D018528" + } + ] + } + ], + "pid": "95159981X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Carrier-Proteine" + } + ], + "variant_access_point": [ + "ATP-Binding Cassette Transporter" + ], + "md5": "3181d3e0331928208cef03166d46265c" + }, + { + "authorized_access_point": "Triage", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4471021-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)951549650" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4471021-5" + } + ], + "identifier": "http://d-nb.info/gnd/4471021-5", + "exactMatch": [ + { + "authorized_access_point": "Triage", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1282202472" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D014218" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D014218" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Als Triage bezeichnet man ein Verfahren, in dem u\u0308ber die Zuteilung knapper u\u0308berlebenswichtiger Behandlungsressourcen entschieden wird.", + "Auch benutzt fu\u0308r psychosoziale Entscheidungshilfen fu\u0308r die Handlungsorientierung in Notlagen" + ] + } + ], + "pid": "951549650", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Priorisierung" + }, + { + "authorized_access_point": "Katastrophenmedizin" + }, + { + "authorized_access_point": "Notfallpsychologie" + } + ], + "variant_access_point": [ + "Triage-Index" + ], + "md5": "fba8c03aaaee2a8ea24b70fd86664735" + }, + { + "authorized_access_point": "Sakai-Sprache", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4470686-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)95153047X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4470686-8" + } + ], + "identifier": "http://d-nb.info/gnd/4470686-8", + "pid": "95153047X", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "variant_access_point": [ + "Sakai (Sprache)", + "Sakei" + ], + "md5": "f56c9b90b2710456de40674cc07cad49" + }, + { + "authorized_access_point": "Bakumpai-Sprache", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4470454-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)95152092X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4470454-9" + } + ], + "identifier": "http://d-nb.info/gnd/4470454-9", + "pid": "95152092X", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "md5": "da2c92847100c792b76e99610975e9e2" + }, + { + "authorized_access_point": "Flakturm", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4461928-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)950857157" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4461928-5" + } + ], + "identifier": "http://d-nb.info/gnd/4461928-5", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?oldid=246525497" + ] + }, + { + "noteType": "general", + "label": [ + "Bestehend aus einem Turmpaar, dem G(efechts)-Turm u. dem L(eit)-Turm", + "Nicht zu verwenden fu\u0308r Bunker, die mit Flugabwehrgeschu\u0308tz versehen waren (z.B. Bunker auf dem Heiliggeistfeld in Hamburg); hierfu\u0308r verknu\u0308pfe geograph. Schlagwort mit SW Bunker u. SW Flugabwehrgeschu\u0308tz" + ] + } + ], + "pid": "950857157", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Turm" + } + ], + "md5": "1bfcf5b7e14c6186efe7d391f8c0a576" + }, + { + "authorized_access_point": "Minahassa-Sprachen", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4459021-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)950693413" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4459021-0" + } + ], + "identifier": "http://d-nb.info/gnd/4459021-0", + "pid": "950693413", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "variant_access_point": [ + "Minahasa-Sprachen" + ], + "md5": "ec4990e5efe739672b7abc17e614fbd1" + }, + { + "authorized_access_point": "Tondanesisch", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4459018-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)950693375" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4459018-0" + } + ], + "identifier": "http://d-nb.info/gnd/4459018-0", + "pid": "950693375", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "variant_access_point": [ + "Tondano-Sprache", + "Tolou-Sprache", + "Tolour-Sprache", + "Tondano (Sprache)", + "Tolou (Sprache)", + "Tolour (Sprache)" + ], + "md5": "cb43c560b9fec8c866edd8166374840f" + }, + { + "authorized_access_point": "Pipikoro-Sprache", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4458960-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)950692433" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4458960-8" + } + ], + "identifier": "http://d-nb.info/gnd/4458960-8", + "closeMatch": [ + { + "authorized_access_point": "Uma language", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134836120" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85139514" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85139514" + } + ] + }, + { + "authorized_access_point": "Uma (langue)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134836120" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF15777212" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb15777212r" + } + ] + } + ], + "pid": "950692433", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "variant_access_point": [ + "Uma-Aria-Sprache", + "Oema-Sprache", + "Pipikoro (Sprache)", + "Uma Aria (Sprache)", + "Oema (Sprache)" + ], + "md5": "7f3e51cd4b7cf87be20c1adb40281085" + }, + { + "authorized_access_point": "COPICS", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4457570-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)950632481" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4457570-1" + } + ], + "identifier": "http://d-nb.info/gnd/4457570-1", + "note": [ + { + "noteType": "general", + "label": [ + "PPS-Modularprogramm" + ] + } + ], + "pid": "950632481", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "PPS" + } + ], + "md5": "576c2c9102412e06bf86afbd4522bb74" + }, + { + "authorized_access_point": "Cuscuta odorata", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4451407-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)950276014" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4451407-4" + } + ], + "identifier": "http://d-nb.info/gnd/4451407-4", + "note": [ + { + "noteType": "general", + "label": [ + "Pflanzenparasit, zu der Gattung der Kleeseide geho\u0308rend" + ] + } + ], + "pid": "950276014", + "type": "bf:Topic", + "md5": "90cafab2efccf54c8d6f87ea60e62332" + }, + { + "authorized_access_point": "Fo\u0308rderpreis Junges Handwerk", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4444587-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)949894028" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4444587-8" + } + ], + "identifier": "http://d-nb.info/gnd/4444587-8", + "note": [ + { + "noteType": "general", + "label": [ + "Ja\u0308hrl. Preis zur Fo\u0308rd. d. wu\u0308rttemberg. Handwerks" + ] + } + ], + "pid": "949894028", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fo\u0308rderungspreis" + }, + { + "authorized_access_point": "Preis (Auszeichnung)" + } + ], + "related": [ + { + "authorized_access_point": "Handwerk" + } + ], + "md5": "2b6e31cc3b3c291134008d0d6f1cd2af" + }, + { + "authorized_access_point": "Estado Novo", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4436273-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)949435015" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4436273-0" + } + ], + "identifier": "http://d-nb.info/gnd/4436273-0", + "note": [ + { + "noteType": "general", + "label": [ + "Bezeichnung fu\u0308r die Diktaturen in Portugal (1933-1974) und Brasilien (1934/1937-1945)" + ] + } + ], + "pid": "949435015", + "type": "bf:Topic", + "md5": "8eb5d45de90baef396b179faa13e2531" + }, + { + "authorized_access_point": "Gruppenkoha\u0308sion", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4427991-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)948897244" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4427991-7" + } + ], + "identifier": "http://d-nb.info/gnd/4427991-7", + "exactMatch": [ + { + "authorized_access_point": "soziale Koha\u0308sion", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1027688217" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10077203" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10077203" + } + ] + }, + { + "authorized_access_point": "Gruppenkoha\u0308sion", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970555849" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10046095" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10046095" + } + ] + } + ], + "pid": "948897244", + "type": "bf:Topic", + "variant_access_point": [ + "Gruppenzusammenhalt", + "Koha\u0308sion (Sozialpsychologie)", + "Zusammenhalt" + ], + "md5": "a24d8a8782d9e39d7a154da26b217d00" + }, + { + "authorized_access_point": "Mandaresisch", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4423655-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)948567341" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4423655-4" + } + ], + "identifier": "http://d-nb.info/gnd/4423655-4", + "pid": "948567341", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "variant_access_point": [ + "Andian", + "Mandar (Sprache)" + ], + "md5": "6ea7748fc68b24d5f7d7565d8067d369" + }, + { + "authorized_access_point": "Mentawai", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4423654-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)948567317" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4423654-2" + } + ], + "identifier": "http://d-nb.info/gnd/4423654-2", + "pid": "948567317", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "variant_access_point": [ + "Mentawei", + "Mentawi" + ], + "md5": "114256b4e879b1094c9e84eb7ca49ef5" + }, + { + "authorized_access_point": "CIM-OSA", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4423632-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)948565977" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4423632-3" + } + ], + "identifier": "http://d-nb.info/gnd/4423632-3", + "pid": "948565977", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "CIM" + }, + { + "authorized_access_point": "Offenes System" + } + ], + "broader": [ + { + "authorized_access_point": "Architektur (Informatik)" + } + ], + "variant_access_point": [ + "CIM-OSA-Modell", + "CIM-Open-Systems-Architecture-Modell", + "ESPRIT (Forschungsprogramm)" + ], + "md5": "77df77a23c4659ff12d12b411d58ed1c" + }, + { + "authorized_access_point": "Happy-hour", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4423019-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)948520116" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4423019-9" + } + ], + "identifier": "http://d-nb.info/gnd/4423019-9", + "closeMatch": [ + { + "authorized_access_point": "Happy hours", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334889856" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2009010761" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2009010761" + } + ] + } + ], + "pid": "948520116", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bar" + } + ], + "md5": "4b8ab0d21cca6624e4000f779506072f" + }, + { + "authorized_access_point": "Musette (Tanz)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4422248-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)948474688" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4422248-8" + } + ], + "identifier": "http://d-nb.info/gnd/4422248-8", + "closeMatch": [ + { + "authorized_access_point": "Bals musettes", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134457324" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF14618415" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb146184151" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Popula\u0308rer franzo\u0308sischer Tanzstil zu Akkordeonmusik" + ] + } + ], + "pid": "948474688", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tanz" + } + ], + "variant_access_point": [ + "Danse Musette", + "Bal Musette", + "Musette-Walzer", + "Valse a\u0300 la musette" + ], + "md5": "7f24a29fdf36247f81e77449d4a6d3b6" + }, + { + "authorized_access_point": "Angle-Klasse II", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4412407-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)947762868" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4412407-7" + } + ], + "identifier": "http://d-nb.info/gnd/4412407-7", + "exactMatch": [ + { + "authorized_access_point": "Malocclusion, Angle Class II", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1241591032" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D008312" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D008312" + } + ] + } + ], + "pid": "947762868", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Angle-Klassifizierung" + } + ], + "md5": "12fc3083b756bf6a8bab5dcee65aca63" + }, + { + "authorized_access_point": "FinWin", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4410220-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)947572090" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4410220-3" + } + ], + "identifier": "http://d-nb.info/gnd/4410220-3", + "pid": "947572090", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Finanzmathematik" + } + ], + "broader": [ + { + "authorized_access_point": "Programm" + } + ], + "md5": "4c810b6c34262f5ae79f498ed36bc06a" + }, + { + "authorized_access_point": "SYBILA-PLUS", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4406289-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)947210601" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4406289-8" + } + ], + "identifier": "http://d-nb.info/gnd/4406289-8", + "note": [ + { + "noteType": "general", + "label": [ + "Programm fu\u0308r Bilanzanalyse" + ] + } + ], + "pid": "947210601", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Bilanzanalyse" + }, + { + "authorized_access_point": "Betriebsanalyse" + }, + { + "authorized_access_point": "Kennzahlensystem" + } + ], + "broader": [ + { + "authorized_access_point": "Programm" + } + ], + "variant_access_point": [ + "Systematische Bilanzanalyse mit dem PC (Programm)", + "SYBILA plus" + ], + "md5": "b83b3a9364832ce09b5d7995ec57d3ac" + }, + { + "authorized_access_point": "Klimatechnisches Handwerk", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4403725-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)947024387" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4403725-9" + } + ], + "identifier": "http://d-nb.info/gnd/4403725-9", + "pid": "947024387", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Installateurhandwerk" + } + ], + "related": [ + { + "authorized_access_point": "Klimatechnische Wirtschaft" + } + ], + "variant_access_point": [ + "Klimatechnik", + "Klimatechnik", + "Klimatechnik" + ], + "md5": "62323b4340a51107427cf287b3150699" + }, + { + "authorized_access_point": "Freiluftanomalie", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4401794-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)946840318" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4401794-7" + } + ], + "identifier": "http://d-nb.info/gnd/4401794-7", + "note": [ + { + "noteType": "general", + "label": [ + "Vereinfachte isostatische Anomalie der Ausgleichstiefe im Bereich des Meeresniveaus" + ] + } + ], + "pid": "946840318", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schwereanomalie" + } + ], + "variant_access_point": [ + "Fayesche Anomalie" + ], + "md5": "5ec27df64d275409f31e6937b248caef" + }, + { + "authorized_access_point": "Arithmetischer Funktionenko\u0308rper", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4401685-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)94683203X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4401685-2" + } + ], + "identifier": "http://d-nb.info/gnd/4401685-2", + "pid": "94683203X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Algebraischer Funktionenko\u0308rper" + } + ], + "md5": "ffe15257ca0670c6df4e0f25add4ada3" + }, + { + "authorized_access_point": "Flo\u0308he (Motiv)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4398263-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)946538506" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4398263-3" + } + ], + "identifier": "http://d-nb.info/gnd/4398263-3", + "pid": "946538506", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tiere (Motiv)" + }, + { + "authorized_access_point": "Tierdarstellung" + }, + { + "authorized_access_point": "Motiv" + } + ], + "md5": "f5a5566aa3064a4afbecd3c6b31ac0df" + }, + { + "authorized_access_point": "Faku", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4398195-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)946529981" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4398195-1" + } + ], + "identifier": "http://d-nb.info/gnd/4398195-1", + "pid": "946529981", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Fakturierung" + } + ], + "broader": [ + { + "authorized_access_point": "Programm" + } + ], + "md5": "f369221022568b295532848ceff87dc4" + }, + { + "authorized_access_point": "Grenzsoldat", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4394827-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)946267340" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4394827-3" + } + ], + "identifier": "http://d-nb.info/gnd/4394827-3", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Grenzsoldat&oldid=193965284" + ] + } + ], + "pid": "946267340", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Soldat" + } + ], + "related": [ + { + "authorized_access_point": "Grenzsoldatin" + } + ], + "md5": "bf68381631123f2961523a6c80eafafa" + }, + { + "authorized_access_point": "Basalzelle", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4389509-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)945831749" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4389509-8" + } + ], + "identifier": "http://d-nb.info/gnd/4389509-8", + "pid": "945831749", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zelle" + } + ], + "md5": "f29eac87b5174caac318344449718dbf" + }, + { + "authorized_access_point": "EWMA-Regelkarte", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4388728-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)94574577X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4388728-4" + } + ], + "identifier": "http://d-nb.info/gnd/4388728-4", + "closeMatch": [ + { + "authorized_access_point": "Quality control", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113476099X" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85109440" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85109440" + } + ] + }, + { + "authorized_access_point": "Qualite\u0301 - Contro\u0302le", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113476099X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11932687" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11932687h" + } + ] + } + ], + "pid": "94574577X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Qualita\u0308tsregelkarte" + } + ], + "variant_access_point": [ + "EWMA-Kontrollkarte", + "EWMA-Karte", + "Exponentially-weighted-moving-average-Regelkarte" + ], + "md5": "ac979aec86a2001f2ad2abc48fc89d4d" + }, + { + "authorized_access_point": "Twist", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4388032-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)945675267" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4388032-0" + } + ], + "identifier": "http://d-nb.info/gnd/4388032-0", + "closeMatch": [ + { + "authorized_access_point": "Twist (Dance)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134342098" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85139049" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85139049" + } + ] + }, + { + "authorized_access_point": "Twist (Music)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1332661807" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2005006466" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2005006466" + } + ] + }, + { + "authorized_access_point": "Twist (danse)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134342098" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12484982" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12484982d" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Angloamerikanischer Tanz und entspr. Musik" + ] + } + ], + "pid": "945675267", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gesellschaftstanz" + } + ], + "md5": "6414c6741242e993a4b691e9fb5ad55a" + }, + { + "authorized_access_point": "Prophase", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4384678-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)945372604" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4384678-6" + } + ], + "identifier": "http://d-nb.info/gnd/4384678-6", + "exactMatch": [ + { + "authorized_access_point": "Prophase", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336587016" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D011418" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D011418" + } + ] + } + ], + "pid": "945372604", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mitose" + } + ], + "md5": "75bb0e1b9a50d9c4d1b1f95abf708bd9" + }, + { + "authorized_access_point": "Zollabkommen", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4384293-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)945325150" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4384293-8" + } + ], + "identifier": "http://d-nb.info/gnd/4384293-8", + "pid": "945325150", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Vo\u0308lkerrechtlicher Vertrag" + } + ], + "variant_access_point": [ + "Zollvertrag" + ], + "md5": "58f1bd5da92cd61dc18291295f067332" + }, + { + "authorized_access_point": "Barrikade", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4375362-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)944352820" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4375362-0" + } + ], + "identifier": "http://d-nb.info/gnd/4375362-0", + "closeMatch": [ + { + "authorized_access_point": "Barricades", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134390033" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13179032" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb131790320" + } + ] + } + ], + "pid": "944352820", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Hindernis" + } + ], + "md5": "fc44da1fddd0d06a41df9e8c8bc62be2" + }, + { + "authorized_access_point": "Mongondou", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4370880-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)94392961X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4370880-8" + } + ], + "identifier": "http://d-nb.info/gnd/4370880-8", + "pid": "94392961X", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "variant_access_point": [ + "Bolaan-Mongondou", + "Mongondow" + ], + "md5": "0fdc1afc98380ad0236807fc4844661d" + }, + { + "authorized_access_point": "Sangiresisch", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4370851-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)94392684X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4370851-1" + } + ], + "identifier": "http://d-nb.info/gnd/4370851-1", + "closeMatch": [ + { + "authorized_access_point": "Sangir language (Indonesia and Philippines)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133725848" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh90002897" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh90002897" + } + ] + }, + { + "authorized_access_point": "Sangir (langue)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133725848" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12134169" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12134169f" + } + ] + } + ], + "pid": "94392684X", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "variant_access_point": [ + "Sanggil", + "Sanggir", + "Sangihe (Sprache)", + "Sangil (Sprache)", + "Sangir (Sprache)" + ], + "md5": "dbc1712b97db0f483e5df9e622a540e9" + }, + { + "authorized_access_point": "Sopranistin", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4367362-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)943618118" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4367362-4" + } + ], + "identifier": "http://d-nb.info/gnd/4367362-4", + "closeMatch": [ + { + "authorized_access_point": "Sopranos (Singers)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133730353" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh89005961" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh89005961" + } + ] + }, + { + "authorized_access_point": "Sopranos", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133730353" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12166784" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb121667843" + } + ] + }, + { + "authorized_access_point": "Soprani", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254394877" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "66221" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/66221" + } + ] + } + ], + "pid": "943618118", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Sa\u0308ngerin" + } + ], + "related": [ + { + "authorized_access_point": "Sopran" + }, + { + "authorized_access_point": "Sopranist" + } + ], + "variant_access_point": [ + "Sopran (Sa\u0308ngerin)" + ], + "md5": "83ee86bf59269aee2a105529962f0de1" + }, + { + "authorized_access_point": "Nachtwa\u0308chter", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4366957-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)943592267" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4366957-8" + } + ], + "identifier": "http://d-nb.info/gnd/4366957-8", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Nachtw%C3%A4chter&oldid=206468413" + ] + } + ], + "pid": "943592267", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Wa\u0308chter" + } + ], + "md5": "81ff1c16e9d34fc6cac5303e0753848f" + }, + { + "authorized_access_point": "Salsa (Tanz)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4365525-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)943496799" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4365525-7" + } + ], + "identifier": "http://d-nb.info/gnd/4365525-7", + "closeMatch": [ + { + "authorized_access_point": "Salsa (Music)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133773540" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85116847" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85116847" + } + ] + }, + { + "authorized_access_point": "Salsa (Dance)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134552629" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh99014258" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh99014258" + } + ] + }, + { + "authorized_access_point": "Salsas", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133773540" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12331117" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12331117t" + } + ] + }, + { + "authorized_access_point": "Salsa (danse)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134552629" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13542512" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb135425124" + } + ] + }, + { + "authorized_access_point": "Salsa", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254379495" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "46674" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/46674" + } + ] + }, + { + "authorized_access_point": "Salsa (Mu\u0301sica)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254481648" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX527887" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX527887" + } + ] + } + ], + "pid": "943496799", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gesellschaftstanz" + } + ], + "md5": "5d87ddeeb2fd81d5f5981fb341595ae1" + }, + { + "authorized_access_point": "Lysat", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4360354-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)943138604" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4360354-3" + } + ], + "identifier": "http://d-nb.info/gnd/4360354-3", + "pid": "943138604", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zellaufschluss" + } + ], + "md5": "9d7baa7f7b2686df485d7b0bfbf6199f" + }, + { + "authorized_access_point": "Service (Hausrat)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4352883-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)942370295" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4352883-1" + } + ], + "identifier": "http://d-nb.info/gnd/4352883-1", + "closeMatch": [ + { + "authorized_access_point": "Services de table", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134514441" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF15505355" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb155053551" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Tafelgeschirr mit einheitlichem Dekor" + ] + } + ], + "pid": "942370295", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Essgeschirr" + } + ], + "variant_access_point": [ + "Tafelservice" + ], + "md5": "fa2d384aff0a23c5bfb5a37cd02074e0" + }, + { + "authorized_access_point": "GroupWise 4.1", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4351435-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)942203283" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4351435-2" + } + ], + "identifier": "http://d-nb.info/gnd/4351435-2", + "note": [ + { + "noteType": "general", + "label": [ + "Nach dem Zusammenschluss von Novell und WordPerfect wurde Office 4.0 umbenannt in GroupWise 4.1" + ] + } + ], + "pid": "942203283", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Office 4.0" + } + ], + "variant_access_point": [ + "Novell GroupWise 4.1" + ], + "md5": "853616ea6033f053a01042539c46a675" + }, + { + "authorized_access_point": "General Equilibrium Environmental Model", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4349431-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)94206285X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4349431-6" + } + ], + "identifier": "http://d-nb.info/gnd/4349431-6", + "note": [ + { + "noteType": "general", + "label": [ + "Makroo\u0308konomisches Modell der OECD; dynamisches, allgemeines Multila\u0308nder-, Multisektoren-Gleichgewichtsmodell, das der Kostenermittlung fu\u0308r Ma\u00dfnahmen der Kohlendioxidemissionssenkung dient" + ] + } + ], + "pid": "94206285X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Makroo\u0308konomisches Modell" + } + ], + "variant_access_point": [ + "GEEM" + ], + "md5": "02d41bc9ced22c3a8462fb67a35243e1" + }, + { + "authorized_access_point": "Kalkutta (Motiv)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4346819-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)941781437" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4346819-6" + } + ], + "identifier": "http://d-nb.info/gnd/4346819-6", + "pid": "941781437", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "8c669a5be38b0a3659c29149564509bc" + }, + { + "authorized_access_point": "Wasserfloh", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4337469-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)940910004" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4337469-4" + } + ], + "identifier": "http://d-nb.info/gnd/4337469-4", + "closeMatch": [ + { + "authorized_access_point": "Daphnia pulex", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134673965" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85035778" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85035778" + } + ] + } + ], + "pid": "940910004", + "type": "bf:Topic", + "variant_access_point": [ + "Daphnia pulex", + "Gemeiner Wasserfloh" + ], + "md5": "3f201670e974f8cb72c2aa5a4e282fda" + }, + { + "authorized_access_point": "Anthronderivate", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4336558-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)940842440" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4336558-9" + } + ], + "identifier": "http://d-nb.info/gnd/4336558-9", + "exactMatch": [ + { + "authorized_access_point": "Anthrones", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336027118" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D000095322" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D000095322" + } + ] + } + ], + "pid": "940842440", + "type": "bf:Topic", + "md5": "412b259c50a4d5768f11de2267b39ce9" + }, + { + "authorized_access_point": "Bildungssendung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4333982-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)94063855X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4333982-7" + } + ], + "identifier": "http://d-nb.info/gnd/4333982-7", + "closeMatch": [ + { + "authorized_access_point": "Educational television programs", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134144377" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2001000815" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2001000815" + } + ] + }, + { + "authorized_access_point": "Educational radio programs", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134212968" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2007025636" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2007025636" + } + ] + }, + { + "authorized_access_point": "Radio - E\u0301missions culturelles", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134212968" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12214963" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12214963b" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Verknu\u0308pfe mit Ho\u0308rfunk bzw. Fernsehen oder engerem Schlagwort (z.B. Lokaler Ho\u0308rfunk), Verknu\u0308pfung mit Rundfunk gilt als pleonastisch." + ] + } + ], + "pid": "94063855X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Rundfunksendung" + } + ], + "variant_access_point": [ + "Bildungsprogramm", + "Bildungssendung", + "Bildungsfunk" + ], + "md5": "763a8996cf98fdb6a4cd3d5baec9d8bd" + }, + { + "authorized_access_point": "Leinenproduktion", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4333440-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)940594919" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4333440-4" + } + ], + "identifier": "http://d-nb.info/gnd/4333440-4", + "pid": "940594919", + "type": "bf:Topic", + "variant_access_point": [ + "Leinen" + ], + "md5": "7401eaffca8786dc12e6803bf642bd69" + }, + { + "authorized_access_point": "Wunderheilung (Motiv)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7794288-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)199289190" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7794288-7" + } + ], + "identifier": "http://d-nb.info/gnd/7794288-7", + "pid": "199289190", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "68e27157863b45d6796b16666f9ea669" + }, + { + "authorized_access_point": "Rosenkranzgebet (Motiv)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7793453-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)199281823" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7793453-2" + } + ], + "identifier": "http://d-nb.info/gnd/7793453-2", + "pid": "199281823", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "56ff5466077ba20371b5c411df20a314" + }, + { + "authorized_access_point": "Dorstener Aak", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7783302-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)199193835" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7783302-8" + } + ], + "identifier": "http://d-nb.info/gnd/7783302-8", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Aak&oldid=186723436#Flussfrachtschiffe_im_Gebiet_des_Niederrheins", + "Dorsten Lexikon - http://www.dorsten-lexikon.de/dorstener-aak/" + ] + }, + { + "noteType": "general", + "label": [ + "In Dorsten gebauter, flacher Flussfrachtschiffstyp; wurde vorwiegend auf Lippe, Ruhr und Niederrhein sowie auf den seela\u0308ndischen Wasserstra\u00dfen (wie Maas, Schelde und Waal) eingesetzt" + ] + } + ], + "pid": "199193835", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Aak" + } + ], + "variant_access_point": [ + "Dorsten'sche Aak" + ], + "md5": "7d1deb6459765d42db035960cabc21cd" + }, + { + "authorized_access_point": "Seilerwarenhandel", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7781349-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)19917606X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7781349-2" + } + ], + "identifier": "http://d-nb.info/gnd/7781349-2", + "pid": "19917606X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Handel" + }, + { + "authorized_access_point": "Seilerware" + } + ], + "variant_access_point": [ + "Seilerware", + "Seilhandel", + "Seil" + ], + "md5": "8cf333f928a306492721b178c13cbd0d" + }, + { + "authorized_access_point": "Spirituosenherstellung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7780760-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)199170711" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7780760-1" + } + ], + "identifier": "http://d-nb.info/gnd/7780760-1", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Bundesverband der Deutschen Spirituosen-Industrie - https://www.spirituosen-verband.de/genuss/geschichte/", + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Brennen_(Spirituosen)&oldid=198247823" + ] + } + ], + "pid": "199170711", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Getra\u0308nkeherstellung" + } + ], + "variant_access_point": [ + "Spirituosenproduktion", + "Brennen (Spirituosen)", + "Spirituosen" + ], + "md5": "bdfd15277e65894352c09400ad2d6bec" + }, + { + "authorized_access_point": "Musikfo\u0308rderung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7778528-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)19915046X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7778528-9" + } + ], + "identifier": "http://d-nb.info/gnd/7778528-9", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Internet - http://www.miz.org/themenportale/musikfoerderung" + ] + } + ], + "pid": "19915046X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kulturfo\u0308rderung" + } + ], + "md5": "13742176404b478bca586501746bbea4" + }, + { + "authorized_access_point": "Feuerschutzsteuer", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7776182-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)199129215" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7776182-0" + } + ], + "identifier": "http://d-nb.info/gnd/7776182-0", + "pid": "199129215", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Versicherungsteuer" + } + ], + "md5": "9ef7ab6ca346ba0862a2a3e1c4a8523a" + }, + { + "authorized_access_point": "Auslandseinsatz (Milita\u0308r)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7512682-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)130791008" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7512682-5" + } + ], + "identifier": "http://d-nb.info/gnd/7512682-5", + "pid": "130791008", + "type": "bf:Topic", + "md5": "a10ba5598358a7dc551aab213ee67ee6" + }, + { + "authorized_access_point": "Ma\u0308nnliche Homosexualita\u0308t", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7508194-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)130750085" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7508194-5" + } + ], + "identifier": "http://d-nb.info/gnd/7508194-5", + "pid": "130750085", + "type": "bf:Topic", + "variant_access_point": [ + "Homophilie", + "Schwule Liebe", + "Schwule Orientierung" + ], + "md5": "972d54737044b2abd673ed44da601524" + }, + { + "authorized_access_point": "Gedichtinterpretation", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7507209-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)130741094" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7507209-9" + } + ], + "identifier": "http://d-nb.info/gnd/7507209-9", + "pid": "130741094", + "type": "bf:Topic", + "md5": "018d9f323d29b5e6d484638d37b2f567" + }, + { + "authorized_access_point": "Antikenrezeption", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7505393-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)130724572" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7505393-7" + } + ], + "identifier": "http://d-nb.info/gnd/7505393-7", + "note": [ + { + "noteType": "general", + "label": [ + "Fu\u0308r rein motivische Behandlung der Antike in den Ku\u0308nsten verwende SW Antike " + ] + } + ], + "pid": "130724572", + "type": "bf:Topic", + "variant_access_point": [ + "Antikenstudium", + "Antikenkopie", + "Antikerezeption" + ], + "md5": "4a7d659bc79399bb6fd1497d6ba5f5d1" + }, + { + "authorized_access_point": "Evidenztheorie (Recht)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7504382-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)130715387" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7504382-8" + } + ], + "identifier": "http://d-nb.info/gnd/7504382-8", + "pid": "130715387", + "type": "bf:Topic", + "md5": "ff077243969aa7ea0060ed7aef767b9d" + }, + { + "authorized_access_point": "Unternehmensorganisation", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7504334-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)130714941" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7504334-8" + } + ], + "identifier": "http://d-nb.info/gnd/7504334-8", + "pid": "130714941", + "type": "bf:Topic", + "variant_access_point": [ + "Betrieb", + "Betriebsorganisation", + "Unternehmensstruktur (Organisation)", + "Unternehmen" + ], + "md5": "427a9c7a919a67c91ef9ae36dbd38409" + }, + { + "authorized_access_point": "Kanonisches Eherecht", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7503603-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)130708291" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7503603-4" + } + ], + "identifier": "http://d-nb.info/gnd/7503603-4", + "pid": "130708291", + "type": "bf:Topic", + "variant_access_point": [ + "Ehe", + "Eherecht der katholischen Kirche" + ], + "md5": "ad868e16e6043d398dcc63635bbad239" + }, + { + "authorized_access_point": "Computerrecht", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7503120-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)130703907" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7503120-6" + } + ], + "identifier": "http://d-nb.info/gnd/7503120-6", + "note": [ + { + "noteType": "general", + "label": [ + "Verwendet fu\u0308r das Recht der Datenverarbeitung", + "Aktualisierung des Hinweissatzes nach Mx-Entscheidung; bis Juli/2024 wurden die Schlagwo\u0308rter \"Datenverarbeitung\" und \"Recht\" fu\u0308r den Nicht-Deskriptor verwendet." + ] + } + ], + "pid": "130703907", + "type": "bf:Topic", + "variant_access_point": [ + "Datenverarbeitungsrecht", + "Datenverarbeitung", + "Computer" + ], + "md5": "8c82ab3e2865aef93ce358d3de795c81" + }, + { + "authorized_access_point": "Pa\u0308dagogische Autorita\u0308t", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7502991-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)130702722" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7502991-1" + } + ], + "identifier": "http://d-nb.info/gnd/7502991-1", + "note": [ + { + "noteType": "general", + "label": [ + "Nur benutzt fu\u0308r die Autorita\u0308t des Erziehenden" + ] + } + ], + "pid": "130702722", + "type": "bf:Topic", + "variant_access_point": [ + "Erzieherische Autorita\u0308t" + ], + "md5": "67a76e56ef5201664ccd0f09cf7956ef" + }, + { + "authorized_access_point": "Verfassungsma\u0308\u00dfigkeit von Gesetzen", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7502002-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)13069374X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7502002-6" + } + ], + "identifier": "http://d-nb.info/gnd/7502002-6", + "pid": "13069374X", + "type": "bf:Topic", + "variant_access_point": [ + "Verfassungsma\u0308\u00dfiges Gesetz", + "Verfassungswidrigkeit von Gesetzen", + "Verfassungswidriges Gesetz", + "Nichtiges Gesetz", + "Gesetz", + "Gesetz" + ], + "md5": "b2b6b6382f726111d1beb8b9fc3a0167" + }, + { + "authorized_access_point": "Literaturinterpretation", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7501863-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)130692476" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7501863-9" + } + ], + "identifier": "http://d-nb.info/gnd/7501863-9", + "pid": "130692476", + "type": "bf:Topic", + "variant_access_point": [ + "Literarische Interpretation" + ], + "md5": "f98088785535c102cdb5df095006e49f" + }, + { + "authorized_access_point": "COBUKAS", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4328762-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04328762X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4328762-1" + } + ], + "identifier": "http://d-nb.info/gnd/4328762-1", + "note": [ + { + "noteType": "general", + "label": [ + "Lehrprogrammsystem fu\u0308r Finanzbuchhaltung" + ] + } + ], + "pid": "04328762X", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Finanzbuchhaltung" + }, + { + "authorized_access_point": "Einfu\u0308hrung" + } + ], + "broader": [ + { + "authorized_access_point": "Programm" + } + ], + "variant_access_point": [ + "Computerorientierte Buchfu\u0308hrung fu\u0308r kaufma\u0308nnische Schulen (Programm)" + ], + "md5": "ac96c5426454310b9df92303058e5f9b" + }, + { + "authorized_access_point": "Haarfollikel", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4328269-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)043282695" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4328269-6" + } + ], + "identifier": "http://d-nb.info/gnd/4328269-6", + "closeMatch": [ + { + "authorized_access_point": "Hair follicles", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334795894" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85058320" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85058320" + } + ] + }, + { + "authorized_access_point": "Follicule du poil", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334795894" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF15062168" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb15062168g" + } + ] + }, + { + "authorized_access_point": "Follicoli piliferi", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)125439432X" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "65584" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/65584" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Hair Follicle", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1282203460" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D018859" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D018859" + } + ] + } + ], + "pid": "043282695", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Haar" + } + ], + "variant_access_point": [ + "Haartasche", + "Haarbalg", + "Folliculus pili" + ], + "md5": "2600e198379d801aba6705b04ed6af76" + }, + { + "authorized_access_point": "Ablagerungsgeschwindigkeit", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4328213-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04328213X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4328213-1" + } + ], + "identifier": "http://d-nb.info/gnd/4328213-1", + "pid": "04328213X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Geschwindigkeit" + } + ], + "variant_access_point": [ + "Deposition (Meteorologie)" + ], + "md5": "ff9703612714c73871933666e51b537a" + }, + { + "authorized_access_point": "Abhanden gekommene Sache", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4327499-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)043274994" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4327499-7" + } + ], + "identifier": "http://d-nb.info/gnd/4327499-7", + "pid": "043274994", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bewegliche Sache" + } + ], + "related": [ + { + "authorized_access_point": "Wiederherbeigeschaffte Sache" + } + ], + "variant_access_point": [ + "Bewegliche Sache" + ], + "md5": "1d94de6718a0bbd8b416be7e509569df" + }, + { + "authorized_access_point": "Intervention der Entente-Ma\u0308chte in der Sowjetunion (1918-1920)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4325204-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)043252044" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4325204-7" + } + ], + "identifier": "http://d-nb.info/gnd/4325204-7", + "exactMatch": [ + { + "authorized_access_point": "Soviet Union - History - Allied intervention, 1918-1920", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1231385979" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85125813" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85125813" + } + ] + }, + { + "authorized_access_point": "URSS - 1918-1920 (Intervention allie\u0301e)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1231385979" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11980886" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119808868" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Russischer_B%C3%BCrgerkrieg&oldid=214352964#Intervention_der_Entente-Ma\u0308chte" + ] + } + ], + "pid": "043252044", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Russischer Bu\u0308rgerkrieg" + }, + { + "authorized_access_point": "Entente" + } + ], + "broader": [ + { + "authorized_access_point": "Intervention (Vo\u0308lkerrecht)" + } + ], + "variant_access_point": [ + "Alliierte Intervention in der Sowjetunion (1918-1920)", + "Milita\u0308rische Intervention in der Sowjetunion (1918-1920)" + ], + "md5": "d1afd3814b3c27d8f3ff6c3da36539b7" + }, + { + "authorized_access_point": "Hanfanbau", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4320346-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)043203469" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4320346-2" + } + ], + "identifier": "http://d-nb.info/gnd/4320346-2", + "pid": "043203469", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Hanfwirtschaft" + }, + { + "authorized_access_point": "Pflanzenbau" + } + ], + "variant_access_point": [ + "Hanf", + "Cannabisanbau", + "Cannabis-Anbau" + ], + "md5": "2ca6ba6acb5b280412ea4310f937dea2" + }, + { + "authorized_access_point": "Lewis-Base", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4319757-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)043197574" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4319757-7" + } + ], + "identifier": "http://d-nb.info/gnd/4319757-7", + "closeMatch": [ + { + "authorized_access_point": "Lewis, Bases de", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134402171" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF14407869" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb144078698" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Lewis Bases", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336148071" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D058115" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D058115" + } + ] + } + ], + "pid": "043197574", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Lewis-Addukt" + } + ], + "variant_access_point": [ + "Lewis-Basen" + ], + "md5": "212944575c92a028bcd5505702605580" + }, + { + "authorized_access_point": "Segregation (Genetik)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4319573-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)043195733" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4319573-8" + } + ], + "identifier": "http://d-nb.info/gnd/4319573-8", + "exactMatch": [ + { + "authorized_access_point": "Chromosome Segregation", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336587482" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D020090" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D020090" + } + ] + } + ], + "pid": "043195733", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kernteilung" + } + ], + "variant_access_point": [ + "Chromosom", + "Chromosomensegregation" + ], + "md5": "e334cd32d10d7c3f76b28c8eed0eaa3e" + }, + { + "authorized_access_point": "Alanin", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4313291-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04313291X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4313291-1" + } + ], + "identifier": "http://d-nb.info/gnd/4313291-1", + "closeMatch": [ + { + "authorized_access_point": "Alanine", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134402074" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85003136" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85003136" + } + ] + }, + { + "authorized_access_point": "Alanine", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134402074" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF14407404" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb14407404k" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "alanine", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1256189383" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "239" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_239" + } + ] + }, + { + "authorized_access_point": "Alanine", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)133614730X" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D000409" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D000409" + } + ] + } + ], + "pid": "04313291X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Proteinogene Aminosa\u0308uren" + } + ], + "variant_access_point": [ + "Aminopropionsa\u0308ure", + "Aminopropansa\u0308ure", + "Alanin (alpha-)", + "CAS 338-69-2", + "CAS 56-41-7", + "CAS 302-72-7", + "Alanin (beta-)", + "CAS 107-95-9" + ], + "md5": "d723caa671f9024954112f49103f713a" + }, + { + "authorized_access_point": "JOKO-AVW", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4312862-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)043128629" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4312862-2" + } + ], + "identifier": "http://d-nb.info/gnd/4312862-2", + "pid": "043128629", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Anlagenbuchhaltung" + } + ], + "broader": [ + { + "authorized_access_point": "Programm" + } + ], + "md5": "bc4e28702021316aac49be0e57e05dac" + }, + { + "authorized_access_point": "Mundart Xin Xiangyu (Changsha)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4306200-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)043062008" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4306200-3" + } + ], + "identifier": "http://d-nb.info/gnd/4306200-3", + "pid": "043062008", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "md5": "4e88a64299b06ebe5160a4e51cafe8c4" + }, + { + "authorized_access_point": "Toala-Sprache", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4304929-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04304929X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4304929-1" + } + ], + "identifier": "http://d-nb.info/gnd/4304929-1", + "note": [ + { + "noteType": "general", + "label": [ + "Su\u0308d-Sulawesi" + ] + } + ], + "pid": "04304929X", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "variant_access_point": [ + "Luwu-Sprache" + ], + "md5": "3070237335823a2eefa997e059735e42" + }, + { + "authorized_access_point": "Redjang-Sprache", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4303516-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)043035167" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4303516-4" + } + ], + "identifier": "http://d-nb.info/gnd/4303516-4", + "closeMatch": [ + { + "authorized_access_point": "Rejang language (Sumatra, Indonesia)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133809227" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh86005267" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh86005267" + } + ] + }, + { + "authorized_access_point": "Rejang (langue)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133809227" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13516519" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13516519w" + } + ] + } + ], + "pid": "043035167", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "variant_access_point": [ + "Rejang-Sprache" + ], + "md5": "71138c86767b6d35dc0251fd97aed929" + }, + { + "authorized_access_point": "Pitu-ulunna-salu", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4302279-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)043022790" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4302279-0" + } + ], + "identifier": "http://d-nb.info/gnd/4302279-0", + "pid": "043022790", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "variant_access_point": [ + "Pitu Uluna Binanga" + ], + "md5": "c8d13458c23511a9d58dbe22aacc9997" + }, + { + "authorized_access_point": "Bo\u0308otisch", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4300416-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)043004164" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4300416-7" + } + ], + "identifier": "http://d-nb.info/gnd/4300416-7", + "pid": "043004164", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "A\u0308olisch" + } + ], + "variant_access_point": [ + "Boiotisch" + ], + "md5": "d5965d0b109426d5f24fe521f046bddc" + }, + { + "authorized_access_point": "Lewis-Sa\u0308ure", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4300358-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)043003583" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4300358-8" + } + ], + "identifier": "http://d-nb.info/gnd/4300358-8", + "closeMatch": [ + { + "authorized_access_point": "Lewis acids", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113425038X" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh89004433" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh89004433" + } + ] + }, + { + "authorized_access_point": "Lewis, Acides de", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113425038X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12269978" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12269978m" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Lewis Acids", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336148020" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D058116" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D058116" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/wiki/Lewis-S%C3%A4ure-Base-Konzept" + ] + } + ], + "pid": "043003583", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Sa\u0308ure" + }, + { + "authorized_access_point": "Lewis-Addukt" + } + ], + "variant_access_point": [ + "Lewis-Sa\u0308uren" + ], + "md5": "11a537267d60dde7aea15d365badd1ef" + }, + { + "authorized_access_point": "Feuchteleitung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4300117-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)043001173" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4300117-8" + } + ], + "identifier": "http://d-nb.info/gnd/4300117-8", + "pid": "043001173", + "type": "bf:Topic", + "variant_access_point": [ + "Feuchtigkeitstransport", + "Feuchtetransport" + ], + "md5": "af66d0c6a44b6f121d684304c59a475f" + }, + { + "authorized_access_point": "Tischdekoration", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4300024-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04300024X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4300024-1" + } + ], + "identifier": "http://d-nb.info/gnd/4300024-1", + "closeMatch": [ + { + "authorized_access_point": "Table setting and decoration", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133998410" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85131801" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85131801" + } + ] + }, + { + "authorized_access_point": "Arts de la table", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133998410" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11960524" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11960524g" + } + ] + }, + { + "authorized_access_point": "Arte de servir la mesa", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254495401" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX538094" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX538094" + } + ] + } + ], + "pid": "04300024X", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Tischdecken" + } + ], + "variant_access_point": [ + "Tischschmuck" + ], + "md5": "7ea1750bc6f6b4da992d7a58dd945e1d" + }, + { + "authorized_access_point": "TOP-FAKTURA", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4300015-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)043000150" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4300015-0" + } + ], + "identifier": "http://d-nb.info/gnd/4300015-0", + "pid": "043000150", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Fakturierung" + } + ], + "broader": [ + { + "authorized_access_point": "Programm" + } + ], + "md5": "6a87f37cba403213ed669d113969d3eb" + }, + { + "authorized_access_point": "Senologie", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4298255-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042982553" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4298255-8" + } + ], + "identifier": "http://d-nb.info/gnd/4298255-8", + "closeMatch": [ + { + "authorized_access_point": "Breast - Diseases", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133629563" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85016683" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85016683" + } + ] + }, + { + "authorized_access_point": "Sein - Maladies", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133629563" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11938410" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11938410t" + } + ] + }, + { + "authorized_access_point": "Mastopatie", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254356177" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "25596" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/25596" + } + ] + }, + { + "authorized_access_point": "Mamas - Enfermedades", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254486186" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX564846" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX564846" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Lehre von den Erkrankungen der weiblichen Brust" + ] + } + ], + "pid": "042982553", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Brustkrankheit" + } + ], + "md5": "c8b010ad5eadb7ff4e5cd673030b3d7b" + }, + { + "authorized_access_point": "Bromate", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4298179-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042981794" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4298179-7" + } + ], + "identifier": "http://d-nb.info/gnd/4298179-7", + "closeMatch": [ + { + "authorized_access_point": "Bromate", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134593279" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85017042" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85017042" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Bromates", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336226919" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D001959" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D001959" + } + ] + } + ], + "pid": "042981794", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bromverbindungen" + } + ], + "md5": "c34ba44b03944fbb55e1e033cc93591f" + }, + { + "authorized_access_point": "Griechischer Student", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4294066-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042940664" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4294066-7" + } + ], + "identifier": "http://d-nb.info/gnd/4294066-7", + "closeMatch": [ + { + "authorized_access_point": "Greek students", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134821360" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85057194" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85057194" + } + ] + }, + { + "authorized_access_point": "E\u0301tudiants grecs", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134821360" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16605366" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb166053660" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Benutzt, soweit im Ausland lebend" + ] + } + ], + "pid": "042940664", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ausla\u0308ndischer Student" + }, + { + "authorized_access_point": "Griechen" + } + ], + "md5": "c8583cf5c145488b66b1de13335488d5" + }, + { + "authorized_access_point": "Grenzproduktivita\u0308t", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4291458-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042914582" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4291458-9" + } + ], + "identifier": "http://d-nb.info/gnd/4291458-9", + "closeMatch": [ + { + "authorized_access_point": "Marginal productivity", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113450361X" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85081054" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85081054" + } + ] + }, + { + "authorized_access_point": "Productivite\u0301 marginale", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113450361X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16600937v" + }, + { + "type": "uri", + "value": "https://catalogue.bnf.fr/ark:/12148/cb16600937v" + } + ] + }, + { + "authorized_access_point": "Produttivita\u0300 marginale", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254365591" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "33441" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/33441" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Grenzproduktivita\u0308t", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)966850807" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "29921-4" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/29921-4" + } + ] + }, + { + "authorized_access_point": "Grenzproduktivita\u0308t", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970555407" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10045917" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10045917" + } + ] + } + ], + "pid": "042914582", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Produktivita\u0308t" + } + ], + "related": [ + { + "authorized_access_point": "Grenzertrag" + }, + { + "authorized_access_point": "Grenzproduktivita\u0308tstheorie" + } + ], + "md5": "f1229cf5b825e6f6d383cc5fe72c6c67" + }, + { + "authorized_access_point": "Gru\u0308nzug", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4291374-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042913748" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4291374-3" + } + ], + "identifier": "http://d-nb.info/gnd/4291374-3", + "note": [ + { + "noteType": "general", + "label": [ + "Multifunktionaler Naturkorridor, der Fuss-, Fahrrad-, Reitwege und/oder Wasserla\u0308ufe umschliesst u. bestehende Freifla\u0308chen (z.B. Parks) beinhaltet; meist an naturra\u0308uml. Strukturen orientiert" + ] + } + ], + "pid": "042913748", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Gru\u0308ngu\u0308rtel" + } + ], + "variant_access_point": [ + "Greenway" + ], + "md5": "08a6a20b856c5996ed0902b6dd6de528" + }, + { + "authorized_access_point": "Apoptosis", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4291096-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04291096X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4291096-1" + } + ], + "identifier": "http://d-nb.info/gnd/4291096-1", + "closeMatch": [ + { + "authorized_access_point": "Apoptosis", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133803601" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh91000743" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh91000743" + } + ] + }, + { + "authorized_access_point": "Apoptose", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133803601" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12463578" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12463578d" + } + ] + }, + { + "authorized_access_point": "Apoptosi", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254319298" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "1245" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/1245" + } + ] + }, + { + "authorized_access_point": "Apoptosis", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254405623" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX547652" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX547652" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Apoptosis", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1241591687" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D017209" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D017209" + } + ] + } + ], + "pid": "04291096X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zelltod" + } + ], + "related": [ + { + "authorized_access_point": "Regeneration" + }, + { + "authorized_access_point": "Tumorlysesyndrom" + } + ], + "variant_access_point": [ + "Apoptose", + "Programmierter Zelltod" + ], + "md5": "c3baf41d9d19bbb56faa8472352f9f7d" + }, + { + "authorized_access_point": "Cefpirom", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4291087-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042910870" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4291087-0" + } + ], + "identifier": "http://d-nb.info/gnd/4291087-0", + "closeMatch": [ + { + "authorized_access_point": "Cefpirome", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134245483" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12266464" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12266464t" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Cefpirome", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336145846" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D000097572" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D000097572" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "INN" + ] + } + ], + "pid": "042910870", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Cephalosporine" + } + ], + "variant_access_point": [ + "CAS 84957-29-9", + "CAS 98753-19-6" + ], + "md5": "099bd73c00ba4ad1f8a37d5a2c3cdc83" + }, + { + "authorized_access_point": "DUFIS", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4289256-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042892562" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4289256-9" + } + ], + "identifier": "http://d-nb.info/gnd/4289256-9", + "note": [ + { + "noteType": "general", + "label": [ + "O\u0308konometrisches Modell fu\u0308r die niederla\u0308nd. Finanzwirtschaft" + ] + } + ], + "pid": "042892562", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Makroo\u0308konomisches Modell" + } + ], + "variant_access_point": [ + "Dutch Financial System" + ], + "md5": "58c48251badd47b6a8a835fb14ded868" + }, + { + "authorized_access_point": "Zoopa\u0308dagogik", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4287052-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042870526" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4287052-5" + } + ], + "identifier": "http://d-nb.info/gnd/4287052-5", + "note": [ + { + "noteType": "general", + "label": [ + "Nicht auf Zoologische Ga\u0308rten beschra\u0308nkt, auch in Museen, Schulen" + ] + } + ], + "pid": "042870526", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Pa\u0308dagogik" + } + ], + "md5": "72c5a16ed175735aa0980c4f6fb89209" + }, + { + "authorized_access_point": "Durchla\u0308ssigkeit (Schule)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4286362-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042863627" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4286362-4" + } + ], + "identifier": "http://d-nb.info/gnd/4286362-4", + "pid": "042863627", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Schulu\u0308bergang" + } + ], + "md5": "ba31d7b94a9ac82bd722faa68c613855" + }, + { + "authorized_access_point": "FIMA", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4284879-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042848792" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4284879-9" + } + ], + "identifier": "http://d-nb.info/gnd/4284879-9", + "pid": "042848792", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Finanzmathematik" + } + ], + "broader": [ + { + "authorized_access_point": "Programm" + } + ], + "md5": "ffd3906e8895f7d5793e29626daf6d5e" + }, + { + "authorized_access_point": "Mundart Niedersa\u0308chsisch (Stellingwerven)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4284125-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042841259" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4284125-2" + } + ], + "identifier": "http://d-nb.info/gnd/4284125-2", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://nl.wikipedia.org/w/index.php?title=Stellingwerfs&oldid=67416841" + ] + }, + { + "noteType": "general", + "label": [ + "Nichtfriesische Mundart eines kleinen Gebietes im niederla\u0308ndischen Friesland" + ] + } + ], + "pid": "042841259", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Niederla\u0308ndisch" + }, + { + "authorized_access_point": "Niedersa\u0308chsisch" + } + ], + "variant_access_point": [ + "Stellingwerfs", + "Stellingwarfs" + ], + "md5": "6f3ce17e036e25bb60af9c91091d9d29" + }, + { + "authorized_access_point": "Cefpodoxim", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4281945-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042819458" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4281945-3" + } + ], + "identifier": "http://d-nb.info/gnd/4281945-3", + "closeMatch": [ + { + "authorized_access_point": "Ce\u0301fpodoxime", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134245491" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12266467" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12266467v" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Cefpodoxime", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336146117" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D000097623" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D000097623" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "INN" + ] + } + ], + "pid": "042819458", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Cephalosporine" + } + ], + "variant_access_point": [ + "Orelox", + "CAS 80210-62-4", + "CAS 87239-81-4" + ], + "md5": "2eaf409495073cac4c6e56678ba48c14" + }, + { + "authorized_access_point": "Minangkabau-Sprache", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4281547-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042815479" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4281547-2" + } + ], + "identifier": "http://d-nb.info/gnd/4281547-2", + "closeMatch": [ + { + "authorized_access_point": "Minangkabau language", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134130015" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85085475" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85085475" + } + ] + }, + { + "authorized_access_point": "Minangkabau (langue)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134130015" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12045391" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12045391f" + } + ] + } + ], + "pid": "042815479", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "variant_access_point": [ + "Menangkabau-Sprache" + ], + "md5": "d0e6fa7fea6f3f7a01a1b222c4f70ae4" + }, + { + "authorized_access_point": "Stachelpanax", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4277708-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042777089" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4277708-2" + } + ], + "identifier": "http://d-nb.info/gnd/4277708-2", + "closeMatch": [ + { + "authorized_access_point": "Acanthopanax senticosus", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134235577" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85000324" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85000324" + } + ] + }, + { + "authorized_access_point": "Eleutherococcus senticosus", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134235577" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12258006" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12258006t" + } + ] + } + ], + "pid": "042777089", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Araliengewa\u0308chse" + } + ], + "variant_access_point": [ + "Eleutherococcus senticosus", + "Acanthopanax senticosus", + "Eleukokk", + "Taigawurzel", + "Teufelsbusch", + "Sibirischer Ginseng" + ], + "md5": "4831019afc2097cb1d03c37cebe48537" + }, + { + "authorized_access_point": "Vorfertigung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4276531-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042765315" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4276531-6" + } + ], + "identifier": "http://d-nb.info/gnd/4276531-6", + "pid": "042765315", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fertigung" + } + ], + "related": [ + { + "authorized_access_point": "Fertigbauteil" + } + ], + "variant_access_point": [ + "Vorfabrikation" + ], + "md5": "57de6259e88b981cafe1634671165fe3" + }, + { + "authorized_access_point": "Lateinamerikanischer Student", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4273188-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042731887" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4273188-4" + } + ], + "identifier": "http://d-nb.info/gnd/4273188-4", + "closeMatch": [ + { + "authorized_access_point": "Latin American students", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134492170" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85074931" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85074931" + } + ] + }, + { + "authorized_access_point": "E\u0301tudiants latino-ame\u0301ricains", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134492170" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17148865" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17148865v" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Benutzt, soweit im Ausland lebend" + ] + } + ], + "pid": "042731887", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ausla\u0308ndischer Student" + }, + { + "authorized_access_point": "Lateinamerikaner" + } + ], + "md5": "f112a417e503a3a2d883c93fce4e57df" + }, + { + "authorized_access_point": "Einschaltverhalten", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4273143-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042731437" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4273143-4" + } + ], + "identifier": "http://d-nb.info/gnd/4273143-4", + "pid": "042731437", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schaltverhalten" + } + ], + "md5": "f6ba9d92aea38da42ea090024552c42f" + }, + { + "authorized_access_point": "Zellaufschluss", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4272013-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042720133" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4272013-8" + } + ], + "identifier": "http://d-nb.info/gnd/4272013-8", + "pid": "042720133", + "type": "bf:Topic", + "md5": "c32f6471b4377fd5c8ea847acae852e6" + }, + { + "authorized_access_point": "Rutheniumkomplexe", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4266702-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04266702X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4266702-1" + } + ], + "identifier": "http://d-nb.info/gnd/4266702-1", + "pid": "04266702X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "U\u0308bergangsmetallkomplexe" + } + ], + "md5": "6de7d6872fdfbc88ae9726a04906acdf" + }, + { + "authorized_access_point": "Geldmarktbuchforderung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4265330-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042653304" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4265330-7" + } + ], + "identifier": "http://d-nb.info/gnd/4265330-7", + "note": [ + { + "noteType": "general", + "label": [ + "Anlageform am Geldmarkt ohne Wertpapiercharakter" + ] + } + ], + "pid": "042653304", + "type": "bf:Topic", + "md5": "320f5d5aee04b7512f1b7f2bc506e9d8" + }, + { + "authorized_access_point": "Schichtdicke", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4264521-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042645212" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4264521-9" + } + ], + "identifier": "http://d-nb.info/gnd/4264521-9", + "closeMatch": [ + { + "authorized_access_point": "Thickness measurement", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134760205" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85134851" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85134851" + } + ] + }, + { + "authorized_access_point": "E\u0301paisseur - Mesure", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134760205" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12493536" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb124935363" + } + ] + } + ], + "pid": "042645212", + "type": "bf:Topic", + "variant_access_point": [ + "Filmdicke" + ], + "md5": "a685211b6e7846a2ecf0fc86155c6636" + }, + { + "authorized_access_point": "Engganesisch", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4262722-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042627222" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4262722-9" + } + ], + "identifier": "http://d-nb.info/gnd/4262722-9", + "closeMatch": [ + { + "authorized_access_point": "Enggano language", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134188870" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85043175" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85043175" + } + ] + }, + { + "authorized_access_point": "Enggano (langue)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134188870" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12146429" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12146429q" + } + ] + } + ], + "pid": "042627222", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "variant_access_point": [ + "Enggano-Sprache", + "Enggano (Sprache)" + ], + "md5": "31d1ec6e482d228f9b99744bd2e31859" + }, + { + "authorized_access_point": "Ledo", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4258620-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042586208" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4258620-3" + } + ], + "identifier": "http://d-nb.info/gnd/4258620-3", + "note": [ + { + "noteType": "general", + "label": [ + "Westmalaiopolynes. Sprache auf (Zentral-)Sulawesi, Kaili-Pomona" + ] + } + ], + "pid": "042586208", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "variant_access_point": [ + "Kaili", + "Palu" + ], + "md5": "f6f1a76c0bbfe753852c2a51fffb9b7e" + }, + { + "authorized_access_point": "Widerstandska\u0308mpfer", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4257820-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042578205" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4257820-6" + } + ], + "identifier": "http://d-nb.info/gnd/4257820-6", + "closeMatch": [ + { + "authorized_access_point": "Re\u0301sistants", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134491964" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13537085" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13537085z" + } + ] + } + ], + "pid": "042578205", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Widerstand" + }, + { + "authorized_access_point": "Widerstandska\u0308mpferin" + } + ], + "md5": "703688dbe099d1f07b59436bddced83f" + }, + { + "authorized_access_point": "Beweglichkeit (Physik)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4257325-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042573254" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4257325-7" + } + ], + "identifier": "http://d-nb.info/gnd/4257325-7", + "pid": "042573254", + "type": "bf:Topic", + "variant_access_point": [ + "Teilchen" + ], + "md5": "67f005d9225ed6fd51429500b6abdb32" + }, + { + "authorized_access_point": "Regulationstherapie", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4253636-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042536367" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4253636-4" + } + ], + "identifier": "http://d-nb.info/gnd/4253636-4", + "pid": "042536367", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Naturheilverfahren" + } + ], + "variant_access_point": [ + "Autoregulative Therapie" + ], + "md5": "9afacb01d3e51285994c32b11b12c283" + }, + { + "authorized_access_point": "Finanzstatistik", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4249667-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042496675" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4249667-6" + } + ], + "identifier": "http://d-nb.info/gnd/4249667-6", + "exactMatch": [ + { + "authorized_access_point": "Finanzstatistik", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)966744160" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "11534-1" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/11534-1" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Benutzt fu\u0308r finanzwirtschaftl. Statistik, nicht fu\u0308r Geld u. Kredit" + ] + } + ], + "pid": "042496675", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Wirtschaftsstatistik" + } + ], + "md5": "4204516f84a12331929067a7e89b971e" + }, + { + "authorized_access_point": "PRESET", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4248638-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042486386" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4248638-5" + } + ], + "identifier": "http://d-nb.info/gnd/4248638-5", + "note": [ + { + "noteType": "general", + "label": [ + "Computergestu\u0308tztes Modellsystem zur Berechnung von Agrarfaktor- und -produktpreisen" + ] + } + ], + "pid": "042486386", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Agrarpreis" + } + ], + "broader": [ + { + "authorized_access_point": "Preisinformationssystem" + } + ], + "md5": "1e9559d62083b9a6807535539102498c" + }, + { + "authorized_access_point": "Urak Lawoi\u02be-Sprache", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4244769-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042447690" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4244769-0" + } + ], + "identifier": "http://d-nb.info/gnd/4244769-0", + "pid": "042447690", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "variant_access_point": [ + "Orak Lawoi\u02be-Sprache" + ], + "md5": "eeb66521f8319d88b9868cde3151d9cc" + }, + { + "authorized_access_point": "Lager (Unterkunft)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4243879-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042438799" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4243879-2" + } + ], + "identifier": "http://d-nb.info/gnd/4243879-2", + "exactMatch": [ + { + "authorized_access_point": "Notunterkunft", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)971407800" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10036866" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10036866" + } + ] + } + ], + "pid": "042438799", + "type": "bf:Topic", + "md5": "7508e33b9f54cf69a57d9b3ebb141549" + }, + { + "authorized_access_point": "Trainingsperiodisierung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4242587-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042425875" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4242587-6" + } + ], + "identifier": "http://d-nb.info/gnd/4242587-6", + "pid": "042425875", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Trainingsplanung" + } + ], + "related": [ + { + "authorized_access_point": "Jahrestrainingsplan" + } + ], + "variant_access_point": [ + "Periodisierung (Training)" + ], + "md5": "e82cc417e2af005522f17741774dbe3d" + }, + { + "authorized_access_point": "Bestandsplanung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4242282-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042422825" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4242282-6" + } + ], + "identifier": "http://d-nb.info/gnd/4242282-6", + "closeMatch": [ + { + "authorized_access_point": "Inventory control", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334875782" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85067678" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85067678" + } + ] + }, + { + "authorized_access_point": "Gestion des stocks", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334875782" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11933321" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119333210" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Benutzt sowohl im engeren Sinne (Materialbestandsplanung) als auch im weiteren Sinne" + ] + } + ], + "pid": "042422825", + "type": "bf:Topic", + "variant_access_point": [ + "Materialbestand", + "Materialbestandsplanung" + ], + "md5": "79b3a01fc873d8983800f39aa18fe98d" + }, + { + "authorized_access_point": "Muna-Sprache", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4238048-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042380480" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4238048-0" + } + ], + "identifier": "http://d-nb.info/gnd/4238048-0", + "pid": "042380480", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "variant_access_point": [ + "Mina-Sprache (Westindonesisch)", + "Muna (Sprache)", + "Mina (Sprache, Westindonesisch)" + ], + "md5": "dc05cada35b892b772aded2952108d96" + }, + { + "authorized_access_point": "Funktionelle Sto\u0308rung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4237448-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042374480" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4237448-0" + } + ], + "identifier": "http://d-nb.info/gnd/4237448-0", + "closeMatch": [ + { + "authorized_access_point": "Troubles fonctionnels (me\u0301decine)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133690696" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11980105" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11980105h" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Krankheitssymptom ohne organisches Korrelat" + ] + } + ], + "pid": "042374480", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Funktionssto\u0308rung" + } + ], + "related": [ + { + "authorized_access_point": "Organische Sto\u0308rung" + }, + { + "authorized_access_point": "Psychosomatische Sto\u0308rung" + }, + { + "authorized_access_point": "Neurasthenie" + } + ], + "variant_access_point": [ + "Somatisierungssto\u0308rung", + "Somatoforme Sto\u0308rung", + "Somatoforme autonome Funktionssto\u0308rung", + "Parafunktion", + "Psychogene Dysfunktion" + ], + "md5": "31cd6c6609d01e97d162d40145702832" + }, + { + "authorized_access_point": "Basophile Zelle", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4232590-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042325900" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4232590-0" + } + ], + "identifier": "http://d-nb.info/gnd/4232590-0", + "pid": "042325900", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Epithelzelle" + } + ], + "variant_access_point": [ + "Beta-Zelle (Hypophysenvorderlappen)", + "Adenohypophyse" + ], + "md5": "b3f79b53bad65524bcbf43ddebad6159" + }, + { + "authorized_access_point": "Basophiler Granulozyt", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4232589-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042325897" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4232589-4" + } + ], + "identifier": "http://d-nb.info/gnd/4232589-4", + "closeMatch": [ + { + "authorized_access_point": "Basophils", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133811159" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85012133" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85012133" + } + ] + }, + { + "authorized_access_point": "Basophiles", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133811159" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12486075" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb124860754" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Basophils", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336596848" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D001491" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D001491" + } + ] + } + ], + "pid": "042325897", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Granulozyt" + } + ], + "variant_access_point": [ + "Basophiler", + "Granulocytus basophilicus" + ], + "md5": "da9429de85e96691e17463d05d152ac3" + }, + { + "authorized_access_point": "Besucherfu\u0308hrung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4231341-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042313414" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4231341-7" + } + ], + "identifier": "http://d-nb.info/gnd/4231341-7", + "closeMatch": [ + { + "authorized_access_point": "Sightseeing business", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134267916" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85122383" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85122383" + } + ] + }, + { + "authorized_access_point": "Visites touristiques", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134267916" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12308374" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb123083748" + } + ] + }, + { + "authorized_access_point": "Empresas turi\u0301sticas", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254411127" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX534646" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX534646" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Fu\u0308hrung durch Museen, zur Besichtigung von Sehenswu\u0308rdigkeiten und sonstigen Einrichtungen aller Art" + ] + } + ], + "pid": "042313414", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Fremdenfu\u0308hrer" + } + ], + "variant_access_point": [ + "Ga\u0308stefu\u0308hrung", + "Besucher", + "Fu\u0308hrung (Besucher)", + "Fremdenfu\u0308hrung", + "Museumsfu\u0308hrung" + ], + "md5": "94b533aa5c483579e66586ecc39213ad" + }, + { + "authorized_access_point": "Badjaw-Sprache", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4227755-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042277558" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4227755-3" + } + ], + "identifier": "http://d-nb.info/gnd/4227755-3", + "pid": "042277558", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "variant_access_point": [ + "Badjau-Sprache", + "Sama-Sprache (Austronesische Sprache)" + ], + "md5": "2b9cddf253fa6f871a7e8426a8399523" + }, + { + "authorized_access_point": "Durchflusscytometrie", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4226628-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042266289" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4226628-2" + } + ], + "identifier": "http://d-nb.info/gnd/4226628-2", + "closeMatch": [ + { + "authorized_access_point": "Flow cytometry", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134175647" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85049287" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85049287" + } + ] + }, + { + "authorized_access_point": "Cytome\u0301trie de flux", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134175647" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12121528" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb121215281" + } + ] + }, + { + "authorized_access_point": "Citometria a flusso", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254321098" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "1795" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/1795" + } + ] + }, + { + "authorized_access_point": "Citometri\u0301a de flujo", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254421912" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX547339" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX547339" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Flow Cytometry", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1241598517" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D005434" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D005434" + } + ] + } + ], + "pid": "042266289", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Cytometrie" + }, + { + "authorized_access_point": "Durchflussmessung" + } + ], + "variant_access_point": [ + "Flow cytometry", + "Durchflusszytometrie", + "Flowzytometrie" + ], + "md5": "8dd7518a42f39158c4efc6ace7ae3d51" + }, + { + "authorized_access_point": "Linguist", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4224183-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042241839" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4224183-2" + } + ], + "identifier": "http://d-nb.info/gnd/4224183-2", + "closeMatch": [ + { + "authorized_access_point": "Linguists", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133932878" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85077231" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85077231" + } + ] + }, + { + "authorized_access_point": "Linguistes", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133932878" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11933934" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119339340" + } + ] + }, + { + "authorized_access_point": "Linguisti", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254371966" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "38524" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/38524" + } + ] + }, + { + "authorized_access_point": "Lingu\u0308istas", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254456627" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX527503" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX527503" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Der deutsche Wortschatz - https://www.dwds.de/wb/Linguist" + ] + } + ], + "pid": "042241839", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Philologe" + } + ], + "related": [ + { + "authorized_access_point": "Linguistin" + }, + { + "authorized_access_point": "Linguistik" + } + ], + "variant_access_point": [ + "Sprachwissenschaftler", + "Sprachforscher" + ], + "md5": "3943709704c626870fbd9d3c781de53b" + }, + { + "authorized_access_point": "Drawida", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4223028-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042230284" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4223028-7" + } + ], + "identifier": "http://d-nb.info/gnd/4223028-7", + "closeMatch": [ + { + "authorized_access_point": "Dravidians", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134208367" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85039403" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85039403" + } + ] + }, + { + "authorized_access_point": "Dravidiens", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134208367" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12201689" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb122016898" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Nicht-indoarisches Volk in Su\u0308dindien" + ] + } + ], + "pid": "042230284", + "type": "bf:Topic", + "variant_access_point": [ + "Dravida", + "Drawiden" + ], + "md5": "5d6aa12bd37946262affbd2feee20a77" + }, + { + "authorized_access_point": "Abtragungsform", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4221301-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042213010" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4221301-0" + } + ], + "identifier": "http://d-nb.info/gnd/4221301-0", + "pid": "042213010", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Relief (Geografie)" + } + ], + "variant_access_point": [ + "Erosionsform" + ], + "md5": "b360d8dad93c7e1a794b06822d3b405e" + }, + { + "authorized_access_point": "Installateurhandwerk", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4218315-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042183154" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4218315-7" + } + ], + "identifier": "http://d-nb.info/gnd/4218315-7", + "closeMatch": [ + { + "authorized_access_point": "Plumbing", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134558260" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85103551" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85103551" + } + ] + }, + { + "authorized_access_point": "Plomberie", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134558260" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11933155" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11933155r" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Bauinstallation", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)966697308" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "13181-5" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/13181-5" + } + ] + } + ], + "pid": "042183154", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Handwerk" + } + ], + "related": [ + { + "authorized_access_point": "Klempnerhandwerk" + } + ], + "variant_access_point": [ + "Installationshandwerk", + "SHK-Handwerk", + "Sanita\u0308r-, Heizungs-, Klimatechnikhandwerk", + "Sanita\u0308rhandwerk" + ], + "md5": "cd584c85dd462439467445d94d3c7f63" + }, + { + "authorized_access_point": "Vo\u0308lkerkundliche Schaustellung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4216818-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04216818X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4216818-1" + } + ], + "identifier": "http://d-nb.info/gnd/4216818-1", + "closeMatch": [ + { + "authorized_access_point": "Human zoos", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134559305" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2006001275" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2006001275" + } + ] + }, + { + "authorized_access_point": "Exhibitions ethnographiques", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134559305" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF14406121" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb144061213" + } + ] + } + ], + "pid": "04216818X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Vo\u0308lkerkundliche Ausstellung" + } + ], + "related": [ + { + "authorized_access_point": "Kolonialausstellung" + } + ], + "variant_access_point": [ + "Vo\u0308lkerschau" + ], + "md5": "e507f32803a935bf3a356c7209e370d8" + }, + { + "authorized_access_point": "Haftara", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4216125-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042161258" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4216125-3" + } + ], + "identifier": "http://d-nb.info/gnd/4216125-3", + "closeMatch": [ + { + "authorized_access_point": "Haftarot", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134589379" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "n81026486" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/names/n81026486" + } + ] + }, + { + "authorized_access_point": "Hapt\u0323arah", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134589379" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13537030" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13537030p" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Internet - http://www.juedische-allgemeine.de/article/view/id/14708", + "Wikipedia - https://de.wikipedia.org/wiki/Haftara" + ] + }, + { + "noteType": "general", + "label": [ + "Im ju\u0308dischen Ritus der Synagoge der an Sabbaten, Feier- und Fasttagen an die Vorlesung aus dem Pentateuch sich anschlie\u00dfende Abschnitt aus den Propheten" + ] + } + ], + "pid": "042161258", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Liturgie" + } + ], + "broader": [ + { + "authorized_access_point": "Judentum" + } + ], + "variant_access_point": [ + "Haftarah", + "Haft\u0323arah", + "Haphtara", + "Haftara banawi", + "Haft\u0323arah ba-navi", + "Haft\u0323arot" + ], + "md5": "7eacba48eaec44727a088ec4f160a63d" + }, + { + "authorized_access_point": "BEPSYS", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4214767-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042147670" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4214767-0" + } + ], + "identifier": "http://d-nb.info/gnd/4214767-0", + "pid": "042147670", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Programmiersystem" + } + ], + "md5": "5c64bacc4c004144897efddafd4612b7" + }, + { + "authorized_access_point": "Kartometrie", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4214223-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042142237" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4214223-4" + } + ], + "identifier": "http://d-nb.info/gnd/4214223-4", + "pid": "042142237", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kartenauswertung" + } + ], + "variant_access_point": [ + "Kartenmessung" + ], + "md5": "6e5a19b9acecb489d05fe527a37219ad" + }, + { + "authorized_access_point": "Abgrusung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4213751-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042137519" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4213751-2" + } + ], + "identifier": "http://d-nb.info/gnd/4213751-2", + "pid": "042137519", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Insolationsverwitterung" + } + ], + "related": [ + { + "authorized_access_point": "Grus" + }, + { + "authorized_access_point": "Vergrusung" + } + ], + "md5": "b0530c6c818165cd5817147cda6c99ca" + }, + { + "authorized_access_point": "Kadajan", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4212409-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042124093" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4212409-8" + } + ], + "identifier": "http://d-nb.info/gnd/4212409-8", + "pid": "042124093", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "variant_access_point": [ + "Kadazan (Sprache)" + ], + "md5": "0651405268b39e3924cdfe87a0d9748a" + }, + { + "authorized_access_point": "Adiabate", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4212390-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042123909" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4212390-2" + } + ], + "identifier": "http://d-nb.info/gnd/4212390-2", + "pid": "042123909", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kennlinie" + } + ], + "variant_access_point": [ + "Isentrope" + ], + "md5": "f26b64a1750d7b51522bfba62320b782" + }, + { + "authorized_access_point": "Bugi-Sprache", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4211277-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04211277X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4211277-1" + } + ], + "identifier": "http://d-nb.info/gnd/4211277-1", + "closeMatch": [ + { + "authorized_access_point": "Bugis language", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133936830" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85017675" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85017675" + } + ] + }, + { + "authorized_access_point": "Bugis (langue)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133936830" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11935314" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119353146" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Sprache in Indonesien" + ] + } + ], + "pid": "04211277X", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "variant_access_point": [ + "Buginesisch" + ], + "md5": "2091b20c4a1c1527e90fc7c2211fdf72" + }, + { + "authorized_access_point": "FERSIM", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4210437-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042104378" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4210437-3" + } + ], + "identifier": "http://d-nb.info/gnd/4210437-3", + "pid": "042104378", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Fertigungskontrolle" + }, + { + "authorized_access_point": "Simulation" + } + ], + "broader": [ + { + "authorized_access_point": "Programm" + } + ], + "md5": "665bece2d7582ebb6ae420636bc6a8d5" + }, + { + "authorized_access_point": "JASPER (Programm)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4210091-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042100917" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4210091-4" + } + ], + "identifier": "http://d-nb.info/gnd/4210091-4", + "note": [ + { + "noteType": "general", + "label": [ + "Programm zur Analyse des Jahresabschlusses einer Kapitalgesellschaft" + ] + } + ], + "pid": "042100917", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Bilanzanalyse" + } + ], + "broader": [ + { + "authorized_access_point": "Programm" + } + ], + "variant_access_point": [ + "Jahresabschlussanalyse als Planungs- und Entscheidungsrechnung (Programm)", + "JASPER, Vollversion 2.12" + ], + "md5": "2297db1033410c1ff219d665d045cdd5" + }, + { + "authorized_access_point": "Mastopathie", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4210044-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042100445" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4210044-6" + } + ], + "identifier": "http://d-nb.info/gnd/4210044-6", + "exactMatch": [ + { + "authorized_access_point": "Breast - Fibrocystic disease", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1335338195" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85016686" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85016686" + } + ] + }, + { + "authorized_access_point": "Fibrocystic Breast Disease", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)124161198X" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D005348" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D005348" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Mastopathie&oldid=243852289" + ] + }, + { + "noteType": "general", + "label": [ + "Benutze Kombination \"Mamma AND Krankheit\" fu\u0308r weitere Treffer" + ] + } + ], + "pid": "042100445", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Brustkrankheit" + } + ], + "variant_access_point": [ + "Cystische Mastopathie", + "Fibrocystische Mastopathie", + "Fibro\u0308s-zystische Mastopathie", + "Fibrozystische Brusterkrankung", + "Fibrozystische Mastopathie", + "Mammadysplasie", + "Mastopathia chronica cystica", + "Mastopathia fibrosa cystica", + "Zystenmamma", + "Zystische Brusterkrankung" + ], + "md5": "62f4a5673aa5fef27c6600828c7924b7" + }, + { + "authorized_access_point": "Bieberbach-Vermutung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4208103-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042081033" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4208103-8" + } + ], + "identifier": "http://d-nb.info/gnd/4208103-8", + "note": [ + { + "noteType": "general", + "label": [ + "Seit dem Beweis durch Louis de Branges de Bourcia 1985 ist die Bieberbach-Vermutung auch als Satz von de Branges bekannt." + ] + } + ], + "pid": "042081033", + "type": "bf:Topic", + "variant_access_point": [ + "Bieberbachsche Vermutung", + "Satz von de Branges" + ], + "md5": "fae5c83c190474920cc090f84f86d767" + }, + { + "authorized_access_point": "Zelltod", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4207415-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042074150" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4207415-0" + } + ], + "identifier": "http://d-nb.info/gnd/4207415-0", + "closeMatch": [ + { + "authorized_access_point": "Cell death", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133693458" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85021644" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85021644" + } + ] + }, + { + "authorized_access_point": "Mort cellulaire", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133693458" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11981727" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11981727q" + } + ] + }, + { + "authorized_access_point": "Morte cellulare", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254319336" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "1251" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/1251" + } + ] + }, + { + "authorized_access_point": "Muerte celular", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254505474" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX550134" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX550134" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Cell Death", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336587970" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D016923" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D016923" + } + ] + } + ], + "pid": "042074150", + "type": "bf:Topic", + "md5": "e2479156e2f3b2d94d22a6e7a59b5225" + }, + { + "authorized_access_point": "Ackerbu\u0308rgerstadt", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4204452-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042044529" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4204452-2" + } + ], + "identifier": "http://d-nb.info/gnd/4204452-2", + "pid": "042044529", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Stadt" + } + ], + "md5": "a4e33d5a6267cee5524dd7b146ba123f" + }, + { + "authorized_access_point": "INVESTOR (Programm)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4203327-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042033276" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4203327-5" + } + ], + "identifier": "http://d-nb.info/gnd/4203327-5", + "pid": "042033276", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Kapitalanlage" + } + ], + "broader": [ + { + "authorized_access_point": "Programm" + } + ], + "md5": "ceb2345cef550e59e7cf89fb4551452e" + }, + { + "authorized_access_point": "Anti-Utopie", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4202262-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042022622" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4202262-9" + } + ], + "identifier": "http://d-nb.info/gnd/4202262-9", + "closeMatch": [ + { + "authorized_access_point": "Dystopias", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134096054" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85040350" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85040350" + } + ] + }, + { + "authorized_access_point": "Dystopies", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134096054" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17718158" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb177181582" + } + ] + }, + { + "authorized_access_point": "Distopia", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254348263" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "20474" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/20474" + } + ] + }, + { + "authorized_access_point": "Utopi\u0301as", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254405437" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX527178" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX527178" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Literarische Gattung" + ] + } + ], + "pid": "042022622", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Utopie" + } + ], + "broader": [ + { + "authorized_access_point": "Literatur" + } + ], + "variant_access_point": [ + "Negative Utopie", + "Dystopie (Literatur)" + ], + "md5": "e6bc7593ee44f7b9bde683d30ebe6a3a" + }, + { + "authorized_access_point": "SKEP", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4202064-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042020646" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4202064-5" + } + ], + "identifier": "http://d-nb.info/gnd/4202064-5", + "note": [ + { + "noteType": "general", + "label": [ + "Modell zur Erfassung der strategischen Gro\u0308ssen einer Strategie und Bewertung der finanziellen Auswirkungen" + ] + } + ], + "pid": "042020646", + "type": "bf:Topic", + "variant_access_point": [ + "Strategische Kosten- und Ergebnisplanung" + ], + "md5": "09a1b43f33cb06fab10ba042993c5b81" + }, + { + "authorized_access_point": "O\u0308konomische Theorie der Demokratie", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4196959-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041969596" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4196959-5" + } + ], + "identifier": "http://d-nb.info/gnd/4196959-5", + "exactMatch": [ + { + "authorized_access_point": "O\u0308konomische Theorie der Demokratie", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)967055202" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "11167-2" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/11167-2" + } + ] + } + ], + "pid": "041969596", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "O\u0308konomische Theorie der Politik" + } + ], + "md5": "8bdfe3d286f5dd470fcff51bb10e477a" + }, + { + "authorized_access_point": "Alumne", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4196671-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041966716" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4196671-5" + } + ], + "identifier": "http://d-nb.info/gnd/4196671-5", + "closeMatch": [ + { + "authorized_access_point": "Seminarians", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134075464" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85119931" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85119931" + } + ] + }, + { + "authorized_access_point": "Se\u0301minaristes", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134075464" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11982450" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11982450n" + } + ] + }, + { + "authorized_access_point": "Seminaristas", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)129991084X" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX532029" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX532029" + } + ] + } + ], + "pid": "041966716", + "type": "bf:Topic", + "variant_access_point": [ + "Alumnus (Theologie)", + "Seminarist", + "Priesterseminarist", + "Priesteramtskandidat" + ], + "md5": "d457d5610ac310b10811240175524a82" + }, + { + "authorized_access_point": "Allemande", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4196292-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041962923" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4196292-8" + } + ], + "identifier": "http://d-nb.info/gnd/4196292-8", + "closeMatch": [ + { + "authorized_access_point": "Allemandes", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133867901" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85003648" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85003648" + } + ] + }, + { + "authorized_access_point": "Allemande", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134387296" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85003647" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85003647" + } + ] + }, + { + "authorized_access_point": "Allemandes (musique)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133867901" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13557889" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13557889z" + } + ] + }, + { + "authorized_access_point": "Allemande (danse)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134387296" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13169979" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13169979x" + } + ] + }, + { + "authorized_access_point": "Allemanda", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254394192" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "65506" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/65506" + } + ] + } + ], + "pid": "041962923", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tanz" + } + ], + "variant_access_point": [ + "Allemanda" + ], + "md5": "c5895080b46bf8548287276f5eee2176" + }, + { + "authorized_access_point": "Philosophiegeschichte (Fach)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4196108-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041961080" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4196108-0" + } + ], + "identifier": "http://d-nb.info/gnd/4196108-0", + "pid": "041961080", + "type": "bf:Topic", + "variant_access_point": [ + "Philosophiegeschichtsschreibung" + ], + "md5": "c9eac7c03abfa4cdef1b97e5025d80df" + }, + { + "authorized_access_point": "Internationale Konferenz", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4194424-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041944240" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4194424-0" + } + ], + "identifier": "http://d-nb.info/gnd/4194424-0", + "exactMatch": [ + { + "authorized_access_point": "Internationale Konferenz", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)966784510" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "19711-0" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/19711-0" + } + ] + } + ], + "pid": "041944240", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Konferenz" + }, + { + "authorized_access_point": "Internationale Veranstaltung" + } + ], + "md5": "63c85a8d229fb35695f1edd2c742909a" + }, + { + "authorized_access_point": "Corporate Identity", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4193565-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041935659" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4193565-2" + } + ], + "identifier": "http://d-nb.info/gnd/4193565-2", + "closeMatch": [ + { + "authorized_access_point": "Corporate image", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134080468" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85032900" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85032900" + } + ] + }, + { + "authorized_access_point": "Entreprises - Image", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134080468" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11983326" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11983326r" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Corporate Identity", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970542151" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10060812" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10060812" + } + ] + } + ], + "pid": "041935659", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Corporate Design" + }, + { + "authorized_access_point": "Unternehmenskultur" + } + ], + "variant_access_point": [ + "Unternehmensidentita\u0308t", + "CI", + "Firmenimage (Corporate Identity)", + "Unternehmensperso\u0308nlichkeit" + ], + "md5": "2003702998b472d7575cad83f4e5a945" + }, + { + "authorized_access_point": "Metrik (Mathematik)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4193458-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04193458X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4193458-1" + } + ], + "identifier": "http://d-nb.info/gnd/4193458-1", + "closeMatch": [ + { + "authorized_access_point": "Metric system", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134610475" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85084442" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85084442" + } + ] + }, + { + "authorized_access_point": "Syste\u0300me me\u0301trique", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134610475" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11941225" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11941225t" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Neben der Bedeutung \"Distanzfunktion\"/\"Abstandsfunktion\" wird auch der metrische Tensor aus der Differentialgeometrie als Metrik bezeichnet." + ] + } + ], + "pid": "04193458X", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Linienelement" + } + ], + "variant_access_point": [ + "Distanzfunktion", + "Abstandsfunktion" + ], + "md5": "e4dc8c11ad990a2a2a59156c1542d425" + }, + { + "authorized_access_point": "Achthundertfu\u0308nfzig-Millibar-Fla\u0308che", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4192028-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041920287" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4192028-4" + } + ], + "identifier": "http://d-nb.info/gnd/4192028-4", + "pid": "041920287", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Niveaufla\u0308che" + } + ], + "md5": "409557d5aecbdac4517f7682888cee22" + }, + { + "authorized_access_point": "Fu\u0308nfhundert-Millibar-Fla\u0308che", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4192027-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041920279" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4192027-2" + } + ], + "identifier": "http://d-nb.info/gnd/4192027-2", + "pid": "041920279", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Niveaufla\u0308che" + } + ], + "md5": "3103d68e6182e8bbdcd0e923256b2ab2" + }, + { + "authorized_access_point": "Vo\u0308lkerkundliche Zeitschrift", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4191741-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041917413" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4191741-8" + } + ], + "identifier": "http://d-nb.info/gnd/4191741-8", + "pid": "041917413", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fachzeitschrift" + } + ], + "variant_access_point": [ + "Ethnologische Zeitschrift" + ], + "md5": "ff5147bd32d7dcb4f5f98251629653f8" + }, + { + "authorized_access_point": "Rauhna\u0308chte", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4191357-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041913574" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4191357-7" + } + ], + "identifier": "http://d-nb.info/gnd/4191357-7", + "pid": "041913574", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Volksglaube" + } + ], + "variant_access_point": [ + "Rauhnacht", + "Rauchna\u0308chte", + "Raunacht", + "Rauna\u0308chte", + "Unterna\u0308chte", + "Zwo\u0308lfna\u0308chte", + "Zwo\u0308lf heilige Na\u0308chte", + "Zwo\u0308lften" + ], + "md5": "634b53b89543393cbdfd77f0818f3cb8" + }, + { + "authorized_access_point": "Zweitwohnung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4191288-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041912888" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4191288-3" + } + ], + "identifier": "http://d-nb.info/gnd/4191288-3", + "closeMatch": [ + { + "authorized_access_point": "Second homes", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)133479376X" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85119417" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85119417" + } + ] + }, + { + "authorized_access_point": "Re\u0301sidences secondaires", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)133479376X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11938910" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119389106" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Zweitwohnung", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970607334" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10062702" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10062702" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Benutzt fu\u0308r u\u0308berwiegend eigengenutzte Wohnungen; gemietete Wohnungen s. unter Ferienwohnung" + ] + } + ], + "pid": "041912888", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Freizeitwohnen" + } + ], + "related": [ + { + "authorized_access_point": "Ferienwohnung" + }, + { + "authorized_access_point": "Wochenendhaus" + } + ], + "variant_access_point": [ + "Freizeitwohnung", + "Zweitwohnsitz" + ], + "md5": "531514940e2ad16ec0b7074c38285e8b" + }, + { + "authorized_access_point": "Zitze", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4190983-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041909836" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4190983-5" + } + ], + "identifier": "http://d-nb.info/gnd/4190983-5", + "exactMatch": [ + { + "authorized_access_point": "teats", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1256273848" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "14813" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_14813" + } + ] + } + ], + "pid": "041909836", + "type": "bf:Topic", + "variant_access_point": [ + "Mamille", + "Papilla mammae", + "Milchdru\u0308senpapille" + ], + "md5": "97d613b808777ce5cef72a79ed729b3b" + }, + { + "authorized_access_point": "Zellteilung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4190668-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041906683" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4190668-8" + } + ], + "identifier": "http://d-nb.info/gnd/4190668-8", + "closeMatch": [ + { + "authorized_access_point": "Cell division", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133655165" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85021646" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85021646" + } + ] + }, + { + "authorized_access_point": "Cellules - Division", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133655165" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11958046" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119580464" + } + ] + }, + { + "authorized_access_point": "Cellules ve\u0301ge\u0301tales - Division", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133883516" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13622694" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13622694b" + } + ] + }, + { + "authorized_access_point": "Divisio\u0301n celular", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1299906753" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX550146" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX550146" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "cell division", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1256273333" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "1413" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_1413" + } + ] + }, + { + "authorized_access_point": "Cell Division", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336586273" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D002455" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D002455" + } + ] + } + ], + "pid": "041906683", + "type": "bf:Topic", + "variant_access_point": [ + "Zytokinese", + "Cytokinese" + ], + "md5": "31204b707efde0ec50d4275d57fa8af3" + }, + { + "authorized_access_point": "Wochenendhaus", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4190139-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041901398" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4190139-3" + } + ], + "identifier": "http://d-nb.info/gnd/4190139-3", + "closeMatch": [ + { + "authorized_access_point": "Second homes", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133946550" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85119417" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85119417" + } + ] + }, + { + "authorized_access_point": "Re\u0301sidences secondaires", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133946550" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11938910" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119389106" + } + ] + }, + { + "authorized_access_point": "Datchas", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334794960" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16764757" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb167647579" + } + ] + } + ], + "pid": "041901398", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Landhaus" + } + ], + "related": [ + { + "authorized_access_point": "Zweitwohnung" + } + ], + "variant_access_point": [ + "Datscha (Wochenendhaus)", + "Datsche (Wochenendhaus)" + ], + "md5": "e5e1eb9c72dad396ea0de788cec42b26" + }, + { + "authorized_access_point": "Walzenschra\u0308mlader", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4189035-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041890353" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4189035-8" + } + ], + "identifier": "http://d-nb.info/gnd/4189035-8", + "pid": "041890353", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schra\u0308mlader" + } + ], + "md5": "9416f7fecdc1c6a08d5ba264bf891b62" + }, + { + "authorized_access_point": "Volkswirt", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4188566-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04188566X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4188566-1" + } + ], + "identifier": "http://d-nb.info/gnd/4188566-1", + "pid": "04188566X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Wirtschaftswissenschaftler" + } + ], + "related": [ + { + "authorized_access_point": "Volkswirtin" + } + ], + "variant_access_point": [ + "Diplomvolkswirt", + "Nationalo\u0308konom", + "Volkswirtschafter", + "Volkswirtschaftler" + ], + "md5": "e04590b16d3dc6c7e3bb4a95b7400349" + }, + { + "authorized_access_point": "Toluolderivate", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4185633-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041856333" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4185633-8" + } + ], + "identifier": "http://d-nb.info/gnd/4185633-8", + "pid": "041856333", + "type": "bf:Topic", + "variant_access_point": [ + "Toluol" + ], + "md5": "4e2556673ab96c3cb6d873d3fa53efd5" + }, + { + "authorized_access_point": "Toluol", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4185632-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041856325" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4185632-6" + } + ], + "identifier": "http://d-nb.info/gnd/4185632-6", + "closeMatch": [ + { + "authorized_access_point": "Toluene", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134295766" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85135907" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85135907" + } + ] + }, + { + "authorized_access_point": "Tolue\u0300ne", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134295766" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12365423" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb123654235" + } + ] + }, + { + "authorized_access_point": "Toluene", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254354751" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "24400" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/24400" + } + ] + }, + { + "authorized_access_point": "Tolueno", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254495630" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX545422" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX545422" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "toluene", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1256264377" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "7803" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_7803" + } + ] + } + ], + "pid": "041856325", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Benzolderivate" + } + ], + "variant_access_point": [ + "Methylbenzol", + "Toluen" + ], + "md5": "d7978974999ed399363df60b7f66782f" + }, + { + "authorized_access_point": "Territorialstaat", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4184802-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041848020" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4184802-0" + } + ], + "identifier": "http://d-nb.info/gnd/4184802-0", + "pid": "041848020", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Staat" + } + ], + "related": [ + { + "authorized_access_point": "Landeshoheit" + }, + { + "authorized_access_point": "Territorium" + } + ], + "variant_access_point": [ + "Landesstaat", + "Territorialisierung" + ], + "md5": "ad0adbd3a4127f6e56da08aa8573948f" + }, + { + "authorized_access_point": "Tasche", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4184479-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041844793" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4184479-8" + } + ], + "identifier": "http://d-nb.info/gnd/4184479-8", + "closeMatch": [ + { + "authorized_access_point": "Bags", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134441231" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85010984" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85010984" + } + ] + }, + { + "authorized_access_point": "Sacs", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134441231" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF14550405" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb14550405f" + } + ] + } + ], + "pid": "041844793", + "type": "bf:Topic", + "variant_access_point": [ + "Taschen" + ], + "md5": "2fc39d914b809633da3d6a5b9f31be27" + }, + { + "authorized_access_point": "Tanztheater", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4184451-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041844513" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4184451-8" + } + ], + "identifier": "http://d-nb.info/gnd/4184451-8", + "note": [ + { + "noteType": "general", + "label": [ + "Sammelbezeichnung fu\u0308r eine Gegenbewegung zum klassischen Ballett, die seit Mitte der 1970er-Jahre zunehmend an Bedeutung gewonnen hat", + "Einzelne Tanztheater-Produktionen werden als anonyme Werktitel angesetzt, Verweisungen vom Choreographen und ggf. weiteren wichtigen Beteiligten werden gemacht; auch als Oberbegriff fu\u0308r Tanztheaterkompanien zu verwenden" + ] + } + ], + "pid": "041844513", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tanz" + } + ], + "related": [ + { + "authorized_access_point": "Ballett" + } + ], + "variant_access_point": [ + "Tanzdrama", + "Tanzstu\u0308ck", + "Tanztheaterstu\u0308ck" + ], + "md5": "409365b6d0cd8e9eaea52944e4f5375a" + }, + { + "authorized_access_point": "Sulfotransferasen", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4184065-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041840658" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4184065-3" + } + ], + "identifier": "http://d-nb.info/gnd/4184065-3", + "closeMatch": [ + { + "authorized_access_point": "Sulfotransferases", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133824757" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2004014824" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2004014824" + } + ] + }, + { + "authorized_access_point": "Sulfotransfe\u0301rases", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133824757" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12535709" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb125357095" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Sulfotransferases", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336133015" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D015238" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D015238" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "EC 2.8.2" + ] + } + ], + "pid": "041840658", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Transferasen" + } + ], + "variant_access_point": [ + "SULTs" + ], + "md5": "300d4a0a9c3ee20bc374f365f8c4cb0d" + }, + { + "authorized_access_point": "Steinbau", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4183018-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041830180" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4183018-0" + } + ], + "identifier": "http://d-nb.info/gnd/4183018-0", + "closeMatch": [ + { + "authorized_access_point": "Building, Stone", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133989896" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85017717" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85017717" + } + ] + }, + { + "authorized_access_point": "Stonemasonry", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336575867" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85128340" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85128340" + } + ] + }, + { + "authorized_access_point": "Construction en pierre", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133989896" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11957075" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11957075g" + } + ] + } + ], + "pid": "041830180", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bauweise" + } + ], + "md5": "10ca79800c5b25049c3091094fdfc396" + }, + { + "authorized_access_point": "Spha\u0308re", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4182221-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041822218" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4182221-3" + } + ], + "identifier": "http://d-nb.info/gnd/4182221-3", + "closeMatch": [ + { + "authorized_access_point": "Sphere", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134621248" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85126590" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85126590" + } + ] + }, + { + "authorized_access_point": "Sphe\u0300re", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134621248" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11981287" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119812876" + } + ] + }, + { + "authorized_access_point": "Esfera", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1299911781" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX543469" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX543469" + } + ] + } + ], + "pid": "041822218", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Kugel" + } + ], + "variant_access_point": [ + "Hyperspha\u0308re" + ], + "md5": "6bf235a31020f4aa40735719f52a4c4f" + }, + { + "authorized_access_point": "Singula\u0308re Gleichung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4181517-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041815173" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4181517-8" + } + ], + "identifier": "http://d-nb.info/gnd/4181517-8", + "pid": "041815173", + "type": "bf:Topic", + "md5": "14302ac484052229029ff52928423d47" + }, + { + "authorized_access_point": "Sequenz (Biochemie)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4181025-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041810252" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4181025-9" + } + ], + "identifier": "http://d-nb.info/gnd/4181025-9", + "note": [ + { + "noteType": "general", + "label": [ + "Aufeinanderfolge verschiedener gleichartiger Biomoleku\u0308le", + "Fu\u0308r Sequenz im Allgemeinen verwende Reihenfolge, gnd/4507704-6", + "Fu\u0308r Sequenz (Film) verwende Sequenz (Film), gnd/132554891X", + "Fu\u0308r Sequenz (Musik) verwende Sequenz (Musik), gnd/7591624-1", + "Fu\u0308r Sequenz (Informatik) verwende Sequenzieller Algorithmus, gnd/4719581-2", + "Fu\u0308r Sequenz (Mathematik) verwende Zeichenkette, gnd/4067448-4" + ] + } + ], + "pid": "041810252", + "type": "bf:Topic", + "md5": "57c47896b2c461b6a23c8d4bc49a7b2b" + }, + { + "authorized_access_point": "Seekabel", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4180641-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041806417" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4180641-4" + } + ], + "identifier": "http://d-nb.info/gnd/4180641-4", + "closeMatch": [ + { + "authorized_access_point": "Cables, Submarine", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134064403" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85018581" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85018581" + } + ] + }, + { + "authorized_access_point": "Ca\u0302bles sous-marins", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134064403" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11980419" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119804191" + } + ] + }, + { + "authorized_access_point": "Cables submarinos", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254485392" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX525880" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX525880" + } + ] + } + ], + "pid": "041806417", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Elektrisches Kabel" + } + ], + "variant_access_point": [ + "Unterwasserkabel", + "Tiefseekabel", + "Unterseeische Kabel" + ], + "md5": "088bd88c383cb0cabd184d0358ff4fe1" + }, + { + "authorized_access_point": "Luftschlacht um England", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4179646-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041796462" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4179646-9" + } + ], + "identifier": "http://d-nb.info/gnd/4179646-9", + "closeMatch": [ + { + "authorized_access_point": "Britain, Battle of, Great Britain, 1940", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133985025" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85016958" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85016958" + } + ] + }, + { + "authorized_access_point": "Bataille d'Angleterre (1940)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133985025" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11954542" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119545425" + } + ] + }, + { + "authorized_access_point": "Battaglia d'Inghilterra <1940>", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254378812" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "45870" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/45870" + } + ] + }, + { + "authorized_access_point": "Inglaterra, Batalla de, 1940", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254457631" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX533012" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX533012" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Luftschlacht_um_England&oldid=211129893" + ] + } + ], + "pid": "041796462", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Luftkrieg" + } + ], + "related": [ + { + "authorized_access_point": "Unternehmen Seelo\u0308we" + }, + { + "authorized_access_point": "Zweiter Weltkrieg" + } + ], + "variant_access_point": [ + "Schlacht um England", + "Battle of Britain" + ], + "md5": "ac9044bfe62dd640e2ad9b950af12c98" + }, + { + "authorized_access_point": "Scheol", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4179492-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041794923" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4179492-8" + } + ], + "identifier": "http://d-nb.info/gnd/4179492-8", + "pid": "041794923", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Unterwelt" + } + ], + "md5": "3046432b02d07c01db69e5d1eca485bc" + }, + { + "authorized_access_point": "Salzsteuer", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4178998-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041789989" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4178998-2" + } + ], + "identifier": "http://d-nb.info/gnd/4178998-2", + "closeMatch": [ + { + "authorized_access_point": "Salt - Taxation", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134083637" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85116855" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85116855" + } + ] + }, + { + "authorized_access_point": "Sel - Impo\u0302ts", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134083637" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11986454" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119864540" + } + ] + } + ], + "pid": "041789989", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Steuer" + } + ], + "md5": "d8394fb1be93446fdc02d9719364b95c" + }, + { + "authorized_access_point": "Rundschleifen", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4178725-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041787250" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4178725-0" + } + ], + "identifier": "http://d-nb.info/gnd/4178725-0", + "closeMatch": [ + { + "authorized_access_point": "Grinding and polishing", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134709471" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85057370" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85057370" + } + ] + }, + { + "authorized_access_point": "Meulage", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134709471" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11980486" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119804865" + } + ] + } + ], + "pid": "041787250", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schleifen" + } + ], + "md5": "3113876e0ce6aa60e37df1d6931454b5" + }, + { + "authorized_access_point": "Rotaxane", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4178513-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041785134" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4178513-7" + } + ], + "identifier": "http://d-nb.info/gnd/4178513-7", + "closeMatch": [ + { + "authorized_access_point": "Rotaxanes", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133825397" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh96010897" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh96010897" + } + ] + }, + { + "authorized_access_point": "Rotaxanes", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133825397" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12538357" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12538357n" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Rotaxanes", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)133614811X" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D043862" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D043862" + } + ] + } + ], + "pid": "041785134", + "type": "bf:Topic", + "md5": "546221ec5dedcf6b32af9ff02097c234" + }, + { + "authorized_access_point": "Ritterorden", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4178244-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041782445" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4178244-6" + } + ], + "identifier": "http://d-nb.info/gnd/4178244-6", + "closeMatch": [ + { + "authorized_access_point": "Orders of knighthood and chivalry", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133631452" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85095375" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85095375" + } + ] + }, + { + "authorized_access_point": "Ordres de chevalerie", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133631452" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13318528" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb133185280" + } + ] + }, + { + "authorized_access_point": "Ordres militaires (religion)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134505213" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13318794" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13318794b" + } + ] + }, + { + "authorized_access_point": "O\u0301rdenes de caballeri\u0301a", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254480234" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX530947" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX530947" + } + ] + } + ], + "pid": "041782445", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Orden" + } + ], + "md5": "a0ceed67e5215c6fa263df62cc34e109" + }, + { + "authorized_access_point": "Quantitative Bildanalyse", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4176604-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041766040" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4176604-0" + } + ], + "identifier": "http://d-nb.info/gnd/4176604-0", + "pid": "041766040", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bildanalyse" + } + ], + "variant_access_point": [ + "Bildanalyse" + ], + "md5": "51dbbc38f82c8aed3a09ef79ba1cc6ff" + }, + { + "authorized_access_point": "Psychologiestudent", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4176222-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041762223" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4176222-8" + } + ], + "identifier": "http://d-nb.info/gnd/4176222-8", + "closeMatch": [ + { + "authorized_access_point": "Psychology students", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334681244" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2009008206" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2009008206" + } + ] + }, + { + "authorized_access_point": "E\u0301tudiants en psychologie", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334681244" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF15094972" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb150949721" + } + ] + } + ], + "pid": "041762223", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Student" + } + ], + "related": [ + { + "authorized_access_point": "Psychologiestudentin" + } + ], + "variant_access_point": [ + "Psychologiestudium" + ], + "md5": "515aa10cfff66b33fe2ec050370883eb" + }, + { + "authorized_access_point": "Popkultur", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4175361-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041753615" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4175361-6" + } + ], + "identifier": "http://d-nb.info/gnd/4175361-6", + "exactMatch": [ + { + "authorized_access_point": "Popular culture", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1291583955" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85104904" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85104904" + } + ] + }, + { + "authorized_access_point": "Culture populaire", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1291583955" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13318541" + }, + { + "type": "uri", + "value": "https://ark.bnf.fr/ark:/12148/cb133185416" + } + ] + }, + { + "authorized_access_point": "Popkultur", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)106889248X" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "30024-3" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/30024-3" + } + ] + }, + { + "authorized_access_point": "Popkultur", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)983461848" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10048286" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10048286" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Kulturgu\u0308ter, Erzeugnisse oder ku\u0308nstlerische Ausdrucksformen, die von einem gro\u00dfen Teil der Gesellschaft konsumiert und als relevant oder beliebt angesehen werden; wird als Gegensatz zur Hochkultur verstanden und als Ausdruck des Zeitgeistes betrachtet" + ] + } + ], + "pid": "041753615", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Massenkultur" + } + ], + "variant_access_point": [ + "Pop-Kultur", + "Popula\u0308rkultur", + "Popula\u0308re Kultur" + ], + "md5": "90c27ddfce1e1e114e41f97492aa81d0" + }, + { + "authorized_access_point": "Plasmatheorie", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4174837-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041748379" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4174837-2" + } + ], + "identifier": "http://d-nb.info/gnd/4174837-2", + "pid": "041748379", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Plasmaphysik" + } + ], + "variant_access_point": [ + "Plasma" + ], + "md5": "fbd9acba43fd7bc25aa33c9ee68138c5" + }, + { + "authorized_access_point": "Partisanenkrieg", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4173446-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041734467" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4173446-4" + } + ], + "identifier": "http://d-nb.info/gnd/4173446-4", + "closeMatch": [ + { + "authorized_access_point": "Guerrilla warfare", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134567057" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85057695" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85057695" + } + ] + }, + { + "authorized_access_point": "Gue\u0301rilla", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134567057" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13516336" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13516336x" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Benutzt fu\u0308r den Kampf der Partisanen und deren Beka\u0308mpfung" + ] + } + ], + "pid": "041734467", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Krieg" + } + ], + "related": [ + { + "authorized_access_point": "Guerilla" + } + ], + "md5": "2d034fb31f72f9687bcf8553fea7267a" + }, + { + "authorized_access_point": "Ozon", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4173038-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041730380" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4173038-0" + } + ], + "identifier": "http://d-nb.info/gnd/4173038-0", + "closeMatch": [ + { + "authorized_access_point": "Ozone", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133692281" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85096391" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85096391" + } + ] + }, + { + "authorized_access_point": "Ozone", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133692281" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11981162" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11981162k" + } + ] + }, + { + "authorized_access_point": "Ozono", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254328858" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "5327" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/5327" + } + ] + }, + { + "authorized_access_point": "Ozono", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254470212" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX543193" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX543193" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "ozone", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1256242993" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "5485" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_5485" + } + ] + }, + { + "authorized_access_point": "Ozone", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334635641" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D010126" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D010126" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Fu\u0308r bodennahes Ozon verknu\u0308pfe: Ozon / Bodennahe Luftschicht." + ] + } + ], + "pid": "041730380", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Sauerstoff" + } + ], + "md5": "02df081482ec8ecbce586a0dfdd38cd8" + }, + { + "authorized_access_point": "Niederadel", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4171838-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041718380" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4171838-0" + } + ], + "identifier": "http://d-nb.info/gnd/4171838-0", + "closeMatch": [ + { + "authorized_access_point": "Gentry", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134023499" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85053953" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85053953" + } + ] + }, + { + "authorized_access_point": "Petite noblesse", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134023499" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11970875" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11970875d" + } + ] + } + ], + "pid": "041718380", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Adel" + } + ], + "variant_access_point": [ + "Niederer Adel", + "Kleinadel" + ], + "md5": "36e85da5d7b0f47e26f75d35b6ae8307" + }, + { + "authorized_access_point": "Nias-Sprache", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4171700-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041717007" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4171700-4" + } + ], + "identifier": "http://d-nb.info/gnd/4171700-4", + "closeMatch": [ + { + "authorized_access_point": "Nias language", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113436394X" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85091709" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85091709" + } + ] + }, + { + "authorized_access_point": "Nias (langue)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113436394X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12545964" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb125459642" + } + ] + } + ], + "pid": "041717007", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "variant_access_point": [ + "Niassisch", + "Nias (Sprache)" + ], + "md5": "6b74130eff0ad4e4af5c4042fe49b972" + }, + { + "authorized_access_point": "Natu\u0308rliche Killerzelle", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4171290-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041712900" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4171290-0" + } + ], + "identifier": "http://d-nb.info/gnd/4171290-0", + "closeMatch": [ + { + "authorized_access_point": "Killer cells", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134259670" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85072328" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85072328" + } + ] + }, + { + "authorized_access_point": "Cellules NK", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134259670" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12290850" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12290850d" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Killer Cells, Natural", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336594470" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D007694" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D007694" + } + ] + } + ], + "pid": "041712900", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Killerzelle" + } + ], + "variant_access_point": [ + "NK-Zelle" + ], + "md5": "42e7d37d01e3bb07c7b1a0550872b6e3" + }, + { + "authorized_access_point": "Multiple-Sklerose-Kranker", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4170722-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041707222" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4170722-9" + } + ], + "identifier": "http://d-nb.info/gnd/4170722-9", + "closeMatch": [ + { + "authorized_access_point": "Ence\u0301phalomye\u0301lite aigue\u0308 dissemine\u0301e", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134505272" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12447406" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12447406t" + } + ] + } + ], + "pid": "041707222", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kranker" + } + ], + "related": [ + { + "authorized_access_point": "Multiple Sklerose" + }, + { + "authorized_access_point": "Weibliche Multiple-Sklerose-Kranke" + } + ], + "md5": "8578096c601733be87fdef5554a6bdf7" + }, + { + "authorized_access_point": "Moresca", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4170553-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04170553X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4170553-1" + } + ], + "identifier": "http://d-nb.info/gnd/4170553-1", + "closeMatch": [ + { + "authorized_access_point": "Moros y Cristianos (Dance)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134139004" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85087339" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85087339" + } + ] + }, + { + "authorized_access_point": "Moresca (danse)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134139004" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12050074" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb120500741" + } + ] + }, + { + "authorized_access_point": "Moresca", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254394389" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "65611" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/65611" + } + ] + }, + { + "authorized_access_point": "Morris dance", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133811833" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85087356" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85087356" + } + ] + }, + { + "authorized_access_point": "Morris dance", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133811833" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12489728" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb124897288" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/wiki/Moriskentanz" + ] + } + ], + "pid": "04170553X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tanz" + } + ], + "related": [ + { + "authorized_access_point": "Morisken" + } + ], + "variant_access_point": [ + "Morisca", + "Moreskentanz", + "Moriskentanz", + "Moriska", + "Mourisca", + "Morris dance", + "Morrisdance" + ], + "md5": "997fe88be2c5798d73ddd8841a0b969f" + }, + { + "authorized_access_point": "Mitose", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4170185-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041701852" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4170185-9" + } + ], + "identifier": "http://d-nb.info/gnd/4170185-9", + "closeMatch": [ + { + "authorized_access_point": "Mitosis", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133728553" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85086289" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85086289" + } + ] + }, + { + "authorized_access_point": "Mitose", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133728553" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12151573" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12151573g" + } + ] + }, + { + "authorized_access_point": "Mitosi", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254366571" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "34116" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/34116" + } + ] + }, + { + "authorized_access_point": "Mitosis", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)125446302X" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX550158" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX550158" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "mitosis", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1256238120" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "4870" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_4870" + } + ] + }, + { + "authorized_access_point": "Mitosis", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336586613" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D008938" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D008938" + } + ] + } + ], + "pid": "041701852", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kernteilung" + } + ], + "related": [ + { + "authorized_access_point": "Amitose" + } + ], + "variant_access_point": [ + "Mitotische Teilung", + "Indirekte Kernteilung", + "Indirekte Zellteilung", + "M-Phase" + ], + "md5": "a46deda8b48a3130467002ba7df5f640" + }, + { + "authorized_access_point": "Milchdru\u0308senkrankheit", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4169912-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041699122" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4169912-9" + } + ], + "identifier": "http://d-nb.info/gnd/4169912-9", + "note": [ + { + "noteType": "general", + "label": [ + "In der Tiermedizin verwende Gesa\u0308ugekrankheit bzw.Euterkrankheit" + ] + } + ], + "pid": "041699122", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Brustkrankheit" + } + ], + "variant_access_point": [ + "Brustdru\u0308senerkrankung" + ], + "md5": "236b24a47356c6323c8052fc9c0e605d" + }, + { + "authorized_access_point": "Milchdru\u0308se", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4169911-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041699114" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4169911-7" + } + ], + "identifier": "http://d-nb.info/gnd/4169911-7", + "closeMatch": [ + { + "authorized_access_point": "Mammary glands", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133751105" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85080275" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85080275" + } + ] + }, + { + "authorized_access_point": "Glande mammaire", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133751105" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12285824" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12285824v" + } + ] + }, + { + "authorized_access_point": "mammary glands", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1256237515" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "4562" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_4562" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Fu\u0308r Tiere benutze Euter bzw. Gesa\u0308uge" + ] + } + ], + "pid": "041699114", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Exokrine Dru\u0308se" + } + ], + "related": [ + { + "authorized_access_point": "Mamma" + } + ], + "variant_access_point": [ + "Brustdru\u0308se", + "Glandula mammaria", + "Mammadru\u0308se" + ], + "md5": "88469606682076c5e3982a01151fefe9" + }, + { + "authorized_access_point": "Metaphase", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4169649-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041696492" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4169649-9" + } + ], + "identifier": "http://d-nb.info/gnd/4169649-9", + "closeMatch": [ + { + "authorized_access_point": "Me\u0301taphase", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133884040" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13737516" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13737516v" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Metaphase", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336586443" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D008677" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D008677" + } + ] + } + ], + "pid": "041696492", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zellteilung" + } + ], + "md5": "3b37e70e0ca1b114cda91b0174e82828" + }, + { + "authorized_access_point": "Meiose", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4169347-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041693477" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4169347-4" + } + ], + "identifier": "http://d-nb.info/gnd/4169347-4", + "closeMatch": [ + { + "authorized_access_point": "Meiosis", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133740073" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85083346" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85083346" + } + ] + }, + { + "authorized_access_point": "Me\u0301iose", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133740073" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12253594" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb122535943" + } + ] + }, + { + "authorized_access_point": "Meiosi", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254363955" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "32284" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/32284" + } + ] + }, + { + "authorized_access_point": "Meiosis", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254460950" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX533954" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX533954" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "meiosis", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1256236209" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "4706" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_4706" + } + ] + }, + { + "authorized_access_point": "Meiosis", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)133658677X" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D008540" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D008540" + } + ] + } + ], + "pid": "041693477", + "type": "bf:Topic", + "variant_access_point": [ + "Reifeteilung", + "Reduktionsteilung", + "Meiosis" + ], + "md5": "2d5f997bb2cb5da1b1856e23ad5e821b" + }, + { + "authorized_access_point": "Mehler-Fok-Transformation", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4169270-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041692705" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4169270-6" + } + ], + "identifier": "http://d-nb.info/gnd/4169270-6", + "note": [ + { + "noteType": "general", + "label": [ + "Mit der Integraltransformation nahe verwandte Konzepte sind der Mehler-Kern und die Mehler-Formel mit Anwendung in der Quantenmechanik." + ] + } + ], + "pid": "041692705", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Integraltransformation" + } + ], + "related": [ + { + "authorized_access_point": "Harmonischer Oszillator" + } + ], + "variant_access_point": [ + "Mehler-Fock-Transformation" + ], + "md5": "3d83e7b566a8fee4dfaf58bb25213722" + }, + { + "authorized_access_point": "Marsch (Musik)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4168976-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041689763" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4168976-8" + } + ], + "identifier": "http://d-nb.info/gnd/4168976-8", + "closeMatch": [ + { + "authorized_access_point": "Marches", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133737870" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85080979" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85080979" + } + ] + }, + { + "authorized_access_point": "Marches (musique)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133737870" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12238072" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb122380726" + } + ] + }, + { + "authorized_access_point": "Marce ", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254397973" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "69890" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/69890" + } + ] + }, + { + "authorized_access_point": "Marchas militares", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254459553" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX537163" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX537163" + } + ] + } + ], + "pid": "041689763", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Funktionale Musik" + } + ], + "variant_access_point": [ + "Marschmusik" + ], + "md5": "064002293a6a4fe265cf7702cce1de55" + }, + { + "authorized_access_point": "Malinke-Sprache", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4168716-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041687167" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4168716-4" + } + ], + "identifier": "http://d-nb.info/gnd/4168716-4", + "pid": "041687167", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Mande-Sprachen" + } + ], + "variant_access_point": [ + "Manding-Sprache", + "Mandinka-Sprache", + "Mandinkakan-Sprache", + "Maninka-Sprache", + "Mandekan", + "Maninlakan" + ], + "md5": "4304c4a25ac879966c091d0ba6f52832" + }, + { + "authorized_access_point": "Bothrops", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4166768-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041667689" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4166768-2" + } + ], + "identifier": "http://d-nb.info/gnd/4166768-2", + "closeMatch": [ + { + "authorized_access_point": "Bothrops", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134429665" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85016019" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85016019" + } + ] + }, + { + "authorized_access_point": "Bothrops", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134429665" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF14508508" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb14508508n" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Bothrops", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336105909" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D017837" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D017837" + } + ] + } + ], + "pid": "041667689", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Grubenottern" + } + ], + "variant_access_point": [ + "Lanzenotter (Gattung)" + ], + "md5": "c7efde8b0248de6a3c33a44810c71d8f" + }, + { + "authorized_access_point": "Lanzenotter", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4166767-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041667670" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4166767-0" + } + ], + "identifier": "http://d-nb.info/gnd/4166767-0", + "closeMatch": [ + { + "authorized_access_point": "Fer-de-lance", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1323096663" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2008007750" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2008007750" + } + ] + }, + { + "authorized_access_point": "Bothrops atrox", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1323096663" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17058270" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17058270t" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Bothrops atrox", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336108002" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D000097142" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D000097142" + } + ] + } + ], + "pid": "041667670", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Grubenottern" + } + ], + "variant_access_point": [ + "Bothrops atrox", + "Gewo\u0308hnliche Lanzenotter" + ], + "md5": "6adb466e37bfd0fe1710b8bbd96c48b4" + }, + { + "authorized_access_point": "Lactamantibiotikum (beta-)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4166365-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041663659" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4166365-2" + } + ], + "identifier": "http://d-nb.info/gnd/4166365-2", + "closeMatch": [ + { + "authorized_access_point": "Beta lactam antibiotics", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134245041" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh86002798" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh86002798" + } + ] + }, + { + "authorized_access_point": "Be\u0302ta-lactamines", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134245041" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12266277" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12266277m" + } + ] + }, + { + "authorized_access_point": "Beta-lattamici", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254394842" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "66202" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/66202" + } + ] + }, + { + "authorized_access_point": "Antibio\u0301ticos betalacta\u0301micos", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254454187" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX549031" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX549031" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "beta Lactam Antibiotics", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336118954" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D000097902" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D000097902" + } + ] + } + ], + "pid": "041663659", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Antibiotikum" + } + ], + "variant_access_point": [ + "Betalactamantibiotikum", + "Beta-Lactam-Antibiotikum", + "Cepheme", + "Betalaktam-Antibiotika" + ], + "md5": "f242e8662f1f7ccdc2bd4f44936ea1fc" + }, + { + "authorized_access_point": "Kriminalfall", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4165725-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04165725X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4165725-1" + } + ], + "identifier": "http://d-nb.info/gnd/4165725-1", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Kriminalfall&oldid=201807873" + ] + }, + { + "noteType": "general", + "label": [ + "fu\u0308r popula\u0308rwiss., quasiliterarische Darstellungen von Kriminalfa\u0308llen, ansonsten wird Straftat benutzt; nicht zusa\u0308tzlich f Fallsammlung. Bei belletrist. Darstellungen nicht-permutierendes USW nach Geographikum" + ] + } + ], + "pid": "04165725X", + "type": "bf:Topic", + "md5": "de0605dab5d2399ad4c013b72bb8dcc5" + }, + { + "authorized_access_point": "Kreisfreie Stadt", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4165603-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041656032" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4165603-9" + } + ], + "identifier": "http://d-nb.info/gnd/4165603-9", + "note": [ + { + "noteType": "general", + "label": [ + "Benutzt fu\u0308r das deutsche und internationale Recht, fu\u0308r das o\u0308sterreichische Recht benutze Stadt mit eigenem Statut" + ] + } + ], + "pid": "041656032", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Stadt" + } + ], + "related": [ + { + "authorized_access_point": "Gro\u00dfe Kreisstadt" + }, + { + "authorized_access_point": "Stadt mit eigenem Statut" + } + ], + "variant_access_point": [ + "Stadtkreis (Kreisfreie Stadt)" + ], + "md5": "9ce3cb14f28a3c59fe18aa15d114dda1" + }, + { + "authorized_access_point": "Kreiselkompass", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4165597-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041655974" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4165597-7" + } + ], + "identifier": "http://d-nb.info/gnd/4165597-7", + "pid": "041655974", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kompass" + } + ], + "related": [ + { + "authorized_access_point": "Kreiselgera\u0308t" + } + ], + "md5": "22a95906022a6fb005d2d8b63ef732e0" + }, + { + "authorized_access_point": "Krankenpfleger", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4165516-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041655168" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4165516-3" + } + ], + "identifier": "http://d-nb.info/gnd/4165516-3", + "closeMatch": [ + { + "authorized_access_point": "Male nurses", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134065833" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85083530" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85083530" + } + ] + }, + { + "authorized_access_point": "Infirmiers", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134065833" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11980730" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11980730c" + } + ] + }, + { + "authorized_access_point": "Nurses, Male", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1333273207" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D009727" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D009727" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Krankenpfleger", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970566271" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10045517" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10045517" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Ab dem 1.1.2004 neue offizielle Berufsbezeichnung in Dtld: \"Gesundheits- und Krankenpfleger\". Vorher ausgebildete Pflegekra\u0308fte ko\u0308nnen wahlweise die alte oder die neue Berufsbezeichnung fu\u0308hren.", + "Als Homonymenzusatz bei Personenschlagwo\u0308rtern zugelassen." + ] + } + ], + "pid": "041655168", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Pflegepersonal" + } + ], + "related": [ + { + "authorized_access_point": "Krankenschwester" + } + ], + "variant_access_point": [ + "Gesundheits- und Krankenpfleger", + "Pflegefachmann" + ], + "md5": "31f3ab4055d9e5e40fabf604331c3cf1" + }, + { + "authorized_access_point": "Kovariante Darstellung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4165401-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041654013" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4165401-8" + } + ], + "identifier": "http://d-nb.info/gnd/4165401-8", + "pid": "041654013", + "type": "bf:Topic", + "md5": "434fb2685eb5567584d865e4fa724a0b" + }, + { + "authorized_access_point": "Korpus (Linguistik)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4165338-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041653386" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4165338-5" + } + ], + "identifier": "http://d-nb.info/gnd/4165338-5", + "closeMatch": [ + { + "authorized_access_point": "Corpora (Linguistics)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134838050" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2006006393" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2006006393" + } + ] + }, + { + "authorized_access_point": "Corpus linguistique", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134838050" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF15997252" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb15997252r" + } + ] + }, + { + "authorized_access_point": "Corpora (Lingu\u0308i\u0301stica)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254451552" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX4874758" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX4874758" + } + ] + } + ], + "pid": "041653386", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Linguistik" + } + ], + "variant_access_point": [ + "Korpus (Sprachwissenschaft)", + "Corpus (Linguistik)", + "Korpuslinguistik", + "Textkorpus" + ], + "md5": "26fb209874fdbe5fe15a0f037e27b9c1" + }, + { + "authorized_access_point": "Kombattant", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4164745-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041647459" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4164745-2" + } + ], + "identifier": "http://d-nb.info/gnd/4164745-2", + "closeMatch": [ + { + "authorized_access_point": "Combatants and noncombatants (International law)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134295294" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85028799" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85028799" + } + ] + }, + { + "authorized_access_point": "Combattants et non-combattants (droit international)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134295294" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12364444" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12364444w" + } + ] + } + ], + "pid": "041647459", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Partisan" + }, + { + "authorized_access_point": "Widerstand" + }, + { + "authorized_access_point": "Nichtkombattant" + } + ], + "variant_access_point": [ + "Kriegsteilnehmer (Kombattant)" + ], + "md5": "d7f3cfb532b90d2409091ff93ce40f5e" + }, + { + "authorized_access_point": "Killerzelle", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4163776-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041637763" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4163776-8" + } + ], + "identifier": "http://d-nb.info/gnd/4163776-8", + "closeMatch": [ + { + "authorized_access_point": "Killer cells", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134130406" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85072328" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85072328" + } + ] + }, + { + "authorized_access_point": "Cellules K (lymphocytes)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134130406" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12046164" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb120461647" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "T-Lymphocytes, Cytotoxic", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336594861" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D013602" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D013602" + } + ] + } + ], + "pid": "041637763", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zelle" + } + ], + "variant_access_point": [ + "K-Zelle", + "Cytotoxische Zelle", + "Zytotoxische Zelle", + "Zytotoxischer T-Lymphozyt", + "Cytotoxischer T-Lymphozyt" + ], + "md5": "aebe88bff5f76ab442c8cfc0dd397858" + }, + { + "authorized_access_point": "Kernteilung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4163642-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041636422" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4163642-9" + } + ], + "identifier": "http://d-nb.info/gnd/4163642-9", + "exactMatch": [ + { + "authorized_access_point": "Cell Nucleus Division", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336587253" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D048750" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D048750" + } + ] + } + ], + "pid": "041636422", + "type": "bf:Topic", + "md5": "afa127386b72b4394b58c7947d55d97c" + }, + { + "authorized_access_point": "Kardiotoxizita\u0308t", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4163323-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041633237" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4163323-4" + } + ], + "identifier": "http://d-nb.info/gnd/4163323-4", + "exactMatch": [ + { + "authorized_access_point": "Cardiotoxicity", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)124163503X" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D066126" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D066126" + } + ] + } + ], + "pid": "041633237", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Toxizita\u0308t" + } + ], + "related": [ + { + "authorized_access_point": "Herzgift" + } + ], + "variant_access_point": [ + "Cardiotoxizita\u0308t" + ], + "md5": "dade1fe8f7de697ae826b84ab47efe62" + }, + { + "authorized_access_point": "Informationso\u0308konomie", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4161671-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041616715" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4161671-6" + } + ], + "identifier": "http://d-nb.info/gnd/4161671-6", + "closeMatch": [ + { + "authorized_access_point": "Information theory in economics", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134028997" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85066293" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85066293" + } + ] + }, + { + "authorized_access_point": "Information, The\u0301orie de l' en e\u0301conomie politique", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134028997" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11972022" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119720223" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Informationso\u0308konomik", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)966782380" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "10141-4" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/10141-4" + } + ] + } + ], + "pid": "041616715", + "type": "bf:Topic", + "variant_access_point": [ + "Informationso\u0308konomik" + ], + "md5": "3e338f784c1cc185e7f8a7f048099ca0" + }, + { + "authorized_access_point": "Indexzahl", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4161490-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041614909" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4161490-2" + } + ], + "identifier": "http://d-nb.info/gnd/4161490-2", + "closeMatch": [ + { + "authorized_access_point": "Index numbers (Economics)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134150776" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85064859" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85064859" + } + ] + }, + { + "authorized_access_point": "Indices (e\u0301conomie politique)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134150776" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12076887" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12076887f" + } + ] + }, + { + "authorized_access_point": "Nu\u0301meros i\u0301ndices (Economi\u0301a)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254442901" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX533854" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX533854" + } + ] + } + ], + "pid": "041614909", + "type": "bf:Topic", + "variant_access_point": [ + "Indexziffer", + "Statistische Kennziffer", + "Aggregatindex", + "Generalindex", + "Zusammengesetzte Indexzahl" + ], + "md5": "0b33da29f7f520e8e0b80773d06a8e7e" + }, + { + "authorized_access_point": "Index", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4161483-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041614836" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4161483-5" + } + ], + "identifier": "http://d-nb.info/gnd/4161483-5", + "exactMatch": [ + { + "authorized_access_point": "Index", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)966779029" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "15082-4" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/15082-4" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Index&oldid=232182921" + ] + }, + { + "noteType": "general", + "label": [ + "Nicht im Sinne von Register zu verwenden! Als Formschlagwort verwende f Bibliographie, f Konkordanz oder f Verzeichnis." + ] + } + ], + "pid": "041614836", + "type": "bf:Topic", + "md5": "e09c65b3d550aa68628670fe135ef757" + }, + { + "authorized_access_point": "Immunozyt", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4161387-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041613872" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4161387-9" + } + ], + "identifier": "http://d-nb.info/gnd/4161387-9", + "closeMatch": [ + { + "authorized_access_point": "Immunocompetent cells", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133713416" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85064551" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85064551" + } + ] + }, + { + "authorized_access_point": "Cellules immunocompe\u0301tentes", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133713416" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12049642" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb120496421" + } + ] + }, + { + "authorized_access_point": "Cellule immunocompetenti", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)125439608X" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "67680" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/67680" + } + ] + } + ], + "pid": "041613872", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zelle" + } + ], + "variant_access_point": [ + "Immunzelle", + "Immunkompetente Zelle", + "Immunocyt", + "Abwehrzelle" + ], + "md5": "be628c63bf77ed4382175f63686fa144" + }, + { + "authorized_access_point": "Immobilisierte Zelle", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4161359-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041613597" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4161359-4" + } + ], + "identifier": "http://d-nb.info/gnd/4161359-4", + "closeMatch": [ + { + "authorized_access_point": "Immobilized cells", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134245610" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85064524" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85064524" + } + ] + }, + { + "authorized_access_point": "Cellules immobilise\u0301es", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134245610" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12266500" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12266500v" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Cells, Immobilized", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336593954" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D018914" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D018914" + } + ] + } + ], + "pid": "041613597", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zelle" + } + ], + "md5": "cafc154306f7d9d87d49d27bf33e22c8" + }, + { + "authorized_access_point": "Hornschicht", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4160676-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041606760" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4160676-0" + } + ], + "identifier": "http://d-nb.info/gnd/4160676-0", + "closeMatch": [ + { + "authorized_access_point": "Stratum corne\u0301um", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334796270" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF16736881" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb167368819" + } + ] + } + ], + "pid": "041606760", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Haut" + } + ], + "related": [ + { + "authorized_access_point": "Horn" + } + ], + "variant_access_point": [ + "Hornhaut (Epidermis)", + "Stratum corneum" + ], + "md5": "38dd06390ef883bb9c3461166d3b32a9" + }, + { + "authorized_access_point": "Hirnzelle", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4159947-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041599470" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4159947-0" + } + ], + "identifier": "http://d-nb.info/gnd/4159947-0", + "pid": "041599470", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gehirn" + }, + { + "authorized_access_point": "Zelle" + } + ], + "variant_access_point": [ + "ZNS-Gewebe" + ], + "md5": "58b1d9ee73bcc350f593737474da5e24" + }, + { + "authorized_access_point": "Heteroskedastizita\u0308t", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4159750-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041597508" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4159750-3" + } + ], + "identifier": "http://d-nb.info/gnd/4159750-3", + "closeMatch": [ + { + "authorized_access_point": "Heteroscedasticity", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134667248" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85060545" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85060545" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Heteroskedastizita\u0308t", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)966774140" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "15362-5" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/15362-5" + } + ] + } + ], + "pid": "041597508", + "type": "bf:Topic", + "variant_access_point": [ + "Heterogenita\u0308t der Varianzen", + "Heteroskedastie", + "Heteroskedasticity" + ], + "md5": "b9b2c59840faee580edec73e664784cc" + }, + { + "authorized_access_point": "Heizungshandwerk", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4159480-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041594800" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4159480-0" + } + ], + "identifier": "http://d-nb.info/gnd/4159480-0", + "closeMatch": [ + { + "authorized_access_point": "Chauffagistes", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113460808X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11979039" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11979039h" + } + ] + } + ], + "pid": "041594800", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Installateurhandwerk" + } + ], + "variant_access_point": [ + "Heizungsinstallateurhandwerk", + "Heizungsinstallation", + "Heizungsinstallation" + ], + "md5": "c4c878753864a59eec2d962734d920f4" + }, + { + "authorized_access_point": "Harmonische Synthese", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4159126-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041591267" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4159126-4" + } + ], + "identifier": "http://d-nb.info/gnd/4159126-4", + "pid": "041591267", + "type": "bf:Topic", + "variant_access_point": [ + "Fourier-Synthese" + ], + "md5": "4270d91b4bd3be2c57e787b9b12b1503" + }, + { + "authorized_access_point": "Gusle", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4158562-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041585623" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4158562-8" + } + ], + "identifier": "http://d-nb.info/gnd/4158562-8", + "closeMatch": [ + { + "authorized_access_point": "Gusle", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134816634" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh92005165" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh92005165" + } + ] + } + ], + "pid": "041585623", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Streichinstrument" + } + ], + "related": [ + { + "authorized_access_point": "Guslar" + } + ], + "variant_access_point": [ + "Gusla", + "Lahuta" + ], + "md5": "684fde101809f95ce7ad843d2da79b4b" + }, + { + "authorized_access_point": "Guanidinderivate", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4158492-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041584929" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4158492-2" + } + ], + "identifier": "http://d-nb.info/gnd/4158492-2", + "pid": "041584929", + "type": "bf:Topic", + "variant_access_point": [ + "Guanidin" + ], + "md5": "4511f976ded37b0809f1f63f9dfee2e0" + }, + { + "authorized_access_point": "Gro\u00dfes Scho\u0308llkraut", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4158266-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041582667" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4158266-4" + } + ], + "identifier": "http://d-nb.info/gnd/4158266-4", + "closeMatch": [ + { + "authorized_access_point": "Greater celandine", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134488254" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh96009459" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh96009459" + } + ] + }, + { + "authorized_access_point": "Chelidonium majus", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134488254" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF15018776" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb150187765" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Chelidonium majus", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336585765" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D000097563" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D000097563" + } + ] + } + ], + "pid": "041582667", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Scho\u0308llkraut" + } + ], + "variant_access_point": [ + "Chelidonium majus" + ], + "md5": "2bf1565a22e7ecdcef2cb8b97dfb6aff" + }, + { + "authorized_access_point": "Gamet", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4157017-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041570170" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4157017-0" + } + ], + "identifier": "http://d-nb.info/gnd/4157017-0", + "closeMatch": [ + { + "authorized_access_point": "Gametes", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134267150" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85052973" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85052973" + } + ] + }, + { + "authorized_access_point": "Game\u0300tes", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134267150" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12307257" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb123072575" + } + ] + }, + { + "authorized_access_point": "Gameti", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254362177" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "30877" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/30877" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "gametes", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)125621535X" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "3185" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_3185" + } + ] + }, + { + "authorized_access_point": "Germ Cells", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)133659358X" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D005854" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D005854" + } + ] + } + ], + "pid": "041570170", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zelle" + } + ], + "variant_access_point": [ + "Fortpflanzungszelle", + "Geschlechtszelle", + "Keimzelle", + "Germ cell" + ], + "md5": "8a6477908733a4565bfb58704c0b94e2" + }, + { + "authorized_access_point": "Geschlechterstereotyp", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4157010-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041570103" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4157010-8" + } + ], + "identifier": "http://d-nb.info/gnd/4157010-8", + "pid": "041570103", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Stereotyp" + } + ], + "variant_access_point": [ + "Geschlechtsstereotyp", + "Geschlechterrolle", + "Geschlechterklischee" + ], + "md5": "d75b712b44cb1a2d2025774df1d35fbf" + }, + { + "authorized_access_point": "Gemeinsinn", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4156556-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041565568" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4156556-3" + } + ], + "identifier": "http://d-nb.info/gnd/4156556-3", + "closeMatch": [ + { + "authorized_access_point": "Civics", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134032072" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85026301" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85026301" + } + ] + }, + { + "authorized_access_point": "Civisme", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134032072" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11973413" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11973413g" + } + ] + }, + { + "authorized_access_point": "Educazione civica", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254341242" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "15328" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/15328" + } + ] + }, + { + "authorized_access_point": "Civismo", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254433783" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX532612" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX532612" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Gemeinsinn", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)983460760" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10044951" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10044951" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Zusammengeho\u0308rigkeitsgefu\u0308hl einer Gruppe (Familie, Gemeinde, Staat), das sich als Handlungsbereitschaft zugunsten des Gemeinwohls a\u0308u\u00dfert", + "Fu\u0308r Gemeinsinn im Sinne des gesunden Menschenverstands verwende Commonsense" + ] + } + ], + "pid": "041565568", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Common Sense" + }, + { + "authorized_access_point": "Gemeinwohl" + } + ], + "md5": "277023be362d238c4f132acc4c97fab9" + }, + { + "authorized_access_point": "Gehirnwa\u0308sche", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4156324-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041563247" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4156324-4" + } + ], + "identifier": "http://d-nb.info/gnd/4156324-4", + "closeMatch": [ + { + "authorized_access_point": "Brainwashing", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133910483" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85016371" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85016371" + } + ] + }, + { + "authorized_access_point": "Lavage de cerveau", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133910483" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11932235" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119322355" + } + ] + }, + { + "authorized_access_point": "Lavaggio del cervello", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254386882" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "54518" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/54518" + } + ] + }, + { + "authorized_access_point": "Lavado de cerebro", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254433295" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX535656" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX535656" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Brainwashing", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336052236" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D000096965" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D000096965" + } + ] + } + ], + "pid": "041563247", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Psychische Folter" + } + ], + "variant_access_point": [ + "Brainwashing", + "Mentizid" + ], + "md5": "8aacd9b365ccccfd22313167373b56be" + }, + { + "authorized_access_point": "Freihandelszone", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4155312-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041553128" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4155312-3" + } + ], + "identifier": "http://d-nb.info/gnd/4155312-3", + "exactMatch": [ + { + "authorized_access_point": "Freihandelsabkommen", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)966749707" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "10612-5" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/10612-5" + } + ] + }, + { + "authorized_access_point": "Freihandelszone", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970551126" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10041435" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10041435" + } + ] + } + ], + "pid": "041553128", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Freihandel" + } + ], + "related": [ + { + "authorized_access_point": "Zollunion" + } + ], + "variant_access_point": [ + "Freihandelsgebiet" + ], + "md5": "916036193f14c5721835e380f33fa82d" + }, + { + "authorized_access_point": "Fingerhuthandwerk", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4154432-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041544323" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4154432-8" + } + ], + "identifier": "http://d-nb.info/gnd/4154432-8", + "pid": "041544323", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Handwerk" + } + ], + "variant_access_point": [ + "Fingerhut", + "Fingerhutherstellung" + ], + "md5": "d233e1225755302057e92344c1894467" + }, + { + "authorized_access_point": "Fettzelle", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4154243-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041542436" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4154243-5" + } + ], + "identifier": "http://d-nb.info/gnd/4154243-5", + "closeMatch": [ + { + "authorized_access_point": "Fat cells", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133663443" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh86006585" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh86006585" + } + ] + }, + { + "authorized_access_point": "Adipocytes", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133663443" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11964829" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119648290" + } + ] + }, + { + "authorized_access_point": "Cellule adipose", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254378154" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "45155" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/45155" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Adipocytes", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336593458" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D017667" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D017667" + } + ] + } + ], + "pid": "041542436", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zelle" + } + ], + "variant_access_point": [ + "Adipozyt", + "Adipocyt" + ], + "md5": "c010deb6792f1fc150de7013792cce3f" + }, + { + "authorized_access_point": "Facharbeiter fu\u0308r Betrieb und Verkehr des Post- und Zeitungswesens", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4153464-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041534646" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4153464-5" + } + ], + "identifier": "http://d-nb.info/gnd/4153464-5", + "note": [ + { + "noteType": "general", + "label": [ + "Ausbildungsberuf DDR" + ] + } + ], + "pid": "041534646", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Transport- und Logistikberuf" + } + ], + "related": [ + { + "authorized_access_point": "Fachkraft fu\u0308r Brief- und Frachtverkehr" + } + ], + "md5": "a2240817e621ffb6ac432c71478d7bd0" + }, + { + "authorized_access_point": "Eukaryontische Zelle", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4153142-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041531426" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4153142-5" + } + ], + "identifier": "http://d-nb.info/gnd/4153142-5", + "closeMatch": [ + { + "authorized_access_point": "Eukaryotic cells", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133723098" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85045546" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85045546" + } + ] + }, + { + "authorized_access_point": "Cellules eucaryotes", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133723098" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12120745" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12120745x" + } + ] + }, + { + "authorized_access_point": "Cellule eucariotiche", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254365168" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "33108" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/33108" + } + ] + }, + { + "authorized_access_point": "Ce\u0301lulas eucariotas", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254426426" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX4865884" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX4865884" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Eukaryotic Cells", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336593288" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D005057" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D005057" + } + ] + } + ], + "pid": "041531426", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zelle" + } + ], + "variant_access_point": [ + "Eukaryotische Zelle" + ], + "md5": "80fba4cf6ea804801f7e476f35661ecd" + }, + { + "authorized_access_point": "Erdo\u0308lraffinerie", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4152697-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04152697X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4152697-1" + } + ], + "identifier": "http://d-nb.info/gnd/4152697-1", + "closeMatch": [ + { + "authorized_access_point": "Petroleum refineries", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133976077" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85100456" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85100456" + } + ] + }, + { + "authorized_access_point": "Pe\u0301trole - Raffineries", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133976077" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11951091" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119510918" + } + ] + }, + { + "authorized_access_point": "Refineri\u0301as de petro\u0301leo", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254425543" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX526288" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX526288" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Erdo\u0308lraffinerie", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)966734238" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "19427-4" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/19427-4" + } + ] + } + ], + "pid": "04152697X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Raffinerie" + } + ], + "variant_access_point": [ + "O\u0308lraffinerie" + ], + "md5": "b4a60f7bc334c322b950d3ce2300924f" + }, + { + "authorized_access_point": "Enterochromaffine Zelle", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4152339-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041523393" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4152339-8" + } + ], + "identifier": "http://d-nb.info/gnd/4152339-8", + "exactMatch": [ + { + "authorized_access_point": "Enterochromaffin Cells", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)133659313X" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D004759" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D004759" + } + ] + } + ], + "pid": "041523393", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zelle" + } + ], + "variant_access_point": [ + "Ciaccio-Zelle", + "Kultschitsky-Zelle", + "Schmidt-Zelle" + ], + "md5": "68c7e34925955810ce4bf6e0985af86c" + }, + { + "authorized_access_point": "Entente", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4152331-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041523318" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4152331-3" + } + ], + "identifier": "http://d-nb.info/gnd/4152331-3", + "note": [ + { + "noteType": "general", + "label": [ + "Gegner der Mittelma\u0308chte im 1.Weltkrieg" + ] + } + ], + "pid": "041523318", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Erster Weltkrieg" + } + ], + "md5": "de97f92459d91b9774021db0ef1d8f2a" + }, + { + "authorized_access_point": "Elektronischer Schalter", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4151923-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04151923X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4151923-1" + } + ], + "identifier": "http://d-nb.info/gnd/4151923-1", + "pid": "04151923X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kontaktloser Schalter" + } + ], + "md5": "b41305efb5407c3605df6b42bd8d923d" + }, + { + "authorized_access_point": "Elektroinstallateur", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4151816-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041518160" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4151816-0" + } + ], + "identifier": "http://d-nb.info/gnd/4151816-0", + "closeMatch": [ + { + "authorized_access_point": "Electricians", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113452689X" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85042064" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85042064" + } + ] + }, + { + "authorized_access_point": "E\u0301lectriciens", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113452689X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11954085" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119540852" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Ausbildungsberuf. Beruf im Elektrohandwerk bis zum 1. August 2004 .Die Berufsbezeichnung wurde durch Elektroniker - Fachrichtung Energie- und Geba\u0308udetechnik ersetzt." + ] + } + ], + "pid": "041518160", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Handwerklicher Elektroberuf" + } + ], + "related": [ + { + "authorized_access_point": "Elektriker" + } + ], + "variant_access_point": [ + "Elektromonteur" + ], + "md5": "1b730ac2fa2931c9633b0348b1fdb37c" + }, + { + "authorized_access_point": "Ekklesia", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4151661-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041516613" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4151661-8" + } + ], + "identifier": "http://d-nb.info/gnd/4151661-8", + "note": [ + { + "noteType": "general", + "label": [ + "Fu\u0308r die Personifikation der Kirche und begriffsgeschichtliche Untersuchungen", + "Ansonsten benutze SW Kirche, fu\u0308r die Kunst SW s Ekklesia und Synagoge (daneben p Synagoge !), fu\u0308r die altgriech. Ekklesia in Athen SW Athen / Volksversammlung", + "Ohne HZ Motiv" + ] + } + ], + "pid": "041516613", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Kirche" + }, + { + "authorized_access_point": "Ekklesia und Synagoge" + } + ], + "broader": [ + { + "authorized_access_point": "Motiv" + }, + { + "authorized_access_point": "Fiktive Gestalt" + } + ], + "variant_access_point": [ + "Ecclesia (Personifikation)", + "Ekklesia (Personifikation)" + ], + "md5": "28de46e1a083bbba6dde74562cb77574" + }, + { + "authorized_access_point": "Eisenhu\u0308ttenwerk", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4151542-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041515420" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4151542-0" + } + ], + "identifier": "http://d-nb.info/gnd/4151542-0", + "closeMatch": [ + { + "authorized_access_point": "Iron-works", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133705723" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85068240" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85068240" + } + ] + }, + { + "authorized_access_point": "Usines side\u0301rurgiques", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133705723" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12010434" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb120104342" + } + ] + } + ], + "pid": "041515420", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Hu\u0308ttenwerk" + } + ], + "variant_access_point": [ + "Eisenhu\u0308tte" + ], + "md5": "01fd412b80b89b1b605ff5f7bc86bd33" + }, + { + "authorized_access_point": "Einfuhrumsatzsteuer", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4151282-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041512820" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4151282-0" + } + ], + "identifier": "http://d-nb.info/gnd/4151282-0", + "pid": "041512820", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Umsatzsteuer" + } + ], + "md5": "bde29f3ba62de17cdbefc0645d5a66b2" + }, + { + "authorized_access_point": "Dysgnathie", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4150941-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041509412" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4150941-9" + } + ], + "identifier": "http://d-nb.info/gnd/4150941-9", + "pid": "041509412", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gebissanomalie" + } + ], + "variant_access_point": [ + "Fehlbiss", + "Kieferfehlstellung", + "Zahnfehlstellung" + ], + "md5": "e0e903871086e2aa1882c67db6b71f12" + }, + { + "authorized_access_point": "Drahtweberei", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4150533-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041505336" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4150533-5" + } + ], + "identifier": "http://d-nb.info/gnd/4150533-5", + "pid": "041505336", + "type": "bf:Topic", + "md5": "1c90bea72774231e038686b3911f9582" + }, + { + "authorized_access_point": "Dozent", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4150507-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041505077" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4150507-4" + } + ], + "identifier": "http://d-nb.info/gnd/4150507-4", + "pid": "041505077", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Dozentin" + }, + { + "authorized_access_point": "Lehrer" + } + ], + "md5": "acbe67ed0e6a0070b84921e8066a40d4" + }, + { + "authorized_access_point": "DMS 77", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4150335-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04150335X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4150335-1" + } + ], + "identifier": "http://d-nb.info/gnd/4150335-1", + "pid": "04150335X", + "type": "bf:Topic", + "md5": "ccb33df5658c8c53d4efcc7dc051dd10" + }, + { + "authorized_access_point": "Distalbiss", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4150226-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041502264" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4150226-7" + } + ], + "identifier": "http://d-nb.info/gnd/4150226-7", + "pid": "041502264", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gebissanomalie" + }, + { + "authorized_access_point": "Okklusionssto\u0308rung" + } + ], + "variant_access_point": [ + "Distalbisslage", + "Ru\u0308ckbiss" + ], + "md5": "90a1e272bc6f12841cbf3504e700a827" + }, + { + "authorized_access_point": "Cytometrie", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4148710-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041487109" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4148710-2" + } + ], + "identifier": "http://d-nb.info/gnd/4148710-2", + "exactMatch": [ + { + "authorized_access_point": "Cytometry", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134759355" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2011005416" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2011005416" + } + ] + } + ], + "pid": "041487109", + "type": "bf:Topic", + "variant_access_point": [ + "Zytometrie" + ], + "md5": "02ae47c53573d1dc07e4148b4e43a55c" + }, + { + "authorized_access_point": "Chloride", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4147793-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041477936" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4147793-5" + } + ], + "identifier": "http://d-nb.info/gnd/4147793-5", + "closeMatch": [ + { + "authorized_access_point": "Chlorides", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133691196" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85024536" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85024536" + } + ] + }, + { + "authorized_access_point": "Chlorures", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133691196" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11980514" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11980514k" + } + ] + }, + { + "authorized_access_point": "Cloruri", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)125436451X" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "32686" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/32686" + } + ] + }, + { + "authorized_access_point": "Cloruros", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254416927" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX4724682" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX4724682" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Chlorides", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336148934" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D002712" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D002712" + } + ] + } + ], + "pid": "041477936", + "type": "bf:Topic", + "md5": "92b3f3cae77c71eeccf76b08c8773ad0" + }, + { + "authorized_access_point": "B-Zelle", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4147096-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041470966" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4147096-5" + } + ], + "identifier": "http://d-nb.info/gnd/4147096-5", + "closeMatch": [ + { + "authorized_access_point": "Pancreatic beta cells", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134611005" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh89006279" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh89006279" + } + ] + }, + { + "authorized_access_point": "Cellules be\u0302ta", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134611005" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF15054295" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb15054295x" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Insulin-Secreting Cells", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336592893" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D050417" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D050417" + } + ] + } + ], + "pid": "041470966", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zelle" + }, + { + "authorized_access_point": "Langerhans-Inseln" + } + ], + "variant_access_point": [ + "Beta-Zelle (Bauchspeicheldru\u0308se)" + ], + "md5": "40a46c7463781bdd07fede4aa4caf277" + }, + { + "authorized_access_point": "Bunker", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4147004-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041470044" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4147004-7" + } + ], + "identifier": "http://d-nb.info/gnd/4147004-7", + "closeMatch": [ + { + "authorized_access_point": "Bunkers (Fortification)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134839286" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh97000842" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh97000842" + } + ] + }, + { + "authorized_access_point": "Casemates", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134839286" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF15517575" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb15517575w" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "bins", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)125620028X" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "907" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_907" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Sofern unterirdische Anlage verknu\u0308pfe ggf. mit Unterirdisches Bauwerk" + ] + } + ], + "pid": "041470044", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schutzbau" + } + ], + "variant_access_point": [ + "Schutzbunker", + "Luftschutzbunker" + ], + "md5": "266d418b6f1095ae6126ff5ef1dc6c7b" + }, + { + "authorized_access_point": "Brustwarze", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4146768-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04146768X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4146768-1" + } + ], + "identifier": "http://d-nb.info/gnd/4146768-1", + "pid": "04146768X", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Mamma" + } + ], + "variant_access_point": [ + "Papilla mammae", + "Mamillae" + ], + "md5": "f26bb1dc8344300c2042faa93691225d" + }, + { + "authorized_access_point": "Brustdru\u0308senentzu\u0308ndung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4146761-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041467612" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4146761-9" + } + ], + "identifier": "http://d-nb.info/gnd/4146761-9", + "closeMatch": [ + { + "authorized_access_point": "Mammite", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133820808" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12521464" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb125214649" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Mastitis", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1241594635" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D008413" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D008413" + } + ] + } + ], + "pid": "041467612", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Milchdru\u0308senkrankheit" + } + ], + "variant_access_point": [ + "Mastitis" + ], + "md5": "b1d9810d27037c1217d8d9de8fc2028a" + }, + { + "authorized_access_point": "Bromverbindungen", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4146657-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041466578" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4146657-3" + } + ], + "identifier": "http://d-nb.info/gnd/4146657-3", + "closeMatch": [ + { + "authorized_access_point": "Bromine compounds", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134237138" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh90006056" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh90006056" + } + ] + }, + { + "authorized_access_point": "Brome - Compose\u0301s", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134237138" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12258979" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12258979h" + } + ] + }, + { + "authorized_access_point": "Bromo - Compuestos", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254414592" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX4577821" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX4577821" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Bromine Compounds", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336148985" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D017605" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D017605" + } + ] + } + ], + "pid": "041466578", + "type": "bf:Topic", + "md5": "4b3bc136d6aec8c3e043cc7403fc0c04" + }, + { + "authorized_access_point": "Bromchlorid", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4146636-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041466365" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4146636-6" + } + ], + "identifier": "http://d-nb.info/gnd/4146636-6", + "pid": "041466365", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bromverbindungen" + }, + { + "authorized_access_point": "Chloride" + } + ], + "md5": "f8f3cc6330d292d3afc2235261ba30da" + }, + { + "authorized_access_point": "Borsa\u0308ure", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4146369-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041463692" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4146369-9" + } + ], + "identifier": "http://d-nb.info/gnd/4146369-9", + "closeMatch": [ + { + "authorized_access_point": "Boric acid", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133850944" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85015848" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85015848" + } + ] + }, + { + "authorized_access_point": "Acide borique", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133850944" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13332324" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb133323241" + } + ] + }, + { + "authorized_access_point": "Acido borico", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254349669" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "21199" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/21199" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Boric Acids", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336148675" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D001888" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D001888" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "B(OH)3" + ] + } + ], + "pid": "041463692", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Borverbindungen" + }, + { + "authorized_access_point": "Sa\u0308ure" + } + ], + "md5": "1553106be6903729ab190bc0b2b5f9dc" + }, + { + "authorized_access_point": "Betroffenheit", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4145080-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041450809" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4145080-2" + } + ], + "identifier": "http://d-nb.info/gnd/4145080-2", + "exactMatch": [ + { + "authorized_access_point": "Betroffenheit", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)97053891X" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10039038" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10039038" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Betroffenheit&oldid=218691521" + ] + } + ], + "pid": "041450809", + "type": "bf:Topic", + "md5": "e205c5a11133fbf360eedb396f472aba" + }, + { + "authorized_access_point": "Betriebsgro\u0308\u00dfe", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4145046-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041450469" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4145046-2" + } + ], + "identifier": "http://d-nb.info/gnd/4145046-2", + "closeMatch": [ + { + "authorized_access_point": "Business enterprises--Size", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334901856" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh99006010" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh99006010" + } + ] + }, + { + "authorized_access_point": "Entreprises -- Dimension", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334901856" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF119783916" + }, + { + "type": "uri", + "value": "https://catalogue.bnf.fr/ark:/12148/cb119783916" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Betriebsgro\u0308\u00dfe", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)966703731" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "12038-1" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/12038-1" + } + ] + }, + { + "authorized_access_point": "Betriebsgro\u0308\u00dfe", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970538650" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10038936" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10038936" + } + ] + } + ], + "pid": "041450469", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Unternehmensgro\u0308\u00dfe" + } + ], + "variant_access_point": [ + "Betrieb" + ], + "md5": "6045ac17497945a8235731b0db89867a" + }, + { + "authorized_access_point": "Bereitschaftsdienst", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4144618-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041446186" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4144618-5" + } + ], + "identifier": "http://d-nb.info/gnd/4144618-5", + "note": [ + { + "noteType": "general", + "label": [ + "Bereitschaftsdienst liegt vor, wenn sich der Arbeitnehmer, ohne dass von ihm wache Aufmerksamkeit gefordert wird, fu\u0308r Zwecke des Betriebs an einer vom Arbeitgeber bestimmten Stelle innerhalb oder au\u00dferhalb des Betriebs aufzuhalten hat, damit er erforderlichenfalls seine volle Arbeitsta\u0308tigkeit unverzu\u0308glich aufnehmen kann.", + "Verknu\u0308pfe mit jeweiliger Berufsgruppe bzw. Institution" + ] + } + ], + "pid": "041446186", + "type": "bf:Topic", + "variant_access_point": [ + "Dienstbereitschaft" + ], + "md5": "51f7f78a9699cf919697e606154eb154" + }, + { + "authorized_access_point": "Belegzelle", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4144428-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041444280" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4144428-0" + } + ], + "identifier": "http://d-nb.info/gnd/4144428-0", + "exactMatch": [ + { + "authorized_access_point": "Parietal Cells, Gastric", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336590092" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D010295" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D010295" + } + ] + } + ], + "pid": "041444280", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zelle" + } + ], + "variant_access_point": [ + "Parietalzelle" + ], + "md5": "21a712e406aa8118172ba3b094eeaf5c" + }, + { + "authorized_access_point": "Bandrei\u00dfer", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4143990-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041439902" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4143990-9" + } + ], + "identifier": "http://d-nb.info/gnd/4143990-9", + "note": [ + { + "noteType": "general", + "label": [ + "Traditionelles Handwerk, bei dem aus Weidengeho\u0308lz Reifen fu\u0308r die Ummantelung von Holzfa\u0308ssern hergestellt wurden." + ] + } + ], + "pid": "041439902", + "type": "bf:Topic", + "md5": "8ddb4c82036a14cb252ae617497c2e61" + }, + { + "authorized_access_point": "Azoverbindungen", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4143823-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04143823X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4143823-1" + } + ], + "identifier": "http://d-nb.info/gnd/4143823-1", + "closeMatch": [ + { + "authorized_access_point": "Azo compounds", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134277539" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85010652" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85010652" + } + ] + }, + { + "authorized_access_point": "Compose\u0301s azoi\u0308ques", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134277539" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12327858" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12327858k" + } + ] + }, + { + "authorized_access_point": "Azocomposti", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)125436367X" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "31880" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/31880" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Azo Compounds", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336148179" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D001391" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D001391" + } + ] + } + ], + "pid": "04143823X", + "type": "bf:Topic", + "variant_access_point": [ + "Diazene" + ], + "md5": "9a28bd17e4282d7f171bf523bbc7c8a1" + }, + { + "authorized_access_point": "Azide", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4143789-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041437896" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4143789-5" + } + ], + "identifier": "http://d-nb.info/gnd/4143789-5", + "closeMatch": [ + { + "authorized_access_point": "Azides", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134250118" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85010647" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85010647" + } + ] + }, + { + "authorized_access_point": "Azides", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134250118" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12269660" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12269660q" + } + ] + }, + { + "authorized_access_point": "Azidi", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254363505" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "31774" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/31774" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Azides", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336148233" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D001386" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D001386" + } + ] + } + ], + "pid": "041437896", + "type": "bf:Topic", + "md5": "35014fa9fae143cb2daa608d5d08f071" + }, + { + "authorized_access_point": "Arsenverbindungen", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4143104-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041431049" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4143104-2" + } + ], + "identifier": "http://d-nb.info/gnd/4143104-2", + "closeMatch": [ + { + "authorized_access_point": "Arsenic compounds", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133733697" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85007453" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85007453" + } + ] + }, + { + "authorized_access_point": "Arsenic - Compose\u0301s", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133733697" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12204254" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb122042547" + } + ] + }, + { + "authorized_access_point": "Arse\u0301nico - Compuestos", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254406646" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX4578267" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX4578267" + } + ] + } + ], + "pid": "041431049", + "type": "bf:Topic", + "md5": "d4f7556724931502f03c3ec530432be5" + }, + { + "authorized_access_point": "Franc\u0327aise", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4143028-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04143028X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4143028-1" + } + ], + "identifier": "http://d-nb.info/gnd/4143028-1", + "pid": "04143028X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tanz" + } + ], + "md5": "259b949b5f8b2ef7c02d50f15a342362" + }, + { + "authorized_access_point": "Anthron", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4142641-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04142641X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4142641-1" + } + ], + "identifier": "http://d-nb.info/gnd/4142641-1", + "pid": "04142641X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Anthracenone" + } + ], + "variant_access_point": [ + "CAS 90-44-8", + "Anthracenon (10H-Anthracen-9-on)" + ], + "md5": "9bfa95b2b73ef01dcffcfc21ac4ec62b" + }, + { + "authorized_access_point": "Anorthit", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4142574-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04142574X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4142574-1" + } + ], + "identifier": "http://d-nb.info/gnd/4142574-1", + "pid": "04142574X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Plagioklas" + } + ], + "variant_access_point": [ + "Kalkfeldspat", + "Barsowit", + "Beffanit", + "Biotin (Anorthit)", + "Calciklas", + "Cyclopit", + "Lindsayit", + "Linseit", + "Sundvikit", + "Thjorsauit" + ], + "md5": "499873b5b2c33629c3963da1d902b4fb" + }, + { + "authorized_access_point": "Anglaise", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4142457-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041424573" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4142457-8" + } + ], + "identifier": "http://d-nb.info/gnd/4142457-8", + "closeMatch": [ + { + "authorized_access_point": "Anglaise (Dance)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134818203" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh95008970" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh95008970" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "In Frankreich nach 1700 aus der E\u0301cossaise hervorgegangener ho\u0308f. Tanz im schnellen 3/4-Takt" + ] + } + ], + "pid": "041424573", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Contredanse" + }, + { + "authorized_access_point": "Franc\u0327aise" + } + ], + "variant_access_point": [ + "Inglesa" + ], + "md5": "9df9bf6269d87501eddf3e4fe1802b23" + }, + { + "authorized_access_point": "Angiogenese", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4142449-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041424492" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4142449-9" + } + ], + "identifier": "http://d-nb.info/gnd/4142449-9", + "closeMatch": [ + { + "authorized_access_point": "Neovascularization", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133719600" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh87002299" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh87002299" + } + ] + }, + { + "authorized_access_point": "Ne\u0301ovascularisation", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133719600" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12098723" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12098723t" + } + ] + }, + { + "authorized_access_point": "Angiogenesi", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254390871" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "60283" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/60283" + } + ] + }, + { + "authorized_access_point": "Neovascularizacio\u0301n", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254404511" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX554911" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX554911" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Angiogenesis", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336025522" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D000096482" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D000096482" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Gefa\u0308ssentwicklung im adulten Organismus" + ] + } + ], + "pid": "041424492", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Antiangiogenese" + }, + { + "authorized_access_point": "Vaskularisation" + } + ], + "variant_access_point": [ + "Gefa\u0308\u00dfentwicklung" + ], + "md5": "253d4cc1b8cb23874a4bd40cbaa8aaaf" + }, + { + "authorized_access_point": "Ammoniumverbindungen", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4142226-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041422260" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4142226-0" + } + ], + "identifier": "http://d-nb.info/gnd/4142226-0", + "closeMatch": [ + { + "authorized_access_point": "Ammonium compounds", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133649602" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85004547" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85004547" + } + ] + }, + { + "authorized_access_point": "Ammonium", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133789382" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85004546" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85004546" + } + ] + }, + { + "authorized_access_point": "Ammonium", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133789382" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12406920" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12406920p" + } + ] + }, + { + "authorized_access_point": "Ammonium - Compose\u0301s", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133649602" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11952913" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119529136" + } + ] + }, + { + "authorized_access_point": "Ammonio", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254362606" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "31172" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/31172" + } + ] + }, + { + "authorized_access_point": "Amonio", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254403965" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX532312" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX532312" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Ammonium Compounds", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336148284" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D064751" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D064751" + } + ] + } + ], + "pid": "041422260", + "type": "bf:Topic", + "variant_access_point": [ + "Ammoniumsalze", + "Ammoniumion", + "Ammonium" + ], + "md5": "74be592ad146e877088d72dc7b25c49b" + }, + { + "authorized_access_point": "Aminosa\u0308uren", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4142205-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041422058" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4142205-3" + } + ], + "identifier": "http://d-nb.info/gnd/4142205-3", + "closeMatch": [ + { + "authorized_access_point": "Amino acids", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113395720X" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85004486" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85004486" + } + ] + }, + { + "authorized_access_point": "Acides amine\u0301s", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113395720X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11944322" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11944322s" + } + ] + }, + { + "authorized_access_point": "Aminoacidi", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)125431508X" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "49" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/49" + } + ] + }, + { + "authorized_access_point": "Aminoa\u0301cidos", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254403892" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX525009" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX525009" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Amino Acids", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336147237" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D000596" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D000596" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Benutzt sowohl fu\u0308r die natu\u0308rlich vorkommenden \u03b1-Aminosa\u0308uren als auch als OB fu\u0308r alle Aminosa\u0308uren, da man i.d.R. die \u03b1-Aminosa\u0308uren meint, wenn man von Aminosa\u0308uren spricht." + ] + } + ], + "pid": "041422058", + "type": "bf:Topic", + "variant_access_point": [ + "Aminosa\u0308uren (alpha-)", + "Aminocarbonsa\u0308uren", + "Aminosa\u0308ure", + "Aminosa\u0308uren (L-)", + "Aminosa\u0308uren (D-)" + ], + "md5": "0b1afc05e4d23a6438f160e216c7a024" + }, + { + "authorized_access_point": "Allgemeinverfu\u0308gung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4141967-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041419677" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4141967-4" + } + ], + "identifier": "http://d-nb.info/gnd/4141967-4", + "note": [ + { + "noteType": "general", + "label": [ + "Eine Allgemeinverfu\u0308gung ist ein Verwaltungsakt, der sich an einen nach allgemeinen Merkmalen bestimmten oder bestimmbaren Personenkreis richtet oder die o\u0308ffentlich-rechtliche Eigenschaft einer Sache oder ihre Benutzung durch die Allgemeinheit betrifft." + ] + } + ], + "pid": "041419677", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Verwaltungsakt" + } + ], + "md5": "9496ffc999c04753c1e5c587f513e062" + }, + { + "authorized_access_point": "Absolute Feuchtigkeit", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4141113-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041411137" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4141113-4" + } + ], + "identifier": "http://d-nb.info/gnd/4141113-4", + "pid": "041411137", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Feuchtigkeit" + } + ], + "md5": "d7714c38c098b70558653e0328b7b66e" + }, + { + "authorized_access_point": "Abelscher Ko\u0308rper", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4140996-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041409965" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4140996-6" + } + ], + "identifier": "http://d-nb.info/gnd/4140996-6", + "pid": "041409965", + "type": "bf:Topic", + "variant_access_point": [ + "Abelsche Erweiterung von Ko\u0308rpern", + "Kommutativer Ko\u0308rper" + ], + "md5": "a81c1dcca72b74aa516e8d0d2dbd05fe" + }, + { + "authorized_access_point": "Abbildungstreue", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4140976-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041409760" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4140976-0" + } + ], + "identifier": "http://d-nb.info/gnd/4140976-0", + "note": [ + { + "noteType": "general", + "label": [ + "Bildqualita\u0308tsmerkmal, mit der die U\u0308bereinstimmung zwischen Bild- und Objektgeometrie bewertet wird." + ] + } + ], + "pid": "041409760", + "type": "bf:Topic", + "md5": "6a3358933f017ea087c40cfec4b5e8f6" + }, + { + "authorized_access_point": "Arztvertrag", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4139245-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041392450" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4139245-0" + } + ], + "identifier": "http://d-nb.info/gnd/4139245-0", + "pid": "041392450", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Vertrag" + }, + { + "authorized_access_point": "Arztrecht" + } + ], + "variant_access_point": [ + "Arzt", + "Behandlungsvertrag" + ], + "md5": "f434b7500bb5317a1da7861994af38c7" + }, + { + "authorized_access_point": "Ersatzdeckung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4138898-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041388984" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4138898-7" + } + ], + "identifier": "http://d-nb.info/gnd/4138898-7", + "pid": "041388984", + "type": "bf:Topic", + "variant_access_point": [ + "Ersatzsicherheit" + ], + "md5": "bafd5bc7ba6fa3f7e844d8c57e0b4a31" + }, + { + "authorized_access_point": "Erbhof", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4137840-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041378407" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4137840-4" + } + ], + "identifier": "http://d-nb.info/gnd/4137840-4", + "pid": "041378407", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bauernhof" + } + ], + "md5": "63867a268133ec120bd009290bacb0fa" + }, + { + "authorized_access_point": "Fettabgabe", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4137444-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041374444" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4137444-7" + } + ], + "identifier": "http://d-nb.info/gnd/4137444-7", + "pid": "041374444", + "type": "bf:Topic", + "variant_access_point": [ + "Fettsteuer" + ], + "md5": "84b11528dfa831770713fb43ede8f1b5" + }, + { + "authorized_access_point": "Kostu\u0308m", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4136978-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041369785" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4136978-6" + } + ], + "identifier": "http://d-nb.info/gnd/4136978-6", + "note": [ + { + "noteType": "general", + "label": [ + "Benutzt im Sinne von Bekleidung fu\u0308r eine Rolle (z.B. Filmausstattung); ggf. wird ein engeres Schlagwort verwendet, z.B. Theaterkostu\u0308m; nicht benutzt im Sinne der Kostu\u0308mkunde, verwende hierfu\u0308r Kleidung oder Tracht bzw. ein engeres Schlagwort wie z.B. Hofkleidung, Standestracht usw." + ] + } + ], + "pid": "041369785", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Verkleidung" + } + ], + "md5": "4d554729d603ddcc6df47e07550f8f72" + }, + { + "authorized_access_point": "FES (Programm)", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4136851-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041368517" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4136851-4" + } + ], + "identifier": "http://d-nb.info/gnd/4136851-4", + "pid": "041368517", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Fru\u0308hwarnsystem" + }, + { + "authorized_access_point": "Unternehmen" + } + ], + "broader": [ + { + "authorized_access_point": "Programm" + } + ], + "md5": "cb1a2fc64903bf15152661c4fd0a0875" + }, + { + "authorized_access_point": "Fleischproduktion", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4136635-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041366352" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4136635-9" + } + ], + "identifier": "http://d-nb.info/gnd/4136635-9", + "exactMatch": [ + { + "authorized_access_point": "meat production", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1256213128" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "4679" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_4679" + } + ] + } + ], + "pid": "041366352", + "type": "bf:Topic", + "variant_access_point": [ + "Fleischerzeugung", + "Fleisch" + ], + "md5": "26ff1ec5418f2b8d10d9c5be923445d6" + }, + { + "authorized_access_point": "Gesundheitsvorsorge", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4136584-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041365844" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4136584-7" + } + ], + "identifier": "http://d-nb.info/gnd/4136584-7", + "closeMatch": [ + { + "authorized_access_point": "Medicine, Preventive", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134497970" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85083162" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85083162" + } + ] + }, + { + "authorized_access_point": "Me\u0301decine pre\u0301ventive", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134497970" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11932340" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119323401" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Gesundheitsvorsorge", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)966764102" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "18892-3" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/18892-3" + } + ] + }, + { + "authorized_access_point": "Gesundheitsvorsorge", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970554370" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10045507" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10045507" + } + ] + } + ], + "pid": "041365844", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Gesundheitsfu\u0308rsorge" + }, + { + "authorized_access_point": "Pra\u0308ventivmedizin" + }, + { + "authorized_access_point": "Pra\u0308vention" + } + ], + "variant_access_point": [ + "Gesundheitspra\u0308vention" + ], + "md5": "f1acaf4ced887bf48b0a4498f1e1fe96" + }, + { + "authorized_access_point": "Affekthandlung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4135471-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041354710" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4135471-0" + } + ], + "identifier": "http://d-nb.info/gnd/4135471-0", + "pid": "041354710", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Handlung" + } + ], + "related": [ + { + "authorized_access_point": "Affekt" + }, + { + "authorized_access_point": "Affekttat" + } + ], + "md5": "35c691fe2487093e3c70807085155409" + }, + { + "authorized_access_point": "Zurren", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4134583-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041345835" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4134583-6" + } + ], + "identifier": "http://d-nb.info/gnd/4134583-6", + "pid": "041345835", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ladungssicherung" + } + ], + "variant_access_point": [ + "Niederzurren", + "Festzurren" + ], + "md5": "5acc3a20370a00a484bc2ff70f460a0e" + }, + { + "authorized_access_point": "Sanierungspru\u0308fung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4134166-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04134166X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4134166-1" + } + ], + "identifier": "http://d-nb.info/gnd/4134166-1", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Internet Stand: 17.02.2020 - http://www.wirtschaftslexikon24.com/e/sanierungspr%C3%BCfung/sanierungspr%C3%BCfung.htm" + ] + }, + { + "noteType": "general", + "label": [ + "Sanierungsbedu\u0308rftigkeitspru\u0308fung, Sanierungsfa\u0308higkeitspru\u0308fung, Sanierungswu\u0308rdigkeitspru\u0308fung" + ] + } + ], + "pid": "04134166X", + "type": "bf:Topic", + "md5": "5104be50efd926da64e362a17bc9253b" + }, + { + "authorized_access_point": "Arbeitslosenstatistik", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4134089-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041340892" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4134089-9" + } + ], + "identifier": "http://d-nb.info/gnd/4134089-9", + "pid": "041340892", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Arbeitsmarkt" + } + ], + "broader": [ + { + "authorized_access_point": "Statistik" + } + ], + "md5": "d8726d41222d44ab88e7cf45d7f5a89c" + }, + { + "authorized_access_point": "Ho\u0308chstalemannisch", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4133300-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041333004" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4133300-7" + } + ], + "identifier": "http://d-nb.info/gnd/4133300-7", + "pid": "041333004", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Alemannisch" + }, + { + "authorized_access_point": "Schweizerdeutsch" + } + ], + "md5": "124110dbfc441dac79126069e6d7884f" + }, + { + "authorized_access_point": "Hochalemannisch", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4133299-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041332997" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4133299-4" + } + ], + "identifier": "http://d-nb.info/gnd/4133299-4", + "pid": "041332997", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Alemannisch" + }, + { + "authorized_access_point": "Schweizerdeutsch" + } + ], + "md5": "52c3e77a603294097389a46c9f22cd1a" + }, + { + "authorized_access_point": "Klempnerhandwerk", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4133223-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041332237" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4133223-4" + } + ], + "identifier": "http://d-nb.info/gnd/4133223-4", + "closeMatch": [ + { + "authorized_access_point": "Plumbing", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133619509" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85103551" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85103551" + } + ] + }, + { + "authorized_access_point": "Plomberie", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133619509" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11933155" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11933155r" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Klempnerhandwerk", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)966801873" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "13185-4" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/13185-4" + } + ] + } + ], + "pid": "041332237", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Installateurhandwerk" + } + ], + "md5": "603299e319762def22e4b4cbcc8f633c" + }, + { + "authorized_access_point": "Drei\u00dfig-Millibar-Fla\u0308che", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4132620-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041326202" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4132620-9" + } + ], + "identifier": "http://d-nb.info/gnd/4132620-9", + "pid": "041326202", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Niveaufla\u0308che" + } + ], + "md5": "95e62a3fc7d248fbd75c3c145b46a632" + }, + { + "authorized_access_point": "Visitation", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4132571-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041325710" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4132571-0" + } + ], + "identifier": "http://d-nb.info/gnd/4132571-0", + "note": [ + { + "noteType": "general", + "label": [ + "Offizieller Besuch des Tra\u0308gers der kirchlichen Jurisdiktion in seinem Jurisdiktionsbezirk zum Zwecke der kirchlichen Aufsicht \"vor Ort\"" + ] + } + ], + "pid": "041325710", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kirchenrecht" + } + ], + "variant_access_point": [ + "Kanonische Visitation", + "Kirchenvisitation" + ], + "md5": "dcf16bb0ad0d5601de4022c5a6626952" + }, + { + "authorized_access_point": "Pala\u0308ogeografie", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4132305-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04132305X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4132305-1" + } + ], + "identifier": "http://d-nb.info/gnd/4132305-1", + "closeMatch": [ + { + "authorized_access_point": "Paleogeography", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133960545" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85097061" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85097061" + } + ] + }, + { + "authorized_access_point": "Pale\u0301oge\u0301ographie", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133960545" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11945801" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11945801f" + } + ] + }, + { + "authorized_access_point": "Paleogeografia", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254370803" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "37702" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/37702" + } + ] + }, + { + "authorized_access_point": "Paleogeografi\u0301a", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254470395" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX531420" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX531420" + } + ] + } + ], + "pid": "04132305X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Geografie" + }, + { + "authorized_access_point": "Historische Geologie" + } + ], + "variant_access_point": [ + "Pala\u0308ogeographie" + ], + "md5": "453bf76b7663b52df6a4165cc61fe14c" + }, + { + "authorized_access_point": "Trojanischer Sagenkreis", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4132288-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041322886" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4132288-5" + } + ], + "identifier": "http://d-nb.info/gnd/4132288-5", + "closeMatch": [ + { + "authorized_access_point": "Troy (Extinct city) - Legends", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134548559" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2001000063" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2001000063" + } + ] + }, + { + "authorized_access_point": "Troya (Ciudad desaparecida) - Leyendas", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254496750" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX5219319" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX5219319" + } + ] + } + ], + "pid": "041322886", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Epischer Kyklos" + } + ], + "variant_access_point": [ + "Troischer Sagenkreis", + "Trojasage" + ], + "md5": "15003a6ac2af61b544f1fca252e35ab8" + }, + { + "authorized_access_point": "Artenreichtum", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4131912-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041319125" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4131912-6" + } + ], + "identifier": "http://d-nb.info/gnd/4131912-6", + "closeMatch": [ + { + "authorized_access_point": "Species diversity", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133775853" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh87005571" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh87005571" + } + ] + }, + { + "authorized_access_point": "Diversite\u0301 des espe\u0300ces", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133775853" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12336704" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12336704b" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Vielfalt der Arten in einem Biom" + ] + } + ], + "pid": "041319125", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Biodiversita\u0308t" + } + ], + "related": [ + { + "authorized_access_point": "Artensterben" + } + ], + "variant_access_point": [ + "Artenvielfalt", + "Artenmannigfaltigkeit" + ], + "md5": "298c3f51a3e4d00ae7cf637b28f04db2" + }, + { + "authorized_access_point": "Marmorierung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4131771-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041317718" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4131771-3" + } + ], + "identifier": "http://d-nb.info/gnd/4131771-3", + "closeMatch": [ + { + "authorized_access_point": "Marbling", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134528264" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85080958" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85080958" + } + ] + }, + { + "authorized_access_point": "Marbling (Bookbinding)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113454264X" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85080959" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85080959" + } + ] + }, + { + "authorized_access_point": "Marbrure (reliure)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113454264X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13319182" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13319182x" + } + ] + }, + { + "authorized_access_point": "Marmoleado", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254509968" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX5221003" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX5221003" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Gemalte Strukturierung eines Objekts in Marmorart (beispielsweise zur Verzierung von Papier, Buchschnitt oder Leder mit typischen Mustern)" + ] + } + ], + "pid": "041317718", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Malerei" + }, + { + "authorized_access_point": "Muster (Dekor)" + } + ], + "variant_access_point": [ + "Marmormalerei" + ], + "md5": "3c5e467efd495e17cc0154183cfa8c36" + }, + { + "authorized_access_point": "Zementmo\u0308rtel", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4131236-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041312368" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4131236-3" + } + ], + "identifier": "http://d-nb.info/gnd/4131236-3", + "closeMatch": [ + { + "authorized_access_point": "Grout (Mortar)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134748019" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85057520" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85057520" + } + ] + }, + { + "authorized_access_point": "Mortier liquide", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134748019" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12337766" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb123377664" + } + ] + } + ], + "pid": "041312368", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mo\u0308rtel" + } + ], + "md5": "1ad33e1839116506ec1ca88c0b85ac0c" + }, + { + "authorized_access_point": "Ingenieurbu\u0308ro", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4130816-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041308166" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4130816-5" + } + ], + "identifier": "http://d-nb.info/gnd/4130816-5", + "closeMatch": [ + { + "authorized_access_point": "Engineering firms", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134046170" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85043219" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85043219" + } + ] + }, + { + "authorized_access_point": "Socie\u0301te\u0301s d'inge\u0301nieurs-conseils", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134046170" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11977242" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11977242g" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Ingenieurbu\u0308ro", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)966782615" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "13381-4" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/13381-4" + } + ] + } + ], + "pid": "041308166", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Beratender Ingenieur" + } + ], + "md5": "e96fb62129048fe4dbc14c267ea5ac86" + }, + { + "authorized_access_point": "Staatsziel", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4130810-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041308107" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4130810-4" + } + ], + "identifier": "http://d-nb.info/gnd/4130810-4", + "pid": "041308107", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Verfassungsma\u0308\u00dfige Ordnung" + } + ], + "variant_access_point": [ + "Staat", + "Staatszielbestimmung", + "Staatsziele" + ], + "md5": "b1525b8795dbe22abaec8a4953138b73" + }, + { + "authorized_access_point": "Geldscho\u0308pfung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4130376-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041303768" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4130376-3" + } + ], + "identifier": "http://d-nb.info/gnd/4130376-3", + "closeMatch": [ + { + "authorized_access_point": "Cre\u0301ation de monnaie", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334883556" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF17740301b" + }, + { + "type": "uri", + "value": "https://catalogue.bnf.fr/ark:/12148/cb17740301b" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Geldscho\u0308pfung", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)966755669" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "11424-1" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/11424-1" + } + ] + }, + { + "authorized_access_point": "Geldscho\u0308pfung", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970552912" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10044841" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10044841" + } + ] + } + ], + "pid": "041303768", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Geldmenge" + }, + { + "authorized_access_point": "Kreditscho\u0308pfung" + } + ], + "variant_access_point": [ + "Geldschaffung" + ], + "md5": "1436bb4e96bb8102fa49a7d32230582e" + }, + { + "authorized_access_point": "Zellzyklus", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4129960-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041299604" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4129960-7" + } + ], + "identifier": "http://d-nb.info/gnd/4129960-7", + "closeMatch": [ + { + "authorized_access_point": "Cell cycle", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133729088" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85021643" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85021643" + } + ] + }, + { + "authorized_access_point": "Plant cell cycle", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113379047X" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85102706" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85102706" + } + ] + }, + { + "authorized_access_point": "Cycle cellulaire ve\u0301ge\u0301tal", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113379047X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12412715" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12412715s" + } + ] + }, + { + "authorized_access_point": "Cycle cellulaire", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133729088" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12153911" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12153911h" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "cell cycle", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)125627335X" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "37218" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_37218" + } + ] + }, + { + "authorized_access_point": "Cell Cycle", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336586133" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D002453" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D002453" + } + ] + } + ], + "pid": "041299604", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zellwachstum" + } + ], + "variant_access_point": [ + "Mitosezyklus", + "Zellcyclus" + ], + "md5": "98a05a07ac0981d484b6063056a067d6" + }, + { + "authorized_access_point": "Krebszelle", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4128704-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041287045" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4128704-6" + } + ], + "identifier": "http://d-nb.info/gnd/4128704-6", + "closeMatch": [ + { + "authorized_access_point": "Cancer cells", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133992099" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85019549" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85019549" + } + ] + }, + { + "authorized_access_point": "Cellules cance\u0301reuses", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133992099" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11958048" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11958048t" + } + ] + }, + { + "authorized_access_point": "Cellule neoplastiche", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254382798" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "50347" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/50347" + } + ] + }, + { + "authorized_access_point": "Ce\u0301lulas cancerosas", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254452249" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX533645" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX533645" + } + ] + } + ], + "pid": "041287045", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zelle" + } + ], + "variant_access_point": [ + "Krebs (Medizin)" + ], + "md5": "ea5fe4bcda1e78752f6567bbe680fba7" + }, + { + "authorized_access_point": "Arbeitsflexibilisierung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4128237-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04128237X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4128237-1" + } + ], + "identifier": "http://d-nb.info/gnd/4128237-1", + "closeMatch": [ + { + "authorized_access_point": "Marche\u0301 du travail", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134493010" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11933626" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11933626j" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Zusammenfassender Begriff fu\u0308r alle Flexibilisierungsstrategien im Bereich d. Arbeit" + ] + } + ], + "pid": "04128237X", + "type": "bf:Topic", + "variant_access_point": [ + "Flexibilisierung", + "Arbeitsflexibilita\u0308t" + ], + "md5": "5c617cd914aaf7ff9ed6651f8f790048" + }, + { + "authorized_access_point": "Kriminalprognose", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4128163-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041281632" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4128163-9" + } + ], + "identifier": "http://d-nb.info/gnd/4128163-9", + "pid": "041281632", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Prognose" + } + ], + "variant_access_point": [ + "Kriminalita\u0308tsprognose", + "Legalprognose" + ], + "md5": "afd67aee2e4170e78c7f8c13094c55d3" + }, + { + "authorized_access_point": "Muskelzelle", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4127323-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041273230" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4127323-0" + } + ], + "identifier": "http://d-nb.info/gnd/4127323-0", + "closeMatch": [ + { + "authorized_access_point": "Muscle cells", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134519516" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85088676" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85088676" + } + ] + }, + { + "authorized_access_point": "Myocytes", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134519516" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11937793" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11937793x" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Muscle Cells", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336589426" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D032342" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D032342" + } + ] + } + ], + "pid": "041273230", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zelle" + }, + { + "authorized_access_point": "Muskelfaser" + } + ], + "md5": "51c56a66f3e83c97d80eba7a1ddf6670" + }, + { + "authorized_access_point": "Buto\u0302-Tanz", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4126995-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041269950" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4126995-0" + } + ], + "identifier": "http://d-nb.info/gnd/4126995-0", + "closeMatch": [ + { + "authorized_access_point": "Buto\u0304", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133786634" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh90000099" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh90000099" + } + ] + }, + { + "authorized_access_point": "Buto\u0304", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133786634" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12389686" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb123896860" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Avantgardistischer japan. Tanz" + ] + } + ], + "pid": "041269950", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tanz" + } + ], + "variant_access_point": [ + "Butoh", + "Buto\u0302 (Tanz)" + ], + "md5": "436ed24742a5012d4da9a0a9f7798e69" + }, + { + "authorized_access_point": "Massenkultur", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4125858-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041258584" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4125858-7" + } + ], + "identifier": "http://d-nb.info/gnd/4125858-7", + "closeMatch": [ + { + "authorized_access_point": "Culture de masse", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134492146" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13318336" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb133183362" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Massenkultur", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970571321" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10050181" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10050181" + } + ] + } + ], + "pid": "041258584", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kultur" + } + ], + "related": [ + { + "authorized_access_point": "Alltagskultur" + }, + { + "authorized_access_point": "Arbeiterkultur" + }, + { + "authorized_access_point": "Industriekultur" + }, + { + "authorized_access_point": "Volkskultur" + }, + { + "authorized_access_point": "Popkultur" + } + ], + "md5": "95cedf1ac0a809e375d3691b3086dc0c" + }, + { + "authorized_access_point": "Netsuke", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4125588-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041255887" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4125588-4" + } + ], + "identifier": "http://d-nb.info/gnd/4125588-4", + "closeMatch": [ + { + "authorized_access_point": "Netsukes", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133639275" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85091047" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85091047" + } + ] + }, + { + "authorized_access_point": "Netsuke", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133639275" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11945149" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11945149h" + } + ] + }, + { + "authorized_access_point": "Netsuke", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254326421" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "3974" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/3974" + } + ] + }, + { + "authorized_access_point": "Netsuke", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254466614" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX558922" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX558922" + } + ] + } + ], + "pid": "041255887", + "type": "bf:Topic", + "md5": "95b314491836dcddc7ab9a17b44a197b" + }, + { + "authorized_access_point": "Brandbeka\u0308mpfung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4125289-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041252896" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4125289-5" + } + ], + "identifier": "http://d-nb.info/gnd/4125289-5", + "closeMatch": [ + { + "authorized_access_point": "Fire extinction", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133615511" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85048486" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85048486" + } + ] + }, + { + "authorized_access_point": "Incendies - Extinction", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133615511" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11932069" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11932069x" + } + ] + }, + { + "authorized_access_point": "Spegnimento", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254384669" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "52317" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/52317" + } + ] + }, + { + "authorized_access_point": "Incendios - Extincio\u0301n", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)125441410X" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX559831" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX559831" + } + ] + } + ], + "pid": "041252896", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Feuerwehr" + } + ], + "variant_access_point": [ + "Feuerbeka\u0308mpfung", + "Feuerlo\u0308schen", + "Feuer", + "Abwehrender Brandschutz" + ], + "md5": "2e9b6bda59ec9c665cd6328b634af895" + }, + { + "authorized_access_point": "Aggregat", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4124529-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041245296" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4124529-5" + } + ], + "identifier": "http://d-nb.info/gnd/4124529-5", + "pid": "041245296", + "type": "bf:Topic", + "variant_access_point": [ + "Betriebsmittel" + ], + "md5": "39d00e7b0c0809b22ff176586ed54955" + }, + { + "authorized_access_point": "Relaunch", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4124051-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041240510" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4124051-0" + } + ], + "identifier": "http://d-nb.info/gnd/4124051-0", + "note": [ + { + "noteType": "general", + "label": [ + "Marketingmassnahme zur Verla\u0308ngerung des Produktlebenszyklus" + ] + } + ], + "pid": "041240510", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Produktlebenszyklus" + } + ], + "variant_access_point": [ + "Relaunching" + ], + "md5": "2ea3a9889371e324bfa891512d55ffca" + }, + { + "authorized_access_point": "Personaldaten", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4123928-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041239288" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4123928-3" + } + ], + "identifier": "http://d-nb.info/gnd/4123928-3", + "closeMatch": [ + { + "authorized_access_point": "Electronic monitoring in the workplace", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113445919X" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh00009296" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh00009296" + } + ] + }, + { + "authorized_access_point": "Surveillance e\u0301lectronique en milieu de travail", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113445919X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF14621537" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb146215374" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Personaldaten", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970578652" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10040511" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10040511" + } + ] + } + ], + "pid": "041239288", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Daten" + } + ], + "related": [ + { + "authorized_access_point": "Personenbezogene Daten" + } + ], + "variant_access_point": [ + "Bescha\u0308ftigtendaten", + "Mitarbeiterdaten", + "Arbeitnehmer" + ], + "md5": "fc2ee8a1543a789a76e24147439e665a" + }, + { + "authorized_access_point": "Okklusionssto\u0308rung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4123882-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041238826" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4123882-5" + } + ], + "identifier": "http://d-nb.info/gnd/4123882-5", + "closeMatch": [ + { + "authorized_access_point": "Malocclusion", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133672825" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85080183" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85080183" + } + ] + }, + { + "authorized_access_point": "Malocclusion dentaire", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133672825" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11970770" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11970770d" + } + ] + }, + { + "authorized_access_point": "Maloclusio\u0301n", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254468838" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX546636" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX546636" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Malocclusion", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1241615926" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D008310" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D008310" + } + ] + } + ], + "pid": "041238826", + "type": "bf:Topic", + "variant_access_point": [ + "Malokklusion", + "Okklusionsanomalie", + "Okklusionsabweichung" + ], + "md5": "3f011203e83447c6c6a3730177596940" + }, + { + "authorized_access_point": "LIPLAN", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4123659-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041236599" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4123659-2" + } + ], + "identifier": "http://d-nb.info/gnd/4123659-2", + "pid": "041236599", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Liquidita\u0308tsplanung" + } + ], + "broader": [ + { + "authorized_access_point": "Programm" + } + ], + "md5": "246d5fade10d60de6741285aa3905310" + }, + { + "authorized_access_point": "Knochenmarkzelle", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4123534-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041235347" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4123534-4" + } + ], + "identifier": "http://d-nb.info/gnd/4123534-4", + "closeMatch": [ + { + "authorized_access_point": "Bone marrow cells", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133886736" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85081545" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85081545" + } + ] + }, + { + "authorized_access_point": "Cellules de la moelle osseuse", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133886736" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13743509" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13743509t" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Bone Marrow Cells", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)133658923X" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D001854" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D001854" + } + ] + } + ], + "pid": "041235347", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zelle" + } + ], + "variant_access_point": [ + "Knochenmarkzellen", + "Knochenmarkszelle" + ], + "md5": "61bb69ee0b141fbff01a4d3dcaf95f4c" + }, + { + "authorized_access_point": "Anglizismus", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4122798-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041227980" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4122798-0" + } + ], + "identifier": "http://d-nb.info/gnd/4122798-0", + "closeMatch": [ + { + "authorized_access_point": "Emprunts anglais", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134149212" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12073697" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12073697g" + } + ] + } + ], + "pid": "041227980", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Xenismus" + }, + { + "authorized_access_point": "Entlehnung" + } + ], + "related": [ + { + "authorized_access_point": "Amerikanismus" + }, + { + "authorized_access_point": "Englisch" + } + ], + "md5": "429779c1dd0c3baeca0a7f28a177971d" + }, + { + "authorized_access_point": "Automobilausstellung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4122060-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041220609" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4122060-2" + } + ], + "identifier": "http://d-nb.info/gnd/4122060-2", + "closeMatch": [ + { + "authorized_access_point": "Expositions automobiles", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133695337" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11982542" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119825429" + } + ] + } + ], + "pid": "041220609", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Industrieausstellung" + } + ], + "md5": "7d4590fdd46a73ec3896a1be34d3eabc" + }, + { + "authorized_access_point": "Zwangsverpackungspfand", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4121952-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04121952X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4121952-1" + } + ], + "identifier": "http://d-nb.info/gnd/4121952-1", + "pid": "04121952X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Verpackungspfand" + } + ], + "md5": "ba979d241f9521445a0e798914a45da0" + }, + { + "authorized_access_point": "Umweltforschung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4121810-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041218108" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4121810-3" + } + ], + "identifier": "http://d-nb.info/gnd/4121810-3", + "closeMatch": [ + { + "authorized_access_point": "Environmental protection - Research", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133612857" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85044206" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85044206" + } + ] + }, + { + "authorized_access_point": "Environnement - Recherche", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133612857" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12647462" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12647462n" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Umweltforschung", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970598866" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10060580" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10060580" + } + ] + } + ], + "pid": "041218108", + "type": "bf:Topic", + "variant_access_point": [ + "Umweltschutzforschung" + ], + "md5": "f34b7ec5797996882374519c21c7d095" + }, + { + "authorized_access_point": "Telearbeit", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4121761-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041217616" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4121761-5" + } + ], + "identifier": "http://d-nb.info/gnd/4121761-5", + "closeMatch": [ + { + "authorized_access_point": "Telecommuting", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134185731" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85133307" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85133307" + } + ] + }, + { + "authorized_access_point": "Te\u0301le\u0301travail", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134185731" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12140176" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12140176z" + } + ] + }, + { + "authorized_access_point": "Telelavoro", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)125432593X" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "3744" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/3744" + } + ] + }, + { + "authorized_access_point": "Teletrabajo", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254493808" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX538553" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX538553" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Telearbeit", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)966996208" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "18112-6" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/18112-6" + } + ] + }, + { + "authorized_access_point": "Telearbeit", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970597282" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10035916" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10035916" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Erwerbsta\u0308tigkeit an einem externen Arbeitsplatz, der mit informationstechn. Endgera\u0308ten ausgestattet, dezentral eingerichtet und mit dem Auftraggeber/Arbeitgeber durch elektron. Kommunikationsnetze verbunden ist" + ] + } + ], + "pid": "041217616", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Heimarbeit" + }, + { + "authorized_access_point": "Arbeit" + } + ], + "variant_access_point": [ + "Tele-Heimarbeit", + "Home Office", + "Homeoffice", + "Fernarbeit", + "Computerheimarbeit", + "Tele-Working", + "Telecommuting", + "Tele-Arbeit", + "Telekommunikation", + "Mobiles Arbeiten" + ], + "md5": "ec8b5ebbe8b7fd5eddc44673199ce8e5" + }, + { + "authorized_access_point": "EXBILA", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4121230-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041212304" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4121230-7" + } + ], + "identifier": "http://d-nb.info/gnd/4121230-7", + "note": [ + { + "noteType": "general", + "label": [ + "Programm fu\u0308r Externe Bilanzanalyse" + ] + } + ], + "pid": "041212304", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Bilanzanalyse" + } + ], + "broader": [ + { + "authorized_access_point": "Programm" + } + ], + "md5": "12a79f1da46ef4350a1a92f8570260ba" + }, + { + "authorized_access_point": "Marktgleichgewicht", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4120701-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041207017" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4120701-4" + } + ], + "identifier": "http://d-nb.info/gnd/4120701-4", + "closeMatch": [ + { + "authorized_access_point": "Equilibrium (Economics)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334903719" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85044538" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85044538" + } + ] + }, + { + "authorized_access_point": "E\u0301quilibre (e\u0301conomie politique)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1334903719" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11931264" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11931264h" + } + ] + } + ], + "pid": "041207017", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gleichgewicht" + } + ], + "variant_access_point": [ + "Markt", + "Konkurrenzgleichgewicht" + ], + "md5": "7b376b8db7affe5bc2ff257883bb7d2d" + }, + { + "authorized_access_point": "Leberepithelzelle", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4120659-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041206592" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4120659-9" + } + ], + "identifier": "http://d-nb.info/gnd/4120659-9", + "closeMatch": [ + { + "authorized_access_point": "Liver cells", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134131135" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85077772" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85077772" + } + ] + }, + { + "authorized_access_point": "Cellules he\u0301patiques", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134131135" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12047088" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb120470886" + } + ] + }, + { + "authorized_access_point": "Cellule epatiche", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254378499" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "45407" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/45407" + } + ] + }, + { + "authorized_access_point": "Ce\u0301lulas hepa\u0301ticas", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254455493" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX559281" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX559281" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Hepatocytes", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336589078" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D022781" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D022781" + } + ] + } + ], + "pid": "041206592", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zelle" + } + ], + "variant_access_point": [ + "Hepatozyt", + "Leberzelle", + "Leberparenchymzelle", + "Hepatocyt" + ], + "md5": "c32fde7cb9f0b47de6bcf2c3fb9b2c4d" + }, + { + "authorized_access_point": "Altaische Sprachen", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4120111-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041201116" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4120111-5" + } + ], + "identifier": "http://d-nb.info/gnd/4120111-5", + "closeMatch": [ + { + "authorized_access_point": "Altaic languages", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133699049" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85003868" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85003868" + } + ] + }, + { + "authorized_access_point": "Langues altai\u0308ques", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133699049" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11991545" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119915459" + } + ] + }, + { + "authorized_access_point": "Lingue altaiche", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254315659" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "181" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/181" + } + ] + }, + { + "authorized_access_point": "Lenguas altaicas", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254403205" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX546093" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX546093" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "mo\u0308glicherweise nur Sprachbund" + ] + } + ], + "pid": "041201116", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Uralaltaische Sprachen" + } + ], + "variant_access_point": [ + "Altaisch (Sprachfamilie)" + ], + "md5": "316ff2b024217a5e3cabddb8ee268d6f" + }, + { + "authorized_access_point": "Sasak", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4118443-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041184432" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4118443-9" + } + ], + "identifier": "http://d-nb.info/gnd/4118443-9", + "pid": "041184432", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "variant_access_point": [ + "Sassak" + ], + "md5": "78dca3b4668dc05842d0657a76920951" + }, + { + "authorized_access_point": "Heilige", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4117606-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041176065" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4117606-6" + } + ], + "identifier": "http://d-nb.info/gnd/4117606-6", + "closeMatch": [ + { + "authorized_access_point": "Christian women saints", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133986994" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85025188" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85025188" + } + ] + }, + { + "authorized_access_point": "Women saints", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134610386" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85116638" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85116638" + } + ] + }, + { + "authorized_access_point": "Saintes chre\u0301tiennes", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133986994" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11955309" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119553091" + } + ] + }, + { + "authorized_access_point": "Sante", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254361065" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "29798" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/29798" + } + ] + }, + { + "authorized_access_point": "Santas cristianas", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254439110" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX537664" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX537664" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Als identifizierender Zusatz und als instantieller Oberbegriff bei weiblichen heiligen Personen obligatorisch gem. EH-P-10 zur GND nach RDA" + ] + } + ], + "pid": "041176065", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Heiliger" + } + ], + "broader": [ + { + "authorized_access_point": "Frau" + } + ], + "variant_access_point": [ + "Weibliche Heilige", + "Heilige Frau", + "Heiliggesprochene Frau", + "Heilig gesprochene Frau" + ], + "md5": "1f43a795e5871ed89b73aa84fca32f32" + }, + { + "authorized_access_point": "Pflanzenzelle", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4115551-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041155513" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4115551-8" + } + ], + "identifier": "http://d-nb.info/gnd/4115551-8", + "closeMatch": [ + { + "authorized_access_point": "Plant cells and tissues", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113364211X" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85102712" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85102712" + } + ] + }, + { + "authorized_access_point": "Cellules ve\u0301ge\u0301tales", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113364211X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11946982" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11946982s" + } + ] + }, + { + "authorized_access_point": "Ce\u0301lulas vegetales", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1299903770" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX533812" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX533812" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Plant Cells", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336588802" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D059828" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D059828" + } + ] + } + ], + "pid": "041155513", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zelle" + } + ], + "variant_access_point": [ + "Pflanzen" + ], + "md5": "69bbf9a78476af4361fd98bbdde078d8" + }, + { + "authorized_access_point": "Organisationskultur", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4115463-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041154630" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4115463-0" + } + ], + "identifier": "http://d-nb.info/gnd/4115463-0", + "closeMatch": [ + { + "authorized_access_point": "Corporate culture", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134603371" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85032896" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85032896" + } + ] + }, + { + "authorized_access_point": "Culture d'entreprise", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134603371" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12004221" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12004221x" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Unternehmenskultur", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)967011043" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "12108-6" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/12108-6" + } + ] + }, + { + "authorized_access_point": "Organisationskultur", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970577311" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10060811" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10060811" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Organisation als kulturelles Sinnsystem" + ] + } + ], + "pid": "041154630", + "type": "bf:Topic", + "md5": "37df8a94d6c5ab6814e6d476f51a5240" + }, + { + "authorized_access_point": "Marketingaudit", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4114516-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04114516X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4114516-1" + } + ], + "identifier": "http://d-nb.info/gnd/4114516-1", + "pid": "04114516X", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Marketing" + } + ], + "broader": [ + { + "authorized_access_point": "Controlling" + } + ], + "md5": "5a212998a733e95517796aa4531d1dda" + }, + { + "authorized_access_point": "Iranier", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4109150-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041091507" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4109150-4" + } + ], + "identifier": "http://d-nb.info/gnd/4109150-4", + "closeMatch": [ + { + "authorized_access_point": "Iranians", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134077866" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85067929" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85067929" + } + ] + }, + { + "authorized_access_point": "Iraniens", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134077866" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11982855" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11982855g" + } + ] + }, + { + "authorized_access_point": "Irani\u0301es", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254444726" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX555380" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX555380" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Iraner", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1008594873" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "26312-2" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/26312-2" + } + ] + }, + { + "authorized_access_point": "Iraner", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970561199" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10066094" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10066094" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Auch benutzt fu\u0308r Angeho\u0308rige des Staates Iran soweit ausserhalb des Staates lebend, hierfu\u0308r benutze LC XB-IR" + ] + } + ], + "pid": "041091507", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Iranierin" + } + ], + "variant_access_point": [ + "Iraner" + ], + "md5": "70eca264abba1fa35beb23182ddb2498" + }, + { + "authorized_access_point": "Shavante", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4107684-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041076842" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4107684-9" + } + ], + "identifier": "http://d-nb.info/gnd/4107684-9", + "closeMatch": [ + { + "authorized_access_point": "Xavante Indians", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133987729" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85003081" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85003081" + } + ] + }, + { + "authorized_access_point": "Chavante (Indiens)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133987729" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11955654" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11955654p" + } + ] + }, + { + "authorized_access_point": "Xavantes (Indios)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254486607" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX549246" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX549246" + } + ] + } + ], + "pid": "041076842", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Indianer" + } + ], + "variant_access_point": [ + "Xavante", + "Chavante" + ], + "md5": "83449ff7c5b2895a9f174c0fdc9d8211" + }, + { + "authorized_access_point": "Nyamwezi", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4101869-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041018699" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4101869-2" + } + ], + "identifier": "http://d-nb.info/gnd/4101869-2", + "closeMatch": [ + { + "authorized_access_point": "Nyamwezi (African people)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113394602X" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85093489" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85093489" + } + ] + }, + { + "authorized_access_point": "Nyamwezi (peuple d'Afrique)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113394602X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11938722" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11938722n" + } + ] + }, + { + "authorized_access_point": "Nyamwezis (Pueblo africano)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254468374" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX4760724" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX4760724" + } + ] + } + ], + "pid": "041018699", + "type": "bf:Topic", + "variant_access_point": [ + "Nyamwesi", + "Njamwesi", + "Wanjamwesi", + "Wanyamwesi" + ], + "md5": "0c08b5205a32b1d401672724cf2951ad" + }, + { + "authorized_access_point": "Sozialdienst", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4077559-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040775593" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4077559-8" + } + ], + "identifier": "http://d-nb.info/gnd/4077559-8", + "exactMatch": [ + { + "authorized_access_point": "Sozialer Dienst", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)96696277X" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "16543-3" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/16543-3" + } + ] + }, + { + "authorized_access_point": "soziale Dienste", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970590555" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10035231" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10035231" + } + ] + } + ], + "pid": "040775593", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Sozialarbeit" + } + ], + "variant_access_point": [ + "Soziale Dienste", + "Sozialer Dienst" + ], + "md5": "e36590a715aaa7afa8cffef0ae77d6b2" + }, + { + "authorized_access_point": "Proteine", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4076388-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040763889" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4076388-2" + } + ], + "identifier": "http://d-nb.info/gnd/4076388-2", + "closeMatch": [ + { + "authorized_access_point": "Proteins", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133625789" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85107666" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85107666" + } + ] + }, + { + "authorized_access_point": "Prote\u0301ines", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133625789" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11936447" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11936447p" + } + ] + }, + { + "authorized_access_point": "Proteine", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254315101" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "51" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/51" + } + ] + }, + { + "authorized_access_point": "Protei\u0301nas", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254475982" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX526597" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX526597" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "proteins", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1256248541" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "6259" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_6259" + } + ] + }, + { + "authorized_access_point": "Proteins", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336147075" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D011506" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D011506" + } + ] + } + ], + "pid": "040763889", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Genprodukt" + }, + { + "authorized_access_point": "Biopolymere" + } + ], + "variant_access_point": [ + "Eiweiss", + "Protein" + ], + "md5": "8934ece698abcbba69120f116a4fbed9" + }, + { + "authorized_access_point": "Judenvernichtung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4073091-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040730913" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4073091-8" + } + ], + "identifier": "http://d-nb.info/gnd/4073091-8", + "closeMatch": [ + { + "authorized_access_point": "Holocaust, Jewish (1939-1945)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113360563X" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85061515" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85061515" + } + ] + }, + { + "authorized_access_point": "Shoah", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113360563X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11941579" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11941579k" + } + ] + }, + { + "authorized_access_point": "Holocausto judi\u0301o (1939-1945)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254445757" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX4663627" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX4663627" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Verwendet nur fu\u0308r Vernichtungslager und fu\u0308r den Vorgang als solchen, nicht in Verbindung mit einzelnen Orten in Deutschland, dann Judenverfolgung. To\u0308tungsaktionen an einzelnen Orten im Osten werden nicht als historisches Einzelereignis behandelt, sondern mit dem Geographikum verknu\u0308pft." + ] + } + ], + "pid": "040730913", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Judenverfolgung" + }, + { + "authorized_access_point": "Nationalsozialistisches Verbrechen" + } + ], + "related": [ + { + "authorized_access_point": "Vernichtungslager" + } + ], + "variant_access_point": [ + "Endlo\u0308sung", + "Holocaust", + "Holokaust", + "Judenfrage", + "Schoah", + "Shoah", + "Sho\u02beah", + "Shoa", + "Drittes Reich", + "S\u030co\u0302'a\u0304", + "Juden" + ], + "md5": "5eb190a3436cd34425009b4fbf057c70" + }, + { + "authorized_access_point": "Geschlechtsunterschied", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4071781-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04071781X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4071781-1" + } + ], + "identifier": "http://d-nb.info/gnd/4071781-1", + "closeMatch": [ + { + "authorized_access_point": "Sexual dimorphism (Plants)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133881475" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85120727" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85120727" + } + ] + }, + { + "authorized_access_point": "Sex differences", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134040792" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85120580" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85120580" + } + ] + }, + { + "authorized_access_point": "Dimorphisme sexuel chez les plantes", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133881475" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13617433" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13617433k" + } + ] + }, + { + "authorized_access_point": "Diffe\u0301rences entre sexes", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134040792" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11976298" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11976298v" + } + ] + }, + { + "authorized_access_point": "Diferencias entre los sexos", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254434844" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX539058" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX539058" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Geschlechterunterschiede", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1067694579" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "30048-3" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/30048-3" + } + ] + }, + { + "authorized_access_point": "geschlechtsspezifische Faktoren", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970553803" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10045237" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10045237" + } + ] + } + ], + "pid": "04071781X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Dimorphismus" + } + ], + "related": [ + { + "authorized_access_point": "Geschlechtsmerkmal" + }, + { + "authorized_access_point": "Geschlechterrolle" + } + ], + "variant_access_point": [ + "Geschlechterdifferenz", + "Geschlechtsdimorphismus", + "Geschlechtsspezifisch ...", + "Geschlechtsspezifische Differenz", + "Sexualdimorphismus", + "Geschlechterunterschied", + "Geschlecht", + "Geschlechtsunterschiede", + "Gender Diversity", + "Geschlechtsspezifische Diversita\u0308t" + ], + "md5": "f0116fde16886d213c99c21c4a2e7974" + }, + { + "authorized_access_point": "Zigeuner", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4067777-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04067777X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4067777-1" + } + ], + "identifier": "http://d-nb.info/gnd/4067777-1", + "closeMatch": [ + { + "authorized_access_point": "Romanies", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134501595" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85058109" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85058109" + } + ] + }, + { + "authorized_access_point": "Tsiganes", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134501595" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11933633" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11933633t" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Sinti und Roma", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970606753" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10062954" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10062954" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Ethnie ohne Territorium. Au\u00dfer d. weibl. Form werden keine weiteren Komposita gebildet, sondern mit dem entsprechenden Sach-SW verknu\u0308pft, z.B. Zigeuner ; Kind; engere Bezeichnungen wie \"Roma \", \"Sinti\" o.a. sollten immer vorrangig verwendet werden, teilweise aber auch als Selbstbezeichnung gewu\u0308nscht." + ] + } + ], + "pid": "04067777X", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Zigeunerin" + } + ], + "md5": "157730267475281c2f00e04646f86901" + }, + { + "authorized_access_point": "Wirtschaftswissenschaftler", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4066533-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04066533X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4066533-1" + } + ], + "identifier": "http://d-nb.info/gnd/4066533-1", + "closeMatch": [ + { + "authorized_access_point": "Economists", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133925197" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85040878" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85040878" + } + ] + }, + { + "authorized_access_point": "E\u0301conomistes", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133925197" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11931937" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11931937j" + } + ] + }, + { + "authorized_access_point": "Economistas", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254503978" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX527085" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX527085" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "O\u0308konomen", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)967043212" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "14017-6" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/14017-6" + } + ] + }, + { + "authorized_access_point": "Wirtschaftswissenschaftler", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970605226" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10053624" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10053624" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Als Homonymenzusatz bei Personenschlagwo\u0308rtern zugelassen." + ] + } + ], + "pid": "04066533X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Wissenschaftler" + } + ], + "related": [ + { + "authorized_access_point": "Wirtschaftswissenschaftlerin" + } + ], + "variant_access_point": [ + "O\u0308konom (Wirtschaft)" + ], + "md5": "0b27e013ba49e0d0f19c229293d702c3" + }, + { + "authorized_access_point": "Reisegewerbe", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4064531-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040645312" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4064531-9" + } + ], + "identifier": "http://d-nb.info/gnd/4064531-9", + "note": [ + { + "noteType": "general", + "label": [ + "Benutzt fu\u0308r sehr weite Sachverhalte, umfasst z.B. auch Schaustellergewerbe etc." + ] + } + ], + "pid": "040645312", + "type": "bf:Topic", + "variant_access_point": [ + "Ambulantes Gewerbe", + "Wanderhandel (Reisegewerbe)", + "Wandergewerbe", + "Ambulanter Gewerbebetrieb" + ], + "md5": "0b16c61faf8ffdec5300afcc476177cb" + }, + { + "authorized_access_point": "Verwaltungsakt", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4063321-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040633217" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4063321-4" + } + ], + "identifier": "http://d-nb.info/gnd/4063321-4", + "closeMatch": [ + { + "authorized_access_point": "Administrative acts", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133645879" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85000900" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85000900" + } + ] + }, + { + "authorized_access_point": "Actes administratifs", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133645879" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12649789" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb126497890" + } + ] + }, + { + "authorized_access_point": "Atti amministrativi", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254330216" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "6046" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/6046" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Ein Verwaltungsakt ist jede Verfu\u0308gung, Entscheidung oder andere hoheitliche Ma\u00dfnahme, die eine Beho\u0308rde zur Regelung eines Einzelfalls auf dem Gebiet des o\u0308ffentlichen Rechts trifft und die auf unmittelbare Rechtswirkung nach au\u00dfen gerichtet ist." + ] + } + ], + "pid": "040633217", + "type": "bf:Topic", + "md5": "c8f00598f8b1e74214bc6c08e1bac3d8" + }, + { + "authorized_access_point": "Subsistenzwirtschaft", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4058331-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040583317" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4058331-4" + } + ], + "identifier": "http://d-nb.info/gnd/4058331-4", + "closeMatch": [ + { + "authorized_access_point": "Subsistence economy", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134074778" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85129537" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85129537" + } + ] + }, + { + "authorized_access_point": "E\u0301conomie de subsistance", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134074778" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11982331" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119823313" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "subsistence farming", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1256261602" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "7485" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_7485" + } + ] + }, + { + "authorized_access_point": "Subsistenzwirtschaft", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)966989805" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "10511-4" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/10511-4" + } + ] + }, + { + "authorized_access_point": "Subsistenzwirtschaft", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970595840" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10059703" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10059703" + } + ] + } + ], + "pid": "040583317", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Low-Input Landwirtschaft" + }, + { + "authorized_access_point": "Extraktivismus" + } + ], + "variant_access_point": [ + "Selbstversorgerwirtschaft" + ], + "md5": "6ba17a9a904c17f8a100df0113d654a8" + }, + { + "authorized_access_point": "Seliger", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4054456-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040544567" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4054456-4" + } + ], + "identifier": "http://d-nb.info/gnd/4054456-4", + "closeMatch": [ + { + "authorized_access_point": "Blessed", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134228295" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85014845" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85014845" + } + ] + }, + { + "authorized_access_point": "Bienheureux", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134228295" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12243954" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12243954r" + } + ] + }, + { + "authorized_access_point": "Beati", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254345876" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "18676" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/18676" + } + ] + }, + { + "authorized_access_point": "Beatos", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254485996" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX4596790" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX4596790" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Benutzt fu\u0308r ma\u0308nnliche selige Personen und die Personengruppe im Plural; als instantieller Oberbegriff bei seligen Personen obligatorisch; nicht zugelassen als identifizierender Zusatz bei Personen gem. EH-P-10 zur GND nach RDA" + ] + } + ], + "pid": "040544567", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Selige" + } + ], + "md5": "b1431ab5bfcb04eb071184e5fb4dcd87" + }, + { + "authorized_access_point": "Scha\u0308del", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4051938-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040519384" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4051938-7" + } + ], + "identifier": "http://d-nb.info/gnd/4051938-7", + "closeMatch": [ + { + "authorized_access_point": "Skull", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133956351" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85123237" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85123237" + } + ] + }, + { + "authorized_access_point": "Cra\u0302ne", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133956351" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11944099" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11944099j" + } + ] + }, + { + "authorized_access_point": "Cranio", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254328386" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "5120" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/5120" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Skull", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1282201786" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D012886" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D012886" + } + ] + } + ], + "pid": "040519384", + "type": "bf:Topic", + "variant_access_point": [ + "Cranium", + "Kranium", + "Scha\u0308delskelett" + ], + "md5": "f6744a8eebb5f322077ec95a21d0cf8f" + }, + { + "authorized_access_point": "Sammelbewertung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4051492-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040514927" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4051492-4" + } + ], + "identifier": "http://d-nb.info/gnd/4051492-4", + "exactMatch": [ + { + "authorized_access_point": "Lagerbuchfu\u0308hrung", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)96695016X" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "19091-4" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/19091-4" + } + ] + } + ], + "pid": "040514927", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bewertung" + } + ], + "variant_access_point": [ + "Pauschalbewertung", + "Gesamtbewertung", + "Durchschnittsbewertung" + ], + "md5": "b968060a12b54949efebf90bd813573c" + }, + { + "authorized_access_point": "Sa\u0308ure", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4051266-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040512665" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4051266-6" + } + ], + "identifier": "http://d-nb.info/gnd/4051266-6", + "closeMatch": [ + { + "authorized_access_point": "Acids", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113369540X" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85000532" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85000532" + } + ] + }, + { + "authorized_access_point": "Acides", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)113369540X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11982607" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119826072" + } + ] + }, + { + "authorized_access_point": "Acidi", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254362630" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "31196" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/31196" + } + ] + }, + { + "authorized_access_point": "A\u0301cidos", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254482210" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX534321" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX534321" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Acids", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336148500" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D000143" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D000143" + } + ] + } + ], + "pid": "040512665", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Lewis-Sa\u0308ure" + } + ], + "variant_access_point": [ + "Sa\u0308uren" + ], + "md5": "51723b4334bda4afaf20cde583fc2877" + }, + { + "authorized_access_point": "Sa\u0308kularisierung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4051238-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04051238X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4051238-1" + } + ], + "identifier": "http://d-nb.info/gnd/4051238-1", + "closeMatch": [ + { + "authorized_access_point": "Secularization (Theology)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133648002" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85119462" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85119462" + } + ] + }, + { + "authorized_access_point": "Se\u0301cularisation (the\u0301ologie)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133648002" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11951712" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119517122" + } + ] + }, + { + "authorized_access_point": "De\u0301christianisation", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133980104" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11952495" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119524950" + } + ] + }, + { + "authorized_access_point": "Secularizacio\u0301n (Teologi\u0301a)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254481508" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX4576594" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX4576594" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Sa\u0308kularisierung", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970596367" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10057048" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10057048" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Verwendet im geistesgeschichtl. Sinn", + "Fu\u0308r die Aufhebung geistlichen Besitzes verwende SW Sa\u0308kularisation." + ] + } + ], + "pid": "04051238X", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Sa\u0308kularismus" + }, + { + "authorized_access_point": "Sa\u0308kularisation" + } + ], + "variant_access_point": [ + "Entchristlichung", + "Entkirchlichung", + "Verweltlichung" + ], + "md5": "1d0e23253195848267e6aedfe822c47a" + }, + { + "authorized_access_point": "Region", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4049029-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040490297" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4049029-4" + } + ], + "identifier": "http://d-nb.info/gnd/4049029-4", + "exactMatch": [ + { + "authorized_access_point": "Region", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)966940318" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "11857-5" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/11857-5" + } + ] + }, + { + "authorized_access_point": "Region", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970585063" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10044625" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10044625" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Als Homonymenzusatz nach Geographika zugelassen; das Blattgebiet eines Kartenwerks wird durch ein Geographikum mit dem Zusatz wiedergegeben; fu\u0308r die Verwaltungseinheit (Verwaltungsregion), soweit kein spezieller Homonymenzusatz mo\u0308glich; zu im Sinne von Umgebung vgl. \u00a7 204a. Fu\u0308r das Gebiet um eine Insel verknu\u0308pfe diese mit einem geeigneten Sach-SW wie SW Ku\u0308stenmeer bzw. SW Ku\u0308stengebiet (bei Meeresinseln), SW Litoral o. a\u0308" + ] + } + ], + "pid": "040490297", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Umland" + } + ], + "md5": "ea5110279fe064c7d67099efa02ade49" + }, + { + "authorized_access_point": "Physikalische Therapie", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4045960-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040459608" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4045960-3" + } + ], + "identifier": "http://d-nb.info/gnd/4045960-3", + "closeMatch": [ + { + "authorized_access_point": "Physical therapy", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133995462" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85101568" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85101568" + } + ] + }, + { + "authorized_access_point": "Physiothe\u0301rapie", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133995462" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11959340" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119593404" + } + ] + }, + { + "authorized_access_point": "Fisioterapia", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254318658" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "1055" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/1055" + } + ] + }, + { + "authorized_access_point": "Fisioterapia", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254473203" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX526722" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX526722" + } + ] + } + ], + "pid": "040459608", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Physikalische Medizin" + } + ], + "variant_access_point": [ + "Physiotherapie" + ], + "md5": "3a9884c0cdf3872fd5adf5522bb8bfaf" + }, + { + "authorized_access_point": "Peptide", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4045125-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040451259" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4045125-2" + } + ], + "identifier": "http://d-nb.info/gnd/4045125-2", + "closeMatch": [ + { + "authorized_access_point": "Peptides", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133631479" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85099692" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85099692" + } + ] + }, + { + "authorized_access_point": "Peptides", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133631479" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11940224" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119402247" + } + ] + }, + { + "authorized_access_point": "Peptidi", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254323341" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "2724" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/2724" + } + ] + }, + { + "authorized_access_point": "Pe\u0301ptidos", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254471782" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX533740" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX533740" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Peptides", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336147156" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D010455" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D010455" + } + ] + } + ], + "pid": "040451259", + "type": "bf:Topic", + "md5": "00077bb5b9c714376771e2db7949e854" + }, + { + "authorized_access_point": "Organische Verbindungen", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4043816-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040438163" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4043816-8" + } + ], + "identifier": "http://d-nb.info/gnd/4043816-8", + "closeMatch": [ + { + "authorized_access_point": "Organic compounds", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133638392" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85095499" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85095499" + } + ] + }, + { + "authorized_access_point": "Compose\u0301s organiques", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133638392" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11944403" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11944403s" + } + ] + }, + { + "authorized_access_point": "Composti organici", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)125431511X" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "53" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/53" + } + ] + }, + { + "authorized_access_point": "Compuestos orga\u0301nicos", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254469605" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX532834" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX532834" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Organic Chemicals", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336147903" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D009930" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D009930" + } + ] + } + ], + "pid": "040438163", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Chemische Verbindungen" + } + ], + "variant_access_point": [ + "Organische Verbindung" + ], + "md5": "a09ba0a11276ed88b489896c36f6c7ac" + }, + { + "authorized_access_point": "O\u0308konomische Theorie der Politik", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4043214-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040432149" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4043214-2" + } + ], + "identifier": "http://d-nb.info/gnd/4043214-2", + "closeMatch": [ + { + "authorized_access_point": "Political science - Economic aspects", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133662560" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh2010107054" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2010107054" + } + ] + }, + { + "authorized_access_point": "E\u0301conomie politique et politique", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133662560" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11963634" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11963634s" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Neue politische O\u0308konomie", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)966926625" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "10975-4" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/10975-4" + } + ] + } + ], + "pid": "040432149", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Politische O\u0308konomie" + } + ], + "variant_access_point": [ + "Neue Politische O\u0308konomie", + "Politik" + ], + "md5": "82242816632cf8bf3bbac75c17770279" + }, + { + "authorized_access_point": "Nervenzelle", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4041649-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040416496" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4041649-5" + } + ], + "identifier": "http://d-nb.info/gnd/4041649-5", + "closeMatch": [ + { + "authorized_access_point": "Neurons", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133631606" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85091153" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85091153" + } + ] + }, + { + "authorized_access_point": "Neurones", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133631606" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11940272" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119402723" + } + ] + }, + { + "authorized_access_point": "Neuroni", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254326529" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "4023" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/4023" + } + ] + }, + { + "authorized_access_point": "Neuronas", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254466584" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX531517" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX531517" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Neurons", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336588594" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D009474" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D009474" + } + ] + } + ], + "pid": "040416496", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zelle" + } + ], + "related": [ + { + "authorized_access_point": "Paraneuron" + } + ], + "variant_access_point": [ + "Ganglienzelle", + "Neurozyt", + "Neuron" + ], + "md5": "f1e2bab3905cc25bd1ab1c38c33824fd" + }, + { + "authorized_access_point": "Multiple Sklerose", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4040693-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040406938" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4040693-3" + } + ], + "identifier": "http://d-nb.info/gnd/4040693-3", + "closeMatch": [ + { + "authorized_access_point": "Multiple sclerosis", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133629555" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85088374" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85088374" + } + ] + }, + { + "authorized_access_point": "Scle\u0301rose en plaques", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133629555" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11938408" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119384088" + } + ] + }, + { + "authorized_access_point": "Ence\u0301phalomye\u0301lite aigue\u0308 dissemine\u0301e", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133799876" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12447406" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12447406t" + } + ] + }, + { + "authorized_access_point": "Sclerosi multipla", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254355677" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "25174" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/25174" + } + ] + }, + { + "authorized_access_point": "Esclerosis mu\u0301ltiple", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254464468" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX528904" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX528904" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Multiple Sclerosis", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1241613591" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D009103" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D009103" + } + ] + }, + { + "authorized_access_point": "Multiple Sklerose", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)97057424X" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10049932" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10049932" + } + ] + } + ], + "pid": "040406938", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Encephalomyelitis" + }, + { + "authorized_access_point": "Entmarkungskrankheit" + } + ], + "related": [ + { + "authorized_access_point": "Multiple-Sklerose-Kranker" + }, + { + "authorized_access_point": "Weibliche Multiple-Sklerose-Kranke" + } + ], + "variant_access_point": [ + "Encephalomyelitis disseminata" + ], + "md5": "a4c18c3b9fd851e6fc4b6c620a7d8f73" + }, + { + "authorized_access_point": "Moto-Cross", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4040368-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040403688" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4040368-3" + } + ], + "identifier": "http://d-nb.info/gnd/4040368-3", + "closeMatch": [ + { + "authorized_access_point": "Motocross", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134008813" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85087573" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85087573" + } + ] + }, + { + "authorized_access_point": "Motocross", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134008813" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11965366" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119653662" + } + ] + }, + { + "authorized_access_point": "Motocross", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254464212" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX527735" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX527735" + } + ] + } + ], + "pid": "040403688", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motorradsport" + } + ], + "md5": "555a5bc8a856ac839fd4a7128613602e" + }, + { + "authorized_access_point": "Metallorganische Verbindungen", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4038906-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040389065" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4038906-6" + } + ], + "identifier": "http://d-nb.info/gnd/4038906-6", + "closeMatch": [ + { + "authorized_access_point": "Organometallic compounds", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133724973" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85095561" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85095561" + } + ] + }, + { + "authorized_access_point": "Compose\u0301s organome\u0301talliques", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133724973" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12128919" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12128919v" + } + ] + }, + { + "authorized_access_point": "Compuestos organometa\u0301licos", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1299901581" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX528416" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX528416" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Organometallic Compounds", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336147954" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D009942" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D009942" + } + ] + } + ], + "pid": "040389065", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Chemische Verbindungen" + } + ], + "variant_access_point": [ + "Metallorganyle", + "Organische Metallverbindungen", + "Organometallverbindungen", + "Metallierte Verbindungen" + ], + "md5": "37e2763c67cb05e39d342fabcf4c235b" + }, + { + "authorized_access_point": "Kulturkampf", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4033568-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040335682" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4033568-9" + } + ], + "identifier": "http://d-nb.info/gnd/4033568-9", + "closeMatch": [ + { + "authorized_access_point": "Kulturkampf", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133964583" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85073404" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85073404" + } + ] + }, + { + "authorized_access_point": "Kulturkampf", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133964583" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11947326" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11947326w" + } + ] + }, + { + "authorized_access_point": "Kulturkampf", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254453180" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX5526666" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX5526666" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Kulturkampf", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970567138" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10050254" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10050254" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Benutzt fu\u0308r Auseinandersetzungen zwischen Kirche u. Staat im weiteren Sinne, u. zwar in Deutschland - auch nach Bismarck - sowie in anderen La\u0308ndern; verknu\u0308pfe mit Ort u. Zeit; fu\u0308r den nationalsozialistischen Kirchenkampf benutze SW Kirchenkampf <1933-1945>" + ] + } + ], + "pid": "040335682", + "type": "bf:Topic", + "variant_access_point": [ + "Kirchenkampf (Kulturkampf)" + ], + "md5": "91870c503746c1f7f39f4bee288ad054" + }, + { + "authorized_access_point": "Krankenschwester", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4032826-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040328260" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4032826-0" + } + ], + "identifier": "http://d-nb.info/gnd/4032826-0", + "closeMatch": [ + { + "authorized_access_point": "Nurses", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133947042" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85093349" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85093349" + } + ] + }, + { + "authorized_access_point": "Infirmie\u0300res", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133947042" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11939194" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119391943" + } + ] + }, + { + "authorized_access_point": "Nurses", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)133465350X" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D009726" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D009726" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Krankenschwester", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)97056628X" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10045518" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10045518" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Ab dem 1.1.2004 neue offizielle Berufsbezeichnung in Dtld: \"Gesundheits- und Krankenpflegerin\". Vorher ausgebildete Pflegekra\u0308fte ko\u0308nnen wahlweise die alte oder die neue Berufsbezeichnung fu\u0308hren.", + "Als Homonymenzusatz bei Personenschlagwo\u0308rtern zugelassen." + ] + } + ], + "pid": "040328260", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Pflegepersonal" + } + ], + "related": [ + { + "authorized_access_point": "Krankenpfleger" + } + ], + "variant_access_point": [ + "Gesundheits- und Krankenpflegerin", + "Krankenpflegerin", + "Pflegefachfrau", + "Nurse" + ], + "md5": "e3435f54ed14932801e102defae698e0" + }, + { + "authorized_access_point": "Komponist", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4032009-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04032009X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4032009-1" + } + ], + "identifier": "http://d-nb.info/gnd/4032009-1", + "closeMatch": [ + { + "authorized_access_point": "Composers", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133614000" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85029386" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85029386" + } + ] + }, + { + "authorized_access_point": "Compositeurs", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133614000" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11931721" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11931721m" + } + ] + }, + { + "authorized_access_point": "Compositori", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254315225" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "72" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/72" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Komponist", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970564929" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10049435" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10049435" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Mit einzelnen Richtungen u. Gattungen werden keine Komposita gebildet. Als Homonymenzusatz bei Personenschlagwo\u0308rtern zugelassen." + ] + } + ], + "pid": "04032009X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Musiker" + } + ], + "related": [ + { + "authorized_access_point": "Komponistin" + } + ], + "md5": "8fe7d5233296218c9bc8bb2f2dc6c621" + }, + { + "authorized_access_point": "Hochschullehrer", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4025243-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040252434" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4025243-7" + } + ], + "identifier": "http://d-nb.info/gnd/4025243-7", + "exactMatch": [ + { + "authorized_access_point": "College teachers", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)129155713X" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85028378" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85028378" + } + ] + }, + { + "authorized_access_point": "Professeurs (enseignement supe\u0301rieur)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)129155713X" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11947431" + }, + { + "type": "uri", + "value": "https://ark.bnf.fr/ark:/12148/cb11947431r" + } + ] + }, + { + "authorized_access_point": "Hochschullehrer", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)966775546" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "11372-1" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/11372-1" + } + ] + }, + { + "authorized_access_point": "Hochschullehrer", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970557574" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10041291" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10041291" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?oldid=243780470" + ] + } + ], + "pid": "040252434", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Hochschullehrerin" + } + ], + "variant_access_point": [ + "Professor (Hochschule)", + "Lehrko\u0308rper", + "Lehrpersonal", + "Universita\u0308tsprofessor", + "Hochschulprofessor" + ], + "md5": "a4adba9469760245d11b0acb0c5f9f7d" + }, + { + "authorized_access_point": "Hexe", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4024799-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040247996" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4024799-5" + } + ], + "identifier": "http://d-nb.info/gnd/4024799-5", + "closeMatch": [ + { + "authorized_access_point": "Witches", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134220030" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh92005718" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh92005718" + } + ] + }, + { + "authorized_access_point": "Sorcie\u0300res", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134220030" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12226069" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12226069m" + } + ] + }, + { + "authorized_access_point": "Brujas", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254439862" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX528134" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX528134" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Hexe", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)97055723X" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10046607" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10046607" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Als Berufsbezeichnung in Personendatensa\u0308tzen zugelassen; als Berufsbezeichnung in Personendatensa\u0308tzen nur fu\u0308r Personen zu verwenden, die sich als praktizierende Hexen verstehen und diesen Begriff als Selbstbezeichnung verwenden; fu\u0308r die Opfer von Hexenprozessen verwende SW Weibliche Angeklagte in Kombination mit SW Hexenprozess, beide jeweils mit dem Code rela" + ] + } + ], + "pid": "040247996", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Hexerei" + }, + { + "authorized_access_point": "Magier" + }, + { + "authorized_access_point": "Hexenglaube" + } + ], + "variant_access_point": [ + "Hexenwesen", + "Hexen" + ], + "md5": "529093c74ff6770c81aaf0782e9e70f4" + }, + { + "authorized_access_point": "Heiliger", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4024055-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04024055X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4024055-1" + } + ], + "identifier": "http://d-nb.info/gnd/4024055-1", + "closeMatch": [ + { + "authorized_access_point": "Saints", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134039107" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85116629" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85116629" + } + ] + }, + { + "authorized_access_point": "Saints", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134039107" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11975976" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119759767" + } + ] + }, + { + "authorized_access_point": "Santi", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254325468" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "3549" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/3549" + } + ] + }, + { + "authorized_access_point": "Santos cristianos", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254439153" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX526019" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX526019" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Benutzt fu\u0308r ma\u0308nnliche heilige Personen und die Personengruppe im Plural; als identifizierender Zusatz und als instantieller Oberbegriff bei ma\u0308nnlichen heiligen Personen obligatorisch gem. EH-P-10 zur GND nach RDA" + ] + } + ], + "pid": "04024055X", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Namenspatron" + }, + { + "authorized_access_point": "Heilige" + } + ], + "variant_access_point": [ + "Nothelfer" + ], + "md5": "90dc6924b5ba741726af6b601cba9be3" + }, + { + "authorized_access_point": "Geschlechterverha\u0308ltnis", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4020548-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040205487" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4020548-4" + } + ], + "identifier": "http://d-nb.info/gnd/4020548-4", + "closeMatch": [ + { + "authorized_access_point": "Man-woman relationships", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133940080" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh92001504" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh92001504" + } + ] + }, + { + "authorized_access_point": "Relations hommes-femmes", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133940080" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11936576" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11936576j" + } + ] + }, + { + "authorized_access_point": "Relaciones de pareja", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254434763" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX541405" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX541405" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Geschlechterverha\u0308ltnis", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970553765" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10064589" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10064589" + } + ] + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia unter Gender Studies - https://de.wikipedia.org/w/index.php?oldid=244279195" + ] + }, + { + "noteType": "general", + "label": [ + "Allg. Bezeichnung fu\u0308r die strukturell verankerten Beziehungen zwischen den Geschlechtern (im Hinblick auf Zusta\u0308ndigkeiten, Rechte und Pflichten, Rollenbesetzungen und Geschlechtsidentita\u0308ten usw.)", + "Kombiniere z.B. mit Region, Untersuchungsaspekt und/oder Personengruppen. Fu\u0308r Geschlechterverha\u0308ltnis im Sinne des rein zahlenma\u0308\u00dfigen Verha\u0308ltnisses innerhalb einer Population (Geschlechterverteilung) nutze SW \"Geschlechterverha\u0308ltnis \"" + ] + } + ], + "pid": "040205487", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Heteronormativita\u0308t" + }, + { + "authorized_access_point": "Gender" + }, + { + "authorized_access_point": "Geschlechterverha\u0308ltnis (Demographie)" + } + ], + "variant_access_point": [ + "Geschlechterbeziehung", + "Geschlechterverha\u0308ltnisse", + "Geschlechterbeziehungen", + "Gender relationship" + ], + "md5": "127640054c442d8c51fe5952a0388c32" + }, + { + "authorized_access_point": "Funksto\u0308rung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4018907-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040189074" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4018907-7" + } + ], + "identifier": "http://d-nb.info/gnd/4018907-7", + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Elektromagnetische_St%C3%B6rung&oldid=191732329" + ] + }, + { + "noteType": "general", + "label": [ + "Elektromagnetische Sto\u0308rung (auch Funksto\u0308rung) ist die Auswirkung einer durch Aussendung, Ausstrahlung oder Induktion (oder durch die Kombination von Aussendungen, Ausstrahlungen oder Induktionen) entstehende unerwu\u0308nschte Energie auf den Empfang in einem Funksystem; diese Auswirkung macht sich durch Verschlechterung der U\u0308bertragungsgu\u0308te, durch Entstellung oder Verlust von Nachrichteninhalten bemerkbar, welche bei Fehlen dieser unerwu\u0308nschten Energie verfu\u0308gbar wa\u0308re." + ] + } + ], + "pid": "040189074", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Sto\u0308rstrahlung" + }, + { + "authorized_access_point": "Elektromagnetische Vertra\u0308glichkeit" + } + ], + "variant_access_point": [ + "Elektromagnetische Sto\u0308rung", + "electromagnetic interference" + ], + "md5": "b100160a10bdfe7bb2945d4b8f8a52ef" + }, + { + "authorized_access_point": "Dritter", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4013019-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040130193" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4013019-8" + } + ], + "identifier": "http://d-nb.info/gnd/4013019-8", + "note": [ + { + "noteType": "general", + "label": [ + "Ohne HZ Motiv", + "Neben dem Recht auch als Allgemeinbegriff benutzt." + ] + } + ], + "pid": "040130193", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "variant_access_point": [ + "Drittperson", + "Der Dritte", + "Drittbeteiligter" + ], + "md5": "4ebd9d51b28f374366d6f4389f44f291" + }, + { + "authorized_access_point": "Bundesstaat", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4009006-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04009006X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4009006-1" + } + ], + "identifier": "http://d-nb.info/gnd/4009006-1", + "closeMatch": [ + { + "authorized_access_point": "Federal government", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134498322" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85047611" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85047611" + } + ] + }, + { + "authorized_access_point": "Gouvernement fe\u0301de\u0301ral", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134498322" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13318437" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13318437p" + } + ] + }, + { + "authorized_access_point": "Governo federale", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254368582" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "35834" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/35834" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Bund", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970540604" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10039967" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10039967" + } + ] + }, + { + "authorized_access_point": "Bundesstaat", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970541031" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10040040" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10040040" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Als Sachbegriff nur benutzt fu\u0308r Zentralstaat und die Bundesebene im Bundesstaat. Fu\u0308r die Gliedstaaten benutze als Sachbegriff die jeweils u\u0308bliche Bezeichnung, z.B. SW Bundesstaaten fu\u0308r USA, Bundesland fu\u0308r O\u0308sterreich, La\u0308nder fu\u0308r Deutschland, Provinz fu\u0308r Kanada, Kanton fu\u0308r die Schweiz usw. und Staat im Allgemeinen. Als instanzieller Oberbegriff bei der Erfassung von Bundesstaat als Gliedstaat soll Staat (gnd/4056618-3) verwendet werden." + ] + } + ], + "pid": "04009006X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Staatenverbindung" + } + ], + "related": [ + { + "authorized_access_point": "Fo\u0308deralismus" + } + ], + "variant_access_point": [ + "Zentralstaat", + "Bund (Bundesstaat)", + "Bund" + ], + "md5": "c4fe81f98bbbe8971e6c60b8b387f177" + }, + { + "authorized_access_point": "Brustkrebs", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4008528-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040085287" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4008528-4" + } + ], + "identifier": "http://d-nb.info/gnd/4008528-4", + "closeMatch": [ + { + "authorized_access_point": "Breast - Cancer", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133619894" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85016679" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85016679" + } + ] + }, + { + "authorized_access_point": "Sein - Cancer", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133619894" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11933256" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11933256c" + } + ] + }, + { + "authorized_access_point": "Mamas - Ca\u0301ncer", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254414827" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX575163" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX575163" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Breast Neoplasms", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)124159466X" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D001943" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D001943" + } + ] + } + ], + "pid": "040085287", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Krebs (Medizin)" + }, + { + "authorized_access_point": "Brustkrankheit" + } + ], + "related": [ + { + "authorized_access_point": "Gen BRCA 2" + }, + { + "authorized_access_point": "Gen BRCA 1" + } + ], + "variant_access_point": [ + "Brustdru\u0308senkrebs", + "Carcinoma mammae", + "Mammacarcinom", + "Mammakarzinom" + ], + "md5": "330eec98fd5b5cc06e4b1b249fb80146" + }, + { + "authorized_access_point": "Mamma", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4008524-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040085244" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4008524-7" + } + ], + "identifier": "http://d-nb.info/gnd/4008524-7", + "closeMatch": [ + { + "authorized_access_point": "Breast", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134518315" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85016677" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85016677" + } + ] + }, + { + "authorized_access_point": "Sein", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134518315" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11938328" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11938328m" + } + ] + }, + { + "authorized_access_point": "Mammelle", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254337466" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "12086" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/12086" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Benutzt fu\u0308r physiolog. u. anatomische Sachverhalte, fu\u0308r kulturgeschichtliche sowie erotische u. sonstige Symbolik verwende das SW Busen." + ] + } + ], + "pid": "040085244", + "type": "bf:Topic", + "variant_access_point": [ + "Brust", + "Busen (Anatomie)", + "Weibliche Brust" + ], + "md5": "b76f6e91e690ce5527df010d42a0f928" + }, + { + "authorized_access_point": "Borverbindungen", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4007812-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040078124" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4007812-7" + } + ], + "identifier": "http://d-nb.info/gnd/4007812-7", + "closeMatch": [ + { + "authorized_access_point": "Boron compounds", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134253192" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh89002772" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh89002772" + } + ] + }, + { + "authorized_access_point": "Bore - Compose\u0301s", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134253192" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12274183" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb122741830" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Boron Compounds", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)133614856X" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D001896" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D001896" + } + ] + } + ], + "pid": "040078124", + "type": "bf:Topic", + "md5": "d75b8b3561f76fde3a7eeee1f1a49cc3" + }, + { + "authorized_access_point": "Biologisch-dynamische Wirtschaftsweise", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4006856-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040068560" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4006856-0" + } + ], + "identifier": "http://d-nb.info/gnd/4006856-0", + "closeMatch": [ + { + "authorized_access_point": "Organic farming", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134597304" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85095504" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85095504" + } + ] + }, + { + "authorized_access_point": "Agriculture biologique", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134597304" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11930852" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11930852x" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "biodynamic agriculture", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1256197114" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "15912" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_15912" + } + ] + } + ], + "pid": "040068560", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Biologische Landwirtschaft" + } + ], + "variant_access_point": [ + "Biologisch-dynamischer Landbau", + "Biologisch-dynamische Landwirtschaft", + "Biodynamische Landwirtschaft", + "Biodynamie", + "Biodynamischer Anbau", + "Dynamisch-biologische Landwirtschaft", + "Landwirtschaft" + ], + "md5": "5b2971317a1b6ef51c997d7ff59a740a" + }, + { + "authorized_access_point": "Betriebsstilllegung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4006212-0" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040062120" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4006212-0" + } + ], + "identifier": "http://d-nb.info/gnd/4006212-0", + "closeMatch": [ + { + "authorized_access_point": "Plant shutdowns", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1335075461" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85102810f" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85102810" + } + ] + }, + { + "authorized_access_point": "Entreprises - Disparition", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1335075461" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12069852" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb120698529" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Betriebsstillegung", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970538766" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10038913" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10038913" + } + ] + } + ], + "pid": "040062120", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Stilllegung" + } + ], + "related": [ + { + "authorized_access_point": "Betriebsaufgabe" + }, + { + "authorized_access_point": "Betriebsschlie\u00dfung" + }, + { + "authorized_access_point": "Betriebsunterbrechung" + } + ], + "variant_access_point": [ + "Betrieb", + "Betriebsstillegung" + ], + "md5": "3860fc97f38f421005cda46e8b7bef1c" + }, + { + "authorized_access_point": "Ausbeutung", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4003677-7" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040036774" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4003677-7" + } + ], + "identifier": "http://d-nb.info/gnd/4003677-7", + "closeMatch": [ + { + "authorized_access_point": "Exploitation", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133864414" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh96000331" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh96000331" + } + ] + }, + { + "authorized_access_point": "Exploitation de l'homme par l'homme", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133864414" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13536692" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13536692n" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Ausbeutung", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970535007" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10037031" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10037031" + } + ] + }, + { + "authorized_access_point": "Ausbeutung", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)966854969" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "30410-5" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/30410-5" + } + ] + } + ], + "pid": "040036774", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Extraktivismus" + } + ], + "md5": "a5f6bf17937737867d4b7f34360e7287" + }, + { + "authorized_access_point": "Arsen", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4003041-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040030415" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4003041-6" + } + ], + "identifier": "http://d-nb.info/gnd/4003041-6", + "closeMatch": [ + { + "authorized_access_point": "Arsenic", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134516541" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85007449" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85007449" + } + ] + }, + { + "authorized_access_point": "Arsenic", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134516541" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11971740" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11971740q" + } + ] + }, + { + "authorized_access_point": "Arsenico", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254356185" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "25597" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/25597" + } + ] + }, + { + "authorized_access_point": "Arse\u0301nico", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254406638" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX535902" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX535902" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "arsenic", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1256192597" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "629" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_629" + } + ] + } + ], + "pid": "040030415", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Stickstoffgruppe" + } + ], + "md5": "48a97bbda9108dd578b3a228623ffee6" + }, + { + "authorized_access_point": "Anorganische Verbindungen", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4002147-6" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040021475" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4002147-6" + } + ], + "identifier": "http://d-nb.info/gnd/4002147-6", + "closeMatch": [ + { + "authorized_access_point": "Inorganic compounds", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134045263" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh86005967" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh86005967" + } + ] + }, + { + "authorized_access_point": "Compose\u0301s inorganiques", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134045263" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11977078" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11977078x" + } + ] + }, + { + "authorized_access_point": "Composti inorganici", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254317880" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "789" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/789" + } + ] + }, + { + "authorized_access_point": "Compuestos inorga\u0301nicos", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254404813" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX533227" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX533227" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Inorganic Chemicals", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1336148381" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D007287" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D007287" + } + ] + } + ], + "pid": "040021475", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Chemische Verbindungen" + }, + { + "authorized_access_point": "Anorganischer Stoff" + } + ], + "variant_access_point": [ + "Anorganische Verbindung" + ], + "md5": "c1c5750f350fafcfe9fa389c089b4355" + }, + { + "authorized_access_point": "Anorganische Chemie", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/4002145-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040021459" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4002145-2" + } + ], + "identifier": "http://d-nb.info/gnd/4002145-2", + "closeMatch": [ + { + "authorized_access_point": "Chemistry, Inorganic", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133687520" + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85023017" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85023017" + } + ] + }, + { + "authorized_access_point": "Chimie inorganique", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133687520" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11978675" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11978675s" + } + ] + }, + { + "authorized_access_point": "Chimica inorganica", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254352333" + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "22797" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/22797" + } + ] + }, + { + "authorized_access_point": "Qui\u0301mica inorga\u0301nica", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254404805" + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX525776" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX525776" + } + ] + } + ], + "exactMatch": [ + { + "authorized_access_point": "Chemistry, Inorganic", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1328566218" + }, + { + "source": "DNLM", + "type": "bf:Nbn", + "value": "D015392" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D015392" + } + ] + } + ], + "pid": "040021459", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Chemie" + } + ], + "md5": "bfd1fd258c144e4645db7b14df8e8097" + } +] \ No newline at end of file diff --git a/data/cognd_deleted.json b/data/cognd_deleted.json new file mode 100644 index 00000000..f229794d --- /dev/null +++ b/data/cognd_deleted.json @@ -0,0 +1,727 @@ +[ + { + "authorized_access_point": "TAG: 150 NOT FOUND", + "deleted": "2024-09-10T15:17:50.177268+00:00", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1327094215" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1327094215" + } + ], + "pid": "1327094215", + "type": "bf:Topic", + "relation_pid": { + "value": "042433517", + "type": "redirect_to" + }, + "md5": "bf8880759c930f162130b6bf68f233de" + }, + { + "authorized_access_point": "TAG: 150 NOT FOUND", + "deleted": "2024-09-10T15:17:50.184261+00:00", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/1286745764" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1286745764" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1286745764" + } + ], + "identifier": "http://d-nb.info/gnd/1286745764", + "note": [ + { + "noteType": "general", + "label": [ + "Der Datensatz wurde gelo\u0308scht" + ] + } + ], + "pid": "1286745764", + "type": "bf:Topic", + "md5": "e290e353812c61c2de216545c51d67af" + }, + { + "authorized_access_point": "TAG: 150 NOT FOUND", + "deleted": "2024-09-10T15:17:50.193849+00:00", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1223685268" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1223685268" + } + ], + "pid": "1223685268", + "type": "bf:Topic", + "relation_pid": { + "value": "1007096462", + "type": "redirect_to" + }, + "md5": "0f956edad4260703d7cddbd6dd55925e" + }, + { + "authorized_access_point": "TAG: 150 NOT FOUND", + "deleted": "2024-09-10T15:17:50.198245+00:00", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1158505841" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1158505841" + } + ], + "pid": "1158505841", + "type": "bf:Topic", + "relation_pid": { + "value": "940125897", + "type": "redirect_to" + }, + "md5": "246ce087cab9c498367884bd5f8cf2f5" + }, + { + "authorized_access_point": "TAG: 150 NOT FOUND", + "deleted": "2024-09-10T15:17:50.275390+00:00", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)947975829" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4415576-1" + } + ], + "pid": "947975829", + "type": "bf:Topic", + "relation_pid": { + "value": "953463176", + "type": "redirect_to" + }, + "md5": "155aff96d51c7e61d372f5f3fd1749a0" + }, + { + "authorized_access_point": "TAG: 150 NOT FOUND", + "deleted": "2024-09-10T15:17:50.282197+00:00", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)944357032" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4375399-1" + } + ], + "pid": "944357032", + "type": "bf:Topic", + "relation_pid": { + "value": "04170553X", + "type": "redirect_to" + }, + "md5": "b8a37024cdafe13011d911269a6369e6" + }, + { + "authorized_access_point": "TAG: 150 NOT FOUND", + "deleted": "2024-09-10T15:17:50.292161+00:00", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7506659-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)130736090" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7506659-2" + } + ], + "identifier": "http://d-nb.info/gnd/7506659-2", + "note": [ + { + "noteType": "general", + "label": [ + "Der Datensatz wurde gelo\u0308scht" + ] + } + ], + "pid": "130736090", + "type": "bf:Topic", + "md5": "c89cd92d01794fe09f0f4fed506b0a24" + }, + { + "authorized_access_point": "TAG: 150 NOT FOUND", + "deleted": "2024-09-10T15:17:50.292277+00:00", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7505564-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)130726133" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7505564-8" + } + ], + "identifier": "http://d-nb.info/gnd/7505564-8", + "note": [ + { + "noteType": "general", + "label": [ + "Der Datensatz wurde gelo\u0308scht" + ] + } + ], + "pid": "130726133", + "type": "bf:Topic", + "md5": "863910cae2e86959e5ebe6618ccee964" + }, + { + "authorized_access_point": "TAG: 150 NOT FOUND", + "deleted": "2024-09-10T15:17:50.293037+00:00", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7503242-9" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)130705012" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7503242-9" + } + ], + "identifier": "http://d-nb.info/gnd/7503242-9", + "note": [ + { + "noteType": "general", + "label": [ + "Der Datensatz wurde gelo\u0308scht" + ] + } + ], + "pid": "130705012", + "type": "bf:Topic", + "md5": "cbdf7146bb0c030b831168ac21f85af8" + }, + { + "authorized_access_point": "TAG: 150 NOT FOUND", + "deleted": "2024-09-10T15:17:50.293679+00:00", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7502007-5" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)130693782" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7502007-5" + } + ], + "identifier": "http://d-nb.info/gnd/7502007-5", + "note": [ + { + "noteType": "general", + "label": [ + "Der Datensatz wurde gelo\u0308scht" + ] + } + ], + "pid": "130693782", + "type": "bf:Topic", + "md5": "c1451b484461448f61256c84bd024234" + }, + { + "authorized_access_point": "TAG: 150 NOT FOUND", + "deleted": "2024-09-10T15:17:50.293778+00:00", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7502006-3" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)130693774" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7502006-3" + } + ], + "identifier": "http://d-nb.info/gnd/7502006-3", + "note": [ + { + "noteType": "general", + "label": [ + "Der Datensatz wurde gelo\u0308scht" + ] + } + ], + "pid": "130693774", + "type": "bf:Topic", + "md5": "395460d59cb4ea653578cda7c4ce0cfa" + }, + { + "authorized_access_point": "TAG: 150 NOT FOUND", + "deleted": "2024-09-10T15:17:50.293874+00:00", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7502005-1" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)130693766" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7502005-1" + } + ], + "identifier": "http://d-nb.info/gnd/7502005-1", + "note": [ + { + "noteType": "general", + "label": [ + "Der Datensatz wurde gelo\u0308scht" + ] + } + ], + "pid": "130693766", + "type": "bf:Topic", + "md5": "84fc30f45dba91952fe9fb43affed68b" + }, + { + "authorized_access_point": "TAG: 150 NOT FOUND", + "deleted": "2024-09-10T15:17:50.293968+00:00", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7502003-8" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)130693758" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7502003-8" + } + ], + "identifier": "http://d-nb.info/gnd/7502003-8", + "note": [ + { + "noteType": "general", + "label": [ + "Der Datensatz wurde gelo\u0308scht" + ] + } + ], + "pid": "130693758", + "type": "bf:Topic", + "md5": "0220934963dccfac74cca80ad30bd34f" + }, + { + "authorized_access_point": "TAG: 150 NOT FOUND", + "deleted": "2024-09-10T15:17:50.294100+00:00", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7502001-4" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)130693731" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7502001-4" + } + ], + "identifier": "http://d-nb.info/gnd/7502001-4", + "note": [ + { + "noteType": "general", + "label": [ + "Der Datensatz wurde gelo\u0308scht" + ] + } + ], + "pid": "130693731", + "type": "bf:Topic", + "md5": "7eed75098db363c1f287fbd487107a49" + }, + { + "authorized_access_point": "TAG: 150 NOT FOUND", + "deleted": "2024-09-10T15:17:50.294198+00:00", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7502000-2" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)130693723" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7502000-2" + } + ], + "identifier": "http://d-nb.info/gnd/7502000-2", + "note": [ + { + "noteType": "general", + "label": [ + "Der Datensatz wurde gelo\u0308scht" + ] + } + ], + "pid": "130693723", + "type": "bf:Topic", + "md5": "4d00cc6b0bdcf153a141497fd8b59b19" + }, + { + "authorized_access_point": "TAG: 150 NOT FOUND", + "deleted": "2024-09-10T15:17:50.304457+00:00", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042902118" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4290211-3" + } + ], + "pid": "042902118", + "type": "bf:Topic", + "relation_pid": { + "value": "041401522", + "type": "redirect_to" + }, + "md5": "52e34a23623b0ac85196782dd06303ee" + }, + { + "authorized_access_point": "TAG: 150 NOT FOUND", + "deleted": "2024-09-10T15:17:50.321109+00:00", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042094925" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4209492-6" + } + ], + "pid": "042094925", + "type": "bf:Topic", + "relation_pid": { + "value": "955038405", + "type": "redirect_to" + }, + "md5": "5b29e90d8816facecdf05ca55f53ff6b" + }, + { + "authorized_access_point": "TAG: 150 NOT FOUND", + "deleted": "2024-09-10T15:17:50.324060+00:00", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041975898" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4197589-3" + } + ], + "pid": "041975898", + "type": "bf:Topic", + "relation_pid": { + "value": "199279101", + "type": "redirect_to" + }, + "md5": "b1e6bcb188696712780053e5e4ab33bb" + }, + { + "authorized_access_point": "TAG: 150 NOT FOUND", + "deleted": "2024-09-10T15:17:50.410536+00:00", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04044726X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4044726-1" + } + ], + "pid": "04044726X", + "type": "bf:Topic", + "relation_pid": { + "value": "043220797", + "type": "redirect_to" + }, + "md5": "63ceac0fcfbeeb4f9ccff9c00a18b0cd" + }, + { + "authorized_access_point": "TAG: 150 NOT FOUND", + "deleted": "2024-09-10T15:17:50.447559+00:00", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1330983238" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1330983238" + } + ], + "pid": "1330983238", + "type": "bf:Topic", + "relation_pid": { + "value": "1331848474", + "type": "redirect_to" + }, + "md5": "e58090df5c6bd543a4d5c5fccd935e1b" + }, + { + "authorized_access_point": "Uab Meto", + "deleted": "2024-09-10T15:17:50.452677+00:00", + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/132383320X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)132383320X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)132383320X" + } + ], + "identifier": "http://d-nb.info/gnd/132383320X", + "note": [ + { + "noteType": "general", + "label": [ + "Eine Sprachgruppe in Ost-Indonesien und Timor-Leste" + ] + } + ], + "pid": "132383320X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ostindonesische Sprachen" + } + ], + "variant_access_point": [ + "Atoni", + "Kupanesisch", + "Meto", + "Orang Gunung", + "Orang Timor", + "Timol", + "Timor", + "Timoresisch", + "Uab Atoni Pah Meto", + "Uab Pah Meto" + ], + "md5": "58207530f7c7f79d146fdde2ad25bff8" + }, + { + "authorized_access_point": "TAG: 150 NOT FOUND", + "deleted": "2024-09-10T15:17:50.480799+00:00", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1148980369" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)1148980369" + } + ], + "pid": "1148980369", + "type": "bf:Topic", + "relation_pid": { + "value": "041516613", + "type": "redirect_to" + }, + "md5": "a6b1b3b0e07390e89fb365823464fde2" + }, + { + "authorized_access_point": "TAG: 150 NOT FOUND", + "deleted": "2024-09-10T15:17:50.519663+00:00", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)972793968" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4803998-6" + } + ], + "pid": "972793968", + "type": "bf:Topic", + "relation_pid": { + "value": "055033946", + "type": "redirect_to" + }, + "md5": "013385ba0b15a58382f8cf67fca4f66d" + }, + { + "authorized_access_point": "TAG: 150 NOT FOUND", + "deleted": "2024-09-10T15:17:50.549531+00:00", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)130696560" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7502313-1" + } + ], + "pid": "130696560", + "type": "bf:Topic", + "relation_pid": { + "value": "042100445", + "type": "redirect_to" + }, + "md5": "86ea32267275042f774570320b321168" + }, + { + "authorized_access_point": "TAG: 150 NOT FOUND", + "deleted": "2024-09-10T15:17:50.549624+00:00", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)130696552" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7502311-8" + } + ], + "pid": "130696552", + "type": "bf:Topic", + "relation_pid": { + "value": "1335327541", + "type": "redirect_to" + }, + "md5": "83aec61ad72937a82002dbb29e3ce7cb" + }, + { + "authorized_access_point": "TAG: 150 NOT FOUND", + "deleted": "2024-09-10T15:17:50.569089+00:00", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041962176" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)4196217-5" + } + ], + "pid": "041962176", + "type": "bf:Topic", + "relation_pid": { + "value": "041613872", + "type": "redirect_to" + }, + "md5": "d50365e0861d70c0be49dda699929aee" + } +] \ No newline at end of file diff --git a/data/cognd_metadata.csv b/data/cognd_metadata.csv new file mode 100644 index 00000000..d20748ee --- /dev/null +++ b/data/cognd_metadata.csv @@ -0,0 +1,2124 @@ +2024-09-10 15:43:41.635184 2024-09-10 15:43:41.635188 2d6fcb46-12c0-4b0a-8b69-31386ebb01bf {"md5": "ec1012f5b9545ce2fa5f0923a1b8d933", "pid": "1334542139", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/w/index.php?title=Arithmetic_combinatorics&oldid=1174356901"], "noteType": "dataSource"}, {"label": ["Mathematisches Forschungsgebiet zwischen Zahlentheorie, Kombinatorik, Ergodentheorie und Harmonischer Analyse"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kombinatorik"}], "related": [{"authorized_access_point": "Arithmetische Operation"}, {"authorized_access_point": "Arithmetische Folge"}], "identifier": "http://d-nb.info/gnd/1334542139", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334542139", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334542139", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334542139", "source": "GND"}], "variant_access_point": ["Arithmetic Combinatorics"], "authorized_access_point": "Arithmetische Kombinatorik"} 1 +2024-09-10 15:43:41.764534 2024-09-10 15:43:41.764538 776016e7-d8a8-468a-a52d-5efd4c335c16 {"md5": "bd59f731dfd7076282389f93730fecf1", "pid": "1334538549", "note": [{"label": ["Kombiniere mit Sprachbezeichnung und Wortart; z.B. SWW Griechisch ; Verb ; oikodomeō"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1334538549", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334538549", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334538549", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334538549", "source": "GND"}], "variant_access_point": ["oikodomein", "οικοδομειν", "οικοδομεω"], "authorized_access_point": "oikodomeō"} 1 +2024-09-10 15:43:41.825664 2024-09-10 15:43:41.825667 3830413d-acb9-4522-8bff-d47757746d0a {"md5": "58a820ceaac45a94be853f0ba1c660fb", "pid": "1334484775", "note": [{"label": ["Wikipedia - https://nl.wikipedia.org/w/index.php?title=Bildts&oldid=67394558"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Holländisch"}], "identifier": "http://d-nb.info/gnd/1334484775", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334484775", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334484775", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334484775", "source": "GND"}], "variant_access_point": ["Bildts (Holländisch)", "Bildtse taal (Holländisch)"], "authorized_access_point": "Mundart Holländisch (Het Bildt)"} 1 +2024-09-10 15:43:41.886396 2024-09-10 15:43:41.886401 9492ee1b-5128-4dc4-b9d1-01eda75b5e19 {"md5": "f86c6435a664d4ef676a8f03bd0c5d2f", "pid": "1334336342", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Diamantoide&oldid=227953008"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Käfigverbindungen"}], "identifier": "http://d-nb.info/gnd/1334336342", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334336342", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334336342", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334336342", "source": "GND"}], "variant_access_point": ["Diamantartige", "Polymantane", "Nanodiamanten", "Diamondoids"], "authorized_access_point": "Diamantoide"} 1 +2024-09-10 15:43:41.948157 2024-09-10 15:43:41.94816 9b2d7359-c4bf-4327-a20f-386822fc2c2b {"md5": "fdf4d72a7eba34843b2b25f89f066775", "pid": "1334320462", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Betrieb"}], "identifier": "http://d-nb.info/gnd/1334320462", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334320462", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334320462", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334320462", "source": "GND"}], "authorized_access_point": "Inklusionsbetrieb"} 1 +2024-09-10 15:43:42.006247 2024-09-10 15:43:42.00625 12625acd-f49c-47da-935d-e2b14c303891 {"md5": "ee15b9b1e90c89a5ed9b477616e29a78", "pid": "1334314950", "note": [{"label": ["Homepage - https://heieditions.github.io/"], "noteType": "dataSource"}, {"label": ["technische Infrastruktur für die Online-Publikation von digitalisiertem Quellenmaterial inkl. Redaktionsmodul"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Softwareplattform"}], "related": [{"authorized_access_point": "Digitale Edition"}], "identifier": "http://d-nb.info/gnd/1334314950", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334314950", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334314950", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334314950", "source": "GND"}], "variant_access_point": ["Heidelberger digitale Editionen"], "authorized_access_point": "heiEDITIONS"} 1 +2024-09-10 15:43:42.068348 2024-09-10 15:43:42.068352 d983bc83-ea0c-41b8-a12f-146446c2d349 {"md5": "f1679b1e01a32ad6e05aee9e51d5539b", "pid": "1334231826", "note": [{"label": ["ncatlab - https://ncatlab.org/nlab/show/Witten+index"], "noteType": "dataSource"}, {"label": ["Supersymmetrische Verteilungsfunktion in der Quantenfeldtheorie"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Verteilungsfunktion"}, {"authorized_access_point": "Supersymmetrie"}], "identifier": "http://d-nb.info/gnd/1334231826", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334231826", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334231826", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334231826", "source": "GND"}], "authorized_access_point": "Witten-Index"} 1 +2024-09-10 15:43:42.127978 2024-09-10 15:43:42.12798 c34600c6-7676-4166-814a-610ccd2ba308 {"md5": "710cc2b15b229b5d03d5fd21f471874e", "pid": "1334230463", "note": [{"label": ["Encyclopedia of Math - https://encyclopediaofmath.org/index.php?title=Limit-absorption_principle&oldid=53491"], "noteType": "dataSource"}, {"label": ["Methode aus der Operatprtheorie und Streutheorie zum Finden von Lösungen der Helmholtz-Schwingungsgleichung und verwandter Gleichungen."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Operatortheorie"}, {"authorized_access_point": "Streutheorie"}], "related": [{"authorized_access_point": "Helmholtz-Schwingungsgleichung"}], "identifier": "http://d-nb.info/gnd/1334230463", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334230463", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334230463", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334230463", "source": "GND"}], "variant_access_point": ["Limiting Absorption Principle"], "authorized_access_point": "Limit-Absoprtion Principle"} 1 +2024-09-10 15:43:42.189439 2024-09-10 15:43:42.189442 4773907e-d3e6-4700-b6b9-2503fbd97b43 {"md5": "f98f0b2354bec90414d48b17ccb8b1ab", "pid": "1334227209", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Laplace-Matrix&oldid=237255983"], "noteType": "dataSource"}, {"label": ["Die Lapcematrix ist die diskrete Version des Laplace-Operator und hat Anwendungen in der Graphentheorie."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Graphentheorie"}], "related": [{"authorized_access_point": "Laplace-Operator"}], "identifier": "http://d-nb.info/gnd/1334227209", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334227209", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334227209", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334227209", "source": "GND"}], "variant_access_point": ["Kirchhoff-Matrix", "Diskreter Laplace-Operator", "Graph Laplacian"], "authorized_access_point": "Laplace-Matrix"} 1 +2024-09-10 15:43:42.252085 2024-09-10 15:43:42.25209 967cbe14-1683-424d-8d5b-fc6c396158af {"md5": "7165160e5fd1a027f17ba6347d29ee9d", "pid": "1334225907", "note": [{"label": ["Spektrum Lexikon der Mathematik - https://www.spektrum.de/lexikon/mathematik/hirzebruch-flaeche/3987", "Wikipedia - https://en.wikipedia.org/w/index.php?title=Hirzebruch_surface&oldid=1177831601"], "noteType": "dataSource"}, {"label": ["Eine Hirzebruch-Fläche ist Regelfläche über der projektiven Geraden."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Komplexe Mannigfaltigkeit"}, {"authorized_access_point": "Regelfläche"}, {"authorized_access_point": "Projektive Gerade"}], "identifier": "http://d-nb.info/gnd/1334225907", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334225907", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334225907", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334225907", "source": "GND"}], "variant_access_point": ["Hirzebruch Surface"], "authorized_access_point": "Hirzebruch-Fläche"} 1 +2024-09-10 15:43:42.319666 2024-09-10 15:43:42.319669 f61b327b-66d6-4f65-b65e-2a4b768c4d6b {"md5": "03b367121344938385efe1c8ea7d045e", "pid": "1334131074", "note": [{"label": ["eiszeitlicher Biber"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Biber (Familie)"}, {"authorized_access_point": "Fossile Nagetiere"}], "identifier": "http://d-nb.info/gnd/1334131074", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334131074", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334131074", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334131074", "source": "GND"}], "variant_access_point": ["Trogontherium cuvieri"], "authorized_access_point": "Großbiber"} 1 +2024-09-10 15:43:42.379259 2024-09-10 15:43:42.379264 52e1f96b-6445-43d4-806e-2a5d85ea3b77 {"md5": "88803d00f96a9f3f0980f48c739c94bd", "pid": "1334127158", "note": [{"label": ["eiszeitlicher Maulwurf, disjunkte Funde in Südeuropa, Balkan, Kaukasus und Japan, aber auch in Mitteleuropa"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Maulwürfe (Familie)"}, {"authorized_access_point": "Fossile Kleinsäuger"}], "identifier": "http://d-nb.info/gnd/1334127158", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334127158", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334127158", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334127158", "source": "GND"}], "variant_access_point": ["Talpa minor"], "authorized_access_point": "Zwergmaulwurf"} 1 +2024-09-10 15:43:42.446543 2024-09-10 15:43:42.446547 09514c14-4ecf-4dbe-b8e7-394dca72dad1 {"md5": "5c76b62c4a63ab308e2fc8a817f3dc70", "pid": "1334091412", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Werner_Br%C3%A4unig&oldid=237561503#Leben_und_Wirken"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Literaturpreis"}], "identifier": "http://d-nb.info/gnd/1334091412", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334091412", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334091412", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334091412", "source": "GND"}], "authorized_access_point": "Werner-Bräuning-Literaturpreis"} 1 +2024-09-10 15:43:42.500522 2024-09-10 15:43:42.500525 2c73ca57-cb56-4334-b89c-8e029c748a7c {"md5": "d6f49ed5ac8263ddb51bc047717b55a0", "pid": "1334089663", "note": [{"label": ["Homepage - https://www.fontanepreis.de/", "Wikipedia - https://de.wikipedia.org/w/index.php?title=Fontane-Preis&oldid=236484432"], "noteType": "dataSource"}, {"label": ["Würdigung eine:r Schriftsteller:in im europäischen Raum, der/die durch Arbeiten und Werke in besonderem Maße hervorgetreten ist. - seit 2012 Ausrichtung auf Reiseliteratur und -journalismus", "erstmals von 1913 bis 1922 vergeben. - nach 1949 gab es zwei Fontane-Preise (Westberliner Preis und Preis des DDR-Bezirks Potsdam). - 1994 wurde der Fontane-Literaturpreis von Theodor Fontanes Geburtsstadt Neuruppin neu gestiftet. - ab 2019 alle zwei Jahre gemeinschaftlich von der Fontanestadt Neuruppin und dem Land Brandenburg vergeben"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Literaturpreis"}], "identifier": "http://d-nb.info/gnd/1334089663", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334089663", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334089663", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334089663", "source": "GND"}], "variant_access_point": ["Fontane-Preis für Literatur der Fontanestadt Neuruppin", "Berliner Kunstpreis für Literatur", "Kunstpreis Berlin für Literatur", "Großer Kunstpreis Berlin für Literatur"], "authorized_access_point": "Fontane-Preis"} 1 +2024-09-10 15:43:42.553203 2024-09-10 15:43:42.553209 4574e9fd-bd22-4d3e-9974-e826707bcd34 {"md5": "83ebffff21467376e92c4904f42cd51b", "pid": "1334088837", "note": [{"label": ["Homepage - https://web.archive.org/web/20180821112655/https://www.kulturradio.de/programm/literatur/walter_serner_preis/", "kulturpreise.de - https://www.kulturpreise.de/web/preise_info.php?preisd_id=48"], "noteType": "dataSource"}, {"label": ["vergeben für eine Kurzgeschichte zu einem vorgegebenen Thema"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Literaturpreis"}], "identifier": "http://d-nb.info/gnd/1334088837", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334088837", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334088837", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334088837", "source": "GND"}], "variant_access_point": ["Walter Serner Preis"], "authorized_access_point": "Walter-Serner-Preis"} 1 +2024-09-10 15:43:42.609154 2024-09-10 15:43:42.609157 cd40da1a-94ba-4042-8808-f4b367b7613f {"md5": "adac94e924aace59852d0967bf8ab394", "pid": "1334088217", "note": [{"label": ["Auf Initiative des Lyrikers Raoul Schrott und mit Unterstützung des Tourismusbüros von Lech Zürs wird jährlich ein „Poeta Laureatus“ gewählt."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Literaturpreis"}], "identifier": "http://d-nb.info/gnd/1334088217", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334088217", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334088217", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334088217", "source": "GND"}], "authorized_access_point": "Poeta Laureatus"} 1 +2024-09-10 15:43:42.673052 2024-09-10 15:43:42.673056 e48de1ad-9172-480a-83ab-796cad6edaad {"md5": "1c7fde6869b33f599dfa25c4dea43278", "pid": "1334087156", "note": [{"label": ["Homepage - https://www.matrikelportal.uni-hamburg.de/content/index.xml"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Datenbank"}], "identifier": "http://d-nb.info/gnd/1334087156", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334087156", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334087156", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334087156", "source": "GND"}], "variant_access_point": ["Matrikelportal (Hamburg)"], "authorized_access_point": "Hamburger Matrikelportal"} 1 +2024-09-10 15:43:42.735871 2024-09-10 15:43:42.735874 30e9203c-2d69-4bff-b659-b11335034d6e {"md5": "960a6548ec3e021ac9c00e3248f4e45c", "pid": "133400076X", "note": [{"label": ["ausgestorbene Bärenart, die während des Pleistozäns in Eurasien beheimatet war"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bären (Familie)"}, {"authorized_access_point": "Fossile Bären"}], "identifier": "http://d-nb.info/gnd/133400076X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133400076X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133400076X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133400076X", "source": "GND"}], "variant_access_point": ["Ursus deningeri"], "authorized_access_point": "Deninger-Bär"} 1 +2024-09-10 15:43:42.796268 2024-09-10 15:43:42.796273 100a4220-8b45-48a2-a6f8-852359d9a086 {"md5": "82cfa2452956b02dcc0bda165f9b269c", "pid": "1333993331", "note": [{"label": ["Lex. Soz., S. 533 - https://doi.org/10.1007/978-3-658-30834-6", "Wikipedia - https://de.wikipedia.org/w/index.php?oldid=216806976", "Thes. Sozialwiss. - http://lod.gesis.org/thesoz/concept_10068103"], "noteType": "dataSource"}, {"label": ["Gesellschaftsform, die auf der Universalisierung des Organisationsprinzips des sozialen Netzwerks, i.S. von dezentralen, offenen Strukturen von interagierenden Knoten, beruht"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gesellschaft"}], "related": [{"authorized_access_point": "Soziales Netzwerk"}], "identifier": "http://d-nb.info/gnd/1333993331", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333993331", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333993331", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333993331", "source": "GND"}], "variant_access_point": ["Network Society"], "authorized_access_point": "Netzwerkgesellschaft"} 1 +2024-09-10 15:43:42.854695 2024-09-10 15:43:42.854699 d74a81c2-9791-44da-abff-05969253f3b2 {"md5": "2ccd9cc57f524c9c0aad71698a9ff7ec", "pid": "1333992548", "note": [{"label": ["spätpleistozäner Riesenhirsch, oder -Elch"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Hirsche"}, {"authorized_access_point": "Fossile Hirsche"}], "identifier": "http://d-nb.info/gnd/1333992548", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333992548", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333992548", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333992548", "source": "GND"}], "variant_access_point": ["Alces latifrons"], "authorized_access_point": "Breitstirnelch"} 1 +2024-09-10 15:43:42.920979 2024-09-10 15:43:42.920982 aefcf95a-1603-40c8-b131-d59dfa7db81b {"md5": "7f81accba2e25893694ebd715fd0383c", "pid": "1333987366", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Pflanzliche_Milch&oldid=244609687"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Pflanzliches Produkt"}], "identifier": "http://d-nb.info/gnd/1333987366", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333987366", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333987366", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333987366", "source": "GND"}], "variant_access_point": ["Pflanzenmilch (Lebensmittel)"], "authorized_access_point": "Pflanzliche Milch"} 1 +2024-09-10 15:43:42.980375 2024-09-10 15:43:42.980378 d45a58f7-a609-44d9-9850-0f3cbc2b30dc {"md5": "25fa90c89fecee71785e4cba408d883c", "pid": "133396420X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=242602086"], "noteType": "dataSource"}, {"label": ["Eine Late-Night-Show ist eine am späten Abend ausgestrahlte Fernsehsendung, die Comedy- und Talkshow-Elemente kombiniert und typische Bestandteile wie Stand-up-Einlagen, ein Studiopublikum, sowie ggf. einen Gast und eine Showband enthält."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Unterhaltungssendung"}, {"authorized_access_point": "Fernsehsendung"}], "identifier": "http://d-nb.info/gnd/133396420X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133396420X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133396420X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133396420X", "source": "GND"}], "variant_access_point": ["Late-night show", "Late night show"], "authorized_access_point": "Late-Night-Show"} 1 +2024-09-10 15:43:43.036842 2024-09-10 15:43:43.036845 5bfc3aee-5813-4ae9-9906-65cab96bcea3 {"md5": "c63f01779bc587da18ba3c1851fd4618", "pid": "1333876874", "note": [{"label": ["erstes echtes Pferd der Gattung Equus in Eurasien, im Mittelpleistozän, es ist benannt nach dem ersten Fundort der Fossilien, wurde aber später auch im ganzen eurasischen Raum gefunden"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Pferde (Familie)"}, {"authorized_access_point": "Fossile Pferde"}], "identifier": "http://d-nb.info/gnd/1333876874", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333876874", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333876874", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333876874", "source": "GND"}], "variant_access_point": ["Mosbacher Wildpferd", "Mosbacher Pferd", "Equus mosbachensis"], "authorized_access_point": "Mosbachpferd"} 1 +2024-09-10 15:43:43.098928 2024-09-10 15:43:43.098931 19c14ecf-d851-424d-a8b4-a27f919efdfa {"md5": "068826b7cb41ca9afdecfd2d9b36596b", "pid": "1333855907", "note": [{"label": ["Gattung"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Lemminge"}], "identifier": "http://d-nb.info/gnd/1333855907", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333855907", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333855907", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333855907", "source": "GND"}], "variant_access_point": ["Dicrostonyx"], "authorized_access_point": "Halsbandlemminge"} 1 +2024-09-10 15:43:43.172559 2024-09-10 15:43:43.172562 8d0fed49-9bb6-4ee5-8ee5-bf41d3c703ea {"md5": "43e2e899aba9f75cc753449fa1d283ce", "pid": "133385501X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Feldmaus (Gattung)"}], "identifier": "http://d-nb.info/gnd/133385501X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133385501X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133385501X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133385501X", "source": "GND"}], "variant_access_point": ["Sumpfmaus", "Microtus oeconomus"], "authorized_access_point": "Nordische Wühlmaus"} 1 +2024-09-10 15:43:43.238144 2024-09-10 15:43:43.238146 cc2b7dd7-fdb0-40e4-89e5-12fa4b34f821 {"md5": "7b3bdb84f7032c6e8f9022e1aef0b522", "pid": "1333853084", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bison"}], "identifier": "http://d-nb.info/gnd/1333853084", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333853084", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333853084", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333853084", "source": "GND"}], "variant_access_point": ["Bison bison athabascae"], "authorized_access_point": "Waldbison"} 1 +2024-09-10 15:43:43.294384 2024-09-10 15:43:43.294388 03940129-b900-47bb-8e6a-047a833d6fd7 {"md5": "5dfe60e5909c9571a7fa59c39f34bcc9", "pid": "1333852673", "note": [{"label": ["bis zum Ende der letzten Eiszeit in Europa verbreitet, lebte in Laubwäldern, Savannen und Grasländern, in Mitteleuropa bis zum Ende des letzten Interglazials, in Spanien bis zum Beginn der Würm-Eiszeit"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Nashörner"}], "identifier": "http://d-nb.info/gnd/1333852673", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333852673", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333852673", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333852673", "source": "GND"}], "variant_access_point": ["Merck-Nashorn", "Dicerorhinus kirchbergensis", "Stephanorhinus kirchbergensis"], "authorized_access_point": "Waldnashorn"} 1 +2024-09-10 15:43:43.351609 2024-09-10 15:43:43.351613 ebf0629d-0da6-493f-a04b-0f1d90e79165 {"md5": "a4db220e713117ea6096851c5530540f", "pid": "1333849788", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifier": "http://d-nb.info/gnd/1333849788", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333849788", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333849788", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333849788", "source": "GND"}], "authorized_access_point": "Authentizität (Motiv)"} 1 +2024-09-10 15:43:43.412326 2024-09-10 15:43:43.41233 7a0374fe-9c0b-4c35-aa72-9249bcbe7ada {"md5": "861e9bd198af82a5f9c935a4487deda8", "pid": "1333849435", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifier": "http://d-nb.info/gnd/1333849435", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333849435", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333849435", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333849435", "source": "GND"}], "authorized_access_point": "Künstlersignatur (Motiv)"} 1 +2024-09-10 15:43:43.470558 2024-09-10 15:43:43.470561 70e8c08f-3007-476b-af4a-75b5aaea7ee2 {"md5": "32337cc81fb3bdba05015d53d7972e50", "pid": "1333729863", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifier": "http://d-nb.info/gnd/1333729863", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333729863", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333729863", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333729863", "source": "GND"}], "authorized_access_point": "Ambiguität (Motiv)"} 1 +2024-09-10 15:43:43.533801 2024-09-10 15:43:43.533806 260ac971-e30b-4677-be6a-d457912cc871 {"md5": "b0dbe0a5b85e39e8b78d7fe273564508", "pid": "1333716354", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=W%C3%A4rmekraftwerk&oldid=245966421#Durchlaufk%C3%BChlung_ohne_K%C3%BChlturm"], "noteType": "dataSource"}, {"label": ["Wenn das erwärmte Kühlwasser unbehandelt in das Gewässer zurückgeführt wird, handelt es sich um eine Durchlaufkühlung."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kühlung"}], "related": [{"authorized_access_point": "Kraftwerk"}], "identifier": "http://d-nb.info/gnd/1333716354", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333716354", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333716354", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333716354", "source": "GND"}], "authorized_access_point": "Durchlaufkühlung"} 1 +2024-09-10 15:43:43.592396 2024-09-10 15:43:43.5924 c0217e5a-d014-49f0-9abf-ceb4e161178d {"md5": "7b76088c75f8c7944efe2e56a0b276b6", "pid": "1333566352", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/w/index.php?title=Akka_(toolkit)&oldid=1214896464"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Middleware"}], "identifier": "http://d-nb.info/gnd/1333566352", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333566352", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333566352", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333566352", "source": "GND"}], "authorized_access_point": "Akka (Software)"} 1 +2024-09-10 15:43:46.402556 2024-09-10 15:43:46.40256 1a8bb96a-30f8-416d-9fb5-372f18931ea2 {"md5": "fe6ccd2c17f6a76f0775e7844727fe5d", "pid": "1332649688", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bockkäfer"}], "identifier": "http://d-nb.info/gnd/1332649688", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332649688", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332649688", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332649688", "source": "GND"}], "variant_access_point": ["Zimmerbock", "Acanthocinus aedilis"], "authorized_access_point": "Zimmermannsbock"} 1 +2024-09-10 15:43:43.653889 2024-09-10 15:43:43.653893 b39e8931-62b5-403d-a4a4-f48ce6f38953 {"md5": "da9ad66c935e495490930002ffb604e2", "pid": "1333421427", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Letzte_Meile&oldid=235677594"], "noteType": "dataSource"}, {"label": ["letzter Abschnitt einer Transportkette bis zum Endverbraucher, Empfänger, oder zum Reiseziel, z.B. bei der Energieversorgung, im Güterverkehr, im Individualverkehr oder in der Telekommunikationstechnik"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Transportkette (Güterverkehr)"}, {"authorized_access_point": "Güterverkehr"}, {"authorized_access_point": "Individualverkehr"}], "identifier": "http://d-nb.info/gnd/1333421427", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333421427", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333421427", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333421427", "source": "GND"}], "authorized_access_point": "Letzte Meile"} 1 +2024-09-10 15:43:43.708656 2024-09-10 15:43:43.708659 d21ecc6b-c210-49e1-9b47-89e4dd5e0291 {"md5": "2c0ed3135b390d8fdd814d0a24111c4c", "pid": "1333376049", "note": [{"label": ["Baskischer Tanz im 5/8-Takt"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Volkstanz"}], "identifier": "http://d-nb.info/gnd/1333376049", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333376049", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333376049", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333376049", "source": "GND"}], "variant_access_point": ["Zorcico"], "authorized_access_point": "Zortziko"} 1 +2024-09-10 15:43:43.768102 2024-09-10 15:43:43.768107 875289a0-f2eb-4d97-b71e-db578a8a5548 {"md5": "21ea6b30a5345ddccc21492dcd9d4fb9", "pid": "133335245X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schwanenblumengewächse"}], "identifier": "http://d-nb.info/gnd/133335245X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133335245X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133335245X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133335245X", "source": "GND"}], "variant_access_point": ["Blumenbinse", "Butomus umbellatus"], "authorized_access_point": "Schwanenblume"} 1 +2024-09-10 15:43:43.827413 2024-09-10 15:43:43.827415 1ecf4558-b0c6-43c7-a62b-5d0ebd7f6964 {"md5": "7c9d1d0e91a7725095d5f6f55ca8b563", "pid": "1333352085", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Venezianisch"}], "identifier": "http://d-nb.info/gnd/1333352085", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333352085", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333352085", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333352085", "source": "GND"}], "authorized_access_point": "Mundart Venezianisch (Segusino)"} 1 +2024-09-10 15:43:43.89446 2024-09-10 15:43:43.894463 22cc823c-e577-4d75-a682-1ee89799466c {"md5": "4b54a79d3f69ecafdcc87964a9292312", "pid": "1333331002", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Einkeimblättrige"}], "identifier": "http://d-nb.info/gnd/1333331002", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333331002", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333331002", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333331002", "source": "GND"}], "variant_access_point": ["Butomaceae", "Blumenlieschgewächse"], "authorized_access_point": "Schwanenblumengewächse"} 1 +2024-09-10 15:43:43.954534 2024-09-10 15:43:43.954537 70c8efdd-2118-44e5-a2b5-a945f1989e08 {"md5": "b1eab2be8487350869063ec7ef6d1e79", "pid": "1333323778", "note": [{"label": ["Wert, an dem die Dichtefunktion einer stetigen Zufallsgröße ein relatives Maximum aufweist"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Lageparameter"}, {"authorized_access_point": "Deskriptive Statistik"}], "identifier": "http://d-nb.info/gnd/1333323778", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333323778", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333323778", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333323778", "source": "GND"}], "variant_access_point": ["Modus (Statistik)", "Modal value", "Mode"], "authorized_access_point": "Modalwert"} 1 +2024-09-10 15:43:44.018523 2024-09-10 15:43:44.018526 cb9c653d-e108-4a9a-9cd9-a9c82278eb08 {"md5": "95f076b0ac93d74704c5ab095983d858", "pid": "1333312415", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Mark_Tree"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schlaginstrument"}], "identifier": "http://d-nb.info/gnd/1333312415", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333312415", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333312415", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333312415", "source": "GND"}], "authorized_access_point": "Mark Tree"} 1 +2024-09-10 15:43:44.090676 2024-09-10 15:43:44.09068 e5767934-a02f-4210-82b5-10d428721172 {"md5": "02a27236b2e1c3be9b21c9465edd8914", "pid": "1333312326", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zupfinstrument"}], "identifier": "http://d-nb.info/gnd/1333312326", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333312326", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333312326", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333312326", "source": "GND"}], "authorized_access_point": "Mandoloncello"} 1 +2024-09-10 15:43:44.150017 2024-09-10 15:43:44.150021 89755528-791a-4eb7-b68c-50246a8ccdab {"md5": "9bf1f023f56fc0b264e2183336a01153", "pid": "1333270267", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Okzitanisch"}], "identifier": "http://d-nb.info/gnd/1333270267", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333270267", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333270267", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333270267", "source": "GND"}], "authorized_access_point": "Mundart Okzitanisch (Argentera, Provinz Cuneo)"} 1 +2024-09-10 15:44:34.384406 2024-09-10 15:44:34.384408 eb1dba87-1f6a-40a2-bc4d-e7179c88000e {"md5": "86b9fd227591fcef3b8b063bd5f184e8", "pid": "94736093X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4408014-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4408014-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)94736093X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4408014-1", "source": "GND"}], "variant_access_point": ["Urteilskorrektur", "Urteil", "Urteil"], "authorized_access_point": "Urteilsberichtigung"} 1 +2024-09-10 15:43:44.212393 2024-09-10 15:43:44.212396 aec88171-7e16-4007-ad39-aed5eddd0e8b {"md5": "07e70a26d9bba3d99568c53d68024f5a", "pid": "133326514X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Kuhglocke_(Schlaginstrument)"], "noteType": "dataSource"}, {"label": ["Konische Metallglocke ohne Innenklöppel"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schlaginstrument"}], "identifier": "http://d-nb.info/gnd/133326514X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133326514X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133326514X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133326514X", "source": "GND"}], "variant_access_point": ["Cowbell"], "authorized_access_point": "Kuhglocke (Musikinstrument)"} 1 +2024-09-10 15:43:44.27012 2024-09-10 15:43:44.270125 f0c7bf40-07a2-42c5-8cee-7f62efbb2add {"md5": "5f47099ce163aeac25bda5d636bed4e7", "pid": "1333260830", "note": [{"label": ["Wiki - https://de.wikipedia.org/w/index.php?title=Tuba&oldid=245431105"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tuba"}], "identifier": "http://d-nb.info/gnd/1333260830", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333260830", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333260830", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333260830", "source": "GND"}], "authorized_access_point": "Kontrabasstuba"} 1 +2024-09-10 15:43:44.335315 2024-09-10 15:43:44.335319 bf54a66f-1645-4a28-b400-bc4ffd9f0a8a {"md5": "7e18abf6181de35e12e5282281e78105", "pid": "1333256302", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Kobys"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Laute"}], "identifier": "http://d-nb.info/gnd/1333256302", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333256302", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333256302", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333256302", "source": "GND"}], "variant_access_point": ["Kobys"], "authorized_access_point": "Kobyz"} 1 +2024-09-10 15:43:44.399077 2024-09-10 15:43:44.399081 8ee940bd-2e5d-4d21-88cb-a64ac57667dc {"md5": "b2acbf680e0bb66bdc9f5c7ec2e07af7", "pid": "133325590X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Klavierharfe"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Harfe"}], "identifier": "http://d-nb.info/gnd/133325590X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133325590X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133325590X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133325590X", "source": "GND"}], "variant_access_point": ["Harfenklavier"], "authorized_access_point": "Klavierharfe"} 1 +2024-09-10 15:43:44.483139 2024-09-10 15:43:44.483141 3d443a92-9c19-4637-9761-a24536f89bb6 {"md5": "a1726e4ea86730eaee24700219300804", "pid": "1333255616", "note": [{"label": ["Einsaitige Zither aus Japan"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zither"}, {"authorized_access_point": "Monochord"}], "identifier": "http://d-nb.info/gnd/1333255616", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333255616", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333255616", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333255616", "source": "GND"}], "variant_access_point": ["Sumagoto"], "authorized_access_point": "Ichigenkin"} 1 +2024-09-10 15:43:44.551589 2024-09-10 15:43:44.551592 02341364-3cb2-4b89-8680-7ade80596d4b {"md5": "f30eb6f94aaccf7e042f908971136a70", "pid": "1333210043", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tuba"}], "identifier": "http://d-nb.info/gnd/1333210043", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333210043", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333210043", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333210043", "source": "GND"}], "variant_access_point": ["Helikontuba"], "authorized_access_point": "Helikon (Musikinstrument)"} 1 +2024-09-10 15:43:44.618782 2024-09-10 15:43:44.618785 9ed7253c-0d41-4b9e-92db-7147a4a77507 {"md5": "3f703cb5fcc664b9583600449b2f4f5d", "pid": "1333209908", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schlaginstrument"}], "identifier": "http://d-nb.info/gnd/1333209908", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333209908", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333209908", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333209908", "source": "GND"}], "variant_access_point": ["Guiro", "Kürbisraspel"], "authorized_access_point": "Güiro"} 1 +2024-09-10 15:43:44.673704 2024-09-10 15:43:44.673707 e4172cea-38bc-4d52-83b1-221ba9f833aa {"md5": "ea9c75a8944dd07cf22b9767afc26795", "pid": "1333208901", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Musikinstrument"}], "identifier": "http://d-nb.info/gnd/1333208901", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333208901", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333208901", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333208901", "source": "GND"}], "variant_access_point": ["Diskant-Instrument"], "authorized_access_point": "Diskantinstrument"} 1 +2024-09-10 15:43:44.727124 2024-09-10 15:43:44.727128 ff3dd24f-acdd-450e-a643-b4b29fe08194 {"md5": "986e572196a35cef3b04bc97679e5e3e", "pid": "1333141017", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Cristal_Baschet"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Glasharmonika"}], "identifier": "http://d-nb.info/gnd/1333141017", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333141017", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333141017", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333141017", "source": "GND"}], "variant_access_point": ["Crystal (Musikinstrument)", "Kristal Baschet"], "authorized_access_point": "Cristal Baschet"} 1 +2024-09-10 15:43:44.795797 2024-09-10 15:43:44.795801 b90cf43d-8a55-43f7-9e1a-9c5928c08ad5 {"md5": "c47f1624d9ddb6f8f30fc2262d639e6a", "pid": "1333125127", "note": [{"label": ["Enstehungszeit 1928"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gotische Schrift"}], "identifier": "http://d-nb.info/gnd/1333125127", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333125127", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333125127", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333125127", "source": "GND"}], "authorized_access_point": "Altenburger Gotisch"} 1 +2024-09-10 15:43:44.85882 2024-09-10 15:43:44.858824 3823f41a-6967-46b7-b558-2e46051c2f9e {"md5": "981d4001bda93aadd938e7e0dcde5bc7", "pid": "1333119267", "note": [{"label": ["Homepage - https://knowledge.exlibrisgroup.com/Primo/Product_Documentation/020Primo_VE"], "noteType": "dataSource"}, {"label": ["Bibliotheksinformationssystem (Frontend, Discovery Service) der Ex Libris Group"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bibliotheksinformationssystem"}], "identifier": "http://d-nb.info/gnd/1333119267", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333119267", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333119267", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333119267", "source": "GND"}], "authorized_access_point": "Primo VE (Bibliotheksinformationssystem)"} 1 +2024-09-10 15:43:44.916984 2024-09-10 15:43:44.916987 fefcd0be-55a4-4bb5-b92b-2beb3aa4bc41 {"md5": "ce5e3b887a926a470e27b1bdc1478285", "pid": "1333118023", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Groteskschrift"}], "identifier": "http://d-nb.info/gnd/1333118023", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333118023", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333118023", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333118023", "source": "GND"}], "variant_access_point": ["Werk Grotesk", "Werk-Grotesque", "Werk Grotesque"], "authorized_access_point": "Werk-Grotesk"} 1 +2024-09-10 15:43:44.976041 2024-09-10 15:43:44.976044 4c8119d1-b17d-4564-85a6-d3fe8f54c50b {"md5": "d78b549f6671f65679de6c891b9a2b2d", "pid": "1333117329", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Alma_(Bibliothekssoftware)&oldid=232264077"], "noteType": "dataSource"}, {"label": ["Bibliotheksinformationssystem (Backend) der Ex Libris Group"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bibliotheksinformationssystem"}], "identifier": "http://d-nb.info/gnd/1333117329", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333117329", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333117329", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333117329", "source": "GND"}], "authorized_access_point": "Alma (Bibliotheksinformationssystem)"} 1 +2024-09-10 15:43:45.041776 2024-09-10 15:43:45.041779 3571b0bc-bc58-4edf-9451-17541fc30c98 {"md5": "05fd867f49f18089a9dc2bb6e522d3c7", "pid": "1333115881", "note": [{"label": ["Entstehungszeit der Halbfetten Werbe-Grotesk 1926"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Groteskschrift"}, {"authorized_access_point": "Auszeichnungsschrift"}], "identifier": "http://d-nb.info/gnd/1333115881", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333115881", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333115881", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333115881", "source": "GND"}], "variant_access_point": ["Werbegrotesk", "Halbfette Werbe-Grotesk", "Schmalfette Werbe-Grotesk"], "authorized_access_point": "Werbe-Grotesk"} 1 +2024-09-10 15:43:45.102307 2024-09-10 15:43:45.102311 0a0e3aac-940c-467f-8bbc-2be60990b061 {"md5": "8a3c4fc5cc8ce2249de646911d83cd1d", "pid": "1333113749", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fraktur (Druckschrift)"}, {"authorized_access_point": "Auszeichnungsschrift"}], "identifier": "http://d-nb.info/gnd/1333113749", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333113749", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333113749", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333113749", "source": "GND"}], "authorized_access_point": "Werbekraft (Druckschrift)"} 1 +2024-09-10 15:43:45.159404 2024-09-10 15:43:45.159407 f10a89b5-92a6-4130-a0e6-905033f484c7 {"md5": "49ed8a998add007b94580d2de0ecde43", "pid": "1333065841", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Fr%C3%BChdynastische_Zeit_(Mesopotamien)&oldid=241217962"], "noteType": "dataSource"}, {"label": ["Epochenbezeichnung der altorientalischen Geschichte"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Bronzezeit"}], "identifier": "http://d-nb.info/gnd/1333065841", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333065841", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333065841", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333065841", "source": "GND"}], "variant_access_point": ["Frühdynastikum (Mesopotamien)", "Präsargonidenzeit"], "authorized_access_point": "Frühdynastische Zeit (Mesopotamien)"} 1 +2024-09-10 15:43:45.217761 2024-09-10 15:43:45.217765 4257d507-9ab3-4145-a897-9e4689a0c2ab {"md5": "34fe9f99bf5cbcab6021e7ef98d6e299", "pid": "1333064136", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Pr%C3%A4keramisches_Neolithikum&oldid=242925924", "engl. Wikipedia - https://en.wikipedia.org/w/index.php?title=Pre-Pottery_Neolithic&oldid=1230052305"], "noteType": "dataSource"}, {"label": ["Diese Stufe des präkeramischen Neolithikums wurde erstmals in Ain Ghazal festgestellt", "Epochenbezeichnung der Vorderasiatischen Archäologie"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Neolithikum"}], "identifier": "http://d-nb.info/gnd/1333064136", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333064136", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333064136", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333064136", "source": "GND"}], "variant_access_point": ["PPNC", "Pre-pottery Neolithic C", "Akeramisches Neolithikum C", "Vorkeramische Jungsteinzeit C"], "authorized_access_point": "Präkeramisches Neolithikum C"} 1 +2024-09-10 15:43:45.275359 2024-09-10 15:43:45.275361 e3c10112-6c1c-4767-aed8-d62d154606ad {"md5": "a993e556ab79324f964b3c2435280292", "pid": "1333063970", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Pr%C3%A4keramisches_Neolithikum_B&oldid=239924777"], "noteType": "dataSource"}, {"label": ["Folgt auf das Präkeramische Neolithikum A der Levante, von Kathleen Kenyon aufgrund der Befunde von Jericho definiert", "Epochenbezeichnung der Vorderasiatischen Archäologie"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Neolithikum"}], "identifier": "http://d-nb.info/gnd/1333063970", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333063970", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333063970", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333063970", "source": "GND"}], "variant_access_point": ["Pre-pottery Neolithic B", "PPNB", "Akeramisches Neolithikum B"], "authorized_access_point": "Präkeramisches Neolithikum B"} 1 +2024-09-10 15:43:45.335292 2024-09-10 15:43:45.335295 4e2a1ad7-0e7d-4131-bd87-d1fcfac27276 {"md5": "40cd24b703882a7a0c8746e95ef7fb4e", "pid": "1333063717", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Pr%C3%A4keramisches_Neolithikum_A&oldid=239924826"], "noteType": "dataSource"}, {"label": ["Frühjungsteinzeitliche Epoche im Vorderen Orient, von Kathleen Kenyon anhand der Stratigraphie von Jericho definiert, löste das Natufian ab", "Epochenbezeichnung der Vorderasiatischen Archäologie"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Neolithikum"}], "identifier": "http://d-nb.info/gnd/1333063717", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333063717", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333063717", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333063717", "source": "GND"}], "variant_access_point": ["Pre-pottery Neolithic A", "PPNA", "Akeramisches Neolithikum A"], "authorized_access_point": "Präkeramisches Neolithikum A"} 1 +2024-09-10 15:43:45.398489 2024-09-10 15:43:45.398494 b1138395-f667-42e6-afb3-4dcda5056a29 {"md5": "ef476f34ffcff179665a936ad52e5a0b", "pid": "133306179X", "note": [{"label": ["Verstoß gegen markenrechtliche Vorschriften"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Markenrecht"}], "identifier": "http://d-nb.info/gnd/133306179X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133306179X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133306179X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133306179X", "source": "GND"}], "variant_access_point": ["Markenrechtsverletzung", "Markenrechtsverstoß", "Markenrecht"], "authorized_access_point": "Markenverletzung"} 1 +2024-09-10 15:43:45.4576 2024-09-10 15:43:45.457604 a91dfaa0-c1f1-4e85-b688-713fef38066c {"md5": "d02d571e8e7d9e0b65fe82eceacc6905", "pid": "1333037414", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Aufst%C3%A4nde_und_Revolten_gegen_die_britische_Herrschaft_in_Indien&oldid=244895818#1859_bis_1947", "Engl. Wikipedia - https://en.wikipedia.org/w/index.php?title=Kuki_Rebellion_of_1917%E2%80%931919&oldid=1187443399"], "noteType": "dataSource"}, {"label": ["Rebellion der Kuki-Stämme von Manipur gegen die Einmischung der britischen Kolonialherrschaft in die Lebensgrundlage der Kuki"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Aufstand"}, {"authorized_access_point": "Kolonialkrieg"}], "identifier": "http://d-nb.info/gnd/1333037414", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333037414", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333037414", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333037414", "source": "GND"}], "variant_access_point": ["Anglo-Kuki-Krieg", "Anglo-Kuki Rebellion", "Anglo-Kuki war"], "authorized_access_point": "Kuki-Aufstand"} 1 +2024-09-10 15:43:45.520029 2024-09-10 15:43:45.520033 8c5575de-7887-4227-8f6d-04374cbac25d {"md5": "7f06242f98cb55664c352e3558e2e1d6", "pid": "1333027249", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Pro-Lie-Gruppe&oldid=233764246"], "noteType": "dataSource"}, {"label": ["Eine Pro-Lie-Gruppe ist in der Mathematik eine topologische Gruppe, die sich in gewisser Weise als Grenzwert von Lie-Gruppen schreiben lässt."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Topologische Gruppe"}, {"authorized_access_point": "Lie-Theorie"}], "identifier": "http://d-nb.info/gnd/1333027249", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333027249", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333027249", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333027249", "source": "GND"}], "variant_access_point": ["Pro-Lie Group"], "authorized_access_point": "Pro-Lie-Gruppe"} 1 +2024-09-10 15:43:45.580099 2024-09-10 15:43:45.580103 7bddfe3a-abfb-44bf-8094-7bd90909e36b {"md5": "af112fe0674bcae876349afe6a7d4c68", "pid": "1332990258", "note": [{"label": ["Wikipedia - https://nl.wikipedia.org/w/index.php?title=Zaans&oldid=67492702"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Holländisch"}], "identifier": "http://d-nb.info/gnd/1332990258", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332990258", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332990258", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332990258", "source": "GND"}], "variant_access_point": ["Zaans (Holländisch)"], "authorized_access_point": "Mundart Holländisch (Zaan-Gebiet)"} 1 +2024-09-10 15:43:45.635239 2024-09-10 15:43:45.635242 630158c1-b963-440f-80e4-1ed717f33b91 {"md5": "6338e59d24d4fdb91f09a0b2b3adf4cf", "pid": "1332899730", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Sch%C3%A4ferlauf&oldid=239016245"], "noteType": "dataSource"}, {"label": ["entwickelte sich aus dem Zunftfest der gewerblichen Schäferrei; heute württembergisches Volksfest (Jahrmarkt) in den Städten Markgröningen, Bad Urach und Wildberg"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Volksfest"}], "identifier": "http://d-nb.info/gnd/1332899730", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332899730", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332899730", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332899730", "source": "GND"}], "authorized_access_point": "Schäferlauf"} 1 +2024-09-10 15:43:45.697994 2024-09-10 15:43:45.697998 67fc8d29-057b-4059-acee-7bd9cdda7f74 {"md5": "f1c1b810c691c48e6c208407da0b291c", "pid": "1332895018", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/w/index.php?title=TigerGraph&oldid=1183528280"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Graphdatenbank"}], "identifier": "http://d-nb.info/gnd/1332895018", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332895018", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332895018", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332895018", "source": "GND"}], "authorized_access_point": "TigerGraph (Graphdatenbank)"} 1 +2024-09-10 15:44:50.33222 2024-09-10 15:44:50.332225 d1d1ffe5-0df0-42f5-849d-1f19d1b0ff0e {"md5": "7d517a0dbe4263648c2f6f1482ff04c2", "pid": "042108160", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Dimorphismus"}], "identifier": "http://d-nb.info/gnd/4210816-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4210816-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042108160", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4210816-0", "source": "GND"}], "authorized_access_point": "Saisondimorphismus"} 1 +2024-09-10 15:43:45.768213 2024-09-10 15:43:45.768216 9729671d-a5d0-4a12-a17d-2337d73bfc45 {"md5": "f44f94bb41894864fef170df2333d3f9", "pid": "1332889549", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/w/index.php?title=GRPC&oldid=1228337631"], "noteType": "dataSource"}, {"label": ["Framework von Google"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Framework (Informatik)"}, {"authorized_access_point": "Open Source"}], "identifier": "http://d-nb.info/gnd/1332889549", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332889549", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332889549", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332889549", "source": "GND"}], "variant_access_point": ["gRPC Remote Procedure Calls"], "authorized_access_point": "gRPC (Software)"} 1 +2024-09-10 15:43:45.826523 2024-09-10 15:43:45.826525 74e8c90e-5853-4b67-af3d-a170bde4d5fd {"md5": "7500e6f4a12c297a1d58f682c3e686eb", "pid": "1332775381", "note": [{"label": ["Das Lösungsverhalten von einem Parameter abhängiger Differentialgleichungen ist insb. in Hinblick auf Störungen interessant."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Differentialgleichung"}, {"authorized_access_point": "Parameter (Mathematik)"}], "related": [{"authorized_access_point": "Störungstheorie"}], "identifier": "http://d-nb.info/gnd/1332775381", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332775381", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332775381", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332775381", "source": "GND"}], "variant_access_point": ["Parametrische Differentialgleichung", "Parametric Differential Equation"], "authorized_access_point": "Parameterabhängige Differentialgleichung"} 1 +2024-09-10 15:43:45.885638 2024-09-10 15:43:45.885642 9bd821cd-45e8-46b4-b645-a976afb24ae4 {"md5": "cccabb9239bb567be7b88ac6aa110510", "pid": "1332774113", "note": [{"label": ["Die Herolde 'Hessenland' erscheinen in Quellen oft nur mit den Amtsnamen, während ihre Eigennamen oder Hinweise auf die genaue Funktion fehlen. Landgraf Ludwig I. (1402-1458) bediente sich eines Herolds, der den Namen seines Landes trug."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Heroldsname"}], "identifier": "http://d-nb.info/gnd/1332774113", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332774113", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332774113", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332774113", "source": "GND"}], "authorized_access_point": "Hessenland (Heroldsname)"} 1 +2024-09-10 15:43:45.959282 2024-09-10 15:43:45.959285 3e91b548-0ceb-43bf-8a56-409e60230317 {"md5": "292e1c49133ea9360dc191d6578ac57c", "pid": "133276648X", "note": [{"label": ["Homepage - https://docs.python.org/dev/whatsnew/3.12html"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Objektorientierte Programmiersprache"}], "related": [{"authorized_access_point": "Python 3.7"}], "identifier": "http://d-nb.info/gnd/133276648X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133276648X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133276648X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133276648X", "source": "GND"}], "authorized_access_point": "Python 3.12"} 1 +2024-09-10 15:43:46.036702 2024-09-10 15:43:46.036706 c4159d23-b5e4-42a6-8852-ff009e5d92e3 {"md5": "5e01ba0b240514814f27f0dced3f2c23", "pid": "1332759254", "note": [{"label": ["Amtsnamen aus Toponymen von Herolden des Mittelalters, die fest im Dienst eines Landesherrn standen, auf die der Name indirekt verwies. Mit dem Namenswechsel zum Amtsnamen erschienen diese Personen fortan oft ohne Vornamen."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Name"}], "identifier": "http://d-nb.info/gnd/1332759254", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332759254", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332759254", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332759254", "source": "GND"}], "variant_access_point": ["Herold"], "authorized_access_point": "Heroldsname"} 1 +2024-09-10 15:43:46.132373 2024-09-10 15:43:46.132381 bc722ef7-f8f0-4022-819d-40cdf27648ae {"md5": "e1ae56f22781ebb9255f88783341f6fa", "pid": "1332688047", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifier": "http://d-nb.info/gnd/1332688047", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332688047", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332688047", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332688047", "source": "GND"}], "authorized_access_point": "Posthumanismus (Motiv)"} 1 +2024-09-10 15:43:46.222662 2024-09-10 15:43:46.222666 be0be86a-a28f-40e5-b1df-3ff7603b3836 {"md5": "4bafa18f18f67dee1c9e8b3bfebed452", "pid": "1332661297", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Kleine_Binsenjungfer&oldid=221779523"], "noteType": "dataSource"}, {"label": ["Libelle der Gattung der Binsenjungfern, Familie der Teichjungfern"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Teichjungfern"}], "identifier": "http://d-nb.info/gnd/1332661297", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332661297", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332661297", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332661297", "source": "GND"}], "variant_access_point": ["Lestes virens"], "authorized_access_point": "Kleine Binsenjungfer"} 1 +2024-09-10 15:43:46.311296 2024-09-10 15:43:46.311298 6cffc28a-0e71-4209-9d31-265e4c3e776b {"md5": "64405af6ff68fc3d15139eed5676216c", "pid": "1332657273", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Birkengewächse"}], "identifier": "http://d-nb.info/gnd/1332657273", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332657273", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332657273", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332657273", "source": "GND"}], "variant_access_point": ["Betula lenta"], "authorized_access_point": "Zuckerbirke"} 1 +2024-09-10 15:45:50.299066 2024-09-10 15:45:50.299073 a50d50fe-c2bf-4265-aa09-6c91b686a3fb {"md5": "223f42abb8a16965632d720df585d314", "pid": "127188898X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifier": "http://d-nb.info/gnd/127188898X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/127188898X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)127188898X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)127188898X", "source": "GND"}], "authorized_access_point": "Schreibedeutsch"} 1 +2024-09-10 15:43:46.505149 2024-09-10 15:43:46.505153 bbc02097-feaf-4826-a38b-2c5451d9b458 {"md5": "53200bf6e1593503e07ab830bbf5d0bd", "pid": "1332459587", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Polyzephalie&oldid=224564950"], "noteType": "dataSource"}, {"label": ["bezeichnet allgemein das Auftreten mehrerer Köpfe bei Lebewesen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Missbildung"}], "identifier": "http://d-nb.info/gnd/1332459587", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332459587", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332459587", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332459587", "source": "GND"}], "variant_access_point": ["Mehrköpfigkeit"], "authorized_access_point": "Polyzephalie"} 1 +2024-09-10 15:43:46.579885 2024-09-10 15:43:46.579889 c291ca61-c3f3-4733-bea2-80ce1797c2ba {"md5": "f7695b99ac94430d28cb3778495356f9", "pid": "1332430376", "note": [{"label": ["Ein Konzertzettel gibt Information über Veranstalter, Ort, Datum und Zeit einer oder mehreren Konzertveranstaltungen und listet alle geplanten Programmpunkte auf, in der Regel mit Angabe der Komponisten und der Interpreten. Oft ist der Eintrittspreis angegeben, manchmal sind Verhaltensregeln für den Konzertsaal genannt. Im Gegensatz zum Konzertprogramm enthält ein Konzertzettel keine weitergehenden Informationen zu den Stücken und den Interpreten.", "Zu verwenden für ein einseitig oder beidseitig bedrucktes Blatt im Handzettel-, Faltblatt- oder Plakatformat.", "Als Formangabe für die Art des Inhalts als Teil des optionalen Sets zugelassen."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1332430376", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332430376", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332430376", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332430376", "source": "GND"}], "variant_access_point": ["Konzert"], "authorized_access_point": "Konzertzettel"} 1 +2024-09-10 15:43:46.659948 2024-09-10 15:43:46.659957 a74de834-d34b-40ad-b45e-42bab03886e9 {"md5": "73f16e45bf7f0e063a3a5b730256d550", "pid": "1332426751", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Fotobuch&oldid=229660915"], "noteType": "dataSource"}, {"label": ["Individuelles, über ein Layoutprogramm eines Foto-Anbieters digital erstelltes Fotobuch; in der Regel nur in sehr geringer Stückzahl produziert.", "Als Formangabe für die Art des Inhalts als Teil des optionalen Sets zugelassen."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bildband"}], "related": [{"authorized_access_point": "Fotobuch"}, {"authorized_access_point": "CEWE Fotobuch Pro"}], "identifier": "http://d-nb.info/gnd/1332426751", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332426751", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332426751", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332426751", "source": "GND"}], "variant_access_point": ["Personalisiertes Fotobuch", "Personalisiertes Photobuch", "Persönliches Photobuch"], "authorized_access_point": "Persönliches Fotobuch"} 1 +2024-09-10 15:43:46.742835 2024-09-10 15:43:46.742839 4561b062-ee64-4def-87b9-51cb77019034 {"md5": "be9a1dae0f3828c4d754d14a26af5eaa", "pid": "1332365841", "note": [{"label": ["Im Handdruckverfahren mit Modeln gefertigtes Buntpapier, das nach handgemalten Entwürfen oft großflächig mit Kleisterfarben bedruckt wurde."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Buntpapier"}], "identifier": "http://d-nb.info/gnd/1332365841", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332365841", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332365841", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332365841", "source": "GND"}], "variant_access_point": ["Modeldruckpapier", "Zitzpapier"], "authorized_access_point": "Kattunpapier"} 1 +2024-09-10 15:43:46.820992 2024-09-10 15:43:46.820995 01a340d9-a101-4832-b817-a2d2185e81c7 {"md5": "5f40701e2661402bf7bed64514ef13d2", "pid": "1332318142", "note": [{"label": ["Als elektronisches Wertpapier bezeichnet man ein Wertpapier ohne Urkunde, dessen Begebung dadurch erfolgt, dass der Emittent anstelle der Ausstellung einer Wertpapierurkunde eine Eintragung in ein elektronisches Wertpapierregister bewirkt."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Wertpapier"}], "identifier": "http://d-nb.info/gnd/1332318142", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332318142", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332318142", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332318142", "source": "GND"}], "variant_access_point": ["E-Wertpapier"], "authorized_access_point": "Elektronisches Wertpapier"} 1 +2024-09-10 15:43:46.877967 2024-09-10 15:43:46.877971 7ecbf506-bb34-4c46-899e-77b2bb4ca089 {"md5": "2e4921f86a432638121bd77436590335", "pid": "1332111971", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Small_Modular_Reactor&oldid=245567340"], "noteType": "dataSource"}, {"label": ["Small Modular Reactors sind modulare Kernspaltungsreaktoren, die kleiner als herkömmliche Reaktoren sind und daher in einer Fabrik vorgefertigt und anschließend an einen Montageort verbracht werden können."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kernkraftwerk"}], "identifier": "http://d-nb.info/gnd/1332111971", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332111971", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332111971", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332111971", "source": "GND"}], "variant_access_point": ["SMR", "kleiner modularer Reaktor", "Miniatomkraftwerk", "Minikernkraftwerk"], "authorized_access_point": "Small Modular Reactor"} 1 +2024-09-10 15:43:46.944891 2024-09-10 15:43:46.944895 073caaf1-9aec-444f-9ccb-ec6c9901154e {"md5": "5a9641b78503c0c7b6cb1eb3917edc92", "pid": "1332095119", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifier": "http://d-nb.info/gnd/1332095119", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332095119", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332095119", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332095119", "source": "GND"}], "authorized_access_point": "Schaufensterpuppe (Motiv)"} 1 +2024-09-10 15:43:47.033338 2024-09-10 15:43:47.033344 e88ae1c6-7799-4663-bbd9-e2c1a2dcf814 {"md5": "aeb88d9bb81afe31b5f1bc57b86e3169", "pid": "133197612X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fuchsschwanzgewächse"}], "identifier": "http://d-nb.info/gnd/133197612X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133197612X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133197612X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133197612X", "source": "GND"}], "variant_access_point": ["Corispermum leptopterum"], "authorized_access_point": "Großflügeliger Wanzensame"} 1 +2024-09-10 15:43:47.189476 2024-09-10 15:43:47.189487 e444cea8-25a9-4ba7-9e47-dcd6247b1133 {"md5": "c5778e3f1816c3648a40dcd12c4c857c", "pid": "133197593X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Kleines_Nixenkraut&oldid=217982529"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Froschbissgewächse"}], "identifier": "http://d-nb.info/gnd/133197593X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133197593X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133197593X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133197593X", "source": "GND"}], "variant_access_point": ["Najas minor"], "authorized_access_point": "Kleines Nixenkraut"} 1 +2024-09-10 15:43:47.27699 2024-09-10 15:43:47.276993 2abfa30d-dab5-4aba-945e-bb7eb7045edc {"md5": "610d0f0f2d9b162e5330bacf88282cef", "pid": "1331975794", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Ruten-Lattich&oldid=234087294"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Lactuceae"}], "identifier": "http://d-nb.info/gnd/1331975794", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331975794", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331975794", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331975794", "source": "GND"}], "variant_access_point": ["Lactuca viminea", "Rutenlattich"], "authorized_access_point": "Ruten-Lattich"} 1 +2024-09-10 15:43:47.371629 2024-09-10 15:43:47.37164 9bcec709-ea35-49c9-a3dd-0ae833182313 {"md5": "63018292f419c18f15d0e561b0520a49", "pid": "1331886929", "note": [{"label": ["Wikipedia unter Grimmia - https://de.wikipedia.org/w/index.php?title=Grimmia&oldid=227976746"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Grimmiaceae"}], "identifier": "http://d-nb.info/gnd/1331886929", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331886929", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331886929", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331886929", "source": "GND"}], "variant_access_point": ["Mausfell-Kissenmoos"], "authorized_access_point": "Grimmia crinita"} 1 +2024-09-10 15:43:47.454389 2024-09-10 15:43:47.454402 a7b6bb0a-b709-4109-a3e5-5309fc68ac60 {"md5": "0e2f202f06975b4cae9203fe59b9af11", "pid": "1331876540", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=.NET_(Plattform)&oldid=245448784"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Framework (Informatik)"}], "related": [{"authorized_access_point": "Microsoft dot net 7"}], "identifier": "http://d-nb.info/gnd/1331876540", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331876540", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331876540", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331876540", "source": "GND"}], "variant_access_point": ["Microsoft dot net 8.0", "Microsoft.Net 8", "Microsoft.Net 8.0", ".Net 8", ".Net Framework 8", "Microsoft .NET Framework 8"], "authorized_access_point": "Microsoft dot net 8"} 1 +2024-09-10 15:43:47.53202 2024-09-10 15:43:47.532023 4355512b-e66c-481a-8629-805a24955046 {"md5": "8ce725fd5704f8651c35029b4ee48a62", "pid": "1331840627", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/w/index.php?title=Eggon_people&oldid=1212081727"], "noteType": "dataSource"}, {"label": ["Ethnische Gruppe, die hauptsächlich im Norden Zentralnigerias (nämlich Nassarawa und im Bundesstaat Plateau) beheimatet ist. Muttersprache ist die Eggon-Sprache, die die meisten Eggon-Leute auch heute noch sprechen."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Egon-Sprache"}], "identifier": "http://d-nb.info/gnd/1331840627", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331840627", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331840627", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331840627", "source": "GND"}], "variant_access_point": ["Eggon people", "Egon (Volk)", "Ero (Volk)", "Mo Egon (Volk)"], "authorized_access_point": "Eggon (Volk)"} 1 +2024-09-10 15:43:47.599292 2024-09-10 15:43:47.599296 3f906805-8674-4fb8-b4fa-34feefbd873e {"md5": "3eb36d0b573c67a2e5f3addbb0fe267b", "pid": "1331747716", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Riesenbakterium&oldid=237975080"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bakterien"}], "identifier": "http://d-nb.info/gnd/1331747716", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331747716", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331747716", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331747716", "source": "GND"}], "variant_access_point": ["Riesenbakterium"], "authorized_access_point": "Riesenbakterien"} 1 +2024-09-10 15:43:47.673222 2024-09-10 15:43:47.673226 9f79441c-5704-47a2-985f-05fe5bc82bb6 {"md5": "4f32c19b09bbb01c32e96f43e5f08991", "pid": "1331734126", "note": [{"label": ["als freiwillige Kastraten Begleiter/Priester der Magna Mater (Kybele)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Priesterkollegium"}], "related": [{"authorized_access_point": "Kybelekult"}], "identifier": "http://d-nb.info/gnd/1331734126", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331734126", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331734126", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331734126", "source": "GND"}], "variant_access_point": ["Galloi"], "authorized_access_point": "Galli (Priesterkollegium)"} 1 +2024-09-10 15:46:38.889101 2024-09-10 15:46:38.889104 c35978b6-abd7-49cb-b464-1ff403c0642e {"md5": "84b11528dfa831770713fb43ede8f1b5", "pid": "041374444", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4137444-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4137444-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041374444", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4137444-7", "source": "GND"}], "variant_access_point": ["Fettsteuer"], "authorized_access_point": "Fettabgabe"} 1 +2024-09-10 15:43:47.732636 2024-09-10 15:43:47.73264 0c958476-a506-4b03-b1c6-81bb78c7831f {"md5": "c857edd55bbdf50ea874079acae647ae", "pid": "1331734045", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Ehrlichkeit"}, {"authorized_access_point": "Unaufrichtigkeit"}, {"authorized_access_point": "Heuchelei"}], "identifier": "http://d-nb.info/gnd/1331734045", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331734045", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331734045", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331734045", "source": "GND"}], "authorized_access_point": "Unehrlichkeit"} 1 +2024-09-10 15:43:47.825429 2024-09-10 15:43:47.825433 44793500-28c4-4e05-a93e-6ba5bef7d8e7 {"md5": "db8b70e191eca1ca09810fcf51559b61", "pid": "1331733316", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Crista_(Helm)&oldid=229512606"], "noteType": "dataSource"}, {"label": ["lat. für \\"Kamm\\"; Helmzier/Helmbusch römischer Legionäre"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Helm"}], "identifier": "http://d-nb.info/gnd/1331733316", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331733316", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331733316", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331733316", "source": "GND"}], "authorized_access_point": "Crista"} 1 +2024-09-10 15:43:47.883026 2024-09-10 15:43:47.883029 f7f21865-41e0-4b7e-9a66-d6fde2c88d57 {"md5": "3fa729892fbb53cf58707f89502844f4", "pid": "1331723361", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Seidenbienen-%C3%96lk%C3%A4fer&oldid=238939855"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ölkäfer (Familie)"}], "identifier": "http://d-nb.info/gnd/1331723361", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331723361", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331723361", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331723361", "source": "GND"}], "variant_access_point": ["Schwarze Pelzbienen-Ölkäfer", "Stenoria analis"], "authorized_access_point": "Seidenbienen-Ölkäfer"} 1 +2024-09-10 15:43:47.958962 2024-09-10 15:43:47.958965 79cbdd31-c4e8-417e-9d12-980a3c3328bd {"md5": "9dfc3b73c9b298a01d84b77da84ad31c", "pid": "1331719054", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Attenuation_(Genexpression)&oldid=239090494"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Genregulation"}], "identifier": "http://d-nb.info/gnd/1331719054", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331719054", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331719054", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331719054", "source": "GND"}], "authorized_access_point": "Attenuation (Molekulargenetik)"} 1 +2024-09-10 15:43:48.056071 2024-09-10 15:43:48.056077 bdac4339-8ba5-4458-a63d-85f0b4fbd8d3 {"md5": "e26c29a07dc836e030ca5004d141c9a0", "pid": "1331717353", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=TAPSE&oldid=221946233"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ultraschallkardiografie"}], "identifier": "http://d-nb.info/gnd/1331717353", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331717353", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331717353", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331717353", "source": "GND"}], "variant_access_point": ["TAPSE", "Tricuspid annular motion"], "authorized_access_point": "Tricuspid Anular Plane Systolic Excursion"} 1 +2024-09-10 15:43:48.120298 2024-09-10 15:43:48.120304 a29d623f-c89f-4869-9bb9-fdd7aecb7ddc {"md5": "8b7e6a781d7e8f769048383461abb802", "pid": "1331710464", "note": [{"label": ["Begriff in der Theorie kompakter Gruppen, insb. der kompakten Lie-Gruppen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Toroid (Gruppentheorie)"}, {"authorized_access_point": "Kompakte Gruppe"}], "identifier": "http://d-nb.info/gnd/1331710464", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331710464", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331710464", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331710464", "source": "GND"}], "variant_access_point": ["Maximaler Torus", "Maximal Torus"], "authorized_access_point": "Maximaler Toroid"} 1 +2024-09-10 15:43:48.211686 2024-09-10 15:43:48.211691 84874206-e530-4c87-aad5-ac82f4ec384e {"md5": "a690dd227c881a2dfd10ee93cda5b071", "pid": "1331704014", "note": [{"label": ["Wikipedia unter Dorfwaage - https://de.wikipedia.org/w/index.php?title=Dorfwaage&oldid=232866456"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1331704014", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331704014", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331704014", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331704014", "source": "GND"}], "variant_access_point": ["Waagemeister"], "authorized_access_point": "Wiegemeister"} 1 +2024-09-10 15:43:48.291113 2024-09-10 15:43:48.291117 930885a4-5f01-4953-9358-29c358f4db05 {"md5": "c035cc315b02fcd4a3721db9a509d39d", "pid": "1331614392", "note": [{"label": ["Helm, an dem beidseits nachgebildete Flügel angebracht sind; findet sich in antiken und antikisierenden Darstellungen von Göttern (u.a. Hermes/Merkur) und Göttinnen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Helm"}], "identifier": "http://d-nb.info/gnd/1331614392", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331614392", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331614392", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331614392", "source": "GND"}], "authorized_access_point": "Flügelhelm"} 1 +2024-09-10 15:43:48.368627 2024-09-10 15:43:48.368635 383fc222-4bc4-4a7f-b01c-86805f488df1 {"md5": "59875c045047f62825808cddc3d47726", "pid": "1331613426", "note": [{"label": ["in der frühen Mythologie stellt der Sonnenwagen den scheinbar täglichen Sonnenlauf von Ost nach West und den noch vollkommen unklare Rückweg dar, überliefert in mytholog. Darstellungen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kultwagen"}, {"authorized_access_point": "Motiv"}], "identifier": "http://d-nb.info/gnd/1331613426", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331613426", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331613426", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331613426", "source": "GND"}], "authorized_access_point": "Sonnenwagen"} 1 +2024-09-10 15:43:48.468589 2024-09-10 15:43:48.468599 14c80bd0-d4d1-47fd-b114-0d908f89f5a1 {"md5": "ab976ff4cbddc451559f2f882f555604", "pid": "1331605164", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Krakauer_Auschwitzprozess&oldid=244500822"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kriegsverbrecherprozess"}], "identifier": "http://d-nb.info/gnd/1331605164", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331605164", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331605164", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331605164", "source": "GND"}], "variant_access_point": ["Auschwitz-Prozess (Krakau)", "Auschwitz-Prozess (1947)"], "authorized_access_point": "Krakauer Auschwitz-Prozess"} 1 +2024-09-10 15:43:48.566225 2024-09-10 15:43:48.566231 b44f8292-de7c-44e9-b34a-b471710d4261 {"md5": "83c1b1c305abaaffda36e4145046dfc2", "pid": "1331605091", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifier": "http://d-nb.info/gnd/1331605091", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331605091", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331605091", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331605091", "source": "GND"}], "authorized_access_point": "Phrygische Mütze (Motiv)"} 1 +2024-09-10 15:43:48.643839 2024-09-10 15:43:48.643849 294e6492-41f3-4ddb-828a-6ca0dd36db50 {"md5": "7e1d5d1467b931df203b23e2174f7674", "pid": "1331604893", "note": [{"label": ["antike, auf kleinasiatische Ursprünge zurückgehende kegelförmige Mütze der Phryger und Perser aus Stoff oder Leder mit nach vorn fallender rundlicher Spitze"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mütze"}], "identifier": "http://d-nb.info/gnd/1331604893", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331604893", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331604893", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331604893", "source": "GND"}], "authorized_access_point": "Phrygische Mütze"} 1 +2024-09-10 15:43:48.743902 2024-09-10 15:43:48.743909 960be273-9fce-4ec5-b55f-b85983888c54 {"md5": "7f7ee84db9e371eef42e63a153039d05", "pid": "1331603897", "note": [{"label": ["Fabelwesen, im ersten Teil ein Pferd, im letzten in einen schlangenartigen Fisch übergehend"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fabeltiere"}], "identifier": "http://d-nb.info/gnd/1331603897", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331603897", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331603897", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331603897", "source": "GND"}], "variant_access_point": ["Hippokamp", "Hippocamp"], "authorized_access_point": "Hippokampos"} 1 +2024-09-10 15:43:48.822417 2024-09-10 15:43:48.822421 3d982278-e5d6-4bfb-93bc-dada3ba2cd06 {"md5": "4cec398dad86c1a7a431ea1892211b81", "pid": "1331594014", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Schlacht_um_Pensacola_(1781)&oldid=185703545", "Wikipedia - https://en.wikipedia.org/w/index.php?title=Siege_of_Pensacola&oldid=1231422844"], "noteType": "dataSource"}, {"label": ["Teil des spanischen Feldzugs gegen die britische Kolonie Westflorida während des amerik. Unabhängigkeitskrieges."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schlacht"}], "related": [{"authorized_access_point": "Nordamerikanischer Unabhängigkeitskrieg"}], "identifier": "http://d-nb.info/gnd/1331594014", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331594014", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331594014", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331594014", "source": "GND"}], "variant_access_point": ["Belagerung von Pensacola", "Siege of Pensacola"], "authorized_access_point": "Schlacht um Pensacola (1781)"} 1 +2024-09-10 15:43:48.882641 2024-09-10 15:43:48.882645 0ad7b906-0615-44e9-afb3-5a1185326935 {"md5": "e3d5c3de74d2aee3b82025a0815ececd", "pid": "1331592208", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=M%C3%BCcken-H%C3%A4ndelwurz&oldid=245590641"], "noteType": "dataSource"}, {"label": ["Art aus der Gattung der Händelwurzen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Orchideen"}], "identifier": "http://d-nb.info/gnd/1331592208", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331592208", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331592208", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331592208", "source": "GND"}], "variant_access_point": ["Gymnadenia conopsea", "Langsporn-Händelwurz", "Fliegen-Händelwurz", "Große Händelwurz"], "authorized_access_point": "Mücken-Händelwurz"} 1 +2024-09-10 15:43:48.941661 2024-09-10 15:43:48.941665 876c7acc-c62c-4c3b-85af-953b2f03814d {"md5": "bf6dc683d0f13f05bcbd8f355f05541d", "pid": "1331584167", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Vizekanzler"}], "identifier": "http://d-nb.info/gnd/1331584167", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331584167", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331584167", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331584167", "source": "GND"}], "authorized_access_point": "Vizekanzlerin"} 1 +2024-09-10 15:43:49.0162 2024-09-10 15:43:49.016203 060928ba-dce9-4aec-95bc-3897043fe82e {"md5": "6807daa6dd9197c33d94e0ef82f37af3", "pid": "1331530806", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Holzmerkmal&oldid=230021794"], "noteType": "dataSource"}, {"label": ["Als Holzmerkmale werden alle Eigenschaften bezeichnet, welche die individuelle Gestalt von Holz beschreiben."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Holz"}], "identifier": "http://d-nb.info/gnd/1331530806", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331530806", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331530806", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331530806", "source": "GND"}], "variant_access_point": ["Holz"], "authorized_access_point": "Holzmerkmal"} 1 +2024-09-10 15:43:49.088918 2024-09-10 15:43:49.088922 9b79a00a-bec7-4abf-bbf5-b4b2b002902f {"md5": "a83fdc72205fb4da7f1de5c9a3cc51e7", "pid": "1331496918", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Wasserstoffionenkonzentration"}], "identifier": "http://d-nb.info/gnd/1331496918", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331496918", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331496918", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331496918", "source": "GND"}], "authorized_access_point": "Isoelektrischer Punkt"} 1 +2024-09-10 15:43:49.175668 2024-09-10 15:43:49.175672 76920769-ee2b-4463-a578-cc5646291425 {"md5": "4e2d44e5adf7ed7ea16d2b47ad7c2176", "pid": "1331482941", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Abrechnungsbetrug&oldid=239347627"], "noteType": "dataSource"}, {"label": ["Als Abrechnungsbetrug bezeichnet man eine vorsätzliche Manipulation bei der Rechnungsstellung durch einen Leistungserbringer im Gesundheitswesen, die den Empfänger zu einer Vermögensdisposition veranlasst, obwohl die vom jeweiligen Vergütungssystem vorgesehenen Voraussetzungen nicht vorliegen."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Betrug"}], "identifier": "http://d-nb.info/gnd/1331482941", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331482941", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331482941", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331482941", "source": "GND"}], "authorized_access_point": "Abrechnungsbetrug"} 1 +2024-09-10 15:43:49.252701 2024-09-10 15:43:49.252706 e237a6f0-273e-4968-b386-97155269575e {"md5": "c2d2ba371b449c0cb43dbf8fcc887598", "pid": "1331380073", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifier": "http://d-nb.info/gnd/1331380073", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331380073", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331380073", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331380073", "source": "GND"}], "authorized_access_point": "Blumensprache (Motiv)"} 1 +2024-09-10 15:43:49.346773 2024-09-10 15:43:49.346778 c3172a05-07ce-4b4f-b832-1ba8fef6701f {"md5": "3b2e18b4e062bfa4dbb3c03ccbcb99a2", "pid": "1331102170", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Versehgarnitur&oldid=244395395"], "noteType": "dataSource"}, {"label": ["Eine Versehgarnitur (auch Versehbesteck) gab es bis in die Mitte des 20. Jahrhunderts hinein in vielen katholischen Haushalten. Der Priester gebrauchte sie bei der Spendung der Krankensalbung."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kirchengerät"}], "identifier": "http://d-nb.info/gnd/1331102170", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331102170", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331102170", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331102170", "source": "GND"}], "variant_access_point": ["Versehbesteck"], "authorized_access_point": "Versehgarnitur"} 1 +2024-09-10 15:43:49.432627 2024-09-10 15:43:49.432631 3ef8a058-4d5d-47dc-9c0d-9500c9925656 {"md5": "fcbd05aab735b6e1c974f916a223f052", "pid": "1330854640", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Klangsynthese&oldid=237322405"], "noteType": "dataSource"}, {"label": ["Methode zur Herstellung künstlicher oder Abwandlung natürlicher Klänge"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Klangerzeugung"}], "identifier": "http://d-nb.info/gnd/1330854640", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330854640", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330854640", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330854640", "source": "GND"}], "authorized_access_point": "Klangsynthese"} 1 +2024-09-10 15:43:49.512984 2024-09-10 15:43:49.512993 d29ddf15-369b-422a-8708-c0d9454189ea {"md5": "34bbd6846a4b148274ef26095cf69297", "pid": "1330843584", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifier": "http://d-nb.info/gnd/1330843584", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330843584", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330843584", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330843584", "source": "GND"}], "authorized_access_point": "Theaterbau (Motiv)"} 1 +2024-09-10 15:43:49.584572 2024-09-10 15:43:49.584576 dfe47409-6dcc-4d1f-b1dc-4f384e62e1c4 {"md5": "4d8bc154dec10729fd1d9c4728ad87a7", "pid": "1330586557", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Daihatsu_Feroza&oldid=240372676"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Personenkraftwagen"}], "related": [{"authorized_access_point": "Daihatsu"}], "identifier": "http://d-nb.info/gnd/1330586557", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330586557", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330586557", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330586557", "source": "GND"}], "authorized_access_point": "Daihatsu Feroza"} 1 +2024-09-10 15:43:49.655712 2024-09-10 15:43:49.655714 b6a4a86e-f03f-40f0-a8a0-5f09b38f9dde {"md5": "6c9b8600869f204e9380494fdb86cf9b", "pid": "1330586271", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Elbe_3_(Schiff,_1888)&oldid=238101652"], "noteType": "dataSource"}, {"label": ["Seit 1979 im Museumshafen Oevelgönne in Hamburg liegend; nicht zu verwechseln mit dem weiteren Feuerschiff gleichen Namens \\"Elbe 3 / Bürgermeister Abendroth\\" im Bremerhavener Museumshafens"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Feuerschiff"}], "identifier": "http://d-nb.info/gnd/1330586271", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330586271", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330586271", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330586271", "source": "GND"}], "variant_access_point": ["Leuchtschiff Weser", "Weser (Schiff, 1888-)"], "authorized_access_point": "Elbe 3 (Schiff, 1888-)"} 1 +2024-09-10 15:43:49.735904 2024-09-10 15:43:49.735908 2b32d14f-92ce-42d7-9011-b3b452250353 {"md5": "cc673fb85b38a7ac60c2f6b9e2035775", "pid": "1330585992", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Vespa_P80X&oldid=197009978"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motorroller"}], "related": [{"authorized_access_point": "Vespa"}], "identifier": "http://d-nb.info/gnd/1330585992", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330585992", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330585992", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330585992", "source": "GND"}], "authorized_access_point": "Vespa P80X"} 1 +2024-09-10 15:43:49.81677 2024-09-10 15:43:49.816774 ea726dc6-3dca-4899-937d-0adf8cd8fcf9 {"md5": "5e51183518ad3fda21f35e8ad49477c0", "pid": "1330585747", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Z%C3%BCndapp_R_50&oldid=243884554"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motorroller"}], "related": [{"authorized_access_point": "Zündapp"}], "identifier": "http://d-nb.info/gnd/1330585747", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330585747", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330585747", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330585747", "source": "GND"}], "authorized_access_point": "Zündapp R 50"} 1 +2024-09-10 15:43:49.890714 2024-09-10 15:43:49.890717 ccb5e66b-57a4-4628-a9c3-a71c7647a7f5 {"md5": "a3552c4f6658392de2074b2f46d03e95", "pid": "1330447611", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifier": "http://d-nb.info/gnd/1330447611", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330447611", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330447611", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330447611", "source": "GND"}], "authorized_access_point": "Massaker von Sabra und Schatila (Motiv)"} 1 +2024-09-10 15:43:49.94966 2024-09-10 15:43:49.949663 88e16d24-e5c9-4b1b-9f80-9d9cf3d4c38d {"md5": "2a9eb46a4736f7f9c8cfa1c3d384975d", "pid": "1330433858", "note": [{"label": ["Wikipedia (unter Geschichte des Elektroautos) - https://de.wikipedia.org/w/index.php?title=Geschichte_des_Elektroautos&oldid=243876878"], "noteType": "dataSource"}, {"label": ["Dreirädriges Zwei-Personen-Auto"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Personenkraftwagen"}, {"authorized_access_point": "Elektrofahrzeug"}], "identifier": "http://d-nb.info/gnd/1330433858", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330433858", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330433858", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330433858", "source": "GND"}], "authorized_access_point": "Witkar (Elektroauto)"} 1 +2024-09-10 15:43:50.007125 2024-09-10 15:43:50.007132 5d408db4-9d67-44b9-8b6d-fcf86ef9edd8 {"md5": "267e52d7f2fc046dbfcd802d1c519fe1", "pid": "1330430964", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Datsun&oldid=243657328"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Markenname"}], "identifier": "http://d-nb.info/gnd/1330430964", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330430964", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330430964", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330430964", "source": "GND"}], "variant_access_point": ["Datson (Marke)"], "authorized_access_point": "Datsun (Marke)"} 1 +2024-09-10 15:43:50.075586 2024-09-10 15:43:50.075588 9a158663-eca5-4634-b849-03ae61714429 {"md5": "63c150f5a0caead858add000a69c42b3", "pid": "1330343085", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifier": "http://d-nb.info/gnd/1330343085", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330343085", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330343085", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330343085", "source": "GND"}], "authorized_access_point": "Bergisch Gladbach (Motiv)"} 1 +2024-09-10 15:43:50.163446 2024-09-10 15:43:50.163455 3c3bc386-5927-4981-9a63-99f0d64db287 {"md5": "3c21b6e33bd8ddf448455e9b2731db56", "pid": "1330186664", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Ambisonics&oldid=237488687"], "noteType": "dataSource"}, {"label": ["ein Verfahren zur Aufnahme und Wiedergabe eines Klangfeldes"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Technische Akustik"}, {"authorized_access_point": "Audiotechnik"}], "identifier": "http://d-nb.info/gnd/1330186664", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330186664", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330186664", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330186664", "source": "GND"}], "variant_access_point": ["Ambisonic"], "authorized_access_point": "Ambisonics"} 1 +2024-09-10 15:43:50.255392 2024-09-10 15:43:50.255396 6013ce49-703b-4b21-8e19-df5572c600d5 {"md5": "fd43df77fb44554a87bb5e4efa56b441", "pid": "1329650123", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Kajkavisch"}], "identifier": "http://d-nb.info/gnd/1329650123", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1329650123", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1329650123", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1329650123", "source": "GND"}], "authorized_access_point": "Mundart Kajkavisch (Varaždin)"} 1 +2024-09-10 15:43:50.332094 2024-09-10 15:43:50.332099 06bc3376-794b-45d2-8f7a-f3be009a5252 {"md5": "11747ab9adb07b62ce8d918ff88e446a", "pid": "1329573331", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifier": "http://d-nb.info/gnd/1329573331", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1329573331", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1329573331", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1329573331", "source": "GND"}], "authorized_access_point": "Ordensleute (Motiv)"} 1 +2024-09-10 15:43:50.410109 2024-09-10 15:43:50.41012 91401798-91e2-42e0-9aba-2d74cbf5c922 {"md5": "d8658e4f1cb7ea2767f379bcafb12be5", "pid": "1329325958", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifier": "http://d-nb.info/gnd/1329325958", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1329325958", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1329325958", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1329325958", "source": "GND"}], "authorized_access_point": "Meduse (Motiv)"} 1 +2024-09-10 15:43:50.492874 2024-09-10 15:43:50.492879 cde90459-20c5-4508-9974-e2abdf451561 {"md5": "b6e5d6b893d8c231655c590fe0901126", "pid": "1328905152", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}, {"authorized_access_point": "Pflanzendarstellung"}], "identifier": "http://d-nb.info/gnd/1328905152", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1328905152", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1328905152", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1328905152", "source": "GND"}], "authorized_access_point": "Kaiserkrone (Pflanze, Motiv)"} 1 +2024-09-10 15:43:50.563714 2024-09-10 15:43:50.563718 f95cca64-acfc-4722-83c9-ba2c0c3cf4f3 {"md5": "6f21f4b533989ae2ae48695e72af7f64", "pid": "1328159116", "note": [{"label": ["Nachgewiesen 1929"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Renaissance-Antiqua"}], "identifier": "http://d-nb.info/gnd/1328159116", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1328159116", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1328159116", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1328159116", "source": "GND"}], "variant_access_point": ["Intertype Mediaeval", "Medieval (Druckschrift)", "Mediaeval (Druckschrift)", "Medieval (Druckschrift, New York)", "Intertype-Medieval", "Intertype-Mediaeval"], "authorized_access_point": "Intertype Medieval"} 1 +2024-09-10 15:43:50.639716 2024-09-10 15:43:50.639723 fa54d516-c733-474c-8183-9d2babd82179 {"md5": "a1161ed0c410604956cef87584e3f903", "pid": "1328114813", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Feldmaus (Gattung)"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333493223", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85102534", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85102534"}], "authorized_access_point": "Microtus subterraneus"}], "identifier": "http://d-nb.info/gnd/1328114813", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1328114813", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1328114813", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1328114813", "source": "GND"}], "variant_access_point": ["Microtus subterraneus", "Kleine Wühlmaus", "Pitymys subterraneus", "Kleinwühlmaus"], "authorized_access_point": "Kleinäugige Wühlmaus"} 1 +2024-09-10 15:43:50.721112 2024-09-10 15:43:50.721116 e501114c-874e-4c75-b8fd-2095cb2e7ba9 {"md5": "3665a551a687efd098d5554e308b94ec", "pid": "1326598325", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Gqom&oldid=246252358"], "noteType": "dataSource"}, {"label": ["Genre der elektronischen Tanzmusik, das Anfang der 2010er Jahre in Durban, Südafrika, entstand"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Elektronische Tanzmusik"}, {"authorized_access_point": "House"}], "identifier": "http://d-nb.info/gnd/1326598325", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1326598325", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1326598325", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1326598325", "source": "GND"}], "variant_access_point": ["Igqom", "Igqomu", "Qgom", "Gqom tech", "Sghubu"], "authorized_access_point": "Gqom"} 1 +2024-09-10 15:43:50.791402 2024-09-10 15:43:50.791406 ebb541ad-5901-424b-8cce-403f8d862afe {"md5": "9c1b2a3b5a38c0e5883aae48b1c7e326", "pid": "1325970743", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Minolta_SR-T_303&oldid=228565347"], "noteType": "dataSource"}, {"label": ["mechanische Kleinbild-Spiegelreflexkamera, die von der japanischen Firma Minolta in verschiedenen Varianten von 1973 bis 1980 hergestellt wurde"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Spiegelreflexkamera"}, {"authorized_access_point": "Kleinbildkamera"}], "identifier": "http://d-nb.info/gnd/1325970743", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1325970743", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1325970743", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1325970743", "source": "GND"}], "authorized_access_point": "Minolta SR-T 303"} 1 +2024-09-10 15:43:50.871505 2024-09-10 15:43:50.871511 50a6db9f-c7cb-42d7-8833-99e302047862 {"md5": "20396cbadf8a87de8f92cb11c6206382", "pid": "1325836214", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Kryptowert&oldid=240601727"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Finanzinstrument"}], "identifier": "http://d-nb.info/gnd/1325836214", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1325836214", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1325836214", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1325836214", "source": "GND"}], "variant_access_point": ["Kryptotoken", "Token (Kryptologie)", "Crypto-Asset"], "authorized_access_point": "Kryptowert"} 1 +2024-09-10 15:43:50.932124 2024-09-10 15:43:50.932126 05f9580c-f211-484e-b86f-e7a76ef19753 {"md5": "43093b8ab54d03917acb066fdb278a2f", "pid": "1325526541", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Micro-Credential&oldid=231500268", "EU Vocabularies - https://op.europa.eu/de/web/eu-vocabularies/concept/-/resource?uri=http://eurovoc.europa.eu/c_6659516b", "ABl. EU 2022, C243, S.1 - https://eur-lex.europa.eu/legal-content/DE/TXT/?uri=CELEX:32022H0627(02)"], "noteType": "dataSource"}, {"label": ["Qualifikation zum Nachweis von Lernergebnissen, die im Rahmen eines kurzen, transparenten Kurses oder Moduls erzielt wurde"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Leistungspunkt"}], "identifier": "http://d-nb.info/gnd/1325526541", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1325526541", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1325526541", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1325526541", "source": "GND"}], "variant_access_point": ["Micro-Credential"], "authorized_access_point": "Microcredential"} 1 +2024-09-10 15:43:50.996052 2024-09-10 15:43:50.996056 6496b1c5-6c33-48e4-9f67-4237d6053367 {"md5": "25853d14f346cb93a4ea23be2dfbe835", "pid": "1324473703", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Terrorangriff_der_Hamas_auf_Israel_2023&oldid=243422572"], "noteType": "dataSource"}, {"label": ["Terroristischer Überfall unter Führung der palästinensischen radikal-islamistischen Hamas, der vom Gazastreifen aus gegen Israel verübt wurde."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Attentat"}], "related": [{"authorized_access_point": "Nahostkonflikt"}, {"authorized_access_point": "Israel-Hamas-Krieg"}], "identifier": "http://d-nb.info/gnd/1324473703", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1324473703", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1324473703", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1324473703", "source": "GND"}], "variant_access_point": ["Anschlag der Hamas auf Israel 2023", "Operation Al-Aksa-Flut", "7. Oktober (Attentat)", "Siebenter Oktober (Attentat)", "Siebter Oktober (Attentat)"], "authorized_access_point": "Terrorangriff der Hamas auf Israel 2023"} 1 +2024-09-10 15:43:51.066374 2024-09-10 15:43:51.066377 8b7d308f-1d97-487e-916b-4345a65cc1d1 {"md5": "7f5b266779f76cea9afe167b5b9894fb", "pid": "1324101571", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Anarchafeminismus&oldid=243042613"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1324101571", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1324101571", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1324101571", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1324101571", "source": "GND"}], "authorized_access_point": "Anarchafeminismus"} 1 +2024-09-10 15:43:51.123285 2024-09-10 15:43:51.123288 9e26847c-fff9-4ae9-a58d-10b0b581528e {"md5": "6809f93fac51175f59e3472d770bc0fa", "pid": "1322498083", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=DR-Baureihe_270&oldid=240684515#cite_note-1"], "noteType": "dataSource"}, {"label": ["Triebwagen der Berliner S-Bahn"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Elektrotriebwagen"}], "related": [{"authorized_access_point": "S-Bahn"}], "identifier": "http://d-nb.info/gnd/1322498083", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1322498083", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1322498083", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1322498083", "source": "GND"}], "variant_access_point": ["Baureihe 270", "Baureihe 485", "DB-Baureihe 485", "DB-Baureihe 485/885", "DR-Baureihe 270"], "authorized_access_point": "Elektrotriebwagen Baureihe 270"} 1 +2024-09-10 15:43:51.181767 2024-09-10 15:43:51.181772 cd9ff1cd-9b67-4a7f-9c35-a2e43ab01132 {"md5": "5ace2b86b7f2998f229223c49823ae25", "pid": "1321930690", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Buckeltanzfliegen&oldid=211586716", "NCBI-Taxonomy - https://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=1446258"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Empidoidea"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133349338X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16649867", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16649867h"}], "authorized_access_point": "Hybotidae"}], "identifier": "http://d-nb.info/gnd/1321930690", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1321930690", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1321930690", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1321930690", "source": "GND"}], "variant_access_point": ["Hybotidae"], "authorized_access_point": "Buckeltanzfliegen"} 1 +2024-09-10 15:43:51.251467 2024-09-10 15:43:51.251471 90d1b3f8-6817-4584-b5dc-47834de0ce83 {"md5": "14c2dfdb5d187059c077e1a610b39859", "pid": "1321369956", "note": [{"label": ["Gender ist eine analytische Kategorie der Geschlechterforschung bzw. Gender Studies. Sie untersucht (historische, sozio-kulturelle und praxeologische) Zuschreibungen an sowie Verhaltensweisen und Beziehungen von Menschen in Hinblick auf ihre Vergeschlechtlichung. Neues Schlagwort ab 2024. Titel wurden davor meist mit der Kombination der folgenden Schlagwörter erschlossen: Geschlechterrolle, Geschlechterverhältnis und Geschlechterforschung, ggf. weitere", "Zu verwenden bei eher umfassenden oder theoretischen Darstellungen zum Thema des vergeschlechtlichten Zusammenlebens von Menschen. Für thematisch eingegrenzte Darstellungen sind spezifischere Schlagwörter vorzuziehen, wie z.B. \\"Geschlechterrolle\\", \\"Geschlechterverhältnis\\", usw."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Geschlechterforschung"}], "related": [{"authorized_access_point": "Geschlechterrolle"}, {"authorized_access_point": "Geschlechterverhältnis"}, {"authorized_access_point": "Geschlecht"}, {"authorized_access_point": "Geschlechtsunterschied"}, {"authorized_access_point": "Geschlechtsidentität"}, {"authorized_access_point": "Drittes Geschlecht"}, {"authorized_access_point": "Transgender"}, {"authorized_access_point": "Nichtbinäre Geschlechtsidentität"}], "identifier": "http://d-nb.info/gnd/1321369956", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1321369956", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1321369956", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1321369956", "source": "GND"}], "variant_access_point": ["Soziales Geschlecht", "Geschlecht (Kategorie)", "Geschlecht (Gender)"], "authorized_access_point": "Gender"} 1 +2024-09-10 15:43:51.323552 2024-09-10 15:43:51.323557 ba98c3ee-1132-4a88-a1f8-4f71c8582413 {"md5": "83d84331ce0d55f6324731c2f416b7f7", "pid": "1321325754", "note": [{"label": ["Handwerksanweisungen für Tasten- und Saiteninstrumente mit Lehrbeispielen als Lehrgrundlage für die Spielfertigkeit, das mehrstimmige Improvisieren und Intavolieren auf diesen Instrumenten"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Instrumentaltechnik"}, {"authorized_access_point": "Anleitung"}], "identifier": "http://d-nb.info/gnd/1321325754", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1321325754", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1321325754", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1321325754", "source": "GND"}], "variant_access_point": ["Fundamentum"], "authorized_access_point": "Fundamentbuch"} 1 +2024-09-10 15:43:51.405429 2024-09-10 15:43:51.405437 9dbc9a4e-58e6-445a-a612-6033b1332818 {"md5": "18dab9583c06b0c3affbfc4fdfdf973c", "pid": "132121202X", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/w/index.php?title=Jinghu_(instrument)&oldid=1158694952"], "noteType": "dataSource"}, {"label": ["chinesisches Streichinstrument, das hauptsächlich in der Peking-Oper verwendet wird"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Streichinstrument"}], "identifier": "http://d-nb.info/gnd/132121202X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/132121202X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)132121202X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)132121202X", "source": "GND"}], "authorized_access_point": "Jinghu"} 1 +2024-09-10 15:43:51.495607 2024-09-10 15:43:51.495611 43a13747-1dda-48d4-8043-c49e4d7c7362 {"md5": "aa03c2b6c5f6a91b2bed47909c29cc2a", "pid": "1319608302", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/w/index.php?title=1923_Spanish_coup_d%27%C3%A9tat&oldid=1228246566"], "noteType": "dataSource"}, {"label": ["Staatsstreich von Miguel Primo de Rivera 1923 in Spanien"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Staatsstreich"}], "identifier": "http://d-nb.info/gnd/1319608302", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1319608302", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1319608302", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1319608302", "source": "GND"}], "variant_access_point": ["Putsch in Spanien (1923)"], "authorized_access_point": "Staatsstreich in Spanien (1923)"} 1 +2024-09-10 15:43:51.564048 2024-09-10 15:43:51.564051 a3dee575-a49e-4d0a-96de-e45c825226dd {"md5": "86303381dba8e41b3e61e9b8d447505c", "pid": "1319352146", "note": [{"label": ["Einzige Art der Familie Walhaie (Rhincodontidae)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Haie (Ordnung)"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333493509", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85146344", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85146344"}], "authorized_access_point": "Whale shark"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333493509", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF15515151", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb155151519"}], "authorized_access_point": "Requin baleine"}], "identifier": "http://d-nb.info/gnd/1319352146", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1319352146", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1319352146", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1319352146", "source": "GND"}], "variant_access_point": ["Rhincodon typus"], "authorized_access_point": "Walhai"} 1 +2024-09-10 15:43:51.628705 2024-09-10 15:43:51.628709 5afb42e5-1f2c-4d3e-a821-df4e3295c007 {"md5": "ab57955de2485df7a9dedcf67bda8cf5", "pid": "1318875676", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Krieg_in_Israel_und_Gaza_seit_2023&oldid=242011894"], "noteType": "dataSource"}, {"label": ["Krieg zwischen Israel und Hamas, ausgelöst durch den Terrorangriff der Hamas auf Israel am 7. Oktober 2023"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Krieg"}], "related": [{"authorized_access_point": "Terrorangriff der Hamas auf Israel 2023"}, {"authorized_access_point": "Nahostkonflikt"}], "identifier": "http://d-nb.info/gnd/1318875676", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1318875676", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1318875676", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1318875676", "source": "GND"}], "variant_access_point": ["Hamas-Israel-Krieg", "Krieg Israel-Hamas", "Krieg Hamas-Israel", "Krieg zwischen Israel und Hamas", "Krieg zwischen Hamas und Israel", "Israel-Gaza-Krieg", "Krieg Gaza-Israel", "Israel-Hamas war", "Hamas-Israel war", "Israel-Gaza war", "Gaza-Israel war", "Guerre Israël-Hamas", "Guerre Hamas-Israël", "Guerre Israël-Gaza", "Guerre Gaza-Israël"], "authorized_access_point": "Israel-Hamas-Krieg"} 1 +2024-09-10 15:43:51.707593 2024-09-10 15:43:51.707596 318d6394-17f8-4433-ab31-c43b5bed3a99 {"md5": "cbe8a93e2f998c3079a42443e07f0422", "pid": "1318600871", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Haager_Schule&oldid=240944142"], "noteType": "dataSource"}, {"label": ["Bezeichnung für eine Gruppe niederländischer Künstler, die nach einer Erneuerung der Malerei strebte; Hauptvertreter W. Roelofs, J. Israëls, J. H. Weissenbruch, H. W. Mesdag, J., M. und W. Maris sowie A. Mauve, die ständig oder zeitweise in Den Haag lebten"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Künstlerschule"}], "related": [{"authorized_access_point": "Malerei"}], "identifier": "http://d-nb.info/gnd/1318600871", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1318600871", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1318600871", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1318600871", "source": "GND"}], "variant_access_point": ["Haagse School", "Schule von Den Haag", "École de La Haye"], "authorized_access_point": "Haager Schule"} 1 +2024-09-10 15:43:51.784272 2024-09-10 15:43:51.784276 82a9cebd-223b-4484-a17b-07b72e2bd72a {"md5": "172b1cf5ffaae0c3d77ce8dd1b94c360", "pid": "1318529573", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Okkultist"}, {"authorized_access_point": "Okkultismus"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331753716", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2020008750", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2020008750"}], "authorized_access_point": "Women occultists"}], "identifier": "http://d-nb.info/gnd/1318529573", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1318529573", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1318529573", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1318529573", "source": "GND"}], "authorized_access_point": "Okkultistin"} 1 +2024-09-10 15:43:51.86307 2024-09-10 15:43:51.863074 dbc4e5ec-4261-472d-b751-b27119cb80b7 {"md5": "4a68935a6994c7f84a59f726250efc33", "pid": "1315438240", "note": [{"label": ["Unterhaltungssoftware Selbstkontrolle. Lexikon - https://usk.de/alle-lexikonbegriffe/mod/", "Wikipedia - https://de.wikipedia.org/w/index.php?title=Mod_(Computerspiele)&oldid=240387416"], "noteType": "dataSource"}, {"label": ["Kurzwort für die oftmals communitybasierte Modifikation eines Computerspiels"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Computerspiel"}, {"authorized_access_point": "Änderung"}], "identifier": "http://d-nb.info/gnd/1315438240", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1315438240", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1315438240", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1315438240", "source": "GND"}], "variant_access_point": ["Modifikation (Computerspiel)", "Video Game Mod"], "authorized_access_point": "Mod (Computerspiel)"} 1 +2024-09-10 15:43:51.943546 2024-09-10 15:43:51.943548 702650fb-55bd-4fb6-aa60-2a68529e1770 {"md5": "e5c7aed1a256b06b8478239b4a7c2d9b", "pid": "1315344238", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Aufenthaltsrecht"}], "identifier": "http://d-nb.info/gnd/1315344238", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1315344238", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1315344238", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1315344238", "source": "GND"}], "authorized_access_point": "Subsidiärer Schutz"} 1 +2024-09-10 15:44:00.803453 2024-09-10 15:44:00.803456 7c718e72-8f65-46e3-a012-cc7369453957 {"md5": "4a138c93808b71a2373097a50c1b30e2", "pid": "1064280692", "note": [{"label": ["Nachtfalter aus der Familie der Eulenfalter"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Eulen (Schmetterlinge)"}], "identifier": "http://d-nb.info/gnd/1064280692", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1064280692", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1064280692", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1064280692", "source": "GND"}], "authorized_access_point": "Thysanoplusia orichalcea"} 1 +2024-09-10 15:43:51.999386 2024-09-10 15:43:51.999388 6a72c5db-56b9-4bec-be44-28f69062083f {"md5": "5401772b47d025a4bef568c722d0d2c0", "pid": "1315166526", "note": [{"label": ["Sammelbezeichnung für die v.a. austronesische Sprachen sprechenden melanesischen Bevölkerungsgruppen im äußersten Südosten von Neuguinea und den nördlich und östlich vorgelagerten Archipelen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134218907", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12223472", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12223472w"}], "authorized_access_point": "Massim (peuple de Papouasie-Nouvelle-Guinée)"}], "identifier": "http://d-nb.info/gnd/1315166526", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1315166526", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1315166526", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1315166526", "source": "GND"}], "authorized_access_point": "Massim"} 1 +2024-09-10 15:43:52.062145 2024-09-10 15:43:52.062149 b2417fb4-fcc6-4619-b4ff-3c4634e5775d {"md5": "83f4099f69b838592a8eb72430d3ccc7", "pid": "1314207296", "note": [{"label": ["Werke für zwei und mehr Spielende auf zwei Orgeln"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Orgelmusik"}], "identifier": "http://d-nb.info/gnd/1314207296", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1314207296", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1314207296", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1314207296", "source": "GND"}], "variant_access_point": ["Musik für 2 Orgeln", "Orgelmusik für zwei Instrumente"], "authorized_access_point": "Musik für zwei Orgeln"} 1 +2024-09-10 15:43:52.126449 2024-09-10 15:43:52.126453 d198202d-e63f-4d01-b61f-e292a54cd941 {"md5": "988d62839f9fff0221cf91d5bd2bc955", "pid": "1314016547", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sportlerin"}], "related": [{"authorized_access_point": "Biathlon"}, {"authorized_access_point": "Biathlet"}], "identifier": "http://d-nb.info/gnd/1314016547", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1314016547", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1314016547", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1314016547", "source": "GND"}], "authorized_access_point": "Biathletin"} 1 +2024-09-10 15:43:52.222117 2024-09-10 15:43:52.222126 199fca43-7495-429f-ba6d-ef085b83c8fb {"md5": "e352aa5e676547f12b0d8c032bc16702", "pid": "1314016032", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sportler"}], "related": [{"authorized_access_point": "Biathlon"}, {"authorized_access_point": "Biathletin"}], "identifier": "http://d-nb.info/gnd/1314016032", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1314016032", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1314016032", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1314016032", "source": "GND"}], "authorized_access_point": "Biathlet"} 1 +2024-09-10 15:43:52.324059 2024-09-10 15:43:52.324063 8e3d2f86-25cf-44ff-9701-4d91d61a7a6e {"md5": "a61a049f0b086bb4a100b2da41ad1afb", "pid": "1311509100", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Gimbri&oldid=230664992"], "noteType": "dataSource"}, {"label": ["eine 1 bis 1,5 Meter lange gezupfte Binnenspießlaute mit drei Saiten in den Ländern Marokko, Tunesien und Algerien"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Laute"}], "identifier": "http://d-nb.info/gnd/1311509100", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1311509100", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1311509100", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1311509100", "source": "GND"}], "variant_access_point": ["Ginbri", "Guinbri", "Guembri", "Gmbri", "Gnibra", "Gombri", "Gunbri", "Gunibri"], "authorized_access_point": "Gimbri"} 1 +2024-09-10 15:43:52.412248 2024-09-10 15:43:52.412252 7e3e6370-3ba3-4cc7-a486-8561407d10d0 {"md5": "2a1daf1220afb9b62959588860131279", "pid": "131143609X", "note": [{"label": ["aus dem indischen Saiteninstrument Tanpura abgeleitetes und umgeformtes Saiteninstrument, das auf den Körper gelegt wird"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zupfinstrument"}], "related": [{"authorized_access_point": "Tanbur"}], "identifier": "http://d-nb.info/gnd/131143609X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/131143609X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)131143609X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)131143609X", "source": "GND"}], "variant_access_point": ["Body Tambura"], "authorized_access_point": "Körpertambura"} 1 +2024-09-10 15:43:52.490534 2024-09-10 15:43:52.490543 969ebb65-8da1-47f1-a06c-8b53bbaa22e9 {"md5": "da566f669dc6588d33d28e77b7c16024", "pid": "1311352430", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Hilberts_Hotel&oldid=243090788"], "noteType": "dataSource"}, {"label": ["Von David Hilbert erdachtes Gedankenexperiment zur Veranschaulichung von Unendlichkeiten, Paradoxon"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gedankenexperiment"}, {"authorized_access_point": "Paradoxon"}], "related": [{"authorized_access_point": "Unendlichkeit"}], "identifier": "http://d-nb.info/gnd/1311352430", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1311352430", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1311352430", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1311352430", "source": "GND"}], "variant_access_point": ["Hilbert's paradox of the Grand Hotel", "Hilbert's hotel", "Hilberts Paradoxon des Grand Hotels", "Unendliches Hotelparadoxon", "Hotel infinity"], "authorized_access_point": "Hilberts Hotel"} 1 +2024-09-10 15:43:52.582257 2024-09-10 15:43:52.582262 1a9d1131-a126-46df-bfc3-2912f9100400 {"md5": "68189bdea500950fd0018b3d191f4170", "pid": "1310159343", "note": [{"label": ["Verknüpfe mit dem jeweils zutreffenden Sachverhalt, z. B. Eucharistie. Nicht zu verwenden für rechtliche Sachverhalte; hier liegen speziellere SWW vor, z. B. Dispens oder Aussetzung (Strafrecht)."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1310159343", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1310159343", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1310159343", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1310159343", "source": "GND"}], "authorized_access_point": "Aussetzung"} 1 +2024-09-10 15:43:52.657721 2024-09-10 15:43:52.657725 ac068d27-1557-47ab-b2e5-4facf8e74ee9 {"md5": "c936d8263886f55880632bb93c68f59a", "pid": "130899687X", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/w/index.php?title=Live_coding&oldid=1168454487"], "noteType": "dataSource"}, {"label": ["Live-Coding beschreibt eine künstlerische Praxis und kreative Technik, bei der Computerprogramme in Echtzeit und auf der Bühne geschrieben werden, wird häufig zur Erstellung von klang- und bildbasierten digitalen Medien sowie von Lichtsystemen, improvisiertem Tanz und Poesie, Computermusik verwendet"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Programmierung"}], "identifier": "http://d-nb.info/gnd/130899687X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/130899687X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)130899687X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)130899687X", "source": "GND"}], "variant_access_point": ["Live Coding", "Just-in-Time-Programmierung", "On-the-fly-Programmierung", "Konversationsprogrammierung"], "authorized_access_point": "Live-Coding"} 1 +2024-09-10 15:43:52.749464 2024-09-10 15:43:52.749468 fe224598-37ab-4127-ada9-0780458e41c3 {"md5": "a4bb0d1786ab772ec202584d573b6cd7", "pid": "1308455038", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Science_and_Technology_Studies&oldid=233892252", "Niewöhner, Sørensen, Beck: Science and Technology Studies. Eine sozialanthropologische Einführung - https://doi.org/10.14361/transcript.9783839421062.intro", "Havard University. What is STS? - https://sts.hks.harvard.edu/about/whatissts.html"], "noteType": "dataSource"}, {"label": ["Interdisziplinäres Forschungsfeld bzw. interdisziplinärer Studiengang, der sich mit der Verschränkung von Wissenschaft, Technologie und Gesellschaft beschäftigt"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Forschung"}], "related": [{"authorized_access_point": "Wissenschaftsforschung"}, {"authorized_access_point": "Techniksoziologie"}, {"authorized_access_point": "Wissenschaftssoziologie"}, {"authorized_access_point": "Actor-Network-Theory"}], "identifier": "http://d-nb.info/gnd/1308455038", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1308455038", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1308455038", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1308455038", "source": "GND"}], "variant_access_point": ["Wissenschafts- und Technikforschung", "STS"], "authorized_access_point": "Science and Technology Studies"} 1 +2024-09-10 15:43:52.853132 2024-09-10 15:43:52.853144 b03956d0-fb73-4b5e-8ad4-d079398743a1 {"md5": "1406dd5849397d0a511b00c152117eca", "pid": "1305992857", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zelltransplantation"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1305993039", "source": "GND"}, {"type": "bf:Nbn", "value": "D033581", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D033581"}], "authorized_access_point": "Stem Cell Transplantation"}], "identifier": "http://d-nb.info/gnd/1305992857", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1305992857", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1305992857", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1305992857", "source": "GND"}], "variant_access_point": ["Stammzellentransplantation"], "authorized_access_point": "Stammzelltransplantation"} 1 +2024-09-10 15:43:52.933833 2024-09-10 15:43:52.933839 e8a0ab24-d583-4762-b786-28d1335da946 {"md5": "832837aad21e4fe9aab52c731e011dea", "pid": "1302496050", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Vergewaltigung&oldid=236552945#Gruppenvergewaltigung"], "noteType": "dataSource"}, {"label": ["Vergewaltigung einer oder mehrerer Personen durch eine Gruppe von Personen."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Vergewaltigung"}], "identifier": "http://d-nb.info/gnd/1302496050", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1302496050", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1302496050", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1302496050", "source": "GND"}], "authorized_access_point": "Gruppenvergewaltigung"} 1 +2024-09-10 15:43:52.99419 2024-09-10 15:43:52.994193 3d3d02cf-355f-47d3-be47-a8407175e3cb {"md5": "aecff357e98e384e5049dbde4460903e", "pid": "129922539X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Motivierende_Gespr%C3%A4chsf%C3%BChrung&oldid=232935635"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gesprächsführung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "sh2006005865", "source": "DLC"}, {"type": "uri", "value": "https://id.loc.gov/authorities/subjects/sh2006005865"}], "authorized_access_point": "Motivational interviewing"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "FRBNF16167865", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16167865w"}], "authorized_access_point": "Entretiens motivationnels"}], "identifier": "http://d-nb.info/gnd/129922539X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/129922539X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)129922539X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)129922539X", "source": "GND"}], "variant_access_point": ["Motivationale Gesprächsführung"], "authorized_access_point": "Motivierende Gesprächsführung"} 1 +2024-09-10 15:43:53.052301 2024-09-10 15:43:53.052304 5a7c7a7f-c5fa-4259-9f65-d4f72f39c3d6 {"md5": "5c5e50583ea93d30a39090a279f52b83", "pid": "1298858054", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Retrocomputing&oldid=232682995"], "noteType": "dataSource"}, {"label": ["Nutzung alter, von ihren Herstellern aufgegebener Hard- und Software zur Datensicherung, Forschung oder zum Zeitvertreib (für letzteres verwandter Begriff: Retrogaming)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Computer"}], "related": [{"authorized_access_point": "Software"}, {"authorized_access_point": "Datenverarbeitung"}, {"authorized_access_point": "Retrogaming"}], "identifier": "http://d-nb.info/gnd/1298858054", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1298858054", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1298858054", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1298858054", "source": "GND"}], "variant_access_point": ["Retro-Computing", "Computerarchäologie"], "authorized_access_point": "Retrocomputing"} 1 +2024-09-10 15:43:53.120327 2024-09-10 15:43:53.120332 ebef95b5-65d4-4525-9d8d-ee434ff58392 {"md5": "a20d66c59e065a89176559a1a9b7bb38", "pid": "1298312817", "note": [{"label": ["Homepage - https://emin.org"], "noteType": "dataSource"}, {"label": ["1971 durch Raymond Armin, genannt Leo, in London begründet, heute internationales Netzwerk Gleichgesinnter"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Lebensphilosophie"}, {"authorized_access_point": "Neue Religion"}, {"authorized_access_point": "Netzwerk"}], "related": [{"authorized_access_point": "Esoterik"}], "identifier": "http://d-nb.info/gnd/1298312817", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1298312817", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1298312817", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1298312817", "source": "GND"}], "variant_access_point": ["Emin society", "The Eminent Way", "Template Network", "Emin movement"], "authorized_access_point": "Emin"} 1 +2024-09-10 15:43:53.216878 2024-09-10 15:43:53.216881 66ab20cf-3fbd-4b83-bbb0-8c4f7d0ae432 {"md5": "ac01ada52ae0dca4698e0cac412f2786", "pid": "1297822668", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=White_Power&oldid=235014502"], "noteType": "dataSource"}, {"label": ["Ursprünglich Losungswort des \\"Ku-Klux-Klans\\". Inzwischen Schlüsselbegriff aus rassistischen oder neonazistischen Szenen; steht für die nazistische und rassistische Theorie von der Vorherrschaft der „weißen Rasse“"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Slogan"}, {"authorized_access_point": "Politische Theorie"}], "related": [{"authorized_access_point": "Rassismus"}], "identifier": "http://d-nb.info/gnd/1297822668", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1297822668", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1297822668", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1297822668", "source": "GND"}], "variant_access_point": ["White Pride", "WP"], "authorized_access_point": "White Power"} 1 +2024-09-10 15:43:53.31012 2024-09-10 15:43:53.310123 6f859375-7e45-41be-8d58-6d94e94ca666 {"md5": "e32f2913c779c5082e9e3310318eceff", "pid": "1295539519", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Tchamba_(Kult)&oldid=224257647"], "noteType": "dataSource"}, {"label": ["Besessenheitskult v.a. im Süden von Togo und Benin, bei dem die Geister ehemaliger Sklaven geehrt werden, die v.a. die Nachfahren früherer Sklaven und Sklavenbesitzer befallen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Besessenheitskult"}], "related": [{"authorized_access_point": "Geister"}, {"authorized_access_point": "Wodu"}], "identifier": "http://d-nb.info/gnd/1295539519", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1295539519", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1295539519", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1295539519", "source": "GND"}], "variant_access_point": ["Tsamba", "Tsaba", "Tsemba", "Tseba", "Tchamba-Kult"], "authorized_access_point": "Tchamba"} 1 +2024-09-10 15:43:53.406245 2024-09-10 15:43:53.406249 582894e0-cc89-4a39-8a03-7c93b4b95ae5 {"md5": "9ee11005a634c0d7e2b3e0f0200ed8cf", "pid": "1293306673", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Familienname"}], "identifier": "http://d-nb.info/gnd/1293306673", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1293306673", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1293306673", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1293306673", "source": "GND"}], "variant_access_point": ["Gabelmann (Familienname)"], "authorized_access_point": "Gabel (Familienname)"} 1 +2024-09-10 15:43:53.483984 2024-09-10 15:43:53.483988 a2495155-c1ae-4d02-82a7-baab093bfc63 {"md5": "9fa427dedcc14b5f8a59e1c0fdd1dc69", "pid": "1283002477", "note": [{"label": ["Calothrixin A oder I und Calothrixin B oder II sind Metabolite des Cyanobakteriums Calothrix mit potentieller Anti-Malaria-Wirkung"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Alkaloide"}], "identifier": "http://d-nb.info/gnd/1283002477", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1283002477", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1283002477", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1283002477", "source": "GND"}], "authorized_access_point": "Calothrixine"} 1 +2024-09-10 15:43:53.553798 2024-09-10 15:43:53.553802 bfec3881-fded-4a0d-9071-2e396a1c5158 {"md5": "66fcfed67d203fe04380869d5578b051", "pid": "127857025X", "note": [{"label": ["Wikipedia (eng) - https://en.wikipedia.org/w/index.php?title=Viva_Maria_(movement)&oldid=1039075561"], "noteType": "dataSource"}, {"label": ["Antinapoleonische Bewegung in Italien zwischen 1799 und 1800"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Politische Bewegung"}], "identifier": "http://d-nb.info/gnd/127857025X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/127857025X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)127857025X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)127857025X", "source": "GND"}], "authorized_access_point": "Viva Maria (Politische Bewegung)"} 1 +2024-09-10 15:43:53.612544 2024-09-10 15:43:53.612548 599d206b-21b6-4ed2-b98f-4edb63ba3d5b {"md5": "af3727528ccf4c17d9dbf301dd98c2c7", "pid": "1278063730", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Dritter_Ort&oldid=227398286"], "noteType": "dataSource"}, {"label": ["1989 vom Soziologen Ray Oldenburg geprägter Begriff, der Orte der Gemeinschaft umschreibt, als Ausgleich zum Zuhause (erster Ort) und zum Arbeitsplatz (zweiter Ort)."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Öffentlicher Raum"}], "related": [{"authorized_access_point": "Sozialraum"}], "identifier": "http://d-nb.info/gnd/1278063730", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1278063730", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1278063730", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1278063730", "source": "GND"}], "variant_access_point": ["Third place", "Great good place"], "authorized_access_point": "Dritter Ort"} 1 +2024-09-10 15:45:51.386022 2024-09-10 15:45:51.386036 4600c6e1-4f29-4014-b39d-a9ab74f08c1f {"md5": "2c8d73490053cb5d6f8ebdaa0455661a", "pid": "1267493216", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifier": "http://d-nb.info/gnd/1267493216", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1267493216", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1267493216", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1267493216", "source": "GND"}], "authorized_access_point": "Isabel (Druckschrift)"} 1 +2024-09-10 15:43:53.698459 2024-09-10 15:43:53.698463 ea218f0d-efef-47d5-9812-a876299ac278 {"md5": "45847765ae41063135a7e56fe7cbae76", "pid": "1277678871", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Kalmarkrieg&oldid=196297680"], "noteType": "dataSource"}, {"label": ["Krieg zwischen Dänemark und Schweden um die Kontrolle der Finnmark"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Krieg"}], "identifier": "http://d-nb.info/gnd/1277678871", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1277678871", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1277678871", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1277678871", "source": "GND"}], "variant_access_point": ["Kalmarkriget", "Kalmarkrigen"], "authorized_access_point": "Kalmarkrieg"} 1 +2024-09-10 15:43:53.777762 2024-09-10 15:43:53.777772 4e4ca021-f554-4239-ae85-b24c554016ef {"md5": "953c92652b510847ab787f7e4c74dcdb", "pid": "1277560676", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Mundart Süditalienisch (Basilicata)"}], "identifier": "http://d-nb.info/gnd/1277560676", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1277560676", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1277560676", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1277560676", "source": "GND"}], "authorized_access_point": "Mundart Süditalienisch, Basilicata (Monte-Pollino-Gebiet)"} 1 +2024-09-10 15:43:53.860771 2024-09-10 15:43:53.860775 cc7e7cb0-5a10-4c97-8dc1-8b34c88c1fe6 {"md5": "82b6b11b51956c2482a3484a863527c9", "pid": "1276707304", "note": [{"label": ["Als Emittenten bezeichnet man eine juristische Person, die zum Handel bestimmte Wertpapiere und Vermögensanlagen ausgibt."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kapitalmarktrecht"}], "related": [{"authorized_access_point": "Kreditwesen"}], "identifier": "http://d-nb.info/gnd/1276707304", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1276707304", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1276707304", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1276707304", "source": "GND"}], "authorized_access_point": "Emittent"} 1 +2024-09-10 15:43:53.944052 2024-09-10 15:43:53.944056 37f74c1d-36f1-4220-b902-62a07a09a92a {"md5": "e65b0b1272803297f58e6db5c4521969", "pid": "1276176597", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Bushcrafting&oldid=228966190"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Überlebenstraining"}, {"authorized_access_point": "Trekking"}], "identifier": "http://d-nb.info/gnd/1276176597", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1276176597", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1276176597", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1276176597", "source": "GND"}], "variant_access_point": ["Bushcraft", "Waldhandwerk", "Buschhandwerk", "Buschfertigkeit", "Naturhandwerk", "Naturfertigkeit"], "authorized_access_point": "Bushcrafting"} 1 +2024-09-10 15:43:54.000716 2024-09-10 15:43:54.000721 638100bf-b865-451d-b557-a01bfb179695 {"md5": "f7845a2b05854dc6649a7e6955809d03", "pid": "1275619533", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Knickfu%C3%9F&oldid=200221909"], "noteType": "dataSource"}, {"label": ["Fehlstellung des Fußes mit einer Senkung am inneren Fußrand und einer Anhebung des äußeren Fußrandes"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fußdeformität"}, {"authorized_access_point": "Fehlstellung"}], "identifier": "http://d-nb.info/gnd/1275619533", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1275619533", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1275619533", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1275619533", "source": "GND"}], "variant_access_point": ["Pes valgus", "X-Fuß"], "authorized_access_point": "Knickfuß"} 1 +2024-09-10 15:43:54.057616 2024-09-10 15:43:54.057619 66ba3fe0-0ef4-4b90-a474-1dbeec6749d5 {"md5": "98d676c722f1d9d44ba650b7c0c944a4", "pid": "1275172962", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=The_Legend_of_Zelda&oldid=233760337"], "noteType": "dataSource"}, {"label": ["Videospielserie, in bisher 20 Teilen erschienen ab 1986; die gleichnamigen Mangas beruhen auf den Spielen; inzwischen auch als Fernsehserie erschienen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Abenteuerspiel"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331595134", "source": "GND"}, {"type": "bf:Nbn", "value": "sh90003532", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh90003532"}], "authorized_access_point": "Legend of Zelda (Game)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331595134", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16549048", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16549048v"}], "authorized_access_point": "Zeruda no densetsu (jeu vidéo ; série)"}], "identifier": "http://d-nb.info/gnd/1275172962", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1275172962", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1275172962", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1275172962", "source": "GND"}], "variant_access_point": ["Zeruda no densetsu (Abenteuerspiel)", "Die Legende von Zelda", "Zelda"], "authorized_access_point": "The legend of Zelda (Abenteuerspiel)"} 1 +2024-09-10 15:43:54.128114 2024-09-10 15:43:54.128117 da480567-590d-46ad-ab14-88a0ddaea9fa {"md5": "6187b4e7d0138e688fa1efb936a181ef", "pid": "1274948169", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifier": "http://d-nb.info/gnd/1274948169", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1274948169", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1274948169", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1274948169", "source": "GND"}], "authorized_access_point": "Tat (Motiv)"} 1 +2024-09-10 15:44:01.751709 2024-09-10 15:44:01.751715 3616d492-5852-4985-8171-9da0017f268a {"md5": "a03093bd2dfd8ec54b5dbd70b5b61959", "pid": "1060882191", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Westfälisch"}], "identifier": "http://d-nb.info/gnd/1060882191", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060882191", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060882191", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060882191", "source": "GND"}], "authorized_access_point": "Mundart Westfälisch (Hagen-Hohenlimburg)"} 1 +2024-09-10 15:43:54.208624 2024-09-10 15:43:54.208628 05a0e1e2-4a10-4a75-a993-478a644a9598 {"md5": "3f3e17f132069aa234d7bb4b4f868cba", "pid": "1274269121", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/Spieleautor"], "noteType": "dataSource"}, {"label": ["Spieleautoren erfinden und entwickeln Gesellschaftsspiele."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Autorin"}], "related": [{"authorized_access_point": "Spieleautor"}, {"authorized_access_point": "Gesellschaftsspiel"}], "identifier": "http://d-nb.info/gnd/1274269121", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1274269121", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1274269121", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1274269121", "source": "GND"}], "variant_access_point": ["Spiele-Autorin"], "authorized_access_point": "Spieleautorin"} 1 +2024-09-10 15:43:54.29045 2024-09-10 15:43:54.290453 282522ea-5c3f-4552-9bcc-8c6f811a71f3 {"md5": "cc6e3a44105e87b6223d5b7a8741c4ed", "pid": "1273395077", "note": [{"label": ["Homepage - https://www.so-geht-saechsisch.de/saechsischer-verlagspreis", "Wikipedia - https://de.wikipedia.org/w/index.php?title=S%C3%A4chsischer_Verlagspreis&oldid=217233083"], "noteType": "dataSource"}, {"label": ["Branchenpreis - Auszeichnung unabhängiger sächsischer Verlage für ihr Wirken und besondere verlegerische Leistungen", "Vergabe seit 2018, anfangs an jeweils einen Verlag, ab 2022 an bis zu 20 Verlage"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kulturpreis"}], "related": [{"authorized_access_point": "Verlag"}], "identifier": "http://d-nb.info/gnd/1273395077", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1273395077", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1273395077", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1273395077", "source": "GND"}], "authorized_access_point": "Sächsischer Verlagspreis"} 1 +2024-09-10 15:43:54.378591 2024-09-10 15:43:54.378599 e742a804-248a-40ff-803e-b30ddfb2681e {"md5": "4a69316c87526034407cc08c7ae2e4a7", "pid": "1273298268", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Elektronisches_Rezept&oldid=227742217"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Arzneiverordnung"}, {"authorized_access_point": "Elektronische Gesundheitskarte"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333252048", "source": "GND"}, {"type": "bf:Nbn", "value": "D055695", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D055695"}], "authorized_access_point": "Electronic Prescribing"}], "identifier": "http://d-nb.info/gnd/1273298268", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1273298268", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1273298268", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1273298268", "source": "GND"}], "variant_access_point": ["E-Rezept", "eRezept"], "authorized_access_point": "Elektronisches Rezept"} 1 +2024-09-10 15:43:54.471607 2024-09-10 15:43:54.471611 5f82b444-26bb-410f-ae28-accfce07d501 {"md5": "03543c98c8bc423a229908943fd18028", "pid": "1273295374", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Pescetarismus&oldid=225934559"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ernährung"}, {"authorized_access_point": "Speise"}], "identifier": "http://d-nb.info/gnd/1273295374", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1273295374", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1273295374", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1273295374", "source": "GND"}], "variant_access_point": ["Pescetarische Ernährung", "Pescetarier-Diät"], "authorized_access_point": "Pescetarische Kost"} 1 +2024-09-10 15:43:54.562384 2024-09-10 15:43:54.562387 aa7060a1-c0c9-4334-b8cf-b5dce96a86a8 {"md5": "7e8604abccc2bd23526790b9f8d88ba4", "pid": "1270459880", "note": [{"label": ["Aus mehreren Ethnien zusammengesetzte Volksgruppe der Bantu in Ostafrika, die größtenteils in der West-Provinz (Hauptstadt: Kakamega) von Kenia in der Region um den Mount Elgon und in Südostuganda leben."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Bantu"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332861334", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85079057", "source": "DLC"}, {"type": "uri", "value": "https://id.loc.gov/authorities/subjects/sh85079057"}], "authorized_access_point": "Luyia (African people)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332861334", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13496553", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13496553j"}], "authorized_access_point": "Luyia (peuple d'Afrique)"}], "identifier": "http://d-nb.info/gnd/1270459880", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1270459880", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1270459880", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1270459880", "source": "GND"}], "variant_access_point": ["Luhia", "Baluhya", "Bantu-Kavirondo", "Lujia", "Luyia", "Abaluhyia", "Abaluyia"], "authorized_access_point": "Luhya"} 1 +2024-09-10 15:43:54.641634 2024-09-10 15:43:54.641639 5ceb2831-22ee-4d0c-b9cb-6cd6413ce1e3 {"md5": "edf6ba665706e3e0156db28d6c224c49", "pid": "1268867829", "note": [{"label": ["OBV - https://permalink.obvsg.at/AC16604043"], "noteType": "dataSource"}, {"label": ["Sammelbezeichnung für Syndrome mit mikroangiopathischer hämolytischer Anämie, Thrombozythopenie und thrombotischen Verschlüssen in der Mikrozirkulation"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mikroangiopathie"}], "related": [{"authorized_access_point": "Mikrozirkulationsstörung"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1277091897", "source": "GND"}, {"type": "bf:Nbn", "value": "D057049", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D057049"}], "authorized_access_point": "Thrombotic Microangiopathies"}], "identifier": "http://d-nb.info/gnd/1268867829", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1268867829", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1268867829", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1268867829", "source": "GND"}], "variant_access_point": ["TMA"], "authorized_access_point": "Thrombotische Mikroangiopathie"} 1 +2024-09-10 15:43:54.736413 2024-09-10 15:43:54.73642 b61432d4-973f-4d34-975e-54f578f3c113 {"md5": "cead7fc24d93a63581786931af7e111b", "pid": "1267608781", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Rohrbach_Ro_IV&oldid=215067231"], "noteType": "dataSource"}, {"label": ["Britisches Flugboot, unter Lizenz nach einem Entwurf von Rohrbach gebaut von Beardsmore, Erstflug 1925"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Flugboot"}], "identifier": "http://d-nb.info/gnd/1267608781", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1267608781", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1267608781", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1267608781", "source": "GND"}], "variant_access_point": ["Beardmore Inverness", "Beardmore BeRo.2 Inverness", "Inverness (Flugboot)", "Ro IV", "BeRo Inverness", "Ro-IV Inverness"], "authorized_access_point": "Rohrbach Ro IV"} 1 +2024-09-10 15:43:54.819631 2024-09-10 15:43:54.819639 89b635d8-d9fe-417d-b70c-2d33bb7e43e8 {"md5": "3923087747dd1d1811b53571cf025e9f", "pid": "1267608366", "note": [{"label": ["Wikipedia (eng) - https://en.wikipedia.org/w/index.php?title=Beardmore_Inflexible&oldid=1018097769"], "noteType": "dataSource"}, {"label": ["Britischer Bomber, zwischen 1925 und 1927 hergestellt von Beardmore nach einem Entwurf von Rohrbach. 1928 Erstflug, 1930 Außerdienststellung."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bombenflugzeug"}], "identifier": "http://d-nb.info/gnd/1267608366", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1267608366", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1267608366", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1267608366", "source": "GND"}], "variant_access_point": ["Rohrbach Ro VI", "BeRo Inflexible", "Inflexible (Flugzeug)", "Ro VI", "Beadmore AV 1 Inflexible", "BeRo 1"], "authorized_access_point": "Beardmore Inflexible"} 1 +2024-09-10 15:43:54.904541 2024-09-10 15:43:54.904545 76bc31da-ae61-4de4-8946-db07b88c021f {"md5": "eb328cb7fbbd7befc1119c4f8fed4ffe", "pid": "1267358122", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifier": "http://d-nb.info/gnd/1267358122", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1267358122", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1267358122", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1267358122", "source": "GND"}], "authorized_access_point": "Beurteilung (Motiv)"} 1 +2024-09-10 15:43:54.982284 2024-09-10 15:43:54.982288 8082e323-1f0b-4ac1-ada9-0b65638fc582 {"md5": "143b999a9e6c783edb02d4b7205cb47c", "pid": "1266800611", "note": [{"label": ["- BERUFENET - https://berufenet.arbeitsagentur.de/berufenet/faces/index;BERUFENETJSESSIONID=Mtv0BwN248FRIrQfZ4wj9Z21aQDNCzvOiov-sEw9T51hrJVD2gfR!-131719411?path=null/suchergebnisse/kurzbeschreibung&dkz=132173&such=pflegefachmann"], "noteType": "dataSource"}, {"label": ["Seit dem 1.1.2020 neue offizielle Berufsbezeichnung in Dtld., das Pflegeberufegesetz führt die bisherigen Berufsausbildungen der Altenpflege, der Gesundheits- und Krankenpflege und der Gesundheits- und Kinderkrankenpflege zusammen.", "Als Homonymenzusatz bei Personenschlagwörtern zugelassen."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Pflegepersonal"}], "related": [{"authorized_access_point": "Pflegefachmann"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133327260X", "source": "GND"}, {"type": "bf:Nbn", "value": "D009726", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D009726"}], "authorized_access_point": "Nurses"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333271700", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2016000330", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2016000330"}], "authorized_access_point": "Women nurses"}], "identifier": "http://d-nb.info/gnd/1266800611", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1266800611", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1266800611", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1266800611", "source": "GND"}], "authorized_access_point": "Pflegefachfrau"} 1 +2024-09-10 15:43:55.043098 2024-09-10 15:43:55.0431 f0194226-6859-481c-96c4-aece85f145c0 {"md5": "6b947fdf4e1cd1dcd791e27e83311a51", "pid": "1266799931", "note": [{"label": ["- BERUFENET - https://berufenet.arbeitsagentur.de/berufenet/faces/index;BERUFENETJSESSIONID=Mtv0BwN248FRIrQfZ4wj9Z21aQDNCzvOiov-sEw9T51hrJVD2gfR!-131719411?path=null/suchergebnisse/kurzbeschreibung&dkz=132173&such=pflegefachmann"], "noteType": "dataSource"}, {"label": ["Seit dem 1.1.2020 neue offizielle Berufsbezeichnung in Dtld., das Pflegeberufegesetz führt die bisherigen Berufsausbildungen der Altenpflege, der Gesundheits- und Krankenpflege und der Gesundheits- und Kinderkrankenpflege zusammen.", "Als Homonymenzusatz bei Personenschlagwörtern zugelassen."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Pflegepersonal"}], "related": [{"authorized_access_point": "Pflegefachfrau"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333273010", "source": "GND"}, {"type": "bf:Nbn", "value": "D009727", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D009727"}], "authorized_access_point": "Nurses, Male"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133327288X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85083530", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85083530"}], "authorized_access_point": "Male nurses"}], "identifier": "http://d-nb.info/gnd/1266799931", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1266799931", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1266799931", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1266799931", "source": "GND"}], "authorized_access_point": "Pflegefachmann"} 1 +2024-09-10 15:43:55.104379 2024-09-10 15:43:55.104382 9fcff652-256c-48a9-af7a-b7d4aa13176c {"md5": "9f488c9d5dd39f729b1f3d8c8bef86f1", "pid": "1264956134", "note": [{"label": ["Forschungsplan, der verschiedene Verfahren kombiniert; gemeint sind meist qualitative und quantitative Methoden"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Forschungsmethode"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332866999", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2010001158", "source": "DLC"}, {"type": "uri", "value": "https://id.loc.gov/authorities/subjects/sh2010001158"}], "authorized_access_point": "Mixed methods research"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332866999", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16582642", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16582642k"}], "authorized_access_point": "Méthodes de recherche mixtes"}], "identifier": "http://d-nb.info/gnd/1264956134", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1264956134", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1264956134", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1264956134", "source": "GND"}], "variant_access_point": ["Mixed-Methods", "Mixed methods"], "authorized_access_point": "Methodenmix"} 1 +2024-09-10 15:44:00.875221 2024-09-10 15:44:00.875227 7f238cdb-460b-413c-ae21-748eba63cf77 {"md5": "79dfdc43b727dbfac9b9f818c47599e1", "pid": "106427546X", "note": [{"label": ["Nachtfalter aus der Familie der Eulenfalter"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Eulen (Schmetterlinge)"}], "identifier": "http://d-nb.info/gnd/106427546X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/106427546X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)106427546X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)106427546X", "source": "GND"}], "variant_access_point": ["Lamprotes c-aureum"], "authorized_access_point": "Wiesenrauten-Goldeule"} 1 +2024-09-10 15:43:55.170868 2024-09-10 15:43:55.170871 109b7fc3-794a-43a9-a83d-f0a2caeaedda {"md5": "950d4cf53ee7139efcb135ce02773cda", "pid": "1262928265", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/w/index.php?oldid=1095914761"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gesundheit"}], "related": [{"authorized_access_point": "Planetare Gesundheit"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133930549", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85148199", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85148199"}], "authorized_access_point": "World health"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133930549", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11933219", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119332195"}], "authorized_access_point": "Santé publique"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1277080682", "source": "GND"}, {"type": "bf:Nbn", "value": "D014943", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D014943"}], "authorized_access_point": "Global Health"}], "identifier": "http://d-nb.info/gnd/1262928265", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1262928265", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1262928265", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1262928265", "source": "GND"}], "variant_access_point": ["Global Health", "Weltgesundheit", "Internationale Gesundheit"], "authorized_access_point": "Globale Gesundheit"} 1 +2024-09-10 15:43:55.256126 2024-09-10 15:43:55.256131 3e0dbf3a-4c1d-409e-b903-1c76451ff968 {"md5": "cd44b52cf4ec05f7bf3cf2de46676288", "pid": "1261933737", "note": [{"label": ["MGG online - https://www.mgg-online.com/mgg/stable/403049"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Theater"}], "identifier": "http://d-nb.info/gnd/1261933737", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1261933737", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1261933737", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1261933737", "source": "GND"}], "variant_access_point": ["Klostertheater"], "authorized_access_point": "Ordenstheater"} 1 +2024-09-10 15:43:55.341612 2024-09-10 15:43:55.341621 874e6b5f-d40a-4f2e-b685-5f86815a7900 {"md5": "2406937adde949a02c7eacfca3697d47", "pid": "1259460460", "note": [{"label": ["Letzte (technische) Fassung eines Drehbuchs, die in die einzelnen zu drehenden Aufnahmen zerlegt ist."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Drehbuch"}], "identifier": "http://d-nb.info/gnd/1259460460", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1259460460", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1259460460", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1259460460", "source": "GND"}], "variant_access_point": ["Shooting script"], "authorized_access_point": "Découpage (Film)"} 1 +2024-09-10 15:43:55.425622 2024-09-10 15:43:55.425633 31db8bd7-1494-4e5c-a539-ca5ea6a7ab08 {"md5": "aea15f1f2ef402d9c3f79b928a2efdc4", "pid": "1258881675", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332862187", "source": "GND"}, {"type": "bf:Nbn", "value": "sh91005542", "source": "DLC"}, {"type": "uri", "value": "https://id.loc.gov/authorities/subjects/sh91005542"}], "authorized_access_point": "Balangao (Philippine people)"}], "identifier": "http://d-nb.info/gnd/1258881675", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1258881675", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1258881675", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1258881675", "source": "GND"}], "variant_access_point": ["Balangao Bontoc", "Balangao-Bontok", "Balangaw"], "authorized_access_point": "Balangao"} 1 +2024-09-10 15:43:55.513786 2024-09-10 15:43:55.513788 668e2072-19d9-4ccd-b52e-bfdd21118f75 {"md5": "6441baf9a654af2b38608bd9b38bff32", "pid": "125746423X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Reis"}], "identifier": "http://d-nb.info/gnd/125746423X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/125746423X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)125746423X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)125746423X", "source": "GND"}], "variant_access_point": ["Paddyreis", "gedroschener Reis", "bespelzte Reiskörner"], "authorized_access_point": "Paddy-Reis"} 1 +2024-09-10 15:43:55.580086 2024-09-10 15:43:55.58009 ed6a848c-ae8e-49c2-9c3c-843d5383378a {"md5": "bd9c04c92a24e31684002d32313ffa2e", "pid": "1257346415", "note": [{"label": ["Internet - https://wiki.polymerservice-merseburg.de/index.php/Luftultraschall"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ultraschallprüfung"}], "identifier": "http://d-nb.info/gnd/1257346415", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1257346415", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1257346415", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1257346415", "source": "GND"}], "authorized_access_point": "Luftultraschall"} 1 +2024-09-10 15:43:55.658764 2024-09-10 15:43:55.658769 526aad87-56f2-44bb-a16c-6e7fefeda0d8 {"md5": "8b1ee4ce802ae6adcb5534ef7fad7c9a", "pid": "1257092804", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Wirbelschicht&oldid=215906776"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schüttgut"}, {"authorized_access_point": "Wirbelschicht"}], "identifier": "http://d-nb.info/gnd/1257092804", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1257092804", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1257092804", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1257092804", "source": "GND"}], "authorized_access_point": "Geldart-Gruppe B"} 1 +2024-09-10 15:43:55.743588 2024-09-10 15:43:55.743596 c503ef97-796e-4fc0-8a78-b673fc39f041 {"md5": "fec9d0aff82af1799cee160ca66b832f", "pid": "1254569642", "note": [{"label": ["Wikipedia englisch - https://en.wikipedia.org/w/index.php?title=Vibrio_natriegens&oldid=1064078091"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gram-negative Bakterien"}], "identifier": "http://d-nb.info/gnd/1254569642", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1254569642", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1254569642", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1254569642", "source": "GND"}], "authorized_access_point": "Vibrio natriegens"} 1 +2024-09-10 15:43:55.82809 2024-09-10 15:43:55.828095 248332db-fcfc-4f60-849f-e7d3ff39a705 {"md5": "68288390e2e54ac16f1c7af65086e8d3", "pid": "1254535594", "note": [{"label": ["Pschyrembel online - https://www.pschyrembel.de/mRNA-Impfstoff/A0TVP/doc/"], "noteType": "dataSource"}, {"label": ["Impfstofftyp, bei dem RNA (in aller Regel mRNA) injiziert wird, die für einen Bestandteil des Erregers codiert. In der Zelle wird aus der mRNA das nichtpathogene Protein des Erregers gebildet (Antigen), das schließlich die Immunantwort triggert. Die ersten zugelassenen mRNA-Impfstoffe sind die SARS-CoV-2-Impfstoffe von BioNTech und Moderna"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Impfstoff"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332908640", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2022005581", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2022005581"}], "authorized_access_point": "mRNA vaccines"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332908640", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF18084862", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb18084862n"}], "authorized_access_point": "Vaccins à ARN messager"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1260520943", "source": "GND"}, {"type": "bf:Nbn", "value": "D000087503", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D000087503"}], "authorized_access_point": "mRNA Vaccines"}], "identifier": "http://d-nb.info/gnd/1254535594", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1254535594", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1254535594", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1254535594", "source": "GND"}], "variant_access_point": ["mRNA-Vakzin", "RNA-Impfstoff", "RNA-Vakzin", "RNS-Impfstoff", "mRNA-Impfung (Quasisynonym)"], "authorized_access_point": "mRNA-Impfstoff"} 1 +2024-09-10 15:43:55.913011 2024-09-10 15:43:55.913015 7c96aed9-a691-4182-924f-40aff8a507d4 {"md5": "63038819739461faf5f1b1654fc05d6b", "pid": "1253837457", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Planetary_Health&oldid=217168638"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gesundheitsvorsorge"}], "related": [{"authorized_access_point": "Umweltmedizin"}, {"authorized_access_point": "Globale Gesundheit"}], "identifier": "http://d-nb.info/gnd/1253837457", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1253837457", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1253837457", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1253837457", "source": "GND"}], "variant_access_point": ["Planetary Health", "Santé planétaire"], "authorized_access_point": "Planetare Gesundheit"} 1 +2024-09-10 15:43:55.987949 2024-09-10 15:43:55.987952 88f63faf-147f-44da-a9c0-db1d7baa2899 {"md5": "351959f93cfb80e0cc5e312be05f6c2f", "pid": "1252827512", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Flugsicherung"}, {"authorized_access_point": "Turm"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133865976", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85002968", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85002968"}], "authorized_access_point": "Airport control towers"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133865976", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13543290", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13543290b"}], "authorized_access_point": "Tours de contrôle (aéroports)"}], "identifier": "http://d-nb.info/gnd/1252827512", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1252827512", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1252827512", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1252827512", "source": "GND"}], "variant_access_point": ["Tower (Luftfahrt)", "Flugverkehrskontrollturm"], "authorized_access_point": "Kontrollturm (Luftfahrt)"} 1 +2024-09-10 15:43:56.046117 2024-09-10 15:43:56.04612 3509801c-6e77-4f30-a122-5c17d03d2b82 {"md5": "63f8e8b3f5d91fdb656459cc5a54e3cd", "pid": "1252257295", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Kankurang&oldid=207951252"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Initiation"}], "identifier": "http://d-nb.info/gnd/1252257295", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1252257295", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1252257295", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1252257295", "source": "GND"}], "authorized_access_point": "Kankurang"} 1 +2024-09-10 15:43:56.109574 2024-09-10 15:43:56.109576 98f44fa2-d36d-4c55-921b-21a199e3d7e6 {"md5": "d3c6b9e30a586566d328d7fdc17fb74a", "pid": "1251536492", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1251536492", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1251536492", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1251536492", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1251536492", "source": "GND"}], "variant_access_point": ["Corona-Pandemie"], "authorized_access_point": "COVID-19-Pandemie"} 1 +2024-09-10 15:43:56.175074 2024-09-10 15:43:56.175077 78201e3e-232b-4c24-ae60-392ba866142f {"md5": "1b044270c9a9720235b7ddd02f4b8aa9", "pid": "1250258731", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Jainismus&oldid=219669705670"], "noteType": "dataSource"}, {"label": ["Anhänger der indischen Religion Jainismus"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Jainismus"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134089961", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85069288", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85069288"}], "authorized_access_point": "Jains"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134089961", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11997604", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11997604f"}], "authorized_access_point": "Jaina"}], "identifier": "http://d-nb.info/gnd/1250258731", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1250258731", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1250258731", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1250258731", "source": "GND"}], "variant_access_point": ["Jains", "Jina", "Dschaina", "Jain", "Dschain"], "authorized_access_point": "Jaina"} 1 +2024-09-10 15:43:57.534516 2024-09-10 15:43:57.534525 e86f6243-40f4-4108-a0c3-9a379fe1c7a4 {"md5": "b6e2a27c5c1d14600189553dc39469cf", "pid": "1188589024", "note": [{"label": ["Preis für wissenschaftliche Prosa, verliehen von der Deutschen Akademie für Sprache und Dichtung und gefördert von der ENTEGA Stiftung"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Preis (Auszeichnung)"}], "related": [{"authorized_access_point": "Wissenschaftliche Literatur"}], "identifier": "http://d-nb.info/gnd/1188589024", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1188589024", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1188589024", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1188589024", "source": "GND"}], "variant_access_point": ["Sigmund-Freud-Preis für wissenschaftliche Prosa"], "authorized_access_point": "Sigmund-Freud-Preis"} 1 +2024-09-10 15:43:56.251033 2024-09-10 15:43:56.251037 29dd85a6-b569-4b02-a95e-81ba081658f3 {"md5": "fccb9f1c86634af8e66a8e17d614d2e2", "pid": "124994516X", "note": [{"label": ["Zentralmonogolischer Stammesverband in der Zeit vor dem Mongolischen Reich"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332859674", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2010012538", "source": "DLC"}, {"type": "uri", "value": "https://id.loc.gov/authorities/subjects/sh2010012538"}], "authorized_access_point": "Kereyid"}], "identifier": "http://d-nb.info/gnd/124994516X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/124994516X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)124994516X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)124994516X", "source": "GND"}], "variant_access_point": ["Kerait", "Kereit", "Keräit", "Kereyid"], "authorized_access_point": "Keraiten"} 1 +2024-09-10 15:43:56.340591 2024-09-10 15:43:56.340599 664b2428-93d9-4ab4-b551-9573af4fb36b {"md5": "0f76c3519b48ebd9176697ab668f4e1f", "pid": "1249112877", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/w/index.php?title=Pyridopyrimidine&oldid=879376703"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Pyrimidinderivate"}, {"authorized_access_point": "Pyridinderivate"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134439474", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF14546066", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb14546066s"}], "authorized_access_point": "Pyridodiazines"}], "identifier": "http://d-nb.info/gnd/1249112877", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1249112877", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1249112877", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1249112877", "source": "GND"}], "variant_access_point": ["Pyridopyrimidinderivate", "Pyridopyrimidin"], "authorized_access_point": "Pyridopyrimidine"} 1 +2024-09-10 15:43:56.422683 2024-09-10 15:43:56.422687 73fa87ad-da08-445b-9d0b-83ad3710f0bc {"md5": "951c7b9ac02f336a89ae88b44edd997b", "pid": "1248945506", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333635532", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2010006454", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2010006454"}], "authorized_access_point": "Practical jokes in literature"}], "identifier": "http://d-nb.info/gnd/1248945506", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1248945506", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1248945506", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1248945506", "source": "GND"}], "authorized_access_point": "Streich (Scherz, Motiv)"} 1 +2024-09-10 15:43:56.502804 2024-09-10 15:43:56.502808 42f42fb1-1ca2-4d05-9b3f-f55912bebb77 {"md5": "eccd193f9f6c7db54bea7a3d2c747462", "pid": "1247639401", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Kulturelle_Aneignung&oldid=218864021"], "noteType": "dataSource"}, {"label": ["Übernahme eines Bestandteils einer Kultur von Mitgliedern einer anderen Kultur oder Identität bezeichnet. Die ethische Dimension kultureller Aneignung wird in der Regel nur dann kritisiert, wenn die angeeignete Kultur einer Minderheit angehört, die als sozial, politisch, wirtschaftlich oder militärisch benachteiligt gilt, etwa wegen ethnischer Konflikte. Die Kultur werde aus Sicht der Kritiker durch ihre historischen Unterdrücker ihrem Kontext entrissen."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kulturbeziehungen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331872340", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2018001171", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2018001171"}], "authorized_access_point": "Cultural appropriation"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331872340", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF18004355", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb18004355b"}], "authorized_access_point": "Appropriation culturelle"}], "identifier": "http://d-nb.info/gnd/1247639401", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1247639401", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1247639401", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1247639401", "source": "GND"}], "variant_access_point": ["Cultural appropriation"], "authorized_access_point": "Kulturelle Aneignung"} 1 +2024-09-10 15:43:56.573737 2024-09-10 15:43:56.573744 63156bdd-7137-4fd9-bf53-f3b7adaad1ff {"md5": "bf283ca46f7a137864d568c43b3646dc", "pid": "1246126877", "note": [{"label": ["Kleiner Baum oder großer Strauch aus der Pflanzenfamilie der Rosaceae."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Prunus"}], "identifier": "http://d-nb.info/gnd/1246126877", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1246126877", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1246126877", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1246126877", "source": "GND"}], "variant_access_point": ["Prunus padus", "Gewöhnliche Traubenkirsche", "Ahlkirsche"], "authorized_access_point": "Traubenkirsche"} 1 +2024-09-10 15:43:56.638933 2024-09-10 15:43:56.638937 1293ca38-9908-44a0-a5b2-7271d91f067c {"md5": "39ac82d204491cc7849318b805f6a8eb", "pid": "124608841X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Gesundheitszeugnis"}], "identifier": "http://d-nb.info/gnd/124608841X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/124608841X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)124608841X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)124608841X", "source": "GND"}], "variant_access_point": ["Impfausweis", "Impfnachweis", "Impfzertifikat", "Impfbescheinigung", "Impfdokumentation"], "authorized_access_point": "Impfpass"} 1 +2024-09-10 15:43:56.697667 2024-09-10 15:43:56.697671 514bd670-17a5-4089-b2dd-036a1a87da80 {"md5": "a8a14684a4d4ce13e7bfedd6f81fe048", "pid": "1241975299", "note": [{"label": ["Familie der Barschartigen Fische"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Barschartige Fische"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333442068", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85073370", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85073370"}], "authorized_access_point": "Kuhliidae"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333442068", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17155128", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb171551286"}], "authorized_access_point": "Kuhliidae"}], "identifier": "http://d-nb.info/gnd/1241975299", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1241975299", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1241975299", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1241975299", "source": "GND"}], "variant_access_point": ["Kuhlie", "Kuhliidae"], "authorized_access_point": "Kuhlien"} 1 +2024-09-10 15:43:56.763614 2024-09-10 15:43:56.763618 949ababc-8a8e-4f59-a8f2-c4b2739ec8ac {"md5": "eea4b0e0ea9e3d0f99198b7137f46eb3", "pid": "1234514702", "note": [{"label": ["Südostasiatisch verbreitete Gattung der Anabantoidei. Können knurrende Geräusche erzeugen."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Labyrinthfische"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333957734", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17805197", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb178051976"}], "authorized_access_point": "Trichopsis"}], "identifier": "http://d-nb.info/gnd/1234514702", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1234514702", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1234514702", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1234514702", "source": "GND"}], "variant_access_point": ["Trichopsis"], "authorized_access_point": "Knurrende Guramis"} 1 +2024-09-10 15:43:56.830108 2024-09-10 15:43:56.830111 e0dc9dba-ca8f-49ba-b3a3-f68763faa30e {"md5": "1ac199a5ae20956ea040cfc1414ee79e", "pid": "1232346071", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=User_Experience&oldid=211010591"], "noteType": "dataSource"}, {"label": ["Umschreibt alle Aspekte der Eindrücke und das Erlebnis eines Nutzers bei der Interaktion mit einem Produkt, Dienst, einer Umgebung oder Einrichtung. Dazu zählen auch Software und IT-Systeme."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Benutzerfreundlichkeit"}, {"authorized_access_point": "Benutzerrückmeldung"}], "identifier": "http://d-nb.info/gnd/1232346071", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1232346071", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1232346071", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1232346071", "source": "GND"}], "variant_access_point": ["User experience", "Nutzererfahrung", "Nutzererlebnis", "Nutzungserlebnis"], "authorized_access_point": "Benutzererlebnis"} 1 +2024-09-10 15:43:56.890004 2024-09-10 15:43:56.890007 b8f32c1d-afaa-477a-8ac7-af66f0674142 {"md5": "3c0f8e7a7ffd0b7c3af8db26c55e9130", "pid": "1228154325", "note": [{"label": ["Übertragung des Pollens einer Blüte auf die Narbe einer artgleichen anderen Blüte durch ein Tier"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bestäubung"}], "related": [{"authorized_access_point": "Anemogamie"}], "identifier": "http://d-nb.info/gnd/1228154325", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1228154325", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1228154325", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1228154325", "source": "GND"}], "variant_access_point": ["Anthophilie", "Zoophilie (Blütenökologie)", "Tierblütigkeit", "Tierbestäubung"], "authorized_access_point": "Zoogamie"} 1 +2024-09-10 15:43:56.955527 2024-09-10 15:43:56.955531 e6b66d52-bf64-4a2f-8d52-c0f4d778b50a {"md5": "fa5a919f50f3dc15b440b00d026200b6", "pid": "1225893461", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Comic"}, {"authorized_access_point": "Erotik (Motiv)"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113424097X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh88001850", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh88001850"}], "authorized_access_point": "Erotic comic books, strips, etc."}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113424097X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12262211", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12262211q"}], "authorized_access_point": "Bandes dessinées érotiques"}], "identifier": "http://d-nb.info/gnd/1225893461", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1225893461", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1225893461", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1225893461", "source": "GND"}], "authorized_access_point": "Erotischer Comic"} 1 +2024-09-10 15:43:57.023733 2024-09-10 15:43:57.023741 2f04c01d-7ddc-4d70-b8fd-c73dad6969fc {"md5": "15aed64c4b4f0ef551bdf91a13e08453", "pid": "1219598135", "note": [{"label": ["Anfang des 15. Jahrhunderts aus dem Faustrohr entwickeltes Gewehr mit glattem Lauf und Luntenschloss"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Vorderlader"}, {"authorized_access_point": "Gewehr"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333656866", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF14408507", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb144085074"}], "authorized_access_point": "Arquebuses"}], "identifier": "http://d-nb.info/gnd/1219598135", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1219598135", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1219598135", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1219598135", "source": "GND"}], "variant_access_point": ["Hakenbüchse"], "authorized_access_point": "Arkebuse"} 1 +2024-09-10 15:43:57.08821 2024-09-10 15:43:57.088212 970a49cb-2ea1-42be-88fe-79d43759c3eb {"md5": "b05149c523a07604bb622ad0ebcba37a", "pid": "1210456753", "note": [{"label": ["Homepage - https://www.yallaitalia.it"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Weblog"}], "related": [{"authorized_access_point": "Araber"}, {"authorized_access_point": "Islam"}], "identifier": "http://d-nb.info/gnd/1210456753", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1210456753", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1210456753", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1210456753", "source": "GND"}], "variant_access_point": ["Yalla"], "authorized_access_point": "Yalla Italia"} 1 +2024-09-10 15:43:58.739178 2024-09-10 15:43:58.739182 d43e10ce-5568-45f4-9c12-916f9925dcfb {"md5": "ce9dedd3fd64f2e65e6e436611a171ff", "pid": "1150861010", "note": [{"label": ["Berufenet - https://berufenet.arbeitsagentur.de/berufenet/faces/index?path=null/suchergebnisse&such=werbetexter"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Werbetexter"}, {"authorized_access_point": "Werbesprache"}], "identifier": "http://d-nb.info/gnd/1150861010", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1150861010", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1150861010", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1150861010", "source": "GND"}], "authorized_access_point": "Werbetexterin"} 1 +2024-09-10 15:43:57.150862 2024-09-10 15:43:57.150865 90606880-f2d9-488e-8944-49bb9a864d23 {"md5": "9c20e26bbae5ee0c798fa8aadbd23e3b", "pid": "1202575048", "note": [{"label": ["Hauptsächlich vom Bühnenvertrieb und Vereinen hergestelltes Manuskript oder Typoskript, noch nicht veröffentlichter oder noch nicht gespielter Stücke, Stückfassungen oder -übersetzungen.", "Für bereits veröffentlichte Stücke bzw. Werke verwende \\"Theaterstück\\".", "Als Formangabe für die Art des Inhalts als Teil des optionalen Sets für die Darstellende Kunst zugelassen."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Drama"}, {"authorized_access_point": "Inszenierung"}], "identifier": "http://d-nb.info/gnd/1202575048", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1202575048", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1202575048", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1202575048", "source": "GND"}], "authorized_access_point": "Bühnenmanuskript"} 1 +2024-09-10 15:43:57.214959 2024-09-10 15:43:57.214963 7898cb36-3937-4480-a5bd-e2aa83b1924f {"md5": "0549a0e8e2e928ddff3a0bc78bd62a3c", "pid": "1201330661", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Moyamoya&oldid=188131848"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Hirngefäßkrankheit"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133799884", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12447412", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12447412r"}], "authorized_access_point": "Maladie de moya-moya"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1282200224", "source": "GND"}, {"type": "bf:Nbn", "value": "D009072", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D009072"}], "authorized_access_point": "Moyamoya Disease"}], "identifier": "http://d-nb.info/gnd/1201330661", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1201330661", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1201330661", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1201330661", "source": "GND"}], "variant_access_point": ["Moyamoya-Erkrankung", "Moyamoya-Syndrom", "Moya-Moya-Syndrom", "Moyamoya-Angiopathie", "Moyamoya disease", "Cerebrovascular Moyamoya Disease", "Moyamoya Vasculopathy", "MMV"], "authorized_access_point": "Moyamoya-Krankheit"} 1 +2024-09-10 15:43:57.283411 2024-09-10 15:43:57.283415 18d234b2-4e14-43d7-9c64-19f28b24094e {"md5": "ab3533ec04da58d7f072fbf1d2707cca", "pid": "1199404365", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Donaukaulbarsch"], "noteType": "dataSource"}, {"label": ["Im Unterlauf der Donau und deren Nebengewässern lebende endemische Art der Barsche"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Barsche"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333473451", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17805417", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17805417j"}], "authorized_access_point": "Gymnocephalus baloni"}], "identifier": "http://d-nb.info/gnd/1199404365", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1199404365", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1199404365", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1199404365", "source": "GND"}], "variant_access_point": ["Gymnocephalus baloni"], "authorized_access_point": "Donaukaulbarsch"} 1 +2024-09-10 15:43:57.365548 2024-09-10 15:43:57.365556 96bc37fc-3888-49d3-976d-89b3f5febfc0 {"md5": "b3f4bee62dce943e219af7fa0840293a", "pid": "1198723262", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Insulysin&oldid=177216971"], "noteType": "dataSource"}, {"label": ["Den zellulären Abbau von Insulin, Glucagon und anderen Polypeptiden beeinflussendes Enzym"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Endopeptidasen"}, {"authorized_access_point": "Metalloproteinasen"}], "related": [{"authorized_access_point": "Insulinabbau"}], "identifier": "http://d-nb.info/gnd/1198723262", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1198723262", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1198723262", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1198723262", "source": "GND"}], "variant_access_point": ["Insulinase", "Insulin-abbauendes Enzym", "IDE", "Insulin-degrading enzyme", "Insulin protease", "EC 3.4.24.56"], "authorized_access_point": "Insulysin"} 1 +2024-09-10 15:43:57.454883 2024-09-10 15:43:57.454887 0c244dc1-20a3-4af2-b93b-5a2d02d0f78b {"md5": "7196956dd70f57d8eb549c4790c12e30", "pid": "1191508781", "note": [{"label": ["Nur f. das Fest; für das Geschehen SW Unbefleckte Empfängnis. Hochfest am 8. Dezember"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Marienfest"}], "related": [{"authorized_access_point": "Unbefleckte Empfängnis"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133870880", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85064510", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85064510"}], "authorized_access_point": "Feast of the Immaculate Conception"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133870880", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13569072", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13569072q"}], "authorized_access_point": "Immaculée Conception (fête)"}], "identifier": "http://d-nb.info/gnd/1191508781", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1191508781", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1191508781", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1191508781", "source": "GND"}], "variant_access_point": ["Empfängnis Mariä (Fest)", "Empfängnis Mariens (Fest)", "Hochfest der ohne Erbsünde empfangenen Jungfrau und Gottesmutter Maria", "Immaculata conceptio Mariae (Fest)", "Immaculata conceptio Beatae Mariae Virginis (Fest)", "Immaculata conceptio B.M.V. (Fest)"], "authorized_access_point": "Mariä Empfängnis (Fest)"} 1 +2024-09-10 15:44:05.681436 2024-09-10 15:44:05.681439 947fca74-6473-4681-bc58-1d9e6529212a {"md5": "1de94754cada8c8c8c209219a50ede87", "pid": "1058674900", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Holzeinschlag"}], "identifier": "http://d-nb.info/gnd/1058674900", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058674900", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058674900", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058674900", "source": "GND"}], "variant_access_point": ["Hiebsatz", "Nutzungssatz", "Abnutzungssatz"], "authorized_access_point": "Hiebssatz"} 1 +2024-09-10 15:43:57.596076 2024-09-10 15:43:57.59608 75757247-a7e3-4319-b5a4-4d7a0380362e {"md5": "db2c9bec1780d6fafb40097483ce717b", "pid": "1183863349", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Sonntage_der_Osterzeit&oldid=183677215"], "noteType": "dataSource"}, {"label": ["Zweiter Sonntag nach Ostern."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sonntag"}, {"authorized_access_point": "Osterzeit"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331870097", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF15100620", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb151006209"}], "authorized_access_point": "Dimanche de la Divine Miséricorde"}], "identifier": "http://d-nb.info/gnd/1183863349", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1183863349", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1183863349", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1183863349", "source": "GND"}], "variant_access_point": ["Sonntag nach Ostern 2", "Misericordia", "Misericordias Domini"], "authorized_access_point": "Sonntag der Osterzeit 3"} 1 +2024-09-10 15:43:57.695862 2024-09-10 15:43:57.695867 58605beb-0b3d-44be-adb2-f3a3534ae8d2 {"md5": "704c951a29f3b2498b23d0cfd2398174", "pid": "1181268311", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Futura (Druckschrift)"}], "identifier": "http://d-nb.info/gnd/1181268311", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1181268311", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1181268311", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1181268311", "source": "GND"}], "variant_access_point": ["Futura medium", "Futura demi-gras", "Futura seminegra", "Futura neretto", "Futura halvfet"], "authorized_access_point": "Futura Halbfett"} 1 +2024-09-10 15:43:57.774842 2024-09-10 15:43:57.774846 8aa5854c-97d3-4e96-8d75-4a920d70c8ca {"md5": "2e6078a340d9d435043c6768362f77c7", "pid": "1181007100", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Afrikanischer_Knochenz%C3%BCngler", "Wikimedia - https://species.wikimedia.org/wiki/Heterotis_niloticus"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Knochenzünglerähnliche"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333491085", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12038061", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb120380616"}], "authorized_access_point": "Heterotis niloticus"}], "identifier": "http://d-nb.info/gnd/1181007100", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1181007100", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1181007100", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1181007100", "source": "GND"}], "variant_access_point": ["Heterotis niloticus", "Clupisudis niloticus", "Heterotis adansoni Valenciennes", "Heterotis adansonii", "Heterotis ehrenbergii Valenciennes", "Heterotis nilotica", "Sudis adansonii Cuvier", "Sudis nilotica Cuvier", "Sudis niloticus Cuvier", "Sudis niloticus Rüppell"], "authorized_access_point": "Afrikanischer Knochenzüngler"} 1 +2024-09-10 15:43:57.876998 2024-09-10 15:43:57.877007 b24aa1aa-2bf3-4b3b-a742-9a195030b606 {"md5": "968c84f5e2c5b57e9e1f4f13ab532be9", "pid": "1173842845", "note": [{"label": ["Das Anbieten oder Liefern von Mitteln zur unbefugten Benutzung einer Erfindung (§ 10 PatG)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Patentverletzung"}], "identifier": "http://d-nb.info/gnd/1173842845", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1173842845", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1173842845", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1173842845", "source": "GND"}], "variant_access_point": ["Indirekte Patentverletzung", "Indirect patent infringement"], "authorized_access_point": "Mittelbare Patentverletzung"} 1 +2024-09-10 15:43:57.962487 2024-09-10 15:43:57.962491 53c611a2-0ce7-490b-bb3c-8361f6512569 {"md5": "dfc6ca7b025c7b08cf390f9214497043", "pid": "1173062238", "note": [{"label": ["Geregelt in §§ 280 Abs. 3, 281-283, 311a Abs. 2 BGB"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schadensersatz"}], "related": [{"authorized_access_point": "Nichterfüllungsschaden"}], "identifier": "http://d-nb.info/gnd/1173062238", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1173062238", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1173062238", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1173062238", "source": "GND"}], "authorized_access_point": "Schadensersatz statt der Leistung"} 1 +2024-09-10 15:43:58.04884 2024-09-10 15:43:58.048844 c8c01147-02b8-4b12-8faa-420d29bf2cad {"md5": "d1927c9d85b31f03fcaeb0574b1599ec", "pid": "1172567794", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Fluiddynamik&oldid=166437703"], "noteType": "dataSource"}, {"label": ["\\"Die Fluiddynamik ist ein Teilgebiet der Strömungslehre und beschäftigt sich mit bewegten Fluiden (Flüssigkeiten und Gasen). Teilgebiet für Gase ist die Aerodynamik, für Flüssigkeiten die Hydrodynamik. Untersucht werden z. B. laminare und turbulente Strömungen in offenen und geschlossenen Gerinnen sowie Bewegungen und Kraftverhältnisse in Druckleitungen.\\" (Wikipedia: Fluiddynamik)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Strömungsmechanik"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333587996", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85049376", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85049376"}], "authorized_access_point": "Fluid dynamics"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333587996", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11931416", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119314166"}], "authorized_access_point": "Fluides, Dynamique des"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1299918271", "source": "GND"}, {"type": "bf:Nbn", "value": "XX4659783", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX4659783"}], "authorized_access_point": "Dinámica de fluidos"}], "identifier": "http://d-nb.info/gnd/1172567794", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1172567794", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1172567794", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1172567794", "source": "GND"}], "authorized_access_point": "Fluiddynamik"} 1 +2024-09-10 15:43:58.11987 2024-09-10 15:43:58.119873 11b34440-dccc-4e96-9cdf-7113799396dd {"md5": "3f5c44b7669ce5d1378e9b749cb4c248", "pid": "1166161722", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifier": "http://d-nb.info/gnd/1166161722", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1166161722", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1166161722", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1166161722", "source": "GND"}], "authorized_access_point": "Beschwerde (Motiv)"} 1 +2024-09-10 15:43:58.176341 2024-09-10 15:43:58.176344 f0d2be85-1393-4d75-b80d-5d8e66dda630 {"md5": "c60ac50719d268ea0072ba36e0c52f83", "pid": "1165352362", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tiere"}, {"authorized_access_point": "Zirkus"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113431275X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85026086", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85026086"}], "authorized_access_point": "Circus animals"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113431275X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12403950", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12403950w"}], "authorized_access_point": "Animaux de cirque"}], "identifier": "http://d-nb.info/gnd/1165352362", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1165352362", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1165352362", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1165352362", "source": "GND"}], "variant_access_point": ["Zirkus"], "authorized_access_point": "Zirkustiere"} 1 +2024-09-10 15:43:58.252681 2024-09-10 15:43:58.252685 15254e59-dd7f-4359-bf5a-0d98e9957358 {"md5": "fc026c2f638bc26c42f8d4531eabc435", "pid": "1165347768", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=243277040"], "noteType": "dataSource"}, {"label": ["Begriff zur Kategorisierung von Menschen und transdisziplinäres Studienfeld"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Weiße"}, {"authorized_access_point": "Ethnische Beziehungen"}], "identifier": "http://d-nb.info/gnd/1165347768", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1165347768", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1165347768", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1165347768", "source": "GND"}], "variant_access_point": ["Whiteness", "Kritische Weißseinsforschung", "Critical Whiteness Studies"], "authorized_access_point": "Weißsein"} 1 +2024-09-10 15:43:58.33798 2024-09-10 15:43:58.337985 58dca01b-6403-4d79-93e8-03d183147e0b {"md5": "87595ee863aa845f1d95b7c5b8f04205", "pid": "1162072040", "note": [{"label": ["Verknüpfe mit Sprachbezeichnung (hier: Hebräisch) und Wortart"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1162072040", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1162072040", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1162072040", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1162072040", "source": "GND"}], "variant_access_point": ["shadday", "šaddaj", "שַׁדַּי"], "authorized_access_point": "shaday"} 1 +2024-09-10 15:43:58.422809 2024-09-10 15:43:58.422817 32535a63-777d-4526-a49c-12f97ece39b6 {"md5": "c437c886fa47cbf854c64b1224e8735c", "pid": "1161142878", "note": [{"label": ["Mongolischstämmige muslimische ethnische Minderheit der Volksrepublik China."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1161142878", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1161142878", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1161142878", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1161142878", "source": "GND"}], "variant_access_point": ["Bao’an", "Paoan", "Bonan"], "authorized_access_point": "Baoan"} 1 +2024-09-10 15:43:58.507929 2024-09-10 15:43:58.507933 63282790-08c3-4cdd-a994-47b63a649d4a {"md5": "581e1712fbf82b737fed6b1ef420fc75", "pid": "1155851412", "note": [{"label": ["Bezeichnung von literarischen Textsorten, die Merkmale unterschiedlicher Gattungen in sich vereinen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Literaturgattung"}], "related": [{"authorized_access_point": "Gattungstheorie"}, {"authorized_access_point": "Intermedialität"}, {"authorized_access_point": "Intertextualität"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331493722", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17041531", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17041531v"}], "authorized_access_point": "Brouillage générique"}], "identifier": "http://d-nb.info/gnd/1155851412", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1155851412", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1155851412", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1155851412", "source": "GND"}], "variant_access_point": ["Gattungskontamination", "Gattungsvermischung"], "authorized_access_point": "Hybride Genres"} 1 +2024-09-10 15:43:58.584876 2024-09-10 15:43:58.584883 e2711409-8c31-4a76-836a-beaa52d28131 {"md5": "90dea7f90631d0762a07bd8e70169750", "pid": "1155424573", "note": [{"label": ["Messung der Viskosität von Mehl"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Viskosimeter"}], "identifier": "http://d-nb.info/gnd/1155424573", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1155424573", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1155424573", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1155424573", "source": "GND"}], "authorized_access_point": "Amylograph"} 1 +2024-09-10 15:43:58.649105 2024-09-10 15:43:58.64911 9e542763-f48b-4018-b8e9-1109379604a3 {"md5": "559f5d32cfae13abd9ab0690abc31114", "pid": "1153834367", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Gezielte_Tötung"], "noteType": "dataSource"}, {"label": ["Die absichtliche, vorsätzliche u. bewusste Tötung von mutmaßlichen Terroristen und anderen nichtstaatlichen Gewaltakteuren durch staatliche Akteure; unter Vorgabe der Rechtmäßigkeit erfolgen die Liquidierungen auch auf fremden Gebiet, zunehmend unter Einsatz unbemannter Fluggeräte, wobei auch Unbeteiligte getötet werden; die Vorgehensweise ist ethisch und juristisch umstritten und wird als Bruch des Völkerrechts angesehen, aber unter westlichen Staaten u. ihren Verbündeten gegenseitig geduldet"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tötung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331566177", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2011002213", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2011002213"}], "authorized_access_point": "Targeted killing"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331566177", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17047512", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb170475121"}], "authorized_access_point": "Assassinat ciblé"}], "identifier": "http://d-nb.info/gnd/1153834367", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1153834367", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1153834367", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1153834367", "source": "GND"}], "variant_access_point": ["Targeted killing", "Targeted killings", "Assassinat ciblé"], "authorized_access_point": "Gezielte Tötung"} 1 +2024-09-10 15:43:58.824918 2024-09-10 15:43:58.82492 77e85cb0-2593-4f27-864e-a16a3ecbf7e6 {"md5": "612ed6f38d1a343a625a8f2dc0e840bb", "pid": "1145186815", "note": [{"label": ["Wikipedia unter Multispektral - https://de.wikipedia.org/w/index.php?title=Multispektral&oldid=172622311"], "noteType": "dataSource"}, {"label": ["Multispektralkamera ist ein analoges Kamerasystem. Multispektralkameras bestehen aus vier, sechs oder neun auf einem Träger montierten Meßkameras mit genähert gleicher innerer Orientierung. Die Aufnahmeachsen sind exakt parallel ausgerichtet, um eine Kongruenz der aufgenommenen Bilder zu gewährleisten. Die Objektive werden mit verschiedenen Filtern und Filmen (panchromatisch, schwarzweiß, infrarot) kombiniert. Es entstehen von einer Szene geometrisch identische schwarzweiße Fotos, die durch die jeweiligen Film-Filter-Kombinationen unterschiedliche spektrale Inhalte aufzeichnen."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mehrkamerasystem"}], "related": [{"authorized_access_point": "Multispektraltechnik"}], "identifier": "http://d-nb.info/gnd/1145186815", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1145186815", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1145186815", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1145186815", "source": "GND"}], "variant_access_point": ["Multispektrale Kamera", "Multispectral camera"], "authorized_access_point": "Multispektralkamera"} 1 +2024-09-10 15:43:58.916408 2024-09-10 15:43:58.916413 a4d3b54e-18ff-4801-a2b2-d95badea4e88 {"md5": "8f696b73e9549dfb5e5e414246155f91", "pid": "1144301971", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/w/index.php?oldid=944815699"], "noteType": "dataSource"}, {"label": ["Ethnische Gruppe am mittleren Niger, von den marokkanischen und andalusischen Einwanderern des 16. Jh. abstammend."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Songhai-Sprache"}], "identifier": "http://d-nb.info/gnd/1144301971", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1144301971", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1144301971", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1144301971", "source": "GND"}], "variant_access_point": ["Ruma (Volk)"], "authorized_access_point": "Arma (Volk)"} 1 +2024-09-10 15:43:58.990363 2024-09-10 15:43:58.990368 f5a18c06-3fd3-49ed-84a8-58c2634d9ab5 {"md5": "a188440e5cda7b8301aea20bdbd2faac", "pid": "114005791X", "note": [{"label": ["In der Schweiz ein staatlich angeordneter überkonfessioneller Feiertag, der jeweils am dritten Sonntag im September begangen wird."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Buß- und Bettag"}, {"authorized_access_point": "Feiertag"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331870496", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17157263", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17157263g"}], "authorized_access_point": "Jeûne fédéral"}], "identifier": "http://d-nb.info/gnd/114005791X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/114005791X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)114005791X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)114005791X", "source": "GND"}], "variant_access_point": ["Jeûne fédéral", "Digiuno federale", "Rogaziun federala"], "authorized_access_point": "Eidgenössischer Dank-, Buss- und Bettag"} 1 +2024-09-10 15:43:59.068061 2024-09-10 15:43:59.068064 a0a0c383-5f5d-4aa4-a7ae-767d2fa56358 {"md5": "b2fdb5bd97c04af375a3574979ee0717", "pid": "1139178725", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333487517", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85137512", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85137512"}], "authorized_access_point": "Triglidae"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333487517", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17751355", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17751355q"}], "authorized_access_point": "Triglidés"}], "identifier": "http://d-nb.info/gnd/1139178725", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1139178725", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1139178725", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1139178725", "source": "GND"}], "variant_access_point": ["Triglidae", "Seehähne"], "authorized_access_point": "Knurrhähne"} 1 +2024-09-10 15:43:59.129062 2024-09-10 15:43:59.129064 2ed0c875-d8f3-47d8-a553-91e3e59d4fe7 {"md5": "7271ac9ee14224fdb959655a9bb893f0", "pid": "1135938261", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Nichtlineare_modellbasierte_pr%C3%A4diktive_Regelung&oldid=182549694"], "noteType": "dataSource"}, {"label": ["Die nichtlineare modellprädiktive Regelung ist eine Methode aus dem Teilgebiet der Kontrolltheorie und Regelungstechnik und wird speziell dazu verwendet, um nichtlineare Prozesse mit Einschränkungen und ohne Linearisierung behandeln zu können."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Modellprädiktive Regelung"}], "identifier": "http://d-nb.info/gnd/1135938261", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1135938261", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1135938261", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1135938261", "source": "GND"}], "variant_access_point": ["Non-Linear Model-Predictive-Control"], "authorized_access_point": "Nichtlineare modellprädiktive Regelung"} 1 +2024-09-10 15:43:59.188911 2024-09-10 15:43:59.188914 c936c82e-594e-41a3-882e-dce200163118 {"md5": "17b1d6bf08ce388e66f802e25738d014", "pid": "1122355092", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/w/index.php?title=Hermitian_manifold&oldid=887773398"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Komplexe Mannigfaltigkeit"}], "related": [{"authorized_access_point": "Riemannscher Raum"}], "identifier": "http://d-nb.info/gnd/1122355092", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1122355092", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1122355092", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1122355092", "source": "GND"}], "authorized_access_point": "Hermitesche Mannigfaltigkeit"} 1 +2024-09-10 15:43:59.254787 2024-09-10 15:43:59.254789 9dac6ea3-91ed-4eeb-a7d7-6403a22e4043 {"md5": "bac545399c0c8e70ac2c7c8fac12ff2f", "pid": "1121689914", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Tetris&oldid=187895104"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Computerspiel"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331594111", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2019000397", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2019000397"}], "authorized_access_point": "Tetris (Game)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331594111", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16703785", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb167037852"}], "authorized_access_point": "Tetris (jeu vidéo)"}], "identifier": "http://d-nb.info/gnd/1121689914", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1121689914", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1121689914", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1121689914", "source": "GND"}], "authorized_access_point": "Tetris"} 1 +2024-09-10 15:43:59.33515 2024-09-10 15:43:59.335155 5fb41ee4-a782-4c0f-ac08-9ccb8a3fd618 {"md5": "9e444ce9d0873638ca4ccb861f13dc42", "pid": "1118514823", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Alter (Motiv)"}, {"authorized_access_point": "Motiv"}], "identifier": "http://d-nb.info/gnd/1118514823", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1118514823", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1118514823", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1118514823", "source": "GND"}], "variant_access_point": ["Erwachsener (60-80 Jahre, Motiv)", "Alter (60-80 Jahre, Motiv)"], "authorized_access_point": "Älterer Mensch (60-80 Jahre, Motiv)"} 1 +2024-09-10 15:43:59.423619 2024-09-10 15:43:59.423622 dd94cfee-f77a-4580-8f61-88872f6bb8f3 {"md5": "f962878309b960ed9be00578746931b1", "pid": "1117164012", "note": [{"label": ["Digitalisierung der Mobilität, Digitalisierung im Verkehr"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Verkehr"}], "identifier": "http://d-nb.info/gnd/1117164012", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1117164012", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1117164012", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1117164012", "source": "GND"}], "variant_access_point": ["Mobility 4.0"], "authorized_access_point": "Mobilität 4.0"} 1 +2024-09-10 15:43:59.509736 2024-09-10 15:43:59.509741 d4cbbcc4-b609-4e72-a24b-67707a26b1f8 {"md5": "be6d644511d56e64fdc60ad91b034199", "pid": "1116981521", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Werbetexter&oldid=209682870", "Berufenet - https://berufenet.arbeitsagentur.de/berufenet/faces/index?path=null/suchergebnisse&such=werbetexter"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Werbesprache"}, {"authorized_access_point": "Werbetexterin"}], "identifier": "http://d-nb.info/gnd/1116981521", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1116981521", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1116981521", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1116981521", "source": "GND"}], "authorized_access_point": "Werbetexter"} 1 +2024-09-10 15:43:59.592079 2024-09-10 15:43:59.592082 1bc4e183-348b-46f2-8e55-d0e2dfeb9aa8 {"md5": "991b8f716da588eff621f669f9e1b196", "pid": "1115371371", "note": [{"label": ["Debonding occurs when an adhesive stops sticking (adhering) to an adherend or substrate material."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kleben"}, {"authorized_access_point": "Adhäsion"}], "identifier": "http://d-nb.info/gnd/1115371371", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1115371371", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1115371371", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1115371371", "source": "GND"}], "authorized_access_point": "Debonding"} 1 +2024-09-10 15:43:59.669312 2024-09-10 15:43:59.669317 7774edf1-9bd7-4e25-877f-04af694e3a60 {"md5": "047d519199def346e5fec484ea582633", "pid": "1099123399", "note": [{"label": ["1932 für den Wettbewerb \\"Europarundflug\\" konstruiert"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sportflugzeug"}], "identifier": "http://d-nb.info/gnd/1099123399", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1099123399", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1099123399", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1099123399", "source": "GND"}], "variant_access_point": ["M-29", "Messerschmitt M 29", "Me 29"], "authorized_access_point": "M 29"} 1 +2024-09-10 15:43:59.739378 2024-09-10 15:43:59.739382 03a85c56-7c3f-4e43-8794-6f322225f05f {"md5": "7d010cc33c9558d6a9b813fd511d7bcc", "pid": "1081489480", "note": [{"label": ["Digitales Zahlungsmittel"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zahlungsmittel"}, {"authorized_access_point": "Kryptowert"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1136961666", "source": "GND"}, {"type": "bf:Nbn", "value": "30143-2", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/30143-2"}], "authorized_access_point": "Virtuelle Währung"}], "identifier": "http://d-nb.info/gnd/1081489480", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081489480", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1081489480", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1081489480", "source": "GND"}], "variant_access_point": ["Digitale Währung", "Kryptogeld", "Kryptowährung", "Virtual currency", "Payment Token"], "authorized_access_point": "Virtuelle Währung"} 1 +2024-09-10 15:44:00.248282 2024-09-10 15:44:00.248284 52d827f8-f505-43d0-84e8-6c18eb23ee64 {"md5": "efbb1b7273ba10664cc6b313307d7e09", "pid": "1070750409", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Kanalkodierung&oldid=243666848#Polar_Codes"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Blockcode"}, {"authorized_access_point": "Fehlerkorrekturcode"}], "identifier": "http://d-nb.info/gnd/1070750409", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1070750409", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1070750409", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1070750409", "source": "GND"}], "authorized_access_point": "Polar-Code (Codierungstheorie)"} 1 +2024-09-10 15:43:59.819686 2024-09-10 15:43:59.81969 91fe6d52-dd9b-41b2-b35a-fb16b027777e {"md5": "423c1e2af5ea7c5a83a9a5d004846543", "pid": "1078298378", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Knochenz%C3%BCngler%C3%A4hnliche"], "noteType": "dataSource"}, {"label": ["Kohorte der Echten Knochenfische (Teleostei)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333490674", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17839916", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb178399165"}], "authorized_access_point": "Ostéoglossomorphes"}], "identifier": "http://d-nb.info/gnd/1078298378", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1078298378", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1078298378", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1078298378", "source": "GND"}], "variant_access_point": ["Osteoglossomorpha"], "authorized_access_point": "Knochenzünglerähnliche"} 1 +2024-09-10 15:43:59.902023 2024-09-10 15:43:59.902026 7e5cef09-47a9-405a-8dac-7c0987954438 {"md5": "fcea83960e7bf4268d5dcf69ae5a3467", "pid": "107366371X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Hybridkrieg&oldid=223107821"], "noteType": "dataSource"}, {"label": ["Kriegsführung des 21. Jhs.: Operation von Soldaten u. militärischer Ausrüstung ohne Hoheitszeichen auf fremdem Territorium, begleitet von Desinformationskampagnen u. Cyberattacken"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kriegführung"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1217682147", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2016001601", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2016001601"}], "authorized_access_point": "Hybrid warfare"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1217682147", "source": "GND"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb18146328x"}], "authorized_access_point": "Guerre hybride"}], "identifier": "http://d-nb.info/gnd/107366371X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/107366371X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)107366371X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)107366371X", "source": "GND"}], "variant_access_point": ["Hybrider Krieg", "Hybride Kriegführung"], "authorized_access_point": "Hybridkrieg"} 1 +2024-09-10 15:43:59.97569 2024-09-10 15:43:59.975693 d3945a40-ba35-4b7e-8445-bc36c905d67b {"md5": "1ca26feb92225dc1b18fd46678e349c2", "pid": "1073212491", "note": [{"label": ["Homepage - http://doublechooz.in2p3.fr"], "noteType": "dataSource"}, {"label": ["Experiment zur Bestimmung der Umwandlungswahrscheinlichkeit (Mischungswinkel θ13) von Elektronenneutrinos bei Neutrinooszillationen."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Teilchendetektor"}], "related": [{"authorized_access_point": "Neutrinooszillation"}], "identifier": "http://d-nb.info/gnd/1073212491", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1073212491", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1073212491", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1073212491", "source": "GND"}], "variant_access_point": ["Double Chooz", "Double Chooz experiment", "Double-Chooz-Detektor", "Double Chooz detector"], "authorized_access_point": "Double-Chooz-Experiment"} 1 +2024-09-10 15:44:00.054188 2024-09-10 15:44:00.054192 c57ae0cc-263a-4d9f-9dbb-3ff986c13137 {"md5": "fd0cc623ee96c3dec06ba96c7ab7faff", "pid": "1072727021", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Personalverwaltung"}, {"authorized_access_point": "Personalentwicklung"}, {"authorized_access_point": "Personalreferent"}], "identifier": "http://d-nb.info/gnd/1072727021", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1072727021", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1072727021", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1072727021", "source": "GND"}], "authorized_access_point": "Personalreferentin"} 1 +2024-09-10 15:44:00.121594 2024-09-10 15:44:00.121598 8bfdbe8a-5769-43bf-8f97-3570dc362e1a {"md5": "234bcb8da8797ea5d9dd2dc16923d4f5", "pid": "1072723875", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Personalreferent&oldid=212451022"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Personalentwicklung"}, {"authorized_access_point": "Personalverwaltung"}, {"authorized_access_point": "Personalreferentin"}], "identifier": "http://d-nb.info/gnd/1072723875", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1072723875", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1072723875", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1072723875", "source": "GND"}], "authorized_access_point": "Personalreferent"} 1 +2024-09-10 15:44:00.190174 2024-09-10 15:44:00.190177 d1733278-ab29-423e-b566-13e5cca59aba {"md5": "a494ecaa5044e6439da2f96a5842c9b8", "pid": "107257439X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Musikerin"}], "related": [{"authorized_access_point": "Rapmusiker"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331602416", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2008006704", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2008006704"}], "authorized_access_point": "Women rap musicians"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331602416", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17881108", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17881108f"}], "authorized_access_point": "Rappeuses"}], "identifier": "http://d-nb.info/gnd/107257439X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/107257439X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)107257439X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)107257439X", "source": "GND"}], "variant_access_point": ["Rap", "Rapperin"], "authorized_access_point": "Rapmusikerin"} 1 +2024-09-10 15:44:01.673231 2024-09-10 15:44:01.673234 02656b2a-4e96-4eb5-bd04-562583eb0662 {"md5": "0e20a8138303406b8658837ab39daba4", "pid": "1060882345", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Westfälisch"}], "identifier": "http://d-nb.info/gnd/1060882345", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060882345", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060882345", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060882345", "source": "GND"}], "authorized_access_point": "Mundart Westfälisch (Reken- Klein Reken)"} 1 +2024-09-10 15:44:00.325542 2024-09-10 15:44:00.325546 893a9d93-8302-4021-b2b7-d9a81e2815aa {"md5": "2733cb538d4ce31b825fa09dac425085", "pid": "1069698822", "note": [{"label": ["Überwiegend benutzt im Zusammenhang mit polizeilichen und behördlichen Maßnahmen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Auslese"}, {"authorized_access_point": "Institutioneller Rassismus"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331567602", "source": "GND"}, {"type": "bf:Nbn", "value": "sh00007474", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh00007474"}], "authorized_access_point": "Racial profiling in law enforcement"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331567602", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16571541", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16571541h"}], "authorized_access_point": "Profilage ethnique"}], "identifier": "http://d-nb.info/gnd/1069698822", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1069698822", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1069698822", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1069698822", "source": "GND"}], "variant_access_point": ["Racial Profiling"], "authorized_access_point": "Ethnisches Profiling"} 1 +2024-09-10 15:44:00.404264 2024-09-10 15:44:00.404268 543d5fe8-ae68-4014-9a7f-eae68efd1c92 {"md5": "9b9bd3fd8bfced48ca26b0e6639dd120", "pid": "1069336971", "note": [{"label": ["Gender-Medizin ist ein Teilgebiet der Humanmedizin und der personalisierten Medizin und beschäftigt sich mit dem Einfluss von biologischen und soziokulturellen Geschlechteraspekten auf die Prävention, Entstehung, Diagnose, Therapie und Erforschung von Erkrankungen."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Individualisierte Medizin"}], "identifier": "http://d-nb.info/gnd/1069336971", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1069336971", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1069336971", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1069336971", "source": "GND"}], "variant_access_point": ["Geschlechtsspezifische Medizin", "Gender medicine", "Gender-specific medicine"], "authorized_access_point": "Gender-Medizin"} 1 +2024-09-10 15:44:00.493333 2024-09-10 15:44:00.493344 bdf443c5-5a6b-4ae1-8ca0-8d53f5b60383 {"md5": "b856304b8837a25029cd2dbefeefbefd", "pid": "1068604875", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Computerspiel"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331592720", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2012000023", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2012000023"}], "authorized_access_point": "Minecraft (Game)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331592720", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16737735", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb167377353"}], "authorized_access_point": "Minecraft (jeu vidéo)"}], "identifier": "http://d-nb.info/gnd/1068604875", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1068604875", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1068604875", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1068604875", "source": "GND"}], "authorized_access_point": "Minecraft (Computerspiel)"} 1 +2024-09-10 15:44:00.580765 2024-09-10 15:44:00.580769 5fbf0ede-57e5-4ecf-b532-fe05d0e76b30 {"md5": "5249154a216dd76c7cbbefd96993e09e", "pid": "1066801789", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Bogolan"], "noteType": "dataSource"}, {"label": ["handgewebte Baumwollstoffe, Produkt einer afrikanischen Web- und Färbetechnik, die ursprünglich in Mali beheimatet ist"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Stoff (Textilien)"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332765262", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2001002069", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2001002069"}], "authorized_access_point": "Bogolan cloth"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332765262", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12207632", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12207632r"}], "authorized_access_point": "Bogolan"}], "identifier": "http://d-nb.info/gnd/1066801789", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1066801789", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1066801789", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1066801789", "source": "GND"}], "variant_access_point": ["Mud Cloth", "Bogolanfini"], "authorized_access_point": "Bogolan"} 1 +2024-09-10 15:44:00.668984 2024-09-10 15:44:00.668992 5bdb8a66-7061-490b-9eba-bca63e0f8556 {"md5": "e905dd81aa477b10453057a7bf6eda03", "pid": "1064698727", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Radierer"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113386158X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85147529", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85147529"}], "authorized_access_point": "Women engravers"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113386158X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13554116", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb135541163"}], "authorized_access_point": "Graveuses"}], "identifier": "http://d-nb.info/gnd/1064698727", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1064698727", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1064698727", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1064698727", "source": "GND"}], "authorized_access_point": "Radiererin"} 1 +2024-09-10 15:44:00.746214 2024-09-10 15:44:00.746217 ee4801ed-3501-420e-9b3d-46167988d82d {"md5": "b7ce2db39ff71bb8f63fd261fe1aa7b9", "pid": "1064281230", "note": [{"label": ["Internet - http://www.lepiforum.de/lepiwiki.pl?Bucculatrix_Ainsliella"], "noteType": "dataSource"}, {"label": ["In den USA verbreitete Mottenart aus der Familie der Bucculatricidae"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motten (Familie)"}], "identifier": "http://d-nb.info/gnd/1064281230", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1064281230", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1064281230", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1064281230", "source": "GND"}], "variant_access_point": ["Bucculatrix ainsliella"], "authorized_access_point": "Roteichen-Zwergwickler"} 1 +2024-09-10 15:44:00.962927 2024-09-10 15:44:00.962931 a1c2f483-9727-481f-a0f2-614f74bd6e4c {"md5": "04dd6fea5da2fa3319d70e24fa64a2f4", "pid": "1064098363", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Westflämisch"}], "identifier": "http://d-nb.info/gnd/1064098363", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1064098363", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1064098363", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1064098363", "source": "GND"}], "variant_access_point": ["Roeselaars"], "authorized_access_point": "Mundart Westflämisch (Roeselare)"} 1 +2024-09-10 15:44:01.044705 2024-09-10 15:44:01.044709 9e6e1900-2498-451e-b42c-93e83a8e7f3b {"md5": "e36a49b12e7f40d3184e366cc7aaa014", "pid": "1063927137", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Wissenschaftlerin"}], "related": [{"authorized_access_point": "Managementwissenschaftler"}], "identifier": "http://d-nb.info/gnd/1063927137", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1063927137", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1063927137", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1063927137", "source": "GND"}], "authorized_access_point": "Managementwissenschaftlerin"} 1 +2024-09-10 15:44:01.127827 2024-09-10 15:44:01.12783 8c9ab409-9077-4288-a7cc-59c54f5c74e7 {"md5": "a0ab71b3e35f1e4c2f31f81e47697f61", "pid": "1063927110", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Wissenschaftler"}], "related": [{"authorized_access_point": "Managementwissenschaftlerin"}], "identifier": "http://d-nb.info/gnd/1063927110", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1063927110", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1063927110", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1063927110", "source": "GND"}], "authorized_access_point": "Managementwissenschaftler"} 1 +2024-09-10 15:44:01.187264 2024-09-10 15:44:01.187268 d22036f2-2249-4596-b652-0c8061e8f465 {"md5": "73660c3e18c7dd1d7435824b0e93c3f3", "pid": "1063925908", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Chirurg"}], "related": [{"authorized_access_point": "Kieferchirurgie"}], "identifier": "http://d-nb.info/gnd/1063925908", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1063925908", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1063925908", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1063925908", "source": "GND"}], "authorized_access_point": "Kieferchirurg"} 1 +2024-09-10 15:44:01.255179 2024-09-10 15:44:01.255184 f1ec86fa-501b-4c18-85f1-dfe238673939 {"md5": "734b3d1e4cc19668272e5dbd7cf17232", "pid": "1063349230", "note": [{"label": ["Singvogel aus der Familie der Grasmückenartigen (Sylviidae), gehört zur Gattung der Laubsänger (Phylloscopus)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Grasmücken (Familie)"}], "identifier": "http://d-nb.info/gnd/1063349230", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1063349230", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1063349230", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1063349230", "source": "GND"}], "variant_access_point": ["Phylloscopus trochiloides"], "authorized_access_point": "Grünlaubsänger"} 1 +2024-09-10 15:44:01.33044 2024-09-10 15:44:01.330444 8764b887-b0a4-48ff-a278-88dddd36531c {"md5": "907f73f27978d638823c5fc189662b8c", "pid": "1062937325", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifier": "http://d-nb.info/gnd/1062937325", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1062937325", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1062937325", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1062937325", "source": "GND"}], "authorized_access_point": "Eduard-Müller-Krematorium (Hagen, Motiv)"} 1 +2024-09-10 15:44:01.391046 2024-09-10 15:44:01.391049 67cf4451-15e2-4ad3-b0be-1ae1a3ee4c5e {"md5": "6fa5f74f1a73c97a6b56c46cdc1e64ee", "pid": "1060931796", "note": [{"label": ["Internet - http://www.inboxproject.it/schedacompagnia.php?lang=&id=617"], "noteType": "dataSource"}, {"label": ["Theaterkonzept des Installationskünstlers Paolo Ferrari"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Theater"}], "related": [{"authorized_access_point": "Theater der Grausamkeit"}], "identifier": "http://d-nb.info/gnd/1060931796", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060931796", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060931796", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060931796", "source": "GND"}], "variant_access_point": ["Teatro dell'Oggetto Mancato", "Teatro dell'O.M.", "T.O.M."], "authorized_access_point": "Teatr'Absentia"} 1 +2024-09-10 15:44:01.463888 2024-09-10 15:44:01.463893 db520f36-6b40-43a2-ad78-7f014f5a488c {"md5": "7d42e6369d3269807f790ce35434b92b", "pid": "1060912503", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Westfälisch"}], "identifier": "http://d-nb.info/gnd/1060912503", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060912503", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060912503", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060912503", "source": "GND"}], "variant_access_point": ["Vördener Platt"], "authorized_access_point": "Mundart Westfälisch (Marienmünster-Vörden)"} 1 +2024-09-10 15:44:01.535538 2024-09-10 15:44:01.535546 8cb18749-52a5-4fc2-923b-dc7027a6de41 {"md5": "35389ed9a54ec40b5fe3dd316a791ad2", "pid": "1060909251", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Westfälisch"}], "identifier": "http://d-nb.info/gnd/1060909251", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060909251", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060909251", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060909251", "source": "GND"}], "authorized_access_point": "Mundart Westfälisch (Steinhagen, Gütersloh)"} 1 +2024-09-10 15:44:01.605674 2024-09-10 15:44:01.605677 762fc166-36a4-495a-8c6b-2d73f85e48f1 {"md5": "af0f41ebf895dc4001ec24f9892c8c3e", "pid": "1060907534", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Westfälisch"}], "identifier": "http://d-nb.info/gnd/1060907534", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060907534", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060907534", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060907534", "source": "GND"}], "variant_access_point": ["Unnaer Platt"], "authorized_access_point": "Mundart Westfälisch (Unna)"} 1 +2024-09-10 15:44:01.891481 2024-09-10 15:44:01.891488 6baf00c7-ab37-4f03-b83d-3dd9dd2bb452 {"md5": "764f5f3ae2645654f4996162b8e0b697", "pid": "1060881373", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Westfälisch"}], "identifier": "http://d-nb.info/gnd/1060881373", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060881373", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060881373", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060881373", "source": "GND"}], "authorized_access_point": "Mundart Westfälisch (Gronau (Westf.))"} 1 +2024-09-10 15:44:01.965845 2024-09-10 15:44:01.965854 eef9c42f-0094-4b42-ab08-f5f833a5cf03 {"md5": "99fe531bf25a9a2fb9334c560269ecd7", "pid": "1060881039", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Westfälisch"}], "identifier": "http://d-nb.info/gnd/1060881039", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060881039", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060881039", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060881039", "source": "GND"}], "authorized_access_point": "Mundart Westfälisch (Ahaus-Alstätte)"} 1 +2024-09-10 15:44:02.043355 2024-09-10 15:44:02.043359 5606ccf6-beb1-4bdd-b7b0-29873a88e56a {"md5": "dd3315ba5bccee1d03c3607b856e5119", "pid": "1060858703", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Westflämisch"}], "identifier": "http://d-nb.info/gnd/1060858703", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060858703", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060858703", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060858703", "source": "GND"}], "authorized_access_point": "Mundart Westflämisch (Torhout)"} 1 +2024-09-10 15:44:02.128961 2024-09-10 15:44:02.128965 281b7c1d-9010-4d94-b24c-dc1cdcfc225b {"md5": "706ba0d4287e9220d3cdf73e4990f2de", "pid": "1060811529", "note": [{"label": ["Homepage J. A. Comenius-Stiftung - http://www.comenius-stiftung.de/"], "noteType": "dataSource"}, {"label": ["Seit 1992 an Menschen, die sich in besonderer Weise um die Kinder- und Jugendhilfe verdient gemacht haben, vergebener Preis"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Preis (Auszeichnung)"}], "related": [{"authorized_access_point": "Jugendhilfe"}], "identifier": "http://d-nb.info/gnd/1060811529", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060811529", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060811529", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060811529", "source": "GND"}], "variant_access_point": ["J.-A.-Comenius-Preis"], "authorized_access_point": "Comenius-Preis"} 1 +2024-09-10 15:44:02.209052 2024-09-10 15:44:02.209057 a181c868-fb5b-43fb-bdb6-6de1fdaa47a3 {"md5": "2dd2df93e238a04e010571e3991e11bc", "pid": "1060804263", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Westfälisch"}], "identifier": "http://d-nb.info/gnd/1060804263", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060804263", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060804263", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060804263", "source": "GND"}], "variant_access_point": ["Osnabrücker Platt"], "authorized_access_point": "Mundart Westfälisch (Osnabrücker Land)"} 1 +2024-09-10 15:44:02.311538 2024-09-10 15:44:02.311542 8b6c65a8-d333-4f8f-bd25-ce183032d25f {"md5": "9bf5e9cb58100bcbb9580384814075c5", "pid": "1060778947", "note": [{"label": ["Internet - http://species.wikimedia.org/wiki/Varanus_macraei", "Internet - http://reptile-database.reptarium.cz/species?genus=Varanus&species=macraei&search_param=%28%28search%3D%27varanus+macraei%27%29%29"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Warane"}], "identifier": "http://d-nb.info/gnd/1060778947", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060778947", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060778947", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060778947", "source": "GND"}], "variant_access_point": ["Varanus macraei", "Blaugefleckter Baumwaran", "MacRae's Waran"], "authorized_access_point": "Blauer Baumwaran"} 1 +2024-09-10 15:44:02.401509 2024-09-10 15:44:02.401513 756a831d-0400-42e2-88b4-d85354385f18 {"md5": "9e6f260080bed5ddc0df31a8e4281dba", "pid": "1060674483", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifier": "http://d-nb.info/gnd/1060674483", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060674483", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060674483", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060674483", "source": "GND"}], "authorized_access_point": "Frechheit (Motiv)"} 1 +2024-09-10 15:44:02.504819 2024-09-10 15:44:02.504822 58d4aae9-d8d9-495c-84d2-419470ec6b6f {"md5": "868966f8cdefc7aa3412ca04f3ae5a90", "pid": "1060581957", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Mundart Mittelitalienisch (Marken)"}], "identifier": "http://d-nb.info/gnd/1060581957", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060581957", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060581957", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060581957", "source": "GND"}], "authorized_access_point": "Mundart Mittelitalienisch, Marken (San Severino Marche)"} 1 +2024-09-10 15:44:02.603844 2024-09-10 15:44:02.603849 30377696-d741-4c34-83b0-bee23630fd67 {"md5": "ef2f4c01fb864545e09726f6068716a3", "pid": "1060577895", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Sizilianisch"}], "identifier": "http://d-nb.info/gnd/1060577895", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060577895", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060577895", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060577895", "source": "GND"}], "authorized_access_point": "Mundart Sizilianisch (Lentini)"} 1 +2024-09-10 15:44:08.220424 2024-09-10 15:44:08.220427 94010abc-fd10-47ac-9e2a-dafea0421dd0 {"md5": "33a31f6d20778604521745a0743d1cda", "pid": "1030464197", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifier": "http://d-nb.info/gnd/1030464197", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1030464197", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1030464197", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1030464197", "source": "GND"}], "authorized_access_point": "Stoff (Motiv)"} 1 +2024-09-10 15:44:02.701894 2024-09-10 15:44:02.701902 9b5b0ec3-fd64-451c-8234-5c0172297a54 {"md5": "56ced0abdfc6a27f92b60c1d66d3586d", "pid": "106057683X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Burgundisch"}], "identifier": "http://d-nb.info/gnd/106057683X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/106057683X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)106057683X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)106057683X", "source": "GND"}], "authorized_access_point": "Mundart Burgundisch (Puisaye)"} 1 +2024-09-10 15:44:02.800239 2024-09-10 15:44:02.800243 9e1ce657-267e-4592-803d-f2a637111624 {"md5": "122ae9b39e4db786d56f77305e781fed", "pid": "1060521229", "note": [{"label": ["DWDS - https://www.dwds.de/wb/Koordinator"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Koordinator"}], "identifier": "http://d-nb.info/gnd/1060521229", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060521229", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060521229", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060521229", "source": "GND"}], "authorized_access_point": "Koordinatorin"} 1 +2024-09-10 15:44:02.900981 2024-09-10 15:44:02.900984 36dbddd9-d1b1-48ba-b5ae-a6ede8849fef {"md5": "a3729afe72d46f2e95cc4fda31d637ab", "pid": "1060471329", "note": [{"label": ["Homepage - http://www.sdl.com/products/sdl-trados-studio/", "Wikipedia - http://de.wikipedia.org/wiki/SDL_Trados#SDL_Trados_Studio_2014"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Programm"}], "related": [{"authorized_access_point": "Übersetzungsspeicher"}, {"authorized_access_point": "Computerunterstützte Übersetzung"}], "identifier": "http://d-nb.info/gnd/1060471329", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060471329", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060471329", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060471329", "source": "GND"}], "authorized_access_point": "SDL Trados Studio 2014"} 1 +2024-09-10 15:44:03.024133 2024-09-10 15:44:03.024141 44a99149-209e-40e2-8a82-f5cd62ec0827 {"md5": "340d14bcf15eeac77414e018a3b49b6e", "pid": "1060399172", "note": [{"label": ["Homepage - http://www.severinsbuergerpreis.de/"], "noteType": "dataSource"}, {"label": ["Seit 1984 jährlich verliehener Preis für Personen oder Institutionen, die sich in besonderem Maße um kölnische Sprache, Kultur und Lebensart sowie kölnisches Brauchtum verdient gemacht haben"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kulturpreis"}], "identifier": "http://d-nb.info/gnd/1060399172", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060399172", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060399172", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060399172", "source": "GND"}], "variant_access_point": ["Severins-Bürgerpreis", "Severinsbürgerpreis"], "authorized_access_point": "SeverinsBürgerpreis"} 1 +2024-09-10 15:44:03.122345 2024-09-10 15:44:03.122353 7d6868ee-7192-4e3b-b367-dbe330079b98 {"md5": "b6926405fb232aef17f5466c13436e4f", "pid": "1060358328", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifier": "http://d-nb.info/gnd/1060358328", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060358328", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060358328", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060358328", "source": "GND"}], "authorized_access_point": "Verwandtenehe (Motiv)"} 1 +2024-09-10 15:44:03.196033 2024-09-10 15:44:03.196037 f203aeb6-b399-466e-b104-c5344a132f14 {"md5": "3af77bc67eef5b5c9e39458b1f0d7a03", "pid": "106013411X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Italienisch"}], "identifier": "http://d-nb.info/gnd/106013411X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/106013411X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)106013411X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)106013411X", "source": "GND"}], "authorized_access_point": "Mundart Italienisch (San Severino Marche)"} 1 +2024-09-10 15:44:03.273528 2024-09-10 15:44:03.273532 8fc3d2aa-989c-416a-a34a-eb6cb692f4fe {"md5": "3dc202b9a5321b3aca72c44133d26037", "pid": "1060114909", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifier": "http://d-nb.info/gnd/1060114909", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060114909", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060114909", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060114909", "source": "GND"}], "authorized_access_point": "Senn (Motiv)"} 1 +2024-09-10 15:44:03.351736 2024-09-10 15:44:03.351741 2cc18102-6511-4474-9962-622a4c53e272 {"md5": "04ad1a9f8a84c6515daa701b95683143", "pid": "1060090236", "note": [{"label": ["Maß für die relative Härte, die Bleichbarkeit und den Aufschlussgrad von Zellstoffen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zahlenwert"}, {"authorized_access_point": "Zellstoff"}], "identifier": "http://d-nb.info/gnd/1060090236", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060090236", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060090236", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060090236", "source": "GND"}], "variant_access_point": ["Kappazahl", "Kappa number"], "authorized_access_point": "Kappa-Zahl"} 1 +2024-09-10 15:44:03.441606 2024-09-10 15:44:03.44161 f0ffb51d-550e-4656-8100-dac3145d536d {"md5": "9432a501548a58d308eed165d8c8d8fd", "pid": "1060077914", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifier": "http://d-nb.info/gnd/1060077914", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060077914", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060077914", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060077914", "source": "GND"}], "authorized_access_point": "Pandemie (Motiv)"} 1 +2024-09-10 15:44:03.54955 2024-09-10 15:44:03.549558 7ae7d1fb-a3e0-4aa3-b1a6-1df93d1d8eb8 {"md5": "eb422b707fb879800c74e45fd29993f3", "pid": "1060077817", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifier": "http://d-nb.info/gnd/1060077817", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060077817", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060077817", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060077817", "source": "GND"}], "authorized_access_point": "Grippe (Motiv)"} 1 +2024-09-10 15:44:03.633181 2024-09-10 15:44:03.633186 70bc922d-7780-40d1-bccc-d91045462f16 {"md5": "30b8fb1a96720751ed8d26aec84ce92f", "pid": "1059889455", "note": [{"label": ["Wikipedia - http://en.wikipedia.org"], "noteType": "dataSource"}, {"label": ["Selbstorganisierende Modellmembran aus einem kleinen Lipiddoppelschicht-Fragment und zwei Kopien eines amphipathischen Gerüstproteins; Nanodiscs eignen sich zur funktionellen Rekonstitution und Solubilisierung zahlreicher integraler Membranproteine"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Nanobiotechnologie"}, {"authorized_access_point": "Phospholipidmembran"}], "identifier": "http://d-nb.info/gnd/1059889455", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1059889455", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1059889455", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1059889455", "source": "GND"}], "variant_access_point": ["Nanodisk", "Nano-Disc", "Nano-Disk"], "authorized_access_point": "Nanodisc"} 1 +2024-09-10 15:44:03.715639 2024-09-10 15:44:03.715643 32f9035e-3809-4e79-a3e7-1750cf240abb {"md5": "b87698b18f5b0e3099ce9acd2eea685b", "pid": "1059823527", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Vokalmusik"}, {"authorized_access_point": "Advent"}], "identifier": "http://d-nb.info/gnd/1059823527", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1059823527", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1059823527", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1059823527", "source": "GND"}], "authorized_access_point": "Adventssingen"} 1 +2024-09-10 15:44:03.80152 2024-09-10 15:44:03.801529 c9e7d8fc-4497-4495-8291-6427ccaf9007 {"md5": "4410dc4c0bacd7a6375ecc33d5c1d669", "pid": "1059732483", "note": [{"label": ["Flugschrauber, ein Prototyp steht heute im Musée de l’air et de l’espace in Le Bourget bei Paris"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Hubschrauber"}], "identifier": "http://d-nb.info/gnd/1059732483", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1059732483", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1059732483", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1059732483", "source": "GND"}], "variant_access_point": ["X³", "X3", "Eurocopter X3", "X 3", "Highspeed-Hybrid-Helicopter", "H3"], "authorized_access_point": "Eurocopter X³"} 1 +2024-09-10 15:44:03.893192 2024-09-10 15:44:03.893197 3e36af7b-c1c2-49f8-846c-d3fcadc7a8c6 {"md5": "a03449a114ff6f79255b8d2fdf824e5f", "pid": "105962091X", "note": [{"label": ["Seelenhaltung der Melancholie u. Traurigkeit in der türkischen Kultur"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Melancholie"}, {"authorized_access_point": "Traurigkeit"}], "identifier": "http://d-nb.info/gnd/105962091X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/105962091X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)105962091X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)105962091X", "source": "GND"}], "authorized_access_point": "Hüzün"} 1 +2024-09-10 15:44:03.97594 2024-09-10 15:44:03.975944 566f1d47-6283-4d52-be1b-71ae3f673bdc {"md5": "19a136022cea6dc67cd3dbccf677ed65", "pid": "105960552X", "note": [{"label": ["Seelenhaltung der Traurigkeit und des Bedauerns in der tschechischen Kultur"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Traurigkeit"}, {"authorized_access_point": "Reue"}], "identifier": "http://d-nb.info/gnd/105960552X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/105960552X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)105960552X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)105960552X", "source": "GND"}], "authorized_access_point": "Lítost"} 1 +2024-09-10 15:44:04.048006 2024-09-10 15:44:04.04801 4a6ed4e8-6372-488f-a18c-ba154025d1f5 {"md5": "b121d96f9a34cdd905709901744dd360", "pid": "1059558653", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/Spieleautor"], "noteType": "dataSource"}, {"label": ["Spieleautoren erfinden und entwickeln Gesellschaftsspiele."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Autor"}], "related": [{"authorized_access_point": "Spieleautorin"}, {"authorized_access_point": "Gesellschaftsspiel"}], "identifier": "http://d-nb.info/gnd/1059558653", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1059558653", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1059558653", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1059558653", "source": "GND"}], "variant_access_point": ["Spiele-Autor"], "authorized_access_point": "Spieleautor"} 1 +2024-09-10 15:44:04.128662 2024-09-10 15:44:04.128666 1948cbfd-92f4-43eb-883c-b3f8645e9454 {"md5": "bbeae53abb715a2d695f4b8b70c9a755", "pid": "1059464667", "note": [{"label": ["Untergattung d. Familie d. Laufkäfer"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Laufkäfer"}], "identifier": "http://d-nb.info/gnd/1059464667", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1059464667", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1059464667", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1059464667", "source": "GND"}], "authorized_access_point": "Carabus apotomopterus"} 1 +2024-09-10 15:44:04.214917 2024-09-10 15:44:04.214922 002c9dc3-1408-4fbb-ade1-2530babf89f5 {"md5": "fe2925c40102e87cce83093243f50153", "pid": "1059463385", "note": [{"label": ["Waage zur Kontrolle des gleichmäßigen Gewichts von Zentrifugenröhrchen, bis Mitte des 20. Jh. in Gebrauch"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Waage"}, {"authorized_access_point": "Laborgerät"}], "identifier": "http://d-nb.info/gnd/1059463385", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1059463385", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1059463385", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1059463385", "source": "GND"}], "authorized_access_point": "Zentrifugenwaage"} 1 +2024-09-10 15:44:04.283049 2024-09-10 15:44:04.283055 e17336dc-0aa7-4cba-881f-0a1867f54667 {"md5": "71eb0d2da77715c24bd2fc4f2c25ff38", "pid": "1059408058", "note": [{"label": ["Familie d. Schwanzlurche"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1059408058", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1059408058", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1059408058", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1059408058", "source": "GND"}], "variant_access_point": ["Cryptobranchidae"], "authorized_access_point": "Riesensalamander"} 1 +2024-09-10 15:44:04.355235 2024-09-10 15:44:04.35524 185cf24b-753a-457d-bccf-e399ae37044e {"md5": "03854495bcac7a82f7013d0563fd6561", "pid": "1059388502", "note": [{"label": ["Entfernen von Fibrinogen aus Blut oder Plasma durch Überführen in Fibrin"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fibrinogen"}], "identifier": "http://d-nb.info/gnd/1059388502", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1059388502", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1059388502", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1059388502", "source": "GND"}], "variant_access_point": ["Defibrinieren"], "authorized_access_point": "Defibrinierung"} 1 +2024-09-10 15:44:04.424551 2024-09-10 15:44:04.424553 a521870b-9005-4e17-a833-25024401a08a {"md5": "b009347dc4ab83e0346af19ab0094d81", "pid": "1059388499", "note": [{"label": ["Monospezif. Gattung aus d. Familie d. Riesensalamander"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Riesensalamander"}], "identifier": "http://d-nb.info/gnd/1059388499", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1059388499", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1059388499", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1059388499", "source": "GND"}], "variant_access_point": ["Cryptobranchus alleganiensis", "Hellbender"], "authorized_access_point": "Schlammteufel"} 1 +2024-09-10 15:44:04.489268 2024-09-10 15:44:04.48927 cc0e2223-815b-4faf-8f01-89a433158b2b {"md5": "9a80799fb57337dd174d898d87ed6831", "pid": "1059388464", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tragflügel"}], "identifier": "http://d-nb.info/gnd/1059388464", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1059388464", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1059388464", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1059388464", "source": "GND"}], "authorized_access_point": "Schlagflügel"} 1 +2024-09-10 15:44:04.558418 2024-09-10 15:44:04.558422 8fe2e269-d5bc-4b59-85fd-25ac940ce852 {"md5": "5f823fe2ba259e5d5124c8ba45c7fcc7", "pid": "1059384434", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Raumsonde"}], "identifier": "http://d-nb.info/gnd/1059384434", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1059384434", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1059384434", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1059384434", "source": "GND"}], "authorized_access_point": "Pioneer 11"} 1 +2024-09-10 15:44:04.621762 2024-09-10 15:44:04.621765 07dc2bd2-ccbb-48ec-b431-ada690bb8e45 {"md5": "292d83b506c8282fcd4a79a74b97fec4", "pid": "1059383780", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Raumsonde"}], "identifier": "http://d-nb.info/gnd/1059383780", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1059383780", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1059383780", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1059383780", "source": "GND"}], "variant_access_point": ["Pioneer-Saturn"], "authorized_access_point": "Pioneer 10"} 1 +2024-09-10 15:44:04.690238 2024-09-10 15:44:04.690242 fd485813-5355-4770-a36d-ffb87c4213ea {"md5": "196995a7cd326e9df1f06de87b31287f", "pid": "1059323001", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Armleuchteralgen (Familie)"}], "identifier": "http://d-nb.info/gnd/1059323001", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1059323001", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1059323001", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1059323001", "source": "GND"}], "variant_access_point": ["Zarteste Glanzleuchteralge", "Nitella tenuissima"], "authorized_access_point": "Schirmförmige Glanzleuchteralge"} 1 +2024-09-10 15:44:04.76145 2024-09-10 15:44:04.761453 7715fd9a-2a17-4e1a-8a26-384fee1cc95c {"md5": "e77cf07f1a68797653835b0a6624977c", "pid": "1059271745", "note": [{"label": ["Art d. Familie d. Canidae"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Hundeartige"}], "identifier": "http://d-nb.info/gnd/1059271745", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1059271745", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1059271745", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1059271745", "source": "GND"}], "variant_access_point": ["Canis aureus"], "authorized_access_point": "Goldschakal"} 1 +2024-09-10 15:44:04.831568 2024-09-10 15:44:04.831572 e7ec6724-1a59-4fa4-8468-478cbeec0fed {"md5": "93bc9ec0f1cf8d2b711851d31d5cbf21", "pid": "1059254697", "note": [{"label": ["Homepage - http://www.canon.de/For_Home/Product_Finder/Cameras/Digital_SLR/EOS_1200D/discover/"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Spiegelreflexkamera"}, {"authorized_access_point": "Digitalkamera"}], "identifier": "http://d-nb.info/gnd/1059254697", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1059254697", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1059254697", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1059254697", "source": "GND"}], "authorized_access_point": "Canon EOS 1200D"} 1 +2024-09-10 15:44:04.911756 2024-09-10 15:44:04.911764 8f66cce3-14ca-41aa-818a-04e37f90dde9 {"md5": "f8bd864b816c9eb29046d0c15ebffcd4", "pid": "1059254646", "note": [{"label": ["Homepage - http://www.nikon.de/de_DE/product/digital-cameras/slr/consumer/d3300"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Spiegelreflexkamera"}, {"authorized_access_point": "Digitalkamera"}], "identifier": "http://d-nb.info/gnd/1059254646", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1059254646", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1059254646", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1059254646", "source": "GND"}], "authorized_access_point": "Nikon D3300"} 1 +2024-09-10 15:44:04.99225 2024-09-10 15:44:04.992255 8e038e70-4388-4d7f-b075-2acd5067465b {"md5": "3cacb4627d12c1ad90ffea9eeb498d9e", "pid": "1059226529", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Büroberuf"}], "related": [{"authorized_access_point": "Steuerfachangestellter"}], "identifier": "http://d-nb.info/gnd/1059226529", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1059226529", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1059226529", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1059226529", "source": "GND"}], "variant_access_point": ["Steuerfachgehilfin", "Fachgehilfin in steuer- und wirtschaftsberatenden Berufen", "Steuergehilfin", "Weibliche Fachangestellte für steuer- und wirtschaftsberatende Berufe"], "authorized_access_point": "Weibliche Steuerfachangestellte"} 1 +2024-09-10 15:44:05.063748 2024-09-10 15:44:05.063752 3d811c68-7c98-425e-b908-7bf5e560df1c {"md5": "76cb97bea81fee2d52e04a155a68254c", "pid": "1059152312", "note": [{"label": ["Wikipedia als ÖBB 2048 - https://de.wikipedia.org/wiki/%C3%96BB_2048"], "noteType": "dataSource"}, {"label": ["österr. Diesellokomotive", "Die Baureihe entstand ab 1991 durch Umbau aus DB Reihe 211 (vormals V 100)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Diesellokomotive"}], "related": [{"authorized_access_point": "Diesellokomotive Baureihe V 100"}, {"authorized_access_point": "Diesellokomotive Baureihe 211"}], "identifier": "http://d-nb.info/gnd/1059152312", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1059152312", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1059152312", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1059152312", "source": "GND"}], "variant_access_point": ["ÖBB 2048"], "authorized_access_point": "Diesellokomotive Baureihe 2048"} 1 +2024-09-10 15:44:05.146522 2024-09-10 15:44:05.146526 b0e441f4-2904-41cc-a89a-baff908086ba {"md5": "34802e5ca68f42c4e1b272826a9507da", "pid": "1059103257", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifier": "http://d-nb.info/gnd/1059103257", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1059103257", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1059103257", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1059103257", "source": "GND"}], "variant_access_point": ["Maitresse (Motiv)"], "authorized_access_point": "Mätresse (Motiv)"} 1 +2024-09-10 15:44:05.229698 2024-09-10 15:44:05.229703 56cf8555-4138-475d-be87-a7b2402db078 {"md5": "b1eb3ce53314f44bcc56fc83fa8a0a84", "pid": "1059090767", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Graswurzel-Journalismus&oldid=195160241"], "noteType": "dataSource"}, {"label": ["Journalismus, in dem Bürger eine aktive Rolle im Prozess der Recherche, des Berichtens, des Analysierens sowie des Verbreitens von Nachrichten und Informationen einnehmen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Journalismus"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1219100331", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2009003468", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2009003468"}], "authorized_access_point": "Citizen journalism"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1219100331", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF15619301", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb15619301f"}], "authorized_access_point": "Journalisme participatif"}], "identifier": "http://d-nb.info/gnd/1059090767", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1059090767", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1059090767", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1059090767", "source": "GND"}], "variant_access_point": ["Bürger-Journalismus", "Partizipativer Journalismus", "Citizen journalism"], "authorized_access_point": "Graswurzel-Journalismus"} 1 +2024-09-10 15:44:05.302894 2024-09-10 15:44:05.302901 d261ffa3-8a76-4de6-9605-1af4ae70e108 {"md5": "6eeef44521d0fe5a213611322742b4a5", "pid": "1059087871", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/w/index.php?title=Family_literacy&oldid=1070312475"], "noteType": "dataSource"}, {"label": ["Generationsübergreifender Lernansatz zur Förderung von Schriftsprachkompetenz"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bildungsförderung"}, {"authorized_access_point": "Alphabetisierung"}], "related": [{"authorized_access_point": "Schreib- und Lesefähigkeit"}], "identifier": "http://d-nb.info/gnd/1059087871", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1059087871", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1059087871", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1059087871", "source": "GND"}], "authorized_access_point": "Family Literacy"} 1 +2024-09-10 15:44:05.393676 2024-09-10 15:44:05.393684 da25bd70-1988-4c51-b1b0-ef26b23e2612 {"md5": "b91f2ff1bbb55eaaac6ffd1be6da57a8", "pid": "1058986295", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sazspiel"}], "identifier": "http://d-nb.info/gnd/1058986295", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058986295", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058986295", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058986295", "source": "GND"}], "variant_access_point": ["Bağlama", "Langhalslaute"], "authorized_access_point": "Bağlamaspiel"} 1 +2024-09-10 15:44:05.491023 2024-09-10 15:44:05.491027 161ca147-4cf0-457e-97d2-c8c5fc075f59 {"md5": "e6244209713cd13e0c602daac0b2dd05", "pid": "105896920X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Theodolit"}], "identifier": "http://d-nb.info/gnd/105896920X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/105896920X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)105896920X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)105896920X", "source": "GND"}], "authorized_access_point": "Kreiseltheodolit"} 1 +2024-09-10 15:44:05.556724 2024-09-10 15:44:05.556731 bfebcc62-ee06-48f8-9f20-874813468fa8 {"md5": "19092ebb0cc850c92cb71c5114898c39", "pid": "1058846361", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Elektrolokomotive"}, {"authorized_access_point": "Schmalspurlokomotive"}], "identifier": "http://d-nb.info/gnd/1058846361", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058846361", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058846361", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058846361", "source": "GND"}], "variant_access_point": ["Ge 4/6", "Gebirgslokomotive 4/6"], "authorized_access_point": "RhB Ge 4/6"} 1 +2024-09-10 15:44:05.621604 2024-09-10 15:44:05.621607 0a749d3c-99ed-4bff-92a1-cc9d0018417a {"md5": "5154aa41e0baece0a8e2020414e41acb", "pid": "1058723790", "note": [{"label": ["Meist dünnes, mit bunten Motiven bedrucktes Papier, in das Orangen eingewickelt zum Verkauf angeboten werden; als Sammelobjekt beliebt"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Papierverpackung"}], "identifier": "http://d-nb.info/gnd/1058723790", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058723790", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058723790", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058723790", "source": "GND"}], "authorized_access_point": "Orangenpapier"} 1 +2024-09-10 15:44:05.750886 2024-09-10 15:44:05.75089 f4526f7d-7165-422c-af68-119f7f187bcf {"md5": "de02ae3b5de86013da577fe62cac690b", "pid": "1058669559", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/PZL_P.11"], "noteType": "dataSource"}, {"label": ["1931-1939 von den staatlichen polnischen Flugzeugwerken (PZL) in mehreren Serien gebautes Jagdflugzeug; bei Ausbruch des Zweiten Weltkrieges Standardjäger der polnischen Luftwaffe."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Jagdflugzeug"}], "identifier": "http://d-nb.info/gnd/1058669559", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058669559", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058669559", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058669559", "source": "GND"}], "variant_access_point": ["P.11 (Jagdflugzeug)"], "authorized_access_point": "PZL P.11"} 1 +2024-09-10 15:44:05.839665 2024-09-10 15:44:05.839669 79a45137-404a-4827-9adc-393192f3ec71 {"md5": "40580f873665090cadaf22e460df27d4", "pid": "105862394X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Elektroniker"}], "related": [{"authorized_access_point": "Radar"}], "identifier": "http://d-nb.info/gnd/105862394X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/105862394X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)105862394X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)105862394X", "source": "GND"}], "variant_access_point": ["Radartechniker", "Flugsicherungs-Radartechniker"], "authorized_access_point": "Radarelektroniker"} 1 +2024-09-10 15:44:05.968476 2024-09-10 15:44:05.96848 273b9346-0fdc-4459-852e-5ae72d552cfb {"md5": "dd304889f97aa43b7c2beaec95bd192c", "pid": "1058513710", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Sizilianisch"}], "identifier": "http://d-nb.info/gnd/1058513710", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058513710", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058513710", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058513710", "source": "GND"}], "authorized_access_point": "Mundart Sizilianisch (Pachino)"} 1 +2024-09-10 15:44:06.046742 2024-09-10 15:44:06.046746 e73f25b6-14bf-45f0-8730-b200d7311383 {"md5": "ebee3f8ce350e621324a153312a8843b", "pid": "1058507044", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Ethnolekt&oldid=193420767"], "noteType": "dataSource"}, {"label": ["Sammelbegriff für sprachliche Varianten bzw. Sprechstile, die von Sprechern einer ethnischen (eigentlich: sprachlichen) Minderheit in einem bestimmten Sprachraum verwendet und als für sie typisch eingestuft werden"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Soziolinguistik"}], "related": [{"authorized_access_point": "Dialekt (Verhaltensforschung)"}, {"authorized_access_point": "Soziolekt"}], "identifier": "http://d-nb.info/gnd/1058507044", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058507044", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058507044", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058507044", "source": "GND"}], "authorized_access_point": "Ethnolekt"} 1 +2024-09-10 15:44:06.141787 2024-09-10 15:44:06.141795 89870e2b-ee17-4b0d-bc8b-892cbfdce4f6 {"md5": "32925755738bb6a4b470c92f20b26c3a", "pid": "1058389041", "note": [{"label": ["Ordnung der Braunalgen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1058389041", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058389041", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058389041", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058389041", "source": "GND"}], "authorized_access_point": "Tilopteridales"} 1 +2024-09-10 15:44:06.226469 2024-09-10 15:44:06.226473 9397a2b3-6594-49bb-8b42-9c3919c9fb68 {"md5": "8efa680b2d865e74211c900b1b2acdbe", "pid": "1058382799", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Westfälisch"}], "identifier": "http://d-nb.info/gnd/1058382799", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058382799", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058382799", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058382799", "source": "GND"}], "variant_access_point": ["Almer Platt"], "authorized_access_point": "Mundart Westfälisch (Brilon-Alme)"} 1 +2024-09-10 15:44:06.304274 2024-09-10 15:44:06.304277 e0a9ee56-3d1f-4945-973d-7fba5daa2d5b {"md5": "19a09f0855f07ff4032946e075f6bc06", "pid": "1058371266", "note": [{"label": ["5-teiliger antiker Versfuß"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Versfuß"}], "identifier": "http://d-nb.info/gnd/1058371266", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058371266", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058371266", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058371266", "source": "GND"}], "authorized_access_point": "Dochmius"} 1 +2024-09-10 15:44:06.370331 2024-09-10 15:44:06.370334 6a3641cb-1bb3-4fdd-93c0-37a5426cbac7 {"md5": "186a49e015caad48d539af67c433a23f", "pid": "1058370677", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifier": "http://d-nb.info/gnd/1058370677", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058370677", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058370677", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058370677", "source": "GND"}], "authorized_access_point": "Castrop-Rauxel (Motiv)"} 1 +2024-09-10 15:44:06.436588 2024-09-10 15:44:06.436593 75355e05-a22b-4095-9e68-bbb8ec31b787 {"md5": "e10f43463aa21e339795657998b6f6bb", "pid": "1058284371", "note": [{"label": ["Kombiniere mit Sprachbezeichnung und SW Morphem, z. B. SWW Altenglisch ; Morphem ; oht"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1058284371", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058284371", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058284371", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058284371", "source": "GND"}], "authorized_access_point": "oht"} 1 +2024-09-10 15:44:06.518189 2024-09-10 15:44:06.518192 00c33707-6c41-4987-932f-25c3558ca013 {"md5": "ac1692004edf15a6b79061aad4027121", "pid": "1058284304", "note": [{"label": ["Kombiniere mit Sprachbezeichnung und SW Morphem, z. B. SWW Altenglisch ; Morphem ; aht, Morphem"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1058284304", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058284304", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058284304", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058284304", "source": "GND"}], "authorized_access_point": "aht (Morphem)"} 1 +2024-09-10 15:44:06.600492 2024-09-10 15:44:06.6005 92992e9f-1880-480f-b949-0acc4b51dfba {"md5": "0b187aa17156462ec32f0b22dba7e619", "pid": "1058284096", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Roter Riese"}], "identifier": "http://d-nb.info/gnd/1058284096", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058284096", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058284096", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058284096", "source": "GND"}], "authorized_access_point": "OH/IR-Stern"} 1 +2024-09-10 15:44:06.694008 2024-09-10 15:44:06.694016 e58d8f24-aacf-4469-9e96-4f6e75da8c82 {"md5": "8f6618e4df2d79c63d11ded47e12596f", "pid": "1058280910", "note": [{"label": ["Kombiniere mit Sprachbezeichnung und Wortart, z.B. SWW Mittelhochdeutsch ; Adjektiv ; saelic"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1058280910", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058280910", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058280910", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058280910", "source": "GND"}], "authorized_access_point": "saelic"} 1 +2024-09-10 15:44:06.779203 2024-09-10 15:44:06.779206 563f132b-e9e9-48b7-aec4-df6265ac92b6 {"md5": "878205a31639381b8be4dc3adfeaae02", "pid": "1058249436", "note": [{"label": ["Benutzt für Tiere"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bein"}], "identifier": "http://d-nb.info/gnd/1058249436", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058249436", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058249436", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058249436", "source": "GND"}], "variant_access_point": ["Hinterlauf"], "authorized_access_point": "Hinterbein"} 1 +2024-09-10 15:44:06.848767 2024-09-10 15:44:06.848771 2670b4f9-6dbe-4452-ad46-8a82aa0e29c6 {"md5": "5dde538edc1ef7e12425448e25dd52ef", "pid": "1058206753", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Gegisch"}], "identifier": "http://d-nb.info/gnd/1058206753", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058206753", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058206753", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058206753", "source": "GND"}], "variant_access_point": ["Petreshticër Albanisch"], "authorized_access_point": "Mundart Albanisch (Petreshticë)"} 1 +2024-09-10 15:44:06.936568 2024-09-10 15:44:06.936575 0aa2cb14-d514-4ee6-aef3-be9e9bcff2fc {"md5": "fd26c413f2aa21047665b56dcd27dd43", "pid": "1058118161", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Musikerin"}], "related": [{"authorized_access_point": "Bluesmusiker"}, {"authorized_access_point": "Blues"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331602610", "source": "GND"}, {"type": "bf:Nbn", "value": "sh96006944", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh96006944"}], "authorized_access_point": "Women blues musicians"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331602610", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16619055", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16619055p"}], "authorized_access_point": "Musiciennes de blues"}], "identifier": "http://d-nb.info/gnd/1058118161", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058118161", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058118161", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058118161", "source": "GND"}], "authorized_access_point": "Bluesmusikerin"} 1 +2024-09-10 15:44:07.037145 2024-09-10 15:44:07.037149 2e57ead3-895f-42fd-b2a7-943a4ae07e94 {"md5": "2e5561364765db95bad3dc49b379199e", "pid": "1055857745", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Gaskonisch"}], "identifier": "http://d-nb.info/gnd/1055857745", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1055857745", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1055857745", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1055857745", "source": "GND"}], "authorized_access_point": "Mundart Gaskonisch (Entre-deux-Mers)"} 1 +2024-09-10 15:44:07.101148 2024-09-10 15:44:07.101151 6ba4ff33-7fd6-49d0-bcd7-46bee20ffca9 {"md5": "ced119e28dfad2e95e39212332c96740", "pid": "1054037531", "note": [{"label": ["Sammelbezeichnung für Reisen mit geistlichen, religiösen oder kirchlichen Inhalten"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tourismus"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332366457", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2021007042", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2021007042"}], "authorized_access_point": "Spiritual tourism"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332366457", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12323007", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12323007h"}], "authorized_access_point": "Tourisme spirituel"}], "identifier": "http://d-nb.info/gnd/1054037531", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1054037531", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1054037531", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1054037531", "source": "GND"}], "variant_access_point": ["Religiöser Tourismus"], "authorized_access_point": "Spiritueller Tourismus"} 1 +2024-09-10 15:44:07.183143 2024-09-10 15:44:07.183148 bb1e5a35-5e52-4e5f-9db0-43a881b5f955 {"md5": "070fa2309e478e97c18015aa44b831da", "pid": "1052970427", "note": [{"label": ["Raum, Kabine für den Projektor in einem Kino"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Kino"}], "identifier": "http://d-nb.info/gnd/1052970427", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1052970427", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1052970427", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1052970427", "source": "GND"}], "variant_access_point": ["Filmvorführraum", "Vorführraum", "Projektionskabine"], "authorized_access_point": "Projektionsraum (Kino)"} 1 +2024-09-10 15:44:07.259721 2024-09-10 15:44:07.259724 35b89786-2d24-446c-bbc1-1cd9fdf19b64 {"md5": "3258e5e1dcbcd59fd84e9264eacdd209", "pid": "1051355478", "note": [{"label": ["Soziale Bewegung mit Zentrum in der kongolesischen Hauptstadt Brazzaville, die sich durch das Tragen sehr eleganter Kleidung im Stile englischer Dandys bzw. Gentleman auszeichnet"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Soziale Bewegung"}], "related": [{"authorized_access_point": "Mode"}, {"authorized_access_point": "Sapeur"}], "identifier": "http://d-nb.info/gnd/1051355478", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1051355478", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1051355478", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1051355478", "source": "GND"}], "variant_access_point": ["La Sape"], "authorized_access_point": "Société des Ambianceurs et des Personnes Élégantes"} 1 +2024-09-10 15:44:07.319632 2024-09-10 15:44:07.319635 7440a0f4-ee24-43ed-a9da-39f087be7da1 {"md5": "78a390dabc7f37127a3986d866d8f0de", "pid": "1050801644", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Westflämisch"}], "identifier": "http://d-nb.info/gnd/1050801644", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1050801644", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1050801644", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1050801644", "source": "GND"}], "authorized_access_point": "Mundart Westflämisch (Bachten de Kupe)"} 1 +2024-09-10 15:44:07.384059 2024-09-10 15:44:07.384065 f35a0b8e-44db-42db-bf15-9eb940c39ded {"md5": "2b664ca21f74356dfd7eb8337e565f6f", "pid": "1050440188", "note": [{"label": ["Ethnie im Hochland Papua-Neuguineas, Southern Highlands Province"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Papua"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134383754", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12699651", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb126996512"}], "authorized_access_point": "Wiru (peuple de Papouasie-Nouvelle-Guinée)"}], "identifier": "http://d-nb.info/gnd/1050440188", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1050440188", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1050440188", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1050440188", "source": "GND"}], "variant_access_point": ["Witu (Volk)", "Pangia"], "authorized_access_point": "Wiru"} 1 +2024-09-10 15:44:07.466337 2024-09-10 15:44:07.466341 e4344256-8c11-4bae-9cff-0a2cb9fb8a18 {"md5": "486dade1f836b952679da6a2e56bb37f", "pid": "1049971213", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sonnenbarsche (Familie)"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333375107", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85109081", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85109081"}], "authorized_access_point": "Pumpkinseed (Fish)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333375107", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17800495", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb178004954"}], "authorized_access_point": "Crapet-soleil"}], "identifier": "http://d-nb.info/gnd/1049971213", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1049971213", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1049971213", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1049971213", "source": "GND"}], "variant_access_point": ["Gemeiner Sonnenbarsch", "Lepomis gibbosus"], "authorized_access_point": "Sonnenbarsch"} 1 +2024-09-10 15:44:07.558615 2024-09-10 15:44:07.558618 e27a5f40-0a01-417d-b072-66f72f51ee77 {"md5": "1758d0ff6d9b979298f896e1f1ee581b", "pid": "1049453719", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Urheberrechtsverletzung&oldid=196809744"], "noteType": "dataSource"}, {"label": ["Verstoß gegen urheberrechtliche Vorschriften"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Urheberrecht"}, {"authorized_access_point": "Rechtsverletzung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254498478", "source": "GND"}, {"type": "bf:Nbn", "value": "XX4576999", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX4576999"}], "authorized_access_point": "Delitos contra la propiedad intelectual"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113404321X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85032500", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85032500"}], "authorized_access_point": "Copyright infringement"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113404321X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11976722", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119767220"}], "authorized_access_point": "Infractions au droit d'auteur"}], "identifier": "http://d-nb.info/gnd/1049453719", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1049453719", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1049453719", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1049453719", "source": "GND"}], "variant_access_point": ["Urheberrechtsverstoß", "Urheberrecht"], "authorized_access_point": "Urheberrechtsverletzung"} 1 +2024-09-10 15:44:08.802567 2024-09-10 15:44:08.802571 9dc444f1-a5a7-48e1-8245-28bc1f45f1ab {"md5": "79db6abc01ae723b40aae739e2ce616d", "pid": "1023745712", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tankstelle"}, {"authorized_access_point": "Batterieaufladung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1228385939", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2012003590", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2012003590"}], "authorized_access_point": "Battery charging stations (Electric vehicles)"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)120528379X", "source": "GND"}, {"type": "bf:Nbn", "value": "30212-2", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/30212-2"}], "authorized_access_point": "Ladeinfrastruktur"}], "identifier": "http://d-nb.info/gnd/1023745712", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1023745712", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1023745712", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1023745712", "source": "GND"}], "variant_access_point": ["Elektrotankstelle", "Ladestation", "Ladesäule", "Ladeinfrastruktur", "Charging station"], "authorized_access_point": "Stromtankstelle"} 1 +2024-09-10 15:44:07.619627 2024-09-10 15:44:07.619629 0cc18ba7-5606-466f-bc36-94749f5ae481 {"md5": "08564600d47fc1c6a56827c5d3e10621", "pid": "104797553X", "note": [{"label": ["Flussdelphine des Ganges-Brahmaputra-Systems und des Mittellaufs des Indus"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zahnwale"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331847222", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85114240", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85114240"}], "authorized_access_point": "River dolphins"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331847222", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13541390", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb135413904"}], "authorized_access_point": "Dauphins d'eau douce"}], "identifier": "http://d-nb.info/gnd/104797553X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/104797553X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)104797553X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)104797553X", "source": "GND"}], "variant_access_point": ["Süßwasserdelphine", "Gangesdelphine", "Indusdelphine", "Platanistidae"], "authorized_access_point": "Schnabeldelphine"} 1 +2024-09-10 15:44:07.69445 2024-09-10 15:44:07.694458 c5f2b054-c470-429b-bc22-9f37a5559710 {"md5": "0d70126cc6de4c78006bf8c205e8a514", "pid": "1047231085", "note": [{"label": ["Politische Demonstration 28.8.1963 für mehr Menschenrechte der afroamerikanischen Bürger"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bürgerrechtsbewegung"}, {"authorized_access_point": "Demonstration"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133845851", "source": "GND"}, {"type": "bf:Nbn", "value": "n2012036795", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/names/n2012036795"}], "authorized_access_point": "March on Washington for Jobs and Freedom (1963 : Washington, D.C.)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133845851", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13194028", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13194028z"}], "authorized_access_point": "Marche sur Washington (1963)"}], "identifier": "http://d-nb.info/gnd/1047231085", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1047231085", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1047231085", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1047231085", "source": "GND"}], "variant_access_point": ["March on Washington for jobs and freedom", "Marsch auf Washington", "The great March on Washington"], "authorized_access_point": "Marsch auf Washington für Arbeit und Freiheit"} 1 +2024-09-10 15:44:07.782854 2024-09-10 15:44:07.782863 292426fc-c793-40be-b657-2f95aca392e2 {"md5": "90d4d0560634643c8d4aa6dc0ad107a6", "pid": "1041610890", "note": [{"label": ["Als Nocebo-Effekt (Nocebo = lat. „Ich werde schaden.“) bezeichnet man das Auftreten oder die Zunahme von Krankheitssymptomen nach einer medizinischen oder pharmakologischen Behandlung, wobei die Symtomatik von den negativen Erwartungen des Patienten ausgelöst wird, nicht von der Behandlung selbst."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Nebenwirkung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1222525097", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16254337", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16254337h"}], "authorized_access_point": "Effet nocebo"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)128220467X", "source": "GND"}, {"type": "bf:Nbn", "value": "D064786", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D064786"}], "authorized_access_point": "Nocebo Effect"}], "identifier": "http://d-nb.info/gnd/1041610890", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1041610890", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1041610890", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1041610890", "source": "GND"}], "variant_access_point": ["Nocebo", "Nocebowirkung", "Noceboantwort"], "authorized_access_point": "Nocebo-Effekt"} 1 +2024-09-10 15:44:07.885139 2024-09-10 15:44:07.885148 cb25da38-0da9-40c1-b432-89f09de01735 {"md5": "5df715b1f8efc90e16f5325392c1cbe5", "pid": "1037919874", "note": [{"label": ["Internet - http://www.menantes-wandersleben.de/litpreis.html"], "noteType": "dataSource"}, {"label": ["Seit 2006 alle zwei Jahre vom Menantes-Förderkreis und Ev. Kirchengemeinde Wandersleben vergebener Literaturpreis"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Literaturpreis"}], "identifier": "http://d-nb.info/gnd/1037919874", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1037919874", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1037919874", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1037919874", "source": "GND"}], "variant_access_point": ["Menantes-Preis", "Menantes-Preis für erotische Literatur"], "authorized_access_point": "Menantes-Preis für erotische Dichtung"} 1 +2024-09-10 15:44:07.978906 2024-09-10 15:44:07.97891 0d542378-1822-4490-b8ad-981baf08265c {"md5": "6bd3a603864f95e3563060f183ec8166", "pid": "1034281828", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifier": "http://d-nb.info/gnd/1034281828", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1034281828", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1034281828", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1034281828", "source": "GND"}], "authorized_access_point": "Hauswirtschaft (Motiv)"} 1 +2024-09-10 15:44:08.138186 2024-09-10 15:44:08.138194 7f155c39-1cd9-4f6a-82b4-6878077b4281 {"md5": "72e5ec4d4f308de1331904301227efdf", "pid": "1033705691", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Marienfest"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331871239", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17737043", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17737043x"}], "authorized_access_point": "Nativité de Marie (fête)"}], "identifier": "http://d-nb.info/gnd/1033705691", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1033705691", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1033705691", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1033705691", "source": "GND"}], "authorized_access_point": "Mariä Geburt"} 1 +2024-09-10 15:44:08.293462 2024-09-10 15:44:08.293466 c8863bbd-8a35-4c70-8014-832b2e4309c8 {"md5": "c72bfd44c6ba97128c8e41c4dd5ba4a2", "pid": "1028524978", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ethnologie"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134386982", "source": "GND"}, {"type": "bf:Nbn", "value": "sh93005976", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh93005976"}], "authorized_access_point": "Visual anthropology"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134386982", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13168664", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13168664t"}], "authorized_access_point": "Anthropologie visuelle"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254500537", "source": "GND"}, {"type": "bf:Nbn", "value": "XX545504", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX545504"}], "authorized_access_point": "Antropología visual"}], "identifier": "http://d-nb.info/gnd/1028524978", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1028524978", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1028524978", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1028524978", "source": "GND"}], "variant_access_point": ["Visuelle Anthropologie", "Visual anthropology"], "authorized_access_point": "Visuelle Ethnologie"} 1 +2024-09-10 15:44:08.355398 2024-09-10 15:44:08.355401 192cc5d6-983a-454a-b444-f009ba7cfe55 {"md5": "9b263d0de9efac3af832f1b22ae29a26", "pid": "1027073808", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331845491", "source": "GND"}, {"type": "bf:Nbn", "value": "sh88020731", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh88020731"}], "authorized_access_point": "Galatheidae"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331845491", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF15749610", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb157496101"}], "authorized_access_point": "Galathéidés"}], "identifier": "http://d-nb.info/gnd/1027073808", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1027073808", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1027073808", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1027073808", "source": "GND"}], "variant_access_point": ["Galatheidae", "Squat lobsters"], "authorized_access_point": "Furchenkrebse"} 1 +2024-09-10 15:44:08.420737 2024-09-10 15:44:08.420741 d35066b3-4d40-4585-bab5-35ac706c0ad8 {"md5": "bbac2a7688aeba5ce2ed914cad507fa1", "pid": "1027071171", "note": [{"label": ["NCBI-Taxonomy - http://www.ncbi.nlm.nih.gov/taxonomy?term=sciaenops%20ocellatus"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Umberfische"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333485506", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85022524", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85022524"}], "authorized_access_point": "Red drum"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333485506", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17807388", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb178073888"}], "authorized_access_point": "Tambour rouge"}], "identifier": "http://d-nb.info/gnd/1027071171", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1027071171", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1027071171", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1027071171", "source": "GND"}], "variant_access_point": ["Perca ocellata", "Red drum", "Roter Trommler"], "authorized_access_point": "Sciaenops ocellatus"} 1 +2024-09-10 15:44:08.51897 2024-09-10 15:44:08.518975 fa892176-783c-4bd7-828b-81b6870164da {"md5": "30373054dac61f959244916e9efe8b47", "pid": "1026470986", "note": [{"label": ["Erstflug 1958"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Transportflugzeug"}], "identifier": "http://d-nb.info/gnd/1026470986", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1026470986", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1026470986", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1026470986", "source": "GND"}], "variant_access_point": ["De Havilland Canada DHC-4 Caribou", "De Havilland D.H. 4 Caribou", "D.H. 4 Caribou", "DHC 4", "DHC-4"], "authorized_access_point": "DHC-4 Caribou"} 1 +2024-09-10 15:44:08.615811 2024-09-10 15:44:08.615822 82aaaa58-32ff-434a-becb-58dc8c2ce18d {"md5": "8133893052612f0665a90a195c357c92", "pid": "1026351537", "note": [{"label": ["Tonstempel mit verschiedenen Verzierungsmustern, schon in d. Jungsteinzeit bekannt"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Stempel"}], "related": [{"authorized_access_point": "Brotlaibidol"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334232970", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF18066386", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb18066386b"}], "authorized_access_point": "Pintaderas"}], "identifier": "http://d-nb.info/gnd/1026351537", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1026351537", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1026351537", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1026351537", "source": "GND"}], "authorized_access_point": "Pintadera"} 1 +2024-09-10 15:44:08.712511 2024-09-10 15:44:08.712515 6a3ea09a-e849-41c2-890f-c8ab028ff2a8 {"md5": "8131efd5653d83e3ea7d47dbc1e529dd", "pid": "1025228928", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Spezielle Soziologie"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1026988039", "source": "GND"}, {"type": "bf:Nbn", "value": "10044108", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10044108"}], "authorized_access_point": "Geschlechterforschung"}], "identifier": "http://d-nb.info/gnd/1025228928", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1025228928", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1025228928", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1025228928", "source": "GND"}], "authorized_access_point": "Geschlechtersoziologie"} 1 +2024-09-10 15:44:08.888302 2024-09-10 15:44:08.888306 0c92b16d-fe79-4e25-a0f2-36501e5ccd5f {"md5": "b6be3e807238f7f2e51a85152c2dd32d", "pid": "1023362872", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133337481X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85021929", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85021929"}], "authorized_access_point": "Centrarchidae"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133337481X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF15555678", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb15555678j"}], "authorized_access_point": "Centrarchidés"}], "identifier": "http://d-nb.info/gnd/1023362872", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1023362872", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1023362872", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1023362872", "source": "GND"}], "variant_access_point": ["Centrarchidae", "Sunfish"], "authorized_access_point": "Sonnenbarsche (Familie)"} 1 +2024-09-10 15:44:08.965264 2024-09-10 15:44:08.965268 6100844f-ab21-4fa6-a74e-7c5bc9a9e649 {"md5": "990214383bd8f1061979941c6b07519c", "pid": "1022832425", "note": [{"label": ["Ordnung Mucorales"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134250681", "source": "GND"}, {"type": "bf:Nbn", "value": "sh86007263", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh86007263"}], "authorized_access_point": "Mucoraceae"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134250681", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12270265", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12270265c"}], "authorized_access_point": "Mucoracées"}], "identifier": "http://d-nb.info/gnd/1022832425", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1022832425", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1022832425", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1022832425", "source": "GND"}], "authorized_access_point": "Mucoraceae"} 1 +2024-09-10 15:44:09.039601 2024-09-10 15:44:09.039605 b8281751-1335-44f2-8f80-c932b8c2731a {"md5": "216bff78d4764192589d854b73df869c", "pid": "1021256064", "note": [{"label": ["Hypothetisches Meson aus vier Quarks."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Exotisches Hadron"}], "related": [{"authorized_access_point": "Quark (Physik)"}], "identifier": "http://d-nb.info/gnd/7863105-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7863105-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1021256064", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7863105-1", "source": "GND"}], "authorized_access_point": "Tetraquark"} 1 +2024-09-10 15:44:09.106436 2024-09-10 15:44:09.106439 8480f0a2-bd74-4ff1-9657-c2a50eb425ea {"md5": "ba2c884ce2fb56accc761da768ccf999", "pid": "1018220429", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Westfälisch"}], "identifier": "http://d-nb.info/gnd/7846068-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7846068-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1018220429", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7846068-2", "source": "GND"}], "authorized_access_point": "Mundart Westfälisch (Kreis Herford)"} 1 +2024-09-10 15:44:09.174667 2024-09-10 15:44:09.17467 8c995e99-2780-4537-9e92-dd0ee2de7b72 {"md5": "7b40455a7c362687eb23c98270eb2607", "pid": "1017491062", "note": [{"label": ["OBV - https://permalink.obvsg.at/AC08535334", "Wikipedia - https://de.wikipedia.org/wiki/%C3%96BB_4030"], "noteType": "dataSource"}, {"label": ["Elektrotriebwagen der ÖBB, gebaut 1956-1975"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Elektrotriebwagen"}], "identifier": "http://d-nb.info/gnd/7843328-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7843328-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1017491062", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7843328-9", "source": "GND"}], "variant_access_point": ["Triebwagen Baureihe 4030", "ÖBB Reihe 4030", "ÖBB 4030"], "authorized_access_point": "Elektrotriebwagen Baureihe 4030"} 1 +2024-09-10 15:44:09.261271 2024-09-10 15:44:09.261276 e4703050-575a-44b7-9cbf-dc56bc0872ef {"md5": "16661b9d7047635e5b8b4988d6a6650d", "pid": "1017490090", "note": [{"label": ["OBV - https://permalink.obvsg.at/AC08535331", "Wikipedia - https://de.wikipedia.org/wiki/%C3%96BB_4020"], "noteType": "dataSource"}, {"label": ["Elektrotriebwagen der ÖBB, gebaut 1978-1987"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Elektrotriebwagen"}], "identifier": "http://d-nb.info/gnd/7843327-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7843327-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1017490090", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7843327-7", "source": "GND"}], "variant_access_point": ["Triebwagen Baureihe 4020", "ÖBB Reihe 4020", "ÖBB 4020"], "authorized_access_point": "Elektrotriebwagen Baureihe 4020"} 1 +2024-09-10 15:44:09.328646 2024-09-10 15:44:09.328649 b714fb7c-9865-4e78-9a01-a634437e89e7 {"md5": "f2c5ba89959606bb71d3367c2c031c67", "pid": "1017217165", "note": [{"label": ["Wikipedia unter Noctuoidea - https://de.wikipedia.org/wiki/Noctuoidea"], "noteType": "dataSource"}, {"label": ["Unterfamilie der Schmetterlingsfamilie Eulen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Eulen (Schmetterlinge)"}], "identifier": "http://d-nb.info/gnd/7842430-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7842430-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1017217165", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7842430-6", "source": "GND"}], "authorized_access_point": "Psaphidinae"} 1 +2024-09-10 15:44:09.38517 2024-09-10 15:44:09.385173 7c7f66a2-de30-4194-a254-415c22c91d1c {"md5": "36104ed088435b57e6ee149bfa62ee70", "pid": "1017177503", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Einwanderin"}, {"authorized_access_point": "Chilenin"}], "identifier": "http://d-nb.info/gnd/7842262-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7842262-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1017177503", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7842262-0", "source": "GND"}], "authorized_access_point": "Chilenische Einwanderin"} 1 +2024-09-10 15:44:09.456587 2024-09-10 15:44:09.45659 329eee41-4ce4-4510-a85b-8b909be6012e {"md5": "258201a25aac16d71a4774da28b33a2d", "pid": "1017027366", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Picrodendraceae"], "noteType": "dataSource"}, {"label": ["zweikeimblättrige Familie, mit den Wolfsmilchgewächsen nah verwandt"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Malpighienartige"}], "related": [{"authorized_access_point": "Wolfsmilchgewächse"}], "identifier": "http://d-nb.info/gnd/7841608-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7841608-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1017027366", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7841608-5", "source": "GND"}], "variant_access_point": ["Euphorbiaceae subtrib. Picrodendrinae", "Euphorbiaceae trib. Picrodendreae", "Euphorbiaceae subfam. Oldfieldioideae", "Euphorbiaceae subtrib. Dissiliariinae", "Euphorbiaceae subtrib. Paivaeusinae", "Euphorbiaceae subtrib. Petalostimatinae", "Euphorbiaceae subtrib. Toxicodendrinae"], "authorized_access_point": "Picrodendraceae"} 1 +2024-09-10 15:44:09.544948 2024-09-10 15:44:09.544957 3066edf1-2ef2-4b12-8da3-eb7abdbdfd68 {"md5": "8144bf38a7e5515e3b6ce16f4a764f47", "pid": "1016810989", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Kugelk%C3%A4fer"], "noteType": "dataSource"}, {"label": ["Käferfamilie"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133797040", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12438548", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb124385482"}], "authorized_access_point": "Sphaeriusidae"}], "identifier": "http://d-nb.info/gnd/7840811-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7840811-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1016810989", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7840811-8", "source": "GND"}], "variant_access_point": ["Sphaeriusidae", "Sphaeridae", "Sphaeriidae", "Microsporidae", "Sphaerius"], "authorized_access_point": "Kugelkäfer"} 1 +2024-09-10 15:44:09.626399 2024-09-10 15:44:09.626449 18812126-e817-421b-8bef-37923429786c {"md5": "56e3145f2784506a64bf3565de44dbee", "pid": "1016599463", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Okkultistin"}, {"authorized_access_point": "Okkultismus"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331753430", "source": "GND"}, {"type": "bf:Nbn", "value": "sh87003651", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh87003651"}], "authorized_access_point": "Occultists"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331753430", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16745674", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16745674f"}], "authorized_access_point": "Occultistes"}], "identifier": "http://d-nb.info/gnd/7840293-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7840293-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1016599463", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7840293-1", "source": "GND"}], "authorized_access_point": "Okkultist"} 1 +2024-09-10 15:44:09.749758 2024-09-10 15:44:09.749761 df97a4b4-8280-4f37-a214-e76dc62462f1 {"md5": "6d05108247332035c07ab7dbc97c936b", "pid": "1016326106", "note": [{"label": ["auf Homologien beruhende, den verwandtschaftlichen Beziehungen entsprechende Gruppierung der Organismen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Klassifikation"}, {"authorized_access_point": "Systematik"}], "identifier": "http://d-nb.info/gnd/7836847-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7836847-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1016326106", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7836847-9", "source": "GND"}], "authorized_access_point": "Natürliches System"} 1 +2024-09-10 15:44:09.814765 2024-09-10 15:44:09.814769 34b14813-63d5-481d-b589-14b6961b0357 {"md5": "23a61e795274b476e5b7a13d8ce34715", "pid": "1015079253", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifier": "http://d-nb.info/gnd/7758150-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7758150-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1015079253", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7758150-7", "source": "GND"}], "authorized_access_point": "Anschluss Österreichs (Motiv)"} 1 +2024-09-10 15:44:09.896345 2024-09-10 15:44:09.896349 a715706b-e600-4dd2-b16c-d1f414ab5ef4 {"md5": "e28d79154a7baf67f90b718ae3a4c8f2", "pid": "1013014065", "note": [{"label": ["§ 20a WpHG"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Manipulation"}], "identifier": "http://d-nb.info/gnd/7749818-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7749818-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1013014065", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7749818-5", "source": "GND"}], "variant_access_point": ["Börsen- und Marktmanipulation", "Kursmanipulation", "Marktpreismanipulation", "Strafbare Marktmanipulation", "Marktmanipulationsverbot", "Kursbetrug", "Kurs- und Marktpreismanipulation", "Marktmanipulation", "Finanzinstrument"], "authorized_access_point": "Marktmanipulation"} 1 +2024-09-10 15:44:09.970786 2024-09-10 15:44:09.97079 188a57f9-848c-4daa-9d2a-210f0d754e92 {"md5": "2d1cc6418036ffba4791f40c12a53a4e", "pid": "1011954141", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333473001", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85099724", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85099724"}], "authorized_access_point": "Percichthyidae"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333473001", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17156205", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb171562052"}], "authorized_access_point": "Percichthyidae"}], "identifier": "http://d-nb.info/gnd/7746334-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7746334-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1011954141", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7746334-1", "source": "GND"}], "variant_access_point": ["Percichthyidae"], "authorized_access_point": "Dorschbarsche"} 1 +2024-09-10 15:44:10.069213 2024-09-10 15:44:10.069218 1aa120fa-e2cf-4233-918a-ede29041b28b {"md5": "aa2d5546bc71b0fb324521c6883e779d", "pid": "1011935201", "note": [{"label": ["Entstehungsjahr: 1910, auch halbfett 1910"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fraktur (Druckschrift)"}], "identifier": "http://d-nb.info/gnd/7746253-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7746253-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1011935201", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7746253-1", "source": "GND"}], "variant_access_point": ["Weltfraktur"], "authorized_access_point": "Welt-Fraktur"} 1 +2024-09-10 15:44:10.139515 2024-09-10 15:44:10.139518 cd4484dd-978d-4ca0-bd44-1c2b490bfb32 {"md5": "2c3c3bd6f7afde65fa39f3b6746dbfad", "pid": "1011536455", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Dorschbarsche"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134832605", "source": "GND"}, {"type": "bf:Nbn", "value": "sh92004648", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh92004648"}], "authorized_access_point": "Macquarie perch"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134832605", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17156241", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17156241x"}], "authorized_access_point": "Macquaria australasica"}], "identifier": "http://d-nb.info/gnd/7744753-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7744753-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1011536455", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7744753-0", "source": "GND"}], "variant_access_point": ["Macquarie Perch", "Mountain Perch"], "authorized_access_point": "Macquaria australasica"} 1 +2024-09-10 15:44:10.22362 2024-09-10 15:44:10.223632 15e6a0b6-4faf-46d7-9ed1-eaeaadaad676 {"md5": "c6ec28458d560ab66c630b4fa8358f7b", "pid": "1011385856", "note": [{"label": ["Wikipedia unter Kobralilie - https://de.wikipedia.org/wiki/Kobralilie"], "noteType": "dataSource"}, {"label": ["in NW-Amerika endemische, monotypische Gattung der Schlauchpflanzengewächse"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schlauchpflanzengewächse"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134821107", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85035810", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85035810"}], "authorized_access_point": "Darlingtonia californica"}], "identifier": "http://d-nb.info/gnd/7743987-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7743987-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1011385856", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7743987-9", "source": "GND"}], "variant_access_point": ["Darlingtonia", "Darlingtonia californica", "Darlingtonie", "Kobraschlauchpflanze (Gattung)", "Kobralilie (Gattung)", "Kobralilien (Gattung)", "Kobraschlauchpflanze", "Kobralilie", "Chrysamphora", "Chrysamphora californica"], "authorized_access_point": "Kobrapflanze"} 1 +2024-09-10 15:44:10.304847 2024-09-10 15:44:10.30485 66c73ef5-4590-4649-83d9-c25cbda0008e {"md5": "96c10f158875065960a9cecac470001b", "pid": "1011285738", "note": [{"label": ["Wikipedia unter Seifenbaumartige - https://de.wikipedia.org/wiki/Seifenbaumartige"], "noteType": "dataSource"}, {"label": ["Familie der Seifenbaumartigen (Sapindales)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Seifenbaumartige"}], "identifier": "http://d-nb.info/gnd/7743628-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7743628-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1011285738", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7743628-3", "source": "GND"}], "variant_access_point": ["Tetradiclis"], "authorized_access_point": "Tetradiclidaceae"} 1 +2024-09-10 15:44:10.36858 2024-09-10 15:44:10.368584 8b1aa7cf-18cc-49a4-866b-d4e9cabeaa62 {"md5": "089148c7e605980d16067c10f8cd9779", "pid": "1011285436", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Nitrariaceae"], "noteType": "dataSource"}, {"label": ["Familie der Seifenbaumartigen [Sapindales]"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Seifenbaumartige"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134821166", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16063257", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16063257g"}], "authorized_access_point": "Nitraria"}], "identifier": "http://d-nb.info/gnd/7743625-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7743625-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1011285436", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7743625-8", "source": "GND"}], "variant_access_point": ["Nitraria"], "authorized_access_point": "Nitrariaceae"} 1 +2024-09-10 15:44:10.433715 2024-09-10 15:44:10.433717 92c0b5eb-bcd4-474f-a8f3-8037a7345896 {"md5": "f4415b4e910657844a2b52be68f37ee8", "pid": "1011282518", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Kirkiaceae"], "noteType": "dataSource"}, {"label": ["Familie der Seifenbaumartigen [sensu Sapindales]"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Seifenbaumartige"}], "identifier": "http://d-nb.info/gnd/7743599-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7743599-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1011282518", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7743599-0", "source": "GND"}], "authorized_access_point": "Kirkiaceae"} 1 +2024-09-10 15:44:10.492352 2024-09-10 15:44:10.492354 af1f1156-f722-47a2-a90c-6b73ba21244f {"md5": "96f86fb35805a2c551e250d605885245", "pid": "1011281368", "note": [{"label": ["Wikipedia unter Keulenfrüchte - https://de.wikipedia.org/wiki/Keulenfr%C3%BCchte"], "noteType": "dataSource"}, {"label": ["Familie unsicherer systematischer Stellung früher zu den Spindelbaumartigen heute eher zu den Cucurbitales gerechnet"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/7743592-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7743592-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1011281368", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7743592-8", "source": "GND"}], "variant_access_point": ["Keulenfrucht (Gattung)", "Keulenfrüchte (Gattung)", "Corynocarpaceae", "Corynocarpus", "Karakabaum (Gattung)", "Corinocarpus", "Merretia"], "authorized_access_point": "Keulenfruchtgewächse"} 1 +2024-09-10 15:44:10.555922 2024-09-10 15:44:10.555925 59c6ec17-19f7-4f06-b1ea-a10c9d54885d {"md5": "631dc8a974f543713c2c92b5e446644a", "pid": "1011278723", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Biebersteinia"], "noteType": "dataSource"}, {"label": ["Familie der Seifenbaumartigen; Einzige Gattung Biebersteinia"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/7743558-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7743558-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1011278723", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7743558-8", "source": "GND"}], "variant_access_point": ["Biebersteinia"], "authorized_access_point": "Biebersteiniaceae"} 1 +2024-09-10 15:44:10.620522 2024-09-10 15:44:10.620525 d4422cdd-7b7c-4908-b2f1-37aca5a1ccca {"md5": "4ee23ad607ef8c1c53b18eb2827cf359", "pid": "1011253313", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Australheidegew%C3%A4chse"], "noteType": "dataSource"}, {"label": ["Familie der Heidekrautartigen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/7743404-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7743404-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1011253313", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7743404-3", "source": "GND"}], "variant_access_point": ["Epacridaceae", "Australheidengewächse", "Styphelioideae"], "authorized_access_point": "Australheidegewächse"} 1 +2024-09-10 15:44:10.683068 2024-09-10 15:44:10.683071 998b9fe6-69b4-451d-951d-6edd86739779 {"md5": "2ec806560c0050c6aa0cdb56f5c5b4cd", "pid": "1011212722", "note": [{"label": ["Wikipedia unter Lactoris fernandeziana - https://de.wikipedia.org/wiki/Lactoris_fernandeziana"], "noteType": "dataSource"}, {"label": ["monotypische Ordnung der Magnoliopsida, deren einzige Gattung mit nur manchmal auch zu den Pfefferartigen oder zu den Osterluzeigewächsen gerechnet wird"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/7743251-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7743251-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1011212722", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7743251-4", "source": "GND"}], "variant_access_point": ["Lactoridaceae", "Lactoris", "Lactoris fernandeziana"], "authorized_access_point": "Lactoridales"} 1 +2024-09-10 15:44:10.744217 2024-09-10 15:44:10.744221 59034868-bd26-41e7-aca7-e1f2b2cacdcb {"md5": "8c21ab4b6870a7f4be6af2a2d55fdb41", "pid": "1011172399", "note": [{"label": ["Lex. Biol. (1999) als Cunoniaceae - http://www.spektrum.de/lexikon/biologie/cunoniaceae/16042", "Wikipedia - https://de.wikipedia.org/w/index.php?title=Cunoniaceae&oldid=165412165"], "noteType": "dataSource"}, {"label": ["zweikeimblättrige Pflanzenfamilie"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133862942", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85034815", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85034815"}], "authorized_access_point": "Cunoniaceae"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133862942", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13515290", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb135152906"}], "authorized_access_point": "Cunoniacées"}], "identifier": "http://d-nb.info/gnd/7743101-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7743101-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1011172399", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7743101-7", "source": "GND"}], "variant_access_point": ["Cunoniengewächse", "Cunoniaceae"], "authorized_access_point": "Cunoniagewächse"} 1 +2024-09-10 15:44:10.817808 2024-09-10 15:44:10.817812 e69a8c4b-4b9b-40ef-a1ba-09dcbd35b317 {"md5": "926d593cfd24ad44b254a2298cae5cfe", "pid": "1011095351", "note": [{"label": ["Wikipedia unter Lilienähnliche - https://de.wikipedia.org/wiki/Lilien%C3%A4hnliche"], "noteType": "dataSource"}, {"label": ["einkeimblättrige Famile aus der Ordnung der Spargelartigen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Spargelartige"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134821204", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2003011156", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2003011156"}], "authorized_access_point": "Hemerocallidaceae"}], "identifier": "http://d-nb.info/gnd/7742665-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7742665-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1011095351", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7742665-4", "source": "GND"}], "authorized_access_point": "Phormiaceae"} 1 +2024-09-10 15:44:10.905653 2024-09-10 15:44:10.905657 1ce8c630-154f-4429-9c63-55bb9a439218 {"md5": "d92379f7b8619f788e879534cd2daeff", "pid": "1010824597", "note": [{"label": ["Überfamilie der Schmetterlinge"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schmetterlinge"}], "identifier": "http://d-nb.info/gnd/7740844-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7740844-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1010824597", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7740844-5", "source": "GND"}], "authorized_access_point": "Hesperioidea"} 1 +2024-09-10 15:44:10.986794 2024-09-10 15:44:10.986798 c25c5a76-4c04-4b7c-8900-59e9d38d9cc6 {"md5": "81593860f8c64e6b2dbe55e4ca934147", "pid": "1010820389", "note": [{"label": ["Wikipedia unter Systematik der Schmetterlinge - https://de.wikipedia.org/wiki/Systematik_der_Schmetterlinge"], "noteType": "dataSource"}, {"label": ["Überfamilie der Schmetterlinge innerhalb der Unterordnung Glossata"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schmetterlinge"}], "identifier": "http://d-nb.info/gnd/7740801-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7740801-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1010820389", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7740801-9", "source": "GND"}], "authorized_access_point": "Drepanoidea"} 1 +2024-09-10 15:44:11.068051 2024-09-10 15:44:11.068059 8378cc31-2c31-4844-8d69-fa44896aaa92 {"md5": "5f9e0e6dbaf704828f472dec645cc496", "pid": "101081933X", "note": [{"label": ["Internet - http://tierdoku.de/index.php?title=Spinnerartige"], "noteType": "dataSource"}, {"label": ["Überfamilie der Schmetterlinge"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/7740795-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7740795-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)101081933X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7740795-7", "source": "GND"}], "variant_access_point": ["Bombycoidea", "Spinnerartige", "Spinner (Überfamilie)"], "authorized_access_point": "Spinner und Schwärmer (Überfamilie)"} 1 +2024-09-10 15:44:11.127601 2024-09-10 15:44:11.127604 7eb8ee24-d05b-4dee-b245-7d3b9eb90eab {"md5": "98a9d5156207493fd1924c56037ca84b", "pid": "100974786X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Fernmeldegeheimnis"}, {"authorized_access_point": "Postüberwachung"}, {"authorized_access_point": "Telefonüberwachung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1218115521", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11961331", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11961331f"}], "authorized_access_point": "Écoute électronique"}], "identifier": "http://d-nb.info/gnd/7732308-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7732308-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)100974786X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7732308-7", "source": "GND"}], "variant_access_point": ["Telekommunikation", "Telecommunication surveillance", "TKÜ"], "authorized_access_point": "Telekommunikationsüberwachung"} 1 +2024-09-10 15:44:11.225707 2024-09-10 15:44:11.225713 92cb98e1-4634-41ad-8995-c2f5780f33a2 {"md5": "9b51171e9db713924e0fefb824442427", "pid": "1009172255", "note": [{"label": ["ab 2003 Förderprogramm für Textilarbeiterinnen der Firma MAS Holdings Pvt. Ltd."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Förderungsprogramm"}], "related": [{"authorized_access_point": "Textilarbeiterin"}], "identifier": "http://d-nb.info/gnd/7728838-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7728838-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1009172255", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7728838-5", "source": "GND"}], "variant_access_point": ["MAS Holdings", "Women Go Beyond", "Go Beyond", "MAS Women Go Beyond Programme"], "authorized_access_point": "MAS Go Beyond"} 1 +2024-09-10 15:44:11.326264 2024-09-10 15:44:11.326268 1b356542-de24-4e85-8892-e8b3eaaeb35c {"md5": "3ca1c15b9f0767c760917758d2ae6661", "pid": "100914135X", "note": [{"label": ["Ca. 1734 erbaut, ursprünglich Handelsschiff, später im Dienst d. engl. Marine, sank 1741 vor d. Westküste Chiles"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Segelschiff"}, {"authorized_access_point": "Handelsschiff"}], "identifier": "http://d-nb.info/gnd/7728659-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7728659-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)100914135X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7728659-5", "source": "GND"}], "authorized_access_point": "Wager (Schiff)"} 1 +2024-09-10 15:44:11.395694 2024-09-10 15:44:11.395698 e70c30b6-8886-462c-be2f-a80ad93b5e93 {"md5": "b029ab00c814ad6359acf442fbc387aa", "pid": "1008599360", "note": [{"label": ["Rakete, die vom Boden auf ein Bodenziel abgeschossen wird"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Militärische Rakete"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134177372", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85130729", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85130729"}], "authorized_access_point": "Surface-to-surface missiles"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134177372", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12124483", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12124483m"}], "authorized_access_point": "Missiles sol-sol"}], "identifier": "http://d-nb.info/gnd/7725945-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7725945-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1008599360", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7725945-2", "source": "GND"}], "authorized_access_point": "Boden-Boden-Rakete"} 1 +2024-09-10 15:44:11.464746 2024-09-10 15:44:11.46476 a7179cea-0a75-48fe-8f9d-d907a8e73e9e {"md5": "6ec34d3aacf5da77a5c7cfeae5bf34cc", "pid": "1007558903", "note": [{"label": ["Gehört zu d. UF Astronotinae d. Neuweltbuntbarsche"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Buntbarsche"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134832648", "source": "GND"}, {"type": "bf:Nbn", "value": "sh99003794", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh99003794"}], "authorized_access_point": "Astronotus"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134832648", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17801808", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17801808q"}], "authorized_access_point": "Astronotus"}], "identifier": "http://d-nb.info/gnd/7719954-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7719954-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1007558903", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7719954-6", "source": "GND"}], "authorized_access_point": "Astronotus"} 1 +2024-09-10 15:44:12.664644 2024-09-10 15:44:12.664652 66be7138-ca5b-4045-99ee-073e461f7b9c {"md5": "bebb304e7f4f97f9601546ed7fca5703", "pid": "997781491", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Programm"}], "related": [{"authorized_access_point": "Videobearbeitung"}], "identifier": "http://d-nb.info/gnd/7679461-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7679461-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)997781491", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7679461-1", "source": "GND"}], "authorized_access_point": "VirtualDub"} 1 +2024-09-10 15:44:11.565941 2024-09-10 15:44:11.565945 700aa8bf-047b-48e0-a9a4-0c5dedac3a1b {"md5": "35d39330aeb754a3787f536c0598e400", "pid": "1007553405", "note": [{"label": ["Zwergseepferdchenart"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Seenadeln"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333488432", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85040183", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85040183"}], "authorized_access_point": "Dwarf sea horse"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333488432", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17817676", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb178176769"}], "authorized_access_point": "Hippocampus zosterae"}], "identifier": "http://d-nb.info/gnd/7719938-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7719938-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1007553405", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7719938-8", "source": "GND"}], "variant_access_point": ["Florida-Zwergseepferdchen"], "authorized_access_point": "Hippocampus zosterae"} 1 +2024-09-10 15:44:11.648064 2024-09-10 15:44:11.648072 5165893b-df85-4568-ad9b-49e88ee83d43 {"md5": "a2efca33978fd4132ecf08dda56f0199", "pid": "1007096462", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Green_IT&oldid=244326078"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Informationstechnik"}], "identifier": "http://d-nb.info/gnd/7717106-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7717106-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1007096462", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7717106-8", "source": "GND"}], "variant_access_point": ["Green IT", "Green ICT", "Green computing", "Grüne IT", "Green IS", "Green-IS", "Green information systems"], "authorized_access_point": "Green-IT"} 1 +2024-09-10 15:44:11.727339 2024-09-10 15:44:11.727342 784d50b2-33ea-4a61-811b-2d9154b28e8a {"md5": "f40abbcc12f519c1c54f547806cd5d73", "pid": "1006156577", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Computerkriminalität"}, {"authorized_access_point": "Spionage"}], "identifier": "http://d-nb.info/gnd/7714184-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7714184-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1006156577", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7714184-2", "source": "GND"}], "variant_access_point": ["Datenspionage", "Computerspionage", "Cyberspionage"], "authorized_access_point": "Ausspähen von Daten"} 1 +2024-09-10 15:44:11.806465 2024-09-10 15:44:11.806469 ce8e9d2c-49cf-48d8-8738-f47341fa5878 {"md5": "95ceede48254fc4220f1485262b94729", "pid": "1005952930", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Spielgerät"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133278884X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh90001167", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh90001167"}], "authorized_access_point": "Pedal cars"}], "identifier": "http://d-nb.info/gnd/7713696-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7713696-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1005952930", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7713696-2", "source": "GND"}], "authorized_access_point": "Tretauto"} 1 +2024-09-10 15:44:11.888435 2024-09-10 15:44:11.888439 22b1c4ee-e368-4cef-8378-71dfcebd1b1f {"md5": "56af752b5478dcf17781a4ae2f729513", "pid": "1005638322", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tablet PC"}], "related": [{"authorized_access_point": "Apple (Marke)"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113482369X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2010009235", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2010009235"}], "authorized_access_point": "iPad (Computer)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113482369X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16204308", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16204308w"}], "authorized_access_point": "Apple iPad (ordinateur)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)125444470X", "source": "GND"}, {"type": "bf:Nbn", "value": "XX5019827", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX5019827"}], "authorized_access_point": "iPad (Ordenador)"}], "identifier": "http://d-nb.info/gnd/7712886-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7712886-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1005638322", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7712886-2", "source": "GND"}], "variant_access_point": ["Apple iPad"], "authorized_access_point": "iPad"} 1 +2024-09-10 15:44:11.991617 2024-09-10 15:44:11.991626 1090f1a5-54f8-40da-8b25-5c2b82ba62ff {"md5": "0de7c84ba66b26652215889b7c2138ef", "pid": "1005003262", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Signaltransduktion"}], "identifier": "http://d-nb.info/gnd/7710598-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7710598-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1005003262", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7710598-9", "source": "GND"}], "variant_access_point": ["Two-component system", "TCS"], "authorized_access_point": "Zweikomponentensystem (Molekularbiologie)"} 1 +2024-09-10 15:44:12.067771 2024-09-10 15:44:12.067776 1a3dcd9c-45aa-479f-8844-ee52b8369bb9 {"md5": "6c717e72eeb146b97c67826bb872532b", "pid": "1003591590", "note": [{"label": ["Ein eindimensionaler Ansatz der Ökobilanzierung. Messung der Klimarelevanz von Tätigkeiten, Prozessen, Produkten und Dienstleistungen."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Umweltbilanz"}], "related": [{"authorized_access_point": "Umweltbelastung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332366201", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF15566354", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb155663545"}], "authorized_access_point": "Empreinte écologique"}], "identifier": "http://d-nb.info/gnd/7705788-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7705788-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1003591590", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7705788-0", "source": "GND"}], "authorized_access_point": "Ökologischer Fußabdruck"} 1 +2024-09-10 15:44:12.131393 2024-09-10 15:44:12.131398 1923f21d-e780-4fdb-ad71-d9500f5909c6 {"md5": "ffbd9d51ee2abe3681a127af892fa34c", "pid": "1001213157", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Agamen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133848672", "source": "GND"}, {"type": "bf:Nbn", "value": "sh98005624", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh98005624"}], "authorized_access_point": "Bearded dragons (Reptiles)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133848672", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13327120", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb133271203"}], "authorized_access_point": "Pogona"}], "identifier": "http://d-nb.info/gnd/7696635-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7696635-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1001213157", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7696635-5", "source": "GND"}], "variant_access_point": ["Bartagame (Gattung)"], "authorized_access_point": "Pogona"} 1 +2024-09-10 15:44:12.214237 2024-09-10 15:44:12.214242 66bf67a5-ba7f-4c59-8cdf-c94f71b7fe09 {"md5": "32854c96e4b47b281c59b5ceee277043", "pid": "1000465403", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Westfälisch"}], "identifier": "http://d-nb.info/gnd/7692522-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7692522-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1000465403", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7692522-5", "source": "GND"}], "variant_access_point": ["Tecklenburger Platt"], "authorized_access_point": "Mundart Westfälisch (Tecklenburg)"} 1 +2024-09-10 15:44:12.30794 2024-09-10 15:44:12.307944 ee7caadf-ebc3-42a2-9425-13375d632579 {"md5": "e6e31bd65435fa8fa77b8a1a6a3d563e", "pid": "999617249", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333946120", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF15080454", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb15080454j"}], "authorized_access_point": "Osphronemidae"}], "identifier": "http://d-nb.info/gnd/7687772-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7687772-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)999617249", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7687772-3", "source": "GND"}], "variant_access_point": ["Osphronemidae"], "authorized_access_point": "Großguramis"} 1 +2024-09-10 15:44:12.389337 2024-09-10 15:44:12.389341 37c4cab2-194d-48e8-afc9-c15619a77c16 {"md5": "f6cb00a61f8285ef3ee56df00fb037f6", "pid": "999602810", "note": [{"label": ["Gattung d. Großguramis"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Großguramis"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333946708", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF15952715", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb15952715w"}], "authorized_access_point": "Colisa"}], "identifier": "http://d-nb.info/gnd/7687697-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7687697-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)999602810", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7687697-4", "source": "GND"}], "variant_access_point": ["Colisa"], "authorized_access_point": "Zwergfadenfisch (Gattung)"} 1 +2024-09-10 15:44:12.452021 2024-09-10 15:44:12.452025 a94cb67e-e8c1-4c23-b590-afd224dc137f {"md5": "12db6bc8b00f61d1e1316b58f5e47dbd", "pid": "999129317", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333486758", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85033299", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85033299"}], "authorized_access_point": "Cottidae"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333486758", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16207651", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16207651k"}], "authorized_access_point": "Cottidés"}], "identifier": "http://d-nb.info/gnd/7685452-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7685452-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)999129317", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7685452-8", "source": "GND"}], "variant_access_point": ["Cottidae"], "authorized_access_point": "Groppen (Familie)"} 1 +2024-09-10 15:44:12.523212 2024-09-10 15:44:12.523215 de6d60d3-cbf6-4dbc-a25b-74cbd86aa0b9 {"md5": "5614e934f6ddb72939fee89e03c50fb4", "pid": "999038095", "note": [{"label": ["Japanische Stofffärbeschablonen, die unter dem Namen Katagami-Technik bekannt geworden sind."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schablone"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332766072", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16595573", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16595573h"}], "authorized_access_point": "Katagami"}], "identifier": "http://d-nb.info/gnd/7685117-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7685117-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)999038095", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7685117-5", "source": "GND"}], "authorized_access_point": "Katagami"} 1 +2024-09-10 15:44:12.598735 2024-09-10 15:44:12.598737 f5d84e61-2b69-4d35-b78d-6553b4638bb8 {"md5": "be6267d9e364b1de701e696f109f7e26", "pid": "998759074", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifier": "http://d-nb.info/gnd/7683770-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7683770-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)998759074", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7683770-1", "source": "GND"}], "variant_access_point": ["Morisca (Motiv)"], "authorized_access_point": "Moresca (Motiv)"} 1 +2024-09-10 15:44:12.744716 2024-09-10 15:44:12.744721 a328109f-0b9e-485d-abd8-6c029c76fdcb {"md5": "1ec4ccbf58f64196d3a6a258d8ab03d6", "pid": "994660987", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zahl"}], "identifier": "http://d-nb.info/gnd/7661563-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7661563-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)994660987", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7661563-7", "source": "GND"}], "authorized_access_point": "Quadratfreie Zahl"} 1 +2024-09-10 15:44:12.854559 2024-09-10 15:44:12.854567 ba48b056-e0c7-4bd9-aa60-9fa73802b1ba {"md5": "3d694108b37c9728d62a51ffda6ab46d", "pid": "994508417", "note": [{"label": ["Buch, dessen Autor zumeist ein Fotograf ist und dessen primäre Aussage durch die enthaltenen Fotografien transportiert wird", "Für Bücher, die man sich von eigenen digitalen Fotos erstellen lassen kann, verwende „Persönliches Fotobuch“.", "Für vorliegende Fotobücher wird in der Sacherschließung das SW Fotografie (oder ein engeres zutreffendes Schlagwort) zusammen mit dem Formbegriff Bildband vergeben.", "Als Formangabe für die Art des Inhalts als Teil des optionalen Sets zugelassen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Buch"}], "related": [{"authorized_access_point": "Persönliches Fotobuch"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1223003159", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2006009091", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2006009091"}], "authorized_access_point": "Photobooks"}], "identifier": "http://d-nb.info/gnd/7660057-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7660057-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)994508417", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7660057-9", "source": "GND"}], "variant_access_point": ["Fotobuch (Kunst)", "Photobuch", "Photobuch (Kunst)", "Photobook"], "authorized_access_point": "Fotobuch"} 1 +2024-09-10 15:44:12.959975 2024-09-10 15:44:12.959978 4984e014-a411-41c8-933f-486941b88d78 {"md5": "0d352d2271a7e4b3a9881bd32f786fc8", "pid": "994042582", "note": [{"label": ["Feldzug Schwedens unter Karl X. Gustav, der den zugefrorenen Kleinen und Großen Belt überquert und im Frieden von Roskilde die Abtretung großer Landgebiete durchsetzt."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Schwedisch-Dänischer Krieg (1657-1660)"}], "identifier": "http://d-nb.info/gnd/7657707-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7657707-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)994042582", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7657707-7", "source": "GND"}], "authorized_access_point": "Feldzug gegen Dänemark (1657-1658)"} 1 +2024-09-10 15:44:13.044532 2024-09-10 15:44:13.044541 5804d7bc-321f-4f21-9d35-51401fa58a74 {"md5": "bcceebafc2b824708861742d4bf7d767", "pid": "993971806", "note": [{"label": ["Oberbegriff für die zwei ersten Gruppen in der Klassifikation von Schrift nach DIN 16518", "Mediaeval nannt man Antiqua-Schriften, die im Zuge einer typographischen Erneuerungsbewegung im 19. Jahrhundert entstanden sind (Lex. ges. Buchwesens, Bd. V, S. 110), engl. Übersetzung/Schreibweise ist medieval"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Antiqua"}], "identifier": "http://d-nb.info/gnd/7657325-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7657325-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)993971806", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7657325-4", "source": "GND"}], "variant_access_point": ["Mediaeval", "Mediaeval-Antiqua"], "authorized_access_point": "Renaissance-Antiqua"} 1 +2024-09-10 15:44:13.115977 2024-09-10 15:44:13.115981 43746fcf-4cf6-4535-a130-a40e48c8d403 {"md5": "1ddb75414a0a5cf7e3cb22c6f6796ebf", "pid": "992779871", "note": [{"label": ["Entstehungsjahr 1937"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Venezianische Renaissance-Antiqua"}], "related": [{"authorized_access_point": "Amalthea (Druckschrift)"}], "identifier": "http://d-nb.info/gnd/7648207-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7648207-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992779871", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7648207-8", "source": "GND"}], "authorized_access_point": "Schneidler-Mediaeval"} 1 +2024-09-10 15:44:13.210861 2024-09-10 15:44:13.210866 843baf6b-ec5e-4b81-8f85-c78ead9d4c6d {"md5": "814fe070a203e69b938492045dcbeadd", "pid": "992757681", "note": [{"label": ["Wikipedia unter Kurt Weidemann - http://www.linotype.com/639/kurtweidemann.html"], "noteType": "dataSource"}, {"label": ["Entstehungsjahr: 1983"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Venezianische Renaissance-Antiqua"}], "identifier": "http://d-nb.info/gnd/7647886-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7647886-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992757681", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7647886-5", "source": "GND"}], "variant_access_point": ["Weidemann (Druckschrift)"], "authorized_access_point": "ITC Weidemann"} 1 +2024-09-10 15:44:13.305537 2024-09-10 15:44:13.30554 9dc2a356-fbf9-4c8f-9ba1-a7a6987ddd2e {"md5": "e929a241593b1f67b1422eff6171b636", "pid": "992754151", "note": [{"label": ["Entstehungsjahr: 1956, Deutsches Buch- und Schriftmuseum 1954"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kursive"}], "related": [{"authorized_access_point": "Schneidler-Mediaeval"}], "identifier": "http://d-nb.info/gnd/7647523-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7647523-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992754151", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7647523-2", "source": "GND"}], "variant_access_point": ["Schneidler-Amalthea (Druckschrift)", "Schneidler (Druckschrift)", "Schneidler-Kursiv", "Schneidler-Mediaeval kursiv"], "authorized_access_point": "Amalthea (Druckschrift)"} 1 +2024-09-10 15:44:13.390658 2024-09-10 15:44:13.390662 8f1da07e-b39d-4062-91db-50ca626216aa {"md5": "0e31f928bd72b10261637c941cfa1767", "pid": "992753589", "note": [{"label": ["Entstehungszeit 1913"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gebrochene Schrift"}], "related": [{"authorized_access_point": "Kanzleischrift"}], "identifier": "http://d-nb.info/gnd/7647466-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7647466-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992753589", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7647466-5", "source": "GND"}], "variant_access_point": ["Laudan-Kanzlei"], "authorized_access_point": "Laudahn-Kanzlei"} 1 +2024-09-10 15:44:13.450315 2024-09-10 15:44:13.450318 13c3db13-4989-4eca-b8cc-626e192a0559 {"md5": "6a97785f374097d0dbaf8b87c8837d23", "pid": "992747260", "note": [{"label": ["Enstehungszeit 1928"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gotische Schrift"}], "identifier": "http://d-nb.info/gnd/7647384-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7647384-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992747260", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7647384-3", "source": "GND"}], "authorized_access_point": "Altenburger Werk-Gotisch"} 1 +2024-09-10 15:44:13.518222 2024-09-10 15:44:13.518227 93aff4c1-2a12-4544-8b51-0bf778cc2670 {"md5": "d8e6383fc3bfe6451168b7a60dd83e1c", "pid": "992745489", "note": [{"label": ["Mengel, Willi: Druckschriften der Gegenwart, Stuttgart 1966 - http://www.klingspor-museum.de/KlingsporKuenstler/Schriftgiessereien/Berthold/BertholdAG.pdf"], "noteType": "dataSource"}, {"label": ["Entstehungszeit 1905-1926; weitere Formen: kursiv, halbfett, fett, kursiv fett"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Klassizistische Antiqua"}], "related": [{"authorized_access_point": "Pressa-Antiqua"}], "identifier": "http://d-nb.info/gnd/7647226-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7647226-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992745489", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7647226-7", "source": "GND"}], "authorized_access_point": "Augustea"} 1 +2024-09-10 15:44:13.592762 2024-09-10 15:44:13.592767 e8011e49-d52a-4527-a252-3576f645a061 {"md5": "52fb87f418bf7fe4823765b09fbeed74", "pid": "992744431", "note": [{"label": ["Entstehungszeit 1928 (leicht, kräftig)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Egyptienne"}], "identifier": "http://d-nb.info/gnd/7647121-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7647121-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992744431", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7647121-4", "source": "GND"}], "variant_access_point": ["Landi (Druckschrift)"], "authorized_access_point": "Welt-Antiqua"} 1 +2024-09-10 15:44:13.65662 2024-09-10 15:44:13.656624 0ba249af-aa20-49f6-9ee4-cdc01b9c6979 {"md5": "c4460641400bf9ae09fa178eeeb13900", "pid": "992744040", "note": [{"label": ["Entstehungsjahr 1956"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schreibschrift (Druckschrift)"}], "identifier": "http://d-nb.info/gnd/7647080-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7647080-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992744040", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7647080-5", "source": "GND"}], "authorized_access_point": "Maxim (Druckschrift)"} 1 +2024-09-10 15:44:13.738951 2024-09-10 15:44:13.738955 b4dedd78-7998-44fd-87e2-1cd335140030 {"md5": "6b2510c784b07d05f1b2b3e7356adb6d", "pid": "992742145", "note": [{"label": ["Entstehungszeit 1922; nach Vorlage des 18. Jh.; Bezeichnung der Schriftgiesserei Ludwig & Mayer für die Schrift \\"Nicolas Cochin\\"; auch kursiv u. fett"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Antiqua"}], "identifier": "http://d-nb.info/gnd/7646878-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7646878-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992742145", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7646878-1", "source": "GND"}], "variant_access_point": ["Nicolas Cochin (Druckschrift)"], "authorized_access_point": "Sonderdruck-Antiqua"} 1 +2024-09-10 15:44:13.83806 2024-09-10 15:44:13.838064 39260d72-f711-43b2-b71e-f02b6ce2108d {"md5": "df1648afb581921feecdb7e4d06607e6", "pid": "992740622", "note": [{"label": ["Entstehungsjahr: 1937"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Rundgotische Schrift"}], "identifier": "http://d-nb.info/gnd/7646722-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7646722-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992740622", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7646722-3", "source": "GND"}], "authorized_access_point": "Weiß-Rundgotisch"} 1 +2024-09-10 15:44:13.928722 2024-09-10 15:44:13.928726 247b7ce2-e17d-470d-adf1-b6097a84c81a {"md5": "40f081bb64dcaee50628fd9476013c3b", "pid": "992740002", "note": [{"label": ["Entstehungsjahr: 1932"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Lucian (Druckschrift)"}], "identifier": "http://d-nb.info/gnd/7646656-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7646656-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992740002", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7646656-5", "source": "GND"}], "variant_access_point": ["Lucian-Schrift", "Lucian-Antiqua (Frankfurt am Main)"], "authorized_access_point": "Lucian (Druckschrift, Frankfurt am Main)"} 1 +2024-09-10 15:44:14.010493 2024-09-10 15:44:14.010496 8c91a31b-e3a0-41b5-9d20-7046ebee5d89 {"md5": "966a3440ac58663a384f4ce5e461771f", "pid": "992739888", "note": [{"label": ["Entstehungsjahr 1915"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schreibschrift (Druckschrift)"}], "identifier": "http://d-nb.info/gnd/7646644-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7646644-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992739888", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7646644-9", "source": "GND"}], "authorized_access_point": "Batarde (Druckschrift)"} 1 +2024-09-10 15:44:14.078689 2024-09-10 15:44:14.078693 7ec97c0d-9f85-4572-9ba0-7e0570d63517 {"md5": "48e3ef4f7d497e1383f949a0b74b3891", "pid": "992734894", "note": [{"label": ["Enstehungsjahr 1923"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Renaissance-Antiqua"}], "identifier": "http://d-nb.info/gnd/7646131-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7646131-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992734894", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7646131-2", "source": "GND"}], "variant_access_point": ["Erasmus (Druckschrift)"], "authorized_access_point": "Erasmus-Mediaeval"} 1 +2024-09-10 15:44:14.147498 2024-09-10 15:44:14.147502 2e0f5a58-6107-4f90-ad93-2a7163c7f963 {"md5": "b2bdf36abc87ba1833b24ba68ee2e353", "pid": "992733510", "note": [{"label": ["Entstehungsjahr: 1923 (Hausschnitt)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Baskerville-Antiqua"}], "identifier": "http://d-nb.info/gnd/7645998-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7645998-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992733510", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7645998-6", "source": "GND"}], "authorized_access_point": "Baskerville-Antiqua (Frankfurt am Main, 1923)"} 1 +2024-09-10 15:44:14.228106 2024-09-10 15:44:14.22811 f7665631-9a3d-47ff-977c-98a05917d572 {"md5": "13342b400fae64ae8a0397f4ea005176", "pid": "992258820", "note": [{"label": ["Kanzel in der Moschee, auf der die Freitagspredigt gehalten wird"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Moschee"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334558051", "source": "GND"}, {"type": "bf:Nbn", "value": "sh98000721", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh98000721"}], "authorized_access_point": "Minbars"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334558051", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16908643", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16908643d"}], "authorized_access_point": "Minbars"}], "identifier": "http://d-nb.info/gnd/7642353-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7642353-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992258820", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7642353-0", "source": "GND"}], "variant_access_point": ["Mimbar"], "authorized_access_point": "Minbar"} 1 +2024-09-10 15:44:14.305214 2024-09-10 15:44:14.305222 cf521115-6f6a-4d2f-93dc-df5d0525727d {"md5": "1bb0f793decf0ab4d941cd301fc40a19", "pid": "991512669", "note": [{"label": ["Kritische Infrastrukturen sind Organisationen und Einrichtung mit wichtiger Bedeutung für das staatliche Gemeinwesen, bei deren Beeinträchtigung oder Ausfall nachhaltig wirkende Versorgungsengpässe, erhebliche Störungen der öffentlichen Sicherheit oder andere dramatische Folgen einträten."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Infrastruktur"}], "identifier": "http://d-nb.info/gnd/7636249-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7636249-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)991512669", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7636249-8", "source": "GND"}], "variant_access_point": ["Critical infrastructure", "KRITIS"], "authorized_access_point": "Kritische Infrastruktur"} 1 +2024-09-10 15:44:14.396728 2024-09-10 15:44:14.396732 53c6a514-ac90-4abe-9e3e-650925118314 {"md5": "078c0e08f11184a4d45785fe4f6ad152", "pid": "99110546X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Puppenhaus"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113396169X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85038854", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85038854"}], "authorized_access_point": "Doll furniture"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113396169X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11946086", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11946086p"}], "authorized_access_point": "Meubles de poupée"}], "identifier": "http://d-nb.info/gnd/7632599-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7632599-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)99110546X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7632599-4", "source": "GND"}], "authorized_access_point": "Puppenmöbel"} 1 +2024-09-10 15:44:14.460483 2024-09-10 15:44:14.460486 9a98e71b-a7a4-4840-afd4-9fb0b09731ba {"md5": "324ef0e5a08c7033ad7884b3083c1e82", "pid": "990635139", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ingenieurin"}], "related": [{"authorized_access_point": "Maschinenbauingenieur"}], "identifier": "http://d-nb.info/gnd/7627826-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7627826-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)990635139", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7627826-8", "source": "GND"}], "variant_access_point": ["Maschineningenieurin"], "authorized_access_point": "Maschinenbauingenieurin"} 1 +2024-09-10 15:44:14.527154 2024-09-10 15:44:14.527156 3789dfa4-55f9-47d9-b423-dedb80c62f26 {"md5": "557a773af1b67b4d8b803c067469a35c", "pid": "989819264", "note": [{"label": ["Voreingestellter Wert für System- oder Programmparameter"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/7620656-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7620656-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)989819264", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7620656-7", "source": "GND"}], "variant_access_point": ["Defaultwert", "Voreinstellung"], "authorized_access_point": "Default"} 1 +2024-09-10 15:44:14.59785 2024-09-10 15:44:14.597853 dd98ddf2-6870-49bc-85fa-236392f75a91 {"md5": "8317fcfd5a4a5c59cbaa3114f90db816", "pid": "987246100", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Nordischer Krieg (1700-1721)"}], "identifier": "http://d-nb.info/gnd/7597978-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7597978-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)987246100", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7597978-0", "source": "GND"}], "authorized_access_point": "Pommernfeldzug"} 1 +2024-09-10 15:44:16.315632 2024-09-10 15:44:16.31564 e624057c-d801-4d10-b0bd-b1564d9b8520 {"md5": "adf6f66e5bac4d61d4ca091a5c189c04", "pid": "979633079", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=DR-Baureihe_ET_165&oldid=221388856"], "noteType": "dataSource"}, {"label": ["Elektrischer Triebwagen, der von 1928 bis 1932 für die Berliner S-Bahn gebaut wurde"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Elektrotriebwagen"}], "identifier": "http://d-nb.info/gnd/7526925-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7526925-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)979633079", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7526925-9", "source": "GND"}], "variant_access_point": ["Stadtbahner", "DR-Baureihe ET 165", "Baureihe 275 (DR)", "Baureihe 475 (DB)"], "authorized_access_point": "Elektrotriebwagen Baureihe ET 165"} 1 +2024-09-10 15:44:14.661501 2024-09-10 15:44:14.661505 3987d1e0-ebd0-4767-a0cc-1c3f68adbed1 {"md5": "173c104a3c0bbd3146732b826ca8182e", "pid": "986124265", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kauffrau"}], "related": [{"authorized_access_point": "Buchhalter"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331760119", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85147420", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85147420"}], "authorized_access_point": "Women accountants"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)986131555", "source": "GND"}, {"type": "bf:Nbn", "value": "29760-2", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/29760-2"}], "authorized_access_point": "Buchhalter"}], "identifier": "http://d-nb.info/gnd/7586536-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7586536-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)986124265", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7586536-1", "source": "GND"}], "authorized_access_point": "Buchhalterin"} 1 +2024-09-10 15:44:14.738486 2024-09-10 15:44:14.73849 c7172710-e017-496d-a252-8941b7e82387 {"md5": "bc3a4d7e8b59e2d78c24ccb8e0616843", "pid": "985953780", "note": [{"label": ["Art d. Glasbarsche"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133714390", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85091950", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85091950"}], "authorized_access_point": "Nile perch"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133714390", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12061925", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12061925r"}], "authorized_access_point": "Perche du Nil"}], "identifier": "http://d-nb.info/gnd/7584064-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7584064-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)985953780", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7584064-9", "source": "GND"}], "variant_access_point": ["Lates niloticus", "Viktoriabarsch"], "authorized_access_point": "Nilbarsch"} 1 +2024-09-10 15:44:14.830372 2024-09-10 15:44:14.830376 b8709794-7e2c-4f9d-a1a0-844e6cb4e622 {"md5": "d33d118ff91f4b61f33fa2829346da6c", "pid": "985948116", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Märchen"}, {"authorized_access_point": "Erotische Literatur"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133160835X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85044708", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85044708"}], "authorized_access_point": "Erotic stories"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133160835X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16918747", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb169187478"}], "authorized_access_point": "Contes érotiques"}], "identifier": "http://d-nb.info/gnd/7583981-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7583981-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)985948116", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7583981-7", "source": "GND"}], "authorized_access_point": "Erotisches Märchen"} 1 +2024-09-10 15:44:14.918475 2024-09-10 15:44:14.91848 8f70dfda-d861-458b-871c-f80878aa5c39 {"md5": "8bb980f50c47f671a2ad1e826bdd6312", "pid": "985147172", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Mari%C3%A4_Heimsuchung&oldid=185056160"], "noteType": "dataSource"}, {"label": ["Das Fest Mariä Heimsuchung am 2. Juli (oder mancherorts am 31. Mai)."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Marienfest"}, {"authorized_access_point": "Kirchenfest"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133660339", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85143888", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85143888"}], "authorized_access_point": "Visitation Festival"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133660339", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11961516", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119615163"}], "authorized_access_point": "Visitation (fête)"}], "identifier": "http://d-nb.info/gnd/7576849-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7576849-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)985147172", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7576849-5", "source": "GND"}], "variant_access_point": ["Mariae Heimsuchung (Fest)", "Maria Heimsuchung", "Visitatio Beatae Mariae Virginis", "Visitatio Mariae"], "authorized_access_point": "Heimsuchung Mariä (Fest)"} 1 +2024-09-10 15:44:15.054627 2024-09-10 15:44:15.054631 e3488f71-0b8a-42df-8d0b-69e01e2ea132 {"md5": "a45aed83855d1447e8070a2d2e22a8cb", "pid": "985075619", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Erlösung"}], "identifier": "http://d-nb.info/gnd/7576365-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7576365-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)985075619", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7576365-5", "source": "GND"}], "variant_access_point": ["Autosoterik"], "authorized_access_point": "Selbsterlösung"} 1 +2024-09-10 15:44:15.141502 2024-09-10 15:44:15.141507 42c8f75b-b79b-4d5f-ab30-b7a7674f020c {"md5": "9d7a3933169b329d9d54ccdc35f2cf3c", "pid": "984505180", "note": [{"label": ["Art d. Gattung Pogona , UF Amphibolurinae, Fam. Agamen (Agamidae)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Agamen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333990774", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF15961384", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb15961384k"}], "authorized_access_point": "Agame barbu de Lawson"}], "identifier": "http://d-nb.info/gnd/7571568-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7571568-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)984505180", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7571568-5", "source": "GND"}], "variant_access_point": ["Zwergbartagame", "Schwarzerde-Bartagame"], "authorized_access_point": "Pogona henrylawsoni"} 1 +2024-09-10 15:44:15.25368 2024-09-10 15:44:15.253684 36b436a8-7041-4317-ae1a-df53ae31430f {"md5": "1301719bae59d4ea5081bda6cd58b7a0", "pid": "983782784", "note": [{"label": ["Teilgebiet der Genetik, das untersucht, wie und warum Gene in unterschiedlicher Weise ein- und ausgeschaltet werden, ohne dass sich dabei die Nukleotidsequenzen dieser Gene ändern."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Genetik"}], "related": [{"authorized_access_point": "Epigenese"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134695667", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF14560895", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb14560895j"}], "authorized_access_point": "Épigénétique"}], "identifier": "http://d-nb.info/gnd/7566079-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7566079-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)983782784", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7566079-9", "source": "GND"}], "authorized_access_point": "Epigenetik"} 1 +2024-09-10 15:44:15.360035 2024-09-10 15:44:15.360043 5ee8b758-04c5-4341-bcec-a49eb29c801e {"md5": "d2140174d0ee7c7b321dd4079e4ef381", "pid": "983616299", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ästhetik"}], "related": [{"authorized_access_point": "Vornehmheit"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333314981", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12068131", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb120681315"}], "authorized_access_point": "Élégance"}], "identifier": "http://d-nb.info/gnd/7564301-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7564301-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)983616299", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7564301-7", "source": "GND"}], "authorized_access_point": "Eleganz"} 1 +2024-09-10 15:44:15.461872 2024-09-10 15:44:15.461877 2e7a04b6-0c4f-4d7e-b1f5-932706748334 {"md5": "b5e6c7347057b5b0fc6ce28ed61d6eec", "pid": "98350816X", "note": [{"label": ["Benutzt, soweit außerhalb Armeniens, sonst verknüpfe Armenien ; Frau"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ausländerin"}], "related": [{"authorized_access_point": "Armenier"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "FRBNF17942155", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17942155j"}], "authorized_access_point": "Arméniennes"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1007250054", "source": "GND"}, {"type": "bf:Nbn", "value": "26103-4", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/26103-4"}], "authorized_access_point": "Armenier"}], "identifier": "http://d-nb.info/gnd/7563049-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7563049-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)98350816X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7563049-7", "source": "GND"}], "variant_access_point": ["Armenische Frau"], "authorized_access_point": "Armenierin"} 1 +2024-09-10 15:44:15.537021 2024-09-10 15:44:15.537026 1e1caf45-2aef-41e4-96a2-696578133f1d {"md5": "968266d4ebfcddcc6f4bd9d5ea28932d", "pid": "983481644", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Drosseln"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333493673", "source": "GND"}, {"type": "bf:Nbn", "value": "sh94009324", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh94009324"}], "authorized_access_point": "Ring ouzel"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333493673", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17998713", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17998713r"}], "authorized_access_point": "Merle à plastron"}], "identifier": "http://d-nb.info/gnd/7562902-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7562902-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)983481644", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7562902-1", "source": "GND"}], "variant_access_point": ["Turdus torquatus"], "authorized_access_point": "Ringdrossel"} 1 +2024-09-10 15:44:15.629223 2024-09-10 15:44:15.629226 a4dfdc0f-7af1-4667-801b-b01916069608 {"md5": "7092baf43f183f0964de65c80b50e028", "pid": "983481628", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Drosseln"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333493827", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12491932", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12491932b"}], "authorized_access_point": "Grive draine"}], "identifier": "http://d-nb.info/gnd/7562900-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7562900-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)983481628", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7562900-8", "source": "GND"}], "variant_access_point": ["Turdus viscivorus"], "authorized_access_point": "Misteldrossel"} 1 +2024-09-10 15:44:15.740732 2024-09-10 15:44:15.740736 aac228e1-6d15-4170-99fa-d1d17e9aa978 {"md5": "196d7e4d1efcadc58e42bd407efe7659", "pid": "982938322", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Beschriftung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331595843", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2002000621", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2002000621"}], "authorized_access_point": "Photograph captions"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331595843", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF18058702", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb18058702v"}], "authorized_access_point": "Légendes (images)"}], "identifier": "http://d-nb.info/gnd/7557792-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7557792-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)982938322", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7557792-6", "source": "GND"}], "variant_access_point": ["Bildlegende", "Bildunterschrift", "Begleittext (Bild)"], "authorized_access_point": "Legende (Bild)"} 1 +2024-09-10 15:44:15.830061 2024-09-10 15:44:15.830069 c385c5d3-c14a-4776-b5ac-5f9772f8f174 {"md5": "1e9bcc0aad88cd67a33f08a8b5f92c7f", "pid": "982377649", "note": [{"label": ["Bantu-Sprache in Tansania, S Kilosa Dist."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Bantusprachen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134833679", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2011001549", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2011001549"}], "authorized_access_point": "Vidunda language"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134833679", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17951629", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17951629b"}], "authorized_access_point": "Vidunda (langue)"}], "identifier": "http://d-nb.info/gnd/7553407-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7553407-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)982377649", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7553407-1", "source": "GND"}], "variant_access_point": ["ChiVidunda", "KiVidunda", "Ndunda"], "authorized_access_point": "Vidunda"} 1 +2024-09-10 15:44:15.918958 2024-09-10 15:44:15.918962 a4cd6251-6e74-420b-ad4c-dc16b7bd2208 {"md5": "3d844b704e9aa9b3c08e0a65c4ad0840", "pid": "982125461", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133325802X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh95008717", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh95008717"}], "authorized_access_point": "Prosimians"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133325802X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13571212", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13571212p"}], "authorized_access_point": "Strepsirhiniens"}], "identifier": "http://d-nb.info/gnd/7551325-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7551325-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)982125461", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7551325-0", "source": "GND"}], "variant_access_point": ["Strepsirrhini", "Feuchtnasenaffen"], "authorized_access_point": "Strepsirhini"} 1 +2024-09-10 15:44:16.014341 2024-09-10 15:44:16.014346 d83bb81b-337b-4f3b-88a4-1166a7b2b8fb {"md5": "9ca3247e9d0e1163fe2890b50e2f49bc", "pid": "981073328", "note": [{"label": ["Als Homonymenzusatz bei Personenschlagworten zugelassen."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kritikerin"}], "related": [{"authorized_access_point": "Theaterkritiker"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331761549", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2010007778", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2010007778"}], "authorized_access_point": "Women theater critics"}], "identifier": "http://d-nb.info/gnd/7541288-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7541288-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)981073328", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7541288-3", "source": "GND"}], "authorized_access_point": "Theaterkritikerin"} 1 +2024-09-10 15:44:16.098526 2024-09-10 15:44:16.09853 64b7a3b9-92de-4915-905e-defe43bfe322 {"md5": "3030ac1da95cddba024100fdf41f6339", "pid": "98106521X", "note": [{"label": ["Berufenet - https://berufenet.arbeitsagentur.de/berufenet/faces/index?path=null/suchergebnisse/kurzbeschreibung&dkz=58778&such=Statistiker%2Fin"], "noteType": "dataSource"}, {"label": ["Als Homonymenzusatz bei Personenschlagworten zugelassen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Statistiker"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331756308", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85147716", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85147716"}], "authorized_access_point": "Women statisticians"}], "identifier": "http://d-nb.info/gnd/7541108-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7541108-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)98106521X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7541108-8", "source": "GND"}], "authorized_access_point": "Statistikerin"} 1 +2024-09-10 15:44:16.169225 2024-09-10 15:44:16.169229 191213ad-4116-44d3-b575-c24ec8387b9a {"md5": "6ffb89e9a2ceb7097400191badf9b016", "pid": "980868459", "note": [{"label": ["Als Homonymenzusatz bei Personenschlagworten zugelassen."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Medizinisches Personal"}], "related": [{"authorized_access_point": "Hebamme"}], "identifier": "http://d-nb.info/gnd/7538946-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7538946-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)980868459", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7538946-0", "source": "GND"}], "variant_access_point": ["Entbindungspfleger", "Geburtshelfer (Männliche Hebamme)"], "authorized_access_point": "Männliche Hebamme"} 1 +2024-09-10 15:44:16.231288 2024-09-10 15:44:16.231291 2ff3384c-6f84-4839-9b6a-6a3b9005ebfd {"md5": "bec2e457c82820f8739a6ae0bd99c36b", "pid": "980347890", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Schlacht_von_Otterburn&oldid=216793433"], "noteType": "dataSource"}, {"label": ["15. August 1388"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schlacht"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134272138", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12317384", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12317384j"}], "authorized_access_point": "Otterburn, Bataille d' (1388)"}], "identifier": "http://d-nb.info/gnd/7532405-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7532405-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)980347890", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7532405-2", "source": "GND"}], "variant_access_point": ["Battle of Otterburn"], "authorized_access_point": "Schlacht von Otterburn"} 1 +2024-09-10 15:44:16.393961 2024-09-10 15:44:16.393964 07a966b4-9e04-4f05-b33d-321fda50d7a5 {"md5": "8cdfbfcc739934d5eddd43b98b65b460", "pid": "979217253", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fertigung"}], "related": [{"authorized_access_point": "Mikrosystemtechnik"}], "identifier": "http://d-nb.info/gnd/7523640-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7523640-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)979217253", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7523640-0", "source": "GND"}], "variant_access_point": ["Mikrofertigungsverfahren"], "authorized_access_point": "Mikrofertigung"} 1 +2024-09-10 15:44:16.461632 2024-09-10 15:44:16.461635 ff871b1f-7f35-4bee-b699-cb1bae7f4d8a {"md5": "ce8b68336e41a2ef0af7b283bcf5b809", "pid": "979214998", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Manifest"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333996292", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2016001208", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2016001208"}], "authorized_access_point": "Art manifestos"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333996292", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12536532", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12536532c"}], "authorized_access_point": "Manifestes littéraires et artistiques"}], "identifier": "http://d-nb.info/gnd/7523608-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7523608-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)979214998", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7523608-4", "source": "GND"}], "variant_access_point": ["Manifest"], "authorized_access_point": "Künstlerisches Manifest"} 1 +2024-09-10 15:44:16.525407 2024-09-10 15:44:16.52541 85744a84-f36c-4654-b6cc-28d973c068f6 {"md5": "9e6863b2c35ba5692925f7cf0f9722b7", "pid": "977813762", "note": [{"label": ["Familie d. Barschartigen Fische im Atlantik, Pazifik u. Indischen Ozean"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333377096", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85040688", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85040688"}], "authorized_access_point": "Echeneidae"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333377096", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17153281", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17153281f"}], "authorized_access_point": "Échénéidés"}], "identifier": "http://d-nb.info/gnd/7500175-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7500175-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)977813762", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7500175-5", "source": "GND"}], "variant_access_point": ["Kopfsauger", "Echeneidae"], "authorized_access_point": "Schiffshalter"} 1 +2024-09-10 15:44:16.588156 2024-09-10 15:44:16.588159 bbb40377-d4f9-4ecc-aa2a-c8f00c397629 {"md5": "298719c0802a22e520390bf24e358a25", "pid": "977682633", "note": [{"label": ["Sufiorden in Zentralasien"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sufi-Bruderschaft"}], "identifier": "http://d-nb.info/gnd/4998520-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4998520-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)977682633", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4998520-6", "source": "GND"}], "variant_access_point": ["Kubravi", "Kubrāviya", "Kubrawiyya", "Kubraviyya", "Kubrawīya", "Kübreviyye"], "authorized_access_point": "Kubrawi"} 1 +2024-09-10 15:44:16.673762 2024-09-10 15:44:16.673767 92a99462-8a65-4b06-8dee-8209f1265b71 {"md5": "50cfd70d64e009eeb8c387652113e60e", "pid": "977294390", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sichtfeld"}], "identifier": "http://d-nb.info/gnd/4997436-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4997436-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)977294390", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4997436-1", "source": "GND"}], "authorized_access_point": "Toter Winkel"} 1 +2024-09-10 15:44:16.757946 2024-09-10 15:44:16.757949 883f3137-6d16-4167-9de3-826ab5e60d10 {"md5": "00192072f33e614e279d0724ff411bb7", "pid": "976865351", "note": [{"label": ["Art der Lippfische (Labridae); Putzerfisch"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Lippfische"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333266111", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17803725", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17803725h"}], "authorized_access_point": "Crénilabre paon"}], "identifier": "http://d-nb.info/gnd/4847293-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4847293-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)976865351", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4847293-1", "source": "GND"}], "variant_access_point": ["Pfauenlippfisch"], "authorized_access_point": "Symphodus tinca"} 1 +2024-09-10 15:44:16.839824 2024-09-10 15:44:16.839828 45af629d-f396-4ee3-b509-f652bd1e57bb {"md5": "6b0adb4984b2b3d6c4d9913fd72eb154", "pid": "976859416", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Meerbarben"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333450095", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17804174", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb178041749"}], "authorized_access_point": "Rouget de roche"}], "identifier": "http://d-nb.info/gnd/4847270-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4847270-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)976859416", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4847270-0", "source": "GND"}], "variant_access_point": ["Mullus surmuletus"], "authorized_access_point": "Gestreifte Meerbarbe"} 1 +2024-09-10 15:44:18.946944 2024-09-10 15:44:18.946958 9220e808-87c5-4196-8320-99c6b3ecaf06 {"md5": "2fb1efdf193c80e6bd7ee8f1d7b60be2", "pid": "968387705", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kegel"}], "identifier": "http://d-nb.info/gnd/4740628-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4740628-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)968387705", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4740628-8", "source": "GND"}], "authorized_access_point": "Elliptischer Kegel"} 1 +2024-09-10 15:44:16.9453 2024-09-10 15:44:16.945305 d4798917-ffc7-4f19-bb6a-ac39b5befad5 {"md5": "03fe2d2fbcd608bf1e27195b2e3d4d83", "pid": "976009048", "note": [{"label": ["Familie der Barschartigen Fische"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333484488", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85104687", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85104687"}], "authorized_access_point": "Polynemidae"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333484488", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17157668", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb171576689"}], "authorized_access_point": "Polynemidae"}], "identifier": "http://d-nb.info/gnd/4838008-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4838008-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)976009048", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4838008-8", "source": "GND"}], "variant_access_point": ["Polynemidae", "Fingerfische"], "authorized_access_point": "Fädlerfische"} 1 +2024-09-10 15:44:17.039636 2024-09-10 15:44:17.03964 364563d9-22c3-46c8-ab3c-6359a2c2e8fa {"md5": "07864387b0889643740c758d2f627147", "pid": "975670824", "note": [{"label": ["für das Beschwerdemanagement verknüpfe mit Kundenmanagement, Servicepolitik o.ä."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Retoure"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113450019X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85031477", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85031477"}], "authorized_access_point": "Consumer complaints"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113450019X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16582482", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb165824828"}], "authorized_access_point": "Réclamations clients"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254479023", "source": "GND"}, {"type": "bf:Nbn", "value": "XX547082", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX547082"}], "authorized_access_point": "Reclamaciones de consumo"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)975677063", "source": "GND"}, {"type": "bf:Nbn", "value": "19134-5", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/19134-5"}], "authorized_access_point": "Beschwerdemanagement"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)975677306", "source": "GND"}, {"type": "bf:Nbn", "value": "10056526", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10056526"}], "authorized_access_point": "Reklamation"}], "identifier": "http://d-nb.info/gnd/4834499-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4834499-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)975670824", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4834499-0", "source": "GND"}], "variant_access_point": ["Beschwerde (Reklamation)", "Verbraucherbeschwerde", "Verbraucherreklamation", "Verbraucher", "Verbraucher", "Kundenbeschwerde", "Kundenreklamation", "Kunde", "Kunde", "Complaint"], "authorized_access_point": "Reklamation"} 1 +2024-09-10 15:44:17.131322 2024-09-10 15:44:17.131326 977940cc-cc0e-4378-9735-75407f98764f {"md5": "0e0d4f0855462d22e9b8e31cbad984d1", "pid": "975199056", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "RAM"}, {"authorized_access_point": "Nichtflüchtiger Speicher"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134626886", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85047879", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85047879"}], "authorized_access_point": "Ferroelectric storage cells"}], "identifier": "http://d-nb.info/gnd/4830042-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4830042-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)975199056", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4830042-1", "source": "GND"}], "variant_access_point": ["FeRAM", "F-RAM", "Ferroelectric random access memory", "Ferroelectric RAM", "Ferroelektrischer Speicher mit wahlfreiem Zugriff"], "authorized_access_point": "FRAM (Informatik)"} 1 +2024-09-10 15:44:17.234134 2024-09-10 15:44:17.234138 608f87ed-1b19-4805-802d-10a96903efc1 {"md5": "77743d6da97d666509737f9783e2c21a", "pid": "97466068X", "note": [{"label": ["Der kontrollierten Versuch (\\"gelenktes Hacking\\") , von außen in ein bestimmtes Computersystem bzw. -netzwerk einzudringen, um Schwachstellen zu identifizieren. Dazu werden die gleichen bzw. ähnliche Techniken eingesetzt, die auch bei einem realen Angriff verwendet werden. (Bundesamt für Sicherheit in der Informationstechnik)", "Für das Erkennen versuchter Angriffe verwende Eindringerkennung."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Computersicherheit"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334217106", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2011003137", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2011003137"}], "authorized_access_point": "Penetration testing (Computer security)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334217106", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17163606", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb171636060"}], "authorized_access_point": "Tests d'intrusion (informatique)"}], "identifier": "http://d-nb.info/gnd/4825817-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4825817-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)97466068X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4825817-9", "source": "GND"}], "variant_access_point": ["Penetration Testing", "Pen-Test"], "authorized_access_point": "Penetrationstest"} 1 +2024-09-10 15:44:17.312184 2024-09-10 15:44:17.312188 7fded915-a448-40f4-a229-c7cb3a975d26 {"md5": "341b103c8d08664c6b6e3f7bebeeb6f6", "pid": "974476560", "note": [{"label": ["ursprüngl. von den USA ausgehende Evangelisationsbewegung"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Evangelikale Bewegung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331867320", "source": "GND"}, {"type": "bf:Nbn", "value": "sh00006530", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh00006530"}], "authorized_access_point": "Lighthouse movement"}], "identifier": "http://d-nb.info/gnd/4824680-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4824680-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)974476560", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4824680-3", "source": "GND"}], "variant_access_point": ["Discipling A Whole Nation", "Lighthouse-Bewegung", "DAWN-Bewegung", "DAWN-Strategie", "Lighthouse Movement"], "authorized_access_point": "Leuchthaus-Bewegung"} 1 +2024-09-10 15:44:24.672577 2024-09-10 15:44:24.672585 33f0e610-93f3-4c2d-8e23-275073867ca3 {"md5": "c8ed732beaf8e9bc4d30efa5f30ee073", "pid": "959960775", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Honen"}], "identifier": "http://d-nb.info/gnd/4609158-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4609158-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)959960775", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4609158-0", "source": "GND"}], "variant_access_point": ["Precidor-Honen"], "authorized_access_point": "Dornhonen"} 1 +2024-09-10 15:44:17.428596 2024-09-10 15:44:17.42861 d3675720-bfa6-4c81-925b-016ef62ad74c {"md5": "75788d04a79a8778eab6c9d3dbb7ff8f", "pid": "974160032", "note": [{"label": ["1957 von Max Miedinger für die Haas'sche Schriftgiesserei in Basel entwickelte serifenlose Schrift. 1960 Umbenennung in Helvetica", "Benutzt für alle Helvetica-Schriften. Einzelne Helvetica-Schriften werden getrennt angesetzt."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Groteskschrift"}], "related": [{"authorized_access_point": "Neue Haas-Grotesk"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134800983", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2010012863", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2010012863"}], "authorized_access_point": "Helvetica type"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134800983", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16084551", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16084551w"}], "authorized_access_point": "Caractères Helvetica"}], "identifier": "http://d-nb.info/gnd/4819794-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4819794-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)974160032", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4819794-4", "source": "GND"}], "authorized_access_point": "Helvetica (Druckschrift)"} 1 +2024-09-10 15:44:17.582615 2024-09-10 15:44:17.582619 c60551e6-4a1a-40f1-9947-09f97aae4b4c {"md5": "4b52e98b3e4ef6439843423caf7eba50", "pid": "97397687X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kapuzineraffenartige"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133818668", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85014575", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85014575"}], "authorized_access_point": "Black howler monkey"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133818668", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12509694", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb125096949"}], "authorized_access_point": "Hurleur noir"}], "identifier": "http://d-nb.info/gnd/4817251-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4817251-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)97397687X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4817251-0", "source": "GND"}], "variant_access_point": ["Alouatta caraya", "Caraya"], "authorized_access_point": "Schwarzer Brüllaffe"} 1 +2024-09-10 15:44:17.698497 2024-09-10 15:44:17.698506 cc6c32c4-8a34-4721-a98c-55bf72127878 {"md5": "3573c8073c2fbfe7e44965a527790cc2", "pid": "972616705", "note": [{"label": ["Benutzt, soweit außerhalb von Tunesien, sonst verknüpfe Tunesien ; Frau"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ausländerin"}], "related": [{"authorized_access_point": "Tunesier"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134403763", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85138663", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85138663"}], "authorized_access_point": "Tunisians"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134403763", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF14412750", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb14412750k"}], "authorized_access_point": "Tunisiennes"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1011431920", "source": "GND"}, {"type": "bf:Nbn", "value": "26827-4", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/26827-4"}], "authorized_access_point": "Tunesier"}], "identifier": "http://d-nb.info/gnd/4801057-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4801057-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)972616705", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4801057-1", "source": "GND"}], "variant_access_point": ["Tunesische Frau"], "authorized_access_point": "Tunesierin"} 1 +2024-09-10 15:44:17.795401 2024-09-10 15:44:17.795408 8f00ed1c-9e47-4dfc-9d53-2e7033012e8c {"md5": "40ffbc12df518c44fb0d5c1315690a5a", "pid": "972391010", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tumor"}], "identifier": "http://d-nb.info/gnd/4796842-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4796842-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)972391010", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4796842-4", "source": "GND"}], "variant_access_point": ["Germinaler Tumor"], "authorized_access_point": "Keimzelltumor"} 1 +2024-09-10 15:44:17.90246 2024-09-10 15:44:17.902468 5a9da280-c1d7-47e6-9e85-4071ba5ae65f {"md5": "9fe24e99e120b58a1e2358142766d9a2", "pid": "971044899", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kapuzineraffenartige"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133326125X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85021897", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85021897"}], "authorized_access_point": "Central American spider monkey"}], "identifier": "http://d-nb.info/gnd/4779167-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4779167-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)971044899", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4779167-6", "source": "GND"}], "variant_access_point": ["Ateles geoffroyi"], "authorized_access_point": "Geoffroy-Klammeraffe"} 1 +2024-09-10 15:44:18.03655 2024-09-10 15:44:18.03656 01b2e795-ece0-4f54-b2e4-b66fd5ed34db {"md5": "d7559ca0b67a39240edeefc4967f36ee", "pid": "970758065", "note": [{"label": ["Religiöses Fest der anatolischen Alewiten und Bektaschiten in Verbindung mit Tanz und Alkoholgenuss"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Religiöses Fest"}], "related": [{"authorized_access_point": "Bektaschismus"}], "identifier": "http://d-nb.info/gnd/4774342-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4774342-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)970758065", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4774342-6", "source": "GND"}], "variant_access_point": ["Cem Ayini", "Ayinü'l-cem"], "authorized_access_point": "Ayin-i Cem"} 1 +2024-09-10 15:44:18.151481 2024-09-10 15:44:18.151491 66c73775-8a80-48fb-bb1a-0db85122fecb {"md5": "306b71d0e78de6264fe86d7667ef8bdc", "pid": "970679645", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Lattice-Boltzmann-Methode"], "noteType": "dataSource"}, {"label": ["Numerisches Verfahren zur Simulation von Strömungs- und Transportvorgängen. Die Simulation wird auf der Teilchenebene durchgeführt. Dabei werden im Gegensatz zu den Lattice-Gas-Verfahren keine binären Teilchen sondern kontinuierliche Teilchendichten verwendet."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Numerisches Verfahren"}], "related": [{"authorized_access_point": "Numerische Strömungssimulation"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134532490", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2008008129", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2008008129"}], "authorized_access_point": "Lattice Boltzmann methods"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134532490", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF18052725", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb180527252"}], "authorized_access_point": "Méthode de Boltzmann sur réseau"}], "identifier": "http://d-nb.info/gnd/4772570-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4772570-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)970679645", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4772570-9", "source": "GND"}], "variant_access_point": ["Gitter-Boltzmann-Verfahren", "Lattice-Boltzmann-Methode", "Lattice-Boltzmann-Verfahren", "Lattice Boltzmann Method", "LBM"], "authorized_access_point": "Gitter-Boltzmann-Methode"} 1 +2024-09-10 15:44:18.250327 2024-09-10 15:44:18.250336 c35be0a2-4bbd-4524-816b-6190062c23c5 {"md5": "0a35a75ebbcd7b0ad108d899f83acc56", "pid": "970190417", "note": [{"label": ["Fischart"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Aalmuttern (Familie)"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113483294X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85149936", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85149936"}], "authorized_access_point": "Zoarces viviparus"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113483294X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17810619", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17810619s"}], "authorized_access_point": "Loquette d'Europe"}], "identifier": "http://d-nb.info/gnd/4767596-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4767596-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)970190417", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4767596-2", "source": "GND"}], "variant_access_point": ["Zoarces viviparus"], "authorized_access_point": "Aalmutter"} 1 +2024-09-10 15:44:18.37455 2024-09-10 15:44:18.374559 3308dedc-40f1-453d-a0bd-1cfdd6239bf8 {"md5": "60f4054f21d14cdbec96b56dc0e8a66f", "pid": "969678363", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4760319-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4760319-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)969678363", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4760319-7", "source": "GND"}], "variant_access_point": ["Mehrgeschlecht", "Plurigenus"], "authorized_access_point": "Plurigeschlecht"} 1 +2024-09-10 15:44:18.50638 2024-09-10 15:44:18.506388 fa891c2b-eec6-459a-a3c1-3501b55bc00e {"md5": "58e73063cb31c5be157eb6875899715f", "pid": "969131240", "note": [{"label": ["Art der Labyrinthfische"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333960581", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17797530", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb177975306"}], "authorized_access_point": "Anabas testudineus"}], "identifier": "http://d-nb.info/gnd/4752661-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4752661-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)969131240", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4752661-0", "source": "GND"}], "variant_access_point": ["Kletterbarsch", "Anabas testudineus"], "authorized_access_point": "Kletterfisch"} 1 +2024-09-10 15:44:18.590123 2024-09-10 15:44:18.590126 5d15e9bb-07d5-4665-9216-7c2249ab1af0 {"md5": "66f466b71cdbda9360b92c1fc90ea2f9", "pid": "968663664", "note": [{"label": ["Satir. Gattung der frz. Renaissancedichtung"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Satirische Lyrik"}], "related": [{"authorized_access_point": "Französisch"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134067267", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11980993", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11980993t"}], "authorized_access_point": "Coq-à-l'âne"}], "identifier": "http://d-nb.info/gnd/4744950-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4744950-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)968663664", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4744950-0", "source": "GND"}], "variant_access_point": ["Französisch"], "authorized_access_point": "Coq-à-l'âne"} 1 +2024-09-10 15:44:18.690219 2024-09-10 15:44:18.690227 03921d12-eb1e-4106-ab68-8ad2d231a814 {"md5": "be1d0fa80d47a921c48da5c5c7081eca", "pid": "968634737", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4744435-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4744435-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)968634737", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4744435-6", "source": "GND"}], "variant_access_point": ["Chipkarte"], "authorized_access_point": "Chipkartenherstellung"} 1 +2024-09-10 15:44:18.824974 2024-09-10 15:44:18.824985 fc280a46-8930-4494-bd21-80c2234e6462 {"md5": "3ce39a2a8ce05978ad7fb5beacf6cb49", "pid": "968438121", "note": [{"label": ["Fischart"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sonnenbarsche (Familie)"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333375506", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85074713", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85074713"}], "authorized_access_point": "Largemouth bass"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333375506", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17800601", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17800601h"}], "authorized_access_point": "Black-bass à grande bouche"}], "identifier": "http://d-nb.info/gnd/4741261-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4741261-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)968438121", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4741261-6", "source": "GND"}], "variant_access_point": ["Micropterus salmoides"], "authorized_access_point": "Forellenbarsch"} 1 +2024-09-10 15:44:19.069163 2024-09-10 15:44:19.069176 227f7858-adcb-4b94-9f43-e238bf065e0f {"md5": "8b95b8f6b1e2572891237a6e1b00ac51", "pid": "968377955", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Dissident"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113450991X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17766693", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17766693h"}], "authorized_access_point": "Dissidentes"}], "identifier": "http://d-nb.info/gnd/4740335-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4740335-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)968377955", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4740335-4", "source": "GND"}], "authorized_access_point": "Dissidentin"} 1 +2024-09-10 15:44:19.1882 2024-09-10 15:44:19.18821 42661dd3-a374-4405-93bb-fc324ce121f2 {"md5": "8df518c27b5953cf4434647230433020", "pid": "968360009", "note": [{"label": ["B 1996, Internet - http://www.abenteuerreisen.de/wg/mh/wg_mh__rf09__01.htm"], "noteType": "dataSource"}, {"label": ["Dünne, gespleißte Bambusstäbe und kleine Kaurischnecken, von feinen Pandanusblatt-Streifen zusammengehalten. Mit ihnen versuchten erfahrene Navigatoren auf den Marshallinseln ihr profundes Wissen an andere Mitglieder ihres Clans weiterzugeben."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Seekarte"}], "identifier": "http://d-nb.info/gnd/4740073-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4740073-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)968360009", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4740073-0", "source": "GND"}], "variant_access_point": ["Stäbchenkarte"], "authorized_access_point": "Stabkarte"} 1 +2024-09-10 15:44:19.326619 2024-09-10 15:44:19.326629 a973a62d-07e7-4725-b6f7-69d19662530e {"md5": "6c726f6878404a63ab7c172016ca0733", "pid": "96832780X", "note": [{"label": ["Platz vor einer Kirche"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Platz"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334557888", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12349199", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb123491994"}], "authorized_access_point": "Parvis"}], "identifier": "http://d-nb.info/gnd/4739584-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4739584-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)96832780X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4739584-9", "source": "GND"}], "variant_access_point": ["Kirchenplatz"], "authorized_access_point": "Kirchplatz"} 1 +2024-09-10 15:44:19.475607 2024-09-10 15:44:19.475618 19d1ba67-7f6b-4136-8bf6-b1c51c403df6 {"md5": "8cb96c9067111ce4a8c7c2f842e84805", "pid": "967876710", "note": [{"label": ["Empfindung des Cybernauten (= Benutzer einer virtuellen Welt), Teil der virtuellen Welt zu sein"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Telepräsenz"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134758278", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2006004463", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2006004463"}], "authorized_access_point": "Shared virtual environments"}], "identifier": "http://d-nb.info/gnd/4736034-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4736034-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)967876710", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4736034-3", "source": "GND"}], "variant_access_point": ["Präsenzerleben", "Virtuelle Realität (Virtuelle Realität)"], "authorized_access_point": "Immersion (Virtuelle Realität)"} 1 +2024-09-10 15:44:19.582566 2024-09-10 15:44:19.58257 71d64caf-3fa1-47bb-a936-4700e9ad3337 {"md5": "a865f3257b43b8232ac91e7737fd1af0", "pid": "967734657", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Onkologie"}], "identifier": "http://d-nb.info/gnd/4733618-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4733618-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)967734657", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4733618-3", "source": "GND"}], "variant_access_point": ["Primäre Mehrfachmalignome", "Multiple malignant tumors"], "authorized_access_point": "Mehrfachmalignom"} 1 +2024-09-10 15:44:19.655026 2024-09-10 15:44:19.655035 e3ddc49f-957e-42a3-8fa0-876e3a166b7e {"md5": "b154584d176eb61f862f5e5ca639895c", "pid": "967659523", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Stab"}, {"authorized_access_point": "Leuchte"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333320264", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17135690", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17135690k"}], "authorized_access_point": "Flambeaux"}], "identifier": "http://d-nb.info/gnd/4732668-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4732668-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)967659523", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4732668-2", "source": "GND"}], "authorized_access_point": "Fackel"} 1 +2024-09-10 15:44:19.786241 2024-09-10 15:44:19.786252 e9088f4f-06b0-46c2-ba39-de713b00bd3b {"md5": "f0506af5fbd440ca96af56a1d79711c5", "pid": "967617987", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Cobia&oldid=183936477"], "noteType": "dataSource"}, {"label": ["Fischart"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133348514X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh93003516", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh93003516"}], "authorized_access_point": "Cobia"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133348514X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17157745", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17157745x"}], "authorized_access_point": "Mafou"}], "identifier": "http://d-nb.info/gnd/4731987-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4731987-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)967617987", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4731987-2", "source": "GND"}], "variant_access_point": ["Rachycentron canadum", "Cobia", "Kobia", "Königsfisch", "Offiziersbarsch"], "authorized_access_point": "Königsbarsch"} 1 +2024-09-10 15:44:19.916972 2024-09-10 15:44:19.916982 e551dded-4186-47d3-80ac-78baecfef090 {"md5": "b5b0a7618af4b9edfb5bf8c5d0bbe6be", "pid": "967326133", "note": [{"label": ["wikipedia - https://de.wikipedia.org/w/index.php?title=Selbst%C3%BCbersetzung&oldid=208077138"], "noteType": "dataSource"}, {"label": ["Übersetzung eines Werkes durch seinen Autor"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Übersetzung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133156462X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2015002455", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2015002455"}], "authorized_access_point": "Self-translation"}], "identifier": "http://d-nb.info/gnd/4727899-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4727899-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)967326133", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4727899-7", "source": "GND"}], "variant_access_point": ["Selbstübersetzung", "Ipsoübersetzung"], "authorized_access_point": "Eigenübersetzung"} 1 +2024-09-10 15:44:20.032739 2024-09-10 15:44:20.032754 c535246f-486b-439b-bf82-376f526d5c53 {"md5": "e56b95a1219bb32bafd441ae95104bc1", "pid": "96717757X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Metallbauteil"}], "identifier": "http://d-nb.info/gnd/4725280-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4725280-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)96717757X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4725280-7", "source": "GND"}], "variant_access_point": ["Eisen", "Eisen"], "authorized_access_point": "Eisenbauteil"} 1 +2024-09-10 15:44:20.160402 2024-09-10 15:44:20.160412 9f692817-c04b-458d-83ab-1ec1a5cbaa5a {"md5": "cd05068e8ed696db5393821e11fd15e7", "pid": "967169399", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tourismus"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134501994", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17047235", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17047235v"}], "authorized_access_point": "Tourisme de bien être"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1019769505", "source": "GND"}, {"type": "bf:Nbn", "value": "29062-5", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/29062-5"}], "authorized_access_point": "Gesundheitstourismus"}], "identifier": "http://d-nb.info/gnd/4725163-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4725163-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)967169399", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4725163-3", "source": "GND"}], "variant_access_point": ["Wellness", "Gesundheitstourismus", "Gesundheit", "Gesundheitsorientierter Urlaub"], "authorized_access_point": "Wellnesstourismus"} 1 +2024-09-10 15:44:20.270797 2024-09-10 15:44:20.270809 24edd64f-a5c4-42c9-8322-9c7828e2baec {"md5": "11037409ac36117a3feca5c693b0668d", "pid": "967155223", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Virtuose"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133859593", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13510667", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13510667k"}], "authorized_access_point": "Solistes (musiciens)"}], "identifier": "http://d-nb.info/gnd/4724917-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4724917-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)967155223", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4724917-1", "source": "GND"}], "authorized_access_point": "Solist"} 1 +2024-09-10 15:44:20.41537 2024-09-10 15:44:20.41538 27595525-eb65-4097-b5d9-e994b9923be0 {"md5": "3e4f8e77bcd1ca2763b462e5f139ef43", "pid": "966649052", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Nichtlineare parabolische Differentialgleichung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333589484", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16605436", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16605436b"}], "authorized_access_point": "Équations de Cahn-Hilliard"}], "identifier": "http://d-nb.info/gnd/4723055-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4723055-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)966649052", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4723055-1", "source": "GND"}], "variant_access_point": ["Cahn-Hilliard equation"], "authorized_access_point": "Cahn-Hilliard-Gleichung"} 1 +2024-09-10 15:44:20.542215 2024-09-10 15:44:20.542228 3eeac2df-b23b-4380-845e-c88b4d732496 {"md5": "72e7e3c826f884bc9efe762322ef3a58", "pid": "966536304", "note": [{"label": ["Art der Barschartigen Fische"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Lippfische"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333268718", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17803543", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17803543w"}], "authorized_access_point": "Girelle"}], "identifier": "http://d-nb.info/gnd/4721357-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4721357-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)966536304", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4721357-7", "source": "GND"}], "authorized_access_point": "Coris julis"} 1 +2024-09-10 15:44:20.649534 2024-09-10 15:44:20.649537 f880f75d-b352-4468-9069-0418432859ad {"md5": "1445b1e1f15be5e23b13a22b13e39010", "pid": "965652785", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Randwertproblem"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333590725", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17773664", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17773664d"}], "authorized_access_point": "Conditions de Robin"}], "identifier": "http://d-nb.info/gnd/4708822-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4708822-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)965652785", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4708822-9", "source": "GND"}], "variant_access_point": ["Robin Boundary Value Problem", "Robin Boundary Condition", "Robin-Randbedingung", "Dritte Randbedingung"], "authorized_access_point": "Robin-Randwertproblem"} 1 +2024-09-10 15:44:20.753437 2024-09-10 15:44:20.753446 ca82f9e3-9f8c-4e21-928d-a635a983d281 {"md5": "44d3d121ad259cfbf896ff1c38c1b867", "pid": "965576825", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Intrusion_Detection_System&oldid=188067782"], "noteType": "dataSource"}, {"label": ["Teilgebiet aus dem IT-Sicherheitsbereich. Methoden und (Software-)Systeme, mit deren Hilfe Angriffe auf Rechnersysteme erkannt werden können.", "Für Systeme zur Erkennung physischer Eindringversuche auf ein Gelände, in ein Gebäude oder in einen Raum verwende Einbruchmeldeanlage"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Computersicherheit"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334216967", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2010008203", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2010008203"}], "authorized_access_point": "Intrusion detection systems (Computer security)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334216967", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17163602", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17163602m"}], "authorized_access_point": "Systèmes de détection d'intrusion (informatique)"}], "identifier": "http://d-nb.info/gnd/4706627-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4706627-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)965576825", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4706627-1", "source": "GND"}], "variant_access_point": ["Intrusion Detection", "Einbruchserkennung (Informatik)", "Erkennen von Eindringversuchen (Informatik)", "Erkennung von Eindringlingen (Informatik)", "Intruder Detection", "Angriffserkennungssystem", "Eindring-Erkennungssystem", "Intrusion Detection System", "IDS (Informatik)", "Eindringerkennungssystem"], "authorized_access_point": "Eindringerkennung"} 1 +2024-09-10 15:44:20.872612 2024-09-10 15:44:20.872624 d2396ca9-ca43-40d4-865f-af14f661e1d1 {"md5": "a38aa5dd5e8a9388f3d9ccc02a41bbcd", "pid": "965369846", "note": [{"label": ["Kombiniere mit Sprachbezeichnung und Wortart, z.B. SWW Deutsch ; Adjektiv ; groß"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134009992", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2012004781", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2012004781"}], "authorized_access_point": "Gross (The German word)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134009992", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11965640", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119656406"}], "authorized_access_point": "Gross (le mot allemand)"}], "identifier": "http://d-nb.info/gnd/4702395-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4702395-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)965369846", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4702395-8", "source": "GND"}], "authorized_access_point": "groß"} 1 +2024-09-10 15:44:20.995643 2024-09-10 15:44:20.99565 9bc5fd00-7f1f-4c2c-95af-3a01ffd93127 {"md5": "ed0ba2eb8e88da94c1271663276a466f", "pid": "965367924", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Volkstanz"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134405928", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85116888", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85116888"}], "authorized_access_point": "Saltarellos"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134405928", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF14418759", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb144187594"}], "authorized_access_point": "Saltarelles"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254398546", "source": "GND"}, {"type": "bf:Nbn", "value": "70395", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/70395"}], "authorized_access_point": "Saltarelli"}], "identifier": "http://d-nb.info/gnd/4702316-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4702316-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)965367924", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4702316-8", "source": "GND"}], "variant_access_point": ["Passo brabante", "Pas de breban", "Alta danza", "Hupfauff", "Hupfauf", "Springtanz", "Nachtanz", "Tripla"], "authorized_access_point": "Saltarello"} 1 +2024-09-10 15:44:21.111242 2024-09-10 15:44:21.111247 152766ae-ddc8-4c6c-a5fd-e2dda914750e {"md5": "be19684d1ea427012ab451911786911d", "pid": "965252973", "note": [{"label": ["Verknüpfe mit Sprachbezeichnung und hier nicht permutierender Wortart; z.B. SWW Amerikanisches Englisch ; Interjektion ; O.K."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4699958-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4699958-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)965252973", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4699958-9", "source": "GND"}], "variant_access_point": ["O. K.", "okay"], "authorized_access_point": "O.K."} 1 +2024-09-10 15:44:21.204083 2024-09-10 15:44:21.204091 430aa2c0-cfe7-4b1a-b4fd-b517cbaa4d55 {"md5": "8b780b4ea017fd3e3f549fe06df195b4", "pid": "964979683", "note": [{"label": ["Dän.-schwed. Krieg 1675-1679"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Krieg"}], "identifier": "http://d-nb.info/gnd/4695869-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4695869-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)964979683", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4695869-1", "source": "GND"}], "authorized_access_point": "Schonischer Krieg"} 1 +2024-09-10 15:44:21.336748 2024-09-10 15:44:21.336755 f8146221-057e-4835-a609-7b1aaf7182d2 {"md5": "08407952f4044bc4c3deae9d8510c7a1", "pid": "964866862", "note": [{"label": ["In der politischen Auseinandersetzung international gebräuchlich gewordene Bezeichnung für Staaten, deren Politik als unberechenbar und friedensgefährdend betrachtet wird"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Staat"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331527570", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16772002", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16772002t"}], "authorized_access_point": "États voyous"}], "identifier": "http://d-nb.info/gnd/4692880-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4692880-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)964866862", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4692880-7", "source": "GND"}], "variant_access_point": ["Rogue State"], "authorized_access_point": "Schurkenstaat"} 1 +2024-09-10 15:45:57.225671 2024-09-10 15:45:57.225683 d0df6201-14b3-40e2-8ece-bc274f8491a9 {"md5": "2378817a64ed563ffb3b82421681ae02", "pid": "1159919828", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifier": "http://d-nb.info/gnd/1159919828", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1159919828", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1159919828", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1159919828", "source": "GND"}], "authorized_access_point": "Orator (Druckschrift)"} 1 +2024-09-10 15:44:21.456941 2024-09-10 15:44:21.456949 96ed54f2-499b-4a85-ac41-e0b6391f78ef {"md5": "dbad46abb21320eb089be62a503ef267", "pid": "964848651", "note": [{"label": ["Altweltlich-tropische Gattung der Johanniskrautgewächse"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134521839", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85053063", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85053063"}], "authorized_access_point": "Garcinia"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134521839", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16649644", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb166496449"}], "authorized_access_point": "Garcinia"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256215473", "source": "GND"}, {"type": "bf:Nbn", "value": "3190", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_3190"}], "authorized_access_point": "Garcinia"}], "identifier": "http://d-nb.info/gnd/4692790-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4692790-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)964848651", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4692790-6", "source": "GND"}], "authorized_access_point": "Garcinia"} 1 +2024-09-10 15:44:21.562575 2024-09-10 15:44:21.562583 2003ee0d-3c2e-447f-8c9e-290e75c9f3ce {"md5": "f8b82a2a60037b22d7db5953a6df5728", "pid": "96473222X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Numerische Mathematik"}, {"authorized_access_point": "Fluiddynamik"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1281121487", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17104887", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17104887c"}], "authorized_access_point": "Modélisation CFD"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1281121487", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2007008173", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2007008173"}], "authorized_access_point": "Computational fluid dynamics"}], "identifier": "http://d-nb.info/gnd/4690080-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4690080-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)96473222X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4690080-9", "source": "GND"}], "variant_access_point": ["CFD", "Computational fluid dynamics", "Numerische Strömungsmechanik", "Strömungsmechanik"], "authorized_access_point": "Numerische Strömungssimulation"} 1 +2024-09-10 15:44:21.678075 2024-09-10 15:44:21.67808 bcfdbbc8-bdae-4728-8544-ed75afeadf0d {"md5": "d1dea02cf5c9fa080cebd55f377c01fa", "pid": "964720272", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Messer"}, {"authorized_access_point": "Jagdwaffe"}, {"authorized_access_point": "Hieb- und Stoßwaffe"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334235244", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17711271", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17711271v"}], "authorized_access_point": "Couteaux de chasse"}], "identifier": "http://d-nb.info/gnd/4689877-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4689877-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)964720272", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4689877-3", "source": "GND"}], "authorized_access_point": "Jagdmesser"} 1 +2024-09-10 15:44:21.758706 2024-09-10 15:44:21.758712 a64d5773-3fa3-4556-9e77-9e14d85a9819 {"md5": "238c479090c4a1f35a6d5827a387b20f", "pid": "964519194", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Messer"}, {"authorized_access_point": "Hieb- und Stoßwaffe"}], "related": [{"authorized_access_point": "Dolch"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334551006", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2002007547", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2002007547"}], "authorized_access_point": "Cutlasses"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334551006", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16672701", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb166727017"}], "authorized_access_point": "Couteaux de combat"}], "identifier": "http://d-nb.info/gnd/4686440-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4686440-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)964519194", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4686440-4", "source": "GND"}], "variant_access_point": ["Kampf-Messer", "Taktisches Einsatzmesser"], "authorized_access_point": "Kampfmesser"} 1 +2024-09-10 15:44:21.872719 2024-09-10 15:44:21.872733 2df37f33-c4a0-4d17-b166-08a1d929006d {"md5": "b5187b792fe252bd7c0a89547df87f4f", "pid": "964421062", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Becher"}, {"authorized_access_point": "Essgeschirr"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133852424", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85041219", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85041219"}], "authorized_access_point": "Eggcups"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133852424", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13335794", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb133357941"}], "authorized_access_point": "Coquetiers"}], "identifier": "http://d-nb.info/gnd/4684942-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4684942-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)964421062", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4684942-7", "source": "GND"}], "authorized_access_point": "Eierbecher"} 1 +2024-09-10 15:44:21.979364 2024-09-10 15:44:21.979372 2900af35-dbd2-4c2d-a8c2-96a2f76afa4d {"md5": "258f58329c74f27e1fd338e85aae73b7", "pid": "964339676", "note": [{"label": ["Zusammenklappbarer Fächer mit Gestell aus Stäben, die durch ein gefaltetes Blatt (meist aus Papier) miteinander verbunden sind."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fächer"}], "identifier": "http://d-nb.info/gnd/4683225-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4683225-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)964339676", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4683225-7", "source": "GND"}], "authorized_access_point": "Faltfächer"} 1 +2024-09-10 15:44:22.085925 2024-09-10 15:44:22.085933 32c87a6b-a8ba-43d6-a49b-028cc8b8f714 {"md5": "a7109334687318fbc86f6dd1fff51cb1", "pid": "964334666", "note": [{"label": ["Art der Makrelen (Scombridae)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Makrelen und Thunfische"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333371233", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85025467", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85025467"}], "authorized_access_point": "Chub mackerel"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333371233", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17807471", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17807471t"}], "authorized_access_point": "Maquereau espagnol"}], "identifier": "http://d-nb.info/gnd/4683068-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4683068-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)964334666", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4683068-6", "source": "GND"}], "variant_access_point": ["Scomber japonicus", "Scomber japonicus japonicus", "Pneumatophorus japonicus", "Pneumatophorus colias", "Thunmakrele", "Chub mackerel"], "authorized_access_point": "Mittelmeer-Makrele"} 1 +2024-09-10 15:44:22.19455 2024-09-10 15:44:22.194557 402fda2c-5f76-4bcf-94b8-686369147625 {"md5": "b735dd3651c4637e0efb64de1a338ddb", "pid": "964248026", "note": [{"label": ["GTP-bindende Proteine; Regulatoren für Zellfunktionen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kleine GTP-bindende Proteine"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133811779", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12488550", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12488550n"}], "authorized_access_point": "GTPases Rho"}], "identifier": "http://d-nb.info/gnd/4681926-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4681926-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)964248026", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4681926-5", "source": "GND"}], "variant_access_point": ["Rho-GTPasen", "Rho-GTPase", "Rho-Guanosintriphosphatasen", "Rho-Guanin-Triphosphatasen", "EC 3.6.5.2", "P21 (rho)Protein", "Rho G-Proteins", "Rho GTP-Binding Protein", "Rho GTPases", "Rho Protein P21", "Rho Small GTP-Binding Proteins"], "authorized_access_point": "Rho-Proteine"} 1 +2024-09-10 15:44:22.36286 2024-09-10 15:44:22.362866 c0a37a0e-6218-41d6-b2f8-76551be3a00e {"md5": "063fe882c694d346204b17a0a88f300b", "pid": "964078880", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Riesenschlangen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134673639", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF15046308", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb15046308q"}], "authorized_access_point": "Python vert"}], "identifier": "http://d-nb.info/gnd/4678979-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4678979-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)964078880", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4678979-0", "source": "GND"}], "variant_access_point": ["Chondropython viridis", "Morelia viridis"], "authorized_access_point": "Grüner Baumpython"} 1 +2024-09-10 15:44:22.476331 2024-09-10 15:44:22.476342 07c2fec9-5fef-47f4-86d0-be2e05eedc6a {"md5": "4b2294d1013a8bb3400532c7671d0a2b", "pid": "963708708", "note": [{"label": ["Familie der Barschfische"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333377517", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85057550.html", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85057550.html"}], "authorized_access_point": "Grunts (Fishes)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333377517", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16593896", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16593896h"}], "authorized_access_point": "Haemulidae"}], "identifier": "http://d-nb.info/gnd/4670781-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4670781-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)963708708", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4670781-5", "source": "GND"}], "variant_access_point": ["Pomadasyidae", "Grunzer", "Haemulidae"], "authorized_access_point": "Süßlippen"} 1 +2024-09-10 15:44:22.603628 2024-09-10 15:44:22.603633 8883168a-ef4c-4884-9d16-eb54c3ec0f82 {"md5": "20f3b17cc9ba284da0db72c0736cf115", "pid": "963707906", "note": [{"label": ["Fischart"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333376200", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85123762", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85123762"}], "authorized_access_point": "Snook"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333376200", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17798724", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb177987242"}], "authorized_access_point": "Centropomus undecimalis"}], "identifier": "http://d-nb.info/gnd/4670732-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4670732-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)963707906", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4670732-3", "source": "GND"}], "variant_access_point": ["Centropomus undecimalis"], "authorized_access_point": "Olivgrüner Snook"} 1 +2024-09-10 15:44:24.752856 2024-09-10 15:44:24.75286 560a4d0e-e153-452d-8a69-d477121bb939 {"md5": "2bda02739887f97991dbc115c5e57f75", "pid": "959893202", "note": [{"label": ["skandinavische Kulturideologie des 17. -19. Jhs: proklamiert skandinavische Überlegenheit unter Berufung auf die Goten und ihren Sieg über Rom"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Nationalismus"}], "identifier": "http://d-nb.info/gnd/4607525-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4607525-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)959893202", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4607525-2", "source": "GND"}], "variant_access_point": ["Goticismus", "Götizismus"], "authorized_access_point": "Gotizismus"} 1 +2024-09-10 15:44:22.695312 2024-09-10 15:44:22.695315 ed06dbfd-fa48-4be9-bbfe-bceed062fa2a {"md5": "d875b2057a85e4e42d6f177c93f8f118", "pid": "963707884", "note": [{"label": ["Fischgattung"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Meerbarben"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333447876", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85088336", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85088336"}], "authorized_access_point": "Mullus"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333447876", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17093883", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17093883f"}], "authorized_access_point": "Mullus"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256238872", "source": "GND"}, {"type": "bf:Nbn", "value": "4981", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_4981"}], "authorized_access_point": "Mullus"}], "identifier": "http://d-nb.info/gnd/4670731-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4670731-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)963707884", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4670731-1", "source": "GND"}], "authorized_access_point": "Mullus"} 1 +2024-09-10 15:44:22.754832 2024-09-10 15:44:22.754835 3903b7fc-639d-4a96-aef9-a0af8ddc27b8 {"md5": "26aa4c5c3a1548a2c4290f6911f2ee5d", "pid": "963495046", "note": [{"label": ["Erklärung des Verzichts auf bestimmte Rechte oder Einreden"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4666004-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4666004-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)963495046", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4666004-5", "source": "GND"}], "variant_access_point": ["Verzichtserklärung", "Einrede", "Verzicht", "Renunziation", "Waiver"], "authorized_access_point": "Renuntiation"} 1 +2024-09-10 15:44:22.84445 2024-09-10 15:44:22.844457 82483d15-8d0e-481b-a339-b0f798de2cb9 {"md5": "e944df796d8fb7816d67a6c749efa70d", "pid": "963483927", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Altersversorgung"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966914562", "source": "GND"}, {"type": "bf:Nbn", "value": "18739-4", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/18739-4"}], "authorized_access_point": "Private Altersvorsorge"}], "identifier": "http://d-nb.info/gnd/4665610-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4665610-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)963483927", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4665610-8", "source": "GND"}], "variant_access_point": ["Private Alterssicherung", "Riester-Rente", "Private Altersvorsorge"], "authorized_access_point": "Private Altersversorgung"} 1 +2024-09-10 15:44:22.924997 2024-09-10 15:44:22.925005 eb757aa4-b8da-4b08-afdb-d094ec6abd30 {"md5": "8082792adbed46e557200591e2ebdb79", "pid": "96317066X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Manufaktur"}], "identifier": "http://d-nb.info/gnd/4661091-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4661091-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)96317066X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4661091-1", "source": "GND"}], "variant_access_point": ["Spiegelglas"], "authorized_access_point": "Spiegelglasmanufaktur"} 1 +2024-09-10 15:44:23.008141 2024-09-10 15:44:23.008149 4662cdd8-7a99-4001-8691-c9c60e22fb9b {"md5": "4d2a4ba11834af37e81932dabca7ef35", "pid": "963127608", "note": [{"label": ["Oberster dän. Orden; gültige Form mit d. Statuen v. 1693 festgelegt."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Orden (Ehrenzeichen)"}], "identifier": "http://d-nb.info/gnd/4659956-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4659956-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)963127608", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4659956-3", "source": "GND"}], "authorized_access_point": "Elefantenorden"} 1 +2024-09-10 15:44:23.089832 2024-09-10 15:44:23.089842 0f84fbeb-349e-4d17-b63a-5af68fa20507 {"md5": "1dce25efcabfe95393ab2e143d12c85e", "pid": "963125125", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ausschuss"}], "identifier": "http://d-nb.info/gnd/4659913-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4659913-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)963125125", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4659913-7", "source": "GND"}], "authorized_access_point": "Wissenschaftlicher Ausschuss"} 1 +2024-09-10 15:44:23.20791 2024-09-10 15:44:23.207921 b7f7e3e7-8b4a-42f2-89e8-6455da8b9a64 {"md5": "96bf87a554ccc7d9aa02bde513bdabc4", "pid": "963005553", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Makrelen und Thunfische"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134189834", "source": "GND"}, {"type": "bf:Nbn", "value": "sh99004145", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh99004145"}], "authorized_access_point": "Atlantic mackerel"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134189834", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12149035", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb121490358"}], "authorized_access_point": "Maquereau"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256234591", "source": "GND"}, {"type": "bf:Nbn", "value": "4498", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_4498"}], "authorized_access_point": "mackerel"}], "identifier": "http://d-nb.info/gnd/4657894-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4657894-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)963005553", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4657894-8", "source": "GND"}], "variant_access_point": ["Europäische Makrele", "Scomber scrombrus"], "authorized_access_point": "Makrele"} 1 +2024-09-10 15:44:23.317225 2024-09-10 15:44:23.317232 d6314081-9357-49fc-891b-0978b4427d32 {"md5": "3c823cef377dcc282658d97f24dcb5fb", "pid": "962883026", "note": [{"label": ["Als Homonymenzusatz bei Personenschlagwörtern zugelassen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kritikerin"}], "related": [{"authorized_access_point": "Kunstkritiker"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331761115", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85147442", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85147442"}], "authorized_access_point": "Women art critics"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331761115", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13506562", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13506562t"}], "authorized_access_point": "Femmes critiques d'art"}], "identifier": "http://d-nb.info/gnd/4656207-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4656207-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)962883026", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4656207-2", "source": "GND"}], "variant_access_point": ["Kunst"], "authorized_access_point": "Kunstkritikerin"} 1 +2024-09-10 15:44:23.433496 2024-09-10 15:44:23.433505 8f1fb3fa-edd5-4ada-bd52-6677939555ab {"md5": "644dfdaf7079ed57c8e5af3e784b29d0", "pid": "962846104", "note": [{"label": ["Art der Drosseln (Turdidae)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Drosseln"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333493991", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85013886", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85013886"}], "authorized_access_point": "Gray-cheeked thrush"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333493991", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF15642549", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb15642549x"}], "authorized_access_point": "Grive à joues grises"}], "identifier": "http://d-nb.info/gnd/4655437-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4655437-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)962846104", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4655437-3", "source": "GND"}], "authorized_access_point": "Catharus minimus"} 1 +2024-09-10 15:44:23.53181 2024-09-10 15:44:23.531824 82b57ab5-8b00-4000-8c9c-8b6952b55826 {"md5": "845527194120461780c90160580ddc65", "pid": "962794015", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Messgerät"}], "identifier": "http://d-nb.info/gnd/4654254-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4654254-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)962794015", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4654254-1", "source": "GND"}], "authorized_access_point": "Komparator (Längenmessung)"} 1 +2024-09-10 15:44:23.650038 2024-09-10 15:44:23.650048 e5e0ae68-f023-4e42-a853-02a482b6b75b {"md5": "42c6ae06d0d69751545080a15e1ba242", "pid": "962681539", "note": [{"label": ["Verknüpfe mit Sprachbezeichnung und hier nicht permutierender Wortart, z.B. SWW Französisch ; Adjektiv ; droit"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4651342-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4651342-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)962681539", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4651342-5", "source": "GND"}], "authorized_access_point": "droit"} 1 +2024-09-10 15:44:23.73996 2024-09-10 15:44:23.739963 1eee068a-fe1c-4136-a83e-4c06a30d5c4f {"md5": "2af271ec9b14ed09006b1d9433b5e2ad", "pid": "962256978", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Höchstalemannisch"}, {"authorized_access_point": "Walliserdeutsch"}, {"authorized_access_point": "Schweizerdeutsch"}], "identifier": "http://d-nb.info/gnd/4647862-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4647862-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)962256978", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4647862-0", "source": "GND"}], "authorized_access_point": "Mundart Höchstalemannisch (Prättigau)"} 1 +2024-09-10 15:44:23.810037 2024-09-10 15:44:23.810041 b3887bef-c0a4-48fb-aca9-737f5afb0c29 {"md5": "89abd085b845f15a08794dbd30aafc33", "pid": "962005959", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ball"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333710399", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF18096033", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb18096033j"}], "authorized_access_point": "Ballons de football"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1290726485", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85050423", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85050423"}], "authorized_access_point": "Footballs"}], "identifier": "http://d-nb.info/gnd/4643833-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4643833-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)962005959", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4643833-6", "source": "GND"}], "authorized_access_point": "Fußball (Sportgerät)"} 1 +2024-09-10 15:44:23.892293 2024-09-10 15:44:23.892307 a341adb4-0e32-48ed-90c6-1b3dc4a58825 {"md5": "1ef17f8c3d10e309444024d82582af48", "pid": "961909021", "note": [{"label": ["Not-Postbeförderung in wasserdichten, unter der Wasseroberfläche treibenden Zinkkugeln, angewendet 1871 zur Postbeförderung in das belagerte Paris"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Post"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331570603", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13745361", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13745361v"}], "authorized_access_point": "Boules de Moulins"}], "identifier": "http://d-nb.info/gnd/4641892-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4641892-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)961909021", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4641892-1", "source": "GND"}], "variant_access_point": ["Unterwasserpost", "Schwimmkugelpost", "Flusskugelpost", "Boules-des-Moulins", "Paris-par-Moulins"], "authorized_access_point": "Zinkkugelpost"} 1 +2024-09-10 15:44:24.003681 2024-09-10 15:44:24.003691 f0eb4bf3-e8f8-4488-b4bf-308fb0f4a3c4 {"md5": "7e76406a2a6f5f1c9ca86aa1b1889a36", "pid": "961468319", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Händler"}], "related": [{"authorized_access_point": "Fischhandel"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113452787X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2019000240", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2019000240"}], "authorized_access_point": "Fishmongers"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113452787X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13337698", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13337698m"}], "authorized_access_point": "Poissonniers"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254384502", "source": "GND"}, {"type": "bf:Nbn", "value": "52128", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/52128"}], "authorized_access_point": "Pescivendoli"}], "identifier": "http://d-nb.info/gnd/4634759-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4634759-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)961468319", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4634759-8", "source": "GND"}], "variant_access_point": ["Fische"], "authorized_access_point": "Fischhändler"} 1 +2024-09-10 15:44:24.099606 2024-09-10 15:44:24.099619 ae8d3dd0-18b6-4ca3-b0aa-d5bc84e08d3e {"md5": "83de97b617bea9fc83713c8094e1a595", "pid": "960936785", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Weltbürgerin"}, {"authorized_access_point": "Weltbürgertum"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134570465", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF15115323", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb15115323x"}], "authorized_access_point": "Citoyenneté mondiale"}], "identifier": "http://d-nb.info/gnd/4625760-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4625760-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)960936785", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4625760-3", "source": "GND"}], "variant_access_point": ["Kosmopolit"], "authorized_access_point": "Weltbürger"} 1 +2024-09-10 15:44:24.207477 2024-09-10 15:44:24.207486 02e44022-6f31-46d7-a76e-f7d1f26a7227 {"md5": "c434ff00118f917c32bc641ef3e95b86", "pid": "960733108", "note": [{"label": ["Gattung der Primelgewächse"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Primelgewächse"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134525567", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2009010914", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2009010914"}], "authorized_access_point": "Anthemis"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134525567", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12290124", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12290124x"}], "authorized_access_point": "Anthemis"}], "identifier": "http://d-nb.info/gnd/4622149-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4622149-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)960733108", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4622149-9", "source": "GND"}], "variant_access_point": ["Anagallis"], "authorized_access_point": "Gauchheil"} 1 +2024-09-10 15:44:24.318509 2024-09-10 15:44:24.318519 6d7a18dd-75eb-4e29-9b75-09fb8f34cabf {"md5": "e7f92c4ce3f139280d0ee4d75aefc55d", "pid": "960658491", "note": [{"label": ["Gattung der Drosseln"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Drosseln"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333493878", "source": "GND"}, {"type": "bf:Nbn", "value": "sh93001601", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh93001601"}], "authorized_access_point": "Turdus"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333493878", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12266592", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12266592b"}], "authorized_access_point": "Turdus"}], "identifier": "http://d-nb.info/gnd/4620929-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4620929-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)960658491", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4620929-3", "source": "GND"}], "authorized_access_point": "Turdus"} 1 +2024-09-10 15:44:24.439168 2024-09-10 15:44:24.439182 2c408df6-558d-4006-a581-9aaba7ac3579 {"md5": "5d6af71d6baa3d563b1389c8ee19db67", "pid": "960161872", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Konstruktion"}], "identifier": "http://d-nb.info/gnd/4613026-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4613026-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)960161872", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4613026-3", "source": "GND"}], "variant_access_point": ["Änderungskonstruktion"], "authorized_access_point": "Anpassungskonstruktion"} 1 +2024-09-10 15:44:24.542318 2024-09-10 15:44:24.54233 8984cc78-e9da-432d-bb55-d7fd3d99d7e3 {"md5": "4967325a21e436b4281b5c49b16cad7d", "pid": "959965831", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Diagnose"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133778232", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12344924", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb123449247"}], "authorized_access_point": "Diagnostic infirmier"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1241617775", "source": "GND"}, {"type": "bf:Nbn", "value": "D009733", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D009733"}], "authorized_access_point": "Nursing Diagnosis"}], "identifier": "http://d-nb.info/gnd/4609251-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4609251-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)959965831", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4609251-1", "source": "GND"}], "variant_access_point": ["Krankenpflege", "Pflegediagnostik"], "authorized_access_point": "Pflegediagnose"} 1 +2024-09-10 15:44:24.814996 2024-09-10 15:44:24.815008 7a817b77-1963-4b2e-89ef-22b59f9f5229 {"md5": "63a02427cfa937c141e9446bbe7f8f4a", "pid": "959807241", "note": [{"label": ["System , das in der Lage ist, in einer periodischen Struktur Teilchen mit nichtverschwindender makroskopischen Geschwindigkeit zu transportieren, obwohl im zeitlichen Mittel keine Kraft wirkt"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4605880-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4605880-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)959807241", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4605880-1", "source": "GND"}], "variant_access_point": ["Ratchet", "Ratscheneffekt"], "authorized_access_point": "Ratsche (Physik)"} 1 +2024-09-10 15:44:24.917367 2024-09-10 15:44:24.917379 175729da-e54c-4b04-8c88-b718cb6aaf63 {"md5": "0e0010cedf248feb1f69d7a1d8f53160", "pid": "959710248", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Abgeschlossenheit"}], "identifier": "http://d-nb.info/gnd/4603779-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4603779-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)959710248", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4603779-2", "source": "GND"}], "variant_access_point": ["Cartesische Abgeschlossenheit"], "authorized_access_point": "Kartesische Abgeschlossenheit"} 1 +2024-09-10 15:44:25.022948 2024-09-10 15:44:25.022961 a9659e43-8a28-474d-bae1-ecf2b29d2fc3 {"md5": "8d7351a658eafe9df214dcbed53f9bdc", "pid": "959143459", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gerät"}], "identifier": "http://d-nb.info/gnd/4592565-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4592565-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)959143459", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4592565-3", "source": "GND"}], "variant_access_point": ["Fahrbares Gerät", "Mobiles Gerät", "Tragbares Gerät"], "authorized_access_point": "Transportables Gerät"} 1 +2024-09-10 15:44:25.120662 2024-09-10 15:44:25.120675 541fdc89-a888-473e-aa1c-603b4bfc10ca {"md5": "63976700a7a44275b60ea452093be532", "pid": "958745404", "note": [{"label": ["DVD-Applikation und -standard zum Verbreiten und Abspielen von Daten", "Verwendet als Sach- und Formschlagwort; als Formschlagwort für alle Arten von DVDs, für die ein Computer als Abspielgerät notwendig ist (vgl. auch Hinweis bei \\"DVD-Video\\")."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "DVD"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133880940", "source": "GND"}, {"type": "bf:Nbn", "value": "sh00009187", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh00009187"}], "authorized_access_point": "DVD-ROMs"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133880940", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13616261", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb136162611"}], "authorized_access_point": "DVD-ROM"}], "identifier": "http://d-nb.info/gnd/4585131-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4585131-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)958745404", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4585131-1", "source": "GND"}], "authorized_access_point": "DVD-ROM"} 1 +2024-09-10 15:44:25.230863 2024-09-10 15:44:25.230874 665ae6ea-0c19-4bd4-ad9e-8d95343d8646 {"md5": "d48cec252a2f699461544ad6330d7cd8", "pid": "958745374", "note": [{"label": ["DVD-Applikation und -standard zum Verbreiten und Abspielen von Audiodaten", "Verwendet als Sach- und Formschlagwort"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "DVD"}, {"authorized_access_point": "Tonträger"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133861881", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2001004459", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2001004459"}], "authorized_access_point": "DVD-Audio discs"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133861881", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13514059", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb135140598"}], "authorized_access_point": "DVD audio"}], "identifier": "http://d-nb.info/gnd/4585129-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4585129-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)958745374", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4585129-3", "source": "GND"}], "authorized_access_point": "DVD-Audio"} 1 +2024-09-10 15:44:25.342536 2024-09-10 15:44:25.342544 05377661-c8b7-4e55-8d3b-a8b761776568 {"md5": "a2b582535849e33785e38e3653e15163", "pid": "958745307", "note": [{"label": ["DVD-Applikation und -standard zum Verbreiten und Abspielen von bewegten Bildern", "Verwendet als Sach- und Formschlagwort; \\"DVD-Video\\" wird nur dann als Formschlagwort benutzt, wenn als Abspielgeräte DVD-Player und TVs ausreichen; Videos mit interaktiven Lernprogrammen erfordern einen Computer und bekommen als Formschlagwort \\"DVD-Rom\\"."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "DVD"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133861857", "source": "GND"}, {"type": "bf:Nbn", "value": "sh99002636", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh99002636"}], "authorized_access_point": "DVD-Video discs"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133861857", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13514055", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13514055w"}], "authorized_access_point": "DVD vidéo"}], "identifier": "http://d-nb.info/gnd/4585125-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4585125-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)958745307", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4585125-6", "source": "GND"}], "variant_access_point": ["DVD-Film"], "authorized_access_point": "DVD-Video"} 1 +2024-09-10 15:44:51.51474 2024-09-10 15:44:51.514744 6d91d25e-4ebd-4fda-9667-839cdf96c00c {"md5": "cb9e26ddae06869a2833d1de68b68616", "pid": "041987489", "note": [{"label": ["Produktbezeichnung"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Whisky"}], "identifier": "http://d-nb.info/gnd/4198748-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4198748-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041987489", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4198748-2", "source": "GND"}], "authorized_access_point": "Bourbon (Getränk)"} 1 +2024-09-10 15:44:25.453136 2024-09-10 15:44:25.453147 00a81143-2c67-4530-91ed-2c60ff13215c {"md5": "097155ed236fda78143aff2305a1f289", "pid": "958577447", "note": [{"label": ["Funde der Urnenfelderkultur im Gebiet der Mittleren Iser, Nordböhm. Gebiet"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Urnenfelderkultur"}], "identifier": "http://d-nb.info/gnd/4582452-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4582452-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)958577447", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4582452-6", "source": "GND"}], "variant_access_point": ["Turnover Typ"], "authorized_access_point": "Turnover Typus"} 1 +2024-09-10 15:44:25.558174 2024-09-10 15:44:25.558187 cd302411-9fec-416b-9b2e-eba99cb4d1d9 {"md5": "6843c4d664fd59bb29f328d70ab701cf", "pid": "958508402", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331749921", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2010013672", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2010013672"}], "authorized_access_point": "Walpurgis Night"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331749921", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16626256", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb166262562"}], "authorized_access_point": "Nuit de Walpurgis"}], "identifier": "http://d-nb.info/gnd/4581377-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4581377-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)958508402", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4581377-2", "source": "GND"}], "authorized_access_point": "Walpurgisnacht"} 1 +2024-09-10 15:44:25.652582 2024-09-10 15:44:25.652592 1c632c10-20dd-4122-828c-855ffcd8dccf {"md5": "7308e48ea006adc0ff9fa847532b9e16", "pid": "958195455", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Folge (Mathematik)"}], "identifier": "http://d-nb.info/gnd/4575172-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4575172-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)958195455", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4575172-9", "source": "GND"}], "authorized_access_point": "Doppelfolge"} 1 +2024-09-10 15:44:25.740911 2024-09-10 15:44:25.740918 d8a93066-3f29-4827-8770-c4381ce0c763 {"md5": "ea6436749fbb08b47302c751bd8d6839", "pid": "958121966", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Linguistik"}], "identifier": "http://d-nb.info/gnd/4572685-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4572685-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)958121966", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4572685-1", "source": "GND"}], "variant_access_point": ["Volkslinguistik"], "authorized_access_point": "Laienlinguistik"} 1 +2024-09-10 15:44:25.816405 2024-09-10 15:44:25.816408 229e21d1-c2b4-44db-b92d-8ad4ac85af36 {"md5": "952aa3b51d63d9e94298aed11bccc313", "pid": "957564554", "note": [{"label": ["Terminus der Phototechnik"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4561589-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4561589-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)957564554", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4561589-5", "source": "GND"}], "authorized_access_point": "Farbkupplung"} 1 +2024-09-10 15:44:25.878711 2024-09-10 15:44:25.878719 d6f4c65b-7ba8-4699-a5c4-f019f8e99e2c {"md5": "aefa09546d7fdab524c8ee55f3044743", "pid": "957193599", "note": [{"label": ["Vertrag zur Regelung von gegenseitigen Reparationszahlungen zwischen Großbritannien und USA für Schäden im amerikan. Bürgerkrieg"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4555543-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4555543-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)957193599", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4555543-6", "source": "GND"}], "variant_access_point": ["Washington, DC (1871)"], "authorized_access_point": "Washington (DC) - Vertrag (1871)"} 1 +2024-09-10 15:44:25.967951 2024-09-10 15:44:25.967961 b5754498-dbb9-4855-a0cc-ad1b39f80d48 {"md5": "73a61f0ba19ba77359f573bd2c6d223f", "pid": "957133235", "note": [{"label": ["Verknüpfe mit Sprachbezeichnung und hier nicht permutierender Wortart; z.B. SWW Deutsch ; Pronomen ; beide"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4554787-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4554787-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)957133235", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4554787-7", "source": "GND"}], "authorized_access_point": "beide"} 1 +2024-09-10 15:44:26.07899 2024-09-10 15:44:26.079001 f06095b9-453a-480f-a303-52d81c9caf77 {"md5": "94695a0c83dcac825b8df29358542519", "pid": "956836976", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Künstlerin"}], "related": [{"authorized_access_point": "Grafiker"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331597935", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2022007951", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2022007951"}], "authorized_access_point": "Women graphic artists"}], "identifier": "http://d-nb.info/gnd/4550852-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4550852-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)956836976", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4550852-5", "source": "GND"}], "variant_access_point": ["Graphikerin"], "authorized_access_point": "Grafikerin"} 1 +2024-09-10 15:44:26.195804 2024-09-10 15:44:26.195807 315e03f0-bdcb-4d89-a6c7-ed53d7125220 {"md5": "785e3414e48c34c0e2283134b4c563ab", "pid": "956033679", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Britisch-Amerikanischer Krieg"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1239387687", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85145353", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85145353"}], "authorized_access_point": "Washington (D.C.) - History - Capture by the British, 1814"}], "identifier": "http://d-nb.info/gnd/4536367-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4536367-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)956033679", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4536367-5", "source": "GND"}], "variant_access_point": ["Washington, DC (1814)"], "authorized_access_point": "Washington (DC) - Eroberung (1814)"} 1 +2024-09-10 15:44:26.30197 2024-09-10 15:44:26.301978 ac0a08d1-7a58-43f6-b42f-16e2c66c41c5 {"md5": "1e99ee6cc41099dafa329e51b9e52a14", "pid": "955952638", "note": [{"label": ["Lektine, die spez. ß-Galactosidase binden."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Lectine"}], "identifier": "http://d-nb.info/gnd/4534183-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4534183-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)955952638", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4534183-7", "source": "GND"}], "variant_access_point": ["Galektine"], "authorized_access_point": "Galectine"} 1 +2024-09-10 15:44:26.421374 2024-09-10 15:44:26.421384 71e50bff-9edb-47e7-b011-b97030ca0665 {"md5": "2c162647144fbc34845836918e7735ea", "pid": "955845483", "note": [{"label": ["Gattung der Buntbarsche"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Buntbarsche"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333965303", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF15597084", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb155970844"}], "authorized_access_point": "Oreochromis"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256242535", "source": "GND"}, {"type": "bf:Nbn", "value": "26596", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_26596"}], "authorized_access_point": "Oreochromis"}], "identifier": "http://d-nb.info/gnd/4531766-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4531766-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)955845483", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4531766-5", "source": "GND"}], "authorized_access_point": "Oreochromis"} 1 +2024-09-10 15:44:26.530904 2024-09-10 15:44:26.530914 f583b111-9b05-4ebc-99cc-b74800c09a4e {"md5": "83942090f4cdda1a42df58eb9733c620", "pid": "955777844", "note": [{"label": ["Krieg zwischen Schweden unter Karl X. Gustav und Dänemark; nach dem Tod Karls wurde am 3.5.1660 der Friede von Oliva und am 6.6.1660 der Friede von Kopenhagen geschlossen."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Krieg"}], "related": [{"authorized_access_point": "Schwedisch-polnisch-dänischer Krieg"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)127182888X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85035763", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85035763"}], "authorized_access_point": "Dano-Swedish Wars, 1657-1660"}], "identifier": "http://d-nb.info/gnd/4530836-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4530836-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)955777844", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4530836-6", "source": "GND"}], "variant_access_point": ["Dänisch-Schwedischer Krieg (1657-1660)"], "authorized_access_point": "Schwedisch-Dänischer Krieg (1657-1660)"} 1 +2024-09-10 15:44:26.63405 2024-09-10 15:44:26.634059 0e912deb-e54f-43e6-bcaa-edacca6d1c03 {"md5": "616008e0e91748b9b663d5917ede5e0e", "pid": "955671906", "note": [{"label": ["Zusammenfassende Bezeichnung für Neuronale Netze, in denen der Puls die verwendete Informationseinheit beschreibt.", "Ansetzung nach Auskunft der Uni Bonn (Prof. Dr. Anlauf, Dipl. Ing. C. Grassmann)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Neuronales Netz"}], "identifier": "http://d-nb.info/gnd/4529621-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4529621-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)955671906", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4529621-2", "source": "GND"}], "variant_access_point": ["Pulsgekoppeltes neuronales Netz", "Pulskodiertes neuronales Netz", "Pulscodiertes neuronales Netz", "PCNN", "Pulse coupled neural networks", "Spikendes neuronales Netz", "Pulsed neural network", "Spiking neural network", "Impulskodierendes neuronales Netz"], "authorized_access_point": "Pulsverarbeitendes neuronales Netz"} 1 +2024-09-10 15:44:26.748966 2024-09-10 15:44:26.748974 4d269164-c12d-46ce-b9f4-f3001a48c9c5 {"md5": "434697d2ffe92e1eb03c4eb76f3d8c13", "pid": "955633087", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Windkanal"}], "identifier": "http://d-nb.info/gnd/4529416-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4529416-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)955633087", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4529416-1", "source": "GND"}], "authorized_access_point": "Plasmawindkanal"} 1 +2024-09-10 15:44:26.831811 2024-09-10 15:44:26.831816 277fc4a8-2c95-42a6-99f2-f5c75c330093 {"md5": "31e12d16912b18347fc2fd0f31748273", "pid": "955631963", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333268149", "source": "GND"}, {"type": "bf:Nbn", "value": "sh88004894", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh88004894"}], "authorized_access_point": "Labroides dimidiatus"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333268149", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17803581", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17803581f"}], "authorized_access_point": "Labroides dimidiatus"}], "identifier": "http://d-nb.info/gnd/4529376-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4529376-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)955631963", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4529376-4", "source": "GND"}], "variant_access_point": ["Labroides dimidiatus", "Labrus dimidiatus"], "authorized_access_point": "Meerschwalbe"} 1 +2024-09-10 15:44:28.675527 2024-09-10 15:44:28.67554 13b3c8fe-7e5f-4dc8-be62-66e27d7ab1fd {"md5": "00d2c446c4070dafc22558479ac8b2bf", "pid": "953936503", "note": [{"label": ["Wikipedia unter Lager (Maschinenelement) - https://de.wikipedia.org/w/index.php?title=Lager_(Maschinenelement)&oldid=243251254#Radial-Axial-Lager_%28Radiaxlager%29"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gleitlager"}], "identifier": "http://d-nb.info/gnd/4507097-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4507097-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)953936503", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4507097-0", "source": "GND"}], "variant_access_point": ["Radial-Axialgleitlager"], "authorized_access_point": "Radial-Axialbund-Gleitlager"} 1 +2024-09-10 15:44:26.911838 2024-09-10 15:44:26.911849 de9b3db0-d437-4017-b5d0-7a725c591105 {"md5": "083080a7716379d92b8b9ec93930b3eb", "pid": "955522552", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Turm"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334015155", "source": "GND"}, {"type": "bf:Nbn", "value": "sh00004969", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh00004969"}], "authorized_access_point": "Watchtowers"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334015155", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16902666", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16902666m"}], "authorized_access_point": "Tours de guet"}], "identifier": "http://d-nb.info/gnd/4528427-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4528427-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)955522552", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4528427-1", "source": "GND"}], "variant_access_point": ["Wachturm", "Wartturm", "Warte"], "authorized_access_point": "Wachtturm"} 1 +2024-09-10 15:44:27.00145 2024-09-10 15:44:27.00146 ec919b47-bf18-4809-9b00-2f3c4274dd11 {"md5": "e3685218e2bc671450eb3ac28d3fd38e", "pid": "955510392", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134731035", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11938453", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119384533"}], "authorized_access_point": "Mesure"}], "identifier": "http://d-nb.info/gnd/4528272-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4528272-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)955510392", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4528272-9", "source": "GND"}], "variant_access_point": ["Kettenstruktur (Messtechnik)", "Reihenschaltung"], "authorized_access_point": "Messkette (Schaltung)"} 1 +2024-09-10 15:44:27.117803 2024-09-10 15:44:27.117808 5df84ce0-b917-423c-bfee-e181c122d977 {"md5": "429dfb026d5070e4c56fd8798e856592", "pid": "955497205", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333483384", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85144937", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85144937"}], "authorized_access_point": "Walleye (Fish)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333483384", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17805480", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb178054809"}], "authorized_access_point": "Doré jaune"}], "identifier": "http://d-nb.info/gnd/4527911-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4527911-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)955497205", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4527911-1", "source": "GND"}], "variant_access_point": ["Stizostedion vitreum", "Perca vitrea", "Perca salmonea", "Lucioperca americana"], "authorized_access_point": "Glasaugenbarsch"} 1 +2024-09-10 15:44:27.209803 2024-09-10 15:44:27.209808 2d1f0408-3e64-4118-917c-33dfd6b1bbff {"md5": "1af316a5c4213f0ed592d630093bb610", "pid": "955324300", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Helium"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134227558", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85077369", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85077369"}], "authorized_access_point": "Liquid helium"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134227558", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12242449", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12242449j"}], "authorized_access_point": "Hélium liquide"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254347356", "source": "GND"}, {"type": "bf:Nbn", "value": "19751", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/19751"}], "authorized_access_point": "Elio liquido"}], "identifier": "http://d-nb.info/gnd/4525343-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4525343-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)955324300", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4525343-2", "source": "GND"}], "variant_access_point": ["Helium", "Liquid helium"], "authorized_access_point": "Flüssiges Helium"} 1 +2024-09-10 15:44:27.31731 2024-09-10 15:44:27.317319 458d4875-aabc-43d3-b5ab-5380b937abcd {"md5": "36c9027157e86a2787146dec08ab8750", "pid": "955297966", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gemeinnütziges Unternehmen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133959911", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11945380", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119453806"}], "authorized_access_point": "Établissements et services d'aide par le travail"}], "identifier": "http://d-nb.info/gnd/4525077-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4525077-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)955297966", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4525077-7", "source": "GND"}], "variant_access_point": ["Integrationsfirma"], "authorized_access_point": "Selbsthilfefirma"} 1 +2024-09-10 15:44:27.417827 2024-09-10 15:44:27.417834 10e7bd37-635b-4ffb-8c23-389cab7eaa63 {"md5": "7be3a17e34dd3a23929cba8a9900137d", "pid": "955286999", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Hofmusik"}, {"authorized_access_point": "Tanzmusik"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332662544", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2011000868", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2011000868"}], "authorized_access_point": "Court dances (Music)"}], "identifier": "http://d-nb.info/gnd/4524885-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4524885-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)955286999", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4524885-0", "source": "GND"}], "authorized_access_point": "Höfische Tanzmusik"} 1 +2024-09-10 15:44:27.524721 2024-09-10 15:44:27.524728 7d754ab2-de73-4143-93c4-c718460519a4 {"md5": "23ac10a44cbd3a41ced4eb6f8007383b", "pid": "955249929", "note": [{"label": ["Familie der Knochenfische"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134450273", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2003001333", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2003001333"}], "authorized_access_point": "Snakeheads (Fish)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134450273", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF14589077", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb145890770"}], "authorized_access_point": "Channidae"}], "identifier": "http://d-nb.info/gnd/4524273-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4524273-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)955249929", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4524273-2", "source": "GND"}], "variant_access_point": ["Schlangenköpfe", "Channidae", "Ophicephalidae"], "authorized_access_point": "Schlangenkopffische"} 1 +2024-09-10 15:44:27.618856 2024-09-10 15:44:27.618867 61b7b443-1d16-4892-8d1b-489fa95cd135 {"md5": "d6d7a1217ba513678ef9571b38fb42e3", "pid": "955181178", "note": [{"label": ["Für vorliegendes audiovisuelles Material, das nicht unter einen der zugelassenen Unterbegriffe fällt, oder eine Kombination von mindestens zwei audiovisuellen Materialien; nicht für elektronische Publikationen.", "Nur als Form-SW zulässig"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4523048-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4523048-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)955181178", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4523048-1", "source": "GND"}], "authorized_access_point": "Audiovisuelles Material (für Kinder)"} 1 +2024-09-10 15:44:27.701806 2024-09-10 15:44:27.701815 78d03353-d4a2-4402-8c2d-c9c7f59260de {"md5": "99c0e1cabdcb77844332f3b66ea71082", "pid": "955150507", "note": [{"label": ["Fayencewandfliesen mit ornamentalem oder figürlichem Dekor, die von den Mauren auf der Iberischen Halbinsel eingeführt wurden; später neben Portugal u. Spanien auch in deren Kolonien verbreitet; oft in Form von grossen Tableaus verwendet."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fayencefliese"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332766943", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11994207", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11994207n"}], "authorized_access_point": "Azulejos"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1299918867", "source": "GND"}, {"type": "bf:Nbn", "value": "XX529896", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX529896"}], "authorized_access_point": "Azulejos"}], "identifier": "http://d-nb.info/gnd/4522486-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4522486-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)955150507", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4522486-9", "source": "GND"}], "variant_access_point": ["Azulejos"], "authorized_access_point": "Azulejo"} 1 +2024-09-10 15:44:27.81755 2024-09-10 15:44:27.81756 37e9f56d-d069-49a7-9936-6fcc8ff8ae63 {"md5": "8f54fbc2cf7eea59a35f643c0af02e77", "pid": "954752554", "note": [{"label": ["Russ. evangelikale Sekte"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sekte"}, {"authorized_access_point": "Evangelikale Bewegung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331867657", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85098434", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85098434"}], "authorized_access_point": "Pashkovism"}], "identifier": "http://d-nb.info/gnd/4517749-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4517749-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)954752554", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4517749-1", "source": "GND"}], "variant_access_point": ["Paškovcy"], "authorized_access_point": "Paschkowianer"} 1 +2024-09-10 15:44:27.878602 2024-09-10 15:44:27.878606 5e208a72-7efc-4249-b92c-f791facf182b {"md5": "4b5c8a8d6fe2d3e418dc62e23d1a540f", "pid": "95471752X", "note": [{"label": ["Lt. NCBI-Taxonomy Gattung aus d. UF Luciocephalinae=Hechtkopfartige.(Früher UF Trichogasterinae). Einige Trichogasterarten werden der Gattung Zwergfadenfisch=Colisa zugeordnet und haben den Gattungsnamen Trichogaster als Synonym."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Großguramis"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333955340", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85137463", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85137463"}], "authorized_access_point": "Trichogaster"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333955340", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17805195", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17805195h"}], "authorized_access_point": "Trichogaster"}], "identifier": "http://d-nb.info/gnd/4517241-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4517241-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)95471752X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4517241-9", "source": "GND"}], "variant_access_point": ["Trichogaster"], "authorized_access_point": "Fadenfisch (Gattung)"} 1 +2024-09-10 15:44:28.784131 2024-09-10 15:44:28.784144 d7a010bd-bd2f-4179-91f7-12930a7910d8 {"md5": "550aa32e4499e7a0a93276331eafc920", "pid": "953467732", "note": [{"label": ["Dienstgrad von Wehrpflichtigen, die in der NVA Wehrdienst ohne Waffe leisteten"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kriegsdienstverweigerer"}], "identifier": "http://d-nb.info/gnd/4499305-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4499305-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)953467732", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4499305-5", "source": "GND"}], "variant_access_point": ["Spatensoldat"], "authorized_access_point": "Bausoldat"} 1 +2024-09-10 15:44:27.948615 2024-09-10 15:44:27.948624 57b4d735-3a43-4ba9-b01a-2295c310b3d2 {"md5": "913206dee9ffaa820b6dc6cc24b60aa9", "pid": "95469483X", "note": [{"label": ["Due Diligence (engl. „gebotene Sorgfalt“) bezeichnet im US-amerikanischen Recht einen Verhaltensmaßstab, der zwecks Haftungsvermeidung zu beachten ist. Über diese allgemeine Bedeutung hinaus wird die Bezeichnung im gesellschaftsrechtlichen Kontext für die sorgfältige Prüfung der wirtschaftlichen und rechtlichen Verhältnisse eines Unternehmens verwendet, deren Ergebnisse im Rahmen der Unternehmensführung als Informationsgrundlage benötigt werden, etwa zur Vorbereitung der Unternehmensveräußerung, des Börsengangs, einer Kreditgewährung gegenüber dem Unternehmen oder zur Ermittlung der Höhe von Abfindungsansprüchen.", "Mergers and Acquisitions ist nicht pleonastisch"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Sorgfaltspflicht"}, {"authorized_access_point": "Unternehmensbewertung"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1019866322", "source": "GND"}, {"type": "bf:Nbn", "value": "29559-2", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/29559-2"}], "authorized_access_point": "Due Diligence"}], "identifier": "http://d-nb.info/gnd/4516677-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4516677-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)95469483X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4516677-8", "source": "GND"}], "authorized_access_point": "Due Diligence"} 1 +2024-09-10 15:44:28.04339 2024-09-10 15:44:28.0434 72891dd3-bbac-44f0-812f-69adb587ff73 {"md5": "11718eaceef4afa45c9cd56979937b81", "pid": "954658248", "note": [{"label": ["Art d. Afrikanischen Buntbarsche"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333965699", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85135344", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85135344"}], "authorized_access_point": "Tilapia zillii"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333965699", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17838469", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb178384694"}], "authorized_access_point": "Coptodon zillii"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256264210", "source": "GND"}, {"type": "bf:Nbn", "value": "35437", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_35437"}], "authorized_access_point": "Tilapia zillii"}], "identifier": "http://d-nb.info/gnd/4516008-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4516008-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)954658248", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4516008-9", "source": "GND"}], "variant_access_point": ["Zilles Buntbarsch", "Tilapia zilli"], "authorized_access_point": "Tilapia zillii"} 1 +2024-09-10 15:44:28.144281 2024-09-10 15:44:28.144291 ba1c6172-44fe-47c1-9483-332be028875f {"md5": "8260e94d7528258f33e24dfb39c1d0ad", "pid": "95439836X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Materie"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332896871", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF177105", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17710562g"}], "authorized_access_point": "Matérialité"}], "identifier": "http://d-nb.info/gnd/4512697-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4512697-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)95439836X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4512697-5", "source": "GND"}], "variant_access_point": ["Stofflichkeit"], "authorized_access_point": "Materialität"} 1 +2024-09-10 15:44:28.25241 2024-09-10 15:44:28.252423 58999511-ff40-4cfe-a815-2c691e257131 {"md5": "6ec47ad40d7a647c38dd2023fcd38e26", "pid": "954299973", "note": [{"label": ["Verknüpfe mit Sprachbezeichnung und hier nicht permutierender Wortart, z.B. Mittelhochdeutsch ; Adjektiv ; guot"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4511160-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4511160-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)954299973", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4511160-1", "source": "GND"}], "authorized_access_point": "guot"} 1 +2024-09-10 15:44:28.356078 2024-09-10 15:44:28.356088 b3f6ac95-dce6-40d8-9952-807d6074be14 {"md5": "ec4f896e11f51301d33a48a377d9d680", "pid": "954068572", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334556873", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13508234", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb135082347"}], "authorized_access_point": "Nefs (architecture)"}], "identifier": "http://d-nb.info/gnd/4508350-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4508350-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)954068572", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4508350-2", "source": "GND"}], "variant_access_point": ["Kirchenschiff"], "authorized_access_point": "Schiff (Architektur)"} 1 +2024-09-10 15:44:28.47818 2024-09-10 15:44:28.47819 e14db5b8-d669-40ac-b03a-244bb574183c {"md5": "56ab8856b03c6de5ba26285f884b308b", "pid": "95406853X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schiff (Architektur)"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334557225", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF15085485", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb150854851"}], "authorized_access_point": "Bas-côtés (architecture)"}], "identifier": "http://d-nb.info/gnd/4508348-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4508348-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)95406853X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4508348-4", "source": "GND"}], "variant_access_point": ["Nebenschiff"], "authorized_access_point": "Seitenschiff"} 1 +2024-09-10 15:44:28.576759 2024-09-10 15:44:28.576767 4070e3c6-b924-45bd-b396-f27725f62bff {"md5": "f447b9eec23065f1827b0d98323817a8", "pid": "954021185", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4507704-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4507704-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)954021185", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4507704-6", "source": "GND"}], "variant_access_point": ["Abfolge", "Sequenz (Gemeinsprache)", "Sequenz (Abfolge)", "Sequenz (Reihenfolge)"], "authorized_access_point": "Reihenfolge"} 1 +2024-09-10 15:44:28.882461 2024-09-10 15:44:28.882466 9755ce0d-70f6-413b-9b27-dea655f70be7 {"md5": "e7035e234e23126a189ec8ecfef77083", "pid": "953463176", "note": [{"label": ["Gattung der Hülsenfrüchtler mit landwirtschaftl. Nutzpflanzen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Hülsenfrüchtler"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1300115416", "source": "GND"}, {"type": "bf:Nbn", "value": "XX550734", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX550734"}], "authorized_access_point": "Ajipa"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134541414", "source": "GND"}, {"type": "bf:Nbn", "value": "sh93006873", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh93006873"}], "authorized_access_point": "Pachyrhizus"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256243051", "source": "GND"}, {"type": "bf:Nbn", "value": "5486", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_5486"}], "authorized_access_point": "Pachyrhizus"}], "identifier": "http://d-nb.info/gnd/4499220-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4499220-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)953463176", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4499220-8", "source": "GND"}], "authorized_access_point": "Pachyrhizus"} 1 +2024-09-10 15:44:28.945397 2024-09-10 15:44:28.945405 259542da-3f92-455f-87e7-18eef7f26714 {"md5": "ca009b94c90adc71cf58194478670a78", "pid": "953354431", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Personenkontrolle"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133156705X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12317685", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12317685q"}], "authorized_access_point": "Contrôles d'identité"}], "identifier": "http://d-nb.info/gnd/4497117-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4497117-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)953354431", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4497117-5", "source": "GND"}], "variant_access_point": ["Identitätsfeststellung", "Personalienfeststellung", "Polizeiliche Personenfeststellung"], "authorized_access_point": "Personenfeststellung"} 1 +2024-09-10 15:44:29.03903 2024-09-10 15:44:29.03904 7e5b4207-9ff6-4f76-94f6-5a387ba244c2 {"md5": "b5a480f6c8fc82925240098582df89f1", "pid": "95324590X", "note": [{"label": ["Benutzt, soweit außerhalb Finnlands lebend, sonst verknüpfe Finnland ; Frau"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ausländerin"}], "related": [{"authorized_access_point": "Finnen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331610125", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16634513", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16634513b"}], "authorized_access_point": "Finlandaises"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1008375284", "source": "GND"}, {"type": "bf:Nbn", "value": "26247-1", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/26247-1"}], "authorized_access_point": "Finnen"}], "identifier": "http://d-nb.info/gnd/4494485-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4494485-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)95324590X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4494485-8", "source": "GND"}], "variant_access_point": ["Finnische Frau"], "authorized_access_point": "Finnin"} 1 +2024-09-10 15:44:29.142143 2024-09-10 15:44:29.142155 168d6b26-2550-4b45-ada4-4f41f84346a7 {"md5": "0244e6ddda1a1a184f9e1e2f3e5d6c37", "pid": "953019209", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334212538", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85119760", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85119760"}], "authorized_access_point": "Self-incrimination"}], "identifier": "http://d-nb.info/gnd/4490382-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4490382-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)953019209", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4490382-0", "source": "GND"}], "variant_access_point": ["Selbstbezichtigung", "Selbstbelastung"], "authorized_access_point": "Selbstbeschuldigung"} 1 +2024-09-10 15:44:29.243865 2024-09-10 15:44:29.243874 734985e2-e4e4-4fb8-82bb-7bccd98bc1cf {"md5": "1ca7e7cac084e9f0a25e28de492a0925", "pid": "953011992", "note": [{"label": ["Art der Fam. Agamen (Agamidae)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Agamen"}], "identifier": "http://d-nb.info/gnd/4490181-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4490181-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)953011992", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4490181-1", "source": "GND"}], "variant_access_point": ["Amphibolorus barbatus", "Pogona barbata", "Amphibolurus barbatus", "Agama barbata"], "authorized_access_point": "Bartagame"} 1 +2024-09-10 15:44:29.332871 2024-09-10 15:44:29.332881 fb94b037-f433-4c5c-bff6-19401615db0d {"md5": "25309aee4a2893c3344640084e352f60", "pid": "952966336", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gemischbildung"}], "identifier": "http://d-nb.info/gnd/4489196-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4489196-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)952966336", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4489196-9", "source": "GND"}], "variant_access_point": ["Kraftstoff"], "authorized_access_point": "Gemischaufbereitung"} 1 +2024-09-10 15:44:30.766211 2024-09-10 15:44:30.766225 2418d942-bc31-4413-86bf-e6caea2fde93 {"md5": "0f5d0afd3cfe4c0baf2cd4d7ebe377ea", "pid": "950872555", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Grafiker"}], "related": [{"authorized_access_point": "Druckgrafikerin"}, {"authorized_access_point": "Druckgrafik"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134513712", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85043993", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85043993"}], "authorized_access_point": "Engravers"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134162871", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85106829", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85106829"}], "authorized_access_point": "Printmakers"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134513712", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11931591", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119315917"}], "authorized_access_point": "Graveurs"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134162871", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12101115", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb121011155"}], "authorized_access_point": "Graveurs d'estampe"}], "identifier": "http://d-nb.info/gnd/4461989-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4461989-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950872555", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4461989-3", "source": "GND"}], "variant_access_point": ["Druckgraphiker"], "authorized_access_point": "Druckgrafiker"} 1 +2024-09-10 15:44:29.433182 2024-09-10 15:44:29.433193 b2b0f0d3-ffdf-415c-afd1-1e5813491766 {"md5": "df4cc77efb9be98b0d293ec1f918ee8c", "pid": "952945991", "note": [{"label": ["Familie Amerikanischer Brachsen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333442521", "source": "GND"}, {"type": "bf:Nbn", "value": "sh95000247", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh95000247"}], "authorized_access_point": "Moronidae"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333442521", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF15506722", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb15506722d"}], "authorized_access_point": "Moronidae"}], "identifier": "http://d-nb.info/gnd/4488675-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4488675-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)952945991", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4488675-5", "source": "GND"}], "authorized_access_point": "Moronidae"} 1 +2024-09-10 15:44:29.534239 2024-09-10 15:44:29.534248 d494ea8a-2ee3-40c2-9adb-8951cb39ac49 {"md5": "4046d5ac6374af759a8b7bbcc8e9e7ad", "pid": "952945819", "note": [{"label": ["Familie der Barschfische"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133871984", "source": "GND"}, {"type": "bf:Nbn", "value": "sh97008600", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh97008600"}], "authorized_access_point": "Pearl perches"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133871984", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13571291", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13571291t"}], "authorized_access_point": "Glaucosomatidae"}], "identifier": "http://d-nb.info/gnd/4488671-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4488671-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)952945819", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4488671-8", "source": "GND"}], "variant_access_point": ["Glaucosomatidae"], "authorized_access_point": "Glaucosomidae"} 1 +2024-09-10 15:44:29.627863 2024-09-10 15:44:29.627875 ace13ac3-6ba0-4e27-88c4-c0352a20d242 {"md5": "fe0d4f678e8e7f5fdf4fc5c6a26dd5dc", "pid": "952794357", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Decodierung"}], "identifier": "http://d-nb.info/gnd/4486066-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4486066-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)952794357", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4486066-3", "source": "GND"}], "variant_access_point": ["Turbo-Decodierung"], "authorized_access_point": "Iterative Decodierung"} 1 +2024-09-10 15:44:29.7362 2024-09-10 15:44:29.73621 782550cb-f50c-4799-854f-7c201da2c2f9 {"md5": "d6d6720bf3f6f103f616774eb2d657b6", "pid": "952319888", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Energiearmes Lebensmittel"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133801110", "source": "GND"}, {"type": "bf:Nbn", "value": "sh90005360", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh90005360"}], "authorized_access_point": "Low-fat foods"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133801110", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12454183", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12454183x"}], "authorized_access_point": "Aliments à faible teneur en lipides"}], "identifier": "http://d-nb.info/gnd/4480030-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4480030-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)952319888", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4480030-7", "source": "GND"}], "authorized_access_point": "Fettreduziertes Lebensmittel"} 1 +2024-09-10 15:44:29.833798 2024-09-10 15:44:29.833811 66313e56-ede8-4cf9-9f21-ba54eb213d18 {"md5": "5fc4ce9ea103f124a28e02f7320080e3", "pid": "952090163", "note": [{"label": ["Zwischen d. Zeilen e. fremdsprachigen Textes geschriebene Wort-für-Wort-Übersetzung ohne Rücksicht auf grammat. oder idiomat. Unterschiede zwischen d. Grundtext u. d. Übersetzung"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Glosse"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134312733", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12403938", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb124039381"}], "authorized_access_point": "Traductions interlinéaires"}], "identifier": "http://d-nb.info/gnd/4476872-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4476872-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)952090163", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4476872-2", "source": "GND"}], "variant_access_point": ["Interlinearglosse", "Interlinearübersetzung"], "authorized_access_point": "Interlinearversion"} 1 +2024-09-10 15:44:29.940901 2024-09-10 15:44:29.940904 8e609fb3-6bcb-422b-9fb3-efb88bf197f7 {"md5": "978c2959641aacf136d318130714f8d7", "pid": "952082098", "note": [{"label": ["Zusammenfassend für Volkstanz-, Volksmusik-, Trachten- und Brauchtumsgruppen oder -vereine etc."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Volkskultur"}, {"authorized_access_point": "Gruppe"}, {"authorized_access_point": "Verein"}], "identifier": "http://d-nb.info/gnd/4476699-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4476699-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)952082098", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4476699-3", "source": "GND"}], "variant_access_point": ["Folkloregruppen"], "authorized_access_point": "Folkloregruppe"} 1 +2024-09-10 15:44:31.452696 2024-09-10 15:44:31.45271 30a10b70-56aa-4411-8d33-9c0859256ac7 {"md5": "61655c00c023968fa415828e155e2b1c", "pid": "950268593", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4451259-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4451259-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950268593", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4451259-4", "source": "GND"}], "variant_access_point": ["Bauernaufstand"], "authorized_access_point": "Schweden - Bauernaufstand (1743)"} 1 +2024-09-10 15:44:30.026624 2024-09-10 15:44:30.026633 261ca393-5c81-43d3-93b4-9905698eac30 {"md5": "ec84e970fce3b4644057bc8a5820cbdc", "pid": "951939440", "note": [{"label": ["Kuban. Gesellschaftstanz in gemessenem Tempo, der zwischen 1900 und 1920 zum Nationaltanz wurde; aus dem Danzón gingen 1939 der Mambo und 1949 der Cha-Cha-Cha hervor"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gesellschaftstanz"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332687431", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2009009519", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2009009519"}], "authorized_access_point": "Danzón (Dance)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332687431", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF18143564", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb18143564m"}], "authorized_access_point": "Danzón (danse)"}], "identifier": "http://d-nb.info/gnd/4474574-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4474574-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)951939440", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4474574-6", "source": "GND"}], "authorized_access_point": "Danzón"} 1 +2024-09-10 15:44:30.129978 2024-09-10 15:44:30.129992 8730d360-6d7c-424c-9df5-d9e21d57d97c {"md5": "187e6751ed0c638c13ec2e1c907f6cdc", "pid": "95171337X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4473972-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4473972-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)95171337X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4473972-2", "source": "GND"}], "authorized_access_point": "Zuteilung"} 1 +2024-09-10 15:44:30.224742 2024-09-10 15:44:30.224752 ca187e4b-ee24-497a-8500-12a0357602c3 {"md5": "9a37851879e1d321ddad8ad4c97a99fb", "pid": "951567241", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Einbau"}], "identifier": "http://d-nb.info/gnd/4471593-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4471593-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)951567241", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4471593-6", "source": "GND"}], "variant_access_point": ["Störkörper", "Höcker (Wasserbau)"], "authorized_access_point": "Schikane (Technik)"} 1 +2024-09-10 15:44:30.336362 2024-09-10 15:44:30.336371 1dc99e1e-cf42-4b09-aa64-7b23819e9700 {"md5": "79ed238729530f9066853a6bdc39c75a", "pid": "951452940", "note": [{"label": ["Bez. für die sensiblen (z. B. Taubheitsgefühl, Kribbeln), sensor. (z. B. Geruchs- od. Geschmacksaura), vegetativen (epigastrische A.) od. psychischen (Glücks-, Angstgefühl, Déjà-vu-Erlebnis) Wahrnehmungen unmittelbar vor einem epilept. Anfall."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Epileptischer Anfall"}], "identifier": "http://d-nb.info/gnd/4469122-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4469122-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)951452940", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4469122-1", "source": "GND"}], "authorized_access_point": "Aura (Epilepsie)"} 1 +2024-09-10 15:44:30.438674 2024-09-10 15:44:30.438689 5d353ce6-77a9-493b-8e4c-5c9a2aeadb8c {"md5": "b2c477dc5817b9ce076460c19ad2a833", "pid": "95136653X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kirchenfest"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331870402", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85061570", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85061570"}], "authorized_access_point": "Feast of the Holy Innocents"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331870402", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16612328", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16612328x"}], "authorized_access_point": "Fête des Saints-Innocents"}], "identifier": "http://d-nb.info/gnd/4467778-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4467778-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)95136653X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4467778-9", "source": "GND"}], "variant_access_point": ["Unschuldige Kinder (Kirchenfest)"], "authorized_access_point": "Fest der Unschuldigen Kinder"} 1 +2024-09-10 15:44:30.539699 2024-09-10 15:44:30.539711 5cdb9736-7371-4f09-b5ef-53b55138834f {"md5": "a4f6ab74af0a8d360c0ca7a0bad6e725", "pid": "951151541", "note": [{"label": ["Benutzt, soweit außerhalb Portugals lebend, sonst verknüpfe Portugal ; Frau"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ausländerin"}], "related": [{"authorized_access_point": "Portugiesen"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)101055395X", "source": "GND"}, {"type": "bf:Nbn", "value": "26602-0", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/26602-0"}], "authorized_access_point": "Portugiesen"}], "identifier": "http://d-nb.info/gnd/4466604-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4466604-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)951151541", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4466604-4", "source": "GND"}], "variant_access_point": ["Portugiesische Frau"], "authorized_access_point": "Portugiesin"} 1 +2024-09-10 15:44:30.653236 2024-09-10 15:44:30.653253 f82a01b7-b006-4e16-8cb2-41f41f64542a {"md5": "b3ee3504a80e2eee7b1ae681681df816", "pid": "951040960", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113403993X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11976146", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11976146b"}], "authorized_access_point": "Étiquetage"}], "identifier": "http://d-nb.info/gnd/4464866-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4464866-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)951040960", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4464866-2", "source": "GND"}], "variant_access_point": ["Etikettierung"], "authorized_access_point": "Etikettieren"} 1 +2024-09-10 15:44:30.868579 2024-09-10 15:44:30.868588 fff2308d-04ed-418b-add3-ea17a22315f1 {"md5": "a0b14fa7a8080fabed89a0f19c511091", "pid": "95058410X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133749372", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2017004979", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2017004979"}], "authorized_access_point": "Intensification (Linguistics)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133749372", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12272694", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12272694j"}], "authorized_access_point": "Intensifs (linguistique)"}], "identifier": "http://d-nb.info/gnd/4456696-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4456696-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)95058410X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4456696-7", "source": "GND"}], "variant_access_point": ["Intensifikator", "Gradmodifikator"], "authorized_access_point": "Steigerungspartikel"} 1 +2024-09-10 15:44:30.955509 2024-09-10 15:44:30.955512 7f7bbe1d-e552-41e3-9e1a-825942b81659 {"md5": "0496350d34cdaca86cd6eb9879b9fe37", "pid": "950461083", "note": [{"label": ["Weißfäulepilz"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334020353", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17987279", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17987279v"}], "authorized_access_point": "Tramète brûlée"}], "identifier": "http://d-nb.info/gnd/4454459-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4454459-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950461083", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4454459-5", "source": "GND"}], "authorized_access_point": "Bjerkandera adusta"} 1 +2024-09-10 15:44:31.024323 2024-09-10 15:44:31.024331 43fb1e78-9f5c-4599-abcd-e399e382e9e7 {"md5": "caa72f5727773326535ca1ef555cf562", "pid": "950453544", "note": [{"label": ["Verknüpfe mit der jeweiligen Gattung. z. B. Kinderliteratur / Illustratorin. Als Homonymenzusatz bei Personenschlagwörtern verwende Künstlerin"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Illustrator"}, {"authorized_access_point": "Buchmalerin"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331598281", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2001008322", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2001008322"}], "authorized_access_point": "Women illustrators"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331598281", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17769817", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17769817p"}], "authorized_access_point": "Illustratrices"}], "identifier": "http://d-nb.info/gnd/4454346-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4454346-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950453544", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4454346-3", "source": "GND"}], "variant_access_point": ["Buchillustratorin"], "authorized_access_point": "Illustratorin"} 1 +2024-09-10 15:44:31.126749 2024-09-10 15:44:31.12676 a272070a-4bd5-484c-9d56-de1518d477f1 {"md5": "939b869a4d9d2ff6146974711a76f0fd", "pid": "950378682", "note": [{"label": ["Art der Meeräschen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Meeräschen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333492510", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17816474", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17816474t"}], "authorized_access_point": "Mulet lebranche"}], "identifier": "http://d-nb.info/gnd/4453023-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4453023-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950378682", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4453023-7", "source": "GND"}], "authorized_access_point": "Mugil platanus"} 1 +2024-09-10 15:44:31.237077 2024-09-10 15:44:31.237111 956d660b-eb69-4d20-aac2-50f13ed7c406 {"md5": "6667c3d44681da134a53eca592864400", "pid": "950378658", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Meeräschen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133944787", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85088271", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85088271"}], "authorized_access_point": "Mugil capito"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133944787", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11938288", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119382886"}], "authorized_access_point": "Mulet-porc (poissons)"}], "identifier": "http://d-nb.info/gnd/4453022-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4453022-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950378658", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4453022-5", "source": "GND"}], "variant_access_point": ["Mugil capito"], "authorized_access_point": "Dünnlippige Meeräsche"} 1 +2024-09-10 15:44:31.340559 2024-09-10 15:44:31.340569 d24551db-5b09-458e-a384-a9816e425424 {"md5": "a2daa7d7365149b3989c06828d315174", "pid": "950280984", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Kinderklavier"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Spielzeug"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332762301", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2001006041", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2001006041"}], "authorized_access_point": "Toy piano"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332762301", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16035513", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16035513j"}], "authorized_access_point": "Piano-jouet"}], "identifier": "http://d-nb.info/gnd/4451509-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4451509-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950280984", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4451509-1", "source": "GND"}], "variant_access_point": ["Spielzeugklavier", "Toy piano", "Toypiano"], "authorized_access_point": "Kinderklavier"} 1 +2024-09-10 15:44:31.547946 2024-09-10 15:44:31.547955 eed065aa-9474-43eb-a110-6a9c4aa7d304 {"md5": "4a4304c8fd67c4a57a5a4b059119695f", "pid": "94996591X", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/w/index.php?title=Prayer_Book_Rebellion&oldid=1187132856"], "noteType": "dataSource"}, {"label": ["Die Durchsetzung der englischen Sprache mittels der Einführung des ersten \\"Book of Common Prayer\\", zusammen mit schlechten wirtschaftlichen Bedingungen, führte 1549 zu einem Volksaufstand in Cornwall und Devon"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Aufstand"}], "related": [{"authorized_access_point": "Reformation"}], "identifier": "http://d-nb.info/gnd/4446374-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4446374-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)94996591X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4446374-1", "source": "GND"}], "variant_access_point": ["England (West, 1549)", "Western Rising", "Prayer Book Rebellion", "Cornish Prayer Book Rebellion", "West Country Prayer Book Rebellion"], "authorized_access_point": "Western Rebellion"} 1 +2024-09-10 15:44:31.65154 2024-09-10 15:44:31.65155 fd72b3ee-497d-4217-888c-f1bf4dd41161 {"md5": "63eca06b7e98bd308c3f8374481f2c2b", "pid": "949736864", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332646476", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85122115", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85122115"}], "authorized_access_point": "Showers (Plumbing fixtures)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332646476", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13561411", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13561411p"}], "authorized_access_point": "Douches"}], "identifier": "http://d-nb.info/gnd/4442449-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4442449-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)949736864", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4442449-8", "source": "GND"}], "variant_access_point": ["Brause"], "authorized_access_point": "Dusche"} 1 +2024-09-10 15:44:31.764478 2024-09-10 15:44:31.764486 805a518b-fcb6-49fe-82aa-c1fdeac7a706 {"md5": "a6bb6b4601ad6e7170f6207846ca40d0", "pid": "949582964", "note": [{"label": ["Flache, ausgedehnte Schotter- oder Sandebene"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ebene"}], "identifier": "http://d-nb.info/gnd/4438987-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4438987-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)949582964", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4438987-5", "source": "GND"}], "variant_access_point": ["Sandur", "Sandr"], "authorized_access_point": "Sander"} 1 +2024-09-10 15:44:31.87762 2024-09-10 15:44:31.87763 77a47819-5228-4b05-b698-a57c8888506c {"md5": "1f6fae9351dad831121b87e1602c547a", "pid": "94925584X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Spähtrupp"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134048165", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11977593", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119775936"}], "authorized_access_point": "Éclaireurs (reconnaissance)"}], "identifier": "http://d-nb.info/gnd/4433683-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4433683-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)94925584X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4433683-4", "source": "GND"}], "variant_access_point": ["Kundschafter"], "authorized_access_point": "Späher"} 1 +2024-09-10 15:44:31.976109 2024-09-10 15:44:31.976118 76387549-ffb2-4dc8-9b54-c817ab513895 {"md5": "ccc94d0a21fd8869aea97c5d9044cac3", "pid": "949178594", "note": [{"label": ["Wiktionary - https://de.wiktionary.org/w/index.php?title=Stra%C3%9Fenverk%C3%A4ufer&oldid=7904470"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Verkäufer"}], "related": [{"authorized_access_point": "Straßenverkauf"}, {"authorized_access_point": "Straßenverkäuferin"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134504179", "source": "GND"}, {"type": "bf:Nbn", "value": "sh00003150", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh00003150"}], "authorized_access_point": "Street vendors"}], "identifier": "http://d-nb.info/gnd/4432422-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4432422-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)949178594", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4432422-4", "source": "GND"}], "variant_access_point": ["Straßenhändler"], "authorized_access_point": "Straßenverkäufer"} 1 +2024-09-10 15:44:32.058412 2024-09-10 15:44:32.058417 8a85ff09-9809-4e3d-8bd6-0c688aab73d2 {"md5": "ee5d074c286c7b3a2e0962c761d50fd0", "pid": "948985429", "note": [{"label": ["aus Japan stammende Form der Beteiligung von Arbeitnehmern an der Entwicklung von Innovationen in Unternehmen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Vorschlagswesen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134492219", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13191265", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb131912650"}], "authorized_access_point": "Production au plus juste"}], "identifier": "http://d-nb.info/gnd/4429179-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4429179-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)948985429", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4429179-6", "source": "GND"}], "variant_access_point": ["Kontinuierlicher Verbesserungsprozess", "KVP", "Continuous Improvement Process"], "authorized_access_point": "Kaizen"} 1 +2024-09-10 15:44:32.165456 2024-09-10 15:44:32.165465 d1466c27-3a67-47e6-b20b-8210d4220017 {"md5": "11fefa52a7b33979fe692cf8a459e0b0", "pid": "948861975", "note": [{"label": ["Unterart der Schimpansen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Hominidae"}], "identifier": "http://d-nb.info/gnd/4427691-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4427691-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)948861975", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4427691-6", "source": "GND"}], "authorized_access_point": "Pan troglodytes verus"} 1 +2024-09-10 15:44:32.255407 2024-09-10 15:44:32.255417 2f126a2f-f042-4fdb-8de0-23bccbf37c91 {"md5": "557279c72f117c6ea923f21d0b89eb45", "pid": "948734418", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Materialermüdung"}, {"authorized_access_point": "Thermomechanische Eigenschaft"}], "related": [{"authorized_access_point": "Thermoschock"}, {"authorized_access_point": "Temperaturwechselbeständigkeit"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134216092", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12218766", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12218766s"}], "authorized_access_point": "Fatigue thermique"}], "identifier": "http://d-nb.info/gnd/4425895-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4425895-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)948734418", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4425895-1", "source": "GND"}], "variant_access_point": ["Thermoermüdung"], "authorized_access_point": "Thermische Ermüdung"} 1 +2024-09-10 15:44:32.371565 2024-09-10 15:44:32.371576 05cc05f4-809b-4ac9-b437-4a85da8bd8f2 {"md5": "eda60d9a748d53323f9bd6cd2a82fa4b", "pid": "948616792", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Residenz"}], "related": [{"authorized_access_point": "Königspfalz"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334012520", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85014421", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85014421"}], "authorized_access_point": "Bishops - Homes and haunts"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334012520", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16650585", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16650585n"}], "authorized_access_point": "Palais épiscopaux"}], "identifier": "http://d-nb.info/gnd/4424386-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4424386-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)948616792", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4424386-8", "source": "GND"}], "variant_access_point": ["Bischofspalast"], "authorized_access_point": "Bischofspfalz"} 1 +2024-09-10 15:44:32.495466 2024-09-10 15:44:32.495476 a7eb3364-aac1-47ad-b0c4-d2505dec857e {"md5": "e84b4e5002ba1914c0a4a48c3f874c30", "pid": "948581387", "note": [{"label": ["Gattung der Röhrlinge"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Röhrlinge"}], "identifier": "http://d-nb.info/gnd/4423844-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4423844-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)948581387", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4423844-7", "source": "GND"}], "variant_access_point": ["Leccinum", "Rauhfüße", "Rauhfuß", "Raufüße", "Raufuß", "Rauhfußröhrling", "Raustielröhrling", "Rauhstielröhrling"], "authorized_access_point": "Raufußröhrling"} 1 +2024-09-10 15:44:32.596734 2024-09-10 15:44:32.59674 6de9db64-9b8e-42ae-a669-dbb44d4f7b87 {"md5": "43eaff22ae3ba47e92de7aa1561bbe8f", "pid": "948367032", "note": [{"label": ["Gattung der Schleimfische"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schuppenlose Schleimfische"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333368518", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85040884", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85040884"}], "authorized_access_point": "Ecsenius"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333368518", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17798786", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17798786m"}], "authorized_access_point": "Ecsenius"}], "identifier": "http://d-nb.info/gnd/4420692-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4420692-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)948367032", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4420692-6", "source": "GND"}], "variant_access_point": ["Escenius"], "authorized_access_point": "Ecsenius"} 1 +2024-09-10 15:44:32.700163 2024-09-10 15:44:32.700171 7653e4d2-b2fc-4b98-8349-f71b51bfbef9 {"md5": "5d4515d22e9ab358f64485f531a01823", "pid": "948358742", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Artist"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113382739X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh96009049", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh96009049"}], "authorized_access_point": "Women circus performers"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113382739X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12546462", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb125464627"}], "authorized_access_point": "Femmes artistes de cirque"}], "identifier": "http://d-nb.info/gnd/4420603-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4420603-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)948358742", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4420603-3", "source": "GND"}], "authorized_access_point": "Artistin"} 1 +2024-09-10 15:44:32.820457 2024-09-10 15:44:32.8207 bd6fd608-69db-4694-bc09-da03bc1f30c3 {"md5": "53d44523d4613c9a67cb2bafc31423b1", "pid": "94818387X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Optisches Kommunikationsnetz"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134645503", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2007007027", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2007007027"}], "authorized_access_point": "Passive optical networks"}], "identifier": "http://d-nb.info/gnd/4418747-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4418747-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)94818387X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4418747-6", "source": "GND"}], "variant_access_point": ["PON", "Passiv optical network"], "authorized_access_point": "Passives optisches Netz"} 1 +2024-09-10 15:44:32.922802 2024-09-10 15:44:32.922805 27c8fca2-ec59-40e6-b5d6-fc6068c32127 {"md5": "f0c721fe14d6882344b27a920db97780", "pid": "948059028", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Showtanz"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133837832", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2016001989", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2016001989"}], "authorized_access_point": "Cancan (Dance)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133837832", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13169985", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13169985v"}], "authorized_access_point": "Cancan (danse)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254395598", "source": "GND"}, {"type": "bf:Nbn", "value": "67289", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/67289"}], "authorized_access_point": "Cancan"}], "identifier": "http://d-nb.info/gnd/4417076-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4417076-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)948059028", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4417076-2", "source": "GND"}], "variant_access_point": ["Chahut", "Can can"], "authorized_access_point": "Cancan"} 1 +2024-09-10 15:44:33.026407 2024-09-10 15:44:33.026412 deb63ff6-14d7-48ed-bb39-ba2cfc097d52 {"md5": "07347ac7545bd0c243df884cd7115e63", "pid": "948023465", "note": [{"label": ["Art aus d. Fam. Synbranchidae"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333488181", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85131604", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85131604"}], "authorized_access_point": "Synbranchus marmoratus"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333488181", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17758506", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17758506r"}], "authorized_access_point": "Synbranchus marmoratus"}], "identifier": "http://d-nb.info/gnd/4416523-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4416523-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)948023465", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4416523-7", "source": "GND"}], "variant_access_point": ["Synbranchus marmoratus"], "authorized_access_point": "Südamerikanischer Kurzschwanzaal"} 1 +2024-09-10 15:44:33.081172 2024-09-10 15:44:33.081174 3355cb31-5041-4402-a854-cd1de746f6a0 {"md5": "0efb0e98558203c2eb317e25f36ad8a1", "pid": "947999043", "note": [{"label": ["Benutzt für die Pflanze"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ingwergewächse"}], "related": [{"authorized_access_point": "Kardamom (Gewürz)"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134409761", "source": "GND"}, {"type": "bf:Nbn", "value": "sh88022764", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh88022764"}], "authorized_access_point": "Elettaria"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134409761", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF14431349", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb14431349f"}], "authorized_access_point": "Elettaria"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256226521", "source": "GND"}, {"type": "bf:Nbn", "value": "2529", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_2529"}], "authorized_access_point": "Elettaria cardamomum"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)125622653X", "source": "GND"}, {"type": "bf:Nbn", "value": "9620", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_9620"}], "authorized_access_point": "cardamoms"}], "identifier": "http://d-nb.info/gnd/4416048-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4416048-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)947999043", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4416048-3", "source": "GND"}], "variant_access_point": ["Cardamom", "Elettaria"], "authorized_access_point": "Kardamom"} 1 +2024-09-10 15:44:33.185576 2024-09-10 15:44:33.185586 b65d600e-1b0f-432b-9d04-91d95ecd6422 {"md5": "b4d0899e85a2db8a57b6b3d5604cb896", "pid": "947807691", "note": [{"label": ["Wikipedia unter Aufstand der Vendée - https://de.wikipedia.org/w/index.php?title=Aufstand_der_Vend%C3%A9e&oldid=243780170"], "noteType": "dataSource"}, {"label": ["Legitimistische Erhebung für die Thronrechte der Bourbonen gegen die Julimonarchie, angestiftet von der Herzogin von Berry"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Aufstand"}], "identifier": "http://d-nb.info/gnd/4413095-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4413095-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)947807691", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4413095-8", "source": "GND"}], "variant_access_point": ["Aufstand in der Vendée (1832)", "Rebellion in der Vendée (1832)", "Legitimistische Erhebung in der Vendée (1832)"], "authorized_access_point": "Aufstand der Vendée (1832)"} 1 +2024-09-10 15:44:33.292978 2024-09-10 15:44:33.292981 236e5a7d-e588-475a-8c4b-17060d21b3c6 {"md5": "32ef0e1fb6c48cfd8bac0c12b985f32d", "pid": "947667040", "note": [{"label": ["Pyramide aus Menschen, sportl.- wettkampfähnl. Darbietung, auch Zirkusnummer", "Verknüpfe ggf. mit SW Sportakrobatik"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Akrobatik"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113438873X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85109303", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85109303"}], "authorized_access_point": "Pyramids (Gymnastics)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113438873X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13174928", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb131749281"}], "authorized_access_point": "Pyramides humaines"}], "identifier": "http://d-nb.info/gnd/4411444-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4411444-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)947667040", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4411444-8", "source": "GND"}], "variant_access_point": ["Pyramide (Akrobatik)"], "authorized_access_point": "Menschenpyramide"} 1 +2024-09-10 15:44:33.398523 2024-09-10 15:44:33.398532 885205aa-3ae5-411b-a8be-b0dfc81df36e {"md5": "2f221ea0e6a097ac13054ff55e8ffd3e", "pid": "947636676", "note": [{"label": ["Eigenständiger Studiengang z.B. an der Hochschule für Grafik und Buchkunst in Leipzig"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Studium"}], "related": [{"authorized_access_point": "Kunststudium"}], "identifier": "http://d-nb.info/gnd/4411049-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4411049-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)947636676", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4411049-2", "source": "GND"}], "variant_access_point": ["Photographiestudium", "Fotografie"], "authorized_access_point": "Fotografiestudium"} 1 +2024-09-10 15:44:33.519436 2024-09-10 15:44:33.519452 2eb410db-4b07-4d60-ad0f-37d385dd92ab {"md5": "604741cad9f73c06957dc7901249239a", "pid": "947568441", "note": [{"label": ["Kennzahl zur Beurteilung von Zinsänderungsrisiken, erlaubt im Zusammenhang mit der Duration eine genaue Abschätzung des Barwertes der Zinsänderung", "Kapitalanlage + Bewertung oder eng. Sachverhalte nicht pleonastisch"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kennzahl"}], "identifier": "http://d-nb.info/gnd/4410173-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4410173-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)947568441", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4410173-9", "source": "GND"}], "variant_access_point": ["Convexity", "Konvexity"], "authorized_access_point": "Konvexität (Kapitalanlage)"} 1 +2024-09-10 15:44:33.671918 2024-09-10 15:44:33.671933 b86178ff-7f5f-4a51-a68f-6b6bd56bcdb3 {"md5": "020060d1ba4b9805dda073b6d783cfc5", "pid": "947543112", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134651961", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12252146", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12252146w"}], "authorized_access_point": "Fruits - Transformation"}], "identifier": "http://d-nb.info/gnd/4409883-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4409883-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)947543112", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4409883-2", "source": "GND"}], "authorized_access_point": "Fruchtzubereitung"} 1 +2024-09-10 15:44:33.812758 2024-09-10 15:44:33.812762 15141364-0bea-41f4-8844-f9cc46dac8ed {"md5": "d67330b3f214b67049212e8afc622a23", "pid": "947466223", "note": [{"label": ["Programmpaket, bestehend aus WinAuftrag 3.0 und WinFiBu 3.0"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Programm"}], "related": [{"authorized_access_point": "Finanzbuchhaltung"}, {"authorized_access_point": "Auftragsabwicklung"}], "identifier": "http://d-nb.info/gnd/4409165-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4409165-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)947466223", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4409165-5", "source": "GND"}], "variant_access_point": ["Büro Plus 3.0 (Programm)"], "authorized_access_point": "Büro Plus für WINDOWS 3.0"} 1 +2024-09-10 15:44:33.896568 2024-09-10 15:44:33.896575 eaebc999-1664-487a-88c3-86179012304e {"md5": "53cd81d81190c9e6a16d37f78f432c48", "pid": "947465928", "note": [{"label": ["Programmpaket, bestehend aus WinAuftrag 1.0 und WinFiBu 1.0"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Programm"}], "related": [{"authorized_access_point": "Finanzbuchhaltung"}, {"authorized_access_point": "Auftragsabwicklung"}], "identifier": "http://d-nb.info/gnd/4409161-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4409161-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)947465928", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4409161-8", "source": "GND"}], "variant_access_point": ["Büro Plus 1.0 (Programm)"], "authorized_access_point": "Büro Plus für WINDOWS 1.0"} 1 +2024-09-10 15:44:34.081102 2024-09-10 15:44:34.081111 375721e9-683b-42f1-9f6d-9c73c22be879 {"md5": "21fe8e1c5f17b52009674694f2f80e6d", "pid": "947415874", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Finnischer_B%C3%BCrgerkrieg&oldid=201962892"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bürgerkrieg"}], "identifier": "http://d-nb.info/gnd/4408662-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4408662-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)947415874", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4408662-3", "source": "GND"}], "variant_access_point": ["Bürgerkrieg in Finnland", "Suomen sisällissota", "Sisällissota (Finnland)"], "authorized_access_point": "Finnischer Bürgerkrieg"} 1 +2024-09-10 15:44:34.253485 2024-09-10 15:44:34.253489 225666cd-0e4b-4f38-9958-c1bc2eda8ddc {"md5": "0ad46aaa94389cd312a5a89b8e8cadb3", "pid": "947397213", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schiff (Architektur)"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334556784", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2007007528", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2007007528"}], "authorized_access_point": "Transepts"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334556784", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13331557", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb133315579"}], "authorized_access_point": "Transepts"}], "identifier": "http://d-nb.info/gnd/4408354-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4408354-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)947397213", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4408354-3", "source": "GND"}], "variant_access_point": ["Querhaus", "Transept", "Transeptum"], "authorized_access_point": "Querschiff"} 1 +2024-09-10 15:44:34.31624 2024-09-10 15:44:34.316243 d2cc7f2b-d72d-48b1-bca0-637d1e022c38 {"md5": "883002da913324e7d52eff2960c64c62", "pid": "947389229", "note": [{"label": ["Wikipedia unter Aufstand der Vendée - https://de.wikipedia.org/w/index.php?title=Aufstand_der_Vend%C3%A9e&oldid=243780170"], "noteType": "dataSource"}, {"label": ["Royalistische Erhebung für die Thronrechte der Bourbonen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Aufstand"}], "identifier": "http://d-nb.info/gnd/4408277-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4408277-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)947389229", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4408277-0", "source": "GND"}], "variant_access_point": ["Aufstand in der Vendée (1815)", "Rebellion in der Vendée (1815)", "Royalistische Erhebung in der Vendée (1815)", "Guerre de Vendée et Chouannerie de 1815"], "authorized_access_point": "Aufstand der Vendée (1815)"} 1 +2024-09-10 15:44:34.441676 2024-09-10 15:44:34.441678 8366022c-889c-429d-8b6e-dcef82d562df {"md5": "f07e042ba48a75a5c5006e69ba89d3e2", "pid": "947337555", "note": [{"label": ["Ostslaw. Stammesverband"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Ostslawen"}], "identifier": "http://d-nb.info/gnd/4407717-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4407717-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)947337555", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4407717-8", "source": "GND"}], "variant_access_point": ["Kryvičy", "Kriviči"], "authorized_access_point": "Kriwitschen"} 1 +2024-09-10 15:44:34.539826 2024-09-10 15:44:34.53983 7566ab00-49b9-4a73-9c4d-4e60ad7f756d {"md5": "c26fd6ea91b1ef02f1b339c9859e2cba", "pid": "947167293", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Lüge"}], "related": [{"authorized_access_point": "Unehrlichkeit"}, {"authorized_access_point": "Unwahrheit"}, {"authorized_access_point": "Wahrhaftigkeit"}], "identifier": "http://d-nb.info/gnd/4405481-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4405481-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)947167293", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4405481-6", "source": "GND"}], "variant_access_point": ["Unwahrhaftigkeit"], "authorized_access_point": "Unaufrichtigkeit"} 1 +2024-09-10 15:44:34.626881 2024-09-10 15:44:34.626891 f80faa01-38bb-4e1b-99e1-84b39d117a1b {"md5": "c7379291c192a72d2af53fcd0f71133c", "pid": "947085017", "note": [{"label": ["Verknüpfe mit Sprachbezeichnung und hier nicht permutierender Wortart, z.B. Englisch ; Substantiv ; democracy"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4404603-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4404603-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)947085017", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4404603-0", "source": "GND"}], "authorized_access_point": "democracy"} 1 +2024-09-10 15:44:34.724814 2024-09-10 15:44:34.724819 af757cbc-8b4d-4eaf-96d3-fbae3df14ccf {"md5": "3cf9becca9669eb6d4554305d6ab58c2", "pid": "947015388", "note": [{"label": ["Formgattung der Fadenpilze"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mucoraceae"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134560745", "source": "GND"}, {"type": "bf:Nbn", "value": "sh88022093", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh88022093"}], "authorized_access_point": "Sporotrichum"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134560745", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16624535", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16624535f"}], "authorized_access_point": "Sporotrichum"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256259357", "source": "GND"}, {"type": "bf:Nbn", "value": "27613", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_27613"}], "authorized_access_point": "Sporotrichum"}], "identifier": "http://d-nb.info/gnd/4403631-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4403631-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)947015388", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4403631-0", "source": "GND"}], "authorized_access_point": "Sporotrichum"} 1 +2024-09-10 15:44:34.809071 2024-09-10 15:44:34.809075 38d2a77d-fe6b-47e0-abcb-082f7a69b082 {"md5": "03d93e97db250a734af28db2ba393cf6", "pid": "946998051", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Seiltänzer"}, {"authorized_access_point": "Slacklinen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134090099", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85135325", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85135325"}], "authorized_access_point": "Tightrope walking"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134090099", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11997970", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119979702"}], "authorized_access_point": "Funambulisme"}], "identifier": "http://d-nb.info/gnd/4403427-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4403427-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)946998051", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4403427-1", "source": "GND"}], "authorized_access_point": "Seiltanz"} 1 +2024-09-10 15:44:34.871191 2024-09-10 15:44:34.871194 dfe00071-0a92-49d2-86da-984846fce49d {"md5": "63ba485f343a5120d384db95801dab02", "pid": "946944210", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Wappentier"}, {"authorized_access_point": "Adler (Motiv)"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333635303", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2002005586", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2002005586"}], "authorized_access_point": "Double-headed eagle (Emblem)"}], "identifier": "http://d-nb.info/gnd/4402791-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4402791-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)946944210", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4402791-6", "source": "GND"}], "variant_access_point": ["Doppelköpfiger Adler"], "authorized_access_point": "Doppeladler"} 1 +2024-09-10 15:44:34.944804 2024-09-10 15:44:34.944807 9fcdddfc-1b16-4101-9d67-793ecbf3dc93 {"md5": "996b8d77db812012a59d64f645f2ad16", "pid": "946868093", "note": [{"label": ["World Heritage List - https://whc.unesco.org/en/list"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134105703", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12010561", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb120105617"}], "authorized_access_point": "Patrimoine mondial culturel et naturel"}], "identifier": "http://d-nb.info/gnd/4402276-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4402276-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)946868093", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4402276-1", "source": "GND"}], "variant_access_point": ["World Heritage", "UNESCO-Welterbe"], "authorized_access_point": "Welterbe"} 1 +2024-09-10 15:44:35.010459 2024-09-10 15:44:35.010462 1cb8940e-e661-45d6-9ec2-74fefee88a63 {"md5": "39501fe0d63b792661788bc2194835bb", "pid": "946792631", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Lasergenerieren"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133774687", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12334888", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb123348880"}], "authorized_access_point": "Stéréolithographie"}], "identifier": "http://d-nb.info/gnd/4401168-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4401168-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)946792631", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4401168-4", "source": "GND"}], "authorized_access_point": "Stereolithographie"} 1 +2024-09-10 15:44:35.077602 2024-09-10 15:44:35.077607 68de37d6-823d-4f38-8973-84328f574757 {"md5": "1afdfabae79075d17093f739d2b044f7", "pid": "946776164", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Novelle"}, {"authorized_access_point": "Erotische Literatur"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331607299", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85044708", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85044708"}], "authorized_access_point": "Erotic stories"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331607299", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16932431", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb169324311"}], "authorized_access_point": "Nouvelles érotiques"}], "identifier": "http://d-nb.info/gnd/4400938-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4400938-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)946776164", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4400938-0", "source": "GND"}], "authorized_access_point": "Erotische Novelle"} 1 +2024-09-10 15:44:35.14042 2024-09-10 15:44:35.140423 c5d23ced-78e0-4b73-8d41-91560a40b062 {"md5": "1c0461cce835a4cc76329f654219a423", "pid": "946530629", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "AutoCAD"}], "identifier": "http://d-nb.info/gnd/4398207-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4398207-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)946530629", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4398207-4", "source": "GND"}], "authorized_access_point": "ACAD-Bau 5.1"} 1 +2024-09-10 15:44:35.204562 2024-09-10 15:44:35.204567 9cad64cc-3c24-4e9a-b852-a0c2714f164e {"md5": "732984cbd0e3b10f1fa6ac83d74120cb", "pid": "94646085X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bakterien"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134680317", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2017004780", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2017004780"}], "authorized_access_point": "Proteobacteria"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134680317", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF15537035", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb15537035p"}], "authorized_access_point": "Protéobactéries"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254378596", "source": "GND"}, {"type": "bf:Nbn", "value": "45491", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/45491"}], "authorized_access_point": "Proteobacteria"}], "identifier": "http://d-nb.info/gnd/4397407-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4397407-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)94646085X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4397407-7", "source": "GND"}], "authorized_access_point": "Proteobakterien"} 1 +2024-09-10 15:44:35.275025 2024-09-10 15:44:35.275029 9493f9bf-a640-4fa9-9cf1-144f5e6692cf {"md5": "28203e505038e48f9218ce714b6a0e17", "pid": "946062706", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Stadt"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134702809", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13554339", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb135543399"}], "authorized_access_point": "Fronts de mer"}], "identifier": "http://d-nb.info/gnd/4392076-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4392076-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)946062706", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4392076-7", "source": "GND"}], "authorized_access_point": "Küstenstadt"} 1 +2024-09-10 15:44:35.352196 2024-09-10 15:44:35.3522 e68c1d87-3c2b-40a2-a96f-cde62626f172 {"md5": "06480c252cabfa7a08dd8f74f3d1e716", "pid": "946022895", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tanz"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133885330", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85053573", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85053573"}], "authorized_access_point": "Gavottes"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133885330", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13742456", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13742456t"}], "authorized_access_point": "Gavottes"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332662234", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF18071066", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb18071066w"}], "authorized_access_point": "Gavotte (danse)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254394230", "source": "GND"}, {"type": "bf:Nbn", "value": "65536", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/65536"}], "authorized_access_point": "Gavotte"}], "identifier": "http://d-nb.info/gnd/4391319-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4391319-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)946022895", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4391319-2", "source": "GND"}], "variant_access_point": ["Gavotto", "Gavotta", "Gavot (Tanz)", "Gavota"], "authorized_access_point": "Gavotte"} 1 +2024-09-10 15:44:35.419997 2024-09-10 15:44:35.420002 ee2af968-98c6-4a8f-9da7-c15bf29a96f4 {"md5": "6cd801c0fe305b52fe8fe2d493752142", "pid": "94601888X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Stressreaktion"}], "related": [{"authorized_access_point": "Hitzeschock-Proteine"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134243006", "source": "GND"}, {"type": "bf:Nbn", "value": "sh00004617", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh00004617"}], "authorized_access_point": "Effect of heat on"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134243006", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12264597", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12264597k"}], "authorized_access_point": "Effets de la chaleur"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256221880", "source": "GND"}, {"type": "bf:Nbn", "value": "11488", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_11488"}], "authorized_access_point": "heat stress"}], "identifier": "http://d-nb.info/gnd/4391224-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4391224-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)94601888X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4391224-2", "source": "GND"}], "variant_access_point": ["Hitzeschock (Molekularbiologie)", "Hitzeschockantwort", "Heat-shock-response"], "authorized_access_point": "Hitzestress"} 1 +2024-09-10 15:44:35.496253 2024-09-10 15:44:35.496258 f7b511e4-4c35-4f6c-a2b5-c7dd0113779e {"md5": "0c6e08e6e5b34f147fca566738db341f", "pid": "945863837", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Groppen (Familie)"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133348710X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85033386", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85033386"}], "authorized_access_point": "Cottus gobio"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133348710X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17813225", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17813225b"}], "authorized_access_point": "Chabot commun"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256218782", "source": "GND"}, {"type": "bf:Nbn", "value": "6888", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_6888"}], "authorized_access_point": "sculpins"}], "identifier": "http://d-nb.info/gnd/4389859-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4389859-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)945863837", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4389859-2", "source": "GND"}], "variant_access_point": ["Cottus gobio", "Koppe", "Mühlkoppe"], "authorized_access_point": "Groppe"} 1 +2024-09-10 15:44:35.569832 2024-09-10 15:44:35.569839 5ef7f03f-b9df-4bc7-9942-b645443b121c {"md5": "242620d55664c932070b274e25f69362", "pid": "944522297", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Irokesische Sprachen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134446675", "source": "GND"}, {"type": "bf:Nbn", "value": "sh96003821", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh96003821"}], "authorized_access_point": "Cayuga language"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134446675", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF14575245", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb14575245r"}], "authorized_access_point": "Cayuga (langue)"}], "identifier": "http://d-nb.info/gnd/4377405-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4377405-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)944522297", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4377405-2", "source": "GND"}], "variant_access_point": ["Cayiuker", "Ruengues", "Gayogo̱hó:nǫˀ"], "authorized_access_point": "Cayuga-Sprache"} 1 +2024-09-10 15:44:35.669992 2024-09-10 15:44:35.669997 17a77981-97a5-42da-b21d-49136d96f730 {"md5": "e8c92307108b62d2d0738af65671e382", "pid": "944502172", "note": [{"label": ["Preis, bei dem das Produkt als Bündel von Einzelnutzen /-leistungen aufgefasst wird, die einzeln zu bewerten sind und in den Preis einfliessen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Preis"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331580285", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2021005695", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2021005695"}], "authorized_access_point": "Hedonic pricing"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966773241", "source": "GND"}, {"type": "bf:Nbn", "value": "10199-1", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/10199-1"}], "authorized_access_point": "Hedonischer Preisindex"}], "identifier": "http://d-nb.info/gnd/4377236-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4377236-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)944502172", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4377236-5", "source": "GND"}], "authorized_access_point": "Hedonischer Preis"} 1 +2024-09-10 15:44:35.760839 2024-09-10 15:44:35.760843 224790ef-cd37-4b2d-9a04-a5798104d7e0 {"md5": "5e5139e88ba1bd31944eb983bccf4901", "pid": "944484611", "note": [{"label": ["Verknüpfe mit Sprachbezeichnung und hier nicht permutierender Wortart, z.B. Latein / Substantiv / felicitas"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134310730", "source": "GND"}, {"type": "bf:Nbn", "value": "sh91005717", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh91005717"}], "authorized_access_point": "Felicitas (The Latin word)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134310730", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12398160", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12398160w"}], "authorized_access_point": "Felicitas (le mot latin)"}], "identifier": "http://d-nb.info/gnd/4376981-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4376981-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)944484611", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4376981-0", "source": "GND"}], "authorized_access_point": "felicitas"} 1 +2024-09-10 15:44:35.841481 2024-09-10 15:44:35.841484 a3873f52-0836-4687-98a8-eb66d95c8f5a {"md5": "f15c79a07f35fb2a29a1120fbb42995d", "pid": "94430396X", "note": [{"label": ["Verknüpfe mit Sprachbezeichnung und (hier nicht permutierender - gilt bis 31. 03. 2010) Wortart, z.B. Französisch / Verb / aller "], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134523785", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12533714", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb125337148"}], "authorized_access_point": "Aller (le mot français)"}], "identifier": "http://d-nb.info/gnd/4374559-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4374559-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)94430396X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4374559-3", "source": "GND"}], "authorized_access_point": "aller (Wort)"} 1 +2024-09-10 15:44:35.928901 2024-09-10 15:44:35.928906 e2349461-7eb7-42a1-ab59-b070d350318f {"md5": "7f15406fbb877edadc9bd74e59d14470", "pid": "943889170", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333369808", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85137450", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85137450"}], "authorized_access_point": "Trichiuridae"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333369808", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17160836", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17160836r"}], "authorized_access_point": "Trichiuridés"}], "identifier": "http://d-nb.info/gnd/4370633-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4370633-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)943889170", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4370633-2", "source": "GND"}], "variant_access_point": ["Trichiuridae"], "authorized_access_point": "Haarschwänze"} 1 +2024-09-10 15:44:36.009441 2024-09-10 15:44:36.009445 598dfab8-2bc8-4abf-8fb7-878e85b55119 {"md5": "01020393dce09c7b42ec60bad6467f6b", "pid": "943836476", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Erinnerung"}], "identifier": "http://d-nb.info/gnd/4369798-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4369798-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)943836476", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4369798-7", "source": "GND"}], "variant_access_point": ["Gedächtnis (Gedenken)", "Angedenken"], "authorized_access_point": "Gedenken"} 1 +2024-09-10 15:44:36.096686 2024-09-10 15:44:36.09669 6269d9b1-69d3-4506-a9d0-fe8cef0b756f {"md5": "b8b5e6120b161f175983e17984c275ea", "pid": "943625394", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Zeitkonstante"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134758537", "source": "GND"}, {"type": "bf:Nbn", "value": "sh99005491", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh99005491"}], "authorized_access_point": "Decay"}], "identifier": "http://d-nb.info/gnd/4367531-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4367531-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)943625394", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4367531-1", "source": "GND"}], "variant_access_point": ["Abklingdauer"], "authorized_access_point": "Abklingzeit"} 1 +2024-09-10 15:44:36.156971 2024-09-10 15:44:36.156974 6557b2b5-72ba-4f66-8bd6-d09d8188c2a0 {"md5": "2d06dbde412b945255cfb992abd0155c", "pid": "943440017", "note": [{"label": ["Technische Konstruktion, die Störungen selbst zu korrigieren vermag,so daß die Funktionsfähigkeit der Konstruktion erhalten bleibt"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Konstruktion"}], "related": [{"authorized_access_point": "Intelligenter Werkstoff"}], "identifier": "http://d-nb.info/gnd/4364681-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4364681-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)943440017", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4364681-5", "source": "GND"}], "authorized_access_point": "Intelligente Konstruktion"} 1 +2024-09-10 15:44:36.225006 2024-09-10 15:44:36.22501 b447d94c-ab12-45a0-83e5-aef1a6f8a1b0 {"md5": "d2c8d352eeea95bd6837423d96165016", "pid": "94337426X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133740219", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2017000361", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2017000361"}], "authorized_access_point": "Dependoviruses"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133740219", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12254722", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb122547221"}], "authorized_access_point": "Dependovirus"}], "identifier": "http://d-nb.info/gnd/4363893-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4363893-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)94337426X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4363893-4", "source": "GND"}], "variant_access_point": ["Adeno-assoziierte Viren", "AAV", "Defekte Parvoviren"], "authorized_access_point": "Dependoviren"} 1 +2024-09-10 15:44:36.310468 2024-09-10 15:44:36.310475 7a9ca758-31fd-4e9f-a712-2e515a8a59a0 {"md5": "03ff91b921ccf9b8b16ed111a92904de", "pid": "943258170", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Hüttenwart"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334004544", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16986926", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16986926t"}], "authorized_access_point": "Gardiennes de refuge"}], "identifier": "http://d-nb.info/gnd/4362317-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4362317-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)943258170", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4362317-7", "source": "GND"}], "variant_access_point": ["Hüttenwirtin", "Schutzhüttenwirtin", "Schutzhüttenwartin"], "authorized_access_point": "Hüttenwartin"} 1 +2024-09-10 15:44:36.378598 2024-09-10 15:44:36.378603 3309751f-0fc6-4308-93ff-d3f7e6441560 {"md5": "064c51b8c7efd92715dfc4fcece59fda", "pid": "943209374", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333946007", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16740937", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16740937v"}], "authorized_access_point": "Gempylidés"}], "identifier": "http://d-nb.info/gnd/4361575-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4361575-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)943209374", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4361575-2", "source": "GND"}], "variant_access_point": ["Gempylidae"], "authorized_access_point": "Schlangenmakrelen"} 1 +2024-09-10 15:44:36.464472 2024-09-10 15:44:36.464475 4f4938c6-7ec7-40d0-b86c-daba98f230ec {"md5": "906ec42a98a125e61361e80224bc1067", "pid": "942627644", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134335032", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85131909", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85131909"}], "authorized_access_point": "Tagbanua (Philippine people)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134335032", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12466856", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12466856n"}], "authorized_access_point": "Tagbanuwa (peuple des Philippines)"}], "identifier": "http://d-nb.info/gnd/4355229-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4355229-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)942627644", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4355229-8", "source": "GND"}], "variant_access_point": ["Tagbanun"], "authorized_access_point": "Tagbanua"} 1 +2024-09-10 15:44:36.565396 2024-09-10 15:44:36.5654 12734bc2-d337-4f3a-9563-e2b93137ea80 {"md5": "5e1265ace6b9f232c74e97f1221dccc5", "pid": "942531639", "note": [{"label": ["elektronische Informations- und Kommunikationsdienste, die im Internet angeboten werden und weder Telekommunikationsdienste noch Rundfunk sind (vgl. § 1 Satz 1 TMG), also z. B. Online-Shops, Online-Banking, elektronische Presse, Chatrooms und Internet-Suchmaschinen", "Nicht ersatzweise verwenden für online allgemein oder für die Zerlegung von Komposita mit Online."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Mailbox"}, {"authorized_access_point": "Service provider"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134839154", "source": "GND"}, {"type": "bf:Nbn", "value": "sh95004892", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh95004892"}], "authorized_access_point": "Online information services"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254469117", "source": "GND"}, {"type": "bf:Nbn", "value": "XX4675869", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX4675869"}], "authorized_access_point": "Servicios de información en línea"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966895487", "source": "GND"}, {"type": "bf:Nbn", "value": "24664-2", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/24664-2"}], "authorized_access_point": "Digitale Güter"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970576986", "source": "GND"}, {"type": "bf:Nbn", "value": "10064826", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10064826"}], "authorized_access_point": "Online-Dienst"}], "identifier": "http://d-nb.info/gnd/4354267-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4354267-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)942531639", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4354267-0", "source": "GND"}], "variant_access_point": ["Onlinedienst", "Digitaler Dienst", "Digitale Dienste", "Telemediendienst", "Telemedienanbieter"], "authorized_access_point": "Online-Dienst"} 1 +2024-09-10 15:44:36.66514 2024-09-10 15:44:36.665144 956f2dab-8eec-4b69-a528-f4bf5d6bea6c {"md5": "7e17f7f648b7665030e5f6a9d8eb4bef", "pid": "942348036", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Drama"}, {"authorized_access_point": "Erotische Literatur"}], "related": [{"authorized_access_point": "Erotisches Theater"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331606454", "source": "GND"}, {"type": "bf:Nbn", "value": "sh98006158", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh98006158"}], "authorized_access_point": "Erotic drama"}], "identifier": "http://d-nb.info/gnd/4352648-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4352648-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)942348036", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4352648-2", "source": "GND"}], "authorized_access_point": "Erotisches Drama"} 1 +2024-09-10 15:44:36.766455 2024-09-10 15:44:36.76646 c0eb2037-cf54-4480-a8dd-8bc484a9de06 {"md5": "1db54e066e73d6aeabde35e9f8b46de7", "pid": "942346300", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kalender"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134480040", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2016000550", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2016000550"}], "authorized_access_point": "Lunar calendars"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134480040", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF14642380", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb14642380c"}], "authorized_access_point": "Calendrier lunaire"}], "identifier": "http://d-nb.info/gnd/4352625-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4352625-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)942346300", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4352625-1", "source": "GND"}], "authorized_access_point": "Mondkalender"} 1 +2024-09-10 15:44:36.857964 2024-09-10 15:44:36.857966 f9ed2837-bc81-423b-bc5d-181c3a9a652c {"md5": "dd087e9f6c6f8acd646ff9f4cc6c2657", "pid": "942142845", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kontinentalverschiebung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133815243", "source": "GND"}, {"type": "bf:Nbn", "value": "sh89003758", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh89003758"}], "authorized_access_point": "Pangaea (Supercontinent)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133815243", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12500043", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12500043k"}], "authorized_access_point": "Pangée (géologie)"}], "identifier": "http://d-nb.info/gnd/4350499-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4350499-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)942142845", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4350499-1", "source": "GND"}], "authorized_access_point": "Pangaea"} 1 +2024-09-10 15:44:36.954241 2024-09-10 15:44:36.954249 9e85216d-6faf-474a-8e67-c2dcfebd842f {"md5": "22586a0f86ee3d828f22f2419970b9f6", "pid": "94203712X", "note": [{"label": ["Trennung eines Ionengemisches aufgrund unterschiedlicher Beweglichkeit der Ionen; kein chromatographisches oder massenspektrometrisches Verfahren (nicht: Ionenbeweglichkeits-Massenspektrometrie)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Spektroskopie"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134484240", "source": "GND"}, {"type": "bf:Nbn", "value": "sh89005249", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh89005249"}], "authorized_access_point": "Ion mobility spectroscopy"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134484240", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF15007908", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb15007908s"}], "authorized_access_point": "Spectroscopie de mobilité ionique"}], "identifier": "http://d-nb.info/gnd/4349293-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4349293-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)94203712X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4349293-9", "source": "GND"}], "variant_access_point": ["IMS (Analytische Chemie)", "Ion mobility spectrometry", "Plasmachromatographie", "Ionenbeweglichkeitsspektrometrie", "Ionenmobilitätsspektrometrie", "Ionen-Mobilitäts-Spektrometer", "Ionenmobilitätsspektrometer"], "authorized_access_point": "Ionenbeweglichkeitsspektroskopie"} 1 +2024-09-10 15:44:37.043086 2024-09-10 15:44:37.043094 0837d1b9-29ed-4716-bad8-b0bf637e9b55 {"md5": "fc7f8e227e7bf33c5bc7949151ee1d70", "pid": "941869121", "note": [{"label": ["Als Homonymenzusatz bei Personenschlagwörtern wird Krimineller verwendet"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Krimineller"}], "related": [{"authorized_access_point": "Bandit"}, {"authorized_access_point": "Weiblicher Outlaw"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134661266", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85096166", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85096166"}], "authorized_access_point": "Outlaws"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134661266", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13319110", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb133191102"}], "authorized_access_point": "Hors-la-loi"}], "identifier": "http://d-nb.info/gnd/4347962-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4347962-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)941869121", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4347962-5", "source": "GND"}], "variant_access_point": ["Gesetzloser", "Desperado"], "authorized_access_point": "Outlaw"} 1 +2024-09-10 15:44:37.124066 2024-09-10 15:44:37.124069 a356b3b8-2f65-4f34-9f5f-2e85234ebe39 {"md5": "1ba9a85f66236dbb25a0e3d1533f99e6", "pid": "941589021", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Längen"}], "identifier": "http://d-nb.info/gnd/4344537-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4344537-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)941589021", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4344537-8", "source": "GND"}], "authorized_access_point": "Strecken"} 1 +2024-09-10 15:44:37.185286 2024-09-10 15:44:37.185289 6357c414-ae21-4ab9-ba87-bf49906ae29c {"md5": "a7b1050a6f3f00f2c7c29bbfe5b4a3ea", "pid": "941532704", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Versagen"}], "related": [{"authorized_access_point": "Bruch"}], "identifier": "http://d-nb.info/gnd/4343948-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4343948-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)941532704", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4343948-2", "source": "GND"}], "authorized_access_point": "Mechanisches Versagen"} 1 +2024-09-10 15:44:37.26339 2024-09-10 15:44:37.263399 14cac07c-7cf1-435d-b37d-de4b6d89825e {"md5": "60a70b1ae91bad371438d9dfee95015c", "pid": "941495256", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kalibrieren (Messtechnik)"}], "identifier": "http://d-nb.info/gnd/4343426-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4343426-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)941495256", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4343426-5", "source": "GND"}], "variant_access_point": ["Autocalibration"], "authorized_access_point": "Automatisches Kalibrieren"} 1 +2024-09-10 15:44:37.366234 2024-09-10 15:44:37.366239 52fc1431-a50c-4728-8b84-78c3ec33d56c {"md5": "74954a41ecadbd4ccfd4322e632b5e74", "pid": "941482774", "note": [{"label": ["Als Aussetzung bezeichnet man Vorgänge, bei denen ein Mensch in eine hilflose Lage versetzt oder trotz bestehender Beistandspflicht in einer hilflosen Lage im Stich gelassen wird."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Strafrecht"}, {"authorized_access_point": "Straftat"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134192274", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85046514", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85046514"}], "authorized_access_point": "Exposure (Criminal law)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134192274", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12154030", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12154030j"}], "authorized_access_point": "Abandon d'enfant"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1312659106", "source": "GND"}, {"type": "bf:Nbn", "value": "12445", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/12445"}], "authorized_access_point": "Abbandono"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254408452", "source": "GND"}, {"type": "bf:Nbn", "value": "XX549929", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX549929"}], "authorized_access_point": "Abandono de menores"}], "identifier": "http://d-nb.info/gnd/4343351-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4343351-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)941482774", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4343351-0", "source": "GND"}], "variant_access_point": ["Hilflose Person", "Kindesweglegung"], "authorized_access_point": "Aussetzung (Strafrecht)"} 1 +2024-09-10 15:44:38.097975 2024-09-10 15:44:38.097979 f101a252-d655-4bd1-8779-57da1fffc95d {"md5": "3a6e2bf3450cb66c88bc472a135d4640", "pid": "940762048", "note": [{"label": ["Art der Kapuzinerartigen Affen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333264259", "source": "GND"}, {"type": "bf:Nbn", "value": "sh86000946", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh86000946"}], "authorized_access_point": "Cebus olivaceus"}], "identifier": "http://d-nb.info/gnd/4335637-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4335637-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)940762048", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4335637-0", "source": "GND"}], "authorized_access_point": "Cebus olivaceus"} 1 +2024-09-10 15:44:37.454374 2024-09-10 15:44:37.454377 5113cea1-fbde-4a63-8968-a282fe3ed80d {"md5": "45e7be915baa9ae433ca19a713696e2c", "pid": "941366138", "note": [{"label": ["Familie mariner Barschartiger; Tropische Speisefische"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333374453", "source": "GND"}, {"type": "bf:Nbn", "value": "sh94007272", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh94007272"}], "authorized_access_point": "Caesionidae"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333374453", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF18140447", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb181404471"}], "authorized_access_point": "Caesionidae"}], "identifier": "http://d-nb.info/gnd/4341973-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4341973-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)941366138", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4341973-2", "source": "GND"}], "variant_access_point": ["Fusilier fish"], "authorized_access_point": "Caesionidae"} 1 +2024-09-10 15:44:37.544111 2024-09-10 15:44:37.544119 8ed4cf4c-7daf-40f6-a26e-e6ec917163c7 {"md5": "6f00dcacd8696588727f372611dc4cfd", "pid": "941365050", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133860737", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85131354", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85131354"}], "authorized_access_point": "Swordfish"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133860737", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13511922", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13511922p"}], "authorized_access_point": "Espadon (poissons)"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256256439", "source": "GND"}, {"type": "bf:Nbn", "value": "7559", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_7559"}], "authorized_access_point": "swordfish"}], "identifier": "http://d-nb.info/gnd/4341960-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4341960-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)941365050", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4341960-4", "source": "GND"}], "variant_access_point": ["Xiphias gladius"], "authorized_access_point": "Schwertfisch"} 1 +2024-09-10 15:44:37.656843 2024-09-10 15:44:37.656847 5a5167d9-3c8e-415d-ba25-985a64fe858a {"md5": "3f944078bb0681fb537022b21e9c9a79", "pid": "941158748", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gruppe (Mathematik)"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133359335X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85092216", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85092216"}], "authorized_access_point": "Non-Abelian groups"}], "identifier": "http://d-nb.info/gnd/4340007-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4340007-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)941158748", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4340007-3", "source": "GND"}], "authorized_access_point": "Nichtabelsche Gruppe"} 1 +2024-09-10 15:44:37.755941 2024-09-10 15:44:37.755948 a38c76ea-8d48-498b-a36b-056f37fa8a16 {"md5": "5387628e1ba35954f0373b8348704006", "pid": "941131572", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ordnung"}], "identifier": "http://d-nb.info/gnd/4339733-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4339733-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)941131572", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4339733-5", "source": "GND"}], "variant_access_point": ["Alphabetisierung (Ordnung)", "Alphabetische Anordnung"], "authorized_access_point": "Alphabetische Ordnung"} 1 +2024-09-10 15:44:37.844624 2024-09-10 15:44:37.844628 097bf462-a1da-4588-ba0c-2a0b844d88f6 {"md5": "fbc5813a5d15022204ae780e21fd4578", "pid": "940921588", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Butanole"}], "identifier": "http://d-nb.info/gnd/4337578-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4337578-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)940921588", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4337578-9", "source": "GND"}], "variant_access_point": ["Butanol (2-)", "2-Butanol", "Butan-2-ol"], "authorized_access_point": "Butylalkohol (sekundär-)"} 1 +2024-09-10 15:44:37.916308 2024-09-10 15:44:37.916312 a0e3c5ca-43fd-4c31-a6b0-64403267cf04 {"md5": "7cb6eff1edbdedd06ba16d83bd3503c6", "pid": "940807904", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Stevia"}], "related": [{"authorized_access_point": "Steviosid"}, {"authorized_access_point": "Stevia (Süßstoff)"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133878318", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85128079", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85128079"}], "authorized_access_point": "Stevia rebaudiana"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133878318", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13607123", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb136071237"}], "authorized_access_point": "Stevia rebaudiana"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134690886", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13607124", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13607124k"}], "authorized_access_point": "Cuisine (stévia)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254490841", "source": "GND"}, {"type": "bf:Nbn", "value": "XX4969935", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX4969935"}], "authorized_access_point": "Stevia rebaudiana"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)125626055X", "source": "GND"}, {"type": "bf:Nbn", "value": "24805", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_24805"}], "authorized_access_point": "Stevia rebaudiana"}], "identifier": "http://d-nb.info/gnd/4336140-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4336140-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)940807904", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4336140-7", "source": "GND"}], "variant_access_point": ["Süßkraut", "Süßblatt", "Honigkraut"], "authorized_access_point": "Stevia rebaudiana"} 1 +2024-09-10 15:44:38.003141 2024-09-10 15:44:38.003145 ee0da079-53e3-412b-8f44-8c9efee38b81 {"md5": "3433e6d5869d651416e14492389d99cc", "pid": "940788187", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Baukonstruktion"}], "identifier": "http://d-nb.info/gnd/4335910-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4335910-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)940788187", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4335910-3", "source": "GND"}], "variant_access_point": ["Ausfüllung"], "authorized_access_point": "Verfüllung"} 1 +2024-09-10 15:44:42.102545 2024-09-10 15:44:42.10255 307d8059-a6dd-450d-8508-933058182160 {"md5": "5c0821a463c243fe6a8e4e7294e451fb", "pid": "04311704X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Regelung"}], "identifier": "http://d-nb.info/gnd/4311704-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4311704-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04311704X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4311704-1", "source": "GND"}], "authorized_access_point": "Kaskadenregelung"} 1 +2024-09-10 15:44:38.175919 2024-09-10 15:44:38.175922 70be43ff-5ffb-4570-8197-90fd1afe8f1c {"md5": "78111ef2891f8845750b74114e08031a", "pid": "940758776", "note": [{"label": ["Familie der Lachsartigen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333487878", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85128045", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85128045"}], "authorized_access_point": "Sternoptychidae"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333487878", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17760838", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17760838g"}], "authorized_access_point": "Sternoptychidés"}], "identifier": "http://d-nb.info/gnd/4335526-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4335526-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)940758776", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4335526-2", "source": "GND"}], "variant_access_point": ["Beilfische", "Sternoptychidae"], "authorized_access_point": "Tiefseebeilfische"} 1 +2024-09-10 15:44:38.24274 2024-09-10 15:44:38.242744 5b5af907-2e31-437b-b08d-7e6e0b635b0c {"md5": "6e6be2e5e0a139ff7b7b8fc304ff634b", "pid": "940755459", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Krieg"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134297904", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85116061", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85116061"}], "authorized_access_point": "Russo-Swedish War, 1788-1790"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134297904", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12369215", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12369215z"}], "authorized_access_point": "Guerre russo-suédoise (1788-1790)"}], "identifier": "http://d-nb.info/gnd/4335478-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4335478-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)940755459", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4335478-6", "source": "GND"}], "variant_access_point": ["Russisch-Schwedischer Krieg (1788-1790)"], "authorized_access_point": "Schwedisch-Russischer Krieg (1788-1790)"} 1 +2024-09-10 15:44:38.332339 2024-09-10 15:44:38.332343 f33019fc-05ab-4233-9ba4-a4ba3a4e6c33 {"md5": "622d838cf2d97e8b5bcca61cb2af6fb6", "pid": "94074449X", "note": [{"label": ["Benutzt, soweit außerhalb Japans lebend, sonst verknüpfe Japan ; Frau"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ausländerin"}], "related": [{"authorized_access_point": "Japaner"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134533144", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12426891", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12426891b"}], "authorized_access_point": "Japonaises"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1009504312", "source": "GND"}, {"type": "bf:Nbn", "value": "26360-5", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/26360-5"}], "authorized_access_point": "Japaner"}], "identifier": "http://d-nb.info/gnd/4335258-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4335258-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)94074449X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4335258-3", "source": "GND"}], "variant_access_point": ["Japanische Frau"], "authorized_access_point": "Japanerin"} 1 +2024-09-10 15:44:38.414942 2024-09-10 15:44:38.414946 0ee84402-f681-4be4-9c18-6ae70ab09a72 {"md5": "3f93ad8092abb831b054edee97b19ebb", "pid": "940604833", "note": [{"label": ["Verknüpfung mit SW Fernsehsendung bzw. Hörfunksendung und ggf. engerem Schlagwort (z.B. Lokaler Hörfunk); Verknüpfung mit Rundfunksendung gilt als pleonastisch."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Rundfunksendung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331210461", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2007003217", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2007003217"}], "authorized_access_point": "Cultural television programs"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331210461", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12066447", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12066447w"}], "authorized_access_point": "Émissions télévisées culturelles"}], "identifier": "http://d-nb.info/gnd/4333556-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4333556-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)940604833", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4333556-1", "source": "GND"}], "variant_access_point": ["Kultur", "Kulturprogramm", "Kulturmagazin (Rundfunksendung)"], "authorized_access_point": "Kultursendung"} 1 +2024-09-10 15:44:38.494546 2024-09-10 15:44:38.494551 93f1daa0-a4fc-42fe-aea4-7180b53bd5f5 {"md5": "a9cfa95f7bdd0b1668ccd11899bfb11e", "pid": "940540959", "note": [{"label": ["Gattung der Kardinalbarsche"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333374003", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85006019", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85006019"}], "authorized_access_point": "Apogon"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333374003", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17797552", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17797552h"}], "authorized_access_point": "Apogon (genre)"}], "identifier": "http://d-nb.info/gnd/4332961-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4332961-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)940540959", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4332961-5", "source": "GND"}], "authorized_access_point": "Apogon"} 1 +2024-09-10 15:45:57.341862 2024-09-10 15:45:57.34187 5182a076-b985-4d6d-9ba2-fed5809f98cf {"md5": "19dfa2dafa60b93c5f6b7c7d5839b219", "pid": "1159716978", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifier": "http://d-nb.info/gnd/1159716978", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1159716978", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1159716978", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1159716978", "source": "GND"}], "authorized_access_point": "Nürnberg (Druckschrift)"} 1 +2024-09-10 15:44:38.595423 2024-09-10 15:44:38.59543 01e56b98-e51a-44a0-ba81-9594f0719ad6 {"md5": "c4b442ca8b0f6cad1d78d20529f740cf", "pid": "940535912", "note": [{"label": ["Für Kulturen von Organismen im Reagenzglas, Bioreaktor usw., für Grundlagenforschung u. Anwendung; verknüpfe mit Organismus bzw. Teilen bzw. verwende engeres SW, z.B. Zellkultur, Organkultur"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "In vitro"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134222505", "source": "GND"}, {"type": "bf:Nbn", "value": "sh00005933", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh00005933"}], "authorized_access_point": "Micropropagation"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134222505", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12231761", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12231761s"}], "authorized_access_point": "Multiplication in vitro"}], "identifier": "http://d-nb.info/gnd/4332883-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4332883-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)940535912", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4332883-0", "source": "GND"}], "variant_access_point": ["Kultur (Biologie)", "Mikroorganismus (Biologie)", "Laborkultur", "Kultivierung"], "authorized_access_point": "In-vitro-Kultur"} 1 +2024-09-10 15:44:38.682999 2024-09-10 15:44:38.683004 3cb66b11-91df-4e85-bf16-f8c5ef3dd734 {"md5": "4052aa0c9bd4f6709282155cde28a34a", "pid": "94052113X", "note": [{"label": ["Notgeld in GB u. seinen Kolonien sowie in den USA im 17. u. 18. Jh.", "Für die Kryptowährung verwende SW Virtuelle Währung"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Notgeld"}], "identifier": "http://d-nb.info/gnd/4332618-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4332618-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)94052113X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4332618-3", "source": "GND"}], "authorized_access_point": "Token (Numismatik)"} 1 +2024-09-10 15:44:38.781517 2024-09-10 15:44:38.781522 ded4c507-e82a-4a94-9e9d-3d2f3fa00ea2 {"md5": "9e824fbf3a5ee45af568b862d44cb6a3", "pid": "940125897", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Polnisch"}], "identifier": "http://d-nb.info/gnd/4329873-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4329873-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)940125897", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4329873-4", "source": "GND"}], "variant_access_point": ["Mundart Polnisch (Kleinpolen)"], "authorized_access_point": "Kleinpolnisch"} 1 +2024-09-10 15:44:38.868311 2024-09-10 15:44:38.868316 c9d27bdb-8287-443d-a10a-52ee2b47db66 {"md5": "14df7815d1a7d822bbdfc508d4d1737b", "pid": "940111187", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333373538", "source": "GND"}, {"type": "bf:Nbn", "value": "sh95004913", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh95004913"}], "authorized_access_point": "Sillaginidae"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333373538", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17101899", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17101899n"}], "authorized_access_point": "Sillaginidae"}], "identifier": "http://d-nb.info/gnd/4329678-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4329678-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)940111187", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4329678-6", "source": "GND"}], "variant_access_point": ["Sillaginidae"], "authorized_access_point": "Weißlinge (Fische)"} 1 +2024-09-10 15:44:38.948754 2024-09-10 15:44:38.948758 7776b3a7-9ac7-4c5f-ad3e-65d48069f4eb {"md5": "f0c86dde3fe1faa2175c556062049162", "pid": "940085798", "note": [{"label": ["Benutzt für die bestimmte physikalische Theorie, für allgemein physikalische oder philosophische Sachverhalte verwende Paralleluniversum."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Quantentheorie"}], "related": [{"authorized_access_point": "Paralleluniversum"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134836198", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16665034", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16665034s"}], "authorized_access_point": "Univers parallèles"}], "identifier": "http://d-nb.info/gnd/4329474-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4329474-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)940085798", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4329474-1", "source": "GND"}], "variant_access_point": ["Viel-Welten-Deutung", "Viel-Welten-Theorie", "Viel-Welten-Interpretation", "Parallele-Welten-Deutung", "EWG-Interpretation", "Many-worlds-Interpretation", "Vielweltendeutung"], "authorized_access_point": "Viele-Welten-Deutung"} 1 +2024-09-10 15:44:39.05539 2024-09-10 15:44:39.055398 65d10c9a-1718-4583-895a-adc3ed159f88 {"md5": "f36b0f635b36f1371cfeeaf3d201904a", "pid": "940049570", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bekanntheit"}], "identifier": "http://d-nb.info/gnd/4329198-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4329198-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)940049570", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4329198-3", "source": "GND"}], "variant_access_point": ["Marke", "Bekannte Marke", "Berühmte Marke", "Starke Marke"], "authorized_access_point": "Markenbekanntheit"} 1 +2024-09-10 15:44:39.139559 2024-09-10 15:44:39.139563 7b92ba9f-3f11-46de-9b59-46965162d467 {"md5": "458afea572cea595dae0e5fadc473e54", "pid": "940035731", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Mitläuferin"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)971410755", "source": "GND"}, {"type": "bf:Nbn", "value": "10053774", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10053774"}], "authorized_access_point": "Mitläufer"}], "identifier": "http://d-nb.info/gnd/4329122-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4329122-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)940035731", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4329122-3", "source": "GND"}], "authorized_access_point": "Mitläufer"} 1 +2024-09-10 15:44:39.202452 2024-09-10 15:44:39.202456 f48f7fe8-fc91-422f-83a9-64e7f601553f {"md5": "3dc3029d922dce6ebfb53cf986de01fc", "pid": "199279101", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Ratio_legis&oldid=168865992"], "noteType": "dataSource"}, {"label": ["Sinn und Zweck einer Rechtsnorm, bzw. das Ziel, zu dessen Schutz ein Rechtssatz aufgestellt wurde."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ratio"}], "identifier": "http://d-nb.info/gnd/7793148-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7793148-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199279101", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7793148-8", "source": "GND"}], "variant_access_point": ["Gesetzeszweck", "Normzweck", "Ratio des Gesetzes", "Ratio einer Norm", "Rechtsnormzweck", "Schutzzweck", "Schutzzweck der Norm"], "authorized_access_point": "Ratio legis"} 1 +2024-09-10 15:44:39.261827 2024-09-10 15:44:39.26183 83db42af-a410-4b2d-a968-5131bca2480e {"md5": "d2a24e153f496272a9012cdf6b6315d6", "pid": "199254435", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Seidenbienen (Familie)"}], "identifier": "http://d-nb.info/gnd/7790265-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7790265-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199254435", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7790265-8", "source": "GND"}], "variant_access_point": ["Colletes hederae"], "authorized_access_point": "Efeu-Seidenbiene"} 1 +2024-09-10 15:44:39.344773 2024-09-10 15:44:39.344778 6ba28969-5dec-4aad-aaf5-31624b1fd292 {"md5": "baafb2d96dc13a6a2ccec21f6585b982", "pid": "199249903", "note": [{"label": ["Verbreitung des Namens im 13.-16. Jh. in der Grafschaft Sayn-Wittgenstein"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Familienname"}], "identifier": "http://d-nb.info/gnd/7789724-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7789724-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199249903", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7789724-9", "source": "GND"}], "authorized_access_point": "Riedesel (Familienname)"} 1 +2024-09-10 15:44:39.432011 2024-09-10 15:44:39.432015 7348fc9b-52cd-4cf3-b51e-3e5e837bdba1 {"md5": "db79a926b5a0d901ad979cae9050bf6c", "pid": "199099952", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Westfälisch"}], "identifier": "http://d-nb.info/gnd/7772912-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7772912-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199099952", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7772912-2", "source": "GND"}], "authorized_access_point": "Mundart Westfälisch (Lemgo)"} 1 +2024-09-10 15:44:39.517974 2024-09-10 15:44:39.517985 71e8d2cd-6152-4bef-8ed1-273b0ff30677 {"md5": "f3b6008af70019041761d2e0d7d60ec2", "pid": "130755087", "note": [{"label": ["Disziplin, die sich mit neuropsychologischen Störungen unter klinischen Gesichtspunkten befaßt (einschl. Behandlung/Rehabilitation)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/7508743-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7508743-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)130755087", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7508743-1", "source": "GND"}], "authorized_access_point": "Klinische Neuropsychologie"} 1 +2024-09-10 15:44:39.600184 2024-09-10 15:44:39.600188 162ccab1-bb3f-4b85-a06a-3e2dfe134df1 {"md5": "e132abbb6e0be4d7ba88182e5ade1403", "pid": "130749478", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/7508128-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7508128-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)130749478", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7508128-3", "source": "GND"}], "authorized_access_point": "Chinesische Philosophie"} 1 +2024-09-10 15:44:39.66957 2024-09-10 15:44:39.669574 05eebcf9-5844-43b8-8877-99fc75e8a0f5 {"md5": "05a2dcf3d69aef25a5473ded71dd9a88", "pid": "130741531", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/7507258-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7507258-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)130741531", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7507258-0", "source": "GND"}], "authorized_access_point": "Betonkorrosion"} 1 +2024-09-10 15:44:39.729977 2024-09-10 15:44:39.729981 576f4f5c-bf92-4159-b5e7-3aa1e135d0dc {"md5": "ae74dbf9e7b514b60d81cb3aa3d8d38e", "pid": "130722529", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/7505168-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7505168-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)130722529", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7505168-0", "source": "GND"}], "authorized_access_point": "Alkoholintoleranz"} 1 +2024-09-10 15:44:39.792919 2024-09-10 15:44:39.792922 575c1f2c-35d2-46b0-a761-2646fcc93693 {"md5": "6675fc40e744d735a351cb8010b49e3f", "pid": "130715107", "note": [{"label": ["Von Arzneimittelallergie unterschieden, siehe dort"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/7504353-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7504353-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)130715107", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7504353-1", "source": "GND"}], "variant_access_point": ["Inkompatibilität"], "authorized_access_point": "Arzneimittelinkompatibilität"} 1 +2024-09-10 15:44:39.855086 2024-09-10 15:44:39.85509 2c273b76-eecb-42e3-bbec-ea3539655af1 {"md5": "539f1cb4c91ef39e85c8472d9e69da4e", "pid": "130712930", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/7504114-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7504114-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)130712930", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7504114-5", "source": "GND"}], "variant_access_point": ["Stickstoff-Schwefel-Verbindungen", "Schwefelnitride"], "authorized_access_point": "Schwefel-Stickstoff-Verbindungen"} 1 +2024-09-10 15:46:00.796232 2024-09-10 15:46:00.796247 bf7bbdb2-48ff-4a91-88cf-d5f11ba04bd3 {"md5": "d196040640361c33007577e1e593be67", "pid": "1101498900", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifier": "http://d-nb.info/gnd/1101498900", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1101498900", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1101498900", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1101498900", "source": "GND"}], "authorized_access_point": "Ungeziefer (Motiv)"} 1 +2024-09-10 15:44:39.914431 2024-09-10 15:44:39.914436 a05dc6ab-ac62-4ca4-bf43-731ecdb77321 {"md5": "030f4208f91e5616e01df77643316469", "pid": "13071206X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Rekombination_(Genetik)&oldid=219839856"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/7504017-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7504017-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)13071206X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7504017-7", "source": "GND"}], "variant_access_point": ["Genetische Rekombination", "Neukombination", "Gen"], "authorized_access_point": "Rekombination (Genetik)"} 1 +2024-09-10 15:44:39.973409 2024-09-10 15:44:39.973411 238e99f8-bab0-43d2-92db-00aeec52f13c {"md5": "c3867719feef273b72655a8a30236edc", "pid": "130700525", "note": [{"label": ["einz. Richtlinien werden nach §715 RSWK angesetzt"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/7502749-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7502749-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)130700525", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7502749-5", "source": "GND"}], "authorized_access_point": "EG-Richtlinie"} 1 +2024-09-10 15:44:40.034019 2024-09-10 15:44:40.034023 569afd44-3e9e-4eaa-baaa-5a8a0aa2bf44 {"md5": "fd00a9ea26cdd49a990bf66b92421298", "pid": "130699152", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/7502596-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7502596-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)130699152", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7502596-6", "source": "GND"}], "authorized_access_point": "EG-Dienstrecht"} 1 +2024-09-10 15:44:40.09321 2024-09-10 15:44:40.093214 53190276-1ab4-4997-8ece-66cca3de6d3c {"md5": "d91da77b7874b8f1d6e188c2dbb2b596", "pid": "130699101", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/7502591-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7502591-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)130699101", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7502591-7", "source": "GND"}], "authorized_access_point": "EG-Beamter"} 1 +2024-09-10 15:44:40.154814 2024-09-10 15:44:40.154818 27d5d529-2a5b-41bf-91f6-31454b180fd8 {"md5": "e9d3ff466f9ef35f41c4303dad8b63d7", "pid": "130698644", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/7502541-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7502541-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)130698644", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7502541-3", "source": "GND"}], "authorized_access_point": "Evangelische Seelsorge"} 1 +2024-09-10 15:44:40.215978 2024-09-10 15:44:40.215982 3d121b28-0996-45d2-be4f-00d48411fe9c {"md5": "51f19a98887db3b6bf3ec9c49c4e87cd", "pid": "043280072", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333473583", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85000447", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85000447"}], "authorized_access_point": "Gymnocephalus cernuus"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333473583", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17805440", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb178054402"}], "authorized_access_point": "Gymnocephalus cernua"}], "identifier": "http://d-nb.info/gnd/4328007-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4328007-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043280072", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4328007-9", "source": "GND"}], "variant_access_point": ["Stur", "Gymnocephalus cernua", "Gymnocephalus cernuus"], "authorized_access_point": "Kaulbarsch"} 1 +2024-09-10 15:44:40.294802 2024-09-10 15:44:40.294806 61f7f21a-08db-4f79-88b8-16104f4a6676 {"md5": "875c5d50eb737e661841b9163827a619", "pid": "043270972", "note": [{"label": ["Verknüpfe mit Sprachbezeichnung und (hier nicht permutierender - gilt bis 31. 03. 2010) Wortart; z.B. Deutsch / Hilfsverb / haben "], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113422303X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2011001716", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2011001716"}], "authorized_access_point": "Haben (The German word)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113422303X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12232750", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12232750c"}], "authorized_access_point": "Haben (le mot allemand)"}], "identifier": "http://d-nb.info/gnd/4327097-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4327097-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043270972", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4327097-9", "source": "GND"}], "authorized_access_point": "haben (Wort)"} 1 +2024-09-10 15:44:40.360747 2024-09-10 15:44:40.360751 464a46e1-d229-4f3f-a2c4-0569459125b3 {"md5": "b1c140291e2fb0d9859ea5710c087385", "pid": "043270328", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Aluminiumhydrid"}], "identifier": "http://d-nb.info/gnd/4327032-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4327032-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043270328", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4327032-3", "source": "GND"}], "authorized_access_point": "Alanate"} 1 +2024-09-10 15:44:40.442841 2024-09-10 15:44:40.442844 41426c37-8f0b-47ff-9ae5-75d3b24d2b31 {"md5": "4abff647513d5570af846c1b8b0dd760", "pid": "043269605", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kreatur"}], "identifier": "http://d-nb.info/gnd/4326960-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4326960-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043269605", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4326960-6", "source": "GND"}], "authorized_access_point": "Mitgeschöpf"} 1 +2024-09-10 15:46:23.152364 2024-09-10 15:46:23.15237 3cb22395-ef0b-41f1-82b1-12f8b5ac5db3 {"md5": "9ef7ab6ca346ba0862a2a3e1c4a8523a", "pid": "199129215", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Versicherungsteuer"}], "identifier": "http://d-nb.info/gnd/7776182-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7776182-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199129215", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7776182-0", "source": "GND"}], "authorized_access_point": "Feuerschutzsteuer"} 1 +2024-09-10 15:44:40.532718 2024-09-10 15:44:40.532722 e4128147-c315-4ae6-b2f8-b783b264de53 {"md5": "31c9f54a8e896865d22a75173970e1f0", "pid": "043265006", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Johanniskrautgewächse"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134596413", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85080526", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85080526"}], "authorized_access_point": "Mangosteen"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134596413", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16649658", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb166496580"}], "authorized_access_point": "Garcinia mangostana"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256234893", "source": "GND"}, {"type": "bf:Nbn", "value": "12368", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_12368"}], "authorized_access_point": "mangosteen"}], "identifier": "http://d-nb.info/gnd/4326500-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4326500-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043265006", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4326500-5", "source": "GND"}], "variant_access_point": ["Garcinia mangostana", "Mangostanbaum", "Mangostanapfel"], "authorized_access_point": "Mangostane"} 1 +2024-09-10 15:44:40.601343 2024-09-10 15:44:40.601348 39c6f498-79f2-46d9-abb8-d9e14b4258a4 {"md5": "c21a22fa36831a54c96a12078164ab69", "pid": "043229395", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334234000", "source": "GND"}, {"type": "bf:Nbn", "value": "sh95001703", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh95001703"}], "authorized_access_point": "Jade carving"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334234000", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF15095710", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb150957105"}], "authorized_access_point": "Sculpture sur jade"}], "identifier": "http://d-nb.info/gnd/4322939-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4322939-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043229395", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4322939-6", "source": "GND"}], "variant_access_point": ["Jadeschnitzerei"], "authorized_access_point": "Jadekunst"} 1 +2024-09-10 15:44:40.690246 2024-09-10 15:44:40.690251 6a0b721a-af0e-4e92-b124-656e3b633059 {"md5": "79b3c0a0b381aa70d762dc2d2b208bea", "pid": "043225276", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Räuber"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331709628", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2022005388", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2022005388"}], "authorized_access_point": "Bank robbers"}], "identifier": "http://d-nb.info/gnd/4322527-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4322527-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043225276", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4322527-5", "source": "GND"}], "authorized_access_point": "Bankräuber"} 1 +2024-09-10 15:44:40.788928 2024-09-10 15:44:40.788936 e5fa3222-d148-4c63-bdf5-6e53e5a4c44e {"md5": "6c1d6ec89c66b446e518435dff8a4f48", "pid": "043220797", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Entzündung"}, {"authorized_access_point": "Parodontopathie"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134620675", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85099925", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85099925"}], "authorized_access_point": "Periodontitis"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134620675", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11965426", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119654263"}], "authorized_access_point": "Parodontopathies"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254356584", "source": "GND"}, {"type": "bf:Nbn", "value": "25875", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/25875"}], "authorized_access_point": "Periodontiti"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254471235", "source": "GND"}, {"type": "bf:Nbn", "value": "XX531351", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX531351"}], "authorized_access_point": "Periodontitis"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1299919812", "source": "GND"}, {"type": "bf:Nbn", "value": "XX700280", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX700280"}], "authorized_access_point": "Periodonto - Enfermedades"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1241617104", "source": "GND"}, {"type": "bf:Nbn", "value": "D010518", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D010518"}], "authorized_access_point": "Periodontitis"}], "identifier": "http://d-nb.info/gnd/4322079-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4322079-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043220797", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4322079-4", "source": "GND"}], "variant_access_point": ["Paradentitis", "Paradontitis", "Parodontose", "Zahnbettschwund", "Parodontosis", "Rasch fortschreitende Parodontitis", "RPP", "Rapid progredient parodontitis", "Early-onset peridontitis"], "authorized_access_point": "Parodontitis"} 1 +2024-09-10 15:44:40.874977 2024-09-10 15:44:40.87499 c84cafcf-dd4b-4313-bf11-94e705e8ac78 {"md5": "4e69962af4dcf0fa2be7c54dbd15f8b1", "pid": "043196063", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Doppelblindversuch"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)124159404X", "source": "GND"}, {"type": "bf:Nbn", "value": "D016037", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D016037"}], "authorized_access_point": "Single-Blind Method"}], "identifier": "http://d-nb.info/gnd/4319606-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4319606-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043196063", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4319606-8", "source": "GND"}], "variant_access_point": ["Blindfold test", "Einfacher Blindversuch"], "authorized_access_point": "Blindversuch"} 1 +2024-09-10 15:44:40.96977 2024-09-10 15:44:40.96978 5063fbe1-630d-4b2d-bfb1-1e0669090b8d {"md5": "52a0ae22e9d23828cc96b7ff9c0ad6a5", "pid": "043172415", "note": [{"label": ["Ausschluss von Mitgliedern einer Gesellschaft bei Verzug der Einzahlung ihres Kapitalanteils"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gesellschaftsanteil"}], "identifier": "http://d-nb.info/gnd/4317241-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4317241-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043172415", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4317241-6", "source": "GND"}], "authorized_access_point": "Kaduzierung"} 1 +2024-09-10 15:44:43.249184 2024-09-10 15:44:43.249188 9fa89259-898b-4328-9b60-7ec21400970d {"md5": "73adbfbe60ca0cc2d08ba3895481aa20", "pid": "043006248", "note": [{"label": ["Verfasst 1587, sollte die Union Polens u. Schwedens vorbereiten"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4300624-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4300624-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043006248", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4300624-3", "source": "GND"}], "variant_access_point": ["Kalmar stadgar"], "authorized_access_point": "Kalmarer Statuten"} 1 +2024-09-10 15:44:41.060959 2024-09-10 15:44:41.060963 10b24bac-7eee-401a-b31e-44cf10de85dd {"md5": "d2e14e05661be6793382418e8f4c151c", "pid": "043170854", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kirchenbau"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334557942", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF15595575", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb155955752"}], "authorized_access_point": "Sacristies"}], "identifier": "http://d-nb.info/gnd/4317085-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4317085-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043170854", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4317085-7", "source": "GND"}], "authorized_access_point": "Sakristei"} 1 +2024-09-10 15:44:41.16702 2024-09-10 15:44:41.167027 52cabadc-89b9-4629-b600-bbcbcc89a77a {"md5": "fe1eee36928e9faec1ce295ba3df5032", "pid": "043166644", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Moronidae"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133652603", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85037661", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85037661"}], "authorized_access_point": "European seabass"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133652603", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11955348", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11955348x"}], "authorized_access_point": "Bar commun"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256256692", "source": "GND"}, {"type": "bf:Nbn", "value": "6893", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_6893"}], "authorized_access_point": "sea bass"}], "identifier": "http://d-nb.info/gnd/4316664-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4316664-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043166644", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4316664-7", "source": "GND"}], "variant_access_point": ["Wolfsbarsch", "Roccus labrax", "Dicentrarchus labrax"], "authorized_access_point": "Seebarsch"} 1 +2024-09-10 15:44:41.247551 2024-09-10 15:44:41.247555 24210d7c-18ef-408c-99d3-d39844c236ef {"md5": "a03b64edd7c1a8891c7b070c56f4641f", "pid": "043166202", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Literaturpreis"}], "identifier": "http://d-nb.info/gnd/4316620-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4316620-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043166202", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4316620-9", "source": "GND"}], "variant_access_point": ["Montblanc-Literaturpreis für kurze Geschichten"], "authorized_access_point": "Montblanc-Literaturpreis"} 1 +2024-09-10 15:44:41.306857 2024-09-10 15:44:41.306862 d9d5c958-77d5-48fb-b847-2ddb02a0cefe {"md5": "be741526ac6a66e91265bac63504464e", "pid": "04316532X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333376375", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85011925", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85011925"}], "authorized_access_point": "Giant perch"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333376375", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16914666", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb169146669"}], "authorized_access_point": "Barramundi"}], "identifier": "http://d-nb.info/gnd/4316532-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4316532-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04316532X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4316532-1", "source": "GND"}], "variant_access_point": ["Plakapong", "Lates calcarifer"], "authorized_access_point": "Barramundi"} 1 +2024-09-10 15:44:41.374388 2024-09-10 15:44:41.374393 5071f2db-1bac-404e-90b1-f3eef66de872 {"md5": "f271cc94485ba71b46e771393cb4167b", "pid": "043153607", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Halbleiterlaser"}], "identifier": "http://d-nb.info/gnd/4315360-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4315360-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043153607", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4315360-4", "source": "GND"}], "variant_access_point": ["Distributed-Bragg-Reflektor-Laser"], "authorized_access_point": "DBR-Laser"} 1 +2024-09-10 15:44:41.458773 2024-09-10 15:44:41.458778 747cb49e-a588-498b-84bd-c621a720d745 {"md5": "2549a005350d024b694a014758261565", "pid": "043134475", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Korallenbarsche"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333372299", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17805633", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17805633b"}], "authorized_access_point": "Amphiprion frenatus"}], "identifier": "http://d-nb.info/gnd/4313447-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4313447-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043134475", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4313447-6", "source": "GND"}], "variant_access_point": ["Amphiprion frenatus"], "authorized_access_point": "Halsband-Anemonenfisch"} 1 +2024-09-10 15:44:43.312027 2024-09-10 15:44:43.312032 68dc8ae7-6fc7-4ed5-b8d3-9007b0bb3795 {"md5": "7e091bccfe34e2b5e9b81e2307689631", "pid": "042975174", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tierrasse"}], "related": [{"authorized_access_point": "Pony"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134711182", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16247535", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16247535w"}], "authorized_access_point": "Races de poneys"}], "identifier": "http://d-nb.info/gnd/4297517-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4297517-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042975174", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4297517-7", "source": "GND"}], "variant_access_point": ["Pony"], "authorized_access_point": "Ponyrasse"} 1 +2024-09-10 15:44:41.554569 2024-09-10 15:44:41.554573 7ac90f61-8298-4ea1-9f44-fdf311bf47c6 {"md5": "f8f317fc51b81f5a10a97d5a80eb2c08", "pid": "043134106", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tauchunfall"}], "related": [{"authorized_access_point": "High pressure neurological syndrome"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113419434X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85065986", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85065986"}], "authorized_access_point": "Inert gas narcosis"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113419434X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12160328", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb121603282"}], "authorized_access_point": "Narcose à l'azote"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1282205935", "source": "GND"}, {"type": "bf:Nbn", "value": "D007222", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D007222"}], "authorized_access_point": "Inert Gas Narcosis"}], "identifier": "http://d-nb.info/gnd/4313410-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4313410-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043134106", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4313410-5", "source": "GND"}], "variant_access_point": ["Stickstoffnarkose"], "authorized_access_point": "Tiefenrausch"} 1 +2024-09-10 15:44:41.647653 2024-09-10 15:44:41.64766 81583a9d-49e3-4575-9beb-85d6132a0105 {"md5": "b76740ee1980512312c4d7e561036ea7", "pid": "043133908", "note": [{"label": ["Dänischer Angriff von Norwegen aus auf Schweden"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Krieg"}], "identifier": "http://d-nb.info/gnd/4313390-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4313390-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043133908", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4313390-3", "source": "GND"}], "variant_access_point": ["Schwedisch-Dänischer Krieg (1788-1789)"], "authorized_access_point": "Dänisch-Schwedischer Krieg (1788-1789)"} 1 +2024-09-10 15:44:41.754111 2024-09-10 15:44:41.754113 51aa75b4-dffb-478e-b045-6f59d9de4334 {"md5": "b7d07988137ac0e12f566576c250d906", "pid": "043133789", "note": [{"label": ["Unter Regierungskriminalität versteht man die Verwirklichung strafbarer Handlungen, die der Erhaltung oder Ausweitung politischer Macht dienen, durch oder auf Veranlassung von hochrangigen politischen Machthabern. Hierzu zählen etwa Verbrechen gegen die Menschlichkeit zulasten von Regimegegnern, Korruption, Wahlfälschung und Rechtsbeugung."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kriminalität"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331581338", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2010008055", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2010008055"}], "authorized_access_point": "State crimes"}], "identifier": "http://d-nb.info/gnd/4313378-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4313378-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043133789", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4313378-2", "source": "GND"}], "variant_access_point": ["Staatskriminalität", "Politische Kriminalität", "Makrokriminalität", "Staatsverbrechen", "State crime", "State-organized crime", "Kriminalität der Mächtigen", "Staat"], "authorized_access_point": "Regierungskriminalität"} 1 +2024-09-10 15:44:41.836068 2024-09-10 15:44:41.836074 1b130951-bd78-49df-938f-3209307ad0dc {"md5": "c5d53add88b3774624ddb2d9fcf94ed4", "pid": "043126944", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133834795", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85105550", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85105550"}], "authorized_access_point": "Posthouses"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133834795", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12569669", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12569669b"}], "authorized_access_point": "Relais de poste"}], "identifier": "http://d-nb.info/gnd/4312694-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4312694-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043126944", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4312694-7", "source": "GND"}], "authorized_access_point": "Poststation"} 1 +2024-09-10 15:44:41.913636 2024-09-10 15:44:41.91364 c95a3845-b5e6-4ade-949f-698f093488a6 {"md5": "1814153ba543c7bee5813025e7645e89", "pid": "043122507", "note": [{"label": ["Maßgeschneiderte Materialien mit bestimmten gewünschten Eigenschaften, die durch gezielte Synthese erreicht werden"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Material"}, {"authorized_access_point": "Werkstoff"}], "related": [{"authorized_access_point": "Intelligenter Werkstoff"}], "identifier": "http://d-nb.info/gnd/4312250-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4312250-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043122507", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4312250-4", "source": "GND"}], "variant_access_point": ["Advanced materials", "Advanced material", "High-tech-Werkstoff"], "authorized_access_point": "Hochleistungswerkstoff"} 1 +2024-09-10 15:44:42.000316 2024-09-10 15:44:42.000321 d588f6f2-a85c-4e29-abbd-8cb9429533d9 {"md5": "62d1a94e6f8b0d281e79a1fbe6c59422", "pid": "043119816", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kapuzineraffenartige"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133798934", "source": "GND"}, {"type": "bf:Nbn", "value": "sh91006486", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh91006486"}], "authorized_access_point": "Southern muriqui"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133798934", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12443392", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb124433920"}], "authorized_access_point": "Eroïde"}], "identifier": "http://d-nb.info/gnd/4311981-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4311981-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043119816", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4311981-5", "source": "GND"}], "variant_access_point": ["Brachyteles arachnoides"], "authorized_access_point": "Spinnenaffe"} 1 +2024-09-10 15:44:42.188784 2024-09-10 15:44:42.188788 12630df9-0456-4c7b-a89a-16003cdc183a {"md5": "1482f8ae46404823a6e30d378c5ca1b7", "pid": "043110290", "note": [{"label": ["Buntbarschart"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333965877", "source": "GND"}, {"type": "bf:Nbn", "value": "sh00003454", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh00003454"}], "authorized_access_point": "Redbreast tilapia"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333965877", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17838459", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17838459t"}], "authorized_access_point": "Coptodon rendalli"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256264202", "source": "GND"}, {"type": "bf:Nbn", "value": "35436", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_35436"}], "authorized_access_point": "Tilapia rendalli"}], "identifier": "http://d-nb.info/gnd/4311029-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4311029-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043110290", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4311029-0", "source": "GND"}], "authorized_access_point": "Tilapia rendalli"} 1 +2024-09-10 15:44:42.259508 2024-09-10 15:44:42.259512 fcc7cd0c-5242-4a3d-a956-20dd12de8ce4 {"md5": "d79ca677504380005b4bde201dd79471", "pid": "043104754", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Digitale Telefonvermittlung"}], "identifier": "http://d-nb.info/gnd/4310475-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4310475-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043104754", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4310475-7", "source": "GND"}], "authorized_access_point": "Alcatel 1000 S12"} 1 +2024-09-10 15:44:42.31935 2024-09-10 15:44:42.319354 ab2cfeb2-d6d1-4835-8604-9eab2bce899e {"md5": "6eaa47dda0683327e9155c2b2825bf50", "pid": "043092756", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ärztin"}], "related": [{"authorized_access_point": "Vertragsarzt"}], "identifier": "http://d-nb.info/gnd/4309275-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4309275-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043092756", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4309275-5", "source": "GND"}], "variant_access_point": ["Kassenärztin"], "authorized_access_point": "Vertragsärztin"} 1 +2024-09-10 15:44:42.394176 2024-09-10 15:44:42.394179 1a89444b-14e9-4f50-b101-76d44249a0dd {"md5": "692d39b9457944bc202682908f57fb69", "pid": "043087787", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gentechnologie"}, {"authorized_access_point": "Klonierung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134360436", "source": "GND"}, {"type": "bf:Nbn", "value": "sh00007750", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh00007750"}], "authorized_access_point": "Clones"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134360436", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12533180", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12533180d"}], "authorized_access_point": "Clones (biologie)"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256227994", "source": "GND"}, {"type": "bf:Nbn", "value": "1678", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_1678"}], "authorized_access_point": "clones"}], "identifier": "http://d-nb.info/gnd/4308778-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4308778-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043087787", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4308778-4", "source": "GND"}], "authorized_access_point": "Klon"} 1 +2024-09-10 15:44:42.496305 2024-09-10 15:44:42.49631 abb63d18-fb25-425c-af2b-c1bcd721dc1a {"md5": "54509e5a124e7faa12f5b8aa42d06f48", "pid": "043079458", "note": [{"label": ["Ranking bezeichnet die Einordnung von Elementen in eine Rangliste."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Rating"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966685695", "source": "GND"}, {"type": "bf:Nbn", "value": "15320-0", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/15320-0"}], "authorized_access_point": "Ranking-Verfahren"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)971416281", "source": "GND"}, {"type": "bf:Nbn", "value": "10042956", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10042956"}], "authorized_access_point": "Ranking"}], "identifier": "http://d-nb.info/gnd/4307945-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4307945-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043079458", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4307945-3", "source": "GND"}], "variant_access_point": ["Rangreihenverfahren", "Ranking-Verfahren"], "authorized_access_point": "Ranking"} 1 +2024-09-10 15:44:42.588222 2024-09-10 15:44:42.588226 8fe491cf-bf76-46a7-adfb-38b9d6758cca {"md5": "0727fc94b1314aadc0d159ce1a6fe786", "pid": "043078664", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Retroviren"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133790364", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12412463", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12412463t"}], "authorized_access_point": "Virus de l'immunodéficience simienne"}], "identifier": "http://d-nb.info/gnd/4307866-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4307866-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043078664", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4307866-7", "source": "GND"}], "variant_access_point": ["SIV", "Simian immunodeficiency virus"], "authorized_access_point": "Affenimmundefizienzvirus"} 1 +2024-09-10 15:46:23.222439 2024-09-10 15:46:23.222443 2057ede2-5551-4b04-90bb-13fc98dfcc58 {"md5": "a10ba5598358a7dc551aab213ee67ee6", "pid": "130791008", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/7512682-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7512682-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)130791008", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7512682-5", "source": "GND"}], "authorized_access_point": "Auslandseinsatz (Militär)"} 1 +2024-09-10 15:44:42.677441 2024-09-10 15:44:42.677445 91893e53-f54a-4d78-851d-40bcc6a7986f {"md5": "2ddc5b97659aacf8f3759e4de70d4a9a", "pid": "043062024", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Chronologie"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333671210", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85025412", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85025412"}], "authorized_access_point": "Chronology, Historical"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333671210", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13318624", "source": "BNF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13318624w"}], "authorized_access_point": "Chronologie historique"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1275766404", "source": "GND"}, {"type": "uri", "value": "https://provenienz.gbv.de/T-PRO_Thesaurus_der_Provenienzbegriffe#Anker:Datum"}], "authorized_access_point": "Datum"}], "identifier": "http://d-nb.info/gnd/4306202-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4306202-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043062024", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4306202-7", "source": "GND"}], "variant_access_point": ["Datumsangabe", "Kalendarisches Datum"], "authorized_access_point": "Datum"} 1 +2024-09-10 15:44:42.754342 2024-09-10 15:44:42.754344 329aaeff-7a27-44bd-b98f-b6815d9c170f {"md5": "982beb8c28bb9c021d9fd34952e5ec41", "pid": "04304980X", "note": [{"label": ["Erythrozyt mit abnormer Farbstoffverteilung"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Erythrozyt"}], "identifier": "http://d-nb.info/gnd/4304980-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4304980-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04304980X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4304980-1", "source": "GND"}], "variant_access_point": ["Schießscheibenzelle", "Kokardenzelle", "Leptozyt"], "authorized_access_point": "Targetzelle"} 1 +2024-09-10 15:44:42.838509 2024-09-10 15:44:42.838513 b4277ac6-9504-4768-a84a-58e0561aad92 {"md5": "cd4abb80d5dcffd0c694f9bd935e784a", "pid": "043049354", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bibliotheksinformationssystem"}], "identifier": "http://d-nb.info/gnd/4304935-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4304935-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043049354", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4304935-7", "source": "GND"}], "authorized_access_point": "Allegro (Bibliotheksinformationssystem)"} 1 +2024-09-10 15:44:42.915098 2024-09-10 15:44:42.915103 d92608cf-f63d-498c-8392-51d58d1a3e0c {"md5": "3d5bc652aaeed24858fe44905403e1c2", "pid": "043047815", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4304781-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4304781-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043047815", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4304781-6", "source": "GND"}], "authorized_access_point": "Begriffskalkül"} 1 +2024-09-10 15:44:42.997663 2024-09-10 15:44:42.997667 c7a43160-d314-42df-94d2-0381870ac593 {"md5": "0df0219d3632ede5807dc2d5d13c854b", "pid": "043045820", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Stochastischer Prozess"}], "identifier": "http://d-nb.info/gnd/4304582-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4304582-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043045820", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4304582-0", "source": "GND"}], "authorized_access_point": "Nichtlinearer Prozess"} 1 +2024-09-10 15:44:43.087523 2024-09-10 15:44:43.087527 e39a3ea5-98c9-41b7-958c-1e3fd7acefb5 {"md5": "5e094b949973b82345b813b0aa8ec4b4", "pid": "043023932", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Koagulopathie"}, {"authorized_access_point": "Thrombotische Mikroangiopathie"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332910955", "source": "GND"}, {"type": "bf:Nbn", "value": "sh92002901", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh92002901"}], "authorized_access_point": "Thrombotic thrombocytopenic purpura"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332910955", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12259284", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12259284d"}], "authorized_access_point": "Purpura thrombotique thrombocytopénique"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1241613486", "source": "GND"}, {"type": "bf:Nbn", "value": "D011697", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D011697"}], "authorized_access_point": "Purpura, Thrombotic Thrombocytopenic"}], "identifier": "http://d-nb.info/gnd/4302393-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4302393-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043023932", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4302393-9", "source": "GND"}], "variant_access_point": ["Thrombotisch-thrombozytopenische Purpura", "Moschcowitz-Singer-Symmers-Syndrom"], "authorized_access_point": "Moschcowitz-Syndrom"} 1 +2024-09-10 15:44:43.170237 2024-09-10 15:44:43.170246 262a2b96-9f36-4298-9ead-1cef05653b79 {"md5": "7da5e0728a38a78dbbaaff22d0797dbe", "pid": "043007708", "note": [{"label": ["Mantik hat e. weitere Bedeutung als Wahrsagen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113479195X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85038589", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85038589"}], "authorized_access_point": "Divination"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113479195X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11938266", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11938266w"}], "authorized_access_point": "Divination"}], "identifier": "http://d-nb.info/gnd/4300770-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4300770-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043007708", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4300770-3", "source": "GND"}], "authorized_access_point": "Mantik"} 1 +2024-09-10 15:44:43.388644 2024-09-10 15:44:43.388647 4508e5f3-b4e6-471f-a9bf-d9dcaddd97a5 {"md5": "1a7acb2018052a5dc7a0eb31b7ee2a8c", "pid": "04296962X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Hüttenwartin"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334004277", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16721482", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb167214824"}], "authorized_access_point": "Gardiens de refuge"}], "identifier": "http://d-nb.info/gnd/4296962-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4296962-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04296962X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4296962-1", "source": "GND"}], "variant_access_point": ["Hüttenwirt", "Schutzhüttenwirt", "Schutzhüttenwart"], "authorized_access_point": "Hüttenwart"} 1 +2024-09-10 15:44:43.461121 2024-09-10 15:44:43.461129 2374b96c-54bd-42fc-a224-514a0c145ecf {"md5": "09f46753b20e5f11a7357d5a660662dd", "pid": "042936586", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Person of Color"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1136963847", "source": "GND"}, {"type": "bf:Nbn", "value": "30160-2", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/30160-2"}], "authorized_access_point": "People of Color"}], "identifier": "http://d-nb.info/gnd/4293658-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4293658-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042936586", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4293658-5", "source": "GND"}], "variant_access_point": ["Weibliche Person of Colour", "Weibliche Farbige", "Woman of Color", "Woman of Colour", "Farbige", "Farbige Frau", "Weibliche Black and People of Color", "Weibliche Black, Indigenous and People of Color", "Weibliche PoC", "Weibliche BPoC", "Weibliche BIPoC"], "authorized_access_point": "Weibliche Person of Color"} 1 +2024-09-10 15:44:43.553219 2024-09-10 15:44:43.553227 6b807f1f-f14b-47ef-8b1f-40b8e6e81163 {"md5": "5727bbf062436fbd29f4a22179ee1a2e", "pid": "042933854", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Polnisch-Schwedischer_Krieg_(1600%E2%80%931629)&oldid=179265478"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Krieg"}], "identifier": "http://d-nb.info/gnd/4293385-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4293385-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042933854", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4293385-7", "source": "GND"}], "variant_access_point": ["Schwedisch-Polnischer Krieg (1600-1629)"], "authorized_access_point": "Polnisch-Schwedischer Krieg (1600-1629)"} 1 +2024-09-10 15:44:43.632122 2024-09-10 15:44:43.632131 bfa91050-7770-4535-a451-3b0dcf060ba4 {"md5": "3df24f92ded5694e79e6d478443b296e", "pid": "042932297", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fraktal"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254397841", "source": "GND"}, {"type": "bf:Nbn", "value": "69810", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/69810"}], "authorized_access_point": "Tappeti di Sierpiński"}], "identifier": "http://d-nb.info/gnd/4293229-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4293229-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042932297", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4293229-4", "source": "GND"}], "variant_access_point": ["Sierpinski gasket"], "authorized_access_point": "Sierpinski-Dichtung"} 1 +2024-09-10 15:44:43.733399 2024-09-10 15:44:43.733403 9983bd85-ac35-4358-9211-25295eb0ec06 {"md5": "f0962c6fe0cc766523e165fc2f8ff047", "pid": "042928664", "note": [{"label": ["Nicht permutierendes USW nach bioaktiven Stoffen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133739253", "source": "GND"}, {"type": "bf:Nbn", "value": "sh90002304", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh90002304"}], "authorized_access_point": "Mechanism of action (Biochemistry)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134230044", "source": "GND"}, {"type": "bf:Nbn", "value": "sh00006598", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh00006598"}], "authorized_access_point": "Mechanism of action"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133739253", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12247262", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12247262d"}], "authorized_access_point": "Mécanisme d'action (biochimie)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134230044", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12247263", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12247263r"}], "authorized_access_point": "Mécanisme d'action"}], "identifier": "http://d-nb.info/gnd/4292866-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4292866-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042928664", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4292866-7", "source": "GND"}], "variant_access_point": ["Wirkungsweise", "Wirkprinzip"], "authorized_access_point": "Wirkungsmechanismus"} 1 +2024-09-10 15:44:43.827382 2024-09-10 15:44:43.827387 b4b71b96-41c9-4b04-8cd5-d60bb45dd9e2 {"md5": "44e6d67b98fd7adaa3e04d14c0f02996", "pid": "04291373X", "note": [{"label": ["Ohne USW für das Militär"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Niederlage"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334552770", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12308292", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb151000210"}], "authorized_access_point": "Victoire"}], "identifier": "http://d-nb.info/gnd/4291373-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4291373-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04291373X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4291373-1", "source": "GND"}], "authorized_access_point": "Sieg"} 1 +2024-09-10 15:44:43.906404 2024-09-10 15:44:43.906408 996775e5-62eb-4491-9e5e-ba88869a417a {"md5": "8a7f77fd18552461bb401c15dcb27a6c", "pid": "042912709", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Himmelsmechanik"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134443021", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85136957", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85136957"}], "authorized_access_point": "Transits"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134443021", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF14558309", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb14558309g"}], "authorized_access_point": "Passages (astronomie)"}], "identifier": "http://d-nb.info/gnd/4291270-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4291270-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042912709", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4291270-2", "source": "GND"}], "variant_access_point": ["Transit (Astronomie)"], "authorized_access_point": "Durchgang (Astronomie)"} 1 +2024-09-10 15:44:43.992807 2024-09-10 15:44:43.992815 aae9f52f-8141-4b6e-a236-7bbf583fffe5 {"md5": "ff00b4b530b85a860f92f8cd6795eff9", "pid": "042911915", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Xenismus"}, {"authorized_access_point": "Entlehnung"}], "related": [{"authorized_access_point": "Italienisch"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134157150", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2008124258", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2008124258"}], "authorized_access_point": "Italian language - Idioms"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134044984", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11977038", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11977038p"}], "authorized_access_point": "Emprunts italiens"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134157150", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12092334", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12092334x"}], "authorized_access_point": "Italianismes (idiotismes)"}], "identifier": "http://d-nb.info/gnd/4291191-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4291191-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042911915", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4291191-6", "source": "GND"}], "authorized_access_point": "Italianismus"} 1 +2024-09-10 15:44:44.084745 2024-09-10 15:44:44.084749 b08bdf75-9cfc-47f8-9ccc-e3f881781128 {"md5": "eae93269c1e99de64828442f81a6186c", "pid": "042909163", "note": [{"label": ["Benutzt für Stilprinzip"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Essay"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113450652X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85044913", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85044913"}], "authorized_access_point": "Essay"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113450652X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11948997", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119489979"}], "authorized_access_point": "Essai (genre littéraire)"}], "identifier": "http://d-nb.info/gnd/4290916-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4290916-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042909163", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4290916-8", "source": "GND"}], "authorized_access_point": "Essayismus"} 1 +2024-09-10 15:44:44.166688 2024-09-10 15:44:44.166692 325e98fe-309d-4ca7-acb5-8a7d2d8a96a6 {"md5": "3b4407e557609e0cb0c16c31444213d9", "pid": "042898250", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Harmonische Analyse"}], "related": [{"authorized_access_point": "Amenabilitätstheorie"}], "identifier": "http://d-nb.info/gnd/4289825-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4289825-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042898250", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4289825-0", "source": "GND"}], "variant_access_point": ["Amenability"], "authorized_access_point": "Amenabilität"} 1 +2024-09-10 15:44:44.257436 2024-09-10 15:44:44.25744 445114f0-7ecb-4fbc-bebc-0ad8062aca49 {"md5": "9df86a0dcfde738dfc5b1042effc5089", "pid": "042871255", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bilanzierungsgrundsätze"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134743416", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2004005271", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2004005271"}], "authorized_access_point": "Precautionary principle"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134743416", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13564166", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13564166v"}], "authorized_access_point": "Principe de précaution"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966706951", "source": "GND"}, {"type": "bf:Nbn", "value": "12432-4", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/12432-4"}], "authorized_access_point": "Vorsichtsprinzip"}], "identifier": "http://d-nb.info/gnd/4287125-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4287125-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042871255", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4287125-6", "source": "GND"}], "variant_access_point": ["Vorsichtsgrundsatz", "Bilanzvorsicht", "Bilanzvorsicht", "Vorsichtige Bilanzierung", "Prinzip der vorsichtigen Bewertung"], "authorized_access_point": "Vorsichtsprinzip"} 1 +2024-09-10 15:44:44.320285 2024-09-10 15:44:44.320287 abbb3a0f-0806-41fc-aaf9-2ae23a011347 {"md5": "8e3194fd6caac370041bfaf2853dd778", "pid": "042871093", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Stressreaktion"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134207492", "source": "GND"}, {"type": "bf:Nbn", "value": "sh00004602", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh00004602"}], "authorized_access_point": "Effect of drought on"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134207492", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12200367", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12200367w"}], "authorized_access_point": "Effets de la sécheresse"}], "identifier": "http://d-nb.info/gnd/4287109-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4287109-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042871093", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4287109-8", "source": "GND"}], "authorized_access_point": "Wasserstress"} 1 +2024-09-10 15:44:53.156314 2024-09-10 15:44:53.156319 17fa6270-b426-421a-9670-d38692e3abab {"md5": "b1d238c3d6494298f84c384fab24fd1c", "pid": "041898273", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Eintritt (Raumfahrt)"}], "identifier": "http://d-nb.info/gnd/4189827-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4189827-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041898273", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4189827-8", "source": "GND"}], "variant_access_point": ["Atmosphärenwiedereintritt", "Reentry"], "authorized_access_point": "Wiedereintritt"} 1 +2024-09-10 15:44:44.381056 2024-09-10 15:44:44.381061 6bc5b52d-caa2-4c97-b969-72d37b59e927 {"md5": "28982b259edb9743345fee377bff52db", "pid": "042868696", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334020086", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16556915", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16556915v"}], "authorized_access_point": "Meruliaceae"}], "identifier": "http://d-nb.info/gnd/4286869-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4286869-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042868696", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4286869-5", "source": "GND"}], "variant_access_point": ["Fältlinge", "Meruliaceae"], "authorized_access_point": "Faltenpilze"} 1 +2024-09-10 15:44:44.464126 2024-09-10 15:44:44.46413 c83fa16a-709f-42d4-8f0b-3bcc60228d1c {"md5": "7cfe7b2653b5467e3d200637a295c587", "pid": "042855098", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134229682", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12246565", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb122465651"}], "authorized_access_point": "Information financière"}], "identifier": "http://d-nb.info/gnd/4285509-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4285509-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042855098", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4285509-3", "source": "GND"}], "authorized_access_point": "Börseninformation"} 1 +2024-09-10 15:44:44.560029 2024-09-10 15:44:44.56004 e70896d5-e78b-4291-a710-1f9d569b23d7 {"md5": "f81352667e5e626d0354a72e6e3d16b4", "pid": "042854083", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333472862", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85090721", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85090721"}], "authorized_access_point": "Nemipteridae"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333472862", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17155703", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17155703h"}], "authorized_access_point": "Nemipteridae"}], "identifier": "http://d-nb.info/gnd/4285408-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4285408-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042854083", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4285408-8", "source": "GND"}], "variant_access_point": ["Nemipteridae"], "authorized_access_point": "Scheinschnapper"} 1 +2024-09-10 15:44:44.652096 2024-09-10 15:44:44.652101 133aafed-2b49-484a-acac-3764892a1e91 {"md5": "19b3aff4b2e744e278f202b8381fb6f4", "pid": "042829763", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Nationalfeiertag"}], "related": [{"authorized_access_point": "Wiedervereinigung (Deutschland)"}], "identifier": "http://d-nb.info/gnd/4282976-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4282976-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042829763", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4282976-8", "source": "GND"}], "variant_access_point": ["Dritter Oktober (Nationlfeiertag)", "3. Oktober (Nationalfeiertag)", "Tag der deutschen Vereinigung", "Siebzehnter Juni (Nationalfeiertag)", "17. Juni (Nationalfeiertag)"], "authorized_access_point": "Tag der deutschen Einheit"} 1 +2024-09-10 15:44:44.729841 2024-09-10 15:44:44.729851 2c145adb-9579-47e2-b3a7-9d373b40b1a2 {"md5": "8da00007ea5a49199da4cf9081a786b2", "pid": "042829194", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Operatoralgebra"}], "identifier": "http://d-nb.info/gnd/4282919-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4282919-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042829194", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4282919-7", "source": "GND"}], "authorized_access_point": "Cuntz-Algebra"} 1 +2024-09-10 15:44:44.812017 2024-09-10 15:44:44.812021 b30df2a8-1020-4a4f-b021-18bfb9638f31 {"md5": "5df010ba700a292e9f0cd0907b3dd569", "pid": "042828465", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133824234", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85038225", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85038225"}], "authorized_access_point": "Dippers (Birds)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133824234", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13621371", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13621371m"}], "authorized_access_point": "Cincles"}], "identifier": "http://d-nb.info/gnd/4282846-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4282846-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042828465", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4282846-6", "source": "GND"}], "variant_access_point": ["Cinclidae"], "authorized_access_point": "Wasseramseln (Familie)"} 1 +2024-09-10 15:44:44.881892 2024-09-10 15:44:44.881899 eb98f27e-5a23-4dc5-9ea7-6df33d3bd9d3 {"md5": "6cfe564de16ac16ef809c92e20eba0b4", "pid": "042825210", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4282521-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4282521-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042825210", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4282521-0", "source": "GND"}], "variant_access_point": ["Riss"], "authorized_access_point": "Rissverlauf"} 1 +2024-09-10 15:44:44.963058 2024-09-10 15:44:44.963063 1ea873e9-919d-4a58-a596-8a0b0ad4312d {"md5": "9374e9005760b6a845d5808e7e96d189", "pid": "042819415", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Profil (Aerodynamik)"}], "identifier": "http://d-nb.info/gnd/4281941-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4281941-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042819415", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4281941-6", "source": "GND"}], "authorized_access_point": "Laminarprofil"} 1 +2024-09-10 15:44:53.706433 2024-09-10 15:44:53.706438 d42911f9-6234-4641-bf10-5d6fe8b40c05 {"md5": "df75e2d0099b1e9ef506dce76efcd979", "pid": "041884612", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Vizekanzlerin"}], "identifier": "http://d-nb.info/gnd/4188461-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4188461-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041884612", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4188461-9", "source": "GND"}], "authorized_access_point": "Vizekanzler"} 1 +2024-09-10 15:44:45.051191 2024-09-10 15:44:45.051195 a0962e5c-8998-441e-9ca5-8ca291e8aa5a {"md5": "143cbdfdbbb5d8ec8f5576ca36b5be8a", "pid": "042817293", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Katharina_Wasa_(1539%E2%80%931610)&oldid=207626567"], "noteType": "dataSource"}, {"label": ["Vermutl. Intima zwischen Cecilia v. Schweden und Johann v. Ostfriesland"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Politischer Skandal"}], "related": [{"authorized_access_point": "Liebesbeziehung"}], "identifier": "http://d-nb.info/gnd/4281729-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4281729-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042817293", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4281729-8", "source": "GND"}], "variant_access_point": ["Vadstena-Lärm"], "authorized_access_point": "Vadstena-Affäre"} 1 +2024-09-10 15:44:45.146147 2024-09-10 15:44:45.146159 2c468d88-58b8-4ef1-b230-11c957fd8722 {"md5": "c537ad59f5917e176224cbab947bcd44", "pid": "042813905", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113377640X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12337857", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12337857f"}], "authorized_access_point": "Gorgones (animaux)"}], "identifier": "http://d-nb.info/gnd/4281390-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4281390-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042813905", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4281390-6", "source": "GND"}], "variant_access_point": ["Rindenkorallen", "Gorgonaria", "Gorgonien"], "authorized_access_point": "Hornkorallen"} 1 +2024-09-10 15:44:45.234712 2024-09-10 15:44:45.234716 78beec50-5019-43d6-9798-0678c4d8f763 {"md5": "926f8f16a61a0580bb532eddf6f26816", "pid": "042803098", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Terminbörse"}, {"authorized_access_point": "Warenbörse"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134086660", "source": "GND"}, {"type": "bf:Nbn", "value": "sh88001652", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh88001652"}], "authorized_access_point": "Commodity futures"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134086660", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11993552", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119935522"}], "authorized_access_point": "Bourses de marchandises"}], "identifier": "http://d-nb.info/gnd/4280309-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4280309-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042803098", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4280309-3", "source": "GND"}], "authorized_access_point": "Warenterminbörse"} 1 +2024-09-10 15:44:45.316853 2024-09-10 15:44:45.316856 27bae608-515c-4d7b-b8df-e87b06d59ff6 {"md5": "9190ff6512ac03aa6b04c3e64766698d", "pid": "042798779", "note": [{"label": ["Benutzt für Westdeutsche bzw. Bewohner der Bundesrepublik Deutschland (vor 1990) ausserhalb Deutschland "], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Deutsche"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332874800", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF177016487", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb177016487"}], "authorized_access_point": "Allemands de l'Ouest"}], "identifier": "http://d-nb.info/gnd/4279877-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4279877-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042798779", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4279877-2", "source": "GND"}], "variant_access_point": ["Deutsche (Westliche Länder)", "Deutsche (Bundesrepublik)"], "authorized_access_point": "Westdeutsche"} 1 +2024-09-10 15:44:45.402006 2024-09-10 15:44:45.402011 774e9027-56d2-4d34-86f9-fcbd576f2121 {"md5": "332d4456dfc1f306649bde543975fd9a", "pid": "042798760", "note": [{"label": ["Benutzt für Ostdeutsche, soweit ausserhalb Deutschland lebend"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Deutsche"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332874002", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17701910", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17701910c"}], "authorized_access_point": "Allemands de l'Est"}], "identifier": "http://d-nb.info/gnd/4279876-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4279876-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042798760", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4279876-0", "source": "GND"}], "variant_access_point": ["Deutsche (Östliche Länder)"], "authorized_access_point": "Ostdeutsche"} 1 +2024-09-10 15:44:45.470772 2024-09-10 15:44:45.470776 339c49b5-9c62-46b7-ab9d-872fe31b4e77 {"md5": "d14e2e528be08bf0875f62e9e8f04c79", "pid": "042798477", "note": [{"label": ["Art der Kapuzinerartigen Affen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kapuzineraffenartige"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333261721", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85021586", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85021586"}], "authorized_access_point": "Cebus apella"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333261721", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16244425", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16244425k"}], "authorized_access_point": "Sajou apelle"}], "identifier": "http://d-nb.info/gnd/4279847-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4279847-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042798477", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4279847-4", "source": "GND"}], "variant_access_point": ["Apella (Zoologie)", "Faunaffe", "Cebus apella"], "authorized_access_point": "Gehaubter Kapuziner"} 1 +2024-09-10 15:44:45.538457 2024-09-10 15:44:45.538466 6f6e8a8e-1f08-4151-8679-9e294bdaa36e {"md5": "2dc64397ba91eed1bfefed3df41255ec", "pid": "042773539", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Proteine"}], "related": [{"authorized_access_point": "Rekombinante DNS"}, {"authorized_access_point": "Recombinasen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133738346", "source": "GND"}, {"type": "bf:Nbn", "value": "sh90005744", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh90005744"}], "authorized_access_point": "Recombinant proteins"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133738346", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12242267", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12242267x"}], "authorized_access_point": "Protéines recombinées"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331727316", "source": "GND"}, {"type": "bf:Nbn", "value": "D011994", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D011994"}], "authorized_access_point": "Recombinant Proteins"}], "identifier": "http://d-nb.info/gnd/4277353-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4277353-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042773539", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4277353-2", "source": "GND"}], "variant_access_point": ["Rekombinante Substanz", "Hybrid-Protein", "Rekombiniertes Protein", "Fusionsprotein"], "authorized_access_point": "Rekombinantes Protein"} 1 +2024-09-10 15:44:45.622298 2024-09-10 15:44:45.622305 0f05c577-7171-4897-beda-483fa0358dfb {"md5": "719abf58034586ca4054f47d704d685f", "pid": "042763568", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4276356-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4276356-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042763568", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4276356-3", "source": "GND"}], "variant_access_point": ["Kommandant (Lagerkommandant)"], "authorized_access_point": "Lagerkommandant"} 1 +2024-09-10 15:44:45.703019 2024-09-10 15:44:45.703023 3677a675-0d6a-4df4-9cdc-ae47d044f2e7 {"md5": "a074a87a08edac501302a26fcac0e50b", "pid": "04276243X", "note": [{"label": ["Als öffentliche Ordnung bezeichnet man die Gesamtheit außerrechtlicher ungeschriebener Regeln für das Verhalten des Einzelnen in der Öffentlichkeit, deren Beachtung nach den jeweils herrschenden Anschauungen für ein geordnetes staatsbürgerliches Zusammenleben unerlässlich ist."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134595816", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85108741", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85108741"}], "authorized_access_point": "Public policy"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134595816", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11972065", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11972065c"}], "authorized_access_point": "Ordre public"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970607997", "source": "GND"}, {"type": "bf:Nbn", "value": "10047519", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10047519"}], "authorized_access_point": "öffentliche Ordnung"}], "identifier": "http://d-nb.info/gnd/4276243-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4276243-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04276243X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4276243-1", "source": "GND"}], "authorized_access_point": "Öffentliche Ordnung"} 1 +2024-09-10 15:44:45.795964 2024-09-10 15:44:45.795969 194bcedb-33d9-44a0-9fcc-101a3aef1d72 {"md5": "0a8881612d9ff2c52d1cb871dc79cd22", "pid": "042755255", "note": [{"label": ["Gattung der Buntbarsche"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Buntbarsche"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133396207X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh92000995", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh92000995"}], "authorized_access_point": "Tylochromis"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133396207X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17801991", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17801991c"}], "authorized_access_point": "Tylochromis"}], "identifier": "http://d-nb.info/gnd/4275525-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4275525-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042755255", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4275525-6", "source": "GND"}], "authorized_access_point": "Tylochromis"} 1 +2024-09-10 15:44:45.904675 2024-09-10 15:44:45.904686 1689fdb5-9286-4248-ac98-e38e689cfb85 {"md5": "a0e44d07b4eca4571d8f37157e44f422", "pid": "04275206X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zelle"}], "related": [{"authorized_access_point": "Osteoklast"}, {"authorized_access_point": "Osteozyt"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133798454", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12442115", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12442115r"}], "authorized_access_point": "Ostéoblastes"}], "identifier": "http://d-nb.info/gnd/4275206-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4275206-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04275206X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4275206-1", "source": "GND"}], "variant_access_point": ["Cellula osteoblastica", "Osteoplast"], "authorized_access_point": "Osteoblast"} 1 +2024-09-10 15:44:59.078027 2024-09-10 15:44:59.078032 2eb7bbcb-ac52-4490-9e07-cd374b778534 {"md5": "82ca1f11022a2f8c73d1b5f631c026cd", "pid": "041691504", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zwergmoschustiere"}], "identifier": "http://d-nb.info/gnd/4169150-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4169150-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041691504", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4169150-7", "source": "GND"}], "variant_access_point": ["Kantschil", "Tragulus"], "authorized_access_point": "Maushirsch"} 1 +2024-09-10 15:44:46.006956 2024-09-10 15:44:46.006964 7bc41882-6d25-4b2b-b899-ad280d869d17 {"md5": "428e8fdf4fd6cc846fa04cc5914940d9", "pid": "042749298", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Krebs (Medizin)"}, {"authorized_access_point": "Thoraxtumor"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134574444", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2010008992", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2010008992"}], "authorized_access_point": "Chest - Cancer"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1241624984", "source": "GND"}, {"type": "bf:Nbn", "value": "D013899", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D013899"}], "authorized_access_point": "Thoracic Neoplasms"}], "identifier": "http://d-nb.info/gnd/4274929-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4274929-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042749298", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4274929-3", "source": "GND"}], "variant_access_point": ["Thorax (Medizin)", "Thoraxkarzinom", "Thoraxcarcinom", "Brustkorb", "Brustorgan", "Brustkorbkrebs"], "authorized_access_point": "Thoraxkrebs"} 1 +2024-09-10 15:44:46.106319 2024-09-10 15:44:46.106329 6f05eef8-3707-4a37-ab1e-9df300d4d8fb {"md5": "168ec8b58853486b6de4676fc6590fed", "pid": "042740983", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Thyristor"}, {"authorized_access_point": "Abschaltbarer Leistungshalbleiter"}], "identifier": "http://d-nb.info/gnd/4274098-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4274098-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042740983", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4274098-8", "source": "GND"}], "variant_access_point": ["Feldgesteuerter Thyristor", "FTD", "SI-Thyristor", "Bipolarer Gridistor"], "authorized_access_point": "FCT"} 1 +2024-09-10 15:44:46.192492 2024-09-10 15:44:46.192497 da9c434d-40f7-467d-8c0e-ff5764e40622 {"md5": "598bed2ccc0e48d4603e84e20035b254", "pid": "042728622", "note": [{"label": ["Benutzt für Musik"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Musiker"}], "related": [{"authorized_access_point": "Solist"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332757650", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16949658", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16949658h"}], "authorized_access_point": "Virtuoses (musique)"}], "identifier": "http://d-nb.info/gnd/4272862-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4272862-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042728622", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4272862-9", "source": "GND"}], "variant_access_point": ["Kammervirtuose"], "authorized_access_point": "Virtuose"} 1 +2024-09-10 15:44:46.281825 2024-09-10 15:44:46.28183 4b05f387-62b0-4850-8c9d-881ab63dbde8 {"md5": "c5e9e266686a7c08a7150b86de74aa39", "pid": "042725739", "note": [{"label": ["Handeln auf der Grundlage von Zweckmäßigkeit. Oft abwertend im Sinn von \\"charakterlosem Verhalten\\" verwendet."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Politische Ethik"}], "related": [{"authorized_access_point": "Pragmatismus"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1068404876", "source": "GND"}, {"type": "bf:Nbn", "value": "30005-0", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/30005-0"}], "authorized_access_point": "Opportunismus"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970577095", "source": "GND"}, {"type": "bf:Nbn", "value": "10053773", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10053773"}], "authorized_access_point": "Opportunismus"}], "identifier": "http://d-nb.info/gnd/4272573-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4272573-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042725739", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4272573-2", "source": "GND"}], "variant_access_point": ["Pragmatismus"], "authorized_access_point": "Opportunismus"} 1 +2024-09-10 15:44:46.354362 2024-09-10 15:44:46.354365 4e88676b-ff31-4266-9668-83d155a11ff7 {"md5": "bb0a69cb8d4e8d2a5d7404bda5ad29bb", "pid": "042707870", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113459996X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12502627", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12502627g"}], "authorized_access_point": "Or comme valeur de placement"}], "identifier": "http://d-nb.info/gnd/4270787-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4270787-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042707870", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4270787-0", "source": "GND"}], "authorized_access_point": "Goldreserve"} 1 +2024-09-10 15:44:46.436402 2024-09-10 15:44:46.436406 a905d43f-c967-4d53-b3d2-e060c8994c8e {"md5": "13765dd2f8c3a02caa47226c94976664", "pid": "042667208", "note": [{"label": ["Als Homonymenzusatz bei Personenschlagworten zugelassen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Verlag"}, {"authorized_access_point": "Verleger"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134507925", "source": "GND"}, {"type": "bf:Nbn", "value": "sh92005004", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh92005004"}], "authorized_access_point": "Women editors"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331604567", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85147695", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85147695"}], "authorized_access_point": "Women publishers"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134507925", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13505351", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13505351c"}], "authorized_access_point": "Éditrices"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331604567", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13505351", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13505351c"}], "authorized_access_point": "Éditrices"}], "identifier": "http://d-nb.info/gnd/4266720-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4266720-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042667208", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4266720-3", "source": "GND"}], "variant_access_point": ["Verlagsleiterin"], "authorized_access_point": "Verlegerin"} 1 +2024-09-10 15:44:46.528406 2024-09-10 15:44:46.52841 ebbf3872-d89c-4981-b863-27c3b00db989 {"md5": "f5c46725a40638209a526eb637c694fd", "pid": "04264044X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Ostozeanisch"}], "identifier": "http://d-nb.info/gnd/4264044-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4264044-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04264044X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4264044-1", "source": "GND"}], "variant_access_point": ["Mikronesisch"], "authorized_access_point": "Mikronesische Sprachen"} 1 +2024-09-10 15:44:46.598251 2024-09-10 15:44:46.59826 998d7dd4-a64e-4300-9542-c93257f0cae8 {"md5": "0aaa323b8df7c3f65586f1c3549bbc7e", "pid": "042625025", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Pflanzen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133929443", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85099785", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85099785"}], "authorized_access_point": "Perennials"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133929443", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11932972", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119329729"}], "authorized_access_point": "Plantes vivaces"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254408150", "source": "GND"}, {"type": "bf:Nbn", "value": "XX544340", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX544340"}], "authorized_access_point": "Plantas vivaces"}], "identifier": "http://d-nb.info/gnd/4262502-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4262502-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042625025", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4262502-6", "source": "GND"}], "variant_access_point": ["Perennierende Pflanzen"], "authorized_access_point": "Ausdauernde Pflanzen"} 1 +2024-09-10 15:44:46.683038 2024-09-10 15:44:46.683047 bee7c9fc-e986-4b84-8870-03c3dfa2e723 {"md5": "7fd16d82197438ea5ea0444ad75b7cbf", "pid": "042616727", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Räumliche Verteilung"}], "related": [{"authorized_access_point": "Tiefenprofilmessung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134129041", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12043931", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12043931r"}], "authorized_access_point": "Distribution verticale"}], "identifier": "http://d-nb.info/gnd/4261672-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4261672-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042616727", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4261672-4", "source": "GND"}], "authorized_access_point": "Tiefenverteilung"} 1 +2024-09-10 15:44:46.768686 2024-09-10 15:44:46.768691 a7d2f8dc-c083-4777-bb19-e9f1ad4e2649 {"md5": "52ed1fbb8596099160306a782961b22b", "pid": "042612292", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Drosseln"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134326912", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85125035", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85125035"}], "authorized_access_point": "Song thrush"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134326912", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12443231", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12443231h"}], "authorized_access_point": "Grive musicienne"}], "identifier": "http://d-nb.info/gnd/4261229-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4261229-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042612292", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4261229-9", "source": "GND"}], "variant_access_point": ["Turdus philomelos"], "authorized_access_point": "Singdrossel"} 1 +2024-09-10 15:44:46.845671 2024-09-10 15:44:46.845674 d666f971-12bb-47ee-990d-8acd26e6650d {"md5": "05b0fcc144ea32a144fa2e0664659aec", "pid": "042556740", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113360269X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12453839", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb124538394"}], "authorized_access_point": "Tournées (arts du spectacle)"}], "identifier": "http://d-nb.info/gnd/4255674-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4255674-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042556740", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4255674-0", "source": "GND"}], "variant_access_point": ["Tournee"], "authorized_access_point": "Gastspiel"} 1 +2024-09-10 15:44:46.912712 2024-09-10 15:44:46.912715 edd38c7a-aa56-4473-b047-78359359b53d {"md5": "3ab5648d2157cf4d47ec268e89b71492", "pid": "042552192", "note": [{"label": ["Schätzverfahren der empirischen Sozialforschung, bei denen Auskunftspersonen Personen bzw. Sachverhalte anhand einer vorgegebenen Skala beurteilen. Verknüpfe mit Anwendungsgebiet."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Skalierung"}, {"authorized_access_point": "Ranking"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1027503195", "source": "GND"}, {"type": "bf:Nbn", "value": "10080932", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10080932"}], "authorized_access_point": "Rating"}], "identifier": "http://d-nb.info/gnd/4255219-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4255219-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042552192", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4255219-9", "source": "GND"}], "authorized_access_point": "Rating"} 1 +2024-09-10 15:44:47.010651 2024-09-10 15:44:47.010653 f4b7ac4f-add8-40ea-b070-f03fb24ebefd {"md5": "f8f931a21b100d400cdb9d9722e1c92f", "pid": "04252184X", "note": [{"label": ["Kunstzentrum mit Ateliers, Veranstaltungsort für Theaterspiel, Produktionsstätten", "Kein OB für Wohnhäuser von Künstlern. Hierfür benutze neben der architektonischen Gattungsbezeichnung Haus, Villa, Gartenhaus etc. gegebenenfalls Atelierhaus oder Literarische Stätte"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kulturgebäude"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133799965", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12447905", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12447905v"}], "authorized_access_point": "Résidences d'artistes"}], "identifier": "http://d-nb.info/gnd/4252184-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4252184-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04252184X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4252184-1", "source": "GND"}], "authorized_access_point": "Künstlerhaus"} 1 +2024-09-10 15:44:47.110821 2024-09-10 15:44:47.110825 b2cc8b5a-4afc-475d-9644-5f2cb47132af {"md5": "fc4214f749aa52905d3f85ff3b387904", "pid": "04251729X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sonnenbarsche (Familie)"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333375859", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85123609", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85123609"}], "authorized_access_point": "Smallmouth bass"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333375859", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17800584", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17800584r"}], "authorized_access_point": "Black-bass à petite bouche"}], "identifier": "http://d-nb.info/gnd/4251729-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4251729-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04251729X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4251729-1", "source": "GND"}], "variant_access_point": ["Micropterus dolomieui"], "authorized_access_point": "Schwarzbarsch"} 1 +2024-09-10 15:44:47.189531 2024-09-10 15:44:47.189534 97b0b21c-9a5e-4fd2-ada2-8c2c5446bee4 {"md5": "d95351e2eb0091761dc8359e86ce192b", "pid": "042496918", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Renaturierung (Ökologie)"}, {"authorized_access_point": "Rekultivierung"}, {"authorized_access_point": "Naturnahe Pflege"}], "identifier": "http://d-nb.info/gnd/4249691-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4249691-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042496918", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4249691-3", "source": "GND"}], "variant_access_point": ["Naturnaher Ausbau", "Naturnahe Umgestaltung"], "authorized_access_point": "Naturnahe Gestaltung"} 1 +2024-09-10 15:44:47.27416 2024-09-10 15:44:47.274164 fba6bf34-4deb-44cf-bd46-82157eb08bda {"md5": "95a2e0283d390c3f6ac6f46a8b0006af", "pid": "042496896", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gewässerausbau"}, {"authorized_access_point": "Naturnahe Gestaltung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134708971", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13745579", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13745579g"}], "authorized_access_point": "Rives - Aménagement"}], "identifier": "http://d-nb.info/gnd/4249689-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4249689-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042496896", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4249689-5", "source": "GND"}], "variant_access_point": ["Naturnaher Gewässerbau"], "authorized_access_point": "Naturnaher Gewässerausbau"} 1 +2024-09-10 15:44:47.3576 2024-09-10 15:44:47.357602 385eb0f6-ebba-4cff-85f9-3208d4c8d43d {"md5": "76e7601a60c4bdbca724c4ed84bedbe8", "pid": "042491010", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4249101-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4249101-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042491010", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4249101-0", "source": "GND"}], "variant_access_point": ["Sample-and-hold-Schaltung", "Abtast-halte-Schaltung"], "authorized_access_point": "Abtast- und Haltekreis"} 1 +2024-09-10 15:44:47.421422 2024-09-10 15:44:47.421424 35ca044e-1318-4851-8958-d682ccb4ec22 {"md5": "1e7506b3fdbb241801a600d369f75730", "pid": "042479770", "note": [{"label": ["Brasilian. indigene Gruppe"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Indianer"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134334915", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12466779", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb124667791"}], "authorized_access_point": "Wari' (Indiens)"}], "identifier": "http://d-nb.info/gnd/4247977-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4247977-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042479770", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4247977-0", "source": "GND"}], "authorized_access_point": "Pakaá nova"} 1 +2024-09-10 15:44:47.502349 2024-09-10 15:44:47.502354 4946fbe1-816e-4480-ac78-4633fbd3f568 {"md5": "8e6ff53f1f8ff2651569b411c13d8941", "pid": "042466199", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113455026X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85052608", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85052608"}], "authorized_access_point": "Future, The, in literature"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134550278", "source": "GND"}, {"type": "bf:Nbn", "value": "sh99001312", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh99001312"}], "authorized_access_point": "Future in art"}], "identifier": "http://d-nb.info/gnd/4246619-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4246619-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042466199", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4246619-2", "source": "GND"}], "authorized_access_point": "Zukunft (Motiv)"} 1 +2024-09-10 15:44:48.175136 2024-09-10 15:44:48.17514 9b858ae0-345c-4819-b8db-cdf4d9523d33 {"md5": "e6749f90cee7d1679bb2b991867cffe2", "pid": "042363527", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Betriebshaftpflichtversicherung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134126891", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85067017", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85067017"}], "authorized_access_point": "Products liability insurance"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134126891", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12039818", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12039818h"}], "authorized_access_point": "Assurance de responsabilité civile des produits"}], "identifier": "http://d-nb.info/gnd/4236352-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4236352-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042363527", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4236352-4", "source": "GND"}], "variant_access_point": ["Produkthaftungsversicherung", "Produzentenhaftpflichtversicherung"], "authorized_access_point": "Produkthaftpflichtversicherung"} 1 +2024-09-10 15:44:47.585126 2024-09-10 15:44:47.58513 85af631e-8b48-4e55-9f53-a056c9f858f1 {"md5": "f0c58f0f7772e6f7af6af2a46a266518", "pid": "04245395X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134007892", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85109450", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85109450"}], "authorized_access_point": "Quantity (Philosophy)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134007892", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11965167", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11965167v"}], "authorized_access_point": "Quantité (philosophie)"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)97058346X", "source": "GND"}, {"type": "bf:Nbn", "value": "10044683", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10044683"}], "authorized_access_point": "Quantität"}], "identifier": "http://d-nb.info/gnd/4245395-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4245395-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04245395X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4245395-1", "source": "GND"}], "authorized_access_point": "Quantität"} 1 +2024-09-10 15:44:47.665982 2024-09-10 15:44:47.665985 1785b1fd-f2aa-42a2-b6a4-71e0efdb504c {"md5": "dc8492ba84d18d6e5e704602d70c312a", "pid": "042439086", "note": [{"label": ["Verknüpfe ggf. mit Sprachbezeichnung u. hier nicht permutierender Wortart: z.B. Griechisch / Substantiv / telōnēs"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4243908-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4243908-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042439086", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4243908-5", "source": "GND"}], "variant_access_point": ["τελώνης"], "authorized_access_point": "telōnēs"} 1 +2024-09-10 15:44:47.750905 2024-09-10 15:44:47.750909 6a9d738e-3cc4-4bb4-821e-45b82af07535 {"md5": "42cc1fde955849880e5d4bca9d07b7a5", "pid": "042433517", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=RoRo-Schiff&oldid=233657111"], "noteType": "dataSource"}, {"label": ["Frachtschiffe, die bewegliche Güter transportieren, die auf die Schiffe gefahren werden (RoRo-Verfahren)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Frachtschiff"}], "identifier": "http://d-nb.info/gnd/4243351-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4243351-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042433517", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4243351-4", "source": "GND"}], "variant_access_point": ["Ro-ro-Schiff", "RoRo-Schiff", "Roll-on-/Roll-off-Schiff", "RORO ship"], "authorized_access_point": "Roll-on-roll-off-Schiff"} 1 +2024-09-10 15:44:47.839214 2024-09-10 15:44:47.839225 a9151413-d851-4c0d-8582-dc4932999e6e {"md5": "2319bbb3d40477724cf2a27d1cec006b", "pid": "042427045", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckwerk"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133158230X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF18015044", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb180150449"}], "authorized_access_point": "Tirés à part"}], "identifier": "http://d-nb.info/gnd/4242704-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4242704-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042427045", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4242704-6", "source": "GND"}], "variant_access_point": ["Sonderabdruck"], "authorized_access_point": "Sonderdruck"} 1 +2024-09-10 15:44:47.908901 2024-09-10 15:44:47.908905 de31a865-506f-4b4e-a8d0-d07c2889e6e4 {"md5": "9e50de998111b8b99577eb61b67aa73e", "pid": "042416795", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sprachverstehen"}, {"authorized_access_point": "Textverarbeitung (Psycholinguistik)"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133936881", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85111686", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85111686"}], "authorized_access_point": "Reading comprehension"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133936881", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12303769", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12303769k"}], "authorized_access_point": "Lecture - Aspect cognitif"}], "identifier": "http://d-nb.info/gnd/4241679-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4241679-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042416795", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4241679-6", "source": "GND"}], "variant_access_point": ["Verstehen", "Textverständnis", "Leseverstehen (Muttersprache)"], "authorized_access_point": "Textverstehen"} 1 +2024-09-10 15:44:47.988405 2024-09-10 15:44:47.988414 77f649f3-fda9-4bbe-b4bf-b3adcd280023 {"md5": "96a5d4738db2fe70026ef35c2d5b0437", "pid": "042402883", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifier": "http://d-nb.info/gnd/4240288-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4240288-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042402883", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4240288-8", "source": "GND"}], "authorized_access_point": "Friedliche Revolution in der DDR (Motiv)"} 1 +2024-09-10 15:44:48.084409 2024-09-10 15:44:48.084413 8f88b809-9e61-479d-8659-73c60144baeb {"md5": "7b5f124c523dbcec475f20b65516c687", "pid": "042402239", "note": [{"label": ["Verknüpfe mit Anwendungsgebiet"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134832060", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11979799", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119797999"}], "authorized_access_point": "Honnêteté"}], "identifier": "http://d-nb.info/gnd/4240223-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4240223-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042402239", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4240223-2", "source": "GND"}], "authorized_access_point": "Korrektheit"} 1 +2024-09-10 15:44:48.265869 2024-09-10 15:44:48.265874 23610aca-7c25-4404-8e67-f4f53c133062 {"md5": "41d318bd44e3a949907296e5305ce9da", "pid": "042362466", "note": [{"label": ["Sampling bezeichnet eine musikalische Kopierpraxis, bei der eine digitale Kopie eines Klangs in einen neuen musikalischen Zusammenhang gestellt wird."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134372469", "source": "GND"}, {"type": "bf:Nbn", "value": "sh96010851", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh96010851"}], "authorized_access_point": "Sampling (Sound)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134372469", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12572200", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12572200s"}], "authorized_access_point": "Synthèse sonore"}], "identifier": "http://d-nb.info/gnd/4236246-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4236246-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042362466", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4236246-5", "source": "GND"}], "variant_access_point": ["Sound sampling"], "authorized_access_point": "Sampling (Musik)"} 1 +2024-09-10 15:44:48.351207 2024-09-10 15:44:48.35121 5ef77da5-06ec-4db3-ae0a-7f186b080776 {"md5": "a860889eea40d662242697331c7e0105", "pid": "042349885", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifier": "http://d-nb.info/gnd/4234988-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4234988-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042349885", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4234988-6", "source": "GND"}], "authorized_access_point": "Wandel (Motiv)"} 1 +2024-09-10 15:44:48.41307 2024-09-10 15:44:48.413075 73ef91ae-356a-437f-9c92-1c2623f52908 {"md5": "a149f4e1f00c8441d6f761acd50f8c89", "pid": "042349877", "note": [{"label": ["In der Regel für historische Vorgänge verwendet", "In Verknüpfung mit anderen Schlagwörtern i.d.R. nicht permutierend"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133693466", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85022510", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85022510"}], "authorized_access_point": "Change"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133693466", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13319201", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13319201c"}], "authorized_access_point": "Changement (philosophie)"}], "identifier": "http://d-nb.info/gnd/4234987-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4234987-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042349877", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4234987-4", "source": "GND"}], "variant_access_point": ["Wandlung (Wandel)"], "authorized_access_point": "Wandel"} 1 +2024-09-10 15:44:48.500595 2024-09-10 15:44:48.5006 25b0623b-f3fe-4220-9311-26135e44f196 {"md5": "96daab3a63b1289d03086c0abde59a16", "pid": "042319986", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bildungsökonomie"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133922295", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11931253", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11931253v"}], "authorized_access_point": "Enseignement supérieur - Aspect économique"}], "identifier": "http://d-nb.info/gnd/4231998-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4231998-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042319986", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4231998-5", "source": "GND"}], "variant_access_point": ["Hochschule", "Hochschulwesen", "Hochschulökonomik"], "authorized_access_point": "Hochschulökonomie"} 1 +2024-09-10 15:44:48.583758 2024-09-10 15:44:48.583761 59c08d29-823e-4466-bd91-829b7f628283 {"md5": "0cd157efdb4cab0b7c8ca91f879c20d4", "pid": "04231416X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Vögel"}, {"authorized_access_point": "Schädling"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133637655", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85014297", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85014297"}], "authorized_access_point": "Bird pests"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133637655", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11944219", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11944219m"}], "authorized_access_point": "Oiseaux nuisibles"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256254495", "source": "GND"}, {"type": "bf:Nbn", "value": "5243", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_5243"}], "authorized_access_point": "noxious birds"}], "identifier": "http://d-nb.info/gnd/4231416-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4231416-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04231416X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4231416-1", "source": "GND"}], "variant_access_point": ["Schädliche Vögel"], "authorized_access_point": "Schadvögel"} 1 +2024-09-10 15:44:48.653561 2024-09-10 15:44:48.653565 0061a52b-2ccf-4c73-b703-b05c65937711 {"md5": "45dcdb0027543de2d5ed1342950b5442", "pid": "042294118", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Markenverletzung"}], "related": [{"authorized_access_point": "Produktpiraterie"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1027738478", "source": "GND"}, {"type": "bf:Nbn", "value": "10080065", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10080065"}], "authorized_access_point": "Produktpiraterie"}], "identifier": "http://d-nb.info/gnd/4229411-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4229411-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042294118", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4229411-3", "source": "GND"}], "variant_access_point": ["Markenfälschung", "Trademark piracy", "Trademark counterfeiting", "Piraterie de marque"], "authorized_access_point": "Markenpiraterie"} 1 +2024-09-10 15:44:48.758072 2024-09-10 15:44:48.758076 feb06363-c858-440f-8d48-c896f874ab83 {"md5": "64e84c9550025981477f531239f9c3b2", "pid": "042259177", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Disposition (Medizin)"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134614748", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85037625", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85037625"}], "authorized_access_point": "Disease susceptibility"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134614748", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12255741", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12255741j"}], "authorized_access_point": "Prédisposition (médecine)"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1241636885", "source": "GND"}, {"type": "bf:Nbn", "value": "D004198", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D004198"}], "authorized_access_point": "Disease Susceptibility"}], "identifier": "http://d-nb.info/gnd/4225917-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4225917-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042259177", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4225917-4", "source": "GND"}], "authorized_access_point": "Prädisposition"} 1 +2024-09-10 15:44:48.859316 2024-09-10 15:44:48.859319 5b3d5211-5fb8-40fe-beba-2dec865e1d6a {"md5": "a9de074bdaa6e0558637f9f95dac1226", "pid": "042250234", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Wolfsmilchgewächse"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134648898", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2017004395", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2017004395"}], "authorized_access_point": "Jatropha curcas"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134648898", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF15542948", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb15542948h"}], "authorized_access_point": "Jatropha curcas"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)125624919X", "source": "GND"}, {"type": "bf:Nbn", "value": "16254", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_16254"}], "authorized_access_point": "Jatropha curcas"}], "identifier": "http://d-nb.info/gnd/4225023-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4225023-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042250234", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4225023-7", "source": "GND"}], "variant_access_point": ["Jatropha curcas"], "authorized_access_point": "Purgiernuss"} 1 +2024-09-10 15:44:48.94681 2024-09-10 15:44:48.946815 3c7d8966-73b9-4e62-8dfc-619b8979353e {"md5": "361a64fdedf22bb9ef20dd9529e0a209", "pid": "042237688", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Erfolg"}], "related": [{"authorized_access_point": "Unternehmensergebnis"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134694016", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85129589", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85129589"}], "authorized_access_point": "Success in business"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134694016", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12004278", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12004278w"}], "authorized_access_point": "Succès dans les affaires"}], "identifier": "http://d-nb.info/gnd/4223768-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4223768-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042237688", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4223768-3", "source": "GND"}], "variant_access_point": ["Unternehmen"], "authorized_access_point": "Unternehmenserfolg"} 1 +2024-09-10 15:44:49.045938 2024-09-10 15:44:49.045942 41479877-2b51-4a94-8c64-dfef1418c773 {"md5": "c25e2d85ac22bdfc9b973ccfb91713ff", "pid": "042221234", "note": [{"label": ["Zeitalter, das den histor. Prozess abschließt, meist ein \\"drittes\\" Zeitalter"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Geschichtsphilosophie"}], "identifier": "http://d-nb.info/gnd/4222123-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4222123-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042221234", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4222123-7", "source": "GND"}], "variant_access_point": ["Letztphase", "Ende der Geschichte", "The ends of history", "Posthistorisches Zeitalter", "Nachgeschichte", "Geschichte"], "authorized_access_point": "Posthistoire"} 1 +2024-09-10 15:44:49.127973 2024-09-10 15:44:49.12798 fd82a1ce-10e4-4996-8df2-5f8b102d2938 {"md5": "a9f71d732677fc1dd0d7715945110d56", "pid": "042208408", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Beamter"}], "identifier": "http://d-nb.info/gnd/4220840-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4220840-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042208408", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4220840-3", "source": "GND"}], "variant_access_point": ["Probezeitbeamter"], "authorized_access_point": "Beamter auf Probe"} 1 +2024-09-10 15:44:49.232731 2024-09-10 15:44:49.232736 122f7bf7-2e38-4255-8699-4f8e4f1f6b82 {"md5": "45b084f4539d4812a68d0b8769301127", "pid": "042203856", "note": [{"label": ["Art. 7,4-6 GG"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schulrecht"}], "identifier": "http://d-nb.info/gnd/4220385-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4220385-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042203856", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4220385-5", "source": "GND"}], "authorized_access_point": "Privatschulfreiheit"} 1 +2024-09-10 15:44:50.242302 2024-09-10 15:44:50.242306 67c163fe-0b9a-4ba3-b3d1-fd061b999867 {"md5": "1caa39bd9a2778ed1b17a16c502ba4b4", "pid": "042137268", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Array"}], "identifier": "http://d-nb.info/gnd/4213726-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4213726-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042137268", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4213726-3", "source": "GND"}], "variant_access_point": ["Sensoranordnung", "Matrixsensor", "Sensormatrix"], "authorized_access_point": "Sensor-Array"} 1 +2024-09-10 15:44:49.319378 2024-09-10 15:44:49.319382 ce3646f8-41b3-448b-994d-a2e47cfd262c {"md5": "028f5e48da487f348cdf09bda88b79fc", "pid": "042203023", "note": [{"label": ["Von R. Thurnwald begründete, sozialwissenschaftlich ausgerichtete Forschungsrichtung in der Ethnologie, deren Grundlage wie in der britischen Social Anthropology der Funktionalismus ist"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Soziologie"}], "related": [{"authorized_access_point": "Sozialanthropologie"}, {"authorized_access_point": "Kulturanthropologie"}, {"authorized_access_point": "Ethnosoziologe"}, {"authorized_access_point": "Ethnosoziologin"}, {"authorized_access_point": "Sozialethnologie"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133267612X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2013001662", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2013001662"}], "authorized_access_point": "Ethnosociology"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133267612X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17972469", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17972469p"}], "authorized_access_point": "Ethnosociologie"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)971397511", "source": "GND"}, {"type": "bf:Nbn", "value": "10042835", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10042835"}], "authorized_access_point": "Ethnologie"}], "identifier": "http://d-nb.info/gnd/4220302-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4220302-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042203023", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4220302-8", "source": "GND"}], "authorized_access_point": "Ethnosoziologie"} 1 +2024-09-10 15:44:49.387004 2024-09-10 15:44:49.387007 d07d5a9b-ff87-4525-b2d8-6686eec4db06 {"md5": "56b50d615702523804aae2b39e87de20", "pid": "042195810", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Freistück"}], "related": [{"authorized_access_point": "Pflichtexemplarrecht"}, {"authorized_access_point": "Zensurexemplar"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134054874", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85075741", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85075741"}], "authorized_access_point": "Legal deposit of books, etc."}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134054874", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11978766", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119787663"}], "authorized_access_point": "Dépôt légal"}], "identifier": "http://d-nb.info/gnd/4219581-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4219581-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042195810", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4219581-0", "source": "GND"}], "variant_access_point": ["Pflichtstück"], "authorized_access_point": "Pflichtexemplar"} 1 +2024-09-10 15:44:49.448929 2024-09-10 15:44:49.448933 bd583fc2-9ddd-4488-8144-3fe43df623ee {"md5": "8a9e25e145ce39e53d843559c0eade9d", "pid": "042193958", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Flasche"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333328788", "source": "GND"}, {"type": "bf:Nbn", "value": "sh93006012", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh93006012"}], "authorized_access_point": "Canteens (Beverage containers)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333328788", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13743057", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb137430579"}], "authorized_access_point": "Gourdes (récipients)"}], "identifier": "http://d-nb.info/gnd/4219395-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4219395-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042193958", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4219395-3", "source": "GND"}], "authorized_access_point": "Feldflasche"} 1 +2024-09-10 15:44:49.509666 2024-09-10 15:44:49.509672 a5228240-297e-41a9-be5b-50467db6e590 {"md5": "4aa2d57408b2789ae5d91901ebd62e48", "pid": "04219007X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4219007-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4219007-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04219007X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4219007-1", "source": "GND"}], "authorized_access_point": "Anzeigengestaltung"} 1 +2024-09-10 15:44:49.59516 2024-09-10 15:44:49.595165 13548826-571e-4290-bcd8-c22ff82a7b17 {"md5": "287763a12620705eb72b86088d748ed4", "pid": "042189748", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Therapie"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133731988", "source": "GND"}, {"type": "bf:Nbn", "value": "sh99005037", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh99005037"}], "authorized_access_point": "Adjuvant treatment"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133731988", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12185143", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb121851431"}], "authorized_access_point": "Traitement adjuvant"}], "identifier": "http://d-nb.info/gnd/4218974-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4218974-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042189748", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4218974-3", "source": "GND"}], "variant_access_point": ["Supportive Therapie", "Unterstützende Therapie", "Begleitende Therapie", "Begleittherapie", "Adjuvanstherapie", "Supportivtherapie"], "authorized_access_point": "Adjuvante Therapie"} 1 +2024-09-10 15:44:49.680909 2024-09-10 15:44:49.680914 70f3bb84-d664-4d25-bc7e-f7eb82a7c75f {"md5": "163053b2786e5e3b284ed61cdb2071d1", "pid": "042187494", "note": [{"label": ["Als Homonymenzusatz bei Personenschlagwörtern zugelassen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Erfinder"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331759846", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85147449", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85147449"}], "authorized_access_point": "Women inventors"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331759846", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16742339", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16742339c"}], "authorized_access_point": "Inventrices"}], "identifier": "http://d-nb.info/gnd/4218749-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4218749-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042187494", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4218749-7", "source": "GND"}], "authorized_access_point": "Erfinderin"} 1 +2024-09-10 15:44:49.755009 2024-09-10 15:44:49.755014 df447bd7-99b1-4471-afad-6238461a0e3c {"md5": "eff9b875294071e9a61737c0dde7e58a", "pid": "042180805", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Messumformer"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134708769", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85134779", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85134779"}], "authorized_access_point": "Thermocouples"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134708769", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11979701", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11979701r"}], "authorized_access_point": "Thermocouples"}], "identifier": "http://d-nb.info/gnd/4218080-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4218080-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042180805", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4218080-6", "source": "GND"}], "variant_access_point": ["Thermokonverter"], "authorized_access_point": "Thermoumformer"} 1 +2024-09-10 15:44:49.842682 2024-09-10 15:44:49.842693 0950fbd0-a37c-4f9d-9d4f-e3754ece087c {"md5": "d678bbd1e1b5378ee9de69536d2db029", "pid": "042159458", "note": [{"label": ["4 nahe verwandte indigene Gruppen in d. Bundesstaaten Oaxaca u. Veracruz"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Indianer"}], "identifier": "http://d-nb.info/gnd/4215945-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4215945-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042159458", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4215945-3", "source": "GND"}], "variant_access_point": ["Mije", "Ayöök", "Ayook", "Ayuc", "Ayuujk", "Ayuuk", "Guichiovian", "Tapijualapane-Mixe"], "authorized_access_point": "Mixe"} 1 +2024-09-10 15:44:49.926008 2024-09-10 15:44:49.926011 b51f2700-9c51-4b81-96e6-00ffe825eae9 {"md5": "ae5f579e5d7e1553eb1a53343e348d39", "pid": "042154316", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Phasenumwandlung"}], "identifier": "http://d-nb.info/gnd/4215431-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4215431-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042154316", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4215431-5", "source": "GND"}], "variant_access_point": ["Glasübergang", "Erweichung (Glasumwandlung)", "Glasbildung", "Glasprozess"], "authorized_access_point": "Glasumwandlung"} 1 +2024-09-10 15:44:50.01528 2024-09-10 15:44:50.015285 e6f6cea2-7897-400b-a90e-8d32da9e6d9c {"md5": "a73387419db97efed924a0283693a2d6", "pid": "042152089", "note": [{"label": ["Als Management Buyout bezeichnet man die Unternehmensveräußerung an Geschäftsführer oder Vorstandsmitglieder des betreffenden Unternehmens."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Unternehmenskauf"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134171064", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85080351", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85080351"}], "authorized_access_point": "Management buyouts"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134171064", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12113560", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12113560s"}], "authorized_access_point": "Reprise d'entreprise par les salariés"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254458883", "source": "GND"}, {"type": "bf:Nbn", "value": "XX4911373", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX4911373"}], "authorized_access_point": "Compra de empresas por sus gestores"}], "identifier": "http://d-nb.info/gnd/4215208-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4215208-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042152089", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4215208-2", "source": "GND"}], "variant_access_point": ["Management Buy Out", "MBO", "MBI", "Management Buyin", "Management Buy In"], "authorized_access_point": "Management Buyout"} 1 +2024-09-10 15:44:50.100589 2024-09-10 15:44:50.100592 7c1719c0-2ade-40ef-abf6-3450badb3769 {"md5": "83e670d670b2adc4ab86c3e7dcbb624c", "pid": "042150876", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kapuzineraffenartige"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333261160", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16716962", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16716962w"}], "authorized_access_point": "Atèle noir"}], "identifier": "http://d-nb.info/gnd/4215087-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4215087-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042150876", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4215087-5", "source": "GND"}], "variant_access_point": ["Ateles paniscus", "Koata"], "authorized_access_point": "Schwarzer Klammeraffe"} 1 +2024-09-10 15:44:50.167241 2024-09-10 15:44:50.167244 b5d3edb8-728a-4ad4-988e-b21ef97b7608 {"md5": "a376acb6ba909975d4012533aaa75250", "pid": "042140048", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Film"}], "related": [{"authorized_access_point": "Kinderfilm"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133626386", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11936861", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11936861b"}], "authorized_access_point": "Films pour la jeunesse"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)125434165X", "source": "GND"}, {"type": "bf:Nbn", "value": "15718", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/15718"}], "authorized_access_point": "Film per ragazzi"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970561717", "source": "GND"}, {"type": "bf:Nbn", "value": "10043579", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10043579"}], "authorized_access_point": "Jugendfilm"}], "identifier": "http://d-nb.info/gnd/4214004-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4214004-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042140048", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4214004-3", "source": "GND"}], "variant_access_point": ["Jugendfilme"], "authorized_access_point": "Jugendfilm"} 1 +2024-09-10 15:44:50.404455 2024-09-10 15:44:50.404462 f6e41799-51a8-469c-9c81-490da5dd7fd5 {"md5": "0d5cc94f70cc596777728d52b9cccc0b", "pid": "042108152", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Polymorphismus"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133881483", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85038052", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85038052"}], "authorized_access_point": "Dimorphism (Plants)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133881483", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13617434", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13617434x"}], "authorized_access_point": "Dimorphisme chez les plantes"}], "identifier": "http://d-nb.info/gnd/4210815-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4210815-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042108152", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4210815-9", "source": "GND"}], "authorized_access_point": "Dimorphismus"} 1 +2024-09-10 15:44:50.476995 2024-09-10 15:44:50.476998 73378cc7-8367-4352-83a0-92d81e17efad {"md5": "030b792740ce6b83faa61cbbdf62234e", "pid": "042104068", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Teig"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134799179", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF15118262", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb151182628"}], "authorized_access_point": "Cuisine (pâte feuilletée)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134799160", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF15118244", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb15118244b"}], "authorized_access_point": "Pâte feuilletée"}], "identifier": "http://d-nb.info/gnd/4210406-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4210406-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042104068", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4210406-3", "source": "GND"}], "authorized_access_point": "Blätterteig"} 1 +2024-09-10 15:44:50.542867 2024-09-10 15:44:50.54287 eeb87650-7d00-49c9-b02d-52ba5bcf559a {"md5": "8b51c80c37fcbbf30ef0c690e641ca78", "pid": "042098386", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schadstoffbelastung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134310439", "source": "GND"}, {"type": "bf:Nbn", "value": "sh00002519", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh00002519"}], "authorized_access_point": "Effect of ozone on"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134310439", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12397591", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb123975911"}], "authorized_access_point": "Effets de l'ozone"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1065910479", "source": "GND"}, {"type": "bf:Nbn", "value": "19482-3", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/19482-3"}], "authorized_access_point": "Ozonbelastung"}], "identifier": "http://d-nb.info/gnd/4209838-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4209838-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042098386", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4209838-5", "source": "GND"}], "variant_access_point": ["Ozon"], "authorized_access_point": "Ozonbelastung"} 1 +2024-09-10 15:44:50.632631 2024-09-10 15:44:50.632635 76070e66-1016-402b-8cd8-6fcb20c4ec76 {"md5": "22faa4314d7f1beea522eab972ff33b4", "pid": "042092175", "note": [{"label": ["Benutzt für d. Produkt"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134452365", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85138931", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85138931"}], "authorized_access_point": "Turning (Lathe work)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134452365", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF14597781", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb14597781w"}], "authorized_access_point": "Tournage sur bois"}], "identifier": "http://d-nb.info/gnd/4209217-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4209217-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042092175", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4209217-6", "source": "GND"}], "authorized_access_point": "Drechslerarbeit"} 1 +2024-09-10 15:44:50.718913 2024-09-10 15:44:50.718917 ebec8ee7-35f3-4862-b359-c03b6bddf415 {"md5": "e8037bbca872a15cbdd5874498ef84c0", "pid": "042086280", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gedruckte Schaltung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134727879", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85106738", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85106738"}], "authorized_access_point": "Printed circuits"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134727879", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11936916", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11936916s"}], "authorized_access_point": "Circuits imprimés"}], "identifier": "http://d-nb.info/gnd/4208628-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4208628-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042086280", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4208628-0", "source": "GND"}], "variant_access_point": ["Mehrlagenleiterplatte", "Multilayer (Mehrschichtleiterplatte)", "Vielschichtleiterplatte"], "authorized_access_point": "Mehrschichtleiterplatte"} 1 +2024-09-10 15:44:59.143296 2024-09-10 15:44:59.1433 5d88efae-a0b9-458c-b232-e4c4c47c2abb {"md5": "8d3c1eda0699d5eec0908614f34eda84", "pid": "041689976", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ingenieur"}], "related": [{"authorized_access_point": "Maschinenbauingenieurin"}], "identifier": "http://d-nb.info/gnd/4168997-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4168997-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041689976", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4168997-5", "source": "GND"}], "variant_access_point": ["Maschineningenieur"], "authorized_access_point": "Maschinenbauingenieur"} 1 +2024-09-10 15:44:50.80214 2024-09-10 15:44:50.802148 d5a18c1b-12dd-4a45-9497-51f33721b7db {"md5": "ef50a50eed8ed060ec128cd826df2844", "pid": "04208394X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Extension (Medizin)"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134234295", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12255417", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12255417v"}], "authorized_access_point": "Traction (orthopédie)"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1241625662", "source": "GND"}, {"type": "bf:Nbn", "value": "D014143", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D014143"}], "authorized_access_point": "Traction"}], "identifier": "http://d-nb.info/gnd/4208394-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4208394-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04208394X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4208394-1", "source": "GND"}], "variant_access_point": ["Zug (Medizin)"], "authorized_access_point": "Traktion (Medizin)"} 1 +2024-09-10 15:44:50.890804 2024-09-10 15:44:50.890815 9bd97467-f3c1-4262-86a8-5a54a67465f4 {"md5": "d23b9a312ff26fdabb2febabf631f857", "pid": "042066107", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Genauigkeit"}], "identifier": "http://d-nb.info/gnd/4206610-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4206610-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042066107", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4206610-4", "source": "GND"}], "authorized_access_point": "Positioniergenauigkeit"} 1 +2024-09-10 15:44:50.98615 2024-09-10 15:44:50.986154 af591be1-becc-4470-9b73-a94e971f4843 {"md5": "9c17e78ddaf2ce8df57ef9a96ac01fd4", "pid": "042056349", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Artist"}], "related": [{"authorized_access_point": "Seiltanz"}, {"authorized_access_point": "Seiltänzerin"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333938861", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85001286", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85001286"}], "authorized_access_point": "Aerialists"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333938861", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12651407", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb126514078"}], "authorized_access_point": "Funambules"}], "identifier": "http://d-nb.info/gnd/4205634-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4205634-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042056349", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4205634-2", "source": "GND"}], "variant_access_point": ["Hochseilartist"], "authorized_access_point": "Seiltänzer"} 1 +2024-09-10 15:44:51.078305 2024-09-10 15:44:51.078314 c99a8279-d302-4da5-99d8-2dc650ab0d2d {"md5": "4e09fa54be4229e0f146cf32151cc9b8", "pid": "042017793", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4201779-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4201779-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042017793", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4201779-8", "source": "GND"}], "authorized_access_point": "Markierung (Chemie)"} 1 +2024-09-10 15:44:51.162928 2024-09-10 15:44:51.162937 a1f73600-8d7c-4fa1-bab4-e8dc04e03a8e {"md5": "159d4aaa18210fb6d5bf3462af360520", "pid": "042017246", "note": [{"label": ["Verknüpfe mit Anwendungsgebiet; z.B. Seeschiff"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bewachung"}], "related": [{"authorized_access_point": "Wächter"}], "identifier": "http://d-nb.info/gnd/4201724-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4201724-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042017246", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4201724-5", "source": "GND"}], "variant_access_point": ["Wache"], "authorized_access_point": "Wachdienst"} 1 +2024-09-10 15:44:51.264344 2024-09-10 15:44:51.264352 676ea56f-bc28-4222-bb7e-a344f84720a4 {"md5": "7178723eb40c91a82ac23b8e35d98ac0", "pid": "042003458", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Grafiker"}], "related": [{"authorized_access_point": "Zeichnerin"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133636462", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11944016", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119440161"}], "authorized_access_point": "Dessinateurs"}], "identifier": "http://d-nb.info/gnd/4200345-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4200345-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042003458", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4200345-3", "source": "GND"}], "authorized_access_point": "Zeichner"} 1 +2024-09-10 15:44:51.360311 2024-09-10 15:44:51.360313 845885ce-1150-4191-98f2-87cc15ae7269 {"md5": "aa14ce82d8443e9d4536ec52fa22eced", "pid": "041995724", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Polizeibeamter"}], "related": [{"authorized_access_point": "Verdeckte Ermittlerin"}, {"authorized_access_point": "V-Mann"}, {"authorized_access_point": "Verdeckte Ermittlung"}], "identifier": "http://d-nb.info/gnd/4199572-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4199572-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041995724", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4199572-7", "source": "GND"}], "variant_access_point": ["Under-Cover-Agent", "Undercover investigator"], "authorized_access_point": "Verdeckter Ermittler"} 1 +2024-09-10 15:44:51.433442 2024-09-10 15:44:51.433446 7da8f765-0583-4c5e-bae5-3233a2d4d4e3 {"md5": "5e1061c5d5a142540e396bbcbf9625c2", "pid": "041992555", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134320841", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12426400", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb124264003"}], "authorized_access_point": "Résistance aux collisions"}], "identifier": "http://d-nb.info/gnd/4199255-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4199255-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041992555", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4199255-6", "source": "GND"}], "variant_access_point": ["Kollisionsvermeidung (Technik)"], "authorized_access_point": "Kollisionsschutz"} 1 +2024-09-10 15:44:51.575421 2024-09-10 15:44:51.575424 3fb0595d-e7d1-481c-a40a-e7d23587d603 {"md5": "6ae139727e7669a2741e73ec95f55c45", "pid": "041981804", "note": [{"label": ["Gattung d. Familie Kiemenschlitzaale (Synbranchidae)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333488068", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85131603", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85131603"}], "authorized_access_point": "Synbranchus"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333488068", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17758460", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb177584608"}], "authorized_access_point": "Synbranchus"}], "identifier": "http://d-nb.info/gnd/4198180-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4198180-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041981804", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4198180-7", "source": "GND"}], "authorized_access_point": "Synbranchus"} 1 +2024-09-10 15:44:51.637805 2024-09-10 15:44:51.637808 e675dd51-3e87-4a70-9c66-00cfea514417 {"md5": "2542ba4b76b0b6aca00d63de526e391e", "pid": "041977009", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kraftstoff"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133693911", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85037815", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85037815"}], "authorized_access_point": "Diesel fuels"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133693911", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11981884", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11981884t"}], "authorized_access_point": "Carburants diesel"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254376836", "source": "GND"}, {"type": "bf:Nbn", "value": "43453", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/43453"}], "authorized_access_point": "Gasolio"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966722108", "source": "GND"}, {"type": "bf:Nbn", "value": "14214-4", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/14214-4"}], "authorized_access_point": "Dieselkraftstoff"}], "identifier": "http://d-nb.info/gnd/4197700-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4197700-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041977009", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4197700-2", "source": "GND"}], "variant_access_point": ["Dieselöl"], "authorized_access_point": "Dieselkraftstoff"} 1 +2024-09-10 15:44:51.706366 2024-09-10 15:44:51.706369 0ab3814b-af3b-4c38-8e46-f54897a2bd8a {"md5": "fd311fc265f65f9bf9c553dc3d778d97", "pid": "041975278", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134045018", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11977041", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11977041k"}], "authorized_access_point": "Vocalisation (phonétique)"}], "identifier": "http://d-nb.info/gnd/4197527-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4197527-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041975278", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4197527-3", "source": "GND"}], "variant_access_point": ["Vokalisation"], "authorized_access_point": "Vokalisierung"} 1 +2024-09-10 15:44:51.815647 2024-09-10 15:44:51.815655 be31dd11-3cf1-48a0-a4bc-93169320a27a {"md5": "313d072c5fb2e707bc89b153353c3ef1", "pid": "041954378", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133681328", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11976149", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11976149c"}], "authorized_access_point": "Hylobatidés"}], "identifier": "http://d-nb.info/gnd/4195437-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4195437-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041954378", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4195437-3", "source": "GND"}], "variant_access_point": ["Hylobatidae", "Langarmaffen"], "authorized_access_point": "Gibbons (Familie)"} 1 +2024-09-10 15:44:51.894254 2024-09-10 15:44:51.894259 b9573b83-c58a-4aae-a382-255c445ff408 {"md5": "d85e251894749562a7ab0e58599dd7fc", "pid": "041954327", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schifffahrt"}, {"authorized_access_point": "Personenverkehr"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966898923", "source": "GND"}, {"type": "bf:Nbn", "value": "18589-4", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/18589-4"}], "authorized_access_point": "Passagierschifffahrt"}], "identifier": "http://d-nb.info/gnd/4195432-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4195432-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041954327", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4195432-4", "source": "GND"}], "variant_access_point": ["Passagierschifffahrt", "Personenschifffahrt", "Passagierschifffahrt", "Personenschifffahrt"], "authorized_access_point": "Fahrgastschifffahrt"} 1 +2024-09-10 15:44:51.977656 2024-09-10 15:44:51.977664 39db5d6e-68db-4e42-ba47-32576610c877 {"md5": "e8633638cd5bbff5c58601c318f05ed0", "pid": "041943236", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Emissionsverringerung"}], "identifier": "http://d-nb.info/gnd/4194323-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4194323-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041943236", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4194323-5", "source": "GND"}], "variant_access_point": ["Schadstoff", "Schadstoffminderung"], "authorized_access_point": "Schadstoffverringerung"} 1 +2024-09-10 15:45:20.335986 2024-09-10 15:45:20.335998 831e57ac-cb6d-4ba2-a32b-80488ab6c3eb {"md5": "db21cb608460b00ae00873c03c00e751", "pid": "040575136", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Düngung"}], "related": [{"authorized_access_point": "Stickstoffdünger"}], "identifier": "http://d-nb.info/gnd/4057513-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4057513-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040575136", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4057513-5", "source": "GND"}], "variant_access_point": ["N-Düngung", "Stickstoff"], "authorized_access_point": "Stickstoffdüngung"} 1 +2024-09-10 15:44:52.055121 2024-09-10 15:44:52.055125 d892efb1-8f9c-461a-b3a9-6c6f7a058a6a {"md5": "95d359d5bd5bfbb10829e85789a503d5", "pid": "041928547", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134195974", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85105031", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85105031"}], "authorized_access_point": "Porpoises"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134195974", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12163944", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12163944p"}], "authorized_access_point": "Marsouins"}], "identifier": "http://d-nb.info/gnd/4192854-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4192854-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041928547", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4192854-4", "source": "GND"}], "variant_access_point": ["Phocoenidae", "Phocaenidae"], "authorized_access_point": "Schweinswale (Familie)"} 1 +2024-09-10 15:44:52.134597 2024-09-10 15:44:52.134602 89b9fea8-2c52-4878-8634-49032b5fd800 {"md5": "f2e4f5f990af0199fdfe529623350937", "pid": "041928326", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Neues Zeitalter"}, {"authorized_access_point": "New Age"}], "identifier": "http://d-nb.info/gnd/4192832-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4192832-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041928326", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4192832-5", "source": "GND"}], "variant_access_point": ["Aquariuszeitalter", "Wassermann-Zeitalter", "Age of aquarius"], "authorized_access_point": "Wassermannzeitalter"} 1 +2024-09-10 15:44:52.215678 2024-09-10 15:44:52.215688 4ff7b31c-aef3-45c7-9d67-ebd81992fc1c {"md5": "24179dbb4d5b015e9f917ba3bb405459", "pid": "041924878", "note": [{"label": ["Nicht synonym mit Multilineare Algebra"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113389495X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85018808", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85018808"}], "authorized_access_point": "Calculus of tensors"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113389495X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11931685", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11931685k"}], "authorized_access_point": "Calcul tensoriel"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254362584", "source": "GND"}, {"type": "bf:Nbn", "value": "31130", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/31130"}], "authorized_access_point": "Calcolo tensoriale"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254494138", "source": "GND"}, {"type": "bf:Nbn", "value": "XX525919", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX525919"}], "authorized_access_point": "Cálculo tensorial"}], "identifier": "http://d-nb.info/gnd/4192487-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4192487-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041924878", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4192487-3", "source": "GND"}], "variant_access_point": ["Tensorkalkül"], "authorized_access_point": "Tensorrechnung"} 1 +2024-09-10 15:44:52.327146 2024-09-10 15:44:52.327152 c160fb26-51a5-4d83-8a45-df56ea0354c8 {"md5": "3d41edb813119c99512a73a753b0409a", "pid": "041918754", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Computerarchitektur"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133728634", "source": "GND"}, {"type": "bf:Nbn", "value": "sh88006799", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh88006799"}], "authorized_access_point": "Reduced instruction set computers"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134337671", "source": "GND"}, {"type": "bf:Nbn", "value": "sh90005948", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh90005948"}], "authorized_access_point": "RISC microprocessors"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133728634", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12151658", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12151658v"}], "authorized_access_point": "Ordinateurs à jeu d'instructions réduit"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134337671", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12473275", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12473275r"}], "authorized_access_point": "RISC (microprocesseurs)"}], "identifier": "http://d-nb.info/gnd/4191875-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4191875-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041918754", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4191875-7", "source": "GND"}], "variant_access_point": ["Reduced instruction set computer", "Rechner mit reduziertem Befehlsvorrat"], "authorized_access_point": "RISC"} 1 +2024-09-10 15:44:52.432119 2024-09-10 15:44:52.432124 520fcfd1-7406-45b7-b9dd-0d27cbc701c2 {"md5": "bb5e10982ae002a4e3bf0cfb626e6a2d", "pid": "041913272", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Volkstanz"}], "identifier": "http://d-nb.info/gnd/4191327-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4191327-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041913272", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4191327-9", "source": "GND"}], "authorized_access_point": "Zwiefacher"} 1 +2024-09-10 15:44:52.496431 2024-09-10 15:44:52.496435 ace11fb5-4d15-473b-9b6e-ef3bee7a9cc9 {"md5": "bdbd6d42ae9ab2ae421c34b90ba809a8", "pid": "041911849", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4191184-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4191184-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041911849", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4191184-2", "source": "GND"}], "variant_access_point": ["Zwangläufigkeit", "Zwangsläufige Bewegung"], "authorized_access_point": "Zwanglauf"} 1 +2024-09-10 15:44:52.571062 2024-09-10 15:44:52.571067 4b6a3c71-9d11-471e-8999-a4a941fdb5d6 {"md5": "597ea3a0fb0dbe9a6f3e661db3738ab4", "pid": "041911598", "note": [{"label": ["in der Regel als USW verwendet"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134038208", "source": "GND"}, {"type": "bf:Nbn", "value": "sh99004944", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh99004944"}], "authorized_access_point": "Composition"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134038208", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11975822", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119758221"}], "authorized_access_point": "Composition"}], "identifier": "http://d-nb.info/gnd/4191159-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4191159-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041911598", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4191159-3", "source": "GND"}], "authorized_access_point": "Zusammensetzung"} 1 +2024-09-10 15:44:56.172257 2024-09-10 15:44:56.172261 765fd7d0-3081-4bb2-bec3-cf67d8403296 {"md5": "11d4cf9d755ed7e246d943688ffe2d49", "pid": "041784839", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133733719", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85113776", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85113776"}], "authorized_access_point": "Red algae"}], "identifier": "http://d-nb.info/gnd/4178483-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4178483-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041784839", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4178483-2", "source": "GND"}], "variant_access_point": ["Rottange", "Rhodophyceae", "Rhodophyzeen", "Rhodophyta", "Agarophyten", "Rhodophycophyta"], "authorized_access_point": "Rotalgen"} 1 +2024-09-10 15:44:52.651703 2024-09-10 15:44:52.651708 8f2b65f3-272b-49ef-a214-77b6946c5b2f {"md5": "41f2390a46ed0dc41d35b7e23102108f", "pid": "041911199", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Vögel"}], "related": [{"authorized_access_point": "Vogelzug"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134219709", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2009008921", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2009008921"}], "authorized_access_point": "Migratory birds"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134219709", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12225354", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb122253545"}], "authorized_access_point": "Oiseaux migrateurs"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1312527749", "source": "GND"}, {"type": "bf:Nbn", "value": "38120", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/38120"}], "authorized_access_point": "Uccelli migratori"}], "identifier": "http://d-nb.info/gnd/4191119-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4191119-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041911199", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4191119-2", "source": "GND"}], "variant_access_point": ["Zugvogel"], "authorized_access_point": "Zugvögel"} 1 +2024-09-10 15:44:52.732283 2024-09-10 15:44:52.732287 50e9bc0f-89b5-4334-8645-888d740bb785 {"md5": "fdc46c1f2b033ab22042db0101c7f4c2", "pid": "041910842", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Zünder"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134040016", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11976165", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11976165m"}], "authorized_access_point": "Allumage"}], "identifier": "http://d-nb.info/gnd/4191084-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4191084-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041910842", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4191084-9", "source": "GND"}], "authorized_access_point": "Zündung"} 1 +2024-09-10 15:44:52.816793 2024-09-10 15:44:52.816797 84436213-d8bb-4a9b-9068-100bedc54fa9 {"md5": "6e00c1b4a61362850ca46a05a895119a", "pid": "041907078", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Architektur"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134387849", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13171768", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb131717680"}], "authorized_access_point": "Constructions à plan centré"}], "identifier": "http://d-nb.info/gnd/4190707-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4190707-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041907078", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4190707-3", "source": "GND"}], "authorized_access_point": "Zentralbau"} 1 +2024-09-10 15:44:52.895243 2024-09-10 15:44:52.895247 87a2a324-cb3d-4aa6-ba39-d3f967dd6b1c {"md5": "70d994a1d515a12e8f3dc5de6321bef2", "pid": "041902955", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Wünschelrute"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133175478X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85039245", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85039245"}], "authorized_access_point": "Dowsers"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133175478X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13571198", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13571198z"}], "authorized_access_point": "Sourciers"}], "identifier": "http://d-nb.info/gnd/4190295-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4190295-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041902955", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4190295-6", "source": "GND"}], "variant_access_point": ["Rutengänger", "Wünschelrute"], "authorized_access_point": "Wünschelrutengänger"} 1 +2024-09-10 15:44:52.960395 2024-09-10 15:44:52.960401 8f395e5b-b2e1-4f9c-b1ab-7fdf608b552b {"md5": "35426dbe8a7b07caf29710f6a75631b6", "pid": "04190186X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Miete"}], "identifier": "http://d-nb.info/gnd/4190186-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4190186-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04190186X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4190186-1", "source": "GND"}], "variant_access_point": ["Wohnung", "Wohnraummiete"], "authorized_access_point": "Wohnungsmiete"} 1 +2024-09-10 15:44:53.027661 2024-09-10 15:44:53.027665 35180e9c-7c5c-4b8b-97f2-196dd0ebf78a {"md5": "585c9315b1163d46ffa158c8ca61ec81", "pid": "041900804", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Verwaltung"}], "identifier": "http://d-nb.info/gnd/4190080-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4190080-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041900804", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4190080-7", "source": "GND"}], "authorized_access_point": "Wirtschaftsverwaltung"} 1 +2024-09-10 15:44:53.089154 2024-09-10 15:44:53.089157 6f67107d-b9ba-4dd2-b0e8-478004545857 {"md5": "6bc989498f6622772f96397e398767a7", "pid": "041899849", "note": [{"label": ["W. umfasst den Begriff Wintersport (im Sinne des Breitensports) u. könnte als Wintersport im weiteren Sinne bezeichnet werden"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sporttourismus"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332366708", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF18097333", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb18097333m"}], "authorized_access_point": "Tourisme hivernal"}], "identifier": "http://d-nb.info/gnd/4189984-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4189984-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041899849", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4189984-2", "source": "GND"}], "variant_access_point": ["Wintersport"], "authorized_access_point": "Wintertourismus"} 1 +2024-09-10 15:44:53.240329 2024-09-10 15:44:53.240331 b21ced27-18ff-4ebc-8cd3-e297fbeef0f0 {"md5": "647f19d5b94dda99982221090e85962e", "pid": "041896807", "note": [{"label": ["Vollständiges Verzeichnis des Werks (des Lebenswerks oder eines Teils) von Künstlern (RDA AH-007).", "Verwendet für bildende und darstellende Künstler (Interpreten, Regisseure, Schauspieler) sowie für Komponisten und Architekten bzw. Architekturbüros. Sowohl für einzelne Personen wie für Personengruppen. Bei anderen Werkverzeichnissen verwende Bibliografie (RDA AH-007)."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134151365", "source": "GND"}, {"type": "bf:Nbn", "value": "sh99001388", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh99001388"}], "authorized_access_point": "Catalogues raisonnés"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134151365", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12078007", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb120780077"}], "authorized_access_point": "Catalogues raisonnés"}], "identifier": "http://d-nb.info/gnd/4189680-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4189680-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041896807", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4189680-4", "source": "GND"}], "variant_access_point": ["Werkkatalog", "Oeuvrekatalog", "Oeuvre-Verzeichnis", "Thematischer Katalog (Formschlagwort)", "Thematisches Verzeichnis (Formschlagwort)"], "authorized_access_point": "Werkverzeichnis"} 1 +2024-09-10 15:44:53.317219 2024-09-10 15:44:53.317223 b96ac7f8-16b1-4755-bb1c-a488d19642fb {"md5": "9d7aded29391f5a8dd07b92e6d9f8596", "pid": "041891775", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133864058", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13535580", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb135355804"}], "authorized_access_point": "Bassins de jardins"}], "identifier": "http://d-nb.info/gnd/4189177-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4189177-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041891775", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4189177-6", "source": "GND"}], "variant_access_point": ["Wasserbecken"], "authorized_access_point": "Bassin"} 1 +2024-09-10 15:44:53.385971 2024-09-10 15:44:53.385973 e8b7ecf6-3e7c-4269-91d4-18f3fea488e6 {"md5": "4728fdd7a2cb36155f69c0a575d0d5f2", "pid": "041890787", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Grabmal"}], "related": [{"authorized_access_point": "Epitaph"}], "identifier": "http://d-nb.info/gnd/4189078-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4189078-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041890787", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4189078-4", "source": "GND"}], "authorized_access_point": "Wandgrabmal"} 1 +2024-09-10 15:44:53.454961 2024-09-10 15:44:53.454965 24a93bde-1fda-4ee0-b3bc-e8a853a16a4f {"md5": "e5b4695b4e1bb124f8ad2d13fbe4a1cc", "pid": "041889959", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Waldkrankheit"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)967030552", "source": "GND"}, {"type": "bf:Nbn", "value": "15779-0", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/15779-0"}], "authorized_access_point": "Waldschaden"}], "identifier": "http://d-nb.info/gnd/4188995-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4188995-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041889959", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4188995-2", "source": "GND"}], "variant_access_point": ["Waldzerstörung (Waldschaden)", "Baumschaden (Waldschaden)", "Forstschaden", "Wald", "Waldschäden", "Forstschäden"], "authorized_access_point": "Waldschaden"} 1 +2024-09-10 15:44:53.547259 2024-09-10 15:44:53.547264 0b0dbe47-a42a-497f-a21a-d5d5dde676a6 {"md5": "e72d3053cf92fcb96e586502d153d317", "pid": "041887913", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Drosseln"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133776590", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2009010378", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2009010378"}], "authorized_access_point": "Fieldfare"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133776590", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12338097", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12338097q"}], "authorized_access_point": "Grive litorne"}], "identifier": "http://d-nb.info/gnd/4188791-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4188791-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041887913", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4188791-8", "source": "GND"}], "variant_access_point": ["Turdus pilaris", "Krammetsvogel", "Ziemer"], "authorized_access_point": "Wacholderdrossel"} 1 +2024-09-10 15:44:53.627586 2024-09-10 15:44:53.627591 2621137a-fa49-4204-9075-aa58485b7c8c {"md5": "b8beda5af583b52c986c9c63db3a786e", "pid": "041887786", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Genitalkrebs"}, {"authorized_access_point": "Vulvakrankheit"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134590385", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2010010521", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2010010521"}], "authorized_access_point": "Vulva - Cancer"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1241627908", "source": "GND"}, {"type": "bf:Nbn", "value": "D014846", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D014846"}], "authorized_access_point": "Vulvar Neoplasms"}], "identifier": "http://d-nb.info/gnd/4188778-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4188778-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041887786", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4188778-5", "source": "GND"}], "variant_access_point": ["Carcinoma vulvae", "Vulvakarzinom"], "authorized_access_point": "Vulvakrebs"} 1 +2024-09-10 15:44:53.796315 2024-09-10 15:44:53.79632 89bc7cee-d576-4ce5-b754-c598fb88f3c2 {"md5": "c44fde19f7fa54022641b4d80b2a8107", "pid": "041882229", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bildaufzeichnung"}], "related": [{"authorized_access_point": "Videokassette"}, {"authorized_access_point": "Bildplatte"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1321561245", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11933779", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11933779d"}], "authorized_access_point": "Vidéo"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1321561245", "source": "GND"}, {"type": "bf:Nbn", "value": "sh92003035", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh92003035"}], "authorized_access_point": "Video recording"}], "identifier": "http://d-nb.info/gnd/4188222-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4188222-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041882229", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4188222-2", "source": "GND"}], "variant_access_point": ["Audiovisuelle Aufzeichnung", "Audio-visuelle Aufzeichnung", "Videoaufnahme"], "authorized_access_point": "Videoaufzeichnung"} 1 +2024-09-10 15:44:53.89677 2024-09-10 15:44:53.896774 7fe8cb0a-914b-4e2b-86e8-343e5e260a26 {"md5": "523ec0fdb36c37867933fb9270bab722", "pid": "041881745", "note": [{"label": ["auch ausserhalb des Rechts als Allgemeinbegriff verwendet"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970602014", "source": "GND"}, {"type": "bf:Nbn", "value": "10037167", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10037167"}], "authorized_access_point": "Verzicht"}], "identifier": "http://d-nb.info/gnd/4188174-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4188174-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041881745", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4188174-6", "source": "GND"}], "variant_access_point": ["Rechtsverzicht", "Anspruchsverzicht"], "authorized_access_point": "Verzicht"} 1 +2024-09-10 15:44:53.981527 2024-09-10 15:44:53.981539 684d095e-f97a-4d57-923b-59a8fe16bd7b {"md5": "48e73466c5cfd6ba2d71b53f7e93e070", "pid": "041878515", "note": [{"label": ["Verknüpfe mit Anwendungsgebiet"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134566506", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12468269", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12468269t"}], "authorized_access_point": "Discours argumentatif"}], "identifier": "http://d-nb.info/gnd/4187851-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4187851-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041878515", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4187851-6", "source": "GND"}], "variant_access_point": ["Verknüpfung"], "authorized_access_point": "Verkettung"} 1 +2024-09-10 15:44:54.102303 2024-09-10 15:44:54.102307 6c7a753c-ee57-46dc-b0ec-046482c2ca16 {"md5": "339a948a1b9abb998a3b2df2e531b5c6", "pid": "041876938", "note": [{"label": ["SW Verfolgung wird bevorzugt benutzt"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Verfolgung"}, {"authorized_access_point": "Weibliche Verfolgte"}], "identifier": "http://d-nb.info/gnd/4187693-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4187693-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041876938", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4187693-3", "source": "GND"}], "authorized_access_point": "Verfolgter"} 1 +2024-09-10 15:44:54.194393 2024-09-10 15:44:54.1944 73a9a289-7439-4fef-ad51-91d9fe546fc0 {"md5": "4aaf7ee1bcc0737333262ff68b0d3ac1", "pid": "041874919", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Schiebersteuerung"}], "identifier": "http://d-nb.info/gnd/4187491-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4187491-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041874919", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4187491-2", "source": "GND"}], "variant_access_point": ["Ventiltrieb"], "authorized_access_point": "Ventilsteuerung"} 1 +2024-09-10 15:44:54.302903 2024-09-10 15:44:54.302907 dfefbdd4-9b0e-4363-80fc-f627929e24f0 {"md5": "f969a182508b70fc38007545dfda461b", "pid": "041873270", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Vakuumfluktuation"}, {"authorized_access_point": "Quantenelektrodynamik"}], "related": [{"authorized_access_point": "Casimir-Effekt"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133836054", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85141738", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85141738"}], "authorized_access_point": "Vacuum polarization"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133836054", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12573071", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb125730710"}], "authorized_access_point": "Polarisation du vide"}], "identifier": "http://d-nb.info/gnd/4187327-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4187327-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041873270", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4187327-0", "source": "GND"}], "variant_access_point": ["Polarisation (Vakuum)"], "authorized_access_point": "Vakuumpolarisation"} 1 +2024-09-10 15:44:54.390803 2024-09-10 15:44:54.390811 73046d94-16c5-4b3e-958c-18ab6259fda7 {"md5": "c343a2e5a7d9485594dd504ce5dfe27b", "pid": "041871286", "note": [{"label": ["Verknüpfe mit Anwendungsgebiet"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4187128-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4187128-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041871286", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4187128-5", "source": "GND"}], "variant_access_point": ["Intoleranz (Medizin)", "Unverträglichkeitsreaktion"], "authorized_access_point": "Unverträglichkeit"} 1 +2024-09-10 15:44:54.481044 2024-09-10 15:44:54.48105 d7825390-0421-4bd9-9adf-945bb47639b6 {"md5": "ecada24e656feb1ea82aead4c81ae9e1", "pid": "041871189", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schweißen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133880754", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85139630", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85139630"}], "authorized_access_point": "Underwater welding and cutting"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133880754", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13615612", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13615612p"}], "authorized_access_point": "Oxycoupage et soudage sous l'eau"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254498338", "source": "GND"}, {"type": "bf:Nbn", "value": "XX538871", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX538871"}], "authorized_access_point": "Soldadura subacuática"}], "identifier": "http://d-nb.info/gnd/4187118-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4187118-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041871189", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4187118-2", "source": "GND"}], "authorized_access_point": "Unterwasserschweißen"} 1 +2024-09-10 15:44:54.57213 2024-09-10 15:44:54.572136 d148e2b8-0a8c-4a6e-b07f-31f3287159d3 {"md5": "6ab8caac3de90438c0b931eb5f929fa3", "pid": "041867785", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Umrichter&oldid=245571003"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Stromrichter"}], "related": [{"authorized_access_point": "Umformer"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133656927", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85041752", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85041752"}], "authorized_access_point": "Electric inverters"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133656927", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11959005", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11959005s"}], "authorized_access_point": "Onduleurs (électricité)"}], "identifier": "http://d-nb.info/gnd/4186778-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4186778-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041867785", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4186778-6", "source": "GND"}], "authorized_access_point": "Umrichter"} 1 +2024-09-10 15:44:54.648855 2024-09-10 15:44:54.64886 d10baf05-2da5-4f2e-bbf0-c4774b2db2f4 {"md5": "e885c11c59cf3fd0a0f6eb6cc581a329", "pid": "041863488", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Pute&oldid=231902473"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fasanenartige"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133670962", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85138859", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85138859"}], "authorized_access_point": "Turkeys"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133670962", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11967907", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11967907p"}], "authorized_access_point": "Dindon domestique"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)125626606X", "source": "GND"}, {"type": "bf:Nbn", "value": "8016", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_8016"}], "authorized_access_point": "turkeys"}], "identifier": "http://d-nb.info/gnd/4186348-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4186348-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041863488", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4186348-3", "source": "GND"}], "variant_access_point": ["Meleagris gallopavo", "Pute", "Haustruthuhn"], "authorized_access_point": "Truthuhn"} 1 +2024-09-10 15:44:54.744973 2024-09-10 15:44:54.744981 b80ebcf9-dfcd-4d9f-81ee-f286646f2ea0 {"md5": "5254c26bf0cb8477bd054b74aa0f7a08", "pid": "04186347X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Truthuhn"}], "related": [{"authorized_access_point": "Truthuhnrasse"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134370725", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85032143", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85032143"}], "authorized_access_point": "Cooking (Turkey)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134790775", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85138859", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85138859"}], "authorized_access_point": "Turkeys"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134370725", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12567282", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12567282z"}], "authorized_access_point": "Cuisine (dinde. - viande)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134790775", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11967907", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11967907p"}], "authorized_access_point": "Dindon domestique"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1299911064", "source": "GND"}, {"type": "bf:Nbn", "value": "XX533616", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX533616"}], "authorized_access_point": "Pavos"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256266051", "source": "GND"}, {"type": "bf:Nbn", "value": "8016", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_8016"}], "authorized_access_point": "turkeys"}], "identifier": "http://d-nb.info/gnd/4186347-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4186347-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04186347X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4186347-1", "source": "GND"}], "variant_access_point": ["Puter"], "authorized_access_point": "Truthahn"} 1 +2024-09-10 15:44:54.836618 2024-09-10 15:44:54.836626 0e0926d0-da88-4a2f-893a-bc956c1eb49b {"md5": "259b5e6c7a47095b7a528e16ee7c0e6c", "pid": "041862473", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Denkmal"}, {"authorized_access_point": "Bogen (Architektur)"}, {"authorized_access_point": "Torbau"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113368419X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85006535", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85006535"}], "authorized_access_point": "Triumphal arches"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113368419X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11977585", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11977585k"}], "authorized_access_point": "Arcs de triomphe"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254341692", "source": "GND"}, {"type": "bf:Nbn", "value": "15752", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/15752"}], "authorized_access_point": "Archi di trionfo"}], "identifier": "http://d-nb.info/gnd/4186247-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4186247-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041862473", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4186247-8", "source": "GND"}], "variant_access_point": ["Ehrenbogen"], "authorized_access_point": "Triumphbogen"} 1 +2024-09-10 15:44:54.915042 2024-09-10 15:44:54.915046 415a2ce7-5005-447a-bfbd-45e89b418d11 {"md5": "b6d983511a39fe59aa3619dd9c14aad8", "pid": "041862465", "note": [{"label": ["Römisches Reich wird nicht als pleonastisch behandelt"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134137931", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85137947", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85137947"}], "authorized_access_point": "Triumph"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134137931", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12049670", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb120496708"}], "authorized_access_point": "Triomphe"}], "identifier": "http://d-nb.info/gnd/4186246-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4186246-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041862465", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4186246-6", "source": "GND"}], "authorized_access_point": "Triumph"} 1 +2024-09-10 15:44:54.993001 2024-09-10 15:44:54.993004 ae551c6e-d71f-4f27-83f9-6b18a3469106 {"md5": "b09a28a3abb32e3c7039b7954f97c69f", "pid": "041841387", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Elektrisches Bauelement"}], "related": [{"authorized_access_point": "Supraleitung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133689086", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85130585", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85130585"}], "authorized_access_point": "Superconductors"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133689086", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11979263", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11979263x"}], "authorized_access_point": "Supraconducteurs"}], "identifier": "http://d-nb.info/gnd/4184138-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4184138-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041841387", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4184138-4", "source": "GND"}], "variant_access_point": ["Superconducting devices", "Supraleitende Vorrichtung"], "authorized_access_point": "Supraleitendes Bauelement"} 1 +2024-09-10 15:44:55.065669 2024-09-10 15:44:55.065673 dbd05c21-2217-4f48-8865-b66bd7f2a331 {"md5": "177864cdcd23249156fffccf9522e739", "pid": "041835662", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113381252X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85128502", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85128502"}], "authorized_access_point": "Strangling"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113381252X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12491952", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12491952z"}], "authorized_access_point": "Strangulation"}], "identifier": "http://d-nb.info/gnd/4183566-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4183566-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041835662", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4183566-9", "source": "GND"}], "authorized_access_point": "Strangulation"} 1 +2024-09-10 15:44:55.127593 2024-09-10 15:44:55.127596 f501860a-9c37-4f30-a5da-2fefb81ae9e3 {"md5": "01d3c99083efe5ea50176fc735f1e66a", "pid": "041833333", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gesellschafter"}], "related": [{"authorized_access_point": "Stille Gesellschaft"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134081774", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85122474", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85122474"}], "authorized_access_point": "Silent partners"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134081774", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11983551", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11983551h"}], "authorized_access_point": "Bailleurs de fonds"}], "identifier": "http://d-nb.info/gnd/4183333-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4183333-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041833333", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4183333-8", "source": "GND"}], "variant_access_point": ["Stiller Teilhaber"], "authorized_access_point": "Stiller Gesellschafter"} 1 +2024-09-10 15:44:55.194411 2024-09-10 15:44:55.194415 d48a2b09-8265-4662-bb82-ea4225f6f1bd {"md5": "3fbf16b2733c85bc3757d577f0e97d04", "pid": "041830989", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134237480", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85025933", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85025933"}], "authorized_access_point": "Ciconiiformes"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333255802", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12293127", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12293127p"}], "authorized_access_point": "Échassiers"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134237480", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12259528", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12259528r"}], "authorized_access_point": "Ciconiiformes"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254372318", "source": "GND"}, {"type": "bf:Nbn", "value": "38774", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/38774"}], "authorized_access_point": "Trampolieri"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254316930", "source": "GND"}, {"type": "bf:Nbn", "value": "525", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/525"}], "authorized_access_point": "Ciconiformi"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254490582", "source": "GND"}, {"type": "bf:Nbn", "value": "XX542045", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX542045"}], "authorized_access_point": "Ciconiformes"}], "identifier": "http://d-nb.info/gnd/4183098-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4183098-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041830989", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4183098-2", "source": "GND"}], "variant_access_point": ["Schreitvögel", "Gressores", "Ciconiiformes"], "authorized_access_point": "Stelzvögel"} 1 +2024-09-10 15:44:55.25567 2024-09-10 15:44:55.255673 5f438987-6966-4018-bc03-095a57dcc7ca {"md5": "1af04b594e57cebb21f73fcfb7ed113a", "pid": "041823788", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bogen (Architektur)"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334556091", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2021001467", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2021001467"}], "authorized_access_point": "Ogee arches"}], "identifier": "http://d-nb.info/gnd/4182378-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4182378-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041823788", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4182378-3", "source": "GND"}], "authorized_access_point": "Spitzbogen"} 1 +2024-09-10 15:44:55.317744 2024-09-10 15:44:55.317749 30bd01d9-6f30-4f76-98f2-30fa801d4d8d {"md5": "94f300599b9727b90c20cc99df90a734", "pid": "04182265X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mechanisches Musikinstrument"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133632823", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85088897", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85088897"}], "authorized_access_point": "Music box"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133632823", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11940905", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11940905w"}], "authorized_access_point": "Boîtes à musique"}], "identifier": "http://d-nb.info/gnd/4182265-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4182265-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04182265X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4182265-1", "source": "GND"}], "variant_access_point": ["Musikdose"], "authorized_access_point": "Spieldose"} 1 +2024-09-10 15:44:55.388988 2024-09-10 15:44:55.388991 9971642e-e3ed-435b-bbf9-7c22bd3cb5d7 {"md5": "a068edfd3aefcd1cd76b78e6a6828468", "pid": "041809858", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Galagos (Familie)"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133674267", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85076193", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85076193"}], "authorized_access_point": "Northern lesser bushbaby"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133674267", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12653203", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12653203t"}], "authorized_access_point": "Galago du Sénégal"}], "identifier": "http://d-nb.info/gnd/4180985-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4180985-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041809858", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4180985-3", "source": "GND"}], "variant_access_point": ["Moholi", "Galago senegalensis", "Senegal-Bushbaby"], "authorized_access_point": "Senegalgalago"} 1 +2024-09-10 15:44:55.469991 2024-09-10 15:44:55.469996 90853f04-3e99-4b43-b5c2-b65b3f7942f7 {"md5": "ddcce069f7a901acc6cc5f825074d314", "pid": "041809165", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Doldengewächse"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113469086X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2010012605", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2010012605"}], "authorized_access_point": "Cooking (Celery)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133860575", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85021621", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85021621"}], "authorized_access_point": "Celery"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133860575", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13511810", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13511810d"}], "authorized_access_point": "Céleri"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113469086X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13511811", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13511811r"}], "authorized_access_point": "Cuisine (céleris)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254397086", "source": "GND"}, {"type": "bf:Nbn", "value": "68941", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/68941"}], "authorized_access_point": "Sedani"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254486011", "source": "GND"}, {"type": "bf:Nbn", "value": "XX529731", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX529731"}], "authorized_access_point": "Apio"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256257079", "source": "GND"}, {"type": "bf:Nbn", "value": "535", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_535"}], "authorized_access_point": "Apium graveolens"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256257087", "source": "GND"}, {"type": "bf:Nbn", "value": "1412", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_1412"}], "authorized_access_point": "celery"}], "identifier": "http://d-nb.info/gnd/4180916-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4180916-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041809165", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4180916-6", "source": "GND"}], "variant_access_point": ["Apium graveolens"], "authorized_access_point": "Sellerie"} 1 +2024-09-10 15:44:55.546319 2024-09-10 15:44:55.546323 b5734487-630a-4e1d-b402-850181eeae6d {"md5": "36e6d48eb09e151c9f1958f978cd4127", "pid": "041808525", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Studium"}], "related": [{"authorized_access_point": "E-Learning"}, {"authorized_access_point": "Selbstunterricht"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134729782", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13324470", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13324470r"}], "authorized_access_point": "Autoformation"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970589115", "source": "GND"}, {"type": "bf:Nbn", "value": "10057750", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10057750"}], "authorized_access_point": "Selbststudium"}], "identifier": "http://d-nb.info/gnd/4180852-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4180852-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041808525", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4180852-6", "source": "GND"}], "authorized_access_point": "Selbststudium"} 1 +2024-09-10 15:44:55.613578 2024-09-10 15:44:55.613582 b8eb36b9-c90f-488b-add9-19daf72be006 {"md5": "4d9254d604bbff22342d41cc0bbfca2d", "pid": "041807677", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tektonik"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334019568", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17038712", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17038712m"}], "authorized_access_point": "Sismotectonique"}], "identifier": "http://d-nb.info/gnd/4180767-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4180767-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041807677", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4180767-4", "source": "GND"}], "authorized_access_point": "Seismotektonik"} 1 +2024-09-10 15:44:55.685664 2024-09-10 15:44:55.685672 4b632268-b20c-41e2-a907-5c062ece6210 {"md5": "3d5a6d6a76ae20af3bfa7a0375bf164d", "pid": "041805348", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fechten"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134267819", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85131357", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85131357"}], "authorized_access_point": "Swordplay"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134267819", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12308292", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12308292x"}], "authorized_access_point": "Épée (sport)"}], "identifier": "http://d-nb.info/gnd/4180534-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4180534-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041805348", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4180534-3", "source": "GND"}], "authorized_access_point": "Schwertfechten"} 1 +2024-09-10 15:44:55.768286 2024-09-10 15:44:55.768289 a8215845-d377-40cb-bdb4-c8887e5faac1 {"md5": "bd009f901441d4a48b35d8061e5d753f", "pid": "04180466X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133930867", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85146007", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85146007"}], "authorized_access_point": "Welded joints - Testing"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133930867", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11933298", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119332989"}], "authorized_access_point": "Soudures - Essais"}], "identifier": "http://d-nb.info/gnd/4180466-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4180466-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04180466X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4180466-1", "source": "GND"}], "variant_access_point": ["Schweißnaht"], "authorized_access_point": "Schweißnahtprüfung"} 1 +2024-09-10 15:44:55.828418 2024-09-10 15:44:55.828421 0fd2042e-b09c-42f8-a215-b152acd2a142 {"md5": "6b0b95fd3d939df46c6aacc0b6ed656f", "pid": "041802659", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Inertgas"}], "identifier": "http://d-nb.info/gnd/4180265-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4180265-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041802659", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4180265-2", "source": "GND"}], "authorized_access_point": "Schutzgas"} 1 +2024-09-10 15:44:55.894002 2024-09-10 15:44:55.894006 d8eccaa5-cbbe-4d8f-a52a-0b689e0bfdcd {"md5": "41ff0e82ea955d30b0e1241f47fcf3fb", "pid": "041798813", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zuggattung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134657854", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85110967", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85110967"}], "authorized_access_point": "Express trains"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134657854", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12141363", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12141363d"}], "authorized_access_point": "Trains rapides"}], "identifier": "http://d-nb.info/gnd/4179881-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4179881-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041798813", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4179881-8", "source": "GND"}], "variant_access_point": ["Schnellzüge", "D-Zug"], "authorized_access_point": "Schnellzug"} 1 +2024-09-10 15:44:55.965547 2024-09-10 15:44:55.965553 58fadc80-b0cf-4b20-9f95-b647e05871da {"md5": "0edf681414a0b87985700761d7239212", "pid": "041794524", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Reibungsbremse"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133699626", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85010244", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85010244"}], "authorized_access_point": "Automobiles - Disc brakes"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133699626", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11993213", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11993213b"}], "authorized_access_point": "Automobiles - Freins à disque"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134310862", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12398340", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12398340t"}], "authorized_access_point": "Freins à disque"}], "identifier": "http://d-nb.info/gnd/4179452-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4179452-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041794524", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4179452-7", "source": "GND"}], "variant_access_point": ["Axialbremse"], "authorized_access_point": "Scheibenbremse"} 1 +2024-09-10 15:44:56.04694 2024-09-10 15:44:56.046943 9a455547-942d-4f95-9034-88acd3af4f4f {"md5": "58d37f242c745abd8234fa8d9d1f623a", "pid": "041792432", "note": [{"label": ["Verknüpfe mit Sprachbezeichnung und hier nicht permutierender Wortart, z. B. Hebräisch ; Verb ; šavá"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134004958", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85121185", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85121185"}], "authorized_access_point": "Shbʻ (The Hebrew root)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134004958", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11963587", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119635873"}], "authorized_access_point": "ŠBʿ (la racine hébraïque)"}], "identifier": "http://d-nb.info/gnd/4179243-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4179243-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041792432", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4179243-9", "source": "GND"}], "variant_access_point": ["šba"], "authorized_access_point": "šavá"} 1 +2024-09-10 15:44:56.105726 2024-09-10 15:44:56.105728 dc35c31e-8030-475e-bf9b-bd2437d03cff {"md5": "8c84c1579c39f08963201dc35dedebb0", "pid": "041785215", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Buntbarsche"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333964943", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17802092", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17802092g"}], "authorized_access_point": "Hemichromis bimaculatus"}], "identifier": "http://d-nb.info/gnd/4178521-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4178521-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041785215", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4178521-6", "source": "GND"}], "variant_access_point": ["Hemichromis bimaculatus"], "authorized_access_point": "Roter Buntbarsch"} 1 +2024-09-10 15:44:56.23622 2024-09-10 15:44:56.236224 2961d268-b6e9-4f34-9e4f-5d853fb0040f {"md5": "ab13ad52c077a2cc5c6ee5853b0367c8", "pid": "041781635", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133810713", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12484134", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12484134b"}], "authorized_access_point": "Taenia saginata"}], "identifier": "http://d-nb.info/gnd/4178163-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4178163-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041781635", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4178163-6", "source": "GND"}], "variant_access_point": ["Taeniarhynchus saginatus", "Taenia saginata"], "authorized_access_point": "Rinderbandwurm"} 1 +2024-09-10 15:44:56.315622 2024-09-10 15:44:56.315626 44c9ae8b-e08b-4dd8-85bb-00a73b9c30e7 {"md5": "e49b353df68b600f0d2a0f65b0a12a24", "pid": "041779452", "note": [{"label": ["Als Homonymenzusatz bei Personenschlagworten zugelassen."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Revolutionär"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133920535", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85147698", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85147698"}], "authorized_access_point": "Women revolutionaries"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133920535", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13340891", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb133408918"}], "authorized_access_point": "Femmes révolutionnaires"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254392122", "source": "GND"}, {"type": "bf:Nbn", "value": "62269", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/62269"}], "authorized_access_point": "Rivoluzionarie"}], "identifier": "http://d-nb.info/gnd/4177945-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4177945-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041779452", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4177945-9", "source": "GND"}], "authorized_access_point": "Revolutionärin"} 1 +2024-09-10 15:44:56.386402 2024-09-10 15:44:56.386408 af802292-42bc-4132-a704-182f19776b20 {"md5": "e757c32c1cd2a93563c05e2f7f945523", "pid": "041774434", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134758804", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13318572", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13318572g"}], "authorized_access_point": "Archives"}], "identifier": "http://d-nb.info/gnd/4177443-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4177443-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041774434", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4177443-7", "source": "GND"}], "variant_access_point": ["Ablage (Verwaltung)", "Aktenablage", "Schriftgutverwaltung", "Records Management"], "authorized_access_point": "Registratur"} 1 +2024-09-10 15:44:56.480855 2024-09-10 15:44:56.480859 e23960b1-8eaf-4a75-aec3-1d076556b912 {"md5": "e02acf5f3d26497e25b1efa1afbbd782", "pid": "041772822", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4177282-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4177282-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041772822", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4177282-9", "source": "GND"}], "variant_access_point": ["Instanzenzug", "Instanz"], "authorized_access_point": "Rechtszug"} 1 +2024-09-10 15:44:56.54325 2024-09-10 15:44:56.543254 ddfa1c62-3a99-480d-8182-1e027fc60f32 {"md5": "1f0f49b21946971d81fb88fc54355e26", "pid": "041772768", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Zuwiderhandlung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133978622", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85136182", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85136182"}], "authorized_access_point": "Torts"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133978622", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11952132", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119521328"}], "authorized_access_point": "Responsabilité civile"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970584598", "source": "GND"}, {"type": "bf:Nbn", "value": "10040642", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10040642"}], "authorized_access_point": "Rechtsverletzung"}], "identifier": "http://d-nb.info/gnd/4177276-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4177276-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041772768", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4177276-3", "source": "GND"}], "variant_access_point": ["Rechtsbruch", "Rechtsverstoß"], "authorized_access_point": "Rechtsverletzung"} 1 +2024-09-10 15:44:56.606888 2024-09-10 15:44:56.606891 3e07b9e0-f118-4bfc-a32e-ce02aa1a22ee {"md5": "32951d7aab2251f4ab1e76b03201d29c", "pid": "041767934", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Radiererin"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133923755", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85043993", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85043993"}], "authorized_access_point": "Engravers"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133923755", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11931591", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119315917"}], "authorized_access_point": "Graveurs"}], "identifier": "http://d-nb.info/gnd/4176793-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4176793-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041767934", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4176793-7", "source": "GND"}], "authorized_access_point": "Radierer"} 1 +2024-09-10 15:44:56.669835 2024-09-10 15:44:56.669839 64adaaf3-500b-4668-b17c-992e5c274782 {"md5": "d79e7a0eac945bd54134fd786026edc3", "pid": "041766717", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134340494", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2006007175", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2006007175"}], "authorized_access_point": "Mercury content"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134340494", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12480742", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12480742n"}], "authorized_access_point": "Teneur en mercure"}], "identifier": "http://d-nb.info/gnd/4176671-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4176671-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041766717", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4176671-4", "source": "GND"}], "authorized_access_point": "Quecksilbergehalt"} 1 +2024-09-10 15:44:56.734847 2024-09-10 15:44:56.73485 b04f7137-daa1-4e60-a215-319863aa8cc7 {"md5": "6e03bddf7a9640a80ec809fbc70ad925", "pid": "04176420X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Truthuhn"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133695000", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11982369", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11982369s"}], "authorized_access_point": "Dindes"}], "identifier": "http://d-nb.info/gnd/4176420-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4176420-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04176420X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4176420-1", "source": "GND"}], "variant_access_point": ["Pute (Truthenne)"], "authorized_access_point": "Truthenne"} 1 +2024-09-10 15:44:56.805107 2024-09-10 15:44:56.805112 3d7f5c18-2774-4a07-a97d-16286ff188ee {"md5": "840f94078d8c23fbb34fdc207aa5cf4f", "pid": "041763165", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134797893", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85108894", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85108894"}], "authorized_access_point": "Puddings"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134797893", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF15517468", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb15517468b"}], "authorized_access_point": "Flans"}], "identifier": "http://d-nb.info/gnd/4176316-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4176316-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041763165", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4176316-6", "source": "GND"}], "authorized_access_point": "Pudding"} 1 +2024-09-10 15:44:56.879371 2024-09-10 15:44:56.879374 56e0fa5c-14bc-4a6a-b6f0-31dca0840150 {"md5": "12418bb9b5fe5850230b6a48781a906b", "pid": "041759834", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Protamine"}], "identifier": "http://d-nb.info/gnd/4175983-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4175983-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041759834", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4175983-7", "source": "GND"}], "authorized_access_point": "Protaminsulfate"} 1 +2024-09-10 15:44:56.943524 2024-09-10 15:44:56.943527 6f6ac1dc-9950-4414-a5ee-e7f95c592551 {"md5": "d8ac8efd264deb3575d845e9383eab24", "pid": "041755014", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=241778247"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fest"}], "related": [{"authorized_access_point": "Nordwestküstenindianer"}], "identifier": "http://d-nb.info/gnd/4175501-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4175501-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041755014", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4175501-7", "source": "GND"}], "variant_access_point": ["Potlatsch", "Potlach"], "authorized_access_point": "Potlatch"} 1 +2024-09-10 15:44:57.017339 2024-09-10 15:44:57.017343 9478667a-10e3-4c63-96bd-7cf65de1252e {"md5": "3f231d4d45f0475cb4812776387c2869", "pid": "041754557", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kutsche"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134495595", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2002004206", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2002004206"}], "authorized_access_point": "Stagecoaches"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134495595", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12287719", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12287719g"}], "authorized_access_point": "Véhicules hippomobiles"}], "identifier": "http://d-nb.info/gnd/4175455-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4175455-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041754557", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4175455-4", "source": "GND"}], "authorized_access_point": "Postkutsche"} 1 +2024-09-10 15:44:57.093045 2024-09-10 15:44:57.09305 a53971a5-fd17-4c60-afeb-f8df0e95a241 {"md5": "a0fbe09e39f667eb325fee98b42330ed", "pid": "04175431X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Operatorhalbgruppe"}], "identifier": "http://d-nb.info/gnd/4175431-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4175431-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04175431X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4175431-1", "source": "GND"}], "authorized_access_point": "Positive Operatorhalbgruppe"} 1 +2024-09-10 15:44:59.215048 2024-09-10 15:44:59.215052 0e0165ca-a5f4-4fcd-91e7-02f8ec6f2bdf {"md5": "22a7c5bfbf2227028cab0e48d608a66c", "pid": "041688473", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113404609X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11977231", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11977231t"}], "authorized_access_point": "Maniabilité"}], "identifier": "http://d-nb.info/gnd/4168847-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4168847-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041688473", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4168847-8", "source": "GND"}], "authorized_access_point": "Manövrierfähigkeit"} 1 +2024-09-10 15:44:57.155288 2024-09-10 15:44:57.15529 ec6ad7f5-98d1-4e36-86eb-a0ec0307dd52 {"md5": "d95df4f397357cef7d70e0aff3aae0fa", "pid": "04174926X", "note": [{"label": ["Art der Familie der Loris"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333260261", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2004001089", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2004001089"}], "authorized_access_point": "Slow loris"}], "identifier": "http://d-nb.info/gnd/4174926-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4174926-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04174926X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4174926-1", "source": "GND"}], "variant_access_point": ["Nycticebus coucang"], "authorized_access_point": "Plumplori"} 1 +2024-09-10 15:44:57.232175 2024-09-10 15:44:57.23218 882bbb7f-bd24-40cb-96cf-de461c40d5c4 {"md5": "21ee53a9e60055609ec899a5d6fc85e8", "pid": "041748964", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fußdeformität"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333254393", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85049021", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85049021"}], "authorized_access_point": "Flatfoot"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1241618364", "source": "GND"}, {"type": "bf:Nbn", "value": "D005413", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D005413"}], "authorized_access_point": "Flatfoot"}], "identifier": "http://d-nb.info/gnd/4174896-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4174896-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041748964", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4174896-7", "source": "GND"}], "variant_access_point": ["Pes planus"], "authorized_access_point": "Plattfuß"} 1 +2024-09-10 15:44:57.299945 2024-09-10 15:44:57.299949 c7fef295-4b07-4bf7-b0a6-ccb69b851dcb {"md5": "e1c041746e098842f3a47696cbec001d", "pid": "04174604X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Akustik"}], "identifier": "http://d-nb.info/gnd/4174604-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4174604-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04174604X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4174604-1", "source": "GND"}], "authorized_access_point": "Physikalische Akustik"} 1 +2024-09-10 15:44:57.374255 2024-09-10 15:44:57.374259 a71cb142-9e93-4e50-8786-bfaff0da1159 {"md5": "c3afb7eddffb6c0c59441ac7e3be4e9d", "pid": "041742648", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Wohltätigkeit"}, {"authorized_access_point": "Philanthrop"}, {"authorized_access_point": "Philanthropin"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134557973", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13318795", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13318795p"}], "authorized_access_point": "Oeuvres de bienfaisance"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1024440249", "source": "GND"}, {"type": "bf:Nbn", "value": "10069666", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10069666"}], "authorized_access_point": "Philanthropie"}], "identifier": "http://d-nb.info/gnd/4174264-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4174264-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041742648", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4174264-3", "source": "GND"}], "authorized_access_point": "Philanthropie"} 1 +2024-09-10 15:44:57.45834 2024-09-10 15:44:57.458344 f88b726d-d1c3-43df-b3ac-5da148f414e7 {"md5": "92ed7e75ec9df5e6db0526746293faad", "pid": "04174084X", "note": [{"label": ["Im medizin. Bereich werden nach Möglichkeit die SWW Krankenpflege, Altenpflege, Kinderkrankenpflege usw. verwendet."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113483182X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85009391", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85009391"}], "authorized_access_point": "Attention"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113483182X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13318901", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb133189012"}], "authorized_access_point": "Entretien"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133944809", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11938292", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11938292f"}], "authorized_access_point": "Soins"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970579012", "source": "GND"}, {"type": "bf:Nbn", "value": "10035229", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10035229"}], "authorized_access_point": "Pflege"}], "identifier": "http://d-nb.info/gnd/4174084-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4174084-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04174084X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4174084-1", "source": "GND"}], "variant_access_point": ["Pflegekonzept"], "authorized_access_point": "Pflege"} 1 +2024-09-10 15:44:57.530001 2024-09-10 15:44:57.530008 0301ba44-db3b-4294-9f87-f84dcb29d7c7 {"md5": "45a1e9b7f5f18ac5d3f84a84e5bcfb88", "pid": "041738063", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254471987", "source": "GND"}, {"type": "bf:Nbn", "value": "XX533663", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX533663"}], "authorized_access_point": "Perlas"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)125624435X", "source": "GND"}, {"type": "bf:Nbn", "value": "5644", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_5644"}], "authorized_access_point": "pearls"}], "identifier": "http://d-nb.info/gnd/4173806-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4173806-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041738063", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4173806-8", "source": "GND"}], "variant_access_point": ["Perlen"], "authorized_access_point": "Perle"} 1 +2024-09-10 15:44:57.59085 2024-09-10 15:44:57.590853 93328701-ca66-48fb-a591-2b0b7bcafc6f {"md5": "f8df66d34be0e7e3aa34dc14dc418a89", "pid": "041737539", "note": [{"label": ["Für das Früh- und Hochmittelalter nur benutzt, wenn der Beschreibstoff besonders thematisiert ist; sonst SW Handschrift"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Handschrift"}], "identifier": "http://d-nb.info/gnd/4173753-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4173753-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041737539", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4173753-2", "source": "GND"}], "variant_access_point": ["Pergament"], "authorized_access_point": "Pergamenthandschrift"} 1 +2024-09-10 15:44:57.651906 2024-09-10 15:44:57.651909 3f708d71-edfe-428a-9216-782626016535 {"md5": "255b68ea8b771e53bdd55911770620dc", "pid": "041736346", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Agglomerieren"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134745400", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85099278", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85099278"}], "authorized_access_point": "Pelletizing"}], "identifier": "http://d-nb.info/gnd/4173634-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4173634-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041736346", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4173634-5", "source": "GND"}], "variant_access_point": ["Kugelsintern", "Aufbaugranulieren"], "authorized_access_point": "Pelletieren"} 1 +2024-09-10 15:44:57.723412 2024-09-10 15:44:57.723416 b0fa4863-8feb-458f-beb1-946ece65236b {"md5": "3a5f407721cea84b03ba1f58bbd81feb", "pid": "041735390", "note": [{"label": ["Verstoß gegen patentrechtliche Vorschriften"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Patentrecht"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134665784", "source": "GND"}, {"type": "bf:Nbn", "value": "sh96001068", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh96001068"}], "authorized_access_point": "Patent infringement"}], "identifier": "http://d-nb.info/gnd/4173539-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4173539-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041735390", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4173539-0", "source": "GND"}], "variant_access_point": ["Patentrechtsverletzung", "Patent"], "authorized_access_point": "Patentverletzung"} 1 +2024-09-10 15:44:57.80051 2024-09-10 15:44:57.800515 eb87f00d-60af-48b1-ba50-ffedbc51fb87 {"md5": "ee9d79b675a95adb589262d7bf72d392", "pid": "041734688", "note": [{"label": ["Kompositabildung nur mit Bezeichnungen für Jungtiere, z.B. Kälberaufzucht; mit anderen Tieren wird verknüpft, z.B. Orang-Utan ; Aufzucht"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tierzucht"}, {"authorized_access_point": "Tierhaltung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332441262", "source": "GND"}, {"type": "bf:Nbn", "value": "sh99004865", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh99004865"}], "authorized_access_point": "Breeding"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133612407", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85016717", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85016717"}], "authorized_access_point": "Breeding"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133612407", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11931237", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11931237m"}], "authorized_access_point": "Amélioration génétique"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133922597", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11931346", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11931346v"}], "authorized_access_point": "Élevage"}], "identifier": "http://d-nb.info/gnd/4173468-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4173468-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041734688", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4173468-3", "source": "GND"}], "variant_access_point": ["Tieraufzucht"], "authorized_access_point": "Aufzucht"} 1 +2024-09-10 15:44:57.885336 2024-09-10 15:44:57.885341 b0c505e5-8362-4243-b81b-86a02fa128c3 {"md5": "d111de789b59f305ca789e8ad5c0d68c", "pid": "041733819", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134142498", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85075821", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85075821"}], "authorized_access_point": "Legislative bodies - Reform"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134142498", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12063314", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12063314x"}], "authorized_access_point": "Parlements - Réforme"}], "identifier": "http://d-nb.info/gnd/4173381-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4173381-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041733819", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4173381-2", "source": "GND"}], "variant_access_point": ["Parlament"], "authorized_access_point": "Parlamentsreform"} 1 +2024-09-10 15:44:57.96505 2024-09-10 15:44:57.965054 355d4eed-04b0-47f4-aca9-32654dd78dbb {"md5": "fd1bd3bb24090fa3aa12e8ea50a70d15", "pid": "041725522", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sperma"}], "related": [{"authorized_access_point": "Azoospermie"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1241615969", "source": "GND"}, {"type": "bf:Nbn", "value": "D009845", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D009845"}], "authorized_access_point": "Oligospermia"}], "identifier": "http://d-nb.info/gnd/4172552-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4172552-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041725522", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4172552-9", "source": "GND"}], "authorized_access_point": "Oligospermie"} 1 +2024-09-10 15:44:58.057235 2024-09-10 15:44:58.057245 085e8e99-45ae-4d79-8a5f-49d30e98c5e0 {"md5": "d00cdaa6a2ee574d7bf8d37ff60eee63", "pid": "041722027", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Brunnen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133747493", "source": "GND"}, {"type": "bf:Nbn", "value": "sh92004203", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh92004203"}], "authorized_access_point": "Nymphaea (Architecture)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133747493", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12268889", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12268889r"}], "authorized_access_point": "Nymphées"}], "identifier": "http://d-nb.info/gnd/4172202-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4172202-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041722027", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4172202-4", "source": "GND"}], "authorized_access_point": "Nymphaeum"} 1 +2024-09-10 15:45:02.949157 2024-09-10 15:45:02.949162 c8f8c047-ff25-49ae-888d-15e6aa2fad05 {"md5": "d2d62be36044ab00a2703e4111219922", "pid": "041540654", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kritiker"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331761379", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12423928", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb124239284"}], "authorized_access_point": "Critiques de télévision"}], "identifier": "http://d-nb.info/gnd/4154065-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4154065-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041540654", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4154065-7", "source": "GND"}], "authorized_access_point": "Fernsehkritiker"} 1 +2024-09-10 15:44:58.158648 2024-09-10 15:44:58.158652 b2516480-48af-408e-a178-4cf914e99f64 {"md5": "803dcefe16a60d9d38fad4b6084e2799", "pid": "041720040", "note": [{"label": ["Benutze für den gesamten Krieg und für den Krieg zwischen Schweden und Polen allein; für den Krieg zwischen Schweden und Dänemark allein benutze \\"Schwedisch-Dänischer Krieg (1657-1660)\\""], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Krieg"}], "identifier": "http://d-nb.info/gnd/4172004-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4172004-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041720040", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4172004-0", "source": "GND"}], "variant_access_point": ["1. Nordischer Krieg", "Erster Nordischer Krieg", "Nordischer Krieg (1655-1660)", "Schwedisch-Polnisch-Russisch-Dänischer Krieg", "Polnisch-schwedischer Krieg (1655-1660)", "Schwedisch-polnischer Krieg (1655-1660)", "Zweiter Nordischer Krieg (1655-1661)", "Zweiter Polnisch-Schwedischer Krieg", "Kleiner Nordischer Krieg"], "authorized_access_point": "Schwedisch-polnisch-dänischer Krieg"} 1 +2024-09-10 15:44:58.248004 2024-09-10 15:44:58.248006 1e4498fd-e4d3-44f6-8932-0ae458d7cfb6 {"md5": "a2a845720f3db0d33877293b70237209", "pid": "041718429", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Geräusch"}], "identifier": "http://d-nb.info/gnd/4171842-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4171842-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041718429", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4171842-2", "source": "GND"}], "authorized_access_point": "Niederfrequentes Geräusch"} 1 +2024-09-10 15:44:58.313971 2024-09-10 15:44:58.313976 8d1030fc-f184-40af-9bd0-b9bbe7374078 {"md5": "f32908b0ff316182a187b99d500b62b6", "pid": "041716159", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Teilchendetektor"}], "identifier": "http://d-nb.info/gnd/4171615-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4171615-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041716159", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4171615-2", "source": "GND"}], "authorized_access_point": "Neutrinodetektor"} 1 +2024-09-10 15:44:58.378354 2024-09-10 15:44:58.378358 cd3f0581-0bd1-48f6-a4a7-5b64c4105a5b {"md5": "384fccb51f6848461616980d2fa09d28", "pid": "041714059", "note": [{"label": ["Die negative Feststellungsklage ist eine Klageart, mit der die Feststellung des Nichtbestehens eines Rechtsverhältnisses geltend gemacht werden kann."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Feststellungsklage"}], "identifier": "http://d-nb.info/gnd/4171405-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4171405-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041714059", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4171405-2", "source": "GND"}], "authorized_access_point": "Negative Feststellungsklage"} 1 +2024-09-10 15:44:58.443542 2024-09-10 15:44:58.443547 31f6514e-7c24-4e0a-9b7f-4b8ef22bbb07 {"md5": "9b4b0e6e359039d17276f0c33da5c056", "pid": "041712188", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Staat"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134669534", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2009003712", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2009003712"}], "authorized_access_point": "Multinational states"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134669534", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16276182", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16276182p"}], "authorized_access_point": "États multinationaux"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970602103", "source": "GND"}, {"type": "bf:Nbn", "value": "10053023", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10053023"}], "authorized_access_point": "Vielvölkerstaat"}], "identifier": "http://d-nb.info/gnd/4171218-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4171218-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041712188", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4171218-3", "source": "GND"}], "variant_access_point": ["Vielvölkerstaat", "Multinationaler Staat"], "authorized_access_point": "Nationalitätenstaat"} 1 +2024-09-10 15:44:58.510076 2024-09-10 15:44:58.510079 81311468-d864-4a31-98dd-44706ee34d57 {"md5": "0ab844b1aa61a36c4695b00f862df290", "pid": "04171069X", "note": [{"label": ["Pflanzliche und tierische Materialien"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Organischer Rohstoff"}, {"authorized_access_point": "Agrarprodukt"}], "related": [{"authorized_access_point": "Erneuerbare Ressourcen"}, {"authorized_access_point": "Biomasse"}, {"authorized_access_point": "Biorohstoff"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970574819", "source": "GND"}, {"type": "bf:Nbn", "value": "10065163", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10065163"}], "authorized_access_point": "nachwachsende Rohstoffe"}], "identifier": "http://d-nb.info/gnd/4171069-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4171069-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04171069X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4171069-1", "source": "GND"}], "variant_access_point": ["Nachwachsende Rohstoffe"], "authorized_access_point": "Nachwachsender Rohstoff"} 1 +2024-09-10 15:44:59.004339 2024-09-10 15:44:59.004342 285e1588-75a5-4aba-8e1e-db1ff97ad125 {"md5": "af4b88785baa0b784bf85c0ad3bf8b09", "pid": "041691989", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Medienzentrum"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133679013", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85009465", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85009465"}], "authorized_access_point": "Audio-visual library service"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133679013", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11975004", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11975004w"}], "authorized_access_point": "Médiathèques"}], "identifier": "http://d-nb.info/gnd/4169198-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4169198-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041691989", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4169198-2", "source": "GND"}], "variant_access_point": ["Mediathek"], "authorized_access_point": "Mediothek"} 1 +2024-09-10 15:44:58.585733 2024-09-10 15:44:58.585735 59350aa3-6971-498f-9346-68068751e6d0 {"md5": "3e964836bc50f4020705c7e1ac4f9275", "pid": "04171007X", "note": [{"label": ["Physiolog. Vorgänge nach der Ernte"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113380554X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2002006516", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2002006516"}], "authorized_access_point": "Postharvest physiology"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113380554X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12470674", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12470674s"}], "authorized_access_point": "Physiologie après récolte"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256239585", "source": "GND"}, {"type": "bf:Nbn", "value": "24406", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_24406"}], "authorized_access_point": "postharvest physiology"}], "identifier": "http://d-nb.info/gnd/4171007-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4171007-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04171007X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4171007-1", "source": "GND"}], "variant_access_point": ["Postharvest physiology"], "authorized_access_point": "Nacherntephysiologie"} 1 +2024-09-10 15:44:58.661268 2024-09-10 15:44:58.661271 4700092a-d524-4112-af6e-b73f24a8c465 {"md5": "2d9dbb820753c4a7c0e2187420108924", "pid": "041707109", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gruppe (Mathematik)"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133359478X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85063698", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85063698"}], "authorized_access_point": "Hypergroups"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133359478X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12451436", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12451436h"}], "authorized_access_point": "Hypergroupes"}], "identifier": "http://d-nb.info/gnd/4170710-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4170710-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041707109", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4170710-2", "source": "GND"}], "variant_access_point": ["Hypergruppe (Gruppentheorie)"], "authorized_access_point": "Multigruppe"} 1 +2024-09-10 15:44:58.724808 2024-09-10 15:44:58.724812 0b582baf-3042-4d1f-939e-89e331911bd2 {"md5": "f37cfe20d4c0cfcba7b4f52baf5a6752", "pid": "04170441X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133867782", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13557117", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb135571175"}], "authorized_access_point": "Lune - Surface"}], "identifier": "http://d-nb.info/gnd/4170441-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4170441-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04170441X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4170441-1", "source": "GND"}], "variant_access_point": ["Mond"], "authorized_access_point": "Mondoberfläche"} 1 +2024-09-10 15:44:58.797976 2024-09-10 15:44:58.797982 989be4c2-e289-45cf-9d62-66c14068512d {"md5": "3c0aa68fdf9271997052eecf0c88832d", "pid": "041700465", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fahrzeug"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133675050", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85027439", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85027439"}], "authorized_access_point": "Coaster cars"}], "identifier": "http://d-nb.info/gnd/4170046-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4170046-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041700465", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4170046-6", "source": "GND"}], "variant_access_point": ["Minicar (Seifenkiste)"], "authorized_access_point": "Seifenkiste"} 1 +2024-09-10 15:44:58.864911 2024-09-10 15:44:58.864916 f63590af-8054-46b6-aca3-b135de4f5665 {"md5": "685eaad3a275f85fb44f4c29c10959c9", "pid": "041693442", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Eid"}, {"authorized_access_point": "Falschaussage"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134106920", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85099968", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85099968"}], "authorized_access_point": "Perjury"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134106920", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12010894", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb120108941"}], "authorized_access_point": "Parjure"}], "identifier": "http://d-nb.info/gnd/4169344-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4169344-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041693442", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4169344-9", "source": "GND"}], "authorized_access_point": "Meineid"} 1 +2024-09-10 15:44:58.939822 2024-09-10 15:44:58.939829 bc564a0c-1670-48ff-8c79-8107d584e8c1 {"md5": "d099c49216b25fe42f03b46b23d96313", "pid": "041692403", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134278373", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85056581", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85056581"}], "authorized_access_point": "Gray mullets"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134278373", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12330195", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12330195c"}], "authorized_access_point": "Mugilidés"}], "identifier": "http://d-nb.info/gnd/4169240-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4169240-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041692403", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4169240-8", "source": "GND"}], "variant_access_point": ["Mugilidae"], "authorized_access_point": "Meeräschen"} 1 +2024-09-10 15:44:59.279869 2024-09-10 15:44:59.279873 da697302-6941-4275-aa9d-a96c3fd32f18 {"md5": "dbb9fce12e344ddf660ed84db57f9098", "pid": "041682106", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Entlüftung"}, {"authorized_access_point": "Durchlüftung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334018308", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85142747", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85142747"}], "authorized_access_point": "Ventilation"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334018308", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11951224", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11951224p"}], "authorized_access_point": "Ventilation"}], "identifier": "http://d-nb.info/gnd/4168210-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4168210-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041682106", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4168210-5", "source": "GND"}], "variant_access_point": ["Lüftungssystem"], "authorized_access_point": "Lüftung"} 1 +2024-09-10 15:44:59.378637 2024-09-10 15:44:59.37864 8dc972eb-be54-4fe7-a481-34d6ab68f801 {"md5": "f566259b39e4d014cd3b2e4e332a0b1f", "pid": "041679792", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Livl%C3%A4ndischer_Krieg&oldid=213445252"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Krieg"}], "identifier": "http://d-nb.info/gnd/4167979-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4167979-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041679792", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4167979-9", "source": "GND"}], "variant_access_point": ["Livonskaja vojna"], "authorized_access_point": "Livländischer Krieg"} 1 +2024-09-10 15:44:59.445084 2024-09-10 15:44:59.445089 8b1b5a2d-9fa8-490a-aa9c-c5fff0eca80b {"md5": "710e690b98b17c1790c68af8dbea2aea", "pid": "041678532", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133824862", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2007010787", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2007010787"}], "authorized_access_point": "Literary manifestos"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133824862", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12536532", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12536532c"}], "authorized_access_point": "Manifestes littéraires et artistiques"}], "identifier": "http://d-nb.info/gnd/4167853-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4167853-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041678532", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4167853-9", "source": "GND"}], "variant_access_point": ["Manifest"], "authorized_access_point": "Literarisches Manifest"} 1 +2024-09-10 15:44:59.514817 2024-09-10 15:44:59.514821 be0b73c7-4b9e-479e-8bd5-aae7fbb2c698 {"md5": "5f7c7b14551442276f4e7d2fd2b1a190", "pid": "041667093", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Walzer"}, {"authorized_access_point": "Standardtänze"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133811841", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85015940", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85015940"}], "authorized_access_point": "Boston (Dance)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133811841", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12489782", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb124897822"}], "authorized_access_point": "Boston (danse)"}], "identifier": "http://d-nb.info/gnd/4166709-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4166709-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041667093", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4166709-8", "source": "GND"}], "variant_access_point": ["English waltz", "English-Waltz", "Englishwaltz", "Valse Boston", "Boston (Musik)"], "authorized_access_point": "Langsamer Walzer"} 1 +2024-09-10 15:44:59.606897 2024-09-10 15:44:59.606901 18fc03d2-5fac-4d3e-ac5c-f4e8915fa953 {"md5": "c1c77e557f456b91aaf2bc9c299b0556", "pid": "041664795", "note": [{"label": ["Seelsorge durch Laien"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Seelsorge"}], "related": [{"authorized_access_point": "Laienapostolat"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134596170", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13554687", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb135546870"}], "authorized_access_point": "Agents de pastorale"}], "identifier": "http://d-nb.info/gnd/4166479-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4166479-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041664795", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4166479-6", "source": "GND"}], "variant_access_point": ["Laie"], "authorized_access_point": "Laienseelsorge"} 1 +2024-09-10 15:44:59.6846 2024-09-10 15:44:59.684604 43c4baa1-fb17-4fa2-ba98-1b734688043d {"md5": "e18e54cabfe8cd4fbf37f6e486c80322", "pid": "041653025", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Geflecht (Technik)"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134799934", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13516282", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13516282t"}], "authorized_access_point": "Vannerie"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1299909876", "source": "GND"}, {"type": "bf:Nbn", "value": "XX526260", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX526260"}], "authorized_access_point": "Cestería"}], "identifier": "http://d-nb.info/gnd/4165302-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4165302-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041653025", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4165302-6", "source": "GND"}], "variant_access_point": ["Korbflechterei"], "authorized_access_point": "Korbware"} 1 +2024-09-10 15:44:59.755312 2024-09-10 15:44:59.755317 8626e4f0-4ae0-4fcd-94b3-69d8cfa102d8 {"md5": "e065af865a28344e52279a8d5994c251", "pid": "041650018", "note": [{"label": ["Alphabetisches Verzeichnis aller in einer Schrift vorkommenden Wörter oder Sachen mit Stellenangabe (RDA AH-007).", "Auch für Register verwendet (RDA AH-007)."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Verzeichnis"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133614140", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85030642", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85030642"}], "authorized_access_point": "Concordances"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133614140", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11931766", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11931766k"}], "authorized_access_point": "Concordances"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254339159", "source": "GND"}, {"type": "bf:Nbn", "value": "13311", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/13311"}], "authorized_access_point": "Concordanze"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254450777", "source": "GND"}, {"type": "bf:Nbn", "value": "XX526531", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX526531"}], "authorized_access_point": "Concordancias"}], "identifier": "http://d-nb.info/gnd/4165001-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4165001-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041650018", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4165001-3", "source": "GND"}], "variant_access_point": ["Personenregister", "Sachregister (Formschlagwort)", "Wortindex", "Wörterverzeichnis", "Werkkonkordanz"], "authorized_access_point": "Konkordanz"} 1 +2024-09-10 15:44:59.847333 2024-09-10 15:44:59.847338 8a3b5ced-c659-49a6-9556-c8d1cb90d699 {"md5": "c33f8e659ae303eccd1d9ec4da809364", "pid": "041640047", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kapuzineraffenartige"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333261039", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85126622", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85126622"}], "authorized_access_point": "Spider monkeys"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333261039", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16723695", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16723695h"}], "authorized_access_point": "Singes-araignées"}], "identifier": "http://d-nb.info/gnd/4164004-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4164004-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041640047", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4164004-4", "source": "GND"}], "variant_access_point": ["Ateles"], "authorized_access_point": "Klammeraffe"} 1 +2024-09-10 15:44:59.933689 2024-09-10 15:44:59.933694 15c9e3ca-c3e2-4fb4-b2c2-7b7721f31a99 {"md5": "c24dd76d631d134a37f7f554be6e4e5e", "pid": "041639383", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Konkordat"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134706170", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85030644", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85030644"}], "authorized_access_point": "Concordats"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134706170", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13318920", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13318920b"}], "authorized_access_point": "Concordats"}], "identifier": "http://d-nb.info/gnd/4163938-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4163938-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041639383", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4163938-8", "source": "GND"}], "variant_access_point": ["Staatskirchenvertrag", "Staat"], "authorized_access_point": "Kirchenvertrag"} 1 +2024-09-10 15:45:00.016875 2024-09-10 15:45:00.016881 a8f19738-244d-4fc4-8f58-fe81aeeef035 {"md5": "b6713c8ce8e677be4eea791b0798bc23", "pid": "041634179", "note": [{"label": ["Bestandsverzeichnis einer Sammlung (Bibliothek, Museum usw.) oder einer Gesamtheit von Sammlungen (RDA AH-007).", "Auch für Verlagskataloge. Sofern zutreffend verwende die spezifischen Begriffe Antiquariatskatalog, Auktionskatalog, Ausstellungskatalog, Verkaufskatalog. Bei Archivbeständen verwende Inventar. Für andere Arten der Auflistung verwende Verzeichnis (RDA AH-007)."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Verzeichnis"}], "related": [{"authorized_access_point": "Bibliografie"}, {"authorized_access_point": "Inventar"}, {"authorized_access_point": "Neuerwerbungsliste"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133643949", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85020917", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85020917"}], "authorized_access_point": "Publishers' catalogs"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133680755", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2005003411", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2005003411"}], "authorized_access_point": "Catalogs"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133643949", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF119484598", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11948459c"}], "authorized_access_point": "Catalogues d'éditeurs"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133680755", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF119759400", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119759407"}], "authorized_access_point": "Catalogues"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254335196", "source": "GND"}, {"type": "bf:Nbn", "value": "10004", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/10004"}], "authorized_access_point": "Cataloghi editoriali"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254447520", "source": "GND"}, {"type": "bf:Nbn", "value": "XX528701", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX528701"}], "authorized_access_point": "Catálogos de editores"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1253498628", "source": "GND"}, {"type": "bf:Nbn", "value": "D019494", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D019494"}], "authorized_access_point": "Catalog"}], "identifier": "http://d-nb.info/gnd/4163417-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4163417-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041634179", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4163417-2", "source": "GND"}], "variant_access_point": ["Bestandskatalog", "Bestandsverzeichnis (Formschlagwort)"], "authorized_access_point": "Katalog"} 1 +2024-09-10 15:45:00.099066 2024-09-10 15:45:00.099075 8e823a8c-a49e-43a6-9493-4c87d4326b8d {"md5": "865732259ae17c4a3ebc2aca08f6124a", "pid": "041631692", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Großguramis"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333951116", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85122191", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85122191"}], "authorized_access_point": "Siamese fighting fish"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333951116", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF15954764", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb15954764k"}], "authorized_access_point": "Betta splendens"}], "identifier": "http://d-nb.info/gnd/4163169-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4163169-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041631692", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4163169-9", "source": "GND"}], "variant_access_point": ["Siamesischer Kampffisch", "Betta splendens", "Schleierkampffisch"], "authorized_access_point": "Kampffisch"} 1 +2024-09-10 15:45:03.057666 2024-09-10 15:45:03.057671 6ee87bac-0e0b-4c9f-9d31-058b2a34efe1 {"md5": "9eb8497380ca7b68259ac4dd1bbd878d", "pid": "041540387", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kommunikationssatellit"}], "identifier": "http://d-nb.info/gnd/4154038-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4154038-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041540387", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4154038-4", "source": "GND"}], "authorized_access_point": "Fernmeldesatellit"} 1 +2024-09-10 15:45:00.172022 2024-09-10 15:45:00.172025 dcd7ee5b-be98-47c0-9460-2193e444e5b0 {"md5": "82e65cdd2aec87b98affce474cc474c0", "pid": "041631676", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134052545", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85028791", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85028791"}], "authorized_access_point": "Combat"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134052545", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11978385", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119783858"}], "authorized_access_point": "Combat"}], "identifier": "http://d-nb.info/gnd/4163167-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4163167-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041631676", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4163167-5", "source": "GND"}], "authorized_access_point": "Kampf"} 1 +2024-09-10 15:45:00.235324 2024-09-10 15:45:00.235328 4507f09b-b279-4432-befe-cc796da9810c {"md5": "a53609667246c6177088e50a8bafabdd", "pid": "04163120X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Kalmarer_Union&oldid=212527898"], "noteType": "dataSource"}, {"label": ["Vereinigung der Königreiche Dänemark, Norwegen u. Schweden, mit Unterbrechungen von 1397 bis 1523 (06.06.) bestanden."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bündnis"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133842003", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85071361", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85071361"}], "authorized_access_point": "Kalmar, Union of, 1397"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133842003", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13182978", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb131829789"}], "authorized_access_point": "Kalmar, Union de (1397)"}], "identifier": "http://d-nb.info/gnd/4163120-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4163120-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04163120X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4163120-1", "source": "GND"}], "authorized_access_point": "Kalmarer Union"} 1 +2024-09-10 15:45:00.313237 2024-09-10 15:45:00.313242 7d9bd0a0-b1e5-450e-9964-de3c5422fc92 {"md5": "89219e2ecd49276c3a2e59bd318ef9f6", "pid": "041627458", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133878296", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85070147", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85070147"}], "authorized_access_point": "Jesus People"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133878296", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13607037", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13607037n"}], "authorized_access_point": "Mouvements pour Jésus"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970585713", "source": "GND"}, {"type": "bf:Nbn", "value": "10048163", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10048163"}], "authorized_access_point": "religiöse Bewegung"}], "identifier": "http://d-nb.info/gnd/4162745-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4162745-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041627458", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4162745-3", "source": "GND"}], "variant_access_point": ["Jesus-People", "Jesus-Revolution"], "authorized_access_point": "Jesus-Bewegung"} 1 +2024-09-10 15:45:00.380027 2024-09-10 15:45:00.380031 29f6dcbf-481f-414d-b4aa-145b6717feb2 {"md5": "11e2f785749c6f4ce25002159602df95", "pid": "041623010", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Semipermeable Membran"}, {"authorized_access_point": "Membranionenaustauscher"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133692990", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85067803", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85067803"}], "authorized_access_point": "Ion-permeable membranes"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133692990", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11981513", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11981513g"}], "authorized_access_point": "Membranes échangeuses d'ions"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254444629", "source": "GND"}, {"type": "bf:Nbn", "value": "XX553088", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX553088"}], "authorized_access_point": "Membranas de intercambio iónico"}], "identifier": "http://d-nb.info/gnd/4162301-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4162301-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041623010", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4162301-0", "source": "GND"}], "variant_access_point": ["Ionenaustauschmembran"], "authorized_access_point": "Ionenaustauschermembran"} 1 +2024-09-10 15:45:00.440209 2024-09-10 15:45:00.440212 9ea04ca3-da11-4760-a01f-cb801b641fa2 {"md5": "1fe8f9d82e577676a0d68fd6a5349630", "pid": "041621662", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Toleranz"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134651988", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85135882", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85135882"}], "authorized_access_point": "Toleration"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134651988", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11933613", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119336136"}], "authorized_access_point": "Tolérance"}], "identifier": "http://d-nb.info/gnd/4162166-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4162166-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041621662", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4162166-9", "source": "GND"}], "authorized_access_point": "Intoleranz"} 1 +2024-09-10 15:45:00.501266 2024-09-10 15:45:00.501269 60f0f71f-e883-4885-9f58-d34436aa2767 {"md5": "ce6ffd1bfcf465a5a5f0870507ed882f", "pid": "041619633", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Krankenpflege"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133738958", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85067185", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85067185"}], "authorized_access_point": "Intensive care nursing"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133738958", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12245931", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12245931k"}], "authorized_access_point": "Soins infirmiers en soins intensifs"}], "identifier": "http://d-nb.info/gnd/4161963-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4161963-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041619633", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4161963-8", "source": "GND"}], "variant_access_point": ["Critical care nursing"], "authorized_access_point": "Intensivpflege"} 1 +2024-09-10 15:45:00.565218 2024-09-10 15:45:00.56522 033963a7-84bb-45ad-bc57-57ae41eb9df4 {"md5": "de079d297f3fa24e78fa074768606a92", "pid": "041619366", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bauelement"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134739672", "source": "GND"}, {"type": "bf:Nbn", "value": "sh97007351", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh97007351"}], "authorized_access_point": "Microelectromechanical systems"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134739672", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13602331", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb136023316"}], "authorized_access_point": "Systèmes microélectromécaniques"}], "identifier": "http://d-nb.info/gnd/4161936-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4161936-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041619366", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4161936-5", "source": "GND"}], "authorized_access_point": "Integriertes Bauelement"} 1 +2024-09-10 15:45:00.652187 2024-09-10 15:45:00.652192 05c8abdb-b761-43c3-949e-d81bd492d830 {"md5": "ae76dccdc0c90e55aec52636e3c4a00e", "pid": "041617266", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Anleihe"}, {"authorized_access_point": "Inhaberpapier"}], "identifier": "http://d-nb.info/gnd/4161726-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4161726-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041617266", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4161726-5", "source": "GND"}], "variant_access_point": ["Schuldverschreibung auf den Inhaber", "Bearer bond"], "authorized_access_point": "Inhaberschuldverschreibung"} 1 +2024-09-10 15:45:00.71195 2024-09-10 15:45:00.711953 cac8f214-0822-4b21-b5e4-6bd1ee875166 {"md5": "3358bd85a6c0068e37a26094050f9ce7", "pid": "041616375", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tragwerk"}], "identifier": "http://d-nb.info/gnd/4161637-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4161637-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041616375", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4161637-6", "source": "GND"}], "variant_access_point": ["Starres Tragwerk"], "authorized_access_point": "Inelastisches Tragwerk"} 1 +2024-09-10 15:45:00.773183 2024-09-10 15:45:00.773187 102403d0-2622-46e7-92d7-07fb85cddeda {"md5": "de5ba5d4503b99ed3d7a768253a19f63", "pid": "041612469", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133982174", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85064235", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85064235"}], "authorized_access_point": "Ikat"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133982174", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11953399", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11953399b"}], "authorized_access_point": "Ikat"}], "identifier": "http://d-nb.info/gnd/4161246-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4161246-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041612469", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4161246-2", "source": "GND"}], "authorized_access_point": "Ikat"} 1 +2024-09-10 15:45:00.847159 2024-09-10 15:45:00.847163 66be8a55-8cb8-4b47-b039-2fd4acf37344 {"md5": "b7a6abef584a557d30a47d0790c444f3", "pid": "041607988", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Humoristin"}], "identifier": "http://d-nb.info/gnd/4160798-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4160798-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041607988", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4160798-3", "source": "GND"}], "authorized_access_point": "Humorist"} 1 +2024-09-10 15:45:00.908422 2024-09-10 15:45:00.908425 c3a40e16-13df-47eb-914a-a6b954e7ef81 {"md5": "5056620d9c07c40c75a7d2c1f5284612", "pid": "041605799", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Katalyse"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134085923", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2014001146", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2014001146"}], "authorized_access_point": "Homogeneous catalysis"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134085923", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11991895", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11991895p"}], "authorized_access_point": "Catalyse homogène"}], "identifier": "http://d-nb.info/gnd/4160579-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4160579-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041605799", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4160579-2", "source": "GND"}], "authorized_access_point": "Homogene Katalyse"} 1 +2024-09-10 15:45:00.9747 2024-09-10 15:45:00.974702 082847b0-96f8-4918-ba91-95c6e289dad1 {"md5": "82d9037fb6c66972b010b8a2348a994c", "pid": "041603176", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Krebs (Medizin)"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134590423", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2010010377", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2010010377"}], "authorized_access_point": "Testis - Cancer"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1241605815", "source": "GND"}, {"type": "bf:Nbn", "value": "D013736", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D013736"}], "authorized_access_point": "Testicular Neoplasms"}], "identifier": "http://d-nb.info/gnd/4160317-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4160317-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041603176", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4160317-5", "source": "GND"}], "variant_access_point": ["Maligner Hodentumor"], "authorized_access_point": "Hodenkrebs"} 1 +2024-09-10 15:45:01.036961 2024-09-10 15:45:01.036963 11811bbc-9a5f-49fe-a2a3-c8af7849f1f9 {"md5": "b1c64ccc46d71a533cb144ec410faf72", "pid": "041601475", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Elektronische Schaltung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133676413", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85084954", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85084954"}], "authorized_access_point": "Microwave circuits"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133676413", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11972999", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119729995"}], "authorized_access_point": "Circuits pour microondes"}], "identifier": "http://d-nb.info/gnd/4160147-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4160147-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041601475", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4160147-6", "source": "GND"}], "variant_access_point": ["Hochfrequenz-Schaltung"], "authorized_access_point": "Hochfrequenzschaltung"} 1 +2024-09-10 15:45:01.101039 2024-09-10 15:45:01.101042 b5cedb0d-055b-4f81-a858-8a62177bd5e4 {"md5": "cf4f6fc8f6d200b5d1dab81445e591a9", "pid": "041600622", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Geometrie"}], "identifier": "http://d-nb.info/gnd/4160062-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4160062-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041600622", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4160062-9", "source": "GND"}], "authorized_access_point": "Hjelmslevsche Geometrie"} 1 +2024-09-10 15:45:01.164564 2024-09-10 15:45:01.164569 d47e6b2f-609a-4871-8411-2577d466326a {"md5": "5b5b54d947c411c524efd4c3de77c3cf", "pid": "041600010", "note": [{"label": ["Verwendet für Gesamtdarstellungen; bei zeitlich und/oder sachlich eingeschränkten Darstellungen verwende Geschichte mit Jahreszahl und ggf. zusätzliches Sach-SW."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Grammatik"}, {"authorized_access_point": "Sprachwandel"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134037708", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11975748", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11975748f"}], "authorized_access_point": "Grammaire historique"}], "identifier": "http://d-nb.info/gnd/4160001-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4160001-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041600010", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4160001-0", "source": "GND"}], "variant_access_point": ["Grammatik"], "authorized_access_point": "Historische Grammatik"} 1 +2024-09-10 15:45:01.232758 2024-09-10 15:45:01.232763 422ad032-8399-4986-8c36-297304c3f1a4 {"md5": "0ff4ce962512fc2904a55e66206d78e0", "pid": "041596277", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Viren"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113400849X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85060462", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85060462"}], "authorized_access_point": "Herpesviruses"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113400849X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11965282", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119652821"}], "authorized_access_point": "Herpesviridés"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254328882", "source": "GND"}, {"type": "bf:Nbn", "value": "5356", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/5356"}], "authorized_access_point": "Herpesviridae"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254439528", "source": "GND"}, {"type": "bf:Nbn", "value": "XX533805", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX533805"}], "authorized_access_point": "Virus del herpes"}], "identifier": "http://d-nb.info/gnd/4159627-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4159627-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041596277", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4159627-4", "source": "GND"}], "variant_access_point": ["Herpesviridae"], "authorized_access_point": "Herpesviren"} 1 +2024-09-10 15:45:02.137397 2024-09-10 15:45:02.137402 9a3007e8-a890-4d09-96d4-6451f01da45d {"md5": "16de8328fa832b43ab735d157cf020e3", "pid": "041563409", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133665144", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85144471", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85144471"}], "authorized_access_point": "Vultures"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133665144", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11965079", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11965079k"}], "authorized_access_point": "Vautours"}], "identifier": "http://d-nb.info/gnd/4156340-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4156340-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041563409", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4156340-2", "source": "GND"}], "authorized_access_point": "Geier"} 1 +2024-09-10 15:45:01.316254 2024-09-10 15:45:01.316257 7189d439-3256-4a40-a2db-992fedf95a83 {"md5": "baa3eef9dbd5f38e277d07b1ba84c123", "pid": "041595505", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Antigen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133688675", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85060294", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85060294"}], "authorized_access_point": "Hepatitis associated antigen"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133688675", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11979078", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11979078d"}], "authorized_access_point": "Antigène Australia"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)125435199X", "source": "GND"}, {"type": "bf:Nbn", "value": "22623", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/22623"}], "authorized_access_point": "Antigene Australia"}], "identifier": "http://d-nb.info/gnd/4159550-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4159550-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041595505", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4159550-6", "source": "GND"}], "variant_access_point": ["HAA"], "authorized_access_point": "Hepatitis-Assoziiertes Antigen"} 1 +2024-09-10 15:45:01.38154 2024-09-10 15:45:01.381544 54c18564-6b2b-4211-943d-e09186e3980d {"md5": "db03364fc8240d830c8787f04d7ad31a", "pid": "041582969", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Polnisch"}], "identifier": "http://d-nb.info/gnd/4158296-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4158296-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041582969", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4158296-2", "source": "GND"}], "variant_access_point": ["Mundart Polnisch (Großpolen)"], "authorized_access_point": "Großpolnisch"} 1 +2024-09-10 15:45:01.454966 2024-09-10 15:45:01.454969 539066e7-613f-4355-b9a8-9abd2e9ead62 {"md5": "e2c8d2ee1a24415ea01add25b1ccd399", "pid": "041582675", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Familie"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1270440217", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2005004783", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2005004783"}], "authorized_access_point": "Extended families"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970555512", "source": "GND"}, {"type": "bf:Nbn", "value": "10043232", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10043232"}], "authorized_access_point": "Großfamilie"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970572069", "source": "GND"}, {"type": "bf:Nbn", "value": "10043230", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10043230"}], "authorized_access_point": "Mehrgenerationenfamilie"}], "identifier": "http://d-nb.info/gnd/4158267-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4158267-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041582675", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4158267-6", "source": "GND"}], "variant_access_point": ["Mehrgenerationenfamilie", "Mehrgenerationenverband"], "authorized_access_point": "Großfamilie"} 1 +2024-09-10 15:45:01.519877 2024-09-10 15:45:01.519881 81ba9122-7d79-441b-a3ab-e815ce65dd23 {"md5": "ffdf42a46cafbfc23cab695ab7ea1b7b", "pid": "041582500", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Seenadeln"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133348982X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17818710", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17818710w"}], "authorized_access_point": "Syngnathe aiguille"}], "identifier": "http://d-nb.info/gnd/4158250-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4158250-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041582500", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4158250-0", "source": "GND"}], "variant_access_point": ["Syngnathus acus"], "authorized_access_point": "Große Seenadel"} 1 +2024-09-10 15:45:01.598699 2024-09-10 15:45:01.598704 e9fae23e-c39d-4ef1-8563-1bae703eb33d {"md5": "88f4fccaada6ef144bf04bea2744541a", "pid": "041580176", "note": [{"label": ["Nur f. sprachenübergreifende Sachverhalte, sonst verkn. z.B. Deutsch; Grammatik ; Deutschunterricht"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sprachunterricht"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134169531", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2008118370", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2008118370"}], "authorized_access_point": "Grammar, Comparative and general - Study and teaching"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134169531", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12110550", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12110550r"}], "authorized_access_point": "Grammaire - Étude et enseignement"}], "identifier": "http://d-nb.info/gnd/4158017-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4158017-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041580176", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4158017-5", "source": "GND"}], "authorized_access_point": "Grammatikunterricht"} 1 +2024-09-10 15:45:02.880418 2024-09-10 15:45:02.880423 c8bd18a3-8dbd-4c49-8f16-56dfd92bb530 {"md5": "1168b66314eaba33357a9d030d1754bc", "pid": "041543688", "note": [{"label": ["Als Homonymenzusatz bei Personenschlagworten zugelassen."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Filmkritiker"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331760828", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85147650", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85147650"}], "authorized_access_point": "Women film critics"}], "identifier": "http://d-nb.info/gnd/4154368-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4154368-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041543688", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4154368-3", "source": "GND"}], "variant_access_point": ["Filmpublizistin"], "authorized_access_point": "Filmkritikerin"} 1 +2024-09-10 15:45:01.67731 2024-09-10 15:45:01.677313 14967aee-412c-4227-bd64-49e7bb8ad4f6 {"md5": "0f5ce2145480aad80b2db26d5103cfda", "pid": "041579550", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Urteil"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134373848", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85095346", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85095346"}], "authorized_access_point": "Ordeal"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134373848", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12647532", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb126475320"}], "authorized_access_point": "Ordalie"}], "identifier": "http://d-nb.info/gnd/4157955-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4157955-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041579550", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4157955-0", "source": "GND"}], "variant_access_point": ["Gottesgericht (Gottesurteil)", "Ordal"], "authorized_access_point": "Gottesurteil"} 1 +2024-09-10 15:45:01.740191 2024-09-10 15:45:01.740193 c48e4112-7477-42a8-8724-d6770733a736 {"md5": "1f4b8b1176beedaf88c1118cd58c8727", "pid": "041577760", "note": [{"label": ["Form der Lehrdichtung in allen Literaturen, besonders auf der älteren Stufe ihrer Entwicklung"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sinnspruch"}, {"authorized_access_point": "Gnomologie"}], "related": [{"authorized_access_point": "Sentenz"}], "identifier": "http://d-nb.info/gnd/4157776-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4157776-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041577760", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4157776-0", "source": "GND"}], "authorized_access_point": "Gnome"} 1 +2024-09-10 15:45:01.808523 2024-09-10 15:45:01.808529 96315cdd-d824-4ec5-80a3-9f02d7c4889a {"md5": "6660092fff460f694d8ba77723b6006f", "pid": "041573579", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Supraleitung"}], "related": [{"authorized_access_point": "Ginzburg-Landau-Gleichung"}, {"authorized_access_point": "Landau-Theorie"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333593597", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16534388", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16534388h"}], "authorized_access_point": "Théorie de Ginzburg-Landau"}], "identifier": "http://d-nb.info/gnd/4157357-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4157357-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041573579", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4157357-2", "source": "GND"}], "variant_access_point": ["Ginsburg-Landau-Theorie"], "authorized_access_point": "Ginzburg-Landau-Theorie"} 1 +2024-09-10 15:45:01.896629 2024-09-10 15:45:01.896633 94e697eb-0611-409c-b08d-f2f94d89e1a1 {"md5": "3d550bedc073b44fdf1b9cee09fd671c", "pid": "041570316", "note": [{"label": ["ohne HZ für den Sprengkörper"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Munition"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334236135", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85107374", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85107374"}], "authorized_access_point": "Projectiles"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334236135", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13318836", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13318836f"}], "authorized_access_point": "Projectiles"}], "identifier": "http://d-nb.info/gnd/4157031-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4157031-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041570316", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4157031-5", "source": "GND"}], "authorized_access_point": "Geschoss"} 1 +2024-09-10 15:45:01.973091 2024-09-10 15:45:01.973094 28b4fee7-97ab-45b4-8c3d-ff1e148cf25d {"md5": "a267bdedbded004f7b8e7a0b16cadfd3", "pid": "041570154", "note": [{"label": ["Medizinische Maßnahmen zur Anpassung der Geschlechtsmerkmale an die Geschlechtsidentität"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332649548", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11980654", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119806543"}], "authorized_access_point": "Réassignation sexuelle"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254434836", "source": "GND"}, {"type": "bf:Nbn", "value": "XX533275", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX533275"}], "authorized_access_point": "Transexualismo"}], "identifier": "http://d-nb.info/gnd/4157015-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4157015-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041570154", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4157015-7", "source": "GND"}], "variant_access_point": ["Geschlechtsumwandlung", "Geschlechtsmerkmale", "Geschlechtstransformation"], "authorized_access_point": "Geschlechtsangleichung"} 1 +2024-09-10 15:45:02.048453 2024-09-10 15:45:02.048457 1b410b97-6151-4d29-b252-be156866496c {"md5": "c742022e88df2c7da423e48ae0168173", "pid": "041565762", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Agrarproduktverarbeitung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134033109", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11973827", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119738278"}], "authorized_access_point": "Légumes - Transformation"}], "identifier": "http://d-nb.info/gnd/4156576-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4156576-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041565762", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4156576-9", "source": "GND"}], "variant_access_point": ["Gemüseverwertung", "Gemüse", "Gemüse"], "authorized_access_point": "Gemüseverarbeitung"} 1 +2024-09-10 15:45:02.228519 2024-09-10 15:45:02.228523 f07046e4-bbb3-40c9-b73f-f919516ba7a4 {"md5": "ab18a432abebffde01c9ad3431458163", "pid": "04155812X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133871852", "source": "GND"}, {"type": "bf:Nbn", "value": "sh90005631", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh90005631"}], "authorized_access_point": "Galagos"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133871852", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13571216", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb135712162"}], "authorized_access_point": "Galagidés"}], "identifier": "http://d-nb.info/gnd/4155812-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4155812-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04155812X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4155812-1", "source": "GND"}], "variant_access_point": ["Buschbabies", "Galagidae"], "authorized_access_point": "Galagos (Familie)"} 1 +2024-09-10 15:45:02.308302 2024-09-10 15:45:02.308305 300fffa8-04aa-4efd-b061-40df33ff4c55 {"md5": "93788ab38f2c69387f8797959f175b9b", "pid": "041558103", "note": [{"label": ["Gattung"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133871860", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85052750", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85052750"}], "authorized_access_point": "Galago (Genus)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133871860", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13571222", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb135712220"}], "authorized_access_point": "Galago (genre)"}], "identifier": "http://d-nb.info/gnd/4155810-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4155810-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041558103", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4155810-8", "source": "GND"}], "variant_access_point": ["Buschbaby"], "authorized_access_point": "Galago"} 1 +2024-09-10 15:45:02.394897 2024-09-10 15:45:02.394901 ab28e8a7-44e1-40a7-b0c1-8e9f11926b88 {"md5": "7cbff930e8c40bac75183e6dd8bebb02", "pid": "041556984", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Prüftechnik"}], "identifier": "http://d-nb.info/gnd/4155698-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4155698-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041556984", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4155698-7", "source": "GND"}], "variant_access_point": ["Funktionsprüfung", "Funktionskontrolle"], "authorized_access_point": "Funktionstest"} 1 +2024-09-10 15:45:02.500296 2024-09-10 15:45:02.500306 c0c47a29-3862-4794-bbdf-08a9db6ed7b6 {"md5": "4c1e81c98752cea74440a697fd1adc8c", "pid": "041555252", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4155525-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4155525-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041555252", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4155525-9", "source": "GND"}], "authorized_access_point": "Fructoselysin"} 1 +2024-09-10 15:45:02.632712 2024-09-10 15:45:02.632721 82b62a76-af55-403e-bc2f-649711445337 {"md5": "a4269b3887af21cbb5025f090e93e865", "pid": "041552725", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966977858", "source": "GND"}, {"type": "bf:Nbn", "value": "15115-1", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/15115-1"}], "authorized_access_point": "Datenerhebung"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970542453", "source": "GND"}, {"type": "bf:Nbn", "value": "10040547", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10040547"}], "authorized_access_point": "Datengewinnung"}], "identifier": "http://d-nb.info/gnd/4155272-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4155272-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041552725", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4155272-6", "source": "GND"}], "variant_access_point": ["Erhebung (Statistik)", "Statistische Erhebung", "Datenbeschaffung", "Datengewinnung", "Datenproduktion", "Datengenerierung"], "authorized_access_point": "Datenerhebung"} 1 +2024-09-10 15:45:02.710484 2024-09-10 15:45:02.710488 984f51d2-96f7-4988-a6ed-28d951e564e6 {"md5": "7938a895f8a80d8debc73851b58369ca", "pid": "041552334", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134287275", "source": "GND"}, {"type": "bf:Nbn", "value": "sh87003395", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh87003395"}], "authorized_access_point": "Women's shelters"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134287275", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12346055", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12346055h"}], "authorized_access_point": "Centres d'hébergement pour femmes"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970550995", "source": "GND"}, {"type": "bf:Nbn", "value": "10044115", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10044115"}], "authorized_access_point": "Frauenhaus"}], "identifier": "http://d-nb.info/gnd/4155233-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4155233-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041552334", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4155233-7", "source": "GND"}], "variant_access_point": ["Frauenzufluchtstätte"], "authorized_access_point": "Frauenhaus"} 1 +2024-09-10 15:45:02.805254 2024-09-10 15:45:02.805257 28a01f57-4662-44d1-9408-e4b2479a19eb {"md5": "cc8b721ef0f9a23ea48764229956803d", "pid": "041549457", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Wagen"}], "identifier": "http://d-nb.info/gnd/4154945-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4154945-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041549457", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4154945-4", "source": "GND"}], "variant_access_point": ["Grubenwagen", "Grubenhund"], "authorized_access_point": "Förderwagen"} 1 +2024-09-10 15:45:03.128109 2024-09-10 15:45:03.128112 77de1e0a-35c7-4dc6-b0ac-c3f497330665 {"md5": "aff8976b2d48450d002c31ca504cd29d", "pid": "041539346", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Lerchen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133349419X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85123262", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85123262"}], "authorized_access_point": "Skylark"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133349419X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16670535", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16670535h"}], "authorized_access_point": "Alouette des champs"}], "identifier": "http://d-nb.info/gnd/4153934-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4153934-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041539346", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4153934-5", "source": "GND"}], "variant_access_point": ["Alauda arvensis"], "authorized_access_point": "Feldlerche"} 1 +2024-09-10 15:45:03.196149 2024-09-10 15:45:03.196152 35e7482a-5d5d-469f-aa6e-05096ec3a929 {"md5": "d72b44345a051c061b51c0abc76076db", "pid": "041537882", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Französisch"}], "identifier": "http://d-nb.info/gnd/4153788-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4153788-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041537882", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4153788-9", "source": "GND"}], "authorized_access_point": "Fatras"} 1 +2024-09-10 15:45:03.254429 2024-09-10 15:45:03.254432 5713759d-1d8a-478a-9796-67daafe9b88b {"md5": "11125e8d807c6926a2aed72661a0d076", "pid": "04152862X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Lied"}, {"authorized_access_point": "Erotische Literatur"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331605989", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85044707", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85044707"}], "authorized_access_point": "Erotic songs"}], "identifier": "http://d-nb.info/gnd/4152862-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4152862-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04152862X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4152862-1", "source": "GND"}], "authorized_access_point": "Erotisches Lied"} 1 +2024-09-10 15:45:03.314364 2024-09-10 15:45:03.314368 bea8129a-b191-4c6c-aafb-73212f560c10 {"md5": "9f96ded349bbc4bee8e9ddec9fa45f43", "pid": "041528565", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Erzählung"}, {"authorized_access_point": "Erotische Literatur"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134530471", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85044708", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85044708"}], "authorized_access_point": "Erotic stories"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134530471", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16932431", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb169324311"}], "authorized_access_point": "Nouvelles érotiques"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254325360", "source": "GND"}, {"type": "bf:Nbn", "value": "3493", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/3493"}], "authorized_access_point": "Narrativa erotica"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254425748", "source": "GND"}, {"type": "bf:Nbn", "value": "XX4718660", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX4718660"}], "authorized_access_point": "Canciones eróticas"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254425756", "source": "GND"}, {"type": "bf:Nbn", "value": "XX539152", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX539152"}], "authorized_access_point": "Cuentos eróticos"}], "identifier": "http://d-nb.info/gnd/4152856-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4152856-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041528565", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4152856-6", "source": "GND"}], "authorized_access_point": "Erotische Erzählung"} 1 +2024-09-10 15:45:03.380791 2024-09-10 15:45:03.380795 1d1720dc-c230-4736-9485-c15cb6e5cb3e {"md5": "fc27e7f6f9ae5166db2bd261b143c152", "pid": "041527186", "note": [{"label": ["Verknüpfe mit Anwendungsgebiet"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113483179X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12066490", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb120664901"}], "authorized_access_point": "Événement"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1024424219", "source": "GND"}, {"type": "bf:Nbn", "value": "10069227", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10069227"}], "authorized_access_point": "Ereignis"}], "identifier": "http://d-nb.info/gnd/4152718-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4152718-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041527186", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4152718-5", "source": "GND"}], "variant_access_point": ["Ereignisse"], "authorized_access_point": "Ereignis"} 1 +2024-09-10 15:45:03.461144 2024-09-10 15:45:03.461147 f7cd8f8b-f641-488e-aa34-4eeeb391604d {"md5": "b58f8958a7acdae774bbd0734b7841e5", "pid": "041527062", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Energieversorgung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134494394", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12221792", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12221792v"}], "authorized_access_point": "Pétrole - Industrie et commerce - Politique publique"}], "identifier": "http://d-nb.info/gnd/4152706-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4152706-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041527062", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4152706-9", "source": "GND"}], "variant_access_point": ["Erdöl", "Ölversorgung", "Erdöl"], "authorized_access_point": "Erdölversorgung"} 1 +2024-09-10 15:45:03.533193 2024-09-10 15:45:03.533197 271ec6fe-a290-4a80-9aa1-c848426979bf {"md5": "872662f96db598c8b6287c7f38395a3e", "pid": "041521927", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Endothel"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134405677", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF14418045", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb14418045h"}], "authorized_access_point": "Cellules endothéliales"}], "identifier": "http://d-nb.info/gnd/4152192-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4152192-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041521927", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4152192-4", "source": "GND"}], "authorized_access_point": "Endothelzelle"} 1 +2024-09-10 15:45:03.601108 2024-09-10 15:45:03.601112 3b87adbe-b3b1-4d72-a59c-e1e6fde29ebc {"md5": "a599f9780e86b67418190e6a2bfc2d77", "pid": "041511794", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Merkmal"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134831773", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85022615", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85022615"}], "authorized_access_point": "Character"}], "identifier": "http://d-nb.info/gnd/4151179-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4151179-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041511794", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4151179-7", "source": "GND"}], "variant_access_point": ["Charakteristische Eigenschaft"], "authorized_access_point": "Eigenschaft"} 1 +2024-09-10 15:45:03.668679 2024-09-10 15:45:03.668683 15405cbf-3c39-4fa8-b0bb-4c1061a0705f {"md5": "affaff344e30c93de6e5e2dac3ffcfbb", "pid": "041511360", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Unehrlichkeit"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134060467", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85061841", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85061841"}], "authorized_access_point": "Honesty"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134060467", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11979799", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119797999"}], "authorized_access_point": "Honnêteté"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254327169", "source": "GND"}, {"type": "bf:Nbn", "value": "4444", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/4444"}], "authorized_access_point": "Onestà"}], "identifier": "http://d-nb.info/gnd/4151136-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4151136-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041511360", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4151136-0", "source": "GND"}], "variant_access_point": ["Ehrenhaftigkeit"], "authorized_access_point": "Ehrlichkeit"} 1 +2024-09-10 15:45:03.732794 2024-09-10 15:45:03.732797 7dad96ce-7a8d-4f6e-bbd6-ba3a579805c9 {"md5": "ddbdc5bae25f8c91fcb88d3b171c1582", "pid": "041507983", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4150798-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4150798-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041507983", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4150798-8", "source": "GND"}], "authorized_access_point": "Dualisierender Komplex"} 1 +2024-09-10 15:45:03.800526 2024-09-10 15:45:03.80053 4dbe474c-975b-4910-b742-ab9893d74c12 {"md5": "e1e15cf28cc67c74a38f62570dc0bb4b", "pid": "041506588", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Dreikronenkrieg&oldid=210977439"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Krieg"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1230558713", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85092571", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85092571"}], "authorized_access_point": "Northern Seven Years' War, 1563-1570"}], "identifier": "http://d-nb.info/gnd/4150658-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4150658-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041506588", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4150658-3", "source": "GND"}], "variant_access_point": ["Nordischer Siebenjähriger Krieg", "Nordischer Krieg (1563-1570)"], "authorized_access_point": "Dreikronenkrieg"} 1 +2024-09-10 15:45:03.86125 2024-09-10 15:45:03.861254 21489241-2800-47d9-811d-e4413e2ece4d {"md5": "052b9a075d3fadd062ce864b04c806d7", "pid": "041505190", "note": [{"label": ["In der Regel Kompositumbildung mit dem Material."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "!041253906"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133785778", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85147059", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85147059"}], "authorized_access_point": "Wire"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133785778", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12384189", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12384189f"}], "authorized_access_point": "Fil métallique"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966723422", "source": "GND"}, {"type": "bf:Nbn", "value": "14262-0", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/14262-0"}], "authorized_access_point": "Draht"}], "identifier": "http://d-nb.info/gnd/4150519-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4150519-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041505190", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4150519-0", "source": "GND"}], "authorized_access_point": "Draht"} 1 +2024-09-10 15:45:03.932584 2024-09-10 15:45:03.932588 0bb8dafe-b958-4809-b152-4aa59d4adedb {"md5": "a0c04dbbe13dde98174884ff35185b41", "pid": "041504925", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Halbleiter"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134155425", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85039078", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85039078"}], "authorized_access_point": "Doped semiconductors"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134155425", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12088361", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb120883612"}], "authorized_access_point": "Semiconducteurs dopés"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254377913", "source": "GND"}, {"type": "bf:Nbn", "value": "44844", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/44844"}], "authorized_access_point": "Semiconduttori estrinseci"}], "identifier": "http://d-nb.info/gnd/4150492-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4150492-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041504925", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4150492-6", "source": "GND"}], "variant_access_point": ["Störstellenhalbleiter"], "authorized_access_point": "Dotierter Halbleiter"} 1 +2024-09-10 15:45:04.027497 2024-09-10 15:45:04.027501 0efcad11-dfb6-4ee9-9842-c39b6f581dec {"md5": "605bcf6cd295d865f892330bc40d9ac2", "pid": "041501950", "note": [{"label": ["Ein Dispens ist die in der Regel einzelfallbezogene Aufhebung einer Rechtspflicht."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134024851", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85038453", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85038453"}], "authorized_access_point": "Dispensations (Canon law)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134024851", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11971132", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11971132f"}], "authorized_access_point": "Dispenses (droit canonique)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254336435", "source": "GND"}, {"type": "bf:Nbn", "value": "11079", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/11079"}], "authorized_access_point": "Dispensa canonica"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)125442069X", "source": "GND"}, {"type": "bf:Nbn", "value": "XX537578", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX537578"}], "authorized_access_point": "Dispensas (Derecho canónico)"}], "identifier": "http://d-nb.info/gnd/4150195-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4150195-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041501950", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4150195-0", "source": "GND"}], "variant_access_point": ["Befreiung (Recht)", "Aussetzung (Recht)", "Ausnahmebewilligung"], "authorized_access_point": "Dispens"} 1 +2024-09-10 15:45:04.120697 2024-09-10 15:45:04.120701 2423492d-2af8-40a8-9426-234710ab70e7 {"md5": "ab80a53babb8a200047e0ab4a6d64981", "pid": "041501608", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Foxtrott"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134576595", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85063225", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85063225"}], "authorized_access_point": "Hustle (Dance)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134576595", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16710437", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16710437v"}], "authorized_access_point": "Hustle (danse)"}], "identifier": "http://d-nb.info/gnd/4150160-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4150160-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041501608", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4150160-3", "source": "GND"}], "variant_access_point": ["Beatfox", "Discofox"], "authorized_access_point": "Diskofox"} 1 +2024-09-10 15:45:04.194987 2024-09-10 15:45:04.194991 bd441ffc-87f4-4a3c-9da4-aa9dabb22c94 {"md5": "f8aeb6cb99e2353ec42a4ee4aa2eef44", "pid": "041497848", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Transformator"}], "identifier": "http://d-nb.info/gnd/4149784-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4149784-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041497848", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4149784-3", "source": "GND"}], "authorized_access_point": "Differentialtransformator"} 1 +2024-09-10 15:45:04.277841 2024-09-10 15:45:04.277845 65bb47c2-cd84-49e5-b7dc-8fe795ab596a {"md5": "a85b7253c8dedfe59d6aa8711ceebeb3", "pid": "041497112", "note": [{"label": ["Als Homonymenzusatz bei Personenschlagwörtern wird Krimineller verwendet"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Krimineller"}], "related": [{"authorized_access_point": "Diebin"}, {"authorized_access_point": "Diebstahl"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331708486", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85134855", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85134855"}], "authorized_access_point": "Thieves"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331708486", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13319307", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13319307q"}], "authorized_access_point": "Voleurs"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254344241", "source": "GND"}, {"type": "bf:Nbn", "value": "17481", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/17481"}], "authorized_access_point": "Ladri"}], "identifier": "http://d-nb.info/gnd/4149711-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4149711-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041497112", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4149711-9", "source": "GND"}], "authorized_access_point": "Dieb"} 1 +2024-09-10 15:45:04.371789 2024-09-10 15:45:04.371793 ebc9085b-0435-46e1-a3a1-f1e65e89be6d {"md5": "8ecd3a593b99027fb3c6adf6c59e6b30", "pid": "041490673", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134325207", "source": "GND"}, {"type": "bf:Nbn", "value": "sh99005506", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh99005506"}], "authorized_access_point": "Denaturation"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134325207", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12437686", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12437686n"}], "authorized_access_point": "Dénaturation (chimie)"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256204498", "source": "GND"}, {"type": "bf:Nbn", "value": "2178", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_2178"}], "authorized_access_point": "denaturation"}], "identifier": "http://d-nb.info/gnd/4149067-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4149067-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041490673", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4149067-8", "source": "GND"}], "variant_access_point": ["Denaturierung (Biochemie)"], "authorized_access_point": "Denaturieren"} 1 +2024-09-10 15:45:04.459044 2024-09-10 15:45:04.459046 fa57c4dd-35e3-4643-b3b4-1726b02eb218 {"md5": "c2b15b9415a48603649ec1de1c2bdd97", "pid": "041489837", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ladungsträger"}], "identifier": "http://d-nb.info/gnd/4148983-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4148983-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041489837", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4148983-4", "source": "GND"}], "variant_access_point": ["Loch (Halbleiterphysik)"], "authorized_access_point": "Defektelektron"} 1 +2024-09-10 15:46:23.307899 2024-09-10 15:46:23.307902 10e8fa04-d103-41ea-8f1f-d34cf07812db {"md5": "972d54737044b2abd673ed44da601524", "pid": "130750085", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/7508194-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7508194-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)130750085", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7508194-5", "source": "GND"}], "variant_access_point": ["Homophilie", "Schwule Liebe", "Schwule Orientierung"], "authorized_access_point": "Männliche Homosexualität"} 1 +2024-09-10 15:45:04.53369 2024-09-10 15:45:04.533694 97394cb7-f480-4209-b5b7-a1c7e2539ded {"md5": "1cc1f092f95ade7a271c2ccc5bc2431b", "pid": "041483626", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Werkstoffschädigung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113404111X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11976355", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11976355v"}], "authorized_access_point": "Fissuration"}], "identifier": "http://d-nb.info/gnd/4148362-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4148362-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041483626", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4148362-5", "source": "GND"}], "variant_access_point": ["Crazebildung"], "authorized_access_point": "Crazing"} 1 +2024-09-10 15:45:04.619816 2024-09-10 15:45:04.61982 93e6ce89-107f-480b-bcca-1af9d84bdd2e {"md5": "b2897f6fb2a3a5e843bc839020899e34", "pid": "041479017", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Chorraum"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334557462", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2006008364", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2006008364"}], "authorized_access_point": "Chevets"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334557462", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF15043419", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb15043419x"}], "authorized_access_point": "Chevets (architecture)"}], "identifier": "http://d-nb.info/gnd/4147901-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4147901-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041479017", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4147901-4", "source": "GND"}], "authorized_access_point": "Chorhaupt"} 1 +2024-09-10 15:45:04.695874 2024-09-10 15:45:04.695877 91107618-4d48-45f9-a211-171f922318c2 {"md5": "980d6f230967685bc95f5fe39b439b6d", "pid": "041467760", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Vögel"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134790635", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2007010954", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2007010954"}], "authorized_access_point": "Endemic birds"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134790635", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12352687", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb123526871"}], "authorized_access_point": "Oiseaux nicheurs"}], "identifier": "http://d-nb.info/gnd/4146776-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4146776-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041467760", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4146776-0", "source": "GND"}], "variant_access_point": ["Brutvogel", "Einheimische Vögel"], "authorized_access_point": "Brutvögel"} 1 +2024-09-10 15:45:04.778604 2024-09-10 15:45:04.778608 13e438a2-72d5-4636-b7f8-fc303087acb1 {"md5": "fd09c8276683cb238e1ed431fe0dccc7", "pid": "04146351X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bornaviridae"}], "related": [{"authorized_access_point": "Borna-Krankheit"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133805108", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12469236", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb124692363"}], "authorized_access_point": "Virus de la maladie de Borna"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256199036", "source": "GND"}, {"type": "bf:Nbn", "value": "18805", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_18805"}], "authorized_access_point": "Borna disease virus"}], "identifier": "http://d-nb.info/gnd/4146351-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4146351-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04146351X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4146351-1", "source": "GND"}], "variant_access_point": ["Borna disease virus", "BDV"], "authorized_access_point": "Bornavirus"} 1 +2024-09-10 15:45:04.847812 2024-09-10 15:45:04.847815 919998ce-bc80-4d31-9e72-98c58c35a109 {"md5": "7ce93c850eb812e23223c1b69ca0d276", "pid": "041463250", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Untergruppe"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333592582", "source": "GND"}, {"type": "bf:Nbn", "value": "sh87007016", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh87007016"}], "authorized_access_point": "Borel subgroups"}], "identifier": "http://d-nb.info/gnd/4146325-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4146325-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041463250", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4146325-0", "source": "GND"}], "authorized_access_point": "Borel-Untergruppe"} 1 +2024-09-10 15:45:05.318412 2024-09-10 15:45:05.318417 fc640263-c901-4a41-8849-4c5786cc8968 {"md5": "14541141d9a7b9fb99cd1a4bc983a72e", "pid": "041449347", "note": [{"label": ["Benutzt für alle Bestechungstatbestände (§§ 299 ff, 331-335a StGB), die Schlagwörter Amtsträger oder Angestellter sind nicht pleonastisch."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Korruption"}], "related": [{"authorized_access_point": "Schmiergeld"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970565925", "source": "GND"}, {"type": "bf:Nbn", "value": "10038818", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10038818"}], "authorized_access_point": "Korruption"}], "identifier": "http://d-nb.info/gnd/4144934-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4144934-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041449347", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4144934-4", "source": "GND"}], "variant_access_point": ["Bestechlichkeit", "Bestechungsdelikt", "Vorteilsannahme", "Vorteilsgewährung"], "authorized_access_point": "Bestechung"} 1 +2024-09-10 15:45:04.917702 2024-09-10 15:45:04.917706 85f6be4b-dc34-4dcf-a1a5-a71fa5e3a86d {"md5": "1eeecd8483ae02b69b731baf25b3025c", "pid": "041462467", "note": [{"label": ["benutzt für das Ergebnis des Bohrens"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bohren"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134044232", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85015851", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85015851"}], "authorized_access_point": "Boring"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134044232", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11976902", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11976902x"}], "authorized_access_point": "Forage"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254340750", "source": "GND"}, {"type": "bf:Nbn", "value": "14775", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/14775"}], "authorized_access_point": "Perforazione"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254413731", "source": "GND"}, {"type": "bf:Nbn", "value": "XX526227", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX526227"}], "authorized_access_point": "Perforación y sondeo"}], "identifier": "http://d-nb.info/gnd/4146246-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4146246-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041462467", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4146246-4", "source": "GND"}], "authorized_access_point": "Bohrung"} 1 +2024-09-10 15:45:04.993303 2024-09-10 15:45:04.993307 696b51e1-bce5-4445-81da-afe55f2ae807 {"md5": "67eea30917585e565d6f69490505537d", "pid": "041456629", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Biaryle"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134598122", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12364695", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12364695b"}], "authorized_access_point": "Biphényles"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256197475", "source": "GND"}, {"type": "bf:Nbn", "value": "933", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_933"}], "authorized_access_point": "biphenyl"}], "identifier": "http://d-nb.info/gnd/4145662-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4145662-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041456629", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4145662-2", "source": "GND"}], "variant_access_point": ["Diphenyl", "Phenylbenzol"], "authorized_access_point": "Biphenyl"} 1 +2024-09-10 15:45:05.072774 2024-09-10 15:45:05.072777 896d107d-29e2-46e3-9290-8060d4a34eed {"md5": "9a8ee6336ea92e65cacbb49778ec3cc7", "pid": "041455908", "note": [{"label": ["Nicht als FormSW verwendet, hierfür f Bibliografie"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Personalbibliografie"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133681530", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85014117", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85014117"}], "authorized_access_point": "Bio-bibliography"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133681530", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11976253", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11976253w"}], "authorized_access_point": "Biobibliographie"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254412220", "source": "GND"}, {"type": "bf:Nbn", "value": "XX525759", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX525759"}], "authorized_access_point": "Biobibliografías"}], "identifier": "http://d-nb.info/gnd/4145590-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4145590-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041455908", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4145590-3", "source": "GND"}], "variant_access_point": ["Biobibliographie"], "authorized_access_point": "Biobibliografie"} 1 +2024-09-10 15:45:05.154523 2024-09-10 15:45:05.154531 785a21b7-283f-474d-a209-b9bb5bd113c5 {"md5": "ff9383b36014087646c22e65bf9243a0", "pid": "04145412X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Telefonieren"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134060017", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85143224", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85143224"}], "authorized_access_point": "Video telephone"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134592973", "source": "GND"}, {"type": "bf:Nbn", "value": "sh88004839", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh88004839"}], "authorized_access_point": "Videoconferencing"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134592973", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12192080", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12192080f"}], "authorized_access_point": "Visioconférences"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134592965", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12129502", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb121295028"}], "authorized_access_point": "Vidéocommunications"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134060017", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11979698", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11979698p"}], "authorized_access_point": "Visiophone"}], "identifier": "http://d-nb.info/gnd/4145412-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4145412-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04145412X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4145412-1", "source": "GND"}], "variant_access_point": ["Bildtelephonie", "Bildfernsprechen"], "authorized_access_point": "Bildtelefonie"} 1 +2024-09-10 15:45:05.236017 2024-09-10 15:45:05.236022 422bd285-15f0-422f-9ff8-d9ba362861de {"md5": "79ec53192cfc6de9002510735489e172", "pid": "041451732", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Beweisverbot"}], "identifier": "http://d-nb.info/gnd/4145173-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4145173-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041451732", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4145173-9", "source": "GND"}], "variant_access_point": ["Beweisgewinnungsverbot"], "authorized_access_point": "Beweiserhebungsverbot"} 1 +2024-09-10 15:45:06.708343 2024-09-10 15:45:06.70835 037c783a-fe62-41c6-8fc3-f1312802bc13 {"md5": "331a2d09583b1538b63f5283f3a0b206", "pid": "041413083", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4141308-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4141308-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041413083", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4141308-8", "source": "GND"}], "authorized_access_point": "Acridinfarbstoff"} 1 +2024-09-10 15:45:06.777182 2024-09-10 15:45:06.777186 75f670d1-4e86-40bb-9d75-93dbe7f50de1 {"md5": "924300a0793e0e15c084e1690a2ec86e", "pid": "041410513", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4141051-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4141051-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041410513", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4141051-8", "source": "GND"}], "authorized_access_point": "Abgeschlossene Kategorie"} 1 +2024-09-10 15:45:05.40894 2024-09-10 15:45:05.408945 c793f670-a5cd-47ca-b5bb-baa5ff4200ae {"md5": "6f92e3df4337009b9206ec33aa30168b", "pid": "041448723", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sensor"}], "related": [{"authorized_access_point": "Beschleunigungsmesser"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134629885", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85000350", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85000350"}], "authorized_access_point": "Accelerometers"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134629885", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12520647", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb125206471"}], "authorized_access_point": "Accéléromètres"}], "identifier": "http://d-nb.info/gnd/4144872-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4144872-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041448723", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4144872-8", "source": "GND"}], "variant_access_point": ["Beschleunigungsaufnehmer", "Trägheitssensor", "Schwingungsaufnehmer", "Vibrationsaufnehmer"], "authorized_access_point": "Beschleunigungssensor"} 1 +2024-09-10 15:45:05.501728 2024-09-10 15:45:05.501733 c2861c65-8938-4691-b34d-d425cfb0ed3e {"md5": "f74805a4e64356194e08a8412490604d", "pid": "041445120", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Methanolkraftstoff"}], "identifier": "http://d-nb.info/gnd/4144512-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4144512-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041445120", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4144512-0", "source": "GND"}], "variant_access_point": ["Methanol-Benzin-Mischkraftstoff"], "authorized_access_point": "Benzin-Methanol-Mischkraftstoff"} 1 +2024-09-10 15:45:05.580233 2024-09-10 15:45:05.580237 5d92d8e7-0eb1-4fcd-af4b-48ddb5161c69 {"md5": "51245bc17404b65252d84a9148983631", "pid": "041445082", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kraftstoff"}], "identifier": "http://d-nb.info/gnd/4144508-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4144508-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041445082", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4144508-9", "source": "GND"}], "variant_access_point": ["Alkohol-Benzin-Mischkraftstoff"], "authorized_access_point": "Benzin-Alkohol-Mischkraftstoff"} 1 +2024-09-10 15:45:05.667176 2024-09-10 15:45:05.667182 99a04ca0-b7f8-4a08-9e82-cd9e7bb5a8e2 {"md5": "dff726d5a3450884331dfbc031762d7a", "pid": "041444817", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Benutzerfreundlichkeit"}, {"authorized_access_point": "Benutzererlebnis"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1170172067", "source": "GND"}, {"type": "bf:Nbn", "value": "30168-0", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/30168-0"}], "authorized_access_point": "Nutzererfahrung"}], "identifier": "http://d-nb.info/gnd/4144481-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4144481-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041444817", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4144481-4", "source": "GND"}], "variant_access_point": ["Benutzerfeedback", "Benutzer"], "authorized_access_point": "Benutzerrückmeldung"} 1 +2024-09-10 15:45:05.75018 2024-09-10 15:45:05.750185 44a8f677-796b-49c3-9fce-5158918070a2 {"md5": "6f340a5be812928fd7d841bde6747e66", "pid": "041444809", "note": [{"label": ["Empirische Untersuchung der tatsächlichen oder auch nur potentiellen Benutzer einer wiss. Bibliothek, im Bereich der ÖB meist Leserforschung, im Bereich der Museen Besucherforschung genannt."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Benutzerverhalten"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970537077", "source": "GND"}, {"type": "bf:Nbn", "value": "10038141", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10038141"}], "authorized_access_point": "Benutzerforschung"}], "identifier": "http://d-nb.info/gnd/4144480-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4144480-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041444809", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4144480-2", "source": "GND"}], "variant_access_point": ["Besucherforschung", "Benutzer", "Nutzerforschung", "Nutzer"], "authorized_access_point": "Benutzerforschung"} 1 +2024-09-10 15:45:05.811632 2024-09-10 15:45:05.811634 b5335afb-5c2f-4738-94c5-c90a26e0e131 {"md5": "753d172d095a64f128778951de2c988f", "pid": "041444108", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Notstandsrecht"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334565120", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85127508", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85127508"}], "authorized_access_point": "State of siege"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334565120", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11978466", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119784668"}], "authorized_access_point": "État de siège"}], "identifier": "http://d-nb.info/gnd/4144410-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4144410-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041444108", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4144410-3", "source": "GND"}], "authorized_access_point": "Belagerungszustand"} 1 +2024-09-10 15:45:07.68683 2024-09-10 15:45:07.686834 431e48a6-e89e-4ea5-837c-4dd2a7acddba {"md5": "28bc0774526ca241839f45a237dd1cad", "pid": "041393848", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bildhauer"}], "related": [{"authorized_access_point": "Steinmetz"}, {"authorized_access_point": "Steinplastik"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134164718", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12104643", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12104643h"}], "authorized_access_point": "Sculpteurs sur pierre"}], "identifier": "http://d-nb.info/gnd/4139384-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4139384-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041393848", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4139384-3", "source": "GND"}], "authorized_access_point": "Steinbildhauer"} 1 +2024-09-10 15:45:05.892199 2024-09-10 15:45:05.892203 c57a9369-63c0-4aa4-bb05-80667bb5847f {"md5": "cf3b4deb9eeaf80bc1c06e3da91e7a98", "pid": "04144115X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tanz"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133810888", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85012180", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85012180"}], "authorized_access_point": "Basse danse (Dance)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133810888", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12484923", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12484923w"}], "authorized_access_point": "Basse danse (danse)"}], "identifier": "http://d-nb.info/gnd/4144115-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4144115-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04144115X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4144115-1", "source": "GND"}], "variant_access_point": ["Bassedanse"], "authorized_access_point": "Basse danse"} 1 +2024-09-10 15:45:05.980111 2024-09-10 15:45:05.980123 88f26d4a-93ca-4604-a624-28d8beabb700 {"md5": "26a2d6c3bd91049a3eabdcd0714fbbac", "pid": "041440706", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333373147", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17092938", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17092938n"}], "authorized_access_point": "Percoïdés"}], "identifier": "http://d-nb.info/gnd/4144070-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4144070-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041440706", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4144070-5", "source": "GND"}], "variant_access_point": ["Percoidei"], "authorized_access_point": "Barschfische"} 1 +2024-09-10 15:45:06.079076 2024-09-10 15:45:06.079081 a24f24e4-b3fa-45e6-8e47-1205669a359b {"md5": "be938d5faded58d4d4a9eb4d2890c349", "pid": "041439686", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Flöte"}], "identifier": "http://d-nb.info/gnd/4143968-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4143968-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041439686", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4143968-5", "source": "GND"}], "authorized_access_point": "Bambusflöte"} 1 +2024-09-10 15:45:06.156055 2024-09-10 15:45:06.156062 15cf6b53-d969-484d-8b1d-a3a3620191f4 {"md5": "01f3f543e5ba87e6db99db25f4c00e2d", "pid": "041436512", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Plakat"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133809936", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12482403", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12482403d"}], "authorized_access_point": "Affiches d'expositions"}], "identifier": "http://d-nb.info/gnd/4143651-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4143651-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041436512", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4143651-9", "source": "GND"}], "authorized_access_point": "Ausstellungsplakat"} 1 +2024-09-10 15:45:06.261861 2024-09-10 15:45:06.26187 65317412-c297-4a00-89ae-84663dc939d5 {"md5": "4d38f6f074ab5a4d4ac6175686b98884", "pid": "041434722", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Liste_von_Halbleitergeh%C3%A4usen&oldid=230043997"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gehäuse"}], "identifier": "http://d-nb.info/gnd/4143472-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4143472-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041434722", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4143472-9", "source": "GND"}], "variant_access_point": ["Chipgehäuse", "Package (Elektronik)"], "authorized_access_point": "Halbleitergehäuse"} 1 +2024-09-10 15:45:06.356192 2024-09-10 15:45:06.3562 43dc6cc5-7b10-443d-98e8-9629e0a82fde {"md5": "94c1143941a8a624506ec905e7ac37ad", "pid": "041427548", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4142754-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4142754-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041427548", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4142754-3", "source": "GND"}], "variant_access_point": ["Antrieb (Technik)"], "authorized_access_point": "Antriebssteuerung"} 1 +2024-09-10 15:45:06.457105 2024-09-10 15:45:06.457113 51fb0107-114b-4059-b280-964d00f5e7f2 {"md5": "b56553b024cb4576e03bbd56211bd99e", "pid": "041424654", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4142465-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4142465-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041424654", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4142465-7", "source": "GND"}], "authorized_access_point": "Ellipsoid"} 1 +2024-09-10 15:45:06.546508 2024-09-10 15:45:06.546513 ced4e73c-d7e3-4c22-82d4-b4529ca535cc {"md5": "ebb39d3b9c13d7ec735b313ab73e4f75", "pid": "041419464", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Energieversorgung"}], "identifier": "http://d-nb.info/gnd/4141946-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4141946-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041419464", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4141946-7", "source": "GND"}], "authorized_access_point": "Allgemeine Versorgungsbedingungen"} 1 +2024-09-10 15:45:06.621481 2024-09-10 15:45:06.621486 d20e8758-2b07-43ec-91e1-00adcba2750e {"md5": "a47a51f20c679a496772880d9a0e2520", "pid": "041413334", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134252064", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12272667", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12272667n"}], "authorized_access_point": "Actinides - Composés"}], "identifier": "http://d-nb.info/gnd/4141333-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4141333-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041413334", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4141333-7", "source": "GND"}], "authorized_access_point": "Actinoidverbindungen"} 1 +2024-09-10 15:45:06.839855 2024-09-10 15:45:06.839857 dfb54e94-47cc-4114-b62e-e77f88ecfae8 {"md5": "38af31cadb4c705d81f3b480d1335cf4", "pid": "041406605", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Modellorganismus"}], "related": [{"authorized_access_point": "Tierversuch"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134047444", "source": "GND"}, {"type": "bf:Nbn", "value": "sh99002322", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh99002322"}], "authorized_access_point": "Animal models"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134047444", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11977453", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11977453p"}], "authorized_access_point": "Modèles animaux"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256264016", "source": "GND"}, {"type": "bf:Nbn", "value": "34782", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_34782"}], "authorized_access_point": "animal models"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1241625255", "source": "GND"}, {"type": "bf:Nbn", "value": "D023421", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D023421"}], "authorized_access_point": "Models, Animal"}], "identifier": "http://d-nb.info/gnd/4140660-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4140660-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041406605", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4140660-6", "source": "GND"}], "authorized_access_point": "Tiermodell"} 1 +2024-09-10 15:45:06.904963 2024-09-10 15:45:06.904966 373a5e2b-98db-4fc8-987d-ccb1598a2c7f {"md5": "46729324a9b14b3d44caada4a18ad32c", "pid": "041403886", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Industrieanlage"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134612893", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85065869", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85065869"}], "authorized_access_point": "Industrial equipment"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134612893", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13162966", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13162966w"}], "authorized_access_point": "Équipement industriel"}], "identifier": "http://d-nb.info/gnd/4140388-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4140388-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041403886", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4140388-5", "source": "GND"}], "variant_access_point": ["Fertigungseinrichtung", "Produktionsanlage"], "authorized_access_point": "Fertigungsanlage"} 1 +2024-09-10 15:45:06.965566 2024-09-10 15:45:06.96557 6aadc72b-0b99-45b4-a30b-bba82f320693 {"md5": "0ea76bbf5579c3928cb2e60ddde0efd9", "pid": "041403657", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Gemeinschaftsbewegung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331869218", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2006006724", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2006006724"}], "authorized_access_point": "Holiness movement"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331869218", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11968664", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11968664x"}], "authorized_access_point": "Mouvement de sanctification"}], "identifier": "http://d-nb.info/gnd/4140365-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4140365-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041403657", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4140365-4", "source": "GND"}], "variant_access_point": ["Holiness movement"], "authorized_access_point": "Heiligungsbewegung"} 1 +2024-09-10 15:45:07.027153 2024-09-10 15:45:07.027155 e1408eb6-0df1-47ac-8a53-a9b2129ea499 {"md5": "685a8a48aee3515b9fdb7a0e206e1ddc", "pid": "041401522", "note": [{"label": ["Sprache des Tolai-Volkes in Papua-Neuguinea; außerdem Zweitsprache auf der Insel New Britain"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Melanesische Sprachen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134153449", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85073344", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85073344"}], "authorized_access_point": "Tolai language"}], "identifier": "http://d-nb.info/gnd/4140152-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4140152-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041401522", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4140152-9", "source": "GND"}], "variant_access_point": ["Tuna (Sprache)", "Gunantuna", "Tolai (Sprache)", "Tinata Tuna", "Blanche Bay", "New Britain Language", "Tolai Tok Ples", "Kuanua-Sprache"], "authorized_access_point": "Kuanua"} 1 +2024-09-10 15:45:07.088535 2024-09-10 15:45:07.088538 abad5902-4742-4fcf-99c7-f82b6d36c0a2 {"md5": "16215926da772b47a76af0683dfc6d27", "pid": "041400909", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133915647", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85120738", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85120738"}], "authorized_access_point": "Sexual instinct"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133915647", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12050215", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb120502152"}], "authorized_access_point": "Libido"}], "identifier": "http://d-nb.info/gnd/4140090-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4140090-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041400909", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4140090-2", "source": "GND"}], "authorized_access_point": "Libido"} 1 +2024-09-10 15:46:23.368649 2024-09-10 15:46:23.368652 d66c25d2-df29-459b-9652-9a5598d85253 {"md5": "018d9f323d29b5e6d484638d37b2f567", "pid": "130741094", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/7507209-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7507209-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)130741094", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7507209-9", "source": "GND"}], "authorized_access_point": "Gedichtinterpretation"} 1 +2024-09-10 15:45:07.149797 2024-09-10 15:45:07.149801 25a2ce07-0ca4-4106-921b-c393c8d51197 {"md5": "83fc1370088a865f503aeb82a5c099bf", "pid": "041398424", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Moderne"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134154844", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85026469", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85026469"}], "authorized_access_point": "Civilization, Modern"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134154844", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12086863", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12086863n"}], "authorized_access_point": "Modernité"}], "identifier": "http://d-nb.info/gnd/4139842-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4139842-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041398424", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4139842-7", "source": "GND"}], "authorized_access_point": "Modernität"} 1 +2024-09-10 15:45:07.2275 2024-09-10 15:45:07.227505 de647247-78ef-429f-bec1-6d2093c8edcf {"md5": "faec65d939a45c03e20b3c7a6e2d5242", "pid": "041397932", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Wärmebehandlung"}], "related": [{"authorized_access_point": "Härtbarkeit"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134705697", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11976092", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119760927"}], "authorized_access_point": "Trempe"}], "identifier": "http://d-nb.info/gnd/4139793-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4139793-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041397932", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4139793-9", "source": "GND"}], "variant_access_point": ["Härtung"], "authorized_access_point": "Härten"} 1 +2024-09-10 15:45:07.321894 2024-09-10 15:45:07.321899 63bede4f-0ec4-4005-81ac-894c2500cdb2 {"md5": "b36f9cb5fc2d2411a94b72dc815a4e9b", "pid": "041397150", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Festigkeit"}, {"authorized_access_point": "Bruchverhalten"}], "identifier": "http://d-nb.info/gnd/4139715-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4139715-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041397150", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4139715-0", "source": "GND"}], "variant_access_point": ["Bruchsicherheit", "Bruchwiderstand"], "authorized_access_point": "Bruchfestigkeit"} 1 +2024-09-10 15:45:07.398351 2024-09-10 15:45:07.398356 e7419d0d-2c3e-4c3c-b848-9905a041a1a8 {"md5": "aa846a1e824713486371dd7f38895f29", "pid": "04139674X", "note": [{"label": ["Festlegung des Geschlechts während der Individualentwicklung durch genetische oder andere Faktoren"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Determination (Ontogenie)"}], "related": [{"authorized_access_point": "Geschlechtsdifferenzierung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133633609", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85120579", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85120579"}], "authorized_access_point": "Genetic sex determination"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134697333", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85120585", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85120585"}], "authorized_access_point": "Sex differentiation"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134697511", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85120578", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85120578"}], "authorized_access_point": "Diagnostic sex determination"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134697554", "source": "GND"}, {"type": "bf:Nbn", "value": "sh00005538", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh00005538"}], "authorized_access_point": "Human remains (Archaeology) - Sex determination"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134797311", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85023312", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85023312"}], "authorized_access_point": "Chicks - Sexing"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113479732X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85048804", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85048804"}], "authorized_access_point": "Fishes - Sexing"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133633609", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11941363", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11941363n"}], "authorized_access_point": "Détermination génétique du sexe"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134697333", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11953259", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11953259t"}], "authorized_access_point": "Différenciation sexuelle"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254366199", "source": "GND"}, {"type": "bf:Nbn", "value": "33810", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/33810"}], "authorized_access_point": "Determinazione del sesso"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254434798", "source": "GND"}, {"type": "bf:Nbn", "value": "XX555988", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX555988"}], "authorized_access_point": "Sexaje de pollos"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254434801", "source": "GND"}, {"type": "bf:Nbn", "value": "XX4736771", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX4736771"}], "authorized_access_point": "Determinación genética del sexo"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256217190", "source": "GND"}, {"type": "bf:Nbn", "value": "14226", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_14226"}], "authorized_access_point": "sex determination"}], "identifier": "http://d-nb.info/gnd/4139674-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4139674-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04139674X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4139674-1", "source": "GND"}], "variant_access_point": ["Geschlechtsdetermination", "Sexuelle Determination"], "authorized_access_point": "Geschlechtsbestimmung"} 1 +2024-09-10 15:45:07.492727 2024-09-10 15:45:07.492731 c78f2e19-87d9-41d3-a393-1837ed0cb17a {"md5": "bcae90495a7bc383c0de10fe6550eb40", "pid": "041395786", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Rachenkrebs"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134620969", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2010009369", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2010009369"}], "authorized_access_point": "Hypopharynx - Cancer"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1241606749", "source": "GND"}, {"type": "bf:Nbn", "value": "D007012", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D007012"}], "authorized_access_point": "Hypopharyngeal Neoplasms"}], "identifier": "http://d-nb.info/gnd/4139578-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4139578-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041395786", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4139578-5", "source": "GND"}], "authorized_access_point": "Hypopharynxkrebs"} 1 +2024-09-10 15:45:07.594462 2024-09-10 15:45:07.594468 7ba874e1-7756-4566-b1ca-7dfb2682ffa3 {"md5": "bb270e2504c56ce92bde16404831389e", "pid": "04139531X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tonbandgerät"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133638651", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85079736", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85079736"}], "authorized_access_point": "Cassette tape recorders"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133638651", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11944483", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119444838"}], "authorized_access_point": "Magnétophones à cassettes"}], "identifier": "http://d-nb.info/gnd/4139531-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4139531-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04139531X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4139531-1", "source": "GND"}], "variant_access_point": ["Cassettenrecorder", "Kassettentonbandgerät", "Tonbandkassettengerät"], "authorized_access_point": "Kassettenrecorder"} 1 +2024-09-10 15:45:07.771674 2024-09-10 15:45:07.771678 c0224277-a83f-4626-8102-e93af6e5b639 {"md5": "424c43f953759e56a05e78c438b21fbc", "pid": "041392736", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334215359", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2001009140", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2001009140"}], "authorized_access_point": "Transfer"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334215359", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13319743", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13319743p"}], "authorized_access_point": "Mutations"}], "identifier": "http://d-nb.info/gnd/4139273-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4139273-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041392736", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4139273-5", "source": "GND"}], "variant_access_point": ["Arbeitnehmer"], "authorized_access_point": "Versetzung (Arbeitsrecht)"} 1 +2024-09-10 15:45:07.834492 2024-09-10 15:45:07.834499 5543469e-c7e5-4b04-9f1d-195146f70ab9 {"md5": "a7f0620345f6c4f4f6c672a96f6640a9", "pid": "041385896", "note": [{"label": ["Buntpapier, das das Aussehen farbigen Marmors imitiert"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Buntpapier"}], "related": [{"authorized_access_point": "Marmorierung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133679099", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85080956", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85080956"}], "authorized_access_point": "Marbled papers"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133679099", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11975028", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11975028w"}], "authorized_access_point": "Papier marbré"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254459529", "source": "GND"}, {"type": "bf:Nbn", "value": "XX538888", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX538888"}], "authorized_access_point": "Papel marmoleado"}], "identifier": "http://d-nb.info/gnd/4138589-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4138589-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041385896", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4138589-5", "source": "GND"}], "variant_access_point": ["Marmoriertes Papier", "Tunkpapier", "Tunkmarmor", "Tunkmarmorpapier", "Türkisch Papier", "Türkisch Marmor"], "authorized_access_point": "Marmorpapier"} 1 +2024-09-10 15:45:07.90003 2024-09-10 15:45:07.900034 074ffb29-2378-438e-a709-5a59a942b8d2 {"md5": "dfe2f7b5945ccf072c1495463ed565b2", "pid": "041385659", "note": [{"label": ["Gemeint ist die adaptive Reaktion des Organismus, z.B.Adrenalinausschüttung etc.", "Im Bedarfsfall kann das SW über eine entsprechende Sys.Nr. auch in der Biologie verwendet werden. Für den psychischen Stress benutze Stress."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Stress"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133756859", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85128702", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85128702"}], "authorized_access_point": "Stress (Physiology)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134230729", "source": "GND"}, {"type": "bf:Nbn", "value": "sh00004590", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh00004590"}], "authorized_access_point": "Effect of stress on"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133756859", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13319737", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13319737r"}], "authorized_access_point": "Stress - Aspect physiologique"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134230729", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12248546", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb122485467"}], "authorized_access_point": "Effets du stress"}], "identifier": "http://d-nb.info/gnd/4138565-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4138565-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041385659", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4138565-2", "source": "GND"}], "variant_access_point": ["Vegetative Stressreaktion", "Stressverarbeitung", "Stress", "Physiologische Stressreaktion", "Stressantwort"], "authorized_access_point": "Stressreaktion"} 1 +2024-09-10 15:45:07.974991 2024-09-10 15:45:07.974995 7789e2fc-75af-4ec0-8875-956be7222deb {"md5": "4c8933b7a2f6e448ff25fbe3e80ea2af", "pid": "041382994", "note": [{"label": ["Unterrichtsfach aus einer Gruppe von Schulfächern, aus der ein Schüler auszuwählen hat"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Obligatorischer Unterricht"}, {"authorized_access_point": "Wahlbereich"}, {"authorized_access_point": "Unterrichtsfach"}], "related": [{"authorized_access_point": "Wahlpflichtunterricht"}, {"authorized_access_point": "Wahlfach"}, {"authorized_access_point": "Pflichtfach"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134333277", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12461627", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb124616279"}], "authorized_access_point": "Matières à option"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970603010", "source": "GND"}, {"type": "bf:Nbn", "value": "10061888", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10061888"}], "authorized_access_point": "Wahlpflichtfach"}], "identifier": "http://d-nb.info/gnd/4138299-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4138299-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041382994", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4138299-7", "source": "GND"}], "variant_access_point": ["Wahlpflichtfächer"], "authorized_access_point": "Wahlpflichtfach"} 1 +2024-09-10 15:45:08.060646 2024-09-10 15:45:08.060649 f61e1a96-1149-433f-9e0b-78dc9f8e366c {"md5": "99a9445be6e327fe6b2a90aea02e25df", "pid": "041380827", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bankenaufsicht"}], "identifier": "http://d-nb.info/gnd/4138082-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4138082-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041380827", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4138082-4", "source": "GND"}], "variant_access_point": ["Sparkasse"], "authorized_access_point": "Sparkassenaufsicht"} 1 +2024-09-10 15:45:20.447845 2024-09-10 15:45:20.447855 7ed53a64-e807-4dfa-9595-449b1c931c7b {"md5": "7e9f6e5089fdde338cb14c730bfe9ea1", "pid": "040570215", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ausdauernde Pflanzen"}], "identifier": "http://d-nb.info/gnd/4057021-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4057021-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040570215", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4057021-6", "source": "GND"}], "variant_access_point": ["Schmuckstaude", "Stauden"], "authorized_access_point": "Staude"} 1 +2024-09-10 15:45:08.138607 2024-09-10 15:45:08.138621 1363dfde-da36-4a45-897c-3dbd98803425 {"md5": "cf851eddeb7a7cd6bf75aad00757cc5e", "pid": "041378970", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Forstproduktion"}], "related": [{"authorized_access_point": "Holzwirtschaft"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256222356", "source": "GND"}, {"type": "bf:Nbn", "value": "28194", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_28194"}], "authorized_access_point": "wood production"}], "identifier": "http://d-nb.info/gnd/4137897-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4137897-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041378970", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4137897-0", "source": "GND"}], "variant_access_point": ["Holz", "Holz"], "authorized_access_point": "Holzproduktion"} 1 +2024-09-10 15:45:08.222338 2024-09-10 15:45:08.222348 e2fe5a3d-2cc3-4719-9a9d-f15aab38f27c {"md5": "04ea82231a073a6908d6c9834266ba4a", "pid": "041378296", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Autor"}], "identifier": "http://d-nb.info/gnd/4137829-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4137829-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041378296", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4137829-5", "source": "GND"}], "authorized_access_point": "Urheber"} 1 +2024-09-10 15:45:08.301925 2024-09-10 15:45:08.301929 74f34e92-105e-4310-ac61-6940d1702354 {"md5": "e04b1f36cc0637a9f8d727d01c0facdb", "pid": "04137651X", "note": [{"label": ["Von einer Kirche herausgegebene Sammlung geistlicher Lieder und Gesänge zum liturgischen und privaten Gebrauch"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Liederbuch"}], "related": [{"authorized_access_point": "Kirchenlied"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134587139", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85063599", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85063599"}], "authorized_access_point": "Hymns"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134587139", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13505214", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13505214w"}], "authorized_access_point": "Hymnes"}], "identifier": "http://d-nb.info/gnd/4137651-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4137651-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04137651X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4137651-1", "source": "GND"}], "variant_access_point": ["Gesangsbuch", "Kirchengesangbuch", "Kirchenliederbuch"], "authorized_access_point": "Gesangbuch"} 1 +2024-09-10 15:45:08.383278 2024-09-10 15:45:08.383281 292fde09-d05f-45a7-b0ab-3d978c186a6f {"md5": "66f7ae41d8eb0837fa09e1891a178c6d", "pid": "041375785", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4137578-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4137578-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041375785", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4137578-6", "source": "GND"}], "variant_access_point": ["Nachkommenschaft", "Nachkommen", "Nachfahre", "Nachfahren"], "authorized_access_point": "Nachkomme"} 1 +2024-09-10 15:45:08.453817 2024-09-10 15:45:08.453822 d0685591-1129-48b7-aaa6-f7f7534f5cee {"md5": "1a3cd065f5fb4e583a0b1d7ff685b49d", "pid": "041375157", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332651100", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12043461", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb120434619"}], "authorized_access_point": "Abcès"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256187542", "source": "GND"}, {"type": "bf:Nbn", "value": "8564", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_8564"}], "authorized_access_point": "abscesses"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1241589364", "source": "GND"}, {"type": "bf:Nbn", "value": "D000038", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D000038"}], "authorized_access_point": "Abscess"}], "identifier": "http://d-nb.info/gnd/4137515-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4137515-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041375157", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4137515-4", "source": "GND"}], "authorized_access_point": "Abszess"} 1 +2024-09-10 15:45:08.548261 2024-09-10 15:45:08.548268 3c20045d-dde0-4d6b-89e7-e04bf6967678 {"md5": "45bcf9c02de5c8b7760a5f0f7b805235", "pid": "041373146", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331703506", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85011924", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85011924"}], "authorized_access_point": "Barrages"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331703506", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11947035", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119470351"}], "authorized_access_point": "Barrages"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)125620403X", "source": "GND"}, {"type": "bf:Nbn", "value": "2121", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_2121"}], "authorized_access_point": "dams"}], "identifier": "http://d-nb.info/gnd/4137314-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4137314-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041373146", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4137314-5", "source": "GND"}], "authorized_access_point": "Damm"} 1 +2024-09-10 15:45:22.120415 2024-09-10 15:45:22.120423 e7e9db7f-287b-454d-b874-15d25558e113 {"md5": "d0f9e732d86ba102247ce0a97464f8f1", "pid": "040448924", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Pathographie&oldid=240762026"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4044892-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4044892-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040448924", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4044892-7", "source": "GND"}], "variant_access_point": ["Pathografie"], "authorized_access_point": "Pathographie"} 1 +2024-09-10 15:45:08.639546 2024-09-10 15:45:08.639549 554a2b45-f46a-41b5-b441-a2131f8fb135 {"md5": "443478b467695095c56740bd8d6c4059", "pid": "041372867", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Unternehmen_Seel%C3%B6we&oldid=203501632"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Invasion"}, {"authorized_access_point": "Planung"}], "related": [{"authorized_access_point": "Zweiter Weltkrieg"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134571194", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85095008", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85095008"}], "authorized_access_point": "Operation Sea Lion"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134571194", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16599920", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb165999200"}], "authorized_access_point": "Opération Seelöwe (1940)"}], "identifier": "http://d-nb.info/gnd/4137286-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4137286-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041372867", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4137286-4", "source": "GND"}], "variant_access_point": ["Seelöwe (Invasion)", "Operation Seelöwe", "Operation Sea Lion", "Britischer Invasionsplan (1940)"], "authorized_access_point": "Unternehmen Seelöwe"} 1 +2024-09-10 15:45:08.717487 2024-09-10 15:45:08.717491 a1557a19-72f2-4837-8d84-9e09643f8141 {"md5": "4435f0a8fb711220e0bbabfc56ea903c", "pid": "041369424", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Halbleiterdiode"}, {"authorized_access_point": "Lichtempfindliches Halbleiterbauelement"}, {"authorized_access_point": "Photoelektronisches Bauelement"}, {"authorized_access_point": "Photodetektor"}], "identifier": "http://d-nb.info/gnd/4136942-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4136942-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041369424", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4136942-7", "source": "GND"}], "variant_access_point": ["Fotodiode"], "authorized_access_point": "Photodiode"} 1 +2024-09-10 15:45:08.78767 2024-09-10 15:45:08.787682 d7ed3dc7-d462-422b-8877-57d1a574d7e0 {"md5": "b0bb78b8b1fb87eb8eaba06ab24ada3b", "pid": "041368118", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kulturelle Einrichtung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133948162", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11939893", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11939893p"}], "authorized_access_point": "Centres culturels"}], "identifier": "http://d-nb.info/gnd/4136811-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4136811-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041368118", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4136811-3", "source": "GND"}], "variant_access_point": ["Kulturzentren"], "authorized_access_point": "Kulturzentrum"} 1 +2024-09-10 15:45:08.863432 2024-09-10 15:45:08.863437 de2f1a85-4124-4637-ae3e-9c9a4cd93abb {"md5": "19e2e7c51edcd9454b915be61f3f0a4f", "pid": "041367782", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Flüssigkeitsfilm"}], "identifier": "http://d-nb.info/gnd/4136778-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4136778-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041367782", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4136778-9", "source": "GND"}], "variant_access_point": ["Fallfilm"], "authorized_access_point": "Rieselfilm"} 1 +2024-09-10 15:45:08.940769 2024-09-10 15:45:08.940773 147111cf-cd75-4e9d-b84e-f01d6249795f {"md5": "cd175947d3f8b500eedd4a473dbb3a1d", "pid": "041358902", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Aussage"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334231974", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85037044", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85037044"}], "authorized_access_point": "Depositions"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334231974", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11983503", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11983503n"}], "authorized_access_point": "Dépositions (procédure)"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970606591", "source": "GND"}, {"type": "bf:Nbn", "value": "10062918", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10062918"}], "authorized_access_point": "Zeugenaussage"}], "identifier": "http://d-nb.info/gnd/4135890-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4135890-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041358902", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4135890-9", "source": "GND"}], "variant_access_point": ["Aussage"], "authorized_access_point": "Zeugenaussage"} 1 +2024-09-10 15:45:09.044535 2024-09-10 15:45:09.04454 8a54fcf9-245f-43aa-b30f-38da6c5aa2a9 {"md5": "583e7c5b8ca04beaecf867c27500058d", "pid": "041358678", "note": [{"label": ["Als Formschlagwort nicht verwendet, hier verwende f Tonträger."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tonträger"}, {"authorized_access_point": "Magnetband"}], "identifier": "http://d-nb.info/gnd/4135867-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4135867-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041358678", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4135867-3", "source": "GND"}], "variant_access_point": ["Magnettonband", "Tonbandspule"], "authorized_access_point": "Tonband"} 1 +2024-09-10 15:45:09.132625 2024-09-10 15:45:09.132629 1dfdfb95-4762-4a74-bf99-59eb62f84c1f {"md5": "c59348d9b2ecd3b2faeaed5e79745bad", "pid": "041357515", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Antenne"}], "identifier": "http://d-nb.info/gnd/4135751-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4135751-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041357515", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4135751-6", "source": "GND"}], "variant_access_point": ["Aktivantenne"], "authorized_access_point": "Aktive Antenne"} 1 +2024-09-10 15:45:09.230156 2024-09-10 15:45:09.230163 da8e8736-4583-4a41-8fc8-738ec969e0c3 {"md5": "017325383dac6ff20d7f0dd217f77ca7", "pid": "041351169", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Wirtschaftsförderung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134090730", "source": "GND"}, {"type": "bf:Nbn", "value": "no2015079330", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/names/no2015079330"}], "authorized_access_point": "United States. Foreign Assistance Act of 1948"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134090730", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11998785", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11998785s"}], "authorized_access_point": "Plan Marshall (1948-1952)"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966738357", "source": "GND"}, {"type": "bf:Nbn", "value": "10610-2", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/10610-2"}], "authorized_access_point": "Wirtschaftlicher Wiederaufbau"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970571178", "source": "GND"}, {"type": "bf:Nbn", "value": "10051738", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10051738"}], "authorized_access_point": "Marshall-Plan"}], "identifier": "http://d-nb.info/gnd/4135116-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4135116-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041351169", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4135116-2", "source": "GND"}], "variant_access_point": ["ERP (abku)", "Europäisches Wiederaufbauprogramm", "European Recovery Program"], "authorized_access_point": "Marshall-Plan"} 1 +2024-09-10 15:45:09.323912 2024-09-10 15:45:09.323916 273dbca4-e707-432f-a7d5-45b0afe05123 {"md5": "3b34ffbc25ba63daf30d8d849dca815e", "pid": "041344677", "note": [{"label": ["Ohne HZ Motiv"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Christusdarstellung"}, {"authorized_access_point": "Motiv"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134523947", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12464254", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12464254t"}], "authorized_access_point": "Jésus-Christ - Passion - Dans l'art"}], "identifier": "http://d-nb.info/gnd/4134467-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4134467-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041344677", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4134467-4", "source": "GND"}], "authorized_access_point": "Passionsdarstellung"} 1 +2024-09-10 15:45:09.411931 2024-09-10 15:45:09.411933 fbac0650-86d6-48da-a808-32d7f0c7e62e {"md5": "e76b97f87ae2a3ee733d86647ca0c1b7", "pid": "041336844", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Trockenblume"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134515529", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13188664", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb131886647"}], "authorized_access_point": "Fleurs pressées"}], "identifier": "http://d-nb.info/gnd/4133684-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4133684-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041336844", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4133684-7", "source": "GND"}], "variant_access_point": ["Gepresste Blume", "Gepresste Pflanze"], "authorized_access_point": "Gepresste Pflanzen"} 1 +2024-09-10 15:45:09.50381 2024-09-10 15:45:09.503818 ad8b097c-1197-4f57-865f-92012f71aea8 {"md5": "4f402cb99db14025ffc52aa1edea72cf", "pid": "041336720", "note": [{"label": ["Der Generalunternehmer bedient sich zur Ausführung eines Auftrags des Subunternehmers. Rechtsbeziehungen entstehen nur zwischen Generalunternehmer und Subunternehmer."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Unternehmer"}], "related": [{"authorized_access_point": "Generalunternehmer"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333585977", "source": "GND"}, {"type": "bf:Nbn", "value": "sh95001761", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh95001761"}], "authorized_access_point": "Subcontractors"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333585977", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11934339", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119343399"}], "authorized_access_point": "Sous-traitance"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1283872862", "source": "GND"}, {"type": "bf:Nbn", "value": "30284-5", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/30284-5"}], "authorized_access_point": "Subunternehmer"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970595875", "source": "GND"}, {"type": "bf:Nbn", "value": "10060775", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10060775"}], "authorized_access_point": "Subunternehmen"}], "identifier": "http://d-nb.info/gnd/4133672-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4133672-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041336720", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4133672-0", "source": "GND"}], "authorized_access_point": "Subunternehmer"} 1 +2024-09-10 15:45:09.592454 2024-09-10 15:45:09.592457 b62a8b00-6bc8-4c69-9d81-95fa9fdc8283 {"md5": "74b8a20ce6aa2218e2123d25ab4ed84d", "pid": "041332156", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Krieg"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134025572", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85092579", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85092579"}], "authorized_access_point": "Northern War, 1700-1721"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134025572", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11971267", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11971267c"}], "authorized_access_point": "Guerre du Nord (1700-1721)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254468021", "source": "GND"}, {"type": "bf:Nbn", "value": "XX5369050", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX5369050"}], "authorized_access_point": "Guerra del Norte, 1700-1721"}], "identifier": "http://d-nb.info/gnd/4133215-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4133215-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041332156", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4133215-5", "source": "GND"}], "variant_access_point": ["Großer Nordischer Krieg", "Zweiter Nordischer Krieg (1700-1721)", "Dritter Nordischer Krieg (1700-1721)"], "authorized_access_point": "Nordischer Krieg (1700-1721)"} 1 +2024-09-10 15:45:09.681059 2024-09-10 15:45:09.681064 36e34be4-cb11-4e6a-828e-151d68977c5a {"md5": "6fd84d6c8a2757e557dc50b2d30c6985", "pid": "041330048", "note": [{"label": ["Bei einzelnen Schutzhütten wird ein Geographikum mit \\"geoa\\" relationiert."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Beherbergungsbetrieb"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134006896", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85087807", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85087807"}], "authorized_access_point": "Mountain shelters"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134006896", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11964951", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11964951f"}], "authorized_access_point": "Refuges de montagne"}], "identifier": "http://d-nb.info/gnd/4133004-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4133004-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041330048", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4133004-3", "source": "GND"}], "variant_access_point": ["Alpenvereinshütte", "Alpinistischer Stützpunkt", "Berghütte", "Bergsteigerstützpunkt", "Hütte (Schutzhütte)", "Alpenvereinshaus", "Schutzhaus", "Wanderhütte", "Schutzhütten", "Berghütten"], "authorized_access_point": "Schutzhütte"} 1 +2024-09-10 15:45:09.747686 2024-09-10 15:45:09.747691 36eb241b-d6f8-4d13-8f0c-5d1536c0a61f {"md5": "a44ef91ea7a20ad65e04a919f549ac13", "pid": "041328523", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Körper"}, {"authorized_access_point": "Leiblichkeit"}, {"authorized_access_point": "Soma"}, {"authorized_access_point": "Leib-Seele-Problem"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332900690", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85015235", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85015235"}], "authorized_access_point": "Human body (Philosophy)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332900690", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11965587", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11965587k"}], "authorized_access_point": "Corps (philosophie)"}], "identifier": "http://d-nb.info/gnd/4132852-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4132852-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041328523", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4132852-8", "source": "GND"}], "authorized_access_point": "Leib"} 1 +2024-09-10 15:45:09.8244 2024-09-10 15:45:09.824404 b2aa248a-e484-45c1-956e-9e3401cde2fc {"md5": "45efbd5b713a39bde7f660bccb9bb1d7", "pid": "041327896", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Staat"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331526035", "source": "GND"}, {"type": "bf:Nbn", "value": "sh87000305", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh87000305"}], "authorized_access_point": "Landlocked states"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331526035", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12107185", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12107185s"}], "authorized_access_point": "Pays sans littoral"}], "identifier": "http://d-nb.info/gnd/4132789-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4132789-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041327896", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4132789-5", "source": "GND"}], "variant_access_point": ["Binnenstaaten"], "authorized_access_point": "Binnenstaat"} 1 +2024-09-10 15:45:09.914872 2024-09-10 15:45:09.91488 2207e02d-da61-4980-8119-7ec1a1ff15b4 {"md5": "74c4aba940cecc124ac7ba3950730cf0", "pid": "041326393", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Betriebssystem"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134018509", "source": "GND"}, {"type": "bf:Nbn", "value": "n92062941", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/names/n92062941"}], "authorized_access_point": "UCSD p-System"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134018509", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11968223", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119682237"}], "authorized_access_point": "UCSD p-System"}], "identifier": "http://d-nb.info/gnd/4132639-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4132639-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041326393", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4132639-8", "source": "GND"}], "authorized_access_point": "UCSD p-System"} 1 +2024-09-10 15:45:09.982211 2024-09-10 15:45:09.982213 f9c3d18c-fb57-4289-95d5-6fc61f564036 {"md5": "ac3a087d0afdfedad3c25852d69ae7ab", "pid": "041325109", "note": [{"label": ["Rechtsnachfolge bezeichnet die Auswechslung des Rechtssubjekts bei ansonsten unverändertem Rechtsbestand."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Rechtsnachfolger"}, {"authorized_access_point": "Rechtserwerb"}], "identifier": "http://d-nb.info/gnd/4132510-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4132510-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041325109", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4132510-2", "source": "GND"}], "variant_access_point": ["Subjektwechsel", "Sukzession (Bürgerliches Recht)"], "authorized_access_point": "Rechtsnachfolge"} 1 +2024-09-10 15:45:10.053302 2024-09-10 15:45:10.053307 371e2db0-4d02-4447-8c66-3cfda88bb287 {"md5": "8e2ccd9dc7b4ebaaad6bbc435168f80d", "pid": "04132501X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Unwahrheit"}], "related": [{"authorized_access_point": "Unehrlichkeit"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133937241", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85063768", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85063768"}], "authorized_access_point": "Hypocrisy"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133937241", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11935462", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11935462b"}], "authorized_access_point": "Hypocrisie"}], "identifier": "http://d-nb.info/gnd/4132501-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4132501-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04132501X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4132501-1", "source": "GND"}], "variant_access_point": ["Hypokrisie"], "authorized_access_point": "Heuchelei"} 1 +2024-09-10 15:45:10.151551 2024-09-10 15:45:10.151556 072eb873-e68e-46ac-a272-2403786e46a8 {"md5": "91f28fd530bb6d43004be96cdac6f65e", "pid": "041321782", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ansiedlung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134609086", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12229177", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb122291777"}], "authorized_access_point": "Parcs d'activités économiques"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970558945", "source": "GND"}, {"type": "bf:Nbn", "value": "10038906", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10038906"}], "authorized_access_point": "Industrieansiedlung"}], "identifier": "http://d-nb.info/gnd/4132178-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4132178-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041321782", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4132178-9", "source": "GND"}], "variant_access_point": ["Industriebetrieb"], "authorized_access_point": "Industrieansiedlung"} 1 +2024-09-10 15:45:10.238718 2024-09-10 15:45:10.238724 01daccf9-6979-4d39-9512-3635326116d0 {"md5": "e1d70026150eba19d099915e7044aba9", "pid": "041318153", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schaden"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134220243", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12226409", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12226409v"}], "authorized_access_point": "Intérêt (droit)"}], "identifier": "http://d-nb.info/gnd/4131815-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4131815-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041318153", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4131815-8", "source": "GND"}], "variant_access_point": ["Drittinteresse"], "authorized_access_point": "Interesse (Recht)"} 1 +2024-09-10 15:45:10.337683 2024-09-10 15:45:10.337687 66d6490f-1efd-40f1-8633-52503a9454b0 {"md5": "a6f14d2ba382c63bdbaa650b00b0bb9d", "pid": "041312406", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Beweis"}], "related": [{"authorized_access_point": "Rechtsgutachten"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134028687", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85046005", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85046005"}], "authorized_access_point": "Evidence, Expert"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134028687", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11971981", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11971981v"}], "authorized_access_point": "Expertises"}], "identifier": "http://d-nb.info/gnd/4131240-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4131240-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041312406", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4131240-5", "source": "GND"}], "variant_access_point": ["Sachverständiger"], "authorized_access_point": "Sachverständigenbeweis"} 1 +2024-09-10 15:45:10.413137 2024-09-10 15:45:10.413141 69adb443-479b-480e-bd03-7236406ed4fc {"md5": "09fbcb6eca5efa0b41183a016d0c0c1f", "pid": "041311248", "note": [{"label": ["Als Videokonferenz bezeichnet man eine Form der Telekommunikation, bei der mithilfe von Kameras, Mikrofonen, Bildschirmen und Lautsprechern eine audiovisuelle Verbindung zwischen zwei oder mehr Personen hergestellt und so ein wechselseitiger Informationsaustausch ermöglicht wird."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Telekonferenz"}], "related": [{"authorized_access_point": "Telepräsenz"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134204450", "source": "GND"}, {"type": "bf:Nbn", "value": "sh88004839", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh88004839"}], "authorized_access_point": "Videoconferencing"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134204450", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12192080", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12192080f"}], "authorized_access_point": "Visioconférences"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1299905978", "source": "GND"}, {"type": "bf:Nbn", "value": "XX546241", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX546241"}], "authorized_access_point": "Videoconferencia"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970602065", "source": "GND"}, {"type": "bf:Nbn", "value": "10065463", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10065463"}], "authorized_access_point": "Videokonferenz"}], "identifier": "http://d-nb.info/gnd/4131124-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4131124-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041311248", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4131124-3", "source": "GND"}], "authorized_access_point": "Videokonferenz"} 1 +2024-09-10 15:45:10.505066 2024-09-10 15:45:10.50507 69f0a050-babb-4006-85dc-9c250455a1a0 {"md5": "49281119aefedb81b2cc06ea56856373", "pid": "041308263", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4130826-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4130826-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041308263", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4130826-8", "source": "GND"}], "variant_access_point": ["Schadensuntersuchung"], "authorized_access_point": "Schadensanalyse"} 1 +2024-09-10 15:45:10.598624 2024-09-10 15:45:10.598632 cc8f48ad-5537-48b6-ad59-9707ced5e5de {"md5": "4c037544abfb3994fb983820269f8461", "pid": "041306570", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133633234", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85145963", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85145963"}], "authorized_access_point": "Weights and measures"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134210590", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12205303", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12205303v"}], "authorized_access_point": "Poids"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133633234", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11941221", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11941221f"}], "authorized_access_point": "Poids et mesures"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254350136", "source": "GND"}, {"type": "bf:Nbn", "value": "21495", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/21495"}], "authorized_access_point": "Misure"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254435301", "source": "GND"}, {"type": "bf:Nbn", "value": "XX526274", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX526274"}], "authorized_access_point": "Pesos y medidas"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256217689", "source": "GND"}, {"type": "bf:Nbn", "value": "8349", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_8349"}], "authorized_access_point": "weight"}], "identifier": "http://d-nb.info/gnd/4130657-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4130657-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041306570", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4130657-0", "source": "GND"}], "authorized_access_point": "Gewicht"} 1 +2024-09-10 15:45:10.678421 2024-09-10 15:45:10.678425 7aabb0db-0b8e-4536-a97c-29d82c14dd62 {"md5": "e5c5026f1d6a5d26650bfb3ee9ed403a", "pid": "041306473", "note": [{"label": ["Zusammenfassend für alle Wettbewerbe"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Europapokal"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113480914X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13736020", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13736020g"}], "authorized_access_point": "Football - Ligue des champions"}], "identifier": "http://d-nb.info/gnd/4130647-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4130647-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041306473", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4130647-8", "source": "GND"}], "authorized_access_point": "Fußballeuropapokal"} 1 +2024-09-10 15:45:11.143797 2024-09-10 15:45:11.143801 b4998270-7ceb-4d75-b172-c45516407a24 {"md5": "6552a5f03f0668877212b7be9d746bf9", "pid": "041288769", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Nerv"}, {"authorized_access_point": "Nervensystem"}, {"authorized_access_point": "Nervale Regulation"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134045719", "source": "GND"}, {"type": "bf:Nbn", "value": "sh99002358", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh99002358"}], "authorized_access_point": "Innervation"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134045719", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11977157", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119771577"}], "authorized_access_point": "Innervation"}], "identifier": "http://d-nb.info/gnd/4128876-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4128876-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041288769", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4128876-2", "source": "GND"}], "authorized_access_point": "Innervation"} 1 +2024-09-10 15:45:10.746735 2024-09-10 15:45:10.746739 7e14e7fb-0eac-4ca0-99a8-0fb32e370266 {"md5": "5b33cff1038023f659cdbd8cd795ba8b", "pid": "041305450", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Unechtes Werk"}, {"authorized_access_point": "Zuschreibung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134155654", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85010030", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85010030"}], "authorized_access_point": "Authorship"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134155654", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12088586", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12088586z"}], "authorized_access_point": "Attribution"}], "identifier": "http://d-nb.info/gnd/4130545-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4130545-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041305450", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4130545-0", "source": "GND"}], "variant_access_point": ["Autorenschaft", "Verfasserschaft", "Verfasserschaftsfrage", "Verfasserfrage"], "authorized_access_point": "Autorschaft"} 1 +2024-09-10 15:45:10.827482 2024-09-10 15:45:10.827486 fda0c0a0-fdcc-4f2a-ad53-c89886e5faba {"md5": "f845423c160ef83f1085c76a80224811", "pid": "041301005", "note": [{"label": ["Für das Recht benutze Rückfall"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134155158", "source": "GND"}, {"type": "bf:Nbn", "value": "sh98007420", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh98007420"}], "authorized_access_point": "Diseases - Relapse"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134155158", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12087741", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb120877419"}], "authorized_access_point": "Récidives"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1241620768", "source": "GND"}, {"type": "bf:Nbn", "value": "D012008", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D012008"}], "authorized_access_point": "Recurrence"}], "identifier": "http://d-nb.info/gnd/4130100-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4130100-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041301005", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4130100-6", "source": "GND"}], "variant_access_point": ["Rückfall (Medizin)", "Rückfall (Psychologie)"], "authorized_access_point": "Rezidiv"} 1 +2024-09-10 15:45:10.906192 2024-09-10 15:45:10.906196 5a85dcbd-e290-43c9-9c1c-53b28e6b96ef {"md5": "32927be618e7013bee37bfc0f3ae0770", "pid": "041296540", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Theaterbau"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133630715", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85088079", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85088079"}], "authorized_access_point": "Motion picture theaters"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133630715", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11939426", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11939426f"}], "authorized_access_point": "Cinémas"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254321977", "source": "GND"}, {"type": "bf:Nbn", "value": "2140", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/2140"}], "authorized_access_point": "Sale cinematografiche"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254448837", "source": "GND"}, {"type": "bf:Nbn", "value": "XX526308", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX526308"}], "authorized_access_point": "Cines"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966799305", "source": "GND"}, {"type": "bf:Nbn", "value": "18919-2", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/18919-2"}], "authorized_access_point": "Kino"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970563515", "source": "GND"}, {"type": "bf:Nbn", "value": "10043586", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10043586"}], "authorized_access_point": "Kino"}], "identifier": "http://d-nb.info/gnd/4129654-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4129654-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041296540", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4129654-0", "source": "GND"}], "variant_access_point": ["Filmtheater", "Lichtspielhaus", "Lichtspieltheater"], "authorized_access_point": "Kino"} 1 +2024-09-10 15:45:10.984113 2024-09-10 15:45:10.984115 2463ac85-0be1-43ce-8eb2-501a80077d9b {"md5": "d5f8f3e9ea69acee15755b53ce0fd341", "pid": "041291107", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Teilchenstrahlung"}, {"authorized_access_point": "Radioaktive Strahlung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134775881", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85013449", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85013449"}], "authorized_access_point": "Beta rays"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134775881", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11978653", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11978653g"}], "authorized_access_point": "Rayons bêta"}], "identifier": "http://d-nb.info/gnd/4129110-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4129110-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041291107", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4129110-4", "source": "GND"}], "variant_access_point": ["Betastrahlen"], "authorized_access_point": "Betastrahlung"} 1 +2024-09-10 15:45:11.054179 2024-09-10 15:45:11.054184 974d6a97-659d-48a7-9541-b7191b4b0149 {"md5": "27e5c384705ba83889bd71073334749c", "pid": "041289870", "note": [{"label": ["Möglichst keine Komposita für bestimmte Gene bilden (Ausnahme: Gengruppen)."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Genom"}], "related": [{"authorized_access_point": "Operon"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133736459", "source": "GND"}, {"type": "bf:Nbn", "value": "sh91000344", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh91000344"}], "authorized_access_point": "Genes"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133736459", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12224891", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12224891h"}], "authorized_access_point": "Gènes"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254330909", "source": "GND"}, {"type": "bf:Nbn", "value": "6576", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/6576"}], "authorized_access_point": "Geni"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254433821", "source": "GND"}, {"type": "bf:Nbn", "value": "XX526735", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX526735"}], "authorized_access_point": "Genes"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256216682", "source": "GND"}, {"type": "bf:Nbn", "value": "3214", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_3214"}], "authorized_access_point": "genes"}], "identifier": "http://d-nb.info/gnd/4128987-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4128987-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041289870", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4128987-0", "source": "GND"}], "variant_access_point": ["Erbanlage (Gen)", "Erbeinheit", "Erbfaktor"], "authorized_access_point": "Gen"} 1 +2024-09-10 15:45:12.289144 2024-09-10 15:45:12.289153 096f5a61-0687-4c2b-a954-dbaaa95cd953 {"md5": "16d502dd203ce0d8e4efccb58de84d1f", "pid": "04126133X", "note": [{"label": ["die in vielen Religionen und spirituellen Bewegungen vorhandene Idee, dass die Welt von Zeit zu Zeit in ein neues Zeitalter eintritt"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Wassermannzeitalter"}, {"authorized_access_point": "New Age"}], "identifier": "http://d-nb.info/gnd/4126133-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4126133-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04126133X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4126133-1", "source": "GND"}], "authorized_access_point": "Neues Zeitalter"} 1 +2024-09-10 15:45:11.218655 2024-09-10 15:45:11.218662 8fe72f57-fb17-492b-8037-66f9c231b333 {"md5": "c63ce599e1b547e12ffe57d7676cd65b", "pid": "04128805X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kunststoff"}, {"authorized_access_point": "Faserverbundwerkstoff"}], "related": [{"authorized_access_point": "Noppenwabe"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133927459", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85112457", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85112457"}], "authorized_access_point": "Reinforced plastics"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134305737", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85048018", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85048018"}], "authorized_access_point": "Fiber-reinforced plastics"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133927459", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11932441", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11932441n"}], "authorized_access_point": "Matières plastiques renforcées"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134305737", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12386115", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12386115c"}], "authorized_access_point": "Matières plastiques renforcées avec des fibres"}], "identifier": "http://d-nb.info/gnd/4128805-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4128805-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04128805X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4128805-1", "source": "GND"}], "variant_access_point": ["Faser-Kunststoff-Verbund", "Faserverbundkunststoff", "FKV (Werkstoff)", "FVK (Werkstoff)", "Fibre-reinforced plastic"], "authorized_access_point": "Faserverstärkter Kunststoff"} 1 +2024-09-10 15:45:11.288418 2024-09-10 15:45:11.288422 383463fb-fc11-44b6-9dcb-10dd94fa2ceb {"md5": "1844a20e3ed395fc3011c5045d3eb051", "pid": "041287886", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifier": "http://d-nb.info/gnd/4128788-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4128788-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041287886", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4128788-5", "source": "GND"}], "authorized_access_point": "Bezirk Detmold (Motiv)"} 1 +2024-09-10 15:45:11.373169 2024-09-10 15:45:11.373174 e205f7b6-55c9-45d8-920c-cca0120e325a {"md5": "104158036c625dcda43a90d1b4763f9a", "pid": "041285913", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Filter (Stochastik)"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113390596X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85071360", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85071360"}], "authorized_access_point": "Kalman filtering"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113390596X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12290051", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12290051j"}], "authorized_access_point": "Kalman, Filtrage de"}], "identifier": "http://d-nb.info/gnd/4128591-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4128591-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041285913", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4128591-8", "source": "GND"}], "authorized_access_point": "Kalman-Bucy-Filter"} 1 +2024-09-10 15:45:11.457424 2024-09-10 15:45:11.457428 baf6d5a2-fe05-48ec-84d9-d321bec1742b {"md5": "bbc5a4a65a58bb9cd5481d5ce1432af7", "pid": "041284100", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ideal"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134658567", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85012720", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85012720"}], "authorized_access_point": "Beauty, Personal"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134658567", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11938482", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11938482p"}], "authorized_access_point": "Beauté corporelle"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254484205", "source": "GND"}, {"type": "bf:Nbn", "value": "XX525607", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX525607"}], "authorized_access_point": "Belleza corporal"}], "identifier": "http://d-nb.info/gnd/4128410-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4128410-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041284100", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4128410-0", "source": "GND"}], "variant_access_point": ["Schönheit", "Schönheitskult"], "authorized_access_point": "Schönheitsideal"} 1 +2024-09-10 15:45:11.554716 2024-09-10 15:45:11.554725 55aaba9b-168b-452a-8db1-6bcd130cb42c {"md5": "3bb53601f1239edd8766de06fb6a3e16", "pid": "041282787", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Flugtriebwerk"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134724330", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85002908", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85002908"}], "authorized_access_point": "Airplanes - Turbojet engines"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133696430", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85070170", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85070170"}], "authorized_access_point": "Jet propulsion"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134724330", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11944356", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119443563"}], "authorized_access_point": "Avions - Turboréacteurs"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133696430", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11982987", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11982987c"}], "authorized_access_point": "Propulsion par réaction"}], "identifier": "http://d-nb.info/gnd/4128278-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4128278-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041282787", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4128278-4", "source": "GND"}], "variant_access_point": ["Düsenantrieb", "Düsentriebwerk", "Durchströmtriebwerk", "Strahlantrieb", "Strahltriebwerk", "Luftatmendes Flugtriebwerk"], "authorized_access_point": "Luftstrahltriebwerk"} 1 +2024-09-10 15:45:11.645997 2024-09-10 15:45:11.646001 8bb31dc9-0d90-4994-85c3-2729bf4a1310 {"md5": "c8992746e5e4061ef9989cfc91d64751", "pid": "041280628", "note": [{"label": ["Gattungsgruppe"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bienen (Familie)"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134184484", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85017981", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85017981"}], "authorized_access_point": "Bumblebees"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134184484", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12137395", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb121373958"}], "authorized_access_point": "Bourdons (insectes)"}], "identifier": "http://d-nb.info/gnd/4128062-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4128062-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041280628", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4128062-3", "source": "GND"}], "variant_access_point": ["Bombini"], "authorized_access_point": "Hummeln"} 1 +2024-09-10 15:45:31.594174 2024-09-10 15:45:31.594182 ea778396-c1b7-45a0-bf24-92b8187420ba {"md5": "e9601a4a9a29d907808ce2ac7e84d79a", "pid": "1336043652", "note": [{"label": ["Entstehungszeit 1917"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifier": "http://d-nb.info/gnd/1336043652", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1336043652", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1336043652", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1336043652", "source": "GND"}], "variant_access_point": ["Windisch-Kursiv (Druckschrift)"], "authorized_access_point": "Windisch Kursiv (Druckschrift)"} 1 +2024-09-10 15:45:11.733652 2024-09-10 15:45:11.733657 37cecaaa-5df6-4790-923d-d58021c36622 {"md5": "5d80fa6adef6afefd7f4944100c50524", "pid": "041277848", "note": [{"label": ["Öffentl. Verurteilung von dogmat. Aussagen einer anderen Konfession"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Verurteilung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134615876", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13558002", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb135580023"}], "authorized_access_point": "Censures doctrinales"}], "identifier": "http://d-nb.info/gnd/4127784-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4127784-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041277848", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4127784-3", "source": "GND"}], "variant_access_point": ["Verwerfungsaussage"], "authorized_access_point": "Lehrverurteilung"} 1 +2024-09-10 15:45:11.826795 2024-09-10 15:45:11.826799 7367c623-a01d-4c9e-8427-d584896d0d84 {"md5": "d93ef353a1d0a13a8dbf9f79216d803c", "pid": "041277090", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Provision"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134105134", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85018275", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85018275"}], "authorized_access_point": "Business brokerage"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134105134", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12010402", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12010402f"}], "authorized_access_point": "Courtage"}], "identifier": "http://d-nb.info/gnd/4127709-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4127709-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041277090", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4127709-0", "source": "GND"}], "variant_access_point": ["Maklerprovision", "Maklercourtage", "Courtage", "Kurtage", "Maklergebühr", "Maklervergütung"], "authorized_access_point": "Maklerlohn"} 1 +2024-09-10 15:45:11.898157 2024-09-10 15:45:11.89816 7b169668-c2a7-4614-964d-2e0fbda8e527 {"md5": "a6c28575558f9caa7b3f0e20df1d36a4", "pid": "041275829", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ausgliederung"}], "related": [{"authorized_access_point": "Fremdbezug"}, {"authorized_access_point": "Make or buy"}, {"authorized_access_point": "Contracting-out"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134494270", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85031614", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85031614"}], "authorized_access_point": "Contracting out"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134494270", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF15719280", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb15719280g"}], "authorized_access_point": "Externalisation"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966897404", "source": "GND"}, {"type": "bf:Nbn", "value": "19113-6", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/19113-6"}], "authorized_access_point": "Outsourcing"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970577702", "source": "GND"}, {"type": "bf:Nbn", "value": "10063041", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10063041"}], "authorized_access_point": "Outsourcing"}], "identifier": "http://d-nb.info/gnd/4127582-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4127582-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041275829", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4127582-2", "source": "GND"}], "variant_access_point": ["Funktionsbezogene Ausgliederung", "Funktionsausgliederung"], "authorized_access_point": "Outsourcing"} 1 +2024-09-10 15:45:11.998426 2024-09-10 15:45:11.99843 316ea80b-1ea3-4826-961d-5199a46bd0d8 {"md5": "3173324dd1bf17807941804c8338be14", "pid": "041274059", "note": [{"label": ["Alle Wissensgebiete umfassende spirituelle Bewegung", "Für Schriften, die sich auf die Ankündigung eines heraufkommenden neuen Zeitalters beschränken, verwende |s|Neues Zeitalter bzw. |s|Wassermannzeitalter"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Neues Zeitalter"}, {"authorized_access_point": "Wassermannzeitalter"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134187645", "source": "GND"}, {"type": "bf:Nbn", "value": "sh87000526", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh87000526"}], "authorized_access_point": "New Age movement"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134187645", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12144385", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12144385f"}], "authorized_access_point": "Nouvel âge (mouvement)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254398813", "source": "GND"}, {"type": "bf:Nbn", "value": "7585", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/7585"}], "authorized_access_point": "New Age"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1299919162", "source": "GND"}, {"type": "bf:Nbn", "value": "XX535178", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX535178"}], "authorized_access_point": "Nueva Era"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970575831", "source": "GND"}, {"type": "bf:Nbn", "value": "10048335", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10048335"}], "authorized_access_point": "New Age"}], "identifier": "http://d-nb.info/gnd/4127405-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4127405-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041274059", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4127405-2", "source": "GND"}], "authorized_access_point": "New Age"} 1 +2024-09-10 15:45:12.081528 2024-09-10 15:45:12.08154 914e5924-4525-4289-adaa-518c2bff8cdd {"md5": "968f8cb7703023f43b71c6d90c705d6d", "pid": "041270290", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Name"}, {"authorized_access_point": "Chemische Nomenklatur"}, {"authorized_access_point": "Zoologische Nomenklatur"}, {"authorized_access_point": "Botanische Nomenklatur"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134080697", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11983360", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11983360x"}], "authorized_access_point": "Noms vernaculaires"}], "identifier": "http://d-nb.info/gnd/4127029-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4127029-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041270290", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4127029-0", "source": "GND"}], "variant_access_point": ["Trivialnamen"], "authorized_access_point": "Trivialname"} 1 +2024-09-10 15:45:12.198766 2024-09-10 15:45:12.198771 539cb874-9cb3-44da-b1b5-fc1a7eece433 {"md5": "4336d0b88feb2e11cb5d77812730d4e7", "pid": "041264487", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Führungskraft"}, {"authorized_access_point": "Bevollmächtigter"}], "related": [{"authorized_access_point": "Prokuristin"}, {"authorized_access_point": "Prokura"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134692072", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11977389", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11977389d"}], "authorized_access_point": "Mandat"}], "identifier": "http://d-nb.info/gnd/4126448-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4126448-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041264487", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4126448-4", "source": "GND"}], "authorized_access_point": "Prokurist"} 1 +2024-09-10 15:45:12.380999 2024-09-10 15:45:12.381005 30ab8707-1dff-4bc3-ab2c-0bd384ca0d52 {"md5": "4459867e12efe2b6762cb0d0cadb3649", "pid": "041258819", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Lachsartige (Familie)"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134672071", "source": "GND"}, {"type": "bf:Nbn", "value": "sh88006387", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh88006387"}], "authorized_access_point": "Sea trout"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134672071", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11987418", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11987418c"}], "authorized_access_point": "Truite de mer"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256235938", "source": "GND"}, {"type": "bf:Nbn", "value": "24702", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_24702"}], "authorized_access_point": "Salmo trutta"}], "identifier": "http://d-nb.info/gnd/4125881-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4125881-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041258819", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4125881-2", "source": "GND"}], "variant_access_point": ["Lachsforelle", "Salmo trutta trutta"], "authorized_access_point": "Meerforelle"} 1 +2024-09-10 15:45:12.466835 2024-09-10 15:45:12.46684 e6032d07-753c-4ad8-a06e-2e6f4b8aaccf {"md5": "0295eb4b7569978c5ce9e7a53f8f20f8", "pid": "041258762", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4125876-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4125876-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041258762", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4125876-9", "source": "GND"}], "authorized_access_point": "Brennverlauf"} 1 +2024-09-10 15:45:12.547111 2024-09-10 15:45:12.547116 113140f9-a11b-46b1-a63f-7465b5a6bc8e {"md5": "3d4161bb46e72b04ec824e471b003c4b", "pid": "041255364", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134720793", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12145482", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12145482x"}], "authorized_access_point": "Communication téléphonique"}], "identifier": "http://d-nb.info/gnd/4125536-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4125536-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041255364", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4125536-7", "source": "GND"}], "variant_access_point": ["Telefongespräch", "Fernsprechen", "Anrufen (Telefonieren)"], "authorized_access_point": "Telefonieren"} 1 +2024-09-10 15:45:12.639396 2024-09-10 15:45:12.6394 a7f118f7-3eed-4959-949c-ecd1fcf3b948 {"md5": "62a48cd7144b6989cb01c7ab2c1bdac5", "pid": "041254759", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Auxologie"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133629822", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11938480", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119384800"}], "authorized_access_point": "Anthropométrie"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254345205", "source": "GND"}, {"type": "bf:Nbn", "value": "18100", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/18100"}], "authorized_access_point": "Antropometria"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254404988", "source": "GND"}, {"type": "bf:Nbn", "value": "XX4576284", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX4576284"}], "authorized_access_point": "Antropometría"}], "identifier": "http://d-nb.info/gnd/4125475-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4125475-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041254759", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4125475-2", "source": "GND"}], "authorized_access_point": "Anthropometrie"} 1 +2024-09-10 15:45:12.720058 2024-09-10 15:45:12.720061 7679118e-9b63-4176-8d41-2ab8490b6f4d {"md5": "91033034a096fcdb9e57e37d4fc46255", "pid": "041254538", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1299909892", "source": "GND"}, {"type": "bf:Nbn", "value": "XX526296", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX526296"}], "authorized_access_point": "Espectáculos"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966670582", "source": "GND"}, {"type": "bf:Nbn", "value": "27683-4", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/27683-4"}], "authorized_access_point": "Veranstaltung"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970600127", "source": "GND"}, {"type": "bf:Nbn", "value": "10065094", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10065094"}], "authorized_access_point": "Veranstaltung"}], "identifier": "http://d-nb.info/gnd/4125453-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4125453-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041254538", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4125453-3", "source": "GND"}], "variant_access_point": ["Event", "Veranstaltungen", "Events"], "authorized_access_point": "Veranstaltung"} 1 +2024-09-10 15:45:13.21908 2024-09-10 15:45:13.219083 9d6924c8-6f9c-49b4-83a9-6a2d52226ec5 {"md5": "7a07fc44bb235050e3e44ada1e58f94f", "pid": "041237226", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tourismus"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134026447", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2019000183", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2019000183"}], "authorized_access_point": "Overtourism"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134026447", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17901252", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17901252q"}], "authorized_access_point": "Tourisme de masse"}], "identifier": "http://d-nb.info/gnd/4123722-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4123722-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041237226", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4123722-5", "source": "GND"}], "authorized_access_point": "Massentourismus"} 1 +2024-09-10 15:45:12.802658 2024-09-10 15:45:12.802662 deeded46-565e-4516-a324-2afcbb24a7c4 {"md5": "f10cae40ae49a2929745eeb1db7e160d", "pid": "041251733", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Künstler"}], "related": [{"authorized_access_point": "Grafikerin"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134352247", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85028916", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85028916"}], "authorized_access_point": "Commercial artists"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331597730", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2006004207", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2006004207"}], "authorized_access_point": "Graphic artists"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134352247", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12507269", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12507269h"}], "authorized_access_point": "Graphistes"}], "identifier": "http://d-nb.info/gnd/4125173-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4125173-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041251733", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4125173-8", "source": "GND"}], "variant_access_point": ["Graphiker"], "authorized_access_point": "Grafiker"} 1 +2024-09-10 15:45:12.890691 2024-09-10 15:45:12.890695 ff48f5bd-080b-4f60-aaec-ab685c2163f5 {"md5": "a1c12b5505b4ee8bbf0591e01fc4b80f", "pid": "041250117", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134693982", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85032941", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85032941"}], "authorized_access_point": "Corporations - Growth"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134693982", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11961373", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11961373c"}], "authorized_access_point": "Entreprises - Croissance"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)967010853", "source": "GND"}, {"type": "bf:Nbn", "value": "12069-4", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/12069-4"}], "authorized_access_point": "Unternehmenserfolg"}], "identifier": "http://d-nb.info/gnd/4125011-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4125011-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041250117", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4125011-4", "source": "GND"}], "variant_access_point": ["Unternehmen"], "authorized_access_point": "Unternehmensentwicklung"} 1 +2024-09-10 15:45:12.9703 2024-09-10 15:45:12.970304 5a0dd244-59fe-48a7-860b-0fc273379dd1 {"md5": "91faf9f4f77a05deaa59f70958815363", "pid": "041244362", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bedarf"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134045700", "source": "GND"}, {"type": "bf:Nbn", "value": "sh00005691", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh00005691"}], "authorized_access_point": "Water requirements"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134045700", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11977153", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11977153v"}], "authorized_access_point": "Besoins en eau"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256270288", "source": "GND"}, {"type": "bf:Nbn", "value": "8323", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_8323"}], "authorized_access_point": "water requirements"}], "identifier": "http://d-nb.info/gnd/4124436-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4124436-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041244362", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4124436-9", "source": "GND"}], "variant_access_point": ["Wasser"], "authorized_access_point": "Wasserbedarf"} 1 +2024-09-10 15:45:13.042858 2024-09-10 15:45:13.042862 20f4672e-5763-430a-a634-e921d0e203de {"md5": "5e0ed673ee96bb6c13da9634455a99ba", "pid": "04124317X", "note": [{"label": ["Eine Tochtergesellschaft ist ein Unternehmen, das unmittelbar oder mittelbar von einem Mutterunternehmen kontrolliert wird."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Abhängiges Unternehmen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134501099", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85129532", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85129532"}], "authorized_access_point": "Subsidiary corporations"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134501099", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11971987", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11971987x"}], "authorized_access_point": "Filiales"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1299912303", "source": "GND"}, {"type": "bf:Nbn", "value": "XX553203", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX553203"}], "authorized_access_point": "Filiales"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)967004896", "source": "GND"}, {"type": "bf:Nbn", "value": "18119-6", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/18119-6"}], "authorized_access_point": "Tochtergesellschaft"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970597851", "source": "GND"}, {"type": "bf:Nbn", "value": "10037293", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10037293"}], "authorized_access_point": "Tochtergesellschaft"}], "identifier": "http://d-nb.info/gnd/4124317-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4124317-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04124317X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4124317-1", "source": "GND"}], "variant_access_point": ["Tochterunternehmen"], "authorized_access_point": "Tochtergesellschaft"} 1 +2024-09-10 15:45:13.126262 2024-09-10 15:45:13.126265 17024d02-b2bf-4e5b-a566-806346ac360a {"md5": "75637a3adfc5bbdf2457aa6c7e92115b", "pid": "041240839", "note": [{"label": ["Mit einzelnen Substanzen werden keine Komposita gebildet (Komposita wie Pestizidrückstand sollten aber möglich sein)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Reststoff"}, {"authorized_access_point": "Restabfall"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134038585", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11975880", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119758806"}], "authorized_access_point": "Résidus"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256252875", "source": "GND"}, {"type": "bf:Nbn", "value": "6518", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_6518"}], "authorized_access_point": "residues"}], "identifier": "http://d-nb.info/gnd/4124083-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4124083-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041240839", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4124083-2", "source": "GND"}], "authorized_access_point": "Rückstand"} 1 +2024-09-10 15:45:13.302463 2024-09-10 15:45:13.302468 6f50719f-85e8-4a03-be5b-61aae9000a46 {"md5": "5192aa1e81aa8167feda36dc6ac77d85", "pid": "041231899", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Optischer Sensor"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133827055", "source": "GND"}, {"type": "bf:Nbn", "value": "sh93001076", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh93001076"}], "authorized_access_point": "Optical fiber detectors"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133827055", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12545899", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12545899f"}], "authorized_access_point": "Détecteurs à fibres optiques"}], "identifier": "http://d-nb.info/gnd/4123189-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4123189-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041231899", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4123189-2", "source": "GND"}], "variant_access_point": ["Faseroptik", "FOS (Sensortechnik)"], "authorized_access_point": "Faseroptischer Sensor"} 1 +2024-09-10 15:45:13.384383 2024-09-10 15:45:13.384388 04500c51-b6c2-4e57-a7d6-18d9173d738d {"md5": "7c383c59fb5f7592d77c88a5bafbc4be", "pid": "041220803", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Ermessen"}], "identifier": "http://d-nb.info/gnd/4122080-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4122080-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041220803", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4122080-8", "source": "GND"}], "variant_access_point": ["Wertungsspielraum"], "authorized_access_point": "Beurteilungsspielraum"} 1 +2024-09-10 15:45:13.452343 2024-09-10 15:45:13.452347 5806f316-76c2-41e8-9bfd-61f34f38e29b {"md5": "a6ffd7bc7234ef6299128fb45a36dafe", "pid": "041218760", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schiff (Architektur)"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334556571", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85034295", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85034295"}], "authorized_access_point": "Crossing (Architecture)"}], "identifier": "http://d-nb.info/gnd/4121876-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4121876-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041218760", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4121876-0", "source": "GND"}], "authorized_access_point": "Vierung"} 1 +2024-09-10 15:45:13.537564 2024-09-10 15:45:13.537569 c3e34e8e-5295-45af-b774-f4c98587385f {"md5": "9b1fa34ff35fd0432e3d9854f13eb121", "pid": "041217896", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fasanenartige"}], "identifier": "http://d-nb.info/gnd/4121789-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4121789-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041217896", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4121789-5", "source": "GND"}], "variant_access_point": ["Meleagridinae", "Meleagrididae"], "authorized_access_point": "Truthühner (Unterfamilie)"} 1 +2024-09-10 15:45:13.633961 2024-09-10 15:45:13.634017 cbfd84b8-f5af-4fd4-a120-2db586d64ee1 {"md5": "019597ba1163e85af2b98826c694512e", "pid": "041217225", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Statistisches_Modell&oldid=219273797"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mathematisches Modell"}], "related": [{"authorized_access_point": "Stochastisches Modell"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134627246", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2005004376", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2005004376"}], "authorized_access_point": "Stochastic models"}], "identifier": "http://d-nb.info/gnd/4121722-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4121722-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041217225", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4121722-6", "source": "GND"}], "variant_access_point": ["Statistik"], "authorized_access_point": "Statistisches Modell"} 1 +2024-09-10 15:45:13.728748 2024-09-10 15:45:13.728751 d872ac52-dc0e-4a81-994d-9bf03237bc92 {"md5": "a6fe3ac10c6343490772f5710d47d0f3", "pid": "041217020", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Botanik"}], "identifier": "http://d-nb.info/gnd/4121702-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4121702-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041217020", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4121702-0", "source": "GND"}], "authorized_access_point": "Spezielle Botanik"} 1 +2024-09-10 15:45:13.825452 2024-09-10 15:45:13.825456 b9ab6fce-75f1-42cc-8778-e0ca3e344ea1 {"md5": "8d46076172339462bf32bd3dd253e99d", "pid": "04121630X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Ratio legis"}], "identifier": "http://d-nb.info/gnd/4121630-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4121630-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04121630X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4121630-1", "source": "GND"}], "variant_access_point": ["Rayon (Schutzbereich)", "Schutzumfang"], "authorized_access_point": "Schutzbereich"} 1 +2024-09-10 15:45:13.903768 2024-09-10 15:45:13.903772 f46d0c58-d663-4789-a536-c438a0f3ce86 {"md5": "eb11d8441a079322d01d37dc1084edf3", "pid": "041214870", "note": [{"label": ["Als politische Justiz bezeichnet man die Instrumentalisierung von Gerichtsverfahren zur Benachteiligung oder Ausschaltung von Regimegegnern."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Justiz"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133696376", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85071136", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85071136"}], "authorized_access_point": "Justice, Administration of - Political aspects"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133696376", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13319233", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb133192330"}], "authorized_access_point": "Justice et politique"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254474099", "source": "GND"}, {"type": "bf:Nbn", "value": "XX549941", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX549941"}], "authorized_access_point": "Justicia y política"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970580037", "source": "GND"}, {"type": "bf:Nbn", "value": "10054809", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10054809"}], "authorized_access_point": "politische Justiz"}], "identifier": "http://d-nb.info/gnd/4121487-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4121487-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041214870", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4121487-0", "source": "GND"}], "authorized_access_point": "Politische Justiz"} 1 +2024-09-10 15:45:13.991866 2024-09-10 15:45:13.991872 e1bee1ff-9843-43a8-bf21-5c3032c10597 {"md5": "92966f235f553a56ded4c2168a5af404", "pid": "041212339", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Reise"}], "related": [{"authorized_access_point": "Studienreise"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332366899", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85136266", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85136266"}], "authorized_access_point": "Tourism and art"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332366899", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12528541", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12528541m"}], "authorized_access_point": "Élèves du secondaire - Voyages"}], "identifier": "http://d-nb.info/gnd/4121233-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4121233-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041212339", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4121233-2", "source": "GND"}], "variant_access_point": ["Exkursionen"], "authorized_access_point": "Exkursion"} 1 +2024-09-10 15:45:14.092494 2024-09-10 15:45:14.0925 c0990b46-544e-4c9e-91e0-4ee5a7cfbc01 {"md5": "4344dc61d93643a1b5bf42298959ebd1", "pid": "041211383", "note": [{"label": ["Verknüpfe mit Anwendungsgebiet"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970543697", "source": "GND"}, {"type": "bf:Nbn", "value": "10038458", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10038458"}], "authorized_access_point": "Differenzierung"}], "identifier": "http://d-nb.info/gnd/4121138-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4121138-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041211383", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4121138-8", "source": "GND"}], "authorized_access_point": "Differenzierung"} 1 +2024-09-10 15:45:14.22766 2024-09-10 15:45:14.227664 19c08f85-bc9f-4319-a066-2f9cf90b0eb5 {"md5": "c86c7ef4ae578a08ca7439f08d0addce", "pid": "041211154", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gewerk"}], "related": [{"authorized_access_point": "Dachdecker"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1321205090", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85115317", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85115317"}], "authorized_access_point": "Roofing"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1321205090", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11933684", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11933684q"}], "authorized_access_point": "Couverture (construction)"}], "identifier": "http://d-nb.info/gnd/4121115-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4121115-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041211154", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4121115-7", "source": "GND"}], "variant_access_point": ["Dachdecken", "Dachdeckungsarbeit", "Dachdeckerarbeit"], "authorized_access_point": "Dachdeckung"} 1 +2024-09-10 15:45:14.351105 2024-09-10 15:45:14.351112 e09ba05a-2b58-4b07-9ae5-d0e83c05bfe1 {"md5": "72de57d7d4ff7df09095c3f3065d97ae", "pid": "041208862", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Unerlaubte Handlung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133822789", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85085982", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85085982"}], "authorized_access_point": "Misconduct in office"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133822789", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12527222", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb125272228"}], "authorized_access_point": "Fonctionnaires - Responsabilité pénale"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134279477", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12333253", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12333253f"}], "authorized_access_point": "Prévarication"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254512381", "source": "GND"}, {"type": "bf:Nbn", "value": "XX530145", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX530145"}], "authorized_access_point": "Delitos de los funcionarios"}], "identifier": "http://d-nb.info/gnd/4120886-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4120886-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041208862", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4120886-9", "source": "GND"}], "variant_access_point": ["Amtspflicht"], "authorized_access_point": "Amtspflichtverletzung"} 1 +2024-09-10 15:45:14.421093 2024-09-10 15:45:14.421096 156dd90e-a9f4-40ec-81c8-9d23ae11e1bd {"md5": "3399bcb2d3627f1380fcd8560581d3b2", "pid": "041204409", "note": [{"label": ["Herkunft einer Person oder einer Sache.", "I.d.R. nicht permutierend. Verknüpfe mit dem jeweiligen Gegenstand bzw. verwende spezifisches SW, z.B. Soziale Herkunft."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134650639", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2002006528", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2002006528"}], "authorized_access_point": "Provenances"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134650639", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12452859", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12452859h"}], "authorized_access_point": "Provenance"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256221309", "source": "GND"}, {"type": "bf:Nbn", "value": "16022", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_16022"}], "authorized_access_point": "provenance"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970585098", "source": "GND"}, {"type": "bf:Nbn", "value": "10046547", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10046547"}], "authorized_access_point": "regionale Herkunft"}], "identifier": "http://d-nb.info/gnd/4120440-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4120440-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041204409", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4120440-2", "source": "GND"}], "variant_access_point": ["Provenienz", "Regionale Herkunft"], "authorized_access_point": "Herkunft"} 1 +2024-09-10 15:45:14.490443 2024-09-10 15:45:14.490447 9b6f691d-f9f8-4577-b028-286c8f9d6d70 {"md5": "d7179996a631f900a797a4bddb67f8fe", "pid": "041176626", "note": [{"label": ["Bei Wörterbüchern ist SW Wirtschaft zu bevorzugen."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fachsprache"}, {"authorized_access_point": "Sondersprache"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134015186", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11967113", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11967113d"}], "authorized_access_point": "Langage commercial et des affaires"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)968557104", "source": "GND"}, {"type": "bf:Nbn", "value": "30030-1", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/30030-1"}], "authorized_access_point": "Wirtschaftsterminologie"}], "identifier": "http://d-nb.info/gnd/4117662-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4117662-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041176626", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4117662-5", "source": "GND"}], "variant_access_point": ["Geschäftssprache", "Wirtschaft", "Wirtschaft", "Handelssprache", "Handel", "Handel", "Kaufmannssprache", "Businesssprache"], "authorized_access_point": "Wirtschaftssprache"} 1 +2024-09-10 15:45:14.569542 2024-09-10 15:45:14.569547 bf50fd9e-07f3-4b90-88b8-0f9446c939d7 {"md5": "1083963a048155ad289623e4e27c3247", "pid": "041175808", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Waldschaden"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134203578", "source": "GND"}, {"type": "bf:Nbn", "value": "sh88004553", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh88004553"}], "authorized_access_point": "Forest declines"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134203578", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12190274", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12190274k"}], "authorized_access_point": "Forêts - Dépérissement"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256269948", "source": "GND"}, {"type": "bf:Nbn", "value": "29300", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_29300"}], "authorized_access_point": "forest decline"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970603223", "source": "GND"}, {"type": "bf:Nbn", "value": "10061942", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10061942"}], "authorized_access_point": "Waldsterben"}], "identifier": "http://d-nb.info/gnd/4117580-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4117580-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041175808", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4117580-3", "source": "GND"}], "variant_access_point": ["Neuartiger Waldschaden"], "authorized_access_point": "Waldsterben"} 1 +2024-09-10 15:45:14.683904 2024-09-10 15:45:14.683948 f014ca88-3cfd-4488-8281-c90ba96c2288 {"md5": "19f2833755cafb1ec6b6e15b3e3f88a4", "pid": "041173899", "note": [{"label": ["Eine Vertrauensperson ist eine Person, die weder einer Strafverfolgungsbehörde noch einem Nachrichtendienst angehört und die diese Einrichtungen auf längere Zeit bei der Aufklärung von Straftaten oder verfassungsfeindlichen Bestrebungen unterstützt, wobei diese Unterstützung Dritten nicht bekannt ist."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Informant"}], "related": [{"authorized_access_point": "Agent provocateur"}, {"authorized_access_point": "Verdeckter Ermittler"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134765045", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85066307", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85066307"}], "authorized_access_point": "Informers"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134765045", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11978390", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11978390v"}], "authorized_access_point": "Indicateurs"}], "identifier": "http://d-nb.info/gnd/4117389-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4117389-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041173899", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4117389-2", "source": "GND"}], "variant_access_point": ["V-Person", "Vertrauensperson", "Informant", "Polizeispitzel", "Vertrauensmann", "V-Leute"], "authorized_access_point": "V-Mann"} 1 +2024-09-10 15:45:14.788894 2024-09-10 15:45:14.788907 ab825710-c741-4814-99a2-42a3c0922431 {"md5": "67660b4dd4dfe0bd12d265de55d416c8", "pid": "041172922", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4117292-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4117292-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041172922", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4117292-9", "source": "GND"}], "authorized_access_point": "Unrecht"} 1 +2024-09-10 15:45:14.894356 2024-09-10 15:45:14.894368 b2529e00-5d8f-41e2-933c-7608bf0162c4 {"md5": "e4ff1fd7a562d11ecf83e2d48ab25587", "pid": "041172299", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134546068", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85036108", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85036108"}], "authorized_access_point": "Death in literature"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134546076", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85036106", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85036106"}], "authorized_access_point": "Death in art"}], "identifier": "http://d-nb.info/gnd/4117229-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4117229-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041172299", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4117229-2", "source": "GND"}], "variant_access_point": ["Todesdarstellung"], "authorized_access_point": "Tod (Motiv)"} 1 +2024-09-10 15:45:14.996098 2024-09-10 15:45:14.996102 d99a0289-a8b1-473d-938d-882d0c147279 {"md5": "fe504768b22249a84afe0e49f5312c53", "pid": "041164334", "note": [{"label": ["Ethnografikum ohne Territorium. Ausser d. weibl. Form werden keine weiteren Adjektiv-Substantiv-Verbindungen gebildet, sondern es wird mit dem entspr. Sach-SW verknüpft, z.B. s Schwarze ; s Kind", "Auch für Schwarze innerhalb Afrikas"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Person of Color"}], "related": [{"authorized_access_point": "Schwarze Frau"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133928021", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85014672", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85014672"}], "authorized_access_point": "Black people"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113430949X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85014604", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85014604"}], "authorized_access_point": "Black race"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133928021", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11932628", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119326280"}], "authorized_access_point": "Noirs"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113430949X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF123951634", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb123951636"}], "authorized_access_point": "Race négroïde"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254343350", "source": "GND"}, {"type": "bf:Nbn", "value": "16861", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/16861"}], "authorized_access_point": "Neri"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254484787", "source": "GND"}, {"type": "bf:Nbn", "value": "XX4576825", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX4576825"}], "authorized_access_point": "Raza negra"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254484795", "source": "GND"}, {"type": "bf:Nbn", "value": "XX4576498", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX4576498"}], "authorized_access_point": "Negros"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970112211", "source": "GND"}, {"type": "bf:Nbn", "value": "15929-0", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/15929-0"}], "authorized_access_point": "Schwarze Menschen"}], "identifier": "http://d-nb.info/gnd/4116433-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4116433-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041164334", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4116433-7", "source": "GND"}], "variant_access_point": ["Neger", "Schwarze Rasse", "Schwarzer", "Mohr", "Schwarze Menschen"], "authorized_access_point": "Schwarze"} 1 +2024-09-10 15:45:15.106937 2024-09-10 15:45:15.106947 2b8208ee-aed6-4394-af0b-4e94e922f29e {"md5": "6b5fea3a5a15f1c3a226384837aaf365", "pid": "04115746X", "note": [{"label": ["Als Reparatur bezeichnet man einen Prozess, bei dem ein mangelhafter Gegenstand wieder in einen Zustand gebracht wird, in dem es seine bestimmungsgemäße Verwendung erfüllen kann.", "Im Unterschied dazu werden bei der Instandsetzung Verschleisserscheinungen behoben."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Instandsetzung"}], "identifier": "http://d-nb.info/gnd/4115746-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4115746-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04115746X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4115746-1", "source": "GND"}], "variant_access_point": ["Reparaturen"], "authorized_access_point": "Reparatur"} 1 +2024-09-10 15:45:15.24093 2024-09-10 15:45:15.240943 97a718c3-652d-45ef-abca-537f408e2621 {"md5": "3280ceb3feca351c41ca9a481a66bb59", "pid": "041144910", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zerkleinern"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134045247", "source": "GND"}, {"type": "bf:Nbn", "value": "sh00006472", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh00006472"}], "authorized_access_point": "Milling"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133670695", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85056219", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85056219"}], "authorized_access_point": "Grain - Milling"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133670695", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11967849", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11967849b"}], "authorized_access_point": "Céréales - Mouture"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134045247", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11977075", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11977075w"}], "authorized_access_point": "Mouture"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254458492", "source": "GND"}, {"type": "bf:Nbn", "value": "XX4663992", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX4663992"}], "authorized_access_point": "Cereales - Molienda"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256234427", "source": "GND"}, {"type": "bf:Nbn", "value": "4840", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_4840"}], "authorized_access_point": "milling"}], "identifier": "http://d-nb.info/gnd/4114491-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4114491-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041144910", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4114491-0", "source": "GND"}], "authorized_access_point": "Mahlen"} 1 +2024-09-10 15:45:15.372769 2024-09-10 15:45:15.37278 db4476cc-7b4c-4ea7-870d-46cf57f64c37 {"md5": "642224ab3b7a91a29e35fd64a1d9f374", "pid": "041142993", "note": [{"label": ["Pluralansetzung nach Du. Verwende nach Möglichkeit einen engeren Begriff wie Heilpflanzen, Wildkräuter, Zauberkräuter, Küchenkräuter"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254338152", "source": "GND"}, {"type": "bf:Nbn", "value": "12724", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/12724"}], "authorized_access_point": "Erbe"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966822684", "source": "GND"}, {"type": "bf:Nbn", "value": "14068-3", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/14068-3"}], "authorized_access_point": "Kräuter"}], "identifier": "http://d-nb.info/gnd/4114299-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4114299-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041142993", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4114299-8", "source": "GND"}], "authorized_access_point": "Kräuter"} 1 +2024-09-10 15:45:15.502238 2024-09-10 15:45:15.502248 7200eb01-a46a-4951-9f4c-4a21151ca5b9 {"md5": "053273ab4c2a2ff527152a237fbfa5d1", "pid": "041142403", "note": [{"label": ["Sammlung von Rezepten aller Art (RDA AH-007).", "Vorzugsweise mit dem Endprodukt (z. B. Kartoffelgericht, Gebäck) zu kombinieren, im Einzelnen siehe auch die Hinweise bei den jeweiligen Schlagwörtern (z.B. Wildbret u. ä.)."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Anleitung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133792855", "source": "GND"}, {"type": "bf:Nbn", "value": "sh96003769", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh96003769"}], "authorized_access_point": "Food writing"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133792855", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12425736", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12425736p"}], "authorized_access_point": "Livres de cuisine"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134838743", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12425736", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12425736p"}], "authorized_access_point": "Livres de cuisine"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254449876", "source": "GND"}, {"type": "bf:Nbn", "value": "XX556809", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX556809"}], "authorized_access_point": "Libros de cocina"}], "identifier": "http://d-nb.info/gnd/4114240-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4114240-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041142403", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4114240-8", "source": "GND"}], "variant_access_point": ["Kochen", "Kochrezept", "Rezepte", "Rezeptsammlung", "Rezept"], "authorized_access_point": "Kochbuch"} 1 +2024-09-10 15:45:15.615114 2024-09-10 15:45:15.615124 582c186d-c47b-46d5-bf1e-e0f8aab6b1db {"md5": "1f5980810a8c874245811d61cd028c03", "pid": "041134346", "note": [{"label": ["Regulation durch Hormone"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Regulation"}], "identifier": "http://d-nb.info/gnd/4113434-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4113434-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041134346", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4113434-5", "source": "GND"}], "variant_access_point": ["Hormonale Regulation", "Hormonelle Regulation", "Hormonregulation", "Innersekretorische Regulation", "Hormonsystem"], "authorized_access_point": "Endokrine Regulation"} 1 +2024-09-10 15:45:15.734087 2024-09-10 15:45:15.7341 46155dbb-0ac2-46b1-9aa7-d4c5e7f515b9 {"md5": "6ecd23261c9c1882e9ca29eca8d5b123", "pid": "041133889", "note": [{"label": ["Das Grundgesetz (Artikel 14) sowie die Verfassungen der Länder in Deutschland enthalten Eigentumsgarantien."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4113388-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4113388-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041133889", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4113388-2", "source": "GND"}], "variant_access_point": ["Eigentumsfreiheit", "Eigentumsgrundrecht"], "authorized_access_point": "Eigentumsgarantie"} 1 +2024-09-10 15:45:15.839543 2024-09-10 15:45:15.839556 65190a17-d478-4823-afd6-484a8e89f455 {"md5": "d02b2fff5eaf4eba5f154e89db51c2ad", "pid": "041125002", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bauwerk"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)97053146X", "source": "GND"}, {"type": "bf:Nbn", "value": "10035178", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10035178"}], "authorized_access_point": "Altbau"}], "identifier": "http://d-nb.info/gnd/4112500-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4112500-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041125002", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4112500-9", "source": "GND"}], "authorized_access_point": "Altbau"} 1 +2024-09-10 15:45:15.947931 2024-09-10 15:45:15.947942 13462e33-64d1-43bf-bb5c-441fb0d2d233 {"md5": "0f0b6fcd462c5a2f5865b04f33fcc837", "pid": "041067940", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4106794-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4106794-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041067940", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4106794-0", "source": "GND"}], "authorized_access_point": "Schwedisch-norwegische Union"} 1 +2024-09-10 15:45:16.802706 2024-09-10 15:45:16.802717 192de8bb-f4f5-464c-9884-e3ab926a8177 {"md5": "c81fe000428a4b69ad7df54f590f5f04", "pid": "040737888", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134089090", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85019945", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85019945"}], "authorized_access_point": "Capital market"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134089090", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11996016", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11996016j"}], "authorized_access_point": "Marché financier"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966818679", "source": "GND"}, {"type": "bf:Nbn", "value": "11433-0", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/11433-0"}], "authorized_access_point": "Kreditmarkt"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970549962", "source": "GND"}, {"type": "bf:Nbn", "value": "10034971", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10034971"}], "authorized_access_point": "Finanzmarkt"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970566425", "source": "GND"}, {"type": "bf:Nbn", "value": "10044823", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10044823"}], "authorized_access_point": "Kreditmarkt"}], "identifier": "http://d-nb.info/gnd/4073788-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4073788-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040737888", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4073788-3", "source": "GND"}], "variant_access_point": ["Finanzmarkt"], "authorized_access_point": "Kreditmarkt"} 1 +2024-09-10 15:45:16.047314 2024-09-10 15:45:16.047318 288adcc9-825a-4ed3-9dde-0447080e2ebc {"md5": "d0c93c4ae12d7c85833b5e4bb9aca288", "pid": "040785947", "note": [{"label": ["Nur benutzt für die Bewertung des Gesamtunternehmens. Für die Bewertung einzelner Bereiche oder Gegenstände verknüpfe mit dem jeweils zutreffenden SW."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bewertung"}], "related": [{"authorized_access_point": "Bonität"}, {"authorized_access_point": "Fairness Opinion"}, {"authorized_access_point": "Due Diligence"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133973310", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85018291", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85018291"}], "authorized_access_point": "Business enterprises - Valuation"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133973329", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85032956", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85032956"}], "authorized_access_point": "Corporations - Valuation"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133973310", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11950175", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119501752"}], "authorized_access_point": "Entreprises - Évaluation"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1299908144", "source": "GND"}, {"type": "bf:Nbn", "value": "XX568310", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX568310"}], "authorized_access_point": "Empresas - Valoración"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)967010810", "source": "GND"}, {"type": "bf:Nbn", "value": "12438-6", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/12438-6"}], "authorized_access_point": "Unternehmensbewertung"}], "identifier": "http://d-nb.info/gnd/4078594-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4078594-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040785947", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4078594-4", "source": "GND"}], "variant_access_point": ["Bewertung", "Unternehmenswert"], "authorized_access_point": "Unternehmensbewertung"} 1 +2024-09-10 15:45:16.1395 2024-09-10 15:45:16.139511 c061334a-bb61-43ef-a974-79288431ff51 {"md5": "2bb9fc5dfe8e536d9d91d2e803eeef7e", "pid": "04077984X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gebetbuch"}], "related": [{"authorized_access_point": "Brevier"}, {"authorized_access_point": "Horologion"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113361633X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85062530", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85062530"}], "authorized_access_point": "Books of hours"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113361633X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13553869", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13553869c"}], "authorized_access_point": "Livres d'heures"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)125432996X", "source": "GND"}, {"type": "bf:Nbn", "value": "5917", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/5917"}], "authorized_access_point": "Libri d'ore"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254491937", "source": "GND"}, {"type": "bf:Nbn", "value": "XX524632", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX524632"}], "authorized_access_point": "Libros de horas"}], "identifier": "http://d-nb.info/gnd/4077984-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4077984-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04077984X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4077984-1", "source": "GND"}], "variant_access_point": ["Livre d'heures", "Horarium", "Stundenbücher"], "authorized_access_point": "Stundenbuch"} 1 +2024-09-10 15:45:16.25123 2024-09-10 15:45:16.251246 5f8e54e1-ac52-4211-a8ee-9cff1f75c934 {"md5": "93888657e9d7dfc44856a793e8a3fb11", "pid": "040777820", "note": [{"label": ["Staatshaftung bezeichnet die Einstandspflicht eines Hoheitsträgers für die Folgen seines Handelns. Im engeren Sinne umfasst die Benennung nur hoheitliches und rechtswidriges Handeln; im weiteren Sinne bezieht sie sich auch auf privatrechtliches und rechtmäßiges Handeln."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Allgemeines Verwaltungsrecht"}, {"authorized_access_point": "Haftung"}], "related": [{"authorized_access_point": "Amtshaftung"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970593023", "source": "GND"}, {"type": "bf:Nbn", "value": "10058963", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10058963"}], "authorized_access_point": "Staatshaftung"}], "identifier": "http://d-nb.info/gnd/4077782-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4077782-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040777820", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4077782-0", "source": "GND"}], "variant_access_point": ["Haftung", "Staatshaftungsrecht", "Öffentlich-rechtliche Ersatzleistung", "Öffentlich-rechtliche Wiedergutmachung"], "authorized_access_point": "Staatshaftung"} 1 +2024-09-10 15:45:16.357874 2024-09-10 15:45:16.357885 fdd5bcc1-6f0a-4cbb-a11c-e16394e6ff69 {"md5": "21c655f73fc223938b65f4b7995839b7", "pid": "040776832", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Preisbildung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331580382", "source": "GND"}, {"type": "bf:Nbn", "value": "sh94005709", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh94005709"}], "authorized_access_point": "Peak-load pricing"}], "identifier": "http://d-nb.info/gnd/4077683-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4077683-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040776832", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4077683-9", "source": "GND"}], "variant_access_point": ["Peak-load-pricing", "Preisbildung", "Spitzenleistung"], "authorized_access_point": "Spitzenlast-Preisbildung"} 1 +2024-09-10 15:45:16.474148 2024-09-10 15:45:16.474157 a46d4dd7-4f06-41c8-903e-43f90bd3fead {"md5": "3305275a6d85705ac225c344a3621545", "pid": "040760669", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Therapie"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333246218", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11946047", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11946047s"}], "authorized_access_point": "Chimiothérapie"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)125433095X", "source": "GND"}, {"type": "bf:Nbn", "value": "6603", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/6603"}], "authorized_access_point": "Farmacoterapia"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254472754", "source": "GND"}, {"type": "bf:Nbn", "value": "XX538644", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX538644"}], "authorized_access_point": "Farmacoterapia"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256245534", "source": "GND"}, {"type": "bf:Nbn", "value": "2394", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_2394"}], "authorized_access_point": "drug therapy"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1241636737", "source": "GND"}, {"type": "bf:Nbn", "value": "D004358", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D004358"}], "authorized_access_point": "Drug Therapy"}], "identifier": "http://d-nb.info/gnd/4076066-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4076066-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040760669", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4076066-2", "source": "GND"}], "variant_access_point": ["Arzneimitteltherapie", "Arzneitherapie", "Medikamentöse Therapie"], "authorized_access_point": "Pharmakotherapie"} 1 +2024-09-10 15:45:16.585405 2024-09-10 15:45:16.585412 5f19879c-a576-4096-bcdd-83d08b2cc043 {"md5": "dc86f905ceebd61aa070979557f1a236", "pid": "04075121X", "note": [{"label": ["Benutzt für das Erzeugnis, zur Drucktechnik benutze Notendruck. Nach Anlage 6 RSWK 3. Aufl. auch als Formschlagwort zugelassen."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Musikalien"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134550618", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12135729", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb121357293"}], "authorized_access_point": "Musique imprimée"}], "identifier": "http://d-nb.info/gnd/4075121-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4075121-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04075121X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4075121-1", "source": "GND"}], "variant_access_point": ["Musik", "Musikausgabe", "Notendruck (Musikausgabe)"], "authorized_access_point": "Musikdruck"} 1 +2024-09-10 15:45:16.696055 2024-09-10 15:45:16.696063 d774e862-d499-40c0-abf2-80c6ba22efc7 {"md5": "f33b4f1425a467fd17e71578c1225b14", "pid": "040741117", "note": [{"label": ["Unterrichtsmedien als Hilfsmittel (RDA AH-007).", "Für Materialien, die Schulbücher ergänzen oder ersetzen, diesen gegenüber eine geringere Verbindlichkeit für die Unterrichtsgestaltung haben und spezielle Themen für eines oder mehrere Unterrichtsfächer aufbereiten; analog auch für den außerschulischen Bereich. Lehrmittel können sowohl für Lehrer wie für Schüler (Lernende) bestimmt sein. Auch für Darstellungen von Fachwissen, in denen ein anderes Fach als das des eigentlichen Zielberufs behandelt wird. Nicht für studienbegleitende Literatur, Lehrbücher und Lehrmaterialien zum Selbststudium; nicht für programmierte, interaktive Lehrmittel (verwende hierfür Lernsoftware) (RDA AH-007).", "Nicht für Studienbegleitende Lit., nicht für Lehrbücher u. -materialien zum Selbststudium; zu Lehrbuch siehe dort. Methodisch-didaktische Anleitungen ohne spezielle Materialien (z.B. Medien) erhalten keine Formangabe."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Einführung"}], "related": [{"authorized_access_point": "Aufgabensammlung"}, {"authorized_access_point": "Unterrichtstechnologie"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133683266", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85133053", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85133053"}], "authorized_access_point": "Teaching - Aids and devices"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133683266", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF119771160", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11977116n"}], "authorized_access_point": "Matériel didactique"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254365559", "source": "GND"}, {"type": "bf:Nbn", "value": "33382", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/33382"}], "authorized_access_point": "Sussidi didattici"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254455639", "source": "GND"}, {"type": "bf:Nbn", "value": "XX528420", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX528420"}], "authorized_access_point": "Material didáctico"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966834526", "source": "GND"}, {"type": "bf:Nbn", "value": "18292-6", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/18292-6"}], "authorized_access_point": "Lehrmaterial"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970568800", "source": "GND"}, {"type": "bf:Nbn", "value": "10050780", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10050780"}], "authorized_access_point": "Lehrmittel"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970595581", "source": "GND"}, {"type": "bf:Nbn", "value": "10059636", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10059636"}], "authorized_access_point": "Studienmaterial"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970599692", "source": "GND"}, {"type": "bf:Nbn", "value": "10050859", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10050859"}], "authorized_access_point": "Unterrichtsmaterial"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970599706", "source": "GND"}, {"type": "bf:Nbn", "value": "10051872", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10051872"}], "authorized_access_point": "Unterrichtsmedien"}], "identifier": "http://d-nb.info/gnd/4074111-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4074111-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040741117", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4074111-4", "source": "GND"}], "variant_access_point": ["Arbeitsmittel", "Bildungsmittel", "Lehrmaterial", "Lernmaterial", "Lernmittel", "Unterricht", "Unterricht", "Unterrichtsbeispiele", "Unterrichtsmaterial", "Unterrichtsmedien", "Unterrichtsmedium", "Unterrichtsmittel"], "authorized_access_point": "Lehrmittel"} 1 +2024-09-10 15:45:16.915188 2024-09-10 15:45:16.915197 185d25e7-d916-4226-84da-45c2043a0139 {"md5": "fb02e95b96bfa060e71145a55c0f8fd5", "pid": "040737810", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tumor"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134509650", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85019519", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85019519"}], "authorized_access_point": "Cancer - Patients"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134509650", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11931109", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119311093"}], "authorized_access_point": "Cancéreux"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133610633", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11931105", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11931105q"}], "authorized_access_point": "Cancer"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254349537", "source": "GND"}, {"type": "bf:Nbn", "value": "21132", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/21132"}], "authorized_access_point": "Cancro"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254452176", "source": "GND"}, {"type": "bf:Nbn", "value": "XX526004", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX526004"}], "authorized_access_point": "Cáncer"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1241609667", "source": "GND"}, {"type": "bf:Nbn", "value": "D009369", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D009369"}], "authorized_access_point": "Neoplasms"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)968411649", "source": "GND"}, {"type": "bf:Nbn", "value": "18899-3", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/18899-3"}], "authorized_access_point": "Krebskrankheit"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970566395", "source": "GND"}, {"type": "bf:Nbn", "value": "10049933", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10049933"}], "authorized_access_point": "Krebs"}], "identifier": "http://d-nb.info/gnd/4073781-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4073781-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040737810", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4073781-0", "source": "GND"}], "variant_access_point": ["Carcinom", "Malignom", "Maligner Tumor", "Neoplasma (Krebs)", "Karzinom", "Bösartiger Tumor", "Krebserkrankung"], "authorized_access_point": "Krebs (Medizin)"} 1 +2024-09-10 15:45:17.031404 2024-09-10 15:45:17.031414 63aba586-a284-4ab3-9f7a-46b34be2e7b3 {"md5": "bbeea1ca40b1181683bab331626c7c89", "pid": "040737063", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Grammatik"}, {"authorized_access_point": "Kontrastive Linguistik"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254369848", "source": "GND"}, {"type": "bf:Nbn", "value": "36872", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/36872"}], "authorized_access_point": "Grammatica comparata"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254511776", "source": "GND"}, {"type": "bf:Nbn", "value": "XX527548", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX527548"}], "authorized_access_point": "Gramática comparada"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113404240X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11976576", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11976576c"}], "authorized_access_point": "Grammaire comparée"}], "identifier": "http://d-nb.info/gnd/4073706-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4073706-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040737063", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4073706-8", "source": "GND"}], "variant_access_point": ["Grammatik", "Vergleichende Grammatik", "Konfrontative Grammatik"], "authorized_access_point": "Kontrastive Grammatik"} 1 +2024-09-10 15:45:17.102623 2024-09-10 15:45:17.102627 f8b807f1-512e-4359-b7e1-26e885b9b6ce {"md5": "c95fc4bf02e3fefcbce2795973ce0af1", "pid": "040717763", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Soziale Rolle"}], "related": [{"authorized_access_point": "Geschlechtsunterschied"}, {"authorized_access_point": "Gender"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133928579", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85120663", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85120663"}], "authorized_access_point": "Sex role"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133928579", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11932779", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119327795"}], "authorized_access_point": "Rôle selon le sexe"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1299901182", "source": "GND"}, {"type": "bf:Nbn", "value": "XX527889", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX527889"}], "authorized_access_point": "Rol sexual"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)96696148X", "source": "GND"}, {"type": "bf:Nbn", "value": "30047-5", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/30047-5"}], "authorized_access_point": "Geschlechterrolle"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)97055379X", "source": "GND"}, {"type": "bf:Nbn", "value": "10044127", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10044127"}], "authorized_access_point": "Geschlechtsrolle"}], "identifier": "http://d-nb.info/gnd/4071776-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4071776-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040717763", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4071776-8", "source": "GND"}], "variant_access_point": ["Geschlechtsrolle"], "authorized_access_point": "Geschlechterrolle"} 1 +2024-09-10 15:45:17.181547 2024-09-10 15:45:17.181555 73d4753e-e2db-4ebf-a1d2-b98116db1fd9 {"md5": "b9dc06095557f8b18e8b3d0d5f5d9fe3", "pid": "040717119", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Vererbung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254320245", "source": "GND"}, {"type": "bf:Nbn", "value": "1542", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/1542"}], "authorized_access_point": "Genetica vegetale"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254320229", "source": "GND"}, {"type": "bf:Nbn", "value": "1540", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/1540"}], "authorized_access_point": "Genetica"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254433902", "source": "GND"}, {"type": "bf:Nbn", "value": "XX524577", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX524577"}], "authorized_access_point": "Genética"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254433899", "source": "GND"}, {"type": "bf:Nbn", "value": "XX526352", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX526352"}], "authorized_access_point": "Genética vegetal"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256216747", "source": "GND"}, {"type": "bf:Nbn", "value": "3222", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_3222"}], "authorized_access_point": "genetics"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1012494675", "source": "GND"}, {"type": "bf:Nbn", "value": "28854-5", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/28854-5"}], "authorized_access_point": "Genetik"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970553366", "source": "GND"}, {"type": "bf:Nbn", "value": "10045017", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10045017"}], "authorized_access_point": "Genforschung"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970553331", "source": "GND"}, {"type": "bf:Nbn", "value": "10042870", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10042870"}], "authorized_access_point": "Genetik"}], "identifier": "http://d-nb.info/gnd/4071711-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4071711-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040717119", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4071711-2", "source": "GND"}], "variant_access_point": ["Allgemeine Genetik", "Erbbiologie", "Erbforschung", "Erblehre", "Vererbungslehre", "Vererbungswissenschaft", "Erblichkeitslehre"], "authorized_access_point": "Genetik"} 1 +2024-09-10 15:45:17.277907 2024-09-10 15:45:17.277919 bf735fd5-9aa3-48b3-83e1-c84cc21db0be {"md5": "749c36900a504f40d170db0ffb3ebb9d", "pid": "040715213", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Wettbewerbskontrolle"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966751345", "source": "GND"}, {"type": "bf:Nbn", "value": "10957-6", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/10957-6"}], "authorized_access_point": "Fusionskontrolle"}], "identifier": "http://d-nb.info/gnd/4071521-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4071521-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040715213", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4071521-8", "source": "GND"}], "variant_access_point": ["Konzentrationskontrolle", "Zusammenschlusskontrolle", "Fusion", "Unternehmenskonzentration", "Merger control"], "authorized_access_point": "Fusionskontrolle"} 1 +2024-09-10 15:45:17.377495 2024-09-10 15:45:17.377505 b51379ea-393c-45f7-9142-b6152b35a432 {"md5": "cdca4219577100b54d6111ee6863dbd1", "pid": "040712168", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133955533", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2008108033", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2008108033"}], "authorized_access_point": "Motion pictures - Philosophy"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254428917", "source": "GND"}, {"type": "bf:Nbn", "value": "XX4430093", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX4430093"}], "authorized_access_point": "Cine - Filosofía"}], "identifier": "http://d-nb.info/gnd/4071216-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4071216-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040712168", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4071216-3", "source": "GND"}], "variant_access_point": ["Film"], "authorized_access_point": "Filmtheorie"} 1 +2024-09-10 15:45:17.469292 2024-09-10 15:45:17.469304 95ebb740-30ec-4e5d-9f62-cfb86f0fba45 {"md5": "8cbc3a0220a2cbc1978b04e1799b79cc", "pid": "040709248", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Beweismittel"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113393370X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85034045", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85034045"}], "authorized_access_point": "Criminal investigation"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113393370X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11934170", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11934170w"}], "authorized_access_point": "Enquêtes criminelles"}], "identifier": "http://d-nb.info/gnd/4070924-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4070924-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040709248", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4070924-3", "source": "GND"}], "variant_access_point": ["Polizeiliche Ermittlungstätigkeit", "Ermitteln", "Ermittlungstätigkeit", "Ermittlungen"], "authorized_access_point": "Ermittlung"} 1 +2024-09-10 15:45:17.562981 2024-09-10 15:45:17.562989 f412c20d-2a24-47b9-926a-82e2fbe9fb92 {"md5": "8f75d397238bee019b85496f9f2b7ae7", "pid": "040707385", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schalenwild"}, {"authorized_access_point": "Hirsche"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134206968", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85087175", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85087175"}], "authorized_access_point": "Moose"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134206968", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16175221", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16175221b"}], "authorized_access_point": "Élan"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)125437163X", "source": "GND"}, {"type": "bf:Nbn", "value": "38252", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/38252"}], "authorized_access_point": "Alci"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256207454", "source": "GND"}, {"type": "bf:Nbn", "value": "2536", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_2536"}], "authorized_access_point": "elks"}], "identifier": "http://d-nb.info/gnd/4070738-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4070738-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040707385", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4070738-6", "source": "GND"}], "variant_access_point": ["Alces alces"], "authorized_access_point": "Elch"} 1 +2024-09-10 15:45:17.674992 2024-09-10 15:45:17.675005 626326f5-ea02-482e-bfe8-093068af3cd1 {"md5": "dede4a19e5708d3801fefe8fdf937144", "pid": "040706079", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Jaina"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133650783", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85069282", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85069282"}], "authorized_access_point": "Jainism"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133650783", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11953383", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11953383z"}], "authorized_access_point": "Jaïnisme"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254333932", "source": "GND"}, {"type": "bf:Nbn", "value": "8777", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/8777"}], "authorized_access_point": "Giainismo"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254445331", "source": "GND"}, {"type": "bf:Nbn", "value": "XX542653", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX542653"}], "authorized_access_point": "Jainismo"}], "identifier": "http://d-nb.info/gnd/4070607-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4070607-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040706079", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4070607-2", "source": "GND"}], "variant_access_point": ["Dschainismus", "Dschinismus", "Jaina (Religion)", "Jinismus"], "authorized_access_point": "Jainismus"} 1 +2024-09-10 15:45:17.790925 2024-09-10 15:45:17.790934 d3a42646-5a50-45fe-bf99-3f6914e60aa9 {"md5": "3d1eae463df68c4d8e64c575388cf01b", "pid": "040705846", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Dreyfus-Aff%C3%A4re&oldid=211040560"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Politischer Skandal"}], "related": [{"authorized_access_point": "Militärgerichtsverfahren"}, {"authorized_access_point": "Antisemitismus"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133954790", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2019004577", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2019004577"}], "authorized_access_point": "Dreyfus, Alfred, 1859-1935 - Trials, litigation, etc."}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133954790", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11942701", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11942701f"}], "authorized_access_point": "Dreyfus, Affaire (1894-1906)"}], "identifier": "http://d-nb.info/gnd/4070584-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4070584-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040705846", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4070584-5", "source": "GND"}], "variant_access_point": ["Dreyfus-Affäre", "Dreyfus-Prozess"], "authorized_access_point": "Dreyfusaffäre"} 1 +2024-09-10 15:45:31.685587 2024-09-10 15:45:31.685597 5665ceb3-b126-4192-b3d5-83f8210d82eb {"md5": "9a38144ba36b8e8b28c46c04381042e0", "pid": "133603906X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifier": "http://d-nb.info/gnd/133603906X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133603906X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133603906X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133603906X", "source": "GND"}], "authorized_access_point": "Schlachtkreuzer (Motiv)"} 1 +2024-09-10 15:45:17.914516 2024-09-10 15:45:17.914527 2ca728d1-b508-4a25-95ab-b96520a24018 {"md5": "a17eb90efc8c60d3e1d7eabe1e744d3c", "pid": "040693759", "note": [{"label": ["Für Schweiz benutze Personalvorsorge"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Altersversorgung"}], "related": [{"authorized_access_point": "Personalvorsorge"}], "identifier": "http://d-nb.info/gnd/4069375-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4069375-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040693759", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4069375-2", "source": "GND"}], "variant_access_point": ["Altersversorgung", "Betriebliche Altersfürsorge", "Betriebliche Altersrente", "Betriebliche Pension", "Betriebliche Versorgungsanwartschaft", "Betriebliches Ruhegeld", "Betriebspension", "Betriebsrente", "Ruhegehalt", "Ruhegeld", "Altersversorgung", "Zweite Säule (Altersversorgung)", "Company pension"], "authorized_access_point": "Betriebliche Altersversorgung"} 1 +2024-09-10 15:45:18.021013 2024-09-10 15:45:18.021024 f51325b1-9f25-40f1-b946-843e71d70871 {"md5": "f5542c0e53b15367bf808d519e56c416", "pid": "040693538", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Züchtungstechnik"}], "related": [{"authorized_access_point": "Besamungsstation"}, {"authorized_access_point": "Insemination"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332731503", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11965301", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11965301g"}], "authorized_access_point": "Insémination artificielle"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254343601", "source": "GND"}, {"type": "bf:Nbn", "value": "17023", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/17023"}], "authorized_access_point": "Fecondazione artificiale"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254410945", "source": "GND"}, {"type": "bf:Nbn", "value": "XX549870", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX549870"}], "authorized_access_point": "Inseminación artificial"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256196061", "source": "GND"}, {"type": "bf:Nbn", "value": "638", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_638"}], "authorized_access_point": "artificial insemination"}], "identifier": "http://d-nb.info/gnd/4069353-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4069353-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040693538", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4069353-3", "source": "GND"}], "variant_access_point": ["Künstliche Besamung"], "authorized_access_point": "Besamung"} 1 +2024-09-10 15:45:18.118382 2024-09-10 15:45:18.118385 3ca28bbc-a1fe-43b9-a5d5-5aa933c09c54 {"md5": "283bb7b385c5be57baafb8f8345850cd", "pid": "040687333", "note": [{"label": ["Benutzt für pathologische Varianten in der Medizin"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Missbildung"}, {"authorized_access_point": "Behinderung"}, {"authorized_access_point": "Normvariante"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134617119", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11953069", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11953069k"}], "authorized_access_point": "Malformations"}], "identifier": "http://d-nb.info/gnd/4068733-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4068733-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040687333", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4068733-8", "source": "GND"}], "variant_access_point": ["Abart (Medizin)", "Variation (Medizin)", "Variante (Medizin)"], "authorized_access_point": "Anomalie (Medizin)"} 1 +2024-09-10 15:45:18.196829 2024-09-10 15:45:18.196838 0ed4f968-de26-49ef-9d2a-5df756c20564 {"md5": "5465476af9b018298d8ee2b3f50bb800", "pid": "040685969", "note": [{"label": ["Für die Altersgruppe ab ca. 60 Jahre und in Verbindung mit dem Schlagwort Lebensführung und dem Formschlagwort Ratgeber wird Alter bevorzugt."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Altersphysiologie"}, {"authorized_access_point": "Gerontologie"}, {"authorized_access_point": "Lebensalter"}, {"authorized_access_point": "Biologisches Alter"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332657001", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11940843", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119408435"}], "authorized_access_point": "Vieillissement"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254403310", "source": "GND"}, {"type": "bf:Nbn", "value": "XX528051", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX528051"}], "authorized_access_point": "Envejecimiento"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)125619008X", "source": "GND"}, {"type": "bf:Nbn", "value": "192", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_192"}], "authorized_access_point": "ageing"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1282195956", "source": "GND"}, {"type": "bf:Nbn", "value": "D000375", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D000375"}], "authorized_access_point": "Aging"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970531648", "source": "GND"}, {"type": "bf:Nbn", "value": "10035269", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10035269"}], "authorized_access_point": "Altern"}], "identifier": "http://d-nb.info/gnd/4068596-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4068596-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040685969", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4068596-2", "source": "GND"}], "variant_access_point": ["Alterungsprozess", "Altwerden", "Seneszenz", "Alterungsprozess (Physiologie)", "Alterung (Physiologie)"], "authorized_access_point": "Altern"} 1 +2024-09-10 15:45:18.309684 2024-09-10 15:45:18.30969 bc3373b6-9f7c-472f-9351-8c3a4008911d {"md5": "5294c0d284d9435cbcfda51045c9f8c8", "pid": "040677036", "note": [{"label": ["Einzelne Organisationen der Zeugen Jehovas werden als Körperschaften angesetzt"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133622674", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85069870", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85069870"}], "authorized_access_point": "Jehovah's Witnesses"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133622674", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11934681", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11934681x"}], "authorized_access_point": "Témoins de Jéhovah"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254359044", "source": "GND"}, {"type": "bf:Nbn", "value": "27904", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/27904"}], "authorized_access_point": "Testimoni di Geova"}], "identifier": "http://d-nb.info/gnd/4067703-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4067703-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040677036", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4067703-5", "source": "GND"}], "variant_access_point": ["Bibelforscher", "Jehovas Zeugen", "Russelliten", "Ernste Bibelforscher"], "authorized_access_point": "Zeugen Jehovas"} 1 +2024-09-10 15:45:19.113152 2024-09-10 15:45:19.113163 eb7515ad-7bcd-420f-b0d1-43a0d9f8a2bd {"md5": "328da8625fb033ca5cf1a67a5974a263", "pid": "040641805", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134745354", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11976091", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11976091w"}], "authorized_access_point": "Traitement thermique"}], "identifier": "http://d-nb.info/gnd/4064180-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4064180-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040641805", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4064180-6", "source": "GND"}], "variant_access_point": ["Warmbehandlung"], "authorized_access_point": "Wärmebehandlung"} 1 +2024-09-10 15:45:18.43963 2024-09-10 15:45:18.439647 a338477f-d21a-4528-ad03-9f92dd51c9d0 {"md5": "1a86bb01c893caff3c1e1c129557beee", "pid": "04067701X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Person"}], "related": [{"authorized_access_point": "Gewährsmann"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334211922", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85147165", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85147165"}], "authorized_access_point": "Witnesses"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334211922", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11975370", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11975370h"}], "authorized_access_point": "Témoins"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1299918964", "source": "GND"}, {"type": "bf:Nbn", "value": "XX532019", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX532019"}], "authorized_access_point": "Testigos"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970606583", "source": "GND"}, {"type": "bf:Nbn", "value": "10062915", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10062915"}], "authorized_access_point": "Zeuge"}], "identifier": "http://d-nb.info/gnd/4067701-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4067701-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04067701X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4067701-1", "source": "GND"}], "authorized_access_point": "Zeuge"} 1 +2024-09-10 15:45:18.552812 2024-09-10 15:45:18.552824 6cfe398f-6804-473b-bc36-7a78ac773164 {"md5": "866e57e71edaedd084d985800ea53604", "pid": "040664643", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kriminalität"}], "related": [{"authorized_access_point": "Wirtschaftsdelikt"}, {"authorized_access_point": "Wirtschaftsstrafrecht"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133158163X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85146466", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85146466"}], "authorized_access_point": "White collar crimes"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133158163X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13320552", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb133205524"}], "authorized_access_point": "Criminalité des affaires"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)967041279", "source": "GND"}, {"type": "bf:Nbn", "value": "16201-3", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/16201-3"}], "authorized_access_point": "Wirtschaftskriminalität"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970604912", "source": "GND"}, {"type": "bf:Nbn", "value": "10049794", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10049794"}], "authorized_access_point": "Wirtschaftskriminalität"}], "identifier": "http://d-nb.info/gnd/4066464-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4066464-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040664643", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4066464-8", "source": "GND"}], "variant_access_point": ["White-collar crime"], "authorized_access_point": "Wirtschaftskriminalität"} 1 +2024-09-10 15:45:18.653575 2024-09-10 15:45:18.653584 f5262013-2ae3-45f7-9aac-c8a55e34982f {"md5": "fea24c70c2e2ac6898690bbc17a1ae1c", "pid": "040664244", "note": [{"label": ["Wertmäßig erfassbare Größe zur Abbildung der Beziehung zwischen Handlungsergebnis und dem dafür erforderlichen Mitteleinsatz (bewertetes Verhältnis von Ertrag und Aufwand)."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Effizienz"}, {"authorized_access_point": "Effektivität"}, {"authorized_access_point": "Unwirtschaftlichkeit"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)967040701", "source": "GND"}, {"type": "bf:Nbn", "value": "12073-6", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/12073-6"}], "authorized_access_point": "Wirtschaftlichkeit"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)97060470X", "source": "GND"}, {"type": "bf:Nbn", "value": "10062371", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10062371"}], "authorized_access_point": "Wirtschaftlichkeit"}], "identifier": "http://d-nb.info/gnd/4066424-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4066424-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040664244", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4066424-7", "source": "GND"}], "authorized_access_point": "Wirtschaftlichkeit"} 1 +2024-09-10 15:45:18.766306 2024-09-10 15:45:18.766313 fc52c039-330e-436d-b943-f9ddf34bb6c7 {"md5": "92b5cc5a26b7133a9290c5400798da9a", "pid": "040664104", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Integration"}], "related": [{"authorized_access_point": "Integration (Internationale Politik)"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133972225", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85067394", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85067394"}], "authorized_access_point": "International economic integration"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133972225", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11949961", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11949961j"}], "authorized_access_point": "Intégration économique internationale"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113412998X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12045383", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12045383t"}], "authorized_access_point": "Intégration économique"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)967041201", "source": "GND"}, {"type": "bf:Nbn", "value": "10626-1", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/10626-1"}], "authorized_access_point": "Wirtschaftsintegration"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970604653", "source": "GND"}, {"type": "bf:Nbn", "value": "10038303", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10038303"}], "authorized_access_point": "wirtschaftliche Integration"}], "identifier": "http://d-nb.info/gnd/4066410-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4066410-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040664104", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4066410-7", "source": "GND"}], "variant_access_point": ["Integration (Wirtschaft)", "Internationale wirtschaftliche Integration", "Regionale wirtschaftliche Integration", "Wirtschaft", "Wirtschaftsintegration", "Ökonomische Integration", "Regionalismus"], "authorized_access_point": "Wirtschaftliche Integration"} 1 +2024-09-10 15:45:18.887807 2024-09-10 15:45:18.887825 aa762158-7000-4150-a9dd-e002631d67f7 {"md5": "fc0ad2c455278f0bf1832aff6a1a5756", "pid": "040658864", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gruppe (Mathematik)"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333591713", "source": "GND"}, {"type": "bf:Nbn", "value": "sh95002984", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh95002984"}], "authorized_access_point": "Weyl groups"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333591713", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16561878", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16561878g"}], "authorized_access_point": "Groupes de Weyl"}], "identifier": "http://d-nb.info/gnd/4065886-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4065886-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040658864", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4065886-7", "source": "GND"}], "variant_access_point": ["Weylsche Gruppe"], "authorized_access_point": "Weyl-Gruppe"} 1 +2024-09-10 15:45:19.003994 2024-09-10 15:45:19.004006 33cb12dc-b8e1-4eba-9629-733efe331bea {"md5": "143e78be1f41324b58aee5c6bddd5e6c", "pid": "040654648", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Verantwortung"}], "identifier": "http://d-nb.info/gnd/4065464-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4065464-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040654648", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4065464-3", "source": "GND"}], "authorized_access_point": "Weltverantwortung"} 1 +2024-09-10 15:45:19.217128 2024-09-10 15:45:19.217133 db3211b8-21fd-4fef-a8c0-01ea7c6421ca {"md5": "0ba1c35ef38c711c9540c303a145271e", "pid": "040633306", "note": [{"label": ["Ausbildungsberuf", "Für den Mittleren Dienst allgemein verknüpfe Verwaltungsdienst und Mittlerer Dienst."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fachangestellter"}], "related": [{"authorized_access_point": "Weibliche Verwaltungsfachangestellte"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134769717", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16015424", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16015424h"}], "authorized_access_point": "Fonction publique - Carrières"}], "identifier": "http://d-nb.info/gnd/4063330-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4063330-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040633306", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4063330-5", "source": "GND"}], "authorized_access_point": "Verwaltungsfachangestellter"} 1 +2024-09-10 15:45:19.307047 2024-09-10 15:45:19.307056 22ebd8b3-d61e-4452-a6a0-3526c5d14157 {"md5": "c4d2fb0f747deaafc1b8b7e7b0f6f269", "pid": "040628604", "note": [{"label": ["SW Mensch ist pleonastisch, mit Tieren wird verknüpft"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254345035", "source": "GND"}, {"type": "bf:Nbn", "value": "17992", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/17992"}], "authorized_access_point": "Etologia"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254499482", "source": "GND"}, {"type": "bf:Nbn", "value": "XX559474", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX559474"}], "authorized_access_point": "Animales - Conducta"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1299899013", "source": "GND"}, {"type": "bf:Nbn", "value": "XX525655", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX525655"}], "authorized_access_point": "Conducta"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256267902", "source": "GND"}, {"type": "bf:Nbn", "value": "868", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_868"}], "authorized_access_point": "behaviour"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)967018226", "source": "GND"}, {"type": "bf:Nbn", "value": "18859-1", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/18859-1"}], "authorized_access_point": "Verhalten"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)97060064X", "source": "GND"}, {"type": "bf:Nbn", "value": "10034530", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10034530"}], "authorized_access_point": "Verhalten"}], "identifier": "http://d-nb.info/gnd/4062860-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4062860-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040628604", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4062860-7", "source": "GND"}], "variant_access_point": ["Mensch", "Menschliches Verhalten"], "authorized_access_point": "Verhalten"} 1 +2024-09-10 15:45:19.416049 2024-09-10 15:45:19.416062 107cb8b7-8839-4b79-821e-7ca3993aed99 {"md5": "4fd03f074a30d760b47a5fa0e4b1e8b8", "pid": "040628094", "note": [{"label": ["Verknüpfe mit Anwendungsgebiet (z. B. Literatur); bei Einzelwerken sowie bei mehreren Werken eines Autors oder Komponisten verknüpfe mit s Film oder ggf. mit engeren Schlagwörtern (s Musikfilm etc.)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Film"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133610765", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85048224", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85048224"}], "authorized_access_point": "Film adaptations"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133986668", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85133480", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85133480"}], "authorized_access_point": "Television adaptations"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133610765", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11930825", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119308251"}], "authorized_access_point": "Adaptations cinématographiques"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133986668", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11955258", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11955258z"}], "authorized_access_point": "Adaptations télévisées"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254322396", "source": "GND"}, {"type": "bf:Nbn", "value": "2287", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/2287"}], "authorized_access_point": "Riduzioni cinematografiche"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254499393", "source": "GND"}, {"type": "bf:Nbn", "value": "XX538457", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX538457"}], "authorized_access_point": "Adaptaciones cinematográficas"}], "identifier": "http://d-nb.info/gnd/4062809-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4062809-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040628094", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4062809-7", "source": "GND"}], "authorized_access_point": "Verfilmung"} 1 +2024-09-10 15:45:19.539883 2024-09-10 15:45:19.539892 5e2aa948-04e0-4cc5-a10d-92416175ae71 {"md5": "b2420230092192545967bf9267edd8c1", "pid": "040621278", "note": [{"label": ["Der Begriff umfasst das Urheberrecht im objektiven Sinne (Gesamtheit der Rechtsnormen, die das Verhältnis des Urhebers zu seinem Werk regeln) und das Urheberrecht im subjektiven Sinne (absolutes Recht des Urhebers an seinem Werk)."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Immaterialgüterrecht"}], "related": [{"authorized_access_point": "Leistungsschutzrecht"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133625290", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85032446", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85032446"}], "authorized_access_point": "Copyright"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133625290", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13318464", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13318464k"}], "authorized_access_point": "Droit d'auteur"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)967014727", "source": "GND"}, {"type": "bf:Nbn", "value": "16037-4", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/16037-4"}], "authorized_access_point": "Urheberrecht"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970599846", "source": "GND"}, {"type": "bf:Nbn", "value": "10040422", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10040422"}], "authorized_access_point": "Urheberrecht"}], "identifier": "http://d-nb.info/gnd/4062127-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4062127-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040621278", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4062127-3", "source": "GND"}], "variant_access_point": ["Copyright", "Urheberrechtsschutz", "Urheberschutz"], "authorized_access_point": "Urheberrecht"} 1 +2024-09-10 15:45:19.654683 2024-09-10 15:45:19.654696 f18545c3-988a-4bcb-96b1-3a5d5a321962 {"md5": "2fab1dc4f676e35fc264c05a245b508f", "pid": "040617203", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332876544", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2008105294", "source": "DLC"}, {"type": "uri", "value": "https://id.loc.gov/authorities/subjects/sh2008105294"}], "authorized_access_point": "Germans--Hungary"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332876544", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16173217", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16173217m"}], "authorized_access_point": "Allemands de Hongrie"}], "identifier": "http://d-nb.info/gnd/4061720-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4061720-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040617203", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4061720-8", "source": "GND"}], "variant_access_point": ["Deutsche"], "authorized_access_point": "Ungarndeutsche"} 1 +2024-09-10 15:45:19.752947 2024-09-10 15:45:19.752962 bdfbd40b-9f6a-4c6d-b37c-43371594e9c7 {"md5": "bf5ae6f72a9714dc21093a43f61f5af6", "pid": "040598160", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Belastung"}], "related": [{"authorized_access_point": "Temperaturverhalten"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113395345X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85134764", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85134764"}], "authorized_access_point": "Thermal stresses"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113395345X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11942174", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119421740"}], "authorized_access_point": "Contraintes thermiques"}], "identifier": "http://d-nb.info/gnd/4059816-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4059816-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040598160", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4059816-0", "source": "GND"}], "variant_access_point": ["Wärmebelastung", "Temperaturbelastung", "Temperaturbeanspruchung", "Temperatur", "Temperaturzwang"], "authorized_access_point": "Thermische Belastung"} 1 +2024-09-10 15:45:19.851933 2024-09-10 15:45:19.851938 e8a79089-2e82-42c0-baf1-11bb9daea585 {"md5": "2ec358f8eb05cdc29f0f1e17b174939f", "pid": "040596648", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Textlinguistik"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134567472", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85077490", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85077490"}], "authorized_access_point": "Literary form"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134567472", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11948071", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119480714"}], "authorized_access_point": "Genres littéraires"}], "identifier": "http://d-nb.info/gnd/4059664-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4059664-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040596648", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4059664-3", "source": "GND"}], "variant_access_point": ["Textart", "Texttyp"], "authorized_access_point": "Textsorte"} 1 +2024-09-10 15:45:19.954124 2024-09-10 15:45:19.954136 d49e14d7-c5eb-408a-88a9-b379a2760a39 {"md5": "c52d3cdecf36c0cfd3c9b4cf6d70b6c5", "pid": "04059596X", "note": [{"label": ["Als Formschlagwort nur bei lokaler Anwendung für die Erschließung mundartl. Texte (RSWK § 762,9) sowie für Erschließung schöner Literatur, von Kinder- und Jugendliteratur sowie von Altbeständen mit Gattungsbegriffen. Als Sach-SW z. B. benutzt für sprachdidakt. verwendete Texte; für linguist. Untersuchungen verknüpfe mit \\"Textsorte\\""], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134039182", "source": "GND"}, {"type": "bf:Nbn", "value": "sh99001271", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh99001271"}], "authorized_access_point": "Texts"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134039182", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11975991", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119759914"}], "authorized_access_point": "Textes"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970597525", "source": "GND"}, {"type": "bf:Nbn", "value": "10060183", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10060183"}], "authorized_access_point": "Text"}], "identifier": "http://d-nb.info/gnd/4059596-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4059596-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04059596X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4059596-1", "source": "GND"}], "authorized_access_point": "Text"} 1 +2024-09-10 15:45:20.071525 2024-09-10 15:45:20.071538 4ef796b0-78b6-4759-9f88-bef1166e8ce6 {"md5": "67060dafafc8b9fb1cc7d5198bd63416", "pid": "040581780", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Männerbund"}, {"authorized_access_point": "Studentenvereinigung"}], "related": [{"authorized_access_point": "Couleurstudent"}, {"authorized_access_point": "Damenverbindung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134062133", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11980097", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11980097q"}], "authorized_access_point": "Étudiants - Associations"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970595395", "source": "GND"}, {"type": "bf:Nbn", "value": "10059565", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10059565"}], "authorized_access_point": "Studentenverbindung"}], "identifier": "http://d-nb.info/gnd/4058178-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4058178-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040581780", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4058178-0", "source": "GND"}], "variant_access_point": ["Korporation (Student)", "Korporierter", "Studentenkorporation", "Studentische Korporation", "Studentische Verbindung", "Verbindung (Student)", "Hochschulverbindung", "Hochschülerverbindung", "Akademische Verbindung"], "authorized_access_point": "Studentenverbindung"} 1 +2024-09-10 15:45:20.182926 2024-09-10 15:45:20.18293 086da715-0edf-418a-87fc-c80513e610d8 {"md5": "3980c2bdf46cd556c61db5844747384d", "pid": "040579123", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Stra%C3%9Fennetz&oldid=240157115"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Straße"}, {"authorized_access_point": "Verkehrsnetz"}, {"authorized_access_point": "Verkehrsträger"}], "related": [{"authorized_access_point": "Wegenetz"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1290456496", "source": "GND"}, {"type": "bf:Nbn", "value": "30329-2", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/30329-2"}], "authorized_access_point": "Straßennetz"}], "identifier": "http://d-nb.info/gnd/4057912-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4057912-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040579123", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4057912-8", "source": "GND"}], "authorized_access_point": "Straßennetz"} 1 +2024-09-10 15:45:20.2421 2024-09-10 15:45:20.242104 fa132987-4f09-4fd7-b6dd-8c55ddbbcfec {"md5": "62d3dcdb86cb0a3c7b02f32da71a3692", "pid": "040576337", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Statistisches Modell"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331612225", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2005004376", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2005004376"}], "authorized_access_point": "Stochastic models"}], "identifier": "http://d-nb.info/gnd/4057633-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4057633-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040576337", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4057633-4", "source": "GND"}], "variant_access_point": ["Probabilistisches Modell", "Wahrscheinlichkeitsmodell"], "authorized_access_point": "Stochastisches Modell"} 1 +2024-09-10 15:45:20.55575 2024-09-10 15:45:20.555765 bf7fc527-ac07-423f-9bc5-73cff81a3b01 {"md5": "9b9da5764b25ef87ec5b564cdf4067aa", "pid": "040562182", "note": [{"label": ["Satz von Gegenständen, der für die Bedienung nach vorgeschriebenen oder impliziten Regeln für Unterricht, Unterhaltung oder Therapie konzipiert ist (RDA AH-007).", "Auch für Computerspiele, nicht für Planspiele (RDA AH-007)."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Spielwissenschaft"}, {"authorized_access_point": "Spielgerät"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254489150", "source": "GND"}, {"type": "bf:Nbn", "value": "XX524861", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX524861"}], "authorized_access_point": "Juegos"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1012432467", "source": "GND"}, {"type": "bf:Nbn", "value": "27571-1", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/27571-1"}], "authorized_access_point": "Spiel"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)97059223X", "source": "GND"}, {"type": "bf:Nbn", "value": "10045837", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10045837"}], "authorized_access_point": "Spiel"}], "identifier": "http://d-nb.info/gnd/4056218-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4056218-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040562182", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4056218-9", "source": "GND"}], "variant_access_point": ["Spielen", "Spiele"], "authorized_access_point": "Spiel"} 1 +2024-09-10 15:45:20.666832 2024-09-10 15:45:20.666843 a3e938cf-51fb-4127-9732-29a057a63c14 {"md5": "b935fa0981325194d45b5236c3e25f48", "pid": "040539644", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schadstoffbelastung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134715978", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2008105554", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2008105554"}], "authorized_access_point": "Heavy metals - Environmental aspects"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134043589", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2018002960", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2018002960"}], "authorized_access_point": "Heavy metal content"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134043589", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11976797", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11976797w"}], "authorized_access_point": "Teneur en métaux lourds"}], "identifier": "http://d-nb.info/gnd/4053964-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4053964-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040539644", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4053964-7", "source": "GND"}], "variant_access_point": ["Schwermetall"], "authorized_access_point": "Schwermetallbelastung"} 1 +2024-09-10 15:45:20.775335 2024-09-10 15:45:20.775346 74ee001a-390d-4bdb-bf31-de34c06ef900 {"md5": "9ad1104903c80e205a298f035855998f", "pid": "04053376X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Beurteilung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134729618", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85129308", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85129308"}], "authorized_access_point": "Students - Rating of"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134729618", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF15085667", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb15085667n"}], "authorized_access_point": "Élèves - Évaluation"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970568762", "source": "GND"}, {"type": "bf:Nbn", "value": "10050838", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10050838"}], "authorized_access_point": "Lehrerurteil"}], "identifier": "http://d-nb.info/gnd/4053376-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4053376-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04053376X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4053376-1", "source": "GND"}], "variant_access_point": ["Beurteilung", "Beurteilung", "Lehrer", "Lehrer", "Lehrerurteil", "Schulbeurteilung"], "authorized_access_point": "Schülerbeurteilung"} 1 +2024-09-10 15:45:20.900677 2024-09-10 15:45:20.900688 5a2bf5cf-8e92-4401-bea1-596caf8269b1 {"md5": "4e168a379c43b5814cd73fa77271a083", "pid": "040515842", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Einsatzfahrzeug"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133685951", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11978147", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119781475"}], "authorized_access_point": "Ambulances"}], "identifier": "http://d-nb.info/gnd/4051584-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4051584-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040515842", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4051584-9", "source": "GND"}], "variant_access_point": ["Krankenwagen", "Notarztwagen", "Rettungsfahrzeug", "Sanitätsfahrzeug"], "authorized_access_point": "Rettungswagen"} 1 +2024-09-10 15:45:22.901859 2024-09-10 15:45:22.901869 ade3e9a6-7f0b-4147-91c8-5fd77d51396c {"md5": "8b67e4364ab08d8cd9c9d2d44c7585ed", "pid": "040354415", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Lektüre"}, {"authorized_access_point": "Leserin"}, {"authorized_access_point": "Lesen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134807252", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85015758", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85015758"}], "authorized_access_point": "Books and reading"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332421776", "source": "GND"}, {"type": "bf:Nbn", "value": "sh99004859", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh99004859"}], "authorized_access_point": "Books and reading"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134807252", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13318354", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb133183540"}], "authorized_access_point": "Livres et lecture"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)125436207X", "source": "GND"}, {"type": "bf:Nbn", "value": "30781", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/30781"}], "authorized_access_point": "Lettori"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970569491", "source": "GND"}, {"type": "bf:Nbn", "value": "10051152", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10051152"}], "authorized_access_point": "Leser"}], "identifier": "http://d-nb.info/gnd/4035441-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4035441-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040354415", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4035441-6", "source": "GND"}], "variant_access_point": ["Lesepublikum", "Leserschaft"], "authorized_access_point": "Leser"} 1 +2024-09-10 15:45:21.031117 2024-09-10 15:45:21.031125 99d3a3a4-708e-4cb1-ad61-87f0c71ab673 {"md5": "9420156240fd1b23791a6b116f96b1dc", "pid": "040490122", "note": [{"label": ["Einzelne Regierungen werden nach § 614 angesetzt. Für die Behandlung mehrer Regierungen in Bundesstaaten verknüpfe den jeweiligen Bundesstaat mit der Bezeichnung für die betr. Gliedstaaten und dem Sachschlagwort Regierung, z. B. Deutschland; Bundesland; Regierung."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Regierungsfähigkeit"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134039077", "source": "GND"}, {"type": "bf:Nbn", "value": "sh00005941", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh00005941"}], "authorized_access_point": "Government"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134039077", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11975971", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11975971h"}], "authorized_access_point": "Gouvernement"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134495862", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13319146", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb133191462"}], "authorized_access_point": "Gouvernement (science politique)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134495870", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13319365", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13319365w"}], "authorized_access_point": "Politique publique"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256250546", "source": "GND"}, {"type": "bf:Nbn", "value": "11230", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_11230"}], "authorized_access_point": "government"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966937651", "source": "GND"}, {"type": "bf:Nbn", "value": "16329-5", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/16329-5"}], "authorized_access_point": "Regierung"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970584970", "source": "GND"}, {"type": "bf:Nbn", "value": "10040090", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10040090"}], "authorized_access_point": "Regierung"}], "identifier": "http://d-nb.info/gnd/4049012-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4049012-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040490122", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4049012-9", "source": "GND"}], "variant_access_point": ["Kabinett", "Ministerrat", "Staatsführung", "Regierungspolitik", "Regierungen"], "authorized_access_point": "Regierung"} 1 +2024-09-10 15:45:21.153514 2024-09-10 15:45:21.15352 ea1dbb14-75a3-4b1a-882f-9f859ee7375d {"md5": "d6b447ba2529cd1dbfba5efc342bb60d", "pid": "040475972", "note": [{"label": ["Ein Prozessvergleich ist ein nach Klageerhebung zwischen den Parteien, eventuell unter Beitritt eines Dritten, geschlossener Vergleich, der einerseits die Beendigung des Rechtsstreits und andererseits materiell-rechtliche Vereinbarungen, die über den Streitgegenstand hinausgehen können, zum Gegenstand hat."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Vergleich (Recht)"}], "identifier": "http://d-nb.info/gnd/4047597-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4047597-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040475972", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4047597-9", "source": "GND"}], "variant_access_point": ["Gerichtlicher Vergleich"], "authorized_access_point": "Prozessvergleich"} 1 +2024-09-10 15:45:21.244297 2024-09-10 15:45:21.2443 56c40aa4-1c0f-4920-9a15-6b703297691d {"md5": "0acd58bedfe6d64ef105316afb4f1f5a", "pid": "040475778", "note": [{"label": ["Ohne Homonymenzusatz nur für das Gerichtsverfahren"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Rechtsstreit"}], "related": [{"authorized_access_point": "Rechtsprechung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133608124", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85137328", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85137328"}], "authorized_access_point": "Trials"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133410185X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85077662", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85077662"}], "authorized_access_point": "Litigation"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133608124", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13319040", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13319040q"}], "authorized_access_point": "Procès"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1299899986", "source": "GND"}, {"type": "bf:Nbn", "value": "XX526521", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX526521"}], "authorized_access_point": "Procesos"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970553552", "source": "GND"}, {"type": "bf:Nbn", "value": "10045081", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10045081"}], "authorized_access_point": "Gerichtsverfahren"}], "identifier": "http://d-nb.info/gnd/4047577-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4047577-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040475778", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4047577-3", "source": "GND"}], "variant_access_point": ["Gerichtsverfahren", "Gerichtsprozess", "Prozesse"], "authorized_access_point": "Prozess"} 1 +2024-09-10 15:45:21.334716 2024-09-10 15:45:21.334725 f8be941c-4b5b-4568-a4e4-9bad452af11f {"md5": "f8da22938c956c45b7937a95b320dbab", "pid": "040471713", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Medienrecht"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133975852", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85106520", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85106520"}], "authorized_access_point": "Press law"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133975852", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11951060", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119510600"}], "authorized_access_point": "Presse - Droit"}], "identifier": "http://d-nb.info/gnd/4047171-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4047171-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040471713", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4047171-8", "source": "GND"}], "variant_access_point": ["Preßrecht"], "authorized_access_point": "Presserecht"} 1 +2024-09-10 15:45:21.439253 2024-09-10 15:45:21.439262 98cb76b1-fbe5-44b9-b458-d9eb211c1718 {"md5": "2a435453fd58f53988c5a214db5777c0", "pid": "040471233", "note": [{"label": ["Rechtsnormen, die a) die Festsetzung oder Genehmigung von Preisen sowie die Aufrechterhaltung des Preisstandes (Fest-, Höchst- oder Mindestpreis) und b) die Preisangaben einschließlich der Preisüberwachung regeln"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Wirtschaftsverwaltungsrecht"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133685374", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85106618", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85106618"}], "authorized_access_point": "Price regulation"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133685374", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11977930", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11977930d"}], "authorized_access_point": "Prix - Droit"}], "identifier": "http://d-nb.info/gnd/4047123-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4047123-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040471233", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4047123-8", "source": "GND"}], "authorized_access_point": "Preisrecht"} 1 +2024-09-10 15:45:23.025473 2024-09-10 15:45:23.025483 78f4b30f-0c62-4628-bf4f-8c3d160c7a56 {"md5": "ff65434b4ed5f166e822ad42baa32a0f", "pid": "040351130", "note": [{"label": ["Personen, die in einem Ausbildungsberuf im dualen System ausgebildet werden.", "Verknüpfe mit der Berufsbezeichnung"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Berufsausbildung"}, {"authorized_access_point": "Anlernling"}, {"authorized_access_point": "Lehrling"}, {"authorized_access_point": "Weibliche Auszubildende"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134495900", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11951682", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11951682z"}], "authorized_access_point": "Apprentis"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966693582", "source": "GND"}, {"type": "bf:Nbn", "value": "11288-4", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/11288-4"}], "authorized_access_point": "Auszubildende"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970535740", "source": "GND"}, {"type": "bf:Nbn", "value": "10037155", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10037155"}], "authorized_access_point": "Auszubildender"}], "identifier": "http://d-nb.info/gnd/4035113-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4035113-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040351130", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4035113-0", "source": "GND"}], "variant_access_point": ["Lehrling (Österreich)"], "authorized_access_point": "Auszubildender"} 1 +2024-09-10 15:45:21.549936 2024-09-10 15:45:21.549946 415e5bd6-19d9-4ae8-b27d-32c4f95d997e {"md5": "f01ad7d839e442a6f1ded783534fdfb6", "pid": "040468003", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Biologie"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133684394", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85104917", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85104917"}], "authorized_access_point": "Population biology"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133684394", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11977642", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11977642k"}], "authorized_access_point": "Biologie des populations"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254474595", "source": "GND"}, {"type": "bf:Nbn", "value": "XX534766", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX534766"}], "authorized_access_point": "Biología de poblaciones"}], "identifier": "http://d-nb.info/gnd/4046800-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4046800-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040468003", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4046800-8", "source": "GND"}], "authorized_access_point": "Populationsbiologie"} 1 +2024-09-10 15:45:21.664943 2024-09-10 15:45:21.664948 e851f214-eeeb-4276-8f17-8a39c679f5f1 {"md5": "2baac73c39703bbdc34646d7ac31a97a", "pid": "040461912", "note": [{"label": ["Ein Placebo (lat. „Ich werde gefallen.“) ist eine Scheinsubstanz oder Scheinbehandlung, die die positiven Wirkungen eines Arzneimittels oder einer Intervention nachzuahmen vermag, ohne aber dabei das spezifische Arzneimittel oder die spezifische Behandlungsmethode zu beinhalten."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Arzneimittel"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133647499", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85102563", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85102563"}], "authorized_access_point": "Placebos (Medicine)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133647499", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11951043", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11951043d"}], "authorized_access_point": "Effet placebo"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1241618305", "source": "GND"}, {"type": "bf:Nbn", "value": "D010919", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D010919"}], "authorized_access_point": "Placebos"}], "identifier": "http://d-nb.info/gnd/4046191-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4046191-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040461912", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4046191-9", "source": "GND"}], "variant_access_point": ["Blindpräparat", "Falsumpräparat", "Leerpräparat", "Plazebo", "Scheinarznei"], "authorized_access_point": "Placebo"} 1 +2024-09-10 15:45:21.791143 2024-09-10 15:45:21.791155 e608d75c-2f6a-4524-9eb0-226e5d80f1af {"md5": "a3bd98fe1ba49b0269bec4a45423aa84", "pid": "040460495", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Protestantismus"}], "related": [{"authorized_access_point": "Pietist"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133935265", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85102060", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85102060"}], "authorized_access_point": "Pietism"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133935265", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11934618", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119346185"}], "authorized_access_point": "Piétisme"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254473386", "source": "GND"}, {"type": "bf:Nbn", "value": "XX535003", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX535003"}], "authorized_access_point": "Pietismo"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970579403", "source": "GND"}, {"type": "bf:Nbn", "value": "10054565", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10054565"}], "authorized_access_point": "Pietismus"}], "identifier": "http://d-nb.info/gnd/4046049-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4046049-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040460495", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4046049-6", "source": "GND"}], "authorized_access_point": "Pietismus"} 1 +2024-09-10 15:45:21.917004 2024-09-10 15:45:21.91702 f24e5329-df63-4907-b127-7bae089573d6 {"md5": "cc95babc40db61fbe13d9413b0a6f98f", "pid": "040459195", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Mannequin"}, {"authorized_access_point": "Dressman"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1324589744", "source": "GND"}, {"type": "bf:Nbn", "value": "sh93000734", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh93000734"}], "authorized_access_point": "Photographers' models"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333668309", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11968862", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11968862s"}], "authorized_access_point": "Modèles (art)"}], "identifier": "http://d-nb.info/gnd/4045919-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4045919-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040459195", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4045919-6", "source": "GND"}], "variant_access_point": ["Photomodell", "Model (Beruf)"], "authorized_access_point": "Fotomodell"} 1 +2024-09-10 15:45:22.021334 2024-09-10 15:45:22.021348 cd7cb64e-d65f-4bde-a5e0-1becd698bea1 {"md5": "670100e01f942553d16b972310f77bc7", "pid": "040448932", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Medizin"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113361910X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85098685", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85098685"}], "authorized_access_point": "Pathology"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113361910X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11933033", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119330335"}], "authorized_access_point": "Pathologie"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1299898416", "source": "GND"}, {"type": "bf:Nbn", "value": "XX525081", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX525081"}], "authorized_access_point": "Patología"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256243809", "source": "GND"}, {"type": "bf:Nbn", "value": "5631", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_5631"}], "authorized_access_point": "pathology"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1241617228", "source": "GND"}, {"type": "bf:Nbn", "value": "D010336", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D010336"}], "authorized_access_point": "Pathology"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970578377", "source": "GND"}, {"type": "bf:Nbn", "value": "10054226", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10054226"}], "authorized_access_point": "Pathologie"}], "identifier": "http://d-nb.info/gnd/4044893-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4044893-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040448932", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4044893-9", "source": "GND"}], "variant_access_point": ["Allgemeine Pathologie", "Spezielle Pathologie", "Klinische Pathologie", "Allgemeine Krankheitslehre"], "authorized_access_point": "Pathologie"} 1 +2024-09-10 15:45:22.233662 2024-09-10 15:45:22.233677 bca9cab8-6476-476a-8ef7-b7df1ef7c693 {"md5": "260988c3218ee3dfc5531624400f73cd", "pid": "040414124", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Religionsethnologie"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133630057", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13318507", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb133185071"}], "authorized_access_point": "Religion primitive"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254479139", "source": "GND"}, {"type": "bf:Nbn", "value": "XX525120", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX525120"}], "authorized_access_point": "Religiones primitivas"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970575343", "source": "GND"}, {"type": "bf:Nbn", "value": "10053067", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10053067"}], "authorized_access_point": "Naturreligion"}], "identifier": "http://d-nb.info/gnd/4041412-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4041412-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040414124", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4041412-7", "source": "GND"}], "variant_access_point": ["Naturreligion", "Naturvolk", "Elementarreligion", "Primitive Religion", "Stammesreligion", "Naturreligionen", "Indigene Religion", "Traditionelle Religion", "Traditionale Religion"], "authorized_access_point": "Ethnische Religion"} 1 +2024-09-10 15:45:22.315168 2024-09-10 15:45:22.315178 f8eb8d2c-c79b-442e-9b9a-21328e221ef4 {"md5": "82a600b945e1e3292cd08706dd5602f4", "pid": "04041177X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Malerei"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133961800", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11946114", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119461143"}], "authorized_access_point": "Peinture naïve"}], "identifier": "http://d-nb.info/gnd/4041177-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4041177-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04041177X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4041177-1", "source": "GND"}], "authorized_access_point": "Naive Malerei"} 1 +2024-09-10 15:45:22.429307 2024-09-10 15:45:22.429316 502350c3-7e83-4e3a-99a9-6759aacfad4f {"md5": "2ecfd5308a962277e77b756244a0d877", "pid": "040411583", "note": [{"label": ["Benutzt seit der Gründung des Staates Israel"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Internationale Politik"}], "related": [{"authorized_access_point": "Palästinafrage"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133712010", "source": "GND"}, {"type": "bf:Nbn", "value": "sh87002535", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh87002535"}], "authorized_access_point": "Arab-Israeli conflict"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133712010", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12047729", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12047729m"}], "authorized_access_point": "Conflit israélo-arabe"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)129990159X", "source": "GND"}, {"type": "bf:Nbn", "value": "XX528425", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX528425"}], "authorized_access_point": "Conflicto árabe-israelí"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1027620000", "source": "GND"}, {"type": "bf:Nbn", "value": "10071133", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10071133"}], "authorized_access_point": "Nahost-Konflikt"}], "identifier": "http://d-nb.info/gnd/4041158-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4041158-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040411583", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4041158-8", "source": "GND"}], "variant_access_point": ["Arabisch-israelischer Konflikt", "Israelisch-arabischer Konflikt"], "authorized_access_point": "Nahostkonflikt"} 1 +2024-09-10 15:45:22.543185 2024-09-10 15:45:22.543195 ee7438d7-2550-41b6-93f3-3f63bee21b36 {"md5": "74f4932b9be0cf744801fe1717953809", "pid": "040372170", "note": [{"label": ["Ausbildungsberuf", "Als Homonymenzusatz bei Personenschlagwörtern zugelassen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Handwerker"}, {"authorized_access_point": "Bauwirtschaftsberuf"}], "related": [{"authorized_access_point": "Malerin und Lackiererin"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113401631X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85096659", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85096659"}], "authorized_access_point": "Painters, Industrial"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113401631X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11967308", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11967308c"}], "authorized_access_point": "Peintres en bâtiment"}], "identifier": "http://d-nb.info/gnd/4037217-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4037217-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040372170", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4037217-0", "source": "GND"}], "variant_access_point": ["Lackierer", "Anstreicher"], "authorized_access_point": "Maler und Lackierer"} 1 +2024-09-10 15:45:22.658849 2024-09-10 15:45:22.658858 24fe4b28-f4c7-4844-abf0-b258e18c4776 {"md5": "229b12e89b922fc4686a27422408c371", "pid": "040366898", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Herpetologie"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133610870", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85004598", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85004598"}], "authorized_access_point": "Amphibians"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133610870", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11930880", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119308805"}], "authorized_access_point": "Amphibiens"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)125432187X", "source": "GND"}, {"type": "bf:Nbn", "value": "2076", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/2076"}], "authorized_access_point": "Anfibi"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254457917", "source": "GND"}, {"type": "bf:Nbn", "value": "XX525093", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX525093"}], "authorized_access_point": "Anfibios"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256233978", "source": "GND"}, {"type": "bf:Nbn", "value": "359", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_359"}], "authorized_access_point": "amphibians"}], "identifier": "http://d-nb.info/gnd/4036689-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4036689-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040366898", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4036689-3", "source": "GND"}], "variant_access_point": ["Amphibia", "Amphibien"], "authorized_access_point": "Lurche"} 1 +2024-09-10 15:45:22.778854 2024-09-10 15:45:22.778865 09ff4c0f-bbd7-42ce-a9fc-f044d39a3efb {"md5": "01bae3a11386f47a93abe7b3e1f45f87", "pid": "040357228", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Spirituosen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133926541", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85077347", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85077347"}], "authorized_access_point": "Liqueurs"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133926541", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11932253", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119322533"}], "authorized_access_point": "Liqueurs"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254351760", "source": "GND"}, {"type": "bf:Nbn", "value": "22490", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/22490"}], "authorized_access_point": "Liquori"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254456481", "source": "GND"}, {"type": "bf:Nbn", "value": "XX527213", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX527213"}], "authorized_access_point": "Licores"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256233048", "source": "GND"}, {"type": "bf:Nbn", "value": "4369", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_4369"}], "authorized_access_point": "liqueurs"}], "identifier": "http://d-nb.info/gnd/4035722-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4035722-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040357228", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4035722-3", "source": "GND"}], "authorized_access_point": "Likör"} 1 +2024-09-10 15:45:23.152836 2024-09-10 15:45:23.152847 3fc54272-8f8f-4262-8db7-249fb46c4f0e {"md5": "7284d85144914ea4212b90b0e868fb59", "pid": "04034889X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Lebensmittelwirtschaft"}, {"authorized_access_point": "Genussmittelindustrie"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134561490", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85050282", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85050282"}], "authorized_access_point": "Food industry and trade"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256232211", "source": "GND"}, {"type": "bf:Nbn", "value": "3020", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_3020"}], "authorized_access_point": "food industry"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970574878", "source": "GND"}, {"type": "bf:Nbn", "value": "10045624", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10045624"}], "authorized_access_point": "Nahrungs- und Genussmittelgewerbe"}], "identifier": "http://d-nb.info/gnd/4034889-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4034889-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04034889X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4034889-1", "source": "GND"}], "variant_access_point": ["Ernährungsindustrie", "Nahrungs- und Genussmittelindustrie", "Nahrungsmittelindustrie", "Lebensmittel"], "authorized_access_point": "Lebensmittelindustrie"} 1 +2024-09-10 15:45:23.263812 2024-09-10 15:45:23.263822 26c5ae7d-da06-4da7-97b7-5fed4147d81f {"md5": "cb4c648046afcc6b2d0ca92a5d92eb0b", "pid": "040344029", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Primärer Sektor"}], "related": [{"authorized_access_point": "Landbau"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133603750", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85002415", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85002415"}], "authorized_access_point": "Agriculture"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133603750", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF119347980", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11934798x"}], "authorized_access_point": "Agriculture"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254321667", "source": "GND"}, {"type": "bf:Nbn", "value": "1992", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/1992"}], "authorized_access_point": "Agricoltura"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254454713", "source": "GND"}, {"type": "bf:Nbn", "value": "XX4576248", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX4576248"}], "authorized_access_point": "Agricultura"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1253486611", "source": "GND"}, {"type": "bf:Nbn", "value": "203", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_203"}], "authorized_access_point": "agriculture"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1253499470", "source": "GND"}, {"type": "bf:Nbn", "value": "D000383", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D000383"}], "authorized_access_point": "Agriculture"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966830601", "source": "GND"}, {"type": "bf:Nbn", "value": "12945-3", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/12945-3"}], "authorized_access_point": "Landwirtschaft"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970568134", "source": "GND"}, {"type": "bf:Nbn", "value": "10034547", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10034547"}], "authorized_access_point": "Landwirtschaft"}], "identifier": "http://d-nb.info/gnd/4034402-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4034402-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040344029", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4034402-2", "source": "GND"}], "variant_access_point": ["Agrarwirtschaft", "Agrarsektor", "Landwirtschaftlicher Sektor"], "authorized_access_point": "Landwirtschaft"} 1 +2024-09-10 15:45:23.335899 2024-09-10 15:45:23.335903 5415b750-751b-4116-8c0b-2a9967cec133 {"md5": "cd03bb036be0efaccb0aaf2f0a4dd79e", "pid": "040302482", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kurve"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134426828", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85034931", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85034931"}], "authorized_access_point": "Curves in engineering"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134426828", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF14495002", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb144950025"}], "authorized_access_point": "Courbes en technologie"}], "identifier": "http://d-nb.info/gnd/4030248-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4030248-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040302482", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4030248-9", "source": "GND"}], "authorized_access_point": "Kennlinie"} 1 +2024-09-10 15:45:23.423985 2024-09-10 15:45:23.423996 0ba10d00-332a-49bb-b662-2de29f86f0f4 {"md5": "686d89318eb56c41d5f649eac7fe05fd", "pid": "040299848", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kirchengemeinde"}], "identifier": "http://d-nb.info/gnd/4029984-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4029984-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040299848", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4029984-3", "source": "GND"}], "variant_access_point": ["Katholische Kirchengemeinde", "Katholische Pfarrei", "Römisch-katholische Gemeinde", "Katholische Gemeinden"], "authorized_access_point": "Katholische Gemeinde"} 1 +2024-09-10 15:45:23.527276 2024-09-10 15:45:23.527286 f0c9ac8e-1701-406a-af22-62de2d58cd52 {"md5": "490eaba0063d39a3ff8d42a36b70d9f2", "pid": "040297519", "note": [{"label": ["Ausbildungsberuf 1938-1989, abgelöst vom Karosserie- und Fahrzeugbauer"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mechaniker"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134746075", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85020458", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85020458"}], "authorized_access_point": "Carriage industry"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134746075", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13163043", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb131630430"}], "authorized_access_point": "Carrossiers"}], "identifier": "http://d-nb.info/gnd/4029751-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4029751-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040297519", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4029751-2", "source": "GND"}], "authorized_access_point": "Karosseriebauer"} 1 +2024-09-10 15:45:23.634826 2024-09-10 15:45:23.634836 bd347d37-eeb6-445a-bbcd-d49f13416db8 {"md5": "7d0286b5a3121a61927a17124bf14e6c", "pid": "040296709", "note": [{"label": ["Für bildliche, satirische Darstellungen (RDA AH-007)."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Satire"}], "related": [{"authorized_access_point": "Humoristische Darstellung"}, {"authorized_access_point": "Cartoon"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133938841", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11936063", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11936063t"}], "authorized_access_point": "Caricatures et dessins humoristiques"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134048718", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11977710", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119777107"}], "authorized_access_point": "Caricature"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)97056287X", "source": "GND"}, {"type": "bf:Nbn", "value": "10040205", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10040205"}], "authorized_access_point": "Karikatur"}], "identifier": "http://d-nb.info/gnd/4029670-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4029670-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040296709", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4029670-2", "source": "GND"}], "variant_access_point": ["Satire", "Cartoon (Formschlagwort)", "Bildsatire", "Karikaturen", "Satirische Darstellung (Kunst)"], "authorized_access_point": "Karikatur"} 1 +2024-09-10 15:45:23.741304 2024-09-10 15:45:23.741314 a5a289eb-fd1a-41d8-80cc-c954b335718b {"md5": "0d726a73a681ed4e21c47747010c8ece", "pid": "040270076", "note": [{"label": ["Bei Enzymen verwende Enzyminhibitor"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Antagonist"}, {"authorized_access_point": "Inhibition"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133717403", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12082271", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12082271n"}], "authorized_access_point": "Inhibiteurs"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254389520", "source": "GND"}, {"type": "bf:Nbn", "value": "58311", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/58311"}], "authorized_access_point": "Inibitori"}], "identifier": "http://d-nb.info/gnd/4027007-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4027007-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040270076", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4027007-5", "source": "GND"}], "variant_access_point": ["Hemmstoff"], "authorized_access_point": "Inhibitor"} 1 +2024-09-10 15:45:23.903736 2024-09-10 15:45:23.903751 a20ffd07-a79c-41d4-84d9-580ea8f34301 {"md5": "649b668f30a0c3fd937101b45f5ddada", "pid": "040267210", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Indian reorganization act"}, {"authorized_access_point": "Indianerreduktion"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133950914", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85065369", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85065369"}], "authorized_access_point": "Indian reservations"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133950914", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11941190", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119411900"}], "authorized_access_point": "Réserves indiennes"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1289266360", "source": "GND"}, {"type": "bf:Nbn", "value": "30365-5", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/30365-5"}], "authorized_access_point": "Reservat (Ethnische Gruppe)"}], "identifier": "http://d-nb.info/gnd/4026721-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4026721-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040267210", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4026721-0", "source": "GND"}], "variant_access_point": ["Indianerreservat", "Indianerreservation", "Reservat", "Indianerreservate", "Indian Reservation"], "authorized_access_point": "Reservat (Ethnologie)"} 1 +2024-09-10 15:45:24.018567 2024-09-10 15:45:24.018578 afbc0bf5-7836-41b0-9aa1-d9e8177fc958 {"md5": "1ac118e5a6932bdfcfc7518a93f5f594", "pid": "040257029", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Holzfehler&oldid=245078730"], "noteType": "dataSource"}, {"label": ["Als Holzfehler oder Wuchsfehler werden im Warenverkehr mit Rohholz diejenigen Holzmerkmale bezeichnet, die die Holznutzung beeinträchtigen."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Holzmerkmal"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134636652", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85147789", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85147789"}], "authorized_access_point": "Wood - Defects"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256222291", "source": "GND"}, {"type": "bf:Nbn", "value": "28188", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_28188"}], "authorized_access_point": "wood defects"}], "identifier": "http://d-nb.info/gnd/4025702-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4025702-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040257029", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4025702-2", "source": "GND"}], "variant_access_point": ["Holz", "Wuchsfehler"], "authorized_access_point": "Holzfehler"} 1 +2024-09-10 15:45:24.139908 2024-09-10 15:45:24.139922 827ac608-365d-4be4-8ffa-b8f8178f737d {"md5": "758f78e858d3fd382732eb2b6b1f7e5b", "pid": "040246655", "note": [{"label": ["Benutzt als Oberbegriff f. Blutgefässsystem u. Herz"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Blutkreislauf"}, {"authorized_access_point": "Biologisches System"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133623077", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11934858", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11934858z"}], "authorized_access_point": "Appareil cardiovasculaire"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254447202", "source": "GND"}, {"type": "bf:Nbn", "value": "XX525158", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX525158"}], "authorized_access_point": "Aparato circulatorio"}], "identifier": "http://d-nb.info/gnd/4024665-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4024665-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040246655", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4024665-6", "source": "GND"}], "variant_access_point": ["Herz-Kreislauf-System", "Cardiovasculäres System"], "authorized_access_point": "Kardiovaskuläres System"} 1 +2024-09-10 15:45:24.267699 2024-09-10 15:45:24.267707 a3907c22-4f3f-4328-9ab7-51060c450a50 {"md5": "14e6632a52201d28039baa40fcb7d58d", "pid": "040218066", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Grammatiker"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134128304", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85056259", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85056259"}], "authorized_access_point": "Grammar"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134567324", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85056260", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85056260"}], "authorized_access_point": "Grammar, Comparative and general"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134128304", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF120427815", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12042781h"}], "authorized_access_point": "Grammaire"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254511822", "source": "GND"}, {"type": "bf:Nbn", "value": "XX535820", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX535820"}], "authorized_access_point": "Gramática"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970555334", "source": "GND"}, {"type": "bf:Nbn", "value": "10045876", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10045876"}], "authorized_access_point": "Grammatik"}], "identifier": "http://d-nb.info/gnd/4021806-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4021806-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040218066", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4021806-5", "source": "GND"}], "authorized_access_point": "Grammatik"} 1 +2024-09-10 15:45:24.379577 2024-09-10 15:45:24.379581 ddac04d0-9fd8-44f2-ad95-571f50fd8797 {"md5": "dbde92ae0f252df9fc22c340216f12b9", "pid": "04021334X", "note": [{"label": ["Wiktionary - https://de.wiktionary.org/wiki/Gl%C3%BCckwunsch"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1299918344", "source": "GND"}, {"type": "bf:Nbn", "value": "XX5026483", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX5026483"}], "authorized_access_point": "Felicitaciones"}], "identifier": "http://d-nb.info/gnd/4021334-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4021334-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04021334X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4021334-1", "source": "GND"}], "variant_access_point": ["Gratulation", "Glückwünsche"], "authorized_access_point": "Glückwunsch"} 1 +2024-09-10 15:45:24.465203 2024-09-10 15:45:24.465212 b2096a2d-a4f8-4abd-8ba5-f7c5e85174d0 {"md5": "5a6fe1f7535db8dfe51b4b604b1eeaf5", "pid": "040200728", "note": [{"label": ["Benutzt für erwerbsmäßigen Anbau, ansonsten verwende SW Gemüsegarten"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gartenbau"}, {"authorized_access_point": "Ackerbau"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332122256", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85142483", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85142483"}], "authorized_access_point": "Vegetable gardening"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332122256", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11933904", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119339042"}], "authorized_access_point": "Cultures potagères"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256216615", "source": "GND"}, {"type": "bf:Nbn", "value": "16509", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_16509"}], "authorized_access_point": "vegetable growing"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966757432", "source": "GND"}, {"type": "bf:Nbn", "value": "12942-2", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/12942-2"}], "authorized_access_point": "Gemüsebau"}], "identifier": "http://d-nb.info/gnd/4020072-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4020072-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040200728", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4020072-3", "source": "GND"}], "variant_access_point": ["Gemüseanbau", "Gemüsekultur", "Gemüse"], "authorized_access_point": "Gemüsebau"} 1 +2024-09-10 15:45:24.625851 2024-09-10 15:45:24.625864 a6981eef-c73e-40ef-a679-669ab1c09df0 {"md5": "347858a01fabea7a93f6bc5b284c26a2", "pid": "040200159", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134594607", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13319114", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13319114f"}], "authorized_access_point": "Communauté"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966756886", "source": "GND"}, {"type": "bf:Nbn", "value": "16587-4", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/16587-4"}], "authorized_access_point": "Gemeinschaft"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)97055317X", "source": "GND"}, {"type": "bf:Nbn", "value": "10041283", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10041283"}], "authorized_access_point": "Gemeinschaft"}], "identifier": "http://d-nb.info/gnd/4020015-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4020015-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040200159", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4020015-2", "source": "GND"}], "variant_access_point": ["Soziale Gemeinschaft", "Gemeinschaften"], "authorized_access_point": "Gemeinschaft"} 1 +2024-09-10 15:45:24.750092 2024-09-10 15:45:24.750101 26e93d31-8179-411d-a646-ead254ba7b30 {"md5": "e2bb186e15d5251dae36ca26fc370fcc", "pid": "040195589", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Grafik"}, {"authorized_access_point": "Design"}], "related": [{"authorized_access_point": "Kommunikationsdesign"}], "identifier": "http://d-nb.info/gnd/4019558-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4019558-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040195589", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4019558-2", "source": "GND"}], "variant_access_point": ["Gebrauchsgrafik", "Gebrauchsgraphik", "Graphikdesign", "Graphic design", "Grafik-Design"], "authorized_access_point": "Grafikdesign"} 1 +2024-09-10 15:45:24.880814 2024-09-10 15:45:24.880825 c8a9f5c6-0162-4be6-af8e-29c1a2444e8c {"md5": "000ef232e64b0e802229b458e7747513", "pid": "040172503", "note": [{"label": ["Nicht für die Sacherschließung als Oberbegriff zu einzelnen Unternehmen verwendet; verwende in diesem Fall das Schlagwort \\"Unternehmen\\" oder einen spezifischeren Begriff. - Hingegen zu verwenden als identifizierender Zusatz (IZ) für die Individualisierung von Körperschaftsnamen in der GND gemäß „Kategorie einer Körperschaft“, RDA-E-K070; bei der Verwendung als IZ im Bevorzugten Namen dann auch als instantieller Oberbegriff (obin). (\\"Kategorie einer Körperschaft\\" verwendet die umgangssprachliche Bedeutung von Firma)."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Unternehmen"}], "identifier": "http://d-nb.info/gnd/4017250-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4017250-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040172503", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4017250-8", "source": "GND"}], "variant_access_point": ["Firmierung", "Firmenname", "Firmenbezeichnung", "Unternehmensname", "Handelsname"], "authorized_access_point": "Firma"} 1 +2024-09-10 15:45:25.01626 2024-09-10 15:45:25.016272 05ae19dc-bcfe-4761-a56d-8819fd31ed99 {"md5": "40b8c535d6306a360728304a22a79b8d", "pid": "040171078", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Archiv"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133639569", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85088046", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85088046"}], "authorized_access_point": "Motion picture film collections"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133676782", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85006925", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85006925"}], "authorized_access_point": "Film archives"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133676782", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11973200", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11973200k"}], "authorized_access_point": "Archives cinématographiques"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133639569", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11945398", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119453988"}], "authorized_access_point": "Cinémathèques"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254428798", "source": "GND"}, {"type": "bf:Nbn", "value": "XX526197", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX526197"}], "authorized_access_point": "Filmotecas"}], "identifier": "http://d-nb.info/gnd/4017107-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4017107-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040171078", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4017107-3", "source": "GND"}], "variant_access_point": ["Kinemathek", "Filmothek", "Film", "Filmarchive"], "authorized_access_point": "Filmarchiv"} 1 +2024-09-10 15:45:28.671529 2024-09-10 15:45:28.671541 2246c0ba-6b37-4627-8ab2-aaf252ec8151 {"md5": "367ccba65f473fb6ef4fd65cca80b20c", "pid": "1336835052", "note": [{"label": ["Homepage - https://www.raspberrypi.com/products/raspberry-pi-5/"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Einplatinen-Computer"}], "identifier": "http://d-nb.info/gnd/1336835052", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1336835052", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1336835052", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1336835052", "source": "GND"}], "variant_access_point": ["Raspberry Pi5"], "authorized_access_point": "Raspberry Pi 5"} 1 +2024-09-10 15:45:25.120929 2024-09-10 15:45:25.120938 e89e67c1-7dcb-4c2f-98d7-4d35a2526e40 {"md5": "61fa2ac77c43080429c3e098369b88c6", "pid": "040163172", "note": [{"label": ["Fahrtüchtigkeit bezeichnet die auf einen konkreten Zeitpunkt bezogene Fähigkeit einer Person, mit einem Fahrzeug sicher am Straßenverkehr teilzunehmen. Sie kann z. B. infolge von Drogenkonsum oder Ermüdung fehlen.", "Für die generelle, dauerhafte Fähigkeit zur sicheren Straßenverkehrsteilnahme verwende SW Fahreignung."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tauglichkeit"}], "related": [{"authorized_access_point": "Fahreignung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133804497", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12468051", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb124680516"}], "authorized_access_point": "Automobilistes - Usage des drogues"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970548982", "source": "GND"}, {"type": "bf:Nbn", "value": "10043201", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10043201"}], "authorized_access_point": "Fahrtauglichkeit"}], "identifier": "http://d-nb.info/gnd/4016317-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4016317-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040163172", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4016317-9", "source": "GND"}], "variant_access_point": ["Fahrtauglichkeit", "Verkehrstüchtigkeit", "Fahruntüchtigkeit", "Fahruntauglichkeit", "Fahrsicherheit", "Fahrunsicherheit"], "authorized_access_point": "Fahrtüchtigkeit"} 1 +2024-09-10 15:45:25.239439 2024-09-10 15:45:25.239452 c873a85b-ff0e-4b07-bcae-bdaffe575fcb {"md5": "fc25a530bdd8bb8ddaf2db90320667b4", "pid": "04015985X", "note": [{"label": ["Grafisch gestalteter Besitzervermerk in Zettelform, der auf die Innenseite von Bucheinbänden geklebt wird"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Eigentumsmarke"}], "related": [{"authorized_access_point": "Besitzervermerk"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133626777", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85015646", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85015646"}], "authorized_access_point": "Bookplates"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133626777", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11937172", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119371729"}], "authorized_access_point": "Ex-libris"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254334572", "source": "GND"}, {"type": "bf:Nbn", "value": "9382", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/9382"}], "authorized_access_point": "Ex libris"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254426752", "source": "GND"}, {"type": "bf:Nbn", "value": "XX527355", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX527355"}], "authorized_access_point": "Ex libris"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1275771874", "source": "GND"}, {"type": "uri", "value": "https://provenienz.gbv.de/T-PRO_Thesaurus_der_Provenienzbegriffe#Anker:Exlibris"}], "authorized_access_point": "Exlibris"}], "identifier": "http://d-nb.info/gnd/4015985-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4015985-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04015985X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4015985-1", "source": "GND"}], "variant_access_point": ["Bucheignerzeichen", "Bücherzeichen (Exlibris)", "Buchmarke", "Ex-Libris"], "authorized_access_point": "Exlibris"} 1 +2024-09-10 15:45:25.359847 2024-09-10 15:45:25.359856 7d5ab9df-a269-4340-8e9f-3c6914fa6ba6 {"md5": "b9f640326c5673d8e83ae8f2725edbe5", "pid": "040158292", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Evangelische Kirche"}, {"authorized_access_point": "Kirchengemeinde"}], "identifier": "http://d-nb.info/gnd/4015829-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4015829-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040158292", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4015829-9", "source": "GND"}], "variant_access_point": ["Evangelische Kirchengemeinde", "Evangelische Pfarrei"], "authorized_access_point": "Evangelische Gemeinde"} 1 +2024-09-10 15:45:25.444046 2024-09-10 15:45:25.444054 9d990a31-7ee6-4f7e-bda3-bebf4e2295da {"md5": "410110830b52a294147c6bb8a7f5a583", "pid": "040143503", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Baugruppe"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134047428", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85042373", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85042373"}], "authorized_access_point": "Electronic systems"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134047428", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11977451", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119774510"}], "authorized_access_point": "Systèmes électroniques"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254332472", "source": "GND"}, {"type": "bf:Nbn", "value": "7588", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/7588"}], "authorized_access_point": "Sistemi elettronici"}], "identifier": "http://d-nb.info/gnd/4014350-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4014350-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040143503", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4014350-8", "source": "GND"}], "authorized_access_point": "Elektronische Baugruppe"} 1 +2024-09-10 15:45:25.541101 2024-09-10 15:45:25.541116 be9cb5d6-6e2c-4274-97e7-07e9eb59649c {"md5": "1340c115bff4170ce4a209fed1c9ac26", "pid": "040143376", "note": [{"label": ["Ungerichtet, im Gegensatz zu Elektronenstrahl"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Teilchenstrahlung"}], "related": [{"authorized_access_point": "Freies Elektron"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134785607", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85042200", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85042200"}], "authorized_access_point": "Electron beams"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134785607", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11953144", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11953144h"}], "authorized_access_point": "Faisceaux électroniques"}], "identifier": "http://d-nb.info/gnd/4014337-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4014337-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040143376", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4014337-5", "source": "GND"}], "variant_access_point": ["Elektronenstrahlen (Elektronenstrahlung)"], "authorized_access_point": "Elektronenstrahlung"} 1 +2024-09-10 15:45:31.824105 2024-09-10 15:45:31.824117 760a1aa7-b0f6-4740-a93f-beb24faab230 {"md5": "4b921e0bd6c7007ed87f2937011739f9", "pid": "1336037571", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Zentralkhoisan-Sprachen"}], "identifier": "http://d-nb.info/gnd/1336037571", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1336037571", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1336037571", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1336037571", "source": "GND"}], "variant_access_point": ["Cua (Sprache)", "Tyhua", "Tyua", "Kuasi"], "authorized_access_point": "Kua"} 1 +2024-09-10 15:45:25.649081 2024-09-10 15:45:25.649094 a4244b8f-07fb-4960-a47e-15e28c1dd2e6 {"md5": "e8750cfecd4b5eb5c5866bcf5701ff17", "pid": "040137465", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Krebs (Medizin)"}, {"authorized_access_point": "Eierstocktumor"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134590326", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2010104661", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2010104661"}], "authorized_access_point": "Ovaries - Cancer"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1241598770", "source": "GND"}, {"type": "bf:Nbn", "value": "D010051", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D010051"}], "authorized_access_point": "Ovarian Neoplasms"}], "identifier": "http://d-nb.info/gnd/4013746-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4013746-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040137465", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4013746-6", "source": "GND"}], "variant_access_point": ["Ovarialkarzinom", "Ovarialcarcinom", "Ovarialkrebs"], "authorized_access_point": "Eierstockkrebs"} 1 +2024-09-10 15:45:25.749147 2024-09-10 15:45:25.749158 6915db1e-795c-4f31-94c1-d6c7939b23f0 {"md5": "353addd81f056c658b999116130b9c50", "pid": "040136302", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Familie"}, {"authorized_access_point": "Eheliche Lebensgemeinschaft"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966724763", "source": "GND"}, {"type": "bf:Nbn", "value": "15937-1", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/15937-1"}], "authorized_access_point": "Ehe"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970544901", "source": "GND"}, {"type": "bf:Nbn", "value": "10041471", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10041471"}], "authorized_access_point": "Ehe"}], "identifier": "http://d-nb.info/gnd/4013630-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4013630-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040136302", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4013630-9", "source": "GND"}], "variant_access_point": ["Eheleben", "Ehen"], "authorized_access_point": "Ehe"} 1 +2024-09-10 15:45:25.860484 2024-09-10 15:45:25.860494 124b82e1-f4af-469a-83b1-ef0513d00d4e {"md5": "54f3c37c6778026c7b11cc85e2842097", "pid": "040132153", "note": [{"label": ["Mit dem Düngemittel wird i.d.R. ein Kompositum gebildet, z.B. Gülledüngung"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Pflanzenbau"}], "related": [{"authorized_access_point": "Düngemittel"}, {"authorized_access_point": "Bestellung (Landbau)"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134228384", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85047920", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85047920"}], "authorized_access_point": "Fertilizers - Application"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134228384", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12244082", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12244082r"}], "authorized_access_point": "Engrais et amendements - Épandage"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256206393", "source": "GND"}, {"type": "bf:Nbn", "value": "10795", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_10795"}], "authorized_access_point": "fertilizer application"}], "identifier": "http://d-nb.info/gnd/4013215-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4013215-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040132153", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4013215-8", "source": "GND"}], "variant_access_point": ["Pflanzendüngung"], "authorized_access_point": "Düngung"} 1 +2024-09-10 15:45:25.997151 2024-09-10 15:45:25.997164 cd1a7d59-3458-4662-a72c-9e2311b7f439 {"md5": "4e1a7d7f70ac9f1e8e751a0177f7242a", "pid": "040110680", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Krebs (Medizin)"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134492731", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85067585", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85067585"}], "authorized_access_point": "Intestines - Cancer"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1241596999", "source": "GND"}, {"type": "bf:Nbn", "value": "D007414", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D007414"}], "authorized_access_point": "Intestinal Neoplasms"}], "identifier": "http://d-nb.info/gnd/4011068-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4011068-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040110680", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4011068-0", "source": "GND"}], "variant_access_point": ["Intestinalcarcinom", "Darmkarzinom"], "authorized_access_point": "Darmkrebs"} 1 +2024-09-10 15:45:26.102938 2024-09-10 15:45:26.102951 4797dedc-f185-4a4d-abd8-d70c18c57978 {"md5": "f9f3cb1f6ac40120f898e2cda147f1d7", "pid": "040105423", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Polymere"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134081979", "source": "GND"}, {"type": "bf:Nbn", "value": "sh96003095", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh96003095"}], "authorized_access_point": "Copolymers"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134081979", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11983800", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11983800f"}], "authorized_access_point": "Copolymères"}], "identifier": "http://d-nb.info/gnd/4010542-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4010542-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040105423", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4010542-8", "source": "GND"}], "variant_access_point": ["Mischpolymere"], "authorized_access_point": "Copolymere"} 1 +2024-09-10 15:45:26.2204 2024-09-10 15:45:26.220413 62306ee4-dd68-444b-9e86-8f197c6e2171 {"md5": "4c63982b22a59285d72a87f2e4c93d58", "pid": "040098923", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Systematik"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333245947", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12000515", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12000515v"}], "authorized_access_point": "Chimiotaxinomie"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133693687", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11981794", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11981794v"}], "authorized_access_point": "Plantes - Chimiotaxinomie"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256201782", "source": "GND"}, {"type": "bf:Nbn", "value": "1526", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_1526"}], "authorized_access_point": "chemotaxonomy"}], "identifier": "http://d-nb.info/gnd/4009892-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4009892-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040098923", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4009892-8", "source": "GND"}], "variant_access_point": ["Chemosystematik"], "authorized_access_point": "Chemotaxonomie"} 1 +2024-09-10 15:45:26.347903 2024-09-10 15:45:26.347913 6f0b757b-e7bd-4cb8-87ad-6ea06dfd21e4 {"md5": "9caa19e3c084142cd340853e33e59225", "pid": "040092755", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schadstoffbelastung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134659253", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2009118139", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2009118139"}], "authorized_access_point": "Cadmium - Environmental aspects"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134397658", "source": "GND"}, {"type": "bf:Nbn", "value": "sh00004598", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh00004598"}], "authorized_access_point": "Effect of cadmium on"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134397658", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13757341", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13757341x"}], "authorized_access_point": "Effets du cadmium"}], "identifier": "http://d-nb.info/gnd/4009275-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4009275-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040092755", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4009275-6", "source": "GND"}], "variant_access_point": ["Cadmium", "Cadmiumgehalt (Cadmiumbelastung)"], "authorized_access_point": "Cadmiumbelastung"} 1 +2024-09-10 15:45:26.450756 2024-09-10 15:45:26.450759 3c19c988-e783-4716-891a-1131a98a718a {"md5": "26ddeb23ee21f13cf6aacb9fe38d0465", "pid": "04009104X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Befestigung"}, {"authorized_access_point": "Adelshaus"}, {"authorized_access_point": "Residenz"}], "related": [{"authorized_access_point": "Burgenkunde"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134636903", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85020702", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85020702"}], "authorized_access_point": "Castles"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134636903", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11931695", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11931695w"}], "authorized_access_point": "Châteaux forts"}], "identifier": "http://d-nb.info/gnd/4009104-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4009104-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04009104X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4009104-1", "source": "GND"}], "variant_access_point": ["Burgen"], "authorized_access_point": "Burg"} 1 +2024-09-10 15:45:26.555113 2024-09-10 15:45:26.555121 e9ee2b05-ee8e-4073-aad5-4965aa8a895c {"md5": "3c059ef8e39f0cb9aa5013162a30f585", "pid": "040090809", "note": [{"label": ["Papier, das durch den Aufstrich von Farbe oder durch Bedrucken, Kaschieren und andere Oberflächenbehandlungen seine Farbigkeit erhält"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Spezialpapier"}], "identifier": "http://d-nb.info/gnd/4009080-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4009080-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040090809", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4009080-2", "source": "GND"}], "authorized_access_point": "Buntpapier"} 1 +2024-09-10 15:45:26.652717 2024-09-10 15:45:26.65273 acfc5094-97e0-41d7-acbd-4c35605af38e {"md5": "9dac2cb247c7b29a7fdce4a74e4daa7c", "pid": "040072118", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Befruchtung"}], "related": [{"authorized_access_point": "Bestäuber"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133676006", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85104524", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85104524"}], "authorized_access_point": "Pollination"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133676006", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11972141", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11972141n"}], "authorized_access_point": "Pollinisation"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254351590", "source": "GND"}, {"type": "bf:Nbn", "value": "22309", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/22309"}], "authorized_access_point": "Impollinazione"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254411089", "source": "GND"}, {"type": "bf:Nbn", "value": "XX555520", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX555520"}], "authorized_access_point": "Polinización"}], "identifier": "http://d-nb.info/gnd/4007211-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4007211-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040072118", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4007211-3", "source": "GND"}], "variant_access_point": ["Blütenbestäubung", "Pollination"], "authorized_access_point": "Bestäubung"} 1 +2024-09-10 15:45:28.77022 2024-09-10 15:45:28.770234 3e0f9533-4e79-46f5-9b65-0769fc771129 {"md5": "f715014debe3043f0f88543aa8017fc8", "pid": "1336765410", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Niederalemannisch"}], "identifier": "http://d-nb.info/gnd/1336765410", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1336765410", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1336765410", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1336765410", "source": "GND"}], "authorized_access_point": "Mundart Niederalemannisch (Widnau)"} 1 +2024-09-10 15:45:26.757155 2024-09-10 15:45:26.757164 e6edf048-8218-44a6-80cb-44c4e30452bf {"md5": "ca4f50ca275147827f9274a765bf6ef7", "pid": "040070328", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Krebs (Medizin)"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134492898", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2009117264", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2009117264"}], "authorized_access_point": "Bladder - Cancer"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1241593930", "source": "GND"}, {"type": "bf:Nbn", "value": "D001749", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D001749"}], "authorized_access_point": "Urinary Bladder Neoplasms"}], "identifier": "http://d-nb.info/gnd/4007032-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4007032-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040070328", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4007032-3", "source": "GND"}], "variant_access_point": ["Blasencarcinom", "Harnblasenkrebs", "Blasenkarzinom", "Harnblasenkarzinom"], "authorized_access_point": "Blasenkrebs"} 1 +2024-09-10 15:45:26.871891 2024-09-10 15:45:26.8719 5a2ff372-38cd-404e-83f8-94ba5dc38945 {"md5": "7f183407dff4c6d27bf062ce24b4f1ed", "pid": "040060055", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Werkstatt_f%C3%BCr_behinderte_Menschen&oldid=218572538f"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134017553", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85121315", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85121315"}], "authorized_access_point": "Sheltered workshops"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134017553", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11967806", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119678062"}], "authorized_access_point": "Entreprises adaptées"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254503145", "source": "GND"}, {"type": "bf:Nbn", "value": "XX552311", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX552311"}], "authorized_access_point": "Centros especiales de empleo"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970536852", "source": "GND"}, {"type": "bf:Nbn", "value": "10038025", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10038025"}], "authorized_access_point": "Behindertenwerkstätte"}], "identifier": "http://d-nb.info/gnd/4006005-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4006005-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040060055", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4006005-6", "source": "GND"}], "variant_access_point": ["Werkstatt für Behinderte", "Behindertenwerkstätte", "Behindertenwerkstatt", "Beschützende Werkstatt", "Förderwerkstatt", "Werkstatt für Menschen mit Behinderungen", "WfbM", "Werkstätte für Behinderte", "Geschützte Werkstatt"], "authorized_access_point": "Werkstatt für behinderte Menschen"} 1 +2024-09-10 15:45:27.001646 2024-09-10 15:45:27.001658 e35c638b-ee0a-414a-9ede-5a2ddfea3737 {"md5": "5e4b2f0855fcac8b4da79537c82de6a6", "pid": "040054020", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kalte Küche"}], "identifier": "http://d-nb.info/gnd/4005402-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4005402-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040054020", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4005402-0", "source": "GND"}], "variant_access_point": ["Butterbrot"], "authorized_access_point": "Belegtes Brot"} 1 +2024-09-10 15:45:27.101421 2024-09-10 15:45:27.101434 b37a01e0-29bd-4cc4-ab1d-a4e3a805ecd3 {"md5": "988221e3a0f91b6d7f197dc383b27d53", "pid": "040048543", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mängelrüge"}, {"authorized_access_point": "Mangel"}], "related": [{"authorized_access_point": "Bauschaden"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133626475", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11936918", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11936918g"}], "authorized_access_point": "Vices de construction"}], "identifier": "http://d-nb.info/gnd/4004854-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4004854-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040048543", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4004854-8", "source": "GND"}], "variant_access_point": ["Baumängel"], "authorized_access_point": "Baumangel"} 1 +2024-09-10 15:45:27.228247 2024-09-10 15:45:27.228259 c9db3e9e-8d4f-4d91-9a60-074cea49a0ef {"md5": "6e101fd53e4937672ea5e04e01c9b096", "pid": "040035506", "note": [{"label": ["Ein Aufsichtsrat ist das Organ einer Kapitalgesellschaft, das für die Überwachung der Geschäftsführung zuständig ist.", "Benutzt für das Deutsche und Internationale Recht; für das Schweizer Recht benutze Revisionsstelle; Aktiengesellschaft wird nicht als pleonastisch behandelt."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Board of directors"}, {"authorized_access_point": "Revisionsstelle"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134498152", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF14469068", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb14469068f"}], "authorized_access_point": "Conseils de surveillance"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966691369", "source": "GND"}, {"type": "bf:Nbn", "value": "12175-5", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/12175-5"}], "authorized_access_point": "Aufsichtsrat"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970534930", "source": "GND"}, {"type": "bf:Nbn", "value": "10034959", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10034959"}], "authorized_access_point": "Aufsichtsrat"}], "identifier": "http://d-nb.info/gnd/4003550-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4003550-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040035506", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4003550-5", "source": "GND"}], "authorized_access_point": "Aufsichtsrat"} 1 +2024-09-10 15:45:27.337859 2024-09-10 15:45:27.337873 7d9a631a-5e56-4891-8c0b-1ed83eaacec3 {"md5": "5e0598e06d1ea5cbe8af365b8419f87f", "pid": "04003500X", "note": [{"label": ["Nur bei Nachweis in den entsprechenden NSW Kompositum mit den aufzubereitenden Gut."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134037554", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11975726", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119757264"}], "authorized_access_point": "Transformation"}], "identifier": "http://d-nb.info/gnd/4003500-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4003500-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04003500X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4003500-1", "source": "GND"}], "variant_access_point": ["Aufbereiten"], "authorized_access_point": "Aufbereitung"} 1 +2024-09-10 15:45:28.874077 2024-09-10 15:45:28.874089 2cee682f-18fc-465f-b777-0a36d645a425 {"md5": "0e8433d41a356374d8a0f9ff1133400c", "pid": "1336763213", "note": [{"label": ["Internet - https://www.klingspor-museum.de/Schriftgiessereien.html"], "noteType": "dataSource"}, {"label": ["Entstehungszeit 1948"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1336763213", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1336763213", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1336763213", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1336763213", "source": "GND"}], "authorized_access_point": "Kumlien (Druckschrift)"} 1 +2024-09-10 15:45:27.447743 2024-09-10 15:45:27.447749 48c61234-3382-44be-a5c7-9c527ee067b3 {"md5": "32e29a820013b9ecfaed959296d687cf", "pid": "040030962", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Artistin"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333994648", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85026090", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85026090"}], "authorized_access_point": "Circus performers"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333994648", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13318653", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13318653g"}], "authorized_access_point": "Artistes de cirque"}], "identifier": "http://d-nb.info/gnd/4003096-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4003096-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040030962", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4003096-9", "source": "GND"}], "authorized_access_point": "Artist"} 1 +2024-09-10 15:45:27.53498 2024-09-10 15:45:27.535012 7398f865-504b-4790-9a32-0f4713169c58 {"md5": "92e32f7fda783f40e43f18067485f1f7", "pid": "040018040", "note": [{"label": ["Amtshaftung ist ein deliktsrechtlicher Sondertatbestand, der die persönliche Haftung einer hoheitlich handelnden Person wegen der schuldhaften Verletzung einer Amtspflicht vorsieht, die ihr gegenüber einem durch ihr Verhalten geschädigten Dritten obliegt."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Haftung"}], "related": [{"authorized_access_point": "Staatshaftung"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970531974", "source": "GND"}, {"type": "bf:Nbn", "value": "10035427", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10035427"}], "authorized_access_point": "Amtshaftung"}], "identifier": "http://d-nb.info/gnd/4001804-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4001804-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040018040", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4001804-0", "source": "GND"}], "variant_access_point": ["Beamtenhaftung", "Amtsträger", "Beamter"], "authorized_access_point": "Amtshaftung"} 1 +2024-09-10 15:45:27.655927 2024-09-10 15:45:27.655936 03c37d2c-0050-441e-b94d-a1e8e6f7569f {"md5": "5b4b215e96163c46369ce06b661c1f6e", "pid": "040009866", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Reflextherapie"}, {"authorized_access_point": "Alternative Medizin"}, {"authorized_access_point": "Erfahrungsheilkunde"}], "related": [{"authorized_access_point": "Akupressur"}, {"authorized_access_point": "Shiatsu"}, {"authorized_access_point": "Moxibustion"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332651356", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11930824", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11930824p"}], "authorized_access_point": "Acupuncture"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254402470", "source": "GND"}, {"type": "bf:Nbn", "value": "XX524567", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX524567"}], "authorized_access_point": "Acupuntura"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256189340", "source": "GND"}, {"type": "bf:Nbn", "value": "16160", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_16160"}], "authorized_access_point": "acupuncture"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1282203762", "source": "GND"}, {"type": "bf:Nbn", "value": "D026881", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D026881"}], "authorized_access_point": "Acupuncture"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970531125", "source": "GND"}, {"type": "bf:Nbn", "value": "10035005", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10035005"}], "authorized_access_point": "Akupunktur"}], "identifier": "http://d-nb.info/gnd/4000986-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4000986-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040009866", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4000986-5", "source": "GND"}], "authorized_access_point": "Akupunktur"} 1 +2024-09-10 15:45:27.763771 2024-09-10 15:45:27.763784 932977ef-d03b-4333-8baa-0343768bd8d7 {"md5": "54cc694c6d2066785f82537a32e9a65b", "pid": "040009327", "note": [{"label": ["Eine Aktie ist ein Gesellschaftsanteil an einer Aktiengesellschaft, einer Kommanditgesellschaft auf Aktien oder einer Societas Europaea."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Wertpapier"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113439179X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85128226", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85128226"}], "authorized_access_point": "Stocks"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113439179X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11967769", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11967769p"}], "authorized_access_point": "Actions de sociétés"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966676122", "source": "GND"}, {"type": "bf:Nbn", "value": "12232-5", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/12232-5"}], "authorized_access_point": "Aktie"}], "identifier": "http://d-nb.info/gnd/4000932-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4000932-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040009327", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4000932-4", "source": "GND"}], "authorized_access_point": "Aktie"} 1 +2024-09-10 15:45:27.875959 2024-09-10 15:45:27.875969 be0228fc-62a8-425d-8592-27357023f8bd {"md5": "2de20bf8670a5889f6a37b0548f493b2", "pid": "040004570", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Regelung"}], "related": [{"authorized_access_point": "Adaptives System"}, {"authorized_access_point": "Extremwertregelung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113457617X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85000803", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85000803"}], "authorized_access_point": "Adaptive control systems"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113457617X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11977921", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11977921f"}], "authorized_access_point": "Systèmes adaptatifs"}], "identifier": "http://d-nb.info/gnd/4000457-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4000457-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040004570", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4000457-0", "source": "GND"}], "variant_access_point": ["Adaptive Regelung"], "authorized_access_point": "Adaptivregelung"} 1 +2024-09-10 15:45:31.927944 2024-09-10 15:45:31.927954 e680ff84-b851-42b4-ab01-64e5f3c211d7 {"md5": "3108499970e1582f35114bd6402d3a0c", "pid": "1336035544", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifier": "http://d-nb.info/gnd/1336035544", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1336035544", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1336035544", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1336035544", "source": "GND"}], "authorized_access_point": "Infanterie (Motiv)"} 1 +2024-09-10 15:45:27.982258 2024-09-10 15:45:27.982269 4f1a2cd4-9981-4d98-85ee-b14fa315d8bc {"md5": "dcacbe38b51cc83ec4b0c7b583b2d841", "pid": "04000158X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Akronym"}, {"authorized_access_point": "Kurzzeichen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332649742", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11947909", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11947909z"}], "authorized_access_point": "Abréviations"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254332928", "source": "GND"}, {"type": "bf:Nbn", "value": "7958", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/7958"}], "authorized_access_point": "Abbreviazioni"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254400877", "source": "GND"}, {"type": "bf:Nbn", "value": "XX524425", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX524425"}], "authorized_access_point": "Abreviaturas"}], "identifier": "http://d-nb.info/gnd/4000158-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4000158-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04000158X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4000158-1", "source": "GND"}], "variant_access_point": ["Abbreviatur", "Kontraktion (Schrift)", "Abkürzungen"], "authorized_access_point": "Abkürzung"} 1 +2024-09-10 15:45:28.101335 2024-09-10 15:45:28.101343 fa4a651e-5f9e-485f-af88-8c87ebfa6fe9 {"md5": "a7eb352e024899850915e85f45bbbebb", "pid": "1336884932", "note": [{"label": ["Grundbegriff der Mengenlehre"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mengenlehre"}], "related": [{"authorized_access_point": "Summe"}], "identifier": "http://d-nb.info/gnd/1336884932", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1336884932", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1336884932", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1336884932", "source": "GND"}], "variant_access_point": ["Vereinigung (Mengenlehre)", "Union"], "authorized_access_point": "Vereinigungsmenge"} 1 +2024-09-10 15:45:28.220612 2024-09-10 15:45:28.220621 d9f0636d-b30f-4387-9451-b071536461fa {"md5": "368b52a04deef23cb559f3f0a7efef22", "pid": "1336884762", "note": [{"label": ["Eine Menge heißt messbar, wenn sie Element der Sigma-Algebra eines Messraums ist."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Maßtheorie"}, {"authorized_access_point": "Menge"}], "related": [{"authorized_access_point": "Messraum"}], "identifier": "http://d-nb.info/gnd/1336884762", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1336884762", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1336884762", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1336884762", "source": "GND"}], "variant_access_point": ["Measurable Set"], "authorized_access_point": "Messbare Menge"} 1 +2024-09-10 15:45:28.322792 2024-09-10 15:45:28.322801 a0f88fff-46b7-4140-91dc-c03fcd8210d1 {"md5": "d08d1842d9e30e455bc2735b4b3aa235", "pid": "1336876913", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/w/index.php?title=Hunde_people&oldid=1230006150"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Hunde-Sprache"}], "identifier": "http://d-nb.info/gnd/1336876913", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1336876913", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1336876913", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1336876913", "source": "GND"}], "variant_access_point": ["Bahunde", "Kihunde", "Kobi", "Rukobi"], "authorized_access_point": "Hunde (Volk)"} 1 +2024-09-10 15:45:28.426968 2024-09-10 15:45:28.42698 3b3dd981-3d27-4b37-9219-1faf0d3517fd {"md5": "a5350d6849962e0a20b112c0f190288a", "pid": "1336874678", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/w/index.php?title=Tchaman&oldid=1116117651"], "noteType": "dataSource"}, {"label": ["Ursprüngliche Namen waren Tchaman, Kyama, Gyama, Chaman oder Achan, Atchan; die Ethnie macht etwa 0,7 % der Bevölkerung der Elfenbeinküste aus."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Akan"}, {"authorized_access_point": "Kwa-Sprachen"}], "identifier": "http://d-nb.info/gnd/1336874678", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1336874678", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1336874678", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1336874678", "source": "GND"}], "variant_access_point": ["Atcha", "Cama", "Caman", "Chaman", "Gyaman", "Kyama", "Kyaman", "Tchaman", "Tsama", "Tshaman", "Tyama"], "authorized_access_point": "Ebrié"} 1 +2024-09-10 15:45:28.509287 2024-09-10 15:45:28.50929 6eb47d80-d24d-4a5d-a47c-c0465aa86a87 {"md5": "28f010c6fc21f9a3872a41cd4a20060f", "pid": "1336874414", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Gutbrod_Atlas&oldid=227463637"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Personenkraftwagen"}, {"authorized_access_point": "Nutzfahrzeug"}], "identifier": "http://d-nb.info/gnd/1336874414", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1336874414", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1336874414", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1336874414", "source": "GND"}], "authorized_access_point": "Gutbrod Atlas"} 1 +2024-09-10 15:45:28.580927 2024-09-10 15:45:28.580939 7efd78b0-1392-47a6-961f-d1be96c40ce7 {"md5": "f17352d8337bbff999c9bad814442075", "pid": "133686463X", "note": [{"label": ["Encyclopedia of Math - https://encyclopediaofmath.org/index.php?title=Banach_limit&oldid=39373"], "noteType": "dataSource"}, {"label": ["Verallgeminerung des Grenzwertbegriffs in der Funktionalanalysis"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Funktional"}], "related": [{"authorized_access_point": "Grenzwert (Mathematik)"}, {"authorized_access_point": "Hahn-Banach-Fortsetzungssatz"}], "identifier": "http://d-nb.info/gnd/133686463X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133686463X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133686463X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133686463X", "source": "GND"}], "variant_access_point": ["Banach Limit"], "authorized_access_point": "Banachlimes"} 1 +2024-09-10 15:45:28.993516 2024-09-10 15:45:28.993605 250f0534-a8a8-4fa8-aa0f-a335a27c28d1 {"md5": "c868c9c70374266028ae4a0dda7624a9", "pid": "1336761083", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Asuka-Zeit&oldid=238607348"], "noteType": "dataSource"}, {"label": ["Periode der japanischen Geschichte."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kofun"}, {"authorized_access_point": "Nara-Zeit"}], "identifier": "http://d-nb.info/gnd/1336761083", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1336761083", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1336761083", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1336761083", "source": "GND"}], "variant_access_point": ["Asuka jidai"], "authorized_access_point": "Asuka-Zeit"} 1 +2024-09-10 15:45:29.116735 2024-09-10 15:45:29.116749 d88082e1-2214-4683-a48e-3fc0fb9467a1 {"md5": "9ace1dfb43d57df5ffba935666c1f4b6", "pid": "1336749369", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Kalabresisch"}], "identifier": "http://d-nb.info/gnd/1336749369", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1336749369", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1336749369", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1336749369", "source": "GND"}], "authorized_access_point": "Mundart Kalabresisch (Siderno)"} 1 +2024-09-10 15:45:29.227366 2024-09-10 15:45:29.22737 37bdd18f-4975-43c2-a420-4e6a952e8db8 {"md5": "f54e5cae1d5feb02c9ba33e4c871f235", "pid": "1336591390", "note": [{"label": ["Chronik Borgentreich - https://chronik-borgentreich.jimdofree.com/1985-2005/", "Homepage Borgentreich - https://www.borgentreich.de/media/custom/2564_1496_1.PDF?1556095273"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Jubiläum"}], "identifier": "http://d-nb.info/gnd/1336591390", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1336591390", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1336591390", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1336591390", "source": "GND"}], "variant_access_point": ["Borgentreich (2005)", "725-Jahrfeier (Borgentreich)", "725-Jahr-Feier (Borgentreich)", "Siebenhundertfünfundzwanzig-Jahrfeier (Borgentreich)"], "authorized_access_point": "725-Jahr-Feier der Stadt Borgentreich"} 1 +2024-09-10 15:45:29.31905 2024-09-10 15:45:29.319061 3a5e086c-8f3e-4a59-b75d-05c7d2ef6129 {"md5": "09778465be9ca88b6f107b50e8c5bcd7", "pid": "1336589876", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Schlacht_um_Singapur"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schlacht"}], "related": [{"authorized_access_point": "Pazifikkrieg (1941-1945)"}], "identifier": "http://d-nb.info/gnd/1336589876", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1336589876", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1336589876", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1336589876", "source": "GND"}], "authorized_access_point": "Schlacht um Singapur"} 1 +2024-09-10 15:45:29.428437 2024-09-10 15:45:29.428451 2b728ac8-11cd-48ea-80d2-e7d92f314a64 {"md5": "04a3ad5c77e41f2b758680febe318d40", "pid": "133658873X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Japanische_Invasion_der_Malaiischen_Halbinsel"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Invasion"}], "related": [{"authorized_access_point": "Zweiter Weltkrieg"}], "identifier": "http://d-nb.info/gnd/133658873X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133658873X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133658873X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133658873X", "source": "GND"}], "variant_access_point": ["Invasion in die Federated Malay States", "Japanische Invasion in die Verbündeten Malaienstaaten", "Operation E"], "authorized_access_point": "Japanische Invasion der Malaiischen Halbinsel"} 1 +2024-09-10 15:45:29.538073 2024-09-10 15:45:29.538079 8c579c00-7b4e-4acd-bc28-b86b1f3cf3d6 {"md5": "f3790aca43f2441f9e81742b7a4973d9", "pid": "1336532009", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/w/index.php?oldid=1207537941"], "noteType": "dataSource"}, {"label": ["Interdisziplinäre akademische Disziplin, die sich mit dem Studium der pazifischen Region (Ozeanien) befasst"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kulturraumforschung"}], "identifier": "http://d-nb.info/gnd/1336532009", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1336532009", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1336532009", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1336532009", "source": "GND"}], "variant_access_point": ["Pazifikstudien", "Pacific Studies"], "authorized_access_point": "Pazifik-Studien"} 1 +2024-09-10 15:45:29.627206 2024-09-10 15:45:29.627219 648fa9de-f249-4960-9349-3a982d2481e8 {"md5": "81101972b58fc23a83d83aab41977c8f", "pid": "133646609X", "note": [{"label": ["Homepage Bochum - https://www.bochum.de/Kulturbuero/Dienstleistungen-und-Infos/Staedtische-Kulturpreise", "Kulturpreise.de - https://www.kulturpreise.de/web/preise_info.php?preisd_id=1765"], "noteType": "dataSource"}, {"label": ["Ältester Bochumer Kulturpreis, bis 1993 zunächst jährlich, danach alle 2 Jahre ausgelobt. Zweck des Preises ist die \\"Förderung der Auseinandersetzung mit den vielfältigen kreativen Möglichkeiten des Figurentheaters\\"."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Theaterpreis"}, {"authorized_access_point": "Kulturpreis"}], "related": [{"authorized_access_point": "Figurentheater"}, {"authorized_access_point": "Laienspiel"}], "identifier": "http://d-nb.info/gnd/133646609X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133646609X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133646609X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133646609X", "source": "GND"}], "variant_access_point": ["Fritz-Wortelmann-Preis der Stadt Bochum", "Fritz-Wortelmann-Preis der Stadt Bochum für das Amateurfigurentheater", "Wettbewerb um den Fritz-Wortelmann-Preis"], "authorized_access_point": "Fritz-Wortelmann-Preis"} 1 +2024-09-10 15:46:25.263186 2024-09-10 15:46:25.26319 feb84bf4-c7d2-42de-a02e-74b78b666f0f {"md5": "af66d0c6a44b6f121d684304c59a475f", "pid": "043001173", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4300117-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4300117-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043001173", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4300117-8", "source": "GND"}], "variant_access_point": ["Feuchtigkeitstransport", "Feuchtetransport"], "authorized_access_point": "Feuchteleitung"} 1 +2024-09-10 15:45:29.734762 2024-09-10 15:45:29.734775 a487c2f2-fe99-4540-a89c-1c1c6220073f {"md5": "f0835d5ec109b52cf956b41f3b9ec559", "pid": "1336401087", "note": [{"label": ["Medaille für besondere Verdienste um die Med Uni Graz"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Preis (Auszeichnung)"}], "related": [{"authorized_access_point": "Medizin"}], "identifier": "http://d-nb.info/gnd/1336401087", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1336401087", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1336401087", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1336401087", "source": "GND"}], "variant_access_point": ["Auenbrugger-Ehrenmedaille"], "authorized_access_point": "Auenbrugger Ehrenmedaille"} 1 +2024-09-10 15:45:29.851177 2024-09-10 15:45:29.851188 62104f64-eb4c-4f8e-bb94-47142a0efc6f {"md5": "f7bf6598b36da8d9342a5631cb8b1797", "pid": "1336381698", "note": [{"label": ["homepage - https://www.odins-haddeby.de"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gaststätte"}], "identifier": "http://d-nb.info/gnd/1336381698", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1336381698", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1336381698", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1336381698", "source": "GND"}], "authorized_access_point": "Odins Haithabu"} 1 +2024-09-10 15:45:29.980541 2024-09-10 15:45:29.98055 e4fe7c23-a616-4022-84f9-eeac89d86351 {"md5": "14cadcfb1ce9af5b98d298b185261d2d", "pid": "1336261625", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Angle-Klassifizierung"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336262486", "source": "GND"}, {"type": "bf:Nbn", "value": "D008313", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D008313"}], "authorized_access_point": "Malocclusion, Angle Class III"}], "identifier": "http://d-nb.info/gnd/1336261625", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1336261625", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1336261625", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1336261625", "source": "GND"}], "authorized_access_point": "Angle-Klasse III"} 1 +2024-09-10 15:45:30.09869 2024-09-10 15:45:30.098697 ae34ef8a-dffc-4315-8335-493221d2cf78 {"md5": "03c1c1c3250f7aad55f1724413a4ab14", "pid": "1336259086", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Blockierung_(Manuelle_Medizin)&oldid=244981953"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1336259086", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1336259086", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1336259086", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1336259086", "source": "GND"}], "variant_access_point": ["Reversible segmentale Dysfunktion"], "authorized_access_point": "Blockierung (Manuelle Medizin)"} 1 +2024-09-10 15:45:30.175002 2024-09-10 15:45:30.175004 fa819a73-9b56-466a-9741-1a5cbc68e4f0 {"md5": "d3fbaa1513e0909da9a7ffa9b070f68a", "pid": "1336255897", "note": [{"label": ["Entstehungszeit 1908; Varianten: Lichte Tam-Tam und Volle Tam-Tam"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifier": "http://d-nb.info/gnd/1336255897", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1336255897", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1336255897", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1336255897", "source": "GND"}], "authorized_access_point": "Tam-Tam (Druckschrift)"} 1 +2024-09-10 15:45:30.272594 2024-09-10 15:45:30.272609 5052e9f7-0487-4aba-9c8c-913c47f33710 {"md5": "1f359845e845264a5e8509770a71f36a", "pid": "1336255692", "note": [{"label": ["Entstehungszeit ca. 1908"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifier": "http://d-nb.info/gnd/1336255692", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1336255692", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1336255692", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1336255692", "source": "GND"}], "authorized_access_point": "Keilschrift (Druckschrift)"} 1 +2024-09-10 15:45:30.373539 2024-09-10 15:45:30.37355 84009efd-7cc4-4091-b00a-e038e1220992 {"md5": "ad1ec45c81c1a8a265af52234524611c", "pid": "1336255609", "note": [{"label": ["Entstehungszeit ca. 1908"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifier": "http://d-nb.info/gnd/1336255609", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1336255609", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1336255609", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1336255609", "source": "GND"}], "authorized_access_point": "Kegelschrift (Druckschrift)"} 1 +2024-09-10 15:45:30.487362 2024-09-10 15:45:30.487376 4bed34b5-7038-4700-a675-813d82415c21 {"md5": "18ca08226c99ee90ad2376e6a5132242", "pid": "1336248335", "note": [{"label": ["Entstehungszeit 1935"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1336248335", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1336248335", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1336248335", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1336248335", "source": "GND"}], "variant_access_point": ["Koch Kurrent"], "authorized_access_point": "Koch-Kurrent"} 1 +2024-09-10 15:45:30.581518 2024-09-10 15:45:30.581522 9d891ef7-cbd1-440e-b7b1-8613417219ad {"md5": "563c006d8f3654c292f8a53d6416566a", "pid": "1336235047", "note": [{"label": ["Art aus der Familie der Dickblattgewächse"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Dickblattgewächse"}], "identifier": "http://d-nb.info/gnd/1336235047", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1336235047", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1336235047", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1336235047", "source": "GND"}], "variant_access_point": ["Moos-Dickblatt", "Crassula tillaea"], "authorized_access_point": "Moosblümchen"} 1 +2024-09-10 15:45:30.65476 2024-09-10 15:45:30.654769 5f11363e-f7ab-47ac-ac4a-3d71e97cfee5 {"md5": "678b76691acc6a4c0ea25715f028ba5c", "pid": "1336230754", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Italienfeldzug_(Zweiter_Weltkrieg)&oldid=246969151"], "noteType": "dataSource"}, {"label": ["Feldzug der Alliierten gegen die Achsenmächte in Italien von 1943-1945"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Feldzug"}], "related": [{"authorized_access_point": "Zweiter Weltkrieg"}], "identifier": "http://d-nb.info/gnd/1336230754", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1336230754", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1336230754", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1336230754", "source": "GND"}], "authorized_access_point": "Italienfeldzug (1943-1945)"} 1 +2024-09-10 15:45:30.76763 2024-09-10 15:45:30.767637 76a4a730-db56-4708-8ffd-d6c78e33b5de {"md5": "4b2b152abcdd41210608f5c22723e185", "pid": "1336223200", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Fashwave&oldid=244165778"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Subkultur"}], "related": [{"authorized_access_point": "Faschismus"}, {"authorized_access_point": "Rechtsradikalismus"}], "identifier": "http://d-nb.info/gnd/1336223200", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1336223200", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1336223200", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1336223200", "source": "GND"}], "authorized_access_point": "Fashwave"} 1 +2024-09-10 15:45:30.88196 2024-09-10 15:45:30.88197 6b18ce4b-7864-454d-bfec-894a69dfaff1 {"md5": "0b979d3bc12d4fddcef3aebb76024812", "pid": "1336168528", "note": [{"label": ["Höhenverstellbares Trainingsgerät, z.B. für Step Aerobic"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Trainingsgerät"}], "identifier": "http://d-nb.info/gnd/1336168528", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1336168528", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1336168528", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1336168528", "source": "GND"}], "variant_access_point": ["Stepbank", "Step-Bench", "Stepperbrett", "Steppbrett", "Trittgerät", "Step (Trainingsgerät)", "Stepper (Aerobic)"], "authorized_access_point": "Stepbrett"} 1 +2024-09-10 15:45:31.005231 2024-09-10 15:45:31.005242 ae6ce9f6-037a-4baf-8260-7089719c1fdd {"md5": "f3b4ad8823b7458acc2c59dbe0eeae04", "pid": "1336166509", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifier": "http://d-nb.info/gnd/1336166509", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1336166509", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1336166509", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1336166509", "source": "GND"}], "authorized_access_point": "Stadtgeschichtsschreibung (Motiv)"} 1 +2024-09-10 15:45:31.126303 2024-09-10 15:45:31.126313 138fb295-4dbc-4dc1-8ead-c5cc120dba86 {"md5": "c5584ca6f74495b56e26ac35e0b79289", "pid": "1336144033", "note": [{"label": ["Encyclopedia of Math - https://encyclopediaofmath.org/index.php?title=Poincaré-Hopf_theorem&oldid=32943"], "noteType": "dataSource"}, {"label": ["Wichtiger Satz der Differentialtopologie. Bekannter Spezialfall ist der Satz vom Igel."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Differentialtopologie"}, {"authorized_access_point": "Indexformel"}], "identifier": "http://d-nb.info/gnd/1336144033", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1336144033", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1336144033", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1336144033", "source": "GND"}], "variant_access_point": ["Poincaré-Hopf-Indexformel", "Poincaré-Hopf-Indextheorem", "Hopf-Indextheorem", "Poincaré-Hopf Theorem"], "authorized_access_point": "Satz von Poincaré-Hopf"} 1 +2024-09-10 15:45:31.246194 2024-09-10 15:45:31.246205 9abae45e-21eb-4b85-b825-bcd61703ae5c {"md5": "3495687c80d0ed7bb379fd3e843755da", "pid": "1336140607", "note": [{"label": ["Entstehungszeit 1903"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1336140607", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1336140607", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1336140607", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1336140607", "source": "GND"}], "authorized_access_point": "Offenbacher Schwabacher"} 1 +2024-09-10 15:45:31.379129 2024-09-10 15:45:31.37914 e55f3ead-cda1-4302-aa4a-f19c800fc0e0 {"md5": "c25dbf10e8843bc44c3189a382dce05c", "pid": "1336136634", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Epimelet&oldid=220490949"], "noteType": "dataSource"}, {"label": ["Aufsichtsbeamter, der politische, wirtschaftliche und kultische Aufgaben wahrnimmt"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Beamter"}], "identifier": "http://d-nb.info/gnd/1336136634", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1336136634", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1336136634", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1336136634", "source": "GND"}], "authorized_access_point": "Epimelet"} 1 +2024-09-10 15:45:31.495302 2024-09-10 15:45:31.495311 822e0b0b-bc77-43dd-8ce5-61b16f1e2202 {"md5": "9fe8c74182a310385d55105ead891dc9", "pid": "1336125306", "note": [{"label": ["Schöneich, Svenja: 'On a Hot Day in the Field...' The Art of Writing Ethnographic Vignettes. In: Ethnoscripts 2021, 23 (1), S. 116-124 - http://nbn-resolving.de/urn:nbn:de:gbv:18-8-16664", "Wikipedia - https://en.wikipedia.org/w/index.php?oldid=1231406965"], "noteType": "dataSource"}, {"label": ["Vignetten sind erzählerische Beschreibungen von Szenen, die analytischen Schlussfolgerungen dienen (Ethnologie) oder sind in psychol. u. soziol. Experimenten die Darstellung hypothetischer Situationen, auf die Versuchsteilnehmer*innen reagieren u. dabei ihre Wahrnehmungen, Werte, sozialen Normen oder Eindrücke von Ereignissen offenbaren"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Forschungsmethode"}], "related": [{"authorized_access_point": "Faktorieller Survey"}, {"authorized_access_point": "Feldnotiz"}], "identifier": "http://d-nb.info/gnd/1336125306", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1336125306", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1336125306", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1336125306", "source": "GND"}], "variant_access_point": ["Fallvignette"], "authorized_access_point": "Vignette (Sozialwissenschaften)"} 1 +2024-09-10 15:45:32.062205 2024-09-10 15:45:32.062213 94775b06-548f-4f35-b59f-af8a38ccb460 {"md5": "aed46245e301c20ba5ded765b74279c1", "pid": "1336026758", "note": [{"label": ["NCBI-Taxonomy - https://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=1553505"], "noteType": "dataSource"}, {"label": ["Art aus der Familie der Glanzkäfer"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Glanzkäfer"}], "identifier": "http://d-nb.info/gnd/1336026758", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1336026758", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1336026758", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1336026758", "source": "GND"}], "authorized_access_point": "Ipidia binotata"} 1 +2024-09-10 15:45:32.179434 2024-09-10 15:45:32.179442 872fb76a-c6df-453a-87df-b4b7f02fddf0 {"md5": "e816cc98bdf13d05e05d68e2d014923e", "pid": "1336019883", "note": [{"label": ["NCBI-Taxonomy - https://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=1542538", "Wikipedia - https://de.wikipedia.org/w/index.php?title=St%C3%A4ngel-Blattschneiderbiene&oldid=224648687"], "noteType": "dataSource"}, {"label": ["Art aus der Familie der Bauchsammlerbienen, Gattung: Megachile"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bauchsammler (Megachilidae)"}], "identifier": "http://d-nb.info/gnd/1336019883", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1336019883", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1336019883", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1336019883", "source": "GND"}], "variant_access_point": ["Stängel-Blattschneiderbiene"], "authorized_access_point": "Megachile genalis"} 1 +2024-09-10 15:45:32.276804 2024-09-10 15:45:32.276813 ba3597e9-bb51-4d22-9edb-0d8040229033 {"md5": "d025e6f71e6d0a4eee983560079fa335", "pid": "1336015497", "note": [{"label": ["Internet - https://www.darpa.mil/program/mechanically-interlocked-materials"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Funktionswerkstoff"}, {"authorized_access_point": "Metallorganisches Netzwerk"}], "identifier": "http://d-nb.info/gnd/1336015497", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1336015497", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1336015497", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1336015497", "source": "GND"}], "variant_access_point": ["MIMs", "Mechanically Interlocked Materials"], "authorized_access_point": "Mechanisch verzahnter Werkstoff"} 1 +2024-09-10 15:45:32.375865 2024-09-10 15:45:32.375874 9d50b54a-6a0c-4d70-b361-e34139e8a7c5 {"md5": "6d53074b89dd3b09e02d5b5d6573d919", "pid": "1335982361", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Math-Rock&oldid=238152802"], "noteType": "dataSource"}, {"label": ["In den späten 80er Jahren entstandene Stilrichtung, die sich durch komplexe, atypische rhythmische Strukturen, abgehackte Melodien, Riffdominanz und dissonante Akkorde auszeichnet."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Rockmusik"}], "related": [{"authorized_access_point": "Progressive Rock"}], "identifier": "http://d-nb.info/gnd/1335982361", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335982361", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335982361", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335982361", "source": "GND"}], "variant_access_point": ["Math-Rock"], "authorized_access_point": "Math Rock"} 1 +2024-09-10 15:45:32.493072 2024-09-10 15:45:32.493082 082a4910-2741-4a08-99c4-789ece1dcfe5 {"md5": "13584666073bf6db68d63a9818acb9a4", "pid": "133595368X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Jubiläum"}], "identifier": "http://d-nb.info/gnd/133595368X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133595368X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133595368X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133595368X", "source": "GND"}], "variant_access_point": ["Breckerfeld - 600 Jahre Stadt", "Jubiläumsjahr 1996 (Breckerfeld)", "Breckerfeld (1996)"], "authorized_access_point": "Breckerfeld - 600 Jahre Stadtrechte"} 1 +2024-09-10 15:45:32.607956 2024-09-10 15:45:32.607968 ef0c77f2-ef19-4eaa-bcf1-24650b5dff05 {"md5": "2b019babb8f4c6041a32af83955378c1", "pid": "1335904158", "note": [{"label": ["670 Wikipedia - https://de.wikipedia.org/w/index.php?title=Piva_(Tanz)&oldid=243663985"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tanz"}], "identifier": "http://d-nb.info/gnd/1335904158", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335904158", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335904158", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335904158", "source": "GND"}], "authorized_access_point": "Piva (Tanz)"} 1 +2024-09-10 15:45:32.685953 2024-09-10 15:45:32.685957 5ca1a5ec-3b94-4757-94b7-0395072c9c08 {"md5": "9bdd1df093c59f3f43c1c398ba046445", "pid": "1335903623", "note": [{"label": ["670 Wikipedia - https://de.wikipedia.org/w/index.php?title=Halling&oldid=236383404"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Volkstanz"}], "identifier": "http://d-nb.info/gnd/1335903623", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335903623", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335903623", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335903623", "source": "GND"}], "variant_access_point": ["Hallingdans", "Lausdans", "Hallingdansen"], "authorized_access_point": "Halling"} 1 +2024-09-10 15:45:32.784032 2024-09-10 15:45:32.784037 12bc577d-5f8d-402e-9a01-4effab5371c3 {"md5": "68dbd93052bf99c1358931c44e2cb01f", "pid": "1335900330", "note": [{"label": ["670 Wikipedia - https://de.wikipedia.org/w/index.php?title=Hopak&oldid=243940069"], "noteType": "dataSource"}, {"label": ["Laut Wikipedia (eng.) sind Tropak und Hopak verwandt (\\"The tropak shares many musical and choreographic characteristics with the better known hopak.\\"). Daher die Quasisynonymie."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Volkstanz"}], "identifier": "http://d-nb.info/gnd/1335900330", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335900330", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335900330", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335900330", "source": "GND"}], "variant_access_point": ["Gopak", "Trepak", "Tropak"], "authorized_access_point": "Hopak"} 1 +2024-09-10 15:45:32.939852 2024-09-10 15:45:32.939863 69d3394d-7453-4bf2-8ff9-4c6485c0d7f3 {"md5": "20606260f813164cb26748f34c128892", "pid": "1335882758", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Mundart Mittelitalienisch (Latium)"}], "identifier": "http://d-nb.info/gnd/1335882758", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335882758", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335882758", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335882758", "source": "GND"}], "authorized_access_point": "Mundart Mittelitalienisch, Latium (Anagni)"} 1 +2024-09-10 15:45:33.045141 2024-09-10 15:45:33.04515 19efa4ec-c681-4378-bf83-53cb9e7e6b5f {"md5": "6a62577cccc80c67d43f70c8e468eef5", "pid": "1335881247", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/w/index.php?oldid=1219699028"], "noteType": "dataSource"}, {"label": ["Interdisziplinäre akademische Disziplin, die sich mit dem Studium der Chicano-Kultur befasst"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kulturraumforschung"}], "related": [{"authorized_access_point": "Chicano Movement"}, {"authorized_access_point": "Chicanos"}], "identifier": "http://d-nb.info/gnd/1335881247", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335881247", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335881247", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335881247", "source": "GND"}], "variant_access_point": ["Chicano/a studies", "Chicana studies", "Xicano studies", "Chicana and Chicano Studies", "Mexican American studies"], "authorized_access_point": "Chicano Studies"} 1 +2024-09-10 15:45:33.164026 2024-09-10 15:45:33.16404 3a9819a7-1adf-4028-a401-26282e9647d0 {"md5": "2360f086dce5916d398e104607bf89a9", "pid": "133582569X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Neotantra&oldid=245226944"], "noteType": "dataSource"}, {"label": ["in den 70en Jahren, im Westen entstandene Lehre und Lebenspraxis, in der die sexuellen Aspekte des Tantra im Vordergrund stehen."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Tantrismus"}, {"authorized_access_point": "Esoterik"}], "identifier": "http://d-nb.info/gnd/133582569X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133582569X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133582569X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133582569X", "source": "GND"}], "variant_access_point": ["Navatantra"], "authorized_access_point": "Neotantra"} 1 +2024-09-10 15:45:33.265839 2024-09-10 15:45:33.265848 579b60f4-33a1-499c-9250-1de467b003ce {"md5": "caed0fc0122cc4ba0ee9f850f20806de", "pid": "1335777539", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Step-Aerobic&oldid=244133339"], "noteType": "dataSource"}, {"label": ["Aerobes Gruppenfitnesstraining nach Musik, das mit einem höhenverstellbaren Stepbrett durchgeführt wird"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1335777539", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335777539", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335777539", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335777539", "source": "GND"}], "variant_access_point": ["Step Aerobic", "Step-Training"], "authorized_access_point": "Step-Aerobic"} 1 +2024-09-10 15:45:33.450514 2024-09-10 15:45:33.450518 4b56edd7-6f7e-47b8-860f-fc9ebbec88e4 {"md5": "b7462f49c32935866b98d769c9a9bc66", "pid": "1335762779", "note": [{"label": ["Internet - https://www.ipm.fraunhofer.de/de/gf/energiewandler-thermische/komp/kalorische-systeme/elastokalorische-systeme.html"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kältetechnik"}], "identifier": "http://d-nb.info/gnd/1335762779", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335762779", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335762779", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335762779", "source": "GND"}], "variant_access_point": ["Elastokalorischer Effekt"], "authorized_access_point": "Elastokalorisches System"} 1 +2024-09-10 15:45:33.52481 2024-09-10 15:45:33.524813 7adc3d6a-aaf8-42f8-8f9c-ef91f7b82ad6 {"md5": "bd1d7102c5171d0343764a82207352b1", "pid": "1335752897", "note": [{"label": ["Homepage Bielefeld - https://historischer-rueckklick-bielefeld.com/2019/07/01/01072019/"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Jubiläum"}], "identifier": "http://d-nb.info/gnd/1335752897", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335752897", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335752897", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335752897", "source": "GND"}], "variant_access_point": ["1000 Jahre Schildesche", "Ortsjubiläum von Schildesche 1939", "Tausendjahrfeier von Schildesche 1939", "Bielefeld-Schildesche (1939)", "Bielefeld-Schildesche", "Schildesche (1939)"], "authorized_access_point": "Tausendjahrfeier Schildesche"} 1 +2024-09-10 15:45:33.591561 2024-09-10 15:45:33.591564 05ffff9a-466e-4f4b-bc4b-b37aec411aee {"md5": "069501b597448540d2858c72748af09f", "pid": "133575086X", "note": [{"label": ["militärischer Konflikt zwischen England und Frankreich, der hauptsächlich in der Gascogne sowie in Flandern ausgetragen wurde."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/133575086X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133575086X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133575086X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133575086X", "source": "GND"}], "variant_access_point": ["Englisch-französischer Krieg (1294-1303)", "Guerre de Guyenne", "Gascon war"], "authorized_access_point": "Französisch-englischer Krieg (1294-1303)"} 1 +2024-09-10 15:45:34.450738 2024-09-10 15:45:34.450749 05d22cd2-c59f-4fc9-b51a-afa64a01d476 {"md5": "01efde92d0096233e40d743b021f16f0", "pid": "1335484930", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Medienkunst&oldid=244560852"], "noteType": "dataSource"}, {"label": ["Künstler der sich unterschiedlicher audiovisueller Medien (Radio, Film, Fernsehen, Video, Computer und Internet) bedient"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Künstler"}], "related": [{"authorized_access_point": "Medienkünstlerin"}], "identifier": "http://d-nb.info/gnd/1335484930", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335484930", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335484930", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335484930", "source": "GND"}], "authorized_access_point": "Medienkünstler"} 1 +2024-09-10 15:45:33.652978 2024-09-10 15:45:33.65298 5eeab6a6-64b5-4536-b563-2a8b0000e7f6 {"md5": "60bc0db937cbfc74efc71b8223ab9f69", "pid": "1335736832", "note": [{"label": ["AAT - http://vocab.getty.edu/page/aat/300027201", "Thomas, S.: Beobachtungsprotokolle und Feldnotizen. In: Ethnografie. Qualitative Sozialforschung. Springer, 2019. - https://doi.org/10.1007/978-3-531-94218-6_5", "Dellwing; Prus: Einführung in die interaktionistische Ethnografie. Springer, 2012, S. 163-171. - https://doi.org/10.1007/978-3-531-94265-0_5"], "noteType": "dataSource"}, {"label": ["Notizen, die von Forschenden im Laufe der Feldforschung bzw. Vermessung aufgezeichnet werden"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Feldforschung"}, {"authorized_access_point": "Qualitative Sozialforschung"}], "identifier": "http://d-nb.info/gnd/1335736832", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335736832", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335736832", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335736832", "source": "GND"}], "variant_access_point": ["Feldnotizen", "Feldbuch", "Beobachtungsprotokoll"], "authorized_access_point": "Feldnotiz"} 1 +2024-09-10 15:45:33.717152 2024-09-10 15:45:33.717156 d63e228d-6ee0-466d-8377-346e1a67ac98 {"md5": "1f0de41df487ff3ae8cc328dc63b12bb", "pid": "1335733086", "note": [{"label": ["Benutzt, soweit im Ausland lebend"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ausländischer Schüler"}, {"authorized_access_point": "Ukrainer"}], "identifier": "http://d-nb.info/gnd/1335733086", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335733086", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335733086", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335733086", "source": "GND"}], "authorized_access_point": "Ukrainischer Schüler"} 1 +2024-09-10 15:45:33.833723 2024-09-10 15:45:33.833731 fd172b28-381d-4bc0-a66a-a8d91e062b95 {"md5": "94edcd54900b48270eaedd9915e3e98f", "pid": "1335729577", "note": [{"label": ["Nach 2009 als \\"Umwelt- und Klimaschutzpreis\\" fortgeführt und alle 2 Jahre verliehen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Preis (Auszeichnung)"}], "related": [{"authorized_access_point": "Umweltschutz"}], "identifier": "http://d-nb.info/gnd/1335729577", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335729577", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335729577", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335729577", "source": "GND"}], "variant_access_point": ["Umweltpreis (Bielefeld)"], "authorized_access_point": "Umweltpreis der Stadt Bielefeld"} 1 +2024-09-10 15:45:33.995591 2024-09-10 15:45:33.995621 8c105916-1a68-40c2-a869-d3a7723e5b9c {"md5": "9e1716e4d41a919cf888f75a3cb90a21", "pid": "1335727701", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/w/index.php?oldid=1021987957", "Evens; Handelman: The Manchester School: Practice and Ethnographic Praxis in Anthropology. Berghahn, 2006 - https://doi.org/10.1515/9780857458582"], "noteType": "dataSource"}, {"label": ["Die Manchester School of Anthropology ist eine interaktionistische Richtung der britischen Ethnologie, die vom Department of Social Anthropology der Victoria University of Manchester ausging, federführend war Max Gluckman"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sozialanthropologie"}], "identifier": "http://d-nb.info/gnd/1335727701", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335727701", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335727701", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335727701", "source": "GND"}], "variant_access_point": ["Manchester School of Anthropology"], "authorized_access_point": "Manchester School"} 1 +2024-09-10 15:45:34.105001 2024-09-10 15:45:34.105012 ef14c671-859f-4869-a775-91e336204b13 {"md5": "afbb86f7726cbc1aec4f0f0642dcba02", "pid": "1335528539", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Moritz_von_Oraniens_Feldzug_von_1597&oldid=236205338"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Feldzug"}], "related": [{"authorized_access_point": "Achtzigjähriger Krieg"}], "identifier": "http://d-nb.info/gnd/1335528539", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335528539", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335528539", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335528539", "source": "GND"}], "variant_access_point": ["Moritz von Oraniens Feldzug von 1597", "Moritz' Feldzug von 1597"], "authorized_access_point": "Moritz von Oraniens Feldzug (1597)"} 1 +2024-09-10 15:45:34.215987 2024-09-10 15:45:34.215991 afe79421-c7fd-4839-b019-be31768c6b1d {"md5": "9272c271943f92dcb4433bc76769bfa9", "pid": "1335514767", "note": [{"label": ["UNESCO - https://ich.unesco.org/en/RL/nguon-rituals-of-governance-and-associated-expressions-in-the-bamoun-community-01955", "Wikipedia - https://de.wikipedia.org/w/index.php?title=Königreich_Bamum&oldid=240119185#Nguon"], "noteType": "dataSource"}, {"label": ["Die über 600 Jahre alten Nguon-Rituale zwischen dem Mfon, dem Monarchen, und seinem Volk gelten als Quelle des sozialen Zusammenhalts und Widerstandsfähigkeit, sie werden von der Bamoun-Gemeinschaft in der Westregion Kameruns durchgeführt."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ritual"}], "related": [{"authorized_access_point": "Bamum"}], "identifier": "http://d-nb.info/gnd/1335514767", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335514767", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335514767", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335514767", "source": "GND"}], "authorized_access_point": "Nguon"} 1 +2024-09-10 15:45:34.337025 2024-09-10 15:45:34.337038 f2d33fc3-cc06-4d77-9d2f-33098022cb3f {"md5": "3112fe226f089670d27037fed8486316", "pid": "1335503307", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Avro_Shackleton&oldid=230785070"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Aufklärungsflugzeug"}], "identifier": "http://d-nb.info/gnd/1335503307", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335503307", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335503307", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335503307", "source": "GND"}], "variant_access_point": ["Shackleton (Flugzeug)"], "authorized_access_point": "Avro 696 Shackleton"} 1 +2024-09-10 15:45:34.552145 2024-09-10 15:45:34.552158 eb5eb852-d3eb-440d-887c-036528134aae {"md5": "f4e5b5b6d90bfbd292875f40774424e3", "pid": "1335484639", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Medienkunst&oldid=244560852"], "noteType": "dataSource"}, {"label": ["Künstlerin die die sich unterschiedlicher audiovisueller Medien (Radio, Film, Fernsehen, Video, Computer und Internet) bedient"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Künstlerin"}], "related": [{"authorized_access_point": "Medienkünstler"}], "identifier": "http://d-nb.info/gnd/1335484639", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335484639", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335484639", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335484639", "source": "GND"}], "authorized_access_point": "Medienkünstlerin"} 1 +2024-09-10 15:45:34.671643 2024-09-10 15:45:34.671649 1584928c-e3be-4442-89f5-7a22bd83c1b5 {"md5": "8c34565513791e2446b838e3f0f7daa9", "pid": "1335475753", "note": [{"label": ["Larner, A. J.: A dictionary of neurological signs. Springer, 2016, 4. Aufl., S. 139 - https://doi.org/10.1007/978-3-319-29821-4", "MeSH - https://id.nlm.nih.gov/mesh/D000090206.html", "Wikipedia - https://de.wikipedia.org/w/index.php?oldid=243986138", "Du. - https://www.duden.de/rechtschreibung/Gaslighting"], "noteType": "dataSource"}, {"label": ["Form der gezielten psychologischen Manipulation, bei dem ein Opfer dazu gebracht wird, seine Wahrnehmungen der Realität inkl. Erinnerungen u.a. in Frage zu stellen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Manipulation"}], "related": [{"authorized_access_point": "Emotionaler Missbrauch"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "uri", "value": "https://id.nlm.nih.gov/mesh/D000090206.html"}], "authorized_access_point": "Gaslighting"}], "identifier": "http://d-nb.info/gnd/1335475753", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335475753", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335475753", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335475753", "source": "GND"}], "variant_access_point": ["Gaslight Phenomenon", "Gaslight Syndrome", "Gaslichtern", "Gas-lighting"], "authorized_access_point": "Gaslighting"} 1 +2024-09-10 15:45:34.735128 2024-09-10 15:45:34.735132 37ade783-baef-4afc-bd1d-7b8d0a6d6b55 {"md5": "f80d45677e8c558133a1fa396e837207", "pid": "1335475575", "note": [{"label": ["Internet - https://www.plastverarbeiter.de/markt/die-perfekte-welle.html"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schnecke (Maschinenbau)"}], "related": [{"authorized_access_point": "Extruder"}], "identifier": "http://d-nb.info/gnd/1335475575", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335475575", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335475575", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335475575", "source": "GND"}], "variant_access_point": ["Wave-Schnecke"], "authorized_access_point": "Wellenschnecke"} 1 +2024-09-10 15:45:34.819792 2024-09-10 15:45:34.8198 79897b60-b942-412b-b4ee-194350740324 {"md5": "ea9769c60d2785ee5da141c3463dc0f3", "pid": "1335348379", "note": [{"label": ["Seit 2017 vergebenes Stipendium an Kunstvermittler*innen."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kulturpreis"}, {"authorized_access_point": "Stipendium"}], "related": [{"authorized_access_point": "Kunstvermittlung"}], "identifier": "http://d-nb.info/gnd/1335348379", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335348379", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335348379", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335348379", "source": "GND"}], "variant_access_point": ["Stipendium Volkswagen Fellowship für Kunstvermittlung", "Volkswagen Fellowship für Kunstvermittlung an der Städtischen Galerie Wolfsburg", "Volkswagen Group Fellowship", "Volkswagen Fellowship"], "authorized_access_point": "Volkswagen Fellowship für Kunstvermittlung"} 1 +2024-09-10 15:45:34.927534 2024-09-10 15:45:34.927542 67c82bcd-20ba-4351-8d7c-1cdba07971c6 {"md5": "b34cfd8989ed9a98984161ef0b834a9f", "pid": "1335334955", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/w/index.php?title=Liouville_field_theory&oldid=1231830939", "ncatlab - https://ncatlab.org/nlab/show/Liouville+theory"], "noteType": "dataSource"}, {"label": ["Zweidimensionale konforme Feldtheorie, deren klassische Bewegungsgleichungen auf einer Verallgemeinerung der Liouville-Gleichung beruhen."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zweidimensionale konforme Feldtheorie"}, {"authorized_access_point": "Liouville-Gleichung"}], "related": [{"authorized_access_point": "Quantengravitation"}], "identifier": "http://d-nb.info/gnd/1335334955", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335334955", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335334955", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335334955", "source": "GND"}], "variant_access_point": ["Liouville-Quantengravitation", "Liouville Field Theory", "Liouville Theory", "Liouville Quantum Gravity"], "authorized_access_point": "Liouville-Feldtheorie"} 1 +2024-09-10 15:45:35.025439 2024-09-10 15:45:35.025448 ee0957dc-50ab-45f3-be35-d2e62ba96210 {"md5": "390f749bcb677e5076fd5d3b3a9fbfc7", "pid": "1335332510", "note": [{"label": ["OBV - https://permalink.obvsg.at/AC12153949", "Wikipedia - https://de.wikipedia.org/w/index.php?title=Priorisierung_medizinischer_Leistungen&oldid=212761464"], "noteType": "dataSource"}, {"label": ["Vorrangigkeit bestimmter Indikationen, Patientengruppen od. Verfahren vor anderen; nicht ident mit Rationierung"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gesundheitspolitik"}, {"authorized_access_point": "Medizinische Versorgung"}], "identifier": "http://d-nb.info/gnd/1335332510", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335332510", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335332510", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335332510", "source": "GND"}], "variant_access_point": ["Priorisierung (Gesundheitswesen)", "Priorisierung medizinischer Leistungen", "Medizinische Priorisierung"], "authorized_access_point": "Priorisierung"} 1 +2024-09-10 15:45:35.144165 2024-09-10 15:45:35.144175 c6cfd0e1-8a3e-4e00-9e4d-b331e28b6b8c {"md5": "6c033b8c560ff2b6ed5861c02e7d30b5", "pid": "1335327541", "note": [{"label": ["Benutze Kombination \\"Mamma AND Krankheit\\" für weitere Treffer"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Krankheit"}], "related": [{"authorized_access_point": "Senologie"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1335330070", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85016683", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85016683"}], "authorized_access_point": "Breast - Diseases"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1335330070", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11938410", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11938410t"}], "authorized_access_point": "Sein - Maladies"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1335329935", "source": "GND"}, {"type": "bf:Nbn", "value": "D001941", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D001941"}], "authorized_access_point": "Breast Diseases"}], "identifier": "http://d-nb.info/gnd/1335327541", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335327541", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335327541", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335327541", "source": "GND"}], "variant_access_point": ["Brusterkrankung", "Brustkrankheiten", "Brusterkrankungen"], "authorized_access_point": "Brustkrankheit"} 1 +2024-09-10 15:45:35.267233 2024-09-10 15:45:35.267242 b168fe36-58bb-4355-859c-c8dca1e0766f {"md5": "f051e4cf1d1452865eb7d4e0fd5f2d56", "pid": "1335263977", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Permutaeder&oldid=244419551"], "noteType": "dataSource"}, {"label": ["Konvexes Polytop, dessen Ecken sich als Permutation des Vektors (1,2,…,n) definieren."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Konvexes Polytop"}], "related": [{"authorized_access_point": "Permutation"}], "identifier": "http://d-nb.info/gnd/1335263977", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335263977", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335263977", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335263977", "source": "GND"}], "variant_access_point": ["Permutohedron", "Permutahedron"], "authorized_access_point": "Permutaeder"} 1 +2024-09-10 15:45:35.377803 2024-09-10 15:45:35.377814 df299861-da8e-4fbc-bc9a-0473b2984742 {"md5": "8def4acea529f33f798ab30626db8bc6", "pid": "1335255869", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Stadtkreis_(Russland)&oldid=229834610"], "noteType": "dataSource"}, {"label": ["in der Russischen Föderation eine Verwaltungseinheit im Rahmen der lokalen Selbstverwaltung"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Verwaltungseinheit"}], "identifier": "http://d-nb.info/gnd/1335255869", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335255869", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335255869", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335255869", "source": "GND"}], "variant_access_point": ["Gorodskoi Okrug", "Gorodskoj okrug"], "authorized_access_point": "Stadtkreis (Russland)"} 1 +2024-09-10 15:45:35.502055 2024-09-10 15:45:35.502066 e3f5ff2c-a6c8-4168-a89d-e2afc0d5056f {"md5": "e9a6df13aff3ed30b2509cd281f579a2", "pid": "1335237232", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Preis (Auszeichnung)"}], "related": [{"authorized_access_point": "Umweltschutz"}], "identifier": "http://d-nb.info/gnd/1335237232", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335237232", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335237232", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335237232", "source": "GND"}], "authorized_access_point": "Umweltpreis der Stadt Bergkamen"} 1 +2024-09-10 15:45:35.607627 2024-09-10 15:45:35.607639 556181ae-4d17-434d-934f-a5cdfcb5367b {"md5": "01db30e9f0dc4c8970a0ed7613c0de73", "pid": "1335237046", "note": [{"label": ["Spektrum Lex. Psychol. (online) - https://www.spektrum.de/lexikon/psychologie/schismogenese/13471", "Wikipedia - https://de.wikipedia.org/w/index.php?oldid=245926045"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Gruppendynamik"}], "identifier": "http://d-nb.info/gnd/1335237046", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335237046", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335237046", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335237046", "source": "GND"}], "variant_access_point": ["Schismogenesis"], "authorized_access_point": "Schismogenese"} 1 +2024-09-10 15:45:35.723445 2024-09-10 15:45:35.723449 653fe2f3-c220-465f-b67e-4c692d6ab118 {"md5": "c969c26856e11a46aa1b81ce7cef85a4", "pid": "133523490X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=228402100"], "noteType": "dataSource"}, {"label": ["Unter Rationalisierung ist in der Soziologie der umfassende Prozess zu verstehen, in dem alle gesellschaftlichen Phänomene der Vernunft unterworfen werden"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Soziologie"}], "related": [{"authorized_access_point": "Vernunft"}], "identifier": "http://d-nb.info/gnd/133523490X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133523490X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133523490X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133523490X", "source": "GND"}], "authorized_access_point": "Rationalisierung (Soziologie)"} 1 +2024-09-10 15:45:36.598876 2024-09-10 15:45:36.598884 b8d9268e-c43a-47c3-bd37-2e4d7d09ea2e {"md5": "d9fbdc7e89ae6a1d108d97db85ecc7af", "pid": "1334906815", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ortsname"}], "identifier": "http://d-nb.info/gnd/1334906815", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334906815", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334906815", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334906815", "source": "GND"}], "authorized_access_point": "Finnentrop (Ortsname)"} 1 +2024-09-10 15:45:35.79315 2024-09-10 15:45:35.793162 1c07eb2c-352e-4f2d-80b3-5d11165fc11f {"md5": "d14c6d0c99ca399b3f25125687ec3319", "pid": "1335228187", "note": [{"label": ["Rameau - https://data.bnf.fr/ark:/12148/cb17034367t", "Wikipedia - https://de.wikipedia.org/w/index.php?oldid=236304205"], "noteType": "dataSource"}, {"label": ["Formen der Wirtschaft, bei denen natürliche Ressourcen entnommen, genutzt und vermarktet werden"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Rohstoffwirtschaft"}, {"authorized_access_point": "Entwicklungsmodell"}], "related": [{"authorized_access_point": "Ausbeutung"}, {"authorized_access_point": "Subsistenzwirtschaft"}, {"authorized_access_point": "Rohstoffexport"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17034367t"}], "authorized_access_point": "Extractivisme"}], "identifier": "http://d-nb.info/gnd/1335228187", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335228187", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335228187", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335228187", "source": "GND"}], "variant_access_point": ["Neo-Extraktivismus", "Neuextraktivismus"], "authorized_access_point": "Extraktivismus"} 1 +2024-09-10 15:45:35.905567 2024-09-10 15:45:35.905574 4efcb062-8757-4192-863b-0f478aa8ae6f {"md5": "1027f9f120c68eb89820b14ffec7fd35", "pid": "1335212299", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Jubiläum"}], "identifier": "http://d-nb.info/gnd/1335212299", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335212299", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335212299", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335212299", "source": "GND"}], "variant_access_point": ["Siebenhundertfünfundsiebzig Jahre Stadt Borken", "Borken (Westf.) (2001)"], "authorized_access_point": "775 Jahre Stadt Borken"} 1 +2024-09-10 15:45:36.013957 2024-09-10 15:45:36.01397 85cccccd-2f81-4b15-a574-e42efb7d3a4f {"md5": "62114d7d9b3d66f140585f2fb4cc54d8", "pid": "133521075X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Jubiläum"}], "identifier": "http://d-nb.info/gnd/133521075X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133521075X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133521075X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133521075X", "source": "GND"}], "variant_access_point": ["700-Jahrfeier der Stadt Borken", "700-Jahr-Feier der Stadt Borken 1926", "Siebenhundert-Jahr-Feier der Stadt Borken", "Borken (Westf.) (1926)"], "authorized_access_point": "700-Jahr-Feier der Stadt Borken"} 1 +2024-09-10 15:45:36.115654 2024-09-10 15:45:36.11567 72419f49-4b79-4303-ac6e-5fe4dccea02d {"md5": "f8010065aec34fa68b421a320c98e226", "pid": "1335201068", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Vorarlberger_Volkserhebung_1809&oldid=208849160"], "noteType": "dataSource"}, {"label": ["gewaltsamer Widerstand der Bevölkerung des österreichischen Landes Vorarlberg gegen die bayerische Fremdherrschaft im Rahmen des Österreichisch-Französischen Kriegs"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Aufstand"}], "related": [{"authorized_access_point": "Österreichisch-Französischer Krieg (1809)"}], "identifier": "http://d-nb.info/gnd/1335201068", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335201068", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335201068", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335201068", "source": "GND"}], "variant_access_point": ["Vorarlberger Volksaufstand (1809)", "Vorarlberger Aufstand (1809)", "Vorarlberger Erhebung (1809)"], "authorized_access_point": "Vorarlberger Volkserhebung (1809)"} 1 +2024-09-10 15:45:36.235128 2024-09-10 15:45:36.235138 6c9f8f1b-3019-41e3-9a6a-ca82ac59e152 {"md5": "448b56eb9bab9e413fb1d98599262b7b", "pid": "1335134549", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Jubiläum"}], "identifier": "http://d-nb.info/gnd/1335134549", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335134549", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335134549", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335134549", "source": "GND"}], "variant_access_point": ["700-Jahrfeier der Stadt Beckum 1924", "Siebenhundert-Jahrfeier der Stadt Beckum", "Beckum (1924)"], "authorized_access_point": "700-Jahrfeier der Stadt Beckum"} 1 +2024-09-10 15:45:36.382058 2024-09-10 15:45:36.382067 40633899-46a8-43c5-a1fd-8733f4609f65 {"md5": "42b9204107f6cd30b101c4f7fc3cab73", "pid": "1335054405", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/w/index.php?&oldid=1232080765", "Singer; Snipes: Generations of Suffering: Experiences of a Treatment Program for Substance Abuse During Pregnancy, 1992, S. 225 - https://doi.org/10.1353/hpu.2010.0180", "Medico International: Pandemie? Syndemie! - https://www.medico.de/pandemie-syndemie-18186"], "noteType": "dataSource"}, {"label": ["Eine Syndemie ist eine Reihe miteinander verflochtener und sich gegenseitig verstärkender Gesundheitsprobleme, die im Zusammenwirken mit schädlichen sozialen und physischen Bedingungen die Gesamtkrankheitslast und den Gesundheitszustand einer Bevölkerung erheblich beeinflussen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sozialepidemiologie"}], "related": [{"authorized_access_point": "Pandemie"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336048573", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2014100257", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2014100257"}], "authorized_access_point": "Syndemics"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336048115", "source": "GND"}, {"type": "bf:Nbn", "value": "D000076603", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D000076603"}], "authorized_access_point": "Syndemic"}], "identifier": "http://d-nb.info/gnd/1335054405", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335054405", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335054405", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335054405", "source": "GND"}], "authorized_access_point": "Syndemie"} 1 +2024-09-10 15:45:36.489056 2024-09-10 15:45:36.489065 fc75da1b-96a9-4191-9605-1d1b55aa0188 {"md5": "698974717b5ab96cc1115d48d47c6643", "pid": "1334935475", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Spektrum_(Topologie)&oldid=200053574", "Encyclopedia of Math - https://encyclopediaofmath.org/index.php?title=Spectrum_of_spaces&oldid=52273"], "noteType": "dataSource"}, {"label": ["In der algebraischen Topologie werden Spektren zur Definition verallgemeinerter Homologietheorien benutzt."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Spektrum (Mathematik)"}, {"authorized_access_point": "Algebraische Topologie"}], "related": [{"authorized_access_point": "Homotopietheorie"}], "identifier": "http://d-nb.info/gnd/1334935475", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334935475", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334935475", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334935475", "source": "GND"}], "variant_access_point": ["Spectrum of Spaces"], "authorized_access_point": "Spektrum (Topologie)"} 1 +2024-09-10 15:45:36.699562 2024-09-10 15:45:36.699571 b82d71d9-c67f-4624-90b1-0dd641d66c2d {"md5": "7990fd8e02ae0350fa11a8a0772155a7", "pid": "1334879079", "note": [{"label": ["Sammlung wichtiger Stellen aus Opern, Konzerten usw. für ein bestimmtes Instrument"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Musikalien"}], "identifier": "http://d-nb.info/gnd/1334879079", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334879079", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334879079", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334879079", "source": "GND"}], "authorized_access_point": "Orchesterstudien"} 1 +2024-09-10 15:45:36.777147 2024-09-10 15:45:36.777154 1c248ce4-c0a5-44ab-ac68-b277f16024f4 {"md5": "bf25653649fb562f39a3f8aa2acc3ac2", "pid": "1334810524", "note": [{"label": ["Darstellungsweise des Laubwerks in der bildenden Kunst", "Ohne IZ Motiv"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}, {"authorized_access_point": "Landschaftsmalerei"}], "identifier": "http://d-nb.info/gnd/1334810524", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334810524", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334810524", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334810524", "source": "GND"}], "authorized_access_point": "Baumschlag (Landschaftsmalerei)"} 1 +2024-09-10 15:45:36.859968 2024-09-10 15:45:36.859977 6d29e0f3-0c7a-4c4d-840d-2ce6df963e87 {"md5": "93a0c1874451ca68b5f326df7750545c", "pid": "1334804893", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Stockfotografie&oldid=243286041"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fotografie"}], "identifier": "http://d-nb.info/gnd/1334804893", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334804893", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334804893", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334804893", "source": "GND"}], "authorized_access_point": "Stockfotografie"} 1 +2024-09-10 15:45:36.963973 2024-09-10 15:45:36.963983 f0192ba6-c335-411c-8528-ef30bade7706 {"md5": "545236a994efc28c39b07fe01fe6ed37", "pid": "1334804699", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifier": "http://d-nb.info/gnd/1334804699", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334804699", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334804699", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334804699", "source": "GND"}], "authorized_access_point": "Spitze (Textilien, Motiv)"} 1 +2024-09-10 15:45:37.06154 2024-09-10 15:45:37.061548 ade60c75-3db2-4c0a-8122-9542a509ba88 {"md5": "c032448e6d0ee84487b65b91aff38a4a", "pid": "1334804281", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Ulmer_Einsatzgruppen-Prozess&oldid=237591756"], "noteType": "dataSource"}, {"label": ["Der Prozess gegen zehn Angehörige der „Einsatzgruppe Tilsit“ im April 1958 verhandelte den Mord an über 5.500 Menschen im deutsch-litauischen Grenzgebiet 1941"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kriegsverbrecherprozess"}], "identifier": "http://d-nb.info/gnd/1334804281", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334804281", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334804281", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334804281", "source": "GND"}], "variant_access_point": ["Ulmer Einsatzkommandoprozess"], "authorized_access_point": "Ulmer Einsatzgruppen-Prozess"} 1 +2024-09-10 15:45:37.165935 2024-09-10 15:45:37.165944 edf75a8b-5b1f-4bd6-a6e2-0e4d23ac8553 {"md5": "6169dac611cf4be3f9acedac150b7a4d", "pid": "1334795533", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Cyberfeminismus&oldid=243932731"], "noteType": "dataSource"}, {"label": ["seit ca. 1990 Bezeichnung für einen feministischen Ansatz, der dazu dient, das Internet, den Cyberspace und neue Medientechnologien im Allgemeinen zu theoretisieren, kritisieren, erforschen und neu zu gestalten"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Feminismus"}], "related": [{"authorized_access_point": "Medientheorie"}], "identifier": "http://d-nb.info/gnd/1334795533", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334795533", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334795533", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334795533", "source": "GND"}], "variant_access_point": ["Netzfeminismus", "Technofeminismus"], "authorized_access_point": "Cyberfeminismus"} 1 +2024-09-10 15:45:37.281095 2024-09-10 15:45:37.281106 3dc4caf8-6280-4097-869c-da5202e2b8d2 {"md5": "0c60018defad14d9e6f585a6614da990", "pid": "1334784639", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Biowerkstoff&oldid=224587293"], "noteType": "dataSource"}, {"label": ["Der Begriff Biowerkstoff wurde als Oberbegriff für Werkstoffe geschaffen, die vollständig oder zu relevanten Anteilen auf nachwachsenden Rohstoffen (Naturprodukte oder Holz) basieren."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Werkstoff"}], "related": [{"authorized_access_point": "Biomaterial"}], "identifier": "http://d-nb.info/gnd/1334784639", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334784639", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334784639", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334784639", "source": "GND"}], "variant_access_point": ["Biobasierter Werkstoff", "biomaterial (eng)"], "authorized_access_point": "Biowerkstoff"} 1 +2024-09-10 15:45:37.409306 2024-09-10 15:45:37.409316 5e52614d-d37a-470b-a32b-540a4673ed80 {"md5": "9f401d7a544d54f332ac419b30cdcb40", "pid": "1334676844", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Schlacht_um_%C5%81%C3%B3d%C5%BA"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schlacht"}], "related": [{"authorized_access_point": "Erster Weltkrieg"}], "identifier": "http://d-nb.info/gnd/1334676844", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334676844", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334676844", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334676844", "source": "GND"}], "variant_access_point": ["Schlacht um Lodz", "Bitwa pod Łodzią (1914)", "Lodzinskaja operacija", "Лодзинская операция"], "authorized_access_point": "Schlacht um Łódź"} 1 +2024-09-10 15:45:37.515997 2024-09-10 15:45:37.516011 d8c854a2-aee3-4286-a357-a1f14c9683f8 {"md5": "95a0e5ad40d900a747b06809322944e8", "pid": "1334652074", "note": [{"label": ["Homepage - https://www.naturpark-stromberg-heuchelberg.de/erleben/wandern/eppinger-linien-weg"], "noteType": "dataSource"}, {"label": ["40 km lange kulturhistorischer Wanderweg im Naturpark Stromberg-Heuchelberg zwischen Eppingen und Mühlacker"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Wanderweg"}], "identifier": "http://d-nb.info/gnd/1334652074", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334652074", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334652074", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334652074", "source": "GND"}], "authorized_access_point": "Eppinger-Linien-Weg"} 1 +2024-09-10 15:45:37.638846 2024-09-10 15:45:37.638858 0cd2dd72-1ede-4e28-a15d-c57313df899c {"md5": "241d11abf92936a98976c60febacea1c", "pid": "1334205639", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifier": "http://d-nb.info/gnd/1334205639", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334205639", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334205639", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334205639", "source": "GND"}], "authorized_access_point": "Luftschlacht um England (Motiv)"} 1 +2024-09-10 15:45:37.734797 2024-09-10 15:45:37.734858 51001906-1066-479d-a3ff-d4009659bde8 {"md5": "e4e29596d9eabe1772b29cf6eba6cc01", "pid": "1333849850", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifier": "http://d-nb.info/gnd/1333849850", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333849850", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333849850", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333849850", "source": "GND"}], "authorized_access_point": "Hacker (Motiv)"} 1 +2024-09-10 15:45:37.845195 2024-09-10 15:45:37.845203 1eb32e8f-74bf-4663-b781-24664fd983ea {"md5": "ba1cabfceaa5b0370498623777f18333", "pid": "1333570651", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Weibliche Kranke"}], "related": [{"authorized_access_point": "Multiple Sklerose"}, {"authorized_access_point": "Multiple-Sklerose-Kranker"}], "identifier": "http://d-nb.info/gnd/1333570651", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333570651", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333570651", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333570651", "source": "GND"}], "authorized_access_point": "Weibliche Multiple-Sklerose-Kranke"} 1 +2024-09-10 15:45:37.942594 2024-09-10 15:45:37.942606 ac6da80f-9be8-4d96-a5d1-28e18bfec846 {"md5": "92b97338b3905a974a214b63acebb118", "pid": "1333353421", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Limousinisch"}], "identifier": "http://d-nb.info/gnd/1333353421", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333353421", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333353421", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333353421", "source": "GND"}], "authorized_access_point": "Mundart Limousinisch (Saint-Junien)"} 1 +2024-09-10 15:45:38.053722 2024-09-10 15:45:38.053735 16fce310-721d-4e89-b891-8583783daf44 {"md5": "2a0b4cb179f3dec3e4344fa2f9f1cd4d", "pid": "1333321201", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Micropayment&oldid=239826416"], "noteType": "dataSource"}, {"label": ["Zahlungsverfahren für geringe Summen, vor allem beim Kauf digitaler Güter."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zahlungsverfahren"}, {"authorized_access_point": "Elektronischer Zahlungsverkehr"}], "identifier": "http://d-nb.info/gnd/1333321201", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333321201", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333321201", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333321201", "source": "GND"}], "variant_access_point": ["Mikrozahlung", "Micro payment", "Micro transaction", "Mikrotransaktion"], "authorized_access_point": "Micropayment"} 1 +2024-09-10 15:45:38.152121 2024-09-10 15:45:38.152132 dea1ca80-e2c1-43f4-af4a-d368bfc551a7 {"md5": "7d0950638acc5428af3f2a176b226778", "pid": "1333260148", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bambusflöte"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334653623", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16961839", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb169618398"}], "authorized_access_point": "Komabue"}], "identifier": "http://d-nb.info/gnd/1333260148", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333260148", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333260148", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333260148", "source": "GND"}], "authorized_access_point": "Komabue"} 1 +2024-09-10 15:45:38.270592 2024-09-10 15:45:38.270608 b1dd7bb7-7744-416c-a50c-bcfde7302932 {"md5": "0d2aed8c5e43f9e419c7de715766d3f7", "pid": "1333126433", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}, {"authorized_access_point": "Auszeichnungsschrift"}], "identifier": "http://d-nb.info/gnd/1333126433", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333126433", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333126433", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333126433", "source": "GND"}], "authorized_access_point": "Wolfram (Druckschrift)"} 1 +2024-09-10 15:45:38.372001 2024-09-10 15:45:38.372013 ab417a65-bcb9-4790-b338-a04f8dfd0d2c {"md5": "ad3192b1c0de39041d4a6d60fce15e3b", "pid": "1333115482", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Spanisch"}], "identifier": "http://d-nb.info/gnd/1333115482", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333115482", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333115482", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333115482", "source": "GND"}], "authorized_access_point": "Mundart Spanisch (Provinz Salamanca)"} 1 +2024-09-10 15:45:38.476982 2024-09-10 15:45:38.476992 a5c56ab2-a186-4276-96df-2326edcb7b22 {"md5": "e57a636647967021daf8d2205b989051", "pid": "1332860451", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Tier%C3%A4rztliche_Hausapotheke&oldid=223225029"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Hausapotheke"}], "identifier": "http://d-nb.info/gnd/1332860451", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332860451", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332860451", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332860451", "source": "GND"}], "authorized_access_point": "Tierärztliche Hausapotheke"} 1 +2024-09-10 15:45:38.591966 2024-09-10 15:45:38.591975 e0a3a580-9973-4cc4-a968-522da2b1c566 {"md5": "1cf0f4e8dcb911fb761c9e32f86d71b9", "pid": "1332767702", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/w/index.php?title=Aimol_language&oldid=1218551092"], "noteType": "dataSource"}, {"label": ["Sprache der Aimol im indischen Bundesstaat Maipur"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Kukisch"}], "identifier": "http://d-nb.info/gnd/1332767702", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332767702", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332767702", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332767702", "source": "GND"}], "variant_access_point": ["Aimual-Sprache"], "authorized_access_point": "Aimol-Sprache"} 1 +2024-09-10 15:45:38.699417 2024-09-10 15:45:38.699426 8adaf915-4287-4e9d-85c6-7251dcc76556 {"md5": "947b0222789a7ec4304896dd73ea43e3", "pid": "1332765785", "note": [{"label": ["Glottolog - https://glottolog.org/resource/languoid/id/xava1240", "Wikipedia - https://de.wikipedia.org/w/index.php?title=Xavante_(Sprache)&oldid=213259576"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Ge"}], "identifier": "http://d-nb.info/gnd/1332765785", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332765785", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332765785", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332765785", "source": "GND"}], "variant_access_point": ["Shavante-Sprache", "Chavante-Sprache", "Acua", "Akuän", "Akuen", "Akwen (Sprache)", "Chavantean", "Akwe (Sprache)"], "authorized_access_point": "Xavante-Sprache"} 1 +2024-09-10 15:45:38.813425 2024-09-10 15:45:38.813431 e3ba78be-be27-43bf-89fa-9923944f0ca4 {"md5": "e5c65ee519218f7ba8f33c5458dbd484", "pid": "1332734316", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Transiente_Osteoporose&oldid=243930206", "OBV - https://permalink.obvsg.at/AC17191350"], "noteType": "dataSource"}, {"label": ["Schmerzhafte, zeitlich begrenzte Erkrankung der Hüfte (selten anderer Knochen)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Osteoporose"}], "identifier": "http://d-nb.info/gnd/1332734316", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332734316", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332734316", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332734316", "source": "GND"}], "variant_access_point": ["Knochenmarködem-Syndrom", "Transitorische Osteoporose", "Knochenmarködemsyndrom", "KMÖS"], "authorized_access_point": "Transiente Osteoporose"} 1 +2024-09-10 15:45:38.876661 2024-09-10 15:45:38.87667 285d0627-9203-4c6d-b572-2a2d5d79d912 {"md5": "6928b21bd82cc58cd8c32058eb3c15a3", "pid": "1332672701", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Azadi"], "noteType": "dataSource"}, {"label": ["Kurdische Widerstandsorganisation gegen die Abschaffung des Kalifats"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Politische Gruppe"}], "identifier": "http://d-nb.info/gnd/1332672701", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332672701", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332672701", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332672701", "source": "GND"}], "variant_access_point": ["Civata Azadiya Kurd", "Civata Xweseriya Kurd", "Kürt İstiklâl Komitesi", "Azadî örgütü"], "authorized_access_point": "Azadî"} 1 +2024-09-10 15:45:38.969797 2024-09-10 15:45:38.969811 3bc3668d-378a-49de-ad1d-2cd71e0ee0ac {"md5": "983d68eadad388382e0db43f1a42976d", "pid": "1332661327", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Soldatin"}], "related": [{"authorized_access_point": "Grenzsoldat"}], "identifier": "http://d-nb.info/gnd/1332661327", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332661327", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332661327", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332661327", "source": "GND"}], "authorized_access_point": "Grenzsoldatin"} 1 +2024-09-10 15:45:39.084327 2024-09-10 15:45:39.084337 321cf473-de67-4232-ba2d-0ab17a2c289e {"md5": "0108ed60b41a1568c81f4ad9550b1c20", "pid": "1332426336", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Einwanderin"}, {"authorized_access_point": "Amerikanerin"}], "related": [{"authorized_access_point": "Amerikanischer Einwanderer"}], "identifier": "http://d-nb.info/gnd/1332426336", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332426336", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332426336", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332426336", "source": "GND"}], "variant_access_point": ["US-Amerikanische Einwanderin"], "authorized_access_point": "Amerikanische Einwanderin"} 1 +2024-09-10 15:45:39.222148 2024-09-10 15:45:39.222159 35afe476-e19f-460d-a9d1-fc91303ae538 {"md5": "d0aa5eed80f72e38b6dd24b62c7545f9", "pid": "1332101607", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Paunaka&oldid=220820255", "Terhart, Lena: A grammar of Paunaka. 2024 - https://refubium.fu-berlin.de/handle/fub188/42745"], "noteType": "dataSource"}, {"label": ["Stark bedrohte Sprache gesprochen in der bolivianischen Region Chiquitanía"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Arawak-Sprachen"}], "identifier": "http://d-nb.info/gnd/1332101607", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332101607", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332101607", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332101607", "source": "GND"}], "variant_access_point": ["Paunaca", "Pauneca", "Pauna"], "authorized_access_point": "Paunaka"} 1 +2024-09-10 15:45:39.335406 2024-09-10 15:45:39.33542 b600037b-7916-45d4-809f-c2b1af1c91c6 {"md5": "2474aac08b1126cada35a58c451050c9", "pid": "1331864321", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Schweizerdeutsch"}, {"authorized_access_point": "Hochalemannisch"}], "identifier": "http://d-nb.info/gnd/1331864321", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331864321", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331864321", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331864321", "source": "GND"}], "authorized_access_point": "Mundart Hochalemannisch (Balgach)"} 1 +2024-09-10 15:45:39.442701 2024-09-10 15:45:39.442708 1d7a7c31-95e2-45b9-b7cc-b1ce4e8db00f {"md5": "4bca431ca88b70c5932f4c004c024f59", "pid": "1331496861", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Walliserdeutsch"}, {"authorized_access_point": "Schweizerdeutsch"}], "identifier": "http://d-nb.info/gnd/1331496861", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331496861", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331496861", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331496861", "source": "GND"}], "variant_access_point": ["Avner Mundart", "Oovnrtüütsch"], "authorized_access_point": "Mundart Walliserdeutsch (Avers)"} 1 +2024-09-10 15:45:39.559851 2024-09-10 15:45:39.559862 f1ff22cf-6e56-4ea8-9186-ef51b63b57e4 {"md5": "08333bd64325c5f54b4fe67e1146c004", "pid": "1331098114", "note": [{"label": ["Wikipedia - https://ro.wikipedia.org/w/index.php?title=Grupul_Infra-Noir&oldid=15774257"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schriftstellergruppe"}], "identifier": "http://d-nb.info/gnd/1331098114", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331098114", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331098114", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331098114", "source": "GND"}], "variant_access_point": ["Grupul Infra Noir", "Grupul Infranoir"], "authorized_access_point": "Grupul Infra-Noir"} 1 +2024-09-10 15:45:39.666955 2024-09-10 15:45:39.666964 e26549e9-7512-4032-b4bb-78d52df4a085 {"md5": "632a597ad408f8b2642f6d8171b8032c", "pid": "133099051X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336047755", "source": "GND"}, {"type": "bf:Nbn", "value": "C000635046", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/C000635046"}], "authorized_access_point": "Shewanella oneidensis"}], "identifier": "http://d-nb.info/gnd/133099051X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133099051X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133099051X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133099051X", "source": "GND"}], "authorized_access_point": "Shewanella oneidensis"} 1 +2024-09-10 15:45:39.77841 2024-09-10 15:45:39.778418 f5d36b93-c03a-42b9-8e36-d608834df677 {"md5": "58918401499e952669064431e97c955c", "pid": "1330990056", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1330990056", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330990056", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330990056", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330990056", "source": "GND"}], "authorized_access_point": "Adlercreutzia equolifaciens"} 1 +2024-09-10 15:45:39.877931 2024-09-10 15:45:39.877934 42279cea-bab4-4458-89bf-eacf69926635 {"md5": "add9771415105acbb20d631d987d22d1", "pid": "1330988728", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Hochalemannisch"}, {"authorized_access_point": "Schweizerdeutsch"}], "identifier": "http://d-nb.info/gnd/1330988728", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330988728", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330988728", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330988728", "source": "GND"}], "authorized_access_point": "Mundart Hochalemannisch (Steckborn)"} 1 +2024-09-10 15:45:39.945076 2024-09-10 15:45:39.945083 9545f43d-be76-420a-baf4-e2b1cb175de9 {"md5": "b9fd7fc771b0535909870f56fa49151e", "pid": "1330985524", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Phorbeia&oldid=240313163"], "noteType": "dataSource"}, {"label": ["Leder- oder Leinenbinden, die um den Kopf des Musikers geschlungen waren, zum Spielen von antiken Rohrblattinstrumenten, hauptsächlich von Aulousspielern genutzt"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Aulet"}], "identifier": "http://d-nb.info/gnd/1330985524", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330985524", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330985524", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330985524", "source": "GND"}], "variant_access_point": ["Capistrum"], "authorized_access_point": "Phorbeia"} 1 +2024-09-10 15:45:40.040558 2024-09-10 15:45:40.040567 55bb44ae-8ebc-4b5b-9cf3-d355dd20874e {"md5": "801f599448d76202fc0db1039cbfe005", "pid": "1330588517", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Akutes Koronarsyndrom"}, {"authorized_access_point": "Herzinfarkt"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336044314", "source": "GND"}, {"type": "bf:Nbn", "value": "D000072658", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D000072658"}], "authorized_access_point": "Non-ST Elevated Myocardial Infarction"}], "identifier": "http://d-nb.info/gnd/1330588517", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330588517", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330588517", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330588517", "source": "GND"}], "variant_access_point": ["Akutes Koronarsyndrom ohne ST-Hebung", "NSTE-ACS", "NSTEMI", "Nicht-ST-Hebungs-Infarkt", "Nicht-ST-Hebungs-Myokardinfarkt", "Non-ST-segment elevation myocardial infarction"], "authorized_access_point": "Nicht-ST-Hebungsinfarkt"} 1 +2024-09-10 15:45:44.171579 2024-09-10 15:45:44.171586 1aa8639c-b2b7-40b6-ae3f-32d0134d5a4f {"md5": "cc0155f2a43d2e9fbab31bf30775f4f4", "pid": "1321125577", "note": [{"label": ["Kombiniere mit Sprachbezeichnung und Wortart, z. B. SWW s Französisch ; s Substantiv ; s baron (Wort)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1321125577", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1321125577", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1321125577", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1321125577", "source": "GND"}], "authorized_access_point": "baron (Wort)"} 1 +2024-09-10 15:45:40.164099 2024-09-10 15:45:40.164108 f76fe705-e132-4af2-9eb4-3e9d54ba5c1a {"md5": "fccc7ec4f307452585661471a07c0379", "pid": "1330408837", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Planctomyceten&oldid=243380997"], "noteType": "dataSource"}, {"label": ["Phylum innerhalb der Bakterien"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336044411", "source": "GND"}, {"type": "bf:Nbn", "value": "D000090643", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D000090643"}], "authorized_access_point": "Planctomycetes"}], "identifier": "http://d-nb.info/gnd/1330408837", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330408837", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330408837", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330408837", "source": "GND"}], "variant_access_point": ["Planctomyceten", "Planctomycetes"], "authorized_access_point": "Planctomycetota"} 1 +2024-09-10 15:45:40.287224 2024-09-10 15:45:40.287233 2e7c63d7-bc8d-407b-863f-f6c3b38dae39 {"md5": "cb73d4e4c5c2331313e0d9d209d555b7", "pid": "1330360036", "note": [{"label": ["Zu verwenden für den außerschulischen Bereich, für den schulischen Bereich verwende Geschichtsunterricht."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Vermittlung"}], "related": [{"authorized_access_point": "Geschichtsunterricht"}], "identifier": "http://d-nb.info/gnd/1330360036", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330360036", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330360036", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330360036", "source": "GND"}], "variant_access_point": ["Geschichte"], "authorized_access_point": "Geschichtsvermittlung"} 1 +2024-09-10 15:45:40.39395 2024-09-10 15:45:40.393963 d90d4e26-f36d-45f2-97de-93918e837e7f {"md5": "dff12022049c510c4670074373d360de", "pid": "1330201647", "note": [{"label": ["INN"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Enzyminhibitor"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336044195", "source": "GND"}, {"type": "bf:Nbn", "value": "C059539", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/C059539"}], "authorized_access_point": "midostaurin"}], "identifier": "http://d-nb.info/gnd/1330201647", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330201647", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330201647", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330201647", "source": "GND"}], "variant_access_point": ["CAS 120685-11-2", "Rydapt"], "authorized_access_point": "Midostaurin"} 1 +2024-09-10 15:45:40.50816 2024-09-10 15:45:40.508174 455f8b6f-774c-41f6-82b9-63863a4ed274 {"md5": "eb81ab3556baf5b27c1e01a61ad371af", "pid": "1330126599", "note": [{"label": ["Benutzt, soweit im Ausland lebend"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ausländischer Schüler"}], "identifier": "http://d-nb.info/gnd/1330126599", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330126599", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330126599", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330126599", "source": "GND"}], "authorized_access_point": "Dänischer Schüler"} 1 +2024-09-10 15:45:40.610211 2024-09-10 15:45:40.610221 156b0fbc-4cff-4ccf-9a01-49e9749ad778 {"md5": "c8f7c507dc665c6c201d580d20004f24", "pid": "132940422X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Dibenzyltoluol&oldid=240106931"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Toluolderivate"}], "identifier": "http://d-nb.info/gnd/132940422X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/132940422X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)132940422X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)132940422X", "source": "GND"}], "variant_access_point": ["Dibenzylmethylbenzol", "Marlotherm SH", "DBT (Dibenzyltoluol)", "CAS 26898-17-9"], "authorized_access_point": "Dibenzyltoluol"} 1 +2024-09-10 15:45:40.717125 2024-09-10 15:45:40.717137 aaf1e597-1a82-4b8c-b004-c29b6ab15f10 {"md5": "11d71450329f4cedb83df69286b0fcf2", "pid": "1329376129", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Prostataspezifisches_Membranantigen&oldid=214439179"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tumormarker"}, {"authorized_access_point": "Membranproteine"}, {"authorized_access_point": "Glykoproteine"}, {"authorized_access_point": "Carboxypeptidasen"}], "identifier": "http://d-nb.info/gnd/1329376129", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1329376129", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1329376129", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1329376129", "source": "GND"}], "variant_access_point": ["PSMA", "Prostata-Spezifisches-Membran-Antigen", "CAS 9074-87-7", "Glutamatcarboxypeptidase II", "EC 3.4.17.21", "Prostate-specific membrane antigen"], "authorized_access_point": "Prostataspezifisches Membranantigen"} 1 +2024-09-10 15:45:40.853921 2024-09-10 15:45:40.853931 cea3622a-de3b-4d7e-a53a-86c8fa400cdf {"md5": "04ccfee0ecf40ab58865636697666cad", "pid": "132935639X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Hochstapler-Syndrom&oldid=238870181"], "noteType": "dataSource"}, {"label": ["Psychologisches Phänomen, bei dem Betroffene von massiven Selbstzweifeln hinsichtlich eigener Fähigkeiten, Leistungen und Erfolge geplagt werden und sich selbst für Hochstapler halten."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Verzerrte Kognition"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133604392X", "source": "GND"}, {"type": "bf:Nbn", "value": "C000711547", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/C000711547"}], "authorized_access_point": "imposter syndrome"}], "identifier": "http://d-nb.info/gnd/132935639X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/132935639X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)132935639X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)132935639X", "source": "GND"}], "variant_access_point": ["Impostor-Syndrom", "Impostor-Phänomen"], "authorized_access_point": "Hochstapler-Syndrom"} 1 +2024-09-10 15:45:40.950512 2024-09-10 15:45:40.950521 057e1d9b-7bce-4103-81c4-f3a31c1d23f3 {"md5": "f8117b7cb8fe7bca3ff8011bebb8dc9d", "pid": "1329174003", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Amerikanisches Englisch"}], "identifier": "http://d-nb.info/gnd/1329174003", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1329174003", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1329174003", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1329174003", "source": "GND"}], "variant_access_point": ["Missouri English"], "authorized_access_point": "Mundart Amerikanisches Englisch (Missouri-Gebiet)"} 1 +2024-09-10 15:45:41.071718 2024-09-10 15:45:41.071726 26629a16-22e3-4fce-828c-87ca11329f6e {"md5": "7f24895757d69a6eef9bc0c55ea4a056", "pid": "1329171675", "note": [{"label": ["Brockhaus - https://brockhaus.de/ecs/enzy/article/djizya-islam", "Wikipedia - https://de.wikipedia.org/wiki/Dschizya"], "noteType": "dataSource"}, {"label": ["Kopfsteuer für nichtmuslimische Schutzbefohlene (Dhimmi) unter islamischer Herrschaft"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Steuer"}], "related": [{"authorized_access_point": "Ḏẖimmī"}], "identifier": "http://d-nb.info/gnd/1329171675", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1329171675", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1329171675", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1329171675", "source": "GND"}], "variant_access_point": ["Dschizya", "Ǧizya", "Cizye", "Jizya", "Jizyah"], "authorized_access_point": "Djizya"} 1 +2024-09-10 15:45:41.17307 2024-09-10 15:45:41.173082 50382765-4100-4328-b159-71f1148af076 {"md5": "cc9fb93f21ab10d7a8674845701dc55e", "pid": "1328712400", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/wiki/Penicillium_citrinum"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336044381", "source": "GND"}, {"type": "bf:Nbn", "value": "C000698383", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/C000698383"}], "authorized_access_point": "Penicillium citrinum"}], "identifier": "http://d-nb.info/gnd/1328712400", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1328712400", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1328712400", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1328712400", "source": "GND"}], "authorized_access_point": "Penicillium citrinum"} 1 +2024-09-10 15:45:41.28296 2024-09-10 15:45:41.282972 b170abf9-7c10-4b39-8480-49ace4297fbe {"md5": "aa319f40d5d4af5b985f96d45963588d", "pid": "1327991349", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Berbice-Niederl%C3%A4ndisch&oldid=208367674"], "noteType": "dataSource"}, {"label": ["Niederländischbasierte Kreolsprache, die etwa bis zur Mitte des 20. Jahrhunderts in Guyana gesprochen wurde"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Kreolische Sprachen"}, {"authorized_access_point": "Niederländisch"}], "identifier": "http://d-nb.info/gnd/1327991349", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1327991349", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1327991349", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1327991349", "source": "GND"}], "variant_access_point": ["Berbice-Nederlands", "Berbice Dutch Creole", "Berbice Creole Dutch", "Berbice Dutch", "Berbice (Sprache)", "Berbice-Kreolisch"], "authorized_access_point": "Berbice-Niederländisch"} 1 +2024-09-10 15:45:41.409254 2024-09-10 15:45:41.409259 8f3d256d-5da2-4973-9bb6-42cd14f03d66 {"md5": "733fdfa3ef0d21c781e1e0b6d617ef9f", "pid": "1327910268", "note": [{"label": ["Seemännin der Handelsschifffahrt mit mehrjähriger Ausbildung (Berufsbezeichnung) oder Soldatin des Dienstgrades Matrose"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Weiblicher Seemann"}], "identifier": "http://d-nb.info/gnd/1327910268", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1327910268", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1327910268", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1327910268", "source": "GND"}], "variant_access_point": ["Seemännin"], "authorized_access_point": "Matrosin"} 1 +2024-09-10 15:45:41.513961 2024-09-10 15:45:41.513972 29511b42-ec3d-46c8-aaaa-17c7c52ab48d {"md5": "90dfb8edac30bd132ee3324b507f282a", "pid": "1327458667", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Solarpunk&oldid=237852295"], "noteType": "dataSource"}, {"label": ["Optimistisches Genre der Science-Fiction- und Phantastik-Literatur, künstlerisches Genre und Kultur- und Nachhaltigkeitsbewegung."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Literarische Bewegung"}, {"authorized_access_point": "Kulturbewegung"}, {"authorized_access_point": "Subkultur"}], "identifier": "http://d-nb.info/gnd/1327458667", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1327458667", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1327458667", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1327458667", "source": "GND"}], "authorized_access_point": "Solarpunk"} 1 +2024-09-10 15:45:41.61224 2024-09-10 15:45:41.612255 385d243f-74b8-4062-ad52-0ff1b3fcdf0c {"md5": "6909fdf46775fcc052e3359a53875844", "pid": "1326349392", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Paramyxoviren"}], "related": [{"authorized_access_point": "Newcastle-Krankheit"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134301715", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85091547", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85091547"}], "authorized_access_point": "Newcastle disease virus"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134301715", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12377360", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12377360s"}], "authorized_access_point": "Virus de la maladie de Newcastle"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336044268", "source": "GND"}, {"type": "bf:Nbn", "value": "D009522", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D009522"}], "authorized_access_point": "Newcastle disease virus"}], "identifier": "http://d-nb.info/gnd/1326349392", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1326349392", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1326349392", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1326349392", "source": "GND"}], "variant_access_point": ["NDV", "Geflügelpestvirus (Newcastle-Krankheit)"], "authorized_access_point": "Newcastle-disease-Virus"} 1 +2024-09-10 15:45:41.726226 2024-09-10 15:45:41.726233 bc8d1d58-98ff-4f1a-ad09-2f8a6f5d1824 {"md5": "807701749efd3ac19bdc062c573aa4dc", "pid": "132585283X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Feuchtwiesen-Kr%C3%A4utereule&oldid=240451943"], "noteType": "dataSource"}, {"label": ["Ist ein Schmetterling (Nachtfalter) aus der Familie der Eulenfalter (Noctuidae)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Eulen (Schmetterlinge)"}], "identifier": "http://d-nb.info/gnd/132585283X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/132585283X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)132585283X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)132585283X", "source": "GND"}], "variant_access_point": ["Rote Mooreule", "Lacanobia (Diataraxia) splendens", "Lacanobia splendens"], "authorized_access_point": "Feuchtwiesen-Kräutereule"} 1 +2024-09-10 15:45:41.837905 2024-09-10 15:45:41.837915 8fd38b31-2d50-4edf-9cf2-61342ef35913 {"md5": "05fc66c1d936514f966792fe647e3c36", "pid": "1325643645", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Prosektor&oldid=242227867"], "noteType": "dataSource"}, {"label": ["Historische Berufsbezeichnung für den „Sezierer“ einer anatomischen Anstalt, dem die Entnahme der aus Leichen gewonnenen Präparate oblag bzw. (in größeren Krankenhäusern) historisch auch Bezeichnung für Ärzte, die zur Feststellung der Todesursache Leichen sezierten.", "Ausschließlich für historische Sachverhalte und Personen zu verwenden; ansonsten benutze \\"Anatom\\" oder \\"Pathologe\\"!"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Medizinisches Personal"}], "identifier": "http://d-nb.info/gnd/1325643645", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1325643645", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1325643645", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1325643645", "source": "GND"}], "variant_access_point": ["Prosector"], "authorized_access_point": "Prosektor"} 1 +2024-09-10 15:45:41.938524 2024-09-10 15:45:41.938529 24723484-eb0b-4d09-b18c-e2463ae30a96 {"md5": "20b40d9b708c74cc95f7e0906d7176d9", "pid": "1325061557", "note": [{"label": ["Dichterkreis europäischer sentimentaler Lyriker des späten 18. Jh., gegr. von Robert Merry, Mitglied der Accademia Della Crusca"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schriftstellergruppe"}], "identifier": "http://d-nb.info/gnd/1325061557", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1325061557", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1325061557", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1325061557", "source": "GND"}], "authorized_access_point": "Della Cruscans"} 1 +2024-09-10 15:45:42.019945 2024-09-10 15:45:42.019953 a98950a3-e8aa-4735-8fce-5d7a03d8dd53 {"md5": "73b81682a09109973d8421062c18cee6", "pid": "1324688629", "note": [{"label": ["NCBI-Taxonomy - https://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=1051616"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Verticillium"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336050047", "source": "GND"}, {"type": "bf:Nbn", "value": "C000685650", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/C000685650"}], "authorized_access_point": "Verticillium nonalfalfae"}], "identifier": "http://d-nb.info/gnd/1324688629", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1324688629", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1324688629", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1324688629", "source": "GND"}], "authorized_access_point": "Verticillium nonalfalfae"} 1 +2024-09-10 15:45:42.11618 2024-09-10 15:45:42.116194 db84301f-6477-42ac-a518-3173016e9c3f {"md5": "245a487a448d6112831f30fc31f0079d", "pid": "1324590173", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Venezianisch"}], "identifier": "http://d-nb.info/gnd/1324590173", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1324590173", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1324590173", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1324590173", "source": "GND"}], "variant_access_point": ["Dialetto fiumano"], "authorized_access_point": "Mundart Venezianisch (Rijeka)"} 1 +2024-09-10 15:45:42.223454 2024-09-10 15:45:42.223466 90e712ee-a3f2-4f44-9c29-1f37fbf89a22 {"md5": "c16e86972e041d894ff7db477587ae11", "pid": "1324101318", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Sicherheitsbeauftragter"}], "identifier": "http://d-nb.info/gnd/1324101318", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1324101318", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1324101318", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1324101318", "source": "GND"}], "variant_access_point": ["Arbeitssicherheit"], "authorized_access_point": "Sicherheitsbeauftragte"} 1 +2024-09-10 15:45:42.332347 2024-09-10 15:45:42.332358 cc32e6f9-0960-4abb-b587-eec2b3aec8b4 {"md5": "fdfccde151c82a95b8e9fac844205839", "pid": "1324092424", "note": [{"label": ["Personen, die bei Abwesenheit d. Eigentümers das Haus hüten"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Haushüter"}], "identifier": "http://d-nb.info/gnd/1324092424", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1324092424", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1324092424", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1324092424", "source": "GND"}], "authorized_access_point": "Haushüterin"} 1 +2024-09-10 15:45:42.452311 2024-09-10 15:45:42.452321 3e77efc2-7eeb-4399-a8a6-216329449f59 {"md5": "991239e9f534a92934d77b4bd5bbd401", "pid": "1323913084", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Transkreation&oldid=206768584"], "noteType": "dataSource"}, {"label": ["Bei der Transkreation wird eine Übertragung des Textes in den kulturellen Kontext des Empfängers angestrebt, so dass sich das Ergebnis im Gegensatz zu einer sich nah am Ursprungstext haltenden Übersetzung relativ weit vom Ursprungstext entfernen kann."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Übersetzung"}], "identifier": "http://d-nb.info/gnd/1323913084", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1323913084", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1323913084", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1323913084", "source": "GND"}], "variant_access_point": ["Transcreation"], "authorized_access_point": "Transkreation"} 1 +2024-09-10 15:45:42.559965 2024-09-10 15:45:42.559979 8e3e3118-090d-4a98-9b9e-a2b7e016e39d {"md5": "5543469296eccd601ea6f0400a94b280", "pid": "1323835148", "note": [{"label": ["Internet - https://bacdive-dsmz-de.translate.goog/strain/11940?_x_tr_sl=en&_x_tr_tl=de&_x_tr_hl=de&_x_tr_pto=sc"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Planctomycetaceae"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336044586", "source": "GND"}, {"type": "bf:Nbn", "value": "C000644441", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/C000644441"}], "authorized_access_point": "Planctopirus limnophila"}], "identifier": "http://d-nb.info/gnd/1323835148", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1323835148", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1323835148", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1323835148", "source": "GND"}], "variant_access_point": ["Planctopirus limnophilus", "Planctomyces limnophilus"], "authorized_access_point": "Planctopirus limnophila"} 1 +2024-09-10 15:45:42.669755 2024-09-10 15:45:42.66977 9f36c8cb-048b-481f-83da-e74dc0acce98 {"md5": "262919af574dd2891387d62af7591be1", "pid": "1323832262", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Ostindonesische Sprachen"}], "identifier": "http://d-nb.info/gnd/1323832262", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1323832262", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1323832262", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1323832262", "source": "GND"}], "variant_access_point": ["Lote", "Rote", "Rotinesisch", "Rotti", "Rottinesisch"], "authorized_access_point": "Roti"} 1 +2024-09-10 15:45:42.772767 2024-09-10 15:45:42.772779 e4c7020c-7cfd-4899-9f6f-684e237a93ad {"md5": "cd37886d16e795bf450cde86d1c26bc6", "pid": "1323804129", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/wiki/Yuin%E2%80%93Kuric_languages"], "noteType": "dataSource"}, {"label": ["Eine Sprache der Aborigines in Neusüdwales"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Pama-Nyunganisch"}], "identifier": "http://d-nb.info/gnd/1323804129", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1323804129", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1323804129", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1323804129", "source": "GND"}], "variant_access_point": ["Durga (Sprache)", "Thoorga", "Thurga-Sprache"], "authorized_access_point": "Dhurga"} 1 +2024-09-10 15:45:42.883316 2024-09-10 15:45:42.883328 bbfd2ff2-0849-42a5-8e8a-0e4f8d3148a0 {"md5": "1f72c2935bed53be2ff61f793895c71c", "pid": "1323769536", "note": [{"label": ["Verknüpfe mit Sprachbezeichnung und Wortart, z.B. Hebräisch ; Verb ; zr'"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1323769536", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1323769536", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1323769536", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1323769536", "source": "GND"}], "variant_access_point": ["זרע"], "authorized_access_point": "zrʿ"} 1 +2024-09-10 15:45:42.984987 2024-09-10 15:45:42.984991 51ae4bbb-00c9-44d9-9a08-4b8e6cad45ce {"md5": "249995e69349510c031a60946023cc9f", "pid": "1323705910", "note": [{"label": ["Militärmusik der Janitscharen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Militärmusik"}, {"authorized_access_point": "Marsch (Musik)"}], "related": [{"authorized_access_point": "Janitscharen"}], "identifier": "http://d-nb.info/gnd/1323705910", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1323705910", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1323705910", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1323705910", "source": "GND"}], "variant_access_point": ["Türkische Musik", "Janissary Music", "Turkish Music", "Musique des Janissaires", "Musique Turque", "Banda"], "authorized_access_point": "Janitscharenmusik"} 1 +2024-09-10 15:45:43.051924 2024-09-10 15:45:43.051929 3e2c1fc2-363e-429c-ae37-cf78d041222b {"md5": "3e91cb2f3312de97d3be37758206d6f1", "pid": "1323590102", "note": [{"label": ["Von Augustinus stammende Bezeichnung einer universalen Kirche vor Christus und außerhalb ihrer Grenzen, die aufgrund der universalen Heilsmittlerschaft Christi alle Gerechten von Abel an in der Heilsgemeinde Gottes versammelt."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ekklesiologie"}], "identifier": "http://d-nb.info/gnd/1323590102", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1323590102", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1323590102", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1323590102", "source": "GND"}], "authorized_access_point": "Ecclesia ab Abel"} 1 +2024-09-10 15:45:43.150007 2024-09-10 15:45:43.150018 e1eaa21b-1a75-4cbe-a136-4dd2dbb16cb6 {"md5": "1a4dcdb2cc8256e50722b7bcc6bcc223", "pid": "1323303669", "note": [{"label": ["Eine der beiden Xiangyu-Dialektgruppen (NW-Hunan)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Xiangyu"}], "identifier": "http://d-nb.info/gnd/1323303669", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1323303669", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1323303669", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1323303669", "source": "GND"}], "variant_access_point": ["Hsin Hsiang-yü", "Pei-p'ien Hsiang-yü", "Beipian Xiangyu"], "authorized_access_point": "Xin Xiangyu"} 1 +2024-09-10 15:45:43.262959 2024-09-10 15:45:43.262966 27375864-f17e-4eb6-bc66-d7112a826d88 {"md5": "332d7e5ffe3409a3a3726485d3bbdea1", "pid": "1323303103", "note": [{"label": ["Eine der beiden Xiangyu-Dialektgruppen (Süd-Hunan)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Xiangyu"}], "identifier": "http://d-nb.info/gnd/1323303103", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1323303103", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1323303103", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1323303103", "source": "GND"}], "variant_access_point": ["Lao Hsiang-yü", "Nanpian Xiangyu", "Nan-p'ien Hsiang-yü"], "authorized_access_point": "Lao Xiangyu"} 1 +2024-09-10 15:45:43.378721 2024-09-10 15:45:43.378735 27e2780c-4afa-41fb-9904-3d22c319c95e {"md5": "8a858dff9a1d570b72454b82a973c442", "pid": "1323069380", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/w/index.php?title=Caribbean_Hindustani&oldid=1211330438", "Wikipedia - https://nl.wikipedia.org/w/index.php?title=Cara%C3%AFbisch-Hindoestani&oldid=65241041"], "noteType": "dataSource"}, {"label": ["Indoarische Sprache, die in Surinam gesprochen wird. Enthält Anteile von Bhojpuri und Bihari."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Bihari"}, {"authorized_access_point": "Bhojpurī"}], "identifier": "http://d-nb.info/gnd/1323069380", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1323069380", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1323069380", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1323069380", "source": "GND"}], "variant_access_point": ["Sarname Hindustani", "Aili-Gaili", "Surinam-Hindustani", "Caribbean Hindi", "Sarnami", "Sarnami Hindoestani", "Sarnami Hindustani", "Surinamse Hindustani", "Surinamisches Hindustani", "Surinaams Hindostaans", "Caraïbisch-Hindoestani", "Hindoustani caribéen"], "authorized_access_point": "Sarnami-Hindi"} 1 +2024-09-10 15:45:43.498083 2024-09-10 15:45:43.498093 4d5cde9a-c712-4e17-b67c-6dd3f7932b6f {"md5": "1d36d297390d1ccf8fb78c7cd2539a00", "pid": "1322662401", "note": [{"label": ["Entgegen den Regelungen in RSWK §330a 1.a, 1.b und 2 wird dieses Ethnografikum auch zur Beschlagwortung von Dokumenten verwendet, die die Situation bosniakischer Frauen in Bosnien-Herzegowina behandeln."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Bosniaken (Volk)"}, {"authorized_access_point": "Muslimin"}], "identifier": "http://d-nb.info/gnd/1322662401", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1322662401", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1322662401", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1322662401", "source": "GND"}], "variant_access_point": ["Bosnische Frau"], "authorized_access_point": "Bosniakin"} 1 +2024-09-10 15:45:43.608452 2024-09-10 15:45:43.608465 ea4622ab-7dca-4749-99bf-c2c699e7a325 {"md5": "fae0cd0a76867852eccdc4b357a0015a", "pid": "1322661030", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Bosniaken&oldid=242002094"], "noteType": "dataSource"}, {"label": ["Bosniaken (serbokroatisch Бошњаци Bošnjaci, Sg.: Бошњак Bošnjak, auch Bosnische Muslime) sind eine südslawische Ethnie mit etwa drei Millionen Angehörigen, davon über zwei Millionen primär in Bosnien und Herzegowina, aber auch in Serbien und Montenegro, Kosovo und Albanien. Ethnische Säuberungen während des Bosnienkrieges 1992-1995 haben ihre ethnische Struktur und Verteilung in Bosnien und Herzegowina sehr verändert. Über eine Million ausgewanderter oder während des Bosnienkrieges geflüchteter Bosniaken leben heute verteilt auf der ganzen Welt.", "Entgegen den Regelungen in RSWK §330a 1.a, 1.b und 2 wird dieses Ethnografikum auch zur Beschlagwortung von Dokumenten verwendet, die die Situation der Bosniaken in Bosnien-Herzegowina behandeln."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Muslim"}], "related": [{"authorized_access_point": "Bosniakin"}, {"authorized_access_point": "Südslawen"}], "identifier": "http://d-nb.info/gnd/1322661030", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1322661030", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1322661030", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1322661030", "source": "GND"}], "variant_access_point": ["Bosnjaken", "Bošnjaci", "Bošnjak", "Bosnische Muslime"], "authorized_access_point": "Bosniaken (Volk)"} 1 +2024-09-10 15:45:43.732212 2024-09-10 15:45:43.732224 6727cb73-eada-4010-acfc-afeceb860414 {"md5": "ffce346739d80e8c1ab749695605cf86", "pid": "1322508801", "note": [{"label": ["Verknüpfe mit Sprachbezeichnung und Wortart, z.B. Hebräisch ; Adjektiv ; yph"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1322508801", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1322508801", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1322508801", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1322508801", "source": "GND"}], "variant_access_point": ["jph", "יפה"], "authorized_access_point": "yph"} 1 +2024-09-10 15:45:43.835827 2024-09-10 15:45:43.835841 23f5f4e5-861d-44b1-baf7-3f9cb64b5c38 {"md5": "d6ba179dc47d0d978775074f4696f512", "pid": "1322264716", "note": [{"label": ["Verknüpfe mit Sprachbezeichnung (hier: Hebräisch) und Wortart"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1322264716", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1322264716", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1322264716", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1322264716", "source": "GND"}], "variant_access_point": ["zôlēlā", "זוֹלְלָה"], "authorized_access_point": "zôlēlāh"} 1 +2024-09-10 15:45:43.94838 2024-09-10 15:45:43.948389 0c9c6b18-8f28-425d-a6b8-dedf0109e5d9 {"md5": "2a91fc7a07f5e98dafbb1622661bb542", "pid": "1321257988", "note": [{"label": ["Wikipedia, unter der gängigen falschen Übersetzung \\"normalisierter Fluss\\" (statt \\"normierter Fluss)\\" - https://de.wikipedia.org/w/index.php?title=Normalisierter_Fluss&oldid=238188256"], "noteType": "dataSource"}, {"label": ["Modell zur statistischen Klassifikation, das auf einem Variablenwechsel zur Berechnung der Wahrscheinlichkeitsdichte beruht"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Stochastisches Modell"}], "related": [{"authorized_access_point": "Maschinelles Lernen"}, {"authorized_access_point": "Dichte (Stochastik)"}], "identifier": "http://d-nb.info/gnd/1321257988", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1321257988", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1321257988", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1321257988", "source": "GND"}], "variant_access_point": ["Flow-based generative model", "Normalizing Flow"], "authorized_access_point": "Flussbasiertes generatives Modell"} 1 +2024-09-10 15:45:44.04973 2024-09-10 15:45:44.049734 4362f558-4cbd-49d6-9be7-9727c757ad88 {"md5": "66f9d75879db9f5a014fc45dd390d5f5", "pid": "1321125623", "note": [{"label": ["Kombiniere mit Sprachbezeichnung und Wortart, z. B. SWW s Französisch ; s Substantiv ; s chevalier"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1321125623", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1321125623", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1321125623", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1321125623", "source": "GND"}], "authorized_access_point": "chevalier"} 1 +2024-09-10 15:45:44.293887 2024-09-10 15:45:44.293896 8d86b147-a627-458b-bfac-883580c71446 {"md5": "161116a7c6feb10b313cde0c994b47c5", "pid": "1319483321", "note": [{"label": ["OBV - https://permalink.obvsg.at/AC17027232", "Wikipedia - https://de.wikipedia.org/w/index.php?title=Plasmamedizin&oldid=225082653"], "noteType": "dataSource"}, {"label": ["Anwendung von kalten physikalischen Plasmen für therapeutische Zwecke", "Nicht zu verwenden für die (vor allem kosmetische) Behandlung mit Blutplasma!"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Therapie"}], "related": [{"authorized_access_point": "Kaltes Plasma"}], "identifier": "http://d-nb.info/gnd/1319483321", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1319483321", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1319483321", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1319483321", "source": "GND"}], "variant_access_point": ["Plasmabehandlung", "Plasmatherapie"], "authorized_access_point": "Plasmamedizin"} 1 +2024-09-10 15:45:44.383467 2024-09-10 15:45:44.383476 7946ce4e-0801-4adc-855a-89fb7305f340 {"md5": "5994043b419d4b9e3a59be02bc2a2221", "pid": "1319390072", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Französisch"}], "identifier": "http://d-nb.info/gnd/1319390072", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1319390072", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1319390072", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1319390072", "source": "GND"}], "authorized_access_point": "Mundart Französisch (Beaune-la-Rolande)"} 1 +2024-09-10 15:45:44.496835 2024-09-10 15:45:44.496845 4ef669a3-ef4a-4a71-bc61-7e192f5441a5 {"md5": "89b368c5f2761722222a0bd1ad3944a0", "pid": "1318715598", "note": [{"label": ["Verknüpfe mit Sprachbezeichnung und hier nicht permutierender Wortart, z. B. Hebräisch / Partikel / ʾal"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1318715598", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1318715598", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1318715598", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1318715598", "source": "GND"}], "authorized_access_point": "ʾal"} 1 +2024-09-10 15:45:44.596117 2024-09-10 15:45:44.596124 2f5e82a4-64db-4f90-b404-5058de38436b {"md5": "311d30ab4493562e429bc709f62dac1c", "pid": "1318430968", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Hochalemannisch"}, {"authorized_access_point": "Schweizerdeutsch"}], "identifier": "http://d-nb.info/gnd/1318430968", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1318430968", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1318430968", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1318430968", "source": "GND"}], "authorized_access_point": "Mundart Hochalemannisch (Tuggen)"} 1 +2024-09-10 15:45:44.702219 2024-09-10 15:45:44.702231 c664e047-313e-4b89-abe0-a81b9f052b9c {"md5": "688877ff6594d0d59829c09a515e43c3", "pid": "131634410X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Else-Lasker-Sch%C3%BCler-Gesellschaft&oldid=240984809#Else-Lasker-Sch%C3%BCler-Lyrikpreis"], "noteType": "dataSource"}, {"label": ["bisher vergeben in den Jahren 1994, 1996, 2016, 2018 und 2022"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Literaturpreis"}], "identifier": "http://d-nb.info/gnd/131634410X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/131634410X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)131634410X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)131634410X", "source": "GND"}], "variant_access_point": ["Else Lasker-Schüler-Lyrikpreis", "Else-Lasker-Schüler-Preis für Lyrik", "Förderpreis des Else-Lasker-Schüler-Lyrikpreises", "Else-Lasker-Schüler-Förderpreis"], "authorized_access_point": "Else-Lasker-Schüler-Lyrikpreis"} 1 +2024-09-10 15:45:44.807515 2024-09-10 15:45:44.807525 d778fc31-7777-43a6-95c9-45851e2494f9 {"md5": "51b78bbb74e59acf847f905dad127ac1", "pid": "1315679264", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Oskar_Pastior&oldid=240480140#Oskar-Pastior-Stiftung_und_Oskar-Pastior-Preis"], "noteType": "dataSource"}, {"label": ["Literaturpreis für experimentelle Lyrik"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Literaturpreis"}], "identifier": "http://d-nb.info/gnd/1315679264", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1315679264", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1315679264", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1315679264", "source": "GND"}], "variant_access_point": ["Oskar Pastior Preis"], "authorized_access_point": "Oskar-Pastior-Preis"} 1 +2024-09-10 15:45:44.9162 2024-09-10 15:45:44.916215 813e8d63-51f8-4ad7-b79f-7a90f07ad19c {"md5": "365f5166b6c6d3cfd77abf29a92a17fa", "pid": "1315456125", "note": [{"label": ["Das Kollegium der Dendrophori gehörte zu einem hohen Feiertag des Kybelekults und hatte die Aufgabe, die heilige Kiefer zu fällen und zum Bildnis des Attis zu bringen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Priesterkollegium"}], "related": [{"authorized_access_point": "Kybelekult"}], "identifier": "http://d-nb.info/gnd/1315456125", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1315456125", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1315456125", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1315456125", "source": "GND"}], "variant_access_point": ["Dendrophori"], "authorized_access_point": "Dendrophoroi"} 1 +2024-09-10 15:45:45.017269 2024-09-10 15:45:45.017278 1779d220-2f84-49c1-ae5a-03d34b7e5b99 {"md5": "862c6f3cdb4408f6273ed2d7fbf2dc0a", "pid": "1315226715", "note": [{"label": ["gem. Tagliavini (S. 344) wird in den Lanzo-Tälern eine frankoprovenzalische Mundart gesprochen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Frankoprovenzalisch"}], "identifier": "http://d-nb.info/gnd/1315226715", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1315226715", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1315226715", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1315226715", "source": "GND"}], "variant_access_point": ["Mundart Frankoprovenzalisch (Bàrmes)"], "authorized_access_point": "Mundart Frankoprovenzalisch (Balme)"} 1 +2024-09-10 15:45:45.089261 2024-09-10 15:45:45.089264 ff9e7786-d1ba-4660-809d-a2366a81eb1f {"md5": "6ee23c9b4821a90f9838e27ebabacd1f", "pid": "1315045133", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Buyruk&oldid=229267516"], "noteType": "dataSource"}, {"label": ["Sammlung von alevitischen Glaubensinhalten, Rezitationsvorschriften sowie moralischen Ermahnungen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Religiöse Literatur"}], "related": [{"authorized_access_point": "Aleviten"}], "identifier": "http://d-nb.info/gnd/1315045133", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1315045133", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1315045133", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1315045133", "source": "GND"}], "authorized_access_point": "Buyruk"} 1 +2024-09-10 15:45:45.180829 2024-09-10 15:45:45.180838 ab8a44dd-a8b4-4dc7-ba2d-b69bf09c40ba {"md5": "de24c3a80ec94a0400fda6eb9c2a2797", "pid": "131453260X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Magister_equitum&oldid=236888767"], "noteType": "dataSource"}, {"label": ["In der römischen Republik der vom Diktator (ursprünglich Magister Populi) ernannte Befehlshaber der Reiterei; In der römischen Kaiserzeit einer der Magistri Militum (Magister)."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Magistrat"}], "identifier": "http://d-nb.info/gnd/131453260X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/131453260X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)131453260X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)131453260X", "source": "GND"}], "authorized_access_point": "Magister Equitum"} 1 +2024-09-10 15:45:45.298341 2024-09-10 15:45:45.298351 d1dc08a2-c753-4e99-84a6-21f2fe55dd33 {"md5": "ff385f067d1647df9b8f02ced0c9f608", "pid": "1314347403", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Proteste_im_Irak_2019/2020&oldid=245262844"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Aufstand"}], "identifier": "http://d-nb.info/gnd/1314347403", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1314347403", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1314347403", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1314347403", "source": "GND"}], "variant_access_point": ["Ṯaurat Tišrīn", "Thawrat Tishrīn", "Tishrīn-Aufstand", "Tishreen-Revolution", "Tishreen Movement", "October Protest Movement", "Oktoberrevolution (2019-2020)", "ثورة تشرين", "الانتفاضة التشرينية"], "authorized_access_point": "Proteste im Irak"} 1 +2024-09-10 15:45:45.418697 2024-09-10 15:45:45.418737 e4ea8eb5-75af-407d-959e-3dff6fffaa50 {"md5": "919bf5bf72cfc88c92935cc6b1d334b1", "pid": "1314019333", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Cabinentaxi&oldid=238294207"], "noteType": "dataSource"}, {"label": ["Entwicklungsprojekt des bundesdeutschen Forschungsministeriums für ein Personentransportsystem"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kabinenbahn (Nahverkehr)"}], "identifier": "http://d-nb.info/gnd/1314019333", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1314019333", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1314019333", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1314019333", "source": "GND"}], "variant_access_point": ["CabinenTaxi", "Cabintaxi PRT System", "C-Bahn", "Kleinkabinenbahn", "Kabinentaxi"], "authorized_access_point": "Cabinentaxi"} 1 +2024-09-10 15:45:45.538947 2024-09-10 15:45:45.538955 e080d7e4-1f14-4fbe-86dd-a12e6ef2d976 {"md5": "846e68350aed369fda8f211d2002ae35", "pid": "1312507497", "note": [{"label": ["Kombiniere mit Sprachbezeichnung und Wortart, z.B. s Griechisch ; s Substantiv ; s phōtistērion"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1312507497", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1312507497", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1312507497", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1312507497", "source": "GND"}], "variant_access_point": ["φωτιστηριον"], "authorized_access_point": "phōtistērion"} 1 +2024-09-10 15:45:45.656279 2024-09-10 15:45:45.656287 cf7b7962-022e-4fe2-85a0-5f09df6ab7df {"md5": "4ff648f2bf7f549e7582f07f0d241425", "pid": "1312506059", "note": [{"label": ["Verknüpfe mit Sprachbezeichnung und Wortart, z.B. Griechisch / Verb / poiein"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1312506059", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1312506059", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1312506059", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1312506059", "source": "GND"}], "variant_access_point": ["ποιειν"], "authorized_access_point": "poiein"} 1 +2024-09-10 15:45:45.7614 2024-09-10 15:45:45.761417 b27f2db8-4b4c-4ab7-80b2-dc3a82381090 {"md5": "b074cc6178634a2ca5a539c853c61bd7", "pid": "1311262989", "note": [{"label": ["Gehört zu den bodischen Sprachen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Tibeto-Himalaja-Sprachen"}], "identifier": "http://d-nb.info/gnd/1311262989", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1311262989", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1311262989", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1311262989", "source": "GND"}], "variant_access_point": ["Galle Gurung", "Ghale Gurung"], "authorized_access_point": "Ghale"} 1 +2024-09-10 15:45:45.866345 2024-09-10 15:45:45.866354 f5444ed4-0547-4b38-a744-41325e2a47fa {"md5": "a76f22c7a3a4306622590997fbf07af9", "pid": "1311025847", "note": [{"label": ["Dialekt der Sprache Ghale"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Ghale"}], "identifier": "http://d-nb.info/gnd/1311025847", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1311025847", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1311025847", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1311025847", "source": "GND"}], "variant_access_point": ["Bhotte", "Kutang", "Kuke"], "authorized_access_point": "Kutang Ghale"} 1 +2024-09-10 15:45:45.986503 2024-09-10 15:45:45.986509 e5d3713d-7198-4230-a11c-bf9a270bded5 {"md5": "465466e19da79e331038f9d74894e527", "pid": "1310673683", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}, {"authorized_access_point": "Auszeichnungsschrift"}], "identifier": "http://d-nb.info/gnd/1310673683", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1310673683", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1310673683", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1310673683", "source": "GND"}], "authorized_access_point": "Pharos (Druckschrift)"} 1 +2024-09-10 15:45:46.079347 2024-09-10 15:45:46.079358 78d7e168-4e2e-4e34-87a4-c2ea4567fd5e {"md5": "864ea67d8bbcd7a3b22fd14979bbe3bf", "pid": "1309822123", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Retro&oldid=242338507"], "noteType": "dataSource"}, {"label": ["Nachahmung od. Wiederbelebung von Elementen früherer Stilrichtungen in Musik, Design, Architektur, Literatur o. Ä. aus einer nostalgischen Motivation. Diese kulturelle Strömung gibt es ca. seit den 1970er Jahren, mit einer Nachahmung von Stilen ab den 1920er Jahren."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Stil"}], "identifier": "http://d-nb.info/gnd/1309822123", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1309822123", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1309822123", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1309822123", "source": "GND"}], "variant_access_point": ["Retro-Stil", "Vintage-Stil", "Retrowelle"], "authorized_access_point": "Retro"} 1 +2024-09-10 15:45:46.162325 2024-09-10 15:45:46.162335 dbbc8dcb-6e47-4d7f-99c1-4d12038e0264 {"md5": "6c23d6f15b56937afb50232349e1ab81", "pid": "1308550189", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Innovation"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334878129", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2005020553", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2005020553"}], "authorized_access_point": "Disruptive technologies"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334878129", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF171317510", "source": "BNF"}, {"type": "uri", "value": "https://catalogue.bnf.fr/ark:/12148/cb171317510"}], "authorized_access_point": "Technologie de rupture"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1308891393", "source": "GND"}, {"type": "bf:Nbn", "value": "30176-1", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/30176-1"}], "authorized_access_point": "Disruptive Innovation"}], "identifier": "http://d-nb.info/gnd/1308550189", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1308550189", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1308550189", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1308550189", "source": "GND"}], "variant_access_point": ["Disruptive Technologie", "Disruptive innovation", "Disruptive technology"], "authorized_access_point": "Disruptive Innovation"} 1 +2024-09-10 15:45:46.254832 2024-09-10 15:45:46.254842 4c37da44-eaff-4646-ad70-80322d0f9007 {"md5": "20207ea37f9b3e0b7044db28bc365e0b", "pid": "1305189876", "note": [{"label": ["Wiktionary - https://en.wiktionary.org/w/index.php?title=%CE%B2%CE%BF%CE%B7%CE%B8%CE%AD%CF%89&oldid=69059160"], "noteType": "dataSource"}, {"label": ["Verknüpfe mit Sprachbezeichnung und Wortart, z.B. Griechisch / Verb / boēthéō"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1305189876", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1305189876", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1305189876", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1305189876", "source": "GND"}], "variant_access_point": ["βοηθέω"], "authorized_access_point": "boēthéō"} 1 +2024-09-10 15:45:46.3529 2024-09-10 15:45:46.352911 c2be12f0-6b6d-4977-9af5-9a9605fcccf5 {"md5": "0dc36846b6b94183cab8a8d098c3dc97", "pid": "1304711749", "note": [{"label": ["Getreidegebinde, angefertigt zum Ende der Getreideernte anlässlich des Ernetdankfestes"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kranz"}, {"authorized_access_point": "Brauch"}], "related": [{"authorized_access_point": "Getreideernte"}, {"authorized_access_point": "Erntedankfest"}, {"authorized_access_point": "Bauernleben"}], "identifier": "http://d-nb.info/gnd/1304711749", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1304711749", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1304711749", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1304711749", "source": "GND"}], "variant_access_point": ["Erntekrone"], "authorized_access_point": "Erntekranz"} 1 +2024-09-10 15:45:46.461622 2024-09-10 15:45:46.461632 41488a50-f9b5-4c92-a167-e90fc3d53b14 {"md5": "b67792ecac7df3245044f71f403d8f0c", "pid": "1304458741", "note": [{"label": ["Homosaurus - https://homosaurus.org/v3/homoit0001229", "Wikipedia - https://de.wikipedia.org/w/index.php?title=Queerfeindlichkeit&oldid=233532639", "Queer Lexikon - https://queer-lexikon.net/glossar/"], "noteType": "dataSource"}, {"label": ["Feindlichkeit gegenüber queeren Menschen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Vorurteil"}], "identifier": "http://d-nb.info/gnd/1304458741", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1304458741", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1304458741", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1304458741", "source": "GND"}], "variant_access_point": ["Queerphobie", "Queerphobia"], "authorized_access_point": "Queerfeindlichkeit"} 1 +2024-09-10 15:45:46.57412 2024-09-10 15:45:46.574135 e16061e3-0e87-4abb-88f4-9248cd692286 {"md5": "1baeff360d35aea24275d18a309e53dd", "pid": "1303066408", "note": [{"label": ["Weiterer Schriftschnitt: Lichte Motor nach Zeichnung von Karl Sommer in fünf Graden von 36 bis 72 Punkten"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}, {"authorized_access_point": "Auszeichnungsschrift"}], "identifier": "http://d-nb.info/gnd/1303066408", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1303066408", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1303066408", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1303066408", "source": "GND"}], "authorized_access_point": "Motor (Druckschrift)"} 1 +2024-09-10 15:45:46.681509 2024-09-10 15:45:46.681521 51e154ce-1332-4392-b0b5-4d880cc24590 {"md5": "036344079f9e2a78b909def16b0a1d88", "pid": "1302981390", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Jubiläum"}], "identifier": "http://d-nb.info/gnd/1302981390", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1302981390", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1302981390", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1302981390", "source": "GND"}], "variant_access_point": ["1200 Jahre Corvey 822-2022", "Tausendzweihundert Jahre Corvey", "Kloster Corvey (2022-2023)", "Corvey-Jubiläum (2022-2023)"], "authorized_access_point": "1200 Jahre Corvey"} 1 +2024-09-10 15:45:46.797396 2024-09-10 15:45:46.797405 e846cbb0-d26e-44ab-8dc4-716c8093aace {"md5": "2cb1ec4217d42e365953ada4c72d6d16", "pid": "1302782517", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}, {"authorized_access_point": "Auszeichnungsschrift"}], "identifier": "http://d-nb.info/gnd/1302782517", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1302782517", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1302782517", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1302782517", "source": "GND"}], "authorized_access_point": "Lux (Druckschrift)"} 1 +2024-09-10 15:45:46.897988 2024-09-10 15:45:46.897995 b4df90b5-e9fa-4a5b-9ff0-b7604b6eda61 {"md5": "8fc37b7429586a05adb3529dc3981d1f", "pid": "1302782274", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}, {"authorized_access_point": "Auszeichnungsschrift"}], "identifier": "http://d-nb.info/gnd/1302782274", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1302782274", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1302782274", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1302782274", "source": "GND"}], "authorized_access_point": "Lumina (Druckschrift)"} 1 +2024-09-10 15:45:47.010266 2024-09-10 15:45:47.010275 830c61d4-f869-4f00-b0d5-36f55db4d2ce {"md5": "bd390564fb66775016eda746563a4ec5", "pid": "1302781162", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}, {"authorized_access_point": "Auszeichnungsschrift"}], "identifier": "http://d-nb.info/gnd/1302781162", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1302781162", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1302781162", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1302781162", "source": "GND"}], "authorized_access_point": "Lucina (Druckschrift)"} 1 +2024-09-10 15:45:47.112215 2024-09-10 15:45:47.112224 dcfca60e-30f0-4340-8450-53782ca71e11 {"md5": "7c7cd86d52927a57a9c1c35f0af8cfd2", "pid": "1302592122", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifier": "http://d-nb.info/gnd/1302592122", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1302592122", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1302592122", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1302592122", "source": "GND"}], "authorized_access_point": "Lautsprecher (Druckschrift)"} 1 +2024-09-10 15:45:47.179664 2024-09-10 15:45:47.179669 99ffdec1-b246-4598-8e00-3fd1fb794c83 {"md5": "e9ccfac51b48c36c945f3d72d6be3e79", "pid": "1298190746", "note": [{"label": ["Informelle Gruppe afrokreolischer Männer, die in New Orleans spiritistische Sitzungen abhielten. Die Praxis des Cercle Harmonique verband Religion und Politik, da viele Botschaften, die sie erhielten, die Rechte der Schwarzen und soziale Gleichheit forderten"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Männergruppe"}], "related": [{"authorized_access_point": "Spiritismus"}], "identifier": "http://d-nb.info/gnd/1298190746", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1298190746", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1298190746", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1298190746", "source": "GND"}], "authorized_access_point": "Cercle Harmonique"} 1 +2024-09-10 15:45:47.265382 2024-09-10 15:45:47.265392 0d33dc02-58c8-4c57-ac20-d2b1b7223de4 {"md5": "473e496594916d5639077925a5a5d448", "pid": "1296860906", "note": [{"label": ["1905 Elfe halbfett"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}, {"authorized_access_point": "Kursive"}], "identifier": "http://d-nb.info/gnd/1296860906", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1296860906", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1296860906", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1296860906", "source": "GND"}], "variant_access_point": ["Kunstschrift Elfe"], "authorized_access_point": "Elfe (Druckschrift)"} 1 +2024-09-10 15:45:47.367847 2024-09-10 15:45:47.367858 db19ea2e-1e33-426d-8894-43ae49368f96 {"md5": "f543fa40a84efd7bd3c665f5572c202a", "pid": "1296369811", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/wiki/Congolese_rumba", "Internet - https://www.aai.uni-hamburg.de/afrika/veranstaltungen/ausstellung/2-musik/5-rumba-lingala-kongo.html"], "noteType": "dataSource"}, {"label": ["Die Kongolesische Rumba ist eine Tanzmusik aus der Region um Brazzaville und Kinshasa und wird oft in der Sprache Lingala gesungen."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tanzmusik"}], "related": [{"authorized_access_point": "Soukous"}, {"authorized_access_point": "Lingala"}], "identifier": "http://d-nb.info/gnd/1296369811", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1296369811", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1296369811", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1296369811", "source": "GND"}], "variant_access_point": ["Kongolesische Rumba", "Rumba Lingala", "Kongo-Rumba", "Zaire-Musik"], "authorized_access_point": "Rumba (Tanzmusik)"} 1 +2024-09-10 15:45:47.467102 2024-09-10 15:45:47.467115 f12593c8-2654-47d6-912e-fc84212a8743 {"md5": "39b43b8cfb31a6fafa793232ac81449e", "pid": "1295208512", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Sozialrendite&oldid=228032253"], "noteType": "dataSource"}, {"label": ["Ab 2002 entwickelter Ansatz zur Bewertung des gesellschaftlichen Mehrwerts durch soziale Projekte"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Return on Investment"}], "identifier": "http://d-nb.info/gnd/1295208512", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1295208512", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1295208512", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1295208512", "source": "GND"}], "variant_access_point": ["Social Return on Investment", "SROI"], "authorized_access_point": "Sozialrendite"} 1 +2024-09-10 15:45:47.601615 2024-09-10 15:45:47.601626 3785db28-def6-41d1-826d-3ef912dfad8a {"md5": "bf20cc2320b326af2e37654e99931a8e", "pid": "1294996460", "note": [{"label": ["Duden online - https://www.duden.de/rechtschreibung/Reederin"], "noteType": "dataSource"}, {"label": ["Als Homonymenzusatz bei Personen verwende Unternehmerin"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Reeder"}], "identifier": "http://d-nb.info/gnd/1294996460", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1294996460", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1294996460", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1294996460", "source": "GND"}], "authorized_access_point": "Reederin"} 1 +2024-09-10 15:45:47.70851 2024-09-10 15:45:47.70852 2b2a24c1-a045-4e1f-8c26-cd1cd462dd6b {"md5": "c78caa709da2c9486a41fbcab96d24d0", "pid": "1294772627", "note": [{"label": ["Internet - https://www.bpb.de/shop/zeitschriften/apuz/nigeria-2021/337820/nollywood/", "Wikipedia - https://de.wikipedia.org/w/index.php?title=Nigerianischer_Film&oldid=234975760", "Wikipedia - https://en.wikipedia.org/wiki/Cinema_of_Nigeria"], "noteType": "dataSource"}, {"label": ["Nigeria ist inzwischen die zweitgrößte Filmnation der Welt nach Indien und vor den USA. Seit den 1970er Jahren werden in Nigeria Filme gedreht, doch erst seit den 1990er Jahren in größerem Umfang. In Anlehnung an Hollywood wird der nigerianische Film auch unter dem Namen Nollywood vermarktet. Seit 2004 kommen nigerianische Filmemacher zur Berlinale. Okechukwu Ogunjiofor gilt als \\"Erfinder\\" Nollywoods."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Filmwirtschaft"}, {"authorized_access_point": "Filmproduktion"}], "identifier": "http://d-nb.info/gnd/1294772627", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1294772627", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1294772627", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1294772627", "source": "GND"}], "variant_access_point": ["Nigerianischer Film", "Cinema of Nigeria"], "authorized_access_point": "Nollywood"} 1 +2024-09-10 15:45:47.825416 2024-09-10 15:45:47.825425 ec6fb205-98b8-4f1b-b7dc-ae14bc465d6b {"md5": "fdc12a47cdc9dd96d6c3e3ff3457ff97", "pid": "129400283X", "note": [{"label": ["nach antiker platonischer Auffassung Zustand der rauschhaften dichterischen Begeisterung"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Enthusiasmus"}], "identifier": "http://d-nb.info/gnd/129400283X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/129400283X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)129400283X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)129400283X", "source": "GND"}], "authorized_access_point": "Furor poeticus"} 1 +2024-09-10 15:45:47.931994 2024-09-10 15:45:47.932004 c8bb32df-f0e2-4090-a8cb-38e4c31380ae {"md5": "9ad2ab7bfa55684a6ed26c0e73e64210", "pid": "1292845384", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/w/index.php?title=Allen%E2%80%93Cahn_equation&oldid=1086819347"], "noteType": "dataSource"}, {"label": ["Reaktions-Diffusionsgleichung, welche z.B. die Phasentrennung in Mehrkomponenten-Legierungen beschreibt"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Reaktions-Diffusionsgleichung"}], "related": [{"authorized_access_point": "Ginzburg-Landau-Gleichung"}], "identifier": "http://d-nb.info/gnd/1292845384", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1292845384", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1292845384", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1292845384", "source": "GND"}], "variant_access_point": ["Allen-Cahn equation"], "authorized_access_point": "Allen-Cahn-Gleichung"} 1 +2024-09-10 15:45:48.067312 2024-09-10 15:45:48.067322 529ecb68-bcd4-4198-ab99-c007028b61a1 {"md5": "827831b09ca77da33c6c5590c5b5e0bf", "pid": "1286766397", "note": [{"label": ["Verknüpfe mit Sprachbezeichnung und Wortart, Z.B. Hebräisch / Substantiv / ʿāmāl"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1286766397", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1286766397", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1286766397", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1286766397", "source": "GND"}], "variant_access_point": ["ʿamal", "עָמָל"], "authorized_access_point": "ʿāmāl"} 1 +2024-09-10 15:45:48.172821 2024-09-10 15:45:48.172826 2f0c041a-64b4-49f2-97ad-ee43698cd084 {"md5": "a224319d1b15e677a0e4d6cbe698f44e", "pid": "1286227941", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Terroranschl%C3%A4ge_am_13._November_2015_in_Paris"], "noteType": "dataSource"}, {"label": ["Die Terroranschläge in Paris am Freitag, dem 13. November 2015, waren koordinierte, islamistisch motivierte Attentate an fünf verschiedenen Orten im 10. und 11. Pariser Arrondissement sowie in der Umgebung des Stade de France im Vorort Saint-Denis."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Attentat"}], "identifier": "http://d-nb.info/gnd/1286227941", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1286227941", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1286227941", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1286227941", "source": "GND"}], "variant_access_point": ["Attentats du 13 novembre 2015 en France", "November 2015 Paris attacks", "13. November 2015", "Terroranschlag im Stade de France", "Terroranschlag im Bataclan-Theater"], "authorized_access_point": "Terroranschläge am 13. November 2015 in Paris"} 1 +2024-09-10 15:45:48.278737 2024-09-10 15:45:48.278747 3eefc2b4-aa7b-42a9-aa18-419466056442 {"md5": "64211053258a11bbf420eb59cc6f0223", "pid": "1286106745", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Vajra&oldid=239624111"], "noteType": "dataSource"}, {"label": ["Ritualgerät im tibetischen Buddhismus"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kultgegenstand"}], "identifier": "http://d-nb.info/gnd/1286106745", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1286106745", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1286106745", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1286106745", "source": "GND"}], "variant_access_point": ["Dorje", "Donnerkeil", "Diamantzepter"], "authorized_access_point": "Vajra"} 1 +2024-09-10 15:45:48.37237 2024-09-10 15:45:48.372378 2d04fc6e-df82-4361-a42e-2c266c245e37 {"md5": "da1270d112fdb5a1c6227eebd93a894b", "pid": "1285304527", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Prozessionsstange"}], "identifier": "http://d-nb.info/gnd/1285304527", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1285304527", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1285304527", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1285304527", "source": "GND"}], "variant_access_point": ["Prozessionsstange"], "authorized_access_point": "Prozessionsstangenaufsatz"} 1 +2024-09-10 15:45:48.479223 2024-09-10 15:45:48.479231 a6042476-5065-4646-a1cd-b75bff827871 {"md5": "b8d36ff8dd53db47cee686de082952cf", "pid": "1284854744", "note": [{"label": ["Homepage - https://www.zollvertrag.li/"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Jubiläum"}], "identifier": "http://d-nb.info/gnd/1284854744", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1284854744", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1284854744", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1284854744", "source": "GND"}], "variant_access_point": ["Zollvertrag Schweiz-Liechtenstein (2023)"], "authorized_access_point": "Zollvertrag Schweiz-Liechtenstein - Jubiläum (2023)"} 1 +2024-09-10 15:45:48.590882 2024-09-10 15:45:48.590893 98d8796a-1366-4801-a887-c27736ec4182 {"md5": "9f2d0b4172fe970b5f02b95500c1c23f", "pid": "1284760456", "note": [{"label": ["Verwendung während eines Feueropfers zum Gießen von flüssigem Butterfett als Opfergabe in die Flammen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Löffel"}, {"authorized_access_point": "Kultgerät"}], "identifier": "http://d-nb.info/gnd/1284760456", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1284760456", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1284760456", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1284760456", "source": "GND"}], "variant_access_point": ["Opfer"], "authorized_access_point": "Opferlöffel"} 1 +2024-09-10 15:45:48.692491 2024-09-10 15:45:48.6925 a109a6f1-c550-45e3-874d-e3d3de6cd529 {"md5": "a2d7bc60af5cf98d96e8fa552230b053", "pid": "127990271X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Rheinromantik&oldid=228805995"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Romantik"}], "identifier": "http://d-nb.info/gnd/127990271X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/127990271X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)127990271X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)127990271X", "source": "GND"}], "authorized_access_point": "Rheinromantik"} 1 +2024-09-10 15:45:48.790502 2024-09-10 15:45:48.790514 176e52d2-d7ba-4c5d-9d91-59f8a1080ca1 {"md5": "380f2379582b08ff4edb18878892c6cf", "pid": "1279534311", "note": [{"label": ["Jubiläumsjahr zum 200. Geburtstag des Dichters Georg Weerth"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Jubiläum"}], "identifier": "http://d-nb.info/gnd/1279534311", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1279534311", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1279534311", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1279534311", "source": "GND"}], "variant_access_point": ["Georg Weerth-Jahr (2022)", "200 Jahre Georg Weerth (2022)", "Weerth 200 (2022)"], "authorized_access_point": "Georg Weerth - Jubiläum (2022)"} 1 +2024-09-10 15:45:48.885709 2024-09-10 15:45:48.885718 4dcb763d-6b35-4b60-860c-2fac29965b4e {"md5": "ca9a31724ccf5c7d5df2325e4bd6bba3", "pid": "1278300821", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/wiki/Saltire_Society_Literary_Awards"], "noteType": "dataSource"}, {"label": ["The Saltire Society Literary Awards are made annually by the Saltire Society. The awards seek to recognise books which are either by \\"living authors of Scottish descent or residing in Scotland,\\" or which deal with \\"the work or life of a Scot or with a Scottish question, event or situation.\\""], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Literaturpreis"}], "identifier": "http://d-nb.info/gnd/1278300821", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1278300821", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1278300821", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1278300821", "source": "GND"}], "authorized_access_point": "Saltire Society Literary Awards"} 1 +2024-09-10 15:45:48.988923 2024-09-10 15:45:48.988931 0fec609b-9364-4b91-b01c-99a5cfdfd064 {"md5": "790857a582c8afb6c6c3d405c70a2dec", "pid": "1275762158", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Nullsummenspiel&oldid=226909291"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Spieltheorie"}], "related": [{"authorized_access_point": "Nullsummenspiel"}, {"authorized_access_point": "Coopetition"}], "identifier": "http://d-nb.info/gnd/1275762158", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1275762158", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1275762158", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1275762158", "source": "GND"}], "variant_access_point": ["Nicht-Nullsummenspiel"], "authorized_access_point": "Nichtnullsummenspiel"} 1 +2024-09-10 15:45:49.125306 2024-09-10 15:45:49.12531 d7a95f74-c3cc-428b-b7bc-84146a06b301 {"md5": "ca15070656658bf3634c02653d769581", "pid": "1275016057", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Buchfluch&oldid=222549031"], "noteType": "dataSource"}, {"label": ["Schriftlich fixierte magisch-religiös wirkende Formel, die für Diebstahl, Vernichtung oder Verfälschung von Texten und Büchern eine Verwünschung androht"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fluch"}], "identifier": "http://d-nb.info/gnd/1275016057", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1275016057", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1275016057", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1275016057", "source": "GND"}], "variant_access_point": ["Bücherfluch"], "authorized_access_point": "Buchfluch"} 1 +2024-09-10 15:45:49.224496 2024-09-10 15:45:49.224501 e90f7ef7-d287-4f7b-8186-147c133557a6 {"md5": "304f7b7ef29d9d1e1837fb524671be55", "pid": "1274846765", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Triolett&oldid=204730333"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Lyrik"}], "identifier": "http://d-nb.info/gnd/1274846765", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1274846765", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1274846765", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1274846765", "source": "GND"}], "variant_access_point": ["Triolet"], "authorized_access_point": "Triolett"} 1 +2024-09-10 15:45:49.297479 2024-09-10 15:45:49.297483 e92bb2d7-87fd-4476-a9e9-9b300b48d7c5 {"md5": "e1df40fa77fb3405bac450f1b51614f9", "pid": "1272439836", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifier": "http://d-nb.info/gnd/1272439836", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1272439836", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1272439836", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1272439836", "source": "GND"}], "authorized_access_point": "Merkantil Kursiv"} 1 +2024-09-10 15:45:49.395274 2024-09-10 15:45:49.395284 ae8d48af-7dc1-4ee8-a423-02e154e5fa61 {"md5": "82e849b7c43e4ff4d060dee4980a45f9", "pid": "1272436322", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifier": "http://d-nb.info/gnd/1272436322", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1272436322", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1272436322", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1272436322", "source": "GND"}], "authorized_access_point": "Klassische Grotesk"} 1 +2024-09-10 15:45:49.492603 2024-09-10 15:45:49.492611 903cba82-797f-47f8-b318-f04626573f52 {"md5": "2363215c4b657de2883948589a704d2e", "pid": "127243124X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifier": "http://d-nb.info/gnd/127243124X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/127243124X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)127243124X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)127243124X", "source": "GND"}], "authorized_access_point": "Ferrum (Druckschrift)"} 1 +2024-09-10 15:45:49.592317 2024-09-10 15:45:49.592333 298d155d-f9da-4acb-a742-93bc61e8c3aa {"md5": "d7d232bbe44f1530fd6124f67a8a059e", "pid": "1272429997", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifier": "http://d-nb.info/gnd/1272429997", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1272429997", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1272429997", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1272429997", "source": "GND"}], "authorized_access_point": "Alarm (Druckschrift)"} 1 +2024-09-10 15:45:49.694744 2024-09-10 15:45:49.694756 79b006d5-5913-4b8f-a4f5-89d3102f08b6 {"md5": "2f084752ff50eeffc787aa5f90c4b666", "pid": "1272339785", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifier": "http://d-nb.info/gnd/1272339785", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1272339785", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1272339785", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1272339785", "source": "GND"}], "authorized_access_point": "Marschall (Druckschrift)"} 1 +2024-09-10 15:45:49.796087 2024-09-10 15:45:49.796096 870ca91c-90ee-438e-b75c-2d5317e7564a {"md5": "1c5e2628464c997ff99bf14a211c502c", "pid": "1272271439", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifier": "http://d-nb.info/gnd/1272271439", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1272271439", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1272271439", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1272271439", "source": "GND"}], "authorized_access_point": "Consul (Druckschrift)"} 1 +2024-09-10 15:45:49.900056 2024-09-10 15:45:49.900068 233d3050-2fe7-4d07-9363-c79243f9748a {"md5": "b6c17f47c1b7b46343999bafd231f010", "pid": "1272267792", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifier": "http://d-nb.info/gnd/1272267792", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1272267792", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1272267792", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1272267792", "source": "GND"}], "authorized_access_point": "Bibliophile Antiqua"} 1 +2024-09-10 15:45:50.025476 2024-09-10 15:45:50.025489 ee961468-3e79-4f53-aed6-52a22875fb45 {"md5": "6dc10a593e83f573cd9613211d26253c", "pid": "1272258963", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifier": "http://d-nb.info/gnd/1272258963", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1272258963", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1272258963", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1272258963", "source": "GND"}], "authorized_access_point": "Admiral (Druckschrift)"} 1 +2024-09-10 15:45:50.091536 2024-09-10 15:45:50.091548 e60b180f-7c3c-474b-84cf-9160b6670350 {"md5": "9b42939dde9e1e118de2a47561597903", "pid": "1271905698", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifier": "http://d-nb.info/gnd/1271905698", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1271905698", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1271905698", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1271905698", "source": "GND"}], "authorized_access_point": "Wieynck-Gotisch"} 1 +2024-09-10 15:45:50.210982 2024-09-10 15:45:50.210992 52bb7cd4-ee8c-4dcc-9225-e0829661fffe {"md5": "781ed3788ee21bb8a783faca9eb121c0", "pid": "1271895765", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifier": "http://d-nb.info/gnd/1271895765", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1271895765", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1271895765", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1271895765", "source": "GND"}], "authorized_access_point": "Supremo-Versalien"} 1 +2024-09-10 15:45:50.404982 2024-09-10 15:45:50.404992 23876fd8-207c-4104-b4f0-1a2b3cf577cb {"md5": "55d39cdca689da92f7064de1007d08aa", "pid": "1271822776", "note": [{"label": ["Kiel-Wiki - https://www.kiel-wiki.de/index.php?title=Hof_Kroog&oldid=58147"], "noteType": "dataSource"}, {"label": ["Elmenschagener Flurbezeichnung"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Flurname"}], "identifier": "http://d-nb.info/gnd/1271822776", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1271822776", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1271822776", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1271822776", "source": "GND"}], "authorized_access_point": "Hof Kroog"} 1 +2024-09-10 15:45:50.52499 2024-09-10 15:45:50.524998 e1bc0424-357f-4082-bc9e-12893d1d4cdc {"md5": "05fb57bb6d5ff25e0e67a8bcb65a82c6", "pid": "1271808897", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifier": "http://d-nb.info/gnd/1271808897", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1271808897", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1271808897", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1271808897", "source": "GND"}], "authorized_access_point": "Ne-Po"} 1 +2024-09-10 15:45:50.631361 2024-09-10 15:45:50.631371 4bb01985-db5d-42d3-b31a-7c0a776f626f {"md5": "2764d9fdcb9040edc8c65bcb245f0488", "pid": "1271790165", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifier": "http://d-nb.info/gnd/1271790165", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1271790165", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1271790165", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1271790165", "source": "GND"}], "authorized_access_point": "Kursachsen (Druckschrift)"} 1 +2024-09-10 15:45:50.746357 2024-09-10 15:45:50.746367 ff4bd44c-c61e-4641-a340-3fd47d23ecb8 {"md5": "1dd447b3dfc1bafcca7beee50d8d04e6", "pid": "1271715899", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifier": "http://d-nb.info/gnd/1271715899", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1271715899", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1271715899", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1271715899", "source": "GND"}], "authorized_access_point": "Energos"} 1 +2024-09-10 15:45:50.856574 2024-09-10 15:45:50.856583 ca6b0bad-c4f7-460e-8116-b4c10d5c88c1 {"md5": "67d4824fac947af3c9b7f22dceedc33b", "pid": "1271381702", "note": [{"label": ["Wikipedia (engl.) - https://en.wikipedia.org/w/index.php?title=Jumli_language&oldid=1145680164"], "noteType": "dataSource"}, {"label": ["eng mit Nepali verwandt, wird hauptsächlich in der Provinz Karnali in Nepal gesprochen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Nepali"}], "identifier": "http://d-nb.info/gnd/1271381702", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1271381702", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1271381702", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1271381702", "source": "GND"}], "variant_access_point": ["Jumlī", "Jumleli"], "authorized_access_point": "Jumli"} 1 +2024-09-10 15:45:50.97943 2024-09-10 15:45:50.97944 c7f23581-7d81-4f9f-b9e9-9b5e8976c0ed {"md5": "bbf64e98f2cae14491b4829aefc77d6e", "pid": "1270556959", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Green_New_Deal&oldid=225070424"], "noteType": "dataSource"}, {"label": ["Konzept(e) zur Einleitung einer ökologischen Wende der Industriegesellschaft"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Wirtschaftspolitik"}], "related": [{"authorized_access_point": "New Deal"}, {"authorized_access_point": "Wirtschaftsentwicklung"}, {"authorized_access_point": "Nachhaltigkeit"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334882894", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2020001010", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2020001010"}], "authorized_access_point": "Green New Deal"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334882894", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF180064402", "source": "BNF"}, {"type": "uri", "value": "https://catalogue.bnf.fr/ark:/12148/cb180064402"}], "authorized_access_point": "Green New Deal"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1317470362", "source": "GND"}, {"type": "bf:Nbn", "value": "30419-1", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/30419-1"}], "authorized_access_point": "Green Deal"}], "identifier": "http://d-nb.info/gnd/1270556959", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1270556959", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1270556959", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1270556959", "source": "GND"}], "variant_access_point": ["Green Deal", "Grüner Deal", "Der Grüne Deal"], "authorized_access_point": "Green New Deal"} 1 +2024-09-10 15:45:51.089963 2024-09-10 15:45:51.089976 112e6e4b-1521-4400-b88f-a15241dffc49 {"md5": "9356672f6f2811016d1b4cd19eef39d5", "pid": "1268246964", "note": [{"label": ["Nur soweit außerhalb der eigenen Armee in ausländ. Einheiten dienend. Ansonsten Verknüpfungskette Australien ; Soldat"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Soldat"}], "related": [{"authorized_access_point": "Australier"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334684014", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16555302", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16555302m"}], "authorized_access_point": "Militaires australiens"}], "identifier": "http://d-nb.info/gnd/1268246964", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1268246964", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1268246964", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1268246964", "source": "GND"}], "authorized_access_point": "Australischer Soldat"} 1 +2024-09-10 15:45:51.205658 2024-09-10 15:45:51.205672 9a279ab2-3a7a-4538-bc28-1e98d8810603 {"md5": "ddde1ee040e2c3dd187481d1e69f1dd4", "pid": "126750370X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifier": "http://d-nb.info/gnd/126750370X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/126750370X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)126750370X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)126750370X", "source": "GND"}], "authorized_access_point": "Roland-Grotesk (Druckschrift)"} 1 +2024-09-10 15:45:51.304394 2024-09-10 15:45:51.304397 cd6b404e-6816-4f61-bcdb-62ccfe068e7f {"md5": "e511195191a1bcfacff75c73b26a5ea4", "pid": "1267495847", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifier": "http://d-nb.info/gnd/1267495847", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1267495847", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1267495847", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1267495847", "source": "GND"}], "authorized_access_point": "Parcival-Antiqua"} 1 +2024-09-10 15:45:51.50114 2024-09-10 15:45:51.501153 f484b877-289a-453a-a996-ca21aea87ea1 {"md5": "d22b5b65c1cb79746cbb488233e39499", "pid": "1266330917", "note": [{"label": ["Verknüpfe mit Sprachbezeichnung und Wortart, z. B. Griechisch ; Substantiv ; tekmērion"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1266330917", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1266330917", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1266330917", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1266330917", "source": "GND"}], "variant_access_point": ["τεκμήριον"], "authorized_access_point": "tekmērion"} 1 +2024-09-10 15:45:51.60615 2024-09-10 15:45:51.606163 d38166d6-ba8e-488a-9bcc-c5d9e1985e15 {"md5": "5204ba70e900636fc43c980a9eb35fa9", "pid": "1265612927", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Künstler"}], "related": [{"authorized_access_point": "Streetartkünstlerin"}, {"authorized_access_point": "Streetart"}], "identifier": "http://d-nb.info/gnd/1265612927", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1265612927", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1265612927", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1265612927", "source": "GND"}], "variant_access_point": ["Strassenkünstler", "Streetart-Künstler"], "authorized_access_point": "Streetartkünstler"} 1 +2024-09-10 15:45:51.7136 2024-09-10 15:45:51.713611 561945e0-b98d-4992-8687-b2cde081f503 {"md5": "fc3e675cb4f52939db1a2b5d2051cdce", "pid": "1265218374", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=207466436"], "noteType": "dataSource"}, {"label": ["Zum Erhalt der benötigten Wassertiefe kümmerten sich Fleetenkieker seit dem 16. Jh. um die Reinhaltung der Fleete von Abfall, Schlick und Exkrementen. Ab dem 18. Jh. bis Anfang des 20. Jh. wurden so arme Leute bezeichnet, die die Fleete bei Ebbe nach verwertbarem Abfall durchsuchten. Häufig wurden Darstellungen romantisiert."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Müllwerker"}], "related": [{"authorized_access_point": "Fahrwasser"}, {"authorized_access_point": "Abfallbeseitigung"}, {"authorized_access_point": "Gewässerreinigung"}], "identifier": "http://d-nb.info/gnd/1265218374", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1265218374", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1265218374", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1265218374", "source": "GND"}], "authorized_access_point": "Fleetenkieker"} 1 +2024-09-10 15:45:51.814326 2024-09-10 15:45:51.814331 a1b5dfcc-a0ac-4dcd-8dc4-2d55b149a3dd {"md5": "f31150c8a432f051807edaf96ea263c9", "pid": "1261254937", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}, {"authorized_access_point": "Font"}], "identifier": "http://d-nb.info/gnd/1261254937", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1261254937", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1261254937", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1261254937", "source": "GND"}], "authorized_access_point": "Bumpy (Druckschrift)"} 1 +2024-09-10 15:45:51.94359 2024-09-10 15:45:51.943597 70d69f3c-def3-4465-8a06-c2928cca68f0 {"md5": "d099d23256ddb70ffbd5e75b763b5a57", "pid": "1259273660", "note": [{"label": ["Protein codierendes Gen. Genprodukt FKBP Prolyl Isomerase 5; wird auch bezeichnet als EC 5.2.1.8, Rotamase, FKBP-51, Peptidylprolyl Cis-Trans Isomerase u.a."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gen"}], "identifier": "http://d-nb.info/gnd/1259273660", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1259273660", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1259273660", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1259273660", "source": "GND"}], "variant_access_point": ["FKBP5 Gene", "FKBP5"], "authorized_access_point": "Gen FKBP5"} 1 +2024-09-10 15:45:52.054333 2024-09-10 15:45:52.054343 c310ebf2-7eef-46d4-9a30-acfbfe62771c {"md5": "4d0bb0e0c185f83632d2b36bd5d72216", "pid": "1257092030", "note": [{"label": ["Trinkgefäß aus Fayence, Glas, Steinzeug oder Silber, häufig in Form von Tieren, Stiefeln oder Fässern, das beim Trinken besondere Geschicklichkeit erfordert, weil die Flüssigkeit z.B. durch den Henkel emporsteigt; besonders im 16.–18. Jahrhundert verbreitet"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Trinkgefäß"}], "identifier": "http://d-nb.info/gnd/1257092030", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1257092030", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1257092030", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1257092030", "source": "GND"}], "variant_access_point": ["Vexierglas", "Scherzglas", "Vexiergefäße", "Scherzgefäß", "Vexiergläser"], "authorized_access_point": "Vexiergefäß"} 1 +2024-09-10 15:45:52.15775 2024-09-10 15:45:52.157763 6cd9e33b-16d5-4b52-9861-ad06df66abe6 {"md5": "620ed0ed8b0be84d4edeb56d996b88da", "pid": "1256073210", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Cancellans&oldid=160063593"], "noteType": "dataSource"}, {"label": ["Fehlerhaft gedrucktes Blatt, das häufig durch Einschnitt oder Ausriß markiert und vom Buchbinder durch ein neu gedrucktes Austauschblatt (Cancellans) ersetzt werden sollte"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Cancellans"}, {"authorized_access_point": "Analytische Druckforschung"}], "identifier": "http://d-nb.info/gnd/1256073210", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1256073210", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1256073210", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1256073210", "source": "GND"}], "variant_access_point": ["Cancellatum", "Canceled leaf"], "authorized_access_point": "Cancellandum"} 1 +2024-09-10 15:45:54.455043 2024-09-10 15:45:54.455047 7cefde74-0338-4386-be7d-0a0eca35bce0 {"md5": "3d872ce618839654766da172cb7aa7b5", "pid": "1201306663", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Portal (Internet)"}, {"authorized_access_point": "Online-Community"}], "related": [{"authorized_access_point": "Evangelikale Bewegung"}], "identifier": "http://d-nb.info/gnd/1201306663", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1201306663", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1201306663", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1201306663", "source": "GND"}], "variant_access_point": ["TopChrétien.com"], "authorized_access_point": "TopChrétien"} 1 +2024-09-10 15:45:52.259015 2024-09-10 15:45:52.259025 aa1a93ae-1b93-4029-ae68-44dd81cdca7a {"md5": "d88d174885a800a053cbb1f2026a5566", "pid": "1256072893", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Cancellans&oldid=160063593"], "noteType": "dataSource"}, {"label": ["Vom korrigierten Satz neu gedrucktes Ersatzblatt, das vom Buchbinder für ein fehlerhaft gedrucktes Blatt (Cancellandum) eingeklebt werden sollte"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Cancellandum"}, {"authorized_access_point": "Analytische Druckforschung"}], "identifier": "http://d-nb.info/gnd/1256072893", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1256072893", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1256072893", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1256072893", "source": "GND"}], "variant_access_point": ["Austauschblatt", "Auswechselblatt", "Cancelans", "Cancel", "Canceling leaf", "Karton", "Carton"], "authorized_access_point": "Cancellans"} 1 +2024-09-10 15:45:52.360915 2024-09-10 15:45:52.360921 456c45d9-08d2-46f8-bf66-01110b9b6cf5 {"md5": "94c610019cc05af238884d6c49372e6a", "pid": "1254291482", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifier": "http://d-nb.info/gnd/1254291482", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1254291482", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1254291482", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1254291482", "source": "GND"}], "authorized_access_point": "Postapokalypse (Motiv)"} 1 +2024-09-10 15:45:52.444497 2024-09-10 15:45:52.444507 4a598803-84d5-476e-8a80-65dc8e499303 {"md5": "b7555670755502b02242581188db433f", "pid": "1251426239", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifier": "http://d-nb.info/gnd/1251426239", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1251426239", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1251426239", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1251426239", "source": "GND"}], "authorized_access_point": "Nichtverbale Kommunikation (Motiv)"} 1 +2024-09-10 15:45:52.558529 2024-09-10 15:45:52.558545 0d6da175-2813-48f5-874b-3f660b961302 {"md5": "872fe62c758a40504ed4067fedade9e0", "pid": "1248276604", "note": [{"label": ["Modell schulkooperativer Bildungs- und Erziehungsarbeit von Schulen und evangelischen Landeskirchen in Norddeutschland"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kirchliche Kinderarbeit"}, {"authorized_access_point": "Jugendarbeit"}, {"authorized_access_point": "Schulsozialarbeit"}], "identifier": "http://d-nb.info/gnd/1248276604", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1248276604", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1248276604", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1248276604", "source": "GND"}], "variant_access_point": ["TEO"], "authorized_access_point": "Tage Ethischer Orientierung"} 1 +2024-09-10 15:45:52.67009 2024-09-10 15:45:52.670112 da02636e-9ccc-4ea9-b650-703971bd0e69 {"md5": "0c8d323cb6ccee1726dba3dccaffb2e7", "pid": "1245158511", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Gezeitenm%C3%BChle&oldid=216756166", "Homepage Tide Mill Institute - https://www.tidemillinstitute.org/"], "noteType": "dataSource"}, {"label": ["Periodisch mittels Ebbe und Flut angetriebene Mühle; wurde ab dem frühen Mittelalter vorwiegend an Küsten mit ausreichendem Tidenhub errichtet"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mühle"}], "related": [{"authorized_access_point": "Wassermühle"}], "identifier": "http://d-nb.info/gnd/1245158511", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1245158511", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1245158511", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1245158511", "source": "GND"}], "variant_access_point": ["Flutmühle", "Tidenmühle", "Tidemühle", "Tide mill", "Tidal mill", "Getijdenmolen"], "authorized_access_point": "Gezeitenmühle"} 1 +2024-09-10 15:45:52.805198 2024-09-10 15:45:52.805212 a0e8a1b3-65ef-45f6-ba3c-2bcfa03bee5a {"md5": "cf02a4cbb5228f1f288859fc45509304", "pid": "1242560637", "note": [{"label": ["H Kulturpreise Online - http://www.kulturpreise.de/web/preise_info.php?preisd_id=2534", "Wikipedia unter Effie (Preis) - https://de.wikipedia.org/w/index.php?title=Effie_(Preis)&oldid=205963252"], "noteType": "dataSource"}, {"label": ["In Deutschland seit 1981 jedes Jahr vom Gesamtverband Kommunikationsagenturen GWA e. V. innerhalb der nationalen Werbe- und Kommunikationsbranche verliehen für die beste Marketingkommunikation bzgl. Wirksamkeit und Effizienz in zehn Kategorien. 2021 erstmals in Leipzig statt in Frankfurt a. Main verliehen. Der Effie wurde 1968 in den Vereinigten Staaten durch die New York American Marketing Association (NYAMA) gegründet. Neben über 40 nationalen Effies gibt es 5 regionale und einen Effie Worldwide."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Preis (Auszeichnung)"}], "related": [{"authorized_access_point": "Werbung"}, {"authorized_access_point": "Marketingkonzept"}], "identifier": "http://d-nb.info/gnd/1242560637", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1242560637", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1242560637", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1242560637", "source": "GND"}], "variant_access_point": ["GWA Effie Award", "Effie-Award (Gesamtverband Werbeagenturen)", "GWA Effie Awards", "GWA Effie", "Effie Awards Germany", "Effie Germany Awards", "Effie Germany", "Effie (Preis, Auszeichnung)", "Effie (Preis)"], "authorized_access_point": "GWA Effie-Award"} 1 +2024-09-10 15:45:55.128259 2024-09-10 15:45:55.12827 da28efe2-abf9-4ac3-afab-2098d2a6569a {"md5": "47f92bd96b29bd8b6702c95525973eaa", "pid": "1192998324", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/wiki/Way_of_the_Gods_according_to_the_Confucian_Tradition"], "noteType": "dataSource"}, {"label": ["Ansetzung als Personengruppe, da ohne einheitliche körperschaftliche Struktur"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Religiöse Bewegung"}, {"authorized_access_point": "Konfuzianismus"}], "identifier": "http://d-nb.info/gnd/1192998324", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1192998324", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1192998324", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1192998324", "source": "GND"}], "variant_access_point": ["Rúzōng Shénjiào", "Way of the Gods according to the Confucian tradition", "Luandao", "Phoenix Way", "Phoenix Gate", "Phoenix halls", "Phoenix churches", "Luánmén", "Luanism", "Luánjiào", "Rumen", "Holy Church of the Confucian Tradition", "Rúzōng Shèngjiào"], "authorized_access_point": "Ruzong Shenjiao"} 1 +2024-09-10 15:45:52.90307 2024-09-10 15:45:52.903076 5035277c-ec38-4d9b-839b-fdc940dde4ec {"md5": "556b4d84f56ee45508c6efcf305581b1", "pid": "124129562X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Sonntagsversammlung&oldid=191625041"], "noteType": "dataSource"}, {"label": ["Bezeichnet eine Versammlung nichtreligiöser Menschen, die von den britischen Komikern Sanderson Jones und Pippa Evans im Januar 2013 in London erstmals durchgeführt wurde. Die Versammlung hat in erster Linie das Ziel, Menschen ohne Konfession zusammenzubringen und ihnen ein positives Gemeinschaftserlebnis zu bieten, das auf Bezüge zu religiösen Vorstellungen verzichtet. Das Motto der Sunday Assembly lautet: „Live better, help often and wonder more“ – auf Deutsch etwa „Lebe besser, hilf oft, staune mehr“ bzw. „Lebe besser, hilf oft, denk mehr nach“. Heute gibt es zahlreiche lokale Assemblies auf der ganzen Welt"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Versammlung"}, {"authorized_access_point": "Gemeinschaft"}, {"authorized_access_point": "Soziale Bewegung"}], "related": [{"authorized_access_point": "Sonntag"}, {"authorized_access_point": "Religionslosigkeit"}], "identifier": "http://d-nb.info/gnd/124129562X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/124129562X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)124129562X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)124129562X", "source": "GND"}], "variant_access_point": ["Sonntagsversammlung"], "authorized_access_point": "Sunday Assembly"} 1 +2024-09-10 15:45:53.019043 2024-09-10 15:45:53.019051 8823a4f7-8eba-4a93-8045-97a87dc18de2 {"md5": "65bcfa39c715b939aab5e8ca162880d0", "pid": "1239152302", "note": [{"label": ["Sans- und Serif-Schriftfamilie für die Lernprodukte des Cornelsen Verlages", "Benutzt für alle CV-Dida-Schriften. Einzelne CV-Dida-Schriften werden getrennt angesetzt."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}, {"authorized_access_point": "Font"}], "identifier": "http://d-nb.info/gnd/1239152302", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1239152302", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1239152302", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1239152302", "source": "GND"}], "variant_access_point": ["CV-Dida", "Dida (Druckschrift)"], "authorized_access_point": "CV Dida"} 1 +2024-09-10 15:45:53.140987 2024-09-10 15:45:53.140998 70967b42-3ad9-4aae-a53e-df32d76b3137 {"md5": "ec8d0c7aba30e6357d2b0884b6cb935d", "pid": "1237145422", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Massaker_in_S%C3%BCdkorea&oldid=210930843", "Wikipedia - https://de.wikipedia.org/w/index.php?title=Jeju-Aufstand&oldid=187183989"], "noteType": "dataSource"}, {"label": ["Widerstand gegen Polizeirepression und die Angst vor Fremdbestimmung der Insel hatten einen Aufstand linksgerichteter Rebellen ausgelöst. Am 3. April 1948 griffen diese auf der ganzen Insel Polizeikommandos sowie die Einrichtungen einer rechtsextremen paramilitärischen Organisation an. Polizei und Armee schlugen mit großer Brutalität zurück und verfolgten eine Strategie der verbrannten Erde. Um die Aufständischen im bergigen Landesinnern zu isolieren, wurden alle Dörfer, die mehr als vier Kilometer von der Küste entfernt waren, dem Erdboden gleichgemacht. Nach offiziellen südkoreanischen Angaben wurden dadurch zwischen April 1948 und August 1949 270 von insgesamt 400 Dörfern auf der Insel ausgelöscht. Mehr als 27.000 Personen wurden getötet, zum überwiegenden Teil Zivilisten; Schätzungen der Opferzahl weichen allerdings deutlich voneinander ab. Auch das Ende der Unruhen Anfang der 1950er wird unterschiedlich angesetzt."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Massaker"}], "identifier": "http://d-nb.info/gnd/1237145422", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1237145422", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1237145422", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1237145422", "source": "GND"}], "variant_access_point": ["Jeju-Massaker", "Jeju-Aufstand", "Cheju-Massaker", "Massaker von Cheju-do", "Jeju massacre", "Cheju massacre"], "authorized_access_point": "Massaker von Jeju-do"} 1 +2024-09-10 15:45:53.265134 2024-09-10 15:45:53.265148 bb923f69-2ca8-4182-9781-efdcf3f21dac {"md5": "10b26747de9f342e1083548c6c428aca", "pid": "1232354244", "note": [{"label": ["Benutzt, soweit im Ausland leben"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ausländischer Student"}, {"authorized_access_point": "Armenier"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334679487", "source": "GND"}, {"type": "bf:Nbn", "value": "sh87002994", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh87002994"}], "authorized_access_point": "Armenian students"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334679487", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17881071", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17881071x"}], "authorized_access_point": "Étudiants arméniens"}], "identifier": "http://d-nb.info/gnd/1232354244", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1232354244", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1232354244", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1232354244", "source": "GND"}], "authorized_access_point": "Armenischer Student"} 1 +2024-09-10 15:45:53.364616 2024-09-10 15:45:53.36462 c3c9247e-2ddc-41cb-b31a-49f9fd4c5216 {"md5": "b011f007431dd399e07488497c67f325", "pid": "1229013695", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Pansexualit%C3%A4t&oldid=208933170"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sexuelle Orientierung"}], "related": [{"authorized_access_point": "Bisexualität"}], "identifier": "http://d-nb.info/gnd/1229013695", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1229013695", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1229013695", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1229013695", "source": "GND"}], "variant_access_point": ["Omnisexualität"], "authorized_access_point": "Pansexualität"} 1 +2024-09-10 15:45:53.447851 2024-09-10 15:45:53.447869 f79b8aa0-8a02-44d1-a69c-1e8aada7a57d {"md5": "be1806ad94aae07d088a31ee33ad7b3e", "pid": "1225001064", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Mangaka&oldid=205181449"], "noteType": "dataSource"}, {"label": ["Mangaka, oder auch Manga-ka, sind professionell für einen Manga-Verlag arbeitende Manga-Zeichnerinnen und -Zeichner. Es gibt keine Unterscheidung einer weiblichen und männlichen Bezeichnung. Der Begriff setzt sich zusammen aus dem Wort Manga für japanische Comics und der Endung -ka im Sinne von „Macher“ oder „Schöpfer“. Die meisten Mangaka zeichnen ihre Geschichten nicht nur, sondern schreiben auch den dazugehörigen Text. In Japan sind Mangaka eine eigene Berufsgruppe."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zeichner"}], "identifier": "http://d-nb.info/gnd/1225001064", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1225001064", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1225001064", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1225001064", "source": "GND"}], "variant_access_point": ["Manga-ka", "Manga-Zeichner", "Mangazeichnerin"], "authorized_access_point": "Mangaka"} 1 +2024-09-10 15:45:53.55662 2024-09-10 15:45:53.55663 c689fd02-513f-4d8a-a321-5a0c0e94a2b3 {"md5": "c405b5a1db51b0f6e006f4ce8147910f", "pid": "1217543678", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Crowdsourcing&oldid=203048762"], "noteType": "dataSource"}, {"label": ["Crowdsourcing ist die Auslagerung bestimmter Aufgaben an eine undefinierte Vielzahl an Menschen mittels eines offenen Aufrufs. Die Bezeichnung wird verschiedentlich auch als Synonym zu Crowdworking gesehen."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Outsourcing"}], "related": [{"authorized_access_point": "Prosumerismus"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334879311", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2017004056", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2017004056"}], "authorized_access_point": "Crowdsourcing"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334879311", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF167129727", "source": "BNF"}, {"type": "uri", "value": "https://catalogue.bnf.fr/ark:/12148/cb167129727"}], "authorized_access_point": "Crowdsourcing"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1217543686", "source": "GND"}, {"type": "bf:Nbn", "value": "29770-6", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/29770-6"}], "authorized_access_point": "Crowdsourcing"}], "identifier": "http://d-nb.info/gnd/1217543678", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1217543678", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1217543678", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1217543678", "source": "GND"}], "variant_access_point": ["Schwarmauslagerung"], "authorized_access_point": "Crowdsourcing"} 1 +2024-09-10 15:45:53.6546 2024-09-10 15:45:53.654609 9b7011d8-f7c9-436e-a166-bcb845eba8a9 {"md5": "296136b600a46deb15b6b8300cf6cc1f", "pid": "1213474337", "note": [{"label": ["Universität Hohenheim - https://popgenomik.uni-hohenheim.de/", "Ludwig-Maximilians-Universität München - https://www.genom.vetmed.uni-muenchen.de/forschung/forschungsschwerpunkte/populationsgenomik/index.html", "Wikipedia (engl.) - https://en.wikipedia.org/w/index.php?title=Population_genomics&oldid=955719198"], "noteType": "dataSource"}, {"label": ["Verfahren zur populationsgenetischen Analyse mittels großer (Sequenz-)Datensätzen, die durch Hochdurchsatzverfahren gewonnen werden. Insbesondere erlaubt das Sequenzieren von Stichproben von ganzen Genomen, die genetische Variation von Populationen zu analysieren"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Populationsgenetik"}], "identifier": "http://d-nb.info/gnd/1213474337", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1213474337", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1213474337", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1213474337", "source": "GND"}], "variant_access_point": ["Population genomics"], "authorized_access_point": "Populationsgenomik"} 1 +2024-09-10 15:45:53.755944 2024-09-10 15:45:53.755954 8bf21a2a-1421-4d78-93d6-e5eff15ef143 {"md5": "e01183b98aa0bf40e4ef9a3c87ae937e", "pid": "1213276500", "note": [{"label": ["Afroamerikanische Religion in Brasilien"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Afroamerikanischer Synkretismus"}], "identifier": "http://d-nb.info/gnd/1213276500", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1213276500", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1213276500", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1213276500", "source": "GND"}], "variant_access_point": ["Catimbós"], "authorized_access_point": "Catimbó"} 1 +2024-09-10 15:45:53.875509 2024-09-10 15:45:53.875513 083891fa-864f-4cab-843c-7f555d02a029 {"md5": "52bbd372c2b00fe6377d503406744e88", "pid": "1211610659", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Synagogenvorsteher"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1211610659", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1211610659", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1211610659", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1211610659", "source": "GND"}], "variant_access_point": ["Archisynágōgos", "Archisynagogos", "Archisynagogus", "Rosh ha-knesset", "Rosch ha-Knesset", "Rosch hakĕnesset", "Synagogenvorsitzender", "Princeps synagogae"], "authorized_access_point": "Synagogenvorsteher"} 1 +2024-09-10 15:45:54.062563 2024-09-10 15:45:54.062571 a9c38e48-a501-481f-b49a-6b22aaecca64 {"md5": "7ad34f59b343bdc529e4294c2720b31d", "pid": "1206111984", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Szientometrie&oldid=196832777"], "noteType": "dataSource"}, {"label": ["Szientometrie ist die Wissenschaft der Wissenschaftsmessung, die mathematische und statistische Methoden zur Analyse von wissenschaftlichen Veröffentlichungen und Forschungsergebnissen verwendet."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Wissenschaftsforschung"}, {"authorized_access_point": "Informetrie"}], "related": [{"authorized_access_point": "Bibliometrie"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1239139888", "source": "GND"}, {"type": "bf:Nbn", "value": "10064428", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10064428"}], "authorized_access_point": "Szientometrie"}], "identifier": "http://d-nb.info/gnd/1206111984", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1206111984", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1206111984", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1206111984", "source": "GND"}], "variant_access_point": ["Scientometrie"], "authorized_access_point": "Szientometrie"} 1 +2024-09-10 15:45:54.175293 2024-09-10 15:45:54.175307 33dd553f-733e-415c-9b59-83c832e5bf5b {"md5": "0ef6d397f4a891b6e7bc7870f930d1ca", "pid": "1205504184", "note": [{"label": ["Entworfen als Hausschrift für die Oxford University, an Rohrfederhandschriften angelehnt, erstes gedrucktes Buch mit dieser wieder in Blei gegossenen Schrift: Krohn, Tim: Zum Paradies, Edition Offizin Parnassia Vättis, 2015"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Antiqua"}, {"authorized_access_point": "Druckschrift"}], "identifier": "http://d-nb.info/gnd/1205504184", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1205504184", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1205504184", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1205504184", "source": "GND"}], "variant_access_point": ["Treyford (Druckschrift)", "Type Treyford"], "authorized_access_point": "Treyford Type"} 1 +2024-09-10 15:45:54.26617 2024-09-10 15:45:54.266179 1b52082f-9677-49f8-b35e-081619853b69 {"md5": "f2ee3e817fd245f5ff00a5432292af4b", "pid": "1204138915", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1204138915", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1204138915", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1204138915", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1204138915", "source": "GND"}], "authorized_access_point": "Holzhändler"} 1 +2024-09-10 15:45:54.387175 2024-09-10 15:45:54.387185 cf5042c4-a428-4c73-a483-19913215a502 {"md5": "ed97fea142e1807a8c830e0fde798894", "pid": "120246193X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Chemokinrezeptoren&oldid=183008713"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "G-Protein gekoppelter Rezeptor"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336575654", "source": "GND"}, {"type": "bf:Nbn", "value": "D019707", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D019707"}], "authorized_access_point": "Receptors, Chemokine"}], "identifier": "http://d-nb.info/gnd/120246193X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/120246193X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)120246193X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)120246193X", "source": "GND"}], "variant_access_point": ["Chemokine receptor"], "authorized_access_point": "Chemokinrezpetor"} 1 +2024-09-10 15:45:54.543082 2024-09-10 15:45:54.543093 f75780ba-6382-4751-8bd6-538774720857 {"md5": "c9feac4d9cf26a9e7c90b8591f2779bc", "pid": "1197813853", "note": [{"label": ["Benutzt, soweit im Ausland lebend"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ausländischer Student"}, {"authorized_access_point": "Slowaken"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334683123", "source": "GND"}, {"type": "bf:Nbn", "value": "sh94004603", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh94004603"}], "authorized_access_point": "Slovak students"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334683123", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12392703", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb123927038"}], "authorized_access_point": "Étudiants slovaques"}], "identifier": "http://d-nb.info/gnd/1197813853", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1197813853", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1197813853", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1197813853", "source": "GND"}], "authorized_access_point": "Slowakischer Student"} 1 +2024-09-10 15:45:54.656672 2024-09-10 15:45:54.656677 798904fa-1e35-4f7a-80d4-3892d18484da {"md5": "0f92eaa8ccb1f2a3b09cfe869172ce83", "pid": "1197084231", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Open_Science&oldid=242180012"], "noteType": "dataSource"}, {"label": ["Sammelbegriff für z.B. Open Access, Open Data, Open Educational Resources, Open Methodology, Open Peer Review, Open Source etc. Ziel ist, wissenschaftliche Prozesse transparent und reproduzierbar sowie Wissenschaft für alle frei zugänglich zu machen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Wissenschaft"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331216990", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2022002066", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2022002066"}], "authorized_access_point": "Open scholarship"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331216990", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF18068255", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb180682558"}], "authorized_access_point": "Science ouverte"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1289086672", "source": "GND"}, {"type": "bf:Nbn", "value": "30309-1", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/30309-1"}], "authorized_access_point": "Open science"}], "identifier": "http://d-nb.info/gnd/1197084231", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1197084231", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1197084231", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1197084231", "source": "GND"}], "variant_access_point": ["Offene Wissenschaft", "Öffentliche Wissenschaft", "Open Research", "Open Scholarship"], "authorized_access_point": "Open Science"} 1 +2024-09-10 15:45:54.777297 2024-09-10 15:45:54.777305 63c3a780-3d8c-4fa3-879c-53b53b5bda16 {"md5": "1a260fc369c687a618fa1bfe0864b9e2", "pid": "1196153183", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Assassin%E2%80%99s_Creed"], "noteType": "dataSource"}, {"label": ["Computerspielserie aus dem Genre Action-Adventure, ab 2007 wurden 11 Hauptspiele und zahlreiche Ableger veröffentlicht"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Computerspiel"}, {"authorized_access_point": "Serie"}, {"authorized_access_point": "Abenteuerspiel"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1272017613", "source": "GND"}, {"type": "bf:Nbn", "value": "no2016008920", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/names/no2016008920"}], "authorized_access_point": "Assassin's creed series (Video games)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1272017613", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16573084", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/16573084/assassin_s_creed___jeu_video/"}], "authorized_access_point": "Assassin's creed (jeu vidéo ; série)"}], "identifier": "http://d-nb.info/gnd/1196153183", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1196153183", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1196153183", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1196153183", "source": "GND"}], "variant_access_point": ["Assassin's-Creed-Reihe", "Assassin's creed series"], "authorized_access_point": "Assassin's Creed (Computerspiel, Serie)"} 1 +2024-09-10 15:45:54.88279 2024-09-10 15:45:54.882802 8cd2ae01-e6f1-4e2d-bfe5-4abdf5ae3031 {"md5": "e153b5038db04924b28c094225f8895c", "pid": "1195721455", "note": [{"label": ["The treasury of lives - https://treasuryoflives.org/tradition/Sakya"], "noteType": "dataSource"}, {"label": ["Einer der drei Zweige der Sa skya Tradition des tibetischen Buddhismus; ngor pa, tshar pa, rdzong pa/gong dkar pa; verbunden mit dem Kloster Gongkar Chode (Gong dkar chos sde) - gegründet von Gong dkar rdo rje gdan pa kun dga' rnam rgyal (1432-1496)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sakyapa"}], "identifier": "http://d-nb.info/gnd/1195721455", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1195721455", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1195721455", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1195721455", "source": "GND"}], "variant_access_point": ["rDzong-pa", "rDzoṅ pa", "Dzongpa", "rDzong pa-Zweig", "rDzong pa Unterschule", "rDzong Tradition", "Dzongpa Tradition", "Dzongpa-Tradition", "Gong dkar ba", "Goṅ dkar ba", "Gong dkar-Zweig", "Gong dkar Tradition", "Gongkar"], "authorized_access_point": "rDzong pa"} 1 +2024-09-10 15:45:55.019375 2024-09-10 15:45:55.019389 913290c8-c041-4a92-9673-72dba7e077d3 {"md5": "4c8715f521b20d1a22c2163cf61b082e", "pid": "1195720424", "note": [{"label": ["The treasury of lives - https://treasuryoflives.org/tradition/Sakya"], "noteType": "dataSource"}, {"label": ["Einer der drei Zweige der Sa skya Tradition des tibetischen Buddhismus; ngor pa, tshar pa, rdzong pa/gong dkar pa; etabliert von Ngor chen kun dga' bzang po mit der Gründung des Klosters Ngor Ewaṃ Choden (Ngor e waṃ chos ldan) in 1429"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sakyapa"}], "identifier": "http://d-nb.info/gnd/1195720424", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1195720424", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1195720424", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1195720424", "source": "GND"}], "variant_access_point": ["Ngor-pa", "Ṅor pa", "Ngor pa-Zweig", "Ngor pa Unterschule", "Ngor Tradition"], "authorized_access_point": "Ngor pa"} 1 +2024-09-10 15:45:56.149821 2024-09-10 15:45:56.149831 c82c63d3-061a-4b94-93a8-eaaca36bf74b {"md5": "e696e7dd13627bbeb2d2ccbdfd96b95b", "pid": "1162070234", "note": [{"label": ["Verknüpfe mit Sprachbezeichnung (hier: Hebräisch) und Wortart"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1162070234", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1162070234", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1162070234", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1162070234", "source": "GND"}], "variant_access_point": ["מלא"], "authorized_access_point": "mlʾ"} 1 +2024-09-10 15:45:55.241951 2024-09-10 15:45:55.243681 3edfc3a4-94cb-409d-bc4c-382f02d91a26 {"md5": "d5a3867293bb52bcf9a03655eb944048", "pid": "119298918X", "note": [{"label": ["Im Juni 2018 freigeschaltetes Portal mit digitalisierten Lokalzeitungen aus Nordrhein-Westfalen im Zeitraum von 1801-1845"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Portal (Internet)"}], "related": [{"authorized_access_point": "Zeitung"}], "identifier": "http://d-nb.info/gnd/119298918X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/119298918X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)119298918X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)119298918X", "source": "GND"}], "variant_access_point": ["zeit.punktNRW (Portal, Internet)", "Zeitungsportal Nordrhein-Westfalen", "Zeitungsport NRW"], "authorized_access_point": "zeit.punktNRW"} 1 +2024-09-10 15:45:55.360286 2024-09-10 15:45:55.360295 132fc621-22d4-4eb1-b3a1-2bfceb0d4698 {"md5": "15c602fa0d67014d06b660f36f8ff029", "pid": "1191213307", "note": [{"label": ["\\"Color Fonts\\" (mehrfarbige Schrift, pro Letter mehrere Farben) für Überschriften und Mengentext"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}, {"authorized_access_point": "Font"}], "identifier": "http://d-nb.info/gnd/1191213307", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1191213307", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1191213307", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1191213307", "source": "GND"}], "authorized_access_point": "Ziza (Druckschrift)"} 1 +2024-09-10 15:45:55.448663 2024-09-10 15:45:55.44867 e45cb02a-b9ab-41ee-bed5-11dc54342162 {"md5": "f621a8ba46c59d5955e3d4cdf2f3c48c", "pid": "1190744996", "note": [{"label": ["Theater, das Eigenproduktionen in mehreren Sparten der Bühnenkunst (Musik, Schauspiel, Tanz) zeigt. Für jede Sparte ist ein eigenes Ensemble engagiert"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Theater"}], "identifier": "http://d-nb.info/gnd/1190744996", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1190744996", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1190744996", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1190744996", "source": "GND"}], "variant_access_point": ["Zweispartentheater", "Dreispartentheater", "Vierspartentheater", "Fünfspartentheater"], "authorized_access_point": "Mehrspartentheater"} 1 +2024-09-10 15:45:55.522707 2024-09-10 15:45:55.522715 05cb4522-bd11-4189-8ae2-24d3dee5548f {"md5": "30e3b6f98a300d46163bf45e180ceff2", "pid": "1189251949", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifier": "http://d-nb.info/gnd/1189251949", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1189251949", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1189251949", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1189251949", "source": "GND"}], "authorized_access_point": "Zwangsvorstellung (Motiv)"} 1 +2024-09-10 15:45:55.626245 2024-09-10 15:45:55.626259 07507f87-1117-45f4-a572-db71b0b5ea5a {"md5": "e7ef261251bd7a26bccc555913d05867", "pid": "1181270391", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Futura (Druckschrift)"}], "identifier": "http://d-nb.info/gnd/1181270391", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1181270391", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1181270391", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1181270391", "source": "GND"}], "authorized_access_point": "Futura Mager"} 1 +2024-09-10 15:45:55.724539 2024-09-10 15:45:55.724546 c69386e3-d30b-48f5-bcb7-ae63ed0bacb3 {"md5": "cdc22a17b37ad1a1f00b661a830cc37b", "pid": "1177428253", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gen"}], "identifier": "http://d-nb.info/gnd/1177428253", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1177428253", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1177428253", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1177428253", "source": "GND"}], "variant_access_point": ["ENTPD1 Gene", "Ectonucleoside triphosphate diphosphohydrolase 1", "CD39", "SPG64", "ATPDase", "NTPDase-1"], "authorized_access_point": "Gen ENTPD1"} 1 +2024-09-10 15:45:55.832474 2024-09-10 15:45:55.832486 6ea790cf-4866-4dbf-878b-bcf7c8298215 {"md5": "8a4c4a98bef35ae7241554ddbd7a8340", "pid": "1172931720", "note": [{"label": ["basieren auf der Beschriftung, die nach 1933 für das Gebäude der Kunstgewerbeschule Zürich (heute ZHdK) und dem Museum für Gestaltung gezeichnet wurde, geschaffen von der Foundry Nouvelle Noire, Zürich, 14 Schriftschnitte erhältlich", "Benutzt für alle Rektorat-Schriften. Einzelne Rektorat-Schriften werden getrennt angesetzt."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}, {"authorized_access_point": "Font"}], "identifier": "http://d-nb.info/gnd/1172931720", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1172931720", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1172931720", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1172931720", "source": "GND"}], "authorized_access_point": "Rektorat (Druckschrift)"} 1 +2024-09-10 15:45:55.938311 2024-09-10 15:45:55.93832 3ab57d16-4ab5-4a8e-9ee9-7e2761bd2fa5 {"md5": "763e5cec7235b5e86c5c5e0de822d43e", "pid": "1164102931", "note": [{"label": ["Hinduistische Gruppierung mit wachsender Popularität; VerehrerInnen der Göttin Ātiparācakti"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Religiöse Bewegung"}], "related": [{"authorized_access_point": "Hinduismus"}], "identifier": "http://d-nb.info/gnd/1164102931", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1164102931", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1164102931", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1164102931", "source": "GND"}], "variant_access_point": ["Melmaruvathur Adhiparasakthi Spiritual Movement"], "authorized_access_point": "Melmaruvathur movement"} 1 +2024-09-10 15:45:56.047436 2024-09-10 15:45:56.047446 ca224607-484f-49c0-bdc8-d8e7bb22353a {"md5": "1c57a2faf3a936c93090c77a2baa8644", "pid": "1162074078", "note": [{"label": ["Verknüpfe mit Sprachbezeichnung (hier: Hebräisch) und Wortart"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1162074078", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1162074078", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1162074078", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1162074078", "source": "GND"}], "variant_access_point": ["עזר"], "authorized_access_point": "ʿzr"} 1 +2024-09-10 15:45:56.250011 2024-09-10 15:45:56.250024 12143c5a-aea8-4009-b972-d162088d8757 {"md5": "20e3aade22458935fe52a124bf6e6db0", "pid": "1162069848", "note": [{"label": ["Verknüpfe mit Sprachbezeichnung (hier: Hebräisch) und Wortart"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1162069848", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1162069848", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1162069848", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1162069848", "source": "GND"}], "variant_access_point": ["mabbul", "mabbûl", "מַבּוּל"], "authorized_access_point": "mabûl"} 1 +2024-09-10 15:45:56.345572 2024-09-10 15:45:56.345591 ac783692-e8c5-4cc0-8735-0d49a32ae929 {"md5": "cb9d90f09e336b7c60bad30236ff220d", "pid": "1162069279", "note": [{"label": ["Verknüpfe mit Sprachbezeichnung (hier: Hebräisch) und Wortart"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1162069279", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1162069279", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1162069279", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1162069279", "source": "GND"}], "variant_access_point": ["jpḥ", "יפח"], "authorized_access_point": "ypḥ"} 1 +2024-09-10 15:45:56.448876 2024-09-10 15:45:56.448886 0947e28c-cc33-4aa7-8b29-d3f7adeed79d {"md5": "28ec16e7a186061c5b2e52c13c9e2975", "pid": "1161370048", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Südamerikaner"}, {"authorized_access_point": "Einwanderer"}], "related": [{"authorized_access_point": "Südamerikanische Einwanderin"}], "identifier": "http://d-nb.info/gnd/1161370048", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1161370048", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1161370048", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1161370048", "source": "GND"}], "authorized_access_point": "Südamerikanischer Einwanderer"} 1 +2024-09-10 15:45:56.513785 2024-09-10 15:45:56.51379 2573d267-7a6d-43bb-9cc2-df6217786a05 {"md5": "fe4a43ada8e696259259fe9c1bb17502", "pid": "1160916276", "note": [{"label": ["Entstehungszeit 1904"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifier": "http://d-nb.info/gnd/1160916276", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1160916276", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1160916276", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1160916276", "source": "GND"}], "authorized_access_point": "Schiller-Jubiläumsschrift"} 1 +2024-09-10 15:45:56.600266 2024-09-10 15:45:56.600271 7fa9d919-4105-4584-ac37-f8ce2cac9c9a {"md5": "04bca214022b7142ee4b4341caa97d49", "pid": "1160040834", "note": [{"label": ["Benutzt, soweit im Ausland lebend"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ausländischer Student"}, {"authorized_access_point": "Jordanier"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334682283", "source": "GND"}, {"type": "bf:Nbn", "value": "sh98006531", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh98006531"}], "authorized_access_point": "Jordanian students"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334682283", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16080762", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb160807624"}], "authorized_access_point": "Étudiants jordaniens"}], "identifier": "http://d-nb.info/gnd/1160040834", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1160040834", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1160040834", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1160040834", "source": "GND"}], "authorized_access_point": "Jordanischer Student"} 1 +2024-09-10 15:45:56.713743 2024-09-10 15:45:56.71375 54ad5837-538e-4e1c-88a1-3c4903d818ff {"md5": "e18dd7f83ed37b6b576a2774b7e71e44", "pid": "1159933278", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifier": "http://d-nb.info/gnd/1159933278", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1159933278", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1159933278", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1159933278", "source": "GND"}], "authorized_access_point": "Succes (Druckschrift)"} 1 +2024-09-10 15:45:56.809511 2024-09-10 15:45:56.809523 b18b0b65-159e-454e-89eb-46d41f5e18a8 {"md5": "f7f2d7358fa63d20b519bf6c1ac0f539", "pid": "1159933006", "note": [{"label": ["Entstehungszeit 1948, Rondo Fett: 1954"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifier": "http://d-nb.info/gnd/1159933006", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1159933006", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1159933006", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1159933006", "source": "GND"}], "authorized_access_point": "Rondo (Druckschrift)"} 1 +2024-09-10 15:45:56.910279 2024-09-10 15:45:56.910291 573cc6d5-5c27-4b48-9dc5-1af1397f9d29 {"md5": "0f3b0cdfb71719660a86f27ae24ff4bc", "pid": "115992869X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifier": "http://d-nb.info/gnd/115992869X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/115992869X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)115992869X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)115992869X", "source": "GND"}], "authorized_access_point": "Juno (Druckschrift)"} 1 +2024-09-10 15:45:57.007326 2024-09-10 15:45:57.007339 1ece5d60-5a0f-4dc4-9e14-2b34957e68b4 {"md5": "605668d82ede408743709f8324c6aa58", "pid": "1159920850", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifier": "http://d-nb.info/gnd/1159920850", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1159920850", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1159920850", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1159920850", "source": "GND"}], "authorized_access_point": "Carlton (Druckschrift)"} 1 +2024-09-10 15:45:57.123859 2024-09-10 15:45:57.123871 832bb888-30d9-46c8-a13a-906535339c0e {"md5": "00faa70856f3b42b7db6118a012920d7", "pid": "115992063X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifier": "http://d-nb.info/gnd/115992063X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/115992063X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)115992063X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)115992063X", "source": "GND"}], "authorized_access_point": "Bristol (Druckschrift)"} 1 +2024-09-10 15:45:57.436094 2024-09-10 15:45:57.436119 830849e9-b5f5-4b01-a2e9-8ad99ee8e330 {"md5": "df7ab259f0dd066771126bc98dd8f1ce", "pid": "1159673381", "note": [{"label": ["Entstehungsjahr: 1928; Mammut Schmalfett 1932"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifier": "http://d-nb.info/gnd/1159673381", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1159673381", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1159673381", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1159673381", "source": "GND"}], "authorized_access_point": "Mammut (Druckschrift)"} 1 +2024-09-10 15:45:57.518598 2024-09-10 15:45:57.518603 98c47abc-a9f4-4404-a0a0-8567ed10960c {"md5": "10d778150e0ad9b7aefdf43bcf648931", "pid": "1159652686", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifier": "http://d-nb.info/gnd/1159652686", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1159652686", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1159652686", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1159652686", "source": "GND"}], "authorized_access_point": "Dynamit (Druckschrift)"} 1 +2024-09-10 15:45:57.584012 2024-09-10 15:45:57.584021 1f4cc488-374e-4941-81db-0a2ef382efba {"md5": "fcf1d5a67f9780f26c600ca1b2e76a5e", "pid": "1158529643", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifier": "http://d-nb.info/gnd/1158529643", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158529643", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1158529643", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1158529643", "source": "GND"}], "authorized_access_point": "Kardinal (Druckschrift)"} 1 +2024-09-10 15:45:57.68925 2024-09-10 15:45:57.689261 66e6ab46-9671-4785-b606-34ee16781d2f {"md5": "aeba7aa49cf70403497b46e8d28e3d30", "pid": "1156463467", "note": [{"label": ["Verzierung d. Bucheinbands durch aufgeklebte Leder- oder Textilstückchen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Buchgestaltung"}], "identifier": "http://d-nb.info/gnd/1156463467", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1156463467", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1156463467", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1156463467", "source": "GND"}], "authorized_access_point": "Auflage (Einbandkunde)"} 1 +2024-09-10 15:45:57.797671 2024-09-10 15:45:57.797683 8ac5e252-4d92-4fb6-8f6e-3f4a16b232b2 {"md5": "27bd23e8be4c5bdb16e22561d64df83f", "pid": "1153904039", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Etikett"}], "related": [{"authorized_access_point": "Buchgestaltung"}], "identifier": "http://d-nb.info/gnd/1153904039", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1153904039", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1153904039", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1153904039", "source": "GND"}], "authorized_access_point": "Titelschild"} 1 +2024-09-10 15:45:57.898363 2024-09-10 15:45:57.898371 39b86f91-2ba7-4516-87cc-e3f110b2c9e4 {"md5": "8b693e4cc998e9aac47946283efb08c0", "pid": "1153848325", "note": [{"label": ["Anspruch auf Rückgewähr einer erbrachten Leistung"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Anspruch"}], "related": [{"authorized_access_point": "Rückforderung"}], "identifier": "http://d-nb.info/gnd/1153848325", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1153848325", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1153848325", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1153848325", "source": "GND"}], "variant_access_point": ["Rückerstattungsanspruch", "Rückforderungsanspruch"], "authorized_access_point": "Rückgewähranspruch"} 1 +2024-09-10 15:45:57.994486 2024-09-10 15:45:57.994499 5330f119-57f9-4750-b42f-67c5b11b781a {"md5": "82383dc6b995240a4348268b65eeb502", "pid": "1153645505", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Kognitive_Religionswissenschaft"], "noteType": "dataSource"}, {"label": ["Interdisziplinäres Forschungsgebiet, das die Religion aus kognitionswissenschaftlicher Sicht untersucht; 1975 aus einem Forschungsförderungsprogramm entstanden"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Religionswissenschaft"}, {"authorized_access_point": "Kognitionswissenschaft"}], "identifier": "http://d-nb.info/gnd/1153645505", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1153645505", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1153645505", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1153645505", "source": "GND"}], "variant_access_point": ["Cognitive science of religion"], "authorized_access_point": "Kognitive Religionswissenschaft"} 1 +2024-09-10 15:45:58.100569 2024-09-10 15:45:58.100576 5127a720-00c8-4ed8-b0e9-806338055de6 {"md5": "404c270b5c4dda3f09d15bf59ab80554", "pid": "1148983325", "note": [{"label": ["Verknüpfe mit Sprachbezeichnung und Wortart Substantiv"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1148983325", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1148983325", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1148983325", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1148983325", "source": "GND"}], "variant_access_point": ["προστάτις"], "authorized_access_point": "prostatis"} 1 +2024-09-10 15:45:58.193233 2024-09-10 15:45:58.193245 8f9ebdfb-a927-4038-817d-fb3c2810ed2b {"md5": "657e146c684e3479ada8eb0000ab74c2", "pid": "1148983317", "note": [{"label": ["Verknüpfe mit Sprachbezeichnung und Wortart Substantiv"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1148983317", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1148983317", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1148983317", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1148983317", "source": "GND"}], "variant_access_point": ["προστάτης"], "authorized_access_point": "prostatēs"} 1 +2024-09-10 15:45:58.304912 2024-09-10 15:45:58.304925 b82fc85b-03f7-46d8-835a-04bbadf78dfd {"md5": "5f6529b6f65108b280b1d2757a14d240", "pid": "1148982329", "note": [{"label": ["Verknüpfe mit Sprachbezeichnung und Wortart"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1148982329", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1148982329", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1148982329", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1148982329", "source": "GND"}], "variant_access_point": ["οἶκος"], "authorized_access_point": "oikos"} 1 +2024-09-10 15:45:58.410789 2024-09-10 15:45:58.4108 49c02302-e022-4688-a009-a4a81bfbce4f {"md5": "5c19693d744c7ba1ecd5ac3aa1873b56", "pid": "1145164617", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Kunstradfahren&oldid=171099299"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Radfahrer"}], "related": [{"authorized_access_point": "Kunstradfahren"}, {"authorized_access_point": "Kunstradfahrerin"}], "identifier": "http://d-nb.info/gnd/1145164617", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1145164617", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1145164617", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1145164617", "source": "GND"}], "variant_access_point": ["Kunstfahrer", "Kunstradsportler"], "authorized_access_point": "Kunstradfahrer"} 1 +2024-09-10 15:45:58.517717 2024-09-10 15:45:58.517731 175854db-fc0a-46de-a7f7-36f60430a35d {"md5": "8b190c482da5a7829adda650d2d2a2b8", "pid": "113724061X", "note": [{"label": ["Ohne HZ Motiv"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifier": "http://d-nb.info/gnd/113724061X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/113724061X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)113724061X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)113724061X", "source": "GND"}], "variant_access_point": ["Das Zarte", "Zartes", "Zartheit (Motiv)"], "authorized_access_point": "Zartheit"} 1 +2024-09-10 15:45:58.582701 2024-09-10 15:45:58.582704 ab91d21e-1ced-4e60-b441-705393e794bf {"md5": "ad3a4785453e67a51945ef8940c84bb5", "pid": "1136198113", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifier": "http://d-nb.info/gnd/1136198113", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1136198113", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1136198113", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1136198113", "source": "GND"}], "variant_access_point": ["Bradford-Beta", "Bradford (Druckschrift)", "Beta (Druckschrift)"], "authorized_access_point": "Bradford Beta"} 1 +2024-09-10 15:45:58.66541 2024-09-10 15:45:58.665423 2027ad8e-f64e-4f8d-801e-ce0051c569e3 {"md5": "94e83dce095225e9a8dded9d32eea813", "pid": "1136044426", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Zweite_industrielle_Revolution&oldid=221638655"], "noteType": "dataSource"}, {"label": ["Automatisierung der Fertigungstechnik, Übergang zur Massenproduktion basierend auf der Rationalisierung der industriellen Fertigung durch Automatisierung."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1136044426", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1136044426", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1136044426", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1136044426", "source": "GND"}], "authorized_access_point": "Zweite industrielle Revolution"} 1 +2024-09-10 15:45:58.796615 2024-09-10 15:45:58.796625 17b1492d-ce9f-47ee-9226-dcf3467bdf68 {"md5": "fd96d259720e885efe5aa88e4a1df578", "pid": "1133521657", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=C%C4%83lu%C8%99ari&oldid=148469577", "Internet - https://ich.unesco.org/en/RL/calus-ritual-00090"], "noteType": "dataSource"}, {"label": ["ursprünglich ritueller Tanz eines in Rumänien existierenden brüderlichen Geheimbundes; 2008 von der UNESCO übernommen in die Repräsentative Liste des immateriellen Kulturerbes der Menschheit"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kulttanz"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334651957", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17763168", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb177631686"}], "authorized_access_point": "Căluş"}], "identifier": "http://d-nb.info/gnd/1133521657", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1133521657", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1133521657", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1133521657", "source": "GND"}], "authorized_access_point": "Căluş (Tanz)"} 1 +2024-09-10 15:45:58.925874 2024-09-10 15:45:58.925881 21d31b9e-866f-4556-813e-2e3af374872f {"md5": "8f5da6f15a60ea6e8f188420db15431a", "pid": "1132275067", "note": [{"label": ["Indigene Ethnie im karibischen Teil Kolumbiens"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Indianer"}], "identifier": "http://d-nb.info/gnd/1132275067", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1132275067", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1132275067", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1132275067", "source": "GND"}], "variant_access_point": ["Arosario", "Arsario", "Arzario", "Dimina", "D'm'na", "Guamaca", "Malayo", "Maracasero", "Maromasero", "Sanhá", "Sanja", "Sanké", "Wiwa (Kolumbien)"], "authorized_access_point": "Damana"} 1 +2024-09-10 15:45:59.028199 2024-09-10 15:45:59.028206 469d7890-0d65-472d-8b66-03c8ba80a398 {"md5": "1e0aa0296671f5abdee1f63deb54cae4", "pid": "1132231477", "note": [{"label": ["Geistliche Übungen auf der Straße, im öffentlichen Raum einer Stadt, bei ausgeschlossenen Randgruppen, in Suppenküchen, Drogentreffs, vor dem Sozialamt; begründet durch Christian Herwartz S.J."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Exerzitien"}], "identifier": "http://d-nb.info/gnd/1132231477", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1132231477", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1132231477", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1132231477", "source": "GND"}], "variant_access_point": ["Exerzitien auf der Straße"], "authorized_access_point": "Straßenexerzitien"} 1 +2024-09-10 15:45:59.13365 2024-09-10 15:45:59.133661 b31bcfb7-b58a-4420-b206-bca81bc3a19d {"md5": "d33396cac99dc84bf497dfd941ae432c", "pid": "1131360478", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Produktmanager"}, {"authorized_access_point": "Produktmanagement"}], "identifier": "http://d-nb.info/gnd/1131360478", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1131360478", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1131360478", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1131360478", "source": "GND"}], "authorized_access_point": "Produktmanagerin"} 1 +2024-09-10 15:45:59.230941 2024-09-10 15:45:59.230952 1d8e502b-f3a7-4a71-b6c3-406563c427b8 {"md5": "4f67031d9a811dde61b716fccd8ec511", "pid": "1127087932", "note": [{"label": ["Sammelbezeichnung antimissionarischer Baptistenvereinigungen und Kirchen in den USA, hauptsächlich in den südl. Staaten"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Baptisten"}], "identifier": "http://d-nb.info/gnd/1127087932", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1127087932", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1127087932", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1127087932", "source": "GND"}], "variant_access_point": ["Anti-Mission Baptists", "Old School Baptists", "Predestinarian Baptists", "Hard Shell Baptists"], "authorized_access_point": "Primitive Baptists"} 1 +2024-09-10 15:45:59.325747 2024-09-10 15:45:59.325758 042b4784-308c-4dd0-95f1-02f136904169 {"md5": "c4a2f1590091fb97707d30d903bc2a55", "pid": "1126284823", "note": [{"label": ["Entworfen neben R. Kegler auch vom Schriftgestalter Desmond Poirier, Schriftfamilie mit 5 Schriften: Pop Art Comic, Pop Art Comic Bold Italic, Pop Art Comic Stencil, Pop Art Comic Three D, Pop Art Extras", "Benutzt für alle PoP-Art-Schriften. Einzelne PoP-Art-Schriften werden getrennt angesetzt."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}, {"authorized_access_point": "Font"}], "identifier": "http://d-nb.info/gnd/1126284823", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1126284823", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1126284823", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1126284823", "source": "GND"}], "variant_access_point": ["PoP-Art (Druckschrift)", "P22 PoP Art", "P22 PoP Art Comic", "P22 PoP Art (Druckschrift)", "P22-PoP-Art (Druckschrift)", "P22-PoP-Art"], "authorized_access_point": "PoP Art (Druckschrift)"} 1 +2024-09-10 15:45:59.443397 2024-09-10 15:45:59.443409 7231e158-7baa-46a8-96e8-b01ab9d6ed43 {"md5": "29a77ce90c5272943b3973abfa88ca4e", "pid": "1124811885", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifier": "http://d-nb.info/gnd/1124811885", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1124811885", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1124811885", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1124811885", "source": "GND"}], "authorized_access_point": "Braut Christi (Motiv)"} 1 +2024-09-10 15:45:59.564017 2024-09-10 15:45:59.564032 c8e162fe-4669-4009-8e93-3032e355ea4d {"md5": "0d246d9e74126ec25d935b4ebdf2a877", "pid": "1124612114", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kirchliche Organisation"}], "related": [{"authorized_access_point": "Hilfsorganisation"}], "identifier": "http://d-nb.info/gnd/1124612114", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1124612114", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1124612114", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1124612114", "source": "GND"}], "variant_access_point": ["Hilfswerke"], "authorized_access_point": "Hilfswerk"} 1 +2024-09-10 15:45:59.62694 2024-09-10 15:45:59.626943 4b6c7166-9cd9-4f5a-94c2-bbfb7d69d5c5 {"md5": "db68e57765be04b5f6f06a012e08d78a", "pid": "1120527775", "note": [{"label": ["Herausgeber: HanYang Information & Communication, gibt es nicht nur für lateinische Alphabete"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}, {"authorized_access_point": "Serifenschrift"}, {"authorized_access_point": "Font"}], "identifier": "http://d-nb.info/gnd/1120527775", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1120527775", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1120527775", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1120527775", "source": "GND"}], "authorized_access_point": "Batang (Druckschrift)"} 1 +2024-09-10 15:45:59.725194 2024-09-10 15:45:59.725203 222ed396-7c03-4a3e-98d1-df7c341d6f90 {"md5": "e4f9e8a16c813304a9e96e44439816b7", "pid": "1120526310", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}, {"authorized_access_point": "Font"}], "identifier": "http://d-nb.info/gnd/1120526310", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1120526310", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1120526310", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1120526310", "source": "GND"}], "variant_access_point": ["Nite Club (Druckschrift)"], "authorized_access_point": "NiteClub (Druckschrift)"} 1 +2024-09-10 15:45:59.843445 2024-09-10 15:45:59.843457 ffc4d530-a274-42bd-bc4c-b63160251baa {"md5": "75a8244b6ad0c9b863bb03da582009c0", "pid": "1119923417", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Oration"}], "related": [{"authorized_access_point": "Gabenbereitung"}, {"authorized_access_point": "Offertorium"}], "identifier": "http://d-nb.info/gnd/1119923417", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1119923417", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1119923417", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1119923417", "source": "GND"}], "variant_access_point": ["Oratio secreta"], "authorized_access_point": "Gabengebet"} 1 +2024-09-10 15:45:59.958183 2024-09-10 15:45:59.958192 774b4395-ebd2-43a2-bd47-303ce9e2b978 {"md5": "69df76bb638c462fd8c4a31bee2217bc", "pid": "1117228215", "note": [{"label": ["Gesichtsschleier muslimischer Frauen mit schmalem Augenschlitz, im Unterschied zur die Augen vollständig bedeckenden Burka, v.a. auf der arabischen Halbinsel verbreitet; als weißer Niqab bereits vor der islamischen Kultur von Beduinen als Schutz vor Sonne und Sand verwendet; schwarz und in Verbindung mit einem Tschador getragen, verbreitete er sich seit Ende des 19. Jh. zunächst im Osmanischen Reich"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schleier"}], "related": [{"authorized_access_point": "Burka"}], "identifier": "http://d-nb.info/gnd/1117228215", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1117228215", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1117228215", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1117228215", "source": "GND"}], "variant_access_point": ["Nikab", "Nikap", "niqāb"], "authorized_access_point": "Niqab"} 1 +2024-09-10 15:46:00.061973 2024-09-10 15:46:00.061981 0c73f2df-ca43-41cd-86f0-0a2f4abac9c0 {"md5": "b9d1216718096bdc88447d6a06745cfe", "pid": "1114188395", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Italienische_Metropolitanst%C3%A4dte"], "noteType": "dataSource"}, {"label": ["Als Metropolitanstädte werden Gebietskörperschaften bezeichnet, die sich auf dem Metropolitangebiet bzw. auf dem Gebiet vierzehn italienischer Großstädte und deren Umland erstrecken. Anders als der Wortlaut suggeriert, handelt es sich bei den Metropolitanstädten nicht um Städte im eigentlichen Sinne, sondern um administrativ abgegrenzte Stadtregionen, die neben der Kernstadt auch ein großes Hinterland umfassen. Als solche sind die italienischen Metropolitanstädte die Rechtsnachfolger von ehemaligen Provinzen, die umbenannt und mit zusätzlichen Funktionen ausgestattet wurden."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1114188395", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1114188395", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1114188395", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1114188395", "source": "GND"}], "variant_access_point": ["Città metropolitana", "Großstadt"], "authorized_access_point": "Metropolitanstadt"} 1 +2024-09-10 15:46:00.179797 2024-09-10 15:46:00.179811 a64604ea-47c4-4185-b937-ec6cef6713c3 {"md5": "976e3365cc2ed8d947ce7b8a274a6013", "pid": "1113031921", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Biokomposit&oldid=165586163"], "noteType": "dataSource"}, {"label": ["Verbundwerkstoffe mit einer biogenen Komponente, z.B. der Matrixwerkstoff ist ein Harz wie z.B. Polymer oder Biopolymer und die Verstärkung erfolgt durch eine Naturfaser wie z.B. Hanf."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Faserverbundwerkstoff"}, {"authorized_access_point": "Biowerkstoff"}], "identifier": "http://d-nb.info/gnd/1113031921", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1113031921", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1113031921", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1113031921", "source": "GND"}], "variant_access_point": ["Biokomposit", "Biocomposit"], "authorized_access_point": "Bioverbundwerkstoff"} 1 +2024-09-10 15:46:00.303228 2024-09-10 15:46:00.303248 b1dda277-13ca-41f3-b00a-11f939000493 {"md5": "5f4b08b01c87f73a7299b24f416293c2", "pid": "1111593051", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifier": "http://d-nb.info/gnd/1111593051", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1111593051", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1111593051", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1111593051", "source": "GND"}], "authorized_access_point": "Lebensreform (Motiv)"} 1 +2024-09-10 15:46:00.430336 2024-09-10 15:46:00.430344 2da0442e-0445-4cc8-a6c8-e6304c91bb3e {"md5": "05d873707cd350380bb5f116c3f3f625", "pid": "110642154X", "note": [{"label": ["Satzschrift, verwendet für das Gutenberg-Jahrbuch 2016"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Font"}], "identifier": "http://d-nb.info/gnd/110642154X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/110642154X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)110642154X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)110642154X", "source": "GND"}], "authorized_access_point": "Mangan (Druckschrift)"} 1 +2024-09-10 15:46:00.534074 2024-09-10 15:46:00.534087 4518f9a2-1270-44ed-8f1d-2053ca4481f8 {"md5": "e22f85a1499e872c999e577bc7b0c762", "pid": "1104861453", "note": [{"label": ["Angehöriger einer orthodoxen Kirche"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Christ"}], "identifier": "http://d-nb.info/gnd/1104861453", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1104861453", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1104861453", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1104861453", "source": "GND"}], "authorized_access_point": "Orthodoxer Christ"} 1 +2024-09-10 15:46:00.631872 2024-09-10 15:46:00.631875 e78a655d-9569-4dcd-ba13-f5bdcdcf3b5f {"md5": "f78edd4f0778e3ffa303baf691c93078", "pid": "1103248596", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Bibliolog"], "noteType": "dataSource"}, {"label": ["Hermeneutisch-methodischer Zugang zu biblischen Texten, der auf die Begegnung zwischen Mensch und biblischem Text zielt; eine Gruppe, Gemeinde oder Schulklasse identifiziert sich mit biblischen Gestalten und entdeckt auf diesem Wege einen biblischen Text, der Leiter gibt den Text vor und weist die Rollen zu, methodisch bewegt sich der Bibliolog auf der rein sprachlichen Ebene, eng am Text; hermeneutisch an der Texterkenntnis orientiert"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Darstellendes Spiel"}], "related": [{"authorized_access_point": "Bibliodrama"}], "identifier": "http://d-nb.info/gnd/1103248596", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1103248596", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1103248596", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1103248596", "source": "GND"}], "authorized_access_point": "Bibliolog"} 1 +2024-09-10 15:46:00.699212 2024-09-10 15:46:00.69922 9747e8e8-f703-4b95-bc91-a4371b7efb7a {"md5": "a768fb7e0bf690be63dfd0d66d9eaaad", "pid": "1103240579", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/w/index.php?title=Loop_quantum_gravity&oldid=1232727400"], "noteType": "dataSource"}, {"label": ["Hintergrundmetrikunabhängige Theorie der Quantengravitation, in der die Raum-Zeit durch ein Netzwerk dargestellt wird; also diskret ist."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Hintergrundunabhängigkeit"}, {"authorized_access_point": "Quantengravitation"}], "related": [{"authorized_access_point": "Wilson-Loop"}, {"authorized_access_point": "Quantenkosmologie"}, {"authorized_access_point": "Raum-Zeit"}], "identifier": "http://d-nb.info/gnd/1103240579", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1103240579", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1103240579", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1103240579", "source": "GND"}], "variant_access_point": ["Loop-Quantengravitation", "Loop Quantum Gravity"], "authorized_access_point": "Schleifenquantengravitation"} 1 +2024-09-10 15:46:00.894277 2024-09-10 15:46:00.894288 404f74f3-4523-4727-a383-618db036c645 {"md5": "321b7b7280b6395d1d654b96d078c4a4", "pid": "1085190633", "note": [{"label": ["BSZ Liste: \\"Musikalische Besetzungen\\" - http://verbund-swop.bsz-bw.de/volltexte/2010/174/"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Trommel"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334657823", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2003002994", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2003002994"}], "authorized_access_point": "Tom-tom"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334657823", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16258655", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb162586557"}], "authorized_access_point": "Tom-tom"}], "identifier": "http://d-nb.info/gnd/1085190633", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1085190633", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1085190633", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1085190633", "source": "GND"}], "variant_access_point": ["Tom-Tom (Musikinstrument)", "Tom (Musikinstrument)"], "authorized_access_point": "Tomtom (Musikinstrument)"} 1 +2024-09-10 15:46:00.993822 2024-09-10 15:46:00.993836 fed0f273-00a6-4743-a515-febc90543e8e {"md5": "b59bf987734cf52660c29a9a0b8388dd", "pid": "108229814X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}, {"authorized_access_point": "Auszeichnungsschrift"}, {"authorized_access_point": "Font"}], "identifier": "http://d-nb.info/gnd/108229814X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/108229814X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)108229814X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)108229814X", "source": "GND"}], "authorized_access_point": "Kleopatra (Druckschrift)"} 1 +2024-09-10 15:46:01.101814 2024-09-10 15:46:01.10183 c9be0a4f-0d8f-433d-9b28-fb7958bb4878 {"md5": "750418ba79614e84990dd76f2e7c5628", "pid": "1077459335", "note": [{"label": ["Besonders geschnittene Kleidung für Frauen, die schwanger sind"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Frauenkleidung"}], "identifier": "http://d-nb.info/gnd/1077459335", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1077459335", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1077459335", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1077459335", "source": "GND"}], "variant_access_point": ["Umstandsmode", "Schwangerschaftskleidung"], "authorized_access_point": "Umstandskleidung"} 1 +2024-09-10 15:46:01.1989 2024-09-10 15:46:01.198909 fc558f2f-d362-46da-8889-407b03392b1d {"md5": "f98116f30d592315a2a4f1383d017e38", "pid": "1077386478", "note": [{"label": ["Schriftfamilie, mit und ohne Serifen, hergestellt von Fontsmith", "Benutzt für alle FS-Silas-Schriften. Einzelne FS-Silas-Schriften werden getrennt angesetzt."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Antiqua"}, {"authorized_access_point": "Font"}], "identifier": "http://d-nb.info/gnd/1077386478", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1077386478", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1077386478", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1077386478", "source": "GND"}], "variant_access_point": ["Silas (Druckschrift)"], "authorized_access_point": "FS Silas"} 1 +2024-09-10 15:46:01.298912 2024-09-10 15:46:01.298921 a8274364-c69f-4769-a9c2-9e3b0f93913a {"md5": "dca5138435d3c4e6c80277877b77c84c", "pid": "1077065876", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Organisation"}], "identifier": "http://d-nb.info/gnd/1077065876", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1077065876", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1077065876", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1077065876", "source": "GND"}], "authorized_access_point": "Halb-öffentliche Organisation"} 1 +2024-09-10 15:46:01.401936 2024-09-10 15:46:01.401952 cf2b6543-94cf-433f-8d72-00e11dda36f6 {"md5": "eb13bbaca1eb1f98a3783fe1641ab3b8", "pid": "1069876534", "note": [{"label": ["Themenpark oder Ausstellung, die eine Marke oder ein Unternehmen erlebbar machen, Bsp. Autostadt Wolfsburg, BMW-Welt München"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Marketing"}, {"authorized_access_point": "Themenpark"}], "related": [{"authorized_access_point": "Ausstellung"}], "identifier": "http://d-nb.info/gnd/1069876534", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1069876534", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1069876534", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1069876534", "source": "GND"}], "variant_access_point": ["Brandland", "Industrieerlebniswelt"], "authorized_access_point": "Markenwelt"} 1 +2024-09-10 15:46:01.511768 2024-09-10 15:46:01.511778 d9203e47-19b1-45bc-92e7-92af2f0fac20 {"md5": "c0281fe977a774940fb8ef17b0496b3f", "pid": "1069526703", "note": [{"label": ["Speziell für ein Buch aus der Handschrift von Alexandra Klobouk entwickelt"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}, {"authorized_access_point": "Font"}], "identifier": "http://d-nb.info/gnd/1069526703", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1069526703", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1069526703", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1069526703", "source": "GND"}], "authorized_access_point": "Kobolt (Druckschrift)"} 1 +2024-09-10 15:46:01.61603 2024-09-10 15:46:01.616045 ce3c1221-bf1a-482e-a92c-679ef30978ef {"md5": "f56112efc25fcf9560bb2751aee4b372", "pid": "1069453420", "note": [{"label": ["Kostenlose digitalisierte Version von Dieter Steffmann"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fraktur (Druckschrift)"}, {"authorized_access_point": "Font"}], "identifier": "http://d-nb.info/gnd/1069453420", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1069453420", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1069453420", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1069453420", "source": "GND"}], "authorized_access_point": "Kleist-Fraktur"} 1 +2024-09-10 15:46:01.697863 2024-09-10 15:46:01.697869 8779a66b-80f5-4463-b825-a5f419e2126f {"md5": "5db9d3316b42415238707720e0b996ef", "pid": "1068825820", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Geometrie"}], "identifier": "http://d-nb.info/gnd/1068825820", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1068825820", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1068825820", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1068825820", "source": "GND"}], "variant_access_point": ["Hilbert-Geometrie", "Hilbert geometry", "Hilbertian geometry"], "authorized_access_point": "Hilbertsche Geometrie"} 1 +2024-09-10 15:46:01.81108 2024-09-10 15:46:01.811084 8f4725ee-5285-43e3-96ba-34e835073548 {"md5": "412371b913ce7e6757dc7bc554770f79", "pid": "1068606975", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Marketingberatung"}], "related": [{"authorized_access_point": "Marketingberater"}], "identifier": "http://d-nb.info/gnd/1068606975", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1068606975", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1068606975", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1068606975", "source": "GND"}], "authorized_access_point": "Marketingberaterin"} 1 +2024-09-10 15:46:01.921712 2024-09-10 15:46:01.921721 412c7519-69d6-43b0-9d06-272b893674e3 {"md5": "e3040be4d14e24799aa47b0fca9a3666", "pid": "1068048328", "note": [{"label": ["Zuerst verwendet im Book of common prayer (Prayer Book of King Edward VII), Essex House Press 1903"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifier": "http://d-nb.info/gnd/1068048328", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1068048328", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1068048328", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1068048328", "source": "GND"}], "variant_access_point": ["Prayer Book Type"], "authorized_access_point": "Prayer Book (Druckschrift)"} 1 +2024-09-10 15:46:02.044501 2024-09-10 15:46:02.044512 d20735c1-d09d-4fff-a4a0-adb249fc2167 {"md5": "540c99fe56b2ed9c9f9db5441be42eb5", "pid": "1067974490", "note": [{"label": ["Zum Inbegriff der Schwarzwälder Tracht gewordene weibliche Kopfbedeckung aus Stroh mit roten (bei Mädchen) oder schwarzen (bei Frauen) Wollbällchen (\\"Bollen\\")"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Damenhut"}, {"authorized_access_point": "Tracht"}], "identifier": "http://d-nb.info/gnd/1067974490", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1067974490", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1067974490", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1067974490", "source": "GND"}], "authorized_access_point": "Bollenhut"} 1 +2024-09-10 15:46:02.145346 2024-09-10 15:46:02.145354 a69bc4bc-1615-41fa-9a58-96d7c18cb2fb {"md5": "a0e51d595935597fedf2559e3708454b", "pid": "1066896534", "note": [{"label": ["Nützlinge aus der Familie der Blumenwanzen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Blumenwanzen"}], "identifier": "http://d-nb.info/gnd/1066896534", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1066896534", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1066896534", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1066896534", "source": "GND"}], "variant_access_point": ["Triphleps laevigata"], "authorized_access_point": "Orius laevigatus"} 1 +2024-09-10 15:46:02.242992 2024-09-10 15:46:02.243002 ca13668a-d90c-488e-bc74-df3bb4be704e {"md5": "271e12f174de75b2fdded283047b7d58", "pid": "1065486421", "note": [{"label": ["Majuskelschrift gründet auf der handgeschriebenen Schrift eines unbekannten Nachbarn"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Font"}, {"authorized_access_point": "Druckschrift"}], "identifier": "http://d-nb.info/gnd/1065486421", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1065486421", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1065486421", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1065486421", "source": "GND"}], "authorized_access_point": "Yard Sale"} 1 +2024-09-10 15:46:02.348927 2024-09-10 15:46:02.348938 0daebaff-e06b-4d8e-945b-30c5029d6a8a {"md5": "ec224a667c7692402611829a92da25e1", "pid": "106307147X", "note": [{"label": ["Valencianische Mundart im Tal Valldigna in der span. Provinz Valencia"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Valencianisch"}], "identifier": "http://d-nb.info/gnd/106307147X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/106307147X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)106307147X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)106307147X", "source": "GND"}], "authorized_access_point": "Mundart Valencianisch (Valldigna)"} 1 +2024-09-10 15:46:02.462039 2024-09-10 15:46:02.462054 2ca5f48c-1dae-4b79-a988-49ee3f1f673e {"md5": "5a4931548215b8b39a63b3bd7fe2f743", "pid": "105858488X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Musiker"}], "related": [{"authorized_access_point": "Folkmusikerin"}, {"authorized_access_point": "Folk music"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133818382", "source": "GND"}, {"type": "bf:Nbn", "value": "sh97002077", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh97002077"}], "authorized_access_point": "Folk musicians"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133818382", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12508672", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12508672r"}], "authorized_access_point": "Musiciens de folk"}], "identifier": "http://d-nb.info/gnd/105858488X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/105858488X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)105858488X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)105858488X", "source": "GND"}], "authorized_access_point": "Folkmusiker"} 1 +2024-09-10 15:46:02.557243 2024-09-10 15:46:02.557255 81b5cd37-ccca-42c5-9bf1-db8f65fbc5ad {"md5": "4efc0c25807ca94bae21ecf01bb74643", "pid": "1055013458", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Antiqua"}, {"authorized_access_point": "Font"}], "identifier": "http://d-nb.info/gnd/1055013458", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1055013458", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1055013458", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1055013458", "source": "GND"}], "authorized_access_point": "Fresco (Druckschrift)"} 1 +2024-09-10 15:46:02.664068 2024-09-10 15:46:02.664081 9ac7ef40-875f-4e4c-b6e7-6b8bbaa280fa {"md5": "493ab6bd0521c6d69ea248f3c30a8849", "pid": "1054183104", "note": [{"label": ["Markengattung zum Frankieren von Zeitungssendungen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Briefmarke"}], "identifier": "http://d-nb.info/gnd/1054183104", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1054183104", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1054183104", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1054183104", "source": "GND"}], "authorized_access_point": "Zeitungsmarke"} 1 +2024-09-10 15:46:02.759692 2024-09-10 15:46:02.759704 e72359ec-0843-4e2a-aa16-8b0f74248464 {"md5": "097a6d9f1f10a35670050b69af6732e5", "pid": "1054182779", "note": [{"label": ["Markenart zur Freimachung bei Massenauslieferung von Geschäftsdrucksachen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Drucksachenmarke"}], "identifier": "http://d-nb.info/gnd/1054182779", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1054182779", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1054182779", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1054182779", "source": "GND"}], "authorized_access_point": "Geschäftsdrucksachenmarke"} 1 +2024-09-10 15:46:02.896249 2024-09-10 15:46:02.896253 5adad7e8-964f-4fe0-a652-949cba737ddb {"md5": "424810654c8c4677d0f08e683c4e36ed", "pid": "1054182620", "note": [{"label": ["Markengattung zum Freimachen von Drucksachen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Briefmarke"}], "identifier": "http://d-nb.info/gnd/1054182620", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1054182620", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1054182620", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1054182620", "source": "GND"}], "authorized_access_point": "Drucksachenmarke"} 1 +2024-09-10 15:46:03.028421 2024-09-10 15:46:03.028431 4809cba8-918c-4955-836c-606b34342c2a {"md5": "a71f8de36d0dda8a7132bbe4586a3f90", "pid": "1051146089", "note": [{"label": ["Für das schwedische Mode- und Kulturmagazin \\"Rodeo\\" 2012 bei \\"Letters from Sweden\\" entworfen; beeinflusst von Schönheit, Schreibschrift, Graffiti und Kritzeleien"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}, {"authorized_access_point": "Font"}], "identifier": "http://d-nb.info/gnd/1051146089", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1051146089", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1051146089", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1051146089", "source": "GND"}], "authorized_access_point": "Line (Druckschrift)"} 1 +2024-09-10 15:46:03.132044 2024-09-10 15:46:03.132051 4726e06c-9017-4994-a180-8e42dbafccc7 {"md5": "0d7ed6e97779b59e80c0a5e88fbbb1dd", "pid": "1049270851", "note": [{"label": ["Derivat der Salicylsäure und des Anilins, die miteinander als Amid verknüpft sind (Salicylanilid); Wirkung: Vermizid und Molluskizid; C13H8Cl2N2O4"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Salicylsäurederivate"}, {"authorized_access_point": "Anilinderivate"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1279524227", "source": "GND"}, {"type": "bf:Nbn", "value": "D009534", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D009534"}], "authorized_access_point": "Niclosamide"}], "identifier": "http://d-nb.info/gnd/1049270851", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1049270851", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1049270851", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1049270851", "source": "GND"}], "variant_access_point": ["Ethanolamin-Salz"], "authorized_access_point": "Niclosamid"} 1 +2024-09-10 15:46:03.23957 2024-09-10 15:46:03.23958 02646431-ac5c-47b5-9d36-80103aff9253 {"md5": "e91509660914ddd4c432b2af15c5a4a3", "pid": "1044279206", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Weinkellner&oldid=209455822"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kellnerin"}], "related": [{"authorized_access_point": "Sommelier"}], "identifier": "http://d-nb.info/gnd/1044279206", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1044279206", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1044279206", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1044279206", "source": "GND"}], "variant_access_point": ["Weinkellnerin"], "authorized_access_point": "Sommelière"} 1 +2024-09-10 15:46:03.339047 2024-09-10 15:46:03.339061 10749800-807e-4306-a560-350cbc049ee4 {"md5": "6958db55152f21e5a98a217af3e8b5b6", "pid": "1041611064", "note": [{"label": ["Meist über digitale Plattformen abgewickelte Finanzierungsmöglichkeit, bei der eine größere Anzahl von Personen den Finanzierungsbedarf eines Projektes deckt."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Finanzierung"}, {"authorized_access_point": "Kapitalbeschaffung"}, {"authorized_access_point": "Crowdsourcing"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334879613", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2012003482", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2012003482"}], "authorized_access_point": "Crowd funding"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334879613", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16596756q", "source": "BNF"}, {"type": "uri", "value": "https://catalogue.bnf.fr/ark:/12148/cb16596756q"}], "authorized_access_point": "Financement participatif"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1042215081", "source": "GND"}, {"type": "bf:Nbn", "value": "30026-6", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/30026-6"}], "authorized_access_point": "Crowdfunding"}], "identifier": "http://d-nb.info/gnd/1041611064", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1041611064", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1041611064", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1041611064", "source": "GND"}], "variant_access_point": ["Schwarmfinanzierung", "Crowdinvestment", "Crowdinvesting"], "authorized_access_point": "Crowdfunding"} 1 +2024-09-10 15:46:04.865998 2024-09-10 15:46:04.866006 4603aae9-1788-401e-b386-06fb2a8fbd07 {"md5": "47f29786b213f1aaecf778ec678b434b", "pid": "1000168972", "note": [{"label": ["Entstehungsjahr: 1923"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fraktur (Druckschrift)"}], "identifier": "http://d-nb.info/gnd/7690681-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7690681-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1000168972", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7690681-4", "source": "GND"}], "authorized_access_point": "Mörike-Fraktur"} 1 +2024-09-10 15:46:03.440929 2024-09-10 15:46:03.440939 76041fab-7675-4345-97aa-662050897c41 {"md5": "a3d3bf0f0229e4866eebca321d2fb2be", "pid": "1036907430", "note": [{"label": ["Benutzt soweit im Ausland lebend"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ausländischer Student"}, {"authorized_access_point": "Belgier"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334679959", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85012953", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85012953"}], "authorized_access_point": "Belgian students"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334679959", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16084808", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16084808k"}], "authorized_access_point": "Étudiants belges"}], "identifier": "http://d-nb.info/gnd/1036907430", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1036907430", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1036907430", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1036907430", "source": "GND"}], "authorized_access_point": "Belgischer Student"} 1 +2024-09-10 15:46:03.541626 2024-09-10 15:46:03.541638 ccd3c642-a691-498c-affc-d5fb2c2ada71 {"md5": "bf3d40893ec49aabfc5ce9575da7a783", "pid": "1036857263", "note": [{"label": ["Wikipedia, unter Kindesmisshandlung - https://de.wikipedia.org/w/index.php?oldid=245619752"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Missbrauch"}], "related": [{"authorized_access_point": "Psychoterror"}, {"authorized_access_point": "Mobbing"}, {"authorized_access_point": "Gaslighting"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1221158570", "source": "GND"}, {"type": "bf:Nbn", "value": "sh94002308", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh94002308"}], "authorized_access_point": "Psychological abuse"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1221158570", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16918426", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16918426g"}], "authorized_access_point": "Violence psychologique"}], "identifier": "http://d-nb.info/gnd/1036857263", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1036857263", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1036857263", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1036857263", "source": "GND"}], "variant_access_point": ["Psychischer Missbrauch", "Emotionale Gewalt", "Psychische Gewalt", "Seelische Gewalt"], "authorized_access_point": "Emotionaler Missbrauch"} 1 +2024-09-10 15:46:03.647637 2024-09-10 15:46:03.647682 53f73d97-4883-4b2e-ad75-43175f3deb79 {"md5": "91e6abb788f3604b5c3b5d04f223c375", "pid": "1029263361", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Proteste_in_Spanien_2011/2012&oldid=246952051", "Wikipedia - https://es.wikipedia.org/wiki/Movimiento_15-M"], "noteType": "dataSource"}, {"label": ["Span. polit. Protestbewegung seit d. 15. Mai 2011"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Protestbewegung"}], "identifier": "http://d-nb.info/gnd/1029263361", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1029263361", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1029263361", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1029263361", "source": "GND"}], "variant_access_point": ["15M", "15-M", "Indignados", "Movimiento de los indignados", "Bewegung 15. Mai"], "authorized_access_point": "Movimiento 15-M"} 1 +2024-09-10 15:46:03.73936 2024-09-10 15:46:03.739363 e61b7369-455b-4d65-a382-805663ca8b8d {"md5": "ff93d899538ffd39ba4dbc7886619609", "pid": "1019980389", "note": [{"label": ["Benutzt soweit im Ausland lebend"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ausländischer Student"}, {"authorized_access_point": "Österreicher"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133467972X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85009755", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85009755"}], "authorized_access_point": "Austrian students"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133467972X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17124632", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17124632z"}], "authorized_access_point": "Étudiants autrichiens"}], "identifier": "http://d-nb.info/gnd/7855380-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7855380-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1019980389", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7855380-5", "source": "GND"}], "authorized_access_point": "Österreichischer Student"} 1 +2024-09-10 15:46:03.811707 2024-09-10 15:46:03.811717 5059bb67-4b8d-43fe-9c18-e9ac222bd72b {"md5": "f556dbc08b616f00c7d7f75dff500091", "pid": "1015187382", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kieselsediment"}], "identifier": "http://d-nb.info/gnd/7758564-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7758564-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1015187382", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7758564-1", "source": "GND"}], "authorized_access_point": "Kieselschiefer"} 1 +2024-09-10 15:46:03.897314 2024-09-10 15:46:03.897322 04454d52-bf4c-4f89-a89e-679815d680d2 {"md5": "fd606fbfde3af941b47510a67ca22005", "pid": "1014400783", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Auktion"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1335137777", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2003012332", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2003012332"}], "authorized_access_point": "Postage stamp auctions"}], "identifier": "http://d-nb.info/gnd/7755757-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7755757-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1014400783", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7755757-8", "source": "GND"}], "variant_access_point": ["Briefmarke", "Briefmarkenversteigerung"], "authorized_access_point": "Briefmarkenauktion"} 1 +2024-09-10 15:46:03.989093 2024-09-10 15:46:03.989105 8ac21d5d-6f4d-4519-91c1-82ede5ef5eb6 {"md5": "9f436db9c2125dbeef943d5f4d2850cc", "pid": "1013709640", "note": [{"label": ["Japan. Tanzform, im 8. Jh. aus China übernommen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tanz"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134319576", "source": "GND"}, {"type": "bf:Nbn", "value": "sh88005510", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh88005510"}], "authorized_access_point": "Gigaku"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134319576", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12423745", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb124237455"}], "authorized_access_point": "Gigaku"}], "identifier": "http://d-nb.info/gnd/7753091-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7753091-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1013709640", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7753091-3", "source": "GND"}], "authorized_access_point": "Gigaku"} 1 +2024-09-10 15:46:04.103716 2024-09-10 15:46:04.103724 8a231b95-1755-404f-b625-193edbde465e {"md5": "e67512a2879e680d6bbab0111eeafab2", "pid": "1010242008", "note": [{"label": ["Art der Giftnattern (Elapidae)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Giftnattern"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1323122141", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17057750", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17057750b"}], "authorized_access_point": "Bungarus fasciatus"}], "identifier": "http://d-nb.info/gnd/7736415-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7736415-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1010242008", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7736415-6", "source": "GND"}], "variant_access_point": ["Gelber Bungar", "Bänder-Krait", "Gebänderter Krait", "Bungarus fasciatus"], "authorized_access_point": "Krait"} 1 +2024-09-10 15:46:04.226726 2024-09-10 15:46:04.226731 8618cabb-be5f-4e53-8642-e7c8a5745c70 {"md5": "89b5d0c17a8854748e1d78b890b8f513", "pid": "1009887017", "note": [{"label": ["Zurücklenkung der Aufmerksamkeit auf das Ich und seine Tätigkeit."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/7733566-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7733566-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1009887017", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7733566-1", "source": "GND"}], "authorized_access_point": "Reflexion (Psychologie)"} 1 +2024-09-10 15:46:04.316492 2024-09-10 15:46:04.316501 3c39a31f-f391-4b92-856c-d83958602282 {"md5": "e7565eeed5c0acdbca61067d4b05e027", "pid": "1008996270", "note": [{"label": ["Im Barock als Gegensatz zur Kirchensonate, im 20. Jhdt. als Bezeichnung wieder aufgegriffen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sonate"}], "identifier": "http://d-nb.info/gnd/7727964-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7727964-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1008996270", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7727964-5", "source": "GND"}], "variant_access_point": ["Sonata da camera", "Sonate de chambre"], "authorized_access_point": "Kammersonate"} 1 +2024-09-10 15:46:04.417926 2024-09-10 15:46:04.417939 3df92a67-c65a-4b63-b70a-d5b29bfac285 {"md5": "eda4c2b888611654d8cf0ec609af1c28", "pid": "1008049115", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zunft"}], "identifier": "http://d-nb.info/gnd/7722831-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7722831-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1008049115", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7722831-5", "source": "GND"}], "variant_access_point": ["Messerschmied"], "authorized_access_point": "Messerschmiedezunft"} 1 +2024-09-10 15:46:04.517949 2024-09-10 15:46:04.517959 a8a32a8c-77e1-43d2-a5fa-0599e20727f5 {"md5": "7012e925a503ae42d91f0fef87f85d79", "pid": "100735531X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifier": "http://d-nb.info/gnd/7718660-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7718660-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)100735531X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7718660-6", "source": "GND"}], "authorized_access_point": "Golfkrieg (1990-1991, Motiv)"} 1 +2024-09-10 15:46:04.611251 2024-09-10 15:46:04.611263 a2753977-7134-477f-bfb4-e12dad1944c7 {"md5": "bc150a39f85a53f280db966cdfa9451c", "pid": "1006894675", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Säule"}], "identifier": "http://d-nb.info/gnd/7716437-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7716437-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1006894675", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7716437-4", "source": "GND"}], "authorized_access_point": "Poller"} 1 +2024-09-10 15:46:04.716484 2024-09-10 15:46:04.716498 0226ec93-9a63-4523-8eb0-e9703a70e72c {"md5": "4cd6346674cc9cc53efa587043f0f483", "pid": "1002238951", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Conditio_humana"], "noteType": "dataSource"}, {"label": ["Die Umstände des Menschseins und die Natur des Menschen als Gegenstand der Philosophischen Anthropologie"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Philosophische Anthropologie"}], "identifier": "http://d-nb.info/gnd/7701000-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7701000-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1002238951", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7701000-0", "source": "GND"}], "variant_access_point": ["condicio humana"], "authorized_access_point": "Conditio humana"} 1 +2024-09-10 15:46:04.799667 2024-09-10 15:46:04.799673 89b812e6-f35a-4903-8a7b-2f5980079cf4 {"md5": "ee3da820cdab3b130c864b589ec265c2", "pid": "1000642119", "note": [{"label": ["Benutzt für alle Steinschrift-Schriften. Einzelne Steinschrift-Schriften werden getrennt angesetzt."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Antiqua"}], "identifier": "http://d-nb.info/gnd/7693298-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7693298-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1000642119", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7693298-9", "source": "GND"}], "authorized_access_point": "Steinschrift"} 1 +2024-09-10 15:46:04.953007 2024-09-10 15:46:04.953018 37c73ab9-b493-4767-bfab-9c27ce14266b {"md5": "6745466e5ee0edd3ca1f5510098ad19d", "pid": "998776785", "note": [{"label": ["Wikipedia - http://www.typolexikon.de/g/gebrochene-schriften.html"], "noteType": "dataSource"}, {"label": ["Auch Blackletter, Gotische Schrift oder Frakturschrift umgangssprachlich genannt"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "related": [{"authorized_access_point": "Gotische Schrift"}, {"authorized_access_point": "Fraktur (Druckschrift)"}], "identifier": "http://d-nb.info/gnd/7683814-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7683814-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)998776785", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7683814-6", "source": "GND"}], "variant_access_point": ["Deutsche Schrift"], "authorized_access_point": "Gebrochene Schrift"} 1 +2024-09-10 15:46:05.06916 2024-09-10 15:46:05.069169 c9eff4d7-00e6-403e-98b0-93228911eef0 {"md5": "76b6bc8bb6715619f2df5f071ff1e10e", "pid": "995780951", "note": [{"label": ["Schmied, der spezialisiert ist auf das Schmieden von Gliederketten aus Eisen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schmied"}], "identifier": "http://d-nb.info/gnd/7668511-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7668511-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)995780951", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7668511-1", "source": "GND"}], "authorized_access_point": "Kettenschmied"} 1 +2024-09-10 15:46:05.169446 2024-09-10 15:46:05.169458 305b48de-ded0-4c17-94a6-e74dda2a7a7a {"md5": "d7365ac1e3d809bca32757e53ebaa9e4", "pid": "994659857", "note": [{"label": ["Afrobrasilianischer Tanz"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tanz"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334651493", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2006000144", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2006000144"}], "authorized_access_point": "Jongo (Dance)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334651493", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17146982", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb171469827"}], "authorized_access_point": "Jongo (danse)"}], "identifier": "http://d-nb.info/gnd/7661541-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7661541-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)994659857", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7661541-8", "source": "GND"}], "variant_access_point": ["Caxambu (Tanz)"], "authorized_access_point": "Jongo"} 1 +2024-09-10 15:46:05.288011 2024-09-10 15:46:05.288026 cf097753-1404-4cf1-bce7-0baeffbb73d1 {"md5": "13a326fa3bc0f99d55ae4479fe5105ff", "pid": "99405212X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifier": "http://d-nb.info/gnd/7657749-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7657749-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)99405212X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7657749-1", "source": "GND"}], "authorized_access_point": "Ärztliche Behandlung (Motiv)"} 1 +2024-09-10 15:46:05.39673 2024-09-10 15:46:05.39674 355b96e8-a67f-4027-b1d0-d10de370b0df {"md5": "fb152191b2038626285717ec166cfbf3", "pid": "99283600X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Brettspiel"}], "identifier": "http://d-nb.info/gnd/7648685-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7648685-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)99283600X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7648685-0", "source": "GND"}], "variant_access_point": ["Chaupad", "Chaupar", "Chaupat", "Chaupur", "Pat (Brettspiel)"], "authorized_access_point": "Pachisi"} 1 +2024-09-10 15:46:05.514446 2024-09-10 15:46:05.51445 675767f7-8f5b-4ac9-9d23-1a3d58964989 {"md5": "085a9e389400aa6bb98cdd0693362a55", "pid": "992757126", "note": [{"label": ["Wikipedia unter Koch, Rudolf - http://www.klingspor-museum.de/KlingsporKuenstler/Schriftdesigner/Koch/koch_special.pdf"], "noteType": "dataSource"}, {"label": ["Entstehungsjahr: 1933/34"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fraktur (Druckschrift)"}], "identifier": "http://d-nb.info/gnd/7647830-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7647830-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992757126", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7647830-0", "source": "GND"}], "authorized_access_point": "Neu-Fraktur"} 1 +2024-09-10 15:46:05.608852 2024-09-10 15:46:05.608858 db99f265-09e8-4923-a808-f62f4c09422e {"md5": "99eb49e6e9ef6257875c0dc6de6101fe", "pid": "992754909", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifier": "http://d-nb.info/gnd/7647600-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7647600-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992754909", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7647600-5", "source": "GND"}], "authorized_access_point": "Retina (Druckschrift)"} 1 +2024-09-10 15:46:06.560127 2024-09-10 15:46:06.560138 c76ab960-f405-46fe-bc0e-8b9f693f0c40 {"md5": "7ae40f82ff28b9b5b9aeeddd73d079de", "pid": "992747031", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}, {"authorized_access_point": "Font"}], "identifier": "http://d-nb.info/gnd/7647381-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7647381-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992747031", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7647381-8", "source": "GND"}], "authorized_access_point": "Helena (Druckschrift)"} 1 +2024-09-10 15:46:06.642164 2024-09-10 15:46:06.642173 0e14a273-a40b-4f16-927b-4d2827e33e4d {"md5": "ab7b7f17c8db82d71be6d724feafe9cb", "pid": "992746779", "note": [{"label": ["Entstehungszeit 1924; weitere Formen: Wilhelm-Klingspor-Gotisch, Wilhelm-Klingspor-Fraktur"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gebrochene Schrift"}], "identifier": "http://d-nb.info/gnd/7647356-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7647356-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992746779", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7647356-9", "source": "GND"}], "variant_access_point": ["Wilhelm Klingspor Schrift"], "authorized_access_point": "Wilhelm-Klingspor-Schrift"} 1 +2024-09-10 15:46:05.739544 2024-09-10 15:46:05.739553 61c048e1-af5c-40de-910a-c33a0e5a0c0c {"md5": "8c62562f677beb911cacd42ce89ce418", "pid": "992754550", "note": [{"label": ["Verwendet für alle auf dem arabischen Schriftsystem basierenden Druckschriften; Einordnung in Gruppe XI der DIN 16518"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}, {"authorized_access_point": "Arabische Schrift"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113367707X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85139095", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85139095"}], "authorized_access_point": "Arabic type"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113367707X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11973333", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11973333t"}], "authorized_access_point": "Caractères arabes (imprimerie)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254405860", "source": "GND"}, {"type": "bf:Nbn", "value": "XX550520", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX550520"}], "authorized_access_point": "Tipos de imprenta árabes"}], "identifier": "http://d-nb.info/gnd/7647567-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7647567-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992754550", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7647567-0", "source": "GND"}], "authorized_access_point": "Arabische Schrift (Druckschrift)"} 1 +2024-09-10 15:46:05.827129 2024-09-10 15:46:05.827132 63fb068d-7af6-4dbf-8450-dbe6d18d917b {"md5": "d4478b4069672102ab1737d16fb4b6a0", "pid": "992754534", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Antiqua"}, {"authorized_access_point": "Font"}], "identifier": "http://d-nb.info/gnd/7647565-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7647565-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992754534", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7647565-7", "source": "GND"}], "authorized_access_point": "Typewriter Elite"} 1 +2024-09-10 15:46:05.917254 2024-09-10 15:46:05.917263 b9b6fc3b-7760-4491-80d2-0caed635b2fb {"md5": "c3cbe9bc8d432549c9117070ad048c78", "pid": "992754305", "note": [{"label": ["Entstehungszeit 1992, bei MyFonts ab Januar 2000"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Groteskschrift"}, {"authorized_access_point": "Font"}], "identifier": "http://d-nb.info/gnd/7647539-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7647539-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992754305", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7647539-6", "source": "GND"}], "authorized_access_point": "FF Schulbuch"} 1 +2024-09-10 15:46:06.02121 2024-09-10 15:46:06.021222 aad8ea24-a02b-4c50-8411-80090ddd1020 {"md5": "3b1e9d8e1019c59580bcd8152ffae542", "pid": "992753694", "note": [{"label": ["Entstehungszeit 1922, auch kursiv"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Antiqua"}], "identifier": "http://d-nb.info/gnd/7647475-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7647475-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992753694", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7647475-6", "source": "GND"}], "authorized_access_point": "Koch-Antiqua"} 1 +2024-09-10 15:46:06.120743 2024-09-10 15:46:06.120755 6ccac0e3-8e99-4e2d-80d2-576383bfa774 {"md5": "409cb64ba10edf463f1da3d2a6d21787", "pid": "99275366X", "note": [{"label": ["Veröffentlicht: 1914. Abweichende Entstehungszeit 1917 (Klingspor)", "Die Benennung Maximilian-Fraktur (Zettelkatalog Deutsches Buch- und Schriftmuseum, Entstehungszeit 1922) ist bislang nur nachgewiesen in: Faust : eine Monatsschrift für Kunst, Literatur und Musik. Die Zeitschrift erschien von 1921-1926. Die Maximilian-Fraktur entspricht der Maximilian-Gotisch (Stand: 22.10.2021)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gebrochene Schrift"}], "identifier": "http://d-nb.info/gnd/7647473-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7647473-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)99275366X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7647473-2", "source": "GND"}], "variant_access_point": ["Maximilian (Druckschrift)", "Maximilian-Fraktur"], "authorized_access_point": "Maximilian-Gotisch"} 1 +2024-09-10 15:46:06.228764 2024-09-10 15:46:06.228773 c518675a-6ecd-4cc4-b811-3abba3d5fc93 {"md5": "b39eb2e71636d2e9145c88f6d23569d0", "pid": "992752973", "note": [{"label": ["Entstehungsjahr 1929 (normal, mager, halbfett, fett)", "Benutzt für alle Metro-Schriften. Einzelne Metro-Schriften werden getrennt angesetzt."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Groteskschrift"}], "identifier": "http://d-nb.info/gnd/7647406-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7647406-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992752973", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7647406-9", "source": "GND"}], "variant_access_point": ["Metroblack", "Metrolite", "Metrothin", "Metromedium"], "authorized_access_point": "Metro (Druckschrift)"} 1 +2024-09-10 15:46:06.331933 2024-09-10 15:46:06.331945 fbcab54b-61d9-43d5-af97-fac54e1284c2 {"md5": "887e6e48fc44620e4b78489e5a9aa93a", "pid": "992751020", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifier": "http://d-nb.info/gnd/7647399-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7647399-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992751020", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7647399-5", "source": "GND"}], "authorized_access_point": "Astrée"} 1 +2024-09-10 15:46:06.461558 2024-09-10 15:46:06.46157 a75cb8b8-ca30-4825-b6a9-b6a32f924437 {"md5": "99688cd2f030cb0f11a449455f805586", "pid": "99274881X", "note": [{"label": ["Entstehungszeit 1901; Hausschnitt"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fraktur (Druckschrift)"}], "identifier": "http://d-nb.info/gnd/7647389-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7647389-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)99274881X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7647389-2", "source": "GND"}], "authorized_access_point": "Offenbacher Fraktur"} 1 +2024-09-10 15:46:06.736099 2024-09-10 15:46:06.736109 e1b7e1b6-44ed-436b-ae5f-4befb5d0c805 {"md5": "0de8c49e8c4c2c8fa5c94920e8a698e9", "pid": "992746248", "note": [{"label": ["Entstehungszeit: 1900"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schwabacher"}], "identifier": "http://d-nb.info/gnd/7647301-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7647301-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992746248", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7647301-6", "source": "GND"}], "authorized_access_point": "Offenbacher Schwabacher"} 1 +2024-09-10 15:46:06.839364 2024-09-10 15:46:06.839372 f4450362-d473-492e-99f8-5a1f791e43b8 {"md5": "156d19ec15ecfcfca9ed507d734e1da8", "pid": "992745969", "note": [{"label": ["Entstehungszeit 1927; Schrift der Heuvelpers"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifier": "http://d-nb.info/gnd/7647276-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7647276-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992745969", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7647276-0", "source": "GND"}], "variant_access_point": ["Meidoorntype"], "authorized_access_point": "Meidoorn (Druckschrift)"} 1 +2024-09-10 15:46:06.902376 2024-09-10 15:46:06.902379 fc57a654-b2c7-4cdd-8536-21b1baac6154 {"md5": "bf98dad56d8bdc6cb4faa0cd72a45b36", "pid": "992745292", "note": [{"label": ["Entstehungszeit vor 1940"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifier": "http://d-nb.info/gnd/7647206-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7647206-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992745292", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7647206-1", "source": "GND"}], "authorized_access_point": "Konupkova italka"} 1 +2024-09-10 15:46:06.985187 2024-09-10 15:46:06.985197 8576902d-bb8a-4374-8fee-f44c7987bf75 {"md5": "b6ed4c7a151f792c76269d2850ca8a77", "pid": "992745187", "note": [{"label": ["Entstehungszeit 1905"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Antiqua"}], "identifier": "http://d-nb.info/gnd/7647196-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7647196-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992745187", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7647196-2", "source": "GND"}], "authorized_access_point": "König-Antiqua"} 1 +2024-09-10 15:46:07.08466 2024-09-10 15:46:07.084672 661073aa-dc26-4027-b9a4-54127023e796 {"md5": "d51c7635335d6346d4c8137cf8da61f8", "pid": "99274508X", "note": [{"label": ["Entstehungszeit um 1906"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gotische Schrift"}], "identifier": "http://d-nb.info/gnd/7647185-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7647185-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)99274508X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7647185-8", "source": "GND"}], "variant_access_point": ["Hupp-Liturgisch"], "authorized_access_point": "Liturgisch (Druckschrift)"} 1 +2024-09-10 15:46:07.193372 2024-09-10 15:46:07.193387 b39b56d3-9787-47bf-bfc8-1fba79cf2791 {"md5": "c21f5cb635e4743c69899875a29767fc", "pid": "992744792", "note": [{"label": ["Gestalter: Koch, Rudolf <1876-1934>, fertiggestellt von Friedrich Heinrichsen, Halbfette von Hans Kühne; Druckschrift mit gebrochenen Versalien"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifier": "http://d-nb.info/gnd/7647157-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7647157-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992744792", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7647157-3", "source": "GND"}], "variant_access_point": ["Offenbacher Schrift (Druckschrift)"], "authorized_access_point": "Offenbach (Druckschrift)"} 1 +2024-09-10 15:46:07.292829 2024-09-10 15:46:07.292838 2524077a-1eff-47f7-bea7-aa982aceb457 {"md5": "0eb841ccbd11bd2851f3112c20be986e", "pid": "992744091", "note": [{"label": ["Enstehungsjahr 1965"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}, {"authorized_access_point": "Font"}], "identifier": "http://d-nb.info/gnd/7647085-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7647085-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992744091", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7647085-4", "source": "GND"}], "authorized_access_point": "Amelia (Druckschrift)"} 1 +2024-09-10 15:46:07.383345 2024-09-10 15:46:07.383356 fd632ef7-eb00-40e7-b6f0-b1c62785d423 {"md5": "5438515634363d2d527503c1d7e1097e", "pid": "992743605", "note": [{"label": ["Nachgewiesen 2005"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifier": "http://d-nb.info/gnd/7647034-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7647034-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992743605", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7647034-9", "source": "GND"}], "authorized_access_point": "Cocotte minute (Druckschrift)"} 1 +2024-09-10 15:46:07.475482 2024-09-10 15:46:07.47549 ecd5f771-60ed-4f1f-a13d-440f08e64820 {"md5": "0a34adced758d48897019afa261dac43", "pid": "992743273", "note": [{"label": ["Wikipedia unter Rudolf Koch - http://www.klingspor-museum.de/KlingsporKuenstler/Schriftdesigner/Koch/RudolfKoch.pdf"], "noteType": "dataSource"}, {"label": ["Entstehunmgsjahr 1929; Auszeichnungsschrift"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Groteskschrift"}], "related": [{"authorized_access_point": "Kabel (Druckschrift)"}], "identifier": "http://d-nb.info/gnd/7647001-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7647001-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992743273", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7647001-5", "source": "GND"}], "authorized_access_point": "Zeppelin (Druckschrift)"} 1 +2024-09-10 15:46:07.562242 2024-09-10 15:46:07.562251 18220811-8413-44da-b8d9-014f6a5ab3bb {"md5": "bc9c176b415d47be7ee338128a537370", "pid": "992742889", "note": [{"label": ["Entstehungszeit 1924"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gotische Schrift"}], "identifier": "http://d-nb.info/gnd/7646956-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7646956-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992742889", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7646956-6", "source": "GND"}], "authorized_access_point": "Tiemann-Gotisch"} 1 +2024-09-10 15:46:07.674985 2024-09-10 15:46:07.674994 7e004d0b-236d-4bd0-8b24-ac9896370b7f {"md5": "caf6bcf8482917ed4f102f68efb0879c", "pid": "992742854", "note": [{"label": ["Benannt nach Heinrich Wallau, einem Buchdrucker und Schriftkenner aus Mainz, mit der Breitfeder entworfen, auch mager, fett, halbfett und mit unterschiedlichen Großbuchstaben"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Rundgotische Schrift"}], "identifier": "http://d-nb.info/gnd/7646953-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7646953-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992742854", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7646953-0", "source": "GND"}], "authorized_access_point": "Wallau (Druckschrift)"} 1 +2024-09-10 15:46:07.801892 2024-09-10 15:46:07.801905 56cfdf03-8821-446e-9a72-3c0c5863dd06 {"md5": "c9d3c7f83d970bfa0e5abcfcc48ecb92", "pid": "992742722", "note": [{"label": ["Entstehungsjahr 1934 (normal u.fett); licht 1937"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifier": "http://d-nb.info/gnd/7646939-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7646939-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992742722", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7646939-6", "source": "GND"}], "authorized_access_point": "Superba (Druckschrift)"} 1 +2024-09-10 15:46:07.907481 2024-09-10 15:46:07.907484 61ac79f9-d404-4f32-87d0-4338c9e7d4d8 {"md5": "2004f9d97eb3e5d6e48d01d52bb2b5a5", "pid": "992742498", "note": [{"label": ["Entstehungszeit 1939; mager, fett, kursiv, schmal fett"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifier": "http://d-nb.info/gnd/7646915-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7646915-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992742498", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7646915-3", "source": "GND"}], "authorized_access_point": "Stahl (Druckschrift)"} 1 +2024-09-10 15:46:07.980096 2024-09-10 15:46:07.980106 abb85a4c-0d87-4355-9135-57fb2f763c47 {"md5": "cd0612a81f963425b441478112d2c2a8", "pid": "992741696", "note": [{"label": ["Entstehungsjahr 1939"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schreibschrift (Druckschrift)"}], "identifier": "http://d-nb.info/gnd/7646834-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7646834-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992741696", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7646834-3", "source": "GND"}], "authorized_access_point": "Gavotte (Druckschrift)"} 1 +2024-09-10 15:46:08.092888 2024-09-10 15:46:08.092893 cadd1452-8378-4545-bb40-be0739ce1442 {"md5": "a6daa1b5824db1e0cc5759a361240b6c", "pid": "992741491", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifier": "http://d-nb.info/gnd/7646814-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7646814-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992741491", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7646814-8", "source": "GND"}], "variant_access_point": ["Schlemihl (Schrift)"], "authorized_access_point": "Peter Schlemihl (Druckschrift)"} 1 +2024-09-10 15:46:08.205026 2024-09-10 15:46:08.205031 5d0a649e-1455-4386-b8e4-22f18a988ebf {"md5": "4f664883da8194f0a97368fa741c57bc", "pid": "992739659", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifier": "http://d-nb.info/gnd/7646620-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7646620-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992739659", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7646620-6", "source": "GND"}], "authorized_access_point": "Romantiques"} 1 +2024-09-10 15:46:08.322344 2024-09-10 15:46:08.322355 090ae316-9ec3-49a7-aad4-a2ca8172e52b {"md5": "8193f6829a146c6ca52ba751db381ada", "pid": "992738601", "note": [{"label": ["Wikipedia - http://www.klingspor-museum.de/KlingsporKuenstler/Schriftdesigner/Brudi/Brudi.pdf"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifier": "http://d-nb.info/gnd/7646519-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7646519-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992738601", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7646519-6", "source": "GND"}], "authorized_access_point": "Orbis (Druckschrift)"} 1 +2024-09-10 15:46:08.437937 2024-09-10 15:46:08.437948 1b5516f1-2832-45e3-93a7-fba9513804f8 {"md5": "23092128eb84c56afeb2ca0066586295", "pid": "992738172", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifier": "http://d-nb.info/gnd/7646473-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7646473-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992738172", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7646473-8", "source": "GND"}], "authorized_access_point": "Phalanx (Druckschrift)"} 1 +2024-09-10 15:46:08.538021 2024-09-10 15:46:08.538034 26de8d5c-78b0-456a-a2d7-059bfa11b50a {"md5": "dcaf4c6ab2424371d3ae884976541b1d", "pid": "992738083", "note": [{"label": ["Wikipedia unter Walter Tiemann - http://www.klingspor-museum.de/KlingsporKuenstler/Schriftdesigner/Tiemann/WTiemann.pdf"], "noteType": "dataSource"}, {"label": ["Entstehungszeit 1923, halbfett 1917"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Antiqua"}], "identifier": "http://d-nb.info/gnd/7646464-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7646464-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992738083", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7646464-7", "source": "GND"}], "authorized_access_point": "Tiemann-Antiqua"} 1 +2024-09-10 15:46:08.666561 2024-09-10 15:46:08.66657 db43a306-3dee-4321-a9e7-9a285c902231 {"md5": "3c33d1dab2b1db872b75ae5f989732b8", "pid": "992738075", "note": [{"label": ["Entstehungszeit 1931"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifier": "http://d-nb.info/gnd/7646463-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7646463-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992738075", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7646463-5", "source": "GND"}], "authorized_access_point": "Salut (Druckschrift)"} 1 +2024-09-10 15:46:08.749941 2024-09-10 15:46:08.749945 92f0ed89-d26f-44a3-b1dc-38ab092836ee {"md5": "d9b75488345f935e82496e99a887e8d9", "pid": "992737834", "note": [{"label": ["Vorlage Deutsches Buch- und Schriftmuseum - http://de.ffonts.net/Beebop.font"], "noteType": "dataSource"}, {"label": ["Nachgewiesen 2002"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}, {"authorized_access_point": "Font"}], "identifier": "http://d-nb.info/gnd/7646436-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7646436-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992737834", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7646436-2", "source": "GND"}], "authorized_access_point": "Beebop (Druckschrift)"} 1 +2024-09-10 15:46:08.864255 2024-09-10 15:46:08.864268 5227ae58-b710-4367-8855-5c9af597ac60 {"md5": "ffcb567ce0e353aa57b2a4c5f32ceb0f", "pid": "992737826", "note": [{"label": ["Nachgewiesen 2004"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}, {"authorized_access_point": "Font"}], "identifier": "http://d-nb.info/gnd/7646435-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7646435-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992737826", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7646435-0", "source": "GND"}], "variant_access_point": ["SpaceCowboy"], "authorized_access_point": "Space Cowboy"} 1 +2024-09-10 15:46:08.964331 2024-09-10 15:46:08.964335 98df890f-862b-4826-82b7-0491ead7e284 {"md5": "da7283b66a767d31de20d8a71dab61ae", "pid": "992737788", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}, {"authorized_access_point": "Font"}], "identifier": "http://d-nb.info/gnd/7646431-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7646431-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992737788", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7646431-3", "source": "GND"}], "variant_access_point": ["European (Druckschrift)", "Linotype European PI"], "authorized_access_point": "European PI"} 1 +2024-09-10 15:46:09.064698 2024-09-10 15:46:09.064709 24760cb1-0498-4c81-b84b-2db410bbbcdd {"md5": "2c49bab197089d5ae18c466199f683fe", "pid": "992737532", "note": [{"label": ["Enstehungsjahr 1936 (Typothek gibt 1928 an)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifier": "http://d-nb.info/gnd/7646406-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7646406-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992737532", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7646406-4", "source": "GND"}], "authorized_access_point": "Euphorion (Druckschrift)"} 1 +2024-09-10 15:46:09.172474 2024-09-10 15:46:09.172524 e3f90d44-4eb4-4b5a-8d42-21b67a291cb7 {"md5": "ff146d5706228e0a93fc283c60ec23bd", "pid": "992736269", "note": [{"label": ["Wikipedia unter Otto Hupp - http://beepworld.de/members66/vau-ef-be/schriftliste1.htm"], "noteType": "dataSource"}, {"label": ["Entstehungsjahr 1911 (abweichend 1910)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fraktur (Druckschrift)"}], "identifier": "http://d-nb.info/gnd/7646277-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7646277-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992736269", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7646277-8", "source": "GND"}], "authorized_access_point": "Hupp-Fraktur"} 1 +2024-09-10 15:46:09.274611 2024-09-10 15:46:09.274622 31f79e9a-6184-4296-90d9-10f3a23f214f {"md5": "0c8f657fbb7cd39089ee4514cf3b3d88", "pid": "992736099", "note": [{"label": ["Wikipedia unter Rudolf Koch - http://beepworld.de/members66/vau-ef-be/schriftliste2.htm"], "noteType": "dataSource"}, {"label": ["Entstehungsjahr 1932"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schreibschrift (Druckschrift)"}], "identifier": "http://d-nb.info/gnd/7646259-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7646259-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992736099", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7646259-6", "source": "GND"}], "authorized_access_point": "Holla (Druckschrift)"} 1 +2024-09-10 15:46:09.383394 2024-09-10 15:46:09.383411 67cf2c80-7b87-4609-8ccc-bb6ebe0746f6 {"md5": "3dc997f36fd6889480569403470bad7d", "pid": "992735858", "note": [{"label": ["Entstehungsjahr 1933, fett"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fraktur (Druckschrift)"}], "identifier": "http://d-nb.info/gnd/7646235-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7646235-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992735858", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7646235-3", "source": "GND"}], "authorized_access_point": "Haenel-Fraktur"} 1 +2024-09-10 15:46:09.509444 2024-09-10 15:46:09.509459 670cd021-e478-474d-856f-aaf5e3b9bbc3 {"md5": "1894b96f41b9772bed31afc1ae7b904f", "pid": "99273584X", "note": [{"label": ["Entstehungsjahr: nach 1906 (nachgewiesen 1921)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Antiqua"}], "identifier": "http://d-nb.info/gnd/7646234-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7646234-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)99273584X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7646234-1", "source": "GND"}], "authorized_access_point": "Haenel-Antiqua"} 1 +2024-09-10 15:46:09.619057 2024-09-10 15:46:09.619071 15705916-e6fc-453f-b35e-1b0de5bf5f4b {"md5": "8d0cafa0fea3c3509fa68b48c49a8a6a", "pid": "992735823", "note": [{"label": ["Entstehungsjahr: 1925"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Renaissance-Antiqua"}], "identifier": "http://d-nb.info/gnd/7646231-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7646231-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992735823", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7646231-6", "source": "GND"}], "authorized_access_point": "Grotius (Druckschrift)"} 1 +2024-09-10 15:46:09.735573 2024-09-10 15:46:09.735586 0a36d245-e320-4797-89b3-82da109ee537 {"md5": "266ef81cb2cdd270efde139a2bacb30a", "pid": "992735270", "note": [{"label": ["Entstehungsjahr 1949; kursiv; halbfett"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifier": "http://d-nb.info/gnd/7646172-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7646172-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992735270", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7646172-5", "source": "GND"}], "authorized_access_point": "Folkwang (Druckschrift)"} 1 +2024-09-10 15:46:09.850773 2024-09-10 15:46:09.850787 800c52cb-ecdb-4a90-bd48-a2fe0d7439ad {"md5": "10ccc288fe14a1598a249cdd38d76d70", "pid": "992735122", "note": [{"label": ["Lex. ges. Buchwesen unter Tiemann, Walter - http://www.klingspor-museum.de/KlingsporKuenstler/Schriftdesigner/Tiemann/WTiemann.pdf"], "noteType": "dataSource"}, {"label": ["Entstehungsjahre: Fichte-Fraktur mager 1935, Fichte-Fraktur fett 1939"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fraktur (Druckschrift)"}], "identifier": "http://d-nb.info/gnd/7646157-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7646157-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992735122", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7646157-9", "source": "GND"}], "authorized_access_point": "Fichte-Fraktur"} 1 +2024-09-10 15:46:09.949127 2024-09-10 15:46:09.949137 177efe26-9d62-4b86-9eb8-02ae86460c07 {"md5": "5f528b83722df1985766216efc19019a", "pid": "992733634", "note": [{"label": ["Lex. ges. Buchwesen - http://www.klingspor-museum.de/KlingsporKuenstler/Schriftgiessereien/Klingspor/Klingspor.pdf"], "noteType": "dataSource"}, {"label": ["Entstehungsjahr: 1905"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Breitkopf-Fraktur"}], "identifier": "http://d-nb.info/gnd/7646010-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7646010-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992733634", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7646010-1", "source": "GND"}], "authorized_access_point": "Breitkopf-Fraktur (Offenbach, Main)"} 1 +2024-09-10 15:46:10.023427 2024-09-10 15:46:10.02343 02be6f2e-14dd-4661-9390-b3d07f80da46 {"md5": "c388a00e4366ca675918507a89e4895f", "pid": "99273312X", "note": [{"label": ["Entstehungsjahr: 1954 (abweichend 1953)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "related": [{"authorized_access_point": "Studio (Druckschrift)"}], "identifier": "http://d-nb.info/gnd/7645958-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7645958-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)99273312X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7645958-5", "source": "GND"}], "authorized_access_point": "Flambard (Druckschrift)"} 1 +2024-09-10 15:46:10.117678 2024-09-10 15:46:10.117694 1fba6346-e615-470d-99d8-05f57a09fe55 {"md5": "1cd9ac072bf3956a07eb2ff4a4d951e7", "pid": "992732468", "note": [{"label": ["Wikipedia unter Peter Behrens - http://www.klingspor-museum.de/KlingsporKuenstler/Schriftdesigner/Behrens/PeterBehrens.pdf"], "noteType": "dataSource"}, {"label": ["Entstehungszeit 1901-1907 (auch Behrensschrift Kursiv)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gebrochene Schrift"}], "identifier": "http://d-nb.info/gnd/7645889-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7645889-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992732468", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7645889-1", "source": "GND"}], "authorized_access_point": "Behrens-Schrift"} 1 +2024-09-10 15:46:10.222294 2024-09-10 15:46:10.222303 3835ade8-f86b-408e-92ff-f06e0216934f {"md5": "1d89774e2561e5c7f7dbae8143396c11", "pid": "992731496", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifier": "http://d-nb.info/gnd/7645791-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7645791-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992731496", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7645791-6", "source": "GND"}], "authorized_access_point": "Charleston (Druckschrift)"} 1 +2024-09-10 15:46:10.327953 2024-09-10 15:46:10.327965 aec63c24-37a5-4301-95ec-235e09fe4c2c {"md5": "bd75f12f8628a9ecdb927e85d6250195", "pid": "99273147X", "note": [{"label": ["Entstehungsjahr: 1928 (Broadway Condensed 1929)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifier": "http://d-nb.info/gnd/7645789-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7645789-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)99273147X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7645789-8", "source": "GND"}], "authorized_access_point": "Broadway (Druckschrift)"} 1 +2024-09-10 15:46:10.434392 2024-09-10 15:46:10.434403 40edab5b-8424-44f8-8cc8-872318441588 {"md5": "e62372645bd2e35119d84dc1d035b749", "pid": "992731348", "note": [{"label": ["Lex. ges. Buchwesen - http://www.bleikloetzle.de/html/hammer-unziale.html"], "noteType": "dataSource"}, {"label": ["Entstehungsjahr: 1921; handschriftliche Antiqua"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Unziale"}], "related": [{"authorized_access_point": "Neue Hammer-Unziale"}], "identifier": "http://d-nb.info/gnd/7645780-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7645780-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992731348", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7645780-1", "source": "GND"}], "authorized_access_point": "Hammer-Unziale"} 1 +2024-09-10 15:46:10.550525 2024-09-10 15:46:10.550542 d63f8394-3c65-4a50-a18f-cb07eb1e1c31 {"md5": "873cb07a6d44468aea334db02f42ef62", "pid": "992730937", "note": [{"label": ["Wikipedia unter Otto Eckmann - http://www.klingspor-museum.de/KlingsporKuenstler/Schriftdesigner/Eckmann/OttoEckmann.pdf"], "noteType": "dataSource"}, {"label": ["Entstehungsjahr: 1900; Jugendstilschrift"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifier": "http://d-nb.info/gnd/7645736-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7645736-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992730937", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7645736-9", "source": "GND"}], "variant_access_point": ["Eckmann (Druckschrift)", "Eckmann-Druckschrift"], "authorized_access_point": "Eckmann-Schrift"} 1 +2024-09-10 15:46:10.671929 2024-09-10 15:46:10.671942 2da651d1-04b7-46ff-a65e-9c96c2e6fd3c {"md5": "3ebb0781dbe0a7ae8b08e87e758b5f75", "pid": "99273052X", "note": [{"label": ["Entstehungszeit 1914"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Renaissance-Antiqua"}], "identifier": "http://d-nb.info/gnd/7645690-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7645690-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)99273052X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7645690-0", "source": "GND"}], "variant_access_point": ["Mediaeval", "Mediäval"], "authorized_access_point": "Behrens-Mediaeval"} 1 +2024-09-10 15:46:10.799305 2024-09-10 15:46:10.799317 f11fd75d-a9ec-4019-a88c-4e3f5412706a {"md5": "1482fed139b4d345adacb996d744076c", "pid": "992096200", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kunststoff"}, {"authorized_access_point": "Biowerkstoff"}], "related": [{"authorized_access_point": "Biopolymere"}, {"authorized_access_point": "Biologisch abbaubarer Kunststoff"}], "identifier": "http://d-nb.info/gnd/7641320-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7641320-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992096200", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7641320-2", "source": "GND"}], "authorized_access_point": "Biokunststoff"} 1 +2024-09-10 15:46:10.90163 2024-09-10 15:46:10.90164 3c40313a-f318-4421-8181-daaeff7417ef {"md5": "b198bcf760271ca652a3645289637148", "pid": "99018207X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sulfotransferasen"}], "identifier": "http://d-nb.info/gnd/7623456-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7623456-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)99018207X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7623456-3", "source": "GND"}], "variant_access_point": ["Heparan-Sulfat-6-O-Endosulfatase", "Protein Sulf1", "Protein Sulf2", "heparan sulfate 6-O-endosulfatase", "heparan sulfate 6O-endosulfatase"], "authorized_access_point": "Heparan-Sulfat-6-O-Endosulfatasen"} 1 +2024-09-10 15:46:10.992656 2024-09-10 15:46:10.992666 d0a63da0-8fd7-4964-945f-aebdc8abc8ea {"md5": "e69acc0f41503b66848ed17b21e6b26a", "pid": "987870920", "note": [{"label": ["Primitiver Stamm mit dravidischer Sprache in Kerala"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113425024X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh91005878", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh91005878"}], "authorized_access_point": "Cholanaickan (Indic people)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113425024X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12269831", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12269831p"}], "authorized_access_point": "Cholanaickan (peuple de l'Inde)"}], "identifier": "http://d-nb.info/gnd/7604010-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7604010-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)987870920", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7604010-0", "source": "GND"}], "variant_access_point": ["Cholakkār", "Cholanaicken"], "authorized_access_point": "Cholanaickan"} 1 +2024-09-10 15:46:11.055419 2024-09-10 15:46:11.055422 d24fdfaa-09be-4076-97d9-d4d6c9168f6d {"md5": "2de54030f46fcdbe155b2ba2eac28402", "pid": "987031708", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Student"}], "related": [{"authorized_access_point": "Physikstudentin"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334680612", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2020008950", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2020008950"}], "authorized_access_point": "Physics students"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334680612", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11938246", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119382468"}], "authorized_access_point": "Étudiants en physique"}], "identifier": "http://d-nb.info/gnd/7595663-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7595663-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)987031708", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7595663-9", "source": "GND"}], "variant_access_point": ["Physikstudium"], "authorized_access_point": "Physikstudent"} 1 +2024-09-10 15:46:11.148811 2024-09-10 15:46:11.148821 e82f65d1-9323-4c41-ae7c-684ab75fb739 {"md5": "9b2ca2f18fa334811fe3f9889d10031a", "pid": "985142758", "note": [{"label": ["gehört zur Gattung der Puffottern"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Vipern"}], "identifier": "http://d-nb.info/gnd/7576822-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7576822-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)985142758", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7576822-7", "source": "GND"}], "variant_access_point": ["Bitis nasicornis"], "authorized_access_point": "Nashornviper"} 1 +2024-09-10 15:46:15.01826 2024-09-10 15:46:15.018305 25d95214-f639-4475-a3a4-693726cec5f1 {"md5": "b41981078571069943d8ec62a47c0dba", "pid": "961897546", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ausstellung"}], "identifier": "http://d-nb.info/gnd/4641693-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4641693-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)961897546", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4641693-6", "source": "GND"}], "variant_access_point": ["Ethnologische Ausstellung"], "authorized_access_point": "Völkerkundliche Ausstellung"} 1 +2024-09-10 15:46:11.241508 2024-09-10 15:46:11.241515 c3fbe6b3-3ca4-4c34-a4a1-9ca2eb111894 {"md5": "0a3b405cf32170767fe7a1e56dc19884", "pid": "984855246", "note": [{"label": ["Als Vergaberecht bezeichnet man die Gesamtheit der Rechtsvorschriften, die öffentliche Auftraggeber bei der Beschaffung von Gütern und Leistungen zu beachten haben."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Wirtschaftsrecht"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)984869689", "source": "GND"}, {"type": "bf:Nbn", "value": "11580-1", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/11580-1"}], "authorized_access_point": "Vergaberecht"}], "identifier": "http://d-nb.info/gnd/7574511-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7574511-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)984855246", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7574511-2", "source": "GND"}], "variant_access_point": ["Öffentlicher Auftrag", "Vergabe"], "authorized_access_point": "Vergaberecht"} 1 +2024-09-10 15:46:11.350252 2024-09-10 15:46:11.350263 1674cd84-92b1-4cb6-b561-2c29d4d0c1c2 {"md5": "939e87a730926f42b1ae8a9ae2b35064", "pid": "984430695", "note": [{"label": ["Von der Zentralbank veröffentlicher Zielwert oder Zielkorridor einer Inflationsrate, die noch mit dem Ziel der Geldwertstabilität vereinbar scheint"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Geldpolitik"}], "related": [{"authorized_access_point": "Inflationsbekämpfung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133489549X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2010012786", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2010012786"}], "authorized_access_point": "Inflation targeting"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)985037393", "source": "GND"}, {"type": "bf:Nbn", "value": "19547-1", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/19547-1"}], "authorized_access_point": "Inflationssteuerung"}], "identifier": "http://d-nb.info/gnd/7570943-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7570943-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)984430695", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7570943-0", "source": "GND"}], "variant_access_point": ["Inflationsziel", "Inflation-Forecast Targeting", "Inflation Forecast Targeting", "Inflationsrate"], "authorized_access_point": "Inflation Targeting"} 1 +2024-09-10 15:46:11.450886 2024-09-10 15:46:11.450901 e5816295-c95e-4922-97c9-60f20e92d0e2 {"md5": "73db9af0ab808c28c3d48e52984f0833", "pid": "981355196", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Framework (Informatik)"}], "related": [{"authorized_access_point": "Informationsmanagement"}, {"authorized_access_point": "Corporate Governance"}], "identifier": "http://d-nb.info/gnd/7544194-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7544194-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)981355196", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7544194-9", "source": "GND"}], "authorized_access_point": "COBIT"} 1 +2024-09-10 15:46:11.562854 2024-09-10 15:46:11.562864 c9b0191c-a970-4652-b87e-165935ab217e {"md5": "b153d1bc7a7e2ac2f3e2f96f4d5d709c", "pid": "981078206", "note": [{"label": ["Benutzt für weibliche Selige; als instantieller Oberbegriff bei weiblichen seligen Personen obligatorisch; nicht zugelassen als identifizierender Zusatz bei Personen gem. EH-P-10 zur GND nach RDA"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Frau"}], "related": [{"authorized_access_point": "Seliger"}], "identifier": "http://d-nb.info/gnd/7541405-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7541405-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)981078206", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7541405-3", "source": "GND"}], "variant_access_point": ["Weibliche Selige", "Selige Frau", "Seliggesprochene Frau"], "authorized_access_point": "Selige"} 1 +2024-09-10 15:46:11.663109 2024-09-10 15:46:11.663121 2018fbb2-bfb8-4bab-99b9-ba43e393a69f {"md5": "2ea8e3038911421fb7904506ee106e9a", "pid": "980596920", "note": [{"label": ["Von Rudolf Koch geschaffene, jedoch selten benutzte Antiqua-Schrift; 1930 begonnen, aber erst 1938 in allen Graden vorliegend"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Antiqua"}], "identifier": "http://d-nb.info/gnd/7535517-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7535517-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)980596920", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7535517-6", "source": "GND"}], "variant_access_point": ["Marathon-Antiqua"], "authorized_access_point": "Marathon (Druckschrift)"} 1 +2024-09-10 15:46:11.760421 2024-09-10 15:46:11.760431 b2966b55-a66e-4185-99c8-433bd8627b1b {"md5": "70ad035fa5bfd4a4a209fe3e829523ec", "pid": "980485371", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifier": "http://d-nb.info/gnd/7533814-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7533814-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)980485371", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7533814-2", "source": "GND"}], "authorized_access_point": "Sportlerin (Motiv)"} 1 +2024-09-10 15:46:11.855916 2024-09-10 15:46:11.85593 0a81f03a-c2b7-411a-b5d0-81b78f1f64c8 {"md5": "d57b6aa9bbb8c7057f6f811264b29397", "pid": "979728509", "note": [{"label": ["Schlacht am 21.7.1798 bei Giseh zwischen Franzosen u. Mamelucken, Sieg Napoleons"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Ägyptische Expedition"}], "identifier": "http://d-nb.info/gnd/7527686-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7527686-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)979728509", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7527686-0", "source": "GND"}], "authorized_access_point": "Schlacht bei den Pyramiden"} 1 +2024-09-10 15:46:15.107745 2024-09-10 15:46:15.107749 1e4ae7ec-ef70-4f9c-89dc-205541adcc7e {"md5": "c4e812ae2ec0895d3d2649f63319dace", "pid": "961236752", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Düne"}], "identifier": "http://d-nb.info/gnd/4631459-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4631459-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)961236752", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4631459-3", "source": "GND"}], "authorized_access_point": "Altdüne"} 1 +2024-09-10 15:46:11.952272 2024-09-10 15:46:11.952282 6fbe22c0-9afd-465f-9885-c14f8a3cad95 {"md5": "5c3266c8212baf7b7b90ac04b26a1343", "pid": "979385261", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Smart-Ger%C3%A4t&oldid=242686638"], "noteType": "dataSource"}, {"label": ["Informationstechnisch aufgerüstete Alltagsgegenstände, die einen Mehrwert durch sensorgestützte Informationsverarbeitung und Kommunikation erhalten"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Mobiles Endgerät"}, {"authorized_access_point": "Ubiquitous Computing"}], "identifier": "http://d-nb.info/gnd/7525182-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7525182-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)979385261", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7525182-6", "source": "GND"}], "variant_access_point": ["Smart Devices", "Smart-Gerät"], "authorized_access_point": "Smart Device"} 1 +2024-09-10 15:46:12.049895 2024-09-10 15:46:12.0499 859bbb68-ebd7-4592-ac95-e4c9d965e7bf {"md5": "835dbad9b2e375916c145b5af93588a1", "pid": "979340586", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Transhumanismus&oldid=224666895"], "noteType": "dataSource"}, {"label": ["Der Transhumanismus ist eine philosophische Denkrichtung, die sich zum Ziel gesetzt hat, die intellektuellen und körperlichen Fähigkeiten des Menschen zu erweitern. Dieses Ziel will der Transhumanismus durch eine Synthese des Menschen mit Technik erreichen."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Humanismus"}], "related": [{"authorized_access_point": "Posthumanismus"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254397442", "source": "GND"}, {"type": "bf:Nbn", "value": "69366", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/69366"}], "authorized_access_point": "Transumanesimo"}], "identifier": "http://d-nb.info/gnd/7524756-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7524756-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)979340586", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7524756-2", "source": "GND"}], "authorized_access_point": "Transhumanismus"} 1 +2024-09-10 15:46:12.114861 2024-09-10 15:46:12.114868 22580c99-dab9-44bb-a86a-36985cf4af41 {"md5": "bda5c6a2d0687b4f51d232c3e94c284a", "pid": "978483669", "note": [{"label": ["Malaiisch, Dialekt: Indonesia, Sulawesi (Celebes)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "identifier": "http://d-nb.info/gnd/7517482-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7517482-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)978483669", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7517482-0", "source": "GND"}], "variant_access_point": ["Manado-Malaiisch"], "authorized_access_point": "Menado-Malaiisch"} 1 +2024-09-10 15:46:12.198982 2024-09-10 15:46:12.198992 25a0c777-4363-44b3-955f-d03d074bd5b8 {"md5": "b68879f1e2122aab6990dd590fe7ed5d", "pid": "97549175X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Deflektometrie&oldid=237818776"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Optische Messung"}, {"authorized_access_point": "Oberflächenmessung"}], "identifier": "http://d-nb.info/gnd/4832784-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4832784-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)97549175X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4832784-0", "source": "GND"}], "authorized_access_point": "Deflektometrie"} 1 +2024-09-10 15:46:12.305803 2024-09-10 15:46:12.305816 63f7a8e3-43d1-42f6-bacb-c320bf8b50b7 {"md5": "7b2564bef69c3cec05e9f798b20499b5", "pid": "974924423", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Programm"}], "related": [{"authorized_access_point": "Haushaltsbuch"}], "identifier": "http://d-nb.info/gnd/4827174-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4827174-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)974924423", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4827174-3", "source": "GND"}], "variant_access_point": ["sCHECK up"], "authorized_access_point": "sCHECKup"} 1 +2024-09-10 15:46:12.412439 2024-09-10 15:46:12.412448 e9d33a1f-779e-4676-8250-737903c27bf9 {"md5": "be34e8d273e416671ab73ec593645c45", "pid": "974131733", "note": [{"label": ["Gesprochen in Westborneo u. Sarawak"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "identifier": "http://d-nb.info/gnd/4819075-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4819075-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)974131733", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4819075-5", "source": "GND"}], "variant_access_point": ["Salakau", "Selako", "Selako Dayak", "Silakau", "Salako", "Bahasa Badameà", "Bahasa Dameà"], "authorized_access_point": "Selekau-Sprache"} 1 +2024-09-10 15:46:12.534702 2024-09-10 15:46:12.534715 e36e116a-c91d-4e72-a6f9-9da9ca82ee11 {"md5": "4db0af3ec418880a659254ab5bb7fc05", "pid": "973073764", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Musik"}], "identifier": "http://d-nb.info/gnd/4806598-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4806598-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)973073764", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4806598-5", "source": "GND"}], "authorized_access_point": "Geräuschmusik"} 1 +2024-09-10 15:46:12.628726 2024-09-10 15:46:12.628737 6cd52184-c6fb-4404-8018-2e83493047b4 {"md5": "1c1c0ae222df6944f710b277971e41f8", "pid": "973067144", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Antigen"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133614288X", "source": "GND"}, {"type": "bf:Nbn", "value": "D000097382", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D000097382"}], "authorized_access_point": "CD68 Molecule"}], "identifier": "http://d-nb.info/gnd/4806375-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4806375-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)973067144", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4806375-7", "source": "GND"}], "variant_access_point": ["CD68", "CD 68", "CD68-Antigen", "Makrosialin", "Macrosialin"], "authorized_access_point": "Antigen CD68"} 1 +2024-09-10 15:46:12.747043 2024-09-10 15:46:12.747053 3222b820-a590-4dba-9555-3a6dafb42d0d {"md5": "0b3277ad95491744ef783b0587ae4961", "pid": "971890188", "note": [{"label": ["Gesprochen auf Sarawak"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "identifier": "http://d-nb.info/gnd/4788592-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4788592-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)971890188", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4788592-0", "source": "GND"}], "variant_access_point": ["Narom (Sprache)", "Narum (Sprache)"], "authorized_access_point": "Narom-Sprache"} 1 +2024-09-10 15:46:12.854556 2024-09-10 15:46:12.854566 bd60a83b-adc3-4928-ab89-8f9fb4a1f31c {"md5": "e2969ccceae941aa583bafb6f14569a4", "pid": "971874549", "note": [{"label": ["Methode der Demoskopie bzw. Marktforschung"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Umfrage"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134778651", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2003010653", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2003010653"}], "authorized_access_point": "Internet questionnaires"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1012497135", "source": "GND"}, {"type": "bf:Nbn", "value": "28130-5", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/28130-5"}], "authorized_access_point": "Online-Befragung"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)983461716", "source": "GND"}, {"type": "bf:Nbn", "value": "10037911", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10037911"}], "authorized_access_point": "Online-Befragung"}], "identifier": "http://d-nb.info/gnd/4788337-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4788337-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)971874549", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4788337-6", "source": "GND"}], "variant_access_point": ["Online-Umfrage", "Online-Interview"], "authorized_access_point": "Online-Befragung"} 1 +2024-09-10 15:46:12.959879 2024-09-10 15:46:12.959887 3f5bbf9a-3af0-40a4-a508-27c8dfe65f8b {"md5": "948cbf32a79f2b375ec25853e4447ec3", "pid": "971750289", "note": [{"label": ["Förder-, Transportmittel"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Wagen"}, {"authorized_access_point": "Flurförderer"}], "identifier": "http://d-nb.info/gnd/4786444-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4786444-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)971750289", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4786444-8", "source": "GND"}], "authorized_access_point": "Hubwagen"} 1 +2024-09-10 15:46:13.042501 2024-09-10 15:46:13.042504 79b94d13-de5f-45df-aa42-4336c82ba1ee {"md5": "dcce3491164a10fa9d78a69ca85244ed", "pid": "971566429", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134835175", "source": "GND"}, {"type": "bf:Nbn", "value": "sh99004097", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh99004097"}], "authorized_access_point": "Ratahan language"}], "identifier": "http://d-nb.info/gnd/4783715-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4783715-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)971566429", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4783715-9", "source": "GND"}], "variant_access_point": ["Ratahan", "Pasan", "Bentenan"], "authorized_access_point": "Toratan"} 1 +2024-09-10 15:46:13.138165 2024-09-10 15:46:13.138171 ae11f40d-fedc-4eb0-bacf-d229ced48676 {"md5": "75c063925e7d2a8b76847641cfc1c408", "pid": "970782195", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Programm"}], "related": [{"authorized_access_point": "Ausbreitung"}, {"authorized_access_point": "Modell"}], "identifier": "http://d-nb.info/gnd/4774580-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4774580-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)970782195", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4774580-0", "source": "GND"}], "authorized_access_point": "AUSTAL 86"} 1 +2024-09-10 15:46:13.229948 2024-09-10 15:46:13.229954 5cad7a5d-43ab-44ed-b288-30edadea2f18 {"md5": "2796f42b83916878c5904dc8c399ae78", "pid": "970665806", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134835183", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85072053", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85072053"}], "authorized_access_point": "Kerinci language"}], "identifier": "http://d-nb.info/gnd/4772270-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4772270-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)970665806", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4772270-8", "source": "GND"}], "variant_access_point": ["Kerinchi", "Kinchai", "Kerinci (Sprache)"], "authorized_access_point": "Kerinci-Sprache"} 1 +2024-09-10 15:46:13.296548 2024-09-10 15:46:13.296554 f8ddd609-ae3a-430e-9bcf-648b08f1c5cc {"md5": "fb4c16ef1af510dba73af357b31a0269", "pid": "970188919", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Antigen"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336143207", "source": "GND"}, {"type": "bf:Nbn", "value": "D000097802", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D000097802"}], "authorized_access_point": "CD83 Antigen"}], "identifier": "http://d-nb.info/gnd/4767577-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4767577-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)970188919", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4767577-9", "source": "GND"}], "variant_access_point": ["CD83-Antigen"], "authorized_access_point": "Antigen CD83"} 1 +2024-09-10 15:46:16.334251 2024-09-10 15:46:16.334255 ee06da4c-52c5-465a-a3a9-bf7c2c2172df {"md5": "278dd2d9ba2ebfe0f49012c0c774c590", "pid": "958503001", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sperrschichtgleichrichter"}], "identifier": "http://d-nb.info/gnd/4581262-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4581262-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)958503001", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4581262-7", "source": "GND"}], "authorized_access_point": "Selengleichrichter"} 1 +2024-09-10 15:46:13.367536 2024-09-10 15:46:13.367539 f9736000-8d4e-48d4-b592-3ddb0bed9d30 {"md5": "5faaf4352c2b5b945e33a2bad6709d42", "pid": "970142838", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Studentin"}], "related": [{"authorized_access_point": "Medizinstudent"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334680930", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85147645", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85147645"}], "authorized_access_point": "Women medical students"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334680930", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF18099017", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb180990171"}], "authorized_access_point": "Étudiantes en médecine"}], "identifier": "http://d-nb.info/gnd/4766829-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4766829-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)970142838", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4766829-5", "source": "GND"}], "variant_access_point": ["Medizinstudium"], "authorized_access_point": "Medizinstudentin"} 1 +2024-09-10 15:46:13.428524 2024-09-10 15:46:13.428529 8250dd9c-9969-4d14-8bd9-55fc9366c50d {"md5": "245813bb5addf9d5dcecda53f7c64699", "pid": "969789726", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Pietismus"}], "identifier": "http://d-nb.info/gnd/4762345-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4762345-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)969789726", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4762345-7", "source": "GND"}], "variant_access_point": ["Radikalpietismus"], "authorized_access_point": "Radikaler Pietismus"} 1 +2024-09-10 15:46:13.50054 2024-09-10 15:46:13.500543 a7dd596b-00e5-49fc-8b58-5a6079c8fd4d {"md5": "25966c244c524c8e30401d7f09f4064b", "pid": "968800459", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Twents&oldid=187939466"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Niederländisch"}, {"authorized_access_point": "Westfälisch"}, {"authorized_access_point": "Niedersächsisch"}], "identifier": "http://d-nb.info/gnd/4747853-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4747853-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)968800459", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4747853-6", "source": "GND"}], "variant_access_point": ["Twents"], "authorized_access_point": "Mundart Niederländisch (Twente)"} 1 +2024-09-10 15:46:13.564934 2024-09-10 15:46:13.564939 699bcbd4-d3bb-4f11-8822-3368fc75d756 {"md5": "09db85119dd7c456af9ca5f9cc3f066f", "pid": "967930308", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Abgabe"}], "identifier": "http://d-nb.info/gnd/4736684-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4736684-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)967930308", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4736684-9", "source": "GND"}], "variant_access_point": ["Honorarium", "Abfahrtsgeld", "Abzug (Abgabe)", "Anfall (Abgabe)", "Auffahrt (Abgabe)", "Auffahrtsgeld", "Ehrschatz", "Ehrschatzung", "Eingangsgeld", "Handlohn", "Herrenwein", "Immobiliargebühr", "Kaufgeld", "Kaufschatz", "Lehengeld", "Lehnware", "Markgroschen", "Pfundgeld", "Satzwein"], "authorized_access_point": "Laudemium"} 1 +2024-09-10 15:46:13.631564 2024-09-10 15:46:13.631571 afc5adb9-10bb-4c66-aa97-e64f36140ba0 {"md5": "288b449517a0b80d6b5dfad594bc338a", "pid": "967681758", "note": [{"label": ["Tasse, aus der Kaffee getrunken wird"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tasse"}], "related": [{"authorized_access_point": "Kaffeegeschirr"}], "identifier": "http://d-nb.info/gnd/4732915-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4732915-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)967681758", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4732915-4", "source": "GND"}], "authorized_access_point": "Kaffeetasse"} 1 +2024-09-10 15:46:13.697359 2024-09-10 15:46:13.697368 e0195651-3c23-4a1c-a421-819bd1e0fab1 {"md5": "66630cc96becf96e5d24fdb299edb7cf", "pid": "967612896", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Model (Form)"}], "identifier": "http://d-nb.info/gnd/4731815-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4731815-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)967612896", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4731815-6", "source": "GND"}], "authorized_access_point": "Holzmodel"} 1 +2024-09-10 15:46:13.765069 2024-09-10 15:46:13.765072 188ef772-b48e-40d0-ac47-09768616caf1 {"md5": "dcedd9f67d9de4e9b6d870e4eacfabe4", "pid": "967286034", "note": [{"label": ["Ab 1960 in Chile entstandene polit.-sozial ausgerichtete Musikbewegung"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Politisches Lied"}], "related": [{"authorized_access_point": "Nueva canción (Politisches Lied)"}], "identifier": "http://d-nb.info/gnd/4727316-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4727316-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)967286034", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4727316-1", "source": "GND"}], "variant_access_point": ["Nueva Canción Chilena", "NCCh", "Canto Nuevo de Chile", "Neues Politisches Lied"], "authorized_access_point": "Neues chilenisches Lied"} 1 +2024-09-10 15:46:13.825984 2024-09-10 15:46:13.825988 3356637d-ad63-45c7-936d-70c35b597c05 {"md5": "9f06791580541a1d5c4c10f59112f71a", "pid": "966464141", "note": [{"label": ["Zu Ehren des hl. Martin am 11.11."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Umritt"}], "identifier": "http://d-nb.info/gnd/4720271-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4720271-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)966464141", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4720271-3", "source": "GND"}], "variant_access_point": ["Martiniritt"], "authorized_access_point": "Martinsritt"} 1 +2024-09-10 15:46:13.890308 2024-09-10 15:46:13.89031 adbe91bd-7d96-4db3-afe2-ff763531e6db {"md5": "06e2ca23f412ec86827bc6a6ca3d7bbc", "pid": "966016297", "note": [{"label": ["Kommunale Informationsplattform und interaktives System zwischen Bürger und Gemeindeverwaltung"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Informationssystem"}], "related": [{"authorized_access_point": "E-Government"}], "identifier": "http://d-nb.info/gnd/4713287-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4713287-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)966016297", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4713287-5", "source": "GND"}], "variant_access_point": ["Kommunales Informationssystem"], "authorized_access_point": "Bürgerinformationssystem"} 1 +2024-09-10 15:46:13.955329 2024-09-10 15:46:13.955333 67570d77-df39-40ef-a15f-a6cec940a7fc {"md5": "83d120e42ae6b44d0ac498fd26c120e0", "pid": "965886654", "note": [{"label": ["Einsatz von Duftstoffen zur Verkaufsförderung u. zur Schaffung eines angenehmen Raumklimas in Unternehmen, auf Werbedrucksachen usw."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Erlebnismarketing"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334882479", "source": "GND"}, {"type": "bf:Nbn", "value": "sh90005055", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh90005055"}], "authorized_access_point": "Scent as a marketing device"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334882479", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF15585133t", "source": "BNF"}, {"type": "uri", "value": "https://catalogue.bnf.fr/ark:/12148/cb15585133t"}], "authorized_access_point": "Marketing sensoriel"}], "identifier": "http://d-nb.info/gnd/4712134-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4712134-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)965886654", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4712134-8", "source": "GND"}], "variant_access_point": ["Air-Design", "Olfaktorisches Marketing"], "authorized_access_point": "Duftmarketing"} 1 +2024-09-10 15:46:14.019429 2024-09-10 15:46:14.019434 3e723a4e-ac28-43f6-a201-94d77ad18216 {"md5": "d9186b9c8861bf292c7f286995d53f80", "pid": "965195686", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Angle-Klasse II"}], "identifier": "http://d-nb.info/gnd/4699051-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4699051-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)965195686", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4699051-3", "source": "GND"}], "authorized_access_point": "Angle-Klasse II/2"} 1 +2024-09-10 15:46:14.098502 2024-09-10 15:46:14.098506 589eab6f-a92b-430e-b1df-558f2b4a2491 {"md5": "57025816cb1f3379a7b583f094009376", "pid": "96441631X", "note": [{"label": ["Der Schreibschrift nachgebildete franz. Druckschrift, 1557 geschaffen von Robert Granjon"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifier": "http://d-nb.info/gnd/4684771-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4684771-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)96441631X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4684771-6", "source": "GND"}], "variant_access_point": ["Civilité-Schrift", "Caractères de civilité"], "authorized_access_point": "Civilité (Schrift)"} 1 +2024-09-10 15:46:14.165271 2024-09-10 15:46:14.165277 e0f94dba-0a37-4ba7-ba32-1a7865a54794 {"md5": "0aadc75e1299efc13792b5212a4d4db9", "pid": "964240300", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifier": "http://d-nb.info/gnd/4681786-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4681786-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)964240300", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4681786-4", "source": "GND"}], "authorized_access_point": "Stickerei (Motiv)"} 1 +2024-09-10 15:46:14.240012 2024-09-10 15:46:14.240015 609870b6-0464-4ada-b5dc-759ade2c9d93 {"md5": "4e7bd34cf22396ed82e45939c45b5251", "pid": "964240254", "note": [{"label": ["DWDS - https://www.dwds.de/wb/H%C3%BCttenarbeiter"], "noteType": "dataSource"}, {"label": ["Arbeiter am Hoch- u. Schmelzofen in der Eisenindustrie"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Arbeiter"}], "identifier": "http://d-nb.info/gnd/4681784-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4681784-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)964240254", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4681784-0", "source": "GND"}], "variant_access_point": ["Hüttner", "Eisenhüttenarbeiter", "Hüttenwerk"], "authorized_access_point": "Hüttenarbeiter"} 1 +2024-09-10 15:46:14.324186 2024-09-10 15:46:14.324189 6ca6fa3e-38e9-44d5-99c2-e1924d6a809b {"md5": "7d52ff7ea5e5a92e9b4d74db3b3d46e6", "pid": "964115166", "note": [{"label": ["Wiederherstellung eines naturnahen Zustandes in einem durch Eingriffe des Menschen zerstörten oder erheblich beeinträchtigten Teil der Landschaft im Rahmen von Naturschutz und Landschaftspflege"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Naturschutz"}], "related": [{"authorized_access_point": "Naturnahe Gestaltung"}, {"authorized_access_point": "Rekultivierung"}], "identifier": "http://d-nb.info/gnd/4679877-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4679877-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)964115166", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4679877-8", "source": "GND"}], "variant_access_point": ["Revitalisierung (Renaturierung, Ökologie)", "Rewilding"], "authorized_access_point": "Renaturierung (Ökologie)"} 1 +2024-09-10 15:46:14.40264 2024-09-10 15:46:14.402644 e46dd5d2-f9e8-4062-a8b7-8c5d3e1367a2 {"md5": "e5cd0b2418d4bb6358249e5dd75f459d", "pid": "963711636", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Versuch"}], "related": [{"authorized_access_point": "Untauglicher Versuch"}], "identifier": "http://d-nb.info/gnd/4670829-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4670829-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)963711636", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4670829-7", "source": "GND"}], "variant_access_point": ["Délit manqué"], "authorized_access_point": "Fehlgeschlagener Versuch"} 1 +2024-09-10 15:46:14.475826 2024-09-10 15:46:14.475831 b848186a-f0e0-4222-a293-2d39ae397a78 {"md5": "acab98cb2d249f19576c4587b92a6332", "pid": "963708872", "note": [{"label": ["Westindonesische Sprache, Nordcelebes"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "identifier": "http://d-nb.info/gnd/4670798-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4670798-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)963708872", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4670798-0", "source": "GND"}], "variant_access_point": ["Tiadje", "Tialo", "Dondo"], "authorized_access_point": "Tomini-Sprache"} 1 +2024-09-10 15:46:14.572601 2024-09-10 15:46:14.572605 beb3512d-769a-4fbc-ac6c-5f0d4e60338b {"md5": "adf604c23a0716323ba1632586441380", "pid": "963708856", "note": [{"label": ["Westindonesische Sprache, Nordcelebes"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134835159", "source": "GND"}, {"type": "bf:Nbn", "value": "sh96010747", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh96010747"}], "authorized_access_point": "Tolitoli language"}], "identifier": "http://d-nb.info/gnd/4670794-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4670794-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)963708856", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4670794-3", "source": "GND"}], "variant_access_point": ["Tontoli", "Gage (Sprache)", "Totoli"], "authorized_access_point": "Tolitoli-Sprache"} 1 +2024-09-10 15:46:14.650733 2024-09-10 15:46:14.650737 5ecdaf89-aed5-479b-b5bd-ae7e20d490bd {"md5": "6204d2b1221874c9d90cd01aff47a7e4", "pid": "963658166", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Romanist"}], "related": [{"authorized_access_point": "Hispanistik"}, {"authorized_access_point": "Hispanistin"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134176104", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85061068", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85061068"}], "authorized_access_point": "Hispanists"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134176104", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12122241", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12122241n"}], "authorized_access_point": "Hispanistes"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254389385", "source": "GND"}, {"type": "bf:Nbn", "value": "58143", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/58143"}], "authorized_access_point": "Ispanisti"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254440216", "source": "GND"}, {"type": "bf:Nbn", "value": "XX555556", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX555556"}], "authorized_access_point": "Hispanistas"}], "identifier": "http://d-nb.info/gnd/4669578-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4669578-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)963658166", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4669578-3", "source": "GND"}], "authorized_access_point": "Hispanist"} 1 +2024-09-10 15:46:14.721857 2024-09-10 15:46:14.721861 ea126bbb-d00d-4b8f-8eb5-bbcd5b2352b5 {"md5": "878e64c2fb3ca0bd46a0497de7397e0f", "pid": "963553984", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Körper (Algebra)"}], "identifier": "http://d-nb.info/gnd/4667267-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4667267-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)963553984", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4667267-9", "source": "GND"}], "authorized_access_point": "Quadratischer Körper"} 1 +2024-09-10 15:46:14.818883 2024-09-10 15:46:14.818888 cbcd2def-5c5f-4350-9c4c-1d53877237ce {"md5": "1a1c927621970a06712ded4f3e516249", "pid": "962075272", "note": [{"label": ["Früher Familie schwerer, hochbeiniger Hühnervögel, heute als Unterfamilie Meleagridinae der Fasanenvögel geführt"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fasanenartige"}], "identifier": "http://d-nb.info/gnd/4644834-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4644834-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)962075272", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4644834-2", "source": "GND"}], "variant_access_point": ["Meleagrididae"], "authorized_access_point": "Truthühner"} 1 +2024-09-10 15:46:14.91678 2024-09-10 15:46:14.91679 e90c8148-bbcc-4539-895a-c80b83e7575f {"md5": "b01c50c2da4bf6cf2b661701bd29d7a1", "pid": "962073881", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Prüfungsausschuss"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134561563", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85009476", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85009476"}], "authorized_access_point": "Audit committees"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134561563", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11939756", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119397566"}], "authorized_access_point": "Vérification comptable"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254407812", "source": "GND"}, {"type": "bf:Nbn", "value": "XX558471", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX558471"}], "authorized_access_point": "Comités de auditoría"}], "identifier": "http://d-nb.info/gnd/4644800-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4644800-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)962073881", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4644800-7", "source": "GND"}], "variant_access_point": ["Corporate Audit Committee", "Bilanzprüfungsausschuss"], "authorized_access_point": "Audit Committee"} 1 +2024-09-10 15:46:26.754113 2024-09-10 15:46:26.754116 c2845a8f-4ead-4a6f-9b51-8da8b2660e4b {"md5": "6de7d6872fdfbc88ae9726a04906acdf", "pid": "04266702X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Übergangsmetallkomplexe"}], "identifier": "http://d-nb.info/gnd/4266702-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4266702-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04266702X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4266702-1", "source": "GND"}], "authorized_access_point": "Rutheniumkomplexe"} 1 +2024-09-10 15:46:15.194297 2024-09-10 15:46:15.194299 bc6f5377-f430-4e30-8fdb-33ab219dba7f {"md5": "f93767af800449eb6927322e7d4dcfb1", "pid": "961192356", "note": [{"label": ["Benutzt, soweit im Ausland lebend"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ausländischer Student"}, {"authorized_access_point": "Araber"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134821301", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85006344", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85006344"}], "authorized_access_point": "Arab students"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134821301", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16961808", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb169618080"}], "authorized_access_point": "Étudiants arabes"}], "identifier": "http://d-nb.info/gnd/4630739-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4630739-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)961192356", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4630739-4", "source": "GND"}], "authorized_access_point": "Arabischer Student"} 1 +2024-09-10 15:46:15.256144 2024-09-10 15:46:15.256147 dc84e099-c916-4391-9e1d-f4ac9a6006ac {"md5": "61532e035d708368c323aa6ed93fb5aa", "pid": "961049510", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sonde"}], "identifier": "http://d-nb.info/gnd/4628589-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4628589-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)961049510", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4628589-1", "source": "GND"}], "authorized_access_point": "Abwurfsonde"} 1 +2024-09-10 15:46:15.323998 2024-09-10 15:46:15.324006 50882e2d-d1e5-4b55-bda8-356baf184142 {"md5": "2a33998ce588096c0ec4f886f237e551", "pid": "960895175", "note": [{"label": ["Markenname", "Verknüpfe mit einer Produktgruppe, z.B. Motorrad"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4624787-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4624787-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)960895175", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4624787-7", "source": "GND"}], "authorized_access_point": "Aprilia (Marke)"} 1 +2024-09-10 15:46:15.39679 2024-09-10 15:46:15.396795 585c5b3d-d693-46c3-b908-4dfae5523aff {"md5": "d5084850cf9c14d8f43d7c891d839974", "pid": "96037650X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134200579", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85040270", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85040270"}], "authorized_access_point": "Dayak language"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134200579", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12179945", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12179945p"}], "authorized_access_point": "Langues dayak"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254418776", "source": "GND"}, {"type": "bf:Nbn", "value": "XX543421", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX543421"}], "authorized_access_point": "Lengua dayak"}], "identifier": "http://d-nb.info/gnd/4617354-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4617354-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)96037650X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4617354-7", "source": "GND"}], "variant_access_point": ["Dayakisch", "Dajak-Sprache"], "authorized_access_point": "Dajakisch"} 1 +2024-09-10 15:46:15.479168 2024-09-10 15:46:15.479173 87bcdf2f-3a69-4509-a98d-001b95abdb1a {"md5": "174bc3277ab421f8cc79fc6e381059e9", "pid": "960375988", "note": [{"label": ["Schriftsprache der Batak-Gruppe"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134835191", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85012311", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85012311"}], "authorized_access_point": "Batak language"}], "identifier": "http://d-nb.info/gnd/4617338-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4617338-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)960375988", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4617338-9", "source": "GND"}], "authorized_access_point": "Batak-Sprache"} 1 +2024-09-10 15:46:15.555691 2024-09-10 15:46:15.555694 3236279d-e82c-4aa4-b3dc-2bb712cd5515 {"md5": "cab14842b9bb94e2242122d63925f9db", "pid": "960175105", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Dokumentenverwaltungssystem"}], "identifier": "http://d-nb.info/gnd/4613370-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4613370-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)960175105", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4613370-7", "source": "GND"}], "variant_access_point": ["Dokumenten Retrieval- und Informations-System"], "authorized_access_point": "DORIS (Programm)"} 1 +2024-09-10 15:46:15.634689 2024-09-10 15:46:15.634695 65837769-cf9e-49f5-beae-d909086dcab8 {"md5": "7b747d6bbc55abe97cd78d2a32323586", "pid": "959959750", "note": [{"label": ["Ökologisches Computerprogramm"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Programm"}], "related": [{"authorized_access_point": "Ökologie"}], "identifier": "http://d-nb.info/gnd/4609145-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4609145-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)959959750", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4609145-2", "source": "GND"}], "authorized_access_point": "EcoBeaker 2.0"} 1 +2024-09-10 15:46:16.411598 2024-09-10 15:46:16.411602 edf9f5e4-bedc-4aaa-9fcc-32fa2106b4ea {"md5": "509719715546c9a0a90c7715b15b7473", "pid": "958467102", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "identifier": "http://d-nb.info/gnd/4580391-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4580391-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)958467102", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4580391-2", "source": "GND"}], "variant_access_point": ["Kanay", "Kenja", "Kenjah", "Kehja", "Kinyah"], "authorized_access_point": "Kenyah"} 1 +2024-09-10 15:46:15.709151 2024-09-10 15:46:15.709155 6f9660d2-8cf2-4dc1-b955-d91a6a40fcd4 {"md5": "dd088fb8022850dbdd25404a41bc2c5b", "pid": "959794972", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134818971", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85079988", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85079988"}], "authorized_access_point": "Makasar language"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134818971", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13529312", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13529312v"}], "authorized_access_point": "Makasar (langue)"}], "identifier": "http://d-nb.info/gnd/4605661-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4605661-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)959794972", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4605661-0", "source": "GND"}], "variant_access_point": ["Macassarese", "Makasarese", "Tawna", "Makassar (Sprache)"], "authorized_access_point": "Makassarisch"} 1 +2024-09-10 15:46:15.79572 2024-09-10 15:46:15.795723 b2ee0d3f-99e8-4941-87e7-97dcbf21cd58 {"md5": "6df9cf4c3ac73bf15ea2f32f1b884b43", "pid": "959794921", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "identifier": "http://d-nb.info/gnd/4605659-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4605659-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)959794921", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4605659-2", "source": "GND"}], "variant_access_point": ["Küsten-Dajak-Sprache", "See-Dajak-Sprache"], "authorized_access_point": "Iban-Sprache"} 1 +2024-09-10 15:46:15.878489 2024-09-10 15:46:15.878493 3383ed55-bb32-414c-b372-8d4177dc8122 {"md5": "c0f1a7dd95cc159c06f939bb43bf0666", "pid": "959794859", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}, {"authorized_access_point": "Gayo"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134818963", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85053584", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85053584"}], "authorized_access_point": "Gayo language"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134818963", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16172335", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16172335k"}], "authorized_access_point": "Gayo (langue)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254315152", "source": "GND"}, {"type": "bf:Nbn", "value": "64", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/64"}], "authorized_access_point": "Lingua gayo"}], "identifier": "http://d-nb.info/gnd/4605656-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4605656-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)959794859", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4605656-7", "source": "GND"}], "variant_access_point": ["Gajo-Sprache"], "authorized_access_point": "Gayo-Sprache"} 1 +2024-09-10 15:46:15.964825 2024-09-10 15:46:15.96483 c84279d6-7856-4057-adde-d56a6a7d7da0 {"md5": "c44516ef981b7cbb237b54b6e5431702", "pid": "959740864", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4604725-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4604725-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)959740864", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4604725-6", "source": "GND"}], "authorized_access_point": "Meteorologisches Feld"} 1 +2024-09-10 15:46:16.05153 2024-09-10 15:46:16.051535 7144cf5c-1a82-4009-abb7-b3d17b97cd45 {"md5": "22a1b74dd3bb89502b683cf014d77205", "pid": "959716688", "note": [{"label": ["Ostindonesische Sprachgruppe, vor allem in Westtimor gesprochen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Ostindonesische Sprachen"}], "identifier": "http://d-nb.info/gnd/4603925-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4603925-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)959716688", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4603925-9", "source": "GND"}], "variant_access_point": ["Atoni", "Orang Gunung", "Orang Timor", "Timol", "Timor", "Timoresisch", "Uab Atoni Pah Meto", "Uab Pah Meto"], "authorized_access_point": "Uab Meto"} 1 +2024-09-10 15:46:16.139943 2024-09-10 15:46:16.139946 5bc73e52-1f65-491c-afc0-3a41fa613080 {"md5": "2d7f8ad3fb1d0d90abb61d5d4d7c236c", "pid": "959148523", "note": [{"label": ["Verbreitung: Celebes, zw. Towuti-See u. Tombuku-Bergland"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "identifier": "http://d-nb.info/gnd/4592666-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4592666-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)959148523", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4592666-9", "source": "GND"}], "variant_access_point": ["Mori (Sprache)", "Aikoa"], "authorized_access_point": "Mori-Sprache"} 1 +2024-09-10 15:46:16.2019 2024-09-10 15:46:16.201902 504d3481-81a9-4306-84eb-c0c9aca173a0 {"md5": "5a913abf17fabceaf002f106f32dc0b1", "pid": "959148485", "note": [{"label": ["Verbreitung: Celebes, Distrikte Bungku u. Labota; Kabaena Is."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "identifier": "http://d-nb.info/gnd/4592665-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4592665-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)959148485", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4592665-7", "source": "GND"}], "authorized_access_point": "Bungku"} 1 +2024-09-10 15:46:16.259166 2024-09-10 15:46:16.25917 3b8983eb-a5de-43fe-82e2-b13df9b294b8 {"md5": "204402d6d876a229771cbe859f16955f", "pid": "959148477", "note": [{"label": ["Verbreitung: Südcelebes"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "identifier": "http://d-nb.info/gnd/4592664-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4592664-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)959148477", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4592664-5", "source": "GND"}], "variant_access_point": ["Tolaki"], "authorized_access_point": "Kendari"} 1 +2024-09-10 15:46:16.495178 2024-09-10 15:46:16.495183 98d4d2f6-caaa-4f95-954a-19024b230320 {"md5": "b4396860fddf1b94aacff81adeedb655", "pid": "958224625", "note": [{"label": ["1995 ersch."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Programm"}], "related": [{"authorized_access_point": "Wirtschaftssprache"}, {"authorized_access_point": "Sprachkurs"}, {"authorized_access_point": "Englisch"}], "identifier": "http://d-nb.info/gnd/4576050-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4576050-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)958224625", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4576050-0", "source": "GND"}], "variant_access_point": ["MS-DOS"], "authorized_access_point": "COACH 5.0"} 1 +2024-09-10 15:46:16.58559 2024-09-10 15:46:16.585594 f68f38e9-447e-479e-979a-5f2712f21b7d {"md5": "8d6146dd54f56fded2beaa29c5fabdfd", "pid": "958195889", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Veredelung (Pflanzenbau)"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256242187", "source": "GND"}, {"type": "bf:Nbn", "value": "1132", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_1132"}], "authorized_access_point": "budding (grafting)"}], "identifier": "http://d-nb.info/gnd/4575226-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4575226-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)958195889", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4575226-6", "source": "GND"}], "variant_access_point": ["Augenveredelung"], "authorized_access_point": "Okulation"} 1 +2024-09-10 15:46:16.659031 2024-09-10 15:46:16.659034 0efd09af-2a69-453a-994f-49c784f06ef7 {"md5": "ad7edef127535a766cf16d6635189b7a", "pid": "958190453", "note": [{"label": ["Erzstufen, die eine Handfläche ausfüllen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4574751-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4574751-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)958190453", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4574751-9", "source": "GND"}], "variant_access_point": ["Handstück"], "authorized_access_point": "Handstein"} 1 +2024-09-10 15:46:16.754016 2024-09-10 15:46:16.754021 6c8c0286-fc45-410c-885e-1a63a411718a {"md5": "bafb0db5d90302b233e8a1619fe24120", "pid": "957705611", "note": [{"label": ["1998 ersch."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Programm"}], "related": [{"authorized_access_point": "Auftragsabwicklung"}], "identifier": "http://d-nb.info/gnd/4565110-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4565110-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)957705611", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4565110-3", "source": "GND"}], "variant_access_point": ["Fakt-Star-Extra", "MS-DOS 5.0", "Windows 3.1"], "authorized_access_point": "Fakt-Star extra"} 1 +2024-09-10 15:46:16.839116 2024-09-10 15:46:16.83912 e37e7c82-822e-4c0e-ace6-a46009161e29 {"md5": "717434351496480838e85d63f0c3b602", "pid": "95765894X", "note": [{"label": ["benutzt, soweit im Ausland lebend"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ausländischer Student"}, {"authorized_access_point": "Inder"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134821379", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85040564", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85040564"}], "authorized_access_point": "East Indian students"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134821379", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF18034849", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb18034849d"}], "authorized_access_point": "Étudiants indiens (de l'Inde)"}], "identifier": "http://d-nb.info/gnd/4563960-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4563960-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)95765894X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4563960-7", "source": "GND"}], "authorized_access_point": "Indischer Student"} 1 +2024-09-10 15:46:16.923489 2024-09-10 15:46:16.923494 f6acd224-e868-4264-ad51-ba87cd0d0e2b {"md5": "2d601ad537e446cfcd0ba374ba843b22", "pid": "957331940", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tanz"}], "identifier": "http://d-nb.info/gnd/4558162-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4558162-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)957331940", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4558162-9", "source": "GND"}], "authorized_access_point": "Säbeltanz"} 1 +2024-09-10 15:46:16.998236 2024-09-10 15:46:16.998242 770ed6f5-4877-4d15-9bf9-123e8c92cb93 {"md5": "0a1d5929aaee563609c4cd34406ba658", "pid": "957331673", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gießerei"}], "identifier": "http://d-nb.info/gnd/4558147-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4558147-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)957331673", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4558147-2", "source": "GND"}], "variant_access_point": ["Geschütz"], "authorized_access_point": "Geschützgießerei"} 1 +2024-09-10 15:46:17.0991 2024-09-10 15:46:17.099111 ba4e75bb-26f7-4eb4-ad4b-2f14a30be40b {"md5": "530519548d68fea6d2908e5b70024463", "pid": "957192517", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Antiarrhythmikum"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)124159175X", "source": "GND"}, {"type": "bf:Nbn", "value": "D001073", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D001073"}], "authorized_access_point": "Aprindine"}], "identifier": "http://d-nb.info/gnd/4555512-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4555512-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)957192517", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4555512-6", "source": "GND"}], "variant_access_point": ["Aprindina", "Aprindine", "Aprindinum", "CAS 37640-71-4"], "authorized_access_point": "Aprindin"} 1 +2024-09-10 15:46:17.173545 2024-09-10 15:46:17.173547 b92d7c59-640e-4fa2-b777-8990206a3716 {"md5": "bf6d82759b587d77680442140fba538d", "pid": "956838049", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Programmierumgebung"}], "related": [{"authorized_access_point": "SAP R/3"}], "identifier": "http://d-nb.info/gnd/4550881-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4550881-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)956838049", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4550881-1", "source": "GND"}], "authorized_access_point": "Borland Delphi/Connect für SAP"} 1 +2024-09-10 15:46:17.233858 2024-09-10 15:46:17.233861 0ffc8e49-4592-4980-94c3-ca5d20741672 {"md5": "67dd2bb43fe18f2a473d5c55b2c4df30", "pid": "956643221", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "identifier": "http://d-nb.info/gnd/4548250-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4548250-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)956643221", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4548250-0", "source": "GND"}], "authorized_access_point": "Tukangbesi"} 1 +2024-09-10 15:46:17.293982 2024-09-10 15:46:17.293985 6b7f9957-e339-4a84-93b2-40b7edb015ec {"md5": "83ca21aa9398f4a284c1c3f7b42884e6", "pid": "956635709", "note": [{"label": ["C5H6-SO2-NH2"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Weichmacher"}, {"authorized_access_point": "Benzolderivate"}, {"authorized_access_point": "Sulfonamide"}], "identifier": "http://d-nb.info/gnd/4548010-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4548010-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)956635709", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4548010-2", "source": "GND"}], "variant_access_point": ["Benzolsulfamid", "CAS 98-10-2"], "authorized_access_point": "Benzolsulfonamid"} 1 +2024-09-10 15:46:17.367609 2024-09-10 15:46:17.367614 9ff11a7e-abc9-4959-9484-3f735c0b29e7 {"md5": "a94eca1719ddc8d06cf51ed85ee57eb7", "pid": "956220495", "note": [{"label": ["Benutzt, soweit im Ausland lebend"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ausländischer Student"}, {"authorized_access_point": "Rumänen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134821441", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2008001682", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2008001682"}], "authorized_access_point": "Romanian students"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134821441", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17141239", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17141239z"}], "authorized_access_point": "Étudiants roumains"}], "identifier": "http://d-nb.info/gnd/4539828-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4539828-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)956220495", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4539828-8", "source": "GND"}], "authorized_access_point": "Rumänischer Student"} 1 +2024-09-10 15:46:17.46234 2024-09-10 15:46:17.462344 66a13442-c130-4624-88e0-3a72bc66b04e {"md5": "3a8467f0ca26d26f808b933810d76b10", "pid": "955244641", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Informierte_Einwilligung&oldid=242937451"], "noteType": "dataSource"}, {"label": ["Einwilligung zur Teilnahme an einem Versuch, Behandlung oder Forschung nach vorheriger eingehender Aufklärung", "Nicht im Zusammenhang mit sexuellen Praktiken zu verwenden, verwende hier das SW \\"Einwilligung\\""], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Einwilligung"}], "related": [{"authorized_access_point": "Ärztliche Aufklärungspflicht"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113413603X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85066306", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85066306"}], "authorized_access_point": "Informed consent (Medical law)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113413603X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12048898", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12048898z"}], "authorized_access_point": "Consentement éclairé (droit médical)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)129990534X", "source": "GND"}, {"type": "bf:Nbn", "value": "XX542468", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX542468"}], "authorized_access_point": "Consentimiento informado (Derecho médico)"}], "identifier": "http://d-nb.info/gnd/4524137-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4524137-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)955244641", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4524137-5", "source": "GND"}], "variant_access_point": ["Informed consent", "Einwilligung nach erfolgter Aufklärung", "Informiertes Einverständnis", "Informierte Zustimmung", "Patient"], "authorized_access_point": "Informierte Einwilligung"} 1 +2024-09-10 15:46:17.543004 2024-09-10 15:46:17.543009 8b526c46-e53d-42d0-a259-7a5d20941304 {"md5": "b2bafd347e833ee0d09e86d22c0b2d1e", "pid": "95489748X", "note": [{"label": ["Programm zur Simulierung von Zielvorstellungen für Umweltveränderung und nachhaltige Entwicklung, erarbeitet vom Rijksinstituut voor Volksgezondheit en Milieu (Bilthoven, NL)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Programm"}], "related": [{"authorized_access_point": "Umweltveränderung"}, {"authorized_access_point": "Nachhaltigkeit"}, {"authorized_access_point": "Zielvorstellung"}, {"authorized_access_point": "Modell"}], "identifier": "http://d-nb.info/gnd/4519867-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4519867-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)95489748X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4519867-6", "source": "GND"}], "variant_access_point": ["Tool to Assess Regional and Global Environmental and Health Targets for Sustainability"], "authorized_access_point": "TARGETS (Programm)"} 1 +2024-09-10 15:46:17.631599 2024-09-10 15:46:17.631604 622f07af-52d8-4753-a8ac-d85ff88aa6bc {"md5": "27f26b805b71193dc75fd1d26c247353", "pid": "954782232", "note": [{"label": ["Bezeichnet die überlieferten Kenntnisse, Fähigkeiten und Weltbilder, die in einer bestimmten natürlichen Umwelt und einem bestimmten kulturellen Rahmen entstanden sind."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Alltagswissen"}], "related": [{"authorized_access_point": "Implizites Wissen"}], "identifier": "http://d-nb.info/gnd/4518241-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4518241-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)954782232", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4518241-3", "source": "GND"}], "variant_access_point": ["Indigenes Wissen", "Traditionelles Wissen", "Indigenous knowledge"], "authorized_access_point": "Lokales Wissen"} 1 +2024-09-10 15:46:17.726532 2024-09-10 15:46:17.72654 00e151d8-1315-45cb-a4ee-089d56501da0 {"md5": "4d8ca8e5a698d1c82151d9b98e05bffb", "pid": "95462839X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Programm"}], "related": [{"authorized_access_point": "Klein- und Mittelbetrieb"}, {"authorized_access_point": "Anlagegut"}, {"authorized_access_point": "Absetzung für Abnutzung"}], "identifier": "http://d-nb.info/gnd/4515541-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4515541-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)95462839X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4515541-0", "source": "GND"}], "variant_access_point": ["Windows 3.1", "Windows 95"], "authorized_access_point": "PRESTO AfA"} 1 +2024-09-10 15:46:17.822004 2024-09-10 15:46:17.822009 58355fa7-2e56-4fbe-814f-7a0471023a5f {"md5": "503d6ab6f6a62e0f24462b1dce5ccc6d", "pid": "954211774", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Programm"}], "related": [{"authorized_access_point": "Chipkarte"}, {"authorized_access_point": "Funktelefon"}], "identifier": "http://d-nb.info/gnd/4509985-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4509985-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)954211774", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4509985-6", "source": "GND"}], "authorized_access_point": "Chipy (Programm)"} 1 +2024-09-10 15:46:17.911767 2024-09-10 15:46:17.911775 7e23dba8-e7fe-42dc-81ac-7315861901f8 {"md5": "19aca0f54f4ae6dad29c18e8da6d58c7", "pid": "954206738", "note": [{"label": ["Wert der Verminderung zukünftiger Risiken hinsichtlich irreversibler zukünftiger Nutzungen von Umweltgütern durch präventive Umweltschutzinvestitionen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4509905-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4509905-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)954206738", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4509905-4", "source": "GND"}], "variant_access_point": ["Umweltökonomie (Umweltökonomie)"], "authorized_access_point": "Optionswert (Umweltökonomie)"} 1 +2024-09-10 15:46:17.999571 2024-09-10 15:46:17.999575 b180c4e2-7160-4745-9e39-22938d99ac40 {"md5": "630e0d90d236f8f1b13b3396320cef15", "pid": "954203232", "note": [{"label": ["Bantusprache in Tansania"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Bantusprachen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113442034X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85009040", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85009040"}], "authorized_access_point": "Asu language"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113442034X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF14470028", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb144700287"}], "authorized_access_point": "Asu (langue)"}], "identifier": "http://d-nb.info/gnd/4509866-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4509866-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)954203232", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4509866-9", "source": "GND"}], "variant_access_point": ["Asu-Sprache", "Chasu-Sprache"], "authorized_access_point": "Pare-Sprache"} 1 +2024-09-10 15:46:18.094033 2024-09-10 15:46:18.094037 837984bb-3a4b-4d7d-a85f-f7f6640bb472 {"md5": "bac2bb1c0a1ba9a1e6baa7472963c15a", "pid": "953679802", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zelle"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336596554", "source": "GND"}, {"type": "bf:Nbn", "value": "D000078422", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D000078422"}], "authorized_access_point": "Allogeneic Cells"}], "identifier": "http://d-nb.info/gnd/4502212-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4502212-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)953679802", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4502212-4", "source": "GND"}], "authorized_access_point": "Allogene Zelle"} 1 +2024-09-10 15:46:18.164954 2024-09-10 15:46:18.164958 4113d8fb-210c-412b-a941-b5672522c06e {"md5": "e5c760be2bdeeaba9d84e9d618dde2c5", "pid": "953550346", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4500908-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4500908-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)953550346", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4500908-9", "source": "GND"}], "variant_access_point": ["Indexzahl", "Statistische Indexreihe", "Dynamische Indexreihe"], "authorized_access_point": "Indexreihe"} 1 +2024-09-10 15:46:18.227801 2024-09-10 15:46:18.227806 b96fe22b-7489-47bb-ad80-c5c4c1208af8 {"md5": "1c763d7e01f9dafd20d73f36a2e10a9a", "pid": "953444201", "note": [{"label": ["Auf Sumatra gesprochen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "identifier": "http://d-nb.info/gnd/4498755-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4498755-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)953444201", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4498755-9", "source": "GND"}], "variant_access_point": ["Karo (Sprache)", "Karo-Batak (Sprache)"], "authorized_access_point": "Karo-Batak-Sprache"} 1 +2024-09-10 15:46:18.310642 2024-09-10 15:46:18.310646 f1812ab3-881b-4367-ab3c-810fccf534d0 {"md5": "a24f3295570b9d91f44955c1b67d2d86", "pid": "953056082", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Hebräische Schrift (Druckschrift)"}, {"authorized_access_point": "Druckschrift"}], "identifier": "http://d-nb.info/gnd/4491111-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4491111-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)953056082", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4491111-7", "source": "GND"}], "authorized_access_point": "Frank-Rühl-Hebräisch"} 1 +2024-09-10 15:46:18.984615 2024-09-10 15:46:18.984619 e61e33a2-01cc-4ec2-a2f0-3f3ae5a5989b {"md5": "00080f92fbf9c953c35139180e897abd", "pid": "951607804", "note": [{"label": ["benutzt für den Stoff (Ödipusthematik)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Legende"}], "identifier": "http://d-nb.info/gnd/4472697-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4472697-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)951607804", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4472697-1", "source": "GND"}], "authorized_access_point": "Albanuslegende"} 1 +2024-09-10 15:46:18.397099 2024-09-10 15:46:18.397106 7e3d661a-3534-412b-8eef-72ba4c153bfd {"md5": "5ec358bde0d837e879c1124470a7bed5", "pid": "952896605", "note": [{"label": ["Den Entwicklungsprozess vorantreibender Akteur in der Organisationsentwicklung"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Organisationsentwicklung"}], "identifier": "http://d-nb.info/gnd/4487767-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4487767-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)952896605", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4487767-5", "source": "GND"}], "authorized_access_point": "Change Agent"} 1 +2024-09-10 15:46:18.477359 2024-09-10 15:46:18.477363 b6a95767-caae-41bc-a555-f622950c383f {"md5": "c6742841353f01b7483feacfc04df89c", "pid": "952702053", "note": [{"label": ["Verknüpfe mit Sprachbezeichnung und hier nicht permutierender Wortart, z.B. SWW Latein ; Substantiv ; humanitas"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4484471-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4484471-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)952702053", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4484471-2", "source": "GND"}], "authorized_access_point": "humanitas"} 1 +2024-09-10 15:46:18.563134 2024-09-10 15:46:18.563139 89bdf6e2-a2d1-4832-aa7c-45a68fba4312 {"md5": "d2383233b12a2305b7688bde5e470ce0", "pid": "952619636", "note": [{"label": ["In weiter Bedeutung verwendet: Forschung in allen geisteswiss., sozialwiss. und historischen Disziplinen über Geschlechterfragen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Forschung"}], "related": [{"authorized_access_point": "Geschlechterverhältnis"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966762037", "source": "GND"}, {"type": "bf:Nbn", "value": "19757-4", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/19757-4"}], "authorized_access_point": "Geschlechterforschung"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970553757", "source": "GND"}, {"type": "bf:Nbn", "value": "10044108", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10044108"}], "authorized_access_point": "Geschlechterforschung"}], "identifier": "http://d-nb.info/gnd/4482930-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4482930-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)952619636", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4482930-9", "source": "GND"}], "variant_access_point": ["Gender Studies", "Gender-Forschung", "Geschlechterfrage", "Geschlechtertheorie", "Gender-Theorie", "Gendertheorie", "Genderstudie"], "authorized_access_point": "Geschlechterforschung"} 1 +2024-09-10 15:46:18.654303 2024-09-10 15:46:18.654306 dc6b1adc-a7b1-408a-9d28-2b753d3ac678 {"md5": "3316c8226659ed55d9cc7605f014a210", "pid": "952440431", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Einwanderer"}, {"authorized_access_point": "Amerikaner"}], "related": [{"authorized_access_point": "Amerikanische Einwanderin"}], "identifier": "http://d-nb.info/gnd/4481511-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4481511-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)952440431", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4481511-6", "source": "GND"}], "variant_access_point": ["US-Amerikanischer Einwanderer"], "authorized_access_point": "Amerikanischer Einwanderer"} 1 +2024-09-10 15:46:18.724414 2024-09-10 15:46:18.724418 f5c4b3aa-6647-4825-90d2-71d50e2a8d0c {"md5": "34aa6dccb1b04a2ccabf115abe51910c", "pid": "952431602", "note": [{"label": ["Preis d. Informedia-Stiftung für Gesellschaftswissenschaften u. Publizistik für d. Erklärung d. Sozialen Marktwirtschaft e. breiten Öffentlichkeit"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Preis (Auszeichnung)"}], "related": [{"authorized_access_point": "Journalismus"}], "identifier": "http://d-nb.info/gnd/4481376-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4481376-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)952431602", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4481376-4", "source": "GND"}], "variant_access_point": ["Preis der Informedia-Stiftung für Gesellschaftswissenschaften und Publizistik"], "authorized_access_point": "Informedia-Preis für Wirtschafts-Journalismus"} 1 +2024-09-10 15:46:18.805588 2024-09-10 15:46:18.805593 1af6acbd-3012-4861-adaf-5ce015acb06f {"md5": "c2e06d6cd4c77307417da8908fa07362", "pid": "951810189", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Grubenottern"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1323097007", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17058267", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17058267x"}], "authorized_access_point": "Jararaca"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336110708", "source": "GND"}, {"type": "bf:Nbn", "value": "D000097145", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D000097145"}], "authorized_access_point": "Bothrops jararaca"}], "identifier": "http://d-nb.info/gnd/4474362-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4474362-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)951810189", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4474362-2", "source": "GND"}], "variant_access_point": ["Bothrops jararaca"], "authorized_access_point": "Jararaca"} 1 +2024-09-10 15:46:18.903947 2024-09-10 15:46:18.903951 0f9839a2-01f6-4a84-9631-4a27603c1983 {"md5": "c984b376568a0ed541fb3562846413da", "pid": "951618563", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Reise"}, {"authorized_access_point": "Aufbruch"}], "identifier": "http://d-nb.info/gnd/4472809-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4472809-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)951618563", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4472809-8", "source": "GND"}], "authorized_access_point": "Abreise"} 1 +2024-09-10 15:46:19.257678 2024-09-10 15:46:19.257681 49b9df7d-ec20-4f29-9c83-2152d0457c5d {"md5": "da2c92847100c792b76e99610975e9e2", "pid": "95152092X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "identifier": "http://d-nb.info/gnd/4470454-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4470454-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)95152092X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4470454-9", "source": "GND"}], "authorized_access_point": "Bakumpai-Sprache"} 1 +2024-09-10 15:46:19.059168 2024-09-10 15:46:19.059172 d8c1d574-520e-4fb8-8a6d-3dd35074eb35 {"md5": "3181d3e0331928208cef03166d46265c", "pid": "95159981X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Carrier-Proteine"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134394896", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2004000512", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2004000512"}], "authorized_access_point": "ATP-binding cassette transporters"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134394896", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13743526", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13743526d"}], "authorized_access_point": "Transporteurs ABC"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336028378", "source": "GND"}, {"type": "bf:Nbn", "value": "D018528", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D018528"}], "authorized_access_point": "ATP-Binding Cassette Transporters"}], "identifier": "http://d-nb.info/gnd/4472594-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4472594-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)95159981X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4472594-2", "source": "GND"}], "variant_access_point": ["ATP-Binding Cassette Transporter"], "authorized_access_point": "ABC-Transporter"} 1 +2024-09-10 15:46:19.132818 2024-09-10 15:46:19.132822 602e092c-f435-4349-8f43-3d669cbbef1d {"md5": "fba8c03aaaee2a8ea24b70fd86664735", "pid": "951549650", "note": [{"label": ["Als Triage bezeichnet man ein Verfahren, in dem über die Zuteilung knapper überlebenswichtiger Behandlungsressourcen entschieden wird.", "Auch benutzt für psychosoziale Entscheidungshilfen für die Handlungsorientierung in Notlagen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Priorisierung"}, {"authorized_access_point": "Katastrophenmedizin"}, {"authorized_access_point": "Notfallpsychologie"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1282202472", "source": "GND"}, {"type": "bf:Nbn", "value": "D014218", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D014218"}], "authorized_access_point": "Triage"}], "identifier": "http://d-nb.info/gnd/4471021-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4471021-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)951549650", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4471021-5", "source": "GND"}], "variant_access_point": ["Triage-Index"], "authorized_access_point": "Triage"} 1 +2024-09-10 15:46:19.193031 2024-09-10 15:46:19.193034 1caf95d0-0b5e-4a6d-a823-5eb4d0a6b61f {"md5": "f56c9b90b2710456de40674cc07cad49", "pid": "95153047X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "identifier": "http://d-nb.info/gnd/4470686-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4470686-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)95153047X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4470686-8", "source": "GND"}], "variant_access_point": ["Sakai (Sprache)", "Sakei"], "authorized_access_point": "Sakai-Sprache"} 1 +2024-09-10 15:46:19.315606 2024-09-10 15:46:19.315612 1304962c-6868-49b3-85b9-f146c97aec8f {"md5": "1bfcf5b7e14c6186efe7d391f8c0a576", "pid": "950857157", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=246525497"], "noteType": "dataSource"}, {"label": ["Bestehend aus einem Turmpaar, dem G(efechts)-Turm u. dem L(eit)-Turm", "Nicht zu verwenden für Bunker, die mit Flugabwehrgeschütz versehen waren (z.B. Bunker auf dem Heiliggeistfeld in Hamburg); hierfür verknüpfe geograph. Schlagwort mit SW Bunker u. SW Flugabwehrgeschütz"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Turm"}], "identifier": "http://d-nb.info/gnd/4461928-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4461928-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950857157", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4461928-5", "source": "GND"}], "authorized_access_point": "Flakturm"} 1 +2024-09-10 15:46:19.394381 2024-09-10 15:46:19.39439 054edd18-4196-40cb-9b78-2711179c2606 {"md5": "ec4990e5efe739672b7abc17e614fbd1", "pid": "950693413", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "identifier": "http://d-nb.info/gnd/4459021-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4459021-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950693413", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4459021-0", "source": "GND"}], "variant_access_point": ["Minahasa-Sprachen"], "authorized_access_point": "Minahassa-Sprachen"} 1 +2024-09-10 15:46:19.490775 2024-09-10 15:46:19.490816 a472ac1a-5383-498c-8301-ae1c29feec23 {"md5": "cb43c560b9fec8c866edd8166374840f", "pid": "950693375", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "identifier": "http://d-nb.info/gnd/4459018-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4459018-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950693375", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4459018-0", "source": "GND"}], "variant_access_point": ["Tondano-Sprache", "Tolou-Sprache", "Tolour-Sprache", "Tondano (Sprache)", "Tolou (Sprache)", "Tolour (Sprache)"], "authorized_access_point": "Tondanesisch"} 1 +2024-09-10 15:46:19.566068 2024-09-10 15:46:19.566076 59984a8b-4de8-492f-8487-4bc9d29fd1eb {"md5": "7f3e51cd4b7cf87be20c1adb40281085", "pid": "950692433", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134836120", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85139514", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85139514"}], "authorized_access_point": "Uma language"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134836120", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF15777212", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb15777212r"}], "authorized_access_point": "Uma (langue)"}], "identifier": "http://d-nb.info/gnd/4458960-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4458960-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950692433", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4458960-8", "source": "GND"}], "variant_access_point": ["Uma-Aria-Sprache", "Oema-Sprache", "Pipikoro (Sprache)", "Uma Aria (Sprache)", "Oema (Sprache)"], "authorized_access_point": "Pipikoro-Sprache"} 1 +2024-09-10 15:46:19.643027 2024-09-10 15:46:19.643033 6552e6e1-1e82-4e09-aa00-a93f75c58396 {"md5": "576c2c9102412e06bf86afbd4522bb74", "pid": "950632481", "note": [{"label": ["PPS-Modularprogramm"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "PPS"}], "identifier": "http://d-nb.info/gnd/4457570-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4457570-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950632481", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4457570-1", "source": "GND"}], "authorized_access_point": "COPICS"} 1 +2024-09-10 15:46:19.706663 2024-09-10 15:46:19.70667 18595b44-b636-4477-b474-871ec7b89235 {"md5": "90cafab2efccf54c8d6f87ea60e62332", "pid": "950276014", "note": [{"label": ["Pflanzenparasit, zu der Gattung der Kleeseide gehörend"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4451407-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4451407-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950276014", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4451407-4", "source": "GND"}], "authorized_access_point": "Cuscuta odorata"} 1 +2024-09-10 15:46:19.785108 2024-09-10 15:46:19.785113 c6800ae0-d47e-48ad-b964-e0b54d1ad67e {"md5": "2b6e31cc3b3c291134008d0d6f1cd2af", "pid": "949894028", "note": [{"label": ["Jährl. Preis zur Förd. d. württemberg. Handwerks"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Förderungspreis"}, {"authorized_access_point": "Preis (Auszeichnung)"}], "related": [{"authorized_access_point": "Handwerk"}], "identifier": "http://d-nb.info/gnd/4444587-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4444587-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)949894028", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4444587-8", "source": "GND"}], "authorized_access_point": "Förderpreis Junges Handwerk"} 1 +2024-09-10 15:46:19.860699 2024-09-10 15:46:19.860704 78eb7626-4efd-486b-915c-440e18694534 {"md5": "8eb5d45de90baef396b179faa13e2531", "pid": "949435015", "note": [{"label": ["Bezeichnung für die Diktaturen in Portugal (1933-1974) und Brasilien (1934/1937-1945)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4436273-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4436273-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)949435015", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4436273-0", "source": "GND"}], "authorized_access_point": "Estado Novo"} 1 +2024-09-10 15:46:23.083569 2024-09-10 15:46:23.083574 ec359ed3-bcdc-46c6-90a2-51f5162eb83b {"md5": "13742176404b478bca586501746bbea4", "pid": "19915046X", "note": [{"label": ["Internet - http://www.miz.org/themenportale/musikfoerderung"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kulturförderung"}], "identifier": "http://d-nb.info/gnd/7778528-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7778528-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)19915046X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7778528-9", "source": "GND"}], "authorized_access_point": "Musikförderung"} 1 +2024-09-10 15:46:19.943705 2024-09-10 15:46:19.943712 ef24b7d0-7ede-471d-9f36-deb787c05bd9 {"md5": "a24d8a8782d9e39d7a154da26b217d00", "pid": "948897244", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1027688217", "source": "GND"}, {"type": "bf:Nbn", "value": "10077203", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10077203"}], "authorized_access_point": "soziale Kohäsion"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970555849", "source": "GND"}, {"type": "bf:Nbn", "value": "10046095", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10046095"}], "authorized_access_point": "Gruppenkohäsion"}], "identifier": "http://d-nb.info/gnd/4427991-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4427991-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)948897244", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4427991-7", "source": "GND"}], "variant_access_point": ["Gruppenzusammenhalt", "Kohäsion (Sozialpsychologie)", "Zusammenhalt"], "authorized_access_point": "Gruppenkohäsion"} 1 +2024-09-10 15:46:20.021762 2024-09-10 15:46:20.021767 02f6c998-6eac-48af-96a4-a1ff8ecdea42 {"md5": "6ea7748fc68b24d5f7d7565d8067d369", "pid": "948567341", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "identifier": "http://d-nb.info/gnd/4423655-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4423655-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)948567341", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4423655-4", "source": "GND"}], "variant_access_point": ["Andian", "Mandar (Sprache)"], "authorized_access_point": "Mandaresisch"} 1 +2024-09-10 15:46:20.093745 2024-09-10 15:46:20.093749 0f8d47d3-455f-414b-9ba6-78ebd4577628 {"md5": "114256b4e879b1094c9e84eb7ca49ef5", "pid": "948567317", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "identifier": "http://d-nb.info/gnd/4423654-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4423654-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)948567317", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4423654-2", "source": "GND"}], "variant_access_point": ["Mentawei", "Mentawi"], "authorized_access_point": "Mentawai"} 1 +2024-09-10 15:46:20.170471 2024-09-10 15:46:20.170474 5806e226-7a2f-48bf-894b-944015e5424e {"md5": "77df77a23c4659ff12d12b411d58ed1c", "pid": "948565977", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Architektur (Informatik)"}], "related": [{"authorized_access_point": "CIM"}, {"authorized_access_point": "Offenes System"}], "identifier": "http://d-nb.info/gnd/4423632-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4423632-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)948565977", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4423632-3", "source": "GND"}], "variant_access_point": ["CIM-OSA-Modell", "CIM-Open-Systems-Architecture-Modell", "ESPRIT (Forschungsprogramm)"], "authorized_access_point": "CIM-OSA"} 1 +2024-09-10 15:46:20.248643 2024-09-10 15:46:20.248647 35bcfc07-1461-4546-ade7-3c18c7286f1b {"md5": "4b8ab0d21cca6624e4000f779506072f", "pid": "948520116", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bar"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334889856", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2009010761", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2009010761"}], "authorized_access_point": "Happy hours"}], "identifier": "http://d-nb.info/gnd/4423019-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4423019-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)948520116", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4423019-9", "source": "GND"}], "authorized_access_point": "Happy-hour"} 1 +2024-09-10 15:46:20.307315 2024-09-10 15:46:20.307318 95f7b96d-7555-46c2-8904-e763949aad51 {"md5": "7f24a29fdf36247f81e77449d4a6d3b6", "pid": "948474688", "note": [{"label": ["Populärer französischer Tanzstil zu Akkordeonmusik"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tanz"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134457324", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF14618415", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb146184151"}], "authorized_access_point": "Bals musettes"}], "identifier": "http://d-nb.info/gnd/4422248-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4422248-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)948474688", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4422248-8", "source": "GND"}], "variant_access_point": ["Danse Musette", "Bal Musette", "Musette-Walzer", "Valse à la musette"], "authorized_access_point": "Musette (Tanz)"} 1 +2024-09-10 15:46:20.370879 2024-09-10 15:46:20.370882 15236982-b113-4e42-9e3f-21b9212ad55b {"md5": "12fc3083b756bf6a8bab5dcee65aca63", "pid": "947762868", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Angle-Klassifizierung"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1241591032", "source": "GND"}, {"type": "bf:Nbn", "value": "D008312", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D008312"}], "authorized_access_point": "Malocclusion, Angle Class II"}], "identifier": "http://d-nb.info/gnd/4412407-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4412407-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)947762868", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4412407-7", "source": "GND"}], "authorized_access_point": "Angle-Klasse II"} 1 +2024-09-10 15:46:20.4571 2024-09-10 15:46:20.457105 bbdcefba-e852-4bc3-ac38-9ddfa6ad7aa0 {"md5": "4c810b6c34262f5ae79f498ed36bc06a", "pid": "947572090", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Programm"}], "related": [{"authorized_access_point": "Finanzmathematik"}], "identifier": "http://d-nb.info/gnd/4410220-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4410220-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)947572090", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4410220-3", "source": "GND"}], "authorized_access_point": "FinWin"} 1 +2024-09-10 15:46:20.535908 2024-09-10 15:46:20.535912 f8d558b9-92d9-45ec-9c17-ffc92d42f1b7 {"md5": "b83b3a9364832ce09b5d7995ec57d3ac", "pid": "947210601", "note": [{"label": ["Programm für Bilanzanalyse"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Programm"}], "related": [{"authorized_access_point": "Bilanzanalyse"}, {"authorized_access_point": "Betriebsanalyse"}, {"authorized_access_point": "Kennzahlensystem"}], "identifier": "http://d-nb.info/gnd/4406289-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4406289-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)947210601", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4406289-8", "source": "GND"}], "variant_access_point": ["Systematische Bilanzanalyse mit dem PC (Programm)", "SYBILA plus"], "authorized_access_point": "SYBILA-PLUS"} 1 +2024-09-10 15:46:20.617301 2024-09-10 15:46:20.617305 3f1e06f2-baa5-4e36-8290-10a43975e61f {"md5": "62323b4340a51107427cf287b3150699", "pid": "947024387", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Installateurhandwerk"}], "related": [{"authorized_access_point": "Klimatechnische Wirtschaft"}], "identifier": "http://d-nb.info/gnd/4403725-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4403725-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)947024387", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4403725-9", "source": "GND"}], "variant_access_point": ["Klimatechnik", "Klimatechnik", "Klimatechnik"], "authorized_access_point": "Klimatechnisches Handwerk"} 1 +2024-09-10 15:46:20.681124 2024-09-10 15:46:20.681128 7df5e176-72c0-4339-8f88-eb67b7229e44 {"md5": "5ec27df64d275409f31e6937b248caef", "pid": "946840318", "note": [{"label": ["Vereinfachte isostatische Anomalie der Ausgleichstiefe im Bereich des Meeresniveaus"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schwereanomalie"}], "identifier": "http://d-nb.info/gnd/4401794-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4401794-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)946840318", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4401794-7", "source": "GND"}], "variant_access_point": ["Fayesche Anomalie"], "authorized_access_point": "Freiluftanomalie"} 1 +2024-09-10 15:46:20.755648 2024-09-10 15:46:20.755652 59c8a5c0-b17d-416f-8138-35e6dc8f8410 {"md5": "ffe15257ca0670c6df4e0f25add4ada3", "pid": "94683203X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Algebraischer Funktionenkörper"}], "identifier": "http://d-nb.info/gnd/4401685-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4401685-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)94683203X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4401685-2", "source": "GND"}], "authorized_access_point": "Arithmetischer Funktionenkörper"} 1 +2024-09-10 15:46:20.840625 2024-09-10 15:46:20.840629 3aa2197d-61cd-4651-b4a4-a52aa492f03e {"md5": "f5a5566aa3064a4afbecd3c6b31ac0df", "pid": "946538506", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tiere (Motiv)"}, {"authorized_access_point": "Tierdarstellung"}, {"authorized_access_point": "Motiv"}], "identifier": "http://d-nb.info/gnd/4398263-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4398263-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)946538506", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4398263-3", "source": "GND"}], "authorized_access_point": "Flöhe (Motiv)"} 1 +2024-09-10 15:46:20.923347 2024-09-10 15:46:20.923351 70be11a3-c55b-446f-aee2-7994fd8f3e1e {"md5": "f369221022568b295532848ceff87dc4", "pid": "946529981", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Programm"}], "related": [{"authorized_access_point": "Fakturierung"}], "identifier": "http://d-nb.info/gnd/4398195-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4398195-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)946529981", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4398195-1", "source": "GND"}], "authorized_access_point": "Faku"} 1 +2024-09-10 15:46:21.005751 2024-09-10 15:46:21.005754 173c908f-61dc-4e80-b55f-91a3a8f5193f {"md5": "bf68381631123f2961523a6c80eafafa", "pid": "946267340", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Grenzsoldat&oldid=193965284"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Soldat"}], "related": [{"authorized_access_point": "Grenzsoldatin"}], "identifier": "http://d-nb.info/gnd/4394827-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4394827-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)946267340", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4394827-3", "source": "GND"}], "authorized_access_point": "Grenzsoldat"} 1 +2024-09-10 15:46:21.077862 2024-09-10 15:46:21.077868 82e1f9f0-5abd-4ea2-87e9-a173161939a7 {"md5": "f29eac87b5174caac318344449718dbf", "pid": "945831749", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zelle"}], "identifier": "http://d-nb.info/gnd/4389509-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4389509-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)945831749", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4389509-8", "source": "GND"}], "authorized_access_point": "Basalzelle"} 1 +2024-09-10 15:46:21.153881 2024-09-10 15:46:21.153885 ec9824fe-94dd-4bd7-a784-77993b420eff {"md5": "ac979aec86a2001f2ad2abc48fc89d4d", "pid": "94574577X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Qualitätsregelkarte"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113476099X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85109440", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85109440"}], "authorized_access_point": "Quality control"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113476099X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11932687", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11932687h"}], "authorized_access_point": "Qualité - Contrôle"}], "identifier": "http://d-nb.info/gnd/4388728-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4388728-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)94574577X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4388728-4", "source": "GND"}], "variant_access_point": ["EWMA-Kontrollkarte", "EWMA-Karte", "Exponentially-weighted-moving-average-Regelkarte"], "authorized_access_point": "EWMA-Regelkarte"} 1 +2024-09-10 15:46:21.232223 2024-09-10 15:46:21.232228 5fa3b3aa-4758-4a35-833c-ad5ff2ffd869 {"md5": "6414c6741242e993a4b691e9fb5ad55a", "pid": "945675267", "note": [{"label": ["Angloamerikanischer Tanz und entspr. Musik"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gesellschaftstanz"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134342098", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85139049", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85139049"}], "authorized_access_point": "Twist (Dance)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332661807", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2005006466", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2005006466"}], "authorized_access_point": "Twist (Music)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134342098", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12484982", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12484982d"}], "authorized_access_point": "Twist (danse)"}], "identifier": "http://d-nb.info/gnd/4388032-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4388032-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)945675267", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4388032-0", "source": "GND"}], "authorized_access_point": "Twist"} 1 +2024-09-10 15:46:21.312736 2024-09-10 15:46:21.312739 a8478536-4b6e-4efa-a755-9f156b647e28 {"md5": "75bb0e1b9a50d9c4d1b1f95abf708bd9", "pid": "945372604", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mitose"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336587016", "source": "GND"}, {"type": "bf:Nbn", "value": "D011418", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D011418"}], "authorized_access_point": "Prophase"}], "identifier": "http://d-nb.info/gnd/4384678-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4384678-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)945372604", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4384678-6", "source": "GND"}], "authorized_access_point": "Prophase"} 1 +2024-09-10 15:46:21.372752 2024-09-10 15:46:21.372754 7e4832e6-0eb3-46e3-a45c-4d253d0d5ecc {"md5": "58f1bd5da92cd61dc18291295f067332", "pid": "945325150", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Völkerrechtlicher Vertrag"}], "identifier": "http://d-nb.info/gnd/4384293-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4384293-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)945325150", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4384293-8", "source": "GND"}], "variant_access_point": ["Zollvertrag"], "authorized_access_point": "Zollabkommen"} 1 +2024-09-10 15:46:21.446371 2024-09-10 15:46:21.446378 36b4364e-57ae-4782-a852-88e6d0d83a10 {"md5": "fc44da1fddd0d06a41df9e8c8bc62be2", "pid": "944352820", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Hindernis"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134390033", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13179032", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb131790320"}], "authorized_access_point": "Barricades"}], "identifier": "http://d-nb.info/gnd/4375362-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4375362-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)944352820", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4375362-0", "source": "GND"}], "authorized_access_point": "Barrikade"} 1 +2024-09-10 15:46:21.531383 2024-09-10 15:46:21.531392 8dad9b43-e5f0-431b-8e8f-f5028a8b763f {"md5": "0fdc1afc98380ad0236807fc4844661d", "pid": "94392961X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "identifier": "http://d-nb.info/gnd/4370880-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4370880-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)94392961X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4370880-8", "source": "GND"}], "variant_access_point": ["Bolaan-Mongondou", "Mongondow"], "authorized_access_point": "Mongondou"} 1 +2024-09-10 15:46:21.600093 2024-09-10 15:46:21.6001 3332a878-409a-49e6-928e-7347e021e624 {"md5": "dbc1712b97db0f483e5df9e622a540e9", "pid": "94392684X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133725848", "source": "GND"}, {"type": "bf:Nbn", "value": "sh90002897", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh90002897"}], "authorized_access_point": "Sangir language (Indonesia and Philippines)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133725848", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12134169", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12134169f"}], "authorized_access_point": "Sangir (langue)"}], "identifier": "http://d-nb.info/gnd/4370851-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4370851-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)94392684X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4370851-1", "source": "GND"}], "variant_access_point": ["Sanggil", "Sanggir", "Sangihe (Sprache)", "Sangil (Sprache)", "Sangir (Sprache)"], "authorized_access_point": "Sangiresisch"} 1 +2024-09-10 15:46:22.383148 2024-09-10 15:46:22.383153 dbed60ea-cc25-4f0a-a07b-78cde641b1ff {"md5": "3f201670e974f8cb72c2aa5a4e282fda", "pid": "940910004", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134673965", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85035778", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85035778"}], "authorized_access_point": "Daphnia pulex"}], "identifier": "http://d-nb.info/gnd/4337469-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4337469-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)940910004", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4337469-4", "source": "GND"}], "variant_access_point": ["Daphnia pulex", "Gemeiner Wasserfloh"], "authorized_access_point": "Wasserfloh"} 1 +2024-09-10 15:46:21.667935 2024-09-10 15:46:21.667939 8b782cbc-125d-45e8-95a2-de623a32643a {"md5": "83ee86bf59269aee2a105529962f0de1", "pid": "943618118", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sängerin"}], "related": [{"authorized_access_point": "Sopran"}, {"authorized_access_point": "Sopranist"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133730353", "source": "GND"}, {"type": "bf:Nbn", "value": "sh89005961", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh89005961"}], "authorized_access_point": "Sopranos (Singers)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133730353", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12166784", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb121667843"}], "authorized_access_point": "Sopranos"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254394877", "source": "GND"}, {"type": "bf:Nbn", "value": "66221", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/66221"}], "authorized_access_point": "Soprani"}], "identifier": "http://d-nb.info/gnd/4367362-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4367362-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)943618118", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4367362-4", "source": "GND"}], "variant_access_point": ["Sopran (Sängerin)"], "authorized_access_point": "Sopranistin"} 1 +2024-09-10 15:46:21.761265 2024-09-10 15:46:21.76127 c7d821c6-e38d-4e76-b2cc-2880fbe945bf {"md5": "81ff1c16e9d34fc6cac5303e0753848f", "pid": "943592267", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Nachtw%C3%A4chter&oldid=206468413"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Wächter"}], "identifier": "http://d-nb.info/gnd/4366957-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4366957-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)943592267", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4366957-8", "source": "GND"}], "authorized_access_point": "Nachtwächter"} 1 +2024-09-10 15:46:21.835248 2024-09-10 15:46:21.835252 9b4426e2-8dfe-405a-af33-148ec45e7974 {"md5": "5d87ddeeb2fd81d5f5981fb341595ae1", "pid": "943496799", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gesellschaftstanz"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133773540", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85116847", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85116847"}], "authorized_access_point": "Salsa (Music)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134552629", "source": "GND"}, {"type": "bf:Nbn", "value": "sh99014258", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh99014258"}], "authorized_access_point": "Salsa (Dance)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133773540", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12331117", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12331117t"}], "authorized_access_point": "Salsas"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134552629", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13542512", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb135425124"}], "authorized_access_point": "Salsa (danse)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254379495", "source": "GND"}, {"type": "bf:Nbn", "value": "46674", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/46674"}], "authorized_access_point": "Salsa"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254481648", "source": "GND"}, {"type": "bf:Nbn", "value": "XX527887", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX527887"}], "authorized_access_point": "Salsa (Música)"}], "identifier": "http://d-nb.info/gnd/4365525-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4365525-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)943496799", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4365525-7", "source": "GND"}], "authorized_access_point": "Salsa (Tanz)"} 1 +2024-09-10 15:46:21.94177 2024-09-10 15:46:21.941773 ceb3918d-f118-4895-9a84-4e052d365245 {"md5": "9d7baa7f7b2686df485d7b0bfbf6199f", "pid": "943138604", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zellaufschluss"}], "identifier": "http://d-nb.info/gnd/4360354-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4360354-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)943138604", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4360354-3", "source": "GND"}], "authorized_access_point": "Lysat"} 1 +2024-09-10 15:46:22.027483 2024-09-10 15:46:22.027488 33febd9e-e314-4aa8-9130-b3be6f9ac7c6 {"md5": "fa2d384aff0a23c5bfb5a37cd02074e0", "pid": "942370295", "note": [{"label": ["Tafelgeschirr mit einheitlichem Dekor"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Essgeschirr"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134514441", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF15505355", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb155053551"}], "authorized_access_point": "Services de table"}], "identifier": "http://d-nb.info/gnd/4352883-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4352883-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)942370295", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4352883-1", "source": "GND"}], "variant_access_point": ["Tafelservice"], "authorized_access_point": "Service (Hausrat)"} 1 +2024-09-10 15:46:22.108798 2024-09-10 15:46:22.108807 8e55fbd6-b929-4f85-91c4-bdf1b0a18695 {"md5": "853616ea6033f053a01042539c46a675", "pid": "942203283", "note": [{"label": ["Nach dem Zusammenschluss von Novell und WordPerfect wurde Office 4.0 umbenannt in GroupWise 4.1"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Office 4.0"}], "identifier": "http://d-nb.info/gnd/4351435-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4351435-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)942203283", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4351435-2", "source": "GND"}], "variant_access_point": ["Novell GroupWise 4.1"], "authorized_access_point": "GroupWise 4.1"} 1 +2024-09-10 15:46:22.203113 2024-09-10 15:46:22.203116 379d3b67-3801-4ad9-9236-79cf181bf717 {"md5": "02d41bc9ced22c3a8462fb67a35243e1", "pid": "94206285X", "note": [{"label": ["Makroökonomisches Modell der OECD; dynamisches, allgemeines Multiländer-, Multisektoren-Gleichgewichtsmodell, das der Kostenermittlung für Maßnahmen der Kohlendioxidemissionssenkung dient"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Makroökonomisches Modell"}], "identifier": "http://d-nb.info/gnd/4349431-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4349431-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)94206285X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4349431-6", "source": "GND"}], "variant_access_point": ["GEEM"], "authorized_access_point": "General Equilibrium Environmental Model"} 1 +2024-09-10 15:46:22.275864 2024-09-10 15:46:22.275868 e19e36cd-2516-4346-8413-08edd6f46707 {"md5": "8c669a5be38b0a3659c29149564509bc", "pid": "941781437", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifier": "http://d-nb.info/gnd/4346819-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4346819-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)941781437", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4346819-6", "source": "GND"}], "authorized_access_point": "Kalkutta (Motiv)"} 1 +2024-09-10 15:46:22.459823 2024-09-10 15:46:22.459828 f0fae02a-2615-4def-81d6-43c9338b8f82 {"md5": "412b259c50a4d5768f11de2267b39ce9", "pid": "940842440", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336027118", "source": "GND"}, {"type": "bf:Nbn", "value": "D000095322", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D000095322"}], "authorized_access_point": "Anthrones"}], "identifier": "http://d-nb.info/gnd/4336558-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4336558-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)940842440", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4336558-9", "source": "GND"}], "authorized_access_point": "Anthronderivate"} 1 +2024-09-10 15:46:22.539861 2024-09-10 15:46:22.539865 66b28479-1a71-484c-9a91-0f3f121a024f {"md5": "763a8996cf98fdb6a4cd3d5baec9d8bd", "pid": "94063855X", "note": [{"label": ["Verknüpfe mit Hörfunk bzw. Fernsehen oder engerem Schlagwort (z.B. Lokaler Hörfunk), Verknüpfung mit Rundfunk gilt als pleonastisch."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Rundfunksendung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134144377", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2001000815", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2001000815"}], "authorized_access_point": "Educational television programs"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134212968", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2007025636", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2007025636"}], "authorized_access_point": "Educational radio programs"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134212968", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12214963", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12214963b"}], "authorized_access_point": "Radio - Émissions culturelles"}], "identifier": "http://d-nb.info/gnd/4333982-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4333982-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)94063855X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4333982-7", "source": "GND"}], "variant_access_point": ["Bildungsprogramm", "Bildungssendung", "Bildungsfunk"], "authorized_access_point": "Bildungssendung"} 1 +2024-09-10 15:46:22.620419 2024-09-10 15:46:22.620424 90a6ff77-4210-4a71-ae23-e7c342f98117 {"md5": "7401eaffca8786dc12e6803bf642bd69", "pid": "940594919", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4333440-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4333440-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)940594919", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4333440-4", "source": "GND"}], "variant_access_point": ["Leinen"], "authorized_access_point": "Leinenproduktion"} 1 +2024-09-10 15:46:22.690515 2024-09-10 15:46:22.690522 e25d69ed-e38c-4bc9-8089-281abdf8f786 {"md5": "68e27157863b45d6796b16666f9ea669", "pid": "199289190", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifier": "http://d-nb.info/gnd/7794288-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7794288-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199289190", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7794288-7", "source": "GND"}], "authorized_access_point": "Wunderheilung (Motiv)"} 1 +2024-09-10 15:46:22.764374 2024-09-10 15:46:22.764379 c89a71c2-2020-475c-9f52-0ac665dc8a50 {"md5": "56ff5466077ba20371b5c411df20a314", "pid": "199281823", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifier": "http://d-nb.info/gnd/7793453-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7793453-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199281823", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7793453-2", "source": "GND"}], "authorized_access_point": "Rosenkranzgebet (Motiv)"} 1 +2024-09-10 15:46:22.843104 2024-09-10 15:46:22.843112 4985c3f8-b940-47b1-9bdd-2c0b3e52ceee {"md5": "7d1deb6459765d42db035960cabc21cd", "pid": "199193835", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Aak&oldid=186723436#Flussfrachtschiffe_im_Gebiet_des_Niederrheins", "Dorsten Lexikon - http://www.dorsten-lexikon.de/dorstener-aak/"], "noteType": "dataSource"}, {"label": ["In Dorsten gebauter, flacher Flussfrachtschiffstyp; wurde vorwiegend auf Lippe, Ruhr und Niederrhein sowie auf den seeländischen Wasserstraßen (wie Maas, Schelde und Waal) eingesetzt"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Aak"}], "identifier": "http://d-nb.info/gnd/7783302-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7783302-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199193835", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7783302-8", "source": "GND"}], "variant_access_point": ["Dorsten'sche Aak"], "authorized_access_point": "Dorstener Aak"} 1 +2024-09-10 15:46:22.915517 2024-09-10 15:46:22.915521 d48bfd15-3cdc-4808-a143-77bf7c369027 {"md5": "8cf333f928a306492721b178c13cbd0d", "pid": "19917606X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Handel"}, {"authorized_access_point": "Seilerware"}], "identifier": "http://d-nb.info/gnd/7781349-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7781349-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)19917606X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7781349-2", "source": "GND"}], "variant_access_point": ["Seilerware", "Seilhandel", "Seil"], "authorized_access_point": "Seilerwarenhandel"} 1 +2024-09-10 15:46:23.000759 2024-09-10 15:46:23.000763 7d32e238-52db-47ed-96d4-25bf9cfe888e {"md5": "bdfd15277e65894352c09400ad2d6bec", "pid": "199170711", "note": [{"label": ["Bundesverband der Deutschen Spirituosen-Industrie - https://www.spirituosen-verband.de/genuss/geschichte/", "Wikipedia - https://de.wikipedia.org/w/index.php?title=Brennen_(Spirituosen)&oldid=198247823"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Getränkeherstellung"}], "identifier": "http://d-nb.info/gnd/7780760-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7780760-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199170711", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7780760-1", "source": "GND"}], "variant_access_point": ["Spirituosenproduktion", "Brennen (Spirituosen)", "Spirituosen"], "authorized_access_point": "Spirituosenherstellung"} 1 +2024-09-10 15:46:23.430483 2024-09-10 15:46:23.430487 984c2e9f-f29d-4c16-8e0a-96ef5d74085f {"md5": "4a7d659bc79399bb6fd1497d6ba5f5d1", "pid": "130724572", "note": [{"label": ["Für rein motivische Behandlung der Antike in den Künsten verwende SW Antike "], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/7505393-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7505393-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)130724572", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7505393-7", "source": "GND"}], "variant_access_point": ["Antikenstudium", "Antikenkopie", "Antikerezeption"], "authorized_access_point": "Antikenrezeption"} 1 +2024-09-10 15:46:23.502512 2024-09-10 15:46:23.502515 c65f2b0f-6bef-469d-9765-b7ba86f2394c {"md5": "ff077243969aa7ea0060ed7aef767b9d", "pid": "130715387", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/7504382-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7504382-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)130715387", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7504382-8", "source": "GND"}], "authorized_access_point": "Evidenztheorie (Recht)"} 1 +2024-09-10 15:46:23.590452 2024-09-10 15:46:23.590457 8c26fcc4-5099-4e84-8dd0-709cb678a23c {"md5": "427a9c7a919a67c91ef9ae36dbd38409", "pid": "130714941", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/7504334-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7504334-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)130714941", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7504334-8", "source": "GND"}], "variant_access_point": ["Betrieb", "Betriebsorganisation", "Unternehmensstruktur (Organisation)", "Unternehmen"], "authorized_access_point": "Unternehmensorganisation"} 1 +2024-09-10 15:46:23.666035 2024-09-10 15:46:23.666038 1c4f280a-0d22-4a93-9cfe-d15bf114ed58 {"md5": "ad868e16e6043d398dcc63635bbad239", "pid": "130708291", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/7503603-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7503603-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)130708291", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7503603-4", "source": "GND"}], "variant_access_point": ["Ehe", "Eherecht der katholischen Kirche"], "authorized_access_point": "Kanonisches Eherecht"} 1 +2024-09-10 15:46:23.747308 2024-09-10 15:46:23.747316 1041c6cd-8f55-4079-8d60-b3436e893782 {"md5": "8c82ab3e2865aef93ce358d3de795c81", "pid": "130703907", "note": [{"label": ["Verwendet für das Recht der Datenverarbeitung", "Aktualisierung des Hinweissatzes nach Mx-Entscheidung; bis Juli/2024 wurden die Schlagwörter \\"Datenverarbeitung\\" und \\"Recht\\" für den Nicht-Deskriptor verwendet."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/7503120-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7503120-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)130703907", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7503120-6", "source": "GND"}], "variant_access_point": ["Datenverarbeitungsrecht", "Datenverarbeitung", "Computer"], "authorized_access_point": "Computerrecht"} 1 +2024-09-10 15:46:23.828588 2024-09-10 15:46:23.828594 833b8383-c2f8-49f8-b867-d549a8fabcc4 {"md5": "67a76e56ef5201664ccd0f09cf7956ef", "pid": "130702722", "note": [{"label": ["Nur benutzt für die Autorität des Erziehenden"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/7502991-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7502991-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)130702722", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7502991-1", "source": "GND"}], "variant_access_point": ["Erzieherische Autorität"], "authorized_access_point": "Pädagogische Autorität"} 1 +2024-09-10 15:46:23.926162 2024-09-10 15:46:23.926171 c6253644-058e-4711-8abe-cc9dde5fce0c {"md5": "b2b6b6382f726111d1beb8b9fc3a0167", "pid": "13069374X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/7502002-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7502002-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)13069374X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7502002-6", "source": "GND"}], "variant_access_point": ["Verfassungsmäßiges Gesetz", "Verfassungswidrigkeit von Gesetzen", "Verfassungswidriges Gesetz", "Nichtiges Gesetz", "Gesetz", "Gesetz"], "authorized_access_point": "Verfassungsmäßigkeit von Gesetzen"} 1 +2024-09-10 15:46:24.021205 2024-09-10 15:46:24.021214 e6fab6e0-eb7b-4e9c-ad65-9363594c8445 {"md5": "f98088785535c102cdb5df095006e49f", "pid": "130692476", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/7501863-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7501863-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)130692476", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7501863-9", "source": "GND"}], "variant_access_point": ["Literarische Interpretation"], "authorized_access_point": "Literaturinterpretation"} 1 +2024-09-10 15:46:24.109798 2024-09-10 15:46:24.109803 ad2e28bf-8185-47fb-8171-2487f1f0c9d7 {"md5": "ac96c5426454310b9df92303058e5f9b", "pid": "04328762X", "note": [{"label": ["Lehrprogrammsystem für Finanzbuchhaltung"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Programm"}], "related": [{"authorized_access_point": "Finanzbuchhaltung"}, {"authorized_access_point": "Einführung"}], "identifier": "http://d-nb.info/gnd/4328762-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4328762-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04328762X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4328762-1", "source": "GND"}], "variant_access_point": ["Computerorientierte Buchführung für kaufmännische Schulen (Programm)"], "authorized_access_point": "COBUKAS"} 1 +2024-09-10 15:46:24.651111 2024-09-10 15:46:24.651116 be68339e-886f-46c3-bb86-b74664e9304a {"md5": "e334cd32d10d7c3f76b28c8eed0eaa3e", "pid": "043195733", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kernteilung"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336587482", "source": "GND"}, {"type": "bf:Nbn", "value": "D020090", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D020090"}], "authorized_access_point": "Chromosome Segregation"}], "identifier": "http://d-nb.info/gnd/4319573-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4319573-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043195733", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4319573-8", "source": "GND"}], "variant_access_point": ["Chromosom", "Chromosomensegregation"], "authorized_access_point": "Segregation (Genetik)"} 1 +2024-09-10 15:46:24.204024 2024-09-10 15:46:24.204028 e557c914-5090-48cf-a890-5e959b3456bd {"md5": "2600e198379d801aba6705b04ed6af76", "pid": "043282695", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Haar"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334795894", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85058320", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85058320"}], "authorized_access_point": "Hair follicles"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334795894", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF15062168", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb15062168g"}], "authorized_access_point": "Follicule du poil"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)125439432X", "source": "GND"}, {"type": "bf:Nbn", "value": "65584", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/65584"}], "authorized_access_point": "Follicoli piliferi"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1282203460", "source": "GND"}, {"type": "bf:Nbn", "value": "D018859", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D018859"}], "authorized_access_point": "Hair Follicle"}], "identifier": "http://d-nb.info/gnd/4328269-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4328269-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043282695", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4328269-6", "source": "GND"}], "variant_access_point": ["Haartasche", "Haarbalg", "Folliculus pili"], "authorized_access_point": "Haarfollikel"} 1 +2024-09-10 15:46:24.291804 2024-09-10 15:46:24.291808 22b601ca-dff8-40ca-9347-6b7ac32c9825 {"md5": "ff9703612714c73871933666e51b537a", "pid": "04328213X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Geschwindigkeit"}], "identifier": "http://d-nb.info/gnd/4328213-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4328213-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04328213X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4328213-1", "source": "GND"}], "variant_access_point": ["Deposition (Meteorologie)"], "authorized_access_point": "Ablagerungsgeschwindigkeit"} 1 +2024-09-10 15:46:24.361725 2024-09-10 15:46:24.361729 aff0a4de-0549-4837-849e-8665b8005aa9 {"md5": "1d94de6718a0bbd8b416be7e509569df", "pid": "043274994", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bewegliche Sache"}], "related": [{"authorized_access_point": "Wiederherbeigeschaffte Sache"}], "identifier": "http://d-nb.info/gnd/4327499-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4327499-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043274994", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4327499-7", "source": "GND"}], "variant_access_point": ["Bewegliche Sache"], "authorized_access_point": "Abhanden gekommene Sache"} 1 +2024-09-10 15:46:24.422845 2024-09-10 15:46:24.422848 911d2e56-39a3-499b-9f0b-8b3f6fd6dbea {"md5": "d1afd3814b3c27d8f3ff6c3da36539b7", "pid": "043252044", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Russischer_B%C3%BCrgerkrieg&oldid=214352964#Intervention_der_Entente-Mächte"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Intervention (Völkerrecht)"}], "related": [{"authorized_access_point": "Russischer Bürgerkrieg"}, {"authorized_access_point": "Entente"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1231385979", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85125813", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85125813"}], "authorized_access_point": "Soviet Union - History - Allied intervention, 1918-1920"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1231385979", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11980886", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119808868"}], "authorized_access_point": "URSS - 1918-1920 (Intervention alliée)"}], "identifier": "http://d-nb.info/gnd/4325204-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4325204-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043252044", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4325204-7", "source": "GND"}], "variant_access_point": ["Alliierte Intervention in der Sowjetunion (1918-1920)", "Militärische Intervention in der Sowjetunion (1918-1920)"], "authorized_access_point": "Intervention der Entente-Mächte in der Sowjetunion (1918-1920)"} 1 +2024-09-10 15:46:24.495113 2024-09-10 15:46:24.495117 736b4289-9be4-4dd5-8313-d1e1898bc362 {"md5": "2ca6ba6acb5b280412ea4310f937dea2", "pid": "043203469", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Hanfwirtschaft"}, {"authorized_access_point": "Pflanzenbau"}], "identifier": "http://d-nb.info/gnd/4320346-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4320346-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043203469", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4320346-2", "source": "GND"}], "variant_access_point": ["Hanf", "Cannabisanbau", "Cannabis-Anbau"], "authorized_access_point": "Hanfanbau"} 1 +2024-09-10 15:46:24.562005 2024-09-10 15:46:24.562009 9a7e0f67-5d40-4e46-9037-cfe36b21368b {"md5": "212944575c92a028bcd5505702605580", "pid": "043197574", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Lewis-Addukt"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134402171", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF14407869", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb144078698"}], "authorized_access_point": "Lewis, Bases de"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336148071", "source": "GND"}, {"type": "bf:Nbn", "value": "D058115", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D058115"}], "authorized_access_point": "Lewis Bases"}], "identifier": "http://d-nb.info/gnd/4319757-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4319757-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043197574", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4319757-7", "source": "GND"}], "variant_access_point": ["Lewis-Basen"], "authorized_access_point": "Lewis-Base"} 1 +2024-09-10 15:46:24.723553 2024-09-10 15:46:24.723557 1a5439ce-3a33-4bf1-a5f2-0d80642c1c78 {"md5": "d723caa671f9024954112f49103f713a", "pid": "04313291X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Proteinogene Aminosäuren"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134402074", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85003136", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85003136"}], "authorized_access_point": "Alanine"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134402074", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF14407404", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb14407404k"}], "authorized_access_point": "Alanine"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256189383", "source": "GND"}, {"type": "bf:Nbn", "value": "239", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_239"}], "authorized_access_point": "alanine"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133614730X", "source": "GND"}, {"type": "bf:Nbn", "value": "D000409", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D000409"}], "authorized_access_point": "Alanine"}], "identifier": "http://d-nb.info/gnd/4313291-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4313291-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04313291X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4313291-1", "source": "GND"}], "variant_access_point": ["Aminopropionsäure", "Aminopropansäure", "Alanin (alpha-)", "CAS 338-69-2", "CAS 56-41-7", "CAS 302-72-7", "Alanin (beta-)", "CAS 107-95-9"], "authorized_access_point": "Alanin"} 1 +2024-09-10 15:46:24.78883 2024-09-10 15:46:24.788833 2cea80ae-3ff8-4efc-8ecb-f0830bbce0cc {"md5": "bc4e28702021316aac49be0e57e05dac", "pid": "043128629", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Programm"}], "related": [{"authorized_access_point": "Anlagenbuchhaltung"}], "identifier": "http://d-nb.info/gnd/4312862-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4312862-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043128629", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4312862-2", "source": "GND"}], "authorized_access_point": "JOKO-AVW"} 1 +2024-09-10 15:46:24.85382 2024-09-10 15:46:24.853824 2ead0208-64e9-4ec2-9d44-f7ce4767324f {"md5": "4e88a64299b06ebe5160a4e51cafe8c4", "pid": "043062008", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "identifier": "http://d-nb.info/gnd/4306200-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4306200-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043062008", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4306200-3", "source": "GND"}], "authorized_access_point": "Mundart Xin Xiangyu (Changsha)"} 1 +2024-09-10 15:46:24.919316 2024-09-10 15:46:24.91932 d7a2e397-a0f1-47f2-820a-0041cb829479 {"md5": "3070237335823a2eefa997e059735e42", "pid": "04304929X", "note": [{"label": ["Süd-Sulawesi"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "identifier": "http://d-nb.info/gnd/4304929-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4304929-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04304929X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4304929-1", "source": "GND"}], "variant_access_point": ["Luwu-Sprache"], "authorized_access_point": "Toala-Sprache"} 1 +2024-09-10 15:46:24.983262 2024-09-10 15:46:24.983266 76ffc818-e52d-4b8e-a809-381b72c15070 {"md5": "71138c86767b6d35dc0251fd97aed929", "pid": "043035167", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133809227", "source": "GND"}, {"type": "bf:Nbn", "value": "sh86005267", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh86005267"}], "authorized_access_point": "Rejang language (Sumatra, Indonesia)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133809227", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13516519", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13516519w"}], "authorized_access_point": "Rejang (langue)"}], "identifier": "http://d-nb.info/gnd/4303516-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4303516-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043035167", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4303516-4", "source": "GND"}], "variant_access_point": ["Rejang-Sprache"], "authorized_access_point": "Redjang-Sprache"} 1 +2024-09-10 15:46:25.050532 2024-09-10 15:46:25.050535 f3e76ec3-da0b-487c-81f4-8c60218aa4e5 {"md5": "c8d13458c23511a9d58dbe22aacc9997", "pid": "043022790", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "identifier": "http://d-nb.info/gnd/4302279-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4302279-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043022790", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4302279-0", "source": "GND"}], "variant_access_point": ["Pitu Uluna Binanga"], "authorized_access_point": "Pitu-ulunna-salu"} 1 +2024-09-10 15:46:25.126741 2024-09-10 15:46:25.126746 a17f7f5d-d643-44f5-8628-8c40dc99e096 {"md5": "d5965d0b109426d5f24fe521f046bddc", "pid": "043004164", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Äolisch"}], "identifier": "http://d-nb.info/gnd/4300416-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4300416-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043004164", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4300416-7", "source": "GND"}], "variant_access_point": ["Boiotisch"], "authorized_access_point": "Böotisch"} 1 +2024-09-10 15:46:25.187881 2024-09-10 15:46:25.187884 2e832c60-c3f6-426d-b3b8-f7d6024f782c {"md5": "11a537267d60dde7aea15d365badd1ef", "pid": "043003583", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Lewis-S%C3%A4ure-Base-Konzept"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Säure"}, {"authorized_access_point": "Lewis-Addukt"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113425038X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh89004433", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh89004433"}], "authorized_access_point": "Lewis acids"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113425038X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12269978", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12269978m"}], "authorized_access_point": "Lewis, Acides de"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336148020", "source": "GND"}, {"type": "bf:Nbn", "value": "D058116", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D058116"}], "authorized_access_point": "Lewis Acids"}], "identifier": "http://d-nb.info/gnd/4300358-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4300358-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043003583", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4300358-8", "source": "GND"}], "variant_access_point": ["Lewis-Säuren"], "authorized_access_point": "Lewis-Säure"} 1 +2024-09-10 15:46:25.331328 2024-09-10 15:46:25.331332 43c920d2-58a1-452d-b369-9dfb16393927 {"md5": "7ea1750bc6f6b4da992d7a58dd945e1d", "pid": "04300024X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Tischdecken"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133998410", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85131801", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85131801"}], "authorized_access_point": "Table setting and decoration"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133998410", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11960524", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11960524g"}], "authorized_access_point": "Arts de la table"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254495401", "source": "GND"}, {"type": "bf:Nbn", "value": "XX538094", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX538094"}], "authorized_access_point": "Arte de servir la mesa"}], "identifier": "http://d-nb.info/gnd/4300024-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4300024-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04300024X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4300024-1", "source": "GND"}], "variant_access_point": ["Tischschmuck"], "authorized_access_point": "Tischdekoration"} 1 +2024-09-10 15:46:25.391753 2024-09-10 15:46:25.391756 b13bebfe-4090-4a73-bd14-d0428bebfae6 {"md5": "6a87f37cba403213ed669d113969d3eb", "pid": "043000150", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Programm"}], "related": [{"authorized_access_point": "Fakturierung"}], "identifier": "http://d-nb.info/gnd/4300015-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4300015-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043000150", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4300015-0", "source": "GND"}], "authorized_access_point": "TOP-FAKTURA"} 1 +2024-09-10 15:46:25.464578 2024-09-10 15:46:25.464581 97a20c54-c273-4dbe-8d3d-021052eaf853 {"md5": "c8b010ad5eadb7ff4e5cd673030b3d7b", "pid": "042982553", "note": [{"label": ["Lehre von den Erkrankungen der weiblichen Brust"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Brustkrankheit"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133629563", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85016683", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85016683"}], "authorized_access_point": "Breast - Diseases"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133629563", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11938410", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11938410t"}], "authorized_access_point": "Sein - Maladies"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254356177", "source": "GND"}, {"type": "bf:Nbn", "value": "25596", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/25596"}], "authorized_access_point": "Mastopatie"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254486186", "source": "GND"}, {"type": "bf:Nbn", "value": "XX564846", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX564846"}], "authorized_access_point": "Mamas - Enfermedades"}], "identifier": "http://d-nb.info/gnd/4298255-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4298255-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042982553", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4298255-8", "source": "GND"}], "authorized_access_point": "Senologie"} 1 +2024-09-10 15:46:25.529485 2024-09-10 15:46:25.529491 3b520143-9b25-4a0a-a693-036c51835bf0 {"md5": "c34ba44b03944fbb55e1e033cc93591f", "pid": "042981794", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bromverbindungen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134593279", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85017042", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85017042"}], "authorized_access_point": "Bromate"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336226919", "source": "GND"}, {"type": "bf:Nbn", "value": "D001959", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D001959"}], "authorized_access_point": "Bromates"}], "identifier": "http://d-nb.info/gnd/4298179-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4298179-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042981794", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4298179-7", "source": "GND"}], "authorized_access_point": "Bromate"} 1 +2024-09-10 15:46:25.601371 2024-09-10 15:46:25.601375 b46e4952-9e89-460b-9219-57ad15e052d1 {"md5": "c8583cf5c145488b66b1de13335488d5", "pid": "042940664", "note": [{"label": ["Benutzt, soweit im Ausland lebend"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ausländischer Student"}, {"authorized_access_point": "Griechen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134821360", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85057194", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85057194"}], "authorized_access_point": "Greek students"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134821360", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16605366", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb166053660"}], "authorized_access_point": "Étudiants grecs"}], "identifier": "http://d-nb.info/gnd/4294066-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4294066-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042940664", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4294066-7", "source": "GND"}], "authorized_access_point": "Griechischer Student"} 1 +2024-09-10 15:46:25.680834 2024-09-10 15:46:25.680839 ebe24647-2521-41f9-8204-6b1009ea06b5 {"md5": "f1229cf5b825e6f6d383cc5fe72c6c67", "pid": "042914582", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Produktivität"}], "related": [{"authorized_access_point": "Grenzertrag"}, {"authorized_access_point": "Grenzproduktivitätstheorie"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113450361X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85081054", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85081054"}], "authorized_access_point": "Marginal productivity"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113450361X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16600937v", "source": "BNF"}, {"type": "uri", "value": "https://catalogue.bnf.fr/ark:/12148/cb16600937v"}], "authorized_access_point": "Productivité marginale"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254365591", "source": "GND"}, {"type": "bf:Nbn", "value": "33441", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/33441"}], "authorized_access_point": "Produttività marginale"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966850807", "source": "GND"}, {"type": "bf:Nbn", "value": "29921-4", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/29921-4"}], "authorized_access_point": "Grenzproduktivität"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970555407", "source": "GND"}, {"type": "bf:Nbn", "value": "10045917", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10045917"}], "authorized_access_point": "Grenzproduktivität"}], "identifier": "http://d-nb.info/gnd/4291458-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4291458-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042914582", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4291458-9", "source": "GND"}], "authorized_access_point": "Grenzproduktivität"} 1 +2024-09-10 15:46:30.032978 2024-09-10 15:46:30.032989 678ce66a-a80d-4d81-90bb-5bb7790f4532 {"md5": "c9eac7c03abfa4cdef1b97e5025d80df", "pid": "041961080", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4196108-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4196108-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041961080", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4196108-0", "source": "GND"}], "variant_access_point": ["Philosophiegeschichtsschreibung"], "authorized_access_point": "Philosophiegeschichte (Fach)"} 1 +2024-09-10 15:46:25.745801 2024-09-10 15:46:25.745806 cc14e2c5-41d4-4791-bec7-450d9a4e2c62 {"md5": "08a6a20b856c5996ed0902b6dd6de528", "pid": "042913748", "note": [{"label": ["Multifunktionaler Naturkorridor, der Fuss-, Fahrrad-, Reitwege und/oder Wasserläufe umschliesst u. bestehende Freiflächen (z.B. Parks) beinhaltet; meist an naturräuml. Strukturen orientiert"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Grüngürtel"}], "identifier": "http://d-nb.info/gnd/4291374-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4291374-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042913748", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4291374-3", "source": "GND"}], "variant_access_point": ["Greenway"], "authorized_access_point": "Grünzug"} 1 +2024-09-10 15:46:25.807399 2024-09-10 15:46:25.807402 57674352-1f55-4aa2-9093-586193556e03 {"md5": "c3baf41d9d19bbb56faa8472352f9f7d", "pid": "04291096X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zelltod"}], "related": [{"authorized_access_point": "Regeneration"}, {"authorized_access_point": "Tumorlysesyndrom"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133803601", "source": "GND"}, {"type": "bf:Nbn", "value": "sh91000743", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh91000743"}], "authorized_access_point": "Apoptosis"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133803601", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12463578", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12463578d"}], "authorized_access_point": "Apoptose"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254319298", "source": "GND"}, {"type": "bf:Nbn", "value": "1245", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/1245"}], "authorized_access_point": "Apoptosi"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254405623", "source": "GND"}, {"type": "bf:Nbn", "value": "XX547652", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX547652"}], "authorized_access_point": "Apoptosis"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1241591687", "source": "GND"}, {"type": "bf:Nbn", "value": "D017209", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D017209"}], "authorized_access_point": "Apoptosis"}], "identifier": "http://d-nb.info/gnd/4291096-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4291096-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04291096X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4291096-1", "source": "GND"}], "variant_access_point": ["Apoptose", "Programmierter Zelltod"], "authorized_access_point": "Apoptosis"} 1 +2024-09-10 15:46:25.869292 2024-09-10 15:46:25.869295 b5106b5c-b01e-459e-bb32-916fba921530 {"md5": "099bd73c00ba4ad1f8a37d5a2c3cdc83", "pid": "042910870", "note": [{"label": ["INN"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Cephalosporine"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134245483", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12266464", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12266464t"}], "authorized_access_point": "Cefpirome"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336145846", "source": "GND"}, {"type": "bf:Nbn", "value": "D000097572", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D000097572"}], "authorized_access_point": "Cefpirome"}], "identifier": "http://d-nb.info/gnd/4291087-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4291087-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042910870", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4291087-0", "source": "GND"}], "variant_access_point": ["CAS 84957-29-9", "CAS 98753-19-6"], "authorized_access_point": "Cefpirom"} 1 +2024-09-10 15:46:25.938345 2024-09-10 15:46:25.938351 15f2b31c-fe1d-4764-b9e1-9ba6d748a397 {"md5": "58c48251badd47b6a8a835fb14ded868", "pid": "042892562", "note": [{"label": ["Ökonometrisches Modell für die niederländ. Finanzwirtschaft"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Makroökonomisches Modell"}], "identifier": "http://d-nb.info/gnd/4289256-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4289256-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042892562", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4289256-9", "source": "GND"}], "variant_access_point": ["Dutch Financial System"], "authorized_access_point": "DUFIS"} 1 +2024-09-10 15:46:26.013682 2024-09-10 15:46:26.013686 09627c47-6f00-49d7-8947-d0baa261fec4 {"md5": "72c5a16ed175735aa0980c4f6fb89209", "pid": "042870526", "note": [{"label": ["Nicht auf Zoologische Gärten beschränkt, auch in Museen, Schulen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Pädagogik"}], "identifier": "http://d-nb.info/gnd/4287052-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4287052-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042870526", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4287052-5", "source": "GND"}], "authorized_access_point": "Zoopädagogik"} 1 +2024-09-10 15:46:26.086753 2024-09-10 15:46:26.086757 961c9983-5833-4f40-bd37-fcd9c909ec9f {"md5": "ba31d7b94a9ac82bd722faa68c613855", "pid": "042863627", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Schulübergang"}], "identifier": "http://d-nb.info/gnd/4286362-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4286362-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042863627", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4286362-4", "source": "GND"}], "authorized_access_point": "Durchlässigkeit (Schule)"} 1 +2024-09-10 15:46:26.146198 2024-09-10 15:46:26.146203 f1b09bdc-819c-4cb5-bbb2-1bef329146ad {"md5": "ffd3906e8895f7d5793e29626daf6d5e", "pid": "042848792", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Programm"}], "related": [{"authorized_access_point": "Finanzmathematik"}], "identifier": "http://d-nb.info/gnd/4284879-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4284879-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042848792", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4284879-9", "source": "GND"}], "authorized_access_point": "FIMA"} 1 +2024-09-10 15:46:26.213409 2024-09-10 15:46:26.213415 e7d29610-a678-4621-bfbe-5d67288f2111 {"md5": "6f3ce17e036e25bb60af9c91091d9d29", "pid": "042841259", "note": [{"label": ["Wikipedia - https://nl.wikipedia.org/w/index.php?title=Stellingwerfs&oldid=67416841"], "noteType": "dataSource"}, {"label": ["Nichtfriesische Mundart eines kleinen Gebietes im niederländischen Friesland"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Niederländisch"}, {"authorized_access_point": "Niedersächsisch"}], "identifier": "http://d-nb.info/gnd/4284125-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4284125-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042841259", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4284125-2", "source": "GND"}], "variant_access_point": ["Stellingwerfs", "Stellingwarfs"], "authorized_access_point": "Mundart Niedersächsisch (Stellingwerven)"} 1 +2024-09-10 15:46:26.296908 2024-09-10 15:46:26.296914 d7a66dde-a0fc-41e4-8a0a-8c77a88942b8 {"md5": "2eaf409495073cac4c6e56678ba48c14", "pid": "042819458", "note": [{"label": ["INN"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Cephalosporine"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134245491", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12266467", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12266467v"}], "authorized_access_point": "Céfpodoxime"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336146117", "source": "GND"}, {"type": "bf:Nbn", "value": "D000097623", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D000097623"}], "authorized_access_point": "Cefpodoxime"}], "identifier": "http://d-nb.info/gnd/4281945-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4281945-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042819458", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4281945-3", "source": "GND"}], "variant_access_point": ["Orelox", "CAS 80210-62-4", "CAS 87239-81-4"], "authorized_access_point": "Cefpodoxim"} 1 +2024-09-10 15:46:26.362134 2024-09-10 15:46:26.362138 80e44e40-885d-4363-8c91-aa2dce35fae1 {"md5": "d0e6fa7fea6f3f7a01a1b222c4f70ae4", "pid": "042815479", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134130015", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85085475", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85085475"}], "authorized_access_point": "Minangkabau language"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134130015", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12045391", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12045391f"}], "authorized_access_point": "Minangkabau (langue)"}], "identifier": "http://d-nb.info/gnd/4281547-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4281547-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042815479", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4281547-2", "source": "GND"}], "variant_access_point": ["Menangkabau-Sprache"], "authorized_access_point": "Minangkabau-Sprache"} 1 +2024-09-10 15:46:26.429733 2024-09-10 15:46:26.429737 ca9d259f-a276-407d-8331-87625cb29cfb {"md5": "4831019afc2097cb1d03c37cebe48537", "pid": "042777089", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Araliengewächse"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134235577", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85000324", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85000324"}], "authorized_access_point": "Acanthopanax senticosus"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134235577", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12258006", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12258006t"}], "authorized_access_point": "Eleutherococcus senticosus"}], "identifier": "http://d-nb.info/gnd/4277708-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4277708-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042777089", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4277708-2", "source": "GND"}], "variant_access_point": ["Eleutherococcus senticosus", "Acanthopanax senticosus", "Eleukokk", "Taigawurzel", "Teufelsbusch", "Sibirischer Ginseng"], "authorized_access_point": "Stachelpanax"} 1 +2024-09-10 15:46:26.497142 2024-09-10 15:46:26.497149 4b9935bf-2348-4264-a57b-6e24ee524896 {"md5": "57de6259e88b981cafe1634671165fe3", "pid": "042765315", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fertigung"}], "related": [{"authorized_access_point": "Fertigbauteil"}], "identifier": "http://d-nb.info/gnd/4276531-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4276531-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042765315", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4276531-6", "source": "GND"}], "variant_access_point": ["Vorfabrikation"], "authorized_access_point": "Vorfertigung"} 1 +2024-09-10 15:46:26.570239 2024-09-10 15:46:26.570242 84ff77de-cec9-40f5-8179-d83673746594 {"md5": "f112a417e503a3a2d883c93fce4e57df", "pid": "042731887", "note": [{"label": ["Benutzt, soweit im Ausland lebend"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ausländischer Student"}, {"authorized_access_point": "Lateinamerikaner"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134492170", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85074931", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85074931"}], "authorized_access_point": "Latin American students"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134492170", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17148865", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17148865v"}], "authorized_access_point": "Étudiants latino-américains"}], "identifier": "http://d-nb.info/gnd/4273188-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4273188-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042731887", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4273188-4", "source": "GND"}], "authorized_access_point": "Lateinamerikanischer Student"} 1 +2024-09-10 15:46:26.634097 2024-09-10 15:46:26.634101 45a93f0b-ead4-4c40-882c-f01e373f0e61 {"md5": "f6ba9d92aea38da42ea090024552c42f", "pid": "042731437", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schaltverhalten"}], "identifier": "http://d-nb.info/gnd/4273143-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4273143-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042731437", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4273143-4", "source": "GND"}], "authorized_access_point": "Einschaltverhalten"} 1 +2024-09-10 15:46:26.695124 2024-09-10 15:46:26.695128 3929f7a2-4a9d-4151-8438-17ca1e077ad1 {"md5": "c32f6471b4377fd5c8ea847acae852e6", "pid": "042720133", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4272013-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4272013-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042720133", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4272013-8", "source": "GND"}], "authorized_access_point": "Zellaufschluss"} 1 +2024-09-10 15:46:26.813888 2024-09-10 15:46:26.813891 37c63087-222d-47f2-89e7-1354bbcb8f41 {"md5": "320f5d5aee04b7512f1b7f2bc506e9d8", "pid": "042653304", "note": [{"label": ["Anlageform am Geldmarkt ohne Wertpapiercharakter"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4265330-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4265330-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042653304", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4265330-7", "source": "GND"}], "authorized_access_point": "Geldmarktbuchforderung"} 1 +2024-09-10 15:46:26.87909 2024-09-10 15:46:26.879094 280a7c1b-f698-4743-a3ce-9d5be61ef7c8 {"md5": "a685211b6e7846a2ecf0fc86155c6636", "pid": "042645212", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134760205", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85134851", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85134851"}], "authorized_access_point": "Thickness measurement"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134760205", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12493536", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb124935363"}], "authorized_access_point": "Épaisseur - Mesure"}], "identifier": "http://d-nb.info/gnd/4264521-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4264521-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042645212", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4264521-9", "source": "GND"}], "variant_access_point": ["Filmdicke"], "authorized_access_point": "Schichtdicke"} 1 +2024-09-10 15:46:26.960414 2024-09-10 15:46:26.960417 2438bba9-c4b6-49b1-be62-e734ed317b39 {"md5": "31d1ec6e482d228f9b99744bd2e31859", "pid": "042627222", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134188870", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85043175", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85043175"}], "authorized_access_point": "Enggano language"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134188870", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12146429", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12146429q"}], "authorized_access_point": "Enggano (langue)"}], "identifier": "http://d-nb.info/gnd/4262722-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4262722-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042627222", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4262722-9", "source": "GND"}], "variant_access_point": ["Enggano-Sprache", "Enggano (Sprache)"], "authorized_access_point": "Engganesisch"} 1 +2024-09-10 15:46:27.040732 2024-09-10 15:46:27.040737 0f9c8f1f-086e-434e-8c51-840ba7ef8702 {"md5": "f6f1a76c0bbfe753852c2a51fffb9b7e", "pid": "042586208", "note": [{"label": ["Westmalaiopolynes. Sprache auf (Zentral-)Sulawesi, Kaili-Pomona"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "identifier": "http://d-nb.info/gnd/4258620-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4258620-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042586208", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4258620-3", "source": "GND"}], "variant_access_point": ["Kaili", "Palu"], "authorized_access_point": "Ledo"} 1 +2024-09-10 15:46:27.125138 2024-09-10 15:46:27.125141 3be9ac70-265a-483e-9f69-36f0b6b8c53a {"md5": "703688dbe099d1f07b59436bddced83f", "pid": "042578205", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Widerstand"}, {"authorized_access_point": "Widerstandskämpferin"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134491964", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13537085", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13537085z"}], "authorized_access_point": "Résistants"}], "identifier": "http://d-nb.info/gnd/4257820-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4257820-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042578205", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4257820-6", "source": "GND"}], "authorized_access_point": "Widerstandskämpfer"} 1 +2024-09-10 15:46:27.202622 2024-09-10 15:46:27.202625 c0f65f74-4c30-4adc-bcb6-f2199d761680 {"md5": "67f005d9225ed6fd51429500b6abdb32", "pid": "042573254", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4257325-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4257325-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042573254", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4257325-7", "source": "GND"}], "variant_access_point": ["Teilchen"], "authorized_access_point": "Beweglichkeit (Physik)"} 1 +2024-09-10 15:46:27.261289 2024-09-10 15:46:27.261292 9e106cb8-2728-456c-ab20-ed2eeca8beca {"md5": "9afacb01d3e51285994c32b11b12c283", "pid": "042536367", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Naturheilverfahren"}], "identifier": "http://d-nb.info/gnd/4253636-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4253636-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042536367", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4253636-4", "source": "GND"}], "variant_access_point": ["Autoregulative Therapie"], "authorized_access_point": "Regulationstherapie"} 1 +2024-09-10 15:46:27.329645 2024-09-10 15:46:27.329649 10add6ec-77bb-49a0-aec7-e4784c767794 {"md5": "4204516f84a12331929067a7e89b971e", "pid": "042496675", "note": [{"label": ["Benutzt für finanzwirtschaftl. Statistik, nicht für Geld u. Kredit"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Wirtschaftsstatistik"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966744160", "source": "GND"}, {"type": "bf:Nbn", "value": "11534-1", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/11534-1"}], "authorized_access_point": "Finanzstatistik"}], "identifier": "http://d-nb.info/gnd/4249667-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4249667-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042496675", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4249667-6", "source": "GND"}], "authorized_access_point": "Finanzstatistik"} 1 +2024-09-10 15:46:27.389037 2024-09-10 15:46:27.389041 d4dc409e-d193-45ce-9be1-fd3220b50b8d {"md5": "1e9559d62083b9a6807535539102498c", "pid": "042486386", "note": [{"label": ["Computergestütztes Modellsystem zur Berechnung von Agrarfaktor- und -produktpreisen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Preisinformationssystem"}], "related": [{"authorized_access_point": "Agrarpreis"}], "identifier": "http://d-nb.info/gnd/4248638-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4248638-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042486386", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4248638-5", "source": "GND"}], "authorized_access_point": "PRESET"} 1 +2024-09-10 15:46:27.446819 2024-09-10 15:46:27.446823 377d1378-3906-4b63-a72f-4c14a2e35633 {"md5": "eeb66521f8319d88b9868cde3151d9cc", "pid": "042447690", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "identifier": "http://d-nb.info/gnd/4244769-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4244769-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042447690", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4244769-0", "source": "GND"}], "variant_access_point": ["Orak Lawoiʾ-Sprache"], "authorized_access_point": "Urak Lawoiʾ-Sprache"} 1 +2024-09-10 15:46:27.50239 2024-09-10 15:46:27.502393 071ef4dd-5b13-4d68-a06d-03f40a164358 {"md5": "7508e33b9f54cf69a57d9b3ebb141549", "pid": "042438799", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)971407800", "source": "GND"}, {"type": "bf:Nbn", "value": "10036866", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10036866"}], "authorized_access_point": "Notunterkunft"}], "identifier": "http://d-nb.info/gnd/4243879-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4243879-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042438799", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4243879-2", "source": "GND"}], "authorized_access_point": "Lager (Unterkunft)"} 1 +2024-09-10 15:46:27.563196 2024-09-10 15:46:27.5632 2aa4a8a3-5e95-41e4-9945-dddd086356c7 {"md5": "e82cc417e2af005522f17741774dbe3d", "pid": "042425875", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Trainingsplanung"}], "related": [{"authorized_access_point": "Jahrestrainingsplan"}], "identifier": "http://d-nb.info/gnd/4242587-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4242587-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042425875", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4242587-6", "source": "GND"}], "variant_access_point": ["Periodisierung (Training)"], "authorized_access_point": "Trainingsperiodisierung"} 1 +2024-09-10 15:46:27.63883 2024-09-10 15:46:27.638834 f5c29563-8c38-428d-b2d7-6a898b306a46 {"md5": "79b3a01fc873d8983800f39aa18fe98d", "pid": "042422825", "note": [{"label": ["Benutzt sowohl im engeren Sinne (Materialbestandsplanung) als auch im weiteren Sinne"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334875782", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85067678", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85067678"}], "authorized_access_point": "Inventory control"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334875782", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11933321", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119333210"}], "authorized_access_point": "Gestion des stocks"}], "identifier": "http://d-nb.info/gnd/4242282-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4242282-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042422825", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4242282-6", "source": "GND"}], "variant_access_point": ["Materialbestand", "Materialbestandsplanung"], "authorized_access_point": "Bestandsplanung"} 1 +2024-09-10 15:46:27.700395 2024-09-10 15:46:27.7004 d01ad928-4416-4771-9e39-c66f78b27998 {"md5": "dc05cada35b892b772aded2952108d96", "pid": "042380480", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "identifier": "http://d-nb.info/gnd/4238048-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4238048-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042380480", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4238048-0", "source": "GND"}], "variant_access_point": ["Mina-Sprache (Westindonesisch)", "Muna (Sprache)", "Mina (Sprache, Westindonesisch)"], "authorized_access_point": "Muna-Sprache"} 1 +2024-09-10 15:46:27.764382 2024-09-10 15:46:27.764387 aa95ce1d-e5c5-49ab-9843-60c4b848211c {"md5": "31cd6c6609d01e97d162d40145702832", "pid": "042374480", "note": [{"label": ["Krankheitssymptom ohne organisches Korrelat"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Funktionsstörung"}], "related": [{"authorized_access_point": "Organische Störung"}, {"authorized_access_point": "Psychosomatische Störung"}, {"authorized_access_point": "Neurasthenie"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133690696", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11980105", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11980105h"}], "authorized_access_point": "Troubles fonctionnels (médecine)"}], "identifier": "http://d-nb.info/gnd/4237448-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4237448-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042374480", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4237448-0", "source": "GND"}], "variant_access_point": ["Somatisierungsstörung", "Somatoforme Störung", "Somatoforme autonome Funktionsstörung", "Parafunktion", "Psychogene Dysfunktion"], "authorized_access_point": "Funktionelle Störung"} 1 +2024-09-10 15:46:27.837407 2024-09-10 15:46:27.837415 2b438fa5-f933-44bd-bc85-7e3723f14aa5 {"md5": "b3f79b53bad65524bcbf43ddebad6159", "pid": "042325900", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Epithelzelle"}], "identifier": "http://d-nb.info/gnd/4232590-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4232590-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042325900", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4232590-0", "source": "GND"}], "variant_access_point": ["Beta-Zelle (Hypophysenvorderlappen)", "Adenohypophyse"], "authorized_access_point": "Basophile Zelle"} 1 +2024-09-10 15:46:27.918416 2024-09-10 15:46:27.918421 27ca2fa2-68ed-4a33-93bb-ab75cc74fb3f {"md5": "da9429de85e96691e17463d05d152ac3", "pid": "042325897", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Granulozyt"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133811159", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85012133", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85012133"}], "authorized_access_point": "Basophils"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133811159", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12486075", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb124860754"}], "authorized_access_point": "Basophiles"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336596848", "source": "GND"}, {"type": "bf:Nbn", "value": "D001491", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D001491"}], "authorized_access_point": "Basophils"}], "identifier": "http://d-nb.info/gnd/4232589-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4232589-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042325897", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4232589-4", "source": "GND"}], "variant_access_point": ["Basophiler", "Granulocytus basophilicus"], "authorized_access_point": "Basophiler Granulozyt"} 1 +2024-09-10 15:46:27.997544 2024-09-10 15:46:27.997549 9cedad75-a457-463c-9442-31bcd4d690af {"md5": "94b533aa5c483579e66586ecc39213ad", "pid": "042313414", "note": [{"label": ["Führung durch Museen, zur Besichtigung von Sehenswürdigkeiten und sonstigen Einrichtungen aller Art"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Fremdenführer"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134267916", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85122383", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85122383"}], "authorized_access_point": "Sightseeing business"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134267916", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12308374", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb123083748"}], "authorized_access_point": "Visites touristiques"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254411127", "source": "GND"}, {"type": "bf:Nbn", "value": "XX534646", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX534646"}], "authorized_access_point": "Empresas turísticas"}], "identifier": "http://d-nb.info/gnd/4231341-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4231341-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042313414", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4231341-7", "source": "GND"}], "variant_access_point": ["Gästeführung", "Besucher", "Führung (Besucher)", "Fremdenführung", "Museumsführung"], "authorized_access_point": "Besucherführung"} 1 +2024-09-10 15:46:28.090066 2024-09-10 15:46:28.090073 7146c514-059f-485b-a1d9-05053b195300 {"md5": "2b9cddf253fa6f871a7e8426a8399523", "pid": "042277558", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "identifier": "http://d-nb.info/gnd/4227755-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4227755-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042277558", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4227755-3", "source": "GND"}], "variant_access_point": ["Badjau-Sprache", "Sama-Sprache (Austronesische Sprache)"], "authorized_access_point": "Badjaw-Sprache"} 1 +2024-09-10 15:46:28.157231 2024-09-10 15:46:28.157234 cdfb03c8-ad3d-4583-9658-307e8a9fcc3d {"md5": "8dd7518a42f39158c4efc6ace7ae3d51", "pid": "042266289", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Cytometrie"}, {"authorized_access_point": "Durchflussmessung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134175647", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85049287", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85049287"}], "authorized_access_point": "Flow cytometry"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134175647", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12121528", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb121215281"}], "authorized_access_point": "Cytométrie de flux"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254321098", "source": "GND"}, {"type": "bf:Nbn", "value": "1795", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/1795"}], "authorized_access_point": "Citometria a flusso"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254421912", "source": "GND"}, {"type": "bf:Nbn", "value": "XX547339", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX547339"}], "authorized_access_point": "Citometría de flujo"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1241598517", "source": "GND"}, {"type": "bf:Nbn", "value": "D005434", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D005434"}], "authorized_access_point": "Flow Cytometry"}], "identifier": "http://d-nb.info/gnd/4226628-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4226628-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042266289", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4226628-2", "source": "GND"}], "variant_access_point": ["Flow cytometry", "Durchflusszytometrie", "Flowzytometrie"], "authorized_access_point": "Durchflusscytometrie"} 1 +2024-09-10 15:46:28.227262 2024-09-10 15:46:28.227267 e13e70a1-30d3-472e-b12b-7e4391f36f46 {"md5": "3943709704c626870fbd9d3c781de53b", "pid": "042241839", "note": [{"label": ["Der deutsche Wortschatz - https://www.dwds.de/wb/Linguist"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Philologe"}], "related": [{"authorized_access_point": "Linguistin"}, {"authorized_access_point": "Linguistik"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133932878", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85077231", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85077231"}], "authorized_access_point": "Linguists"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133932878", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11933934", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119339340"}], "authorized_access_point": "Linguistes"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254371966", "source": "GND"}, {"type": "bf:Nbn", "value": "38524", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/38524"}], "authorized_access_point": "Linguisti"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254456627", "source": "GND"}, {"type": "bf:Nbn", "value": "XX527503", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX527503"}], "authorized_access_point": "Lingüistas"}], "identifier": "http://d-nb.info/gnd/4224183-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4224183-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042241839", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4224183-2", "source": "GND"}], "variant_access_point": ["Sprachwissenschaftler", "Sprachforscher"], "authorized_access_point": "Linguist"} 1 +2024-09-10 15:46:28.31617 2024-09-10 15:46:28.316174 4ee1d24a-3c80-4a59-b190-e1c0dc829bc8 {"md5": "5d6aa12bd37946262affbd2feee20a77", "pid": "042230284", "note": [{"label": ["Nicht-indoarisches Volk in Südindien"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134208367", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85039403", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85039403"}], "authorized_access_point": "Dravidians"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134208367", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12201689", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb122016898"}], "authorized_access_point": "Dravidiens"}], "identifier": "http://d-nb.info/gnd/4223028-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4223028-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042230284", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4223028-7", "source": "GND"}], "variant_access_point": ["Dravida", "Drawiden"], "authorized_access_point": "Drawida"} 1 +2024-09-10 15:46:28.407353 2024-09-10 15:46:28.407361 201425e7-9d4d-4c27-818c-9835d5207e03 {"md5": "b360d8dad93c7e1a794b06822d3b405e", "pid": "042213010", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Relief (Geografie)"}], "identifier": "http://d-nb.info/gnd/4221301-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4221301-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042213010", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4221301-0", "source": "GND"}], "variant_access_point": ["Erosionsform"], "authorized_access_point": "Abtragungsform"} 1 +2024-09-10 15:46:28.468158 2024-09-10 15:46:28.468161 aabdee19-7c93-4b7e-a9fe-8885edd418f8 {"md5": "cd584c85dd462439467445d94d3c7f63", "pid": "042183154", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Handwerk"}], "related": [{"authorized_access_point": "Klempnerhandwerk"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134558260", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85103551", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85103551"}], "authorized_access_point": "Plumbing"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134558260", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11933155", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11933155r"}], "authorized_access_point": "Plomberie"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966697308", "source": "GND"}, {"type": "bf:Nbn", "value": "13181-5", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/13181-5"}], "authorized_access_point": "Bauinstallation"}], "identifier": "http://d-nb.info/gnd/4218315-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4218315-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042183154", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4218315-7", "source": "GND"}], "variant_access_point": ["Installationshandwerk", "SHK-Handwerk", "Sanitär-, Heizungs-, Klimatechnikhandwerk", "Sanitärhandwerk"], "authorized_access_point": "Installateurhandwerk"} 1 +2024-09-10 15:46:28.540893 2024-09-10 15:46:28.540896 d5e557ec-fe85-46d5-b0cc-1c960ebc2880 {"md5": "e507f32803a935bf3a356c7209e370d8", "pid": "04216818X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Völkerkundliche Ausstellung"}], "related": [{"authorized_access_point": "Kolonialausstellung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134559305", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2006001275", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2006001275"}], "authorized_access_point": "Human zoos"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134559305", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF14406121", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb144061213"}], "authorized_access_point": "Exhibitions ethnographiques"}], "identifier": "http://d-nb.info/gnd/4216818-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4216818-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04216818X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4216818-1", "source": "GND"}], "variant_access_point": ["Völkerschau"], "authorized_access_point": "Völkerkundliche Schaustellung"} 1 +2024-09-10 15:46:28.605311 2024-09-10 15:46:28.605315 0b814708-1601-4989-8f64-788cbcd27db9 {"md5": "7eacba48eaec44727a088ec4f160a63d", "pid": "042161258", "note": [{"label": ["Internet - http://www.juedische-allgemeine.de/article/view/id/14708", "Wikipedia - https://de.wikipedia.org/wiki/Haftara"], "noteType": "dataSource"}, {"label": ["Im jüdischen Ritus der Synagoge der an Sabbaten, Feier- und Fasttagen an die Vorlesung aus dem Pentateuch sich anschließende Abschnitt aus den Propheten"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Judentum"}], "related": [{"authorized_access_point": "Liturgie"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134589379", "source": "GND"}, {"type": "bf:Nbn", "value": "n81026486", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/names/n81026486"}], "authorized_access_point": "Haftarot"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134589379", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13537030", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13537030p"}], "authorized_access_point": "Hapṭarah"}], "identifier": "http://d-nb.info/gnd/4216125-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4216125-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042161258", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4216125-3", "source": "GND"}], "variant_access_point": ["Haftarah", "Hafṭarah", "Haphtara", "Haftara banawi", "Hafṭarah ba-navi", "Hafṭarot"], "authorized_access_point": "Haftara"} 1 +2024-09-10 15:46:28.674172 2024-09-10 15:46:28.674175 4b6aebde-505b-408b-a297-5da39477e5b4 {"md5": "5c64bacc4c004144897efddafd4612b7", "pid": "042147670", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Programmiersystem"}], "identifier": "http://d-nb.info/gnd/4214767-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4214767-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042147670", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4214767-0", "source": "GND"}], "authorized_access_point": "BEPSYS"} 1 +2024-09-10 15:46:28.759901 2024-09-10 15:46:28.759909 e2d7f9a1-6662-40e3-a7f5-1f2951fb27de {"md5": "6e5a19b9acecb489d05fe527a37219ad", "pid": "042142237", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kartenauswertung"}], "identifier": "http://d-nb.info/gnd/4214223-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4214223-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042142237", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4214223-4", "source": "GND"}], "variant_access_point": ["Kartenmessung"], "authorized_access_point": "Kartometrie"} 1 +2024-09-10 15:46:28.85041 2024-09-10 15:46:28.850418 37d2f807-464b-43da-be0f-97aef0680ec9 {"md5": "b0530c6c818165cd5817147cda6c99ca", "pid": "042137519", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Insolationsverwitterung"}], "related": [{"authorized_access_point": "Grus"}, {"authorized_access_point": "Vergrusung"}], "identifier": "http://d-nb.info/gnd/4213751-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4213751-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042137519", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4213751-2", "source": "GND"}], "authorized_access_point": "Abgrusung"} 1 +2024-09-10 15:46:28.933936 2024-09-10 15:46:28.93394 7ce6ea75-c6d4-48ad-aa6d-584770d78ed8 {"md5": "0651405268b39e3924cdfe87a0d9748a", "pid": "042124093", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "identifier": "http://d-nb.info/gnd/4212409-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4212409-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042124093", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4212409-8", "source": "GND"}], "variant_access_point": ["Kadazan (Sprache)"], "authorized_access_point": "Kadajan"} 1 +2024-09-10 15:46:29.01933 2024-09-10 15:46:29.019336 3edc7eb1-60d7-4282-83dd-d8361681d583 {"md5": "f26b64a1750d7b51522bfba62320b782", "pid": "042123909", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kennlinie"}], "identifier": "http://d-nb.info/gnd/4212390-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4212390-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042123909", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4212390-2", "source": "GND"}], "variant_access_point": ["Isentrope"], "authorized_access_point": "Adiabate"} 1 +2024-09-10 15:46:29.103264 2024-09-10 15:46:29.103271 a1ee0dba-39ba-4448-b93d-ebf6ddf1c4c5 {"md5": "2091b20c4a1c1527e90fc7c2211fdf72", "pid": "04211277X", "note": [{"label": ["Sprache in Indonesien"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133936830", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85017675", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85017675"}], "authorized_access_point": "Bugis language"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133936830", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11935314", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119353146"}], "authorized_access_point": "Bugis (langue)"}], "identifier": "http://d-nb.info/gnd/4211277-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4211277-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04211277X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4211277-1", "source": "GND"}], "variant_access_point": ["Buginesisch"], "authorized_access_point": "Bugi-Sprache"} 1 +2024-09-10 15:46:29.173753 2024-09-10 15:46:29.173757 06acd601-6e6d-4cd0-81d6-bc2a3fe2638b {"md5": "665bece2d7582ebb6ae420636bc6a8d5", "pid": "042104378", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Programm"}], "related": [{"authorized_access_point": "Fertigungskontrolle"}, {"authorized_access_point": "Simulation"}], "identifier": "http://d-nb.info/gnd/4210437-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4210437-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042104378", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4210437-3", "source": "GND"}], "authorized_access_point": "FERSIM"} 1 +2024-09-10 15:46:29.247649 2024-09-10 15:46:29.247654 da684ab8-46eb-4fc7-8405-bd7a33313992 {"md5": "2297db1033410c1ff219d665d045cdd5", "pid": "042100917", "note": [{"label": ["Programm zur Analyse des Jahresabschlusses einer Kapitalgesellschaft"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Programm"}], "related": [{"authorized_access_point": "Bilanzanalyse"}], "identifier": "http://d-nb.info/gnd/4210091-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4210091-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042100917", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4210091-4", "source": "GND"}], "variant_access_point": ["Jahresabschlussanalyse als Planungs- und Entscheidungsrechnung (Programm)", "JASPER, Vollversion 2.12"], "authorized_access_point": "JASPER (Programm)"} 1 +2024-09-10 15:46:29.33233 2024-09-10 15:46:29.332334 0d4f5158-17c5-4531-885a-36768533b475 {"md5": "62f4a5673aa5fef27c6600828c7924b7", "pid": "042100445", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Mastopathie&oldid=243852289"], "noteType": "dataSource"}, {"label": ["Benutze Kombination \\"Mamma AND Krankheit\\" für weitere Treffer"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Brustkrankheit"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1335338195", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85016686", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85016686"}], "authorized_access_point": "Breast - Fibrocystic disease"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)124161198X", "source": "GND"}, {"type": "bf:Nbn", "value": "D005348", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D005348"}], "authorized_access_point": "Fibrocystic Breast Disease"}], "identifier": "http://d-nb.info/gnd/4210044-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4210044-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042100445", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4210044-6", "source": "GND"}], "variant_access_point": ["Cystische Mastopathie", "Fibrocystische Mastopathie", "Fibrös-zystische Mastopathie", "Fibrozystische Brusterkrankung", "Fibrozystische Mastopathie", "Mammadysplasie", "Mastopathia chronica cystica", "Mastopathia fibrosa cystica", "Zystenmamma", "Zystische Brusterkrankung"], "authorized_access_point": "Mastopathie"} 1 +2024-09-10 15:46:29.399232 2024-09-10 15:46:29.399236 cbf6a4fd-0678-4974-a701-fcaa8b99642f {"md5": "fae5c83c190474920cc090f84f86d767", "pid": "042081033", "note": [{"label": ["Seit dem Beweis durch Louis de Branges de Bourcia 1985 ist die Bieberbach-Vermutung auch als Satz von de Branges bekannt."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4208103-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4208103-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042081033", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4208103-8", "source": "GND"}], "variant_access_point": ["Bieberbachsche Vermutung", "Satz von de Branges"], "authorized_access_point": "Bieberbach-Vermutung"} 1 +2024-09-10 15:46:29.458536 2024-09-10 15:46:29.45854 dfdae151-3c03-4418-a878-8e5eb1dd869d {"md5": "e2479156e2f3b2d94d22a6e7a59b5225", "pid": "042074150", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133693458", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85021644", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85021644"}], "authorized_access_point": "Cell death"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133693458", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11981727", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11981727q"}], "authorized_access_point": "Mort cellulaire"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254319336", "source": "GND"}, {"type": "bf:Nbn", "value": "1251", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/1251"}], "authorized_access_point": "Morte cellulare"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254505474", "source": "GND"}, {"type": "bf:Nbn", "value": "XX550134", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX550134"}], "authorized_access_point": "Muerte celular"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336587970", "source": "GND"}, {"type": "bf:Nbn", "value": "D016923", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D016923"}], "authorized_access_point": "Cell Death"}], "identifier": "http://d-nb.info/gnd/4207415-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4207415-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042074150", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4207415-0", "source": "GND"}], "authorized_access_point": "Zelltod"} 1 +2024-09-10 15:46:29.520552 2024-09-10 15:46:29.520556 49893f23-794b-4bea-8524-784c41192abe {"md5": "a4e33d5a6267cee5524dd7b146ba123f", "pid": "042044529", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Stadt"}], "identifier": "http://d-nb.info/gnd/4204452-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4204452-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042044529", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4204452-2", "source": "GND"}], "authorized_access_point": "Ackerbürgerstadt"} 1 +2024-09-10 15:46:29.576966 2024-09-10 15:46:29.576969 c3511ed6-a0c6-4565-bfc9-43b7f13eab34 {"md5": "ceb2345cef550e59e7cf89fb4551452e", "pid": "042033276", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Programm"}], "related": [{"authorized_access_point": "Kapitalanlage"}], "identifier": "http://d-nb.info/gnd/4203327-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4203327-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042033276", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4203327-5", "source": "GND"}], "authorized_access_point": "INVESTOR (Programm)"} 1 +2024-09-10 15:46:29.642794 2024-09-10 15:46:29.642797 bcfe1b92-ca2d-4798-b331-6ef09b10d106 {"md5": "e6bc7593ee44f7b9bde683d30ebe6a3a", "pid": "042022622", "note": [{"label": ["Literarische Gattung"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Literatur"}], "related": [{"authorized_access_point": "Utopie"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134096054", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85040350", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85040350"}], "authorized_access_point": "Dystopias"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134096054", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17718158", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb177181582"}], "authorized_access_point": "Dystopies"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254348263", "source": "GND"}, {"type": "bf:Nbn", "value": "20474", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/20474"}], "authorized_access_point": "Distopia"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254405437", "source": "GND"}, {"type": "bf:Nbn", "value": "XX527178", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX527178"}], "authorized_access_point": "Utopías"}], "identifier": "http://d-nb.info/gnd/4202262-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4202262-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042022622", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4202262-9", "source": "GND"}], "variant_access_point": ["Negative Utopie", "Dystopie (Literatur)"], "authorized_access_point": "Anti-Utopie"} 1 +2024-09-10 15:46:29.704519 2024-09-10 15:46:29.704522 a314f457-efa4-4600-bd1b-95182000280d {"md5": "09a1b43f33cb06fab10ba042993c5b81", "pid": "042020646", "note": [{"label": ["Modell zur Erfassung der strategischen Grössen einer Strategie und Bewertung der finanziellen Auswirkungen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4202064-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4202064-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042020646", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4202064-5", "source": "GND"}], "variant_access_point": ["Strategische Kosten- und Ergebnisplanung"], "authorized_access_point": "SKEP"} 1 +2024-09-10 15:46:29.781035 2024-09-10 15:46:29.781039 79f484e5-1277-4099-9604-91cde0b9abc7 {"md5": "8bdfe3d286f5dd470fcff51bb10e477a", "pid": "041969596", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ökonomische Theorie der Politik"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)967055202", "source": "GND"}, {"type": "bf:Nbn", "value": "11167-2", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/11167-2"}], "authorized_access_point": "Ökonomische Theorie der Demokratie"}], "identifier": "http://d-nb.info/gnd/4196959-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4196959-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041969596", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4196959-5", "source": "GND"}], "authorized_access_point": "Ökonomische Theorie der Demokratie"} 1 +2024-09-10 15:46:29.859258 2024-09-10 15:46:29.859261 a964b72e-e52a-45c9-872c-840c8d049a44 {"md5": "d457d5610ac310b10811240175524a82", "pid": "041966716", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134075464", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85119931", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85119931"}], "authorized_access_point": "Seminarians"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134075464", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11982450", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11982450n"}], "authorized_access_point": "Séminaristes"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)129991084X", "source": "GND"}, {"type": "bf:Nbn", "value": "XX532029", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX532029"}], "authorized_access_point": "Seminaristas"}], "identifier": "http://d-nb.info/gnd/4196671-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4196671-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041966716", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4196671-5", "source": "GND"}], "variant_access_point": ["Alumnus (Theologie)", "Seminarist", "Priesterseminarist", "Priesteramtskandidat"], "authorized_access_point": "Alumne"} 1 +2024-09-10 15:46:29.944435 2024-09-10 15:46:29.944438 de6e10e4-7b57-41cf-a354-26e59bac222b {"md5": "c5895080b46bf8548287276f5eee2176", "pid": "041962923", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tanz"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133867901", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85003648", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85003648"}], "authorized_access_point": "Allemandes"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134387296", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85003647", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85003647"}], "authorized_access_point": "Allemande"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133867901", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13557889", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13557889z"}], "authorized_access_point": "Allemandes (musique)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134387296", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13169979", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13169979x"}], "authorized_access_point": "Allemande (danse)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254394192", "source": "GND"}, {"type": "bf:Nbn", "value": "65506", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/65506"}], "authorized_access_point": "Allemanda"}], "identifier": "http://d-nb.info/gnd/4196292-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4196292-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041962923", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4196292-8", "source": "GND"}], "variant_access_point": ["Allemanda"], "authorized_access_point": "Allemande"} 1 +2024-09-10 15:46:30.111296 2024-09-10 15:46:30.1113 a93db224-a347-4199-bee5-42929786a93d {"md5": "63c85a8d229fb35695f1edd2c742909a", "pid": "041944240", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Konferenz"}, {"authorized_access_point": "Internationale Veranstaltung"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966784510", "source": "GND"}, {"type": "bf:Nbn", "value": "19711-0", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/19711-0"}], "authorized_access_point": "Internationale Konferenz"}], "identifier": "http://d-nb.info/gnd/4194424-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4194424-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041944240", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4194424-0", "source": "GND"}], "authorized_access_point": "Internationale Konferenz"} 1 +2024-09-10 15:46:30.180312 2024-09-10 15:46:30.180318 a0eb1905-d264-44cb-88d2-9534bfbd30d8 {"md5": "2003702998b472d7575cad83f4e5a945", "pid": "041935659", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Corporate Design"}, {"authorized_access_point": "Unternehmenskultur"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134080468", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85032900", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85032900"}], "authorized_access_point": "Corporate image"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134080468", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11983326", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11983326r"}], "authorized_access_point": "Entreprises - Image"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970542151", "source": "GND"}, {"type": "bf:Nbn", "value": "10060812", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10060812"}], "authorized_access_point": "Corporate Identity"}], "identifier": "http://d-nb.info/gnd/4193565-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4193565-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041935659", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4193565-2", "source": "GND"}], "variant_access_point": ["Unternehmensidentität", "CI", "Firmenimage (Corporate Identity)", "Unternehmenspersönlichkeit"], "authorized_access_point": "Corporate Identity"} 1 +2024-09-10 15:46:30.261568 2024-09-10 15:46:30.261574 5de1f98a-fcb7-4922-9c04-f7178fe17e33 {"md5": "e4dc8c11ad990a2a2a59156c1542d425", "pid": "04193458X", "note": [{"label": ["Neben der Bedeutung \\"Distanzfunktion\\"/\\"Abstandsfunktion\\" wird auch der metrische Tensor aus der Differentialgeometrie als Metrik bezeichnet."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Linienelement"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134610475", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85084442", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85084442"}], "authorized_access_point": "Metric system"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134610475", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11941225", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11941225t"}], "authorized_access_point": "Système métrique"}], "identifier": "http://d-nb.info/gnd/4193458-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4193458-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04193458X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4193458-1", "source": "GND"}], "variant_access_point": ["Distanzfunktion", "Abstandsfunktion"], "authorized_access_point": "Metrik (Mathematik)"} 1 +2024-09-10 15:46:30.340546 2024-09-10 15:46:30.340549 699423b3-6c9e-44c5-8b6c-fc275963c876 {"md5": "409557d5aecbdac4517f7682888cee22", "pid": "041920287", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Niveaufläche"}], "identifier": "http://d-nb.info/gnd/4192028-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4192028-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041920287", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4192028-4", "source": "GND"}], "authorized_access_point": "Achthundertfünfzig-Millibar-Fläche"} 1 +2024-09-10 15:46:30.398993 2024-09-10 15:46:30.398998 b8841eeb-6f78-4f0c-bfdd-0b7c7a1474ea {"md5": "3103d68e6182e8bbdcd0e923256b2ab2", "pid": "041920279", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Niveaufläche"}], "identifier": "http://d-nb.info/gnd/4192027-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4192027-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041920279", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4192027-2", "source": "GND"}], "authorized_access_point": "Fünfhundert-Millibar-Fläche"} 1 +2024-09-10 15:46:30.469096 2024-09-10 15:46:30.4691 59ab537c-43f2-47d2-84b2-2df1337aae78 {"md5": "ff5147bd32d7dcb4f5f98251629653f8", "pid": "041917413", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fachzeitschrift"}], "identifier": "http://d-nb.info/gnd/4191741-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4191741-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041917413", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4191741-8", "source": "GND"}], "variant_access_point": ["Ethnologische Zeitschrift"], "authorized_access_point": "Völkerkundliche Zeitschrift"} 1 +2024-09-10 15:46:30.526552 2024-09-10 15:46:30.526556 1961204a-93cf-48f4-946c-1faebb55247b {"md5": "634b53b89543393cbdfd77f0818f3cb8", "pid": "041913574", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Volksglaube"}], "identifier": "http://d-nb.info/gnd/4191357-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4191357-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041913574", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4191357-7", "source": "GND"}], "variant_access_point": ["Rauhnacht", "Rauchnächte", "Raunacht", "Raunächte", "Unternächte", "Zwölfnächte", "Zwölf heilige Nächte", "Zwölften"], "authorized_access_point": "Rauhnächte"} 1 +2024-09-10 15:46:30.582689 2024-09-10 15:46:30.582692 ab6b440a-55f3-4b4a-913d-7046c49d7c33 {"md5": "531514940e2ad16ec0b7074c38285e8b", "pid": "041912888", "note": [{"label": ["Benutzt für überwiegend eigengenutzte Wohnungen; gemietete Wohnungen s. unter Ferienwohnung"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Freizeitwohnen"}], "related": [{"authorized_access_point": "Ferienwohnung"}, {"authorized_access_point": "Wochenendhaus"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133479376X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85119417", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85119417"}], "authorized_access_point": "Second homes"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133479376X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11938910", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119389106"}], "authorized_access_point": "Résidences secondaires"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970607334", "source": "GND"}, {"type": "bf:Nbn", "value": "10062702", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10062702"}], "authorized_access_point": "Zweitwohnung"}], "identifier": "http://d-nb.info/gnd/4191288-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4191288-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041912888", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4191288-3", "source": "GND"}], "variant_access_point": ["Freizeitwohnung", "Zweitwohnsitz"], "authorized_access_point": "Zweitwohnung"} 1 +2024-09-10 15:46:30.668767 2024-09-10 15:46:30.66877 4971051a-fb1d-4b89-b4a8-94348c095282 {"md5": "97d613b808777ce5cef72a79ed729b3b", "pid": "041909836", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256273848", "source": "GND"}, {"type": "bf:Nbn", "value": "14813", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_14813"}], "authorized_access_point": "teats"}], "identifier": "http://d-nb.info/gnd/4190983-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4190983-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041909836", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4190983-5", "source": "GND"}], "variant_access_point": ["Mamille", "Papilla mammae", "Milchdrüsenpapille"], "authorized_access_point": "Zitze"} 1 +2024-09-10 15:46:30.765376 2024-09-10 15:46:30.765382 b2b69932-108d-4f3a-8e6b-0374b0a66e2b {"md5": "31204b707efde0ec50d4275d57fa8af3", "pid": "041906683", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133655165", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85021646", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85021646"}], "authorized_access_point": "Cell division"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133655165", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11958046", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119580464"}], "authorized_access_point": "Cellules - Division"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133883516", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13622694", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13622694b"}], "authorized_access_point": "Cellules végétales - Division"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1299906753", "source": "GND"}, {"type": "bf:Nbn", "value": "XX550146", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX550146"}], "authorized_access_point": "División celular"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256273333", "source": "GND"}, {"type": "bf:Nbn", "value": "1413", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_1413"}], "authorized_access_point": "cell division"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336586273", "source": "GND"}, {"type": "bf:Nbn", "value": "D002455", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D002455"}], "authorized_access_point": "Cell Division"}], "identifier": "http://d-nb.info/gnd/4190668-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4190668-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041906683", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4190668-8", "source": "GND"}], "variant_access_point": ["Zytokinese", "Cytokinese"], "authorized_access_point": "Zellteilung"} 1 +2024-09-10 15:46:30.861599 2024-09-10 15:46:30.861602 f3688764-c87f-42f9-9bc2-8f3dd7afd68f {"md5": "e5e1eb9c72dad396ea0de788cec42b26", "pid": "041901398", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Landhaus"}], "related": [{"authorized_access_point": "Zweitwohnung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133946550", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85119417", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85119417"}], "authorized_access_point": "Second homes"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133946550", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11938910", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119389106"}], "authorized_access_point": "Résidences secondaires"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334794960", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16764757", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb167647579"}], "authorized_access_point": "Datchas"}], "identifier": "http://d-nb.info/gnd/4190139-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4190139-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041901398", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4190139-3", "source": "GND"}], "variant_access_point": ["Datscha (Wochenendhaus)", "Datsche (Wochenendhaus)"], "authorized_access_point": "Wochenendhaus"} 1 +2024-09-10 15:46:30.928519 2024-09-10 15:46:30.928523 66ef5a6b-f093-4cda-a48b-b6e5704159e4 {"md5": "9416f7fecdc1c6a08d5ba264bf891b62", "pid": "041890353", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schrämlader"}], "identifier": "http://d-nb.info/gnd/4189035-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4189035-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041890353", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4189035-8", "source": "GND"}], "authorized_access_point": "Walzenschrämlader"} 1 +2024-09-10 15:46:30.988638 2024-09-10 15:46:30.988642 998a8252-4ce4-4e9f-ad71-3c1cecd3dfb9 {"md5": "e04590b16d3dc6c7e3bb4a95b7400349", "pid": "04188566X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Wirtschaftswissenschaftler"}], "related": [{"authorized_access_point": "Volkswirtin"}], "identifier": "http://d-nb.info/gnd/4188566-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4188566-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04188566X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4188566-1", "source": "GND"}], "variant_access_point": ["Diplomvolkswirt", "Nationalökonom", "Volkswirtschafter", "Volkswirtschaftler"], "authorized_access_point": "Volkswirt"} 1 +2024-09-10 15:46:31.053814 2024-09-10 15:46:31.053819 50ac9194-9250-44a8-883d-61ba7ea2e135 {"md5": "4e2556673ab96c3cb6d873d3fa53efd5", "pid": "041856333", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4185633-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4185633-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041856333", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4185633-8", "source": "GND"}], "variant_access_point": ["Toluol"], "authorized_access_point": "Toluolderivate"} 1 +2024-09-10 15:46:33.458798 2024-09-10 15:46:33.458802 25285877-0d87-436a-9df1-410964fcd681 {"md5": "4304c4a25ac879966c091d0ba6f52832", "pid": "041687167", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Mande-Sprachen"}], "identifier": "http://d-nb.info/gnd/4168716-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4168716-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041687167", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4168716-4", "source": "GND"}], "variant_access_point": ["Manding-Sprache", "Mandinka-Sprache", "Mandinkakan-Sprache", "Maninka-Sprache", "Mandekan", "Maninlakan"], "authorized_access_point": "Malinke-Sprache"} 1 +2024-09-10 15:46:31.118202 2024-09-10 15:46:31.118206 1c1e9341-80a4-4e89-aa88-5300f6659e32 {"md5": "d7978974999ed399363df60b7f66782f", "pid": "041856325", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Benzolderivate"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134295766", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85135907", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85135907"}], "authorized_access_point": "Toluene"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134295766", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12365423", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb123654235"}], "authorized_access_point": "Toluène"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254354751", "source": "GND"}, {"type": "bf:Nbn", "value": "24400", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/24400"}], "authorized_access_point": "Toluene"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254495630", "source": "GND"}, {"type": "bf:Nbn", "value": "XX545422", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX545422"}], "authorized_access_point": "Tolueno"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256264377", "source": "GND"}, {"type": "bf:Nbn", "value": "7803", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_7803"}], "authorized_access_point": "toluene"}], "identifier": "http://d-nb.info/gnd/4185632-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4185632-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041856325", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4185632-6", "source": "GND"}], "variant_access_point": ["Methylbenzol", "Toluen"], "authorized_access_point": "Toluol"} 1 +2024-09-10 15:46:31.188512 2024-09-10 15:46:31.188517 b8d57bf2-e676-4e5c-845b-5697b8eea2c9 {"md5": "ad0adbd3a4127f6e56da08aa8573948f", "pid": "041848020", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Staat"}], "related": [{"authorized_access_point": "Landeshoheit"}, {"authorized_access_point": "Territorium"}], "identifier": "http://d-nb.info/gnd/4184802-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4184802-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041848020", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4184802-0", "source": "GND"}], "variant_access_point": ["Landesstaat", "Territorialisierung"], "authorized_access_point": "Territorialstaat"} 1 +2024-09-10 15:46:31.280006 2024-09-10 15:46:31.28001 a59a03d7-2ef0-4473-8b9f-af3ef46c5bc0 {"md5": "2fc39d914b809633da3d6a5b9f31be27", "pid": "041844793", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134441231", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85010984", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85010984"}], "authorized_access_point": "Bags"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134441231", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF14550405", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb14550405f"}], "authorized_access_point": "Sacs"}], "identifier": "http://d-nb.info/gnd/4184479-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4184479-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041844793", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4184479-8", "source": "GND"}], "variant_access_point": ["Taschen"], "authorized_access_point": "Tasche"} 1 +2024-09-10 15:46:31.340396 2024-09-10 15:46:31.340399 5dc0c06f-b140-42db-9b16-0b271b82d79d {"md5": "409365b6d0cd8e9eaea52944e4f5375a", "pid": "041844513", "note": [{"label": ["Sammelbezeichnung für eine Gegenbewegung zum klassischen Ballett, die seit Mitte der 1970er-Jahre zunehmend an Bedeutung gewonnen hat", "Einzelne Tanztheater-Produktionen werden als anonyme Werktitel angesetzt, Verweisungen vom Choreographen und ggf. weiteren wichtigen Beteiligten werden gemacht; auch als Oberbegriff für Tanztheaterkompanien zu verwenden"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tanz"}], "related": [{"authorized_access_point": "Ballett"}], "identifier": "http://d-nb.info/gnd/4184451-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4184451-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041844513", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4184451-8", "source": "GND"}], "variant_access_point": ["Tanzdrama", "Tanzstück", "Tanztheaterstück"], "authorized_access_point": "Tanztheater"} 1 +2024-09-10 15:46:31.401801 2024-09-10 15:46:31.401804 ba43892e-5dd3-49f8-95a9-a855521e5bcb {"md5": "300d4a0a9c3ee20bc374f365f8c4cb0d", "pid": "041840658", "note": [{"label": ["EC 2.8.2"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Transferasen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133824757", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2004014824", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2004014824"}], "authorized_access_point": "Sulfotransferases"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133824757", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12535709", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb125357095"}], "authorized_access_point": "Sulfotransférases"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336133015", "source": "GND"}, {"type": "bf:Nbn", "value": "D015238", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D015238"}], "authorized_access_point": "Sulfotransferases"}], "identifier": "http://d-nb.info/gnd/4184065-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4184065-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041840658", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4184065-3", "source": "GND"}], "variant_access_point": ["SULTs"], "authorized_access_point": "Sulfotransferasen"} 1 +2024-09-10 15:46:31.46027 2024-09-10 15:46:31.460273 8630b8cf-d7b9-4399-93fb-377fb3a76395 {"md5": "10ca79800c5b25049c3091094fdfc396", "pid": "041830180", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bauweise"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133989896", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85017717", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85017717"}], "authorized_access_point": "Building, Stone"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336575867", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85128340", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85128340"}], "authorized_access_point": "Stonemasonry"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133989896", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11957075", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11957075g"}], "authorized_access_point": "Construction en pierre"}], "identifier": "http://d-nb.info/gnd/4183018-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4183018-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041830180", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4183018-0", "source": "GND"}], "authorized_access_point": "Steinbau"} 1 +2024-09-10 15:46:31.52633 2024-09-10 15:46:31.526332 d238843a-2971-42a5-9ba4-6710a6252225 {"md5": "6bf235a31020f4aa40735719f52a4c4f", "pid": "041822218", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Kugel"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134621248", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85126590", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85126590"}], "authorized_access_point": "Sphere"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134621248", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11981287", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119812876"}], "authorized_access_point": "Sphère"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1299911781", "source": "GND"}, {"type": "bf:Nbn", "value": "XX543469", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX543469"}], "authorized_access_point": "Esfera"}], "identifier": "http://d-nb.info/gnd/4182221-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4182221-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041822218", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4182221-3", "source": "GND"}], "variant_access_point": ["Hypersphäre"], "authorized_access_point": "Sphäre"} 1 +2024-09-10 15:46:31.588486 2024-09-10 15:46:31.588489 44713465-8ae7-495a-92bf-81f75905638d {"md5": "14302ac484052229029ff52928423d47", "pid": "041815173", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4181517-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4181517-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041815173", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4181517-8", "source": "GND"}], "authorized_access_point": "Singuläre Gleichung"} 1 +2024-09-10 15:46:31.661946 2024-09-10 15:46:31.66195 2fc73658-9407-40be-b7f8-436baf0fe915 {"md5": "57c47896b2c461b6a23c8d4bc49a7b2b", "pid": "041810252", "note": [{"label": ["Aufeinanderfolge verschiedener gleichartiger Biomoleküle", "Für Sequenz im Allgemeinen verwende Reihenfolge, gnd/4507704-6", "Für Sequenz (Film) verwende Sequenz (Film), gnd/132554891X", "Für Sequenz (Musik) verwende Sequenz (Musik), gnd/7591624-1", "Für Sequenz (Informatik) verwende Sequenzieller Algorithmus, gnd/4719581-2", "Für Sequenz (Mathematik) verwende Zeichenkette, gnd/4067448-4"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4181025-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4181025-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041810252", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4181025-9", "source": "GND"}], "authorized_access_point": "Sequenz (Biochemie)"} 1 +2024-09-10 15:46:31.753151 2024-09-10 15:46:31.753156 1d40e584-0494-4695-b36b-205a7cdbd878 {"md5": "088bd88c383cb0cabd184d0358ff4fe1", "pid": "041806417", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Elektrisches Kabel"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134064403", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85018581", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85018581"}], "authorized_access_point": "Cables, Submarine"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134064403", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11980419", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119804191"}], "authorized_access_point": "Câbles sous-marins"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254485392", "source": "GND"}, {"type": "bf:Nbn", "value": "XX525880", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX525880"}], "authorized_access_point": "Cables submarinos"}], "identifier": "http://d-nb.info/gnd/4180641-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4180641-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041806417", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4180641-4", "source": "GND"}], "variant_access_point": ["Unterwasserkabel", "Tiefseekabel", "Unterseeische Kabel"], "authorized_access_point": "Seekabel"} 1 +2024-09-10 15:46:31.836309 2024-09-10 15:46:31.836313 c07d821d-87bd-48ef-9fb8-da6c3f22f15d {"md5": "ac9044bfe62dd640e2ad9b950af12c98", "pid": "041796462", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Luftschlacht_um_England&oldid=211129893"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Luftkrieg"}], "related": [{"authorized_access_point": "Unternehmen Seelöwe"}, {"authorized_access_point": "Zweiter Weltkrieg"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133985025", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85016958", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85016958"}], "authorized_access_point": "Britain, Battle of, Great Britain, 1940"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133985025", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11954542", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119545425"}], "authorized_access_point": "Bataille d'Angleterre (1940)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254378812", "source": "GND"}, {"type": "bf:Nbn", "value": "45870", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/45870"}], "authorized_access_point": "Battaglia d'Inghilterra <1940>"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254457631", "source": "GND"}, {"type": "bf:Nbn", "value": "XX533012", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX533012"}], "authorized_access_point": "Inglaterra, Batalla de, 1940"}], "identifier": "http://d-nb.info/gnd/4179646-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4179646-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041796462", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4179646-9", "source": "GND"}], "variant_access_point": ["Schlacht um England", "Battle of Britain"], "authorized_access_point": "Luftschlacht um England"} 1 +2024-09-10 15:46:31.919364 2024-09-10 15:46:31.919372 378464a0-488a-45f3-9c13-8cf4dbae68dc {"md5": "3046432b02d07c01db69e5d1eca485bc", "pid": "041794923", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Unterwelt"}], "identifier": "http://d-nb.info/gnd/4179492-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4179492-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041794923", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4179492-8", "source": "GND"}], "authorized_access_point": "Scheol"} 1 +2024-09-10 15:46:34.288085 2024-09-10 15:46:34.28809 06a628f5-0de8-4962-afb3-c5db37859233 {"md5": "dade1fe8f7de697ae826b84ab47efe62", "pid": "041633237", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Toxizität"}], "related": [{"authorized_access_point": "Herzgift"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)124163503X", "source": "GND"}, {"type": "bf:Nbn", "value": "D066126", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D066126"}], "authorized_access_point": "Cardiotoxicity"}], "identifier": "http://d-nb.info/gnd/4163323-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4163323-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041633237", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4163323-4", "source": "GND"}], "variant_access_point": ["Cardiotoxizität"], "authorized_access_point": "Kardiotoxizität"} 1 +2024-09-10 15:46:31.981945 2024-09-10 15:46:31.98195 a5a1f213-ba7c-47aa-a2c8-0e49a96f0bfa {"md5": "d8394fb1be93446fdc02d9719364b95c", "pid": "041789989", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Steuer"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134083637", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85116855", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85116855"}], "authorized_access_point": "Salt - Taxation"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134083637", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11986454", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119864540"}], "authorized_access_point": "Sel - Impôts"}], "identifier": "http://d-nb.info/gnd/4178998-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4178998-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041789989", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4178998-2", "source": "GND"}], "authorized_access_point": "Salzsteuer"} 1 +2024-09-10 15:46:32.044253 2024-09-10 15:46:32.044257 c00d05b0-206a-460d-92c5-48aeb4352313 {"md5": "3113876e0ce6aa60e37df1d6931454b5", "pid": "041787250", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schleifen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134709471", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85057370", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85057370"}], "authorized_access_point": "Grinding and polishing"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134709471", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11980486", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119804865"}], "authorized_access_point": "Meulage"}], "identifier": "http://d-nb.info/gnd/4178725-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4178725-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041787250", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4178725-0", "source": "GND"}], "authorized_access_point": "Rundschleifen"} 1 +2024-09-10 15:46:32.105395 2024-09-10 15:46:32.105398 dc2d6af7-843d-4bc2-b79d-bcf79b393fd9 {"md5": "546221ec5dedcf6b32af9ff02097c234", "pid": "041785134", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133825397", "source": "GND"}, {"type": "bf:Nbn", "value": "sh96010897", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh96010897"}], "authorized_access_point": "Rotaxanes"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133825397", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12538357", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12538357n"}], "authorized_access_point": "Rotaxanes"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133614811X", "source": "GND"}, {"type": "bf:Nbn", "value": "D043862", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D043862"}], "authorized_access_point": "Rotaxanes"}], "identifier": "http://d-nb.info/gnd/4178513-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4178513-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041785134", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4178513-7", "source": "GND"}], "authorized_access_point": "Rotaxane"} 1 +2024-09-10 15:46:32.165659 2024-09-10 15:46:32.165663 9aaf065b-eab7-4ba1-a6c1-cfd5e42b05f8 {"md5": "a0ceed67e5215c6fa263df62cc34e109", "pid": "041782445", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Orden"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133631452", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85095375", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85095375"}], "authorized_access_point": "Orders of knighthood and chivalry"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133631452", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13318528", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb133185280"}], "authorized_access_point": "Ordres de chevalerie"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134505213", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13318794", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13318794b"}], "authorized_access_point": "Ordres militaires (religion)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254480234", "source": "GND"}, {"type": "bf:Nbn", "value": "XX530947", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX530947"}], "authorized_access_point": "Órdenes de caballería"}], "identifier": "http://d-nb.info/gnd/4178244-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4178244-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041782445", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4178244-6", "source": "GND"}], "authorized_access_point": "Ritterorden"} 1 +2024-09-10 15:46:32.225487 2024-09-10 15:46:32.225492 baaf19c9-8120-4e86-9490-cc81aa238d00 {"md5": "51dbbc38f82c8aed3a09ef79ba1cc6ff", "pid": "041766040", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bildanalyse"}], "identifier": "http://d-nb.info/gnd/4176604-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4176604-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041766040", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4176604-0", "source": "GND"}], "variant_access_point": ["Bildanalyse"], "authorized_access_point": "Quantitative Bildanalyse"} 1 +2024-09-10 15:46:34.682798 2024-09-10 15:46:34.682801 eb222c96-9e28-4b8d-90e4-c120676f7be3 {"md5": "38dd06390ef883bb9c3461166d3b32a9", "pid": "041606760", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Haut"}], "related": [{"authorized_access_point": "Horn"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334796270", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16736881", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb167368819"}], "authorized_access_point": "Stratum cornéum"}], "identifier": "http://d-nb.info/gnd/4160676-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4160676-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041606760", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4160676-0", "source": "GND"}], "variant_access_point": ["Hornhaut (Epidermis)", "Stratum corneum"], "authorized_access_point": "Hornschicht"} 1 +2024-09-10 15:46:32.297048 2024-09-10 15:46:32.297052 28084bc8-ee7c-4d65-90af-6b86aa27f955 {"md5": "515aa10cfff66b33fe2ec050370883eb", "pid": "041762223", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Student"}], "related": [{"authorized_access_point": "Psychologiestudentin"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334681244", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2009008206", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2009008206"}], "authorized_access_point": "Psychology students"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334681244", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF15094972", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb150949721"}], "authorized_access_point": "Étudiants en psychologie"}], "identifier": "http://d-nb.info/gnd/4176222-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4176222-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041762223", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4176222-8", "source": "GND"}], "variant_access_point": ["Psychologiestudium"], "authorized_access_point": "Psychologiestudent"} 1 +2024-09-10 15:46:32.37175 2024-09-10 15:46:32.371753 ff3bf84c-45ce-4203-a4bb-c50c4a53ba3c {"md5": "90c27ddfce1e1e114e41f97492aa81d0", "pid": "041753615", "note": [{"label": ["Kulturgüter, Erzeugnisse oder künstlerische Ausdrucksformen, die von einem großen Teil der Gesellschaft konsumiert und als relevant oder beliebt angesehen werden; wird als Gegensatz zur Hochkultur verstanden und als Ausdruck des Zeitgeistes betrachtet"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Massenkultur"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1291583955", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85104904", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85104904"}], "authorized_access_point": "Popular culture"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1291583955", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13318541", "source": "BNF"}, {"type": "uri", "value": "https://ark.bnf.fr/ark:/12148/cb133185416"}], "authorized_access_point": "Culture populaire"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)106889248X", "source": "GND"}, {"type": "bf:Nbn", "value": "30024-3", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/30024-3"}], "authorized_access_point": "Popkultur"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)983461848", "source": "GND"}, {"type": "bf:Nbn", "value": "10048286", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10048286"}], "authorized_access_point": "Popkultur"}], "identifier": "http://d-nb.info/gnd/4175361-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4175361-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041753615", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4175361-6", "source": "GND"}], "variant_access_point": ["Pop-Kultur", "Populärkultur", "Populäre Kultur"], "authorized_access_point": "Popkultur"} 1 +2024-09-10 15:46:32.441197 2024-09-10 15:46:32.441205 8d81057a-5945-4456-843c-5329038285e7 {"md5": "fbd9acba43fd7bc25aa33c9ee68138c5", "pid": "041748379", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Plasmaphysik"}], "identifier": "http://d-nb.info/gnd/4174837-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4174837-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041748379", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4174837-2", "source": "GND"}], "variant_access_point": ["Plasma"], "authorized_access_point": "Plasmatheorie"} 1 +2024-09-10 15:46:32.516422 2024-09-10 15:46:32.516426 2d5f985b-0bfb-4ba0-bd5a-c6691388a103 {"md5": "2d034fb31f72f9687bcf8553fea7267a", "pid": "041734467", "note": [{"label": ["Benutzt für den Kampf der Partisanen und deren Bekämpfung"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Krieg"}], "related": [{"authorized_access_point": "Guerilla"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134567057", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85057695", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85057695"}], "authorized_access_point": "Guerrilla warfare"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134567057", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13516336", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13516336x"}], "authorized_access_point": "Guérilla"}], "identifier": "http://d-nb.info/gnd/4173446-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4173446-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041734467", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4173446-4", "source": "GND"}], "authorized_access_point": "Partisanenkrieg"} 1 +2024-09-10 15:46:32.576957 2024-09-10 15:46:32.576959 739ca531-a4ad-4d3b-9729-89f90d750414 {"md5": "02df081482ec8ecbce586a0dfdd38cd8", "pid": "041730380", "note": [{"label": ["Für bodennahes Ozon verknüpfe: Ozon / Bodennahe Luftschicht."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sauerstoff"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133692281", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85096391", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85096391"}], "authorized_access_point": "Ozone"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133692281", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11981162", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11981162k"}], "authorized_access_point": "Ozone"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254328858", "source": "GND"}, {"type": "bf:Nbn", "value": "5327", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/5327"}], "authorized_access_point": "Ozono"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254470212", "source": "GND"}, {"type": "bf:Nbn", "value": "XX543193", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX543193"}], "authorized_access_point": "Ozono"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256242993", "source": "GND"}, {"type": "bf:Nbn", "value": "5485", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_5485"}], "authorized_access_point": "ozone"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334635641", "source": "GND"}, {"type": "bf:Nbn", "value": "D010126", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D010126"}], "authorized_access_point": "Ozone"}], "identifier": "http://d-nb.info/gnd/4173038-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4173038-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041730380", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4173038-0", "source": "GND"}], "authorized_access_point": "Ozon"} 1 +2024-09-10 15:46:32.642198 2024-09-10 15:46:32.642202 a0f8708d-c069-470a-8e8b-74887f016fba {"md5": "36e85da5d7b0f47e26f75d35b6ae8307", "pid": "041718380", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Adel"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134023499", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85053953", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85053953"}], "authorized_access_point": "Gentry"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134023499", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11970875", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11970875d"}], "authorized_access_point": "Petite noblesse"}], "identifier": "http://d-nb.info/gnd/4171838-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4171838-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041718380", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4171838-0", "source": "GND"}], "variant_access_point": ["Niederer Adel", "Kleinadel"], "authorized_access_point": "Niederadel"} 1 +2024-09-10 15:46:32.709479 2024-09-10 15:46:32.709483 901e7221-1340-4555-b61d-8f1764c1f1ac {"md5": "6b74130eff0ad4e4af5c4042fe49b972", "pid": "041717007", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113436394X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85091709", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85091709"}], "authorized_access_point": "Nias language"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113436394X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12545964", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb125459642"}], "authorized_access_point": "Nias (langue)"}], "identifier": "http://d-nb.info/gnd/4171700-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4171700-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041717007", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4171700-4", "source": "GND"}], "variant_access_point": ["Niassisch", "Nias (Sprache)"], "authorized_access_point": "Nias-Sprache"} 1 +2024-09-10 15:46:32.770217 2024-09-10 15:46:32.77022 a8b04c10-352a-4f5d-b37c-fa556a0d4327 {"md5": "42e7d37d01e3bb07c7b1a0550872b6e3", "pid": "041712900", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Killerzelle"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134259670", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85072328", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85072328"}], "authorized_access_point": "Killer cells"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134259670", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12290850", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12290850d"}], "authorized_access_point": "Cellules NK"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336594470", "source": "GND"}, {"type": "bf:Nbn", "value": "D007694", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D007694"}], "authorized_access_point": "Killer Cells, Natural"}], "identifier": "http://d-nb.info/gnd/4171290-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4171290-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041712900", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4171290-0", "source": "GND"}], "variant_access_point": ["NK-Zelle"], "authorized_access_point": "Natürliche Killerzelle"} 1 +2024-09-10 15:46:32.832945 2024-09-10 15:46:32.83295 20c218c8-f135-494d-9874-b74384617d1f {"md5": "8578096c601733be87fdef5554a6bdf7", "pid": "041707222", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kranker"}], "related": [{"authorized_access_point": "Multiple Sklerose"}, {"authorized_access_point": "Weibliche Multiple-Sklerose-Kranke"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134505272", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12447406", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12447406t"}], "authorized_access_point": "Encéphalomyélite aiguë disseminée"}], "identifier": "http://d-nb.info/gnd/4170722-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4170722-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041707222", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4170722-9", "source": "GND"}], "authorized_access_point": "Multiple-Sklerose-Kranker"} 1 +2024-09-10 15:46:32.907132 2024-09-10 15:46:32.907136 f9169c90-b5c6-464c-99ef-3c5fe4e11336 {"md5": "997fe88be2c5798d73ddd8841a0b969f", "pid": "04170553X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Moriskentanz"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tanz"}], "related": [{"authorized_access_point": "Morisken"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134139004", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85087339", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85087339"}], "authorized_access_point": "Moros y Cristianos (Dance)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134139004", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12050074", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb120500741"}], "authorized_access_point": "Moresca (danse)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254394389", "source": "GND"}, {"type": "bf:Nbn", "value": "65611", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/65611"}], "authorized_access_point": "Moresca"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133811833", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85087356", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85087356"}], "authorized_access_point": "Morris dance"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133811833", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12489728", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb124897288"}], "authorized_access_point": "Morris dance"}], "identifier": "http://d-nb.info/gnd/4170553-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4170553-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04170553X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4170553-1", "source": "GND"}], "variant_access_point": ["Morisca", "Moreskentanz", "Moriskentanz", "Moriska", "Mourisca", "Morris dance", "Morrisdance"], "authorized_access_point": "Moresca"} 1 +2024-09-10 15:46:33.000466 2024-09-10 15:46:33.00047 d9c9ed78-ff1d-4cca-905a-01ae14943a11 {"md5": "a46deda8b48a3130467002ba7df5f640", "pid": "041701852", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kernteilung"}], "related": [{"authorized_access_point": "Amitose"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133728553", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85086289", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85086289"}], "authorized_access_point": "Mitosis"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133728553", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12151573", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12151573g"}], "authorized_access_point": "Mitose"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254366571", "source": "GND"}, {"type": "bf:Nbn", "value": "34116", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/34116"}], "authorized_access_point": "Mitosi"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)125446302X", "source": "GND"}, {"type": "bf:Nbn", "value": "XX550158", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX550158"}], "authorized_access_point": "Mitosis"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256238120", "source": "GND"}, {"type": "bf:Nbn", "value": "4870", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_4870"}], "authorized_access_point": "mitosis"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336586613", "source": "GND"}, {"type": "bf:Nbn", "value": "D008938", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D008938"}], "authorized_access_point": "Mitosis"}], "identifier": "http://d-nb.info/gnd/4170185-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4170185-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041701852", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4170185-9", "source": "GND"}], "variant_access_point": ["Mitotische Teilung", "Indirekte Kernteilung", "Indirekte Zellteilung", "M-Phase"], "authorized_access_point": "Mitose"} 1 +2024-09-10 15:46:33.059979 2024-09-10 15:46:33.059984 52289deb-b557-4120-90be-94f48b303382 {"md5": "236b24a47356c6323c8052fc9c0e605d", "pid": "041699122", "note": [{"label": ["In der Tiermedizin verwende Gesäugekrankheit bzw.Euterkrankheit"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Brustkrankheit"}], "identifier": "http://d-nb.info/gnd/4169912-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4169912-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041699122", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4169912-9", "source": "GND"}], "variant_access_point": ["Brustdrüsenerkrankung"], "authorized_access_point": "Milchdrüsenkrankheit"} 1 +2024-09-10 15:46:33.129356 2024-09-10 15:46:33.12936 b19a788c-2693-4e8d-87df-30c0f6251592 {"md5": "88469606682076c5e3982a01151fefe9", "pid": "041699114", "note": [{"label": ["Für Tiere benutze Euter bzw. Gesäuge"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Exokrine Drüse"}], "related": [{"authorized_access_point": "Mamma"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133751105", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85080275", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85080275"}], "authorized_access_point": "Mammary glands"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133751105", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12285824", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12285824v"}], "authorized_access_point": "Glande mammaire"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256237515", "source": "GND"}, {"type": "bf:Nbn", "value": "4562", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_4562"}], "authorized_access_point": "mammary glands"}], "identifier": "http://d-nb.info/gnd/4169911-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4169911-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041699114", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4169911-7", "source": "GND"}], "variant_access_point": ["Brustdrüse", "Glandula mammaria", "Mammadrüse"], "authorized_access_point": "Milchdrüse"} 1 +2024-09-10 15:46:33.191864 2024-09-10 15:46:33.191867 353e7b49-aa00-4eee-a7e2-23abc1279ae8 {"md5": "3b37e70e0ca1b114cda91b0174e82828", "pid": "041696492", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zellteilung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133884040", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13737516", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13737516v"}], "authorized_access_point": "Métaphase"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336586443", "source": "GND"}, {"type": "bf:Nbn", "value": "D008677", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D008677"}], "authorized_access_point": "Metaphase"}], "identifier": "http://d-nb.info/gnd/4169649-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4169649-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041696492", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4169649-9", "source": "GND"}], "authorized_access_point": "Metaphase"} 1 +2024-09-10 15:46:33.268738 2024-09-10 15:46:33.268743 a2383bcf-ae7e-4ede-8d92-92b35b56ffc7 {"md5": "2d5f997bb2cb5da1b1856e23ad5e821b", "pid": "041693477", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133740073", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85083346", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85083346"}], "authorized_access_point": "Meiosis"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133740073", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12253594", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb122535943"}], "authorized_access_point": "Méiose"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254363955", "source": "GND"}, {"type": "bf:Nbn", "value": "32284", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/32284"}], "authorized_access_point": "Meiosi"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254460950", "source": "GND"}, {"type": "bf:Nbn", "value": "XX533954", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX533954"}], "authorized_access_point": "Meiosis"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256236209", "source": "GND"}, {"type": "bf:Nbn", "value": "4706", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_4706"}], "authorized_access_point": "meiosis"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133658677X", "source": "GND"}, {"type": "bf:Nbn", "value": "D008540", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D008540"}], "authorized_access_point": "Meiosis"}], "identifier": "http://d-nb.info/gnd/4169347-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4169347-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041693477", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4169347-4", "source": "GND"}], "variant_access_point": ["Reifeteilung", "Reduktionsteilung", "Meiosis"], "authorized_access_point": "Meiose"} 1 +2024-09-10 15:46:33.337846 2024-09-10 15:46:33.337849 f1f61129-f4e4-4098-af34-00cc67575105 {"md5": "3d83e7b566a8fee4dfaf58bb25213722", "pid": "041692705", "note": [{"label": ["Mit der Integraltransformation nahe verwandte Konzepte sind der Mehler-Kern und die Mehler-Formel mit Anwendung in der Quantenmechanik."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Integraltransformation"}], "related": [{"authorized_access_point": "Harmonischer Oszillator"}], "identifier": "http://d-nb.info/gnd/4169270-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4169270-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041692705", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4169270-6", "source": "GND"}], "variant_access_point": ["Mehler-Fock-Transformation"], "authorized_access_point": "Mehler-Fok-Transformation"} 1 +2024-09-10 15:46:33.396981 2024-09-10 15:46:33.396986 b9105c31-44f3-4b69-9657-6c24a93b7e9c {"md5": "064002293a6a4fe265cf7702cce1de55", "pid": "041689763", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Funktionale Musik"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133737870", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85080979", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85080979"}], "authorized_access_point": "Marches"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133737870", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12238072", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb122380726"}], "authorized_access_point": "Marches (musique)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254397973", "source": "GND"}, {"type": "bf:Nbn", "value": "69890", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/69890"}], "authorized_access_point": "Marce "}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254459553", "source": "GND"}, {"type": "bf:Nbn", "value": "XX537163", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX537163"}], "authorized_access_point": "Marchas militares"}], "identifier": "http://d-nb.info/gnd/4168976-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4168976-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041689763", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4168976-8", "source": "GND"}], "variant_access_point": ["Marschmusik"], "authorized_access_point": "Marsch (Musik)"} 1 +2024-09-10 15:46:34.742952 2024-09-10 15:46:34.742955 4a5ba9dc-6d44-4d68-9782-be243cb09a18 {"md5": "58b1d9ee73bcc350f593737474da5e24", "pid": "041599470", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gehirn"}, {"authorized_access_point": "Zelle"}], "identifier": "http://d-nb.info/gnd/4159947-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4159947-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041599470", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4159947-0", "source": "GND"}], "variant_access_point": ["ZNS-Gewebe"], "authorized_access_point": "Hirnzelle"} 1 +2024-09-10 15:46:33.516868 2024-09-10 15:46:33.516872 8b867c00-ac34-479c-956d-057c06546bf7 {"md5": "c7efde8b0248de6a3c33a44810c71d8f", "pid": "041667689", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Grubenottern"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134429665", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85016019", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85016019"}], "authorized_access_point": "Bothrops"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134429665", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF14508508", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb14508508n"}], "authorized_access_point": "Bothrops"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336105909", "source": "GND"}, {"type": "bf:Nbn", "value": "D017837", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D017837"}], "authorized_access_point": "Bothrops"}], "identifier": "http://d-nb.info/gnd/4166768-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4166768-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041667689", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4166768-2", "source": "GND"}], "variant_access_point": ["Lanzenotter (Gattung)"], "authorized_access_point": "Bothrops"} 1 +2024-09-10 15:46:33.58002 2024-09-10 15:46:33.580024 74d7b204-5e1c-4e24-8ded-1a025749a079 {"md5": "6adb466e37bfd0fe1710b8bbd96c48b4", "pid": "041667670", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Grubenottern"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1323096663", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2008007750", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2008007750"}], "authorized_access_point": "Fer-de-lance"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1323096663", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17058270", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17058270t"}], "authorized_access_point": "Bothrops atrox"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336108002", "source": "GND"}, {"type": "bf:Nbn", "value": "D000097142", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D000097142"}], "authorized_access_point": "Bothrops atrox"}], "identifier": "http://d-nb.info/gnd/4166767-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4166767-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041667670", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4166767-0", "source": "GND"}], "variant_access_point": ["Bothrops atrox", "Gewöhnliche Lanzenotter"], "authorized_access_point": "Lanzenotter"} 1 +2024-09-10 15:46:33.646386 2024-09-10 15:46:33.64639 d591cfef-2d4c-45da-94fb-57486319e06e {"md5": "f242e8662f1f7ccdc2bd4f44936ea1fc", "pid": "041663659", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Antibiotikum"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134245041", "source": "GND"}, {"type": "bf:Nbn", "value": "sh86002798", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh86002798"}], "authorized_access_point": "Beta lactam antibiotics"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134245041", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12266277", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12266277m"}], "authorized_access_point": "Bêta-lactamines"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254394842", "source": "GND"}, {"type": "bf:Nbn", "value": "66202", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/66202"}], "authorized_access_point": "Beta-lattamici"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254454187", "source": "GND"}, {"type": "bf:Nbn", "value": "XX549031", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX549031"}], "authorized_access_point": "Antibióticos betalactámicos"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336118954", "source": "GND"}, {"type": "bf:Nbn", "value": "D000097902", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D000097902"}], "authorized_access_point": "beta Lactam Antibiotics"}], "identifier": "http://d-nb.info/gnd/4166365-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4166365-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041663659", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4166365-2", "source": "GND"}], "variant_access_point": ["Betalactamantibiotikum", "Beta-Lactam-Antibiotikum", "Cepheme", "Betalaktam-Antibiotika"], "authorized_access_point": "Lactamantibiotikum (beta-)"} 1 +2024-09-10 15:46:33.720046 2024-09-10 15:46:33.720049 6fa667bc-ce36-476b-8259-7c139ccdb107 {"md5": "de0605dab5d2399ad4c013b72bb8dcc5", "pid": "04165725X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Kriminalfall&oldid=201807873"], "noteType": "dataSource"}, {"label": ["für populärwiss., quasiliterarische Darstellungen von Kriminalfällen, ansonsten wird Straftat benutzt; nicht zusätzlich f Fallsammlung. Bei belletrist. Darstellungen nicht-permutierendes USW nach Geographikum"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4165725-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4165725-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04165725X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4165725-1", "source": "GND"}], "authorized_access_point": "Kriminalfall"} 1 +2024-09-10 15:46:33.776982 2024-09-10 15:46:33.776985 a0ec1d9d-a61e-44b9-8924-a1a814f3a40f {"md5": "9ce3cb14f28a3c59fe18aa15d114dda1", "pid": "041656032", "note": [{"label": ["Benutzt für das deutsche und internationale Recht, für das österreichische Recht benutze Stadt mit eigenem Statut"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Stadt"}], "related": [{"authorized_access_point": "Große Kreisstadt"}, {"authorized_access_point": "Stadt mit eigenem Statut"}], "identifier": "http://d-nb.info/gnd/4165603-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4165603-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041656032", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4165603-9", "source": "GND"}], "variant_access_point": ["Stadtkreis (Kreisfreie Stadt)"], "authorized_access_point": "Kreisfreie Stadt"} 1 +2024-09-10 15:46:33.839741 2024-09-10 15:46:33.839745 521c4875-38a5-4e87-aa28-6198181668ea {"md5": "22a95906022a6fb005d2d8b63ef732e0", "pid": "041655974", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kompass"}], "related": [{"authorized_access_point": "Kreiselgerät"}], "identifier": "http://d-nb.info/gnd/4165597-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4165597-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041655974", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4165597-7", "source": "GND"}], "authorized_access_point": "Kreiselkompass"} 1 +2024-09-10 15:46:35.257002 2024-09-10 15:46:35.257006 833a78f5-f1e2-4644-99aa-45fe0940f95a {"md5": "d75b712b44cb1a2d2025774df1d35fbf", "pid": "041570103", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Stereotyp"}], "identifier": "http://d-nb.info/gnd/4157010-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4157010-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041570103", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4157010-8", "source": "GND"}], "variant_access_point": ["Geschlechtsstereotyp", "Geschlechterrolle", "Geschlechterklischee"], "authorized_access_point": "Geschlechterstereotyp"} 1 +2024-09-10 15:46:33.898997 2024-09-10 15:46:33.899001 8fc0e1a7-93ff-490d-9fdc-6a7c9d468f60 {"md5": "31f3ab4055d9e5e40fabf604331c3cf1", "pid": "041655168", "note": [{"label": ["Ab dem 1.1.2004 neue offizielle Berufsbezeichnung in Dtld: \\"Gesundheits- und Krankenpfleger\\". Vorher ausgebildete Pflegekräfte können wahlweise die alte oder die neue Berufsbezeichnung führen.", "Als Homonymenzusatz bei Personenschlagwörtern zugelassen."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Pflegepersonal"}], "related": [{"authorized_access_point": "Krankenschwester"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134065833", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85083530", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85083530"}], "authorized_access_point": "Male nurses"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134065833", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11980730", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11980730c"}], "authorized_access_point": "Infirmiers"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333273207", "source": "GND"}, {"type": "bf:Nbn", "value": "D009727", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D009727"}], "authorized_access_point": "Nurses, Male"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970566271", "source": "GND"}, {"type": "bf:Nbn", "value": "10045517", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10045517"}], "authorized_access_point": "Krankenpfleger"}], "identifier": "http://d-nb.info/gnd/4165516-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4165516-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041655168", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4165516-3", "source": "GND"}], "variant_access_point": ["Gesundheits- und Krankenpfleger", "Pflegefachmann"], "authorized_access_point": "Krankenpfleger"} 1 +2024-09-10 15:46:33.963672 2024-09-10 15:46:33.963676 3ebbe32e-dd97-453b-9416-4a0f18b90eb9 {"md5": "434fb2685eb5567584d865e4fa724a0b", "pid": "041654013", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4165401-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4165401-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041654013", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4165401-8", "source": "GND"}], "authorized_access_point": "Kovariante Darstellung"} 1 +2024-09-10 15:46:34.025141 2024-09-10 15:46:34.025144 dfa3c5df-d926-4561-9150-a3a5dd49b848 {"md5": "26fb209874fdbe5fe15a0f037e27b9c1", "pid": "041653386", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Linguistik"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134838050", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2006006393", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2006006393"}], "authorized_access_point": "Corpora (Linguistics)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134838050", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF15997252", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb15997252r"}], "authorized_access_point": "Corpus linguistique"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254451552", "source": "GND"}, {"type": "bf:Nbn", "value": "XX4874758", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX4874758"}], "authorized_access_point": "Corpora (Lingüística)"}], "identifier": "http://d-nb.info/gnd/4165338-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4165338-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041653386", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4165338-5", "source": "GND"}], "variant_access_point": ["Korpus (Sprachwissenschaft)", "Corpus (Linguistik)", "Korpuslinguistik", "Textkorpus"], "authorized_access_point": "Korpus (Linguistik)"} 1 +2024-09-10 15:46:34.084357 2024-09-10 15:46:34.084361 32e86537-5ac8-48e9-8747-575e12e2af6f {"md5": "d7f3cfb532b90d2409091ff93ce40f5e", "pid": "041647459", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Partisan"}, {"authorized_access_point": "Widerstand"}, {"authorized_access_point": "Nichtkombattant"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134295294", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85028799", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85028799"}], "authorized_access_point": "Combatants and noncombatants (International law)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134295294", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12364444", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12364444w"}], "authorized_access_point": "Combattants et non-combattants (droit international)"}], "identifier": "http://d-nb.info/gnd/4164745-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4164745-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041647459", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4164745-2", "source": "GND"}], "variant_access_point": ["Kriegsteilnehmer (Kombattant)"], "authorized_access_point": "Kombattant"} 1 +2024-09-10 15:46:34.14418 2024-09-10 15:46:34.144183 18ea13ba-82ae-4c18-a095-3e5c86ab0859 {"md5": "aebe88bff5f76ab442c8cfc0dd397858", "pid": "041637763", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zelle"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134130406", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85072328", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85072328"}], "authorized_access_point": "Killer cells"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134130406", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12046164", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb120461647"}], "authorized_access_point": "Cellules K (lymphocytes)"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336594861", "source": "GND"}, {"type": "bf:Nbn", "value": "D013602", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D013602"}], "authorized_access_point": "T-Lymphocytes, Cytotoxic"}], "identifier": "http://d-nb.info/gnd/4163776-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4163776-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041637763", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4163776-8", "source": "GND"}], "variant_access_point": ["K-Zelle", "Cytotoxische Zelle", "Zytotoxische Zelle", "Zytotoxischer T-Lymphozyt", "Cytotoxischer T-Lymphozyt"], "authorized_access_point": "Killerzelle"} 1 +2024-09-10 15:46:34.215982 2024-09-10 15:46:34.215991 d6837965-e5b8-4d53-954e-43d439c688b7 {"md5": "afa127386b72b4394b58c7947d55d97c", "pid": "041636422", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336587253", "source": "GND"}, {"type": "bf:Nbn", "value": "D048750", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D048750"}], "authorized_access_point": "Cell Nucleus Division"}], "identifier": "http://d-nb.info/gnd/4163642-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4163642-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041636422", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4163642-9", "source": "GND"}], "authorized_access_point": "Kernteilung"} 1 +2024-09-10 15:46:34.351091 2024-09-10 15:46:34.351095 e7eef7c1-775a-497c-ae08-679c56fbe040 {"md5": "3e338f784c1cc185e7f8a7f048099ca0", "pid": "041616715", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134028997", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85066293", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85066293"}], "authorized_access_point": "Information theory in economics"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134028997", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11972022", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119720223"}], "authorized_access_point": "Information, Théorie de l' en économie politique"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966782380", "source": "GND"}, {"type": "bf:Nbn", "value": "10141-4", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/10141-4"}], "authorized_access_point": "Informationsökonomik"}], "identifier": "http://d-nb.info/gnd/4161671-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4161671-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041616715", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4161671-6", "source": "GND"}], "variant_access_point": ["Informationsökonomik"], "authorized_access_point": "Informationsökonomie"} 1 +2024-09-10 15:46:34.414533 2024-09-10 15:46:34.414536 4979492d-1164-4a74-8e90-b62351bd1f66 {"md5": "0b33da29f7f520e8e0b80773d06a8e7e", "pid": "041614909", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134150776", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85064859", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85064859"}], "authorized_access_point": "Index numbers (Economics)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134150776", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12076887", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12076887f"}], "authorized_access_point": "Indices (économie politique)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254442901", "source": "GND"}, {"type": "bf:Nbn", "value": "XX533854", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX533854"}], "authorized_access_point": "Números índices (Economía)"}], "identifier": "http://d-nb.info/gnd/4161490-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4161490-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041614909", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4161490-2", "source": "GND"}], "variant_access_point": ["Indexziffer", "Statistische Kennziffer", "Aggregatindex", "Generalindex", "Zusammengesetzte Indexzahl"], "authorized_access_point": "Indexzahl"} 1 +2024-09-10 15:46:34.480534 2024-09-10 15:46:34.480538 2327f4fd-bd2d-4b2e-83ac-39ec6991e957 {"md5": "e09c65b3d550aa68628670fe135ef757", "pid": "041614836", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Index&oldid=232182921"], "noteType": "dataSource"}, {"label": ["Nicht im Sinne von Register zu verwenden! Als Formschlagwort verwende f Bibliographie, f Konkordanz oder f Verzeichnis."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966779029", "source": "GND"}, {"type": "bf:Nbn", "value": "15082-4", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/15082-4"}], "authorized_access_point": "Index"}], "identifier": "http://d-nb.info/gnd/4161483-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4161483-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041614836", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4161483-5", "source": "GND"}], "authorized_access_point": "Index"} 1 +2024-09-10 15:46:34.54658 2024-09-10 15:46:34.546585 45d2442b-917b-45a1-802f-f98c3f295b6c {"md5": "be628c63bf77ed4382175f63686fa144", "pid": "041613872", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zelle"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133713416", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85064551", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85064551"}], "authorized_access_point": "Immunocompetent cells"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133713416", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12049642", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb120496421"}], "authorized_access_point": "Cellules immunocompétentes"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)125439608X", "source": "GND"}, {"type": "bf:Nbn", "value": "67680", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/67680"}], "authorized_access_point": "Cellule immunocompetenti"}], "identifier": "http://d-nb.info/gnd/4161387-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4161387-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041613872", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4161387-9", "source": "GND"}], "variant_access_point": ["Immunzelle", "Immunkompetente Zelle", "Immunocyt", "Abwehrzelle"], "authorized_access_point": "Immunozyt"} 1 +2024-09-10 15:46:34.620733 2024-09-10 15:46:34.620736 3eb587ba-18d7-4e57-bae1-7149785ddfa6 {"md5": "cafc154306f7d9d87d49d27bf33e22c8", "pid": "041613597", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zelle"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134245610", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85064524", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85064524"}], "authorized_access_point": "Immobilized cells"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134245610", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12266500", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12266500v"}], "authorized_access_point": "Cellules immobilisées"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336593954", "source": "GND"}, {"type": "bf:Nbn", "value": "D018914", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D018914"}], "authorized_access_point": "Cells, Immobilized"}], "identifier": "http://d-nb.info/gnd/4161359-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4161359-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041613597", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4161359-4", "source": "GND"}], "authorized_access_point": "Immobilisierte Zelle"} 1 +2024-09-10 15:46:34.807598 2024-09-10 15:46:34.807602 7b0735d8-7234-4224-89f7-94a974359662 {"md5": "b9b2c59840faee580edec73e664784cc", "pid": "041597508", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134667248", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85060545", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85060545"}], "authorized_access_point": "Heteroscedasticity"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966774140", "source": "GND"}, {"type": "bf:Nbn", "value": "15362-5", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/15362-5"}], "authorized_access_point": "Heteroskedastizität"}], "identifier": "http://d-nb.info/gnd/4159750-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4159750-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041597508", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4159750-3", "source": "GND"}], "variant_access_point": ["Heterogenität der Varianzen", "Heteroskedastie", "Heteroskedasticity"], "authorized_access_point": "Heteroskedastizität"} 1 +2024-09-10 15:46:34.868914 2024-09-10 15:46:34.868917 4f9ef989-1c16-4b36-a0f1-ed880a845ec7 {"md5": "c4c878753864a59eec2d962734d920f4", "pid": "041594800", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Installateurhandwerk"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113460808X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11979039", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11979039h"}], "authorized_access_point": "Chauffagistes"}], "identifier": "http://d-nb.info/gnd/4159480-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4159480-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041594800", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4159480-0", "source": "GND"}], "variant_access_point": ["Heizungsinstallateurhandwerk", "Heizungsinstallation", "Heizungsinstallation"], "authorized_access_point": "Heizungshandwerk"} 1 +2024-09-10 15:46:34.948746 2024-09-10 15:46:34.948749 3d605c95-ea75-4d09-a4c9-5510e917d1b7 {"md5": "4270d91b4bd3be2c57e787b9b12b1503", "pid": "041591267", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4159126-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4159126-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041591267", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4159126-4", "source": "GND"}], "variant_access_point": ["Fourier-Synthese"], "authorized_access_point": "Harmonische Synthese"} 1 +2024-09-10 15:46:35.008382 2024-09-10 15:46:35.008385 1f5b642e-3a6c-42cf-a831-1098603974cd {"md5": "684fde101809f95ce7ad843d2da79b4b", "pid": "041585623", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Streichinstrument"}], "related": [{"authorized_access_point": "Guslar"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134816634", "source": "GND"}, {"type": "bf:Nbn", "value": "sh92005165", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh92005165"}], "authorized_access_point": "Gusle"}], "identifier": "http://d-nb.info/gnd/4158562-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4158562-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041585623", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4158562-8", "source": "GND"}], "variant_access_point": ["Gusla", "Lahuta"], "authorized_access_point": "Gusle"} 1 +2024-09-10 15:46:35.071362 2024-09-10 15:46:35.071365 fb3c4529-a8a5-4ed4-a78c-ac6d5576907f {"md5": "4511f976ded37b0809f1f63f9dfee2e0", "pid": "041584929", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4158492-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4158492-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041584929", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4158492-2", "source": "GND"}], "variant_access_point": ["Guanidin"], "authorized_access_point": "Guanidinderivate"} 1 +2024-09-10 15:46:35.130697 2024-09-10 15:46:35.130701 7ea8ecfd-5a8f-4e1e-8612-7f87b7b18719 {"md5": "2bf1565a22e7ecdcef2cb8b97dfb6aff", "pid": "041582667", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schöllkraut"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134488254", "source": "GND"}, {"type": "bf:Nbn", "value": "sh96009459", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh96009459"}], "authorized_access_point": "Greater celandine"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134488254", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF15018776", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb150187765"}], "authorized_access_point": "Chelidonium majus"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336585765", "source": "GND"}, {"type": "bf:Nbn", "value": "D000097563", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D000097563"}], "authorized_access_point": "Chelidonium majus"}], "identifier": "http://d-nb.info/gnd/4158266-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4158266-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041582667", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4158266-4", "source": "GND"}], "variant_access_point": ["Chelidonium majus"], "authorized_access_point": "Großes Schöllkraut"} 1 +2024-09-10 15:46:35.193597 2024-09-10 15:46:35.1936 374e251a-4f1e-4ed3-9510-a53f2ca2edb8 {"md5": "8a6477908733a4565bfb58704c0b94e2", "pid": "041570170", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zelle"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134267150", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85052973", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85052973"}], "authorized_access_point": "Gametes"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134267150", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12307257", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb123072575"}], "authorized_access_point": "Gamètes"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254362177", "source": "GND"}, {"type": "bf:Nbn", "value": "30877", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/30877"}], "authorized_access_point": "Gameti"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)125621535X", "source": "GND"}, {"type": "bf:Nbn", "value": "3185", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_3185"}], "authorized_access_point": "gametes"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133659358X", "source": "GND"}, {"type": "bf:Nbn", "value": "D005854", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D005854"}], "authorized_access_point": "Germ Cells"}], "identifier": "http://d-nb.info/gnd/4157017-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4157017-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041570170", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4157017-0", "source": "GND"}], "variant_access_point": ["Fortpflanzungszelle", "Geschlechtszelle", "Keimzelle", "Germ cell"], "authorized_access_point": "Gamet"} 1 +2024-09-10 15:46:35.329286 2024-09-10 15:46:35.32929 d18130a3-1179-4359-9d0e-7675da8c299d {"md5": "277023be362d238c4f132acc4c97fab9", "pid": "041565568", "note": [{"label": ["Zusammengehörigkeitsgefühl einer Gruppe (Familie, Gemeinde, Staat), das sich als Handlungsbereitschaft zugunsten des Gemeinwohls äußert", "Für Gemeinsinn im Sinne des gesunden Menschenverstands verwende Commonsense"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Common Sense"}, {"authorized_access_point": "Gemeinwohl"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134032072", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85026301", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85026301"}], "authorized_access_point": "Civics"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134032072", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11973413", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11973413g"}], "authorized_access_point": "Civisme"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254341242", "source": "GND"}, {"type": "bf:Nbn", "value": "15328", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/15328"}], "authorized_access_point": "Educazione civica"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254433783", "source": "GND"}, {"type": "bf:Nbn", "value": "XX532612", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX532612"}], "authorized_access_point": "Civismo"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)983460760", "source": "GND"}, {"type": "bf:Nbn", "value": "10044951", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10044951"}], "authorized_access_point": "Gemeinsinn"}], "identifier": "http://d-nb.info/gnd/4156556-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4156556-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041565568", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4156556-3", "source": "GND"}], "authorized_access_point": "Gemeinsinn"} 1 +2024-09-10 15:46:35.398127 2024-09-10 15:46:35.398132 a622a24e-4a7c-4eff-afff-022afa2b9323 {"md5": "8aacd9b365ccccfd22313167373b56be", "pid": "041563247", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Psychische Folter"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133910483", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85016371", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85016371"}], "authorized_access_point": "Brainwashing"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133910483", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11932235", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119322355"}], "authorized_access_point": "Lavage de cerveau"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254386882", "source": "GND"}, {"type": "bf:Nbn", "value": "54518", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/54518"}], "authorized_access_point": "Lavaggio del cervello"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254433295", "source": "GND"}, {"type": "bf:Nbn", "value": "XX535656", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX535656"}], "authorized_access_point": "Lavado de cerebro"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336052236", "source": "GND"}, {"type": "bf:Nbn", "value": "D000096965", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D000096965"}], "authorized_access_point": "Brainwashing"}], "identifier": "http://d-nb.info/gnd/4156324-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4156324-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041563247", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4156324-4", "source": "GND"}], "variant_access_point": ["Brainwashing", "Mentizid"], "authorized_access_point": "Gehirnwäsche"} 1 +2024-09-10 15:46:35.483057 2024-09-10 15:46:35.483063 c058bf28-6a43-4746-9a9f-9763f732bded {"md5": "916036193f14c5721835e380f33fa82d", "pid": "041553128", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Freihandel"}], "related": [{"authorized_access_point": "Zollunion"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966749707", "source": "GND"}, {"type": "bf:Nbn", "value": "10612-5", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/10612-5"}], "authorized_access_point": "Freihandelsabkommen"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970551126", "source": "GND"}, {"type": "bf:Nbn", "value": "10041435", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10041435"}], "authorized_access_point": "Freihandelszone"}], "identifier": "http://d-nb.info/gnd/4155312-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4155312-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041553128", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4155312-3", "source": "GND"}], "variant_access_point": ["Freihandelsgebiet"], "authorized_access_point": "Freihandelszone"} 1 +2024-09-10 15:46:35.564683 2024-09-10 15:46:35.564688 56fa343f-5f5c-4693-a73f-ce7314af724e {"md5": "d233e1225755302057e92344c1894467", "pid": "041544323", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Handwerk"}], "identifier": "http://d-nb.info/gnd/4154432-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4154432-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041544323", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4154432-8", "source": "GND"}], "variant_access_point": ["Fingerhut", "Fingerhutherstellung"], "authorized_access_point": "Fingerhuthandwerk"} 1 +2024-09-10 15:46:35.625249 2024-09-10 15:46:35.625253 571d0907-8ad6-4421-a016-9646feee2742 {"md5": "c010deb6792f1fc150de7013792cce3f", "pid": "041542436", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zelle"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133663443", "source": "GND"}, {"type": "bf:Nbn", "value": "sh86006585", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh86006585"}], "authorized_access_point": "Fat cells"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133663443", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11964829", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119648290"}], "authorized_access_point": "Adipocytes"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254378154", "source": "GND"}, {"type": "bf:Nbn", "value": "45155", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/45155"}], "authorized_access_point": "Cellule adipose"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336593458", "source": "GND"}, {"type": "bf:Nbn", "value": "D017667", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D017667"}], "authorized_access_point": "Adipocytes"}], "identifier": "http://d-nb.info/gnd/4154243-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4154243-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041542436", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4154243-5", "source": "GND"}], "variant_access_point": ["Adipozyt", "Adipocyt"], "authorized_access_point": "Fettzelle"} 1 +2024-09-10 15:46:35.686881 2024-09-10 15:46:35.686884 3abbc441-492e-429d-b159-7443dbafe76f {"md5": "a2240817e621ffb6ac432c71478d7bd0", "pid": "041534646", "note": [{"label": ["Ausbildungsberuf DDR"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Transport- und Logistikberuf"}], "related": [{"authorized_access_point": "Fachkraft für Brief- und Frachtverkehr"}], "identifier": "http://d-nb.info/gnd/4153464-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4153464-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041534646", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4153464-5", "source": "GND"}], "authorized_access_point": "Facharbeiter für Betrieb und Verkehr des Post- und Zeitungswesens"} 1 +2024-09-10 15:46:35.746364 2024-09-10 15:46:35.746368 633d041a-44dd-4ca1-a960-d2d42ab4b33b {"md5": "80fba4cf6ea804801f7e476f35661ecd", "pid": "041531426", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zelle"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133723098", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85045546", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85045546"}], "authorized_access_point": "Eukaryotic cells"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133723098", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12120745", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12120745x"}], "authorized_access_point": "Cellules eucaryotes"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254365168", "source": "GND"}, {"type": "bf:Nbn", "value": "33108", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/33108"}], "authorized_access_point": "Cellule eucariotiche"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254426426", "source": "GND"}, {"type": "bf:Nbn", "value": "XX4865884", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX4865884"}], "authorized_access_point": "Células eucariotas"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336593288", "source": "GND"}, {"type": "bf:Nbn", "value": "D005057", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D005057"}], "authorized_access_point": "Eukaryotic Cells"}], "identifier": "http://d-nb.info/gnd/4153142-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4153142-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041531426", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4153142-5", "source": "GND"}], "variant_access_point": ["Eukaryotische Zelle"], "authorized_access_point": "Eukaryontische Zelle"} 1 +2024-09-10 15:46:35.809512 2024-09-10 15:46:35.809515 9899032e-f980-4b4c-9374-1588f5b1114c {"md5": "b4a60f7bc334c322b950d3ce2300924f", "pid": "04152697X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Raffinerie"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133976077", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85100456", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85100456"}], "authorized_access_point": "Petroleum refineries"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133976077", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11951091", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119510918"}], "authorized_access_point": "Pétrole - Raffineries"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254425543", "source": "GND"}, {"type": "bf:Nbn", "value": "XX526288", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX526288"}], "authorized_access_point": "Refinerías de petróleo"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966734238", "source": "GND"}, {"type": "bf:Nbn", "value": "19427-4", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/19427-4"}], "authorized_access_point": "Erdölraffinerie"}], "identifier": "http://d-nb.info/gnd/4152697-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4152697-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04152697X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4152697-1", "source": "GND"}], "variant_access_point": ["Ölraffinerie"], "authorized_access_point": "Erdölraffinerie"} 1 +2024-09-10 15:46:35.870395 2024-09-10 15:46:35.870398 6f0a9b9f-0ccf-4e86-a551-b0591c5fb0dc {"md5": "68c7e34925955810ce4bf6e0985af86c", "pid": "041523393", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zelle"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133659313X", "source": "GND"}, {"type": "bf:Nbn", "value": "D004759", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D004759"}], "authorized_access_point": "Enterochromaffin Cells"}], "identifier": "http://d-nb.info/gnd/4152339-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4152339-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041523393", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4152339-8", "source": "GND"}], "variant_access_point": ["Ciaccio-Zelle", "Kultschitsky-Zelle", "Schmidt-Zelle"], "authorized_access_point": "Enterochromaffine Zelle"} 1 +2024-09-10 15:46:35.936417 2024-09-10 15:46:35.936421 000d2800-3347-46a1-9c1a-a8a7c509e48d {"md5": "de97f92459d91b9774021db0ef1d8f2a", "pid": "041523318", "note": [{"label": ["Gegner der Mittelmächte im 1.Weltkrieg"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Erster Weltkrieg"}], "identifier": "http://d-nb.info/gnd/4152331-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4152331-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041523318", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4152331-3", "source": "GND"}], "authorized_access_point": "Entente"} 1 +2024-09-10 15:46:35.998602 2024-09-10 15:46:35.998605 827a3408-592e-4fe8-b9b8-db12e952ee91 {"md5": "b41305efb5407c3605df6b42bd8d923d", "pid": "04151923X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kontaktloser Schalter"}], "identifier": "http://d-nb.info/gnd/4151923-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4151923-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04151923X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4151923-1", "source": "GND"}], "authorized_access_point": "Elektronischer Schalter"} 1 +2024-09-10 15:46:36.059806 2024-09-10 15:46:36.05981 4c543bdf-f54a-42a1-bb67-2ef8f4c1fcac {"md5": "1b730ac2fa2931c9633b0348b1fdb37c", "pid": "041518160", "note": [{"label": ["Ausbildungsberuf. Beruf im Elektrohandwerk bis zum 1. August 2004 .Die Berufsbezeichnung wurde durch Elektroniker - Fachrichtung Energie- und Gebäudetechnik ersetzt."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Handwerklicher Elektroberuf"}], "related": [{"authorized_access_point": "Elektriker"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113452689X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85042064", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85042064"}], "authorized_access_point": "Electricians"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113452689X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11954085", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119540852"}], "authorized_access_point": "Électriciens"}], "identifier": "http://d-nb.info/gnd/4151816-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4151816-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041518160", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4151816-0", "source": "GND"}], "variant_access_point": ["Elektromonteur"], "authorized_access_point": "Elektroinstallateur"} 1 +2024-09-10 15:46:36.125716 2024-09-10 15:46:36.125719 d71110ad-e0db-41a7-ac6c-28689119c067 {"md5": "28de46e1a083bbba6dde74562cb77574", "pid": "041516613", "note": [{"label": ["Für die Personifikation der Kirche und begriffsgeschichtliche Untersuchungen", "Ansonsten benutze SW Kirche, für die Kunst SW s Ekklesia und Synagoge (daneben p Synagoge !), für die altgriech. Ekklesia in Athen SW Athen / Volksversammlung", "Ohne HZ Motiv"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}, {"authorized_access_point": "Fiktive Gestalt"}], "related": [{"authorized_access_point": "Kirche"}, {"authorized_access_point": "Ekklesia und Synagoge"}], "identifier": "http://d-nb.info/gnd/4151661-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4151661-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041516613", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4151661-8", "source": "GND"}], "variant_access_point": ["Ecclesia (Personifikation)", "Ekklesia (Personifikation)"], "authorized_access_point": "Ekklesia"} 1 +2024-09-10 15:46:36.195195 2024-09-10 15:46:36.195199 0f0f791a-58e4-4cd9-95f0-f90342b0c5c0 {"md5": "01fd412b80b89b1b605ff5f7bc86bd33", "pid": "041515420", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Hüttenwerk"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133705723", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85068240", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85068240"}], "authorized_access_point": "Iron-works"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133705723", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12010434", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb120104342"}], "authorized_access_point": "Usines sidérurgiques"}], "identifier": "http://d-nb.info/gnd/4151542-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4151542-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041515420", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4151542-0", "source": "GND"}], "variant_access_point": ["Eisenhütte"], "authorized_access_point": "Eisenhüttenwerk"} 1 +2024-09-10 15:46:36.269255 2024-09-10 15:46:36.269261 098ba4c0-ad1a-4b8a-911c-38e4beb5d364 {"md5": "bde29f3ba62de17cdbefc0645d5a66b2", "pid": "041512820", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Umsatzsteuer"}], "identifier": "http://d-nb.info/gnd/4151282-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4151282-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041512820", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4151282-0", "source": "GND"}], "authorized_access_point": "Einfuhrumsatzsteuer"} 1 +2024-09-10 15:46:36.327992 2024-09-10 15:46:36.327996 4bd44d49-4f36-4b95-aefc-9488a1d9a4fa {"md5": "e0e903871086e2aa1882c67db6b71f12", "pid": "041509412", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gebissanomalie"}], "identifier": "http://d-nb.info/gnd/4150941-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4150941-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041509412", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4150941-9", "source": "GND"}], "variant_access_point": ["Fehlbiss", "Kieferfehlstellung", "Zahnfehlstellung"], "authorized_access_point": "Dysgnathie"} 1 +2024-09-10 15:46:36.387624 2024-09-10 15:46:36.387627 cb79f0b0-4ee5-4d35-9235-5ab705df92f1 {"md5": "1c90bea72774231e038686b3911f9582", "pid": "041505336", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4150533-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4150533-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041505336", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4150533-5", "source": "GND"}], "authorized_access_point": "Drahtweberei"} 1 +2024-09-10 15:46:36.449794 2024-09-10 15:46:36.449797 ff7ebc35-df8c-4f7c-a214-a98ec8fb15e6 {"md5": "acbe67ed0e6a0070b84921e8066a40d4", "pid": "041505077", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Dozentin"}, {"authorized_access_point": "Lehrer"}], "identifier": "http://d-nb.info/gnd/4150507-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4150507-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041505077", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4150507-4", "source": "GND"}], "authorized_access_point": "Dozent"} 1 +2024-09-10 15:46:36.513279 2024-09-10 15:46:36.513286 3367fdc8-0640-46bb-b37f-bc2003df6045 {"md5": "ccb33df5658c8c53d4efcc7dc051dd10", "pid": "04150335X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4150335-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4150335-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04150335X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4150335-1", "source": "GND"}], "authorized_access_point": "DMS 77"} 1 +2024-09-10 15:46:36.571195 2024-09-10 15:46:36.571197 339f14dc-bb89-485f-8033-788252482ff6 {"md5": "90a1e272bc6f12841cbf3504e700a827", "pid": "041502264", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gebissanomalie"}, {"authorized_access_point": "Okklusionsstörung"}], "identifier": "http://d-nb.info/gnd/4150226-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4150226-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041502264", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4150226-7", "source": "GND"}], "variant_access_point": ["Distalbisslage", "Rückbiss"], "authorized_access_point": "Distalbiss"} 1 +2024-09-10 15:46:36.631938 2024-09-10 15:46:36.631942 c826c580-da09-48e9-a398-df4b8896d016 {"md5": "02ae47c53573d1dc07e4148b4e43a55c", "pid": "041487109", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134759355", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2011005416", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2011005416"}], "authorized_access_point": "Cytometry"}], "identifier": "http://d-nb.info/gnd/4148710-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4148710-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041487109", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4148710-2", "source": "GND"}], "variant_access_point": ["Zytometrie"], "authorized_access_point": "Cytometrie"} 1 +2024-09-10 15:46:36.701123 2024-09-10 15:46:36.701128 20f81178-d0e2-4fc9-b3ce-fb19f4b025f9 {"md5": "92b3f3cae77c71eeccf76b08c8773ad0", "pid": "041477936", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133691196", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85024536", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85024536"}], "authorized_access_point": "Chlorides"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133691196", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11980514", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11980514k"}], "authorized_access_point": "Chlorures"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)125436451X", "source": "GND"}, {"type": "bf:Nbn", "value": "32686", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/32686"}], "authorized_access_point": "Cloruri"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254416927", "source": "GND"}, {"type": "bf:Nbn", "value": "XX4724682", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX4724682"}], "authorized_access_point": "Cloruros"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336148934", "source": "GND"}, {"type": "bf:Nbn", "value": "D002712", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D002712"}], "authorized_access_point": "Chlorides"}], "identifier": "http://d-nb.info/gnd/4147793-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4147793-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041477936", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4147793-5", "source": "GND"}], "authorized_access_point": "Chloride"} 1 +2024-09-10 15:46:37.228344 2024-09-10 15:46:37.228348 1ebc8040-3d9b-4b01-89a6-12b4387a3eec {"md5": "f8f3cc6330d292d3afc2235261ba30da", "pid": "041466365", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bromverbindungen"}, {"authorized_access_point": "Chloride"}], "identifier": "http://d-nb.info/gnd/4146636-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4146636-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041466365", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4146636-6", "source": "GND"}], "authorized_access_point": "Bromchlorid"} 1 +2024-09-10 15:46:36.768975 2024-09-10 15:46:36.76898 975d7e76-5c5b-419b-8fae-71fc8758ab0f {"md5": "40a46c7463781bdd07fede4aa4caf277", "pid": "041470966", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zelle"}, {"authorized_access_point": "Langerhans-Inseln"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134611005", "source": "GND"}, {"type": "bf:Nbn", "value": "sh89006279", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh89006279"}], "authorized_access_point": "Pancreatic beta cells"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134611005", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF15054295", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb15054295x"}], "authorized_access_point": "Cellules bêta"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336592893", "source": "GND"}, {"type": "bf:Nbn", "value": "D050417", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D050417"}], "authorized_access_point": "Insulin-Secreting Cells"}], "identifier": "http://d-nb.info/gnd/4147096-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4147096-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041470966", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4147096-5", "source": "GND"}], "variant_access_point": ["Beta-Zelle (Bauchspeicheldrüse)"], "authorized_access_point": "B-Zelle"} 1 +2024-09-10 15:46:36.848847 2024-09-10 15:46:36.848853 3cb2ebbb-2afa-4766-8cf5-63f279c62066 {"md5": "266d418b6f1095ae6126ff5ef1dc6c7b", "pid": "041470044", "note": [{"label": ["Sofern unterirdische Anlage verknüpfe ggf. mit Unterirdisches Bauwerk"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schutzbau"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134839286", "source": "GND"}, {"type": "bf:Nbn", "value": "sh97000842", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh97000842"}], "authorized_access_point": "Bunkers (Fortification)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134839286", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF15517575", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb15517575w"}], "authorized_access_point": "Casemates"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)125620028X", "source": "GND"}, {"type": "bf:Nbn", "value": "907", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_907"}], "authorized_access_point": "bins"}], "identifier": "http://d-nb.info/gnd/4147004-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4147004-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041470044", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4147004-7", "source": "GND"}], "variant_access_point": ["Schutzbunker", "Luftschutzbunker"], "authorized_access_point": "Bunker"} 1 +2024-09-10 15:46:36.929399 2024-09-10 15:46:36.929403 54b855a3-1fa4-4c09-8ead-2ad5479c8601 {"md5": "f26bb1dc8344300c2042faa93691225d", "pid": "04146768X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Mamma"}], "identifier": "http://d-nb.info/gnd/4146768-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4146768-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04146768X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4146768-1", "source": "GND"}], "variant_access_point": ["Papilla mammae", "Mamillae"], "authorized_access_point": "Brustwarze"} 1 +2024-09-10 15:46:37.009873 2024-09-10 15:46:37.009876 9497cdc1-96ed-43e7-9b49-9fbb3537ecd8 {"md5": "b1d9810d27037c1217d8d9de8fc2028a", "pid": "041467612", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Milchdrüsenkrankheit"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133820808", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12521464", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb125214649"}], "authorized_access_point": "Mammite"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1241594635", "source": "GND"}, {"type": "bf:Nbn", "value": "D008413", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D008413"}], "authorized_access_point": "Mastitis"}], "identifier": "http://d-nb.info/gnd/4146761-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4146761-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041467612", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4146761-9", "source": "GND"}], "variant_access_point": ["Mastitis"], "authorized_access_point": "Brustdrüsenentzündung"} 1 +2024-09-10 15:46:37.131106 2024-09-10 15:46:37.13111 214fb374-a4ba-4306-8513-9dad2e0c7929 {"md5": "4b3bc136d6aec8c3e043cc7403fc0c04", "pid": "041466578", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134237138", "source": "GND"}, {"type": "bf:Nbn", "value": "sh90006056", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh90006056"}], "authorized_access_point": "Bromine compounds"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134237138", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12258979", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12258979h"}], "authorized_access_point": "Brome - Composés"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254414592", "source": "GND"}, {"type": "bf:Nbn", "value": "XX4577821", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX4577821"}], "authorized_access_point": "Bromo - Compuestos"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336148985", "source": "GND"}, {"type": "bf:Nbn", "value": "D017605", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D017605"}], "authorized_access_point": "Bromine Compounds"}], "identifier": "http://d-nb.info/gnd/4146657-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4146657-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041466578", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4146657-3", "source": "GND"}], "authorized_access_point": "Bromverbindungen"} 1 +2024-09-10 15:46:37.297811 2024-09-10 15:46:37.297817 9c5a8a92-c703-4696-b0b6-e4a82ff47289 {"md5": "1553106be6903729ab190bc0b2b5f9dc", "pid": "041463692", "note": [{"label": ["B(OH)3"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Borverbindungen"}, {"authorized_access_point": "Säure"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133850944", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85015848", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85015848"}], "authorized_access_point": "Boric acid"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133850944", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13332324", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb133323241"}], "authorized_access_point": "Acide borique"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254349669", "source": "GND"}, {"type": "bf:Nbn", "value": "21199", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/21199"}], "authorized_access_point": "Acido borico"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336148675", "source": "GND"}, {"type": "bf:Nbn", "value": "D001888", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D001888"}], "authorized_access_point": "Boric Acids"}], "identifier": "http://d-nb.info/gnd/4146369-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4146369-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041463692", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4146369-9", "source": "GND"}], "authorized_access_point": "Borsäure"} 1 +2024-09-10 15:46:37.369617 2024-09-10 15:46:37.369621 93a970df-cdb4-499a-951f-195205bb1dc9 {"md5": "e205c5a11133fbf360eedb396f472aba", "pid": "041450809", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Betroffenheit&oldid=218691521"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)97053891X", "source": "GND"}, {"type": "bf:Nbn", "value": "10039038", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10039038"}], "authorized_access_point": "Betroffenheit"}], "identifier": "http://d-nb.info/gnd/4145080-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4145080-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041450809", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4145080-2", "source": "GND"}], "authorized_access_point": "Betroffenheit"} 1 +2024-09-10 15:46:37.443939 2024-09-10 15:46:37.443942 ede9067d-5494-4686-b324-9a604e49bf71 {"md5": "6045ac17497945a8235731b0db89867a", "pid": "041450469", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Unternehmensgröße"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334901856", "source": "GND"}, {"type": "bf:Nbn", "value": "sh99006010", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh99006010"}], "authorized_access_point": "Business enterprises--Size"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334901856", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF119783916", "source": "BNF"}, {"type": "uri", "value": "https://catalogue.bnf.fr/ark:/12148/cb119783916"}], "authorized_access_point": "Entreprises -- Dimension"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966703731", "source": "GND"}, {"type": "bf:Nbn", "value": "12038-1", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/12038-1"}], "authorized_access_point": "Betriebsgröße"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970538650", "source": "GND"}, {"type": "bf:Nbn", "value": "10038936", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10038936"}], "authorized_access_point": "Betriebsgröße"}], "identifier": "http://d-nb.info/gnd/4145046-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4145046-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041450469", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4145046-2", "source": "GND"}], "variant_access_point": ["Betrieb"], "authorized_access_point": "Betriebsgröße"} 1 +2024-09-10 15:46:37.516746 2024-09-10 15:46:37.51675 6e99ef05-e501-4b26-86aa-2b927ce76833 {"md5": "51f7f78a9699cf919697e606154eb154", "pid": "041446186", "note": [{"label": ["Bereitschaftsdienst liegt vor, wenn sich der Arbeitnehmer, ohne dass von ihm wache Aufmerksamkeit gefordert wird, für Zwecke des Betriebs an einer vom Arbeitgeber bestimmten Stelle innerhalb oder außerhalb des Betriebs aufzuhalten hat, damit er erforderlichenfalls seine volle Arbeitstätigkeit unverzüglich aufnehmen kann.", "Verknüpfe mit jeweiliger Berufsgruppe bzw. Institution"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4144618-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4144618-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041446186", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4144618-5", "source": "GND"}], "variant_access_point": ["Dienstbereitschaft"], "authorized_access_point": "Bereitschaftsdienst"} 1 +2024-09-10 15:46:37.582156 2024-09-10 15:46:37.582161 ec4f0f55-df33-4816-b896-2f284d533e74 {"md5": "21a712e406aa8118172ba3b094eeaf5c", "pid": "041444280", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zelle"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336590092", "source": "GND"}, {"type": "bf:Nbn", "value": "D010295", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D010295"}], "authorized_access_point": "Parietal Cells, Gastric"}], "identifier": "http://d-nb.info/gnd/4144428-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4144428-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041444280", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4144428-0", "source": "GND"}], "variant_access_point": ["Parietalzelle"], "authorized_access_point": "Belegzelle"} 1 +2024-09-10 15:46:37.668017 2024-09-10 15:46:37.66802 d11dfe1b-6dc7-4fb6-9d27-d1eb6b1216be {"md5": "8ddb4c82036a14cb252ae617497c2e61", "pid": "041439902", "note": [{"label": ["Traditionelles Handwerk, bei dem aus Weidengehölz Reifen für die Ummantelung von Holzfässern hergestellt wurden."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4143990-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4143990-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041439902", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4143990-9", "source": "GND"}], "authorized_access_point": "Bandreißer"} 1 +2024-09-10 15:46:37.731898 2024-09-10 15:46:37.731902 73059132-3452-41d1-9656-46b4d2202754 {"md5": "9a28bd17e4282d7f171bf523bbc7c8a1", "pid": "04143823X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134277539", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85010652", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85010652"}], "authorized_access_point": "Azo compounds"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134277539", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12327858", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12327858k"}], "authorized_access_point": "Composés azoïques"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)125436367X", "source": "GND"}, {"type": "bf:Nbn", "value": "31880", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/31880"}], "authorized_access_point": "Azocomposti"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336148179", "source": "GND"}, {"type": "bf:Nbn", "value": "D001391", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D001391"}], "authorized_access_point": "Azo Compounds"}], "identifier": "http://d-nb.info/gnd/4143823-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4143823-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04143823X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4143823-1", "source": "GND"}], "variant_access_point": ["Diazene"], "authorized_access_point": "Azoverbindungen"} 1 +2024-09-10 15:46:37.803484 2024-09-10 15:46:37.803487 9a4ce80f-4701-43d9-b0db-366fa67cfb3b {"md5": "35014fa9fae143cb2daa608d5d08f071", "pid": "041437896", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134250118", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85010647", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85010647"}], "authorized_access_point": "Azides"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134250118", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12269660", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12269660q"}], "authorized_access_point": "Azides"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254363505", "source": "GND"}, {"type": "bf:Nbn", "value": "31774", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/31774"}], "authorized_access_point": "Azidi"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336148233", "source": "GND"}, {"type": "bf:Nbn", "value": "D001386", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D001386"}], "authorized_access_point": "Azides"}], "identifier": "http://d-nb.info/gnd/4143789-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4143789-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041437896", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4143789-5", "source": "GND"}], "authorized_access_point": "Azide"} 1 +2024-09-10 15:46:37.863088 2024-09-10 15:46:37.863092 69cce0fc-8d13-4732-a4a7-92919627ab64 {"md5": "d4f7556724931502f03c3ec530432be5", "pid": "041431049", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133733697", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85007453", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85007453"}], "authorized_access_point": "Arsenic compounds"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133733697", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12204254", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb122042547"}], "authorized_access_point": "Arsenic - Composés"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254406646", "source": "GND"}, {"type": "bf:Nbn", "value": "XX4578267", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX4578267"}], "authorized_access_point": "Arsénico - Compuestos"}], "identifier": "http://d-nb.info/gnd/4143104-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4143104-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041431049", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4143104-2", "source": "GND"}], "authorized_access_point": "Arsenverbindungen"} 1 +2024-09-10 15:46:37.927367 2024-09-10 15:46:37.92737 a86e2453-2f92-451a-9aaa-0f0a8acce46b {"md5": "259b949b5f8b2ef7c02d50f15a342362", "pid": "04143028X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tanz"}], "identifier": "http://d-nb.info/gnd/4143028-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4143028-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04143028X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4143028-1", "source": "GND"}], "authorized_access_point": "Française"} 1 +2024-09-10 15:46:37.987958 2024-09-10 15:46:37.987961 5aa38a48-d340-4822-9134-0cc4b46f6113 {"md5": "9bfa95b2b73ef01dcffcfc21ac4ec62b", "pid": "04142641X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Anthracenone"}], "identifier": "http://d-nb.info/gnd/4142641-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4142641-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04142641X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4142641-1", "source": "GND"}], "variant_access_point": ["CAS 90-44-8", "Anthracenon (10H-Anthracen-9-on)"], "authorized_access_point": "Anthron"} 1 +2024-09-10 15:46:38.044746 2024-09-10 15:46:38.044749 3b51e6c1-3cc2-4740-8dbe-b5cb4aab498f {"md5": "499873b5b2c33629c3963da1d902b4fb", "pid": "04142574X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Plagioklas"}], "identifier": "http://d-nb.info/gnd/4142574-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4142574-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04142574X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4142574-1", "source": "GND"}], "variant_access_point": ["Kalkfeldspat", "Barsowit", "Beffanit", "Biotin (Anorthit)", "Calciklas", "Cyclopit", "Lindsayit", "Linseit", "Sundvikit", "Thjorsauit"], "authorized_access_point": "Anorthit"} 1 +2024-09-10 15:46:38.117482 2024-09-10 15:46:38.117486 cc1bba2a-e2e4-476e-a31d-2434b8bb8370 {"md5": "9df9bf6269d87501eddf3e4fe1802b23", "pid": "041424573", "note": [{"label": ["In Frankreich nach 1700 aus der Écossaise hervorgegangener höf. Tanz im schnellen 3/4-Takt"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Contredanse"}, {"authorized_access_point": "Française"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134818203", "source": "GND"}, {"type": "bf:Nbn", "value": "sh95008970", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh95008970"}], "authorized_access_point": "Anglaise (Dance)"}], "identifier": "http://d-nb.info/gnd/4142457-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4142457-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041424573", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4142457-8", "source": "GND"}], "variant_access_point": ["Inglesa"], "authorized_access_point": "Anglaise"} 1 +2024-09-10 15:46:38.203637 2024-09-10 15:46:38.203639 af94cdd4-d6b5-40ec-94dc-ada0b2345282 {"md5": "253d4cc1b8cb23874a4bd40cbaa8aaaf", "pid": "041424492", "note": [{"label": ["Gefässentwicklung im adulten Organismus"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Antiangiogenese"}, {"authorized_access_point": "Vaskularisation"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133719600", "source": "GND"}, {"type": "bf:Nbn", "value": "sh87002299", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh87002299"}], "authorized_access_point": "Neovascularization"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133719600", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12098723", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12098723t"}], "authorized_access_point": "Néovascularisation"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254390871", "source": "GND"}, {"type": "bf:Nbn", "value": "60283", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/60283"}], "authorized_access_point": "Angiogenesi"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254404511", "source": "GND"}, {"type": "bf:Nbn", "value": "XX554911", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX554911"}], "authorized_access_point": "Neovascularización"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336025522", "source": "GND"}, {"type": "bf:Nbn", "value": "D000096482", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D000096482"}], "authorized_access_point": "Angiogenesis"}], "identifier": "http://d-nb.info/gnd/4142449-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4142449-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041424492", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4142449-9", "source": "GND"}], "variant_access_point": ["Gefäßentwicklung"], "authorized_access_point": "Angiogenese"} 1 +2024-09-10 15:46:38.263913 2024-09-10 15:46:38.263918 dbef0a2b-eebe-44cc-82a5-56b72256627e {"md5": "74be592ad146e877088d72dc7b25c49b", "pid": "041422260", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133649602", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85004547", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85004547"}], "authorized_access_point": "Ammonium compounds"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133789382", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85004546", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85004546"}], "authorized_access_point": "Ammonium"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133789382", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12406920", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12406920p"}], "authorized_access_point": "Ammonium"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133649602", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11952913", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119529136"}], "authorized_access_point": "Ammonium - Composés"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254362606", "source": "GND"}, {"type": "bf:Nbn", "value": "31172", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/31172"}], "authorized_access_point": "Ammonio"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254403965", "source": "GND"}, {"type": "bf:Nbn", "value": "XX532312", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX532312"}], "authorized_access_point": "Amonio"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336148284", "source": "GND"}, {"type": "bf:Nbn", "value": "D064751", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D064751"}], "authorized_access_point": "Ammonium Compounds"}], "identifier": "http://d-nb.info/gnd/4142226-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4142226-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041422260", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4142226-0", "source": "GND"}], "variant_access_point": ["Ammoniumsalze", "Ammoniumion", "Ammonium"], "authorized_access_point": "Ammoniumverbindungen"} 1 +2024-09-10 15:46:38.3289 2024-09-10 15:46:38.328904 ad60e590-e79a-424a-a79e-72bbad9539f4 {"md5": "0b1afc05e4d23a6438f160e216c7a024", "pid": "041422058", "note": [{"label": ["Benutzt sowohl für die natürlich vorkommenden α-Aminosäuren als auch als OB für alle Aminosäuren, da man i.d.R. die α-Aminosäuren meint, wenn man von Aminosäuren spricht."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113395720X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85004486", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85004486"}], "authorized_access_point": "Amino acids"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113395720X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11944322", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11944322s"}], "authorized_access_point": "Acides aminés"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)125431508X", "source": "GND"}, {"type": "bf:Nbn", "value": "49", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/49"}], "authorized_access_point": "Aminoacidi"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254403892", "source": "GND"}, {"type": "bf:Nbn", "value": "XX525009", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX525009"}], "authorized_access_point": "Aminoácidos"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336147237", "source": "GND"}, {"type": "bf:Nbn", "value": "D000596", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D000596"}], "authorized_access_point": "Amino Acids"}], "identifier": "http://d-nb.info/gnd/4142205-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4142205-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041422058", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4142205-3", "source": "GND"}], "variant_access_point": ["Aminosäuren (alpha-)", "Aminocarbonsäuren", "Aminosäure", "Aminosäuren (L-)", "Aminosäuren (D-)"], "authorized_access_point": "Aminosäuren"} 1 +2024-09-10 15:46:38.395249 2024-09-10 15:46:38.395254 0e58eec4-7d03-4546-a3db-94b29290d6e6 {"md5": "9496ffc999c04753c1e5c587f513e062", "pid": "041419677", "note": [{"label": ["Eine Allgemeinverfügung ist ein Verwaltungsakt, der sich an einen nach allgemeinen Merkmalen bestimmten oder bestimmbaren Personenkreis richtet oder die öffentlich-rechtliche Eigenschaft einer Sache oder ihre Benutzung durch die Allgemeinheit betrifft."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Verwaltungsakt"}], "identifier": "http://d-nb.info/gnd/4141967-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4141967-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041419677", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4141967-4", "source": "GND"}], "authorized_access_point": "Allgemeinverfügung"} 1 +2024-09-10 15:46:38.45841 2024-09-10 15:46:38.458412 00e2fc4f-b98c-41b3-91de-544f9716495a {"md5": "d7714c38c098b70558653e0328b7b66e", "pid": "041411137", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Feuchtigkeit"}], "identifier": "http://d-nb.info/gnd/4141113-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4141113-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041411137", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4141113-4", "source": "GND"}], "authorized_access_point": "Absolute Feuchtigkeit"} 1 +2024-09-10 15:46:38.526583 2024-09-10 15:46:38.526591 6de857b8-9d24-48c6-bb1f-d0f8e5130e47 {"md5": "a81c1dcca72b74aa516e8d0d2dbd05fe", "pid": "041409965", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4140996-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4140996-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041409965", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4140996-6", "source": "GND"}], "variant_access_point": ["Abelsche Erweiterung von Körpern", "Kommutativer Körper"], "authorized_access_point": "Abelscher Körper"} 1 +2024-09-10 15:46:38.614266 2024-09-10 15:46:38.614308 f6e7e622-7977-4551-ba38-de7c1d3b60f8 {"md5": "6a3358933f017ea087c40cfec4b5e8f6", "pid": "041409760", "note": [{"label": ["Bildqualitätsmerkmal, mit der die Übereinstimmung zwischen Bild- und Objektgeometrie bewertet wird."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4140976-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4140976-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041409760", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4140976-0", "source": "GND"}], "authorized_access_point": "Abbildungstreue"} 1 +2024-09-10 15:46:38.699339 2024-09-10 15:46:38.699343 d866a850-f646-477d-a7bf-ad2c8c7397fe {"md5": "f434b7500bb5317a1da7861994af38c7", "pid": "041392450", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Vertrag"}, {"authorized_access_point": "Arztrecht"}], "identifier": "http://d-nb.info/gnd/4139245-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4139245-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041392450", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4139245-0", "source": "GND"}], "variant_access_point": ["Arzt", "Behandlungsvertrag"], "authorized_access_point": "Arztvertrag"} 1 +2024-09-10 15:46:38.757626 2024-09-10 15:46:38.757629 03d0b6db-b4fe-466c-8d69-b406be367118 {"md5": "bafd5bc7ba6fa3f7e844d8c57e0b4a31", "pid": "041388984", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4138898-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4138898-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041388984", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4138898-7", "source": "GND"}], "variant_access_point": ["Ersatzsicherheit"], "authorized_access_point": "Ersatzdeckung"} 1 +2024-09-10 15:46:38.816499 2024-09-10 15:46:38.816502 7f130a05-60bb-4243-878b-5d62c9ef71d0 {"md5": "63867a268133ec120bd009290bacb0fa", "pid": "041378407", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bauernhof"}], "identifier": "http://d-nb.info/gnd/4137840-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4137840-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041378407", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4137840-4", "source": "GND"}], "authorized_access_point": "Erbhof"} 1 +2024-09-10 15:46:38.952249 2024-09-10 15:46:38.952253 492ef386-2f8f-443b-b9e2-1251b853f004 {"md5": "4d554729d603ddcc6df47e07550f8f72", "pid": "041369785", "note": [{"label": ["Benutzt im Sinne von Bekleidung für eine Rolle (z.B. Filmausstattung); ggf. wird ein engeres Schlagwort verwendet, z.B. Theaterkostüm; nicht benutzt im Sinne der Kostümkunde, verwende hierfür Kleidung oder Tracht bzw. ein engeres Schlagwort wie z.B. Hofkleidung, Standestracht usw."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Verkleidung"}], "identifier": "http://d-nb.info/gnd/4136978-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4136978-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041369785", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4136978-6", "source": "GND"}], "authorized_access_point": "Kostüm"} 1 +2024-09-10 15:46:39.035188 2024-09-10 15:46:39.035192 3e4883a8-4ce0-4fc0-aac6-ec70da54e446 {"md5": "cb1a2fc64903bf15152661c4fd0a0875", "pid": "041368517", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Programm"}], "related": [{"authorized_access_point": "Frühwarnsystem"}, {"authorized_access_point": "Unternehmen"}], "identifier": "http://d-nb.info/gnd/4136851-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4136851-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041368517", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4136851-4", "source": "GND"}], "authorized_access_point": "FES (Programm)"} 1 +2024-09-10 15:46:39.102069 2024-09-10 15:46:39.102074 8380e7fe-bec3-48fe-b6e9-e8e4e0fc47af {"md5": "26ff1ec5418f2b8d10d9c5be923445d6", "pid": "041366352", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256213128", "source": "GND"}, {"type": "bf:Nbn", "value": "4679", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_4679"}], "authorized_access_point": "meat production"}], "identifier": "http://d-nb.info/gnd/4136635-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4136635-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041366352", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4136635-9", "source": "GND"}], "variant_access_point": ["Fleischerzeugung", "Fleisch"], "authorized_access_point": "Fleischproduktion"} 1 +2024-09-10 15:46:39.174402 2024-09-10 15:46:39.174406 74954381-c940-4044-ac84-3dc602dc550c {"md5": "f1acaf4ced887bf48b0a4498f1e1fe96", "pid": "041365844", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Gesundheitsfürsorge"}, {"authorized_access_point": "Präventivmedizin"}, {"authorized_access_point": "Prävention"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134497970", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85083162", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85083162"}], "authorized_access_point": "Medicine, Preventive"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134497970", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11932340", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119323401"}], "authorized_access_point": "Médecine préventive"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966764102", "source": "GND"}, {"type": "bf:Nbn", "value": "18892-3", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/18892-3"}], "authorized_access_point": "Gesundheitsvorsorge"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970554370", "source": "GND"}, {"type": "bf:Nbn", "value": "10045507", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10045507"}], "authorized_access_point": "Gesundheitsvorsorge"}], "identifier": "http://d-nb.info/gnd/4136584-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4136584-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041365844", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4136584-7", "source": "GND"}], "variant_access_point": ["Gesundheitsprävention"], "authorized_access_point": "Gesundheitsvorsorge"} 1 +2024-09-10 15:46:39.240247 2024-09-10 15:46:39.24025 d2666f28-32e3-4978-b978-25e5e9977fe4 {"md5": "35c691fe2487093e3c70807085155409", "pid": "041354710", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Handlung"}], "related": [{"authorized_access_point": "Affekt"}, {"authorized_access_point": "Affekttat"}], "identifier": "http://d-nb.info/gnd/4135471-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4135471-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041354710", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4135471-0", "source": "GND"}], "authorized_access_point": "Affekthandlung"} 1 +2024-09-10 15:46:39.325272 2024-09-10 15:46:39.325279 7f3872f8-c987-4f51-8bc4-938df0f982ba {"md5": "5acc3a20370a00a484bc2ff70f460a0e", "pid": "041345835", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ladungssicherung"}], "identifier": "http://d-nb.info/gnd/4134583-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4134583-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041345835", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4134583-6", "source": "GND"}], "variant_access_point": ["Niederzurren", "Festzurren"], "authorized_access_point": "Zurren"} 1 +2024-09-10 15:46:39.415266 2024-09-10 15:46:39.41527 6f197ee6-efb3-410a-9e51-7539d438dc5b {"md5": "5104be50efd926da64e362a17bc9253b", "pid": "04134166X", "note": [{"label": ["Internet Stand: 17.02.2020 - http://www.wirtschaftslexikon24.com/e/sanierungspr%C3%BCfung/sanierungspr%C3%BCfung.htm"], "noteType": "dataSource"}, {"label": ["Sanierungsbedürftigkeitsprüfung, Sanierungsfähigkeitsprüfung, Sanierungswürdigkeitsprüfung"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4134166-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4134166-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04134166X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4134166-1", "source": "GND"}], "authorized_access_point": "Sanierungsprüfung"} 1 +2024-09-10 15:46:39.476498 2024-09-10 15:46:39.4765 6275c7a4-1c09-40e1-afd6-c3ae9d7914b9 {"md5": "d8726d41222d44ab88e7cf45d7f5a89c", "pid": "041340892", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Statistik"}], "related": [{"authorized_access_point": "Arbeitsmarkt"}], "identifier": "http://d-nb.info/gnd/4134089-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4134089-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041340892", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4134089-9", "source": "GND"}], "authorized_access_point": "Arbeitslosenstatistik"} 1 +2024-09-10 15:46:39.544647 2024-09-10 15:46:39.544653 67acc052-b205-4ffd-a817-480eeb2b720a {"md5": "124110dbfc441dac79126069e6d7884f", "pid": "041333004", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Alemannisch"}, {"authorized_access_point": "Schweizerdeutsch"}], "identifier": "http://d-nb.info/gnd/4133300-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4133300-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041333004", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4133300-7", "source": "GND"}], "authorized_access_point": "Höchstalemannisch"} 1 +2024-09-10 15:46:39.641262 2024-09-10 15:46:39.641266 ffdd29a7-8848-4ecd-8c3a-293902c7b916 {"md5": "52c3e77a603294097389a46c9f22cd1a", "pid": "041332997", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Alemannisch"}, {"authorized_access_point": "Schweizerdeutsch"}], "identifier": "http://d-nb.info/gnd/4133299-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4133299-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041332997", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4133299-4", "source": "GND"}], "authorized_access_point": "Hochalemannisch"} 1 +2024-09-10 15:46:39.703987 2024-09-10 15:46:39.70399 2ea329ff-560a-4005-a5a5-48bdfed3dd07 {"md5": "603299e319762def22e4b4cbcc8f633c", "pid": "041332237", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Installateurhandwerk"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133619509", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85103551", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85103551"}], "authorized_access_point": "Plumbing"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133619509", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11933155", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11933155r"}], "authorized_access_point": "Plomberie"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966801873", "source": "GND"}, {"type": "bf:Nbn", "value": "13185-4", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/13185-4"}], "authorized_access_point": "Klempnerhandwerk"}], "identifier": "http://d-nb.info/gnd/4133223-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4133223-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041332237", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4133223-4", "source": "GND"}], "authorized_access_point": "Klempnerhandwerk"} 1 +2024-09-10 15:46:39.763613 2024-09-10 15:46:39.763617 5342bf28-8400-43c5-86e6-d2106ddb74f4 {"md5": "95e62a3fc7d248fbd75c3c145b46a632", "pid": "041326202", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Niveaufläche"}], "identifier": "http://d-nb.info/gnd/4132620-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4132620-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041326202", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4132620-9", "source": "GND"}], "authorized_access_point": "Dreißig-Millibar-Fläche"} 1 +2024-09-10 15:46:39.822112 2024-09-10 15:46:39.822114 6da18d94-1ab2-4216-bb71-16a73606cc40 {"md5": "dcf16bb0ad0d5601de4022c5a6626952", "pid": "041325710", "note": [{"label": ["Offizieller Besuch des Trägers der kirchlichen Jurisdiktion in seinem Jurisdiktionsbezirk zum Zwecke der kirchlichen Aufsicht \\"vor Ort\\""], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kirchenrecht"}], "identifier": "http://d-nb.info/gnd/4132571-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4132571-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041325710", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4132571-0", "source": "GND"}], "variant_access_point": ["Kanonische Visitation", "Kirchenvisitation"], "authorized_access_point": "Visitation"} 1 +2024-09-10 15:46:39.882372 2024-09-10 15:46:39.882376 15b98891-9e86-4cf3-a8bc-b51e4b509477 {"md5": "453bf76b7663b52df6a4165cc61fe14c", "pid": "04132305X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Geografie"}, {"authorized_access_point": "Historische Geologie"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133960545", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85097061", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85097061"}], "authorized_access_point": "Paleogeography"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133960545", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11945801", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11945801f"}], "authorized_access_point": "Paléogéographie"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254370803", "source": "GND"}, {"type": "bf:Nbn", "value": "37702", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/37702"}], "authorized_access_point": "Paleogeografia"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254470395", "source": "GND"}, {"type": "bf:Nbn", "value": "XX531420", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX531420"}], "authorized_access_point": "Paleogeografía"}], "identifier": "http://d-nb.info/gnd/4132305-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4132305-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04132305X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4132305-1", "source": "GND"}], "variant_access_point": ["Paläogeographie"], "authorized_access_point": "Paläogeografie"} 1 +2024-09-10 15:46:39.94796 2024-09-10 15:46:39.947963 36710045-4093-4e08-994d-bfc5d47e64f1 {"md5": "15003a6ac2af61b544f1fca252e35ab8", "pid": "041322886", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Epischer Kyklos"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134548559", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2001000063", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2001000063"}], "authorized_access_point": "Troy (Extinct city) - Legends"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254496750", "source": "GND"}, {"type": "bf:Nbn", "value": "XX5219319", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX5219319"}], "authorized_access_point": "Troya (Ciudad desaparecida) - Leyendas"}], "identifier": "http://d-nb.info/gnd/4132288-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4132288-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041322886", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4132288-5", "source": "GND"}], "variant_access_point": ["Troischer Sagenkreis", "Trojasage"], "authorized_access_point": "Trojanischer Sagenkreis"} 1 +2024-09-10 15:46:40.009109 2024-09-10 15:46:40.009115 081c16f7-8f46-4d69-bb6c-8d5d905138a8 {"md5": "298c3f51a3e4d00ae7cf637b28f04db2", "pid": "041319125", "note": [{"label": ["Vielfalt der Arten in einem Biom"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Biodiversität"}], "related": [{"authorized_access_point": "Artensterben"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133775853", "source": "GND"}, {"type": "bf:Nbn", "value": "sh87005571", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh87005571"}], "authorized_access_point": "Species diversity"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133775853", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12336704", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12336704b"}], "authorized_access_point": "Diversité des espèces"}], "identifier": "http://d-nb.info/gnd/4131912-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4131912-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041319125", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4131912-6", "source": "GND"}], "variant_access_point": ["Artenvielfalt", "Artenmannigfaltigkeit"], "authorized_access_point": "Artenreichtum"} 1 +2024-09-10 15:46:40.089672 2024-09-10 15:46:40.089675 9e1fede7-1b9a-48ef-b262-3a6d2e9cfd89 {"md5": "3c5e467efd495e17cc0154183cfa8c36", "pid": "041317718", "note": [{"label": ["Gemalte Strukturierung eines Objekts in Marmorart (beispielsweise zur Verzierung von Papier, Buchschnitt oder Leder mit typischen Mustern)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Malerei"}, {"authorized_access_point": "Muster (Dekor)"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134528264", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85080958", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85080958"}], "authorized_access_point": "Marbling"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113454264X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85080959", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85080959"}], "authorized_access_point": "Marbling (Bookbinding)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113454264X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13319182", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13319182x"}], "authorized_access_point": "Marbrure (reliure)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254509968", "source": "GND"}, {"type": "bf:Nbn", "value": "XX5221003", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX5221003"}], "authorized_access_point": "Marmoleado"}], "identifier": "http://d-nb.info/gnd/4131771-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4131771-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041317718", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4131771-3", "source": "GND"}], "variant_access_point": ["Marmormalerei"], "authorized_access_point": "Marmorierung"} 1 +2024-09-10 15:46:40.167449 2024-09-10 15:46:40.167454 b2a24631-7115-4ce7-952b-29b04649085c {"md5": "1ad33e1839116506ec1ca88c0b85ac0c", "pid": "041312368", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mörtel"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134748019", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85057520", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85057520"}], "authorized_access_point": "Grout (Mortar)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134748019", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12337766", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb123377664"}], "authorized_access_point": "Mortier liquide"}], "identifier": "http://d-nb.info/gnd/4131236-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4131236-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041312368", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4131236-3", "source": "GND"}], "authorized_access_point": "Zementmörtel"} 1 +2024-09-10 15:46:40.244917 2024-09-10 15:46:40.244922 2c6c1930-e95e-405b-b138-aab31d6acb95 {"md5": "e96fb62129048fe4dbc14c267ea5ac86", "pid": "041308166", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Beratender Ingenieur"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134046170", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85043219", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85043219"}], "authorized_access_point": "Engineering firms"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134046170", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11977242", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11977242g"}], "authorized_access_point": "Sociétés d'ingénieurs-conseils"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966782615", "source": "GND"}, {"type": "bf:Nbn", "value": "13381-4", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/13381-4"}], "authorized_access_point": "Ingenieurbüro"}], "identifier": "http://d-nb.info/gnd/4130816-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4130816-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041308166", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4130816-5", "source": "GND"}], "authorized_access_point": "Ingenieurbüro"} 1 +2024-09-10 15:46:40.314362 2024-09-10 15:46:40.314367 19d9ccd1-63da-4e5e-9f56-af9410a50974 {"md5": "b1525b8795dbe22abaec8a4953138b73", "pid": "041308107", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Verfassungsmäßige Ordnung"}], "identifier": "http://d-nb.info/gnd/4130810-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4130810-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041308107", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4130810-4", "source": "GND"}], "variant_access_point": ["Staat", "Staatszielbestimmung", "Staatsziele"], "authorized_access_point": "Staatsziel"} 1 +2024-09-10 15:46:40.375393 2024-09-10 15:46:40.375396 6fc9fc36-e5f1-4aa7-8f37-578b8e627d3f {"md5": "1436bb4e96bb8102fa49a7d32230582e", "pid": "041303768", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Geldmenge"}, {"authorized_access_point": "Kreditschöpfung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334883556", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17740301b", "source": "BNF"}, {"type": "uri", "value": "https://catalogue.bnf.fr/ark:/12148/cb17740301b"}], "authorized_access_point": "Création de monnaie"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966755669", "source": "GND"}, {"type": "bf:Nbn", "value": "11424-1", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/11424-1"}], "authorized_access_point": "Geldschöpfung"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970552912", "source": "GND"}, {"type": "bf:Nbn", "value": "10044841", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10044841"}], "authorized_access_point": "Geldschöpfung"}], "identifier": "http://d-nb.info/gnd/4130376-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4130376-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041303768", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4130376-3", "source": "GND"}], "variant_access_point": ["Geldschaffung"], "authorized_access_point": "Geldschöpfung"} 1 +2024-09-10 15:46:40.441184 2024-09-10 15:46:40.441187 96c1cb09-cb54-4b2e-913a-09f30ee0a4d3 {"md5": "98a05a07ac0981d484b6063056a067d6", "pid": "041299604", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zellwachstum"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133729088", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85021643", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85021643"}], "authorized_access_point": "Cell cycle"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113379047X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85102706", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85102706"}], "authorized_access_point": "Plant cell cycle"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113379047X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12412715", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12412715s"}], "authorized_access_point": "Cycle cellulaire végétal"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133729088", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12153911", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12153911h"}], "authorized_access_point": "Cycle cellulaire"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)125627335X", "source": "GND"}, {"type": "bf:Nbn", "value": "37218", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_37218"}], "authorized_access_point": "cell cycle"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336586133", "source": "GND"}, {"type": "bf:Nbn", "value": "D002453", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D002453"}], "authorized_access_point": "Cell Cycle"}], "identifier": "http://d-nb.info/gnd/4129960-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4129960-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041299604", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4129960-7", "source": "GND"}], "variant_access_point": ["Mitosezyklus", "Zellcyclus"], "authorized_access_point": "Zellzyklus"} 1 +2024-09-10 15:46:40.521045 2024-09-10 15:46:40.52105 742539d2-5db1-4e5a-ba4f-0cad82d5db85 {"md5": "ea5fe4bcda1e78752f6567bbe680fba7", "pid": "041287045", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zelle"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133992099", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85019549", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85019549"}], "authorized_access_point": "Cancer cells"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133992099", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11958048", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11958048t"}], "authorized_access_point": "Cellules cancéreuses"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254382798", "source": "GND"}, {"type": "bf:Nbn", "value": "50347", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/50347"}], "authorized_access_point": "Cellule neoplastiche"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254452249", "source": "GND"}, {"type": "bf:Nbn", "value": "XX533645", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX533645"}], "authorized_access_point": "Células cancerosas"}], "identifier": "http://d-nb.info/gnd/4128704-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4128704-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041287045", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4128704-6", "source": "GND"}], "variant_access_point": ["Krebs (Medizin)"], "authorized_access_point": "Krebszelle"} 1 +2024-09-10 15:46:40.592762 2024-09-10 15:46:40.592765 ecaf9275-c15a-4e65-b29d-00ac089b163b {"md5": "5c617cd914aaf7ff9ed6651f8f790048", "pid": "04128237X", "note": [{"label": ["Zusammenfassender Begriff für alle Flexibilisierungsstrategien im Bereich d. Arbeit"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134493010", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11933626", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11933626j"}], "authorized_access_point": "Marché du travail"}], "identifier": "http://d-nb.info/gnd/4128237-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4128237-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04128237X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4128237-1", "source": "GND"}], "variant_access_point": ["Flexibilisierung", "Arbeitsflexibilität"], "authorized_access_point": "Arbeitsflexibilisierung"} 1 +2024-09-10 15:46:40.657495 2024-09-10 15:46:40.657502 d2bb1c68-440d-49ba-aba1-e60939e7cc00 {"md5": "afd67aee2e4170e78c7f8c13094c55d3", "pid": "041281632", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Prognose"}], "identifier": "http://d-nb.info/gnd/4128163-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4128163-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041281632", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4128163-9", "source": "GND"}], "variant_access_point": ["Kriminalitätsprognose", "Legalprognose"], "authorized_access_point": "Kriminalprognose"} 1 +2024-09-10 15:46:40.716356 2024-09-10 15:46:40.716359 329caccd-2774-4dd2-947a-ee4e1cefa701 {"md5": "51c56a66f3e83c97d80eba7a1ddf6670", "pid": "041273230", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zelle"}, {"authorized_access_point": "Muskelfaser"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134519516", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85088676", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85088676"}], "authorized_access_point": "Muscle cells"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134519516", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11937793", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11937793x"}], "authorized_access_point": "Myocytes"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336589426", "source": "GND"}, {"type": "bf:Nbn", "value": "D032342", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D032342"}], "authorized_access_point": "Muscle Cells"}], "identifier": "http://d-nb.info/gnd/4127323-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4127323-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041273230", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4127323-0", "source": "GND"}], "authorized_access_point": "Muskelzelle"} 1 +2024-09-10 15:46:40.774517 2024-09-10 15:46:40.77452 7d264a11-65ea-4429-81a3-b4d61f92e8be {"md5": "436ed24742a5012d4da9a0a9f7798e69", "pid": "041269950", "note": [{"label": ["Avantgardistischer japan. Tanz"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tanz"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133786634", "source": "GND"}, {"type": "bf:Nbn", "value": "sh90000099", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh90000099"}], "authorized_access_point": "Butō"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133786634", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12389686", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb123896860"}], "authorized_access_point": "Butō"}], "identifier": "http://d-nb.info/gnd/4126995-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4126995-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041269950", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4126995-0", "source": "GND"}], "variant_access_point": ["Butoh", "Butô (Tanz)"], "authorized_access_point": "Butô-Tanz"} 1 +2024-09-10 15:46:42.053777 2024-09-10 15:46:42.053783 e972a02c-0c82-44f5-b623-39bb0c990347 {"md5": "78dca3b4668dc05842d0657a76920951", "pid": "041184432", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "identifier": "http://d-nb.info/gnd/4118443-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4118443-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041184432", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4118443-9", "source": "GND"}], "variant_access_point": ["Sassak"], "authorized_access_point": "Sasak"} 1 +2024-09-10 15:46:40.845471 2024-09-10 15:46:40.845475 5b737d7a-705c-4b2c-946a-3377cc462a3b {"md5": "95cedf1ac0a809e375d3691b3086dc0c", "pid": "041258584", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kultur"}], "related": [{"authorized_access_point": "Alltagskultur"}, {"authorized_access_point": "Arbeiterkultur"}, {"authorized_access_point": "Industriekultur"}, {"authorized_access_point": "Volkskultur"}, {"authorized_access_point": "Popkultur"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134492146", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13318336", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb133183362"}], "authorized_access_point": "Culture de masse"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970571321", "source": "GND"}, {"type": "bf:Nbn", "value": "10050181", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10050181"}], "authorized_access_point": "Massenkultur"}], "identifier": "http://d-nb.info/gnd/4125858-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4125858-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041258584", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4125858-7", "source": "GND"}], "authorized_access_point": "Massenkultur"} 1 +2024-09-10 15:46:40.922886 2024-09-10 15:46:40.922893 850edf62-e8ee-4058-81c1-a1946570096e {"md5": "95b314491836dcddc7ab9a17b44a197b", "pid": "041255887", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133639275", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85091047", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85091047"}], "authorized_access_point": "Netsukes"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133639275", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11945149", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11945149h"}], "authorized_access_point": "Netsuke"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254326421", "source": "GND"}, {"type": "bf:Nbn", "value": "3974", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/3974"}], "authorized_access_point": "Netsuke"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254466614", "source": "GND"}, {"type": "bf:Nbn", "value": "XX558922", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX558922"}], "authorized_access_point": "Netsuke"}], "identifier": "http://d-nb.info/gnd/4125588-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4125588-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041255887", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4125588-4", "source": "GND"}], "authorized_access_point": "Netsuke"} 1 +2024-09-10 15:46:40.984236 2024-09-10 15:46:40.984239 cc3264bd-7858-4fd4-9325-ba2367d4cffe {"md5": "2e9b6bda59ec9c665cd6328b634af895", "pid": "041252896", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Feuerwehr"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133615511", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85048486", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85048486"}], "authorized_access_point": "Fire extinction"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133615511", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11932069", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11932069x"}], "authorized_access_point": "Incendies - Extinction"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254384669", "source": "GND"}, {"type": "bf:Nbn", "value": "52317", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/52317"}], "authorized_access_point": "Spegnimento"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)125441410X", "source": "GND"}, {"type": "bf:Nbn", "value": "XX559831", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX559831"}], "authorized_access_point": "Incendios - Extinción"}], "identifier": "http://d-nb.info/gnd/4125289-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4125289-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041252896", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4125289-5", "source": "GND"}], "variant_access_point": ["Feuerbekämpfung", "Feuerlöschen", "Feuer", "Abwehrender Brandschutz"], "authorized_access_point": "Brandbekämpfung"} 1 +2024-09-10 15:46:41.05336 2024-09-10 15:46:41.053363 c9c2e581-81ec-47f8-ad53-36a912c6afec {"md5": "39d00e7b0c0809b22ff176586ed54955", "pid": "041245296", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4124529-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4124529-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041245296", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4124529-5", "source": "GND"}], "variant_access_point": ["Betriebsmittel"], "authorized_access_point": "Aggregat"} 1 +2024-09-10 15:46:41.111999 2024-09-10 15:46:41.112001 53349d6f-cab9-429a-8393-7a9bcf4a074c {"md5": "2ea3a9889371e324bfa891512d55ffca", "pid": "041240510", "note": [{"label": ["Marketingmassnahme zur Verlängerung des Produktlebenszyklus"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Produktlebenszyklus"}], "identifier": "http://d-nb.info/gnd/4124051-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4124051-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041240510", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4124051-0", "source": "GND"}], "variant_access_point": ["Relaunching"], "authorized_access_point": "Relaunch"} 1 +2024-09-10 15:46:41.177031 2024-09-10 15:46:41.177036 81a91f12-0971-46f8-aca5-a91fcd313002 {"md5": "fc2ee8a1543a789a76e24147439e665a", "pid": "041239288", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Daten"}], "related": [{"authorized_access_point": "Personenbezogene Daten"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113445919X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh00009296", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh00009296"}], "authorized_access_point": "Electronic monitoring in the workplace"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113445919X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF14621537", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb146215374"}], "authorized_access_point": "Surveillance électronique en milieu de travail"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970578652", "source": "GND"}, {"type": "bf:Nbn", "value": "10040511", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10040511"}], "authorized_access_point": "Personaldaten"}], "identifier": "http://d-nb.info/gnd/4123928-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4123928-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041239288", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4123928-3", "source": "GND"}], "variant_access_point": ["Beschäftigtendaten", "Mitarbeiterdaten", "Arbeitnehmer"], "authorized_access_point": "Personaldaten"} 1 +2024-09-10 15:46:41.247696 2024-09-10 15:46:41.247699 4961e18c-84d0-40f6-beab-3616bb6c0ea1 {"md5": "3f011203e83447c6c6a3730177596940", "pid": "041238826", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133672825", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85080183", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85080183"}], "authorized_access_point": "Malocclusion"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133672825", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11970770", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11970770d"}], "authorized_access_point": "Malocclusion dentaire"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254468838", "source": "GND"}, {"type": "bf:Nbn", "value": "XX546636", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX546636"}], "authorized_access_point": "Maloclusión"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1241615926", "source": "GND"}, {"type": "bf:Nbn", "value": "D008310", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D008310"}], "authorized_access_point": "Malocclusion"}], "identifier": "http://d-nb.info/gnd/4123882-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4123882-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041238826", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4123882-5", "source": "GND"}], "variant_access_point": ["Malokklusion", "Okklusionsanomalie", "Okklusionsabweichung"], "authorized_access_point": "Okklusionsstörung"} 1 +2024-09-10 15:46:41.310453 2024-09-10 15:46:41.310456 25728d4f-0423-47f0-9a4e-475a1656ce99 {"md5": "246d5fade10d60de6741285aa3905310", "pid": "041236599", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Programm"}], "related": [{"authorized_access_point": "Liquiditätsplanung"}], "identifier": "http://d-nb.info/gnd/4123659-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4123659-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041236599", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4123659-2", "source": "GND"}], "authorized_access_point": "LIPLAN"} 1 +2024-09-10 15:46:41.3757 2024-09-10 15:46:41.375704 1eb007ff-c8ed-4ee4-8a3f-d6154a87d336 {"md5": "61bb69ee0b141fbff01a4d3dcaf95f4c", "pid": "041235347", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zelle"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133886736", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85081545", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85081545"}], "authorized_access_point": "Bone marrow cells"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133886736", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13743509", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13743509t"}], "authorized_access_point": "Cellules de la moelle osseuse"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133658923X", "source": "GND"}, {"type": "bf:Nbn", "value": "D001854", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D001854"}], "authorized_access_point": "Bone Marrow Cells"}], "identifier": "http://d-nb.info/gnd/4123534-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4123534-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041235347", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4123534-4", "source": "GND"}], "variant_access_point": ["Knochenmarkzellen", "Knochenmarkszelle"], "authorized_access_point": "Knochenmarkzelle"} 1 +2024-09-10 15:46:41.436382 2024-09-10 15:46:41.436386 c290d52c-8fc0-4fb4-8fe8-35be65165eec {"md5": "429779c1dd0c3baeca0a7f28a177971d", "pid": "041227980", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Xenismus"}, {"authorized_access_point": "Entlehnung"}], "related": [{"authorized_access_point": "Amerikanismus"}, {"authorized_access_point": "Englisch"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134149212", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12073697", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12073697g"}], "authorized_access_point": "Emprunts anglais"}], "identifier": "http://d-nb.info/gnd/4122798-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4122798-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041227980", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4122798-0", "source": "GND"}], "authorized_access_point": "Anglizismus"} 1 +2024-09-10 15:46:41.500892 2024-09-10 15:46:41.500895 699b5e09-d1ef-4d25-bd2b-a7f2dfc77dfa {"md5": "7d4590fdd46a73ec3896a1be34d3eabc", "pid": "041220609", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Industrieausstellung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133695337", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11982542", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119825429"}], "authorized_access_point": "Expositions automobiles"}], "identifier": "http://d-nb.info/gnd/4122060-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4122060-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041220609", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4122060-2", "source": "GND"}], "authorized_access_point": "Automobilausstellung"} 1 +2024-09-10 15:46:41.566216 2024-09-10 15:46:41.566224 29e99e50-b3cc-4924-bbf8-cc0975c3066f {"md5": "ba979d241f9521445a0e798914a45da0", "pid": "04121952X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Verpackungspfand"}], "identifier": "http://d-nb.info/gnd/4121952-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4121952-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04121952X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4121952-1", "source": "GND"}], "authorized_access_point": "Zwangsverpackungspfand"} 1 +2024-09-10 15:46:41.636284 2024-09-10 15:46:41.636289 ba1eccba-753f-4f2a-8b66-306152a0cf75 {"md5": "f34b7ec5797996882374519c21c7d095", "pid": "041218108", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133612857", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85044206", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85044206"}], "authorized_access_point": "Environmental protection - Research"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133612857", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12647462", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12647462n"}], "authorized_access_point": "Environnement - Recherche"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970598866", "source": "GND"}, {"type": "bf:Nbn", "value": "10060580", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10060580"}], "authorized_access_point": "Umweltforschung"}], "identifier": "http://d-nb.info/gnd/4121810-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4121810-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041218108", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4121810-3", "source": "GND"}], "variant_access_point": ["Umweltschutzforschung"], "authorized_access_point": "Umweltforschung"} 1 +2024-09-10 15:46:41.700263 2024-09-10 15:46:41.700269 e3ff6570-3f0b-47f5-8ec6-9899c8ce05ab {"md5": "ec8b5ebbe8b7fd5eddc44673199ce8e5", "pid": "041217616", "note": [{"label": ["Erwerbstätigkeit an einem externen Arbeitsplatz, der mit informationstechn. Endgeräten ausgestattet, dezentral eingerichtet und mit dem Auftraggeber/Arbeitgeber durch elektron. Kommunikationsnetze verbunden ist"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Heimarbeit"}, {"authorized_access_point": "Arbeit"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134185731", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85133307", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85133307"}], "authorized_access_point": "Telecommuting"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134185731", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12140176", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12140176z"}], "authorized_access_point": "Télétravail"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)125432593X", "source": "GND"}, {"type": "bf:Nbn", "value": "3744", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/3744"}], "authorized_access_point": "Telelavoro"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254493808", "source": "GND"}, {"type": "bf:Nbn", "value": "XX538553", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX538553"}], "authorized_access_point": "Teletrabajo"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966996208", "source": "GND"}, {"type": "bf:Nbn", "value": "18112-6", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/18112-6"}], "authorized_access_point": "Telearbeit"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970597282", "source": "GND"}, {"type": "bf:Nbn", "value": "10035916", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10035916"}], "authorized_access_point": "Telearbeit"}], "identifier": "http://d-nb.info/gnd/4121761-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4121761-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041217616", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4121761-5", "source": "GND"}], "variant_access_point": ["Tele-Heimarbeit", "Home Office", "Homeoffice", "Fernarbeit", "Computerheimarbeit", "Tele-Working", "Telecommuting", "Tele-Arbeit", "Telekommunikation", "Mobiles Arbeiten"], "authorized_access_point": "Telearbeit"} 1 +2024-09-10 15:46:41.764634 2024-09-10 15:46:41.764638 904f275b-43a0-4242-a2b6-d49d9f374021 {"md5": "12a79f1da46ef4350a1a92f8570260ba", "pid": "041212304", "note": [{"label": ["Programm für Externe Bilanzanalyse"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Programm"}], "related": [{"authorized_access_point": "Bilanzanalyse"}], "identifier": "http://d-nb.info/gnd/4121230-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4121230-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041212304", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4121230-7", "source": "GND"}], "authorized_access_point": "EXBILA"} 1 +2024-09-10 15:46:41.837396 2024-09-10 15:46:41.837399 b9804256-7931-4985-bca6-bab22cc1eaf9 {"md5": "7b376b8db7affe5bc2ff257883bb7d2d", "pid": "041207017", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gleichgewicht"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334903719", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85044538", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85044538"}], "authorized_access_point": "Equilibrium (Economics)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334903719", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11931264", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11931264h"}], "authorized_access_point": "Équilibre (économie politique)"}], "identifier": "http://d-nb.info/gnd/4120701-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4120701-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041207017", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4120701-4", "source": "GND"}], "variant_access_point": ["Markt", "Konkurrenzgleichgewicht"], "authorized_access_point": "Marktgleichgewicht"} 1 +2024-09-10 15:46:41.910058 2024-09-10 15:46:41.910062 63aae9f8-7482-4ab0-8960-61b23c903317 {"md5": "c32fde7cb9f0b47de6bcf2c3fb9b2c4d", "pid": "041206592", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zelle"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134131135", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85077772", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85077772"}], "authorized_access_point": "Liver cells"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134131135", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12047088", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb120470886"}], "authorized_access_point": "Cellules hépatiques"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254378499", "source": "GND"}, {"type": "bf:Nbn", "value": "45407", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/45407"}], "authorized_access_point": "Cellule epatiche"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254455493", "source": "GND"}, {"type": "bf:Nbn", "value": "XX559281", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX559281"}], "authorized_access_point": "Células hepáticas"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336589078", "source": "GND"}, {"type": "bf:Nbn", "value": "D022781", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D022781"}], "authorized_access_point": "Hepatocytes"}], "identifier": "http://d-nb.info/gnd/4120659-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4120659-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041206592", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4120659-9", "source": "GND"}], "variant_access_point": ["Hepatozyt", "Leberzelle", "Leberparenchymzelle", "Hepatocyt"], "authorized_access_point": "Leberepithelzelle"} 1 +2024-09-10 15:46:41.986813 2024-09-10 15:46:41.986818 7e931de8-5934-4b44-b62b-a4c95fa60f39 {"md5": "316ff2b024217a5e3cabddb8ee268d6f", "pid": "041201116", "note": [{"label": ["möglicherweise nur Sprachbund"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Uralaltaische Sprachen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133699049", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85003868", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85003868"}], "authorized_access_point": "Altaic languages"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133699049", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11991545", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119915459"}], "authorized_access_point": "Langues altaïques"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254315659", "source": "GND"}, {"type": "bf:Nbn", "value": "181", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/181"}], "authorized_access_point": "Lingue altaiche"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254403205", "source": "GND"}, {"type": "bf:Nbn", "value": "XX546093", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX546093"}], "authorized_access_point": "Lenguas altaicas"}], "identifier": "http://d-nb.info/gnd/4120111-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4120111-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041201116", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4120111-5", "source": "GND"}], "variant_access_point": ["Altaisch (Sprachfamilie)"], "authorized_access_point": "Altaische Sprachen"} 1 +2024-09-10 15:46:42.124015 2024-09-10 15:46:42.124019 16504946-55bf-468d-9c7a-a090bfdde363 {"md5": "1f43a795e5871ed89b73aa84fca32f32", "pid": "041176065", "note": [{"label": ["Als identifizierender Zusatz und als instantieller Oberbegriff bei weiblichen heiligen Personen obligatorisch gem. EH-P-10 zur GND nach RDA"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Frau"}], "related": [{"authorized_access_point": "Heiliger"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133986994", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85025188", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85025188"}], "authorized_access_point": "Christian women saints"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134610386", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85116638", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85116638"}], "authorized_access_point": "Women saints"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133986994", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11955309", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119553091"}], "authorized_access_point": "Saintes chrétiennes"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254361065", "source": "GND"}, {"type": "bf:Nbn", "value": "29798", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/29798"}], "authorized_access_point": "Sante"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254439110", "source": "GND"}, {"type": "bf:Nbn", "value": "XX537664", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX537664"}], "authorized_access_point": "Santas cristianas"}], "identifier": "http://d-nb.info/gnd/4117606-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4117606-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041176065", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4117606-6", "source": "GND"}], "variant_access_point": ["Weibliche Heilige", "Heilige Frau", "Heiliggesprochene Frau", "Heilig gesprochene Frau"], "authorized_access_point": "Heilige"} 1 +2024-09-10 15:46:42.185751 2024-09-10 15:46:42.185754 64f285d8-0fb9-4fc9-9e09-8b2b25ce478b {"md5": "69bbf9a78476af4361fd98bbdde078d8", "pid": "041155513", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zelle"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113364211X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85102712", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85102712"}], "authorized_access_point": "Plant cells and tissues"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113364211X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11946982", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11946982s"}], "authorized_access_point": "Cellules végétales"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1299903770", "source": "GND"}, {"type": "bf:Nbn", "value": "XX533812", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX533812"}], "authorized_access_point": "Células vegetales"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336588802", "source": "GND"}, {"type": "bf:Nbn", "value": "D059828", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D059828"}], "authorized_access_point": "Plant Cells"}], "identifier": "http://d-nb.info/gnd/4115551-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4115551-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041155513", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4115551-8", "source": "GND"}], "variant_access_point": ["Pflanzen"], "authorized_access_point": "Pflanzenzelle"} 1 +2024-09-10 15:46:42.254415 2024-09-10 15:46:42.25442 82f44e60-f703-4983-b934-4ef33ea75443 {"md5": "37df8a94d6c5ab6814e6d476f51a5240", "pid": "041154630", "note": [{"label": ["Organisation als kulturelles Sinnsystem"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134603371", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85032896", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85032896"}], "authorized_access_point": "Corporate culture"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134603371", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12004221", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12004221x"}], "authorized_access_point": "Culture d'entreprise"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)967011043", "source": "GND"}, {"type": "bf:Nbn", "value": "12108-6", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/12108-6"}], "authorized_access_point": "Unternehmenskultur"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970577311", "source": "GND"}, {"type": "bf:Nbn", "value": "10060811", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10060811"}], "authorized_access_point": "Organisationskultur"}], "identifier": "http://d-nb.info/gnd/4115463-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4115463-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041154630", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4115463-0", "source": "GND"}], "authorized_access_point": "Organisationskultur"} 1 +2024-09-10 15:46:42.340475 2024-09-10 15:46:42.340483 fe9ad010-e6af-4704-8d75-cc43c05dfcdf {"md5": "5a212998a733e95517796aa4531d1dda", "pid": "04114516X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Controlling"}], "related": [{"authorized_access_point": "Marketing"}], "identifier": "http://d-nb.info/gnd/4114516-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4114516-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04114516X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4114516-1", "source": "GND"}], "authorized_access_point": "Marketingaudit"} 1 +2024-09-10 15:46:42.413296 2024-09-10 15:46:42.4133 3bed33be-6479-45b9-9b5c-4103c45f2e09 {"md5": "70eca264abba1fa35beb23182ddb2498", "pid": "041091507", "note": [{"label": ["Auch benutzt für Angehörige des Staates Iran soweit ausserhalb des Staates lebend, hierfür benutze LC XB-IR"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Iranierin"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134077866", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85067929", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85067929"}], "authorized_access_point": "Iranians"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134077866", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11982855", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11982855g"}], "authorized_access_point": "Iraniens"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254444726", "source": "GND"}, {"type": "bf:Nbn", "value": "XX555380", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX555380"}], "authorized_access_point": "Iraníes"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1008594873", "source": "GND"}, {"type": "bf:Nbn", "value": "26312-2", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/26312-2"}], "authorized_access_point": "Iraner"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970561199", "source": "GND"}, {"type": "bf:Nbn", "value": "10066094", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10066094"}], "authorized_access_point": "Iraner"}], "identifier": "http://d-nb.info/gnd/4109150-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4109150-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041091507", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4109150-4", "source": "GND"}], "variant_access_point": ["Iraner"], "authorized_access_point": "Iranier"} 1 +2024-09-10 15:46:42.486777 2024-09-10 15:46:42.486787 601137ef-15b2-433f-a4f2-0342c037e593 {"md5": "83449ff7c5b2895a9f174c0fdc9d8211", "pid": "041076842", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Indianer"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133987729", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85003081", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85003081"}], "authorized_access_point": "Xavante Indians"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133987729", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11955654", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11955654p"}], "authorized_access_point": "Chavante (Indiens)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254486607", "source": "GND"}, {"type": "bf:Nbn", "value": "XX549246", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX549246"}], "authorized_access_point": "Xavantes (Indios)"}], "identifier": "http://d-nb.info/gnd/4107684-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4107684-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041076842", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4107684-9", "source": "GND"}], "variant_access_point": ["Xavante", "Chavante"], "authorized_access_point": "Shavante"} 1 +2024-09-10 15:46:42.596996 2024-09-10 15:46:42.597 158aa796-fa29-4395-b852-39cde710e7a6 {"md5": "0c08b5205a32b1d401672724cf2951ad", "pid": "041018699", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113394602X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85093489", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85093489"}], "authorized_access_point": "Nyamwezi (African people)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113394602X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11938722", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11938722n"}], "authorized_access_point": "Nyamwezi (peuple d'Afrique)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254468374", "source": "GND"}, {"type": "bf:Nbn", "value": "XX4760724", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX4760724"}], "authorized_access_point": "Nyamwezis (Pueblo africano)"}], "identifier": "http://d-nb.info/gnd/4101869-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4101869-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041018699", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4101869-2", "source": "GND"}], "variant_access_point": ["Nyamwesi", "Njamwesi", "Wanjamwesi", "Wanyamwesi"], "authorized_access_point": "Nyamwezi"} 1 +2024-09-10 15:46:42.669504 2024-09-10 15:46:42.669509 cebbab04-1abe-4115-848a-b098416cccb5 {"md5": "e36590a715aaa7afa8cffef0ae77d6b2", "pid": "040775593", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sozialarbeit"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)96696277X", "source": "GND"}, {"type": "bf:Nbn", "value": "16543-3", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/16543-3"}], "authorized_access_point": "Sozialer Dienst"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970590555", "source": "GND"}, {"type": "bf:Nbn", "value": "10035231", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10035231"}], "authorized_access_point": "soziale Dienste"}], "identifier": "http://d-nb.info/gnd/4077559-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4077559-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040775593", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4077559-8", "source": "GND"}], "variant_access_point": ["Soziale Dienste", "Sozialer Dienst"], "authorized_access_point": "Sozialdienst"} 1 +2024-09-10 15:46:42.729197 2024-09-10 15:46:42.729201 77486de0-2941-4fc8-a0c8-318f2d9bf386 {"md5": "8934ece698abcbba69120f116a4fbed9", "pid": "040763889", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Genprodukt"}, {"authorized_access_point": "Biopolymere"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133625789", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85107666", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85107666"}], "authorized_access_point": "Proteins"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133625789", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11936447", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11936447p"}], "authorized_access_point": "Protéines"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254315101", "source": "GND"}, {"type": "bf:Nbn", "value": "51", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/51"}], "authorized_access_point": "Proteine"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254475982", "source": "GND"}, {"type": "bf:Nbn", "value": "XX526597", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX526597"}], "authorized_access_point": "Proteínas"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256248541", "source": "GND"}, {"type": "bf:Nbn", "value": "6259", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_6259"}], "authorized_access_point": "proteins"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336147075", "source": "GND"}, {"type": "bf:Nbn", "value": "D011506", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D011506"}], "authorized_access_point": "Proteins"}], "identifier": "http://d-nb.info/gnd/4076388-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4076388-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040763889", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4076388-2", "source": "GND"}], "variant_access_point": ["Eiweiss", "Protein"], "authorized_access_point": "Proteine"} 1 +2024-09-10 15:46:42.792431 2024-09-10 15:46:42.792434 552bf0c2-719d-448f-a276-26d1e773d33e {"md5": "5eb190a3436cd34425009b4fbf057c70", "pid": "040730913", "note": [{"label": ["Verwendet nur für Vernichtungslager und für den Vorgang als solchen, nicht in Verbindung mit einzelnen Orten in Deutschland, dann Judenverfolgung. Tötungsaktionen an einzelnen Orten im Osten werden nicht als historisches Einzelereignis behandelt, sondern mit dem Geographikum verknüpft."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Judenverfolgung"}, {"authorized_access_point": "Nationalsozialistisches Verbrechen"}], "related": [{"authorized_access_point": "Vernichtungslager"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113360563X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85061515", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85061515"}], "authorized_access_point": "Holocaust, Jewish (1939-1945)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113360563X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11941579", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11941579k"}], "authorized_access_point": "Shoah"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254445757", "source": "GND"}, {"type": "bf:Nbn", "value": "XX4663627", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX4663627"}], "authorized_access_point": "Holocausto judío (1939-1945)"}], "identifier": "http://d-nb.info/gnd/4073091-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4073091-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040730913", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4073091-8", "source": "GND"}], "variant_access_point": ["Endlösung", "Holocaust", "Holokaust", "Judenfrage", "Schoah", "Shoah", "Shoʾah", "Shoa", "Drittes Reich", "Šô'ā", "Juden"], "authorized_access_point": "Judenvernichtung"} 1 +2024-09-10 15:46:42.875034 2024-09-10 15:46:42.875038 37c76891-f02f-4333-a8c4-122cc63cb977 {"md5": "f0116fde16886d213c99c21c4a2e7974", "pid": "04071781X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Dimorphismus"}], "related": [{"authorized_access_point": "Geschlechtsmerkmal"}, {"authorized_access_point": "Geschlechterrolle"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133881475", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85120727", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85120727"}], "authorized_access_point": "Sexual dimorphism (Plants)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134040792", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85120580", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85120580"}], "authorized_access_point": "Sex differences"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133881475", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13617433", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13617433k"}], "authorized_access_point": "Dimorphisme sexuel chez les plantes"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134040792", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11976298", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11976298v"}], "authorized_access_point": "Différences entre sexes"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254434844", "source": "GND"}, {"type": "bf:Nbn", "value": "XX539058", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX539058"}], "authorized_access_point": "Diferencias entre los sexos"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1067694579", "source": "GND"}, {"type": "bf:Nbn", "value": "30048-3", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/30048-3"}], "authorized_access_point": "Geschlechterunterschiede"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970553803", "source": "GND"}, {"type": "bf:Nbn", "value": "10045237", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10045237"}], "authorized_access_point": "geschlechtsspezifische Faktoren"}], "identifier": "http://d-nb.info/gnd/4071781-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4071781-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04071781X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4071781-1", "source": "GND"}], "variant_access_point": ["Geschlechterdifferenz", "Geschlechtsdimorphismus", "Geschlechtsspezifisch ...", "Geschlechtsspezifische Differenz", "Sexualdimorphismus", "Geschlechterunterschied", "Geschlecht", "Geschlechtsunterschiede", "Gender Diversity", "Geschlechtsspezifische Diversität"], "authorized_access_point": "Geschlechtsunterschied"} 1 +2024-09-10 15:46:43.968415 2024-09-10 15:46:43.968419 5dfc097c-6bb8-4cfa-86b7-a7b05d47f95b {"md5": "f1e2bab3905cc25bd1ab1c38c33824fd", "pid": "040416496", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zelle"}], "related": [{"authorized_access_point": "Paraneuron"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133631606", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85091153", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85091153"}], "authorized_access_point": "Neurons"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133631606", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11940272", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119402723"}], "authorized_access_point": "Neurones"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254326529", "source": "GND"}, {"type": "bf:Nbn", "value": "4023", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/4023"}], "authorized_access_point": "Neuroni"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254466584", "source": "GND"}, {"type": "bf:Nbn", "value": "XX531517", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX531517"}], "authorized_access_point": "Neuronas"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336588594", "source": "GND"}, {"type": "bf:Nbn", "value": "D009474", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D009474"}], "authorized_access_point": "Neurons"}], "identifier": "http://d-nb.info/gnd/4041649-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4041649-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040416496", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4041649-5", "source": "GND"}], "variant_access_point": ["Ganglienzelle", "Neurozyt", "Neuron"], "authorized_access_point": "Nervenzelle"} 1 +2024-09-10 15:46:42.948841 2024-09-10 15:46:42.948845 74d14f1e-61cf-4d4d-b5ff-6cb33744c5b4 {"md5": "157730267475281c2f00e04646f86901", "pid": "04067777X", "note": [{"label": ["Ethnie ohne Territorium. Außer d. weibl. Form werden keine weiteren Komposita gebildet, sondern mit dem entsprechenden Sach-SW verknüpft, z.B. Zigeuner ; Kind; engere Bezeichnungen wie \\"Roma \\", \\"Sinti\\" o.a. sollten immer vorrangig verwendet werden, teilweise aber auch als Selbstbezeichnung gewünscht."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Zigeunerin"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134501595", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85058109", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85058109"}], "authorized_access_point": "Romanies"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134501595", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11933633", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11933633t"}], "authorized_access_point": "Tsiganes"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970606753", "source": "GND"}, {"type": "bf:Nbn", "value": "10062954", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10062954"}], "authorized_access_point": "Sinti und Roma"}], "identifier": "http://d-nb.info/gnd/4067777-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4067777-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04067777X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4067777-1", "source": "GND"}], "authorized_access_point": "Zigeuner"} 1 +2024-09-10 15:46:43.009111 2024-09-10 15:46:43.009114 80ede84a-5f3b-4759-89e2-c1976b23fec4 {"md5": "0b27e013ba49e0d0f19c229293d702c3", "pid": "04066533X", "note": [{"label": ["Als Homonymenzusatz bei Personenschlagwörtern zugelassen."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Wissenschaftler"}], "related": [{"authorized_access_point": "Wirtschaftswissenschaftlerin"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133925197", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85040878", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85040878"}], "authorized_access_point": "Economists"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133925197", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11931937", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11931937j"}], "authorized_access_point": "Économistes"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254503978", "source": "GND"}, {"type": "bf:Nbn", "value": "XX527085", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX527085"}], "authorized_access_point": "Economistas"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)967043212", "source": "GND"}, {"type": "bf:Nbn", "value": "14017-6", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/14017-6"}], "authorized_access_point": "Ökonomen"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970605226", "source": "GND"}, {"type": "bf:Nbn", "value": "10053624", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10053624"}], "authorized_access_point": "Wirtschaftswissenschaftler"}], "identifier": "http://d-nb.info/gnd/4066533-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4066533-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04066533X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4066533-1", "source": "GND"}], "variant_access_point": ["Ökonom (Wirtschaft)"], "authorized_access_point": "Wirtschaftswissenschaftler"} 1 +2024-09-10 15:46:43.068139 2024-09-10 15:46:43.068146 c50308dd-ab81-4c03-a00f-e4e2de4b9fcf {"md5": "0b16c61faf8ffdec5300afcc476177cb", "pid": "040645312", "note": [{"label": ["Benutzt für sehr weite Sachverhalte, umfasst z.B. auch Schaustellergewerbe etc."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4064531-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4064531-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040645312", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4064531-9", "source": "GND"}], "variant_access_point": ["Ambulantes Gewerbe", "Wanderhandel (Reisegewerbe)", "Wandergewerbe", "Ambulanter Gewerbebetrieb"], "authorized_access_point": "Reisegewerbe"} 1 +2024-09-10 15:46:43.127388 2024-09-10 15:46:43.127391 41546f9d-f3cc-49f1-b717-ed296da1bfb4 {"md5": "c8f00598f8b1e74214bc6c08e1bac3d8", "pid": "040633217", "note": [{"label": ["Ein Verwaltungsakt ist jede Verfügung, Entscheidung oder andere hoheitliche Maßnahme, die eine Behörde zur Regelung eines Einzelfalls auf dem Gebiet des öffentlichen Rechts trifft und die auf unmittelbare Rechtswirkung nach außen gerichtet ist."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133645879", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85000900", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85000900"}], "authorized_access_point": "Administrative acts"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133645879", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12649789", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb126497890"}], "authorized_access_point": "Actes administratifs"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254330216", "source": "GND"}, {"type": "bf:Nbn", "value": "6046", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/6046"}], "authorized_access_point": "Atti amministrativi"}], "identifier": "http://d-nb.info/gnd/4063321-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4063321-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040633217", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4063321-4", "source": "GND"}], "authorized_access_point": "Verwaltungsakt"} 1 +2024-09-10 15:46:43.189501 2024-09-10 15:46:43.189504 6a196c03-a07c-4dff-bde7-ac82fa2c74b0 {"md5": "6ba17a9a904c17f8a100df0113d654a8", "pid": "040583317", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Low-Input Landwirtschaft"}, {"authorized_access_point": "Extraktivismus"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134074778", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85129537", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85129537"}], "authorized_access_point": "Subsistence economy"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134074778", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11982331", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119823313"}], "authorized_access_point": "Économie de subsistance"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256261602", "source": "GND"}, {"type": "bf:Nbn", "value": "7485", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_7485"}], "authorized_access_point": "subsistence farming"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966989805", "source": "GND"}, {"type": "bf:Nbn", "value": "10511-4", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/10511-4"}], "authorized_access_point": "Subsistenzwirtschaft"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970595840", "source": "GND"}, {"type": "bf:Nbn", "value": "10059703", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10059703"}], "authorized_access_point": "Subsistenzwirtschaft"}], "identifier": "http://d-nb.info/gnd/4058331-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4058331-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040583317", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4058331-4", "source": "GND"}], "variant_access_point": ["Selbstversorgerwirtschaft"], "authorized_access_point": "Subsistenzwirtschaft"} 1 +2024-09-10 15:46:43.263496 2024-09-10 15:46:43.263501 0b437a84-c540-458c-9cd6-0a796f863ba2 {"md5": "b1431ab5bfcb04eb071184e5fb4dcd87", "pid": "040544567", "note": [{"label": ["Benutzt für männliche selige Personen und die Personengruppe im Plural; als instantieller Oberbegriff bei seligen Personen obligatorisch; nicht zugelassen als identifizierender Zusatz bei Personen gem. EH-P-10 zur GND nach RDA"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Selige"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134228295", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85014845", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85014845"}], "authorized_access_point": "Blessed"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134228295", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12243954", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12243954r"}], "authorized_access_point": "Bienheureux"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254345876", "source": "GND"}, {"type": "bf:Nbn", "value": "18676", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/18676"}], "authorized_access_point": "Beati"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254485996", "source": "GND"}, {"type": "bf:Nbn", "value": "XX4596790", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX4596790"}], "authorized_access_point": "Beatos"}], "identifier": "http://d-nb.info/gnd/4054456-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4054456-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040544567", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4054456-4", "source": "GND"}], "authorized_access_point": "Seliger"} 1 +2024-09-10 15:46:43.332228 2024-09-10 15:46:43.332233 b6c68214-7ce6-40d8-94a5-05b6d66459f2 {"md5": "f6744a8eebb5f322077ec95a21d0cf8f", "pid": "040519384", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133956351", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85123237", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85123237"}], "authorized_access_point": "Skull"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133956351", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11944099", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11944099j"}], "authorized_access_point": "Crâne"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254328386", "source": "GND"}, {"type": "bf:Nbn", "value": "5120", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/5120"}], "authorized_access_point": "Cranio"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1282201786", "source": "GND"}, {"type": "bf:Nbn", "value": "D012886", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D012886"}], "authorized_access_point": "Skull"}], "identifier": "http://d-nb.info/gnd/4051938-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4051938-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040519384", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4051938-7", "source": "GND"}], "variant_access_point": ["Cranium", "Kranium", "Schädelskelett"], "authorized_access_point": "Schädel"} 1 +2024-09-10 15:46:43.420134 2024-09-10 15:46:43.420144 622f2c31-1f73-4850-acc9-dbb25cbe923e {"md5": "b968060a12b54949efebf90bd813573c", "pid": "040514927", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bewertung"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)96695016X", "source": "GND"}, {"type": "bf:Nbn", "value": "19091-4", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/19091-4"}], "authorized_access_point": "Lagerbuchführung"}], "identifier": "http://d-nb.info/gnd/4051492-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4051492-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040514927", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4051492-4", "source": "GND"}], "variant_access_point": ["Pauschalbewertung", "Gesamtbewertung", "Durchschnittsbewertung"], "authorized_access_point": "Sammelbewertung"} 1 +2024-09-10 15:46:43.486473 2024-09-10 15:46:43.486476 030cd187-7e2d-4ec2-939c-b0a9f57faa5a {"md5": "51723b4334bda4afaf20cde583fc2877", "pid": "040512665", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Lewis-Säure"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113369540X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85000532", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85000532"}], "authorized_access_point": "Acids"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113369540X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11982607", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119826072"}], "authorized_access_point": "Acides"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254362630", "source": "GND"}, {"type": "bf:Nbn", "value": "31196", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/31196"}], "authorized_access_point": "Acidi"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254482210", "source": "GND"}, {"type": "bf:Nbn", "value": "XX534321", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX534321"}], "authorized_access_point": "Ácidos"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336148500", "source": "GND"}, {"type": "bf:Nbn", "value": "D000143", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D000143"}], "authorized_access_point": "Acids"}], "identifier": "http://d-nb.info/gnd/4051266-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4051266-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040512665", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4051266-6", "source": "GND"}], "variant_access_point": ["Säuren"], "authorized_access_point": "Säure"} 1 +2024-09-10 15:46:43.56887 2024-09-10 15:46:43.568874 b2e03e83-7414-4969-afea-4dee22837fce {"md5": "1d0e23253195848267e6aedfe822c47a", "pid": "04051238X", "note": [{"label": ["Verwendet im geistesgeschichtl. Sinn", "Für die Aufhebung geistlichen Besitzes verwende SW Säkularisation."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Säkularismus"}, {"authorized_access_point": "Säkularisation"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133648002", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85119462", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85119462"}], "authorized_access_point": "Secularization (Theology)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133648002", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11951712", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119517122"}], "authorized_access_point": "Sécularisation (théologie)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133980104", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11952495", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119524950"}], "authorized_access_point": "Déchristianisation"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254481508", "source": "GND"}, {"type": "bf:Nbn", "value": "XX4576594", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX4576594"}], "authorized_access_point": "Secularización (Teología)"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970596367", "source": "GND"}, {"type": "bf:Nbn", "value": "10057048", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10057048"}], "authorized_access_point": "Säkularisierung"}], "identifier": "http://d-nb.info/gnd/4051238-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4051238-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04051238X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4051238-1", "source": "GND"}], "variant_access_point": ["Entchristlichung", "Entkirchlichung", "Verweltlichung"], "authorized_access_point": "Säkularisierung"} 1 +2024-09-10 15:46:44.037137 2024-09-10 15:46:44.03714 18b95751-cde0-4b71-931f-338ebce6dc39 {"md5": "a4c18c3b9fd851e6fc4b6c620a7d8f73", "pid": "040406938", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Encephalomyelitis"}, {"authorized_access_point": "Entmarkungskrankheit"}], "related": [{"authorized_access_point": "Multiple-Sklerose-Kranker"}, {"authorized_access_point": "Weibliche Multiple-Sklerose-Kranke"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133629555", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85088374", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85088374"}], "authorized_access_point": "Multiple sclerosis"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133629555", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11938408", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119384088"}], "authorized_access_point": "Sclérose en plaques"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133799876", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12447406", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12447406t"}], "authorized_access_point": "Encéphalomyélite aiguë disseminée"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254355677", "source": "GND"}, {"type": "bf:Nbn", "value": "25174", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/25174"}], "authorized_access_point": "Sclerosi multipla"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254464468", "source": "GND"}, {"type": "bf:Nbn", "value": "XX528904", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX528904"}], "authorized_access_point": "Esclerosis múltiple"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1241613591", "source": "GND"}, {"type": "bf:Nbn", "value": "D009103", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D009103"}], "authorized_access_point": "Multiple Sclerosis"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)97057424X", "source": "GND"}, {"type": "bf:Nbn", "value": "10049932", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10049932"}], "authorized_access_point": "Multiple Sklerose"}], "identifier": "http://d-nb.info/gnd/4040693-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4040693-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040406938", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4040693-3", "source": "GND"}], "variant_access_point": ["Encephalomyelitis disseminata"], "authorized_access_point": "Multiple Sklerose"} 1 +2024-09-10 15:46:43.63995 2024-09-10 15:46:43.639955 04eaa9ca-f157-4a30-bfca-5232e96b5990 {"md5": "ea5110279fe064c7d67099efa02ade49", "pid": "040490297", "note": [{"label": ["Als Homonymenzusatz nach Geographika zugelassen; das Blattgebiet eines Kartenwerks wird durch ein Geographikum mit dem Zusatz wiedergegeben; für die Verwaltungseinheit (Verwaltungsregion), soweit kein spezieller Homonymenzusatz möglich; zu im Sinne von Umgebung vgl. § 204a. Für das Gebiet um eine Insel verknüpfe diese mit einem geeigneten Sach-SW wie SW Küstenmeer bzw. SW Küstengebiet (bei Meeresinseln), SW Litoral o. ä"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Umland"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966940318", "source": "GND"}, {"type": "bf:Nbn", "value": "11857-5", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/11857-5"}], "authorized_access_point": "Region"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970585063", "source": "GND"}, {"type": "bf:Nbn", "value": "10044625", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10044625"}], "authorized_access_point": "Region"}], "identifier": "http://d-nb.info/gnd/4049029-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4049029-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040490297", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4049029-4", "source": "GND"}], "authorized_access_point": "Region"} 1 +2024-09-10 15:46:43.717265 2024-09-10 15:46:43.717269 5b4d14c1-ea2f-465b-9fa7-ae9f900fd7f9 {"md5": "3a9884c0cdf3872fd5adf5522bb8bfaf", "pid": "040459608", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Physikalische Medizin"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133995462", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85101568", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85101568"}], "authorized_access_point": "Physical therapy"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133995462", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11959340", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119593404"}], "authorized_access_point": "Physiothérapie"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254318658", "source": "GND"}, {"type": "bf:Nbn", "value": "1055", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/1055"}], "authorized_access_point": "Fisioterapia"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254473203", "source": "GND"}, {"type": "bf:Nbn", "value": "XX526722", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX526722"}], "authorized_access_point": "Fisioterapia"}], "identifier": "http://d-nb.info/gnd/4045960-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4045960-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040459608", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4045960-3", "source": "GND"}], "variant_access_point": ["Physiotherapie"], "authorized_access_point": "Physikalische Therapie"} 1 +2024-09-10 15:46:43.778461 2024-09-10 15:46:43.778465 f14aa475-5885-42b9-b126-d9d5321cc137 {"md5": "00077bb5b9c714376771e2db7949e854", "pid": "040451259", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133631479", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85099692", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85099692"}], "authorized_access_point": "Peptides"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133631479", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11940224", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119402247"}], "authorized_access_point": "Peptides"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254323341", "source": "GND"}, {"type": "bf:Nbn", "value": "2724", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/2724"}], "authorized_access_point": "Peptidi"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254471782", "source": "GND"}, {"type": "bf:Nbn", "value": "XX533740", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX533740"}], "authorized_access_point": "Péptidos"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336147156", "source": "GND"}, {"type": "bf:Nbn", "value": "D010455", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D010455"}], "authorized_access_point": "Peptides"}], "identifier": "http://d-nb.info/gnd/4045125-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4045125-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040451259", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4045125-2", "source": "GND"}], "authorized_access_point": "Peptide"} 1 +2024-09-10 15:46:43.838098 2024-09-10 15:46:43.838101 57c1a69e-3228-4ef1-ba6a-d5656884df2a {"md5": "a09ba0a11276ed88b489896c36f6c7ac", "pid": "040438163", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Chemische Verbindungen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133638392", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85095499", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85095499"}], "authorized_access_point": "Organic compounds"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133638392", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11944403", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11944403s"}], "authorized_access_point": "Composés organiques"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)125431511X", "source": "GND"}, {"type": "bf:Nbn", "value": "53", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/53"}], "authorized_access_point": "Composti organici"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254469605", "source": "GND"}, {"type": "bf:Nbn", "value": "XX532834", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX532834"}], "authorized_access_point": "Compuestos orgánicos"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336147903", "source": "GND"}, {"type": "bf:Nbn", "value": "D009930", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D009930"}], "authorized_access_point": "Organic Chemicals"}], "identifier": "http://d-nb.info/gnd/4043816-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4043816-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040438163", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4043816-8", "source": "GND"}], "variant_access_point": ["Organische Verbindung"], "authorized_access_point": "Organische Verbindungen"} 1 +2024-09-10 15:46:43.897887 2024-09-10 15:46:43.897892 2a1054bf-8b1d-4344-b176-8853103af913 {"md5": "82242816632cf8bf3bbac75c17770279", "pid": "040432149", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Politische Ökonomie"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133662560", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2010107054", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2010107054"}], "authorized_access_point": "Political science - Economic aspects"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133662560", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11963634", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11963634s"}], "authorized_access_point": "Économie politique et politique"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966926625", "source": "GND"}, {"type": "bf:Nbn", "value": "10975-4", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/10975-4"}], "authorized_access_point": "Neue politische Ökonomie"}], "identifier": "http://d-nb.info/gnd/4043214-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4043214-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040432149", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4043214-2", "source": "GND"}], "variant_access_point": ["Neue Politische Ökonomie", "Politik"], "authorized_access_point": "Ökonomische Theorie der Politik"} 1 +2024-09-10 15:46:44.106877 2024-09-10 15:46:44.106885 6dcafccd-ab6f-4c16-81f0-e248f9a16b5c {"md5": "555a5bc8a856ac839fd4a7128613602e", "pid": "040403688", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motorradsport"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134008813", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85087573", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85087573"}], "authorized_access_point": "Motocross"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134008813", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11965366", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119653662"}], "authorized_access_point": "Motocross"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254464212", "source": "GND"}, {"type": "bf:Nbn", "value": "XX527735", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX527735"}], "authorized_access_point": "Motocross"}], "identifier": "http://d-nb.info/gnd/4040368-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4040368-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040403688", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4040368-3", "source": "GND"}], "authorized_access_point": "Moto-Cross"} 1 +2024-09-10 15:46:44.182458 2024-09-10 15:46:44.182461 ce7d56c2-8918-4f6e-8bd0-c32c276fe940 {"md5": "37e2763c67cb05e39d342fabcf4c235b", "pid": "040389065", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Chemische Verbindungen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133724973", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85095561", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85095561"}], "authorized_access_point": "Organometallic compounds"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133724973", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12128919", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12128919v"}], "authorized_access_point": "Composés organométalliques"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1299901581", "source": "GND"}, {"type": "bf:Nbn", "value": "XX528416", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX528416"}], "authorized_access_point": "Compuestos organometálicos"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336147954", "source": "GND"}, {"type": "bf:Nbn", "value": "D009942", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D009942"}], "authorized_access_point": "Organometallic Compounds"}], "identifier": "http://d-nb.info/gnd/4038906-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4038906-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040389065", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4038906-6", "source": "GND"}], "variant_access_point": ["Metallorganyle", "Organische Metallverbindungen", "Organometallverbindungen", "Metallierte Verbindungen"], "authorized_access_point": "Metallorganische Verbindungen"} 1 +2024-09-10 15:46:44.262037 2024-09-10 15:46:44.262042 ac3e44d4-1782-4acb-b69b-efc4184faa6e {"md5": "91870c503746c1f7f39f4bee288ad054", "pid": "040335682", "note": [{"label": ["Benutzt für Auseinandersetzungen zwischen Kirche u. Staat im weiteren Sinne, u. zwar in Deutschland - auch nach Bismarck - sowie in anderen Ländern; verknüpfe mit Ort u. Zeit; für den nationalsozialistischen Kirchenkampf benutze SW Kirchenkampf <1933-1945>"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133964583", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85073404", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85073404"}], "authorized_access_point": "Kulturkampf"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133964583", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11947326", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11947326w"}], "authorized_access_point": "Kulturkampf"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254453180", "source": "GND"}, {"type": "bf:Nbn", "value": "XX5526666", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX5526666"}], "authorized_access_point": "Kulturkampf"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970567138", "source": "GND"}, {"type": "bf:Nbn", "value": "10050254", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10050254"}], "authorized_access_point": "Kulturkampf"}], "identifier": "http://d-nb.info/gnd/4033568-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4033568-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040335682", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4033568-9", "source": "GND"}], "variant_access_point": ["Kirchenkampf (Kulturkampf)"], "authorized_access_point": "Kulturkampf"} 1 +2024-09-10 15:46:44.33096 2024-09-10 15:46:44.330964 b1010ec0-d5b6-471a-b486-ded90d7501c7 {"md5": "e3435f54ed14932801e102defae698e0", "pid": "040328260", "note": [{"label": ["Ab dem 1.1.2004 neue offizielle Berufsbezeichnung in Dtld: \\"Gesundheits- und Krankenpflegerin\\". Vorher ausgebildete Pflegekräfte können wahlweise die alte oder die neue Berufsbezeichnung führen.", "Als Homonymenzusatz bei Personenschlagwörtern zugelassen."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Pflegepersonal"}], "related": [{"authorized_access_point": "Krankenpfleger"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133947042", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85093349", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85093349"}], "authorized_access_point": "Nurses"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133947042", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11939194", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119391943"}], "authorized_access_point": "Infirmières"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133465350X", "source": "GND"}, {"type": "bf:Nbn", "value": "D009726", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D009726"}], "authorized_access_point": "Nurses"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)97056628X", "source": "GND"}, {"type": "bf:Nbn", "value": "10045518", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10045518"}], "authorized_access_point": "Krankenschwester"}], "identifier": "http://d-nb.info/gnd/4032826-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4032826-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040328260", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4032826-0", "source": "GND"}], "variant_access_point": ["Gesundheits- und Krankenpflegerin", "Krankenpflegerin", "Pflegefachfrau", "Nurse"], "authorized_access_point": "Krankenschwester"} 1 +2024-09-10 15:46:44.407782 2024-09-10 15:46:44.407785 bf457f48-ce42-4af0-8948-4b5b7a3df608 {"md5": "8fe7d5233296218c9bc8bb2f2dc6c621", "pid": "04032009X", "note": [{"label": ["Mit einzelnen Richtungen u. Gattungen werden keine Komposita gebildet. Als Homonymenzusatz bei Personenschlagwörtern zugelassen."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Musiker"}], "related": [{"authorized_access_point": "Komponistin"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133614000", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85029386", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85029386"}], "authorized_access_point": "Composers"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133614000", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11931721", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11931721m"}], "authorized_access_point": "Compositeurs"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254315225", "source": "GND"}, {"type": "bf:Nbn", "value": "72", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/72"}], "authorized_access_point": "Compositori"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970564929", "source": "GND"}, {"type": "bf:Nbn", "value": "10049435", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10049435"}], "authorized_access_point": "Komponist"}], "identifier": "http://d-nb.info/gnd/4032009-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4032009-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04032009X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4032009-1", "source": "GND"}], "authorized_access_point": "Komponist"} 1 +2024-09-10 15:46:44.478075 2024-09-10 15:46:44.478078 01727572-573f-4863-bfdf-5d4aa1d319b7 {"md5": "a4adba9469760245d11b0acb0c5f9f7d", "pid": "040252434", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=243780470"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Hochschullehrerin"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)129155713X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85028378", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85028378"}], "authorized_access_point": "College teachers"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)129155713X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11947431", "source": "BNF"}, {"type": "uri", "value": "https://ark.bnf.fr/ark:/12148/cb11947431r"}], "authorized_access_point": "Professeurs (enseignement supérieur)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966775546", "source": "GND"}, {"type": "bf:Nbn", "value": "11372-1", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/11372-1"}], "authorized_access_point": "Hochschullehrer"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970557574", "source": "GND"}, {"type": "bf:Nbn", "value": "10041291", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10041291"}], "authorized_access_point": "Hochschullehrer"}], "identifier": "http://d-nb.info/gnd/4025243-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4025243-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040252434", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4025243-7", "source": "GND"}], "variant_access_point": ["Professor (Hochschule)", "Lehrkörper", "Lehrpersonal", "Universitätsprofessor", "Hochschulprofessor"], "authorized_access_point": "Hochschullehrer"} 1 +2024-09-10 15:46:44.554882 2024-09-10 15:46:44.554887 31820cd0-e4ea-477e-bbcd-210fd47b9e41 {"md5": "529093c74ff6770c81aaf0782e9e70f4", "pid": "040247996", "note": [{"label": ["Als Berufsbezeichnung in Personendatensätzen zugelassen; als Berufsbezeichnung in Personendatensätzen nur für Personen zu verwenden, die sich als praktizierende Hexen verstehen und diesen Begriff als Selbstbezeichnung verwenden; für die Opfer von Hexenprozessen verwende SW Weibliche Angeklagte in Kombination mit SW Hexenprozess, beide jeweils mit dem Code rela"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Hexerei"}, {"authorized_access_point": "Magier"}, {"authorized_access_point": "Hexenglaube"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134220030", "source": "GND"}, {"type": "bf:Nbn", "value": "sh92005718", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh92005718"}], "authorized_access_point": "Witches"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134220030", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12226069", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12226069m"}], "authorized_access_point": "Sorcières"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254439862", "source": "GND"}, {"type": "bf:Nbn", "value": "XX528134", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX528134"}], "authorized_access_point": "Brujas"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)97055723X", "source": "GND"}, {"type": "bf:Nbn", "value": "10046607", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10046607"}], "authorized_access_point": "Hexe"}], "identifier": "http://d-nb.info/gnd/4024799-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4024799-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040247996", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4024799-5", "source": "GND"}], "variant_access_point": ["Hexenwesen", "Hexen"], "authorized_access_point": "Hexe"} 1 +2024-09-10 15:46:44.63631 2024-09-10 15:46:44.636314 12a34d12-0161-420f-9213-95446ffcdb77 {"md5": "90dc6924b5ba741726af6b601cba9be3", "pid": "04024055X", "note": [{"label": ["Benutzt für männliche heilige Personen und die Personengruppe im Plural; als identifizierender Zusatz und als instantieller Oberbegriff bei männlichen heiligen Personen obligatorisch gem. EH-P-10 zur GND nach RDA"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Namenspatron"}, {"authorized_access_point": "Heilige"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134039107", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85116629", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85116629"}], "authorized_access_point": "Saints"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134039107", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11975976", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119759767"}], "authorized_access_point": "Saints"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254325468", "source": "GND"}, {"type": "bf:Nbn", "value": "3549", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/3549"}], "authorized_access_point": "Santi"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254439153", "source": "GND"}, {"type": "bf:Nbn", "value": "XX526019", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX526019"}], "authorized_access_point": "Santos cristianos"}], "identifier": "http://d-nb.info/gnd/4024055-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4024055-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04024055X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4024055-1", "source": "GND"}], "variant_access_point": ["Nothelfer"], "authorized_access_point": "Heiliger"} 1 +2024-09-10 15:46:44.720525 2024-09-10 15:46:44.72053 af80909b-fbf2-43c1-a7a0-3df8ee24c8af {"md5": "127640054c442d8c51fe5952a0388c32", "pid": "040205487", "note": [{"label": ["Wikipedia unter Gender Studies - https://de.wikipedia.org/w/index.php?oldid=244279195"], "noteType": "dataSource"}, {"label": ["Allg. Bezeichnung für die strukturell verankerten Beziehungen zwischen den Geschlechtern (im Hinblick auf Zuständigkeiten, Rechte und Pflichten, Rollenbesetzungen und Geschlechtsidentitäten usw.)", "Kombiniere z.B. mit Region, Untersuchungsaspekt und/oder Personengruppen. Für Geschlechterverhältnis im Sinne des rein zahlenmäßigen Verhältnisses innerhalb einer Population (Geschlechterverteilung) nutze SW \\"Geschlechterverhältnis \\""], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Heteronormativität"}, {"authorized_access_point": "Gender"}, {"authorized_access_point": "Geschlechterverhältnis (Demographie)"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133940080", "source": "GND"}, {"type": "bf:Nbn", "value": "sh92001504", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh92001504"}], "authorized_access_point": "Man-woman relationships"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133940080", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11936576", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11936576j"}], "authorized_access_point": "Relations hommes-femmes"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254434763", "source": "GND"}, {"type": "bf:Nbn", "value": "XX541405", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX541405"}], "authorized_access_point": "Relaciones de pareja"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970553765", "source": "GND"}, {"type": "bf:Nbn", "value": "10064589", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10064589"}], "authorized_access_point": "Geschlechterverhältnis"}], "identifier": "http://d-nb.info/gnd/4020548-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4020548-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040205487", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4020548-4", "source": "GND"}], "variant_access_point": ["Geschlechterbeziehung", "Geschlechterverhältnisse", "Geschlechterbeziehungen", "Gender relationship"], "authorized_access_point": "Geschlechterverhältnis"} 1 +2024-09-10 15:46:44.802967 2024-09-10 15:46:44.802969 b692d6ce-b6ec-42e5-ba6d-2416b24b453d {"md5": "b100160a10bdfe7bb2945d4b8f8a52ef", "pid": "040189074", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Elektromagnetische_St%C3%B6rung&oldid=191732329"], "noteType": "dataSource"}, {"label": ["Elektromagnetische Störung (auch Funkstörung) ist die Auswirkung einer durch Aussendung, Ausstrahlung oder Induktion (oder durch die Kombination von Aussendungen, Ausstrahlungen oder Induktionen) entstehende unerwünschte Energie auf den Empfang in einem Funksystem; diese Auswirkung macht sich durch Verschlechterung der Übertragungsgüte, durch Entstellung oder Verlust von Nachrichteninhalten bemerkbar, welche bei Fehlen dieser unerwünschten Energie verfügbar wäre."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Störstrahlung"}, {"authorized_access_point": "Elektromagnetische Verträglichkeit"}], "identifier": "http://d-nb.info/gnd/4018907-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4018907-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040189074", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4018907-7", "source": "GND"}], "variant_access_point": ["Elektromagnetische Störung", "electromagnetic interference"], "authorized_access_point": "Funkstörung"} 1 +2024-09-10 15:46:44.860222 2024-09-10 15:46:44.860225 aa8823da-caaa-4fa0-8f8c-19d8b2a2b7e7 {"md5": "4ebd9d51b28f374366d6f4389f44f291", "pid": "040130193", "note": [{"label": ["Ohne HZ Motiv", "Neben dem Recht auch als Allgemeinbegriff benutzt."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifier": "http://d-nb.info/gnd/4013019-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4013019-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040130193", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4013019-8", "source": "GND"}], "variant_access_point": ["Drittperson", "Der Dritte", "Drittbeteiligter"], "authorized_access_point": "Dritter"} 1 +2024-09-10 15:46:44.93132 2024-09-10 15:46:44.931324 323c4565-ab49-4f9d-95dc-f8c263417d6b {"md5": "c4fe81f98bbbe8971e6c60b8b387f177", "pid": "04009006X", "note": [{"label": ["Als Sachbegriff nur benutzt für Zentralstaat und die Bundesebene im Bundesstaat. Für die Gliedstaaten benutze als Sachbegriff die jeweils übliche Bezeichnung, z.B. SW Bundesstaaten für USA, Bundesland für Österreich, Länder für Deutschland, Provinz für Kanada, Kanton für die Schweiz usw. und Staat im Allgemeinen. Als instanzieller Oberbegriff bei der Erfassung von Bundesstaat als Gliedstaat soll Staat (gnd/4056618-3) verwendet werden."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Staatenverbindung"}], "related": [{"authorized_access_point": "Föderalismus"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134498322", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85047611", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85047611"}], "authorized_access_point": "Federal government"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134498322", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13318437", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13318437p"}], "authorized_access_point": "Gouvernement fédéral"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254368582", "source": "GND"}, {"type": "bf:Nbn", "value": "35834", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/35834"}], "authorized_access_point": "Governo federale"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970540604", "source": "GND"}, {"type": "bf:Nbn", "value": "10039967", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10039967"}], "authorized_access_point": "Bund"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970541031", "source": "GND"}, {"type": "bf:Nbn", "value": "10040040", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10040040"}], "authorized_access_point": "Bundesstaat"}], "identifier": "http://d-nb.info/gnd/4009006-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4009006-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04009006X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4009006-1", "source": "GND"}], "variant_access_point": ["Zentralstaat", "Bund (Bundesstaat)", "Bund"], "authorized_access_point": "Bundesstaat"} 1 +2024-09-10 15:46:45.024039 2024-09-10 15:46:45.024042 89e4f695-0829-450c-807f-ab0cdcd8c3cb {"md5": "330eec98fd5b5cc06e4b1b249fb80146", "pid": "040085287", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Krebs (Medizin)"}, {"authorized_access_point": "Brustkrankheit"}], "related": [{"authorized_access_point": "Gen BRCA 2"}, {"authorized_access_point": "Gen BRCA 1"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133619894", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85016679", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85016679"}], "authorized_access_point": "Breast - Cancer"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133619894", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11933256", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11933256c"}], "authorized_access_point": "Sein - Cancer"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254414827", "source": "GND"}, {"type": "bf:Nbn", "value": "XX575163", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX575163"}], "authorized_access_point": "Mamas - Cáncer"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)124159466X", "source": "GND"}, {"type": "bf:Nbn", "value": "D001943", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D001943"}], "authorized_access_point": "Breast Neoplasms"}], "identifier": "http://d-nb.info/gnd/4008528-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4008528-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040085287", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4008528-4", "source": "GND"}], "variant_access_point": ["Brustdrüsenkrebs", "Carcinoma mammae", "Mammacarcinom", "Mammakarzinom"], "authorized_access_point": "Brustkrebs"} 1 +2024-09-10 15:46:45.099337 2024-09-10 15:46:45.099342 773942d4-b450-4101-b69b-1ca0a0559b8d {"md5": "b76f6e91e690ce5527df010d42a0f928", "pid": "040085244", "note": [{"label": ["Benutzt für physiolog. u. anatomische Sachverhalte, für kulturgeschichtliche sowie erotische u. sonstige Symbolik verwende das SW Busen."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134518315", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85016677", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85016677"}], "authorized_access_point": "Breast"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134518315", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11938328", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11938328m"}], "authorized_access_point": "Sein"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254337466", "source": "GND"}, {"type": "bf:Nbn", "value": "12086", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/12086"}], "authorized_access_point": "Mammelle"}], "identifier": "http://d-nb.info/gnd/4008524-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4008524-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040085244", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4008524-7", "source": "GND"}], "variant_access_point": ["Brust", "Busen (Anatomie)", "Weibliche Brust"], "authorized_access_point": "Mamma"} 1 +2024-09-10 15:46:45.179341 2024-09-10 15:46:45.179345 6f834f1b-7b8f-4c82-bb72-52195c7216ab {"md5": "d75b8b3561f76fde3a7eeee1f1a49cc3", "pid": "040078124", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134253192", "source": "GND"}, {"type": "bf:Nbn", "value": "sh89002772", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh89002772"}], "authorized_access_point": "Boron compounds"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134253192", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12274183", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb122741830"}], "authorized_access_point": "Bore - Composés"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133614856X", "source": "GND"}, {"type": "bf:Nbn", "value": "D001896", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D001896"}], "authorized_access_point": "Boron Compounds"}], "identifier": "http://d-nb.info/gnd/4007812-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4007812-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040078124", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4007812-7", "source": "GND"}], "authorized_access_point": "Borverbindungen"} 1 +2024-09-10 15:46:45.250418 2024-09-10 15:46:45.250422 e47988cc-cf76-4a1b-bd65-1bdddb1634c6 {"md5": "5b2971317a1b6ef51c997d7ff59a740a", "pid": "040068560", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Biologische Landwirtschaft"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134597304", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85095504", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85095504"}], "authorized_access_point": "Organic farming"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134597304", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11930852", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11930852x"}], "authorized_access_point": "Agriculture biologique"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256197114", "source": "GND"}, {"type": "bf:Nbn", "value": "15912", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_15912"}], "authorized_access_point": "biodynamic agriculture"}], "identifier": "http://d-nb.info/gnd/4006856-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4006856-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040068560", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4006856-0", "source": "GND"}], "variant_access_point": ["Biologisch-dynamischer Landbau", "Biologisch-dynamische Landwirtschaft", "Biodynamische Landwirtschaft", "Biodynamie", "Biodynamischer Anbau", "Dynamisch-biologische Landwirtschaft", "Landwirtschaft"], "authorized_access_point": "Biologisch-dynamische Wirtschaftsweise"} 1 +2024-09-10 15:46:45.326204 2024-09-10 15:46:45.326207 96fe22a8-72f0-4c24-90e9-8f399195a8ea {"md5": "3860fc97f38f421005cda46e8b7bef1c", "pid": "040062120", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Stilllegung"}], "related": [{"authorized_access_point": "Betriebsaufgabe"}, {"authorized_access_point": "Betriebsschließung"}, {"authorized_access_point": "Betriebsunterbrechung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1335075461", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85102810f", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85102810"}], "authorized_access_point": "Plant shutdowns"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1335075461", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12069852", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb120698529"}], "authorized_access_point": "Entreprises - Disparition"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970538766", "source": "GND"}, {"type": "bf:Nbn", "value": "10038913", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10038913"}], "authorized_access_point": "Betriebsstillegung"}], "identifier": "http://d-nb.info/gnd/4006212-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4006212-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040062120", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4006212-0", "source": "GND"}], "variant_access_point": ["Betrieb", "Betriebsstillegung"], "authorized_access_point": "Betriebsstilllegung"} 1 +2024-09-10 15:46:45.408411 2024-09-10 15:46:45.408419 3d0e3413-9fb9-4b25-8c4d-c27a170b6453 {"md5": "a5f6bf17937737867d4b7f34360e7287", "pid": "040036774", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Extraktivismus"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133864414", "source": "GND"}, {"type": "bf:Nbn", "value": "sh96000331", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh96000331"}], "authorized_access_point": "Exploitation"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133864414", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13536692", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13536692n"}], "authorized_access_point": "Exploitation de l'homme par l'homme"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970535007", "source": "GND"}, {"type": "bf:Nbn", "value": "10037031", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10037031"}], "authorized_access_point": "Ausbeutung"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966854969", "source": "GND"}, {"type": "bf:Nbn", "value": "30410-5", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/30410-5"}], "authorized_access_point": "Ausbeutung"}], "identifier": "http://d-nb.info/gnd/4003677-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4003677-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040036774", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4003677-7", "source": "GND"}], "authorized_access_point": "Ausbeutung"} 1 +2024-09-10 15:46:45.47797 2024-09-10 15:46:45.477976 9c36432e-174e-41eb-923c-8db7dd5e79b5 {"md5": "48a97bbda9108dd578b3a228623ffee6", "pid": "040030415", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Stickstoffgruppe"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134516541", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85007449", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85007449"}], "authorized_access_point": "Arsenic"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134516541", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11971740", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11971740q"}], "authorized_access_point": "Arsenic"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254356185", "source": "GND"}, {"type": "bf:Nbn", "value": "25597", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/25597"}], "authorized_access_point": "Arsenico"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254406638", "source": "GND"}, {"type": "bf:Nbn", "value": "XX535902", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX535902"}], "authorized_access_point": "Arsénico"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256192597", "source": "GND"}, {"type": "bf:Nbn", "value": "629", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_629"}], "authorized_access_point": "arsenic"}], "identifier": "http://d-nb.info/gnd/4003041-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4003041-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040030415", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4003041-6", "source": "GND"}], "authorized_access_point": "Arsen"} 1 +2024-09-10 15:46:45.563825 2024-09-10 15:46:45.56383 de9eeee3-b8da-4a93-ae3e-72c162138520 {"md5": "c1c5750f350fafcfe9fa389c089b4355", "pid": "040021475", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Chemische Verbindungen"}, {"authorized_access_point": "Anorganischer Stoff"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134045263", "source": "GND"}, {"type": "bf:Nbn", "value": "sh86005967", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh86005967"}], "authorized_access_point": "Inorganic compounds"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134045263", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11977078", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11977078x"}], "authorized_access_point": "Composés inorganiques"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254317880", "source": "GND"}, {"type": "bf:Nbn", "value": "789", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/789"}], "authorized_access_point": "Composti inorganici"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254404813", "source": "GND"}, {"type": "bf:Nbn", "value": "XX533227", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX533227"}], "authorized_access_point": "Compuestos inorgánicos"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336148381", "source": "GND"}, {"type": "bf:Nbn", "value": "D007287", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D007287"}], "authorized_access_point": "Inorganic Chemicals"}], "identifier": "http://d-nb.info/gnd/4002147-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4002147-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040021475", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4002147-6", "source": "GND"}], "variant_access_point": ["Anorganische Verbindung"], "authorized_access_point": "Anorganische Verbindungen"} 1 +2024-09-10 15:46:45.646603 2024-09-10 15:46:45.646608 4e21a08c-d5a6-4e96-bfa2-902c3244c376 {"md5": "bfd1fd258c144e4645db7b14df8e8097", "pid": "040021459", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Chemie"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133687520", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85023017", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85023017"}], "authorized_access_point": "Chemistry, Inorganic"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133687520", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11978675", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11978675s"}], "authorized_access_point": "Chimie inorganique"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254352333", "source": "GND"}, {"type": "bf:Nbn", "value": "22797", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/22797"}], "authorized_access_point": "Chimica inorganica"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254404805", "source": "GND"}, {"type": "bf:Nbn", "value": "XX525776", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX525776"}], "authorized_access_point": "Química inorgánica"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1328566218", "source": "GND"}, {"type": "bf:Nbn", "value": "D015392", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D015392"}], "authorized_access_point": "Chemistry, Inorganic"}], "identifier": "http://d-nb.info/gnd/4002145-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4002145-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040021459", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4002145-2", "source": "GND"}], "authorized_access_point": "Anorganische Chemie"} 1 diff --git a/data/cognd_pidstore.csv b/data/cognd_pidstore.csv new file mode 100644 index 00000000..8532c3ef --- /dev/null +++ b/data/cognd_pidstore.csv @@ -0,0 +1,2124 @@ +2024-09-10 15:45:19.744317 2024-09-10 15:45:19.744328 cognd 040598160 R rec bdfbd40b-9f6a-4c6d-b37c-43371594e9c7 +2024-09-10 15:45:19.841885 2024-09-10 15:45:19.841927 cognd 040596648 R rec e8a79089-2e82-42c0-baf1-11bb9daea585 +2024-09-10 15:45:19.944865 2024-09-10 15:45:19.944876 cognd 04059596X R rec d49e14d7-c5eb-408a-88a9-b379a2760a39 +2024-09-10 15:45:20.062184 2024-09-10 15:45:20.0622 cognd 040581780 R rec 4ef796b0-78b6-4759-9f88-bef1166e8ce6 +2024-09-10 15:45:20.178073 2024-09-10 15:45:20.178084 cognd 040579123 R rec 086da715-0edf-418a-87fc-c80513e610d8 +2024-09-10 15:45:20.239443 2024-09-10 15:45:20.239448 cognd 040576337 R rec fa132987-4f09-4fd7-b6dd-8c55ddbbcfec +2024-09-10 15:45:20.327363 2024-09-10 15:45:20.327379 cognd 040575136 R rec 831e57ac-cb6d-4ba2-a32b-80488ab6c3eb +2024-09-10 15:45:20.442163 2024-09-10 15:45:20.442177 cognd 040570215 R rec 7ed53a64-e807-4dfa-9595-449b1c931c7b +2024-09-10 15:45:20.546473 2024-09-10 15:45:20.546484 cognd 040562182 R rec bf7fc527-ac07-423f-9bc5-73cff81a3b01 +2024-09-10 15:43:41.625579 2024-09-10 15:43:41.625584 cognd 1334542139 R rec 2d6fcb46-12c0-4b0a-8b69-31386ebb01bf +2024-09-10 15:43:41.761405 2024-09-10 15:43:41.761413 cognd 1334538549 R rec 776016e7-d8a8-468a-a52d-5efd4c335c16 +2024-09-10 15:43:41.822985 2024-09-10 15:43:41.822991 cognd 1334484775 R rec 3830413d-acb9-4522-8bff-d47757746d0a +2024-09-10 15:43:41.883642 2024-09-10 15:43:41.883648 cognd 1334336342 R rec 9492ee1b-5128-4dc4-b9d1-01eda75b5e19 +2024-09-10 15:43:41.945522 2024-09-10 15:43:41.945527 cognd 1334320462 R rec 9b2d7359-c4bf-4327-a20f-386822fc2c2b +2024-09-10 15:43:42.003789 2024-09-10 15:43:42.003794 cognd 1334314950 R rec 12625acd-f49c-47da-935d-e2b14c303891 +2024-09-10 15:43:42.065784 2024-09-10 15:43:42.065791 cognd 1334231826 R rec d983bc83-ea0c-41b8-a12f-146446c2d349 +2024-09-10 15:43:42.125372 2024-09-10 15:43:42.125377 cognd 1334230463 R rec c34600c6-7676-4166-814a-610ccd2ba308 +2024-09-10 15:43:42.18696 2024-09-10 15:43:42.186965 cognd 1334227209 R rec 4773907e-d3e6-4700-b6b9-2503fbd97b43 +2024-09-10 15:43:42.248224 2024-09-10 15:43:42.24823 cognd 1334225907 R rec 967cbe14-1683-424d-8d5b-fc6c396158af +2024-09-10 15:43:42.31722 2024-09-10 15:43:42.317225 cognd 1334131074 R rec f61b327b-66d6-4f65-b65e-2a4b768c4d6b +2024-09-10 15:43:42.376627 2024-09-10 15:43:42.376633 cognd 1334127158 R rec 52e1f96b-6445-43d4-806e-2a5d85ea3b77 +2024-09-10 15:43:42.44368 2024-09-10 15:43:42.443685 cognd 1334091412 R rec 09514c14-4ecf-4dbe-b8e7-394dca72dad1 +2024-09-10 15:43:42.49784 2024-09-10 15:43:42.497846 cognd 1334089663 R rec 2c73ca57-cb56-4334-b89c-8e029c748a7c +2024-09-10 15:43:42.550373 2024-09-10 15:43:42.550379 cognd 1334088837 R rec 4574e9fd-bd22-4d3e-9974-e826707bcd34 +2024-09-10 15:43:42.606742 2024-09-10 15:43:42.606748 cognd 1334088217 R rec cd40da1a-94ba-4042-8808-f4b367b7613f +2024-09-10 15:43:42.670434 2024-09-10 15:43:42.67044 cognd 1334087156 R rec e48de1ad-9172-480a-83ab-796cad6edaad +2024-09-10 15:43:42.733484 2024-09-10 15:43:42.73349 cognd 133400076X R rec 30e9203c-2d69-4bff-b659-b11335034d6e +2024-09-10 15:43:42.793284 2024-09-10 15:43:42.793289 cognd 1333993331 R rec 100a4220-8b45-48a2-a6f8-852359d9a086 +2024-09-10 15:43:42.851799 2024-09-10 15:43:42.851804 cognd 1333992548 R rec d74a81c2-9791-44da-abff-05969253f3b2 +2024-09-10 15:43:42.918446 2024-09-10 15:43:42.918452 cognd 1333987366 R rec aefcf95a-1603-40c8-b131-d59dfa7db81b +2024-09-10 15:43:42.97787 2024-09-10 15:43:42.977875 cognd 133396420X R rec d45a58f7-a609-44d9-9850-0f3cbc2b30dc +2024-09-10 15:43:43.034121 2024-09-10 15:43:43.034126 cognd 1333876874 R rec 5bfc3aee-5813-4ae9-9906-65cab96bcea3 +2024-09-10 15:43:43.096231 2024-09-10 15:43:43.096237 cognd 1333855907 R rec 19c14ecf-d851-424d-a8b4-a27f919efdfa +2024-09-10 15:43:43.169959 2024-09-10 15:43:43.169968 cognd 133385501X R rec 8d0fed49-9bb6-4ee5-8ee5-bf41d3c703ea +2024-09-10 15:43:43.235889 2024-09-10 15:43:43.235898 cognd 1333853084 R rec cc2b7dd7-fdb0-40e4-89e5-12fa4b34f821 +2024-09-10 15:43:43.292086 2024-09-10 15:43:43.292091 cognd 1333852673 R rec 03940129-b900-47bb-8e6a-047a833d6fd7 +2024-09-10 15:43:43.348902 2024-09-10 15:43:43.348907 cognd 1333849788 R rec ebf0629d-0da6-493f-a04b-0f1d90e79165 +2024-09-10 15:43:43.409887 2024-09-10 15:43:43.409892 cognd 1333849435 R rec 7a0374fe-9c0b-4c35-aa72-9249bcbe7ada +2024-09-10 15:43:43.468025 2024-09-10 15:43:43.468028 cognd 1333729863 R rec 70e8c08f-3007-476b-af4a-75b5aaea7ee2 +2024-09-10 15:43:43.531092 2024-09-10 15:43:43.531098 cognd 1333716354 R rec 260ac971-e30b-4677-be6a-d457912cc871 +2024-09-10 15:43:43.58997 2024-09-10 15:43:43.589976 cognd 1333566352 R rec c0217e5a-d014-49f0-9abf-ceb4e161178d +2024-09-10 15:43:43.651122 2024-09-10 15:43:43.651128 cognd 1333421427 R rec b39e8931-62b5-403d-a4a4-f48ce6f38953 +2024-09-10 15:43:43.70622 2024-09-10 15:43:43.706225 cognd 1333376049 R rec d21ecc6b-c210-49e1-9b47-89e4dd5e0291 +2024-09-10 15:43:43.765498 2024-09-10 15:43:43.765504 cognd 133335245X R rec 875289a0-f2eb-4d97-b71e-db578a8a5548 +2024-09-10 15:43:43.824999 2024-09-10 15:43:43.825006 cognd 1333352085 R rec 1ecf4558-b0c6-43c7-a62b-5d0ebd7f6964 +2024-09-10 15:43:43.89182 2024-09-10 15:43:43.891825 cognd 1333331002 R rec 22cc823c-e577-4d75-a682-1ee89799466c +2024-09-10 15:43:43.95184 2024-09-10 15:43:43.951846 cognd 1333323778 R rec 70c8efdd-2118-44e5-a2b5-a945f1989e08 +2024-09-10 15:43:44.015335 2024-09-10 15:43:44.015341 cognd 1333312415 R rec cb9c653d-e108-4a9a-9cd9-a9c82278eb08 +2024-09-10 15:43:44.087992 2024-09-10 15:43:44.087997 cognd 1333312326 R rec e5767934-a02f-4210-82b5-10d428721172 +2024-09-10 15:43:44.14732 2024-09-10 15:43:44.147325 cognd 1333270267 R rec 89755528-791a-4eb7-b68c-50246a8ccdab +2024-09-10 15:43:44.209603 2024-09-10 15:43:44.209609 cognd 133326514X R rec aec88171-7e16-4007-ad39-aed5eddd0e8b +2024-09-10 15:43:44.267353 2024-09-10 15:43:44.267359 cognd 1333260830 R rec f0c7bf40-07a2-42c5-8cee-7f62efbb2add +2024-09-10 15:43:44.33284 2024-09-10 15:43:44.332847 cognd 1333256302 R rec bf54a66f-1645-4a28-b400-bc4ffd9f0a8a +2024-09-10 15:43:44.396187 2024-09-10 15:43:44.396194 cognd 133325590X R rec 8ee940bd-2e5d-4d21-88cb-a64ac57667dc +2024-09-10 15:43:44.479916 2024-09-10 15:43:44.479922 cognd 1333255616 R rec 3d443a92-9c19-4637-9761-a24536f89bb6 +2024-09-10 15:43:44.548898 2024-09-10 15:43:44.548904 cognd 1333210043 R rec 02341364-3cb2-4b89-8680-7ade80596d4b +2024-09-10 15:43:44.61637 2024-09-10 15:43:44.616376 cognd 1333209908 R rec 9ed7253c-0d41-4b9e-92db-7147a4a77507 +2024-09-10 15:43:44.67141 2024-09-10 15:43:44.671415 cognd 1333208901 R rec e4172cea-38bc-4d52-83b1-221ba9f833aa +2024-09-10 15:43:44.724278 2024-09-10 15:43:44.724284 cognd 1333141017 R rec ff3dd24f-acdd-450e-a643-b4b29fe08194 +2024-09-10 15:43:44.792946 2024-09-10 15:43:44.792957 cognd 1333125127 R rec b90cf43d-8a55-43f7-9e1a-9c5928c08ad5 +2024-09-10 15:43:44.856055 2024-09-10 15:43:44.856064 cognd 1333119267 R rec 3823f41a-6967-46b7-b558-2e46051c2f9e +2024-09-10 15:43:44.914277 2024-09-10 15:43:44.914283 cognd 1333118023 R rec fefcd0be-55a4-4bb5-b92b-2beb3aa4bc41 +2024-09-10 15:43:44.973717 2024-09-10 15:43:44.973722 cognd 1333117329 R rec 4c8119d1-b17d-4564-85a6-d3fe8f54c50b +2024-09-10 15:43:45.039213 2024-09-10 15:43:45.039219 cognd 1333115881 R rec 3571b0bc-bc58-4edf-9451-17541fc30c98 +2024-09-10 15:43:45.099669 2024-09-10 15:43:45.099675 cognd 1333113749 R rec 0a0e3aac-940c-467f-8bbc-2be60990b061 +2024-09-10 15:43:45.157033 2024-09-10 15:43:45.157038 cognd 1333065841 R rec f10a89b5-92a6-4130-a0e6-905033f484c7 +2024-09-10 15:43:45.215294 2024-09-10 15:43:45.2153 cognd 1333064136 R rec 4257d507-9ab3-4145-a897-9e4689a0c2ab +2024-09-10 15:43:45.27281 2024-09-10 15:43:45.272819 cognd 1333063970 R rec e3c10112-6c1c-4767-aed8-d62d154606ad +2024-09-10 15:43:45.332695 2024-09-10 15:43:45.3327 cognd 1333063717 R rec 4e2a1ad7-0e7d-4131-bd87-d1fcfac27276 +2024-09-10 15:43:45.395851 2024-09-10 15:43:45.39586 cognd 133306179X R rec b1138395-f667-42e6-afb3-4dcda5056a29 +2024-09-10 15:43:45.455076 2024-09-10 15:43:45.455082 cognd 1333037414 R rec a91dfaa0-c1f1-4e85-b688-713fef38066c +2024-09-10 15:43:45.517222 2024-09-10 15:43:45.517228 cognd 1333027249 R rec 8c5575de-7887-4227-8f6d-04374cbac25d +2024-09-10 15:43:45.577705 2024-09-10 15:43:45.577711 cognd 1332990258 R rec 7bddfe3a-abfb-44bf-8094-7bd90909e36b +2024-09-10 15:43:45.632921 2024-09-10 15:43:45.632926 cognd 1332899730 R rec 630158c1-b963-440f-80e4-1ed717f33b91 +2024-09-10 15:43:45.692853 2024-09-10 15:43:45.692865 cognd 1332895018 R rec 67fc8d29-057b-4059-acee-7bd9cdda7f74 +2024-09-10 15:43:45.765837 2024-09-10 15:43:45.765843 cognd 1332889549 R rec 9729671d-a5d0-4a12-a17d-2337d73bfc45 +2024-09-10 15:43:45.824108 2024-09-10 15:43:45.824114 cognd 1332775381 R rec 74e8c90e-5853-4b67-af3d-a170bde4d5fd +2024-09-10 15:43:45.883017 2024-09-10 15:43:45.883023 cognd 1332774113 R rec 9bd821cd-45e8-46b4-b645-a976afb24ae4 +2024-09-10 15:43:45.953896 2024-09-10 15:43:45.953908 cognd 133276648X R rec 3e91b548-0ceb-43bf-8a56-409e60230317 +2024-09-10 15:43:46.033618 2024-09-10 15:43:46.033625 cognd 1332759254 R rec c4159d23-b5e4-42a6-8852-ff009e5d92e3 +2024-09-10 15:43:46.125434 2024-09-10 15:43:46.125454 cognd 1332688047 R rec bc722ef7-f8f0-4022-819d-40cdf27648ae +2024-09-10 15:43:46.218272 2024-09-10 15:43:46.218284 cognd 1332661297 R rec be0be86a-a28f-40e5-b1df-3ff7603b3836 +2024-09-10 15:43:46.307897 2024-09-10 15:43:46.307903 cognd 1332657273 R rec 6cffc28a-0e71-4209-9d31-265e4c3e776b +2024-09-10 15:43:46.397707 2024-09-10 15:43:46.397723 cognd 1332649688 R rec 1a8bb96a-30f8-416d-9fb5-372f18931ea2 +2024-09-10 15:43:46.500365 2024-09-10 15:43:46.500375 cognd 1332459587 R rec bbc02097-feaf-4826-a38b-2c5451d9b458 +2024-09-10 15:43:46.577293 2024-09-10 15:43:46.577304 cognd 1332430376 R rec c291ca61-c3f3-4733-bea2-80ce1797c2ba +2024-09-10 15:43:46.654755 2024-09-10 15:43:46.654766 cognd 1332426751 R rec a74de834-d34b-40ad-b45e-42bab03886e9 +2024-09-10 15:43:46.738655 2024-09-10 15:43:46.738669 cognd 1332365841 R rec 4561b062-ee64-4def-87b9-51cb77019034 +2024-09-10 15:43:46.818511 2024-09-10 15:43:46.818517 cognd 1332318142 R rec 01a340d9-a101-4832-b817-a2d2185e81c7 +2024-09-10 15:43:46.875623 2024-09-10 15:43:46.875628 cognd 1332111971 R rec 7ecbf506-bb34-4c46-899e-77b2bb4ca089 +2024-09-10 15:43:46.940526 2024-09-10 15:43:46.940537 cognd 1332095119 R rec 073caaf1-9aec-444f-9ccb-ec6c9901154e +2024-09-10 15:43:47.030181 2024-09-10 15:43:47.030187 cognd 133197612X R rec e88ae1c6-7799-4663-bbd9-e2c1a2dcf814 +2024-09-10 15:43:47.183863 2024-09-10 15:43:47.183876 cognd 133197593X R rec e444cea8-25a9-4ba7-9e47-dcd6247b1133 +2024-09-10 15:43:47.269958 2024-09-10 15:43:47.269974 cognd 1331975794 R rec 2abfa30d-dab5-4aba-945e-bb7eb7045edc +2024-09-10 15:43:47.364561 2024-09-10 15:43:47.364578 cognd 1331886929 R rec 9bcec709-ea35-49c9-a3dd-0ae833182313 +2024-09-10 15:43:47.447412 2024-09-10 15:43:47.447428 cognd 1331876540 R rec a7b6bb0a-b709-4109-a3e5-5309fc68ac60 +2024-09-10 15:43:47.527183 2024-09-10 15:43:47.527194 cognd 1331840627 R rec 4355512b-e66c-481a-8629-805a24955046 +2024-09-10 15:43:47.593804 2024-09-10 15:43:47.593815 cognd 1331747716 R rec 3f906805-8674-4fb8-b4fa-34feefbd873e +2024-09-10 15:43:47.670445 2024-09-10 15:43:47.67045 cognd 1331734126 R rec 9f79441c-5704-47a2-985f-05fe5bc82bb6 +2024-09-10 15:43:47.730161 2024-09-10 15:43:47.730166 cognd 1331734045 R rec 0c958476-a506-4b03-b1c6-81bb78c7831f +2024-09-10 15:43:47.822784 2024-09-10 15:43:47.82279 cognd 1331733316 R rec 44793500-28c4-4e05-a93e-6ba5bef7d8e7 +2024-09-10 15:43:47.880473 2024-09-10 15:43:47.880479 cognd 1331723361 R rec f7f21865-41e0-4b7e-9a66-d6fde2c88d57 +2024-09-10 15:43:47.95646 2024-09-10 15:43:47.956466 cognd 1331719054 R rec 79cbdd31-c4e8-417e-9d12-980a3c3328bd +2024-09-10 15:43:48.053772 2024-09-10 15:43:48.053778 cognd 1331717353 R rec bdac4339-8ba5-4458-a63d-85f0b4fbd8d3 +2024-09-10 15:43:48.11531 2024-09-10 15:43:48.115321 cognd 1331710464 R rec a29d623f-c89f-4869-9bb9-fdd7aecb7ddc +2024-09-10 15:43:48.207172 2024-09-10 15:43:48.207185 cognd 1331704014 R rec 84874206-e530-4c87-aad5-ac82f4ec384e +2024-09-10 15:43:48.286565 2024-09-10 15:43:48.286577 cognd 1331614392 R rec 930885a4-5f01-4953-9358-29c358f4db05 +2024-09-10 15:43:48.363542 2024-09-10 15:43:48.363555 cognd 1331613426 R rec 383fc222-4bc4-4a7f-b01c-86805f488df1 +2024-09-10 15:43:48.462606 2024-09-10 15:43:48.462618 cognd 1331605164 R rec 14c80bd0-d4d1-47fd-b114-0d908f89f5a1 +2024-09-10 15:43:48.563868 2024-09-10 15:43:48.563873 cognd 1331605091 R rec b44f8292-de7c-44e9-b34a-b471710d4261 +2024-09-10 15:43:48.639232 2024-09-10 15:43:48.639243 cognd 1331604893 R rec 294e6492-41f3-4ddb-828a-6ca0dd36db50 +2024-09-10 15:43:48.738653 2024-09-10 15:43:48.738668 cognd 1331603897 R rec 960be273-9fce-4ec5-b55f-b85983888c54 +2024-09-10 15:43:48.816777 2024-09-10 15:43:48.816834 cognd 1331594014 R rec 3d982278-e5d6-4bfb-93bc-dada3ba2cd06 +2024-09-10 15:43:48.880129 2024-09-10 15:43:48.880135 cognd 1331592208 R rec 0ad7b906-0615-44e9-afb3-5a1185326935 +2024-09-10 15:43:48.939258 2024-09-10 15:43:48.939264 cognd 1331584167 R rec 876c7acc-c62c-4c3b-85af-953b2f03814d +2024-09-10 15:43:49.011121 2024-09-10 15:43:49.011132 cognd 1331530806 R rec 060928ba-dce9-4aec-95bc-3897043fe82e +2024-09-10 15:43:49.086241 2024-09-10 15:43:49.086256 cognd 1331496918 R rec 9b79a00a-bec7-4abf-bbf5-b4b2b002902f +2024-09-10 15:43:49.170688 2024-09-10 15:43:49.170699 cognd 1331482941 R rec 76920769-ee2b-4463-a578-cc5646291425 +2024-09-10 15:43:49.247749 2024-09-10 15:43:49.24776 cognd 1331380073 R rec e237a6f0-273e-4968-b386-97155269575e +2024-09-10 15:43:49.342443 2024-09-10 15:43:49.342454 cognd 1331102170 R rec c3172a05-07ce-4b4f-b832-1ba8fef6701f +2024-09-10 15:43:49.430038 2024-09-10 15:43:49.430044 cognd 1330854640 R rec 3ef8a058-4d5d-47dc-9c0d-9500c9925656 +2024-09-10 15:43:49.50651 2024-09-10 15:43:49.506529 cognd 1330843584 R rec d29ddf15-369b-422a-8708-c0d9454189ea +2024-09-10 15:43:49.58209 2024-09-10 15:43:49.582096 cognd 1330586557 R rec dfe47409-6dcc-4d1f-b1dc-4f384e62e1c4 +2024-09-10 15:43:49.653239 2024-09-10 15:43:49.653249 cognd 1330586271 R rec b6a4a86e-f03f-40f0-a8a0-5f09b38f9dde +2024-09-10 15:43:49.730481 2024-09-10 15:43:49.730496 cognd 1330585992 R rec 2b32d14f-92ce-42d7-9011-b3b452250353 +2024-09-10 15:43:49.811446 2024-09-10 15:43:49.811458 cognd 1330585747 R rec ea726dc6-3dca-4899-937d-0adf8cd8fcf9 +2024-09-10 15:43:49.888407 2024-09-10 15:43:49.888412 cognd 1330447611 R rec ccb5e66b-57a4-4628-a9c3-a71c7647a7f5 +2024-09-10 15:43:49.947172 2024-09-10 15:43:49.947178 cognd 1330433858 R rec 88e16d24-e5c9-4b1b-9f80-9d9cf3d4c38d +2024-09-10 15:43:50.004786 2024-09-10 15:43:50.004792 cognd 1330430964 R rec 5d408db4-9d67-44b9-8b6d-fcf86ef9edd8 +2024-09-10 15:43:50.073269 2024-09-10 15:43:50.073276 cognd 1330343085 R rec 9a158663-eca5-4634-b849-03ae61714429 +2024-09-10 15:43:50.155858 2024-09-10 15:43:50.15587 cognd 1330186664 R rec 3c3bc386-5927-4981-9a63-99f0d64db287 +2024-09-10 15:43:50.249782 2024-09-10 15:43:50.249797 cognd 1329650123 R rec 6013ce49-703b-4b21-8e19-df5572c600d5 +2024-09-10 15:43:50.327716 2024-09-10 15:43:50.327727 cognd 1329573331 R rec 06bc3376-794b-45d2-8f7a-f3be009a5252 +2024-09-10 15:43:50.404071 2024-09-10 15:43:50.404083 cognd 1329325958 R rec 91401798-91e2-42e0-9aba-2d74cbf5c922 +2024-09-10 15:43:50.488772 2024-09-10 15:43:50.488782 cognd 1328905152 R rec cde90459-20c5-4508-9974-e2abdf451561 +2024-09-10 15:43:50.561257 2024-09-10 15:43:50.561262 cognd 1328159116 R rec f95cca64-acfc-4722-83c9-ba2c0c3cf4f3 +2024-09-10 15:43:50.634808 2024-09-10 15:43:50.634819 cognd 1328114813 R rec fa54d516-c733-474c-8183-9d2babd82179 +2024-09-10 15:43:50.716297 2024-09-10 15:43:50.716308 cognd 1326598325 R rec e501114c-874e-4c75-b8fd-2095cb2e7ba9 +2024-09-10 15:43:50.786683 2024-09-10 15:43:50.786696 cognd 1325970743 R rec ebb541ad-5901-424b-8cce-403f8d862afe +2024-09-10 15:43:50.868649 2024-09-10 15:43:50.868654 cognd 1325836214 R rec 50a6db9f-c7cb-42d7-8833-99e302047862 +2024-09-10 15:43:50.928978 2024-09-10 15:43:50.928983 cognd 1325526541 R rec 05f9580c-f211-484e-b86f-e7a76ef19753 +2024-09-10 15:43:50.993265 2024-09-10 15:43:50.993273 cognd 1324473703 R rec 6496b1c5-6c33-48e4-9f67-4237d6053367 +2024-09-10 15:43:51.063997 2024-09-10 15:43:51.064003 cognd 1324101571 R rec 8b7d308f-1d97-487e-916b-4345a65cc1d1 +2024-09-10 15:43:51.12091 2024-09-10 15:43:51.120916 cognd 1322498083 R rec 9e26847c-fff9-4ae9-a58d-10b0b581528e +2024-09-10 15:43:51.179063 2024-09-10 15:43:51.179069 cognd 1321930690 R rec cd9ff1cd-9b67-4a7f-9c35-a2e43ab01132 +2024-09-10 15:43:51.248775 2024-09-10 15:43:51.24878 cognd 1321369956 R rec 90d1b3f8-6817-4584-b5dc-47834de0ce83 +2024-09-10 15:43:51.318688 2024-09-10 15:43:51.318698 cognd 1321325754 R rec ba98c3ee-1132-4a88-a1f8-4f71c8582413 +2024-09-10 15:43:51.398277 2024-09-10 15:43:51.398305 cognd 132121202X R rec 9dbc9a4e-58e6-445a-a612-6033b1332818 +2024-09-10 15:43:51.490133 2024-09-10 15:43:51.490149 cognd 1319608302 R rec 43a13747-1dda-48d4-8043-c49e4d7c7362 +2024-09-10 15:43:51.561401 2024-09-10 15:43:51.561406 cognd 1319352146 R rec a3dee575-a49e-4d0a-96de-e45c825226dd +2024-09-10 15:43:51.623343 2024-09-10 15:43:51.623356 cognd 1318875676 R rec 5afb42e5-1f2c-4d3e-a821-df4e3295c007 +2024-09-10 15:43:51.705238 2024-09-10 15:43:51.705244 cognd 1318600871 R rec 318d6394-17f8-4433-ab31-c43b5bed3a99 +2024-09-10 15:43:51.779501 2024-09-10 15:43:51.779512 cognd 1318529573 R rec 82a9cebd-223b-4484-a17b-07b72e2bd72a +2024-09-10 15:43:51.858095 2024-09-10 15:43:51.858113 cognd 1315438240 R rec dbc4e5ec-4261-472d-b751-b27119cb80b7 +2024-09-10 15:43:51.941232 2024-09-10 15:43:51.94124 cognd 1315344238 R rec 702650fb-55bd-4fb6-aa60-2a68529e1770 +2024-09-10 15:43:51.997035 2024-09-10 15:43:51.997041 cognd 1315166526 R rec 6a72c5db-56b9-4bec-be44-28f69062083f +2024-09-10 15:43:52.05976 2024-09-10 15:43:52.059766 cognd 1314207296 R rec b2417fb4-fcc6-4619-b4ff-3c4634e5775d +2024-09-10 15:43:52.121481 2024-09-10 15:43:52.121493 cognd 1314016547 R rec d198202d-e63f-4d01-b61f-e292a54cd941 +2024-09-10 15:43:52.214651 2024-09-10 15:43:52.214666 cognd 1314016032 R rec 199fca43-7495-429f-ba6d-ef085b83c8fb +2024-09-10 15:43:52.318943 2024-09-10 15:43:52.318954 cognd 1311509100 R rec 8e3d2f86-25cf-44ff-9701-4d91d61a7a6e +2024-09-10 15:43:52.40543 2024-09-10 15:43:52.405448 cognd 131143609X R rec 7e3e6370-3ba3-4cc7-a486-8561407d10d0 +2024-09-10 15:43:52.485268 2024-09-10 15:43:52.48528 cognd 1311352430 R rec 969ebb65-8da1-47f1-a06c-8b53bbaa22e9 +2024-09-10 15:43:52.57758 2024-09-10 15:43:52.57759 cognd 1310159343 R rec 1a9d1131-a126-46df-bfc3-2912f9100400 +2024-09-10 15:43:52.65214 2024-09-10 15:43:52.652154 cognd 130899687X R rec ac068d27-1557-47ab-b2e5-4facf8e74ee9 +2024-09-10 15:43:52.743205 2024-09-10 15:43:52.74322 cognd 1308455038 R rec fe224598-37ab-4127-ada9-0780458e41c3 +2024-09-10 15:43:52.847656 2024-09-10 15:43:52.847666 cognd 1305992857 R rec b03956d0-fb73-4b5e-8ad4-d079398743a1 +2024-09-10 15:43:52.93096 2024-09-10 15:43:52.93097 cognd 1302496050 R rec e8a0ab24-d583-4762-b786-28d1335da946 +2024-09-10 15:43:52.991452 2024-09-10 15:43:52.991457 cognd 129922539X R rec 3d3d02cf-355f-47d3-be47-a8407175e3cb +2024-09-10 15:43:53.049758 2024-09-10 15:43:53.049764 cognd 1298858054 R rec 5a7c7a7f-c5fa-4259-9f65-d4f72f39c3d6 +2024-09-10 15:43:53.113371 2024-09-10 15:43:53.113387 cognd 1298312817 R rec ebef95b5-65d4-4525-9d8d-ee434ff58392 +2024-09-10 15:43:53.211733 2024-09-10 15:43:53.211744 cognd 1297822668 R rec 66ab20cf-3fbd-4b83-bbb0-8c4f7d0ae432 +2024-09-10 15:43:53.307409 2024-09-10 15:43:53.307414 cognd 1295539519 R rec 6f859375-7e45-41be-8d58-6d94e94ca666 +2024-09-10 15:43:53.402339 2024-09-10 15:43:53.40235 cognd 1293306673 R rec 582894e0-cc89-4a39-8a03-7c93b4b95ae5 +2024-09-10 15:43:53.479179 2024-09-10 15:43:53.479189 cognd 1283002477 R rec a2495155-c1ae-4d02-82a7-baab093bfc63 +2024-09-10 15:43:53.55126 2024-09-10 15:43:53.551266 cognd 127857025X R rec bfec3881-fded-4a0d-9071-2e396a1c5158 +2024-09-10 15:43:53.608535 2024-09-10 15:43:53.608546 cognd 1278063730 R rec 599d206b-21b6-4ed2-b98f-4edb63ba3d5b +2024-09-10 15:43:53.692293 2024-09-10 15:43:53.692308 cognd 1277678871 R rec ea218f0d-efef-47d5-9812-a876299ac278 +2024-09-10 15:43:53.772285 2024-09-10 15:43:53.7723 cognd 1277560676 R rec 4e4ca021-f554-4239-ae85-b24c554016ef +2024-09-10 15:43:53.856439 2024-09-10 15:43:53.856453 cognd 1276707304 R rec cc7e7cb0-5a10-4c97-8dc1-8b34c88c1fe6 +2024-09-10 15:43:53.939956 2024-09-10 15:43:53.939971 cognd 1276176597 R rec 37f74c1d-36f1-4220-b902-62a07a09a92a +2024-09-10 15:43:53.99823 2024-09-10 15:43:53.998238 cognd 1275619533 R rec 638100bf-b865-451d-b557-a01bfb179695 +2024-09-10 15:43:54.054958 2024-09-10 15:43:54.054964 cognd 1275172962 R rec 66ba3fe0-0ef4-4b90-a474-1dbeec6749d5 +2024-09-10 15:43:54.125207 2024-09-10 15:43:54.125213 cognd 1274948169 R rec da480567-590d-46ad-ab14-88a0ddaea9fa +2024-09-10 15:43:54.203487 2024-09-10 15:43:54.203502 cognd 1274269121 R rec 05a0e1e2-4a10-4a75-a993-478a644a9598 +2024-09-10 15:43:54.288098 2024-09-10 15:43:54.288104 cognd 1273395077 R rec 282522ea-5c3f-4552-9bcc-8c6f811a71f3 +2024-09-10 15:43:54.373142 2024-09-10 15:43:54.373153 cognd 1273298268 R rec e742a804-248a-40ff-803e-b30ddfb2681e +2024-09-10 15:43:54.466141 2024-09-10 15:43:54.466153 cognd 1273295374 R rec 5f82b444-26bb-410f-ae28-accfce07d501 +2024-09-10 15:43:54.559722 2024-09-10 15:43:54.559725 cognd 1270459880 R rec aa7060a1-c0c9-4334-b8cf-b5dce96a86a8 +2024-09-10 15:43:54.637606 2024-09-10 15:43:54.637618 cognd 1268867829 R rec 5ceb2831-22ee-4d0c-b9cb-6cd6413ce1e3 +2024-09-10 15:43:54.729779 2024-09-10 15:43:54.729795 cognd 1267608781 R rec b61432d4-973f-4d34-975e-54f578f3c113 +2024-09-10 15:43:54.813408 2024-09-10 15:43:54.813418 cognd 1267608366 R rec 89b635d8-d9fe-417d-b70c-2d33bb7e43e8 +2024-09-10 15:43:54.901954 2024-09-10 15:43:54.901966 cognd 1267358122 R rec 76bc31da-ae61-4de4-8946-db07b88c021f +2024-09-10 15:43:54.977578 2024-09-10 15:43:54.977589 cognd 1266800611 R rec 8082e323-1f0b-4ac1-ada9-0b65638fc582 +2024-09-10 15:43:55.040545 2024-09-10 15:43:55.04055 cognd 1266799931 R rec f0194226-6859-481c-96c4-aece85f145c0 +2024-09-10 15:43:55.101808 2024-09-10 15:43:55.101813 cognd 1264956134 R rec 9fcff652-256c-48a9-af7a-b7d4aa13176c +2024-09-10 15:43:55.165837 2024-09-10 15:43:55.165848 cognd 1262928265 R rec 109b7fc3-794a-43a9-a83d-f0a2caeaedda +2024-09-10 15:43:55.251248 2024-09-10 15:43:55.25126 cognd 1261933737 R rec 3e0dbf3a-4c1d-409e-b903-1c76451ff968 +2024-09-10 15:43:55.334754 2024-09-10 15:43:55.334769 cognd 1259460460 R rec 874e6b5f-d40a-4f2e-b685-5f86815a7900 +2024-09-10 15:43:55.420396 2024-09-10 15:43:55.420407 cognd 1258881675 R rec 31db8bd7-1494-4e5c-a539-ca5ea6a7ab08 +2024-09-10 15:43:55.509482 2024-09-10 15:43:55.509493 cognd 125746423X R rec 668e2072-19d9-4ccd-b52e-bfdd21118f75 +2024-09-10 15:43:55.577519 2024-09-10 15:43:55.577525 cognd 1257346415 R rec ed6a848c-ae8e-49c2-9c3c-843d5383378a +2024-09-10 15:43:55.654058 2024-09-10 15:43:55.65407 cognd 1257092804 R rec 526aad87-56f2-44bb-a16c-6e7fefeda0d8 +2024-09-10 15:43:55.739355 2024-09-10 15:43:55.739365 cognd 1254569642 R rec c503ef97-796e-4fc0-8a78-b673fc39f041 +2024-09-10 15:43:55.824709 2024-09-10 15:43:55.82472 cognd 1254535594 R rec 248332db-fcfc-4f60-849f-e7d3ff39a705 +2024-09-10 15:43:55.906774 2024-09-10 15:43:55.906789 cognd 1253837457 R rec 7c96aed9-a691-4182-924f-40aff8a507d4 +2024-09-10 15:43:55.983425 2024-09-10 15:43:55.983437 cognd 1252827512 R rec 88f63faf-147f-44da-a9c0-db1d7baa2899 +2024-09-10 15:43:56.043475 2024-09-10 15:43:56.04348 cognd 1252257295 R rec 3509801c-6e77-4f30-a122-5c17d03d2b82 +2024-09-10 15:43:56.107368 2024-09-10 15:43:56.107371 cognd 1251536492 R rec 98f44fa2-d36d-4c55-921b-21a199e3d7e6 +2024-09-10 15:43:56.172464 2024-09-10 15:43:56.172469 cognd 1250258731 R rec 78201e3e-232b-4c24-ae60-392ba866142f +2024-09-10 15:43:56.245745 2024-09-10 15:43:56.245757 cognd 124994516X R rec 29dd85a6-b569-4b02-a95e-81ba081658f3 +2024-09-10 15:43:56.335733 2024-09-10 15:43:56.335738 cognd 1249112877 R rec 664b2428-93d9-4ab4-b551-9573af4fb36b +2024-09-10 15:43:56.417974 2024-09-10 15:43:56.417984 cognd 1248945506 R rec 73fa87ad-da08-445b-9d0b-83ad3710f0bc +2024-09-10 15:43:56.499829 2024-09-10 15:43:56.499838 cognd 1247639401 R rec 42f42fb1-1ca2-4d05-9b3f-f55912bebb77 +2024-09-10 15:43:56.570819 2024-09-10 15:43:56.570825 cognd 1246126877 R rec 63156bdd-7137-4fd9-bf53-f3b7adaad1ff +2024-09-10 15:43:56.635968 2024-09-10 15:43:56.635974 cognd 124608841X R rec 1293ca38-9908-44a0-a5b2-7271d91f067c +2024-09-10 15:43:56.694823 2024-09-10 15:43:56.694829 cognd 1241975299 R rec 514bd670-17a5-4089-b2dd-036a1a87da80 +2024-09-10 15:43:56.760866 2024-09-10 15:43:56.760872 cognd 1234514702 R rec 949ababc-8a8e-4f59-a8f2-c4b2739ec8ac +2024-09-10 15:43:56.827448 2024-09-10 15:43:56.827454 cognd 1232346071 R rec e0dc9dba-ca8f-49ba-b3a3-f68763faa30e +2024-09-10 15:43:56.887484 2024-09-10 15:43:56.88749 cognd 1228154325 R rec b8f32c1d-afaa-477a-8ac7-af66f0674142 +2024-09-10 15:43:56.951471 2024-09-10 15:43:56.951482 cognd 1225893461 R rec e6b66d52-bf64-4a2f-8d52-c0f4d778b50a +2024-09-10 15:43:57.017307 2024-09-10 15:43:57.017313 cognd 1219598135 R rec 2f04c01d-7ddc-4d70-b8fd-c73dad6969fc +2024-09-10 15:43:57.08579 2024-09-10 15:43:57.085795 cognd 1210456753 R rec 970a49cb-2ea1-42be-88fe-79d43759c3eb +2024-09-10 15:43:57.148518 2024-09-10 15:43:57.148523 cognd 1202575048 R rec 90606880-f2d9-488e-8944-49bb9a864d23 +2024-09-10 15:43:57.212246 2024-09-10 15:43:57.212252 cognd 1201330661 R rec 7898cb36-3937-4480-a5bd-e2aa83b1924f +2024-09-10 15:43:57.280525 2024-09-10 15:43:57.28053 cognd 1199404365 R rec 18d234b2-4e14-43d7-9c64-19f28b24094e +2024-09-10 15:43:57.358347 2024-09-10 15:43:57.358368 cognd 1198723262 R rec 96bc37fc-3888-49d3-976d-89b3f5febfc0 +2024-09-10 15:43:57.45006 2024-09-10 15:43:57.450071 cognd 1191508781 R rec 0c244dc1-20a3-4af2-b93b-5a2d02d0f78b +2024-09-10 15:43:57.527531 2024-09-10 15:43:57.527547 cognd 1188589024 R rec e86f6243-40f4-4108-a0c3-9a379fe1c7a4 +2024-09-10 15:43:57.593395 2024-09-10 15:43:57.593402 cognd 1183863349 R rec 75757247-a7e3-4319-b5a4-4d7a0380362e +2024-09-10 15:43:57.693128 2024-09-10 15:43:57.69314 cognd 1181268311 R rec 58605beb-0b3d-44be-adb2-f3a3534ae8d2 +2024-09-10 15:43:57.767534 2024-09-10 15:43:57.76755 cognd 1181007100 R rec 8aa5854c-97d3-4e96-8d75-4a920d70c8ca +2024-09-10 15:43:57.870026 2024-09-10 15:43:57.870042 cognd 1173842845 R rec b24aa1aa-2bf3-4b3b-a742-9a195030b606 +2024-09-10 15:43:57.957438 2024-09-10 15:43:57.957451 cognd 1173062238 R rec 53c611a2-0ce7-490b-bb3c-8361f6512569 +2024-09-10 15:43:58.043131 2024-09-10 15:43:58.043145 cognd 1172567794 R rec c8c01147-02b8-4b12-8faa-420d29bf2cad +2024-09-10 15:43:58.117515 2024-09-10 15:43:58.11752 cognd 1166161722 R rec 11b34440-dccc-4e96-9cdf-7113799396dd +2024-09-10 15:43:58.173779 2024-09-10 15:43:58.173786 cognd 1165352362 R rec f0d2be85-1393-4d75-b80d-5d8e66dda630 +2024-09-10 15:43:58.247436 2024-09-10 15:43:58.247448 cognd 1165347768 R rec 15254e59-dd7f-4359-bf5a-0d98e9957358 +2024-09-10 15:43:58.332821 2024-09-10 15:43:58.332835 cognd 1162072040 R rec 58dca01b-6403-4d79-93e8-03d183147e0b +2024-09-10 15:43:58.416629 2024-09-10 15:43:58.416641 cognd 1161142878 R rec 32535a63-777d-4526-a49c-12f97ece39b6 +2024-09-10 15:43:58.505244 2024-09-10 15:43:58.505249 cognd 1155851412 R rec 63282790-08c3-4cdd-a994-47b63a649d4a +2024-09-10 15:43:58.582362 2024-09-10 15:43:58.582368 cognd 1155424573 R rec e2711409-8c31-4a76-836a-beaa52d28131 +2024-09-10 15:43:58.645097 2024-09-10 15:43:58.645109 cognd 1153834367 R rec 9e542763-f48b-4018-b8e9-1109379604a3 +2024-09-10 15:43:58.734121 2024-09-10 15:43:58.734132 cognd 1150861010 R rec d43e10ce-5568-45f4-9c12-916f9925dcfb +2024-09-10 15:43:58.822445 2024-09-10 15:43:58.822449 cognd 1145186815 R rec 77e85cb0-2593-4f27-864e-a16a3ecbf7e6 +2024-09-10 15:43:58.911856 2024-09-10 15:43:58.911867 cognd 1144301971 R rec a4d3b54e-18ff-4801-a2b2-d95badea4e88 +2024-09-10 15:43:58.987639 2024-09-10 15:43:58.987645 cognd 114005791X R rec f5a18c06-3fd3-49ed-84a8-58c2634d9ab5 +2024-09-10 15:43:59.065384 2024-09-10 15:43:59.065389 cognd 1139178725 R rec a0a0c383-5f5d-4aa4-a7ae-767d2fa56358 +2024-09-10 15:43:59.126692 2024-09-10 15:43:59.126697 cognd 1135938261 R rec 2ed0c875-d8f3-47d8-a553-91e3e59d4fe7 +2024-09-10 15:43:59.186477 2024-09-10 15:43:59.186482 cognd 1122355092 R rec c936c82e-594e-41a3-882e-dce200163118 +2024-09-10 15:43:59.25169 2024-09-10 15:43:59.251697 cognd 1121689914 R rec 9dac6ea3-91ed-4eeb-a7d7-6403a22e4043 +2024-09-10 15:43:59.329644 2024-09-10 15:43:59.329659 cognd 1118514823 R rec 5fb41ee4-a782-4c0f-ac08-9ccb8a3fd618 +2024-09-10 15:43:59.421276 2024-09-10 15:43:59.421282 cognd 1117164012 R rec dd94cfee-f77a-4580-8f61-88872f6bb8f3 +2024-09-10 15:43:59.50219 2024-09-10 15:43:59.502201 cognd 1116981521 R rec d4cbbcc4-b609-4e72-a24b-67707a26b1f8 +2024-09-10 15:43:59.589703 2024-09-10 15:43:59.589709 cognd 1115371371 R rec 1bc4e183-348b-46f2-8e55-d0e2dfeb9aa8 +2024-09-10 15:43:59.6643 2024-09-10 15:43:59.664311 cognd 1099123399 R rec 7774edf1-9bd7-4e25-877f-04af694e3a60 +2024-09-10 15:43:59.736825 2024-09-10 15:43:59.736836 cognd 1081489480 R rec 03a85c56-7c3f-4e43-8794-6f322225f05f +2024-09-10 15:43:59.816723 2024-09-10 15:43:59.81673 cognd 1078298378 R rec 91fe6d52-dd9b-41b2-b35a-fb16b027777e +2024-09-10 15:43:59.899286 2024-09-10 15:43:59.899292 cognd 107366371X R rec 7e5cef09-47a9-405a-8dac-7c0987954438 +2024-09-10 15:43:59.973101 2024-09-10 15:43:59.973107 cognd 1073212491 R rec d3945a40-ba35-4b7e-8445-bc36c905d67b +2024-09-10 15:44:00.051227 2024-09-10 15:44:00.051234 cognd 1072727021 R rec c57ae0cc-263a-4d9f-9dbb-3ff986c13137 +2024-09-10 15:44:00.118303 2024-09-10 15:44:00.118309 cognd 1072723875 R rec 8bfdbe8a-5769-43bf-8f97-3570dc362e1a +2024-09-10 15:44:00.18773 2024-09-10 15:44:00.187736 cognd 107257439X R rec d1733278-ab29-423e-b566-13e5cca59aba +2024-09-10 15:44:00.245809 2024-09-10 15:44:00.245814 cognd 1070750409 R rec 52d827f8-f505-43d0-84e8-6c18eb23ee64 +2024-09-10 15:44:00.319484 2024-09-10 15:44:00.319495 cognd 1069698822 R rec 893a9d93-8302-4021-b2b7-d9a81e2815aa +2024-09-10 15:44:00.40031 2024-09-10 15:44:00.400321 cognd 1069336971 R rec 543d5fe8-ae68-4014-9a7f-eae68efd1c92 +2024-09-10 15:44:00.487603 2024-09-10 15:44:00.487614 cognd 1068604875 R rec bdf443c5-5a6b-4ae1-8ca0-8d53f5b60383 +2024-09-10 15:44:00.577976 2024-09-10 15:44:00.577981 cognd 1066801789 R rec 5fbf0ede-57e5-4ecf-b532-fe05d0e76b30 +2024-09-10 15:44:00.663193 2024-09-10 15:44:00.663205 cognd 1064698727 R rec 5bdb8a66-7061-490b-9eba-bca63e0f8556 +2024-09-10 15:44:00.743481 2024-09-10 15:44:00.743486 cognd 1064281230 R rec ee4801ed-3501-420e-9b3d-46167988d82d +2024-09-10 15:44:00.801153 2024-09-10 15:44:00.801156 cognd 1064280692 R rec 7c718e72-8f65-46e3-a012-cc7369453957 +2024-09-10 15:44:00.87075 2024-09-10 15:44:00.870761 cognd 106427546X R rec 7f238cdb-460b-413c-ae21-748eba63cf77 +2024-09-10 15:44:00.958907 2024-09-10 15:44:00.958918 cognd 1064098363 R rec a1c2f483-9727-481f-a0f2-614f74bd6e4c +2024-09-10 15:44:01.039954 2024-09-10 15:44:01.039965 cognd 1063927137 R rec 9e6e1900-2498-451e-b42c-93e83a8e7f3b +2024-09-10 15:44:01.12564 2024-09-10 15:44:01.125645 cognd 1063927110 R rec 8c9ab409-9077-4288-a7cc-59c54f5c74e7 +2024-09-10 15:44:01.184204 2024-09-10 15:44:01.184209 cognd 1063925908 R rec d22036f2-2249-4596-b652-0c8061e8f465 +2024-09-10 15:44:01.252467 2024-09-10 15:44:01.252472 cognd 1063349230 R rec f1ec86fa-501b-4c18-85f1-dfe238673939 +2024-09-10 15:44:01.327773 2024-09-10 15:44:01.327778 cognd 1062937325 R rec 8764b887-b0a4-48ff-a278-88dddd36531c +2024-09-10 15:44:01.388735 2024-09-10 15:44:01.388738 cognd 1060931796 R rec 67cf4451-15e2-4ad3-b0be-1ae1a3ee4c5e +2024-09-10 15:44:01.461143 2024-09-10 15:44:01.461149 cognd 1060912503 R rec db520f36-6b40-43a2-ad78-7f014f5a488c +2024-09-10 15:44:01.530753 2024-09-10 15:44:01.530767 cognd 1060909251 R rec 8cb18749-52a5-4fc2-923b-dc7027a6de41 +2024-09-10 15:44:01.6032 2024-09-10 15:44:01.603205 cognd 1060907534 R rec 762fc166-36a4-495a-8c6b-2d73f85e48f1 +2024-09-10 15:44:01.670732 2024-09-10 15:44:01.670738 cognd 1060882345 R rec 02656b2a-4e96-4eb5-bd04-562583eb0662 +2024-09-10 15:44:01.746668 2024-09-10 15:44:01.746743 cognd 1060882191 R rec 3616d492-5852-4985-8171-9da0017f268a +2024-09-10 15:44:01.887376 2024-09-10 15:44:01.887388 cognd 1060881373 R rec 6baf00c7-ab37-4f03-b83d-3dd9dd2bb452 +2024-09-10 15:44:01.960481 2024-09-10 15:44:01.960494 cognd 1060881039 R rec eef9c42f-0094-4b42-ab08-f5f833a5cf03 +2024-09-10 15:44:02.038706 2024-09-10 15:44:02.038718 cognd 1060858703 R rec 5606ccf6-beb1-4bdd-b7b0-29873a88e56a +2024-09-10 15:44:02.12514 2024-09-10 15:44:02.125146 cognd 1060811529 R rec 281b7c1d-9010-4d94-b24c-dc1cdcfc225b +2024-09-10 15:44:02.205987 2024-09-10 15:44:02.205991 cognd 1060804263 R rec a181c868-fb5b-43fb-bdb6-6de1fdaa47a3 +2024-09-10 15:44:02.308509 2024-09-10 15:44:02.308515 cognd 1060778947 R rec 8b6c65a8-d333-4f8f-bd25-ce183032d25f +2024-09-10 15:44:02.397914 2024-09-10 15:44:02.397919 cognd 1060674483 R rec 756a831d-0400-42e2-88b4-d85354385f18 +2024-09-10 15:44:02.50195 2024-09-10 15:44:02.501955 cognd 1060581957 R rec 58d4aae9-d8d9-495c-84d2-419470ec6b6f +2024-09-10 15:44:02.599253 2024-09-10 15:44:02.599263 cognd 1060577895 R rec 30377696-d741-4c34-83b0-bee23630fd67 +2024-09-10 15:44:02.696221 2024-09-10 15:44:02.696231 cognd 106057683X R rec 9b5b0ec3-fd64-451c-8234-5c0172297a54 +2024-09-10 15:44:02.797806 2024-09-10 15:44:02.797812 cognd 1060521229 R rec 9e1ce657-267e-4592-803d-f2a637111624 +2024-09-10 15:44:02.898493 2024-09-10 15:44:02.898499 cognd 1060471329 R rec 36dbddd9-d1b1-48ba-b5ae-a6ede8849fef +2024-09-10 15:44:03.018959 2024-09-10 15:44:03.01897 cognd 1060399172 R rec 44a99149-209e-40e2-8a82-f5cd62ec0827 +2024-09-10 15:44:03.117202 2024-09-10 15:44:03.117212 cognd 1060358328 R rec 7d6868ee-7192-4e3b-b367-dbe330079b98 +2024-09-10 15:44:03.193593 2024-09-10 15:44:03.193598 cognd 106013411X R rec f203aeb6-b399-466e-b104-c5344a132f14 +2024-09-10 15:44:03.269386 2024-09-10 15:44:03.269398 cognd 1060114909 R rec 8fc3d2aa-989c-416a-a34a-eb6cb692f4fe +2024-09-10 15:44:03.346911 2024-09-10 15:44:03.346922 cognd 1060090236 R rec 2cc18102-6511-4474-9962-622a4c53e272 +2024-09-10 15:44:03.438782 2024-09-10 15:44:03.438793 cognd 1060077914 R rec f0ffb51d-550e-4656-8100-dac3145d536d +2024-09-10 15:44:03.544547 2024-09-10 15:44:03.544558 cognd 1060077817 R rec 7ae7d1fb-a3e0-4aa3-b1a6-1df93d1d8eb8 +2024-09-10 15:44:03.630434 2024-09-10 15:44:03.630448 cognd 1059889455 R rec 70bc922d-7780-40d1-bccc-d91045462f16 +2024-09-10 15:44:03.71307 2024-09-10 15:44:03.713075 cognd 1059823527 R rec 32f9035e-3809-4e79-a3e7-1750cf240abb +2024-09-10 15:44:03.796761 2024-09-10 15:44:03.796767 cognd 1059732483 R rec c9e7d8fc-4497-4495-8291-6427ccaf9007 +2024-09-10 15:44:03.883244 2024-09-10 15:44:03.88325 cognd 105962091X R rec 3e36af7b-c1c2-49f8-846c-d3fcadc7a8c6 +2024-09-10 15:44:03.973087 2024-09-10 15:44:03.973092 cognd 105960552X R rec 566f1d47-6283-4d52-be1b-71ae3f673bdc +2024-09-10 15:44:04.04512 2024-09-10 15:44:04.045126 cognd 1059558653 R rec 4a6ed4e8-6372-488f-a18c-ba154025d1f5 +2024-09-10 15:44:04.126173 2024-09-10 15:44:04.126177 cognd 1059464667 R rec 1948cbfd-92f4-43eb-883c-b3f8645e9454 +2024-09-10 15:44:04.212043 2024-09-10 15:44:04.212049 cognd 1059463385 R rec 002c9dc3-1408-4fbb-ade1-2530babf89f5 +2024-09-10 15:44:04.280648 2024-09-10 15:44:04.280653 cognd 1059408058 R rec e17336dc-0aa7-4cba-881f-0a1867f54667 +2024-09-10 15:44:04.345792 2024-09-10 15:44:04.345803 cognd 1059388502 R rec 185cf24b-753a-457d-bccf-e399ae37044e +2024-09-10 15:44:04.422225 2024-09-10 15:44:04.42223 cognd 1059388499 R rec a521870b-9005-4e17-a833-25024401a08a +2024-09-10 15:44:04.487122 2024-09-10 15:44:04.487127 cognd 1059388464 R rec cc0e2223-815b-4faf-8f01-89a433158b2b +2024-09-10 15:44:04.555719 2024-09-10 15:44:04.555725 cognd 1059384434 R rec 8fe2e269-d5bc-4b59-85fd-25ac940ce852 +2024-09-10 15:44:04.619289 2024-09-10 15:44:04.619296 cognd 1059383780 R rec 07dc2bd2-ccbb-48ec-b431-ada690bb8e45 +2024-09-10 15:44:04.684275 2024-09-10 15:44:04.684285 cognd 1059323001 R rec fd485813-5355-4770-a36d-ffb87c4213ea +2024-09-10 15:44:04.758858 2024-09-10 15:44:04.758863 cognd 1059271745 R rec 7715fd9a-2a17-4e1a-8a26-384fee1cc95c +2024-09-10 15:44:04.827918 2024-09-10 15:44:04.827927 cognd 1059254697 R rec e7ec6724-1a59-4fa4-8468-478cbeec0fed +2024-09-10 15:44:04.906786 2024-09-10 15:44:04.906797 cognd 1059254646 R rec 8f66cce3-14ca-41aa-818a-04e37f90dde9 +2024-09-10 15:44:04.989716 2024-09-10 15:44:04.989726 cognd 1059226529 R rec 8e038e70-4388-4d7f-b075-2acd5067465b +2024-09-10 15:44:05.06112 2024-09-10 15:44:05.061129 cognd 1059152312 R rec 3d811c68-7c98-425e-b908-7bf5e560df1c +2024-09-10 15:44:05.142456 2024-09-10 15:44:05.142467 cognd 1059103257 R rec b0e441f4-2904-41cc-a89a-baff908086ba +2024-09-10 15:44:05.226938 2024-09-10 15:44:05.226949 cognd 1059090767 R rec 56cf8555-4138-475d-be87-a7b2402db078 +2024-09-10 15:44:05.300107 2024-09-10 15:44:05.300114 cognd 1059087871 R rec d261ffa3-8a76-4de6-9605-1af4ae70e108 +2024-09-10 15:44:05.386912 2024-09-10 15:44:05.386924 cognd 1058986295 R rec da25bd70-1988-4c51-b1b0-ef26b23e2612 +2024-09-10 15:44:05.486967 2024-09-10 15:44:05.486972 cognd 105896920X R rec 161ca147-4cf0-457e-97d2-c8c5fc075f59 +2024-09-10 15:44:05.554281 2024-09-10 15:44:05.554286 cognd 1058846361 R rec bfebcc62-ee06-48f8-9f20-874813468fa8 +2024-09-10 15:44:05.618809 2024-09-10 15:44:05.618816 cognd 1058723790 R rec 0a749d3c-99ed-4bff-92a1-cc9d0018417a +2024-09-10 15:44:05.678771 2024-09-10 15:44:05.678776 cognd 1058674900 R rec 947fca74-6473-4681-bc58-1d9e6529212a +2024-09-10 15:44:05.748043 2024-09-10 15:44:05.748049 cognd 1058669559 R rec f4526f7d-7165-422c-af68-119f7f187bcf +2024-09-10 15:44:05.836681 2024-09-10 15:44:05.836691 cognd 105862394X R rec 79a45137-404a-4827-9adc-393192f3ec71 +2024-09-10 15:44:05.945248 2024-09-10 15:44:05.945258 cognd 1058513710 R rec 273b9346-0fdc-4459-852e-5ae72d552cfb +2024-09-10 15:44:06.044168 2024-09-10 15:44:06.044173 cognd 1058507044 R rec e73f25b6-14bf-45f0-8730-b200d7311383 +2024-09-10 15:44:06.137434 2024-09-10 15:44:06.137445 cognd 1058389041 R rec 89870e2b-ee17-4b0d-bc8b-892cbfdce4f6 +2024-09-10 15:44:06.224053 2024-09-10 15:44:06.224058 cognd 1058382799 R rec 9397a2b3-6594-49bb-8b42-9c3919c9fb68 +2024-09-10 15:44:06.301447 2024-09-10 15:44:06.301453 cognd 1058371266 R rec e0a9ee56-3d1f-4945-973d-7fba5daa2d5b +2024-09-10 15:44:06.367856 2024-09-10 15:44:06.367863 cognd 1058370677 R rec 6a3641cb-1bb3-4fdd-93c0-37a5426cbac7 +2024-09-10 15:44:06.431795 2024-09-10 15:44:06.431806 cognd 1058284371 R rec 75355e05-a22b-4095-9e68-bbb8ec31b787 +2024-09-10 15:44:06.515687 2024-09-10 15:44:06.515695 cognd 1058284304 R rec 00c33707-6c41-4987-932f-25c3558ca013 +2024-09-10 15:44:06.595697 2024-09-10 15:44:06.595713 cognd 1058284096 R rec 92992e9f-1880-480f-b949-0acc4b51dfba +2024-09-10 15:44:06.687031 2024-09-10 15:44:06.687047 cognd 1058280910 R rec e58d8f24-aacf-4469-9e96-4f6e75da8c82 +2024-09-10 15:44:06.776651 2024-09-10 15:44:06.776657 cognd 1058249436 R rec 563f132b-e9e9-48b7-aec4-df6265ac92b6 +2024-09-10 15:44:06.84633 2024-09-10 15:44:06.846335 cognd 1058206753 R rec 2670b4f9-6dbe-4452-ad46-8a82aa0e29c6 +2024-09-10 15:44:06.93099 2024-09-10 15:44:06.930999 cognd 1058118161 R rec 0aa2cb14-d514-4ee6-aef3-be9e9bcff2fc +2024-09-10 15:44:07.032433 2024-09-10 15:44:07.032445 cognd 1055857745 R rec 2e57ead3-895f-42fd-b2a7-943a4ae07e94 +2024-09-10 15:44:07.098592 2024-09-10 15:44:07.098598 cognd 1054037531 R rec 6ba4ff33-7fd6-49d0-bcd7-46bee20ffca9 +2024-09-10 15:44:07.176629 2024-09-10 15:44:07.176647 cognd 1052970427 R rec bb1e5a35-5e52-4e5f-9db0-43a881b5f955 +2024-09-10 15:44:07.257047 2024-09-10 15:44:07.257053 cognd 1051355478 R rec 35b89786-2d24-446c-bbc1-1cd9fdf19b64 +2024-09-10 15:44:07.317302 2024-09-10 15:44:07.317306 cognd 1050801644 R rec 7440a0f4-ee24-43ed-a9da-39f087be7da1 +2024-09-10 15:44:07.381404 2024-09-10 15:44:07.381409 cognd 1050440188 R rec f35a0b8e-44db-42db-bf15-9eb940c39ded +2024-09-10 15:44:07.460943 2024-09-10 15:44:07.460954 cognd 1049971213 R rec e4344256-8c11-4bae-9cff-0a2cb9fb8a18 +2024-09-10 15:44:07.555854 2024-09-10 15:44:07.555861 cognd 1049453719 R rec e27a5f40-0a01-417d-b072-66f72f51ee77 +2024-09-10 15:44:07.61719 2024-09-10 15:44:07.617195 cognd 104797553X R rec 0cc18ba7-5606-466f-bc36-94749f5ae481 +2024-09-10 15:44:07.690302 2024-09-10 15:44:07.690316 cognd 1047231085 R rec c5f2b054-c470-429b-bc22-9f37a5559710 +2024-09-10 15:44:07.775009 2024-09-10 15:44:07.775024 cognd 1041610890 R rec 292426fc-c793-40be-b657-2f95aca392e2 +2024-09-10 15:44:07.880372 2024-09-10 15:44:07.880384 cognd 1037919874 R rec cb25da38-0da9-40c1-b432-89f09de01735 +2024-09-10 15:44:07.973959 2024-09-10 15:44:07.973971 cognd 1034281828 R rec 0d542378-1822-4490-b8ad-981baf08265c +2024-09-10 15:44:08.134976 2024-09-10 15:44:08.134985 cognd 1033705691 R rec 7f155c39-1cd9-4f6a-82b4-6878077b4281 +2024-09-10 15:44:08.217476 2024-09-10 15:44:08.217482 cognd 1030464197 R rec 94010abc-fd10-47ac-9e2a-dafea0421dd0 +2024-09-10 15:44:08.290679 2024-09-10 15:44:08.290685 cognd 1028524978 R rec c8863bbd-8a35-4c70-8014-832b2e4309c8 +2024-09-10 15:44:08.352995 2024-09-10 15:44:08.352999 cognd 1027073808 R rec 192cc5d6-983a-454a-b444-f009ba7cfe55 +2024-09-10 15:44:08.417893 2024-09-10 15:44:08.417899 cognd 1027071171 R rec d35066b3-4d40-4585-bab5-35ac706c0ad8 +2024-09-10 15:44:08.515985 2024-09-10 15:44:08.51599 cognd 1026470986 R rec fa892176-783c-4bd7-828b-81b6870164da +2024-09-10 15:44:08.609411 2024-09-10 15:44:08.609422 cognd 1026351537 R rec 82aaaa58-32ff-434a-becb-58dc8c2ce18d +2024-09-10 15:44:08.709485 2024-09-10 15:44:08.709491 cognd 1025228928 R rec 6a3ea09a-e849-41c2-890f-c8ab028ff2a8 +2024-09-10 15:44:08.799456 2024-09-10 15:44:08.799469 cognd 1023745712 R rec 9dc444f1-a5a7-48e1-8245-28bc1f45f1ab +2024-09-10 15:44:08.882528 2024-09-10 15:44:08.882539 cognd 1023362872 R rec 0c92b16d-fe79-4e25-a0f2-36501e5ccd5f +2024-09-10 15:44:08.961411 2024-09-10 15:44:08.961416 cognd 1022832425 R rec 6100844f-ab21-4fa6-a74e-7c5bc9a9e649 +2024-09-10 15:44:09.036919 2024-09-10 15:44:09.03693 cognd 1021256064 R rec b8281751-1335-44f2-8f80-c932b8c2731a +2024-09-10 15:44:09.104027 2024-09-10 15:44:09.104032 cognd 1018220429 R rec 8480f0a2-bd74-4ff1-9657-c2a50eb425ea +2024-09-10 15:44:09.172142 2024-09-10 15:44:09.17215 cognd 1017491062 R rec 8c995e99-2780-4537-9e92-dd0ee2de7b72 +2024-09-10 15:44:09.257442 2024-09-10 15:44:09.257453 cognd 1017490090 R rec e4703050-575a-44b7-9cbf-dc56bc0872ef +2024-09-10 15:44:09.326314 2024-09-10 15:44:09.32632 cognd 1017217165 R rec b714fb7c-9865-4e78-9a01-a634437e89e7 +2024-09-10 15:44:09.382841 2024-09-10 15:44:09.382846 cognd 1017177503 R rec 7c7f66a2-de30-4194-a254-415c22c91d1c +2024-09-10 15:44:09.454093 2024-09-10 15:44:09.454098 cognd 1017027366 R rec 329eee41-4ce4-4510-a85b-8b909be6012e +2024-09-10 15:44:09.539802 2024-09-10 15:44:09.539812 cognd 1016810989 R rec 3066edf1-2ef2-4b12-8da3-eb7abdbdfd68 +2024-09-10 15:44:09.613378 2024-09-10 15:44:09.613389 cognd 1016599463 R rec 18812126-e817-421b-8bef-37923429786c +2024-09-10 15:44:09.747144 2024-09-10 15:44:09.747153 cognd 1016326106 R rec df97a4b4-8280-4f37-a214-e76dc62462f1 +2024-09-10 15:44:09.812169 2024-09-10 15:44:09.812178 cognd 1015079253 R rec 34b14813-63d5-481d-b589-14b6961b0357 +2024-09-10 15:44:09.893715 2024-09-10 15:44:09.893722 cognd 1013014065 R rec a715706b-e600-4dd2-b16c-d1f414ab5ef4 +2024-09-10 15:44:09.966497 2024-09-10 15:44:09.966508 cognd 1011954141 R rec 188a57f9-848c-4daa-9d2a-210f0d754e92 +2024-09-10 15:44:10.066106 2024-09-10 15:44:10.066113 cognd 1011935201 R rec 1aa120fa-e2cf-4233-918a-ede29041b28b +2024-09-10 15:44:10.136894 2024-09-10 15:44:10.136903 cognd 1011536455 R rec cd4484dd-978d-4ca0-bd44-1c2b490bfb32 +2024-09-10 15:44:10.215519 2024-09-10 15:44:10.215531 cognd 1011385856 R rec 15e6a0b6-4faf-46d7-9ed1-eaeaadaad676 +2024-09-10 15:44:10.301995 2024-09-10 15:44:10.301999 cognd 1011285738 R rec 66c73ef5-4590-4649-83d9-c25cbda0008e +2024-09-10 15:44:10.365819 2024-09-10 15:44:10.365824 cognd 1011285436 R rec 8b1aa7cf-18cc-49a4-866b-d4e9cabeaa62 +2024-09-10 15:44:10.43136 2024-09-10 15:44:10.431367 cognd 1011282518 R rec 92c0b5eb-bcd4-474f-a8f3-8037a7345896 +2024-09-10 15:44:10.489944 2024-09-10 15:44:10.48995 cognd 1011281368 R rec af1f1156-f722-47a2-a90c-6b73ba21244f +2024-09-10 15:44:10.553397 2024-09-10 15:44:10.553403 cognd 1011278723 R rec 59c6ec17-19f7-4f06-b1ea-a10c9d54885d +2024-09-10 15:44:10.61784 2024-09-10 15:44:10.617847 cognd 1011253313 R rec d4422cdd-7b7c-4908-b2f1-37aca5a1ccca +2024-09-10 15:44:10.680404 2024-09-10 15:44:10.680412 cognd 1011212722 R rec 998b9fe6-69b4-451d-951d-6edd86739779 +2024-09-10 15:44:10.741318 2024-09-10 15:44:10.741329 cognd 1011172399 R rec 59034868-bd26-41e7-aca7-e1f2b2cacdcb +2024-09-10 15:44:10.815042 2024-09-10 15:44:10.815048 cognd 1011095351 R rec e69a8c4b-4b9b-40ef-a1ba-09dcbd35b317 +2024-09-10 15:44:10.897853 2024-09-10 15:44:10.897866 cognd 1010824597 R rec 1ce8c630-154f-4429-9c63-55bb9a439218 +2024-09-10 15:44:10.984265 2024-09-10 15:44:10.984274 cognd 1010820389 R rec c25c5a76-4c04-4b7c-8900-59e9d38d9cc6 +2024-09-10 15:44:11.060156 2024-09-10 15:44:11.060166 cognd 101081933X R rec 8378cc31-2c31-4844-8d69-fa44896aaa92 +2024-09-10 15:44:11.125152 2024-09-10 15:44:11.125157 cognd 100974786X R rec 7eb8ee24-d05b-4dee-b245-7d3b9eb90eab +2024-09-10 15:44:11.222723 2024-09-10 15:44:11.222735 cognd 1009172255 R rec 92cb98e1-4634-41ad-8995-c2f5780f33a2 +2024-09-10 15:44:11.322135 2024-09-10 15:44:11.322148 cognd 100914135X R rec 1b356542-de24-4e85-8892-e8b3eaaeb35c +2024-09-10 15:44:11.392892 2024-09-10 15:44:11.392898 cognd 1008599360 R rec e70c30b6-8886-462c-be2f-a80ad93b5e93 +2024-09-10 15:44:11.461567 2024-09-10 15:44:11.461573 cognd 1007558903 R rec a7179cea-0a75-48fe-8f9d-d907a8e73e9e +2024-09-10 15:44:11.557748 2024-09-10 15:44:11.557764 cognd 1007553405 R rec 700aa8bf-047b-48e0-a9a4-0c5dedac3a1b +2024-09-10 15:44:11.642531 2024-09-10 15:44:11.642543 cognd 1007096462 R rec 5165893b-df85-4568-ad9b-49e88ee83d43 +2024-09-10 15:44:11.724903 2024-09-10 15:44:11.724909 cognd 1006156577 R rec 784d50b2-33ea-4a61-811b-2d9154b28e8a +2024-09-10 15:44:11.802044 2024-09-10 15:44:11.802056 cognd 1005952930 R rec ce8e9d2c-49cf-48d8-8738-f47341fa5878 +2024-09-10 15:44:11.883529 2024-09-10 15:44:11.88354 cognd 1005638322 R rec 22b1c4ee-e368-4cef-8378-71dfcebd1b1f +2024-09-10 15:44:11.983854 2024-09-10 15:44:11.98387 cognd 1005003262 R rec 1090f1a5-54f8-40da-8b25-5c2b82ba62ff +2024-09-10 15:44:12.063907 2024-09-10 15:44:12.063919 cognd 1003591590 R rec 1a3dcd9c-45aa-479f-8844-ee52b8369bb9 +2024-09-10 15:44:12.128648 2024-09-10 15:44:12.128653 cognd 1001213157 R rec 1923f21d-e780-4fdb-ad71-d9500f5909c6 +2024-09-10 15:44:12.208605 2024-09-10 15:44:12.20862 cognd 1000465403 R rec 66bf67a5-ba7f-4c59-8cdf-c94f71b7fe09 +2024-09-10 15:44:12.302877 2024-09-10 15:44:12.302892 cognd 999617249 R rec ee7caadf-ebc3-42a2-9425-13375d632579 +2024-09-10 15:44:12.386806 2024-09-10 15:44:12.386813 cognd 999602810 R rec 37c4cab2-194d-48e8-afc9-c15619a77c16 +2024-09-10 15:44:12.449328 2024-09-10 15:44:12.449335 cognd 999129317 R rec a94cb67e-e8c1-4c23-b590-afd224dc137f +2024-09-10 15:44:12.519156 2024-09-10 15:44:12.519168 cognd 999038095 R rec de6d60d3-cbf6-4dbc-a25b-74cbd86aa0b9 +2024-09-10 15:44:12.596376 2024-09-10 15:44:12.596381 cognd 998759074 R rec f5d84e61-2b69-4d35-b78d-6553b4638bb8 +2024-09-10 15:44:12.658887 2024-09-10 15:44:12.658898 cognd 997781491 R rec 66be7138-ca5b-4045-99ee-073e461f7b9c +2024-09-10 15:44:12.740827 2024-09-10 15:44:12.740837 cognd 994660987 R rec a328109f-0b9e-485d-abd8-6c029c76fdcb +2024-09-10 15:44:12.848412 2024-09-10 15:44:12.848424 cognd 994508417 R rec ba48b056-e0c7-4bd9-aa60-9fa73802b1ba +2024-09-10 15:44:12.957694 2024-09-10 15:44:12.957699 cognd 994042582 R rec 4984e014-a411-41c8-933f-486941b88d78 +2024-09-10 15:44:13.039683 2024-09-10 15:44:13.039694 cognd 993971806 R rec 5804d7bc-321f-4f21-9d35-51401fa58a74 +2024-09-10 15:44:13.113397 2024-09-10 15:44:13.113403 cognd 992779871 R rec 43746fcf-4cf6-4535-a130-a40e48c8d403 +2024-09-10 15:44:13.206816 2024-09-10 15:44:13.206827 cognd 992757681 R rec 843baf6b-ec5e-4b81-8f85-c78ead9d4c6d +2024-09-10 15:44:13.303172 2024-09-10 15:44:13.303177 cognd 992754151 R rec 9dc2a356-fbf9-4c8f-9ba1-a7a6987ddd2e +2024-09-10 15:44:13.388017 2024-09-10 15:44:13.388023 cognd 992753589 R rec 8f1da07e-b39d-4062-91db-50ca626216aa +2024-09-10 15:44:13.447918 2024-09-10 15:44:13.447925 cognd 992747260 R rec 13c3db13-4989-4eca-b8cc-626e192a0559 +2024-09-10 15:44:13.513413 2024-09-10 15:44:13.513423 cognd 992745489 R rec 93aff4c1-2a12-4544-8b51-0bf778cc2670 +2024-09-10 15:44:13.590413 2024-09-10 15:44:13.590416 cognd 992744431 R rec e8011e49-d52a-4527-a252-3576f645a061 +2024-09-10 15:44:13.65293 2024-09-10 15:44:13.652941 cognd 992744040 R rec 0ba249af-aa20-49f6-9ee4-cdc01b9c6979 +2024-09-10 15:44:13.735176 2024-09-10 15:44:13.73519 cognd 992742145 R rec b4dedd78-7998-44fd-87e2-1cd335140030 +2024-09-10 15:44:13.831355 2024-09-10 15:44:13.831371 cognd 992740622 R rec 39260d72-f711-43b2-b71e-f02b6ce2108d +2024-09-10 15:44:13.924408 2024-09-10 15:44:13.92442 cognd 992740002 R rec 247b7ce2-e17d-470d-adf1-b6097a84c81a +2024-09-10 15:44:14.00815 2024-09-10 15:44:14.008156 cognd 992739888 R rec 8c91a31b-e3a0-41b5-9d20-7046ebee5d89 +2024-09-10 15:44:14.07593 2024-09-10 15:44:14.075936 cognd 992734894 R rec 7ec97c0d-9f85-4572-9ba0-7e0570d63517 +2024-09-10 15:44:14.142628 2024-09-10 15:44:14.14264 cognd 992733510 R rec 2e0f5a58-6107-4f90-ad93-2a7163c7f963 +2024-09-10 15:44:14.223323 2024-09-10 15:44:14.223335 cognd 992258820 R rec f7665631-9a3d-47ff-977c-98a05917d572 +2024-09-10 15:44:14.30007 2024-09-10 15:44:14.300081 cognd 991512669 R rec cf521115-6f6a-4d2f-93dc-df5d0525727d +2024-09-10 15:44:14.388814 2024-09-10 15:44:14.38883 cognd 99110546X R rec 53c6a514-ac90-4abe-9e3e-650925118314 +2024-09-10 15:44:14.458055 2024-09-10 15:44:14.45806 cognd 990635139 R rec 9a98e71b-a7a4-4840-afd4-9fb0b09731ba +2024-09-10 15:44:14.524829 2024-09-10 15:44:14.524835 cognd 989819264 R rec 3789dfa4-55f9-47d9-b423-dedb80c62f26 +2024-09-10 15:44:14.595371 2024-09-10 15:44:14.595376 cognd 987246100 R rec dd98ddf2-6870-49bc-85fa-236392f75a91 +2024-09-10 15:44:14.654465 2024-09-10 15:44:14.65448 cognd 986124265 R rec 3987d1e0-ebd0-4767-a0cc-1c3f68adbed1 +2024-09-10 15:44:14.735234 2024-09-10 15:44:14.735245 cognd 985953780 R rec c7172710-e017-496d-a252-8941b7e82387 +2024-09-10 15:44:14.827469 2024-09-10 15:44:14.82748 cognd 985948116 R rec b8709794-7e2c-4f9d-a1a0-844e6cb4e622 +2024-09-10 15:44:14.913083 2024-09-10 15:44:14.913094 cognd 985147172 R rec 8f70dfda-d861-458b-871c-f80878aa5c39 +2024-09-10 15:44:15.052206 2024-09-10 15:44:15.052212 cognd 985075619 R rec e3488f71-0b8a-42df-8d0b-69e01e2ea132 +2024-09-10 15:44:15.138453 2024-09-10 15:44:15.138458 cognd 984505180 R rec 42c8f75b-b79b-4d5f-ab30-b7a7674f020c +2024-09-10 15:44:15.250016 2024-09-10 15:44:15.250021 cognd 983782784 R rec 36b436a8-7041-4317-ae1a-df53ae31430f +2024-09-10 15:44:15.351452 2024-09-10 15:44:15.351461 cognd 983616299 R rec 5ee8b758-04c5-4341-bcec-a49eb29c801e +2024-09-10 15:44:15.459083 2024-09-10 15:44:15.459089 cognd 98350816X R rec 2e7a04b6-0c4f-4d7e-b1f5-932706748334 +2024-09-10 15:44:15.533337 2024-09-10 15:44:15.533343 cognd 983481644 R rec 1e1caf45-2aef-41e4-96a2-696578133f1d +2024-09-10 15:44:15.626563 2024-09-10 15:44:15.626568 cognd 983481628 R rec a4dfdc0f-7af1-4667-801b-b01916069608 +2024-09-10 15:44:15.735355 2024-09-10 15:44:15.735365 cognd 982938322 R rec aac228e1-6d15-4170-99fa-d1d17e9aa978 +2024-09-10 15:44:15.826629 2024-09-10 15:44:15.826636 cognd 982377649 R rec c385c5d3-c14a-4776-b5ac-5f9772f8f174 +2024-09-10 15:44:15.913241 2024-09-10 15:44:15.913252 cognd 982125461 R rec a4cd6251-6e74-420b-ad4c-dc16b7bd2208 +2024-09-10 15:44:16.011617 2024-09-10 15:44:16.011622 cognd 981073328 R rec d83bb81b-337b-4f3b-88a4-1166a7b2b8fb +2024-09-10 15:44:16.09579 2024-09-10 15:44:16.095795 cognd 98106521X R rec 64b7a3b9-92de-4915-905e-defe43bfe322 +2024-09-10 15:44:16.166469 2024-09-10 15:44:16.166475 cognd 980868459 R rec 191213ad-4116-44d3-b575-c24ec8387b9a +2024-09-10 15:44:16.228839 2024-09-10 15:44:16.228844 cognd 980347890 R rec 2ff3384c-6f84-4839-9b6a-6a3b9005ebfd +2024-09-10 15:44:16.312412 2024-09-10 15:44:16.312419 cognd 979633079 R rec e624057c-d801-4d10-b0bd-b1564d9b8520 +2024-09-10 15:44:16.391549 2024-09-10 15:44:16.391553 cognd 979217253 R rec 07a966b4-9e04-4f05-b33d-321fda50d7a5 +2024-09-10 15:44:16.458891 2024-09-10 15:44:16.458895 cognd 979214998 R rec ff871b1f-7f35-4bee-b699-cb1bae7f4d8a +2024-09-10 15:44:16.522866 2024-09-10 15:44:16.522871 cognd 977813762 R rec 85744a84-f36c-4654-b6cc-28d973c068f6 +2024-09-10 15:44:16.5858 2024-09-10 15:44:16.585806 cognd 977682633 R rec bbb40377-d4f9-4ecc-aa2a-c8f00c397629 +2024-09-10 15:44:16.670477 2024-09-10 15:44:16.670482 cognd 977294390 R rec 92a99462-8a65-4b06-8dee-8209f1265b71 +2024-09-10 15:44:16.755393 2024-09-10 15:44:16.755399 cognd 976865351 R rec 883f3137-6d16-4167-9de3-826ab5e60d10 +2024-09-10 15:44:16.837221 2024-09-10 15:44:16.837227 cognd 976859416 R rec 45af629d-f396-4ee3-b509-f652bd1e57bb +2024-09-10 15:44:16.94237 2024-09-10 15:44:16.942375 cognd 976009048 R rec d4798917-ffc7-4f19-bb6a-ac39b5befad5 +2024-09-10 15:44:17.036474 2024-09-10 15:44:17.036479 cognd 975670824 R rec 364563d9-22c3-46c8-ab3c-6359a2c2e8fa +2024-09-10 15:44:17.126414 2024-09-10 15:44:17.126424 cognd 975199056 R rec 977940cc-cc0e-4378-9735-75407f98764f +2024-09-10 15:44:17.231167 2024-09-10 15:44:17.231172 cognd 97466068X R rec 608f87ed-1b19-4805-802d-10a96903efc1 +2024-09-10 15:44:17.309122 2024-09-10 15:44:17.309128 cognd 974476560 R rec 7fded915-a448-40f4-a229-c7cb3a975d26 +2024-09-10 15:44:17.414894 2024-09-10 15:44:17.414904 cognd 974160032 R rec d3675720-bfa6-4c81-925b-016ef62ad74c +2024-09-10 15:44:17.566551 2024-09-10 15:44:17.566561 cognd 97397687X R rec c60551e6-4a1a-40f1-9947-09f97aae4b4c +2024-09-10 15:44:17.688343 2024-09-10 15:44:17.688416 cognd 972616705 R rec cc6c32c4-8a34-4721-a98c-55bf72127878 +2024-09-10 15:44:17.790356 2024-09-10 15:44:17.790365 cognd 972391010 R rec 8f00ed1c-9e47-4dfc-9d53-2e7033012e8c +2024-09-10 15:44:17.895919 2024-09-10 15:44:17.895932 cognd 971044899 R rec 5a9da280-c1d7-47e6-9e85-4071ba5ae65f +2024-09-10 15:44:18.030399 2024-09-10 15:44:18.030411 cognd 970758065 R rec 01b2e795-ece0-4f54-b2e4-b66fd5ed34db +2024-09-10 15:44:18.143245 2024-09-10 15:44:18.143256 cognd 970679645 R rec 66c73775-8a80-48fb-bb1a-0db85122fecb +2024-09-10 15:44:18.242164 2024-09-10 15:44:18.242174 cognd 970190417 R rec c35be0a2-4bbd-4524-816b-6190062c23c5 +2024-09-10 15:44:18.367512 2024-09-10 15:44:18.367523 cognd 969678363 R rec 3308dedc-40f1-453d-a0bd-1cfdd6239bf8 +2024-09-10 15:44:18.50075 2024-09-10 15:44:18.500755 cognd 969131240 R rec fa891c2b-eec6-459a-a3c1-3501b55bc00e +2024-09-10 15:44:18.587304 2024-09-10 15:44:18.587309 cognd 968663664 R rec 5d15e9bb-07d5-4665-9216-7c2249ab1af0 +2024-09-10 15:44:18.685751 2024-09-10 15:44:18.685763 cognd 968634737 R rec 03921d12-eb1e-4106-ab68-8ad2d231a814 +2024-09-10 15:44:18.801722 2024-09-10 15:44:18.801747 cognd 968438121 R rec fc280a46-8930-4494-bd21-80c2234e6462 +2024-09-10 15:44:18.937103 2024-09-10 15:44:18.937113 cognd 968387705 R rec 9220e808-87c5-4196-8320-99c6b3ecaf06 +2024-09-10 15:44:19.063009 2024-09-10 15:44:19.063023 cognd 968377955 R rec 227f7858-adcb-4b94-9f43-e238bf065e0f +2024-09-10 15:44:19.180115 2024-09-10 15:44:19.180127 cognd 968360009 R rec 42661dd3-a374-4405-93bb-fc324ce121f2 +2024-09-10 15:44:19.316044 2024-09-10 15:44:19.316055 cognd 96832780X R rec a973a62d-07e7-4725-b6f7-69d19662530e +2024-09-10 15:44:19.469783 2024-09-10 15:44:19.469794 cognd 967876710 R rec 19d1ba67-7f6b-4136-8bf6-b1c51c403df6 +2024-09-10 15:44:19.57819 2024-09-10 15:44:19.5782 cognd 967734657 R rec 71d64caf-3fa1-47bb-a936-4700e9ad3337 +2024-09-10 15:44:19.649907 2024-09-10 15:44:19.649917 cognd 967659523 R rec e3ddc49f-957e-42a3-8fa0-876e3a166b7e +2024-09-10 15:44:19.768537 2024-09-10 15:44:19.768548 cognd 967617987 R rec e9088f4f-06b0-46c2-ba39-de713b00bd3b +2024-09-10 15:44:19.909829 2024-09-10 15:44:19.90984 cognd 967326133 R rec e551dded-4186-47d3-80ac-78baecfef090 +2024-09-10 15:44:20.015202 2024-09-10 15:44:20.015218 cognd 96717757X R rec c535246f-486b-439b-bf82-376f526d5c53 +2024-09-10 15:44:20.149535 2024-09-10 15:44:20.149545 cognd 967169399 R rec 9f692817-c04b-458d-83ab-1ec1a5cbaa5a +2024-09-10 15:44:20.263718 2024-09-10 15:44:20.263729 cognd 967155223 R rec 24edd64f-a5c4-42c9-8322-9c7828e2baec +2024-09-10 15:44:20.408763 2024-09-10 15:44:20.408776 cognd 966649052 R rec 27595525-eb65-4097-b5d9-e994b9923be0 +2024-09-10 15:44:20.53379 2024-09-10 15:44:20.533807 cognd 966536304 R rec 3eeac2df-b23b-4380-845e-c88b4d732496 +2024-09-10 15:44:20.646714 2024-09-10 15:44:20.64672 cognd 965652785 R rec f880f75d-b352-4468-9069-0418432859ad +2024-09-10 15:44:20.746645 2024-09-10 15:44:20.746656 cognd 965576825 R rec ca82f9e3-9f8c-4e21-928d-a635a983d281 +2024-09-10 15:44:20.866413 2024-09-10 15:44:20.866418 cognd 965369846 R rec d2396ca9-ca43-40d4-865f-af14f661e1d1 +2024-09-10 15:44:20.99009 2024-09-10 15:44:20.990104 cognd 965367924 R rec 9bc5fd00-7f1f-4c2c-95af-3a01ffd93127 +2024-09-10 15:44:21.095665 2024-09-10 15:44:21.095677 cognd 965252973 R rec 152766ae-ddc8-4c6c-a5fd-e2dda914750e +2024-09-10 15:44:21.197572 2024-09-10 15:44:21.197585 cognd 964979683 R rec 430aa2c0-cfe7-4b1a-b4fd-b517cbaa4d55 +2024-09-10 15:44:21.329925 2024-09-10 15:44:21.329936 cognd 964866862 R rec f8146221-057e-4835-a609-7b1aaf7182d2 +2024-09-10 15:44:21.44947 2024-09-10 15:44:21.44948 cognd 964848651 R rec 96ed54f2-499b-4a85-ac41-e0b6391f78ef +2024-09-10 15:44:21.554461 2024-09-10 15:44:21.554471 cognd 96473222X R rec 2003ee0d-3c2e-447f-8c9e-290e75c9f3ce +2024-09-10 15:44:21.67559 2024-09-10 15:44:21.675596 cognd 964720272 R rec bcfdbbc8-bdae-4728-8544-ed75afeadf0d +2024-09-10 15:44:21.755919 2024-09-10 15:44:21.755925 cognd 964519194 R rec a64d5773-3fa3-4556-9e77-9e14d85a9819 +2024-09-10 15:44:21.863592 2024-09-10 15:44:21.863602 cognd 964421062 R rec 2df37f33-c4a0-4d17-b166-08a1d929006d +2024-09-10 15:44:21.972344 2024-09-10 15:44:21.972355 cognd 964339676 R rec 2900af35-dbd2-4c2d-a8c2-96a2f76afa4d +2024-09-10 15:44:22.079504 2024-09-10 15:44:22.079514 cognd 964334666 R rec 32c87a6b-a8ba-43d6-a49b-028cc8b8f714 +2024-09-10 15:44:22.187462 2024-09-10 15:44:22.187472 cognd 964248026 R rec 402fda2c-5f76-4bcf-94b8-686369147625 +2024-09-10 15:44:22.358961 2024-09-10 15:44:22.358968 cognd 964078880 R rec c0a37a0e-6218-41d6-b2f8-76551be3a00e +2024-09-10 15:44:22.470638 2024-09-10 15:44:22.470651 cognd 963708708 R rec 07c2fec9-5fef-47f4-86d0-be2e05eedc6a +2024-09-10 15:44:22.599733 2024-09-10 15:44:22.599739 cognd 963707906 R rec 8883168a-ef4c-4884-9d16-eb54c3ec0f82 +2024-09-10 15:44:22.692681 2024-09-10 15:44:22.692686 cognd 963707884 R rec ed06dbfd-fa48-4be9-bbfe-bceed062fa2a +2024-09-10 15:44:22.752291 2024-09-10 15:44:22.752295 cognd 963495046 R rec 3903b7fc-639d-4a96-aef9-a0af8ddc27b8 +2024-09-10 15:44:22.839812 2024-09-10 15:44:22.839825 cognd 963483927 R rec 82483d15-8d0e-481b-a339-b0f798de2cb9 +2024-09-10 15:44:22.918605 2024-09-10 15:44:22.918617 cognd 96317066X R rec eb757aa4-b8da-4b08-afdb-d094ec6abd30 +2024-09-10 15:44:23.003013 2024-09-10 15:44:23.003023 cognd 963127608 R rec 4662cdd8-7a99-4001-8691-c9c60e22fb9b +2024-09-10 15:44:23.084593 2024-09-10 15:44:23.084604 cognd 963125125 R rec 0f84fbeb-349e-4d17-b63a-5af68fa20507 +2024-09-10 15:44:23.198634 2024-09-10 15:44:23.198652 cognd 963005553 R rec b7f7e3e7-8b4a-42f2-89e8-6455da8b9a64 +2024-09-10 15:44:23.30444 2024-09-10 15:44:23.304454 cognd 962883026 R rec d6314081-9357-49fc-891b-0978b4427d32 +2024-09-10 15:44:23.428078 2024-09-10 15:44:23.428094 cognd 962846104 R rec 8f1fb3fa-edd5-4ada-bd52-6677939555ab +2024-09-10 15:44:23.524894 2024-09-10 15:44:23.5249 cognd 962794015 R rec 82b57ab5-8b00-4000-8c9c-8b6952b55826 +2024-09-10 15:44:23.643722 2024-09-10 15:44:23.643735 cognd 962681539 R rec e5e0ae68-f023-4e42-a853-02a482b6b75b +2024-09-10 15:44:23.737566 2024-09-10 15:44:23.737572 cognd 962256978 R rec 1eee068a-fe1c-4136-a83e-4c06a30d5c4f +2024-09-10 15:44:23.804636 2024-09-10 15:44:23.804648 cognd 962005959 R rec b3887bef-c0a4-48fb-aca9-737f5afb0c29 +2024-09-10 15:44:23.887115 2024-09-10 15:44:23.887126 cognd 961909021 R rec a341adb4-0e32-48ed-90c6-1b3dc4a58825 +2024-09-10 15:44:23.994102 2024-09-10 15:44:23.994117 cognd 961468319 R rec f0eb4bf3-e8f8-4488-b4bf-308fb0f4a3c4 +2024-09-10 15:44:24.091281 2024-09-10 15:44:24.091296 cognd 960936785 R rec ae8d3dd0-18b6-4ca3-b0aa-d5bc84e08d3e +2024-09-10 15:44:24.199965 2024-09-10 15:44:24.199976 cognd 960733108 R rec 02e44022-6f31-46d7-a76e-f7d1f26a7227 +2024-09-10 15:44:24.309482 2024-09-10 15:44:24.309498 cognd 960658491 R rec 6d7a18dd-75eb-4e29-9b75-09fb8f34cabf +2024-09-10 15:44:24.431009 2024-09-10 15:44:24.431025 cognd 960161872 R rec 2c408df6-558d-4006-a581-9aaba7ac3579 +2024-09-10 15:44:24.536202 2024-09-10 15:44:24.536218 cognd 959965831 R rec 8984cc78-e9da-432d-bb55-d7fd3d99d7e3 +2024-09-10 15:44:24.668108 2024-09-10 15:44:24.668119 cognd 959960775 R rec 33f0e610-93f3-4c2d-8e23-275073867ca3 +2024-09-10 15:44:24.750469 2024-09-10 15:44:24.750476 cognd 959893202 R rec 560a4d0e-e153-452d-8a69-d477121bb939 +2024-09-10 15:44:24.810476 2024-09-10 15:44:24.810489 cognd 959807241 R rec 7a817b77-1963-4b2e-89ef-22b59f9f5229 +2024-09-10 15:44:24.909607 2024-09-10 15:44:24.909622 cognd 959710248 R rec 175729da-e54c-4b04-8c88-b718cb6aaf63 +2024-09-10 15:44:25.012833 2024-09-10 15:44:25.012848 cognd 959143459 R rec a9659e43-8a28-474d-bae1-ecf2b29d2fc3 +2024-09-10 15:44:25.111662 2024-09-10 15:44:25.111672 cognd 958745404 R rec 541fdc89-a888-473e-aa1c-603b4bfc10ca +2024-09-10 15:44:25.225893 2024-09-10 15:44:25.225903 cognd 958745374 R rec 665ae6ea-0c19-4bd4-ad9e-8d95343d8646 +2024-09-10 15:44:25.334318 2024-09-10 15:44:25.334327 cognd 958745307 R rec 05377661-c8b7-4e55-8d3b-a8b761776568 +2024-09-10 15:44:25.446247 2024-09-10 15:44:25.446264 cognd 958577447 R rec 00a81143-2c67-4530-91ed-2c60ff13215c +2024-09-10 15:44:25.54974 2024-09-10 15:44:25.549755 cognd 958508402 R rec cd302411-9fec-416b-9b2e-eba99cb4d1d9 +2024-09-10 15:44:25.646006 2024-09-10 15:44:25.646018 cognd 958195455 R rec 1c632c10-20dd-4122-828c-855ffcd8dccf +2024-09-10 15:44:25.736267 2024-09-10 15:44:25.736277 cognd 958121966 R rec d8a93066-3f29-4827-8770-c4381ce0c763 +2024-09-10 15:44:25.814134 2024-09-10 15:44:25.81414 cognd 957564554 R rec 229e21d1-c2b4-44db-b92d-8ad4ac85af36 +2024-09-10 15:44:25.872671 2024-09-10 15:44:25.872681 cognd 957193599 R rec d6f4c65b-7ba8-4699-a5c4-f019f8e99e2c +2024-09-10 15:44:25.961142 2024-09-10 15:44:25.961152 cognd 957133235 R rec b5754498-dbb9-4855-a0cc-ad1b39f80d48 +2024-09-10 15:44:26.06897 2024-09-10 15:44:26.068988 cognd 956836976 R rec f06095b9-453a-480f-a303-52d81c9caf77 +2024-09-10 15:44:26.193045 2024-09-10 15:44:26.193051 cognd 956033679 R rec 315e03f0-bdcb-4d89-a6c7-ed53d7125220 +2024-09-10 15:44:26.298614 2024-09-10 15:44:26.298622 cognd 955952638 R rec ac0a08d1-7a58-43f6-b42f-16e2c66c41c5 +2024-09-10 15:44:26.412084 2024-09-10 15:44:26.4121 cognd 955845483 R rec 71e50bff-9edb-47e7-b011-b97030ca0665 +2024-09-10 15:44:26.521825 2024-09-10 15:44:26.52184 cognd 955777844 R rec f583b111-9b05-4ebc-99cc-b74800c09a4e +2024-09-10 15:44:26.626809 2024-09-10 15:44:26.626822 cognd 955671906 R rec 0e912deb-e54f-43e6-bcaa-edacca6d1c03 +2024-09-10 15:44:26.739864 2024-09-10 15:44:26.739877 cognd 955633087 R rec 4d269164-c12d-46ce-b9f4-f3001a48c9c5 +2024-09-10 15:44:26.828924 2024-09-10 15:44:26.82893 cognd 955631963 R rec 277fc4a8-2c95-42a6-99f2-f5c75c330093 +2024-09-10 15:44:26.905411 2024-09-10 15:44:26.905425 cognd 955522552 R rec de9b3db0-d437-4017-b5d0-7a725c591105 +2024-09-10 15:44:26.99295 2024-09-10 15:44:26.992965 cognd 955510392 R rec ec919b47-bf18-4809-9b00-2f3c4274dd11 +2024-09-10 15:44:27.100857 2024-09-10 15:44:27.100871 cognd 955497205 R rec 5df84ce0-b917-423c-bfee-e181c122d977 +2024-09-10 15:44:27.20652 2024-09-10 15:44:27.206526 cognd 955324300 R rec 2d1f0408-3e64-4118-917c-33dfd6b1bbff +2024-09-10 15:44:27.31139 2024-09-10 15:44:27.311403 cognd 955297966 R rec 458d4875-aabc-43d3-b5ab-5380b937abcd +2024-09-10 15:44:27.413283 2024-09-10 15:44:27.413293 cognd 955286999 R rec 10e7bd37-635b-4ffb-8c23-389cab7eaa63 +2024-09-10 15:44:27.519365 2024-09-10 15:44:27.519374 cognd 955249929 R rec 7d754ab2-de73-4143-93c4-c718460519a4 +2024-09-10 15:44:27.614142 2024-09-10 15:44:27.614154 cognd 955181178 R rec 61b7b443-1d16-4892-8d1b-489fa95cd135 +2024-09-10 15:44:27.695709 2024-09-10 15:44:27.69572 cognd 955150507 R rec 78d03353-d4a2-4402-8c2d-c9c7f59260de +2024-09-10 15:44:27.811422 2024-09-10 15:44:27.811437 cognd 954752554 R rec 37e9f56d-d069-49a7-9936-6fcc8ff8ae63 +2024-09-10 15:44:27.875956 2024-09-10 15:44:27.875961 cognd 95471752X R rec 5e208a72-7efc-4249-b92c-f791facf182b +2024-09-10 15:44:27.943274 2024-09-10 15:44:27.943285 cognd 95469483X R rec 57b4d735-3a43-4ba9-b01a-2295c310b3d2 +2024-09-10 15:44:28.036571 2024-09-10 15:44:28.036587 cognd 954658248 R rec 72891dd3-bbac-44f0-812f-69adb587ff73 +2024-09-10 15:44:28.135731 2024-09-10 15:44:28.135746 cognd 95439836X R rec ba1c6172-44fe-47c1-9483-332be028875f +2024-09-10 15:44:28.244709 2024-09-10 15:44:28.244725 cognd 954299973 R rec 58999511-ff40-4cfe-a815-2c691e257131 +2024-09-10 15:44:28.349174 2024-09-10 15:44:28.349187 cognd 954068572 R rec b3f6ac95-dce6-40d8-9952-807d6074be14 +2024-09-10 15:44:28.465119 2024-09-10 15:44:28.465134 cognd 95406853X R rec e14db5b8-d669-40ac-b03a-244bb574183c +2024-09-10 15:44:28.570224 2024-09-10 15:44:28.570235 cognd 954021185 R rec 4070e3c6-b924-45bd-b396-f27725f62bff +2024-09-10 15:44:28.66835 2024-09-10 15:44:28.668361 cognd 953936503 R rec 13b3c8fe-7e5f-4dc8-be62-66e27d7ab1fd +2024-09-10 15:44:28.775746 2024-09-10 15:44:28.775761 cognd 953467732 R rec d7a010bd-bd2f-4179-91f7-12930a7910d8 +2024-09-10 15:44:28.878213 2024-09-10 15:44:28.878224 cognd 953463176 R rec 9755ce0d-70f6-413b-9b27-dea655f70be7 +2024-09-10 15:44:28.938535 2024-09-10 15:44:28.938545 cognd 953354431 R rec 259542da-3f92-455f-87e7-18eef7f26714 +2024-09-10 15:44:29.03027 2024-09-10 15:44:29.030284 cognd 95324590X R rec 7e5b4207-9ff6-4f76-94f6-5a387ba244c2 +2024-09-10 15:44:29.134578 2024-09-10 15:44:29.134589 cognd 953019209 R rec 168d6b26-2550-4b45-ada4-4f41f84346a7 +2024-09-10 15:44:29.237434 2024-09-10 15:44:29.237444 cognd 953011992 R rec 734985e2-e4e4-4fb8-82bb-7bccd98bc1cf +2024-09-10 15:44:29.326581 2024-09-10 15:44:29.326596 cognd 952966336 R rec fb94b037-f433-4c5c-bff6-19401615db0d +2024-09-10 15:44:29.425683 2024-09-10 15:44:29.425702 cognd 952945991 R rec b2b0f0d3-ffdf-415c-afd1-1e5813491766 +2024-09-10 15:44:29.528464 2024-09-10 15:44:29.528475 cognd 952945819 R rec d494ea8a-2ee3-40c2-9adb-8951cb39ac49 +2024-09-10 15:44:29.62034 2024-09-10 15:44:29.620351 cognd 952794357 R rec ace13ac3-6ba0-4e27-88c4-c0352a20d242 +2024-09-10 15:44:29.727678 2024-09-10 15:44:29.727694 cognd 952319888 R rec 782550cb-f50c-4799-854f-7c201da2c2f9 +2024-09-10 15:44:29.825125 2024-09-10 15:44:29.825141 cognd 952090163 R rec 66313e56-ede8-4cf9-9f21-ba54eb213d18 +2024-09-10 15:44:29.937951 2024-09-10 15:44:29.937955 cognd 952082098 R rec 8e609fb3-6bcb-422b-9fb3-efb88bf197f7 +2024-09-10 15:44:30.021067 2024-09-10 15:44:30.02108 cognd 951939440 R rec 261ca393-5c81-43d3-93b4-9905698eac30 +2024-09-10 15:44:30.121765 2024-09-10 15:44:30.12178 cognd 95171337X R rec 8730d360-6d7c-424c-9df5-d9e21d57d97c +2024-09-10 15:44:30.217422 2024-09-10 15:44:30.217437 cognd 951567241 R rec ca187e4b-ee24-497a-8500-12a0357602c3 +2024-09-10 15:44:30.329327 2024-09-10 15:44:30.329343 cognd 951452940 R rec 1dc99e1e-cf42-4b09-aa64-7b23819e9700 +2024-09-10 15:44:30.429052 2024-09-10 15:44:30.429062 cognd 95136653X R rec 5d353ce6-77a9-493b-8e4c-5c9a2aeadb8c +2024-09-10 15:44:30.53345 2024-09-10 15:44:30.533466 cognd 951151541 R rec 5cdb9736-7371-4f09-b5ef-53b55138834f +2024-09-10 15:44:30.645361 2024-09-10 15:44:30.645377 cognd 951040960 R rec f82a01b7-b006-4e16-8cb2-41f41f64542a +2024-09-10 15:44:30.756783 2024-09-10 15:44:30.756798 cognd 950872555 R rec 2418d942-bc31-4413-86bf-e6caea2fde93 +2024-09-10 15:44:30.861783 2024-09-10 15:44:30.861796 cognd 95058410X R rec fff2308d-04ed-418b-add3-ea17a22315f1 +2024-09-10 15:44:30.952867 2024-09-10 15:44:30.952873 cognd 950461083 R rec 7f7bbe1d-e552-41e3-9e1a-825942b81659 +2024-09-10 15:44:31.018477 2024-09-10 15:44:31.018502 cognd 950453544 R rec 43fb1e78-9f5c-4599-abcd-e399e382e9e7 +2024-09-10 15:44:31.116951 2024-09-10 15:44:31.116968 cognd 950378682 R rec a272070a-4bd5-484c-9d56-de1518d477f1 +2024-09-10 15:44:31.228745 2024-09-10 15:44:31.228761 cognd 950378658 R rec 956d660b-eb69-4d20-aac2-50f13ed7c406 +2024-09-10 15:44:31.332945 2024-09-10 15:44:31.332955 cognd 950280984 R rec d24551db-5b09-458e-a384-a9816e425424 +2024-09-10 15:44:31.444627 2024-09-10 15:44:31.444643 cognd 950268593 R rec 30a10b70-56aa-4411-8d33-9c0859256ac7 +2024-09-10 15:44:31.543008 2024-09-10 15:44:31.543019 cognd 94996591X R rec eed065aa-9474-43eb-a110-6a9c4aa7d304 +2024-09-10 15:44:31.644874 2024-09-10 15:44:31.644889 cognd 949736864 R rec fd72b3ee-497d-4217-888c-f1bf4dd41161 +2024-09-10 15:44:31.753671 2024-09-10 15:44:31.753687 cognd 949582964 R rec 805a518b-fcb6-49fe-82aa-c1fdeac7a706 +2024-09-10 15:44:31.871469 2024-09-10 15:44:31.871481 cognd 94925584X R rec 77a47819-5228-4b05-b698-a57c8888506c +2024-09-10 15:44:31.970867 2024-09-10 15:44:31.970877 cognd 949178594 R rec 76387549-ffb2-4dc8-9b54-c817ab513895 +2024-09-10 15:44:32.053432 2024-09-10 15:44:32.053438 cognd 948985429 R rec 8a85ff09-9809-4e3d-8bd6-0c688aab73d2 +2024-09-10 15:44:32.160406 2024-09-10 15:44:32.160416 cognd 948861975 R rec d1466c27-3a67-47e6-b20b-8210d4220017 +2024-09-10 15:44:32.247316 2024-09-10 15:44:32.247331 cognd 948734418 R rec 2f126a2f-f042-4fdb-8de0-23bccbf37c91 +2024-09-10 15:44:32.362567 2024-09-10 15:44:32.36258 cognd 948616792 R rec 05cc05f4-809b-4ac9-b437-4a85da8bd8f2 +2024-09-10 15:44:32.490257 2024-09-10 15:44:32.490273 cognd 948581387 R rec a7eb3364-aac1-47ad-b0c4-d2505dec857e +2024-09-10 15:44:32.582188 2024-09-10 15:44:32.582201 cognd 948367032 R rec 6de9db64-9b8e-42ae-a669-dbb44d4f7b87 +2024-09-10 15:44:32.692542 2024-09-10 15:44:32.692555 cognd 948358742 R rec 7653e4d2-b2fc-4b98-8349-f71b51bfbef9 +2024-09-10 15:44:32.811742 2024-09-10 15:44:32.811757 cognd 94818387X R rec bd6fd608-69db-4694-bc09-da03bc1f30c3 +2024-09-10 15:44:32.920023 2024-09-10 15:44:32.920029 cognd 948059028 R rec 27c8fca2-ec59-40e6-b5d6-fc6068c32127 +2024-09-10 15:44:33.02396 2024-09-10 15:44:33.023965 cognd 948023465 R rec deb63ff6-14d7-48ed-bb39-ba2cfc097d52 +2024-09-10 15:44:33.078453 2024-09-10 15:44:33.078457 cognd 947999043 R rec 3355cb31-5041-4402-a854-cd1de746f6a0 +2024-09-10 15:44:33.177896 2024-09-10 15:44:33.177906 cognd 947807691 R rec b65d600e-1b0f-432b-9d04-91d95ecd6422 +2024-09-10 15:44:33.290311 2024-09-10 15:44:33.29032 cognd 947667040 R rec 236e5a7d-e588-475a-8c4b-17060d21b3c6 +2024-09-10 15:44:33.390118 2024-09-10 15:44:33.39013 cognd 947636676 R rec 885205aa-3ae5-411b-a8be-b0dfc81df36e +2024-09-10 15:44:33.510245 2024-09-10 15:44:33.510276 cognd 947568441 R rec 2eb410db-4b07-4d60-ad0f-37d385dd92ab +2024-09-10 15:44:33.664716 2024-09-10 15:44:33.664747 cognd 947543112 R rec b86178ff-7f5f-4a51-a68f-6b6bd56bcdb3 +2024-09-10 15:44:33.808871 2024-09-10 15:44:33.80888 cognd 947466223 R rec 15141364-0bea-41f4-8844-f9cc46dac8ed +2024-09-10 15:44:33.889898 2024-09-10 15:44:33.889905 cognd 947465928 R rec eaebc999-1664-487a-88c3-86179012304e +2024-09-10 15:44:34.072718 2024-09-10 15:44:34.072728 cognd 947415874 R rec 375721e9-683b-42f1-9f6d-9c73c22be879 +2024-09-10 15:44:34.250324 2024-09-10 15:44:34.25033 cognd 947397213 R rec 225666cd-0e4b-4f38-9958-c1bc2eda8ddc +2024-09-10 15:44:34.31378 2024-09-10 15:44:34.313786 cognd 947389229 R rec d2cc7f2b-d72d-48b1-bca0-637d1e022c38 +2024-09-10 15:44:34.38207 2024-09-10 15:44:34.382076 cognd 94736093X R rec eb1dba87-1f6a-40a2-bc4d-e7179c88000e +2024-09-10 15:44:34.439303 2024-09-10 15:44:34.439311 cognd 947337555 R rec 8366022c-889c-429d-8b6e-dcef82d562df +2024-09-10 15:44:34.533461 2024-09-10 15:44:34.533474 cognd 947167293 R rec 7566ab00-49b9-4a73-9c4d-4e60ad7f756d +2024-09-10 15:44:34.622355 2024-09-10 15:44:34.622366 cognd 947085017 R rec f80faa01-38bb-4e1b-99e1-84b39d117a1b +2024-09-10 15:44:34.719933 2024-09-10 15:44:34.719948 cognd 947015388 R rec af757cbc-8b4d-4eaf-96d3-fbae3df14ccf +2024-09-10 15:44:34.80369 2024-09-10 15:44:34.803702 cognd 946998051 R rec 38d2a77d-fe6b-47e0-abcb-082f7a69b082 +2024-09-10 15:44:34.868717 2024-09-10 15:44:34.868725 cognd 946944210 R rec dfe00071-0a92-49d2-86da-984846fce49d +2024-09-10 15:44:34.942131 2024-09-10 15:44:34.942139 cognd 946868093 R rec 9fcdddfc-1b16-4101-9d67-793ecbf3dc93 +2024-09-10 15:44:35.008122 2024-09-10 15:44:35.008127 cognd 946792631 R rec 1cb8940e-e661-45d6-9ec2-74fefee88a63 +2024-09-10 15:44:35.075087 2024-09-10 15:44:35.075092 cognd 946776164 R rec 68de37d6-823d-4f38-8973-84328f574757 +2024-09-10 15:44:35.138014 2024-09-10 15:44:35.13802 cognd 946530629 R rec c5d23ced-78e0-4b73-8d41-91560a40b062 +2024-09-10 15:44:35.201423 2024-09-10 15:44:35.201429 cognd 94646085X R rec 9cad64cc-3c24-4e9a-b852-a0c2714f164e +2024-09-10 15:44:35.271987 2024-09-10 15:44:35.271991 cognd 946062706 R rec 9493f9bf-a640-4fa9-9cf1-144f5e6692cf +2024-09-10 15:44:35.349382 2024-09-10 15:44:35.349388 cognd 946022895 R rec e68c1d87-3c2b-40a2-a96f-cde62626f172 +2024-09-10 15:44:35.41481 2024-09-10 15:44:35.414822 cognd 94601888X R rec ee2af968-98c6-4a8f-9da7-c15bf29a96f4 +2024-09-10 15:44:35.49353 2024-09-10 15:44:35.493536 cognd 945863837 R rec f7b511e4-4c35-4f6c-a2b5-c7dd0113779e +2024-09-10 15:44:35.566599 2024-09-10 15:44:35.566604 cognd 944522297 R rec 5ef7f03f-b9df-4bc7-9942-b645443b121c +2024-09-10 15:44:35.66375 2024-09-10 15:44:35.663765 cognd 944502172 R rec 17a77981-97a5-42da-b21d-49136d96f730 +2024-09-10 15:44:35.7539 2024-09-10 15:44:35.753915 cognd 944484611 R rec 224790ef-cd37-4b2d-9a04-a5798104d7e0 +2024-09-10 15:44:35.839063 2024-09-10 15:44:35.839068 cognd 94430396X R rec a3873f52-0836-4687-98a8-eb66d95c8f5a +2024-09-10 15:44:35.925145 2024-09-10 15:44:35.925156 cognd 943889170 R rec e2349461-7eb7-42a1-ab59-b070d350318f +2024-09-10 15:44:36.005259 2024-09-10 15:44:36.005341 cognd 943836476 R rec 598dfab8-2bc8-4abf-8fb7-878e85b55119 +2024-09-10 15:44:36.094097 2024-09-10 15:44:36.094102 cognd 943625394 R rec 6269d9b1-69d3-4506-a9d0-fe8cef0b756f +2024-09-10 15:44:36.154681 2024-09-10 15:44:36.154684 cognd 943440017 R rec 6557b2b5-72ba-4f66-8bd6-d09d8188c2a0 +2024-09-10 15:44:36.218792 2024-09-10 15:44:36.218807 cognd 94337426X R rec b447d94c-ab12-45a0-83e5-aef1a6f8a1b0 +2024-09-10 15:44:36.30581 2024-09-10 15:44:36.30582 cognd 943258170 R rec 7a9ca758-31fd-4e9f-a712-2e515a8a59a0 +2024-09-10 15:44:36.374748 2024-09-10 15:44:36.37476 cognd 943209374 R rec 3309751f-0fc6-4308-93ff-d3f7e6441560 +2024-09-10 15:44:36.461918 2024-09-10 15:44:36.461923 cognd 942627644 R rec 4f4938c6-7ec7-40d0-b86c-daba98f230ec +2024-09-10 15:44:36.560746 2024-09-10 15:44:36.560757 cognd 942531639 R rec 12734bc2-d337-4f3a-9563-e2b93137ea80 +2024-09-10 15:44:36.660458 2024-09-10 15:44:36.660469 cognd 942348036 R rec 956f2dab-8eec-4b69-a528-f4bf5d6bea6c +2024-09-10 15:44:36.759343 2024-09-10 15:44:36.759353 cognd 942346300 R rec c0eb2037-cf54-4480-a8dd-8bc484a9de06 +2024-09-10 15:44:36.855486 2024-09-10 15:44:36.855492 cognd 942142845 R rec f9ed2837-bc81-423b-bc5d-181c3a9a652c +2024-09-10 15:44:36.947737 2024-09-10 15:44:36.947748 cognd 94203712X R rec 9e85216d-6faf-474a-8e67-c2dcfebd842f +2024-09-10 15:44:37.037648 2024-09-10 15:44:37.03766 cognd 941869121 R rec 0837d1b9-29ed-4716-bad8-b0bf637e9b55 +2024-09-10 15:44:37.121773 2024-09-10 15:44:37.121781 cognd 941589021 R rec a356b3b8-2f65-4f34-9f5f-2e85234ebe39 +2024-09-10 15:44:37.182794 2024-09-10 15:44:37.1828 cognd 941532704 R rec 6357c414-ae21-4ab9-ba87-bf49906ae29c +2024-09-10 15:44:37.256727 2024-09-10 15:44:37.256743 cognd 941495256 R rec 14cac07c-7cf1-435d-b37d-de4b6d89825e +2024-09-10 15:44:37.362641 2024-09-10 15:44:37.36265 cognd 941482774 R rec 52fc1431-a50c-4728-8b84-78c3ec33d56c +2024-09-10 15:44:37.451785 2024-09-10 15:44:37.451791 cognd 941366138 R rec 5113cea1-fbde-4a63-8968-a282fe3ed80d +2024-09-10 15:44:37.538961 2024-09-10 15:44:37.538972 cognd 941365050 R rec 8ed4cf4c-7daf-40f6-a26e-e6ec917163c7 +2024-09-10 15:44:37.652209 2024-09-10 15:44:37.65222 cognd 941158748 R rec 5a5167d9-3c8e-415d-ba25-985a64fe858a +2024-09-10 15:44:37.751039 2024-09-10 15:44:37.751051 cognd 941131572 R rec a38c76ea-8d48-498b-a36b-056f37fa8a16 +2024-09-10 15:44:37.841916 2024-09-10 15:44:37.841921 cognd 940921588 R rec 097bf462-a1da-4588-ba0c-2a0b844d88f6 +2024-09-10 15:44:37.911997 2024-09-10 15:44:37.912003 cognd 940807904 R rec a0e3c5ca-43fd-4c31-a6b0-64403267cf04 +2024-09-10 15:44:37.999348 2024-09-10 15:44:37.99936 cognd 940788187 R rec ee0da079-53e3-412b-8f44-8c9efee38b81 +2024-09-10 15:44:38.095065 2024-09-10 15:44:38.095071 cognd 940762048 R rec f101a252-d655-4bd1-8779-57da1fffc95d +2024-09-10 15:44:38.1734 2024-09-10 15:44:38.173405 cognd 940758776 R rec 70be43ff-5ffb-4570-8197-90fd1afe8f1c +2024-09-10 15:44:38.236873 2024-09-10 15:44:38.236886 cognd 940755459 R rec 5b5af907-2e31-437b-b08d-7e6e0b635b0c +2024-09-10 15:44:38.329441 2024-09-10 15:44:38.329447 cognd 94074449X R rec f33019fc-05ab-4233-9ba4-a4ba3a4e6c33 +2024-09-10 15:44:38.412037 2024-09-10 15:44:38.412043 cognd 940604833 R rec 0ee84402-f681-4be4-9c18-6ae70ab09a72 +2024-09-10 15:44:38.490553 2024-09-10 15:44:38.490564 cognd 940540959 R rec 93f1daa0-a4fc-42fe-aea4-7180b53bd5f5 +2024-09-10 15:44:38.590187 2024-09-10 15:44:38.590198 cognd 940535912 R rec 01e56b98-e51a-44a0-ba81-9594f0719ad6 +2024-09-10 15:44:38.678422 2024-09-10 15:44:38.678433 cognd 94052113X R rec 3cb66b11-91df-4e85-bf16-f8c5ef3dd734 +2024-09-10 15:44:38.773259 2024-09-10 15:44:38.773278 cognd 940125897 R rec ded4c507-e82a-4a94-9e9d-3d2f3fa00ea2 +2024-09-10 15:44:38.862661 2024-09-10 15:44:38.862672 cognd 940111187 R rec c9d27bdb-8287-443d-a10a-52ee2b47db66 +2024-09-10 15:44:38.945951 2024-09-10 15:44:38.945957 cognd 940085798 R rec 7776b3a7-9ac7-4c5f-ad3e-65d48069f4eb +2024-09-10 15:44:39.050855 2024-09-10 15:44:39.050866 cognd 940049570 R rec 65d10c9a-1718-4583-895a-adc3ed159f88 +2024-09-10 15:44:39.135431 2024-09-10 15:44:39.135443 cognd 940035731 R rec 7b92ba9f-3f11-46de-9b59-46965162d467 +2024-09-10 15:44:39.199837 2024-09-10 15:44:39.199843 cognd 199279101 R rec f48f7fe8-fc91-422f-83a9-64e7f601553f +2024-09-10 15:44:39.259531 2024-09-10 15:44:39.25954 cognd 199254435 R rec 83db42af-a410-4b2d-a968-5131bca2480e +2024-09-10 15:44:39.342496 2024-09-10 15:44:39.342499 cognd 199249903 R rec 6ba28969-5dec-4aad-aaf5-31624b1fd292 +2024-09-10 15:44:39.427057 2024-09-10 15:44:39.427072 cognd 199099952 R rec 7348fc9b-52cd-4cf3-b51e-3e5e837bdba1 +2024-09-10 15:44:39.512258 2024-09-10 15:44:39.512269 cognd 130755087 R rec 71e8d2cd-6152-4bef-8ed1-273b0ff30677 +2024-09-10 15:44:39.597251 2024-09-10 15:44:39.597257 cognd 130749478 R rec 162ccab1-bb3f-4b85-a06a-3e2dfe134df1 +2024-09-10 15:44:39.667048 2024-09-10 15:44:39.667053 cognd 130741531 R rec 05eebcf9-5844-43b8-8877-99fc75e8a0f5 +2024-09-10 15:44:39.727337 2024-09-10 15:44:39.727345 cognd 130722529 R rec 576f4f5c-bf92-4159-b5e7-3aa1e135d0dc +2024-09-10 15:44:39.790389 2024-09-10 15:44:39.790394 cognd 130715107 R rec 575c1f2c-35d2-46b0-a761-2646fcc93693 +2024-09-10 15:44:39.852577 2024-09-10 15:44:39.852583 cognd 130712930 R rec 2c273b76-eecb-42e3-bbec-ea3539655af1 +2024-09-10 15:44:39.911704 2024-09-10 15:44:39.911709 cognd 13071206X R rec a05dc6ab-ac62-4ca4-bf43-731ecdb77321 +2024-09-10 15:44:39.970843 2024-09-10 15:44:39.970848 cognd 130700525 R rec 238e99f8-bab0-43d2-92db-00aeec52f13c +2024-09-10 15:44:40.031588 2024-09-10 15:44:40.031593 cognd 130699152 R rec 569afd44-3e9e-4eaa-baaa-5a8a0aa2bf44 +2024-09-10 15:44:40.090787 2024-09-10 15:44:40.090791 cognd 130699101 R rec 53190276-1ab4-4997-8ece-66cca3de6d3c +2024-09-10 15:44:40.15237 2024-09-10 15:44:40.152378 cognd 130698644 R rec 27d5d529-2a5b-41bf-91f6-31454b180fd8 +2024-09-10 15:44:40.213257 2024-09-10 15:44:40.213263 cognd 043280072 R rec 3d121b28-0996-45d2-be4f-00d48411fe9c +2024-09-10 15:44:40.292181 2024-09-10 15:44:40.292187 cognd 043270972 R rec 61f7f21a-08db-4f79-88b8-16104f4a6676 +2024-09-10 15:44:40.358324 2024-09-10 15:44:40.358329 cognd 043270328 R rec 464a46e1-d229-4f3f-a2c4-0569459125b3 +2024-09-10 15:44:40.440404 2024-09-10 15:44:40.44041 cognd 043269605 R rec 41426c37-8f0b-47ff-9ae5-75d3b24d2b31 +2024-09-10 15:44:40.52985 2024-09-10 15:44:40.529856 cognd 043265006 R rec e4128147-c315-4ae6-b2f8-b783b264de53 +2024-09-10 15:44:40.597822 2024-09-10 15:44:40.597834 cognd 043229395 R rec 39c6f498-79f2-46d9-abb8-d9e14b4258a4 +2024-09-10 15:44:40.685458 2024-09-10 15:44:40.68547 cognd 043225276 R rec 6a0b721a-af0e-4e92-b124-656e3b633059 +2024-09-10 15:44:40.782653 2024-09-10 15:44:40.782665 cognd 043220797 R rec e5fa3222-d148-4c63-bdf5-6e53e5a4c44e +2024-09-10 15:44:40.86815 2024-09-10 15:44:40.868163 cognd 043196063 R rec c84cafcf-dd4b-4313-bf11-94e705e8ac78 +2024-09-10 15:44:40.962977 2024-09-10 15:44:40.962993 cognd 043172415 R rec 5063fbe1-630d-4b2d-bfb1-1e0669090b8d +2024-09-10 15:44:41.056389 2024-09-10 15:44:41.0564 cognd 043170854 R rec 10b24bac-7eee-401a-b31e-44cf10de85dd +2024-09-10 15:44:41.160517 2024-09-10 15:44:41.16053 cognd 043166644 R rec 52cabadc-89b9-4629-b600-bbcbcc89a77a +2024-09-10 15:44:41.245006 2024-09-10 15:44:41.245011 cognd 043166202 R rec 24210d7c-18ef-408c-99d3-d39844c236ef +2024-09-10 15:44:41.304199 2024-09-10 15:44:41.304204 cognd 04316532X R rec d9d5c958-77d5-48fb-b847-2ddb02a0cefe +2024-09-10 15:44:41.371957 2024-09-10 15:44:41.371963 cognd 043153607 R rec 5071f2db-1bac-404e-90b1-f3eef66de872 +2024-09-10 15:44:41.452785 2024-09-10 15:44:41.452801 cognd 043134475 R rec 747cb49e-a588-498b-84bd-c621a720d745 +2024-09-10 15:44:41.5466 2024-09-10 15:44:41.546616 cognd 043134106 R rec 7ac90f61-8298-4ea1-9f44-fdf311bf47c6 +2024-09-10 15:44:41.643543 2024-09-10 15:44:41.643554 cognd 043133908 R rec 81583a9d-49e3-4575-9beb-85d6132a0105 +2024-09-10 15:44:41.751618 2024-09-10 15:44:41.751624 cognd 043133789 R rec 51aa75b4-dffb-478e-b045-6f59d9de4334 +2024-09-10 15:44:41.833024 2024-09-10 15:44:41.83303 cognd 043126944 R rec 1b130951-bd78-49df-938f-3209307ad0dc +2024-09-10 15:44:41.908318 2024-09-10 15:44:41.908332 cognd 043122507 R rec c95a3845-b5e6-4ade-949f-698f093488a6 +2024-09-10 15:44:41.995258 2024-09-10 15:44:41.995268 cognd 043119816 R rec d588f6f2-a85c-4e29-abbd-8cb9429533d9 +2024-09-10 15:44:42.098077 2024-09-10 15:44:42.098089 cognd 04311704X R rec 307d8059-a6dd-450d-8508-933058182160 +2024-09-10 15:44:42.183138 2024-09-10 15:44:42.18315 cognd 043110290 R rec 12630df9-0456-4c7b-a89a-16003cdc183a +2024-09-10 15:44:42.257008 2024-09-10 15:44:42.257014 cognd 043104754 R rec fcc7cd0c-5242-4a3d-a956-20dd12de8ce4 +2024-09-10 15:44:42.31698 2024-09-10 15:44:42.316985 cognd 043092756 R rec ab2cfeb2-d6d1-4835-8604-9eab2bce899e +2024-09-10 15:44:42.391507 2024-09-10 15:44:42.391513 cognd 043087787 R rec 1a89444b-14e9-4f50-b101-76d44249a0dd +2024-09-10 15:44:42.490909 2024-09-10 15:44:42.490921 cognd 043079458 R rec abb63d18-fb25-425c-af2b-c1bcd721dc1a +2024-09-10 15:44:42.583229 2024-09-10 15:44:42.583241 cognd 043078664 R rec 8fe491cf-bf76-46a7-adfb-38b9d6758cca +2024-09-10 15:44:42.673443 2024-09-10 15:44:42.673454 cognd 043062024 R rec 91893e53-f54a-4d78-851d-40bcc6a7986f +2024-09-10 15:44:42.752071 2024-09-10 15:44:42.752076 cognd 04304980X R rec 329aaeff-7a27-44bd-b98f-b6815d9c170f +2024-09-10 15:44:42.835485 2024-09-10 15:44:42.835491 cognd 043049354 R rec b4277ac6-9504-4768-a84a-58e0561aad92 +2024-09-10 15:44:42.91044 2024-09-10 15:44:42.910451 cognd 043047815 R rec d92608cf-f63d-498c-8392-51d58d1a3e0c +2024-09-10 15:44:42.99211 2024-09-10 15:44:42.992122 cognd 043045820 R rec c7a43160-d314-42df-94d2-0381870ac593 +2024-09-10 15:44:43.079989 2024-09-10 15:44:43.080004 cognd 043023932 R rec e39a3ea5-98c9-41b7-958c-1e3fd7acefb5 +2024-09-10 15:44:43.164296 2024-09-10 15:44:43.164312 cognd 043007708 R rec 262a2b96-9f36-4298-9ead-1cef05653b79 +2024-09-10 15:44:43.246512 2024-09-10 15:44:43.246522 cognd 043006248 R rec 9fa89259-898b-4328-9b60-7ec21400970d +2024-09-10 15:44:43.309333 2024-09-10 15:44:43.309339 cognd 042975174 R rec 68dc8ae7-6fc7-4ed5-b8d3-9007b0bb3795 +2024-09-10 15:44:43.385955 2024-09-10 15:44:43.385961 cognd 04296962X R rec 4508e5f3-b4e6-471f-a9bf-d9dcaddd97a5 +2024-09-10 15:44:43.453618 2024-09-10 15:44:43.453636 cognd 042936586 R rec 2374b96c-54bd-42fc-a224-514a0c145ecf +2024-09-10 15:44:43.545652 2024-09-10 15:44:43.545668 cognd 042933854 R rec 6b807f1f-f14b-47ef-8b1f-40b8e6e81163 +2024-09-10 15:44:43.627046 2024-09-10 15:44:43.627064 cognd 042932297 R rec bfa91050-7770-4535-a451-3b0dcf060ba4 +2024-09-10 15:44:43.72787 2024-09-10 15:44:43.727884 cognd 042928664 R rec 9983bd85-ac35-4358-9211-25295eb0ec06 +2024-09-10 15:44:43.820771 2024-09-10 15:44:43.820787 cognd 04291373X R rec b4b71b96-41c9-4b04-8cd5-d60bb45dd9e2 +2024-09-10 15:44:43.898804 2024-09-10 15:44:43.898819 cognd 042912709 R rec 996775e5-62eb-4491-9e5e-ba88869a417a +2024-09-10 15:44:43.984965 2024-09-10 15:44:43.984981 cognd 042911915 R rec aae9f52f-8141-4b6e-a236-7bbf583fffe5 +2024-09-10 15:44:44.081694 2024-09-10 15:44:44.081699 cognd 042909163 R rec b08bdf75-9cfc-47f8-9ccc-e3f881781128 +2024-09-10 15:44:44.161873 2024-09-10 15:44:44.161887 cognd 042898250 R rec 325e98fe-309d-4ca7-acb5-8a7d2d8a96a6 +2024-09-10 15:44:44.251537 2024-09-10 15:44:44.251548 cognd 042871255 R rec 445114f0-7ecb-4fbc-bebc-0ad8062aca49 +2024-09-10 15:44:44.317792 2024-09-10 15:44:44.317797 cognd 042871093 R rec abbb3a0f-0806-41fc-aaf9-2ae23a011347 +2024-09-10 15:44:44.377772 2024-09-10 15:44:44.377777 cognd 042868696 R rec 6bc5b52d-caa2-4c97-b969-72d37b59e927 +2024-09-10 15:44:44.459581 2024-09-10 15:44:44.459591 cognd 042855098 R rec c83fa16a-709f-42d4-8f0b-3bcc60228d1c +2024-09-10 15:44:44.552441 2024-09-10 15:44:44.552456 cognd 042854083 R rec e70896d5-e78b-4291-a710-1f9d569b23d7 +2024-09-10 15:44:44.648249 2024-09-10 15:44:44.64826 cognd 042829763 R rec 133aafed-2b49-484a-acac-3764892a1e91 +2024-09-10 15:44:44.724843 2024-09-10 15:44:44.724855 cognd 042829194 R rec 2c145adb-9579-47e2-b3a7-9d373b40b1a2 +2024-09-10 15:44:44.80774 2024-09-10 15:44:44.807752 cognd 042828465 R rec b30df2a8-1020-4a4f-b021-18bfb9638f31 +2024-09-10 15:44:44.87932 2024-09-10 15:44:44.879325 cognd 042825210 R rec eb98f27e-5a23-4dc5-9ea7-6df33d3bd9d3 +2024-09-10 15:44:44.958242 2024-09-10 15:44:44.958253 cognd 042819415 R rec 1ea873e9-919d-4a58-a596-8a0b0ad4312d +2024-09-10 15:44:45.045819 2024-09-10 15:44:45.045831 cognd 042817293 R rec a0962e5c-8998-441e-9ca5-8ca291e8aa5a +2024-09-10 15:44:45.141051 2024-09-10 15:44:45.141062 cognd 042813905 R rec 2c468d88-58b8-4ef1-b230-11c957fd8722 +2024-09-10 15:44:45.227508 2024-09-10 15:44:45.227524 cognd 042803098 R rec 78beec50-5019-43d6-9798-0678c4d8f763 +2024-09-10 15:44:45.314239 2024-09-10 15:44:45.314245 cognd 042798779 R rec 27bae608-515c-4d7b-b8df-e87b06d59ff6 +2024-09-10 15:44:45.399448 2024-09-10 15:44:45.399454 cognd 042798760 R rec 774e9027-56d2-4d34-86f9-fcbd576f2121 +2024-09-10 15:44:45.467661 2024-09-10 15:44:45.46767 cognd 042798477 R rec 339c49b5-9c62-46b7-ab9d-872fe31b4e77 +2024-09-10 15:44:45.531103 2024-09-10 15:44:45.531118 cognd 042773539 R rec 6f6e8a8e-1f08-4151-8679-9e294bdaa36e +2024-09-10 15:44:45.619763 2024-09-10 15:44:45.619773 cognd 042763568 R rec 0f05c577-7171-4897-beda-483fa0358dfb +2024-09-10 15:44:45.699222 2024-09-10 15:44:45.699234 cognd 04276243X R rec 3677a675-0d6a-4df4-9cdc-ae47d044f2e7 +2024-09-10 15:44:45.788271 2024-09-10 15:44:45.788285 cognd 042755255 R rec 194bcedb-33d9-44a0-9fcc-101a3aef1d72 +2024-09-10 15:44:45.89538 2024-09-10 15:44:45.895454 cognd 04275206X R rec 1689fdb5-9286-4248-ac98-e38e689cfb85 +2024-09-10 15:44:46.001087 2024-09-10 15:44:46.001098 cognd 042749298 R rec 7bc41882-6d25-4b2b-b899-ad280d869d17 +2024-09-10 15:44:46.100969 2024-09-10 15:44:46.100981 cognd 042740983 R rec 6f05eef8-3707-4a37-ab1e-9df300d4d8fb +2024-09-10 15:44:46.187348 2024-09-10 15:44:46.187361 cognd 042728622 R rec da9c434d-40f7-467d-8c0e-ff5764e40622 +2024-09-10 15:44:46.278715 2024-09-10 15:44:46.278722 cognd 042725739 R rec 4b05f387-62b0-4850-8c9d-881ab63dbde8 +2024-09-10 15:44:46.351717 2024-09-10 15:44:46.351723 cognd 042707870 R rec 4e88676b-ff31-4266-9668-83d155a11ff7 +2024-09-10 15:44:46.433436 2024-09-10 15:44:46.433442 cognd 042667208 R rec a905d43f-c967-4d53-b3d2-e060c8994c8e +2024-09-10 15:44:46.525845 2024-09-10 15:44:46.52586 cognd 04264044X R rec ebbf3872-d89c-4981-b863-27c3b00db989 +2024-09-10 15:44:46.592327 2024-09-10 15:44:46.592339 cognd 042625025 R rec 998d7dd4-a64e-4300-9542-c93257f0cae8 +2024-09-10 15:44:46.677789 2024-09-10 15:44:46.6778 cognd 042616727 R rec bee7c9fc-e986-4b84-8870-03c3dfa2e723 +2024-09-10 15:44:46.76598 2024-09-10 15:44:46.765985 cognd 042612292 R rec a7d2f8dc-c083-4777-bb19-e9f1ad4e2649 +2024-09-10 15:44:46.843172 2024-09-10 15:44:46.843178 cognd 042556740 R rec d666f971-12bb-47ee-990d-8acd26e6650d +2024-09-10 15:44:46.910091 2024-09-10 15:44:46.910099 cognd 042552192 R rec edd38c7a-aa56-4473-b047-78359359b53d +2024-09-10 15:44:47.00827 2024-09-10 15:44:47.008276 cognd 04252184X R rec f4b7ac4f-add8-40ea-b070-f03fb24ebefd +2024-09-10 15:44:47.104024 2024-09-10 15:44:47.104042 cognd 04251729X R rec b2cc8b5a-4afc-475d-9644-5f2cb47132af +2024-09-10 15:44:47.187215 2024-09-10 15:44:47.187221 cognd 042496918 R rec 97b0b21c-9a5e-4fd2-ada2-8c2c5446bee4 +2024-09-10 15:44:47.269233 2024-09-10 15:44:47.269245 cognd 042496896 R rec fba6bf34-4deb-44cf-bd46-82157eb08bda +2024-09-10 15:44:47.355215 2024-09-10 15:44:47.355221 cognd 042491010 R rec 385eb0f6-ebba-4cff-85f9-3208d4c8d43d +2024-09-10 15:44:47.418798 2024-09-10 15:44:47.418802 cognd 042479770 R rec 35ca044e-1318-4851-8958-d682ccb4ec22 +2024-09-10 15:44:47.499725 2024-09-10 15:44:47.499731 cognd 042466199 R rec 4946fbe1-816e-4480-ac78-4633fbd3f568 +2024-09-10 15:44:47.579635 2024-09-10 15:44:47.579647 cognd 04245395X R rec 85af631e-8b48-4e55-9f53-a056c9f858f1 +2024-09-10 15:44:47.66351 2024-09-10 15:44:47.663516 cognd 042439086 R rec 1785b1fd-f2aa-42a2-b6a4-71e0efdb504c +2024-09-10 15:44:47.745922 2024-09-10 15:44:47.745933 cognd 042433517 R rec 6a9d738e-3cc4-4bb4-821e-45b82af07535 +2024-09-10 15:44:47.83163 2024-09-10 15:44:47.831646 cognd 042427045 R rec a9151413-d851-4c0d-8582-dc4932999e6e +2024-09-10 15:44:47.906152 2024-09-10 15:44:47.906163 cognd 042416795 R rec de31a865-506f-4b4e-a8d0-d07c2889e6e4 +2024-09-10 15:44:47.983407 2024-09-10 15:44:47.983418 cognd 042402883 R rec 77f649f3-fda9-4bbe-b4bf-b3adcd280023 +2024-09-10 15:44:48.078491 2024-09-10 15:44:48.078502 cognd 042402239 R rec 8f88b809-9e61-479d-8659-73c60144baeb +2024-09-10 15:44:48.170148 2024-09-10 15:44:48.17016 cognd 042363527 R rec 9b858ae0-345c-4819-b8db-cdf4d9523d33 +2024-09-10 15:44:48.262583 2024-09-10 15:44:48.262595 cognd 042362466 R rec 23610aca-7c25-4404-8e67-f4f53c133062 +2024-09-10 15:44:48.348826 2024-09-10 15:44:48.348831 cognd 042349885 R rec 5ef77da5-06ec-4db3-ae0a-7f186b080776 +2024-09-10 15:44:48.410108 2024-09-10 15:44:48.410115 cognd 042349877 R rec 73ef91ae-356a-437f-9c92-1c2623f52908 +2024-09-10 15:44:48.495271 2024-09-10 15:44:48.495282 cognd 042319986 R rec 25b0623b-f3fe-4220-9311-26135e44f196 +2024-09-10 15:44:48.581126 2024-09-10 15:44:48.581133 cognd 04231416X R rec 59c08d29-823e-4466-bd91-829b7f628283 +2024-09-10 15:44:48.647883 2024-09-10 15:44:48.647894 cognd 042294118 R rec 0061a52b-2ccf-4c73-b703-b05c65937711 +2024-09-10 15:44:48.75277 2024-09-10 15:44:48.752781 cognd 042259177 R rec feb06363-c858-440f-8d48-c896f874ab83 +2024-09-10 15:44:48.856596 2024-09-10 15:44:48.856602 cognd 042250234 R rec 5b3d5211-5fb8-40fe-beba-2dec865e1d6a +2024-09-10 15:44:48.94041 2024-09-10 15:44:48.940421 cognd 042237688 R rec 3c7d8966-73b9-4e62-8dfc-619b8979353e +2024-09-10 15:44:49.04227 2024-09-10 15:44:49.042282 cognd 042221234 R rec 41479877-2b51-4a94-8c64-dfef1418c773 +2024-09-10 15:44:49.123688 2024-09-10 15:44:49.123701 cognd 042208408 R rec fd82a1ce-10e4-4996-8df2-5f8b102d2938 +2024-09-10 15:44:49.228376 2024-09-10 15:44:49.228393 cognd 042203856 R rec 122f7bf7-2e38-4255-8699-4f8e4f1f6b82 +2024-09-10 15:44:49.312182 2024-09-10 15:44:49.312202 cognd 042203023 R rec ce3646f8-41b3-448b-994d-a2e47cfd262c +2024-09-10 15:44:49.384155 2024-09-10 15:44:49.38416 cognd 042195810 R rec d07d5a9b-ff87-4525-b2d8-6686eec4db06 +2024-09-10 15:44:49.446008 2024-09-10 15:44:49.446014 cognd 042193958 R rec bd583fc2-9ddd-4488-8144-3fe43df623ee +2024-09-10 15:44:49.507209 2024-09-10 15:44:49.507214 cognd 04219007X R rec a5228240-297e-41a9-be5b-50467db6e590 +2024-09-10 15:44:49.58744 2024-09-10 15:44:49.587458 cognd 042189748 R rec 13548826-571e-4290-bcd8-c22ff82a7b17 +2024-09-10 15:44:49.675678 2024-09-10 15:44:49.675689 cognd 042187494 R rec 70f3bb84-d664-4d25-bc7e-f7eb82a7c75f +2024-09-10 15:44:49.752077 2024-09-10 15:44:49.752088 cognd 042180805 R rec df447bd7-99b1-4471-afad-6238461a0e3c +2024-09-10 15:44:49.834379 2024-09-10 15:44:49.834394 cognd 042159458 R rec 0950fbd0-a37c-4f9d-9d4f-e3754ece087c +2024-09-10 15:44:49.923518 2024-09-10 15:44:49.923523 cognd 042154316 R rec b51f2700-9c51-4b81-96e6-00ffe825eae9 +2024-09-10 15:44:50.011142 2024-09-10 15:44:50.011153 cognd 042152089 R rec e6f6cea2-7897-400b-a90e-8d32da9e6d9c +2024-09-10 15:44:50.0982 2024-09-10 15:44:50.098206 cognd 042150876 R rec 7c1719c0-2ade-40ef-abf6-3450badb3769 +2024-09-10 15:44:50.164644 2024-09-10 15:44:50.16465 cognd 042140048 R rec b5d3edb8-728a-4ad4-988e-b21ef97b7608 +2024-09-10 15:44:50.2373 2024-09-10 15:44:50.237319 cognd 042137268 R rec 67c163fe-0b9a-4ba3-b3d1-fd061b999867 +2024-09-10 15:44:50.325959 2024-09-10 15:44:50.325974 cognd 042108160 R rec d1d1ffe5-0df0-42f5-849d-1f19d1b0ff0e +2024-09-10 15:44:50.401887 2024-09-10 15:44:50.401894 cognd 042108152 R rec f6e41799-51a8-469c-9c81-490da5dd7fd5 +2024-09-10 15:44:50.474405 2024-09-10 15:44:50.47441 cognd 042104068 R rec 73378cc7-8367-4352-83a0-92d81e17efad +2024-09-10 15:44:50.540336 2024-09-10 15:44:50.540341 cognd 042098386 R rec eeb87650-7d00-49c9-b02d-52ba5bcf559a +2024-09-10 15:44:50.627519 2024-09-10 15:44:50.627531 cognd 042092175 R rec 76070e66-1016-402b-8cd8-6fcb20c4ec76 +2024-09-10 15:44:50.713838 2024-09-10 15:44:50.713849 cognd 042086280 R rec ebec8ee7-35f3-4862-b359-c03b6bddf415 +2024-09-10 15:44:50.799127 2024-09-10 15:44:50.799137 cognd 04208394X R rec d5a18c1b-12dd-4a45-9497-51f33721b7db +2024-09-10 15:44:50.883797 2024-09-10 15:44:50.883812 cognd 042066107 R rec 9bd97467-f3c1-4262-86a8-5a54a67465f4 +2024-09-10 15:44:50.981221 2024-09-10 15:44:50.981231 cognd 042056349 R rec af591be1-becc-4470-9b73-a94e971f4843 +2024-09-10 15:44:51.072356 2024-09-10 15:44:51.072368 cognd 042017793 R rec c99a8279-d302-4da5-99d8-2dc650ab0d2d +2024-09-10 15:44:51.157971 2024-09-10 15:44:51.157982 cognd 042017246 R rec a1f73600-8d7c-4fa1-bab4-e8dc04e03a8e +2024-09-10 15:44:51.257529 2024-09-10 15:44:51.257539 cognd 042003458 R rec 676ea56f-bc28-4222-bb7e-a344f84720a4 +2024-09-10 15:44:51.357964 2024-09-10 15:44:51.35797 cognd 041995724 R rec 845885ce-1150-4191-98f2-87cc15ae7269 +2024-09-10 15:44:51.430862 2024-09-10 15:44:51.430868 cognd 041992555 R rec 7da8f765-0583-4c5e-bae5-3233a2d4d4e3 +2024-09-10 15:44:51.511821 2024-09-10 15:44:51.511826 cognd 041987489 R rec 6d91d25e-4ebd-4fda-9667-839cdf96c00c +2024-09-10 15:44:51.572871 2024-09-10 15:44:51.572879 cognd 041981804 R rec 3fb0595d-e7d1-481c-a40a-e7d23587d603 +2024-09-10 15:44:51.634894 2024-09-10 15:44:51.634901 cognd 041977009 R rec e675dd51-3e87-4a70-9c66-00cfea514417 +2024-09-10 15:44:51.703954 2024-09-10 15:44:51.703959 cognd 041975278 R rec 0ab3814b-af3b-4c38-8e46-f54897a2bd8a +2024-09-10 15:44:51.809567 2024-09-10 15:44:51.809582 cognd 041954378 R rec be31dd11-3cf1-48a0-a4bc-93169320a27a +2024-09-10 15:44:51.890433 2024-09-10 15:44:51.890455 cognd 041954327 R rec b9573b83-c58a-4aae-a382-255c445ff408 +2024-09-10 15:44:51.973577 2024-09-10 15:44:51.973589 cognd 041943236 R rec 39db5d6e-68db-4e42-ba47-32576610c877 +2024-09-10 15:44:52.050536 2024-09-10 15:44:52.050547 cognd 041928547 R rec d892efb1-8f9c-461a-b3a9-6c6f7a058a6a +2024-09-10 15:44:52.129717 2024-09-10 15:44:52.129728 cognd 041928326 R rec 89b9fea8-2c52-4878-8634-49032b5fd800 +2024-09-10 15:44:52.209314 2024-09-10 15:44:52.209325 cognd 041924878 R rec 4ff7b31c-aef3-45c7-9d67-ebd81992fc1c +2024-09-10 15:44:52.319275 2024-09-10 15:44:52.319287 cognd 041918754 R rec c160fb26-51a5-4d83-8a45-df56ea0354c8 +2024-09-10 15:44:52.429296 2024-09-10 15:44:52.429301 cognd 041913272 R rec 520fcfd1-7406-45b7-b9dd-0d27cbc701c2 +2024-09-10 15:44:52.493667 2024-09-10 15:44:52.493672 cognd 041911849 R rec ace11fb5-4d15-473b-9b6e-ef3bee7a9cc9 +2024-09-10 15:44:52.567942 2024-09-10 15:44:52.567948 cognd 041911598 R rec 4b6a3c71-9d11-471e-8999-a4a941fdb5d6 +2024-09-10 15:44:52.648569 2024-09-10 15:44:52.648576 cognd 041911199 R rec 8f2b65f3-272b-49ef-a214-77b6946c5b2f +2024-09-10 15:44:52.729472 2024-09-10 15:44:52.729478 cognd 041910842 R rec 50e9bc0f-89b5-4334-8645-888d740bb785 +2024-09-10 15:44:52.814205 2024-09-10 15:44:52.814212 cognd 041907078 R rec 84436213-d8bb-4a9b-9068-100bedc54fa9 +2024-09-10 15:44:52.892381 2024-09-10 15:44:52.892385 cognd 041902955 R rec 87a2a324-cb3d-4aa6-ba39-d3f967dd6b1c +2024-09-10 15:44:52.957667 2024-09-10 15:44:52.957673 cognd 04190186X R rec 8f395e5b-b2e1-4f9c-b1ab-7fdf608b552b +2024-09-10 15:44:53.025158 2024-09-10 15:44:53.025164 cognd 041900804 R rec 35180e9c-7c5c-4b8b-97f2-196dd0ebf78a +2024-09-10 15:44:53.086736 2024-09-10 15:44:53.086741 cognd 041899849 R rec 6f67107d-b9ba-4dd2-b0e8-478004545857 +2024-09-10 15:44:53.152821 2024-09-10 15:44:53.152833 cognd 041898273 R rec 17fa6270-b426-421a-9670-d38692e3abab +2024-09-10 15:44:53.237661 2024-09-10 15:44:53.237664 cognd 041896807 R rec b21ced27-18ff-4ebc-8cd3-e297fbeef0f0 +2024-09-10 15:44:53.31456 2024-09-10 15:44:53.314565 cognd 041891775 R rec b96ac7f8-16b1-4755-bb1c-a488d19642fb +2024-09-10 15:44:53.383431 2024-09-10 15:44:53.383436 cognd 041890787 R rec e8b7ecf6-3e7c-4269-91d4-18f3fea488e6 +2024-09-10 15:44:53.452175 2024-09-10 15:44:53.452181 cognd 041889959 R rec 24a93bde-1fda-4ee0-b3bc-e8a853a16a4f +2024-09-10 15:44:53.544397 2024-09-10 15:44:53.544402 cognd 041887913 R rec 0b0dbe47-a42a-497f-a21a-d5d5dde676a6 +2024-09-10 15:44:53.624936 2024-09-10 15:44:53.624941 cognd 041887786 R rec 2621137a-fa49-4204-9075-aa58485b7c8c +2024-09-10 15:44:53.701363 2024-09-10 15:44:53.701373 cognd 041884612 R rec d42911f9-6234-4641-bf10-5d6fe8b40c05 +2024-09-10 15:44:53.790603 2024-09-10 15:44:53.790619 cognd 041882229 R rec 89bc7cee-d576-4ce5-b754-c598fb88f3c2 +2024-09-10 15:44:53.891549 2024-09-10 15:44:53.891563 cognd 041881745 R rec 7fe8cb0a-914b-4e2b-86e8-343e5e260a26 +2024-09-10 15:44:53.976237 2024-09-10 15:44:53.976252 cognd 041878515 R rec 684d095e-f97a-4d57-923b-59a8fe16bd7b +2024-09-10 15:44:54.098101 2024-09-10 15:44:54.098111 cognd 041876938 R rec 6c7a753c-ee57-46dc-b0ec-046482c2ca16 +2024-09-10 15:44:54.189556 2024-09-10 15:44:54.189568 cognd 041874919 R rec 73a9a289-7439-4fef-ad51-91d9fe546fc0 +2024-09-10 15:44:54.294001 2024-09-10 15:44:54.294012 cognd 041873270 R rec dfefbdd4-9b0e-4363-80fc-f627929e24f0 +2024-09-10 15:44:54.384808 2024-09-10 15:44:54.38482 cognd 041871286 R rec 73046d94-16c5-4b3e-958c-18ab6259fda7 +2024-09-10 15:44:54.475966 2024-09-10 15:44:54.475977 cognd 041871189 R rec d7825390-0421-4bd9-9adf-945bb47639b6 +2024-09-10 15:44:54.564627 2024-09-10 15:44:54.564634 cognd 041867785 R rec d148e2b8-0a8c-4a6e-b07f-31f3287159d3 +2024-09-10 15:44:54.643364 2024-09-10 15:44:54.643376 cognd 041863488 R rec d10baf05-2da5-4f2e-bbf0-c4774b2db2f4 +2024-09-10 15:44:54.737074 2024-09-10 15:44:54.73709 cognd 04186347X R rec b80ebcf9-dfcd-4d9f-81ee-f286646f2ea0 +2024-09-10 15:44:54.83101 2024-09-10 15:44:54.831022 cognd 041862473 R rec 0e0926d0-da88-4a2f-893a-bc956c1eb49b +2024-09-10 15:44:54.912068 2024-09-10 15:44:54.912075 cognd 041862465 R rec 415a2ce7-5005-447a-bfbd-45e89b418d11 +2024-09-10 15:44:54.990336 2024-09-10 15:44:54.990341 cognd 041841387 R rec ae551c6e-d71f-4f27-83f9-6b18a3469106 +2024-09-10 15:44:55.062509 2024-09-10 15:44:55.062515 cognd 041835662 R rec dbd05c21-2217-4f48-8865-b66bd7f2a331 +2024-09-10 15:44:55.124925 2024-09-10 15:44:55.124929 cognd 041833333 R rec f501860a-9c37-4f30-a5da-2fefb81ae9e3 +2024-09-10 15:44:55.191411 2024-09-10 15:44:55.191417 cognd 041830989 R rec d48a2b09-8265-4662-bb82-ea4225f6f1bd +2024-09-10 15:44:55.253275 2024-09-10 15:44:55.25328 cognd 041823788 R rec 5f438987-6966-4018-bc03-095a57dcc7ca +2024-09-10 15:44:55.314783 2024-09-10 15:44:55.314789 cognd 04182265X R rec 30bd01d9-6f30-4f76-98f2-30fa801d4d8d +2024-09-10 15:44:55.386444 2024-09-10 15:44:55.386449 cognd 041809858 R rec 9971642e-e3ed-435b-bbf9-7c22bd3cb5d7 +2024-09-10 15:44:55.464098 2024-09-10 15:44:55.464109 cognd 041809165 R rec 90853f04-3e99-4b43-b5c2-b65b3f7942f7 +2024-09-10 15:44:55.543738 2024-09-10 15:44:55.543743 cognd 041808525 R rec b5734487-630a-4e1d-b402-850181eeae6d +2024-09-10 15:44:55.610667 2024-09-10 15:44:55.610672 cognd 041807677 R rec b8eb36b9-c90f-488b-add9-19daf72be006 +2024-09-10 15:44:55.679647 2024-09-10 15:44:55.679657 cognd 041805348 R rec 4b632268-b20c-41e2-a907-5c062ece6210 +2024-09-10 15:44:55.76557 2024-09-10 15:44:55.765574 cognd 04180466X R rec a8215845-d377-40cb-bdb4-c8887e5faac1 +2024-09-10 15:44:55.825906 2024-09-10 15:44:55.82591 cognd 041802659 R rec 0fd2042e-b09c-42f8-a215-b152acd2a142 +2024-09-10 15:44:55.891318 2024-09-10 15:44:55.891324 cognd 041798813 R rec d8eccaa5-cbbe-4d8f-a52a-0b689e0bfdcd +2024-09-10 15:44:55.962559 2024-09-10 15:44:55.962563 cognd 041794524 R rec 58fadc80-b0cf-4b20-9f95-b647e05871da +2024-09-10 15:44:56.044292 2024-09-10 15:44:56.044298 cognd 041792432 R rec 9a455547-942d-4f95-9034-88acd3af4f4f +2024-09-10 15:44:56.10322 2024-09-10 15:44:56.103225 cognd 041785215 R rec dc35c31e-8030-475e-bf9b-bd2437d03cff +2024-09-10 15:44:56.169636 2024-09-10 15:44:56.169644 cognd 041784839 R rec 765fd7d0-3081-4bb2-bec3-cf67d8403296 +2024-09-10 15:44:56.233774 2024-09-10 15:44:56.23378 cognd 041781635 R rec 2961d268-b6e9-4f34-9e4f-5d853fb0040f +2024-09-10 15:44:56.312592 2024-09-10 15:44:56.312598 cognd 041779452 R rec 44c9ae8b-e08b-4dd8-85bb-00a73b9c30e7 +2024-09-10 15:44:56.383362 2024-09-10 15:44:56.383369 cognd 041774434 R rec af802292-42bc-4132-a704-182f19776b20 +2024-09-10 15:44:56.47812 2024-09-10 15:44:56.478126 cognd 041772822 R rec e23960b1-8eaf-4a75-aec3-1d076556b912 +2024-09-10 15:44:56.540469 2024-09-10 15:44:56.540474 cognd 041772768 R rec ddfa1c62-3a99-480d-8182-1e027fc60f32 +2024-09-10 15:44:56.604328 2024-09-10 15:44:56.604334 cognd 041767934 R rec 3e07b9e0-f118-4bfc-a32e-ce02aa1a22ee +2024-09-10 15:44:56.666854 2024-09-10 15:44:56.666861 cognd 041766717 R rec 64adaaf3-500b-4668-b17c-992e5c274782 +2024-09-10 15:44:56.732126 2024-09-10 15:44:56.732132 cognd 04176420X R rec b04f7137-daa1-4e60-a215-319863aa8cc7 +2024-09-10 15:44:56.801962 2024-09-10 15:44:56.801968 cognd 041763165 R rec 3d7f5c18-2774-4a07-a97d-16286ff188ee +2024-09-10 15:44:56.876984 2024-09-10 15:44:56.876992 cognd 041759834 R rec 56e0fa5c-14bc-4a6a-b6f0-31dca0840150 +2024-09-10 15:44:56.941044 2024-09-10 15:44:56.94105 cognd 041755014 R rec 6f6ac1dc-9950-4414-a5ee-e7f95c592551 +2024-09-10 15:44:57.012999 2024-09-10 15:44:57.013005 cognd 041754557 R rec 9478667a-10e3-4c63-96bd-7cf65de1252e +2024-09-10 15:44:57.090499 2024-09-10 15:44:57.090506 cognd 04175431X R rec a53971a5-fd17-4c60-afeb-f8df0e95a241 +2024-09-10 15:44:57.15276 2024-09-10 15:44:57.152765 cognd 04174926X R rec ec6ad7f5-98d1-4e36-86eb-a0ec0307dd52 +2024-09-10 15:44:57.229007 2024-09-10 15:44:57.229012 cognd 041748964 R rec 882bbb7f-bd24-40cb-96cf-de461c40d5c4 +2024-09-10 15:44:57.296962 2024-09-10 15:44:57.296969 cognd 04174604X R rec c7fef295-4b07-4bf7-b0a6-ccb69b851dcb +2024-09-10 15:44:57.371382 2024-09-10 15:44:57.371388 cognd 041742648 R rec a71cb142-9e93-4e50-8786-bfaff0da1159 +2024-09-10 15:44:57.455223 2024-09-10 15:44:57.455229 cognd 04174084X R rec f88b726d-d1c3-43df-b3ac-5da148f414e7 +2024-09-10 15:44:57.527272 2024-09-10 15:44:57.527277 cognd 041738063 R rec 0301ba44-db3b-4294-9f87-f84dcb29d7c7 +2024-09-10 15:44:57.588375 2024-09-10 15:44:57.588381 cognd 041737539 R rec 93328701-ca66-48fb-a591-2b0b7bcafc6f +2024-09-10 15:44:57.649201 2024-09-10 15:44:57.649207 cognd 041736346 R rec 3f708d71-edfe-428a-9216-782626016535 +2024-09-10 15:44:57.72084 2024-09-10 15:44:57.720845 cognd 041735390 R rec b0fa4863-8feb-458f-beb1-946ece65236b +2024-09-10 15:44:57.79726 2024-09-10 15:44:57.797266 cognd 041734688 R rec eb87f00d-60af-48b1-ba50-ffedbc51fb87 +2024-09-10 15:44:57.881428 2024-09-10 15:44:57.88144 cognd 041733819 R rec b0c505e5-8362-4243-b81b-86a02fa128c3 +2024-09-10 15:44:57.961446 2024-09-10 15:44:57.961458 cognd 041725522 R rec 355d4eed-04b0-47f4-aca9-32654dd78dbb +2024-09-10 15:44:58.050728 2024-09-10 15:44:58.050743 cognd 041722027 R rec 085e8e99-45ae-4d79-8a5f-49d30e98c5e0 +2024-09-10 15:44:58.153914 2024-09-10 15:44:58.153926 cognd 041720040 R rec b2516480-48af-408e-a178-4cf914e99f64 +2024-09-10 15:44:58.244863 2024-09-10 15:44:58.244869 cognd 041718429 R rec 1e4498fd-e4d3-44f6-8932-0ae458d7cfb6 +2024-09-10 15:44:58.311435 2024-09-10 15:44:58.31144 cognd 041716159 R rec 8d1030fc-f184-40af-9bd0-b9bbe7374078 +2024-09-10 15:44:58.375497 2024-09-10 15:44:58.375503 cognd 041714059 R rec cd3f0581-0bd1-48f6-a4a7-5b64c4105a5b +2024-09-10 15:44:58.440232 2024-09-10 15:44:58.440238 cognd 041712188 R rec 31f6514e-7c24-4e0a-9b7f-4b8ef22bbb07 +2024-09-10 15:44:58.50744 2024-09-10 15:44:58.507446 cognd 04171069X R rec 81311468-d864-4a31-98dd-44706ee34d57 +2024-09-10 15:44:58.58228 2024-09-10 15:44:58.582285 cognd 04171007X R rec 59350aa3-6971-498f-9346-68068751e6d0 +2024-09-10 15:44:58.658721 2024-09-10 15:44:58.658726 cognd 041707109 R rec 4700092a-d524-4112-af6e-b73f24a8c465 +2024-09-10 15:44:58.722144 2024-09-10 15:44:58.72215 cognd 04170441X R rec 0b582baf-3042-4d1f-939e-89e331911bd2 +2024-09-10 15:44:58.795004 2024-09-10 15:44:58.795009 cognd 041700465 R rec 989be4c2-e289-45cf-9d62-66c14068512d +2024-09-10 15:44:58.861934 2024-09-10 15:44:58.86194 cognd 041693442 R rec f63590af-8054-46b6-aca3-b135de4f5665 +2024-09-10 15:44:58.936615 2024-09-10 15:44:58.936623 cognd 041692403 R rec bc564a0c-1670-48ff-8c79-8107d584e8c1 +2024-09-10 15:44:59.001685 2024-09-10 15:44:59.00169 cognd 041691989 R rec 285e1588-75a5-4aba-8e1e-db1ff97ad125 +2024-09-10 15:44:59.075321 2024-09-10 15:44:59.07533 cognd 041691504 R rec 2eb7bbcb-ac52-4490-9e07-cd374b778534 +2024-09-10 15:44:59.140768 2024-09-10 15:44:59.140773 cognd 041689976 R rec 5d88efae-a0b9-458c-b232-e4c4c47c2abb +2024-09-10 15:44:59.212548 2024-09-10 15:44:59.212554 cognd 041688473 R rec 0e0165ca-a5f4-4fcd-91e7-02f8ec6f2bdf +2024-09-10 15:44:59.277113 2024-09-10 15:44:59.277118 cognd 041682106 R rec da697302-6941-4275-aa9d-a96c3fd32f18 +2024-09-10 15:44:59.376279 2024-09-10 15:44:59.376284 cognd 041679792 R rec 8dc972eb-be54-4fe7-a481-34d6ab68f801 +2024-09-10 15:44:59.441987 2024-09-10 15:44:59.442 cognd 041678532 R rec 8b1b5a2d-9fa8-490a-aa9c-c5fff0eca80b +2024-09-10 15:44:59.511532 2024-09-10 15:44:59.511538 cognd 041667093 R rec be0b73c7-4b9e-479e-8bd5-aae7fbb2c698 +2024-09-10 15:44:59.598687 2024-09-10 15:44:59.598704 cognd 041664795 R rec 18fc03d2-5fac-4d3e-ac5c-f4e8915fa953 +2024-09-10 15:44:59.681975 2024-09-10 15:44:59.681981 cognd 041653025 R rec 43c4baa1-fb17-4fa2-ba98-1b734688043d +2024-09-10 15:44:59.750428 2024-09-10 15:44:59.75044 cognd 041650018 R rec 8626e4f0-4ae0-4fcd-94b3-69d8cfa102d8 +2024-09-10 15:44:59.842153 2024-09-10 15:44:59.842164 cognd 041640047 R rec 8a3b5ced-c659-49a6-9556-c8d1cb90d699 +2024-09-10 15:44:59.929857 2024-09-10 15:44:59.929868 cognd 041639383 R rec 15c9e3ca-c3e2-4fb4-b2c2-7b7721f31a99 +2024-09-10 15:44:59.997019 2024-09-10 15:44:59.997034 cognd 041634179 R rec a8f19738-244d-4fc4-8f58-fe81aeeef035 +2024-09-10 15:45:00.090877 2024-09-10 15:45:00.090893 cognd 041631692 R rec 8e823a8c-a49e-43a6-9493-4c87d4326b8d +2024-09-10 15:45:00.169557 2024-09-10 15:45:00.169562 cognd 041631676 R rec dcd7ee5b-be98-47c0-9460-2193e444e5b0 +2024-09-10 15:45:00.232528 2024-09-10 15:45:00.232534 cognd 04163120X R rec 4507f09b-b279-4432-befe-cc796da9810c +2024-09-10 15:45:00.310425 2024-09-10 15:45:00.31043 cognd 041627458 R rec 7d9bd0a0-b1e5-450e-9964-de3c5422fc92 +2024-09-10 15:45:00.376927 2024-09-10 15:45:00.376932 cognd 041623010 R rec 29f6dcbf-481f-414d-b4aa-145b6717feb2 +2024-09-10 15:45:00.43766 2024-09-10 15:45:00.437665 cognd 041621662 R rec 9ea04ca3-da11-4760-a01f-cb801b641fa2 +2024-09-10 15:45:00.498482 2024-09-10 15:45:00.498488 cognd 041619633 R rec 60f0f71f-e883-4885-9f58-d34436aa2767 +2024-09-10 15:45:00.562252 2024-09-10 15:45:00.562258 cognd 041619366 R rec 033963a7-84bb-45ad-bc57-57ae41eb9df4 +2024-09-10 15:45:00.649387 2024-09-10 15:45:00.649393 cognd 041617266 R rec 05c8abdb-b761-43c3-949e-d81bd492d830 +2024-09-10 15:45:00.709623 2024-09-10 15:45:00.70963 cognd 041616375 R rec cac8f214-0822-4b21-b5e4-6bd1ee875166 +2024-09-10 15:45:00.770517 2024-09-10 15:45:00.770525 cognd 041612469 R rec 102403d0-2622-46e7-92d7-07fb85cddeda +2024-09-10 15:45:00.844453 2024-09-10 15:45:00.844458 cognd 041607988 R rec 66be8a55-8cb8-4b47-b039-2fd4acf37344 +2024-09-10 15:45:00.905849 2024-09-10 15:45:00.905855 cognd 041605799 R rec c3a40e16-13df-47eb-914a-a6b954e7ef81 +2024-09-10 15:45:00.972324 2024-09-10 15:45:00.97233 cognd 041603176 R rec 082847b0-96f8-4918-ba91-95c6e289dad1 +2024-09-10 15:45:01.034006 2024-09-10 15:45:01.034012 cognd 041601475 R rec 11811bbc-9a5f-49fe-a2a3-c8af7849f1f9 +2024-09-10 15:45:01.098608 2024-09-10 15:45:01.098613 cognd 041600622 R rec b5cedb0d-055b-4f81-a858-8a62177bd5e4 +2024-09-10 15:45:01.161514 2024-09-10 15:45:01.16152 cognd 041600010 R rec d47e6b2f-609a-4871-8411-2577d466326a +2024-09-10 15:45:01.229528 2024-09-10 15:45:01.229535 cognd 041596277 R rec 422ad032-8399-4986-8c36-297304c3f1a4 +2024-09-10 15:45:01.313486 2024-09-10 15:45:01.313495 cognd 041595505 R rec 7189d439-3256-4a40-a2db-992fedf95a83 +2024-09-10 15:45:01.379004 2024-09-10 15:45:01.37901 cognd 041582969 R rec 54c18564-6b2b-4211-943d-e09186e3980d +2024-09-10 15:45:01.45213 2024-09-10 15:45:01.452136 cognd 041582675 R rec 539066e7-613f-4355-b9a8-9abd2e9ead62 +2024-09-10 15:45:01.517131 2024-09-10 15:45:01.517137 cognd 041582500 R rec 81ba9122-7d79-441b-a3ab-e815ce65dd23 +2024-09-10 15:45:01.593318 2024-09-10 15:45:01.59333 cognd 041580176 R rec e9fae23e-c39d-4ef1-8563-1bae703eb33d +2024-09-10 15:45:01.674811 2024-09-10 15:45:01.674815 cognd 041579550 R rec 14967aee-412c-4227-bd64-49e7bb8ad4f6 +2024-09-10 15:45:01.737866 2024-09-10 15:45:01.737871 cognd 041577760 R rec c48e4112-7477-42a8-8724-d6770733a736 +2024-09-10 15:45:01.80374 2024-09-10 15:45:01.803753 cognd 041573579 R rec 96315cdd-d824-4ec5-80a3-9f02d7c4889a +2024-09-10 15:45:01.891638 2024-09-10 15:45:01.891649 cognd 041570316 R rec 94e697eb-0611-409c-b08d-f2f94d89e1a1 +2024-09-10 15:45:01.970496 2024-09-10 15:45:01.970499 cognd 041570154 R rec 28b4fee7-97ab-45b4-8c3d-ff1e148cf25d +2024-09-10 15:45:02.04371 2024-09-10 15:45:02.043721 cognd 041565762 R rec 1b410b97-6151-4d29-b252-be156866496c +2024-09-10 15:45:02.133582 2024-09-10 15:45:02.133592 cognd 041563409 R rec 9a3007e8-a890-4d09-96d4-6451f01da45d +2024-09-10 15:45:02.223949 2024-09-10 15:45:02.223961 cognd 04155812X R rec f07046e4-bbb3-40c9-b73f-f919516ba7a4 +2024-09-10 15:45:02.30557 2024-09-10 15:45:02.305576 cognd 041558103 R rec 300fffa8-04aa-4efd-b061-40df33ff4c55 +2024-09-10 15:45:02.390389 2024-09-10 15:45:02.390404 cognd 041556984 R rec ab28e8a7-44e1-40a7-b0c1-8e9f11926b88 +2024-09-10 15:45:02.494874 2024-09-10 15:45:02.494885 cognd 041555252 R rec c0c47a29-3862-4794-bbdf-08a9db6ed7b6 +2024-09-10 15:45:02.625328 2024-09-10 15:45:02.625343 cognd 041552725 R rec 82b62a76-af55-403e-bc2f-649711445337 +2024-09-10 15:45:02.707505 2024-09-10 15:45:02.707511 cognd 041552334 R rec 984f51d2-96f7-4988-a6ed-28d951e564e6 +2024-09-10 15:45:02.80222 2024-09-10 15:45:02.802226 cognd 041549457 R rec 28a01f57-4662-44d1-9408-e4b2479a19eb +2024-09-10 15:45:02.877273 2024-09-10 15:45:02.877282 cognd 041543688 R rec c8bd18a3-8dbd-4c49-8f16-56dfd92bb530 +2024-09-10 15:45:02.945239 2024-09-10 15:45:02.945244 cognd 041540654 R rec c8f8c047-ff25-49ae-888d-15e6aa2fad05 +2024-09-10 15:45:03.054941 2024-09-10 15:45:03.054947 cognd 041540387 R rec 6ee87bac-0e0b-4c9f-9d31-058b2a34efe1 +2024-09-10 15:45:03.125663 2024-09-10 15:45:03.125669 cognd 041539346 R rec 77de1e0a-35c7-4dc6-b0ac-c3f497330665 +2024-09-10 15:45:03.19377 2024-09-10 15:45:03.193775 cognd 041537882 R rec 35e7482a-5d5d-469f-aa6e-05096ec3a929 +2024-09-10 15:45:03.252017 2024-09-10 15:45:03.252023 cognd 04152862X R rec 5713759d-1d8a-478a-9796-67daafe9b88b +2024-09-10 15:45:03.311029 2024-09-10 15:45:03.311034 cognd 041528565 R rec bea8129a-b191-4c6c-aafb-73212f560c10 +2024-09-10 15:45:03.377641 2024-09-10 15:45:03.377647 cognd 041527186 R rec 1d1720dc-c230-4736-9485-c15cb6e5cb3e +2024-09-10 15:45:03.458334 2024-09-10 15:45:03.458339 cognd 041527062 R rec f7cd8f8b-f641-488e-aa34-4eeeb391604d +2024-09-10 15:45:03.53017 2024-09-10 15:45:03.530177 cognd 041521927 R rec 271ec6fe-a290-4a80-9aa1-c848426979bf +2024-09-10 15:45:03.598456 2024-09-10 15:45:03.598462 cognd 041511794 R rec 3b87adbe-b3b1-4d72-a59c-e1e6fde29ebc +2024-09-10 15:45:03.665842 2024-09-10 15:45:03.665848 cognd 041511360 R rec 15405cbf-3c39-4fa8-b0bb-4c1061a0705f +2024-09-10 15:45:03.73028 2024-09-10 15:45:03.730289 cognd 041507983 R rec 7dad96ce-7a8d-4f6e-bbd6-ba3a579805c9 +2024-09-10 15:45:03.797942 2024-09-10 15:45:03.797948 cognd 041506588 R rec 4dbe474c-975b-4910-b742-ab9893d74c12 +2024-09-10 15:45:03.858515 2024-09-10 15:45:03.85852 cognd 041505190 R rec 21489241-2800-47d9-811d-e4413e2ece4d +2024-09-10 15:45:03.925975 2024-09-10 15:45:03.925986 cognd 041504925 R rec 0bb8dafe-b958-4809-b152-4aa59d4adedb +2024-09-10 15:45:04.020254 2024-09-10 15:45:04.020266 cognd 041501950 R rec 0efcad11-dfb6-4ee9-9842-c39b6f581dec +2024-09-10 15:45:04.117516 2024-09-10 15:45:04.117522 cognd 041501608 R rec 2423492d-2af8-40a8-9426-234710ab70e7 +2024-09-10 15:45:04.189804 2024-09-10 15:45:04.189815 cognd 041497848 R rec bd441ffc-87f4-4a3c-9da4-aa9dabb22c94 +2024-09-10 15:45:04.271647 2024-09-10 15:45:04.271663 cognd 041497112 R rec 65bb47c2-cd84-49e5-b7dc-8fe795ab596a +2024-09-10 15:45:04.364839 2024-09-10 15:45:04.364855 cognd 041490673 R rec ebc9085b-0435-46e1-a3a1-f1e65e89be6d +2024-09-10 15:45:04.456775 2024-09-10 15:45:04.45678 cognd 041489837 R rec fa57c4dd-35e3-4643-b3b4-1726b02eb218 +2024-09-10 15:45:04.529208 2024-09-10 15:45:04.529219 cognd 041483626 R rec 97394cb7-f480-4209-b5b7-a1c7e2539ded +2024-09-10 15:45:04.616799 2024-09-10 15:45:04.616811 cognd 041479017 R rec 93e6ce89-107f-480b-bcca-1af9d84bdd2e +2024-09-10 15:45:04.693279 2024-09-10 15:45:04.693285 cognd 041467760 R rec 91107618-4d48-45f9-a211-171f922318c2 +2024-09-10 15:45:04.7758 2024-09-10 15:45:04.775805 cognd 04146351X R rec 13e438a2-72d5-4636-b7f8-fc303087acb1 +2024-09-10 15:45:04.84514 2024-09-10 15:45:04.845145 cognd 041463250 R rec 919998ce-bc80-4d31-9e72-98c58c35a109 +2024-09-10 15:45:04.914441 2024-09-10 15:45:04.914447 cognd 041462467 R rec 85f6be4b-dc34-4dcf-a1a5-a71fa5e3a86d +2024-09-10 15:45:04.990461 2024-09-10 15:45:04.990466 cognd 041456629 R rec 696b51e1-bce5-4445-81da-afe55f2ae807 +2024-09-10 15:45:05.070089 2024-09-10 15:45:05.070095 cognd 041455908 R rec 896d107d-29e2-46e3-9290-8060d4a34eed +2024-09-10 15:45:05.151407 2024-09-10 15:45:05.151413 cognd 04145412X R rec 785a21b7-283f-474d-a209-b9bb5bd113c5 +2024-09-10 15:45:05.231047 2024-09-10 15:45:05.231059 cognd 041451732 R rec 422bd285-15f0-422f-9ff8-d9ba362861de +2024-09-10 15:45:05.312749 2024-09-10 15:45:05.312762 cognd 041449347 R rec fc640263-c901-4a41-8849-4c5786cc8968 +2024-09-10 15:45:05.406111 2024-09-10 15:45:05.406122 cognd 041448723 R rec c793f670-a5cd-47ca-b5bb-baa5ff4200ae +2024-09-10 15:45:05.496591 2024-09-10 15:45:05.496601 cognd 041445120 R rec c2861c65-8938-4691-b34d-d425cfb0ed3e +2024-09-10 15:45:05.575178 2024-09-10 15:45:05.575189 cognd 041445082 R rec 5d92d8e7-0eb1-4fcd-af4b-48ddb5161c69 +2024-09-10 15:45:05.661329 2024-09-10 15:45:05.661345 cognd 041444817 R rec 99a04ca0-b7f8-4a08-9e82-cd9e7bb5a8e2 +2024-09-10 15:45:05.747029 2024-09-10 15:45:05.74704 cognd 041444809 R rec 44a8f677-796b-49c3-9fce-5158918070a2 +2024-09-10 15:45:05.808892 2024-09-10 15:45:05.808898 cognd 041444108 R rec b5335afb-5c2f-4738-94c5-c90a26e0e131 +2024-09-10 15:45:05.886431 2024-09-10 15:45:05.886447 cognd 04144115X R rec c57a9369-63c0-4aa4-bb05-80667bb5847f +2024-09-10 15:45:05.970869 2024-09-10 15:45:05.970883 cognd 041440706 R rec 88f26d4a-93ca-4604-a624-28d8beabb700 +2024-09-10 15:45:06.074821 2024-09-10 15:45:06.074837 cognd 041439686 R rec a24f24e4-b3fa-45e6-8e47-1205669a359b +2024-09-10 15:45:06.149919 2024-09-10 15:45:06.149934 cognd 041436512 R rec 15cf6b53-d969-484d-8b1d-a3a3620191f4 +2024-09-10 15:45:06.255074 2024-09-10 15:45:06.255086 cognd 041434722 R rec 65317412-c297-4a00-89ae-84663dc939d5 +2024-09-10 15:45:06.349595 2024-09-10 15:45:06.349612 cognd 041427548 R rec 43dc6cc5-7b10-443d-98e8-9629e0a82fde +2024-09-10 15:45:06.452311 2024-09-10 15:45:06.452322 cognd 041424654 R rec 51fb0107-114b-4059-b280-964d00f5e7f2 +2024-09-10 15:45:06.541926 2024-09-10 15:45:06.541931 cognd 041419464 R rec ced4e73c-d7e3-4c22-82d4-b4529ca535cc +2024-09-10 15:45:06.616819 2024-09-10 15:45:06.616826 cognd 041413334 R rec d20e8758-2b07-43ec-91e1-00adcba2750e +2024-09-10 15:45:06.703793 2024-09-10 15:45:06.703799 cognd 041413083 R rec 037c783a-fe62-41c6-8fc3-f1312802bc13 +2024-09-10 15:45:06.774675 2024-09-10 15:45:06.774681 cognd 041410513 R rec 75f670d1-4e86-40bb-9d75-93dbe7f50de1 +2024-09-10 15:45:06.836694 2024-09-10 15:45:06.8367 cognd 041406605 R rec dfb54e94-47cc-4114-b62e-e77f88ecfae8 +2024-09-10 15:45:06.902305 2024-09-10 15:45:06.90231 cognd 041403886 R rec 373a5e2b-98db-4fc8-987d-ccb1598a2c7f +2024-09-10 15:45:06.962693 2024-09-10 15:45:06.962699 cognd 041403657 R rec 6aadc72b-0b99-45b4-a30b-bba82f320693 +2024-09-10 15:45:07.024405 2024-09-10 15:45:07.024411 cognd 041401522 R rec e1408eb6-0df1-47ac-8a53-a9b2129ea499 +2024-09-10 15:45:07.085796 2024-09-10 15:45:07.085798 cognd 041400909 R rec abad5902-4742-4fcf-99c7-f82b6d36c0a2 +2024-09-10 15:45:07.147016 2024-09-10 15:45:07.147019 cognd 041398424 R rec 25a2ce07-0ca4-4106-921b-c393c8d51197 +2024-09-10 15:45:07.224797 2024-09-10 15:45:07.224805 cognd 041397932 R rec de647247-78ef-429f-bec1-6d2093c8edcf +2024-09-10 15:45:07.319102 2024-09-10 15:45:07.319107 cognd 041397150 R rec 63bede4f-0ec4-4005-81ac-894c2500cdb2 +2024-09-10 15:45:07.392736 2024-09-10 15:45:07.392747 cognd 04139674X R rec e7419d0d-2c3e-4c3c-b848-9905a041a1a8 +2024-09-10 15:45:07.486396 2024-09-10 15:45:07.48641 cognd 041395786 R rec c78f2e19-87d9-41d3-a393-1837ed0cb17a +2024-09-10 15:45:07.590088 2024-09-10 15:45:07.5901 cognd 04139531X R rec 7ba874e1-7756-4566-b1ca-7dfb2682ffa3 +2024-09-10 15:45:07.682109 2024-09-10 15:45:07.682124 cognd 041393848 R rec 431e48a6-e89e-4ea5-837c-4dd2a7acddba +2024-09-10 15:45:07.767184 2024-09-10 15:45:07.767199 cognd 041392736 R rec c0224277-a83f-4626-8102-e93af6e5b639 +2024-09-10 15:45:07.831474 2024-09-10 15:45:07.83148 cognd 041385896 R rec 5543469e-c7e5-4b04-9f1d-195146f70ab9 +2024-09-10 15:45:07.896837 2024-09-10 15:45:07.896846 cognd 041385659 R rec 074ffb29-2378-438e-a709-5a59a942b8d2 +2024-09-10 15:45:07.97221 2024-09-10 15:45:07.972221 cognd 041382994 R rec 7789e2fc-75af-4ec0-8875-956be7222deb +2024-09-10 15:45:08.057455 2024-09-10 15:45:08.057466 cognd 041380827 R rec f61e1a96-1149-433f-9e0b-78dc9f8e366c +2024-09-10 15:45:08.132614 2024-09-10 15:45:08.132619 cognd 041378970 R rec 1363dfde-da36-4a45-897c-3dbd98803425 +2024-09-10 15:45:08.218074 2024-09-10 15:45:08.218084 cognd 041378296 R rec e2fe5a3d-2cc3-4719-9a9d-f15aab38f27c +2024-09-10 15:45:08.297642 2024-09-10 15:45:08.297654 cognd 04137651X R rec 74f34e92-105e-4310-ac61-6940d1702354 +2024-09-10 15:45:08.380808 2024-09-10 15:45:08.380814 cognd 041375785 R rec 292fde09-d05f-45a7-b0ab-3d978c186a6f +2024-09-10 15:45:08.44933 2024-09-10 15:45:08.449342 cognd 041375157 R rec d0685591-1129-48b7-aaa6-f7f7534f5cee +2024-09-10 15:45:08.543144 2024-09-10 15:45:08.543158 cognd 041373146 R rec 3c20045d-dde0-4d6b-89e7-e04bf6967678 +2024-09-10 15:45:08.637094 2024-09-10 15:45:08.6371 cognd 041372867 R rec 554a2b45-f46a-41b5-b441-a2131f8fb135 +2024-09-10 15:45:08.715134 2024-09-10 15:45:08.715139 cognd 041369424 R rec a1557a19-72f2-4837-8d84-9e09643f8141 +2024-09-10 15:45:08.780827 2024-09-10 15:45:08.780843 cognd 041368118 R rec d7ed3dc7-d462-422b-8877-57d1a574d7e0 +2024-09-10 15:45:08.860606 2024-09-10 15:45:08.860613 cognd 041367782 R rec de2f1a85-4124-4637-ae3e-9c9a4cd93abb +2024-09-10 15:45:08.936218 2024-09-10 15:45:08.936229 cognd 041358902 R rec 147111cf-cd75-4e9d-b84e-f01d6249795f +2024-09-10 15:45:09.041801 2024-09-10 15:45:09.041814 cognd 041358678 R rec 8a54fcf9-245f-43aa-b30f-38da6c5aa2a9 +2024-09-10 15:45:09.127481 2024-09-10 15:45:09.127492 cognd 041357515 R rec 1dfdfb95-4762-4a74-bf99-59eb62f84c1f +2024-09-10 15:45:09.227185 2024-09-10 15:45:09.22719 cognd 041351169 R rec da8e8736-4583-4a41-8fc8-738ec969e0c3 +2024-09-10 15:45:09.317977 2024-09-10 15:45:09.317988 cognd 041344677 R rec 273dbca4-e707-432f-a7d5-45b0afe05123 +2024-09-10 15:45:09.409528 2024-09-10 15:45:09.409534 cognd 041336844 R rec fbac0650-86d6-48da-a808-32d7f0c7e62e +2024-09-10 15:45:09.498614 2024-09-10 15:45:09.498625 cognd 041336720 R rec ad8b097c-1197-4f57-865f-92012f71aea8 +2024-09-10 15:45:09.589695 2024-09-10 15:45:09.589701 cognd 041332156 R rec b62a8b00-6bc8-4c69-9d81-95fa9fdc8283 +2024-09-10 15:45:09.675299 2024-09-10 15:45:09.67531 cognd 041330048 R rec 36e34be4-cb11-4e6a-828e-151d68977c5a +2024-09-10 15:45:09.744611 2024-09-10 15:45:09.744616 cognd 041328523 R rec 36eb241b-d6f8-4d13-8f0c-5d1536c0a61f +2024-09-10 15:45:09.816094 2024-09-10 15:45:09.816109 cognd 041327896 R rec b2aa248a-e484-45c1-956e-9e3401cde2fc +2024-09-10 15:45:09.91168 2024-09-10 15:45:09.911685 cognd 041326393 R rec 2207e02d-da61-4980-8119-7ec1a1ff15b4 +2024-09-10 15:45:09.979704 2024-09-10 15:45:09.97971 cognd 041325109 R rec f9c3d18c-fb57-4289-95d5-6fc61f564036 +2024-09-10 15:45:10.048934 2024-09-10 15:45:10.048945 cognd 04132501X R rec 371e2db0-4d02-4447-8c66-3cfda88bb287 +2024-09-10 15:45:10.146353 2024-09-10 15:45:10.146364 cognd 041321782 R rec 072eb873-e68e-46ac-a272-2403786e46a8 +2024-09-10 15:45:10.236234 2024-09-10 15:45:10.23624 cognd 041318153 R rec 01daccf9-6979-4d39-9512-3635326116d0 +2024-09-10 15:45:10.332756 2024-09-10 15:45:10.332766 cognd 041312406 R rec 66d6490f-1efd-40f1-8633-52503a9454b0 +2024-09-10 15:45:10.409081 2024-09-10 15:45:10.409092 cognd 041311248 R rec 69adb443-479b-480e-bd03-7236406ed4fc +2024-09-10 15:45:10.50076 2024-09-10 15:45:10.500776 cognd 041308263 R rec 69f0a050-babb-4006-85dc-9c250455a1a0 +2024-09-10 15:45:10.594832 2024-09-10 15:45:10.594837 cognd 041306570 R rec cc8f48ad-5537-48b6-ad59-9707ced5e5de +2024-09-10 15:45:10.673384 2024-09-10 15:45:10.673401 cognd 041306473 R rec 7aabb0db-0b8e-4536-a97c-29d82c14dd62 +2024-09-10 15:45:10.743693 2024-09-10 15:45:10.7437 cognd 041305450 R rec 7e14e7fb-0eac-4ca0-99a8-0fb32e370266 +2024-09-10 15:45:10.824446 2024-09-10 15:45:10.824459 cognd 041301005 R rec fda0c0a0-fdcc-4f2a-ad53-c89886e5faba +2024-09-10 15:45:10.903116 2024-09-10 15:45:10.903121 cognd 041296540 R rec 5a85dcbd-e290-43c9-9c1c-53b28e6b96ef +2024-09-10 15:45:10.981345 2024-09-10 15:45:10.981351 cognd 041291107 R rec 2463ac85-0be1-43ce-8eb2-501a80077d9b +2024-09-10 15:45:11.051221 2024-09-10 15:45:11.051227 cognd 041289870 R rec 974d6a97-659d-48a7-9541-b7191b4b0149 +2024-09-10 15:45:11.140897 2024-09-10 15:45:11.140905 cognd 041288769 R rec b4998270-7ceb-4d75-b172-c45516407a24 +2024-09-10 15:45:11.215615 2024-09-10 15:45:11.21562 cognd 04128805X R rec 8fe72f57-fb17-492b-8037-66f9c231b333 +2024-09-10 15:45:11.285893 2024-09-10 15:45:11.285898 cognd 041287886 R rec 383463fb-fc11-44b6-9dcb-10dd94fa2ceb +2024-09-10 15:45:11.367037 2024-09-10 15:45:11.367049 cognd 041285913 R rec e205f7b6-55c9-45d8-920c-cca0120e325a +2024-09-10 15:45:11.451738 2024-09-10 15:45:11.451754 cognd 041284100 R rec baf6d5a2-fe05-48ec-84d9-d321bec1742b +2024-09-10 15:45:11.547725 2024-09-10 15:45:11.547736 cognd 041282787 R rec 55aaba9b-168b-452a-8db1-6bcd130cb42c +2024-09-10 15:45:11.641755 2024-09-10 15:45:11.641769 cognd 041280628 R rec 8bb31dc9-0d90-4994-85c3-2729bf4a1310 +2024-09-10 15:45:11.72869 2024-09-10 15:45:11.7287 cognd 041277848 R rec 37cecaaa-5df6-4790-923d-d58021c36622 +2024-09-10 15:45:11.824006 2024-09-10 15:45:11.824012 cognd 041277090 R rec 7367c623-a01d-4c9e-8427-d584896d0d84 +2024-09-10 15:45:11.894662 2024-09-10 15:45:11.894669 cognd 041275829 R rec 7b169668-c2a7-4614-964d-2e0fbda8e527 +2024-09-10 15:45:11.992589 2024-09-10 15:45:11.9926 cognd 041274059 R rec 316ea80b-1ea3-4826-961d-5199a46bd0d8 +2024-09-10 15:45:12.074125 2024-09-10 15:45:12.074142 cognd 041270290 R rec 914e5924-4525-4289-adaa-518c2bff8cdd +2024-09-10 15:45:12.191519 2024-09-10 15:45:12.191531 cognd 041264487 R rec 539cb874-9cb3-44da-b1b5-fc1a7eece433 +2024-09-10 15:45:12.282576 2024-09-10 15:45:12.282597 cognd 04126133X R rec 096f5a61-0687-4c2b-a954-dbaaa95cd953 +2024-09-10 15:45:12.373576 2024-09-10 15:45:12.373594 cognd 041258819 R rec 30ab8707-1dff-4bc3-ab2c-0bd384ca0d52 +2024-09-10 15:45:12.46263 2024-09-10 15:45:12.462642 cognd 041258762 R rec e6032d07-753c-4ad8-a06e-2e6f4b8aaccf +2024-09-10 15:45:12.541873 2024-09-10 15:45:12.541892 cognd 041255364 R rec 113140f9-a11b-46b1-a63f-7465b5a6bc8e +2024-09-10 15:45:12.633983 2024-09-10 15:45:12.633994 cognd 041254759 R rec a7f118f7-3eed-4959-949c-ecd1fcf3b948 +2024-09-10 15:45:12.717248 2024-09-10 15:45:12.717256 cognd 041254538 R rec 7679118e-9b63-4176-8d41-2ab8490b6f4d +2024-09-10 15:45:12.798411 2024-09-10 15:45:12.798423 cognd 041251733 R rec deeded46-565e-4516-a324-2afcbb24a7c4 +2024-09-10 15:45:12.882859 2024-09-10 15:45:12.882877 cognd 041250117 R rec ff48f5bd-080b-4f60-aaec-ab685c2163f5 +2024-09-10 15:45:12.967158 2024-09-10 15:45:12.967163 cognd 041244362 R rec 5a0dd244-59fe-48a7-860b-0fc273379dd1 +2024-09-10 15:45:13.036492 2024-09-10 15:45:13.036505 cognd 04124317X R rec 20f4672e-5763-430a-a634-e921d0e203de +2024-09-10 15:45:13.123781 2024-09-10 15:45:13.123787 cognd 041240839 R rec 17024d02-b2bf-4e5b-a566-806346ac360a +2024-09-10 15:45:13.216172 2024-09-10 15:45:13.216178 cognd 041237226 R rec 9d6924c8-6f9c-49b4-83a9-6a2d52226ec5 +2024-09-10 15:45:13.297174 2024-09-10 15:45:13.297189 cognd 041231899 R rec 6f50719f-85e8-4a03-be5b-61aae9000a46 +2024-09-10 15:45:13.378902 2024-09-10 15:45:13.378918 cognd 041220803 R rec 04500c51-b6c2-4e57-a7d6-18d9173d738d +2024-09-10 15:45:13.449737 2024-09-10 15:45:13.449742 cognd 041218760 R rec 5806f316-76c2-41e8-9bfd-61f34f38e29b +2024-09-10 15:45:13.532067 2024-09-10 15:45:13.532078 cognd 041217896 R rec c3e34e8e-5295-45af-b774-f4c98587385f +2024-09-10 15:45:13.630683 2024-09-10 15:45:13.630689 cognd 041217225 R rec cbfd84b8-f5af-4fd4-a120-2db586d64ee1 +2024-09-10 15:45:13.726084 2024-09-10 15:45:13.726086 cognd 041217020 R rec d872ac52-dc0e-4a81-994d-9bf03237bc92 +2024-09-10 15:45:13.820734 2024-09-10 15:45:13.820746 cognd 04121630X R rec b9ab6fce-75f1-42cc-8778-e0ca3e344ea1 +2024-09-10 15:45:13.900217 2024-09-10 15:45:13.900223 cognd 041214870 R rec f46d0c58-d663-4789-a536-c438a0f3ce86 +2024-09-10 15:45:13.988487 2024-09-10 15:45:13.988494 cognd 041212339 R rec e1bee1ff-9843-43a8-bf21-5c3032c10597 +2024-09-10 15:45:14.088489 2024-09-10 15:45:14.088498 cognd 041211383 R rec c0990b46-544e-4c9e-91e0-4ee5a7cfbc01 +2024-09-10 15:45:14.22414 2024-09-10 15:45:14.224147 cognd 041211154 R rec 19c08f85-bc9f-4319-a066-2f9cf90b0eb5 +2024-09-10 15:45:14.34749 2024-09-10 15:45:14.347496 cognd 041208862 R rec e09ba05a-2b58-4b07-9ae5-d0e83c05bfe1 +2024-09-10 15:45:14.418272 2024-09-10 15:45:14.41828 cognd 041204409 R rec 156dd90e-a9f4-40ec-81c8-9d23ae11e1bd +2024-09-10 15:45:14.487465 2024-09-10 15:45:14.487471 cognd 041176626 R rec 9b6f691d-f9f8-4577-b028-286c8f9d6d70 +2024-09-10 15:45:14.565834 2024-09-10 15:45:14.565839 cognd 041175808 R rec bf50fd9e-07f3-4b90-88b8-0f9446c939d7 +2024-09-10 15:45:14.675688 2024-09-10 15:45:14.675702 cognd 041173899 R rec f014ca88-3cfd-4488-8281-c90ba96c2288 +2024-09-10 15:45:14.780628 2024-09-10 15:45:14.780644 cognd 041172922 R rec ab825710-c741-4814-99a2-42a3c0922431 +2024-09-10 15:45:14.885328 2024-09-10 15:45:14.885348 cognd 041172299 R rec b2529e00-5d8f-41e2-933c-7608bf0162c4 +2024-09-10 15:45:14.99285 2024-09-10 15:45:14.992855 cognd 041164334 R rec d99a0289-a8b1-473d-938d-882d0c147279 +2024-09-10 15:45:15.089627 2024-09-10 15:45:15.089653 cognd 04115746X R rec 2b8208ee-aed6-4394-af0b-4e94e922f29e +2024-09-10 15:45:15.231497 2024-09-10 15:45:15.231513 cognd 041144910 R rec 97a718c3-652d-45ef-abca-537f408e2621 +2024-09-10 15:45:15.362447 2024-09-10 15:45:15.362458 cognd 041142993 R rec db4476cc-7b4c-4ea7-870d-46cf57f64c37 +2024-09-10 15:45:15.494195 2024-09-10 15:45:15.494208 cognd 041142403 R rec 7200eb01-a46a-4951-9f4c-4a21151ca5b9 +2024-09-10 15:45:15.608056 2024-09-10 15:45:15.608073 cognd 041134346 R rec 582c186d-c47b-46d5-bf1e-e0f8aab6b1db +2024-09-10 15:45:15.727975 2024-09-10 15:45:15.728004 cognd 041133889 R rec 46155dbb-0ac2-46b1-9aa7-d4c5e7f515b9 +2024-09-10 15:45:15.831792 2024-09-10 15:45:15.831804 cognd 041125002 R rec 65190a17-d478-4823-afd6-484a8e89f455 +2024-09-10 15:45:15.940607 2024-09-10 15:45:15.940619 cognd 041067940 R rec 13462e33-64d1-43bf-bb5c-441fb0d2d233 +2024-09-10 15:45:16.044008 2024-09-10 15:45:16.044013 cognd 040785947 R rec 288adcc9-825a-4ed3-9dde-0447080e2ebc +2024-09-10 15:45:16.131742 2024-09-10 15:45:16.131753 cognd 04077984X R rec c061334a-bb61-43ef-a974-79288431ff51 +2024-09-10 15:45:16.243684 2024-09-10 15:45:16.243699 cognd 040777820 R rec 5f8e54e1-ac52-4211-a8ee-9cff1f75c934 +2024-09-10 15:45:16.349636 2024-09-10 15:45:16.349652 cognd 040776832 R rec fdd5bcc1-6f0a-4cbb-a11c-e16394e6ff69 +2024-09-10 15:45:16.465424 2024-09-10 15:45:16.465437 cognd 040760669 R rec a46d4dd7-4f06-41c8-903e-43f90bd3fead +2024-09-10 15:45:16.577162 2024-09-10 15:45:16.577178 cognd 04075121X R rec 5f19879c-a576-4096-bcdd-83d08b2cc043 +2024-09-10 15:45:16.68487 2024-09-10 15:45:16.684886 cognd 040741117 R rec d774e862-d499-40c0-abf2-80c6ba22efc7 +2024-09-10 15:45:16.794267 2024-09-10 15:45:16.794283 cognd 040737888 R rec 192de8bb-f4f5-464c-9884-e3ab926a8177 +2024-09-10 15:45:16.905332 2024-09-10 15:45:16.905348 cognd 040737810 R rec 185d25e7-d916-4226-84da-45c2043a0139 +2024-09-10 15:45:17.021816 2024-09-10 15:45:17.021832 cognd 040737063 R rec 63aba586-a284-4ab3-9f7a-46b34be2e7b3 +2024-09-10 15:45:17.099588 2024-09-10 15:45:17.099593 cognd 040717763 R rec f8b807f1-512e-4359-b7e1-26e885b9b6ce +2024-09-10 15:45:17.172858 2024-09-10 15:45:17.172872 cognd 040717119 R rec 73d4753e-e2db-4ebf-a1d2-b98116db1fd9 +2024-09-10 15:45:17.26922 2024-09-10 15:45:17.269236 cognd 040715213 R rec bf735fd5-9aa3-48b3-83e1-c84cc21db0be +2024-09-10 15:45:17.370227 2024-09-10 15:45:17.370239 cognd 040712168 R rec b51379ea-393c-45f7-9142-b6152b35a432 +2024-09-10 15:45:17.46049 2024-09-10 15:45:17.460505 cognd 040709248 R rec 95ebb740-30ec-4e5d-9f62-cfb86f0fba45 +2024-09-10 15:45:17.555023 2024-09-10 15:45:17.555039 cognd 040707385 R rec f412c20d-2a24-47b9-926a-82e2fbe9fb92 +2024-09-10 15:45:17.665085 2024-09-10 15:45:17.665101 cognd 040706079 R rec 626326f5-ea02-482e-bfe8-093068af3cd1 +2024-09-10 15:45:17.781816 2024-09-10 15:45:17.781828 cognd 040705846 R rec d3a42646-5a50-45fe-bf99-3f6914e60aa9 +2024-09-10 15:45:17.908368 2024-09-10 15:45:17.908381 cognd 040693759 R rec 2ca728d1-b508-4a25-95ab-b96520a24018 +2024-09-10 15:45:18.011861 2024-09-10 15:45:18.011875 cognd 040693538 R rec f51325b1-9f25-40f1-b946-843e71d70871 +2024-09-10 15:45:18.115588 2024-09-10 15:45:18.115593 cognd 040687333 R rec 3ca28bbc-a1fe-43b9-a5d5-5aa933c09c54 +2024-09-10 15:45:18.190084 2024-09-10 15:45:18.190096 cognd 040685969 R rec 0ed4f968-de26-49ef-9d2a-5df756c20564 +2024-09-10 15:45:18.296771 2024-09-10 15:45:18.296787 cognd 040677036 R rec bc3373b6-9f7c-472f-9351-8c3a4008911d +2024-09-10 15:45:18.427829 2024-09-10 15:45:18.427848 cognd 04067701X R rec a338477f-d21a-4528-ad03-9f92dd51c9d0 +2024-09-10 15:45:18.542715 2024-09-10 15:45:18.542731 cognd 040664643 R rec 6cfe398f-6804-473b-bc36-7a78ac773164 +2024-09-10 15:45:18.646423 2024-09-10 15:45:18.646434 cognd 040664244 R rec f5262013-2ae3-45f7-9aac-c8a55e34982f +2024-09-10 15:45:18.756786 2024-09-10 15:45:18.756802 cognd 040664104 R rec fc52c039-330e-436d-b943-f9ddf34bb6c7 +2024-09-10 15:45:18.877419 2024-09-10 15:45:18.87743 cognd 040658864 R rec aa762158-7000-4150-a9dd-e002631d67f7 +2024-09-10 15:45:18.996863 2024-09-10 15:45:18.996879 cognd 040654648 R rec 33cb12dc-b8e1-4eba-9629-733efe331bea +2024-09-10 15:45:19.100438 2024-09-10 15:45:19.100454 cognd 040641805 R rec eb7515ad-7bcd-420f-b0d1-43a0d9f8a2bd +2024-09-10 15:45:19.213806 2024-09-10 15:45:19.213812 cognd 040633306 R rec db3211b8-21fd-4fef-a8c0-01ea7c6421ca +2024-09-10 15:45:19.299458 2024-09-10 15:45:19.299469 cognd 040628604 R rec 22ebd8b3-d61e-4452-a6a0-3526c5d14157 +2024-09-10 15:45:19.404608 2024-09-10 15:45:19.40462 cognd 040628094 R rec 107cb8b7-8839-4b79-821e-7ca3993aed99 +2024-09-10 15:45:19.533303 2024-09-10 15:45:19.533314 cognd 040621278 R rec 5e2aa948-04e0-4cc5-a10d-92416175ae71 +2024-09-10 15:45:19.647663 2024-09-10 15:45:19.647674 cognd 040617203 R rec f18545c3-988a-4bcb-96b1-3a5d5a321962 +2024-09-10 15:45:20.659781 2024-09-10 15:45:20.659792 cognd 040539644 R rec a3e938cf-51fb-4127-9732-29a057a63c14 +2024-09-10 15:45:20.764543 2024-09-10 15:45:20.764559 cognd 04053376X R rec 74ee001a-390d-4bdb-bf31-de34c06ef900 +2024-09-10 15:45:20.889308 2024-09-10 15:45:20.889319 cognd 040515842 R rec 5a2bf5cf-8e92-4401-bea1-596caf8269b1 +2024-09-10 15:45:21.024422 2024-09-10 15:45:21.024433 cognd 040490122 R rec 99d3a3a4-708e-4cb1-ad61-87f0c71ab673 +2024-09-10 15:45:21.139376 2024-09-10 15:45:21.139387 cognd 040475972 R rec ea1dbb14-75a3-4b1a-882f-9f859ee7375d +2024-09-10 15:45:21.241575 2024-09-10 15:45:21.24158 cognd 040475778 R rec 56c40aa4-1c0f-4920-9a15-6b703297691d +2024-09-10 15:45:21.32889 2024-09-10 15:45:21.328902 cognd 040471713 R rec f8be941c-4b5b-4568-a4e4-9bad452af11f +2024-09-10 15:45:21.432617 2024-09-10 15:45:21.432629 cognd 040471233 R rec 98cb76b1-fbe5-44b9-b458-d9eb211c1718 +2024-09-10 15:45:21.541732 2024-09-10 15:45:21.541743 cognd 040468003 R rec 415e5bd6-19d9-4ae8-b27d-32c4f95d997e +2024-09-10 15:45:21.655343 2024-09-10 15:45:21.655359 cognd 040461912 R rec e851f214-eeeb-4276-8f17-8a39c679f5f1 +2024-09-10 15:45:21.772076 2024-09-10 15:45:21.772089 cognd 040460495 R rec e608d75c-2f6a-4524-9eb0-226e5d80f1af +2024-09-10 15:45:21.906565 2024-09-10 15:45:21.906576 cognd 040459195 R rec f24e5329-df63-4907-b127-7bae089573d6 +2024-09-10 15:45:22.013001 2024-09-10 15:45:22.013013 cognd 040448932 R rec cd7cb64e-d65f-4bde-a5e0-1becd698bea1 +2024-09-10 15:45:22.11495 2024-09-10 15:45:22.114963 cognd 040448924 R rec e7e9db7f-287b-454d-b874-15d25558e113 +2024-09-10 15:45:22.223789 2024-09-10 15:45:22.223802 cognd 040414124 R rec bca9cab8-6476-476a-8ef7-b7df1ef7c693 +2024-09-10 15:45:22.308648 2024-09-10 15:45:22.308661 cognd 04041177X R rec f8eb8d2c-c79b-442e-9b9a-21328e221ef4 +2024-09-10 15:45:22.421941 2024-09-10 15:45:22.421952 cognd 040411583 R rec 502350c3-7e83-4e3a-99a9-6759aacfad4f +2024-09-10 15:45:22.531477 2024-09-10 15:45:22.531488 cognd 040372170 R rec ee7438d7-2550-41b6-93f3-3f63bee21b36 +2024-09-10 15:45:22.650243 2024-09-10 15:45:22.650261 cognd 040366898 R rec 24fe4b28-f4c7-4844-abf0-b258e18c4776 +2024-09-10 15:45:22.76708 2024-09-10 15:45:22.767096 cognd 040357228 R rec 09ff4c0f-bbd7-42ce-a9fc-f044d39a3efb +2024-09-10 15:45:22.894442 2024-09-10 15:45:22.894452 cognd 040354415 R rec ade3e9a6-7f0b-4147-91c8-5fd77d51396c +2024-09-10 15:45:23.015348 2024-09-10 15:45:23.015364 cognd 040351130 R rec 78f4b30f-0c62-4628-bf4f-8c3d160c7a56 +2024-09-10 15:45:23.143863 2024-09-10 15:45:23.143878 cognd 04034889X R rec 3fc54272-8f8f-4262-8db7-249fb46c4f0e +2024-09-10 15:45:23.25294 2024-09-10 15:45:23.252956 cognd 040344029 R rec 26c5ae7d-da06-4da7-97b7-5fed4147d81f +2024-09-10 15:45:23.332812 2024-09-10 15:45:23.332816 cognd 040302482 R rec 5415b750-751b-4116-8c0b-2a9967cec133 +2024-09-10 15:45:23.415132 2024-09-10 15:45:23.415143 cognd 040299848 R rec 0ba10d00-332a-49bb-b662-2de29f86f0f4 +2024-09-10 15:45:23.521648 2024-09-10 15:45:23.521659 cognd 040297519 R rec f0c9ac8e-1701-406a-af22-62de2d58cd52 +2024-09-10 15:45:23.62625 2024-09-10 15:45:23.626266 cognd 040296709 R rec bd347d37-eeb6-445a-bbcd-d49f13416db8 +2024-09-10 15:45:23.732438 2024-09-10 15:45:23.732454 cognd 040270076 R rec a5a289eb-fd1a-41d8-80cc-c954b335718b +2024-09-10 15:45:23.89509 2024-09-10 15:45:23.895112 cognd 040267210 R rec a20ffd07-a79c-41d4-84d9-580ea8f34301 +2024-09-10 15:45:24.009087 2024-09-10 15:45:24.0091 cognd 040257029 R rec afbc0bf5-7836-41b0-9aa1-d9e8177fc958 +2024-09-10 15:45:24.132248 2024-09-10 15:45:24.132264 cognd 040246655 R rec 827ac608-365d-4be4-8ffa-b8f8178f737d +2024-09-10 15:45:24.261672 2024-09-10 15:45:24.261683 cognd 040218066 R rec a3907c22-4f3f-4328-9ab7-51060c450a50 +2024-09-10 15:45:24.376879 2024-09-10 15:45:24.376886 cognd 04021334X R rec ddac04d0-9fd8-44f2-ad95-571f50fd8797 +2024-09-10 15:45:24.456806 2024-09-10 15:45:24.456819 cognd 040200728 R rec b2096a2d-a4f8-4abd-8ba5-f7c5e85174d0 +2024-09-10 15:45:24.619915 2024-09-10 15:45:24.619927 cognd 040200159 R rec a6981eef-c73e-40ef-a679-669ab1c09df0 +2024-09-10 15:45:24.743532 2024-09-10 15:45:24.743544 cognd 040195589 R rec 26e93d31-8179-411d-a646-ead254ba7b30 +2024-09-10 15:45:24.872178 2024-09-10 15:45:24.872189 cognd 040172503 R rec c8a9f5c6-0162-4be6-af8e-29c1a2444e8c +2024-09-10 15:45:25.007983 2024-09-10 15:45:25.007995 cognd 040171078 R rec 05ae19dc-bcfe-4761-a56d-8819fd31ed99 +2024-09-10 15:45:25.11323 2024-09-10 15:45:25.113252 cognd 040163172 R rec e89e67c1-7dcb-4c2f-98d7-4d35a2526e40 +2024-09-10 15:45:25.229446 2024-09-10 15:45:25.229457 cognd 04015985X R rec c873a85b-ff0e-4b07-bcae-bdaffe575fcb +2024-09-10 15:45:25.35372 2024-09-10 15:45:25.353733 cognd 040158292 R rec 7d5ab9df-a269-4340-8e9f-3c6914fa6ba6 +2024-09-10 15:45:25.438378 2024-09-10 15:45:25.43839 cognd 040143503 R rec 9d990a31-7ee6-4f7e-bda3-bebf4e2295da +2024-09-10 15:45:25.532836 2024-09-10 15:45:25.532847 cognd 040143376 R rec be9cb5d6-6e2c-4274-97e7-07e9eb59649c +2024-09-10 15:45:25.640549 2024-09-10 15:45:25.640565 cognd 040137465 R rec a4244b8f-07fb-4960-a47e-15e28c1dd2e6 +2024-09-10 15:45:25.742668 2024-09-10 15:45:25.742684 cognd 040136302 R rec 6915db1e-795c-4f31-94c1-d6c7939b23f0 +2024-09-10 15:45:25.853058 2024-09-10 15:45:25.853078 cognd 040132153 R rec 124b82e1-f4af-469a-83b1-ef0513d00d4e +2024-09-10 15:45:25.988509 2024-09-10 15:45:25.98852 cognd 040110680 R rec cd1a7d59-3458-4662-a72c-9e2311b7f439 +2024-09-10 15:45:26.096295 2024-09-10 15:45:26.09631 cognd 040105423 R rec 4797dedc-f185-4a4d-abd8-d70c18c57978 +2024-09-10 15:45:26.208807 2024-09-10 15:45:26.208822 cognd 040098923 R rec 62306ee4-dd68-444b-9e86-8f197c6e2171 +2024-09-10 15:45:26.341512 2024-09-10 15:45:26.341524 cognd 040092755 R rec 6f0b757b-e7bd-4cb8-87ad-6ea06dfd21e4 +2024-09-10 15:45:26.447959 2024-09-10 15:45:26.447965 cognd 04009104X R rec 3c19c988-e783-4716-891a-1131a98a718a +2024-09-10 15:45:26.549152 2024-09-10 15:45:26.549165 cognd 040090809 R rec e9ee2b05-ee8e-4073-aad5-4965aa8a895c +2024-09-10 15:45:26.636386 2024-09-10 15:45:26.636402 cognd 040072118 R rec acfc5094-97e0-41d7-acbd-4c35605af38e +2024-09-10 15:45:26.743851 2024-09-10 15:45:26.743867 cognd 040070328 R rec e6edf048-8218-44a6-80cb-44c4e30452bf +2024-09-10 15:45:26.861927 2024-09-10 15:45:26.861938 cognd 040060055 R rec 5a2ff372-38cd-404e-83f8-94ba5dc38945 +2024-09-10 15:45:26.993394 2024-09-10 15:45:26.993407 cognd 040054020 R rec e35c638b-ee0a-414a-9ede-5a2ddfea3737 +2024-09-10 15:45:27.095625 2024-09-10 15:45:27.09564 cognd 040048543 R rec b37a01e0-29bd-4cc4-ab1d-a4e3a805ecd3 +2024-09-10 15:45:27.220798 2024-09-10 15:45:27.220808 cognd 040035506 R rec c9db3e9e-8d4f-4d91-9a60-074cea49a0ef +2024-09-10 15:45:27.332354 2024-09-10 15:45:27.332365 cognd 04003500X R rec 7d9a631a-5e56-4891-8c0b-1ed83eaacec3 +2024-09-10 15:45:27.444792 2024-09-10 15:45:27.444797 cognd 040030962 R rec 48c61234-3382-44be-a5c7-9c527ee067b3 +2024-09-10 15:45:27.527733 2024-09-10 15:45:27.527744 cognd 040018040 R rec 7398f865-504b-4790-9a32-0f4713169c58 +2024-09-10 15:45:27.649329 2024-09-10 15:45:27.649341 cognd 040009866 R rec 03c37d2c-0050-441e-b94d-a1e8e6f7569f +2024-09-10 15:45:27.757285 2024-09-10 15:45:27.757296 cognd 040009327 R rec 932977ef-d03b-4333-8baa-0343768bd8d7 +2024-09-10 15:45:27.865885 2024-09-10 15:45:27.865895 cognd 040004570 R rec be0228fc-62a8-425d-8592-27357023f8bd +2024-09-10 15:45:27.975491 2024-09-10 15:45:27.975502 cognd 04000158X R rec 4f1a2cd4-9981-4d98-85ee-b14fa315d8bc +2024-09-10 15:45:28.09545 2024-09-10 15:45:28.095498 cognd 1336884932 R rec fa4a651e-5f9e-485f-af88-8c87ebfa6fe9 +2024-09-10 15:45:28.215038 2024-09-10 15:45:28.21505 cognd 1336884762 R rec d9f0636d-b30f-4387-9451-b071536461fa +2024-09-10 15:45:28.31338 2024-09-10 15:45:28.313411 cognd 1336876913 R rec a0f88fff-46b7-4140-91dc-c03fcd8210d1 +2024-09-10 15:45:28.418848 2024-09-10 15:45:28.418864 cognd 1336874678 R rec 3b3dd981-3d27-4b37-9219-1faf0d3517fd +2024-09-10 15:45:28.506978 2024-09-10 15:45:28.506983 cognd 1336874414 R rec 6eb47d80-d24d-4a5d-a47c-c0465aa86a87 +2024-09-10 15:45:28.570892 2024-09-10 15:45:28.570904 cognd 133686463X R rec 7efd78b0-1392-47a6-961f-d1be96c40ce7 +2024-09-10 15:45:28.666291 2024-09-10 15:45:28.666302 cognd 1336835052 R rec 2246c0ba-6b37-4627-8ab2-aaf252ec8151 +2024-09-10 15:45:28.762029 2024-09-10 15:45:28.762047 cognd 1336765410 R rec 3e0f9533-4e79-46f5-9b65-0769fc771129 +2024-09-10 15:45:28.86732 2024-09-10 15:45:28.867331 cognd 1336763213 R rec 2cee682f-18fc-465f-b777-0a36d645a425 +2024-09-10 15:45:28.986289 2024-09-10 15:45:28.986303 cognd 1336761083 R rec 250f0534-a8a8-4fa8-aa0f-a335a27c28d1 +2024-09-10 15:45:29.111176 2024-09-10 15:45:29.111187 cognd 1336749369 R rec d88082e1-2214-4683-a48e-3fc0fb9467a1 +2024-09-10 15:45:29.224529 2024-09-10 15:45:29.224535 cognd 1336591390 R rec 37bdd18f-4975-43c2-a420-4e6a952e8db8 +2024-09-10 15:45:29.31443 2024-09-10 15:45:29.314441 cognd 1336589876 R rec 3a5e086c-8f3e-4a59-b75d-05c7d2ef6129 +2024-09-10 15:45:29.420035 2024-09-10 15:45:29.420051 cognd 133658873X R rec 2b728ac8-11cd-48ea-80d2-e7d92f314a64 +2024-09-10 15:45:29.532784 2024-09-10 15:45:29.53279 cognd 1336532009 R rec 8c579c00-7b4e-4acd-bc28-b86b1f3cf3d6 +2024-09-10 15:45:29.618321 2024-09-10 15:45:29.618388 cognd 133646609X R rec 648fa9de-f249-4960-9349-3a982d2481e8 +2024-09-10 15:45:29.729078 2024-09-10 15:45:29.729104 cognd 1336401087 R rec a487c2f2-fe99-4540-a89c-1c1c6220073f +2024-09-10 15:45:29.843442 2024-09-10 15:45:29.843453 cognd 1336381698 R rec 62104f64-eb4c-4f8e-bb94-47142a0efc6f +2024-09-10 15:45:29.975368 2024-09-10 15:45:29.975379 cognd 1336261625 R rec e4fe7c23-a616-4022-84f9-eeac89d86351 +2024-09-10 15:45:30.093499 2024-09-10 15:45:30.093515 cognd 1336259086 R rec ae34ef8a-dffc-4315-8335-493221d2cf78 +2024-09-10 15:45:30.172574 2024-09-10 15:45:30.17258 cognd 1336255897 R rec fa819a73-9b56-466a-9741-1a5cbc68e4f0 +2024-09-10 15:45:30.267308 2024-09-10 15:45:30.267325 cognd 1336255692 R rec 5052e9f7-0487-4aba-9c8c-913c47f33710 +2024-09-10 15:45:30.367406 2024-09-10 15:45:30.367423 cognd 1336255609 R rec 84009efd-7cc4-4091-b00a-e038e1220992 +2024-09-10 15:45:30.479132 2024-09-10 15:45:30.479158 cognd 1336248335 R rec 4bed34b5-7038-4700-a675-813d82415c21 +2024-09-10 15:45:30.578997 2024-09-10 15:45:30.579003 cognd 1336235047 R rec 9d891ef7-cbd1-440e-b7b1-8613417219ad +2024-09-10 15:45:30.646883 2024-09-10 15:45:30.646911 cognd 1336230754 R rec 5f11363e-f7ab-47ac-ac4a-3d71e97cfee5 +2024-09-10 15:45:30.762999 2024-09-10 15:45:30.763009 cognd 1336223200 R rec 76a4a730-db56-4708-8ffd-d6c78e33b5de +2024-09-10 15:45:30.876827 2024-09-10 15:45:30.876838 cognd 1336168528 R rec 6b18ce4b-7864-454d-bfec-894a69dfaff1 +2024-09-10 15:45:30.997991 2024-09-10 15:45:30.998003 cognd 1336166509 R rec ae6ce9f6-037a-4baf-8260-7089719c1fdd +2024-09-10 15:45:31.115675 2024-09-10 15:45:31.115687 cognd 1336144033 R rec 138fb295-4dbc-4dc1-8ead-c5cc120dba86 +2024-09-10 15:45:31.240579 2024-09-10 15:45:31.24059 cognd 1336140607 R rec 9abae45e-21eb-4b85-b825-bcd61703ae5c +2024-09-10 15:45:31.367722 2024-09-10 15:45:31.367733 cognd 1336136634 R rec e55f3ead-cda1-4302-aa4a-f19c800fc0e0 +2024-09-10 15:45:31.490071 2024-09-10 15:45:31.490083 cognd 1336125306 R rec 822e0b0b-bc77-43dd-8ce5-61b16f1e2202 +2024-09-10 15:45:31.58888 2024-09-10 15:45:31.588891 cognd 1336043652 R rec ea778396-c1b7-45a0-bf24-92b8187420ba +2024-09-10 15:45:31.67982 2024-09-10 15:45:31.679832 cognd 133603906X R rec 5665ceb3-b126-4192-b3d5-83f8210d82eb +2024-09-10 15:45:31.811118 2024-09-10 15:45:31.811129 cognd 1336037571 R rec 760a1aa7-b0f6-4740-a93f-beb24faab230 +2024-09-10 15:45:31.923191 2024-09-10 15:45:31.923201 cognd 1336035544 R rec e680ff84-b851-42b4-ab01-64e5f3c211d7 +2024-09-10 15:45:32.056823 2024-09-10 15:45:32.056839 cognd 1336026758 R rec 94775b06-548f-4f35-b59f-af8a38ccb460 +2024-09-10 15:45:32.169105 2024-09-10 15:45:32.169122 cognd 1336019883 R rec 872fb76a-c6df-453a-87df-b4b7f02fddf0 +2024-09-10 15:45:32.270318 2024-09-10 15:45:32.270332 cognd 1336015497 R rec ba3597e9-bb51-4d22-9edb-0d8040229033 +2024-09-10 15:45:32.366064 2024-09-10 15:45:32.366075 cognd 1335982361 R rec 9d50b54a-6a0c-4d70-b361-e34139e8a7c5 +2024-09-10 15:45:32.481443 2024-09-10 15:45:32.481455 cognd 133595368X R rec 082a4910-2741-4a08-99c4-789ece1dcfe5 +2024-09-10 15:45:32.597367 2024-09-10 15:45:32.597378 cognd 1335904158 R rec ef0c77f2-ef19-4eaa-bcf1-24650b5dff05 +2024-09-10 15:45:32.683094 2024-09-10 15:45:32.683101 cognd 1335903623 R rec 5ca1a5ec-3b94-4757-94b7-0395072c9c08 +2024-09-10 15:45:32.776428 2024-09-10 15:45:32.77644 cognd 1335900330 R rec 12bc577d-5f8d-402e-9a01-4effab5371c3 +2024-09-10 15:45:32.93353 2024-09-10 15:45:32.933542 cognd 1335882758 R rec 69d3394d-7453-4bf2-8ff9-4c6485c0d7f3 +2024-09-10 15:45:33.033332 2024-09-10 15:45:33.033343 cognd 1335881247 R rec 19efa4ec-c681-4378-bf83-53cb9e7e6b5f +2024-09-10 15:45:33.1444 2024-09-10 15:45:33.144412 cognd 133582569X R rec 3a9819a7-1adf-4028-a401-26282e9647d0 +2024-09-10 15:45:33.260836 2024-09-10 15:45:33.26085 cognd 1335777539 R rec 579b60f4-33a1-499c-9250-1de467b003ce +2024-09-10 15:45:33.448153 2024-09-10 15:45:33.448159 cognd 1335762779 R rec 4b56edd7-6f7e-47b8-860f-fc9ebbec88e4 +2024-09-10 15:45:33.522415 2024-09-10 15:45:33.52242 cognd 1335752897 R rec 7adc3d6a-aaf8-42f8-8f9c-ef91f7b82ad6 +2024-09-10 15:45:33.589186 2024-09-10 15:45:33.589191 cognd 133575086X R rec 05ffff9a-466e-4f4b-bc4b-b37aec411aee +2024-09-10 15:45:33.65034 2024-09-10 15:45:33.650345 cognd 1335736832 R rec 5eeab6a6-64b5-4536-b563-2a8b0000e7f6 +2024-09-10 15:45:33.714005 2024-09-10 15:45:33.714011 cognd 1335733086 R rec d63e228d-6ee0-466d-8377-346e1a67ac98 +2024-09-10 15:45:33.828126 2024-09-10 15:45:33.828138 cognd 1335729577 R rec fd172b28-381d-4bc0-a66a-a8d91e062b95 +2024-09-10 15:45:33.98365 2024-09-10 15:45:33.983663 cognd 1335727701 R rec 8c105916-1a68-40c2-a869-d3a7723e5b9c +2024-09-10 15:45:34.095523 2024-09-10 15:45:34.095535 cognd 1335528539 R rec ef14c671-859f-4869-a775-91e336204b13 +2024-09-10 15:45:34.212954 2024-09-10 15:45:34.21296 cognd 1335514767 R rec afe79421-c7fd-4839-b019-be31768c6b1d +2024-09-10 15:45:34.328599 2024-09-10 15:45:34.328615 cognd 1335503307 R rec f2d33fc3-cc06-4d77-9d2f-33098022cb3f +2024-09-10 15:45:34.442253 2024-09-10 15:45:34.442263 cognd 1335484930 R rec 05d22cd2-c59f-4fc9-b51a-afa64a01d476 +2024-09-10 15:45:34.544111 2024-09-10 15:45:34.544126 cognd 1335484639 R rec eb5eb852-d3eb-440d-887c-036528134aae +2024-09-10 15:45:34.661864 2024-09-10 15:45:34.661875 cognd 1335475753 R rec 1584928c-e3be-4442-89f5-7a22bd83c1b5 +2024-09-10 15:45:34.732553 2024-09-10 15:45:34.732558 cognd 1335475575 R rec 37ade783-baef-4afc-bd1d-7b8d0a6d6b55 +2024-09-10 15:45:34.812459 2024-09-10 15:45:34.812471 cognd 1335348379 R rec 79897b60-b942-412b-b4ee-194350740324 +2024-09-10 15:45:34.919646 2024-09-10 15:45:34.919656 cognd 1335334955 R rec 67c82bcd-20ba-4351-8d7c-1cdba07971c6 +2024-09-10 15:45:35.020455 2024-09-10 15:45:35.020466 cognd 1335332510 R rec ee0957dc-50ab-45f3-be35-d2e62ba96210 +2024-09-10 15:45:35.131238 2024-09-10 15:45:35.13125 cognd 1335327541 R rec c6cfd0e1-8a3e-4e00-9e4d-b331e28b6b8c +2024-09-10 15:45:35.261662 2024-09-10 15:45:35.261673 cognd 1335263977 R rec b168fe36-58bb-4355-859c-c8dca1e0766f +2024-09-10 15:45:35.367389 2024-09-10 15:45:35.367403 cognd 1335255869 R rec df299861-da8e-4fbc-bc9a-0473b2984742 +2024-09-10 15:45:35.497031 2024-09-10 15:45:35.497045 cognd 1335237232 R rec e3f5ff2c-a6c8-4168-a89d-e2afc0d5056f +2024-09-10 15:45:35.600911 2024-09-10 15:45:35.600925 cognd 1335237046 R rec 556181ae-4d17-434d-934f-a5cdfcb5367b +2024-09-10 15:45:35.720875 2024-09-10 15:45:35.72088 cognd 133523490X R rec 653fe2f3-c220-465f-b67e-4c692d6ab118 +2024-09-10 15:45:35.786675 2024-09-10 15:45:35.786689 cognd 1335228187 R rec 1c07eb2c-352e-4f2d-80b3-5d11165fc11f +2024-09-10 15:45:35.897961 2024-09-10 15:45:35.897977 cognd 1335212299 R rec 4efcb062-8757-4192-863b-0f478aa8ae6f +2024-09-10 15:45:36.007719 2024-09-10 15:45:36.007731 cognd 133521075X R rec 85cccccd-2f81-4b15-a574-e42efb7d3a4f +2024-09-10 15:45:36.107583 2024-09-10 15:45:36.107594 cognd 1335201068 R rec 72419f49-4b79-4303-ac6e-5fe4dccea02d +2024-09-10 15:45:36.230058 2024-09-10 15:45:36.23007 cognd 1335134549 R rec 6c9f8f1b-3019-41e3-9a6a-ca82ac59e152 +2024-09-10 15:45:36.37533 2024-09-10 15:45:36.375347 cognd 1335054405 R rec 40633899-46a8-43c5-a1fd-8733f4609f65 +2024-09-10 15:45:36.480252 2024-09-10 15:45:36.480264 cognd 1334935475 R rec fc75da1b-96a9-4191-9605-1d1b55aa0188 +2024-09-10 15:45:36.594442 2024-09-10 15:45:36.594453 cognd 1334906815 R rec b8d9268e-c43a-47c3-bd37-2e4d7d09ea2e +2024-09-10 15:45:36.691909 2024-09-10 15:45:36.69192 cognd 1334879079 R rec b82d71d9-c67f-4624-90b1-0dd641d66c2d +2024-09-10 15:45:36.774673 2024-09-10 15:45:36.774678 cognd 1334810524 R rec 1c248ce4-c0a5-44ab-ac68-b277f16024f4 +2024-09-10 15:45:36.851808 2024-09-10 15:45:36.851819 cognd 1334804893 R rec 6d29e0f3-0c7a-4c4d-840d-2ce6df963e87 +2024-09-10 15:45:36.956879 2024-09-10 15:45:36.95689 cognd 1334804699 R rec f0192ba6-c335-411c-8528-ef30bade7706 +2024-09-10 15:45:37.056031 2024-09-10 15:45:37.056042 cognd 1334804281 R rec ade60c75-3db2-4c0a-8122-9542a509ba88 +2024-09-10 15:45:37.161012 2024-09-10 15:45:37.161026 cognd 1334795533 R rec edf75a8b-5b1f-4bd6-a6e2-0e4d23ac8553 +2024-09-10 15:45:37.26952 2024-09-10 15:45:37.269535 cognd 1334784639 R rec 3dc4caf8-6280-4097-869c-da5202e2b8d2 +2024-09-10 15:45:37.397817 2024-09-10 15:45:37.397831 cognd 1334676844 R rec 5e52614d-d37a-470b-a32b-540a4673ed80 +2024-09-10 15:45:37.508387 2024-09-10 15:45:37.508399 cognd 1334652074 R rec d8c854a2-aee3-4286-a357-a1f14c9683f8 +2024-09-10 15:45:37.632877 2024-09-10 15:45:37.632888 cognd 1334205639 R rec 0cd2dd72-1ede-4e28-a15d-c57313df899c +2024-09-10 15:45:37.729868 2024-09-10 15:45:37.729879 cognd 1333849850 R rec 51001906-1066-479d-a3ff-d4009659bde8 +2024-09-10 15:45:37.840396 2024-09-10 15:45:37.840407 cognd 1333570651 R rec 1eb32e8f-74bf-4663-b781-24664fd983ea +2024-09-10 15:45:37.927055 2024-09-10 15:45:37.927066 cognd 1333353421 R rec ac6da80f-9be8-4d96-a5d1-28e18bfec846 +2024-09-10 15:45:38.044657 2024-09-10 15:45:38.04467 cognd 1333321201 R rec 16fce310-721d-4e89-b891-8583783daf44 +2024-09-10 15:45:38.144918 2024-09-10 15:45:38.144928 cognd 1333260148 R rec dea1ca80-e2c1-43f4-af4a-d368bfc551a7 +2024-09-10 15:45:38.262521 2024-09-10 15:45:38.262538 cognd 1333126433 R rec b1dd7bb7-7744-416c-a50c-bcfde7302932 +2024-09-10 15:45:38.365327 2024-09-10 15:45:38.365343 cognd 1333115482 R rec ab417a65-bcb9-4790-b338-a04f8dfd0d2c +2024-09-10 15:45:38.470375 2024-09-10 15:45:38.470388 cognd 1332860451 R rec a5c56ab2-a186-4276-96df-2326edcb7b22 +2024-09-10 15:45:38.583362 2024-09-10 15:45:38.583379 cognd 1332767702 R rec e0a3a580-9973-4cc4-a968-522da2b1c566 +2024-09-10 15:45:38.693843 2024-09-10 15:45:38.693858 cognd 1332765785 R rec 8adaf915-4287-4e9d-85c6-7251dcc76556 +2024-09-10 15:45:38.802347 2024-09-10 15:45:38.80236 cognd 1332734316 R rec e3ba78be-be27-43bf-89fa-9923944f0ca4 +2024-09-10 15:45:38.873864 2024-09-10 15:45:38.873869 cognd 1332672701 R rec 285d0627-9203-4c6d-b572-2a2d5d79d912 +2024-09-10 15:45:38.960329 2024-09-10 15:45:38.960344 cognd 1332661327 R rec 3bc3668d-378a-49de-ad1d-2cd71e0ee0ac +2024-09-10 15:45:39.076871 2024-09-10 15:45:39.076926 cognd 1332426336 R rec 321cf473-de67-4232-ba2d-0ab17a2c289e +2024-09-10 15:45:39.215225 2024-09-10 15:45:39.215239 cognd 1332101607 R rec 35afe476-e19f-460d-a9d1-fc91303ae538 +2024-09-10 15:45:39.328675 2024-09-10 15:45:39.328691 cognd 1331864321 R rec b600037b-7916-45d4-809f-c2b1af1c91c6 +2024-09-10 15:45:39.434833 2024-09-10 15:45:39.434845 cognd 1331496861 R rec 1d7a7c31-95e2-45b9-b7cc-b1ce4e8db00f +2024-09-10 15:45:39.552557 2024-09-10 15:45:39.552569 cognd 1331098114 R rec f1ff22cf-6e56-4ea8-9186-ef51b63b57e4 +2024-09-10 15:45:39.661537 2024-09-10 15:45:39.66155 cognd 133099051X R rec e26549e9-7512-4032-b4bb-78d52df4a085 +2024-09-10 15:45:39.77284 2024-09-10 15:45:39.772851 cognd 1330990056 R rec f5d36b93-c03a-42b9-8e36-d608834df677 +2024-09-10 15:45:39.875514 2024-09-10 15:45:39.87552 cognd 1330988728 R rec 42279cea-bab4-4458-89bf-eacf69926635 +2024-09-10 15:45:39.94089 2024-09-10 15:45:39.9409 cognd 1330985524 R rec 9545f43d-be76-420a-baf4-e2b1cb175de9 +2024-09-10 15:45:40.031325 2024-09-10 15:45:40.03134 cognd 1330588517 R rec 55bb44ae-8ebc-4b5b-9cf3-d355dd20874e +2024-09-10 15:45:40.15692 2024-09-10 15:45:40.15694 cognd 1330408837 R rec f76fe705-e132-4af2-9eb4-3e9d54ba5c1a +2024-09-10 15:45:40.279142 2024-09-10 15:45:40.279153 cognd 1330360036 R rec 2e7c63d7-bc8d-407b-863f-f6c3b38dae39 +2024-09-10 15:45:40.386458 2024-09-10 15:45:40.386469 cognd 1330201647 R rec d90d4e26-f36d-45f2-97de-93918e837e7f +2024-09-10 15:45:40.49685 2024-09-10 15:45:40.496868 cognd 1330126599 R rec 455f8b6f-774c-41f6-82b9-63863a4ed274 +2024-09-10 15:45:40.602117 2024-09-10 15:45:40.602131 cognd 132940422X R rec 156b0fbc-4cff-4ccf-9a01-49e9749ad778 +2024-09-10 15:45:40.709823 2024-09-10 15:45:40.709842 cognd 1329376129 R rec aaf1e597-1a82-4b8c-b004-c29b6ab15f10 +2024-09-10 15:45:40.848338 2024-09-10 15:45:40.84835 cognd 132935639X R rec cea3622a-de3b-4d7e-a53a-86c8fa400cdf +2024-09-10 15:45:40.945205 2024-09-10 15:45:40.945216 cognd 1329174003 R rec 057e1d9b-7bce-4103-81c4-f3a31c1d23f3 +2024-09-10 15:45:41.066608 2024-09-10 15:45:41.06662 cognd 1329171675 R rec 26629a16-22e3-4fce-828c-87ca11329f6e +2024-09-10 15:45:41.163926 2024-09-10 15:45:41.163942 cognd 1328712400 R rec 50382765-4100-4328-b159-71f1148af076 +2024-09-10 15:45:41.274292 2024-09-10 15:45:41.274303 cognd 1327991349 R rec b170abf9-7c10-4b39-8480-49ace4297fbe +2024-09-10 15:45:41.398222 2024-09-10 15:45:41.398233 cognd 1327910268 R rec 8f3d256d-5da2-4973-9bb6-42cd14f03d66 +2024-09-10 15:45:41.506777 2024-09-10 15:45:41.506788 cognd 1327458667 R rec 29511b42-ec3d-46c8-aaaa-17c7c52ab48d +2024-09-10 15:45:41.604651 2024-09-10 15:45:41.604662 cognd 1326349392 R rec 385d243f-74b8-4062-ad52-0ff1b3fcdf0c +2024-09-10 15:45:41.720796 2024-09-10 15:45:41.720813 cognd 132585283X R rec bc8d1d58-98ff-4f1a-ad09-2f8a6f5d1824 +2024-09-10 15:45:41.829124 2024-09-10 15:45:41.82914 cognd 1325643645 R rec 8fd38b31-2d50-4edf-9cf2-61342ef35913 +2024-09-10 15:45:41.935561 2024-09-10 15:45:41.935568 cognd 1325061557 R rec 24723484-eb0b-4d09-b18c-e2463ae30a96 +2024-09-10 15:45:42.014885 2024-09-10 15:45:42.014896 cognd 1324688629 R rec a98950a3-e8aa-4735-8fce-5d7a03d8dd53 +2024-09-10 15:45:42.107807 2024-09-10 15:45:42.107824 cognd 1324590173 R rec db84301f-6477-42ac-a518-3173016e9c3f +2024-09-10 15:45:42.21548 2024-09-10 15:45:42.215497 cognd 1324101318 R rec 90e712ee-a3f2-4f44-9c29-1f37fbf89a22 +2024-09-10 15:45:42.3259 2024-09-10 15:45:42.325987 cognd 1324092424 R rec cc32e6f9-0960-4abb-b587-eec2b3aec8b4 +2024-09-10 15:45:42.443464 2024-09-10 15:45:42.443475 cognd 1323913084 R rec 3e77efc2-7eeb-4399-a8a6-216329449f59 +2024-09-10 15:45:42.552396 2024-09-10 15:45:42.552407 cognd 1323835148 R rec 8e3e3118-090d-4a98-9b9e-a2b7e016e39d +2024-09-10 15:45:42.662244 2024-09-10 15:45:42.662255 cognd 1323832262 R rec 9f36c8cb-048b-481f-83da-e74dc0acce98 +2024-09-10 15:45:42.764341 2024-09-10 15:45:42.764357 cognd 1323804129 R rec e4c7020c-7cfd-4899-9f6f-684e237a93ad +2024-09-10 15:45:42.874134 2024-09-10 15:45:42.874144 cognd 1323769536 R rec bbfd2ff2-0849-42a5-8e8a-0e4f8d3148a0 +2024-09-10 15:45:42.982381 2024-09-10 15:45:42.982386 cognd 1323705910 R rec 51ae4bbb-00c9-44d9-9a08-4b8e6cad45ce +2024-09-10 15:45:43.04649 2024-09-10 15:45:43.046501 cognd 1323590102 R rec 3e2c1fc2-363e-429c-ae37-cf78d041222b +2024-09-10 15:45:43.141807 2024-09-10 15:45:43.141822 cognd 1323303669 R rec e1eaa21b-1a75-4cbe-a136-4dd2dbb16cb6 +2024-09-10 15:45:43.258398 2024-09-10 15:45:43.258408 cognd 1323303103 R rec 27375864-f17e-4eb6-bc66-d7112a826d88 +2024-09-10 15:45:43.372531 2024-09-10 15:45:43.372547 cognd 1323069380 R rec 27e2780c-4afa-41fb-9904-3d22c319c95e +2024-09-10 15:45:43.489141 2024-09-10 15:45:43.489156 cognd 1322662401 R rec 4d5cde9a-c712-4e17-b67c-6dd3f7932b6f +2024-09-10 15:45:43.599673 2024-09-10 15:45:43.599689 cognd 1322661030 R rec ea4622ab-7dca-4749-99bf-c2c699e7a325 +2024-09-10 15:45:43.723024 2024-09-10 15:45:43.723042 cognd 1322508801 R rec 6727cb73-eada-4010-acfc-afeceb860414 +2024-09-10 15:45:43.827215 2024-09-10 15:45:43.82723 cognd 1322264716 R rec 23f5f4e5-861d-44b1-baf7-3f9cb64b5c38 +2024-09-10 15:45:43.943056 2024-09-10 15:45:43.943067 cognd 1321257988 R rec 0c9c6b18-8f28-425d-a6b8-dedf0109e5d9 +2024-09-10 15:45:44.04714 2024-09-10 15:45:44.047146 cognd 1321125623 R rec 4362f558-4cbd-49d6-9be7-9727c757ad88 +2024-09-10 15:45:44.166558 2024-09-10 15:45:44.166571 cognd 1321125577 R rec 1aa8639c-b2b7-40b6-ae3f-32d0134d5a4f +2024-09-10 15:45:44.286499 2024-09-10 15:45:44.286518 cognd 1319483321 R rec 8d86b147-a627-458b-bfac-883580c71446 +2024-09-10 15:45:44.378632 2024-09-10 15:45:44.378644 cognd 1319390072 R rec 7946ce4e-0801-4adc-855a-89fb7305f340 +2024-09-10 15:45:44.489651 2024-09-10 15:45:44.489667 cognd 1318715598 R rec 4ef669a3-ef4a-4a71-bc61-7e192f5441a5 +2024-09-10 15:45:44.591542 2024-09-10 15:45:44.591554 cognd 1318430968 R rec 2f5e82a4-64db-4f90-b404-5058de38436b +2024-09-10 15:45:44.696653 2024-09-10 15:45:44.696665 cognd 131634410X R rec c664e047-313e-4b89-abe0-a81b9f052b9c +2024-09-10 15:45:44.798056 2024-09-10 15:45:44.798067 cognd 1315679264 R rec d778fc31-7777-43a6-95c9-45851e2494f9 +2024-09-10 15:45:44.911268 2024-09-10 15:45:44.911314 cognd 1315456125 R rec 813e8d63-51f8-4ad7-b79f-7a90f07ad19c +2024-09-10 15:45:45.010136 2024-09-10 15:45:45.010152 cognd 1315226715 R rec 1779d220-2f84-49c1-ae5a-03d34b7e5b99 +2024-09-10 15:45:45.086862 2024-09-10 15:45:45.086867 cognd 1315045133 R rec ff9e7786-d1ba-4660-809d-a2366a81eb1f +2024-09-10 15:45:45.17459 2024-09-10 15:45:45.174603 cognd 131453260X R rec ab8a44dd-a8b4-4dc7-ba2d-b69bf09c40ba +2024-09-10 15:45:45.292151 2024-09-10 15:45:45.292179 cognd 1314347403 R rec d1dc08a2-c753-4e99-84a6-21f2fe55dd33 +2024-09-10 15:45:45.410416 2024-09-10 15:45:45.410432 cognd 1314019333 R rec e4ea8eb5-75af-407d-959e-3dff6fffaa50 +2024-09-10 15:45:45.534014 2024-09-10 15:45:45.534026 cognd 1312507497 R rec e080d7e4-1f14-4fbe-86dd-a12e6ef2d976 +2024-09-10 15:45:45.64751 2024-09-10 15:45:45.647526 cognd 1312506059 R rec cf7b7962-022e-4fe2-85a0-5f09df6ab7df +2024-09-10 15:45:45.753398 2024-09-10 15:45:45.753413 cognd 1311262989 R rec b27f2db8-4b4c-4ab7-80b2-dc3a82381090 +2024-09-10 15:45:45.861014 2024-09-10 15:45:45.861025 cognd 1311025847 R rec f5444ed4-0547-4b38-a744-41325e2a47fa +2024-09-10 15:45:45.984214 2024-09-10 15:45:45.984219 cognd 1310673683 R rec e5d3713d-7198-4230-a11c-bf9a270bded5 +2024-09-10 15:45:46.068578 2024-09-10 15:45:46.06859 cognd 1309822123 R rec 78d7e168-4e2e-4e34-87a4-c2ea4567fd5e +2024-09-10 15:45:46.154347 2024-09-10 15:45:46.154358 cognd 1308550189 R rec dbbc8dcb-6e47-4d7f-99c1-4d12038e0264 +2024-09-10 15:45:46.247998 2024-09-10 15:45:46.248012 cognd 1305189876 R rec 4c37da44-eaff-4646-ad70-80322d0f9007 +2024-09-10 15:45:46.345769 2024-09-10 15:45:46.34578 cognd 1304711749 R rec c2be12f0-6b6d-4977-9af5-9a9605fcccf5 +2024-09-10 15:45:46.453871 2024-09-10 15:45:46.453883 cognd 1304458741 R rec 41488a50-f9b5-4c92-a167-e90fc3d53b14 +2024-09-10 15:45:46.567047 2024-09-10 15:45:46.567058 cognd 1303066408 R rec e16061e3-0e87-4abb-88f4-9248cd692286 +2024-09-10 15:45:46.673904 2024-09-10 15:45:46.673916 cognd 1302981390 R rec 51e154ce-1332-4392-b0b5-4d880cc24590 +2024-09-10 15:45:46.792299 2024-09-10 15:45:46.792312 cognd 1302782517 R rec e846cbb0-d26e-44ab-8dc4-716c8093aace +2024-09-10 15:45:46.89346 2024-09-10 15:45:46.893472 cognd 1302782274 R rec b4df90b5-e9fa-4a5b-9ff0-b7604b6eda61 +2024-09-10 15:45:47.003657 2024-09-10 15:45:47.003668 cognd 1302781162 R rec 830c61d4-f869-4f00-b0d5-36f55db4d2ce +2024-09-10 15:45:47.105493 2024-09-10 15:45:47.105507 cognd 1302592122 R rec dcfca60e-30f0-4340-8450-53782ca71e11 +2024-09-10 15:45:47.177165 2024-09-10 15:45:47.17717 cognd 1298190746 R rec 99ffdec1-b246-4598-8e00-3fd1fb794c83 +2024-09-10 15:45:47.257436 2024-09-10 15:45:47.257451 cognd 1296860906 R rec 0d33dc02-58c8-4c57-ac20-d2b1b7223de4 +2024-09-10 15:45:47.359583 2024-09-10 15:45:47.359598 cognd 1296369811 R rec db19ea2e-1e33-426d-8894-43ae49368f96 +2024-09-10 15:45:47.457517 2024-09-10 15:45:47.457537 cognd 1295208512 R rec f12593c8-2654-47d6-912e-fc84212a8743 +2024-09-10 15:45:47.594425 2024-09-10 15:45:47.594439 cognd 1294996460 R rec 3785db28-def6-41d1-826d-3ef912dfad8a +2024-09-10 15:45:47.700557 2024-09-10 15:45:47.700574 cognd 1294772627 R rec 2b2a24c1-a045-4e1f-8c26-cd1cd462dd6b +2024-09-10 15:45:47.818223 2024-09-10 15:45:47.818234 cognd 129400283X R rec ec6fb205-98b8-4f1b-b7dc-ae14bc465d6b +2024-09-10 15:45:47.924774 2024-09-10 15:45:47.92479 cognd 1292845384 R rec c8bb32df-f0e2-4090-a8cb-38e4c31380ae +2024-09-10 15:45:48.062285 2024-09-10 15:45:48.062296 cognd 1286766397 R rec 529ecb68-bcd4-4198-ab99-c007028b61a1 +2024-09-10 15:45:48.170097 2024-09-10 15:45:48.170102 cognd 1286227941 R rec 2f0c041a-64b4-49f2-97ad-ee43698cd084 +2024-09-10 15:45:48.26541 2024-09-10 15:45:48.26542 cognd 1286106745 R rec 3eefc2b4-aa7b-42a9-aa18-419466056442 +2024-09-10 15:45:48.364423 2024-09-10 15:45:48.364429 cognd 1285304527 R rec 2d04fc6e-df82-4361-a42e-2c266c245e37 +2024-09-10 15:45:48.471227 2024-09-10 15:45:48.471238 cognd 1284854744 R rec a6042476-5065-4646-a1cd-b75bff827871 +2024-09-10 15:45:48.584422 2024-09-10 15:45:48.584432 cognd 1284760456 R rec 98d8796a-1366-4801-a887-c27736ec4182 +2024-09-10 15:45:48.686089 2024-09-10 15:45:48.686105 cognd 127990271X R rec a109a6f1-c550-45e3-874d-e3d3de6cd529 +2024-09-10 15:45:48.782354 2024-09-10 15:45:48.78237 cognd 1279534311 R rec 176e52d2-d7ba-4c5d-9d91-59f8a1080ca1 +2024-09-10 15:45:48.877386 2024-09-10 15:45:48.877397 cognd 1278300821 R rec 4dcb763d-6b35-4b60-860c-2fac29965b4e +2024-09-10 15:45:48.982423 2024-09-10 15:45:48.982434 cognd 1275762158 R rec 0fec609b-9364-4b91-b01c-99a5cfdfd064 +2024-09-10 15:45:49.122595 2024-09-10 15:45:49.1226 cognd 1275016057 R rec d7a95f74-c3cc-428b-b7bc-84146a06b301 +2024-09-10 15:45:49.220475 2024-09-10 15:45:49.220481 cognd 1274846765 R rec e90f7ef7-d287-4f7b-8186-147c133557a6 +2024-09-10 15:45:49.290285 2024-09-10 15:45:49.290296 cognd 1272439836 R rec e92bb2d7-87fd-4476-a9e9-9b300b48d7c5 +2024-09-10 15:45:49.389918 2024-09-10 15:45:49.389929 cognd 1272436322 R rec ae8d48af-7dc1-4ee8-a423-02e154e5fa61 +2024-09-10 15:45:49.488071 2024-09-10 15:45:49.488082 cognd 127243124X R rec 903cba82-797f-47f8-b318-f04626573f52 +2024-09-10 15:45:49.585714 2024-09-10 15:45:49.585728 cognd 1272429997 R rec 298d155d-f9da-4acb-a742-93bc61e8c3aa +2024-09-10 15:45:49.690303 2024-09-10 15:45:49.690313 cognd 1272339785 R rec 79b006d5-5913-4b8f-a4f5-89d3102f08b6 +2024-09-10 15:45:49.790466 2024-09-10 15:45:49.790477 cognd 1272271439 R rec 870ca91c-90ee-438e-b75c-2d5317e7564a +2024-09-10 15:45:49.894789 2024-09-10 15:45:49.8948 cognd 1272267792 R rec 233d3050-2fe7-4d07-9363-c79243f9748a +2024-09-10 15:45:50.011947 2024-09-10 15:45:50.011964 cognd 1272258963 R rec ee961468-3e79-4f53-aed6-52a22875fb45 +2024-09-10 15:45:50.086757 2024-09-10 15:45:50.086769 cognd 1271905698 R rec e60b180f-7c3c-474b-84cf-9160b6670350 +2024-09-10 15:45:50.200672 2024-09-10 15:45:50.200683 cognd 1271895765 R rec 52bb7cd4-ee8c-4dcc-9225-e0829661fffe +2024-09-10 15:45:50.29489 2024-09-10 15:45:50.294902 cognd 127188898X R rec a50d50fe-c2bf-4265-aa09-6c91b686a3fb +2024-09-10 15:45:50.397138 2024-09-10 15:45:50.397153 cognd 1271822776 R rec 23876fd8-207c-4104-b4f0-1a2b3cf577cb +2024-09-10 15:45:50.51999 2024-09-10 15:45:50.520001 cognd 1271808897 R rec e1bc0424-357f-4082-bc9e-12893d1d4cdc +2024-09-10 15:45:50.62334 2024-09-10 15:45:50.623356 cognd 1271790165 R rec 4bb01985-db5d-42d3-b31a-7c0a776f626f +2024-09-10 15:45:50.74222 2024-09-10 15:45:50.742233 cognd 1271715899 R rec ff4bd44c-c61e-4641-a340-3fd47d23ecb8 +2024-09-10 15:45:50.851784 2024-09-10 15:45:50.851795 cognd 1271381702 R rec ca6b0bad-c4f7-460e-8116-b4c10d5c88c1 +2024-09-10 15:45:50.967074 2024-09-10 15:45:50.967089 cognd 1270556959 R rec c7f23581-7d81-4f9f-b9e9-9b5e8976c0ed +2024-09-10 15:45:51.080841 2024-09-10 15:45:51.080857 cognd 1268246964 R rec 112e6e4b-1521-4400-b88f-a15241dffc49 +2024-09-10 15:45:51.196278 2024-09-10 15:45:51.19629 cognd 126750370X R rec 9a279ab2-3a7a-4538-bc28-1e98d8810603 +2024-09-10 15:45:51.301919 2024-09-10 15:45:51.301925 cognd 1267495847 R rec cd6b404e-6816-4f61-bcdb-62ccfe068e7f +2024-09-10 15:45:51.381009 2024-09-10 15:45:51.381021 cognd 1267493216 R rec 4600c6e1-4f29-4014-b39d-a9ab74f08c1f +2024-09-10 15:45:51.493732 2024-09-10 15:45:51.493744 cognd 1266330917 R rec f484b877-289a-453a-a996-ca21aea87ea1 +2024-09-10 15:45:51.597123 2024-09-10 15:45:51.59714 cognd 1265612927 R rec d38166d6-ba8e-488a-9bcc-c5d9e1985e15 +2024-09-10 15:45:51.705277 2024-09-10 15:45:51.705288 cognd 1265218374 R rec 561945e0-b98d-4992-8687-b2cde081f503 +2024-09-10 15:45:51.811385 2024-09-10 15:45:51.811391 cognd 1261254937 R rec a1b5dfcc-a0ac-4dcd-8dc4-2d55b149a3dd +2024-09-10 15:45:51.938635 2024-09-10 15:45:51.938646 cognd 1259273660 R rec 70d69f3c-def3-4465-8a06-c2928cca68f0 +2024-09-10 15:45:52.051358 2024-09-10 15:45:52.051363 cognd 1257092030 R rec c310ebf2-7eef-46d4-9a30-acfbfe62771c +2024-09-10 15:45:52.150685 2024-09-10 15:45:52.150708 cognd 1256073210 R rec 6cd9e33b-16d5-4b52-9861-ad06df66abe6 +2024-09-10 15:45:52.250836 2024-09-10 15:45:52.250852 cognd 1256072893 R rec aa1a93ae-1b93-4029-ae68-44dd81cdca7a +2024-09-10 15:45:52.358447 2024-09-10 15:45:52.358452 cognd 1254291482 R rec 456c45d9-08d2-46f8-bf66-01110b9b6cf5 +2024-09-10 15:45:52.437094 2024-09-10 15:45:52.437105 cognd 1251426239 R rec 4a598803-84d5-476e-8a80-65dc8e499303 +2024-09-10 15:45:52.549952 2024-09-10 15:45:52.549966 cognd 1248276604 R rec 0d6da175-2813-48f5-874b-3f660b961302 +2024-09-10 15:45:52.664026 2024-09-10 15:45:52.664037 cognd 1245158511 R rec da02636e-9ccc-4ea9-b650-703971bd0e69 +2024-09-10 15:45:52.791267 2024-09-10 15:45:52.791281 cognd 1242560637 R rec a0e8a1b3-65ef-45f6-ba3c-2bcfa03bee5a +2024-09-10 15:45:52.899992 2024-09-10 15:45:52.899997 cognd 124129562X R rec 5035277c-ec38-4d9b-839b-fdc940dde4ec +2024-09-10 15:45:53.013781 2024-09-10 15:45:53.013792 cognd 1239152302 R rec 8823a4f7-8eba-4a93-8045-97a87dc18de2 +2024-09-10 15:45:53.133296 2024-09-10 15:45:53.133312 cognd 1237145422 R rec 70967b42-3ad9-4aae-a53e-df32d76b3137 +2024-09-10 15:45:53.256503 2024-09-10 15:45:53.256518 cognd 1232354244 R rec bb923f69-2ca8-4182-9781-efdcf3f21dac +2024-09-10 15:45:53.361716 2024-09-10 15:45:53.361722 cognd 1229013695 R rec c3c9247e-2ddc-41cb-b31a-49f9fd4c5216 +2024-09-10 15:45:53.440169 2024-09-10 15:45:53.440181 cognd 1225001064 R rec f79b8aa0-8a02-44d1-a69c-1e8aada7a57d +2024-09-10 15:45:53.548536 2024-09-10 15:45:53.54855 cognd 1217543678 R rec c689fd02-513f-4d8a-a321-5a0c0e94a2b3 +2024-09-10 15:45:53.648983 2024-09-10 15:45:53.648996 cognd 1213474337 R rec 9b7011d8-f7c9-436e-a166-bcb845eba8a9 +2024-09-10 15:45:53.747659 2024-09-10 15:45:53.747677 cognd 1213276500 R rec 8bf21a2a-1421-4d78-93d6-e5eff15ef143 +2024-09-10 15:45:53.872216 2024-09-10 15:45:53.872226 cognd 1211610659 R rec 083891fa-864f-4cab-843c-7f555d02a029 +2024-09-10 15:45:54.057118 2024-09-10 15:45:54.057129 cognd 1206111984 R rec a9c38e48-a501-481f-b49a-6b22aaecca64 +2024-09-10 15:45:54.16834 2024-09-10 15:45:54.168351 cognd 1205504184 R rec 33dd553f-733e-415c-9b59-83c832e5bf5b +2024-09-10 15:45:54.261121 2024-09-10 15:45:54.261132 cognd 1204138915 R rec 1b52082f-9677-49f8-b35e-081619853b69 +2024-09-10 15:45:54.380507 2024-09-10 15:45:54.380519 cognd 120246193X R rec cf5042c4-a428-4c73-a483-19913215a502 +2024-09-10 15:45:54.452466 2024-09-10 15:45:54.452472 cognd 1201306663 R rec 7cefde74-0338-4386-be7d-0a0eca35bce0 +2024-09-10 15:45:54.537838 2024-09-10 15:45:54.537849 cognd 1197813853 R rec f75780ba-6382-4751-8bd6-538774720857 +2024-09-10 15:45:54.64837 2024-09-10 15:45:54.648386 cognd 1197084231 R rec 798904fa-1e35-4f7a-80d4-3892d18484da +2024-09-10 15:45:54.770539 2024-09-10 15:45:54.77055 cognd 1196153183 R rec 63c3a780-3d8c-4fa3-879c-53b53b5bda16 +2024-09-10 15:45:54.87421 2024-09-10 15:45:54.874226 cognd 1195721455 R rec 8cd2ae01-e6f1-4e2d-bfe5-4abdf5ae3031 +2024-09-10 15:45:55.012902 2024-09-10 15:45:55.012912 cognd 1195720424 R rec 913290c8-c041-4a92-9673-72dba7e077d3 +2024-09-10 15:45:55.119111 2024-09-10 15:45:55.119127 cognd 1192998324 R rec da28efe2-abf9-4ac3-afab-2098d2a6569a +2024-09-10 15:45:55.230174 2024-09-10 15:45:55.230186 cognd 119298918X R rec 3edfc3a4-94cb-409d-bc4c-382f02d91a26 +2024-09-10 15:45:55.352736 2024-09-10 15:45:55.352745 cognd 1191213307 R rec 132fc621-22d4-4eb1-b3a1-2bfceb0d4698 +2024-09-10 15:45:55.445915 2024-09-10 15:45:55.445921 cognd 1190744996 R rec e45cb02a-b9ab-41ee-bed5-11dc54342162 +2024-09-10 15:45:55.516521 2024-09-10 15:45:55.516538 cognd 1189251949 R rec 05cb4522-bd11-4189-8ae2-24d3dee5548f +2024-09-10 15:45:55.618328 2024-09-10 15:45:55.618344 cognd 1181270391 R rec 07507f87-1117-45f4-a572-db71b0b5ea5a +2024-09-10 15:45:55.717053 2024-09-10 15:45:55.717074 cognd 1177428253 R rec c69386e3-d30b-48f5-bcb7-ae63ed0bacb3 +2024-09-10 15:45:55.824453 2024-09-10 15:45:55.824468 cognd 1172931720 R rec 6ea790cf-4866-4dbf-878b-bcf7c8298215 +2024-09-10 15:45:55.933265 2024-09-10 15:45:55.933276 cognd 1164102931 R rec 3ab57d16-4ab5-4a8e-9ee9-7e2761bd2fa5 +2024-09-10 15:45:56.039371 2024-09-10 15:45:56.039382 cognd 1162074078 R rec ca224607-484f-49c0-bdc8-d8e7bb22353a +2024-09-10 15:45:56.144088 2024-09-10 15:45:56.1441 cognd 1162070234 R rec c82c63d3-061a-4b94-93a8-eaaca36bf74b +2024-09-10 15:45:56.242458 2024-09-10 15:45:56.242473 cognd 1162069848 R rec 12143c5a-aea8-4009-b972-d162088d8757 +2024-09-10 15:45:56.338416 2024-09-10 15:45:56.338427 cognd 1162069279 R rec ac783692-e8c5-4cc0-8735-0d49a32ae929 +2024-09-10 15:45:56.441621 2024-09-10 15:45:56.441631 cognd 1161370048 R rec 0947e28c-cc33-4aa7-8b29-d3f7adeed79d +2024-09-10 15:45:56.511192 2024-09-10 15:45:56.511195 cognd 1160916276 R rec 2573d267-7a6d-43bb-9cc2-df6217786a05 +2024-09-10 15:45:56.597274 2024-09-10 15:45:56.59728 cognd 1160040834 R rec 7fa9d919-4105-4584-ac37-f8ce2cac9c9a +2024-09-10 15:45:56.709317 2024-09-10 15:45:56.709329 cognd 1159933278 R rec 54ad5837-538e-4e1c-88a1-3c4903d818ff +2024-09-10 15:45:56.801758 2024-09-10 15:45:56.801774 cognd 1159933006 R rec b18b0b65-159e-454e-89eb-46d41f5e18a8 +2024-09-10 15:45:56.904583 2024-09-10 15:45:56.904596 cognd 115992869X R rec 573cc6d5-5c27-4b48-9dc5-1af1397f9d29 +2024-09-10 15:45:56.999771 2024-09-10 15:45:56.999783 cognd 1159920850 R rec 1ece5d60-5a0f-4dc4-9e14-2b34957e68b4 +2024-09-10 15:45:57.116148 2024-09-10 15:45:57.116165 cognd 115992063X R rec 832bb888-30d9-46c8-a13a-906535339c0e +2024-09-10 15:45:57.217781 2024-09-10 15:45:57.217797 cognd 1159919828 R rec d0df6201-14b3-40e2-8ece-bc274f8491a9 +2024-09-10 15:45:57.336641 2024-09-10 15:45:57.336652 cognd 1159716978 R rec 5182a076-b985-4d6d-9ba2-fed5809f98cf +2024-09-10 15:45:57.427998 2024-09-10 15:45:57.428014 cognd 1159673381 R rec 830849e9-b5f5-4b01-a2e9-8ad99ee8e330 +2024-09-10 15:45:57.516456 2024-09-10 15:45:57.516461 cognd 1159652686 R rec 98c47abc-a9f4-4404-a0a0-8567ed10960c +2024-09-10 15:45:57.578993 2024-09-10 15:45:57.579005 cognd 1158529643 R rec 1f4cc488-374e-4941-81db-0a2ef382efba +2024-09-10 15:45:57.681631 2024-09-10 15:45:57.681647 cognd 1156463467 R rec 66e6ab46-9671-4785-b606-34ee16781d2f +2024-09-10 15:45:57.789935 2024-09-10 15:45:57.789951 cognd 1153904039 R rec 8ac5e252-4d92-4fb6-8f6e-3f4a16b232b2 +2024-09-10 15:45:57.892291 2024-09-10 15:45:57.892306 cognd 1153848325 R rec 39b86f91-2ba7-4516-87cc-e3f110b2c9e4 +2024-09-10 15:45:57.987354 2024-09-10 15:45:57.98737 cognd 1153645505 R rec 5330f119-57f9-4750-b42f-67c5b11b781a +2024-09-10 15:45:58.095866 2024-09-10 15:45:58.095878 cognd 1148983325 R rec 5127a720-00c8-4ed8-b0e9-806338055de6 +2024-09-10 15:45:58.18556 2024-09-10 15:45:58.185576 cognd 1148983317 R rec 8f9ebdfb-a927-4038-817d-fb3c2810ed2b +2024-09-10 15:45:58.298544 2024-09-10 15:45:58.298554 cognd 1148982329 R rec b82fc85b-03f7-46d8-835a-04bbadf78dfd +2024-09-10 15:45:58.403295 2024-09-10 15:45:58.403306 cognd 1145164617 R rec 49c02302-e022-4688-a009-a4a81bfbce4f +2024-09-10 15:45:58.506757 2024-09-10 15:45:58.506772 cognd 113724061X R rec 175854db-fc0a-46de-a7f7-36f60430a35d +2024-09-10 15:45:58.580156 2024-09-10 15:45:58.580162 cognd 1136198113 R rec ab91d21e-1ced-4e60-b441-705393e794bf +2024-09-10 15:45:58.658353 2024-09-10 15:45:58.658364 cognd 1136044426 R rec 2027ad8e-f64e-4f8d-801e-ce0051c569e3 +2024-09-10 15:45:58.789984 2024-09-10 15:45:58.789998 cognd 1133521657 R rec 17b1492d-ce9f-47ee-9226-dcf3467bdf68 +2024-09-10 15:45:58.921448 2024-09-10 15:45:58.921459 cognd 1132275067 R rec 21d31b9e-866f-4556-813e-2e3af374872f +2024-09-10 15:45:59.022067 2024-09-10 15:45:59.02208 cognd 1132231477 R rec 469d7890-0d65-472d-8b66-03c8ba80a398 +2024-09-10 15:45:59.128075 2024-09-10 15:45:59.128116 cognd 1131360478 R rec b31bcfb7-b58a-4420-b206-bca81bc3a19d +2024-09-10 15:45:59.227973 2024-09-10 15:45:59.227976 cognd 1127087932 R rec 1d8e502b-f3a7-4a71-b6c3-406563c427b8 +2024-09-10 15:45:59.318244 2024-09-10 15:45:59.318261 cognd 1126284823 R rec 042b4784-308c-4dd0-95f1-02f136904169 +2024-09-10 15:45:59.438704 2024-09-10 15:45:59.438715 cognd 1124811885 R rec 7231e158-7baa-46a8-96e8-b01ab9d6ed43 +2024-09-10 15:45:59.557538 2024-09-10 15:45:59.557551 cognd 1124612114 R rec c8e162fe-4669-4009-8e93-3032e355ea4d +2024-09-10 15:45:59.624402 2024-09-10 15:45:59.624407 cognd 1120527775 R rec 4b6c7166-9cd9-4f5a-94c2-bbfb7d69d5c5 +2024-09-10 15:45:59.719553 2024-09-10 15:45:59.719564 cognd 1120526310 R rec 222ed396-7c03-4a3e-98d1-df7c341d6f90 +2024-09-10 15:45:59.83522 2024-09-10 15:45:59.835236 cognd 1119923417 R rec ffc4d530-a274-42bd-bc4c-b63160251baa +2024-09-10 15:45:59.950125 2024-09-10 15:45:59.950142 cognd 1117228215 R rec 774b4395-ebd2-43a2-bd47-303ce9e2b978 +2024-09-10 15:46:00.05723 2024-09-10 15:46:00.057241 cognd 1114188395 R rec 0c73f2df-ca43-41cd-86f0-0a2f4abac9c0 +2024-09-10 15:46:00.169157 2024-09-10 15:46:00.169169 cognd 1113031921 R rec a64604ea-47c4-4185-b937-ec6cef6713c3 +2024-09-10 15:46:00.294296 2024-09-10 15:46:00.294313 cognd 1111593051 R rec b1dda277-13ca-41f3-b00a-11f939000493 +2024-09-10 15:46:00.42258 2024-09-10 15:46:00.422591 cognd 110642154X R rec 2da0442e-0445-4cc8-a6c8-e6304c91bb3e +2024-09-10 15:46:00.52609 2024-09-10 15:46:00.526105 cognd 1104861453 R rec 4518f9a2-1270-44ed-8f1d-2053ca4481f8 +2024-09-10 15:46:00.62919 2024-09-10 15:46:00.629194 cognd 1103248596 R rec e78a655d-9569-4dcd-ba13-f5bdcdcf3b5f +2024-09-10 15:46:00.693919 2024-09-10 15:46:00.693931 cognd 1103240579 R rec 9747e8e8-f703-4b95-bc91-a4371b7efb7a +2024-09-10 15:46:00.787225 2024-09-10 15:46:00.787261 cognd 1101498900 R rec bf7bbdb2-48ff-4a91-88cf-d5f11ba04bd3 +2024-09-10 15:46:00.885219 2024-09-10 15:46:00.885236 cognd 1085190633 R rec 404f74f3-4523-4727-a383-618db036c645 +2024-09-10 15:46:00.98573 2024-09-10 15:46:00.985746 cognd 108229814X R rec fed0f273-00a6-4743-a515-febc90543e8e +2024-09-10 15:46:01.093598 2024-09-10 15:46:01.093614 cognd 1077459335 R rec c9be0a4f-0d8f-433d-9b28-fb7958bb4878 +2024-09-10 15:46:01.190957 2024-09-10 15:46:01.190973 cognd 1077386478 R rec fc558f2f-d362-46da-8889-407b03392b1d +2024-09-10 15:46:01.293283 2024-09-10 15:46:01.293296 cognd 1077065876 R rec a8274364-c69f-4769-a9c2-9e3b0f93913a +2024-09-10 15:46:01.392339 2024-09-10 15:46:01.392354 cognd 1069876534 R rec cf2b6543-94cf-433f-8d72-00e11dda36f6 +2024-09-10 15:46:01.503364 2024-09-10 15:46:01.50338 cognd 1069526703 R rec d9203e47-19b1-45bc-92e7-92af2f0fac20 +2024-09-10 15:46:01.60784 2024-09-10 15:46:01.607859 cognd 1069453420 R rec ce3c1221-bf1a-482e-a92c-679ef30978ef +2024-09-10 15:46:01.695342 2024-09-10 15:46:01.695348 cognd 1068825820 R rec 8779a66b-80f5-4463-b825-a5f419e2126f +2024-09-10 15:46:01.80414 2024-09-10 15:46:01.804151 cognd 1068606975 R rec 8f4725ee-5285-43e3-96ba-34e835073548 +2024-09-10 15:46:01.91296 2024-09-10 15:46:01.912973 cognd 1068048328 R rec 412c7519-69d6-43b0-9d06-272b893674e3 +2024-09-10 15:46:02.033997 2024-09-10 15:46:02.034009 cognd 1067974490 R rec d20735c1-d09d-4fff-a4a0-adb249fc2167 +2024-09-10 15:46:02.140195 2024-09-10 15:46:02.140206 cognd 1066896534 R rec a69bc4bc-1615-41fa-9a58-96d7c18cb2fb +2024-09-10 15:46:02.234362 2024-09-10 15:46:02.234378 cognd 1065486421 R rec ca13668a-d90c-488e-bc74-df3bb4be704e +2024-09-10 15:46:02.339868 2024-09-10 15:46:02.339878 cognd 106307147X R rec 0daebaff-e06b-4d8e-945b-30c5029d6a8a +2024-09-10 15:46:02.44876 2024-09-10 15:46:02.448776 cognd 105858488X R rec 2ca5f48c-1dae-4b79-a988-49ee3f1f673e +2024-09-10 15:46:02.549128 2024-09-10 15:46:02.549144 cognd 1055013458 R rec 81b5cd37-ccca-42c5-9bf1-db8f65fbc5ad +2024-09-10 15:46:02.658806 2024-09-10 15:46:02.658816 cognd 1054183104 R rec 9ac7ef40-875f-4e4c-b6e7-6b8bbaa280fa +2024-09-10 15:46:02.752155 2024-09-10 15:46:02.752168 cognd 1054182779 R rec e72359ec-0843-4e2a-aa16-8b0f74248464 +2024-09-10 15:46:02.892147 2024-09-10 15:46:02.892153 cognd 1054182620 R rec 5adad7e8-964f-4fe0-a652-949cba737ddb +2024-09-10 15:46:03.02067 2024-09-10 15:46:03.020682 cognd 1051146089 R rec 4809cba8-918c-4955-836c-606b34342c2a +2024-09-10 15:46:03.126371 2024-09-10 15:46:03.126386 cognd 1049270851 R rec 4726e06c-9017-4994-a180-8e42dbafccc7 +2024-09-10 15:46:03.231722 2024-09-10 15:46:03.231747 cognd 1044279206 R rec 02646431-ac5c-47b5-9d36-80103aff9253 +2024-09-10 15:46:03.328386 2024-09-10 15:46:03.328396 cognd 1041611064 R rec 10749800-807e-4306-a560-350cbc049ee4 +2024-09-10 15:46:03.43177 2024-09-10 15:46:03.431782 cognd 1036907430 R rec 76041fab-7675-4345-97aa-662050897c41 +2024-09-10 15:46:03.532229 2024-09-10 15:46:03.532245 cognd 1036857263 R rec ccd3c642-a691-498c-affc-d5fb2c2ada71 +2024-09-10 15:46:03.639497 2024-09-10 15:46:03.639512 cognd 1029263361 R rec 53f73d97-4883-4b2e-ad75-43175f3deb79 +2024-09-10 15:46:03.73693 2024-09-10 15:46:03.736939 cognd 1019980389 R rec e61b7369-455b-4d65-a382-805663ca8b8d +2024-09-10 15:46:03.801005 2024-09-10 15:46:03.801016 cognd 1015187382 R rec 5059bb67-4b8d-43fe-9c18-e9ac222bd72b +2024-09-10 15:46:03.891494 2024-09-10 15:46:03.891506 cognd 1014400783 R rec 04454d52-bf4c-4f89-a89e-679815d680d2 +2024-09-10 15:46:03.981041 2024-09-10 15:46:03.981052 cognd 1013709640 R rec 8ac21d5d-6f4d-4519-91c1-82ede5ef5eb6 +2024-09-10 15:46:04.095528 2024-09-10 15:46:04.095544 cognd 1010242008 R rec 8a231b95-1755-404f-b625-193edbde465e +2024-09-10 15:46:04.224097 2024-09-10 15:46:04.224102 cognd 1009887017 R rec 8618cabb-be5f-4e53-8642-e7c8a5745c70 +2024-09-10 15:46:04.311509 2024-09-10 15:46:04.311519 cognd 1008996270 R rec 3c39a31f-f391-4b92-856c-d83958602282 +2024-09-10 15:46:04.410475 2024-09-10 15:46:04.410486 cognd 1008049115 R rec 3df92a67-c65a-4b63-b70a-d5b29bfac285 +2024-09-10 15:46:04.511792 2024-09-10 15:46:04.511805 cognd 100735531X R rec a8a32a8c-77e1-43d2-a5fa-0599e20727f5 +2024-09-10 15:46:04.605085 2024-09-10 15:46:04.605099 cognd 1006894675 R rec a2753977-7134-477f-bfb4-e12dad1944c7 +2024-09-10 15:46:04.706662 2024-09-10 15:46:04.706679 cognd 1002238951 R rec 0226ec93-9a63-4523-8eb0-e9703a70e72c +2024-09-10 15:46:04.797227 2024-09-10 15:46:04.797232 cognd 1000642119 R rec 89b812e6-f35a-4903-8a7b-2f5980079cf4 +2024-09-10 15:46:04.860997 2024-09-10 15:46:04.861008 cognd 1000168972 R rec 4603aae9-1788-401e-b386-06fb2a8fbd07 +2024-09-10 15:46:04.946777 2024-09-10 15:46:04.946789 cognd 998776785 R rec 37c73ab9-b493-4767-bfab-9c27ce14266b +2024-09-10 15:46:05.05731 2024-09-10 15:46:05.057331 cognd 995780951 R rec c9eff4d7-00e6-403e-98b0-93228911eef0 +2024-09-10 15:46:05.161335 2024-09-10 15:46:05.16135 cognd 994659857 R rec 305b48de-ded0-4c17-94a6-e74dda2a7a7a +2024-09-10 15:46:05.280447 2024-09-10 15:46:05.280462 cognd 99405212X R rec cf097753-1404-4cf1-bce7-0baeffbb73d1 +2024-09-10 15:46:05.389063 2024-09-10 15:46:05.389079 cognd 99283600X R rec 355b96e8-a67f-4027-b1d0-d10de370b0df +2024-09-10 15:46:05.505846 2024-09-10 15:46:05.505858 cognd 992757126 R rec 675767f7-8f5b-4ac9-9d23-1a3d58964989 +2024-09-10 15:46:05.604688 2024-09-10 15:46:05.604699 cognd 992754909 R rec db99f265-09e8-4923-a808-f62f4c09422e +2024-09-10 15:46:05.730605 2024-09-10 15:46:05.73062 cognd 992754550 R rec 61c048e1-af5c-40de-910a-c33a0e5a0c0c +2024-09-10 15:46:05.824839 2024-09-10 15:46:05.824844 cognd 992754534 R rec 63fb068d-7af6-4dbf-8450-dbe6d18d917b +2024-09-10 15:46:05.910851 2024-09-10 15:46:05.910865 cognd 992754305 R rec b9b6fc3b-7760-4491-80d2-0caed635b2fb +2024-09-10 15:46:06.015139 2024-09-10 15:46:06.015156 cognd 992753694 R rec aad8ea24-a02b-4c50-8411-80090ddd1020 +2024-09-10 15:46:06.112408 2024-09-10 15:46:06.112424 cognd 99275366X R rec 6ccac0e3-8e99-4e2d-80d2-576383bfa774 +2024-09-10 15:46:06.215418 2024-09-10 15:46:06.215429 cognd 992752973 R rec c518675a-6ecd-4cc4-b811-3abba3d5fc93 +2024-09-10 15:46:06.32435 2024-09-10 15:46:06.324366 cognd 992751020 R rec fbcab54b-61d9-43d5-af97-fac54e1284c2 +2024-09-10 15:46:06.453496 2024-09-10 15:46:06.453512 cognd 99274881X R rec a75cb8b8-ca30-4825-b6a9-b6a32f924437 +2024-09-10 15:46:06.555018 2024-09-10 15:46:06.55503 cognd 992747031 R rec c76ab960-f405-46fe-bc0e-8b9f693f0c40 +2024-09-10 15:46:06.637291 2024-09-10 15:46:06.637305 cognd 992746779 R rec 0e14a273-a40b-4f16-927b-4d2827e33e4d +2024-09-10 15:46:06.731019 2024-09-10 15:46:06.73103 cognd 992746248 R rec e1b7e1b6-44ed-436b-ae5f-4befb5d0c805 +2024-09-10 15:46:06.833257 2024-09-10 15:46:06.83327 cognd 992745969 R rec f4450362-d473-492e-99f8-5a1f791e43b8 +2024-09-10 15:46:06.899796 2024-09-10 15:46:06.899802 cognd 992745292 R rec fc57a654-b2c7-4cdd-8536-21b1baac6154 +2024-09-10 15:46:06.979983 2024-09-10 15:46:06.979994 cognd 992745187 R rec 8576902d-bb8a-4374-8fee-f44c7987bf75 +2024-09-10 15:46:07.076578 2024-09-10 15:46:07.076593 cognd 99274508X R rec 661073aa-dc26-4027-b9a4-54127023e796 +2024-09-10 15:46:07.185264 2024-09-10 15:46:07.185275 cognd 992744792 R rec b39b56d3-9787-47bf-bfc8-1fba79cf2791 +2024-09-10 15:46:07.28502 2024-09-10 15:46:07.285036 cognd 992744091 R rec 2524077a-1eff-47f7-bea7-aa982aceb457 +2024-09-10 15:46:07.378167 2024-09-10 15:46:07.378179 cognd 992743605 R rec fd632ef7-eb00-40e7-b6f0-b1c62785d423 +2024-09-10 15:46:07.470525 2024-09-10 15:46:07.470536 cognd 992743273 R rec ecd5f771-60ed-4f1f-a13d-440f08e64820 +2024-09-10 15:46:07.55467 2024-09-10 15:46:07.554683 cognd 992742889 R rec 18220811-8413-44da-b8d9-014f6a5ab3bb +2024-09-10 15:46:07.665847 2024-09-10 15:46:07.665858 cognd 992742854 R rec 7e004d0b-236d-4bd0-8b24-ac9896370b7f +2024-09-10 15:46:07.795601 2024-09-10 15:46:07.795615 cognd 992742722 R rec 56cfdf03-8821-446e-9a72-3c0c5863dd06 +2024-09-10 15:46:07.905121 2024-09-10 15:46:07.905127 cognd 992742498 R rec 61ac79f9-d404-4f32-87d0-4338c9e7d4d8 +2024-09-10 15:46:07.971689 2024-09-10 15:46:07.971701 cognd 992741696 R rec abb85a4c-0d87-4355-9135-57fb2f763c47 +2024-09-10 15:46:08.074277 2024-09-10 15:46:08.074287 cognd 992741491 R rec cadd1452-8378-4545-bb40-be0739ce1442 +2024-09-10 15:46:08.201785 2024-09-10 15:46:08.20179 cognd 992739659 R rec 5d0a649e-1455-4386-b8e4-22f18a988ebf +2024-09-10 15:46:08.301039 2024-09-10 15:46:08.301053 cognd 992738601 R rec 090ae316-9ec3-49a7-aad4-a2ca8172e52b +2024-09-10 15:46:08.431041 2024-09-10 15:46:08.431052 cognd 992738172 R rec 1b5516f1-2832-45e3-93a7-fba9513804f8 +2024-09-10 15:46:08.531486 2024-09-10 15:46:08.531497 cognd 992738083 R rec 26de8d5c-78b0-456a-a2d7-059bfa11b50a +2024-09-10 15:46:08.66364 2024-09-10 15:46:08.663646 cognd 992738075 R rec db43a306-3dee-4321-a9e7-9a285c902231 +2024-09-10 15:46:08.746933 2024-09-10 15:46:08.746939 cognd 992737834 R rec 92f0ed89-d26f-44a3-b1dc-38ab092836ee +2024-09-10 15:46:08.856869 2024-09-10 15:46:08.85688 cognd 992737826 R rec 5227ae58-b710-4367-8855-5c9af597ac60 +2024-09-10 15:46:08.961639 2024-09-10 15:46:08.961644 cognd 992737788 R rec 98df890f-862b-4826-82b7-0491ead7e284 +2024-09-10 15:46:09.057303 2024-09-10 15:46:09.057317 cognd 992737532 R rec 24760cb1-0498-4c81-b84b-2db410bbbcdd +2024-09-10 15:46:09.165915 2024-09-10 15:46:09.165925 cognd 992736269 R rec e3f90d44-4eb4-4b5a-8d42-21b67a291cb7 +2024-09-10 15:46:09.268426 2024-09-10 15:46:09.268437 cognd 992736099 R rec 31f79e9a-6184-4296-90d9-10f3a23f214f +2024-09-10 15:46:09.376766 2024-09-10 15:46:09.376783 cognd 992735858 R rec 67cf2c80-7b87-4609-8ccc-bb6ebe0746f6 +2024-09-10 15:46:09.499073 2024-09-10 15:46:09.499084 cognd 99273584X R rec 670cd021-e478-474d-856f-aaf5e3b9bbc3 +2024-09-10 15:46:09.610603 2024-09-10 15:46:09.610619 cognd 992735823 R rec 15705916-e6fc-453f-b35e-1b0de5bf5f4b +2024-09-10 15:46:09.728619 2024-09-10 15:46:09.728635 cognd 992735270 R rec 0a36d245-e320-4797-89b3-82da109ee537 +2024-09-10 15:46:09.843165 2024-09-10 15:46:09.843184 cognd 992735122 R rec 800c52cb-ecdb-4a90-bd48-a2fe0d7439ad +2024-09-10 15:46:09.944347 2024-09-10 15:46:09.944358 cognd 992733634 R rec 177efe26-9d62-4b86-9eb8-02ae86460c07 +2024-09-10 15:46:10.020984 2024-09-10 15:46:10.02099 cognd 99273312X R rec 02be6f2e-14dd-4661-9390-b3d07f80da46 +2024-09-10 15:46:10.11011 2024-09-10 15:46:10.110128 cognd 992732468 R rec 1fba6346-e615-470d-99d8-05f57a09fe55 +2024-09-10 15:46:10.217415 2024-09-10 15:46:10.217426 cognd 992731496 R rec 3835ade8-f86b-408e-92ff-f06e0216934f +2024-09-10 15:46:10.321407 2024-09-10 15:46:10.321422 cognd 99273147X R rec aec63c24-37a5-4301-95ec-235e09fe4c2c +2024-09-10 15:46:10.427681 2024-09-10 15:46:10.427695 cognd 992731348 R rec 40edab5b-8424-44f8-8cc8-872318441588 +2024-09-10 15:46:10.541815 2024-09-10 15:46:10.541831 cognd 992730937 R rec d63f8394-3c65-4a50-a18f-cb07eb1e1c31 +2024-09-10 15:46:10.663803 2024-09-10 15:46:10.663819 cognd 99273052X R rec 2da651d1-04b7-46ff-a65e-9c96c2e6fd3c +2024-09-10 15:46:10.784917 2024-09-10 15:46:10.784932 cognd 992096200 R rec f11fd75d-a9ec-4019-a88c-4e3f5412706a +2024-09-10 15:46:10.896753 2024-09-10 15:46:10.896766 cognd 99018207X R rec 3c40313a-f318-4421-8181-daaeff7417ef +2024-09-10 15:46:10.98576 2024-09-10 15:46:10.985771 cognd 987870920 R rec d0a63da0-8fd7-4964-945f-aebdc8abc8ea +2024-09-10 15:46:11.052989 2024-09-10 15:46:11.052997 cognd 987031708 R rec d24fdfaa-09be-4076-97d9-d4d6c9168f6d +2024-09-10 15:46:11.142024 2024-09-10 15:46:11.142037 cognd 985142758 R rec e82f65d1-9323-4c41-ae7c-684ab75fb739 +2024-09-10 15:46:11.236846 2024-09-10 15:46:11.236857 cognd 984855246 R rec c3fbe6b3-3ca4-4c34-a4a1-9ca2eb111894 +2024-09-10 15:46:11.340253 2024-09-10 15:46:11.340268 cognd 984430695 R rec 1674cd84-92b1-4cb6-b561-2c29d4d0c1c2 +2024-09-10 15:46:11.444786 2024-09-10 15:46:11.444797 cognd 981355196 R rec e5816295-c95e-4922-97c9-60f20e92d0e2 +2024-09-10 15:46:11.555734 2024-09-10 15:46:11.55575 cognd 981078206 R rec c9b0191c-a970-4652-b87e-165935ab217e +2024-09-10 15:46:11.655363 2024-09-10 15:46:11.655379 cognd 980596920 R rec 2018fbb2-bfb8-4bab-99b9-ba43e393a69f +2024-09-10 15:46:11.752863 2024-09-10 15:46:11.752879 cognd 980485371 R rec b2966b55-a66e-4185-99c8-433bd8627b1b +2024-09-10 15:46:11.84799 2024-09-10 15:46:11.848006 cognd 979728509 R rec 0a81f03a-c2b7-411a-b5d0-81b78f1f64c8 +2024-09-10 15:46:11.946888 2024-09-10 15:46:11.946899 cognd 979385261 R rec 6fbe22c0-9afd-465f-9885-c14f8a3cad95 +2024-09-10 15:46:12.047126 2024-09-10 15:46:12.047131 cognd 979340586 R rec 859bbb68-ebd7-4592-ac95-e4c9d965e7bf +2024-09-10 15:46:12.110547 2024-09-10 15:46:12.110558 cognd 978483669 R rec 22580c99-dab9-44bb-a86a-36985cf4af41 +2024-09-10 15:46:12.191006 2024-09-10 15:46:12.191021 cognd 97549175X R rec 25a0c777-4363-44b3-955f-d03d074bd5b8 +2024-09-10 15:46:12.295263 2024-09-10 15:46:12.295274 cognd 974924423 R rec 63f7a8e3-43d1-42f6-bacb-c320bf8b50b7 +2024-09-10 15:46:12.404816 2024-09-10 15:46:12.40483 cognd 974131733 R rec e9d33a1f-779e-4676-8250-737903c27bf9 +2024-09-10 15:46:12.523646 2024-09-10 15:46:12.523664 cognd 973073764 R rec e36e116a-c91d-4e72-a6f9-9da9ca82ee11 +2024-09-10 15:46:12.620474 2024-09-10 15:46:12.62049 cognd 973067144 R rec 6cd52184-c6fb-4404-8018-2e83493047b4 +2024-09-10 15:46:12.741419 2024-09-10 15:46:12.74143 cognd 971890188 R rec 3222b820-a590-4dba-9555-3a6dafb42d0d +2024-09-10 15:46:12.846394 2024-09-10 15:46:12.846408 cognd 971874549 R rec bd60a83b-adc3-4928-ab89-8f9fb4a1f31c +2024-09-10 15:46:12.954528 2024-09-10 15:46:12.954534 cognd 971750289 R rec 3f5bbf9a-3af0-40a4-a508-27c8dfe65f8b +2024-09-10 15:46:13.039745 2024-09-10 15:46:13.039751 cognd 971566429 R rec 79b94d13-de5f-45df-aa42-4336c82ba1ee +2024-09-10 15:46:13.129648 2024-09-10 15:46:13.129654 cognd 970782195 R rec ae11f40d-fedc-4eb0-bacf-d229ced48676 +2024-09-10 15:46:13.226674 2024-09-10 15:46:13.22668 cognd 970665806 R rec 5cad7a5d-43ab-44ed-b288-30edadea2f18 +2024-09-10 15:46:13.293508 2024-09-10 15:46:13.293513 cognd 970188919 R rec f8ddd609-ae3a-430e-9bcf-648b08f1c5cc +2024-09-10 15:46:13.364796 2024-09-10 15:46:13.364801 cognd 970142838 R rec f9736000-8d4e-48d4-b592-3ddb0bed9d30 +2024-09-10 15:46:13.426014 2024-09-10 15:46:13.42602 cognd 969789726 R rec 8250dd9c-9969-4d14-8bd9-55fc9366c50d +2024-09-10 15:46:13.497309 2024-09-10 15:46:13.497316 cognd 968800459 R rec a7dd596b-00e5-49fc-8b58-5a6079c8fd4d +2024-09-10 15:46:13.562112 2024-09-10 15:46:13.562118 cognd 967930308 R rec 699bcbd4-d3bb-4f11-8822-3368fc75d756 +2024-09-10 15:46:13.627854 2024-09-10 15:46:13.627859 cognd 967681758 R rec afc5adb9-10bb-4c66-aa97-e64f36140ba0 +2024-09-10 15:46:13.694767 2024-09-10 15:46:13.694773 cognd 967612896 R rec e0195651-3c23-4a1c-a421-819bd1e0fab1 +2024-09-10 15:46:13.762461 2024-09-10 15:46:13.762467 cognd 967286034 R rec 188ef772-b48e-40d0-ac47-09768616caf1 +2024-09-10 15:46:13.823365 2024-09-10 15:46:13.82337 cognd 966464141 R rec 3356637d-ad63-45c7-936d-70c35b597c05 +2024-09-10 15:46:13.887881 2024-09-10 15:46:13.887887 cognd 966016297 R rec adbe91bd-7d96-4db3-afe2-ff763531e6db +2024-09-10 15:46:13.952542 2024-09-10 15:46:13.952548 cognd 965886654 R rec 67570d77-df39-40ef-a15f-a6cec940a7fc +2024-09-10 15:46:14.016759 2024-09-10 15:46:14.016765 cognd 965195686 R rec 3e723a4e-ac28-43f6-a201-94d77ad18216 +2024-09-10 15:46:14.095807 2024-09-10 15:46:14.095813 cognd 96441631X R rec 589eab6f-a92b-430e-b1df-558f2b4a2491 +2024-09-10 15:46:14.160886 2024-09-10 15:46:14.160893 cognd 964240300 R rec e0f94dba-0a37-4ba7-ba32-1a7865a54794 +2024-09-10 15:46:14.237674 2024-09-10 15:46:14.23768 cognd 964240254 R rec 609870b6-0464-4ada-b5dc-759ade2c9d93 +2024-09-10 15:46:14.321831 2024-09-10 15:46:14.321837 cognd 964115166 R rec 6ca6fa3e-38e9-44d5-99c2-e1924d6a809b +2024-09-10 15:46:14.397884 2024-09-10 15:46:14.397896 cognd 963711636 R rec e46dd5d2-f9e8-4062-a8b7-8c5d3e1367a2 +2024-09-10 15:46:14.472875 2024-09-10 15:46:14.472885 cognd 963708872 R rec b848186a-f0e0-4222-a293-2d39ae397a78 +2024-09-10 15:46:14.567654 2024-09-10 15:46:14.567668 cognd 963708856 R rec beb3512d-769a-4fbc-ac6c-5f0d4e60338b +2024-09-10 15:46:14.647381 2024-09-10 15:46:14.647387 cognd 963658166 R rec 5ecdaf89-aed5-479b-b5bd-ae7e20d490bd +2024-09-10 15:46:14.716886 2024-09-10 15:46:14.716898 cognd 963553984 R rec ea126bbb-d00d-4b8f-8eb5-bbcd5b2352b5 +2024-09-10 15:46:14.814808 2024-09-10 15:46:14.814819 cognd 962075272 R rec cbcd2def-5c5f-4350-9c4c-1d53877237ce +2024-09-10 15:46:14.910882 2024-09-10 15:46:14.910896 cognd 962073881 R rec e90c8148-bbcc-4539-895a-c80b83e7575f +2024-09-10 15:46:15.012022 2024-09-10 15:46:15.012034 cognd 961897546 R rec 25d95214-f639-4475-a3a4-693726cec5f1 +2024-09-10 15:46:15.103225 2024-09-10 15:46:15.103237 cognd 961236752 R rec 1e4ae7ec-ef70-4f9c-89dc-205541adcc7e +2024-09-10 15:46:15.191764 2024-09-10 15:46:15.191769 cognd 961192356 R rec bc6f5377-f430-4e30-8fdb-33ab219dba7f +2024-09-10 15:46:15.253831 2024-09-10 15:46:15.253837 cognd 961049510 R rec dc84e099-c916-4391-9e1d-f4ac9a6006ac +2024-09-10 15:46:15.317627 2024-09-10 15:46:15.317641 cognd 960895175 R rec 50882e2d-d1e5-4b55-bda8-356baf184142 +2024-09-10 15:46:15.391297 2024-09-10 15:46:15.391314 cognd 96037650X R rec 585c5b3d-d693-46c3-b908-4dfae5523aff +2024-09-10 15:46:15.474487 2024-09-10 15:46:15.474498 cognd 960375988 R rec 87bcdf2f-3a69-4509-a98d-001b95abdb1a +2024-09-10 15:46:15.553207 2024-09-10 15:46:15.553212 cognd 960175105 R rec 3236279d-e82c-4aa4-b3dc-2bb712cd5515 +2024-09-10 15:46:15.631649 2024-09-10 15:46:15.631661 cognd 959959750 R rec 65837769-cf9e-49f5-beae-d909086dcab8 +2024-09-10 15:46:15.703742 2024-09-10 15:46:15.703756 cognd 959794972 R rec 6f9660d2-8cf2-4dc1-b955-d91a6a40fcd4 +2024-09-10 15:46:15.791286 2024-09-10 15:46:15.791297 cognd 959794921 R rec b2ee0d3f-99e8-4941-87e7-97dcbf21cd58 +2024-09-10 15:46:15.875653 2024-09-10 15:46:15.875659 cognd 959794859 R rec 3383ed55-bb32-414c-b372-8d4177dc8122 +2024-09-10 15:46:15.960116 2024-09-10 15:46:15.960128 cognd 959740864 R rec c84279d6-7856-4057-adde-d56a6a7d7da0 +2024-09-10 15:46:16.046427 2024-09-10 15:46:16.046438 cognd 959716688 R rec 7144cf5c-1a82-4009-abb7-b3d17b97cd45 +2024-09-10 15:46:16.137414 2024-09-10 15:46:16.13742 cognd 959148523 R rec 5bc73e52-1f65-491c-afc0-3a41fa613080 +2024-09-10 15:46:16.199462 2024-09-10 15:46:16.199468 cognd 959148485 R rec 504d3481-81a9-4306-84eb-c0c9aca173a0 +2024-09-10 15:46:16.256841 2024-09-10 15:46:16.256849 cognd 959148477 R rec 3b8983eb-a5de-43fe-82e2-b13df9b294b8 +2024-09-10 15:46:16.331737 2024-09-10 15:46:16.331742 cognd 958503001 R rec ee06da4c-52c5-465a-a3a9-bf7c2c2172df +2024-09-10 15:46:16.409127 2024-09-10 15:46:16.409133 cognd 958467102 R rec edf9f5e4-bedc-4aaa-9fcc-32fa2106b4ea +2024-09-10 15:46:16.490523 2024-09-10 15:46:16.490536 cognd 958224625 R rec 98d4d2f6-caaa-4f95-954a-19024b230320 +2024-09-10 15:46:16.580616 2024-09-10 15:46:16.580628 cognd 958195889 R rec f68f38e9-447e-479e-979a-5f2712f21b7d +2024-09-10 15:46:16.656735 2024-09-10 15:46:16.65674 cognd 958190453 R rec 0efd09af-2a69-453a-994f-49c784f06ef7 +2024-09-10 15:46:16.750294 2024-09-10 15:46:16.750304 cognd 957705611 R rec 6c8c0286-fc45-410c-885e-1a63a411718a +2024-09-10 15:46:16.831595 2024-09-10 15:46:16.831611 cognd 95765894X R rec e37e7c82-822e-4c0e-ace6-a46009161e29 +2024-09-10 15:46:16.918754 2024-09-10 15:46:16.918766 cognd 957331940 R rec f6acd224-e868-4264-ad51-ba87cd0d0e2b +2024-09-10 15:46:16.990929 2024-09-10 15:46:16.99094 cognd 957331673 R rec 770ed6f5-4877-4d15-9bf9-123e8c92cb93 +2024-09-10 15:46:17.092811 2024-09-10 15:46:17.092823 cognd 957192517 R rec ba4e75bb-26f7-4eb4-ad4b-2f14a30be40b +2024-09-10 15:46:17.171194 2024-09-10 15:46:17.1712 cognd 956838049 R rec b92d7c59-640e-4fa2-b777-8990206a3716 +2024-09-10 15:46:17.231155 2024-09-10 15:46:17.23116 cognd 956643221 R rec 0ffc8e49-4592-4980-94c3-ca5d20741672 +2024-09-10 15:46:17.29159 2024-09-10 15:46:17.291595 cognd 956635709 R rec 6b7f9957-e339-4a84-93b2-40b7edb015ec +2024-09-10 15:46:17.361125 2024-09-10 15:46:17.361135 cognd 956220495 R rec 9ff11a7e-abc9-4959-9484-3f735c0b29e7 +2024-09-10 15:46:17.456215 2024-09-10 15:46:17.456231 cognd 955244641 R rec 66a13442-c130-4624-88e0-3a72bc66b04e +2024-09-10 15:46:17.53937 2024-09-10 15:46:17.53938 cognd 95489748X R rec 8b526c46-e53d-42d0-a259-7a5d20941304 +2024-09-10 15:46:17.626035 2024-09-10 15:46:17.626051 cognd 954782232 R rec 622f07af-52d8-4753-a8ac-d85ff88aa6bc +2024-09-10 15:46:17.719373 2024-09-10 15:46:17.719389 cognd 95462839X R rec 00e151d8-1315-45cb-a4ee-089d56501da0 +2024-09-10 15:46:17.817299 2024-09-10 15:46:17.817311 cognd 954211774 R rec 58355fa7-2e56-4fbe-814f-7a0471023a5f +2024-09-10 15:46:17.904971 2024-09-10 15:46:17.904987 cognd 954206738 R rec 7e23dba8-e7fe-42dc-81ac-7315861901f8 +2024-09-10 15:46:17.993967 2024-09-10 15:46:17.993979 cognd 954203232 R rec b180c4e2-7160-4745-9e39-22938d99ac40 +2024-09-10 15:46:18.089135 2024-09-10 15:46:18.089146 cognd 953679802 R rec 837984bb-3a4b-4d7d-a85f-f7f6640bb472 +2024-09-10 15:46:18.162528 2024-09-10 15:46:18.162534 cognd 953550346 R rec 4113d8fb-210c-412b-a941-b5672522c06e +2024-09-10 15:46:18.224963 2024-09-10 15:46:18.224969 cognd 953444201 R rec b96fe22b-7489-47bb-ad80-c5c4c1208af8 +2024-09-10 15:46:18.304858 2024-09-10 15:46:18.304869 cognd 953056082 R rec f1812ab3-881b-4367-ab3c-810fccf534d0 +2024-09-10 15:46:18.392355 2024-09-10 15:46:18.392366 cognd 952896605 R rec 7e3d661a-3534-412b-8eef-72ba4c153bfd +2024-09-10 15:46:18.47108 2024-09-10 15:46:18.471096 cognd 952702053 R rec b6a95767-caae-41bc-a555-f622950c383f +2024-09-10 15:46:18.559255 2024-09-10 15:46:18.559267 cognd 952619636 R rec 89bdf6e2-a2d1-4832-aa7c-45a68fba4312 +2024-09-10 15:46:18.651865 2024-09-10 15:46:18.65187 cognd 952440431 R rec dc6b1adc-a7b1-408a-9d28-2b753d3ac678 +2024-09-10 15:46:18.722072 2024-09-10 15:46:18.722077 cognd 952431602 R rec f5c4b3aa-6647-4825-90d2-71d50e2a8d0c +2024-09-10 15:46:18.800227 2024-09-10 15:46:18.80024 cognd 951810189 R rec 1af6acbd-3012-4861-adaf-5ce015acb06f +2024-09-10 15:46:18.898824 2024-09-10 15:46:18.898836 cognd 951618563 R rec 0f9839a2-01f6-4a84-9631-4a27603c1983 +2024-09-10 15:46:18.980233 2024-09-10 15:46:18.980244 cognd 951607804 R rec e61e33a2-01cc-4ec2-a2f0-3f3ae5a5989b +2024-09-10 15:46:19.05405 2024-09-10 15:46:19.054068 cognd 95159981X R rec d8c1d574-520e-4fb8-8a6d-3dd35074eb35 +2024-09-10 15:46:19.130089 2024-09-10 15:46:19.130095 cognd 951549650 R rec 602e092c-f435-4349-8f43-3d669cbbef1d +2024-09-10 15:46:19.190754 2024-09-10 15:46:19.19076 cognd 95153047X R rec 1caf95d0-0b5e-4a6d-a823-5eb4d0a6b61f +2024-09-10 15:46:19.25513 2024-09-10 15:46:19.255135 cognd 95152092X R rec 49b9df7d-ec20-4f29-9c83-2152d0457c5d +2024-09-10 15:46:19.313114 2024-09-10 15:46:19.313125 cognd 950857157 R rec 1304962c-6868-49b3-85b9-f146c97aec8f +2024-09-10 15:46:19.387765 2024-09-10 15:46:19.387783 cognd 950693413 R rec 054edd18-4196-40cb-9b78-2711179c2606 +2024-09-10 15:46:19.483879 2024-09-10 15:46:19.483895 cognd 950693375 R rec a472ac1a-5383-498c-8301-ae1c29feec23 +2024-09-10 15:46:19.561961 2024-09-10 15:46:19.561969 cognd 950692433 R rec 59984a8b-4de8-492f-8487-4bc9d29fd1eb +2024-09-10 15:46:19.635755 2024-09-10 15:46:19.635771 cognd 950632481 R rec 6552e6e1-1e82-4e09-aa00-a93f75c58396 +2024-09-10 15:46:19.702047 2024-09-10 15:46:19.702066 cognd 950276014 R rec 18595b44-b636-4477-b474-871ec7b89235 +2024-09-10 15:46:19.780937 2024-09-10 15:46:19.780949 cognd 949894028 R rec c6800ae0-d47e-48ad-b964-e0b54d1ad67e +2024-09-10 15:46:19.855699 2024-09-10 15:46:19.855711 cognd 949435015 R rec 78eb7626-4efd-486b-915c-440e18694534 +2024-09-10 15:46:19.938693 2024-09-10 15:46:19.938705 cognd 948897244 R rec ef24b7d0-7ede-471d-9f36-deb787c05bd9 +2024-09-10 15:46:20.016936 2024-09-10 15:46:20.016948 cognd 948567341 R rec 02f6c998-6eac-48af-96a4-a1ff8ecdea42 +2024-09-10 15:46:20.089042 2024-09-10 15:46:20.089054 cognd 948567317 R rec 0f8d47d3-455f-414b-9ba6-78ebd4577628 +2024-09-10 15:46:20.16799 2024-09-10 15:46:20.167996 cognd 948565977 R rec 5806e226-7a2f-48bf-894b-944015e5424e +2024-09-10 15:46:20.246015 2024-09-10 15:46:20.246021 cognd 948520116 R rec 35bcfc07-1461-4546-ade7-3c18c7286f1b +2024-09-10 15:46:20.304747 2024-09-10 15:46:20.304755 cognd 948474688 R rec 95f7b96d-7555-46c2-8904-e763949aad51 +2024-09-10 15:46:20.36849 2024-09-10 15:46:20.368496 cognd 947762868 R rec 15236982-b113-4e42-9e3f-21b9212ad55b +2024-09-10 15:46:20.451233 2024-09-10 15:46:20.45125 cognd 947572090 R rec bbdcefba-e852-4bc3-ac38-9ddfa6ad7aa0 +2024-09-10 15:46:20.53105 2024-09-10 15:46:20.53106 cognd 947210601 R rec f8d558b9-92d9-45ec-9c17-ffc92d42f1b7 +2024-09-10 15:46:20.614878 2024-09-10 15:46:20.614884 cognd 947024387 R rec 3f1e06f2-baa5-4e36-8290-10a43975e61f +2024-09-10 15:46:20.678408 2024-09-10 15:46:20.678413 cognd 946840318 R rec 7df5e176-72c0-4339-8f88-eb67b7229e44 +2024-09-10 15:46:20.75004 2024-09-10 15:46:20.75005 cognd 94683203X R rec 59c8a5c0-b17d-416f-8138-35e6dc8f8410 +2024-09-10 15:46:20.836408 2024-09-10 15:46:20.836426 cognd 946538506 R rec 3aa2197d-61cd-4651-b4a4-a52aa492f03e +2024-09-10 15:46:20.918049 2024-09-10 15:46:20.918061 cognd 946529981 R rec 70be11a3-c55b-446f-aee2-7994fd8f3e1e +2024-09-10 15:46:21.003329 2024-09-10 15:46:21.003335 cognd 946267340 R rec 173c908f-61dc-4e80-b55f-91a3a8f5193f +2024-09-10 15:46:21.075213 2024-09-10 15:46:21.075222 cognd 945831749 R rec 82e1f9f0-5abd-4ea2-87e9-a173161939a7 +2024-09-10 15:46:21.151174 2024-09-10 15:46:21.15118 cognd 94574577X R rec ec9824fe-94dd-4bd7-a784-77993b420eff +2024-09-10 15:46:21.229124 2024-09-10 15:46:21.229134 cognd 945675267 R rec 5fa3b3aa-4758-4a35-833c-ad5ff2ffd869 +2024-09-10 15:46:21.310011 2024-09-10 15:46:21.310016 cognd 945372604 R rec a8478536-4b6e-4efa-a755-9f156b647e28 +2024-09-10 15:46:21.370447 2024-09-10 15:46:21.370452 cognd 945325150 R rec 7e4832e6-0eb3-46e3-a45c-4d253d0d5ecc +2024-09-10 15:46:21.44346 2024-09-10 15:46:21.443466 cognd 944352820 R rec 36b4364e-57ae-4782-a852-88e6d0d83a10 +2024-09-10 15:46:21.526706 2024-09-10 15:46:21.526718 cognd 94392961X R rec 8dad9b43-e5f0-431b-8e8f-f5028a8b763f +2024-09-10 15:46:21.596811 2024-09-10 15:46:21.596825 cognd 94392684X R rec 3332a878-409a-49e6-928e-7347e021e624 +2024-09-10 15:46:21.66513 2024-09-10 15:46:21.665136 cognd 943618118 R rec 8b782cbc-125d-45e8-95a2-de623a32643a +2024-09-10 15:46:21.757539 2024-09-10 15:46:21.757632 cognd 943592267 R rec c7d821c6-e38d-4e76-b2cc-2880fbe945bf +2024-09-10 15:46:21.830181 2024-09-10 15:46:21.830193 cognd 943496799 R rec 9b4426e2-8dfe-405a-af33-148ec45e7974 +2024-09-10 15:46:21.939382 2024-09-10 15:46:21.939388 cognd 943138604 R rec ceb3918d-f118-4895-9a84-4e052d365245 +2024-09-10 15:46:22.019612 2024-09-10 15:46:22.019629 cognd 942370295 R rec 33febd9e-e314-4aa8-9130-b3be6f9ac7c6 +2024-09-10 15:46:22.104072 2024-09-10 15:46:22.104083 cognd 942203283 R rec 8e55fbd6-b929-4f85-91c4-bdf1b0a18695 +2024-09-10 15:46:22.196915 2024-09-10 15:46:22.196931 cognd 94206285X R rec 379d3b67-3801-4ad9-9236-79cf181bf717 +2024-09-10 15:46:22.273393 2024-09-10 15:46:22.273399 cognd 941781437 R rec e19e36cd-2516-4346-8413-08edd6f46707 +2024-09-10 15:46:22.380514 2024-09-10 15:46:22.38052 cognd 940910004 R rec dbed60ea-cc25-4f0a-a07b-78cde641b1ff +2024-09-10 15:46:22.456021 2024-09-10 15:46:22.456032 cognd 940842440 R rec f0fae02a-2615-4def-81d6-43c9338b8f82 +2024-09-10 15:46:22.532636 2024-09-10 15:46:22.532646 cognd 94063855X R rec 66b28479-1a71-484c-9a91-0f3f121a024f +2024-09-10 15:46:22.615503 2024-09-10 15:46:22.615515 cognd 940594919 R rec 90a6ff77-4210-4a71-ae23-e7c342f98117 +2024-09-10 15:46:22.686339 2024-09-10 15:46:22.686351 cognd 199289190 R rec e25d69ed-e38c-4bc9-8089-281abdf8f786 +2024-09-10 15:46:22.759736 2024-09-10 15:46:22.759748 cognd 199281823 R rec c89a71c2-2020-475c-9f52-0ac665dc8a50 +2024-09-10 15:46:22.839388 2024-09-10 15:46:22.8394 cognd 199193835 R rec 4985c3f8-b940-47b1-9bdd-2c0b3e52ceee +2024-09-10 15:46:22.912876 2024-09-10 15:46:22.912882 cognd 19917606X R rec d48bfd15-3cdc-4808-a143-77bf7c369027 +2024-09-10 15:46:22.996354 2024-09-10 15:46:22.996366 cognd 199170711 R rec 7d32e238-52db-47ed-96d4-25bf9cfe888e +2024-09-10 15:46:23.079769 2024-09-10 15:46:23.07978 cognd 19915046X R rec ec359ed3-bcdc-46c6-90a2-51f5162eb83b +2024-09-10 15:46:23.149734 2024-09-10 15:46:23.14974 cognd 199129215 R rec 3cb22395-ef0b-41f1-82b1-12f8b5ac5db3 +2024-09-10 15:46:23.219777 2024-09-10 15:46:23.219786 cognd 130791008 R rec 2057ede2-5551-4b04-90bb-13fc98dfcc58 +2024-09-10 15:46:23.305518 2024-09-10 15:46:23.305523 cognd 130750085 R rec 10e8fa04-d103-41ea-8f1f-d34cf07812db +2024-09-10 15:46:23.366281 2024-09-10 15:46:23.366286 cognd 130741094 R rec d66c25d2-df29-459b-9652-9a5598d85253 +2024-09-10 15:46:23.42758 2024-09-10 15:46:23.427585 cognd 130724572 R rec 984c2e9f-f29d-4c16-8e0a-96ef5d74085f +2024-09-10 15:46:23.500269 2024-09-10 15:46:23.500275 cognd 130715387 R rec c65f2b0f-6bef-469d-9765-b7ba86f2394c +2024-09-10 15:46:23.585514 2024-09-10 15:46:23.585528 cognd 130714941 R rec 8c26fcc4-5099-4e84-8dd0-709cb678a23c +2024-09-10 15:46:23.663324 2024-09-10 15:46:23.66333 cognd 130708291 R rec 1c4f280a-0d22-4a93-9cfe-d15bf114ed58 +2024-09-10 15:46:23.740141 2024-09-10 15:46:23.740156 cognd 130703907 R rec 1041c6cd-8f55-4079-8d60-b3436e893782 +2024-09-10 15:46:23.824158 2024-09-10 15:46:23.824169 cognd 130702722 R rec 833b8383-c2f8-49f8-b867-d549a8fabcc4 +2024-09-10 15:46:23.920386 2024-09-10 15:46:23.920397 cognd 13069374X R rec c6253644-058e-4711-8abe-cc9dde5fce0c +2024-09-10 15:46:24.015695 2024-09-10 15:46:24.015706 cognd 130692476 R rec e6fab6e0-eb7b-4e9c-ad65-9363594c8445 +2024-09-10 15:46:24.106904 2024-09-10 15:46:24.10691 cognd 04328762X R rec ad2e28bf-8185-47fb-8171-2487f1f0c9d7 +2024-09-10 15:46:24.195074 2024-09-10 15:46:24.195089 cognd 043282695 R rec e557c914-5090-48cf-a890-5e959b3456bd +2024-09-10 15:46:24.286887 2024-09-10 15:46:24.286899 cognd 04328213X R rec 22b601ca-dff8-40ca-9347-6b7ac32c9825 +2024-09-10 15:46:24.359204 2024-09-10 15:46:24.359209 cognd 043274994 R rec aff0a4de-0549-4837-849e-8665b8005aa9 +2024-09-10 15:46:24.420219 2024-09-10 15:46:24.420225 cognd 043252044 R rec 911d2e56-39a3-499b-9f0b-8b3f6fd6dbea +2024-09-10 15:46:24.492641 2024-09-10 15:46:24.492646 cognd 043203469 R rec 736b4289-9be4-4dd5-8313-d1e1898bc362 +2024-09-10 15:46:24.559373 2024-09-10 15:46:24.559378 cognd 043197574 R rec 9a7e0f67-5d40-4e46-9037-cfe36b21368b +2024-09-10 15:46:24.648158 2024-09-10 15:46:24.648164 cognd 043195733 R rec be68339e-886f-46c3-bb86-b74664e9304a +2024-09-10 15:46:24.718161 2024-09-10 15:46:24.718174 cognd 04313291X R rec 1a5439ce-3a33-4bf1-a5f2-0d80642c1c78 +2024-09-10 15:46:24.786422 2024-09-10 15:46:24.786431 cognd 043128629 R rec 2cea80ae-3ff8-4efc-8ecb-f0830bbce0cc +2024-09-10 15:46:24.849432 2024-09-10 15:46:24.849443 cognd 043062008 R rec 2ead0208-64e9-4ec2-9d44-f7ce4767324f +2024-09-10 15:46:24.916561 2024-09-10 15:46:24.91657 cognd 04304929X R rec d7a2e397-a0f1-47f2-820a-0041cb829479 +2024-09-10 15:46:24.980546 2024-09-10 15:46:24.980553 cognd 043035167 R rec 76ffc818-e52d-4b8e-a809-381b72c15070 +2024-09-10 15:46:25.047909 2024-09-10 15:46:25.047919 cognd 043022790 R rec f3e76ec3-da0b-487c-81f4-8c60218aa4e5 +2024-09-10 15:46:25.124503 2024-09-10 15:46:25.124511 cognd 043004164 R rec a17f7f5d-d643-44f5-8628-8c40dc99e096 +2024-09-10 15:46:25.185197 2024-09-10 15:46:25.185202 cognd 043003583 R rec 2e832c60-c3f6-426d-b3b8-f7d6024f782c +2024-09-10 15:46:25.260635 2024-09-10 15:46:25.260641 cognd 043001173 R rec feb84bf4-c7d2-42de-a02e-74b78b666f0f +2024-09-10 15:46:25.328338 2024-09-10 15:46:25.328343 cognd 04300024X R rec 43c920d2-58a1-452d-b369-9dfb16393927 +2024-09-10 15:46:25.389328 2024-09-10 15:46:25.389334 cognd 043000150 R rec b13bebfe-4090-4a73-bd14-d0428bebfae6 +2024-09-10 15:46:25.46129 2024-09-10 15:46:25.461296 cognd 042982553 R rec 97a20c54-c273-4dbe-8d3d-021052eaf853 +2024-09-10 15:46:25.526434 2024-09-10 15:46:25.526439 cognd 042981794 R rec 3b520143-9b25-4a0a-a693-036c51835bf0 +2024-09-10 15:46:25.598309 2024-09-10 15:46:25.598315 cognd 042940664 R rec b46e4952-9e89-460b-9219-57ad15e052d1 +2024-09-10 15:46:25.677488 2024-09-10 15:46:25.677494 cognd 042914582 R rec ebe24647-2521-41f9-8204-6b1009ea06b5 +2024-09-10 15:46:25.743209 2024-09-10 15:46:25.743214 cognd 042913748 R rec cc14e2c5-41d4-4791-bec7-450d9a4e2c62 +2024-09-10 15:46:25.804476 2024-09-10 15:46:25.804485 cognd 04291096X R rec 57674352-1f55-4aa2-9093-586193556e03 +2024-09-10 15:46:25.866492 2024-09-10 15:46:25.866495 cognd 042910870 R rec b5106b5c-b01e-459e-bb32-916fba921530 +2024-09-10 15:46:25.935749 2024-09-10 15:46:25.935755 cognd 042892562 R rec 15f2b31c-fe1d-4764-b9e1-9ba6d748a397 +2024-09-10 15:46:26.011138 2024-09-10 15:46:26.011144 cognd 042870526 R rec 09627c47-6f00-49d7-8947-d0baa261fec4 +2024-09-10 15:46:26.083923 2024-09-10 15:46:26.083929 cognd 042863627 R rec 961c9983-5833-4f40-bd37-fcd9c909ec9f +2024-09-10 15:46:26.143239 2024-09-10 15:46:26.143244 cognd 042848792 R rec f1b09bdc-819c-4cb5-bbb2-1bef329146ad +2024-09-10 15:46:26.210063 2024-09-10 15:46:26.210071 cognd 042841259 R rec e7d29610-a678-4621-bfbe-5d67288f2111 +2024-09-10 15:46:26.294163 2024-09-10 15:46:26.294168 cognd 042819458 R rec d7a66dde-a0fc-41e4-8a0a-8c77a88942b8 +2024-09-10 15:46:26.359499 2024-09-10 15:46:26.359504 cognd 042815479 R rec 80e44e40-885d-4363-8c91-aa2dce35fae1 +2024-09-10 15:46:26.427042 2024-09-10 15:46:26.42705 cognd 042777089 R rec ca9d259f-a276-407d-8331-87625cb29cfb +2024-09-10 15:46:26.494309 2024-09-10 15:46:26.494313 cognd 042765315 R rec 4b9935bf-2348-4264-a57b-6e24ee524896 +2024-09-10 15:46:26.567532 2024-09-10 15:46:26.567538 cognd 042731887 R rec 84ff77de-cec9-40f5-8179-d83673746594 +2024-09-10 15:46:26.631651 2024-09-10 15:46:26.631657 cognd 042731437 R rec 45a93f0b-ead4-4c40-882c-f01e373f0e61 +2024-09-10 15:46:26.692632 2024-09-10 15:46:26.692643 cognd 042720133 R rec 3929f7a2-4a9d-4151-8438-17ca1e077ad1 +2024-09-10 15:46:26.751533 2024-09-10 15:46:26.751539 cognd 04266702X R rec c2845a8f-4ead-4a6f-9b51-8da8b2660e4b +2024-09-10 15:46:26.810651 2024-09-10 15:46:26.810656 cognd 042653304 R rec 37c63087-222d-47f2-89e7-1354bbcb8f41 +2024-09-10 15:46:26.87646 2024-09-10 15:46:26.876469 cognd 042645212 R rec 280a7c1b-f698-4743-a3ce-9d5be61ef7c8 +2024-09-10 15:46:26.957736 2024-09-10 15:46:26.957745 cognd 042627222 R rec 2438bba9-c4b6-49b1-be62-e734ed317b39 +2024-09-10 15:46:27.03617 2024-09-10 15:46:27.036181 cognd 042586208 R rec 0f9c8f1f-086e-434e-8c51-840ba7ef8702 +2024-09-10 15:46:27.122535 2024-09-10 15:46:27.122541 cognd 042578205 R rec 3be9ac70-265a-483e-9f69-36f0b6b8c53a +2024-09-10 15:46:27.200344 2024-09-10 15:46:27.200353 cognd 042573254 R rec c0f65f74-4c30-4adc-bcb6-f2199d761680 +2024-09-10 15:46:27.258867 2024-09-10 15:46:27.258872 cognd 042536367 R rec 9e106cb8-2728-456c-ab20-ed2eeca8beca +2024-09-10 15:46:27.327035 2024-09-10 15:46:27.327044 cognd 042496675 R rec 10add6ec-77bb-49a0-aec7-e4784c767794 +2024-09-10 15:46:27.386556 2024-09-10 15:46:27.386561 cognd 042486386 R rec d4dc409e-d193-45ce-9be1-fd3220b50b8d +2024-09-10 15:46:27.444091 2024-09-10 15:46:27.444097 cognd 042447690 R rec 377d1378-3906-4b63-a72f-4c14a2e35633 +2024-09-10 15:46:27.500128 2024-09-10 15:46:27.500133 cognd 042438799 R rec 071ef4dd-5b13-4d68-a06d-03f40a164358 +2024-09-10 15:46:27.560713 2024-09-10 15:46:27.560718 cognd 042425875 R rec 2aa4a8a3-5e95-41e4-9945-dddd086356c7 +2024-09-10 15:46:27.63138 2024-09-10 15:46:27.631396 cognd 042422825 R rec f5c29563-8c38-428d-b2d7-6a898b306a46 +2024-09-10 15:46:27.697024 2024-09-10 15:46:27.69703 cognd 042380480 R rec d01ad928-4416-4771-9e39-c66f78b27998 +2024-09-10 15:46:27.761113 2024-09-10 15:46:27.761118 cognd 042374480 R rec aa95ce1d-e5c5-49ab-9843-60c4b848211c +2024-09-10 15:46:27.830767 2024-09-10 15:46:27.830783 cognd 042325900 R rec 2b438fa5-f933-44bd-bc85-7e3723f14aa5 +2024-09-10 15:46:27.912289 2024-09-10 15:46:27.9123 cognd 042325897 R rec 27ca2fa2-68ed-4a33-93bb-ab75cc74fb3f +2024-09-10 15:46:27.99341 2024-09-10 15:46:27.993422 cognd 042313414 R rec 9cedad75-a457-463c-9442-31bcd4d690af +2024-09-10 15:46:28.085624 2024-09-10 15:46:28.085636 cognd 042277558 R rec 7146c514-059f-485b-a1d9-05053b195300 +2024-09-10 15:46:28.154426 2024-09-10 15:46:28.15443 cognd 042266289 R rec cdfb03c8-ad3d-4583-9658-307e8a9fcc3d +2024-09-10 15:46:28.221888 2024-09-10 15:46:28.2219 cognd 042241839 R rec e13e70a1-30d3-472e-b12b-7e4391f36f46 +2024-09-10 15:46:28.313496 2024-09-10 15:46:28.313501 cognd 042230284 R rec 4ee1d24a-3c80-4a59-b190-e1c0dc829bc8 +2024-09-10 15:46:28.400555 2024-09-10 15:46:28.400572 cognd 042213010 R rec 201425e7-9d4d-4c27-818c-9835d5207e03 +2024-09-10 15:46:28.465412 2024-09-10 15:46:28.465417 cognd 042183154 R rec aabdee19-7c93-4b7e-a9fe-8885edd418f8 +2024-09-10 15:46:28.538426 2024-09-10 15:46:28.538431 cognd 04216818X R rec d5e557ec-fe85-46d5-b0cc-1c960ebc2880 +2024-09-10 15:46:28.601231 2024-09-10 15:46:28.601245 cognd 042161258 R rec 0b814708-1601-4989-8f64-788cbcd27db9 +2024-09-10 15:46:28.671781 2024-09-10 15:46:28.671786 cognd 042147670 R rec 4b6aebde-505b-408b-a297-5da39477e5b4 +2024-09-10 15:46:28.752525 2024-09-10 15:46:28.752541 cognd 042142237 R rec e2d7f9a1-6662-40e3-a7f5-1f2951fb27de +2024-09-10 15:46:28.845408 2024-09-10 15:46:28.845426 cognd 042137519 R rec 37d2f807-464b-43da-be0f-97aef0680ec9 +2024-09-10 15:46:28.931071 2024-09-10 15:46:28.931077 cognd 042124093 R rec 7ce6ea75-c6d4-48ad-aa6d-584770d78ed8 +2024-09-10 15:46:29.016481 2024-09-10 15:46:29.016496 cognd 042123909 R rec 3edc7eb1-60d7-4282-83dd-d8361681d583 +2024-09-10 15:46:29.100373 2024-09-10 15:46:29.100378 cognd 04211277X R rec a1ee0dba-39ba-4448-b93d-ebf6ddf1c4c5 +2024-09-10 15:46:29.171369 2024-09-10 15:46:29.171374 cognd 042104378 R rec 06acd601-6e6d-4cd0-81d6-bc2a3fe2638b +2024-09-10 15:46:29.242868 2024-09-10 15:46:29.242879 cognd 042100917 R rec da684ab8-46eb-4fc7-8405-bd7a33313992 +2024-09-10 15:46:29.329382 2024-09-10 15:46:29.329392 cognd 042100445 R rec 0d4f5158-17c5-4531-885a-36768533b475 +2024-09-10 15:46:29.396411 2024-09-10 15:46:29.39642 cognd 042081033 R rec cbf6a4fd-0678-4974-a701-fcaa8b99642f +2024-09-10 15:46:29.455725 2024-09-10 15:46:29.455732 cognd 042074150 R rec dfdae151-3c03-4418-a878-8e5eb1dd869d +2024-09-10 15:46:29.517986 2024-09-10 15:46:29.517991 cognd 042044529 R rec 49893f23-794b-4bea-8524-784c41192abe +2024-09-10 15:46:29.574729 2024-09-10 15:46:29.574734 cognd 042033276 R rec c3511ed6-a0c6-4565-bfc9-43b7f13eab34 +2024-09-10 15:46:29.640017 2024-09-10 15:46:29.640022 cognd 042022622 R rec bcfe1b92-ca2d-4798-b331-6ef09b10d106 +2024-09-10 15:46:29.702154 2024-09-10 15:46:29.702159 cognd 042020646 R rec a314f457-efa4-4600-bd1b-95182000280d +2024-09-10 15:46:29.777054 2024-09-10 15:46:29.777064 cognd 041969596 R rec 79f484e5-1277-4099-9604-91cde0b9abc7 +2024-09-10 15:46:29.856582 2024-09-10 15:46:29.856587 cognd 041966716 R rec a964b72e-e52a-45c9-872c-840c8d049a44 +2024-09-10 15:46:29.941488 2024-09-10 15:46:29.941494 cognd 041962923 R rec de6e10e4-7b57-41cf-a354-26e59bac222b +2024-09-10 15:46:30.026116 2024-09-10 15:46:30.026134 cognd 041961080 R rec 678ce66a-a80d-4d81-90bb-5bb7790f4532 +2024-09-10 15:46:30.108351 2024-09-10 15:46:30.108357 cognd 041944240 R rec a93db224-a347-4199-bee5-42929786a93d +2024-09-10 15:46:30.177542 2024-09-10 15:46:30.177546 cognd 041935659 R rec a0eb1905-d264-44cb-88d2-9534bfbd30d8 +2024-09-10 15:46:30.25847 2024-09-10 15:46:30.258476 cognd 04193458X R rec 5de1f98a-fcb7-4922-9c04-f7178fe17e33 +2024-09-10 15:46:30.338067 2024-09-10 15:46:30.338072 cognd 041920287 R rec 699423b3-6c9e-44c5-8b6c-fc275963c876 +2024-09-10 15:46:30.396181 2024-09-10 15:46:30.396187 cognd 041920279 R rec b8841eeb-6f78-4f0c-bfdd-0b7c7a1474ea +2024-09-10 15:46:30.466888 2024-09-10 15:46:30.466893 cognd 041917413 R rec 59ab537c-43f2-47d2-84b2-2df1337aae78 +2024-09-10 15:46:30.524257 2024-09-10 15:46:30.524262 cognd 041913574 R rec 1961204a-93cf-48f4-946c-1faebb55247b +2024-09-10 15:46:30.579902 2024-09-10 15:46:30.579907 cognd 041912888 R rec ab6b440a-55f3-4b4a-913d-7046c49d7c33 +2024-09-10 15:46:30.666424 2024-09-10 15:46:30.666429 cognd 041909836 R rec 4971051a-fb1d-4b89-b4a8-94348c095282 +2024-09-10 15:46:30.761861 2024-09-10 15:46:30.761867 cognd 041906683 R rec b2b69932-108d-4f3a-8e6b-0374b0a66e2b +2024-09-10 15:46:30.85886 2024-09-10 15:46:30.858866 cognd 041901398 R rec f3688764-c87f-42f9-9bc2-8f3dd7afd68f +2024-09-10 15:46:30.926134 2024-09-10 15:46:30.926141 cognd 041890353 R rec 66ef5a6b-f093-4cda-a48b-b6e5704159e4 +2024-09-10 15:46:30.985986 2024-09-10 15:46:30.985991 cognd 04188566X R rec 998a8252-4ce4-4e9f-ad71-3c1cecd3dfb9 +2024-09-10 15:46:31.05101 2024-09-10 15:46:31.051017 cognd 041856333 R rec 50ac9194-9250-44a8-883d-61ba7ea2e135 +2024-09-10 15:46:31.115139 2024-09-10 15:46:31.115145 cognd 041856325 R rec 1c1e9341-80a4-4e89-aa88-5300f6659e32 +2024-09-10 15:46:31.186101 2024-09-10 15:46:31.186107 cognd 041848020 R rec b8d57bf2-e676-4e5c-845b-5697b8eea2c9 +2024-09-10 15:46:31.277057 2024-09-10 15:46:31.277063 cognd 041844793 R rec a59a03d7-2ef0-4473-8b9f-af3ef46c5bc0 +2024-09-10 15:46:31.337942 2024-09-10 15:46:31.337948 cognd 041844513 R rec 5dc0c06f-b140-42db-9b16-0b271b82d79d +2024-09-10 15:46:31.399031 2024-09-10 15:46:31.399037 cognd 041840658 R rec ba43892e-5dd3-49f8-95a9-a855521e5bcb +2024-09-10 15:46:31.457601 2024-09-10 15:46:31.457606 cognd 041830180 R rec 8630b8cf-d7b9-4399-93fb-377fb3a76395 +2024-09-10 15:46:31.523682 2024-09-10 15:46:31.523687 cognd 041822218 R rec d238843a-2971-42a5-9ba4-6710a6252225 +2024-09-10 15:46:31.586082 2024-09-10 15:46:31.586087 cognd 041815173 R rec 44713465-8ae7-495a-92bf-81f75905638d +2024-09-10 15:46:31.659411 2024-09-10 15:46:31.659417 cognd 041810252 R rec 2fc73658-9407-40be-b7f8-436baf0fe915 +2024-09-10 15:46:31.747443 2024-09-10 15:46:31.747455 cognd 041806417 R rec 1d40e584-0494-4695-b36b-205a7cdbd878 +2024-09-10 15:46:31.831916 2024-09-10 15:46:31.831921 cognd 041796462 R rec c07d821d-87bd-48ef-9fb8-da6c3f22f15d +2024-09-10 15:46:31.916431 2024-09-10 15:46:31.916437 cognd 041794923 R rec 378464a0-488a-45f3-9c13-8cf4dbae68dc +2024-09-10 15:46:31.97926 2024-09-10 15:46:31.979263 cognd 041789989 R rec a5a1f213-ba7c-47aa-a2c8-0e49a96f0bfa +2024-09-10 15:46:32.041394 2024-09-10 15:46:32.0414 cognd 041787250 R rec c00d05b0-206a-460d-92c5-48aeb4352313 +2024-09-10 15:46:32.102845 2024-09-10 15:46:32.102851 cognd 041785134 R rec dc2d6af7-843d-4bc2-b79d-bcf79b393fd9 +2024-09-10 15:46:32.162538 2024-09-10 15:46:32.162543 cognd 041782445 R rec 9aaf065b-eab7-4ba1-a6c1-cfd5e42b05f8 +2024-09-10 15:46:32.222692 2024-09-10 15:46:32.222698 cognd 041766040 R rec baaf19c9-8120-4e86-9490-cc81aa238d00 +2024-09-10 15:46:32.294242 2024-09-10 15:46:32.294245 cognd 041762223 R rec 28084bc8-ee7c-4d65-90af-6b86aa27f955 +2024-09-10 15:46:32.369 2024-09-10 15:46:32.369005 cognd 041753615 R rec ff3bf84c-45ce-4203-a4bb-c50c4a53ba3c +2024-09-10 15:46:32.437791 2024-09-10 15:46:32.437799 cognd 041748379 R rec 8d81057a-5945-4456-843c-5329038285e7 +2024-09-10 15:46:32.513753 2024-09-10 15:46:32.513758 cognd 041734467 R rec 2d5f985b-0bfb-4ba0-bd5a-c6691388a103 +2024-09-10 15:46:32.574125 2024-09-10 15:46:32.57413 cognd 041730380 R rec 739ca531-a4ad-4d3b-9729-89f90d750414 +2024-09-10 15:46:32.637189 2024-09-10 15:46:32.637201 cognd 041718380 R rec a0f8708d-c069-470a-8e8b-74887f016fba +2024-09-10 15:46:32.703464 2024-09-10 15:46:32.703481 cognd 041717007 R rec 901e7221-1340-4555-b61d-8f1764c1f1ac +2024-09-10 15:46:32.767341 2024-09-10 15:46:32.767349 cognd 041712900 R rec a8b04c10-352a-4f5d-b37c-fa556a0d4327 +2024-09-10 15:46:32.82919 2024-09-10 15:46:32.829224 cognd 041707222 R rec 20c218c8-f135-494d-9874-b74384617d1f +2024-09-10 15:46:32.904098 2024-09-10 15:46:32.904104 cognd 04170553X R rec f9169c90-b5c6-464c-99ef-3c5fe4e11336 +2024-09-10 15:46:32.997514 2024-09-10 15:46:32.997519 cognd 041701852 R rec d9c9ed78-ff1d-4cca-905a-01ae14943a11 +2024-09-10 15:46:33.057396 2024-09-10 15:46:33.057402 cognd 041699122 R rec 52289deb-b557-4120-90be-94f48b303382 +2024-09-10 15:46:33.126519 2024-09-10 15:46:33.126524 cognd 041699114 R rec b19a788c-2693-4e8d-87df-30c0f6251592 +2024-09-10 15:46:33.189343 2024-09-10 15:46:33.189352 cognd 041696492 R rec 353e7b49-aa00-4eee-a7e2-23abc1279ae8 +2024-09-10 15:46:33.265138 2024-09-10 15:46:33.265144 cognd 041693477 R rec a2383bcf-ae7e-4ede-8d92-92b35b56ffc7 +2024-09-10 15:46:33.335522 2024-09-10 15:46:33.335528 cognd 041692705 R rec f1f61129-f4e4-4098-af34-00cc67575105 +2024-09-10 15:46:33.39384 2024-09-10 15:46:33.393846 cognd 041689763 R rec b9105c31-44f3-4b69-9657-6c24a93b7e9c +2024-09-10 15:46:33.45619 2024-09-10 15:46:33.456196 cognd 041687167 R rec 25285877-0d87-436a-9df1-410964fcd681 +2024-09-10 15:46:33.51366 2024-09-10 15:46:33.513666 cognd 041667689 R rec 8b867c00-ac34-479c-956d-057c06546bf7 +2024-09-10 15:46:33.577046 2024-09-10 15:46:33.577051 cognd 041667670 R rec 74d7b204-5e1c-4e24-8ded-1a025749a079 +2024-09-10 15:46:33.643284 2024-09-10 15:46:33.64329 cognd 041663659 R rec d591cfef-2d4c-45da-94fb-57486319e06e +2024-09-10 15:46:33.717419 2024-09-10 15:46:33.717425 cognd 04165725X R rec 6fa667bc-ce36-476b-8259-7c139ccdb107 +2024-09-10 15:46:33.774437 2024-09-10 15:46:33.774443 cognd 041656032 R rec a0ec1d9d-a61e-44b9-8924-a1a814f3a40f +2024-09-10 15:46:33.837405 2024-09-10 15:46:33.83741 cognd 041655974 R rec 521c4875-38a5-4e87-aa28-6198181668ea +2024-09-10 15:46:33.895918 2024-09-10 15:46:33.895924 cognd 041655168 R rec 8fc0e1a7-93ff-490d-9fdc-6a7c9d468f60 +2024-09-10 15:46:33.960838 2024-09-10 15:46:33.960846 cognd 041654013 R rec 3ebbe32e-dd97-453b-9416-4a0f18b90eb9 +2024-09-10 15:46:34.022318 2024-09-10 15:46:34.022323 cognd 041653386 R rec dfa3c5df-d926-4561-9150-a3a5dd49b848 +2024-09-10 15:46:34.081404 2024-09-10 15:46:34.08141 cognd 041647459 R rec 32e86537-5ac8-48e9-8747-575e12e2af6f +2024-09-10 15:46:34.141366 2024-09-10 15:46:34.141372 cognd 041637763 R rec 18ea13ba-82ae-4c18-a095-3e5c86ab0859 +2024-09-10 15:46:34.212915 2024-09-10 15:46:34.212921 cognd 041636422 R rec d6837965-e5b8-4d53-954e-43d439c688b7 +2024-09-10 15:46:34.285261 2024-09-10 15:46:34.285268 cognd 041633237 R rec 06a628f5-0de8-4962-afb3-c5db37859233 +2024-09-10 15:46:34.348103 2024-09-10 15:46:34.348109 cognd 041616715 R rec e7eef7c1-775a-497c-ae08-679c56fbe040 +2024-09-10 15:46:34.411682 2024-09-10 15:46:34.411687 cognd 041614909 R rec 4979492d-1164-4a74-8e90-b62351bd1f66 +2024-09-10 15:46:34.477611 2024-09-10 15:46:34.477616 cognd 041614836 R rec 2327f4fd-bd2d-4b2e-83ac-39ec6991e957 +2024-09-10 15:46:34.543364 2024-09-10 15:46:34.543371 cognd 041613872 R rec 45d2442b-917b-45a1-802f-f98c3f295b6c +2024-09-10 15:46:34.618053 2024-09-10 15:46:34.618063 cognd 041613597 R rec 3eb587ba-18d7-4e57-bae1-7149785ddfa6 +2024-09-10 15:46:34.679812 2024-09-10 15:46:34.679818 cognd 041606760 R rec eb222c96-9e28-4b8d-90e4-c120676f7be3 +2024-09-10 15:46:34.740543 2024-09-10 15:46:34.740548 cognd 041599470 R rec 4a5ba9dc-6d44-4d68-9782-be243cb09a18 +2024-09-10 15:46:34.804988 2024-09-10 15:46:34.804994 cognd 041597508 R rec 7b0735d8-7234-4224-89f7-94a974359662 +2024-09-10 15:46:34.866149 2024-09-10 15:46:34.866155 cognd 041594800 R rec 4f9ef989-1c16-4b36-a0f1-ed880a845ec7 +2024-09-10 15:46:34.946293 2024-09-10 15:46:34.946299 cognd 041591267 R rec 3d605c95-ea75-4d09-a4c9-5510e917d1b7 +2024-09-10 15:46:35.005763 2024-09-10 15:46:35.005771 cognd 041585623 R rec 1f5b642e-3a6c-42cf-a831-1098603974cd +2024-09-10 15:46:35.06877 2024-09-10 15:46:35.068776 cognd 041584929 R rec fb3c4529-a8a5-4ed4-a78c-ac6d5576907f +2024-09-10 15:46:35.127709 2024-09-10 15:46:35.127718 cognd 041582667 R rec 7ea8ecfd-5a8f-4e1e-8612-7f87b7b18719 +2024-09-10 15:46:35.190743 2024-09-10 15:46:35.190748 cognd 041570170 R rec 374e251a-4f1e-4ed3-9510-a53f2ca2edb8 +2024-09-10 15:46:35.254633 2024-09-10 15:46:35.254639 cognd 041570103 R rec 833a78f5-f1e2-4644-99aa-45fe0940f95a +2024-09-10 15:46:35.326241 2024-09-10 15:46:35.326247 cognd 041565568 R rec d18130a3-1179-4359-9d0e-7675da8c299d +2024-09-10 15:46:35.394691 2024-09-10 15:46:35.394696 cognd 041563247 R rec a622a24e-4a7c-4eff-afff-022afa2b9323 +2024-09-10 15:46:35.477449 2024-09-10 15:46:35.477455 cognd 041553128 R rec c058bf28-6a43-4746-9a9f-9763f732bded +2024-09-10 15:46:35.561362 2024-09-10 15:46:35.561367 cognd 041544323 R rec 56fa343f-5f5c-4693-a73f-ce7314af724e +2024-09-10 15:46:35.622627 2024-09-10 15:46:35.622633 cognd 041542436 R rec 571d0907-8ad6-4421-a016-9646feee2742 +2024-09-10 15:46:35.684277 2024-09-10 15:46:35.684283 cognd 041534646 R rec 3abbc441-492e-429d-b159-7443dbafe76f +2024-09-10 15:46:35.743404 2024-09-10 15:46:35.743409 cognd 041531426 R rec 633d041a-44dd-4ca1-a960-d2d42ab4b33b +2024-09-10 15:46:35.806717 2024-09-10 15:46:35.806722 cognd 04152697X R rec 9899032e-f980-4b4c-9374-1588f5b1114c +2024-09-10 15:46:35.867944 2024-09-10 15:46:35.86795 cognd 041523393 R rec 6f0a9b9f-0ccf-4e86-a551-b0591c5fb0dc +2024-09-10 15:46:35.933817 2024-09-10 15:46:35.933823 cognd 041523318 R rec 000d2800-3347-46a1-9c1a-a8a7c509e48d +2024-09-10 15:46:35.995913 2024-09-10 15:46:35.995919 cognd 04151923X R rec 827a3408-592e-4fe8-b9b8-db12e952ee91 +2024-09-10 15:46:36.057155 2024-09-10 15:46:36.05716 cognd 041518160 R rec 4c543bdf-f54a-42a1-bb67-2ef8f4c1fcac +2024-09-10 15:46:36.123182 2024-09-10 15:46:36.123187 cognd 041516613 R rec d71110ad-e0db-41a7-ac6c-28689119c067 +2024-09-10 15:46:36.192108 2024-09-10 15:46:36.192114 cognd 041515420 R rec 0f0f791a-58e4-4cd9-95f0-f90342b0c5c0 +2024-09-10 15:46:36.266772 2024-09-10 15:46:36.266776 cognd 041512820 R rec 098ba4c0-ad1a-4b8a-911c-38e4beb5d364 +2024-09-10 15:46:36.325635 2024-09-10 15:46:36.325639 cognd 041509412 R rec 4bd44d49-4f36-4b95-aefc-9488a1d9a4fa +2024-09-10 15:46:36.385372 2024-09-10 15:46:36.385378 cognd 041505336 R rec cb79f0b0-4ee5-4d35-9235-5ab705df92f1 +2024-09-10 15:46:36.447309 2024-09-10 15:46:36.447314 cognd 041505077 R rec ff7ebc35-df8c-4f7c-a214-a98ec8fb15e6 +2024-09-10 15:46:36.510616 2024-09-10 15:46:36.510619 cognd 04150335X R rec 3367fdc8-0640-46bb-b37f-bc2003df6045 +2024-09-10 15:46:36.568785 2024-09-10 15:46:36.568793 cognd 041502264 R rec 339f14dc-bb89-485f-8033-788252482ff6 +2024-09-10 15:46:36.629287 2024-09-10 15:46:36.629293 cognd 041487109 R rec c826c580-da09-48e9-a398-df4b8896d016 +2024-09-10 15:46:36.698064 2024-09-10 15:46:36.698073 cognd 041477936 R rec 20f81178-d0e2-4fc9-b3ce-fb19f4b025f9 +2024-09-10 15:46:36.766022 2024-09-10 15:46:36.766026 cognd 041470966 R rec 975d7e76-5c5b-419b-8fae-71fc8758ab0f +2024-09-10 15:46:36.8453 2024-09-10 15:46:36.845305 cognd 041470044 R rec 3cb2ebbb-2afa-4766-8cf5-63f279c62066 +2024-09-10 15:46:36.926702 2024-09-10 15:46:36.926709 cognd 04146768X R rec 54b855a3-1fa4-4c09-8ead-2ad5479c8601 +2024-09-10 15:46:37.007411 2024-09-10 15:46:37.007416 cognd 041467612 R rec 9497cdc1-96ed-43e7-9b49-9fbb3537ecd8 +2024-09-10 15:46:37.128079 2024-09-10 15:46:37.128086 cognd 041466578 R rec 214fb374-a4ba-4306-8513-9dad2e0c7929 +2024-09-10 15:46:37.225889 2024-09-10 15:46:37.225894 cognd 041466365 R rec 1ebc8040-3d9b-4b01-89a6-12b4387a3eec +2024-09-10 15:46:37.294377 2024-09-10 15:46:37.294383 cognd 041463692 R rec 9c5a8a92-c703-4696-b0b6-e4a82ff47289 +2024-09-10 15:46:37.366976 2024-09-10 15:46:37.366981 cognd 041450809 R rec 93a970df-cdb4-499a-951f-195205bb1dc9 +2024-09-10 15:46:37.440941 2024-09-10 15:46:37.440946 cognd 041450469 R rec ede9067d-5494-4686-b324-9a604e49bf71 +2024-09-10 15:46:37.514086 2024-09-10 15:46:37.514092 cognd 041446186 R rec 6e99ef05-e501-4b26-86aa-2b927ce76833 +2024-09-10 15:46:37.578978 2024-09-10 15:46:37.578983 cognd 041444280 R rec ec4f0f55-df33-4816-b896-2f284d533e74 +2024-09-10 15:46:37.66531 2024-09-10 15:46:37.665318 cognd 041439902 R rec d11dfe1b-6dc7-4fb6-9d27-d1eb6b1216be +2024-09-10 15:46:37.728649 2024-09-10 15:46:37.728656 cognd 04143823X R rec 73059132-3452-41d1-9656-46b4d2202754 +2024-09-10 15:46:37.800496 2024-09-10 15:46:37.800502 cognd 041437896 R rec 9a4ce80f-4701-43d9-b0db-366fa67cfb3b +2024-09-10 15:46:37.860185 2024-09-10 15:46:37.86019 cognd 041431049 R rec 69cce0fc-8d13-4732-a4a7-92919627ab64 +2024-09-10 15:46:37.925072 2024-09-10 15:46:37.925078 cognd 04143028X R rec a86e2453-2f92-451a-9aaa-0f0a8acce46b +2024-09-10 15:46:37.985454 2024-09-10 15:46:37.98546 cognd 04142641X R rec 5aa38a48-d340-4822-9134-0cc4b46f6113 +2024-09-10 15:46:38.04216 2024-09-10 15:46:38.042165 cognd 04142574X R rec 3b51e6c1-3cc2-4740-8dbe-b5cb4aab498f +2024-09-10 15:46:38.114785 2024-09-10 15:46:38.114791 cognd 041424573 R rec cc1bba2a-e2e4-476e-a31d-2434b8bb8370 +2024-09-10 15:46:38.200689 2024-09-10 15:46:38.200697 cognd 041424492 R rec af94cdd4-d6b5-40ec-94dc-ada0b2345282 +2024-09-10 15:46:38.260538 2024-09-10 15:46:38.260542 cognd 041422260 R rec dbef0a2b-eebe-44cc-82a5-56b72256627e +2024-09-10 15:46:38.326012 2024-09-10 15:46:38.326017 cognd 041422058 R rec ad60e590-e79a-424a-a79e-72bbad9539f4 +2024-09-10 15:46:38.390518 2024-09-10 15:46:38.390562 cognd 041419677 R rec 0e58eec4-7d03-4546-a3db-94b29290d6e6 +2024-09-10 15:46:38.455984 2024-09-10 15:46:38.45599 cognd 041411137 R rec 00e2fc4f-b98c-41b3-91de-544f9716495a +2024-09-10 15:46:38.523793 2024-09-10 15:46:38.523809 cognd 041409965 R rec 6de857b8-9d24-48c6-bb1f-d0f8e5130e47 +2024-09-10 15:46:38.608692 2024-09-10 15:46:38.608703 cognd 041409760 R rec f6e7e622-7977-4551-ba38-de7c1d3b60f8 +2024-09-10 15:46:38.69673 2024-09-10 15:46:38.696736 cognd 041392450 R rec d866a850-f646-477d-a7bf-ad2c8c7397fe +2024-09-10 15:46:38.755308 2024-09-10 15:46:38.755312 cognd 041388984 R rec 03d0b6db-b4fe-466c-8d69-b406be367118 +2024-09-10 15:46:38.814131 2024-09-10 15:46:38.814137 cognd 041378407 R rec 7f130a05-60bb-4243-878b-5d62c9ef71d0 +2024-09-10 15:46:38.884299 2024-09-10 15:46:38.884311 cognd 041374444 R rec c35978b6-abd7-49cb-b464-1ff403c0642e +2024-09-10 15:46:38.949512 2024-09-10 15:46:38.949518 cognd 041369785 R rec 492ef386-2f8f-443b-b9e2-1251b853f004 +2024-09-10 15:46:39.030665 2024-09-10 15:46:39.030678 cognd 041368517 R rec 3e4883a8-4ce0-4fc0-aac6-ec70da54e446 +2024-09-10 15:46:39.098252 2024-09-10 15:46:39.09836 cognd 041366352 R rec 8380e7fe-bec3-48fe-b6e9-e8e4e0fc47af +2024-09-10 15:46:39.170164 2024-09-10 15:46:39.170175 cognd 041365844 R rec 74954381-c940-4044-ac84-3dc602dc550c +2024-09-10 15:46:39.238005 2024-09-10 15:46:39.238012 cognd 041354710 R rec d2666f28-32e3-4978-b978-25e5e9977fe4 +2024-09-10 15:46:39.319947 2024-09-10 15:46:39.319959 cognd 041345835 R rec 7f3872f8-c987-4f51-8bc4-938df0f982ba +2024-09-10 15:46:39.412867 2024-09-10 15:46:39.412871 cognd 04134166X R rec 6f197ee6-efb3-410a-9e51-7539d438dc5b +2024-09-10 15:46:39.474214 2024-09-10 15:46:39.474219 cognd 041340892 R rec 6275c7a4-1c09-40e1-afd6-c3ae9d7914b9 +2024-09-10 15:46:39.541794 2024-09-10 15:46:39.5418 cognd 041333004 R rec 67acc052-b205-4ffd-a817-480eeb2b720a +2024-09-10 15:46:39.635879 2024-09-10 15:46:39.635895 cognd 041332997 R rec ffdd29a7-8848-4ecd-8c3a-293902c7b916 +2024-09-10 15:46:39.701448 2024-09-10 15:46:39.701454 cognd 041332237 R rec 2ea329ff-560a-4005-a5a5-48bdfed3dd07 +2024-09-10 15:46:39.761083 2024-09-10 15:46:39.761088 cognd 041326202 R rec 5342bf28-8400-43c5-86e6-d2106ddb74f4 +2024-09-10 15:46:39.819819 2024-09-10 15:46:39.819826 cognd 041325710 R rec 6da18d94-1ab2-4216-bb71-16a73606cc40 +2024-09-10 15:46:39.879215 2024-09-10 15:46:39.879225 cognd 04132305X R rec 15b98891-9e86-4cf3-a8bc-b51e4b509477 +2024-09-10 15:46:39.945012 2024-09-10 15:46:39.945021 cognd 041322886 R rec 36710045-4093-4e08-994d-bfc5d47e64f1 +2024-09-10 15:46:40.006592 2024-09-10 15:46:40.006597 cognd 041319125 R rec 081c16f7-8f46-4d69-bb6c-8d5d905138a8 +2024-09-10 15:46:40.086913 2024-09-10 15:46:40.086919 cognd 041317718 R rec 9e1fede7-1b9a-48ef-b262-3a6d2e9cfd89 +2024-09-10 15:46:40.16197 2024-09-10 15:46:40.16198 cognd 041312368 R rec b2a24631-7115-4ce7-952b-29b04649085c +2024-09-10 15:46:40.239709 2024-09-10 15:46:40.239719 cognd 041308166 R rec 2c6c1930-e95e-405b-b138-aab31d6acb95 +2024-09-10 15:46:40.311333 2024-09-10 15:46:40.311338 cognd 041308107 R rec 19d9ccd1-63da-4e5e-9f56-af9410a50974 +2024-09-10 15:46:40.372644 2024-09-10 15:46:40.372652 cognd 041303768 R rec 6fc9fc36-e5f1-4aa7-8f37-578b8e627d3f +2024-09-10 15:46:40.438073 2024-09-10 15:46:40.438078 cognd 041299604 R rec 96c1cb09-cb54-4b2e-913a-09f30ee0a4d3 +2024-09-10 15:46:40.517639 2024-09-10 15:46:40.517648 cognd 041287045 R rec 742539d2-5db1-4e5a-ba4f-0cad82d5db85 +2024-09-10 15:46:40.590187 2024-09-10 15:46:40.590192 cognd 04128237X R rec ecaf9275-c15a-4e65-b29d-00ac089b163b +2024-09-10 15:46:40.65496 2024-09-10 15:46:40.654966 cognd 041281632 R rec d2bb1c68-440d-49ba-aba1-e60939e7cc00 +2024-09-10 15:46:40.713657 2024-09-10 15:46:40.713663 cognd 041273230 R rec 329caccd-2774-4dd2-947a-ee4e1cefa701 +2024-09-10 15:46:40.77213 2024-09-10 15:46:40.772136 cognd 041269950 R rec 7d264a11-65ea-4429-81a3-b4d61f92e8be +2024-09-10 15:46:40.842561 2024-09-10 15:46:40.842566 cognd 041258584 R rec 5b737d7a-705c-4b2c-946a-3377cc462a3b +2024-09-10 15:46:40.920127 2024-09-10 15:46:40.920132 cognd 041255887 R rec 850edf62-e8ee-4058-81c1-a1946570096e +2024-09-10 15:46:40.981375 2024-09-10 15:46:40.98138 cognd 041252896 R rec cc3264bd-7858-4fd4-9325-ba2367d4cffe +2024-09-10 15:46:41.050798 2024-09-10 15:46:41.050804 cognd 041245296 R rec c9c2e581-81ec-47f8-ad53-36a912c6afec +2024-09-10 15:46:41.109569 2024-09-10 15:46:41.109574 cognd 041240510 R rec 53349d6f-cab9-429a-8393-7a9bcf4a074c +2024-09-10 15:46:41.173977 2024-09-10 15:46:41.173983 cognd 041239288 R rec 81a91f12-0971-46f8-aca5-a91fcd313002 +2024-09-10 15:46:41.244722 2024-09-10 15:46:41.244727 cognd 041238826 R rec 4961e18c-84d0-40f6-beab-3616bb6c0ea1 +2024-09-10 15:46:41.307988 2024-09-10 15:46:41.307992 cognd 041236599 R rec 25728d4f-0423-47f0-9a4e-475a1656ce99 +2024-09-10 15:46:41.372676 2024-09-10 15:46:41.372682 cognd 041235347 R rec 1eb007ff-c8ed-4ee4-8a3f-d6154a87d336 +2024-09-10 15:46:41.433679 2024-09-10 15:46:41.433684 cognd 041227980 R rec c290d52c-8fc0-4fb4-8fe8-35be65165eec +2024-09-10 15:46:41.498236 2024-09-10 15:46:41.498242 cognd 041220609 R rec 699b5e09-d1ef-4d25-bd2b-a7f2dfc77dfa +2024-09-10 15:46:41.563324 2024-09-10 15:46:41.56333 cognd 04121952X R rec 29e99e50-b3cc-4924-bbf8-cc0975c3066f +2024-09-10 15:46:41.63363 2024-09-10 15:46:41.633635 cognd 041218108 R rec ba1eccba-753f-4f2a-8b66-306152a0cf75 +2024-09-10 15:46:41.696604 2024-09-10 15:46:41.696611 cognd 041217616 R rec e3ff6570-3f0b-47f5-8ec6-9899c8ce05ab +2024-09-10 15:46:41.761985 2024-09-10 15:46:41.761995 cognd 041212304 R rec 904f275b-43a0-4242-a2b6-d49d9f374021 +2024-09-10 15:46:41.834902 2024-09-10 15:46:41.834908 cognd 041207017 R rec b9804256-7931-4985-bca6-bab22cc1eaf9 +2024-09-10 15:46:41.90698 2024-09-10 15:46:41.906985 cognd 041206592 R rec 63aae9f8-7482-4ab0-8960-61b23c903317 +2024-09-10 15:46:41.983749 2024-09-10 15:46:41.983755 cognd 041201116 R rec 7e931de8-5934-4b44-b62b-a4c95fa60f39 +2024-09-10 15:46:42.050925 2024-09-10 15:46:42.050931 cognd 041184432 R rec e972a02c-0c82-44f5-b623-39bb0c990347 +2024-09-10 15:46:42.121237 2024-09-10 15:46:42.121242 cognd 041176065 R rec 16504946-55bf-468d-9c7a-a090bfdde363 +2024-09-10 15:46:42.182567 2024-09-10 15:46:42.182573 cognd 041155513 R rec 64f285d8-0fb9-4fc9-9e09-8b2b25ce478b +2024-09-10 15:46:42.249652 2024-09-10 15:46:42.249663 cognd 041154630 R rec 82f44e60-f703-4983-b934-4ef33ea75443 +2024-09-10 15:46:42.335307 2024-09-10 15:46:42.335321 cognd 04114516X R rec fe9ad010-e6af-4704-8d75-cc43c05dfcdf +2024-09-10 15:46:42.410175 2024-09-10 15:46:42.410183 cognd 041091507 R rec 3bed33be-6479-45b9-9b5c-4103c45f2e09 +2024-09-10 15:46:42.483143 2024-09-10 15:46:42.483149 cognd 041076842 R rec 601137ef-15b2-433f-a4f2-0342c037e593 +2024-09-10 15:46:42.593993 2024-09-10 15:46:42.593999 cognd 041018699 R rec 158aa796-fa29-4395-b852-39cde710e7a6 +2024-09-10 15:46:42.666502 2024-09-10 15:46:42.666509 cognd 040775593 R rec cebbab04-1abe-4115-848a-b098416cccb5 +2024-09-10 15:46:42.726142 2024-09-10 15:46:42.726147 cognd 040763889 R rec 77486de0-2941-4fc8-a0c8-318f2d9bf386 +2024-09-10 15:46:42.789455 2024-09-10 15:46:42.789461 cognd 040730913 R rec 552bf0c2-719d-448f-a276-26d1e773d33e +2024-09-10 15:46:42.871544 2024-09-10 15:46:42.87155 cognd 04071781X R rec 37c76891-f02f-4333-a8c4-122cc63cb977 +2024-09-10 15:46:42.946172 2024-09-10 15:46:42.946177 cognd 04067777X R rec 74d14f1e-61cf-4d4d-b5ff-6cb33744c5b4 +2024-09-10 15:46:43.006286 2024-09-10 15:46:43.006291 cognd 04066533X R rec 80ede84a-5f3b-4759-89e2-c1976b23fec4 +2024-09-10 15:46:43.065816 2024-09-10 15:46:43.06582 cognd 040645312 R rec c50308dd-ab81-4c03-a00f-e4e2de4b9fcf +2024-09-10 15:46:43.124776 2024-09-10 15:46:43.124782 cognd 040633217 R rec 41546f9d-f3cc-49f1-b717-ed296da1bfb4 +2024-09-10 15:46:43.186722 2024-09-10 15:46:43.186734 cognd 040583317 R rec 6a196c03-a07c-4dff-bde7-ac82fa2c74b0 +2024-09-10 15:46:43.258738 2024-09-10 15:46:43.258749 cognd 040544567 R rec 0b437a84-c540-458c-9cd6-0a796f863ba2 +2024-09-10 15:46:43.328465 2024-09-10 15:46:43.328475 cognd 040519384 R rec b6c68214-7ce6-40d8-94a5-05b6d66459f2 +2024-09-10 15:46:43.412479 2024-09-10 15:46:43.412495 cognd 040514927 R rec 622f2c31-1f73-4850-acc9-dbb25cbe923e +2024-09-10 15:46:43.483222 2024-09-10 15:46:43.483232 cognd 040512665 R rec 030cd187-7e2d-4ec2-939c-b0a9f57faa5a +2024-09-10 15:46:43.562699 2024-09-10 15:46:43.56271 cognd 04051238X R rec b2e03e83-7414-4969-afea-4dee22837fce +2024-09-10 15:46:43.637192 2024-09-10 15:46:43.637205 cognd 040490297 R rec 04eaa9ca-f157-4a30-bfca-5232e96b5990 +2024-09-10 15:46:43.71422 2024-09-10 15:46:43.714226 cognd 040459608 R rec 5b4d14c1-ea2f-465b-9fa7-ae9f900fd7f9 +2024-09-10 15:46:43.775661 2024-09-10 15:46:43.775666 cognd 040451259 R rec f14aa475-5885-42b9-b126-d9d5321cc137 +2024-09-10 15:46:43.835364 2024-09-10 15:46:43.83537 cognd 040438163 R rec 57c1a69e-3228-4ef1-ba6a-d5656884df2a +2024-09-10 15:46:43.895006 2024-09-10 15:46:43.895013 cognd 040432149 R rec 2a1054bf-8b1d-4344-b176-8853103af913 +2024-09-10 15:46:43.964502 2024-09-10 15:46:43.964514 cognd 040416496 R rec 5dfc097c-6bb8-4cfa-86b7-a7b05d47f95b +2024-09-10 15:46:44.034218 2024-09-10 15:46:44.034224 cognd 040406938 R rec 18b95751-cde0-4b71-931f-338ebce6dc39 +2024-09-10 15:46:44.100925 2024-09-10 15:46:44.100953 cognd 040403688 R rec 6dcafccd-ab6f-4c16-81f0-e248f9a16b5c +2024-09-10 15:46:44.179495 2024-09-10 15:46:44.1795 cognd 040389065 R rec ce7d56c2-8918-4f6e-8bd0-c32c276fe940 +2024-09-10 15:46:44.258998 2024-09-10 15:46:44.25901 cognd 040335682 R rec ac3e44d4-1782-4acb-b69b-efc4184faa6e +2024-09-10 15:46:44.327938 2024-09-10 15:46:44.327943 cognd 040328260 R rec b1010ec0-d5b6-471a-b486-ded90d7501c7 +2024-09-10 15:46:44.40494 2024-09-10 15:46:44.404947 cognd 04032009X R rec bf457f48-ce42-4af0-8948-4b5b7a3df608 +2024-09-10 15:46:44.475272 2024-09-10 15:46:44.47528 cognd 040252434 R rec 01727572-573f-4863-bfdf-5d4aa1d319b7 +2024-09-10 15:46:44.551608 2024-09-10 15:46:44.551619 cognd 040247996 R rec 31820cd0-e4ea-477e-bbcd-210fd47b9e41 +2024-09-10 15:46:44.632185 2024-09-10 15:46:44.632199 cognd 04024055X R rec 12a34d12-0161-420f-9213-95446ffcdb77 +2024-09-10 15:46:44.714671 2024-09-10 15:46:44.714683 cognd 040205487 R rec af80909b-fbf2-43c1-a7a0-3df8ee24c8af +2024-09-10 15:46:44.800493 2024-09-10 15:46:44.800498 cognd 040189074 R rec b692d6ce-b6ec-42e5-ba6d-2416b24b453d +2024-09-10 15:46:44.857889 2024-09-10 15:46:44.857895 cognd 040130193 R rec aa8823da-caaa-4fa0-8f8c-19d8b2a2b7e7 +2024-09-10 15:46:44.924608 2024-09-10 15:46:44.924624 cognd 04009006X R rec 323c4565-ab49-4f9d-95dc-f8c263417d6b +2024-09-10 15:46:45.021189 2024-09-10 15:46:45.021195 cognd 040085287 R rec 89e4f695-0829-450c-807f-ab0cdcd8c3cb +2024-09-10 15:46:45.096171 2024-09-10 15:46:45.096177 cognd 040085244 R rec 773942d4-b450-4101-b69b-1ca0a0559b8d +2024-09-10 15:46:45.176692 2024-09-10 15:46:45.1767 cognd 040078124 R rec 6f834f1b-7b8f-4c82-bb72-52195c7216ab +2024-09-10 15:46:45.247247 2024-09-10 15:46:45.247253 cognd 040068560 R rec e47988cc-cf76-4a1b-bd65-1bdddb1634c6 +2024-09-10 15:46:45.323669 2024-09-10 15:46:45.323676 cognd 040062120 R rec 96fe22a8-72f0-4c24-90e9-8f399195a8ea +2024-09-10 15:46:45.40272 2024-09-10 15:46:45.402736 cognd 040036774 R rec 3d0e3413-9fb9-4b25-8c4d-c27a170b6453 +2024-09-10 15:46:45.474869 2024-09-10 15:46:45.474875 cognd 040030415 R rec 9c36432e-174e-41eb-923c-8db7dd5e79b5 +2024-09-10 15:46:45.558271 2024-09-10 15:46:45.558284 cognd 040021475 R rec de9eeee3-b8da-4a93-ae3e-72c162138520 +2024-09-10 15:46:45.639322 2024-09-10 15:46:45.639333 cognd 040021459 R rec 4e21a08c-d5a6-4e96-bfa2-902c3244c376 diff --git a/data/comef.json b/data/comef.json index 53d1cc68..f323ee9a 100644 --- a/data/comef.json +++ b/data/comef.json @@ -1,2070 +1,18855 @@ [ { - "pid": "7523", - "rero": { - "$ref": "https://mef.rero.ch/api/concepts/rero/A009955971" + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041906683" }, + "pid": "10000", "type": "bf:Topic" }, { - "pid": "7524", - "rero": { - "$ref": "https://mef.rero.ch/api/concepts/rero/A010077990" + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041901398" }, + "pid": "10001", "type": "bf:Topic" }, { - "pid": "7525", - "rero": { - "$ref": "https://mef.rero.ch/api/concepts/rero/A021001001" + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041890353" }, + "pid": "10002", "type": "bf:Topic" }, { - "pid": "7526", - "rero": { - "$ref": "https://mef.rero.ch/api/concepts/rero/A021001003" + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04188566X" }, + "pid": "10003", "type": "bf:Topic" }, { - "pid": "7527", - "rero": { - "$ref": "https://mef.rero.ch/api/concepts/rero/A021001004" + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041856333" }, + "pid": "10004", "type": "bf:Topic" }, { - "pid": "7528", - "rero": { - "$ref": "https://mef.rero.ch/api/concepts/rero/A021001005" + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041856325" }, + "pid": "10005", "type": "bf:Topic" }, { - "pid": "7529", - "rero": { - "$ref": "https://mef.rero.ch/api/concepts/rero/A021001006" + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041848020" }, + "pid": "10006", "type": "bf:Topic" }, { - "pid": "7530", - "rero": { - "$ref": "https://mef.rero.ch/api/concepts/rero/A021001007" + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041844793" }, + "pid": "10007", "type": "bf:Topic" }, { - "pid": "7531", - "rero": { - "$ref": "https://mef.rero.ch/api/concepts/rero/A021001008" + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041844513" }, + "pid": "10008", "type": "bf:Topic" }, { - "pid": "7532", - "rero": { - "$ref": "https://mef.rero.ch/api/concepts/rero/A021001009" + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041840658" }, + "pid": "10009", "type": "bf:Topic" }, { - "pid": "7533", - "rero": { - "$ref": "https://mef.rero.ch/api/concepts/rero/A021001012" + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041830180" }, + "pid": "10010", "type": "bf:Topic" }, { - "pid": "7534", - "rero": { - "$ref": "https://mef.rero.ch/api/concepts/rero/A021001013" + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041822218" }, + "pid": "10011", "type": "bf:Topic" }, { - "pid": "7535", - "rero": { - "$ref": "https://mef.rero.ch/api/concepts/rero/A021001014" + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041815173" }, + "pid": "10012", "type": "bf:Topic" }, { - "pid": "7536", - "rero": { - "$ref": "https://mef.rero.ch/api/concepts/rero/A021001016" + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041810252" }, + "pid": "10013", "type": "bf:Topic" }, { - "pid": "7537", - "rero": { - "$ref": "https://mef.rero.ch/api/concepts/rero/A021001017" + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041806417" }, + "pid": "10014", "type": "bf:Topic" }, { - "pid": "7538", - "rero": { - "$ref": "https://mef.rero.ch/api/concepts/rero/A021001018" + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041796462" }, + "pid": "10015", "type": "bf:Topic" }, { - "pid": "7539", - "rero": { - "$ref": "https://mef.rero.ch/api/concepts/rero/A021001021" + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041794923" }, + "pid": "10016", "type": "bf:Topic" }, { - "pid": "7540", - "rero": { - "$ref": "https://mef.rero.ch/api/concepts/rero/A021001023" + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041789989" }, + "pid": "10017", "type": "bf:Topic" }, { - "pid": "7541", - "rero": { - "$ref": "https://mef.rero.ch/api/concepts/rero/A021001024" + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041787250" }, + "pid": "10018", "type": "bf:Topic" }, { - "pid": "7542", - "rero": { - "$ref": "https://mef.rero.ch/api/concepts/rero/A021001025" + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041785134" }, + "pid": "10019", "type": "bf:Topic" }, { - "pid": "7543", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027224430" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041782445" + }, + "pid": "10020", + "type": "bf:Topic" }, { - "pid": "7544", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027227219" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041766040" + }, + "pid": "10021", + "type": "bf:Topic" }, { - "pid": "7545", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027235548" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041762223" + }, + "pid": "10022", + "type": "bf:Topic" }, { - "pid": "7546", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027236226" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041753615" + }, + "pid": "10023", + "type": "bf:Topic" }, { - "pid": "7547", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027243087" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041748379" + }, + "pid": "10024", + "type": "bf:Topic" }, { - "pid": "7548", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027246655" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041734467" + }, + "pid": "10025", + "type": "bf:Topic" }, { - "pid": "7549", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027256251" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041730380" + }, + "pid": "10026", + "type": "bf:Topic" }, { - "pid": "7550", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027287289" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041718380" + }, + "pid": "10027", + "type": "bf:Topic" }, { - "pid": "7551", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027294358" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041717007" + }, + "pid": "10028", + "type": "bf:Topic" }, { - "pid": "7552", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/02730440X" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041712900" + }, + "pid": "10029", + "type": "bf:Topic" }, { - "pid": "7553", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027328295" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041707222" + }, + "pid": "10030", + "type": "bf:Topic" }, { - "pid": "7554", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027354431" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04170553X" + }, + "pid": "10031", + "type": "bf:Topic" }, { - "pid": "7555", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027366669" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041701852" + }, + "pid": "10032", + "type": "bf:Topic" }, { - "pid": "7556", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027389782" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041699122" + }, + "pid": "10033", + "type": "bf:Topic" }, { - "pid": "7557", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027430162" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041699114" + }, + "pid": "10034", + "type": "bf:Topic" }, { - "pid": "7558", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027488462" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041696492" + }, + "pid": "10035", + "type": "bf:Topic" }, { - "pid": "7559", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/02750610X" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041693477" + }, + "pid": "10036", + "type": "bf:Topic" }, { - "pid": "7560", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027510387" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041692705" + }, + "pid": "10037", + "type": "bf:Topic" }, { - "pid": "7561", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027599701" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041689763" + }, + "pid": "10038", + "type": "bf:Topic" }, { - "pid": "7562", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027652254" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041687167" + }, + "pid": "10039", + "type": "bf:Topic" }, { - "pid": "7563", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027661504" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041667689" + }, + "pid": "10040", + "type": "bf:Topic" }, { - "pid": "7564", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027675823" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041667670" + }, + "pid": "10041", + "type": "bf:Topic" }, { - "pid": "7565", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027688739" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041663659" + }, + "pid": "10042", + "type": "bf:Topic" }, { - "pid": "7566", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027699870" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04165725X" + }, + "pid": "10043", + "type": "bf:Topic" }, { - "pid": "7567", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/02770940X" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041656032" + }, + "pid": "10044", + "type": "bf:Topic" }, { - "pid": "7568", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027741060" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041655974" + }, + "pid": "10045", + "type": "bf:Topic" }, { - "pid": "7569", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027741125" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041655168" + }, + "pid": "10046", + "type": "bf:Topic" }, { - "pid": "7570", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027765369" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041654013" + }, + "pid": "10047", + "type": "bf:Topic" }, { - "pid": "7571", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027785084" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041653386" + }, + "pid": "10048", + "type": "bf:Topic" }, { - "pid": "7572", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027805220" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041647459" + }, + "pid": "10049", + "type": "bf:Topic" }, { - "pid": "7573", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027809781" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041637763" + }, + "pid": "10050", + "type": "bf:Topic" }, { - "pid": "7574", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027811611" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041636422" + }, + "pid": "10051", + "type": "bf:Topic" }, { - "pid": "7575", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027825280" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041633237" + }, + "pid": "10052", + "type": "bf:Topic" }, { - "pid": "7576", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027832953" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041616715" + }, + "pid": "10053", + "type": "bf:Topic" }, { - "pid": "7577", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027838919" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041614909" + }, + "pid": "10054", + "type": "bf:Topic" }, { - "pid": "7578", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/02784532X" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041614836" + }, + "pid": "10055", + "type": "bf:Topic" }, { - "pid": "7579", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027852547" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041613872" + }, + "pid": "10056", + "type": "bf:Topic" }, { - "pid": "7580", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/028004698" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041613597" + }, + "pid": "10057", + "type": "bf:Topic" }, { - "pid": "7581", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/028244494" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041606760" + }, + "pid": "10058", + "type": "bf:Topic" }, { - "pid": "7582", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/028283678" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041599470" + }, + "pid": "10059", + "type": "bf:Topic" }, { - "pid": "7583", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/028354559" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041597508" + }, + "pid": "10060", + "type": "bf:Topic" }, { - "pid": "7584", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/028359070" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041594800" + }, + "pid": "10061", + "type": "bf:Topic" }, { - "pid": "7585", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/028701755" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041591267" + }, + "pid": "10062", + "type": "bf:Topic" }, { - "pid": "7586", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/028910044" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041585623" + }, + "pid": "10063", + "type": "bf:Topic" }, { - "pid": "7587", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/028962389" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041584929" + }, + "pid": "10064", + "type": "bf:Topic" }, { - "pid": "7588", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/02897297X" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041582667" + }, + "pid": "10065", + "type": "bf:Topic" }, { - "pid": "7589", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/029241693" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041570170" + }, + "pid": "10066", + "type": "bf:Topic" }, { - "pid": "7590", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/029260892" + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041570103" }, - "deleted": "2022-08-25T10:47:31.610056+00:00" + "pid": "10067", + "type": "bf:Topic" }, { - "pid": "7591", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/029560020" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041565568" + }, + "pid": "10068", + "type": "bf:Topic" }, { - "pid": "7592", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/029563321" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041563247" + }, + "pid": "10069", + "type": "bf:Topic" }, { - "pid": "7593", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/029910609" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041553128" + }, + "pid": "10070", + "type": "bf:Topic" }, { - "pid": "7594", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/030714451" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041544323" + }, + "pid": "10071", + "type": "bf:Topic" }, { - "pid": "7595", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/030763762" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041542436" + }, + "pid": "10072", + "type": "bf:Topic" }, { - "pid": "7596", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/030767806" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041534646" + }, + "pid": "10073", + "type": "bf:Topic" }, { - "pid": "7597", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/03116207X" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041531426" + }, + "pid": "10074", + "type": "bf:Topic" }, { - "pid": "7598", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/031474284" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04152697X" + }, + "pid": "10075", + "type": "bf:Topic" }, { - "pid": "7599", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/031911056" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041523393" + }, + "pid": "10076", + "type": "bf:Topic" }, { - "pid": "7600", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/031992234" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041523318" + }, + "pid": "10077", + "type": "bf:Topic" }, { - "pid": "7601", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/03212743X" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04151923X" + }, + "pid": "10078", + "type": "bf:Topic" }, { - "pid": "7602", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/032187130" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041518160" + }, + "pid": "10079", + "type": "bf:Topic" }, { - "pid": "7603", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/032563507" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041516613" + }, + "pid": "10080", + "type": "bf:Topic" }, { - "pid": "7604", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/032972938" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041515420" + }, + "pid": "10081", + "type": "bf:Topic" }, { - "pid": "7605", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/03388157X" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041512820" + }, + "pid": "10082", + "type": "bf:Topic" }, { - "pid": "7606", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/034160523" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041509412" + }, + "pid": "10083", + "type": "bf:Topic" }, { - "pid": "7607", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/034490906" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041505336" + }, + "pid": "10084", + "type": "bf:Topic" }, { - "pid": "7608", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/034680365" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041505077" + }, + "pid": "10085", + "type": "bf:Topic" }, { - "pid": "7609", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/035801123" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04150335X" + }, + "pid": "10086", + "type": "bf:Topic" }, { - "pid": "7610", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/050203177" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041502264" + }, + "pid": "10087", + "type": "bf:Topic" }, { - "pid": "7611", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/050513478" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041487109" + }, + "pid": "10088", + "type": "bf:Topic" }, { - "pid": "7612", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/077061284" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041477936" + }, + "pid": "10089", + "type": "bf:Topic" }, { - "pid": "7613", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/080206913" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041470966" + }, + "pid": "10090", + "type": "bf:Topic" }, { - "pid": "7614", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/083620338" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041470044" + }, + "pid": "10091", + "type": "bf:Topic" }, { - "pid": "7615", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/083622519" + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04146768X" }, - "deleted": "2022-08-25T10:47:31.616254+00:00" + "pid": "10092", + "type": "bf:Topic" }, { - "pid": "7616", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/092468675" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041467612" + }, + "pid": "10093", + "type": "bf:Topic" }, { - "pid": "7617", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/113531923" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041466578" + }, + "pid": "10094", + "type": "bf:Topic" }, { - "pid": "7618", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/119256347" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041466365" + }, + "pid": "10095", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041463692" + }, + "pid": "10096", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041450809" + }, + "pid": "10097", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041450469" + }, + "pid": "10098", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041446186" + }, + "pid": "10099", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041444280" + }, + "pid": "10100", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041439902" + }, + "pid": "10101", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04143823X" + }, + "pid": "10102", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041437896" + }, + "pid": "10103", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041431049" + }, + "pid": "10104", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04143028X" + }, + "pid": "10105", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04142641X" + }, + "pid": "10106", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04142574X" + }, + "pid": "10107", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041424573" + }, + "pid": "10108", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041424492" + }, + "pid": "10109", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041422260" + }, + "pid": "10110", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041422058" + }, + "pid": "10111", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041419677" + }, + "pid": "10112", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041411137" + }, + "pid": "10113", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041409965" + }, + "pid": "10114", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041409760" + }, + "pid": "10115", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041392450" + }, + "pid": "10116", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041388984" + }, + "pid": "10117", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041378407" + }, + "pid": "10118", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041374444" + }, + "pid": "10119", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041369785" + }, + "pid": "10120", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041368517" + }, + "pid": "10121", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041366352" + }, + "pid": "10122", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041365844" + }, + "pid": "10123", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041354710" + }, + "pid": "10124", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041345835" + }, + "pid": "10125", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04134166X" + }, + "pid": "10126", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041340892" + }, + "pid": "10127", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041333004" + }, + "pid": "10128", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041332997" + }, + "pid": "10129", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041332237" + }, + "pid": "10130", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041326202" + }, + "pid": "10131", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041325710" + }, + "pid": "10132", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04132305X" + }, + "pid": "10133", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041322886" + }, + "pid": "10134", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041319125" + }, + "pid": "10135", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041317718" + }, + "pid": "10136", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041312368" + }, + "pid": "10137", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041308166" + }, + "pid": "10138", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041308107" + }, + "pid": "10139", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041303768" + }, + "pid": "10140", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041299604" + }, + "pid": "10141", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041287045" + }, + "pid": "10142", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04128237X" + }, + "pid": "10143", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041281632" + }, + "pid": "10144", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041273230" + }, + "pid": "10145", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041269950" + }, + "pid": "10146", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041258584" + }, + "pid": "10147", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041255887" + }, + "pid": "10148", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041252896" + }, + "pid": "10149", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041245296" + }, + "pid": "10150", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041240510" + }, + "pid": "10151", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041239288" + }, + "pid": "10152", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041238826" + }, + "pid": "10153", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041236599" + }, + "pid": "10154", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041235347" + }, + "pid": "10155", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041227980" + }, + "pid": "10156", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041220609" + }, + "pid": "10157", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04121952X" + }, + "pid": "10158", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041218108" + }, + "pid": "10159", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041217616" + }, + "pid": "10160", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041212304" + }, + "pid": "10161", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041207017" + }, + "pid": "10162", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041206592" + }, + "pid": "10163", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041201116" + }, + "pid": "10164", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041184432" + }, + "pid": "10165", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041176065" + }, + "pid": "10166", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041155513" + }, + "pid": "10167", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041154630" + }, + "pid": "10168", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04114516X" + }, + "pid": "10169", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041091507" + }, + "pid": "10170", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041076842" + }, + "pid": "10171", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041018699" + }, + "pid": "10172", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040775593" + }, + "pid": "10173", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040763889" + }, + "pid": "10174", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040730913" + }, + "pid": "10175", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04071781X" + }, + "pid": "10176", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04067777X" + }, + "pid": "10177", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04066533X" + }, + "pid": "10178", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040645312" + }, + "pid": "10179", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040633217" + }, + "pid": "10180", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040583317" + }, + "pid": "10181", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040544567" + }, + "pid": "10182", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040519384" + }, + "pid": "10183", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040514927" + }, + "pid": "10184", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040512665" + }, + "pid": "10185", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04051238X" + }, + "pid": "10186", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040490297" + }, + "pid": "10187", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040459608" + }, + "pid": "10188", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040451259" + }, + "pid": "10189", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040438163" + }, + "pid": "10190", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040432149" + }, + "pid": "10191", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040416496" + }, + "pid": "10192", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040406938" + }, + "pid": "10193", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040403688" + }, + "pid": "10194", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040389065" + }, + "pid": "10195", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040335682" + }, + "pid": "10196", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040328260" + }, + "pid": "10197", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04032009X" + }, + "pid": "10198", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040252434" + }, + "pid": "10199", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040247996" + }, + "pid": "10200", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04024055X" + }, + "pid": "10201", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040205487" + }, + "pid": "10202", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040189074" + }, + "pid": "10203", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040130193" + }, + "pid": "10204", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04009006X" + }, + "pid": "10205", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040085287" + }, + "pid": "10206", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040085244" + }, + "pid": "10207", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040078124" + }, + "pid": "10208", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040068560" + }, + "pid": "10209", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040062120" + }, + "pid": "10210", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040036774" + }, + "pid": "10211", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040030415" + }, + "pid": "10212", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040021475" + }, + "pid": "10213", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040021459" + }, + "pid": "10214", + "type": "bf:Topic" + }, + { + "pid": "7523", + "rero": { + "$ref": "https://mef.rero.ch/api/concepts/rero/A009955971" + }, + "type": "bf:Topic" + }, + { + "pid": "7524", + "rero": { + "$ref": "https://mef.rero.ch/api/concepts/rero/A010077990" + }, + "type": "bf:Topic" + }, + { + "pid": "7525", + "rero": { + "$ref": "https://mef.rero.ch/api/concepts/rero/A021001001" + }, + "type": "bf:Topic" + }, + { + "pid": "7526", + "rero": { + "$ref": "https://mef.rero.ch/api/concepts/rero/A021001003" + }, + "type": "bf:Topic" + }, + { + "pid": "7527", + "rero": { + "$ref": "https://mef.rero.ch/api/concepts/rero/A021001004" + }, + "type": "bf:Topic" + }, + { + "pid": "7528", + "rero": { + "$ref": "https://mef.rero.ch/api/concepts/rero/A021001005" + }, + "type": "bf:Topic" + }, + { + "pid": "7529", + "rero": { + "$ref": "https://mef.rero.ch/api/concepts/rero/A021001006" + }, + "type": "bf:Topic" + }, + { + "pid": "7530", + "rero": { + "$ref": "https://mef.rero.ch/api/concepts/rero/A021001007" + }, + "type": "bf:Topic" + }, + { + "pid": "7531", + "rero": { + "$ref": "https://mef.rero.ch/api/concepts/rero/A021001008" + }, + "type": "bf:Topic" + }, + { + "pid": "7532", + "rero": { + "$ref": "https://mef.rero.ch/api/concepts/rero/A021001009" + }, + "type": "bf:Topic" + }, + { + "pid": "7533", + "rero": { + "$ref": "https://mef.rero.ch/api/concepts/rero/A021001012" + }, + "type": "bf:Topic" + }, + { + "pid": "7534", + "rero": { + "$ref": "https://mef.rero.ch/api/concepts/rero/A021001013" + }, + "type": "bf:Topic" + }, + { + "pid": "7535", + "rero": { + "$ref": "https://mef.rero.ch/api/concepts/rero/A021001014" + }, + "type": "bf:Topic" + }, + { + "pid": "7536", + "rero": { + "$ref": "https://mef.rero.ch/api/concepts/rero/A021001016" + }, + "type": "bf:Topic" + }, + { + "pid": "7537", + "rero": { + "$ref": "https://mef.rero.ch/api/concepts/rero/A021001017" + }, + "type": "bf:Topic" + }, + { + "pid": "7538", + "rero": { + "$ref": "https://mef.rero.ch/api/concepts/rero/A021001018" + }, + "type": "bf:Topic" + }, + { + "pid": "7539", + "rero": { + "$ref": "https://mef.rero.ch/api/concepts/rero/A021001021" + }, + "type": "bf:Topic" + }, + { + "pid": "7540", + "rero": { + "$ref": "https://mef.rero.ch/api/concepts/rero/A021001023" + }, + "type": "bf:Topic" + }, + { + "pid": "7541", + "rero": { + "$ref": "https://mef.rero.ch/api/concepts/rero/A021001024" + }, + "type": "bf:Topic" + }, + { + "pid": "7542", + "rero": { + "$ref": "https://mef.rero.ch/api/concepts/rero/A021001025" + }, + "type": "bf:Topic" + }, + { + "pid": "7543", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027225798" + } + }, + { + "pid": "7544", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027242250" + } + }, + { + "pid": "7545", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027246159" + } + }, + { + "pid": "7546", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027248062" + } + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041653025" + }, + "pid": "7547", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027255468" + } + }, + { + "pid": "7548", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027256138" + } + }, + { + "pid": "7549", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027257045" + } + }, + { + "pid": "7550", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027268284" + } + }, + { + "pid": "7551", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027274144" + } + }, + { + "pid": "7552", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/02727991X" + } + }, + { + "pid": "7553", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/02728607X" + } + }, + { + "pid": "7554", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027292916" + } + }, + { + "pid": "7555", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027302148" + } + }, + { + "pid": "7556", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027308359" + } + }, + { + "pid": "7557", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027317145" + } + }, + { + "pid": "7558", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027323552" + } + }, + { + "pid": "7559", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027328589" + } + }, + { + "pid": "7560", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027330176" + } + }, + { + "pid": "7561", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027333930" + } + }, + { + "pid": "7562", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027336913" + } + }, + { + "pid": "7563", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027345203" + } + }, + { + "pid": "7564", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027355152" + } + }, + { + "pid": "7565", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027355578" + } + }, + { + "pid": "7566", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027355985" + } + }, + { + "pid": "7567", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027356493" + } + }, + { + "pid": "7568", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027365697" + } + }, + { + "pid": "7569", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027368661" + } + }, + { + "pid": "7570", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027374351" + } + }, + { + "pid": "7571", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027376982" + } + }, + { + "pid": "7572", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027391396" + } + }, + { + "pid": "7573", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027396924" + } + }, + { + "pid": "7574", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/02739770X" + } + }, + { + "pid": "7575", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027415252" + } + }, + { + "pid": "7576", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/02743141X" + } + }, + { + "pid": "7577", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027431444" + } + }, + { + "pid": "7578", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027436683" + } + }, + { + "pid": "7579", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027455092" + } + }, + { + "pid": "7580", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027461599" + } + }, + { + "pid": "7581", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027478033" + } + }, + { + "pid": "7582", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027481352" + } + }, + { + "pid": "7583", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027486753" + } + }, + { + "pid": "7584", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027493032" + } + }, + { + "pid": "7585", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027495213" + } + }, + { + "pid": "7586", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027495922" + } + }, + { + "pid": "7587", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/02750333X" + } + }, + { + "pid": "7588", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027506762" + } + }, + { + "pid": "7589", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027516652" + } + }, + { + "pid": "7590", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027519546" + } + }, + { + "pid": "7591", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027519686" + } + }, + { + "pid": "7592", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027528820" + } + }, + { + "pid": "7593", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027532488" + } + }, + { + "pid": "7594", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027545822" + } + }, + { + "pid": "7595", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027564878" + } + }, + { + "pid": "7596", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027578747" + } + }, + { + "pid": "7597", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/02758254X" + } + }, + { + "pid": "7598", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027613275" + } + }, + { + "pid": "7599", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027616908" + } + }, + { + "pid": "7600", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027636461" + } + }, + { + "pid": "7601", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027674118" + } + }, + { + "pid": "7602", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027674150" + } + }, + { + "pid": "7603", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027682226" + } + }, + { + "pid": "7604", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027688836" + } + }, + { + "pid": "7605", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027694852" + } + }, + { + "pid": "7606", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027710025" + } + }, + { + "pid": "7607", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027727327" + } + }, + { + "pid": "7608", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027727521" + } + }, + { + "pid": "7609", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027729044" + } + }, + { + "pid": "7610", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027735893" + } + }, + { + "pid": "7611", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027756580" + } + }, + { + "pid": "7612", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027756653" + } + }, + { + "pid": "7613", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027759547" + } + }, + { + "pid": "7614", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027789551" + } + }, + { + "pid": "7615", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027793575" + } + }, + { + "pid": "7616", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027808394" + } + }, + { + "pid": "7617", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027808629" + } + }, + { + "pid": "7618", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027826171" + } }, { "pid": "7619", "type": "bf:Topic", "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/130730173" + "$ref": "https://mef.rero.ch/api/concepts/idref/027845214" + } + }, + { + "pid": "7620", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/02785082X" + } + }, + { + "pid": "7621", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027856097" + } + }, + { + "pid": "7622", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/02785714X" + } + }, + { + "pid": "7623", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027867277" + } + }, + { + "pid": "7624", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/02786765X" + } + }, + { + "pid": "7625", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027868338" + } + }, + { + "pid": "7626", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027870510" + } + }, + { + "pid": "7627", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027873196" + } + }, + { + "pid": "7628", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/02787608X" + } + }, + { + "pid": "7629", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027883094" + } + }, + { + "pid": "7630", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/02788547X" + } + }, + { + "pid": "7631", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027885496" + } + }, + { + "pid": "7632", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027887960" + } + }, + { + "pid": "7633", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027908380" + } + }, + { + "pid": "7634", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027910210" + } + }, + { + "pid": "7635", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027915115" + } + }, + { + "pid": "7636", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027920216" + } + }, + { + "pid": "7637", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027940373" + } + }, + { + "pid": "7638", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027944492" + } + }, + { + "pid": "7639", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027950808" + } + }, + { + "pid": "7640", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027963675" + } + }, + { + "pid": "7641", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028060563" + } + }, + { + "pid": "7642", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028071867" + } + }, + { + "pid": "7643", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028071964" + } + }, + { + "pid": "7644", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/02807842X" + } + }, + { + "pid": "7645", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/02810160X" + } + }, + { + "pid": "7646", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028140362" + } + }, + { + "pid": "7647", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028148800" + } + }, + { + "pid": "7648", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028211162" + } + }, + { + "pid": "7649", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028225090" + } + }, + { + "pid": "7650", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028225767" + } + }, + { + "pid": "7651", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028233506" + } + }, + { + "pid": "7652", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028262220" + } + }, + { + "pid": "7653", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028287169" + } + }, + { + "pid": "7654", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028359380" + } + }, + { + "pid": "7655", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028431855" + } + }, + { + "pid": "7656", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028433890" + } + }, + { + "pid": "7657", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028497244" + } + }, + { + "pid": "7658", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028517180" + } + }, + { + "pid": "7659", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/02852019X" + } + }, + { + "pid": "7660", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028549082" + } + }, + { + "pid": "7661", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028631609" + } + }, + { + "pid": "7662", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028637720" + } + }, + { + "pid": "7663", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028675274" + } + }, + { + "pid": "7664", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028676661" + } + }, + { + "pid": "7665", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/02868589X" + } + }, + { + "pid": "7666", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028698703" + } + }, + { + "pid": "7667", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028700139" + } + }, + { + "pid": "7668", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028700171" + } + }, + { + "pid": "7669", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028725387" + } + }, + { + "pid": "7670", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028898338" + } + }, + { + "pid": "7671", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028909917" + } + }, + { + "pid": "7672", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028910737" + } + }, + { + "pid": "7673", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028912098" + } + }, + { + "pid": "7674", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028929098" + } + }, + { + "pid": "7675", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028973631" + } + }, + { + "pid": "7676", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/02900294X" + } + }, + { + "pid": "7677", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/02904197X" + } + }, + { + "pid": "7678", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/029042046" + } + }, + { + "pid": "7679", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/029042186" + } + }, + { + "pid": "7680", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/02905026X" + } + }, + { + "pid": "7681", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/029182387" + } + }, + { + "pid": "7682", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/029205794" + } + }, + { + "pid": "7683", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/029342147" + } + }, + { + "pid": "7684", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/029344212" + } + }, + { + "pid": "7685", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/029347254" + } + }, + { + "pid": "7686", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/029349230" + } + }, + { + "pid": "7687", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/029404614" + } + }, + { + "pid": "7688", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/029410312" + } + }, + { + "pid": "7689", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/029575168" + } + }, + { + "pid": "7690", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/029652308" + } + }, + { + "pid": "7691", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/029726190" + } + }, + { + "pid": "7692", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/029753090" + } + }, + { + "pid": "7693", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/029755999" + } + }, + { + "pid": "7694", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/029795826" + } + }, + { + "pid": "7695", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/029888026" + } + }, + { + "pid": "7696", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/029918006" + } + }, + { + "pid": "7697", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/029933730" + } + }, + { + "pid": "7698", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/029958857" + } + }, + { + "pid": "7699", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/03001235X" + } + }, + { + "pid": "7700", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/030017653" + } + }, + { + "pid": "7701", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/030055849" + } + }, + { + "pid": "7702", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/030086469" + } + }, + { + "pid": "7703", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/030128145" + } + }, + { + "pid": "7704", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/03018729X" + } + }, + { + "pid": "7705", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/030219884" + } + }, + { + "pid": "7706", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/030336880" + } + }, + { + "pid": "7707", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/030423724" + } + }, + { + "pid": "7708", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/030435056" + } + }, + { + "pid": "7709", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/030642841" + } + }, + { + "pid": "7710", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/030768381" + } + }, + { + "pid": "7711", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/03082401X" + } + }, + { + "pid": "7712", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/030904218" + } + }, + { + "pid": "7713", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/030909120" + } + }, + { + "pid": "7714", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/030924987" + } + }, + { + "pid": "7715", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/030975689" + } + }, + { + "pid": "7716", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/031018866" + } + }, + { + "pid": "7717", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/031067956" + } + }, + { + "pid": "7718", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/031208495" + } + }, + { + "pid": "7719", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/031380107" + } + }, + { + "pid": "7720", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/031531121" + } + }, + { + "pid": "7721", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/03166010X" + } + }, + { + "pid": "7722", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/031819877" + } + }, + { + "pid": "7723", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/032027524" + } + }, + { + "pid": "7724", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/032184034" + } + }, + { + "pid": "7725", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/032317468" + } + }, + { + "pid": "7726", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/032324650" + } + }, + { + "pid": "7727", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/032324804" + } + }, + { + "pid": "7728", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/032370474" + } + }, + { + "pid": "7729", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/03243782X" + } + }, + { + "pid": "7730", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/032493940" + } + }, + { + "pid": "7731", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/032506929" + } + }, + { + "pid": "7732", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/03256953X" + } + }, + { + "pid": "7733", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/032675011" + } + }, + { + "pid": "7734", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/032709501" + } + }, + { + "pid": "7735", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/032916078" + } + }, + { + "pid": "7736", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/032978294" + } + }, + { + "pid": "7737", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/033125341" + } + }, + { + "pid": "7738", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/033136831" + } + }, + { + "pid": "7739", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/033422605" + } + }, + { + "pid": "7740", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/033433763" + } + }, + { + "pid": "7741", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/033642036" + } + }, + { + "pid": "7742", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/033738653" + } + }, + { + "pid": "7743", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/03374033X" + } + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041878515" + }, + "pid": "7744", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/033869235" + } + }, + { + "pid": "7745", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/033895732" + } + }, + { + "pid": "7746", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/034054693" + } + }, + { + "pid": "7747", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/03405491X" + } + }, + { + "pid": "7748", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/034133704" + } + }, + { + "pid": "7749", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/034195688" + } + }, + { + "pid": "7750", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/034254145" + } + }, + { + "pid": "7751", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/034259910" + } + }, + { + "pid": "7752", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/034308695" + } + }, + { + "pid": "7753", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/034342230" + } + }, + { + "pid": "7754", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/034566228" + } + }, + { + "pid": "7755", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/034591966" + } + }, + { + "pid": "7756", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/034623574" + } + }, + { + "pid": "7757", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/034679391" + } + }, + { + "pid": "7758", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/034705384" + } + }, + { + "pid": "7759", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/03472690X" + } + }, + { + "pid": "7760", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/034766995" + } + }, + { + "pid": "7761", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/034781897" + } + }, + { + "pid": "7762", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/034857923" + } + }, + { + "pid": "7763", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/034885420" + } + }, + { + "pid": "7764", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/034892710" + } + }, + { + "pid": "7765", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/034960848" + } + }, + { + "pid": "7766", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/035061308" + } + }, + { + "pid": "7767", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/035095679" + } + }, + { + "pid": "7768", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/035167734" + } + }, + { + "pid": "7769", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/035198222" + } + }, + { + "pid": "7770", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/035260521" + } + }, + { + "pid": "7771", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/035461152" + } + }, + { + "pid": "7772", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/035486686" + } + }, + { + "pid": "7773", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/035527250" + } + }, + { + "pid": "7774", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/035621664" + } + }, + { + "pid": "7775", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/035634847" + } + }, + { + "pid": "7776", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/035650532" + } + }, + { + "pid": "7777", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/035658622" + } + }, + { + "pid": "7778", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/035724099" + } + }, + { + "pid": "7779", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/050124315" + } + }, + { + "pid": "7780", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/050186647" + } + }, + { + "pid": "7781", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/050220284" + } + }, + { + "pid": "7782", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/050366157" + } + }, + { + "pid": "7783", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/05041870X" + } + }, + { + "pid": "7784", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/050516760" + } + }, + { + "pid": "7785", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/050518526" + } + }, + { + "pid": "7786", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/050534882" + } + }, + { + "pid": "7787", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/05056479X" + } + }, + { + "pid": "7788", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/050582453" + } + }, + { + "pid": "7789", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/050602195" + } + }, + { + "pid": "7790", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/050627953" + } + }, + { + "pid": "7791", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/050702858" + } + }, + { + "pid": "7792", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/050764861" + } + }, + { + "pid": "7793", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/050773313" + } + }, + { + "pid": "7794", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/050784005" + } + }, + { + "pid": "7795", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/050808583" + } + }, + { + "pid": "7796", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/050827405" + } + }, + { + "pid": "7797", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/052587207" + } + }, + { + "pid": "7798", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/052634833" + } + }, + { + "pid": "7799", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/053469844" + } + }, + { + "pid": "7800", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/055308600" + } + }, + { + "pid": "7801", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/059302208" + } + }, + { + "pid": "7802", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/05930278X" + } + }, + { + "pid": "7803", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/059307374" + } + }, + { + "pid": "7804", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/06082929X" + } + }, + { + "pid": "7805", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/06160738X" + } + }, + { + "pid": "7806", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/075000504" + } + }, + { + "pid": "7807", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/077057589" + } + }, + { + "pid": "7808", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/077060377" + } + }, + { + "pid": "7809", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/077062809" + } + }, + { + "pid": "7810", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/077075757" + } + }, + { + "pid": "7811", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/077088883" + } + }, + { + "pid": "7812", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/077091035" + } + }, + { + "pid": "7813", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/077397827" + } + }, + { + "pid": "7814", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/077937007" + } + }, + { + "pid": "7815", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/078974089" + } + }, + { + "pid": "7816", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/079180043" + } + }, + { + "pid": "7817", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/081665660" + } + }, + { + "pid": "7818", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/083421467" + } + }, + { + "pid": "7819", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/083972684" + } + }, + { + "pid": "7820", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/08523611X" + } + }, + { + "pid": "7821", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/087834979" + } + }, + { + "pid": "7822", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/087960621" + } + }, + { + "pid": "7823", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/092468594" + } + }, + { + "pid": "7824", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/092468950" + } + }, + { + "pid": "7825", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/101481071" + } + }, + { + "pid": "7826", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/110905687" + } + }, + { + "pid": "7827", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/111597153" + } + }, + { + "pid": "7828", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/112539750" + } + }, + { + "pid": "7829", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/115898840" + } + }, + { + "pid": "7830", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/118419722" + } + }, + { + "pid": "7831", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/118420763" + } + }, + { + "pid": "7832", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/11948949X" + } + }, + { + "pid": "7833", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/120299658" + } + }, + { + "pid": "7834", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/12059353X" + } + }, + { + "pid": "7835", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/122348486" + } + }, + { + "pid": "7836", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/122348877" + } + }, + { + "pid": "7837", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/122957032" + } + }, + { + "pid": "7838", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/123472466" + } + }, + { + "pid": "7839", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/124452248" + } + }, + { + "pid": "7840", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/129822051" + } + }, + { + "pid": "7841", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/130683035" + } + }, + { + "pid": "7842", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/13073019X" + } + }, + { + "pid": "7843", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/131981226" + } + }, + { + "pid": "7844", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/132211378" + } + }, + { + "pid": "7845", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/133566129" + } + }, + { + "pid": "7846", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/135615003" + } + }, + { + "pid": "7847", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/136707165" + } + }, + { + "pid": "7848", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/13776541X" + } + }, + { + "pid": "7849", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/137978685" + } + }, + { + "pid": "7850", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/139100857" + } + }, + { + "pid": "7851", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/142761583" + } + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1005638322" + }, + "pid": "7852", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/144664194" + } + }, + { + "pid": "7853", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/145035468" + } + }, + { + "pid": "7854", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/145909093" + } + }, + { + "pid": "7855", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/146923081" + } + }, + { + "pid": "7856", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/147286433" + } + }, + { + "pid": "7857", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/148541372" + } + }, + { + "pid": "7858", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/148542182" + } + }, + { + "pid": "7859", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/151385432" + } + }, + { + "pid": "7860", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/15212201X" + } + }, + { + "pid": "7861", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/15909545X" + } + }, + { + "pid": "7862", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/167934813" + } + }, + { + "pid": "7863", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/168476010" + } + }, + { + "pid": "7864", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/169910733" + } + }, + { + "pid": "7865", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/17129226X" + } + }, + { + "pid": "7866", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/17523308X" + } + }, + { + "pid": "7867", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/17939360X" + } + }, + { + "pid": "7868", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/180214845" + } + }, + { + "pid": "7869", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/180214926" + } + }, + { + "pid": "7870", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/18028505X" + } + }, + { + "pid": "7871", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/181882604" + } + }, + { + "pid": "7872", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/182446174" + } + }, + { + "pid": "7873", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/183790936" + } + }, + { + "pid": "7874", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/183791428" + } + }, + { + "pid": "7875", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/184625807" + } + }, + { + "pid": "7876", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/185018440" + } + }, + { + "pid": "7877", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/187082324" + } + }, + { + "pid": "7878", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/190795786" + } + }, + { + "pid": "7879", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/190994320" + } + }, + { + "pid": "7880", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/193304104" + } + }, + { + "pid": "7881", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/193617668" + } + }, + { + "pid": "7882", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/196951763" + } + }, + { + "pid": "7883", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/197956653" + } + }, + { + "pid": "7884", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/197957358" + } + }, + { + "pid": "7885", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/199344019" + } + }, + { + "pid": "7886", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/199344248" + } + }, + { + "pid": "7887", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/200582038" + } + }, + { + "pid": "7888", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/200884530" + } + }, + { + "pid": "7889", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/204008557" + } + }, + { + "pid": "7890", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/219951152" + } + }, + { + "pid": "7891", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/219966540" + } + }, + { + "pid": "7892", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/223495913" + } + }, + { + "pid": "7893", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/223831840" + } + }, + { + "pid": "7894", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/225382520" + } + }, + { + "pid": "7895", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/227367677" + } + }, + { + "pid": "7896", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/227858689" + } + }, + { + "pid": "7897", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/228803608" + } + }, + { + "pid": "7898", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/232818665" + } + }, + { + "pid": "7899", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/234183721" + } + }, + { + "pid": "7900", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/236280147" + } + }, + { + "pid": "7901", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/26110683X" + } + }, + { + "pid": "7902", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/261107119" + } + }, + { + "pid": "7903", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/261901915" + } + }, + { + "pid": "7904", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/263499758" + } + }, + { + "pid": "7905", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/264222423" + } + }, + { + "pid": "7906", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/264325974" + } + }, + { + "pid": "7907", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/264387414" + } + }, + { + "pid": "7908", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/264387538" + } + }, + { + "pid": "7909", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/26438833X" + } + }, + { + "pid": "7910", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/271981423" + } + }, + { + "pid": "7911", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/27874690X" + } + }, + { + "pid": "7912", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278746969" + } + }, + { + "pid": "7913", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278746985" + } + }, + { + "pid": "7914", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278746993" + } + }, + { + "pid": "7915", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278747000" + } + }, + { + "pid": "7916", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278747019" + } + }, + { + "pid": "7917", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278747043" + } + }, + { + "pid": "7918", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278747167" + } + }, + { + "pid": "7919", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278747175" + } + }, + { + "pid": "7920", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278747183" + } + }, + { + "pid": "7921", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278747191" + } + }, + { + "pid": "7922", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/27874723X" + } + }, + { + "pid": "7923", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278747280" + } + }, + { + "pid": "7924", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278747329" + } + }, + { + "pid": "7925", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279034725" + } + }, + { + "pid": "7926", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279034733" + } + }, + { + "pid": "7927", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279034741" + } + }, + { + "pid": "7928", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/27903475X" + } + }, + { + "pid": "7929", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279034806" + } + }, + { + "pid": "7930", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279034814" + } + }, + { + "pid": "7931", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279034822" + } + }, + { + "pid": "7932", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279034849" + } + }, + { + "pid": "7933", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279034881" + } + }, + { + "pid": "7934", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/27903492X" + } + }, + { + "pid": "7935", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279034946" + } + }, + { + "pid": "7936", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279034962" + } + }, + { + "pid": "7937", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279034970" + } + }, + { + "pid": "7938", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279034997" + } + }, + { + "pid": "7939", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279035020" + } + }, + { + "pid": "7940", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279035063" + } + }, + { + "pid": "7941", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279035071" + } + }, + { + "pid": "7942", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/27903508X" + } + }, + { + "pid": "7943", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279035098" + } + }, + { + "pid": "7944", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279035101" + } + }, + { + "pid": "7945", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279035144" + } + }, + { + "pid": "7946", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279035241" + } + }, + { + "pid": "7947", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027233960" + } + }, + { + "pid": "7948", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027238431" + } + }, + { + "pid": "7949", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027248720" + } + }, + { + "pid": "7950", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027255522" + } + }, + { + "pid": "7951", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027258556" + } + }, + { + "pid": "7952", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027266273" + } + }, + { + "pid": "7953", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027314073" + } + }, + { + "pid": "7954", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027361705" + } + }, + { + "pid": "7955", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027390349" + } + }, + { + "pid": "7956", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/02741664X" + } + }, + { + "pid": "7957", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027802973" + } + }, + { + "pid": "7958", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027824586" + } + }, + { + "pid": "7959", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027855929" + } + }, + { + "pid": "7960", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028205847" + } + }, + { + "pid": "7961", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028221044" + } + }, + { + "pid": "7962", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028889347" + } + }, + { + "pid": "7963", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028938615" + } + }, + { + "pid": "7964", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/031082599" + } + }, + { + "pid": "7965", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/031955274" + } + }, + { + "pid": "7966", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/03465500X" + } + }, + { + "pid": "7967", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/035141913" + } + }, + { + "pid": "7968", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/05058748X" + } + }, + { + "pid": "7969", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/061612820" + } + }, + { + "pid": "7970", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/127977996" + } + }, + { + "pid": "7971", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/131462415" + } + }, + { + "pid": "7972", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/144331373" + } + }, + { + "pid": "7973", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/180213911" + } + }, + { + "pid": "7974", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/181492628" + } + }, + { + "pid": "7975", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/273372734" + } + }, + { + "pid": "7976", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/273372742" + } + }, + { + "pid": "7977", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/273372750" + } + }, + { + "pid": "7978", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/273372777" + } + }, + { + "pid": "7979", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/273372785" + } + }, + { + "pid": "7980", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/277418216" + } + }, + { + "pid": "7981", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279035152" + } + }, + { + "pid": "7982", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279035160" + } + }, + { + "pid": "7983", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279035179" + } + }, + { + "pid": "7984", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279035187" + } + }, + { + "pid": "7985", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307322" + } + }, + { + "pid": "7986", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307330" + } + }, + { + "pid": "7987", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307349" + } + }, + { + "pid": "7988", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307357" + } + }, + { + "pid": "7989", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307365" + } + }, + { + "pid": "7990", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307373" + } + }, + { + "pid": "7991", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307462" + } + }, + { + "pid": "7992", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307470" + } + }, + { + "pid": "7993", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307519" + } + }, + { + "pid": "7994", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307535" + } + }, + { + "pid": "7995", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/27930756X" + } + }, + { + "pid": "7996", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307578" + } + }, + { + "pid": "7997", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307586" + } + }, + { + "pid": "7998", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307594" + } + }, + { + "pid": "7999", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307632" + } + }, + { + "pid": "8000", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307713" + } + }, + { + "pid": "8001", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/27930773X" + } + }, + { + "pid": "8002", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307748" + } + }, + { + "pid": "8003", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307780" + } + }, + { + "pid": "8004", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307799" + } + }, + { + "pid": "8005", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307810" + } + }, + { + "pid": "8006", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307837" + } + }, + { + "pid": "8007", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307853" + } + }, + { + "pid": "8008", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027222144" + } + }, + { + "pid": "8009", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027236897" + } + }, + { + "pid": "8010", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027276457" + } + }, + { + "pid": "8011", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027307565" + } + }, + { + "pid": "8012", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/02767391X" + } + }, + { + "pid": "8013", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027800512" + } + }, + { + "pid": "8014", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/02781971X" + } + }, + { + "pid": "8015", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/02787642X" + } + }, + { + "pid": "8016", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028374878" + } + }, + { + "pid": "8017", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028932358" + } + }, + { + "pid": "8018", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/030120640" + } + }, + { + "pid": "8019", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/03136795X" + } + }, + { + "pid": "8020", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/033293074" + } + }, + { + "pid": "8021", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/050174495" + } + }, + { + "pid": "8022", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/06008989X" + } + }, + { + "pid": "8023", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/061604496" + } + }, + { + "pid": "8024", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/178480231" + } + }, + { + "pid": "8025", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/238529495" + } + }, + { + "pid": "8026", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/263906442" + } + }, + { + "pid": "8027", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/264225260" + } + }, + { + "pid": "8028", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/276037685" + } + }, + { + "pid": "8029", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278746896" + } + }, + { + "pid": "8030", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278746918" + } + }, + { + "pid": "8031", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278746926" + } + }, + { + "pid": "8032", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278746934" + } + }, + { + "pid": "8033", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278746942" + } + }, + { + "pid": "8034", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278746950" + } + }, + { + "pid": "8035", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278746977" + } + }, + { + "pid": "8036", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278747027" + } + }, + { + "pid": "8037", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278747035" + } + }, + { + "pid": "8038", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278747051" + } + }, + { + "pid": "8039", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/27874706X" + } + }, + { + "pid": "8040", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278747086" + } + }, + { + "pid": "8041", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278747094" + } + }, + { + "pid": "8042", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278747108" + } + }, + { + "pid": "8043", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278747116" + } + }, + { + "pid": "8044", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278747124" + } + }, + { + "pid": "8045", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278747132" + } + }, + { + "pid": "8046", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278747140" + } + }, + { + "pid": "8047", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278747159" + } + }, + { + "pid": "8048", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278747213" + } + }, + { + "pid": "8049", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278747221" + } + }, + { + "pid": "8050", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278747248" + } + }, + { + "pid": "8051", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278747256" + } + }, + { + "pid": "8052", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278747264" + } + }, + { + "pid": "8053", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278747272" + } + }, + { + "pid": "8054", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278747299" + } + }, + { + "pid": "8055", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278747302" + } + }, + { + "pid": "8056", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279034768" + } + }, + { + "pid": "8057", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279034776" + } + }, + { + "pid": "8058", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279034784" + } + }, + { + "pid": "8059", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279034792" + } + }, + { + "pid": "8060", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279034865" + } + }, + { + "pid": "8061", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279034873" + } + }, + { + "pid": "8062", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/27903489X" + } + }, + { + "pid": "8063", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279034903" + } + }, + { + "pid": "8064", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279035039" + } + }, + { + "pid": "8065", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027275639" + } + }, + { + "pid": "8066", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027362434" + } + }, + { + "pid": "8067", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027612163" + } + }, + { + "pid": "8068", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/029385571" + } + }, + { + "pid": "8069", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/029877555" + } + }, + { + "pid": "8070", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/033689725" + } + }, + { + "pid": "8071", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/035381795" + } + }, + { + "pid": "8072", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/174718276" + } + }, + { + "pid": "8073", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278747078" + } + }, + { + "pid": "8074", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279034954" + } + }, + { + "pid": "8075", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307381" + } + }, + { + "pid": "8076", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/27930739X" + } + }, + { + "pid": "8077", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307403" + } + }, + { + "pid": "8078", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307411" + } + }, + { + "pid": "8079", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/27930742X" + } + }, + { + "pid": "8080", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307438" + } + }, + { + "pid": "8081", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307446" + } + }, + { + "pid": "8082", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307454" + } + }, + { + "pid": "8083", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307543" + } + }, + { + "pid": "8084", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307608" + } + }, + { + "pid": "8085", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307616" + } + }, + { + "pid": "8086", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307640" + } + }, + { + "pid": "8087", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307659" + } + }, + { + "pid": "8088", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307667" + } + }, + { + "pid": "8089", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307675" + } + }, + { + "pid": "8090", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307683" + } + }, + { + "pid": "8091", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307705" + } + }, + { + "pid": "8092", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307721" + } + }, + { + "pid": "8093", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307756" } }, { - "pid": "7620", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/132184214" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1334542139" + }, + "pid": "8094", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1334538549" + }, + "pid": "8095", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1334484775" + }, + "pid": "8096", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1334336342" + }, + "pid": "8097", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1334320462" + }, + "pid": "8098", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1334314950" + }, + "pid": "8099", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1334231826" + }, + "pid": "8100", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1334230463" + }, + "pid": "8101", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1334227209" + }, + "pid": "8102", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1334225907" + }, + "pid": "8103", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1334131074" + }, + "pid": "8104", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1334127158" + }, + "pid": "8105", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1334091412" + }, + "pid": "8106", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1334089663" + }, + "pid": "8107", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1334088837" + }, + "pid": "8108", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1334088217" + }, + "pid": "8109", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1334087156" + }, + "pid": "8110", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/133400076X" + }, + "pid": "8111", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333993331" + }, + "pid": "8112", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333992548" + }, + "pid": "8113", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333987366" + }, + "pid": "8114", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/133396420X" + }, + "pid": "8115", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333876874" + }, + "pid": "8116", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333855907" + }, + "pid": "8117", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/133385501X" + }, + "pid": "8118", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333853084" + }, + "pid": "8119", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333852673" + }, + "pid": "8120", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333849788" + }, + "pid": "8121", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333849435" + }, + "pid": "8122", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333729863" + }, + "pid": "8123", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333716354" + }, + "pid": "8124", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333566352" + }, + "pid": "8125", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333421427" + }, + "pid": "8126", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333376049" + }, + "pid": "8127", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/133335245X" + }, + "pid": "8128", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333352085" + }, + "pid": "8129", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333331002" + }, + "pid": "8130", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333323778" + }, + "pid": "8131", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333312415" + }, + "pid": "8132", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333312326" + }, + "pid": "8133", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333270267" + }, + "pid": "8134", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/133326514X" + }, + "pid": "8135", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333260830" + }, + "pid": "8136", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333256302" + }, + "pid": "8137", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/133325590X" + }, + "pid": "8138", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333255616" + }, + "pid": "8139", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333210043" + }, + "pid": "8140", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333209908" + }, + "pid": "8141", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333208901" + }, + "pid": "8142", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333141017" + }, + "pid": "8143", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333125127" + }, + "pid": "8144", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333119267" + }, + "pid": "8145", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333118023" + }, + "pid": "8146", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333117329" + }, + "pid": "8147", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333115881" + }, + "pid": "8148", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333113749" + }, + "pid": "8149", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333065841" + }, + "pid": "8150", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333064136" + }, + "pid": "8151", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333063970" + }, + "pid": "8152", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333063717" + }, + "pid": "8153", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/133306179X" + }, + "pid": "8154", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333037414" + }, + "pid": "8155", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333027249" + }, + "pid": "8156", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1332990258" + }, + "pid": "8157", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1332899730" + }, + "pid": "8158", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1332895018" + }, + "pid": "8159", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1332889549" + }, + "pid": "8160", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1332775381" + }, + "pid": "8161", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1332774113" + }, + "pid": "8162", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/133276648X" + }, + "pid": "8163", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1332759254" + }, + "pid": "8164", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1332688047" + }, + "pid": "8165", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1332661297" + }, + "pid": "8166", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1332657273" + }, + "pid": "8167", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1332649688" + }, + "pid": "8168", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1332459587" + }, + "pid": "8169", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1332430376" + }, + "pid": "8170", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1332426751" + }, + "pid": "8171", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1332365841" + }, + "pid": "8172", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1332318142" + }, + "pid": "8173", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1332111971" + }, + "pid": "8174", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1332095119" + }, + "pid": "8175", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/133197612X" + }, + "pid": "8176", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/133197593X" + }, + "pid": "8177", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1331975794" + }, + "pid": "8178", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1331886929" + }, + "pid": "8179", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1331876540" + }, + "pid": "8180", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1331840627" + }, + "pid": "8181", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1331747716" + }, + "pid": "8182", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1331734126" + }, + "pid": "8183", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1331734045" + }, + "pid": "8184", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1331733316" + }, + "pid": "8185", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1331723361" + }, + "pid": "8186", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1331719054" + }, + "pid": "8187", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1331717353" + }, + "pid": "8188", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1331710464" + }, + "pid": "8189", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1331704014" + }, + "pid": "8190", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1331614392" + }, + "pid": "8191", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1331613426" + }, + "pid": "8192", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1331605164" + }, + "pid": "8193", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1331605091" + }, + "pid": "8194", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1331604893" + }, + "pid": "8195", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1331603897" + }, + "pid": "8196", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1331594014" + }, + "pid": "8197", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1331592208" + }, + "pid": "8198", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1331584167" + }, + "pid": "8199", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1331530806" + }, + "pid": "8200", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1331496918" + }, + "pid": "8201", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1331482941" + }, + "pid": "8202", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1331380073" + }, + "pid": "8203", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1331102170" + }, + "pid": "8204", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1330854640" + }, + "pid": "8205", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1330843584" + }, + "pid": "8206", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1330586557" + }, + "pid": "8207", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1330586271" + }, + "pid": "8208", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1330585992" + }, + "pid": "8209", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1330585747" + }, + "pid": "8210", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1330447611" + }, + "pid": "8211", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1330433858" + }, + "pid": "8212", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1330430964" + }, + "pid": "8213", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1330343085" + }, + "pid": "8214", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1330186664" + }, + "pid": "8215", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1329650123" + }, + "pid": "8216", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1329573331" + }, + "pid": "8217", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1329325958" + }, + "pid": "8218", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1328905152" + }, + "pid": "8219", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1328159116" + }, + "pid": "8220", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1328114813" + }, + "pid": "8221", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1326598325" + }, + "pid": "8222", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1325970743" + }, + "pid": "8223", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1325836214" + }, + "pid": "8224", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1325526541" + }, + "pid": "8225", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1324473703" + }, + "pid": "8226", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1324101571" + }, + "pid": "8227", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1322498083" + }, + "pid": "8228", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1321930690" + }, + "pid": "8229", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1321369956" + }, + "pid": "8230", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1321325754" + }, + "pid": "8231", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/132121202X" + }, + "pid": "8232", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1319608302" + }, + "pid": "8233", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1319352146" + }, + "pid": "8234", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1318875676" + }, + "pid": "8235", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1318600871" + }, + "pid": "8236", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1318529573" + }, + "pid": "8237", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1315438240" + }, + "pid": "8238", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1315344238" + }, + "pid": "8239", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1315166526" + }, + "pid": "8240", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1314207296" + }, + "pid": "8241", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1314016547" + }, + "pid": "8242", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1314016032" + }, + "pid": "8243", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1311509100" + }, + "pid": "8244", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/131143609X" + }, + "pid": "8245", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1311352430" + }, + "pid": "8246", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1310159343" + }, + "pid": "8247", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/130899687X" + }, + "pid": "8248", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1308455038" + }, + "pid": "8249", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1305992857" + }, + "pid": "8250", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1302496050" + }, + "pid": "8251", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/129922539X" + }, + "pid": "8252", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1298858054" + }, + "pid": "8253", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1298312817" + }, + "pid": "8254", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1297822668" + }, + "pid": "8255", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1295539519" + }, + "pid": "8256", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1293306673" + }, + "pid": "8257", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1283002477" + }, + "pid": "8258", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/127857025X" + }, + "pid": "8259", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1278063730" + }, + "pid": "8260", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1277678871" + }, + "pid": "8261", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1277560676" + }, + "pid": "8262", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1276707304" + }, + "pid": "8263", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1276176597" + }, + "pid": "8264", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1275619533" + }, + "pid": "8265", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1275172962" + }, + "pid": "8266", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1274948169" + }, + "pid": "8267", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1274269121" + }, + "pid": "8268", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1273395077" + }, + "pid": "8269", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1273298268" + }, + "pid": "8270", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1273295374" + }, + "pid": "8271", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1270459880" + }, + "pid": "8272", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1268867829" + }, + "pid": "8273", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1267608781" + }, + "pid": "8274", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1267608366" + }, + "pid": "8275", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1267358122" + }, + "pid": "8276", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1266800611" + }, + "pid": "8277", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1266799931" + }, + "pid": "8278", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1264956134" + }, + "pid": "8279", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1262928265" + }, + "pid": "8280", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1261933737" + }, + "pid": "8281", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1259460460" + }, + "pid": "8282", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1258881675" + }, + "pid": "8283", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/125746423X" + }, + "pid": "8284", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1257346415" + }, + "pid": "8285", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1257092804" + }, + "pid": "8286", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1254569642" + }, + "pid": "8287", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1254535594" + }, + "pid": "8288", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1253837457" + }, + "pid": "8289", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1252827512" + }, + "pid": "8290", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1252257295" + }, + "pid": "8291", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1251536492" + }, + "pid": "8292", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1250258731" + }, + "pid": "8293", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/124994516X" + }, + "pid": "8294", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1249112877" + }, + "pid": "8295", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1248945506" + }, + "pid": "8296", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1247639401" + }, + "pid": "8297", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1246126877" + }, + "pid": "8298", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/124608841X" + }, + "pid": "8299", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1241975299" + }, + "pid": "8300", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1234514702" + }, + "pid": "8301", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1232346071" + }, + "pid": "8302", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1228154325" + }, + "pid": "8303", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1225893461" + }, + "pid": "8304", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1219598135" + }, + "pid": "8305", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1210456753" + }, + "pid": "8306", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1202575048" + }, + "pid": "8307", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1201330661" + }, + "pid": "8308", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1199404365" + }, + "pid": "8309", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1198723262" + }, + "pid": "8310", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1191508781" + }, + "pid": "8311", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1188589024" + }, + "pid": "8312", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1183863349" + }, + "pid": "8313", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1181268311" + }, + "pid": "8314", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1181007100" + }, + "pid": "8315", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1173842845" + }, + "pid": "8316", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1173062238" + }, + "pid": "8317", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1172567794" + }, + "pid": "8318", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1166161722" + }, + "pid": "8319", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1165352362" + }, + "pid": "8320", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1165347768" + }, + "pid": "8321", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1162072040" + }, + "pid": "8322", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1161142878" + }, + "pid": "8323", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1155851412" + }, + "pid": "8324", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1155424573" + }, + "pid": "8325", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1153834367" + }, + "pid": "8326", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1150861010" + }, + "pid": "8327", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1145186815" + }, + "pid": "8328", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1144301971" + }, + "pid": "8329", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/114005791X" + }, + "pid": "8330", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1139178725" + }, + "pid": "8331", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1135938261" + }, + "pid": "8332", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1122355092" + }, + "pid": "8333", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1121689914" + }, + "pid": "8334", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1118514823" + }, + "pid": "8335", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1117164012" + }, + "pid": "8336", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1116981521" + }, + "pid": "8337", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1115371371" + }, + "pid": "8338", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1099123399" + }, + "pid": "8339", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1081489480" + }, + "pid": "8340", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1078298378" + }, + "pid": "8341", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/107366371X" + }, + "pid": "8342", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1073212491" + }, + "pid": "8343", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1072727021" + }, + "pid": "8344", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1072723875" + }, + "pid": "8345", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/107257439X" + }, + "pid": "8346", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1070750409" + }, + "pid": "8347", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1069698822" + }, + "pid": "8348", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1069336971" + }, + "pid": "8349", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1068604875" + }, + "pid": "8350", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1066801789" + }, + "pid": "8351", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1064698727" + }, + "pid": "8352", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1064281230" + }, + "pid": "8353", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1064280692" + }, + "pid": "8354", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/106427546X" + }, + "pid": "8355", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1064098363" + }, + "pid": "8356", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1063927137" + }, + "pid": "8357", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1063927110" + }, + "pid": "8358", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1063925908" + }, + "pid": "8359", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1063349230" + }, + "pid": "8360", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1062937325" + }, + "pid": "8361", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1060931796" + }, + "pid": "8362", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1060912503" + }, + "pid": "8363", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1060909251" + }, + "pid": "8364", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1060907534" + }, + "pid": "8365", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1060882345" + }, + "pid": "8366", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1060882191" + }, + "pid": "8367", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1060881373" + }, + "pid": "8368", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1060881039" + }, + "pid": "8369", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1060858703" + }, + "pid": "8370", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1060811529" + }, + "pid": "8371", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1060804263" + }, + "pid": "8372", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1060778947" + }, + "pid": "8373", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1060674483" + }, + "pid": "8374", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1060581957" + }, + "pid": "8375", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1060577895" + }, + "pid": "8376", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/106057683X" + }, + "pid": "8377", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1060521229" + }, + "pid": "8378", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1060471329" + }, + "pid": "8379", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1060399172" + }, + "pid": "8380", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1060358328" + }, + "pid": "8381", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/106013411X" + }, + "pid": "8382", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1060114909" + }, + "pid": "8383", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1060090236" + }, + "pid": "8384", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1060077914" + }, + "pid": "8385", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1060077817" + }, + "pid": "8386", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1059889455" + }, + "pid": "8387", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1059823527" + }, + "pid": "8388", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1059732483" + }, + "pid": "8389", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/105962091X" + }, + "pid": "8390", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/105960552X" + }, + "pid": "8391", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1059558653" + }, + "pid": "8392", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1059464667" + }, + "pid": "8393", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1059463385" + }, + "pid": "8394", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1059408058" + }, + "pid": "8395", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1059388502" + }, + "pid": "8396", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1059388499" + }, + "pid": "8397", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1059388464" + }, + "pid": "8398", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1059384434" + }, + "pid": "8399", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1059383780" + }, + "pid": "8400", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1059323001" + }, + "pid": "8401", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1059271745" + }, + "pid": "8402", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1059254697" + }, + "pid": "8403", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1059254646" + }, + "pid": "8404", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1059226529" + }, + "pid": "8405", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1059152312" + }, + "pid": "8406", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1059103257" + }, + "pid": "8407", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1059090767" + }, + "pid": "8408", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1059087871" + }, + "pid": "8409", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1058986295" + }, + "pid": "8410", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/105896920X" + }, + "pid": "8411", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1058846361" + }, + "pid": "8412", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1058723790" + }, + "pid": "8413", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1058674900" + }, + "pid": "8414", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1058669559" + }, + "pid": "8415", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/105862394X" + }, + "pid": "8416", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1058513710" + }, + "pid": "8417", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1058507044" + }, + "pid": "8418", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1058389041" + }, + "pid": "8419", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1058382799" + }, + "pid": "8420", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1058371266" + }, + "pid": "8421", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1058370677" + }, + "pid": "8422", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1058284371" + }, + "pid": "8423", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1058284304" + }, + "pid": "8424", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1058284096" + }, + "pid": "8425", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1058280910" + }, + "pid": "8426", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1058249436" + }, + "pid": "8427", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1058206753" + }, + "pid": "8428", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1058118161" + }, + "pid": "8429", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1055857745" + }, + "pid": "8430", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1054037531" + }, + "pid": "8431", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1052970427" + }, + "pid": "8432", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1051355478" + }, + "pid": "8433", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1050801644" + }, + "pid": "8434", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1050440188" + }, + "pid": "8435", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1049971213" + }, + "pid": "8436", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1049453719" + }, + "pid": "8437", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/104797553X" + }, + "pid": "8438", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1047231085" + }, + "pid": "8439", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1041610890" + }, + "pid": "8440", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1037919874" + }, + "pid": "8441", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1034281828" + }, + "pid": "8442", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1033705691" + }, + "pid": "8443", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1030464197" + }, + "pid": "8444", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1028524978" + }, + "pid": "8445", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1027073808" + }, + "pid": "8446", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1027071171" + }, + "pid": "8447", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1026470986" + }, + "pid": "8448", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1026351537" + }, + "pid": "8449", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1025228928" + }, + "pid": "8450", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1023745712" + }, + "pid": "8451", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1023362872" + }, + "pid": "8452", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1022832425" + }, + "pid": "8453", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1021256064" + }, + "pid": "8454", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1018220429" + }, + "pid": "8455", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1017491062" + }, + "pid": "8456", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1017490090" + }, + "pid": "8457", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1017217165" + }, + "pid": "8458", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1017177503" + }, + "pid": "8459", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1017027366" + }, + "pid": "8460", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1016810989" + }, + "pid": "8461", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1016599463" + }, + "pid": "8462", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1016326106" + }, + "pid": "8463", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1015079253" + }, + "pid": "8464", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1013014065" + }, + "pid": "8465", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1011954141" + }, + "pid": "8466", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1011935201" + }, + "pid": "8467", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1011536455" + }, + "pid": "8468", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1011385856" + }, + "pid": "8469", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1011285738" + }, + "pid": "8470", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1011285436" + }, + "pid": "8471", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1011282518" + }, + "pid": "8472", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1011281368" + }, + "pid": "8473", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1011278723" + }, + "pid": "8474", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1011253313" + }, + "pid": "8475", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1011212722" + }, + "pid": "8476", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1011172399" + }, + "pid": "8477", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1011095351" + }, + "pid": "8478", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1010824597" + }, + "pid": "8479", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1010820389" + }, + "pid": "8480", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/101081933X" + }, + "pid": "8481", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/100974786X" + }, + "pid": "8482", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1009172255" + }, + "pid": "8483", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/100914135X" + }, + "pid": "8484", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1008599360" + }, + "pid": "8485", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1007558903" + }, + "pid": "8486", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1007553405" + }, + "pid": "8487", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1007096462" + }, + "pid": "8488", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1006156577" + }, + "pid": "8489", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1005952930" + }, + "pid": "8490", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1005003262" + }, + "pid": "8491", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1003591590" + }, + "pid": "8492", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1001213157" + }, + "pid": "8493", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1000465403" + }, + "pid": "8494", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/999617249" + }, + "pid": "8495", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/999602810" + }, + "pid": "8496", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/999129317" + }, + "pid": "8497", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/999038095" + }, + "pid": "8498", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/998759074" + }, + "pid": "8499", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/997781491" + }, + "pid": "8500", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/994660987" + }, + "pid": "8501", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/994508417" + }, + "pid": "8502", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/994042582" + }, + "pid": "8503", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/993971806" + }, + "pid": "8504", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992779871" + }, + "pid": "8505", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992757681" + }, + "pid": "8506", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992754151" + }, + "pid": "8507", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992753589" + }, + "pid": "8508", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992747260" + }, + "pid": "8509", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992745489" + }, + "pid": "8510", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992744431" + }, + "pid": "8511", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992744040" + }, + "pid": "8512", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992742145" + }, + "pid": "8513", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992740622" + }, + "pid": "8514", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992740002" + }, + "pid": "8515", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992739888" + }, + "pid": "8516", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992734894" + }, + "pid": "8517", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992733510" + }, + "pid": "8518", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992258820" + }, + "pid": "8519", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/991512669" + }, + "pid": "8520", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/99110546X" + }, + "pid": "8521", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/990635139" + }, + "pid": "8522", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/989819264" + }, + "pid": "8523", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/987246100" + }, + "pid": "8524", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/986124265" + }, + "pid": "8525", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/985953780" + }, + "pid": "8526", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/985948116" + }, + "pid": "8527", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/985147172" + }, + "pid": "8528", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/985075619" + }, + "pid": "8529", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/984505180" + }, + "pid": "8530", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/983782784" + }, + "pid": "8531", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/983616299" + }, + "pid": "8532", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/98350816X" + }, + "pid": "8533", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/983481644" + }, + "pid": "8534", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/983481628" + }, + "pid": "8535", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/982938322" + }, + "pid": "8536", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/982377649" + }, + "pid": "8537", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/982125461" + }, + "pid": "8538", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/981073328" + }, + "pid": "8539", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/98106521X" + }, + "pid": "8540", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/980868459" + }, + "pid": "8541", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/980347890" + }, + "pid": "8542", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/979633079" + }, + "pid": "8543", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/979217253" + }, + "pid": "8544", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/979214998" + }, + "pid": "8545", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/977813762" + }, + "pid": "8546", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/977682633" + }, + "pid": "8547", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/977294390" + }, + "pid": "8548", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/976865351" + }, + "pid": "8549", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/976859416" + }, + "pid": "8550", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/976009048" + }, + "pid": "8551", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/975670824" + }, + "pid": "8552", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/975199056" + }, + "pid": "8553", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/97466068X" + }, + "pid": "8554", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/974476560" + }, + "pid": "8555", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/974160032" + }, + "pid": "8556", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/97397687X" + }, + "pid": "8557", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/972616705" + }, + "pid": "8558", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/972391010" + }, + "pid": "8559", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/971044899" + }, + "pid": "8560", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/970758065" + }, + "pid": "8561", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/970679645" + }, + "pid": "8562", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/970190417" + }, + "pid": "8563", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/969678363" + }, + "pid": "8564", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/969131240" + }, + "pid": "8565", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/968663664" + }, + "pid": "8566", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/968634737" + }, + "pid": "8567", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/968438121" + }, + "pid": "8568", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/968387705" + }, + "pid": "8569", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/968377955" + }, + "pid": "8570", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/968360009" + }, + "pid": "8571", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/96832780X" + }, + "pid": "8572", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/967876710" + }, + "pid": "8573", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/967734657" + }, + "pid": "8574", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/967659523" + }, + "pid": "8575", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/967617987" + }, + "pid": "8576", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/967326133" + }, + "pid": "8577", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/96717757X" + }, + "pid": "8578", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/967169399" + }, + "pid": "8579", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/967155223" + }, + "pid": "8580", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/966649052" + }, + "pid": "8581", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/966536304" + }, + "pid": "8582", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/965652785" + }, + "pid": "8583", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/965576825" + }, + "pid": "8584", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/965369846" + }, + "pid": "8585", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/965367924" + }, + "pid": "8586", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/965252973" + }, + "pid": "8587", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/964979683" + }, + "pid": "8588", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/964866862" + }, + "pid": "8589", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/964848651" + }, + "pid": "8590", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/96473222X" + }, + "pid": "8591", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/964720272" + }, + "pid": "8592", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/964519194" + }, + "pid": "8593", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/964421062" + }, + "pid": "8594", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/964339676" + }, + "pid": "8595", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/964334666" + }, + "pid": "8596", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/964248026" + }, + "pid": "8597", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/964078880" + }, + "pid": "8598", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/963708708" + }, + "pid": "8599", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/963707906" + }, + "pid": "8600", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/963707884" + }, + "pid": "8601", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/963495046" + }, + "pid": "8602", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/963483927" + }, + "pid": "8603", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/96317066X" + }, + "pid": "8604", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/963127608" + }, + "pid": "8605", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/963125125" + }, + "pid": "8606", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/963005553" + }, + "pid": "8607", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/962883026" + }, + "pid": "8608", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/962846104" + }, + "pid": "8609", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/962794015" + }, + "pid": "8610", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/962681539" + }, + "pid": "8611", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/962256978" + }, + "pid": "8612", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/962005959" + }, + "pid": "8613", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/961909021" + }, + "pid": "8614", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/961468319" + }, + "pid": "8615", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/960936785" + }, + "pid": "8616", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/960733108" + }, + "pid": "8617", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/960658491" + }, + "pid": "8618", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/960161872" + }, + "pid": "8619", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/959965831" + }, + "pid": "8620", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/959960775" + }, + "pid": "8621", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/959893202" + }, + "pid": "8622", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/959807241" + }, + "pid": "8623", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/959710248" + }, + "pid": "8624", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/959143459" + }, + "pid": "8625", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/958745404" + }, + "pid": "8626", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/958745374" + }, + "pid": "8627", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/958745307" + }, + "pid": "8628", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/958577447" + }, + "pid": "8629", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/958508402" + }, + "pid": "8630", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/958195455" + }, + "pid": "8631", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/958121966" + }, + "pid": "8632", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/957564554" + }, + "pid": "8633", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/957193599" + }, + "pid": "8634", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/957133235" + }, + "pid": "8635", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/956836976" + }, + "pid": "8636", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/956033679" + }, + "pid": "8637", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/955952638" + }, + "pid": "8638", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/955845483" + }, + "pid": "8639", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/955777844" + }, + "pid": "8640", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/955671906" + }, + "pid": "8641", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/955633087" + }, + "pid": "8642", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/955631963" + }, + "pid": "8643", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/955522552" + }, + "pid": "8644", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/955510392" + }, + "pid": "8645", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/955497205" + }, + "pid": "8646", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/955324300" + }, + "pid": "8647", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/955297966" + }, + "pid": "8648", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/955286999" + }, + "pid": "8649", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/955249929" + }, + "pid": "8650", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/955181178" + }, + "pid": "8651", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/955150507" + }, + "pid": "8652", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/954752554" + }, + "pid": "8653", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/95471752X" + }, + "pid": "8654", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/95469483X" + }, + "pid": "8655", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/954658248" + }, + "pid": "8656", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/95439836X" + }, + "pid": "8657", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/954299973" + }, + "pid": "8658", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/954068572" + }, + "pid": "8659", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/95406853X" + }, + "pid": "8660", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/954021185" + }, + "pid": "8661", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/953936503" + }, + "pid": "8662", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/953467732" + }, + "pid": "8663", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/953463176" + }, + "pid": "8664", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/953354431" + }, + "pid": "8665", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/95324590X" + }, + "pid": "8666", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/953019209" + }, + "pid": "8667", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/953011992" + }, + "pid": "8668", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/952966336" + }, + "pid": "8669", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/952945991" + }, + "pid": "8670", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/952945819" + }, + "pid": "8671", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/952794357" + }, + "pid": "8672", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/952319888" + }, + "pid": "8673", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/952090163" + }, + "pid": "8674", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/952082098" + }, + "pid": "8675", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/951939440" + }, + "pid": "8676", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/95171337X" + }, + "pid": "8677", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/951567241" + }, + "pid": "8678", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/951452940" + }, + "pid": "8679", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/95136653X" + }, + "pid": "8680", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/951151541" + }, + "pid": "8681", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/951040960" + }, + "pid": "8682", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/950872555" + }, + "pid": "8683", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/95058410X" + }, + "pid": "8684", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/950461083" + }, + "pid": "8685", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/950453544" + }, + "pid": "8686", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/950378682" + }, + "pid": "8687", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/950378658" + }, + "pid": "8688", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/950280984" + }, + "pid": "8689", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/950268593" + }, + "pid": "8690", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/94996591X" + }, + "pid": "8691", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/949736864" + }, + "pid": "8692", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/949582964" + }, + "pid": "8693", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/94925584X" + }, + "pid": "8694", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/949178594" + }, + "pid": "8695", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/948985429" + }, + "pid": "8696", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/948861975" + }, + "pid": "8697", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/948734418" + }, + "pid": "8698", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/948616792" + }, + "pid": "8699", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/948581387" + }, + "pid": "8700", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/948367032" + }, + "pid": "8701", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/948358742" + }, + "pid": "8702", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/94818387X" + }, + "pid": "8703", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/948059028" + }, + "pid": "8704", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/948023465" + }, + "pid": "8705", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/947999043" + }, + "pid": "8706", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/947807691" + }, + "pid": "8707", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/947667040" + }, + "pid": "8708", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/947636676" + }, + "pid": "8709", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/947568441" + }, + "pid": "8710", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/947543112" + }, + "pid": "8711", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/947466223" + }, + "pid": "8712", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/947465928" + }, + "pid": "8713", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/947415874" + }, + "pid": "8714", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/947397213" + }, + "pid": "8715", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/947389229" + }, + "pid": "8716", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/94736093X" + }, + "pid": "8717", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/947337555" + }, + "pid": "8718", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/947167293" + }, + "pid": "8719", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/947085017" + }, + "pid": "8720", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/947015388" + }, + "pid": "8721", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/946998051" + }, + "pid": "8722", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/946944210" + }, + "pid": "8723", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/946868093" + }, + "pid": "8724", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/946792631" + }, + "pid": "8725", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/946776164" + }, + "pid": "8726", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/946530629" + }, + "pid": "8727", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/94646085X" + }, + "pid": "8728", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/946062706" + }, + "pid": "8729", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/946022895" + }, + "pid": "8730", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/94601888X" + }, + "pid": "8731", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/945863837" + }, + "pid": "8732", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/944522297" + }, + "pid": "8733", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/944502172" + }, + "pid": "8734", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/944484611" + }, + "pid": "8735", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/94430396X" + }, + "pid": "8736", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/943889170" + }, + "pid": "8737", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/943836476" + }, + "pid": "8738", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/943625394" + }, + "pid": "8739", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/943440017" + }, + "pid": "8740", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/94337426X" + }, + "pid": "8741", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/943258170" + }, + "pid": "8742", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/943209374" + }, + "pid": "8743", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/942627644" + }, + "pid": "8744", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/942531639" + }, + "pid": "8745", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/942348036" + }, + "pid": "8746", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/942346300" + }, + "pid": "8747", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/942142845" + }, + "pid": "8748", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/94203712X" + }, + "pid": "8749", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/941869121" + }, + "pid": "8750", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/941589021" + }, + "pid": "8751", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/941532704" + }, + "pid": "8752", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/941495256" + }, + "pid": "8753", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/941482774" + }, + "pid": "8754", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/941366138" + }, + "pid": "8755", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/941365050" + }, + "pid": "8756", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/941158748" + }, + "pid": "8757", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/941131572" + }, + "pid": "8758", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/940921588" + }, + "pid": "8759", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/940807904" + }, + "pid": "8760", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/940788187" + }, + "pid": "8761", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/940762048" + }, + "pid": "8762", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/940758776" + }, + "pid": "8763", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/940755459" + }, + "pid": "8764", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/94074449X" + }, + "pid": "8765", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/940604833" + }, + "pid": "8766", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/940540959" + }, + "pid": "8767", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/940535912" + }, + "pid": "8768", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/94052113X" + }, + "pid": "8769", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/940125897" + }, + "pid": "8770", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/940111187" + }, + "pid": "8771", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/940085798" + }, + "pid": "8772", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/940049570" + }, + "pid": "8773", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/940035731" + }, + "pid": "8774", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/199279101" + }, + "pid": "8775", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/199254435" + }, + "pid": "8776", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/199249903" + }, + "pid": "8777", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/199099952" + }, + "pid": "8778", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/130755087" + }, + "pid": "8779", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/130749478" + }, + "pid": "8780", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/130741531" + }, + "pid": "8781", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/130722529" + }, + "pid": "8782", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/130715107" + }, + "pid": "8783", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/130712930" + }, + "pid": "8784", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/13071206X" + }, + "pid": "8785", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/130700525" + }, + "pid": "8786", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/130699152" + }, + "pid": "8787", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/130699101" + }, + "pid": "8788", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/130698644" + }, + "pid": "8789", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043280072" + }, + "pid": "8790", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043270972" + }, + "pid": "8791", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043270328" + }, + "pid": "8792", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043269605" + }, + "pid": "8793", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043265006" + }, + "pid": "8794", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043229395" + }, + "pid": "8795", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043225276" + }, + "pid": "8796", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043220797" + }, + "pid": "8797", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043196063" + }, + "pid": "8798", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043172415" + }, + "pid": "8799", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043170854" + }, + "pid": "8800", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043166644" + }, + "pid": "8801", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043166202" + }, + "pid": "8802", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04316532X" + }, + "pid": "8803", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043153607" + }, + "pid": "8804", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043134475" + }, + "pid": "8805", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043134106" + }, + "pid": "8806", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043133908" + }, + "pid": "8807", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043133789" + }, + "pid": "8808", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043126944" + }, + "pid": "8809", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043122507" + }, + "pid": "8810", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043119816" + }, + "pid": "8811", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04311704X" + }, + "pid": "8812", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043110290" + }, + "pid": "8813", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043104754" + }, + "pid": "8814", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043092756" + }, + "pid": "8815", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043087787" + }, + "pid": "8816", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043079458" + }, + "pid": "8817", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043078664" + }, + "pid": "8818", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043062024" + }, + "pid": "8819", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04304980X" + }, + "pid": "8820", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043049354" + }, + "pid": "8821", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043047815" + }, + "pid": "8822", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043045820" + }, + "pid": "8823", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043023932" + }, + "pid": "8824", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043007708" + }, + "pid": "8825", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043006248" + }, + "pid": "8826", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042975174" + }, + "pid": "8827", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04296962X" + }, + "pid": "8828", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042936586" + }, + "pid": "8829", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042933854" + }, + "pid": "8830", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042932297" + }, + "pid": "8831", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042928664" + }, + "pid": "8832", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04291373X" + }, + "pid": "8833", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042912709" + }, + "pid": "8834", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042911915" + }, + "pid": "8835", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042909163" + }, + "pid": "8836", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042898250" + }, + "pid": "8837", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042871255" + }, + "pid": "8838", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042871093" + }, + "pid": "8839", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042868696" + }, + "pid": "8840", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042855098" + }, + "pid": "8841", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042854083" + }, + "pid": "8842", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042829763" + }, + "pid": "8843", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042829194" + }, + "pid": "8844", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042828465" + }, + "pid": "8845", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042825210" + }, + "pid": "8846", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042819415" + }, + "pid": "8847", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042817293" + }, + "pid": "8848", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042813905" + }, + "pid": "8849", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042803098" + }, + "pid": "8850", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042798779" + }, + "pid": "8851", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042798760" + }, + "pid": "8852", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042798477" + }, + "pid": "8853", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042773539" + }, + "pid": "8854", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042763568" + }, + "pid": "8855", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04276243X" + }, + "pid": "8856", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042755255" + }, + "pid": "8857", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04275206X" + }, + "pid": "8858", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042749298" + }, + "pid": "8859", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042740983" + }, + "pid": "8860", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042728622" + }, + "pid": "8861", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042725739" + }, + "pid": "8862", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042707870" + }, + "pid": "8863", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042667208" + }, + "pid": "8864", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04264044X" + }, + "pid": "8865", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042625025" + }, + "pid": "8866", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042616727" + }, + "pid": "8867", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042612292" + }, + "pid": "8868", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042556740" + }, + "pid": "8869", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042552192" + }, + "pid": "8870", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04252184X" + }, + "pid": "8871", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04251729X" + }, + "pid": "8872", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042496918" + }, + "pid": "8873", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042496896" + }, + "pid": "8874", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042491010" + }, + "pid": "8875", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042479770" + }, + "pid": "8876", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042466199" + }, + "pid": "8877", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04245395X" + }, + "pid": "8878", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042439086" + }, + "pid": "8879", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042433517" + }, + "pid": "8880", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042427045" + }, + "pid": "8881", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042416795" + }, + "pid": "8882", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042402883" + }, + "pid": "8883", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042402239" + }, + "pid": "8884", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042363527" + }, + "pid": "8885", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042362466" + }, + "pid": "8886", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042349885" + }, + "pid": "8887", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042349877" + }, + "pid": "8888", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042319986" + }, + "pid": "8889", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04231416X" + }, + "pid": "8890", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042294118" + }, + "pid": "8891", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042259177" + }, + "pid": "8892", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042250234" + }, + "pid": "8893", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042237688" + }, + "pid": "8894", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042221234" + }, + "pid": "8895", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042208408" + }, + "pid": "8896", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042203856" + }, + "pid": "8897", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042203023" + }, + "pid": "8898", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042195810" + }, + "pid": "8899", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042193958" + }, + "pid": "8900", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04219007X" + }, + "pid": "8901", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042189748" + }, + "pid": "8902", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042187494" + }, + "pid": "8903", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042180805" + }, + "pid": "8904", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042159458" + }, + "pid": "8905", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042154316" + }, + "pid": "8906", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042152089" + }, + "pid": "8907", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042150876" + }, + "pid": "8908", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042140048" + }, + "pid": "8909", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042137268" + }, + "pid": "8910", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042108160" + }, + "pid": "8911", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042108152" + }, + "pid": "8912", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042104068" + }, + "pid": "8913", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042098386" + }, + "pid": "8914", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042092175" + }, + "pid": "8915", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042086280" + }, + "pid": "8916", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04208394X" + }, + "pid": "8917", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042066107" + }, + "pid": "8918", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042056349" + }, + "pid": "8919", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042017793" + }, + "pid": "8920", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042017246" + }, + "pid": "8921", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042003458" + }, + "pid": "8922", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041995724" + }, + "pid": "8923", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041992555" + }, + "pid": "8924", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041987489" + }, + "pid": "8925", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041981804" + }, + "pid": "8926", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041977009" + }, + "pid": "8927", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041975278" + }, + "pid": "8928", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041954378" + }, + "pid": "8929", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041954327" + }, + "pid": "8930", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041943236" + }, + "pid": "8931", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041928547" + }, + "pid": "8932", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041928326" + }, + "pid": "8933", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041924878" + }, + "pid": "8934", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041918754" + }, + "pid": "8935", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041913272" + }, + "pid": "8936", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041911849" + }, + "pid": "8937", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041911598" + }, + "pid": "8938", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041911199" + }, + "pid": "8939", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041910842" + }, + "pid": "8940", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041907078" + }, + "pid": "8941", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041902955" + }, + "pid": "8942", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04190186X" + }, + "pid": "8943", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041900804" + }, + "pid": "8944", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041899849" + }, + "pid": "8945", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041898273" + }, + "pid": "8946", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041896807" + }, + "pid": "8947", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041891775" + }, + "pid": "8948", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041890787" + }, + "pid": "8949", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041889959" + }, + "pid": "8950", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041887913" + }, + "pid": "8951", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041887786" + }, + "pid": "8952", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041884612" + }, + "pid": "8953", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041882229" + }, + "pid": "8954", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041881745" + }, + "pid": "8955", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041876938" + }, + "pid": "8956", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041874919" + }, + "pid": "8957", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041873270" + }, + "pid": "8958", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041871286" + }, + "pid": "8959", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041871189" + }, + "pid": "8960", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041867785" + }, + "pid": "8961", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041863488" + }, + "pid": "8962", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04186347X" + }, + "pid": "8963", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041862473" + }, + "pid": "8964", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041862465" + }, + "pid": "8965", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041841387" + }, + "pid": "8966", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041835662" + }, + "pid": "8967", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041833333" + }, + "pid": "8968", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041830989" + }, + "pid": "8969", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041823788" + }, + "pid": "8970", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04182265X" + }, + "pid": "8971", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041809858" + }, + "pid": "8972", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041809165" + }, + "pid": "8973", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041808525" + }, + "pid": "8974", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041807677" + }, + "pid": "8975", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041805348" + }, + "pid": "8976", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04180466X" + }, + "pid": "8977", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041802659" + }, + "pid": "8978", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041798813" + }, + "pid": "8979", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041794524" + }, + "pid": "8980", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041792432" + }, + "pid": "8981", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041785215" + }, + "pid": "8982", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041784839" + }, + "pid": "8983", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041781635" + }, + "pid": "8984", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041779452" + }, + "pid": "8985", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041774434" + }, + "pid": "8986", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041772822" + }, + "pid": "8987", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041772768" + }, + "pid": "8988", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041767934" + }, + "pid": "8989", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041766717" + }, + "pid": "8990", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04176420X" + }, + "pid": "8991", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041763165" + }, + "pid": "8992", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041759834" + }, + "pid": "8993", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041755014" + }, + "pid": "8994", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041754557" + }, + "pid": "8995", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04175431X" + }, + "pid": "8996", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04174926X" + }, + "pid": "8997", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041748964" + }, + "pid": "8998", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04174604X" + }, + "pid": "8999", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041742648" + }, + "pid": "9000", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04174084X" + }, + "pid": "9001", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041738063" + }, + "pid": "9002", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041737539" + }, + "pid": "9003", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041736346" + }, + "pid": "9004", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041735390" + }, + "pid": "9005", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041734688" + }, + "pid": "9006", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041733819" + }, + "pid": "9007", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041725522" + }, + "pid": "9008", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041722027" + }, + "pid": "9009", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041720040" + }, + "pid": "9010", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041718429" + }, + "pid": "9011", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041716159" + }, + "pid": "9012", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041714059" + }, + "pid": "9013", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041712188" + }, + "pid": "9014", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04171069X" + }, + "pid": "9015", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04171007X" + }, + "pid": "9016", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041707109" + }, + "pid": "9017", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04170441X" + }, + "pid": "9018", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041700465" + }, + "pid": "9019", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041693442" + }, + "pid": "9020", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041692403" + }, + "pid": "9021", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041691989" + }, + "pid": "9022", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041691504" + }, + "pid": "9023", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041689976" + }, + "pid": "9024", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041688473" + }, + "pid": "9025", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041682106" + }, + "pid": "9026", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041679792" + }, + "pid": "9027", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041678532" + }, + "pid": "9028", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041667093" + }, + "pid": "9029", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041664795" + }, + "pid": "9030", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041650018" + }, + "pid": "9031", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041640047" + }, + "pid": "9032", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041639383" + }, + "pid": "9033", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041634179" + }, + "pid": "9034", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041631692" + }, + "pid": "9035", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041631676" + }, + "pid": "9036", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04163120X" + }, + "pid": "9037", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041627458" + }, + "pid": "9038", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041623010" + }, + "pid": "9039", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041621662" + }, + "pid": "9040", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041619633" + }, + "pid": "9041", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041619366" + }, + "pid": "9042", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041617266" + }, + "pid": "9043", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041616375" + }, + "pid": "9044", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041612469" + }, + "pid": "9045", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041607988" + }, + "pid": "9046", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041605799" + }, + "pid": "9047", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041603176" + }, + "pid": "9048", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041601475" + }, + "pid": "9049", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041600622" + }, + "pid": "9050", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041600010" + }, + "pid": "9051", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041596277" + }, + "pid": "9052", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041595505" + }, + "pid": "9053", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041582969" + }, + "pid": "9054", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041582675" + }, + "pid": "9055", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041582500" + }, + "pid": "9056", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041580176" + }, + "pid": "9057", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041579550" + }, + "pid": "9058", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041577760" + }, + "pid": "9059", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041573579" + }, + "pid": "9060", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041570316" + }, + "pid": "9061", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041570154" + }, + "pid": "9062", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041565762" + }, + "pid": "9063", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041563409" + }, + "pid": "9064", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04155812X" + }, + "pid": "9065", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041558103" + }, + "pid": "9066", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041556984" + }, + "pid": "9067", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041555252" + }, + "pid": "9068", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041552725" + }, + "pid": "9069", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041552334" + }, + "pid": "9070", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041549457" + }, + "pid": "9071", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041543688" + }, + "pid": "9072", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041540654" + }, + "pid": "9073", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041540387" + }, + "pid": "9074", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041539346" + }, + "pid": "9075", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041537882" + }, + "pid": "9076", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04152862X" + }, + "pid": "9077", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041528565" + }, + "pid": "9078", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041527186" + }, + "pid": "9079", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041527062" + }, + "pid": "9080", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041521927" + }, + "pid": "9081", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041511794" + }, + "pid": "9082", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041511360" + }, + "pid": "9083", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041507983" + }, + "pid": "9084", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041506588" + }, + "pid": "9085", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041505190" + }, + "pid": "9086", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041504925" + }, + "pid": "9087", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041501950" + }, + "pid": "9088", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041501608" + }, + "pid": "9089", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041497848" + }, + "pid": "9090", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041497112" + }, + "pid": "9091", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041490673" + }, + "pid": "9092", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041489837" + }, + "pid": "9093", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041483626" + }, + "pid": "9094", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041479017" + }, + "pid": "9095", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041467760" + }, + "pid": "9096", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04146351X" + }, + "pid": "9097", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041463250" + }, + "pid": "9098", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041462467" + }, + "pid": "9099", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041456629" + }, + "pid": "9100", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041455908" + }, + "pid": "9101", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04145412X" + }, + "pid": "9102", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041451732" + }, + "pid": "9103", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041449347" + }, + "pid": "9104", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041448723" + }, + "pid": "9105", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041445120" + }, + "pid": "9106", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041445082" + }, + "pid": "9107", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041444817" + }, + "pid": "9108", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041444809" + }, + "pid": "9109", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041444108" + }, + "pid": "9110", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04144115X" + }, + "pid": "9111", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041440706" + }, + "pid": "9112", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041439686" + }, + "pid": "9113", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041436512" + }, + "pid": "9114", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041434722" + }, + "pid": "9115", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041427548" + }, + "pid": "9116", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041424654" + }, + "pid": "9117", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041419464" + }, + "pid": "9118", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041413334" + }, + "pid": "9119", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041413083" + }, + "pid": "9120", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041410513" + }, + "pid": "9121", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041406605" + }, + "pid": "9122", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041403886" + }, + "pid": "9123", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041403657" + }, + "pid": "9124", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041401522" + }, + "pid": "9125", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041400909" + }, + "pid": "9126", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041398424" + }, + "pid": "9127", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041397932" + }, + "pid": "9128", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041397150" + }, + "pid": "9129", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04139674X" + }, + "pid": "9130", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041395786" + }, + "pid": "9131", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04139531X" + }, + "pid": "9132", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041393848" + }, + "pid": "9133", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041392736" + }, + "pid": "9134", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041385896" + }, + "pid": "9135", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041385659" + }, + "pid": "9136", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041382994" + }, + "pid": "9137", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041380827" + }, + "pid": "9138", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041378970" + }, + "pid": "9139", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041378296" + }, + "pid": "9140", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04137651X" + }, + "pid": "9141", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041375785" + }, + "pid": "9142", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041375157" + }, + "pid": "9143", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041373146" + }, + "pid": "9144", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041372867" + }, + "pid": "9145", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041369424" + }, + "pid": "9146", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041368118" + }, + "pid": "9147", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041367782" + }, + "pid": "9148", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041358902" + }, + "pid": "9149", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041358678" + }, + "pid": "9150", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041357515" + }, + "pid": "9151", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041351169" + }, + "pid": "9152", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041344677" + }, + "pid": "9153", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041336844" + }, + "pid": "9154", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041336720" + }, + "pid": "9155", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041332156" + }, + "pid": "9156", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041330048" + }, + "pid": "9157", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041328523" + }, + "pid": "9158", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041327896" + }, + "pid": "9159", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041326393" + }, + "pid": "9160", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041325109" + }, + "pid": "9161", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04132501X" + }, + "pid": "9162", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041321782" + }, + "pid": "9163", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041318153" + }, + "pid": "9164", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041312406" + }, + "pid": "9165", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041311248" + }, + "pid": "9166", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041308263" + }, + "pid": "9167", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041306570" + }, + "pid": "9168", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041306473" + }, + "pid": "9169", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041305450" + }, + "pid": "9170", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041301005" + }, + "pid": "9171", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041296540" + }, + "pid": "9172", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041291107" + }, + "pid": "9173", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041289870" + }, + "pid": "9174", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041288769" + }, + "pid": "9175", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04128805X" + }, + "pid": "9176", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041287886" + }, + "pid": "9177", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041285913" + }, + "pid": "9178", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041284100" + }, + "pid": "9179", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041282787" + }, + "pid": "9180", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041280628" + }, + "pid": "9181", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041277848" + }, + "pid": "9182", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041277090" + }, + "pid": "9183", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041275829" + }, + "pid": "9184", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041274059" + }, + "pid": "9185", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041270290" + }, + "pid": "9186", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041264487" + }, + "pid": "9187", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04126133X" + }, + "pid": "9188", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041258819" + }, + "pid": "9189", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041258762" + }, + "pid": "9190", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041255364" + }, + "pid": "9191", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041254759" + }, + "pid": "9192", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041254538" + }, + "pid": "9193", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041251733" + }, + "pid": "9194", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041250117" + }, + "pid": "9195", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041244362" + }, + "pid": "9196", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04124317X" + }, + "pid": "9197", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041240839" + }, + "pid": "9198", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041237226" + }, + "pid": "9199", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041231899" + }, + "pid": "9200", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041220803" + }, + "pid": "9201", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041218760" + }, + "pid": "9202", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041217896" + }, + "pid": "9203", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041217225" + }, + "pid": "9204", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041217020" + }, + "pid": "9205", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04121630X" + }, + "pid": "9206", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041214870" + }, + "pid": "9207", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041212339" + }, + "pid": "9208", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041211383" + }, + "pid": "9209", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041211154" + }, + "pid": "9210", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041208862" + }, + "pid": "9211", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041204409" + }, + "pid": "9212", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041176626" + }, + "pid": "9213", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041175808" + }, + "pid": "9214", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041173899" + }, + "pid": "9215", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041172922" + }, + "pid": "9216", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041172299" + }, + "pid": "9217", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041164334" + }, + "pid": "9218", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04115746X" + }, + "pid": "9219", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041144910" + }, + "pid": "9220", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041142993" + }, + "pid": "9221", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041142403" + }, + "pid": "9222", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041134346" + }, + "pid": "9223", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041133889" + }, + "pid": "9224", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041125002" + }, + "pid": "9225", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041067940" + }, + "pid": "9226", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040785947" + }, + "pid": "9227", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04077984X" + }, + "pid": "9228", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040777820" + }, + "pid": "9229", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040776832" + }, + "pid": "9230", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040760669" + }, + "pid": "9231", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04075121X" + }, + "pid": "9232", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040741117" + }, + "pid": "9233", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040737888" + }, + "pid": "9234", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040737810" + }, + "pid": "9235", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040737063" + }, + "pid": "9236", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040717763" + }, + "pid": "9237", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040717119" + }, + "pid": "9238", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040715213" + }, + "pid": "9239", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040712168" + }, + "pid": "9240", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040709248" + }, + "pid": "9241", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040707385" + }, + "pid": "9242", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040706079" + }, + "pid": "9243", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040705846" + }, + "pid": "9244", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040693759" + }, + "pid": "9245", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040693538" + }, + "pid": "9246", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040687333" + }, + "pid": "9247", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040685969" + }, + "pid": "9248", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040677036" + }, + "pid": "9249", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04067701X" + }, + "pid": "9250", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040664643" + }, + "pid": "9251", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040664244" + }, + "pid": "9252", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040664104" + }, + "pid": "9253", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040658864" + }, + "pid": "9254", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040654648" + }, + "pid": "9255", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040641805" + }, + "pid": "9256", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040633306" + }, + "pid": "9257", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040628604" + }, + "pid": "9258", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040628094" + }, + "pid": "9259", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040621278" + }, + "pid": "9260", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040617203" + }, + "pid": "9261", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040598160" + }, + "pid": "9262", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040596648" + }, + "pid": "9263", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04059596X" + }, + "pid": "9264", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040581780" + }, + "pid": "9265", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040579123" + }, + "pid": "9266", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040576337" + }, + "pid": "9267", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040575136" + }, + "pid": "9268", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040570215" + }, + "pid": "9269", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040562182" + }, + "pid": "9270", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040539644" + }, + "pid": "9271", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04053376X" + }, + "pid": "9272", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040515842" + }, + "pid": "9273", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040490122" + }, + "pid": "9274", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040475972" + }, + "pid": "9275", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040475778" + }, + "pid": "9276", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040471713" + }, + "pid": "9277", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040471233" + }, + "pid": "9278", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040468003" + }, + "pid": "9279", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040461912" + }, + "pid": "9280", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040460495" + }, + "pid": "9281", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040459195" + }, + "pid": "9282", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040448932" + }, + "pid": "9283", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040448924" + }, + "pid": "9284", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040414124" + }, + "pid": "9285", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04041177X" + }, + "pid": "9286", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040411583" + }, + "pid": "9287", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040372170" + }, + "pid": "9288", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040366898" + }, + "pid": "9289", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040357228" + }, + "pid": "9290", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040354415" + }, + "pid": "9291", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040351130" + }, + "pid": "9292", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04034889X" + }, + "pid": "9293", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040344029" + }, + "pid": "9294", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040302482" + }, + "pid": "9295", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040299848" + }, + "pid": "9296", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040297519" + }, + "pid": "9297", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040296709" + }, + "pid": "9298", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040270076" + }, + "pid": "9299", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040267210" + }, + "pid": "9300", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040257029" + }, + "pid": "9301", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040246655" + }, + "pid": "9302", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040218066" + }, + "pid": "9303", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04021334X" + }, + "pid": "9304", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040200728" + }, + "pid": "9305", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040200159" + }, + "pid": "9306", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040195589" + }, + "pid": "9307", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040172503" + }, + "pid": "9308", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040171078" + }, + "pid": "9309", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040163172" + }, + "pid": "9310", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04015985X" + }, + "pid": "9311", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040158292" + }, + "pid": "9312", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040143503" + }, + "pid": "9313", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040143376" + }, + "pid": "9314", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040137465" + }, + "pid": "9315", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040136302" + }, + "pid": "9316", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040132153" + }, + "pid": "9317", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040110680" + }, + "pid": "9318", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040105423" + }, + "pid": "9319", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040098923" + }, + "pid": "9320", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040092755" + }, + "pid": "9321", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04009104X" + }, + "pid": "9322", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040090809" + }, + "pid": "9323", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040072118" + }, + "pid": "9324", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040070328" + }, + "pid": "9325", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040060055" + }, + "pid": "9326", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040054020" + }, + "pid": "9327", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040048543" + }, + "pid": "9328", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040035506" + }, + "pid": "9329", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04003500X" + }, + "pid": "9330", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040030962" + }, + "pid": "9331", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040018040" + }, + "pid": "9332", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040009866" + }, + "pid": "9333", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040009327" + }, + "pid": "9334", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040004570" + }, + "pid": "9335", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04000158X" + }, + "pid": "9336", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1336884932" + }, + "pid": "9337", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1336884762" + }, + "pid": "9338", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1336876913" + }, + "pid": "9339", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1336874678" + }, + "pid": "9340", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1336874414" + }, + "pid": "9341", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/133686463X" + }, + "pid": "9342", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1336835052" + }, + "pid": "9343", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1336765410" + }, + "pid": "9344", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1336763213" + }, + "pid": "9345", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1336761083" + }, + "pid": "9346", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1336749369" + }, + "pid": "9347", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1336591390" + }, + "pid": "9348", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1336589876" + }, + "pid": "9349", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/133658873X" + }, + "pid": "9350", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1336532009" + }, + "pid": "9351", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/133646609X" + }, + "pid": "9352", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1336401087" + }, + "pid": "9353", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1336381698" + }, + "pid": "9354", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1336261625" + }, + "pid": "9355", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1336259086" + }, + "pid": "9356", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1336255897" + }, + "pid": "9357", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1336255692" + }, + "pid": "9358", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1336255609" + }, + "pid": "9359", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1336248335" + }, + "pid": "9360", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1336235047" + }, + "pid": "9361", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1336230754" + }, + "pid": "9362", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1336223200" + }, + "pid": "9363", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1336168528" + }, + "pid": "9364", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1336166509" + }, + "pid": "9365", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1336144033" + }, + "pid": "9366", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1336140607" + }, + "pid": "9367", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1336136634" + }, + "pid": "9368", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1336125306" + }, + "pid": "9369", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1336043652" + }, + "pid": "9370", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/133603906X" + }, + "pid": "9371", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1336037571" + }, + "pid": "9372", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1336035544" + }, + "pid": "9373", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1336026758" + }, + "pid": "9374", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1336019883" + }, + "pid": "9375", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1336015497" + }, + "pid": "9376", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1335982361" + }, + "pid": "9377", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/133595368X" + }, + "pid": "9378", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1335904158" + }, + "pid": "9379", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1335903623" + }, + "pid": "9380", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1335900330" + }, + "pid": "9381", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1335882758" + }, + "pid": "9382", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1335881247" + }, + "pid": "9383", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/133582569X" + }, + "pid": "9384", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1335777539" + }, + "pid": "9385", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1335762779" + }, + "pid": "9386", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1335752897" + }, + "pid": "9387", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/133575086X" + }, + "pid": "9388", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1335736832" + }, + "pid": "9389", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1335733086" + }, + "pid": "9390", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1335729577" + }, + "pid": "9391", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1335727701" + }, + "pid": "9392", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1335528539" + }, + "pid": "9393", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1335514767" + }, + "pid": "9394", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1335503307" + }, + "pid": "9395", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1335484930" + }, + "pid": "9396", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1335484639" + }, + "pid": "9397", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1335475753" + }, + "pid": "9398", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1335475575" + }, + "pid": "9399", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1335348379" + }, + "pid": "9400", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1335334955" + }, + "pid": "9401", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1335332510" + }, + "pid": "9402", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1335327541" + }, + "pid": "9403", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1335263977" + }, + "pid": "9404", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1335255869" + }, + "pid": "9405", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1335237232" + }, + "pid": "9406", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1335237046" + }, + "pid": "9407", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/133523490X" + }, + "pid": "9408", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1335228187" + }, + "pid": "9409", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1335212299" + }, + "pid": "9410", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/133521075X" + }, + "pid": "9411", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1335201068" + }, + "pid": "9412", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1335134549" + }, + "pid": "9413", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1335054405" + }, + "pid": "9414", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1334935475" + }, + "pid": "9415", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1334906815" + }, + "pid": "9416", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1334879079" + }, + "pid": "9417", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1334810524" + }, + "pid": "9418", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1334804893" + }, + "pid": "9419", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1334804699" + }, + "pid": "9420", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1334804281" + }, + "pid": "9421", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1334795533" + }, + "pid": "9422", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1334784639" + }, + "pid": "9423", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1334676844" + }, + "pid": "9424", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1334652074" + }, + "pid": "9425", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1334205639" + }, + "pid": "9426", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333849850" + }, + "pid": "9427", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333570651" + }, + "pid": "9428", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333353421" + }, + "pid": "9429", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333321201" + }, + "pid": "9430", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333260148" + }, + "pid": "9431", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333126433" + }, + "pid": "9432", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333115482" + }, + "pid": "9433", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1332860451" + }, + "pid": "9434", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1332767702" + }, + "pid": "9435", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1332765785" + }, + "pid": "9436", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1332734316" + }, + "pid": "9437", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1332672701" + }, + "pid": "9438", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1332661327" + }, + "pid": "9439", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1332426336" + }, + "pid": "9440", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1332101607" + }, + "pid": "9441", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1331864321" + }, + "pid": "9442", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1331496861" + }, + "pid": "9443", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1331098114" + }, + "pid": "9444", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/133099051X" + }, + "pid": "9445", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1330990056" + }, + "pid": "9446", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1330988728" + }, + "pid": "9447", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1330985524" + }, + "pid": "9448", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1330588517" + }, + "pid": "9449", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1330408837" + }, + "pid": "9450", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1330360036" + }, + "pid": "9451", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1330201647" + }, + "pid": "9452", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1330126599" + }, + "pid": "9453", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/132940422X" + }, + "pid": "9454", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1329376129" + }, + "pid": "9455", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/132935639X" + }, + "pid": "9456", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1329174003" + }, + "pid": "9457", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1329171675" + }, + "pid": "9458", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1328712400" + }, + "pid": "9459", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1327991349" + }, + "pid": "9460", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1327910268" + }, + "pid": "9461", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1327458667" + }, + "pid": "9462", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1326349392" + }, + "pid": "9463", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/132585283X" + }, + "pid": "9464", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1325643645" + }, + "pid": "9465", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1325061557" + }, + "pid": "9466", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1324688629" + }, + "pid": "9467", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1324590173" + }, + "pid": "9468", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1324101318" + }, + "pid": "9469", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1324092424" + }, + "pid": "9470", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1323913084" + }, + "pid": "9471", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1323835148" + }, + "pid": "9472", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1323832262" + }, + "pid": "9473", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1323804129" + }, + "pid": "9474", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1323769536" + }, + "pid": "9475", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1323705910" + }, + "pid": "9476", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1323590102" + }, + "pid": "9477", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1323303669" + }, + "pid": "9478", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1323303103" + }, + "pid": "9479", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1323069380" + }, + "pid": "9480", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1322662401" + }, + "pid": "9481", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1322661030" + }, + "pid": "9482", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1322508801" + }, + "pid": "9483", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1322264716" + }, + "pid": "9484", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1321257988" + }, + "pid": "9485", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1321125623" + }, + "pid": "9486", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1321125577" + }, + "pid": "9487", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1319483321" + }, + "pid": "9488", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1319390072" + }, + "pid": "9489", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1318715598" + }, + "pid": "9490", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1318430968" + }, + "pid": "9491", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/131634410X" + }, + "pid": "9492", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1315679264" + }, + "pid": "9493", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1315456125" + }, + "pid": "9494", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1315226715" + }, + "pid": "9495", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1315045133" + }, + "pid": "9496", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/131453260X" + }, + "pid": "9497", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1314347403" + }, + "pid": "9498", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1314019333" + }, + "pid": "9499", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1312507497" + }, + "pid": "9500", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1312506059" + }, + "pid": "9501", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1311262989" + }, + "pid": "9502", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1311025847" + }, + "pid": "9503", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1310673683" + }, + "pid": "9504", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1309822123" + }, + "pid": "9505", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1308550189" + }, + "pid": "9506", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1305189876" + }, + "pid": "9507", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1304711749" + }, + "pid": "9508", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1304458741" + }, + "pid": "9509", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1303066408" + }, + "pid": "9510", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1302981390" + }, + "pid": "9511", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1302782517" + }, + "pid": "9512", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1302782274" + }, + "pid": "9513", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1302781162" + }, + "pid": "9514", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1302592122" + }, + "pid": "9515", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1298190746" + }, + "pid": "9516", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1296860906" + }, + "pid": "9517", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1296369811" + }, + "pid": "9518", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1295208512" + }, + "pid": "9519", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1294996460" + }, + "pid": "9520", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1294772627" + }, + "pid": "9521", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/129400283X" + }, + "pid": "9522", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1292845384" + }, + "pid": "9523", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1286766397" + }, + "pid": "9524", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1286227941" + }, + "pid": "9525", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1286106745" + }, + "pid": "9526", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1285304527" + }, + "pid": "9527", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1284854744" + }, + "pid": "9528", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1284760456" + }, + "pid": "9529", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/127990271X" + }, + "pid": "9530", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1279534311" + }, + "pid": "9531", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1278300821" + }, + "pid": "9532", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1275762158" + }, + "pid": "9533", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1275016057" + }, + "pid": "9534", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1274846765" + }, + "pid": "9535", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1272439836" + }, + "pid": "9536", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1272436322" + }, + "pid": "9537", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/127243124X" + }, + "pid": "9538", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1272429997" + }, + "pid": "9539", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1272339785" + }, + "pid": "9540", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1272271439" + }, + "pid": "9541", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1272267792" + }, + "pid": "9542", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1272258963" + }, + "pid": "9543", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1271905698" + }, + "pid": "9544", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1271895765" + }, + "pid": "9545", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/127188898X" + }, + "pid": "9546", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1271822776" + }, + "pid": "9547", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1271808897" + }, + "pid": "9548", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1271790165" + }, + "pid": "9549", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1271715899" + }, + "pid": "9550", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1271381702" + }, + "pid": "9551", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1270556959" + }, + "pid": "9552", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1268246964" + }, + "pid": "9553", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/126750370X" + }, + "pid": "9554", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1267495847" + }, + "pid": "9555", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1267493216" + }, + "pid": "9556", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1266330917" + }, + "pid": "9557", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1265612927" + }, + "pid": "9558", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1265218374" + }, + "pid": "9559", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1261254937" + }, + "pid": "9560", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1259273660" + }, + "pid": "9561", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1257092030" + }, + "pid": "9562", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1256073210" + }, + "pid": "9563", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1256072893" + }, + "pid": "9564", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1254291482" + }, + "pid": "9565", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1251426239" + }, + "pid": "9566", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1248276604" + }, + "pid": "9567", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1245158511" + }, + "pid": "9568", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1242560637" + }, + "pid": "9569", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/124129562X" + }, + "pid": "9570", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1239152302" + }, + "pid": "9571", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1237145422" + }, + "pid": "9572", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1232354244" + }, + "pid": "9573", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1229013695" + }, + "pid": "9574", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1225001064" + }, + "pid": "9575", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1217543678" + }, + "pid": "9576", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1213474337" + }, + "pid": "9577", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1213276500" + }, + "pid": "9578", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1211610659" + }, + "pid": "9579", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1206111984" + }, + "pid": "9580", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1205504184" + }, + "pid": "9581", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1204138915" + }, + "pid": "9582", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/120246193X" + }, + "pid": "9583", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1201306663" + }, + "pid": "9584", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1197813853" + }, + "pid": "9585", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1197084231" + }, + "pid": "9586", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1196153183" + }, + "pid": "9587", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1195721455" + }, + "pid": "9588", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1195720424" + }, + "pid": "9589", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1192998324" + }, + "pid": "9590", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/119298918X" + }, + "pid": "9591", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1191213307" + }, + "pid": "9592", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1190744996" + }, + "pid": "9593", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1189251949" + }, + "pid": "9594", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1181270391" + }, + "pid": "9595", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1177428253" + }, + "pid": "9596", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1172931720" + }, + "pid": "9597", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1164102931" + }, + "pid": "9598", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1162074078" + }, + "pid": "9599", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1162070234" + }, + "pid": "9600", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1162069848" + }, + "pid": "9601", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1162069279" + }, + "pid": "9602", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1161370048" + }, + "pid": "9603", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1160916276" + }, + "pid": "9604", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1160040834" + }, + "pid": "9605", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1159933278" + }, + "pid": "9606", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1159933006" + }, + "pid": "9607", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/115992869X" + }, + "pid": "9608", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1159920850" + }, + "pid": "9609", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/115992063X" + }, + "pid": "9610", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1159919828" + }, + "pid": "9611", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1159716978" + }, + "pid": "9612", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1159673381" + }, + "pid": "9613", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1159652686" + }, + "pid": "9614", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1158529643" + }, + "pid": "9615", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1156463467" + }, + "pid": "9616", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1153904039" + }, + "pid": "9617", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1153848325" + }, + "pid": "9618", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1153645505" + }, + "pid": "9619", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1148983325" + }, + "pid": "9620", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1148983317" + }, + "pid": "9621", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1148982329" + }, + "pid": "9622", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1145164617" + }, + "pid": "9623", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/113724061X" + }, + "pid": "9624", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1136198113" + }, + "pid": "9625", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1136044426" + }, + "pid": "9626", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1133521657" + }, + "pid": "9627", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1132275067" + }, + "pid": "9628", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1132231477" + }, + "pid": "9629", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1131360478" + }, + "pid": "9630", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1127087932" + }, + "pid": "9631", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1126284823" + }, + "pid": "9632", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1124811885" + }, + "pid": "9633", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1124612114" + }, + "pid": "9634", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1120527775" + }, + "pid": "9635", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1120526310" + }, + "pid": "9636", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1119923417" + }, + "pid": "9637", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1117228215" + }, + "pid": "9638", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1114188395" + }, + "pid": "9639", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1113031921" + }, + "pid": "9640", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1111593051" + }, + "pid": "9641", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/110642154X" + }, + "pid": "9642", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1104861453" + }, + "pid": "9643", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1103248596" + }, + "pid": "9644", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1103240579" + }, + "pid": "9645", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1101498900" + }, + "pid": "9646", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1085190633" + }, + "pid": "9647", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/108229814X" + }, + "pid": "9648", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1077459335" + }, + "pid": "9649", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1077386478" + }, + "pid": "9650", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1077065876" + }, + "pid": "9651", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1069876534" + }, + "pid": "9652", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1069526703" + }, + "pid": "9653", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1069453420" + }, + "pid": "9654", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1068825820" + }, + "pid": "9655", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1068606975" + }, + "pid": "9656", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1068048328" + }, + "pid": "9657", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1067974490" + }, + "pid": "9658", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1066896534" + }, + "pid": "9659", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1065486421" + }, + "pid": "9660", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/106307147X" + }, + "pid": "9661", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/105858488X" + }, + "pid": "9662", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1055013458" + }, + "pid": "9663", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1054183104" + }, + "pid": "9664", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1054182779" + }, + "pid": "9665", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1054182620" + }, + "pid": "9666", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1051146089" + }, + "pid": "9667", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1049270851" + }, + "pid": "9668", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1044279206" + }, + "pid": "9669", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1041611064" + }, + "pid": "9670", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1036907430" + }, + "pid": "9671", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1036857263" + }, + "pid": "9672", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1029263361" + }, + "pid": "9673", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1019980389" + }, + "pid": "9674", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1015187382" + }, + "pid": "9675", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1014400783" + }, + "pid": "9676", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1013709640" + }, + "pid": "9677", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1010242008" + }, + "pid": "9678", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1009887017" + }, + "pid": "9679", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1008996270" + }, + "pid": "9680", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1008049115" + }, + "pid": "9681", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/100735531X" + }, + "pid": "9682", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1006894675" + }, + "pid": "9683", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1002238951" + }, + "pid": "9684", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1000642119" + }, + "pid": "9685", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1000168972" + }, + "pid": "9686", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/998776785" + }, + "pid": "9687", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/995780951" + }, + "pid": "9688", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/994659857" + }, + "pid": "9689", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/99405212X" + }, + "pid": "9690", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/99283600X" + }, + "pid": "9691", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992757126" + }, + "pid": "9692", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992754909" + }, + "pid": "9693", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992754550" + }, + "pid": "9694", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992754534" + }, + "pid": "9695", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992754305" + }, + "pid": "9696", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992753694" + }, + "pid": "9697", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/99275366X" + }, + "pid": "9698", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992752973" + }, + "pid": "9699", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992751020" + }, + "pid": "9700", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/99274881X" + }, + "pid": "9701", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992747031" + }, + "pid": "9702", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992746779" + }, + "pid": "9703", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992746248" + }, + "pid": "9704", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992745969" + }, + "pid": "9705", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992745292" + }, + "pid": "9706", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992745187" + }, + "pid": "9707", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/99274508X" + }, + "pid": "9708", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992744792" + }, + "pid": "9709", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992744091" + }, + "pid": "9710", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992743605" + }, + "pid": "9711", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992743273" + }, + "pid": "9712", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992742889" + }, + "pid": "9713", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992742854" + }, + "pid": "9714", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992742722" + }, + "pid": "9715", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992742498" + }, + "pid": "9716", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992741696" + }, + "pid": "9717", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992741491" + }, + "pid": "9718", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992739659" + }, + "pid": "9719", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992738601" + }, + "pid": "9720", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992738172" + }, + "pid": "9721", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992738083" + }, + "pid": "9722", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992738075" + }, + "pid": "9723", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992737834" + }, + "pid": "9724", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992737826" + }, + "pid": "9725", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992737788" + }, + "pid": "9726", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992737532" + }, + "pid": "9727", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992736269" + }, + "pid": "9728", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992736099" + }, + "pid": "9729", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992735858" + }, + "pid": "9730", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/99273584X" + }, + "pid": "9731", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992735823" + }, + "pid": "9732", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992735270" + }, + "pid": "9733", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992735122" + }, + "pid": "9734", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992733634" + }, + "pid": "9735", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/99273312X" + }, + "pid": "9736", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992732468" + }, + "pid": "9737", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992731496" + }, + "pid": "9738", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/99273147X" + }, + "pid": "9739", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992731348" + }, + "pid": "9740", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992730937" + }, + "pid": "9741", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/99273052X" + }, + "pid": "9742", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992096200" + }, + "pid": "9743", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/99018207X" + }, + "pid": "9744", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/987870920" + }, + "pid": "9745", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/987031708" + }, + "pid": "9746", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/985142758" + }, + "pid": "9747", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/984855246" + }, + "pid": "9748", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/984430695" + }, + "pid": "9749", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/981355196" + }, + "pid": "9750", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/981078206" + }, + "pid": "9751", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/980596920" + }, + "pid": "9752", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/980485371" + }, + "pid": "9753", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/979728509" + }, + "pid": "9754", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/979385261" + }, + "pid": "9755", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/979340586" + }, + "pid": "9756", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/978483669" + }, + "pid": "9757", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/97549175X" + }, + "pid": "9758", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/974924423" + }, + "pid": "9759", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/974131733" + }, + "pid": "9760", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/973073764" + }, + "pid": "9761", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/973067144" + }, + "pid": "9762", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/971890188" + }, + "pid": "9763", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/971874549" + }, + "pid": "9764", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/971750289" + }, + "pid": "9765", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/971566429" + }, + "pid": "9766", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/970782195" + }, + "pid": "9767", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/970665806" + }, + "pid": "9768", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/970188919" + }, + "pid": "9769", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/970142838" + }, + "pid": "9770", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/969789726" + }, + "pid": "9771", + "type": "bf:Topic" }, { - "pid": "7621", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/146321944" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/968800459" + }, + "pid": "9772", + "type": "bf:Topic" }, { - "pid": "7622", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/146774094" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/967930308" + }, + "pid": "9773", + "type": "bf:Topic" }, { - "pid": "7623", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/16573762X" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/967681758" + }, + "pid": "9774", + "type": "bf:Topic" }, { - "pid": "7624", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/16719416X" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/967612896" + }, + "pid": "9775", + "type": "bf:Topic" }, { - "pid": "7625", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/172690250" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/967286034" + }, + "pid": "9776", + "type": "bf:Topic" }, { - "pid": "7626", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/174131887" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/966464141" + }, + "pid": "9777", + "type": "bf:Topic" }, { - "pid": "7627", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/18456381X" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/966016297" + }, + "pid": "9778", + "type": "bf:Topic" }, { - "pid": "7628", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/245367888" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/965886654" + }, + "pid": "9779", + "type": "bf:Topic" }, { - "pid": "7629", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/252252063" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/965195686" + }, + "pid": "9780", + "type": "bf:Topic" }, { - "pid": "7630", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/25410875X" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/96441631X" + }, + "pid": "9781", + "type": "bf:Topic" }, { - "pid": "7631", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/255690444" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/964240300" + }, + "pid": "9782", + "type": "bf:Topic" }, { - "pid": "7632", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/256524203" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/964240254" + }, + "pid": "9783", + "type": "bf:Topic" }, { - "pid": "7633", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/258617527" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/964115166" + }, + "pid": "9784", + "type": "bf:Topic" }, { - "pid": "7634", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/25906288X" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/963711636" + }, + "pid": "9785", + "type": "bf:Topic" }, { - "pid": "7635", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/259596337" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/963708872" + }, + "pid": "9786", + "type": "bf:Topic" }, { - "pid": "7636", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/259599174" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/963708856" + }, + "pid": "9787", + "type": "bf:Topic" }, { - "pid": "7637", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/259943401" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/963658166" + }, + "pid": "9788", + "type": "bf:Topic" }, { - "pid": "7638", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/259951293" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/963553984" + }, + "pid": "9789", + "type": "bf:Topic" }, { - "pid": "7639", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/259974811" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/962075272" + }, + "pid": "9790", + "type": "bf:Topic" }, { - "pid": "7640", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/259995118" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/962073881" + }, + "pid": "9791", + "type": "bf:Topic" }, { - "pid": "7641", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/261107909" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/961897546" + }, + "pid": "9792", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/961236752" + }, + "pid": "9793", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/961192356" + }, + "pid": "9794", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/961049510" + }, + "pid": "9795", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/960895175" + }, + "pid": "9796", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/96037650X" + }, + "pid": "9797", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/960375988" + }, + "pid": "9798", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/960175105" + }, + "pid": "9799", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/959959750" + }, + "pid": "9800", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/959794972" + }, + "pid": "9801", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/959794921" + }, + "pid": "9802", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/959794859" + }, + "pid": "9803", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/959740864" + }, + "pid": "9804", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/959716688" + }, + "pid": "9805", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/959148523" + }, + "pid": "9806", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/959148485" + }, + "pid": "9807", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/959148477" + }, + "pid": "9808", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/958503001" + }, + "pid": "9809", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/958467102" + }, + "pid": "9810", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/958224625" + }, + "pid": "9811", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/958195889" + }, + "pid": "9812", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/958190453" + }, + "pid": "9813", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/957705611" + }, + "pid": "9814", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/95765894X" + }, + "pid": "9815", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/957331940" + }, + "pid": "9816", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/957331673" + }, + "pid": "9817", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/957192517" + }, + "pid": "9818", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/956838049" + }, + "pid": "9819", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/956643221" + }, + "pid": "9820", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/956635709" + }, + "pid": "9821", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/956220495" + }, + "pid": "9822", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/955244641" + }, + "pid": "9823", + "type": "bf:Topic" }, { - "pid": "7642", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/261196715" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/95489748X" + }, + "pid": "9824", + "type": "bf:Topic" }, { - "pid": "7643", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/261901532" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/954782232" + }, + "pid": "9825", + "type": "bf:Topic" }, { - "pid": "7644", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/262111012" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/95462839X" + }, + "pid": "9826", + "type": "bf:Topic" }, { - "pid": "7645", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/262111020" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/954211774" + }, + "pid": "9827", + "type": "bf:Topic" }, { - "pid": "7646", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/262111039" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/954206738" + }, + "pid": "9828", + "type": "bf:Topic" }, { - "pid": "7647", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/262111071" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/954203232" + }, + "pid": "9829", + "type": "bf:Topic" }, { - "pid": "7648", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/26211108X" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/953679802" + }, + "pid": "9830", + "type": "bf:Topic" }, { - "pid": "7649", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/262111098" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/953550346" + }, + "pid": "9831", + "type": "bf:Topic" }, { - "pid": "7650", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/262125927" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/953444201" + }, + "pid": "9832", + "type": "bf:Topic" }, { - "pid": "7651", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/262413817" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/953056082" + }, + "pid": "9833", + "type": "bf:Topic" }, { - "pid": "7652", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/262414023" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/952896605" + }, + "pid": "9834", + "type": "bf:Topic" }, { - "pid": "7653", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/262414082" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/952702053" + }, + "pid": "9835", + "type": "bf:Topic" }, { - "pid": "7654", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/262414112" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/952619636" + }, + "pid": "9836", + "type": "bf:Topic" }, { - "pid": "7655", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/262668858" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/952440431" + }, + "pid": "9837", + "type": "bf:Topic" }, { - "pid": "7656", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/262669161" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/952431602" + }, + "pid": "9838", + "type": "bf:Topic" }, { - "pid": "7657", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/262669188" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/951810189" + }, + "pid": "9839", + "type": "bf:Topic" }, { - "pid": "7658", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/26266920X" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/951618563" + }, + "pid": "9840", + "type": "bf:Topic" }, { - "pid": "7659", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/262669234" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/951607804" + }, + "pid": "9841", + "type": "bf:Topic" }, { - "pid": "7660", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/262669242" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/95159981X" + }, + "pid": "9842", + "type": "bf:Topic" }, { - "pid": "7661", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/262669250" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/951549650" + }, + "pid": "9843", + "type": "bf:Topic" }, { - "pid": "7662", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/262805111" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/95153047X" + }, + "pid": "9844", + "type": "bf:Topic" }, { - "pid": "7663", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/262915219" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/95152092X" + }, + "pid": "9845", + "type": "bf:Topic" }, { - "pid": "7664", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/262928264" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/950857157" + }, + "pid": "9846", + "type": "bf:Topic" }, { - "pid": "7665", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/26292837X" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/950693413" + }, + "pid": "9847", + "type": "bf:Topic" }, { - "pid": "7666", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/262928507" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/950693375" + }, + "pid": "9848", + "type": "bf:Topic" }, { - "pid": "7667", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/262928701" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/950692433" + }, + "pid": "9849", + "type": "bf:Topic" }, { - "pid": "7668", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/26307837X" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/950632481" + }, + "pid": "9850", + "type": "bf:Topic" }, { - "pid": "7669", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263492680" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/950276014" + }, + "pid": "9851", + "type": "bf:Topic" }, { - "pid": "7670", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263499944" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/949894028" + }, + "pid": "9852", + "type": "bf:Topic" }, { - "pid": "7671", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263499979" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/949435015" + }, + "pid": "9853", + "type": "bf:Topic" }, { - "pid": "7672", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263500047" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/948897244" + }, + "pid": "9854", + "type": "bf:Topic" }, { - "pid": "7673", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263500071" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/948567341" + }, + "pid": "9855", + "type": "bf:Topic" }, { - "pid": "7674", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263500187" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/948567317" + }, + "pid": "9856", + "type": "bf:Topic" }, { - "pid": "7675", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263610918" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/948565977" + }, + "pid": "9857", + "type": "bf:Topic" }, { - "pid": "7676", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714233" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/948520116" + }, + "pid": "9858", + "type": "bf:Topic" }, { - "pid": "7677", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714241" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/948474688" + }, + "pid": "9859", + "type": "bf:Topic" }, { - "pid": "7678", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/26371425X" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/947762868" + }, + "pid": "9860", + "type": "bf:Topic" }, { - "pid": "7679", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714268" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/947572090" + }, + "pid": "9861", + "type": "bf:Topic" }, { - "pid": "7680", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714276" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/947210601" + }, + "pid": "9862", + "type": "bf:Topic" }, { - "pid": "7681", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714284" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/947024387" + }, + "pid": "9863", + "type": "bf:Topic" }, { - "pid": "7682", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714292" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/946840318" + }, + "pid": "9864", + "type": "bf:Topic" }, { - "pid": "7683", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714306" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/94683203X" + }, + "pid": "9865", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/946538506" + }, + "pid": "9866", + "type": "bf:Topic" }, { - "pid": "7684", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714314" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/946529981" + }, + "pid": "9867", + "type": "bf:Topic" }, { - "pid": "7685", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714322" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/946267340" + }, + "pid": "9868", + "type": "bf:Topic" }, { - "pid": "7686", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714330" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/945831749" + }, + "pid": "9869", + "type": "bf:Topic" }, { - "pid": "7687", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714349" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/94574577X" + }, + "pid": "9870", + "type": "bf:Topic" }, { - "pid": "7688", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714357" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/945675267" + }, + "pid": "9871", + "type": "bf:Topic" }, { - "pid": "7689", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714365" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/945372604" + }, + "pid": "9872", + "type": "bf:Topic" }, { - "pid": "7690", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714373" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/945325150" + }, + "pid": "9873", + "type": "bf:Topic" }, { - "pid": "7691", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/26371439X" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/944352820" + }, + "pid": "9874", + "type": "bf:Topic" }, { - "pid": "7692", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714403" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/94392961X" + }, + "pid": "9875", + "type": "bf:Topic" }, { - "pid": "7693", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714411" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/94392684X" + }, + "pid": "9876", + "type": "bf:Topic" }, { - "pid": "7694", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/26371442X" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/943618118" + }, + "pid": "9877", + "type": "bf:Topic" }, { - "pid": "7695", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714438" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/943592267" + }, + "pid": "9878", + "type": "bf:Topic" }, { - "pid": "7696", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714446" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/943496799" + }, + "pid": "9879", + "type": "bf:Topic" }, { - "pid": "7697", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714454" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/943138604" + }, + "pid": "9880", + "type": "bf:Topic" }, { - "pid": "7698", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714462" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/942370295" + }, + "pid": "9881", + "type": "bf:Topic" }, { - "pid": "7699", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714470" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/942203283" + }, + "pid": "9882", + "type": "bf:Topic" }, { - "pid": "7700", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714489" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/94206285X" + }, + "pid": "9883", + "type": "bf:Topic" }, { - "pid": "7701", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714500" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/941781437" + }, + "pid": "9884", + "type": "bf:Topic" }, { - "pid": "7702", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714519" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/940910004" + }, + "pid": "9885", + "type": "bf:Topic" }, { - "pid": "7703", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714527" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/940842440" + }, + "pid": "9886", + "type": "bf:Topic" }, { - "pid": "7704", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714535" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/94063855X" + }, + "pid": "9887", + "type": "bf:Topic" }, { - "pid": "7705", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714543" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/940594919" + }, + "pid": "9888", + "type": "bf:Topic" }, { - "pid": "7706", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714551" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/199289190" + }, + "pid": "9889", + "type": "bf:Topic" }, { - "pid": "7707", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/26371456X" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/199281823" + }, + "pid": "9890", + "type": "bf:Topic" }, { - "pid": "7708", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714578" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/199193835" + }, + "pid": "9891", + "type": "bf:Topic" }, { - "pid": "7709", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714594" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/19917606X" + }, + "pid": "9892", + "type": "bf:Topic" }, { - "pid": "7710", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714608" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/199170711" + }, + "pid": "9893", + "type": "bf:Topic" }, { - "pid": "7711", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714616" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/19915046X" + }, + "pid": "9894", + "type": "bf:Topic" }, { - "pid": "7712", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714624" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/199129215" + }, + "pid": "9895", + "type": "bf:Topic" }, { - "pid": "7713", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714632" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/130791008" + }, + "pid": "9896", + "type": "bf:Topic" }, { - "pid": "7714", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714640" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/130750085" + }, + "pid": "9897", + "type": "bf:Topic" }, { - "pid": "7715", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714659" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/130741094" + }, + "pid": "9898", + "type": "bf:Topic" }, { - "pid": "7716", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714667" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/130724572" + }, + "pid": "9899", + "type": "bf:Topic" }, { - "pid": "7717", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714691" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/130715387" + }, + "pid": "9900", + "type": "bf:Topic" }, { - "pid": "7718", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714705" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/130714941" + }, + "pid": "9901", + "type": "bf:Topic" }, { - "pid": "7719", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714713" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/130708291" + }, + "pid": "9902", + "type": "bf:Topic" }, { - "pid": "7720", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027794687" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/130703907" + }, + "pid": "9903", + "type": "bf:Topic" }, { - "pid": "7721", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/029531411" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/130702722" + }, + "pid": "9904", + "type": "bf:Topic" }, { - "pid": "7722", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/033466300" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/13069374X" + }, + "pid": "9905", + "type": "bf:Topic" }, { - "pid": "7723", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/050665391" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/130692476" + }, + "pid": "9906", + "type": "bf:Topic" }, { - "pid": "7724", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027796930" + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04328762X" }, - "deleted": "2023-08-08T14:28:41.182452+00:00" + "pid": "9907", + "type": "bf:Topic" }, { - "pid": "7725", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027797619" + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043282695" }, - "deleted": "2023-08-08T14:28:41.276336+00:00" + "pid": "9908", + "type": "bf:Topic" }, { - "pid": "7726", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027798461" + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04328213X" }, - "deleted": "2023-08-08T14:28:41.375163+00:00" + "pid": "9909", + "type": "bf:Topic" }, - { - "pid": "7727", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027798682" + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043274994" }, - "deleted": "2023-08-08T14:28:41.485675+00:00" + "pid": "9910", + "type": "bf:Topic" }, { - "pid": "7728", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027799395" + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043252044" }, - "deleted": "2023-08-08T14:28:41.593466+00:00" + "pid": "9911", + "type": "bf:Topic" }, { - "pid": "7729", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027799409" + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043203469" }, - "deleted": "2023-08-08T14:28:41.670485+00:00" + "pid": "9912", + "type": "bf:Topic" }, { - "pid": "7730", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027799425" + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043197574" }, - "deleted": "2023-08-08T14:28:41.752508+00:00" + "pid": "9913", + "type": "bf:Topic" }, { - "pid": "7731", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027804380" + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043195733" }, - "deleted": "2023-08-08T14:28:41.850206+00:00" + "pid": "9914", + "type": "bf:Topic" }, { - "pid": "7732", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027805158" + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04313291X" }, - "deleted": "2023-08-08T14:28:41.984200+00:00" + "pid": "9915", + "type": "bf:Topic" }, { - "pid": "7733", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027805301" + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043128629" }, - "deleted": "2023-08-08T14:28:42.125605+00:00" + "pid": "9916", + "type": "bf:Topic" }, { - "pid": "7734", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027805824" + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043062008" }, - "deleted": "2023-08-08T14:28:42.243305+00:00" + "pid": "9917", + "type": "bf:Topic" }, { - "pid": "7735", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027812596" + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04304929X" }, - "deleted": "2023-08-08T14:28:43.978364+00:00" + "pid": "9918", + "type": "bf:Topic" }, { - "pid": "7736", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/02781341X" + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043035167" }, - "deleted": "2023-08-08T14:28:44.061768+00:00" + "pid": "9919", + "type": "bf:Topic" }, { - "pid": "7737", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027813533" + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043022790" }, - "deleted": "2023-08-08T14:28:44.848459+00:00" + "pid": "9920", + "type": "bf:Topic" }, { - "pid": "7738", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027804232" + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043004164" }, - "deleted": "2023-08-08T14:28:46.891848+00:00" + "pid": "9921", + "type": "bf:Topic" }, { - "pid": "7739", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/033297746" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043003583" + }, + "pid": "9922", + "type": "bf:Topic" }, { - "pid": "7740", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/050170406" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043001173" + }, + "pid": "9923", + "type": "bf:Topic" }, { - "pid": "7741", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/098272225" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04300024X" + }, + "pid": "9924", + "type": "bf:Topic" }, { - "pid": "7742", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/241963974" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043000150" + }, + "pid": "9925", + "type": "bf:Topic" }, { - "pid": "7743", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027793974" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042982553" + }, + "pid": "9926", + "type": "bf:Topic" }, { - "pid": "7744", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027794016" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042981794" + }, + "pid": "9927", + "type": "bf:Topic" }, { - "pid": "7745", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027794903" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042940664" + }, + "pid": "9928", + "type": "bf:Topic" }, { - "pid": "7746", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027794954" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042914582" + }, + "pid": "9929", + "type": "bf:Topic" }, { - "pid": "7747", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027794962" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042913748" + }, + "pid": "9930", + "type": "bf:Topic" }, { - "pid": "7748", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027794970" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04291096X" + }, + "pid": "9931", + "type": "bf:Topic" }, { - "pid": "7749", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027795926" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042910870" + }, + "pid": "9932", + "type": "bf:Topic" }, { - "pid": "7750", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027796817" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042892562" + }, + "pid": "9933", + "type": "bf:Topic" }, { - "pid": "7751", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027799433" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042870526" + }, + "pid": "9934", + "type": "bf:Topic" }, { - "pid": "7752", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027804038" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042863627" + }, + "pid": "9935", + "type": "bf:Topic" }, { - "pid": "7753", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027804186" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042848792" + }, + "pid": "9936", + "type": "bf:Topic" }, { - "pid": "7754", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/030860466" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042841259" + }, + "pid": "9937", + "type": "bf:Topic" }, { - "pid": "7755", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/031022219" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042819458" + }, + "pid": "9938", + "type": "bf:Topic" }, { - "pid": "7756", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/031937667" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042815479" + }, + "pid": "9939", + "type": "bf:Topic" }, { - "pid": "7757", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/033070202" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042777089" + }, + "pid": "9940", + "type": "bf:Topic" }, { - "pid": "7758", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/034577769" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042765315" + }, + "pid": "9941", + "type": "bf:Topic" }, { - "pid": "7759", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/03483446X" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042731887" + }, + "pid": "9942", + "type": "bf:Topic" }, { - "pid": "7760", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/034853537" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042731437" + }, + "pid": "9943", + "type": "bf:Topic" }, { - "pid": "7761", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/03487156X" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042720133" + }, + "pid": "9944", + "type": "bf:Topic" }, { - "pid": "7762", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/034933697" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04266702X" + }, + "pid": "9945", + "type": "bf:Topic" }, { - "pid": "7763", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/034934774" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042653304" + }, + "pid": "9946", + "type": "bf:Topic" }, { - "pid": "7764", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/034934936" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042645212" + }, + "pid": "9947", + "type": "bf:Topic" }, { - "pid": "7765", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/034935061" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042627222" + }, + "pid": "9948", + "type": "bf:Topic" }, { - "pid": "7766", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/034935134" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042586208" + }, + "pid": "9949", + "type": "bf:Topic" }, { - "pid": "7767", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/034935177" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042578205" + }, + "pid": "9950", + "type": "bf:Topic" }, { - "pid": "7768", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/034935207" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042573254" + }, + "pid": "9951", + "type": "bf:Topic" }, { - "pid": "7769", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/034935274" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042536367" + }, + "pid": "9952", + "type": "bf:Topic" }, { - "pid": "7770", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/034935290" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042496675" + }, + "pid": "9953", + "type": "bf:Topic" }, { - "pid": "7771", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/034935304" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042486386" + }, + "pid": "9954", + "type": "bf:Topic" }, { - "pid": "7772", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/034935827" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042447690" + }, + "pid": "9955", + "type": "bf:Topic" }, { - "pid": "7773", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/034935835" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042438799" + }, + "pid": "9956", + "type": "bf:Topic" }, { - "pid": "7774", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/034935908" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042425875" + }, + "pid": "9957", + "type": "bf:Topic" }, { - "pid": "7775", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/034936890" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042422825" + }, + "pid": "9958", + "type": "bf:Topic" }, { - "pid": "7776", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/034937072" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042380480" + }, + "pid": "9959", + "type": "bf:Topic" }, { - "pid": "7777", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/034937099" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042374480" + }, + "pid": "9960", + "type": "bf:Topic" }, { - "pid": "7778", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/034937129" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042325900" + }, + "pid": "9961", + "type": "bf:Topic" }, { - "pid": "7779", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/035021128" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042325897" + }, + "pid": "9962", + "type": "bf:Topic" }, { - "pid": "7780", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/035021179" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042313414" + }, + "pid": "9963", + "type": "bf:Topic" }, { - "pid": "7781", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/035077948" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042277558" + }, + "pid": "9964", + "type": "bf:Topic" }, { - "pid": "7782", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/035077964" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042266289" + }, + "pid": "9965", + "type": "bf:Topic" }, { - "pid": "7783", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/035078316" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042241839" + }, + "pid": "9966", + "type": "bf:Topic" }, { - "pid": "7784", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/035087625" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042230284" + }, + "pid": "9967", + "type": "bf:Topic" }, { - "pid": "7785", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/03509446X" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042213010" + }, + "pid": "9968", + "type": "bf:Topic" }, { - "pid": "7786", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/035207191" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042183154" + }, + "pid": "9969", + "type": "bf:Topic" }, { - "pid": "7787", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/03528076X" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04216818X" + }, + "pid": "9970", + "type": "bf:Topic" }, { - "pid": "7788", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/035383925" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042161258" + }, + "pid": "9971", + "type": "bf:Topic" }, { - "pid": "7789", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/035623683" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042147670" + }, + "pid": "9972", + "type": "bf:Topic" }, { - "pid": "7790", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/035623691" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042142237" + }, + "pid": "9973", + "type": "bf:Topic" }, { - "pid": "7791", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/050323148" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042137519" + }, + "pid": "9974", + "type": "bf:Topic" }, { - "pid": "7792", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/050323172" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042124093" + }, + "pid": "9975", + "type": "bf:Topic" }, { - "pid": "7793", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/061617296" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042123909" + }, + "pid": "9976", + "type": "bf:Topic" }, { - "pid": "7794", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/077057384" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04211277X" + }, + "pid": "9977", + "type": "bf:Topic" }, { - "pid": "7795", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/101481241" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042104378" + }, + "pid": "9978", + "type": "bf:Topic" }, { - "pid": "7796", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/101481330" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042100917" + }, + "pid": "9979", + "type": "bf:Topic" }, { - "pid": "7797", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/101481349" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042100445" + }, + "pid": "9980", + "type": "bf:Topic" }, { - "pid": "7798", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/101481438" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042081033" + }, + "pid": "9981", + "type": "bf:Topic" }, { - "pid": "7799", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/107841363" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042074150" + }, + "pid": "9982", + "type": "bf:Topic" }, { - "pid": "7800", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/108812987" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042044529" + }, + "pid": "9983", + "type": "bf:Topic" }, { - "pid": "7801", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/109094883" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042033276" + }, + "pid": "9984", + "type": "bf:Topic" }, { - "pid": "7802", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/11353213X" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042022622" + }, + "pid": "9985", + "type": "bf:Topic" }, { - "pid": "7803", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/11393260X" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042020646" + }, + "pid": "9986", + "type": "bf:Topic" }, { - "pid": "7804", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/12007432X" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041969596" + }, + "pid": "9987", + "type": "bf:Topic" }, { - "pid": "7805", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/120593904" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041966716" + }, + "pid": "9988", + "type": "bf:Topic" }, { - "pid": "7806", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/144664119" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041962923" + }, + "pid": "9989", + "type": "bf:Topic" }, { - "pid": "7807", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/146322134" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041961080" + }, + "pid": "9990", + "type": "bf:Topic" }, { - "pid": "7808", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/148171095" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041944240" + }, + "pid": "9991", + "type": "bf:Topic" }, { - "pid": "7809", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/169177742" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041935659" + }, + "pid": "9992", + "type": "bf:Topic" }, { - "pid": "7810", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/169177750" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04193458X" + }, + "pid": "9993", + "type": "bf:Topic" }, { - "pid": "7811", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/17089018X" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041920287" + }, + "pid": "9994", + "type": "bf:Topic" }, { - "pid": "7812", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/180122312" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041920279" + }, + "pid": "9995", + "type": "bf:Topic" }, { - "pid": "7813", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/185676146" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041917413" + }, + "pid": "9996", + "type": "bf:Topic" }, { - "pid": "7814", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/196345359" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041913574" + }, + "pid": "9997", + "type": "bf:Topic" }, { - "pid": "7815", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027809773" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041912888" + }, + "pid": "9998", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041909836" + }, + "pid": "9999", + "type": "bf:Topic" } ] \ No newline at end of file diff --git a/data/comef_metadata.csv b/data/comef_metadata.csv index 9721728b..bec17f8c 100644 --- a/data/comef_metadata.csv +++ b/data/comef_metadata.csv @@ -1,293 +1,2692 @@ -2023-08-08 13:37:34.570468 2023-08-08 13:37:34.570472 dac46dce-f6ed-467e-bf45-b7b8cd223f18 {"pid": "7523", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A009955971"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:34.641909 2023-08-08 13:37:34.641913 145433f7-2c2d-4da0-a5e9-1f0ede5f4e5b {"pid": "7524", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A010077990"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:34.689298 2023-08-08 13:37:34.689302 41156192-2519-4487-b59d-122fd1ae9413 {"pid": "7525", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001001"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:34.737453 2023-08-08 13:37:34.737456 04f7c0b9-95c7-41a2-843e-1b138eee3f94 {"pid": "7526", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001003"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:34.783853 2023-08-08 13:37:34.783856 33d69848-7a15-4f22-a84b-35eb42319b2a {"pid": "7527", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001004"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:34.83615 2023-08-08 13:37:34.836152 fe4fd4cb-7503-4fac-b0f2-ce07ff26766b {"pid": "7528", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001005"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:34.894562 2023-08-08 13:37:34.89457 164d426e-f0c7-45df-9dcd-2d3873dde307 {"pid": "7529", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001006"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:34.972661 2023-08-08 13:37:34.972665 a0f52ae3-acd7-443d-acab-6a21fbc26666 {"pid": "7530", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001007"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:35.039536 2023-08-08 13:37:35.039539 49dad886-d4e0-4102-9a57-009308939484 {"pid": "7531", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001008"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:35.121705 2023-08-08 13:37:35.121715 e0631867-3940-4e67-a10c-10ca724557bc {"pid": "7532", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001009"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:35.210691 2023-08-08 13:37:35.210696 76505cec-e298-454e-8bcc-67e5ac5893fd {"pid": "7533", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001012"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:35.279426 2023-08-08 13:37:35.279434 9c331bda-472a-4c59-8964-f78697b389a3 {"pid": "7534", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001013"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:35.348182 2023-08-08 13:37:35.348186 3f0ca320-84a0-49c8-aaf5-2aced99f2523 {"pid": "7535", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001014"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:35.414103 2023-08-08 13:37:35.414105 9615e44b-8cee-48d7-83e2-5618d3abf222 {"pid": "7536", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001016"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:35.491621 2023-08-08 13:37:35.491625 768255ea-a4ad-4619-9dd9-f0c31fe43171 {"pid": "7537", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001017"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:35.548338 2023-08-08 13:37:35.548341 b2ce96a6-62cd-47ef-989c-cdf951619a68 {"pid": "7538", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001018"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:35.599191 2023-08-08 13:37:35.599195 f2412722-83f8-4b27-aba2-595e635fa76c {"pid": "7539", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001021"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:35.647675 2023-08-08 13:37:35.647679 735d6d96-a1bf-4e40-a415-373017cd27fd {"pid": "7540", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001023"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:35.692528 2023-08-08 13:37:35.692531 5e494833-a62b-4a04-92f9-192ef71ab77f {"pid": "7541", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001024"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:35.745055 2023-08-08 13:37:35.745057 5215edf8-debf-497c-be84-56680c97c7b8 {"pid": "7542", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001025"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:37.321796 2023-08-08 13:37:37.321799 672d2c3f-e581-456c-9743-76d6454f5996 {"pid": "7543", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027224430"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:37.397172 2023-08-08 13:37:37.397174 8209ea39-87c8-4c5c-aa72-0d0fe3f5740b {"pid": "7544", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027227219"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:37.447981 2023-08-08 13:37:37.447984 9db59da0-cfaa-4be3-9aad-c7ae55b19380 {"pid": "7545", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027235548"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:37.496458 2023-08-08 13:37:37.496461 8538fe03-0b51-4d54-8d30-f06c84d2683f {"pid": "7546", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027236226"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:37.550231 2023-08-08 13:37:37.550233 400b79a9-0aa8-42df-82b4-e6df7ec325ce {"pid": "7547", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027243087"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:37.605624 2023-08-08 13:37:37.605628 0de0792d-8a7f-421e-9976-ddb6b792b2e1 {"pid": "7548", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027246655"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:37.665503 2023-08-08 13:37:37.665506 e5cf5c69-5732-48c4-bcc3-3bd53c2b6c2b {"pid": "7549", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027256251"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:37.715039 2023-08-08 13:37:37.715042 314b3a71-0716-45c0-98ec-63d826cbd4c2 {"pid": "7550", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027287289"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:37.76283 2023-08-08 13:37:37.762833 da4db154-9f0e-4df8-9e5a-3728e96d1bd2 {"pid": "7551", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027294358"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:37.808928 2023-08-08 13:37:37.808931 5450b281-9bba-4ac1-881d-658a405b5fe3 {"pid": "7552", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02730440X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:37.854971 2023-08-08 13:37:37.854974 80d57165-9bce-4c24-b78c-5363cda1345a {"pid": "7553", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027328295"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:37.929821 2023-08-08 13:37:37.929825 985081dd-c99d-460f-b772-149625f7aeb9 {"pid": "7554", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027354431"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:38.014354 2023-08-08 13:37:38.014359 49ec3254-16a9-4b79-ac73-52d135b7ffa6 {"pid": "7555", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027366669"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:38.095554 2023-08-08 13:37:38.095565 9e1e09da-607c-4afe-8c0a-bb048ba5c77e {"pid": "7556", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027389782"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:38.194196 2023-08-08 13:37:38.194203 6a3fce1f-e9f5-4cb0-a6f6-c9a0f005aaee {"pid": "7557", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027430162"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:38.279211 2023-08-08 13:37:38.279219 f1e27378-e29f-413d-bc19-b0cbf91789fb {"pid": "7558", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027488462"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:38.378135 2023-08-08 13:37:38.378143 0cefbf2f-ec9f-4ae3-b300-a5cdd798be1c {"pid": "7559", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02750610X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:38.441653 2023-08-08 13:37:38.441656 fd836156-c7a2-4c8a-94c2-a5e6b9ede2d2 {"pid": "7560", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027510387"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:38.529536 2023-08-08 13:37:38.529541 ba59c574-3369-4eb3-b739-726ce9be7337 {"pid": "7561", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027599701"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:38.595114 2023-08-08 13:37:38.595119 76ba8f40-ad15-4afa-8aab-b3cba741962d {"pid": "7562", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027652254"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:38.647193 2023-08-08 13:37:38.647196 979baaba-e1f6-47c7-9c11-5d0cc88bbb24 {"pid": "7563", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027661504"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:38.69269 2023-08-08 13:37:38.692693 879f97bd-1a78-4c1d-b283-920d68c494ab {"pid": "7564", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027675823"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:38.744914 2023-08-08 13:37:38.744917 e2aaf252-a10a-4cde-bc73-3c2123a06328 {"pid": "7565", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027688739"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:38.792151 2023-08-08 13:37:38.792154 ff7cdaab-cafe-44f2-b82a-cfc793c44269 {"pid": "7566", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027699870"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:38.838864 2023-08-08 13:37:38.838868 891f6917-b7ac-43be-b128-a725aa6643c1 {"pid": "7567", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02770940X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:38.91243 2023-08-08 13:37:38.912432 5c520cfd-bc6a-4756-bdff-50cdb387cdd7 {"pid": "7568", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027741060"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:38.983162 2023-08-08 13:37:38.983171 e8d35e34-5757-4fb3-b0dd-801b96c6147b {"pid": "7569", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027741125"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:39.053507 2023-08-08 13:37:39.053509 8b496f92-8a4d-40f6-a1aa-3498b99a821f {"pid": "7570", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027765369"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:39.118433 2023-08-08 13:37:39.118435 3b7d2fb6-a531-4027-8a50-046e32baa30b {"pid": "7571", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027785084"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:39.19575 2023-08-08 13:37:39.195753 df0c1508-b627-41ca-b3a9-5609b90ac373 {"pid": "7572", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027805220"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:39.276421 2023-08-08 13:37:39.27643 d2d47ac4-6e0d-49be-9f7c-b13ed82b5ef4 {"pid": "7573", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027809781"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:39.366697 2023-08-08 13:37:39.366709 6951537a-dc93-48b8-80a8-91f1be875c75 {"pid": "7574", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027811611"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:39.434794 2023-08-08 13:37:39.434796 5eba0d5f-5c7c-47a6-be9b-3411f9603ed5 {"pid": "7575", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027825280"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:39.506032 2023-08-08 13:37:39.506043 dbb7afff-52da-42ce-b2e2-cb6cf4224f94 {"pid": "7576", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027832953"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:39.559072 2023-08-08 13:37:39.559074 8fe839de-3e73-4d1a-805c-e4d9ce9e56ef {"pid": "7577", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027838919"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:39.625884 2023-08-08 13:37:39.625894 8f2ef111-96ca-4e23-a6c1-5c9ee810846f {"pid": "7578", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02784532X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:39.68197 2023-08-08 13:37:39.681974 8e71de06-364c-4b1a-bf83-a0d1c6b11341 {"pid": "7579", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027852547"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:39.729373 2023-08-08 13:37:39.729376 53789323-57d7-4b60-9cdd-d5493697836b {"pid": "7580", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028004698"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:39.777817 2023-08-08 13:37:39.77782 a0082d77-481a-4a65-ae00-dda496b2aae9 {"pid": "7581", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028244494"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:39.829728 2023-08-08 13:37:39.829731 dc454d11-fa70-4406-8f5d-5a438d1605c6 {"pid": "7582", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028283678"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:39.875643 2023-08-08 13:37:39.875645 3e27a960-f870-4886-a788-57426aab0e81 {"pid": "7583", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028354559"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:39.945359 2023-08-08 13:37:39.945368 e83f418d-a2dd-45dd-b914-a9503e0db42b {"pid": "7584", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028359070"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:40.030173 2023-08-08 13:37:40.030178 dd69540b-f270-4179-b606-0b0c375ea63c {"pid": "7585", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028701755"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:40.086695 2023-08-08 13:37:40.086703 e4e46c08-1fb1-4298-87c4-61cc62c0567f {"pid": "7586", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028910044"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:40.170527 2023-08-08 13:37:40.170535 81f71d3f-b5a3-4d88-bed3-6e5c87b8eee9 {"pid": "7587", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028962389"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:40.234053 2023-08-08 13:37:40.234057 3e2c8926-b993-4645-b4cb-bdc81844baf8 {"pid": "7588", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02897297X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:40.316883 2023-08-08 13:37:40.31689 a9081a25-2057-4708-a646-beaaa96c21de {"pid": "7589", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029241693"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:40.408728 2023-08-08 13:37:40.408733 69a83937-6d1b-4f5b-bf96-8410adbf9f0d {"pid": "7590", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029260892"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json", "deleted": "2022-08-25T10:47:31.610056+00:00"} 1 -2023-08-08 13:37:40.496115 2023-08-08 13:37:40.496124 ada862f3-59a5-428d-a8ef-7cf47a8e86e1 {"pid": "7591", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029560020"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:40.562533 2023-08-08 13:37:40.562536 18eadecc-e55f-40f6-a105-75d592386931 {"pid": "7592", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029563321"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:40.634976 2023-08-08 13:37:40.634978 0c356944-809a-4311-a022-49bc2c806951 {"pid": "7593", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029910609"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:40.707634 2023-08-08 13:37:40.70764 85503263-9362-4a40-a778-6503b93b37d1 {"pid": "7594", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/030714451"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:40.77724 2023-08-08 13:37:40.777244 21983b6b-b5a0-4a9a-b95e-4207d45cf46c {"pid": "7595", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/030763762"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:40.835475 2023-08-08 13:37:40.835479 b6677f66-e9d4-4550-a167-b2b2c5f74bd3 {"pid": "7596", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/030767806"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:40.885874 2023-08-08 13:37:40.885877 b37b70af-c688-4a00-af9a-d800c3853479 {"pid": "7597", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/03116207X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:40.976445 2023-08-08 13:37:40.976455 5434e655-aaac-4f9a-b6c7-549d19682070 {"pid": "7598", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/031474284"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:41.048881 2023-08-08 13:37:41.048884 42e7ce67-8fd0-45e0-a485-596533ec3b75 {"pid": "7599", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/031911056"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:41.12454 2023-08-08 13:37:41.12455 37bff509-de81-49ae-af92-adb3259f0572 {"pid": "7600", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/031992234"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:41.198981 2023-08-08 13:37:41.198988 09ae2a98-7728-40a9-a96c-d74b3f5464b2 {"pid": "7601", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/03212743X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:41.280798 2023-08-08 13:37:41.280805 fb974f50-be51-4147-8b71-0bd83ef7af89 {"pid": "7602", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/032187130"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:41.381704 2023-08-08 13:37:41.381712 645b993d-b3e4-4ffd-93c0-1c773d46ea88 {"pid": "7603", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/032563507"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:41.46704 2023-08-08 13:37:41.467048 8341e7a5-fe40-4a33-8302-05cd47a733d8 {"pid": "7604", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/032972938"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:41.543896 2023-08-08 13:37:41.543899 5b3abd85-5923-40ce-b262-95793471e7e3 {"pid": "7605", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/03388157X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:41.61416 2023-08-08 13:37:41.614163 009228a8-3014-42b1-84ed-de3a72a47939 {"pid": "7606", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034160523"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:41.700361 2023-08-08 13:37:41.700369 62871867-7f81-4b0a-899d-a9730d473dfe {"pid": "7607", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034490906"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:41.772326 2023-08-08 13:37:41.772329 7064aa1e-b931-4284-9410-fe13c8aed530 {"pid": "7608", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034680365"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:41.822601 2023-08-08 13:37:41.822604 975a297c-d44e-43a0-be23-50416a982322 {"pid": "7609", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/035801123"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:41.88216 2023-08-08 13:37:41.882162 71f8606e-f10b-49f0-bcdb-5c39ebe24080 {"pid": "7610", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/050203177"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:41.941462 2023-08-08 13:37:41.941465 babda14f-20f8-4593-b5e1-116b77fd753d {"pid": "7611", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/050513478"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:42.030539 2023-08-08 13:37:42.030544 8684b379-b84e-49c2-8120-959446d2bf0d {"pid": "7612", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/077061284"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:42.098993 2023-08-08 13:37:42.098998 46543dca-5fa8-4076-b1b6-0cd9376a6d99 {"pid": "7613", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/080206913"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:42.179036 2023-08-08 13:37:42.179039 d922c892-0f2a-4932-8da8-fc7863281b1a {"pid": "7614", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/083620338"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:42.253651 2023-08-08 13:37:42.253653 25d27153-0a43-4d5a-a9c7-98e98697fef0 {"pid": "7615", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/083622519"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json", "deleted": "2022-08-25T10:47:31.616254+00:00"} 1 -2023-08-08 13:37:42.34567 2023-08-08 13:37:42.345675 fd8b99ad-2410-4b7b-b8df-761ea2f55314 {"pid": "7616", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/092468675"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:42.430895 2023-08-08 13:37:42.430904 dc1d419f-23ad-4a97-8c6c-a588efec071e {"pid": "7617", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/113531923"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:42.516961 2023-08-08 13:37:42.51697 b2e19a1b-8957-4e03-9bc6-4685aea0f121 {"pid": "7618", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/119256347"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:42.591106 2023-08-08 13:37:42.591116 d71d61e5-426c-470a-86e9-1f52dc1a1b5a {"pid": "7619", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/130730173"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:42.679734 2023-08-08 13:37:42.679743 0521fc43-dd56-41d9-9019-0fc507696600 {"pid": "7620", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/132184214"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:42.776706 2023-08-08 13:37:42.776711 84cd3fbf-274f-4f2d-ac1d-ac7cefc1480d {"pid": "7621", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/146321944"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:42.827699 2023-08-08 13:37:42.827703 ca09bbf7-d883-4c17-b68d-468aef444076 {"pid": "7622", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/146774094"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:42.876931 2023-08-08 13:37:42.876934 2cecf4dc-74f8-4229-8dfc-c7a387153c3b {"pid": "7623", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/16573762X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:42.926601 2023-08-08 13:37:42.926604 f8d78f9b-d5c1-4ec3-846e-45d5f96afd7b {"pid": "7624", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/16719416X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:42.979616 2023-08-08 13:37:42.979619 8acda6d8-94c6-40ea-82e6-0639af921cb8 {"pid": "7625", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/172690250"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:43.035879 2023-08-08 13:37:43.035883 41c96dcb-c9dc-4673-8baa-1663639d22b9 {"pid": "7626", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/174131887"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:43.115453 2023-08-08 13:37:43.115459 9c8040e3-e214-45f0-b099-5bbeea1cb89b {"pid": "7627", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/18456381X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:43.182623 2023-08-08 13:37:43.18263 8f236f8e-26d4-44fa-89e8-3ce58c3fdeee {"pid": "7628", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/245367888"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:43.27528 2023-08-08 13:37:43.27529 c2b14c18-df4b-4849-a87e-9ce78878434f {"pid": "7629", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/252252063"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:43.366141 2023-08-08 13:37:43.366149 895cabdc-9cf7-4dad-8af0-4f536e322728 {"pid": "7630", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/25410875X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:43.44231 2023-08-08 13:37:43.442314 72f201e3-865d-4867-9ae9-6f377264ce97 {"pid": "7631", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/255690444"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:43.531867 2023-08-08 13:37:43.531872 9c59ed71-1817-4079-a5bb-152de90e27bf {"pid": "7632", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/256524203"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:43.61447 2023-08-08 13:37:43.614474 fae2477e-1dbc-47fa-ac8e-c7a3fb290ce8 {"pid": "7633", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/258617527"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:43.712463 2023-08-08 13:37:43.71247 b30347ae-8c76-4b94-9eeb-a8a5d9fafbe3 {"pid": "7634", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/25906288X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:43.792999 2023-08-08 13:37:43.793008 d1866148-015b-4575-8bf1-327997caa4f7 {"pid": "7635", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/259596337"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:43.852977 2023-08-08 13:37:43.85298 6d37f397-2c09-437a-aca8-ca7ed6d99c36 {"pid": "7636", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/259599174"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:43.903472 2023-08-08 13:37:43.903476 ac4deab1-4d2c-4ab1-97cf-92abfc7bc1d4 {"pid": "7637", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/259943401"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:43.957281 2023-08-08 13:37:43.957284 4c1e92a2-ea24-4108-971d-926156ce0404 {"pid": "7638", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/259951293"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:44.006697 2023-08-08 13:37:44.006701 4f5da7b6-29e6-4122-a658-e759b1159f9c {"pid": "7639", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/259974811"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:44.056037 2023-08-08 13:37:44.05604 6dd1c277-569a-4c7a-9f14-33acd19f2b44 {"pid": "7640", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/259995118"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:44.113438 2023-08-08 13:37:44.113442 755eebcb-13f4-4479-91ec-b0395543b012 {"pid": "7641", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/261107909"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:44.209213 2023-08-08 13:37:44.209223 ca35f295-1829-46fa-9880-e028d4c61222 {"pid": "7642", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/261196715"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:44.268673 2023-08-08 13:37:44.268676 b3a49bd1-d401-450b-94e1-63ab21c581de {"pid": "7643", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/261901532"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:44.344662 2023-08-08 13:37:44.34467 4549e154-3034-421a-9aed-6ed29a0c07c3 {"pid": "7644", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/262111012"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:44.43284 2023-08-08 13:37:44.432848 b7ab1b6b-92e4-4405-8e10-7c4c57b0cd08 {"pid": "7645", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/262111020"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:44.514622 2023-08-08 13:37:44.514625 39135e2c-47bb-4c92-acbd-76b4b6138767 {"pid": "7646", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/262111039"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:44.571899 2023-08-08 13:37:44.571902 851963c3-1071-4504-9da8-c4dfa7c15d6b {"pid": "7647", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/262111071"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:44.658978 2023-08-08 13:37:44.658988 059d275a-e46b-48f2-891e-269299df5c91 {"pid": "7648", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/26211108X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:44.742581 2023-08-08 13:37:44.742584 48ff51f2-ef34-42c7-a91d-007dc2b4f457 {"pid": "7649", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/262111098"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:44.830308 2023-08-08 13:37:44.830317 f54c096a-d7b7-4c7b-966d-160df478cb57 {"pid": "7650", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/262125927"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:44.905779 2023-08-08 13:37:44.905782 22bac894-4c43-47ed-8475-894413361eb7 {"pid": "7651", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/262413817"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:44.95434 2023-08-08 13:37:44.954343 2b3b6878-5cdd-4b8e-a5a2-fe0b25c84f9a {"pid": "7652", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/262414023"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:45.002473 2023-08-08 13:37:45.002475 e863b70b-712e-4abf-91e0-b95ee33701a6 {"pid": "7653", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/262414082"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:45.051903 2023-08-08 13:37:45.051907 17dcc87d-1971-4a04-9c1d-7b3fe5cb84fe {"pid": "7654", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/262414112"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:45.101498 2023-08-08 13:37:45.101501 104b08ff-9911-4369-9620-5819355ef3c0 {"pid": "7655", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/262668858"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:45.180062 2023-08-08 13:37:45.180068 4dcc1695-5711-405a-8207-ca60a97f92c7 {"pid": "7656", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/262669161"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:45.261694 2023-08-08 13:37:45.261705 67ccc89c-6997-4467-8647-824ca3322f45 {"pid": "7657", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/262669188"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:45.336829 2023-08-08 13:37:45.336831 e345602c-cc2d-4856-8aa1-e921fe826cda {"pid": "7658", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/26266920X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:45.413401 2023-08-08 13:37:45.413409 a293661b-ec3f-40a1-8c2e-3ad4835f98e8 {"pid": "7659", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/262669234"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:45.512993 2023-08-08 13:37:45.513003 43f5a1dc-1e9d-465b-887c-02d054f34d3e {"pid": "7660", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/262669242"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:45.574552 2023-08-08 13:37:45.574557 cf803ed6-f82c-443f-b4fb-9f660c516c3f {"pid": "7661", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/262669250"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:45.645465 2023-08-08 13:37:45.645468 e1cbc25a-a3e9-44ef-bcb9-e6da1292fffd {"pid": "7662", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/262805111"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:45.725693 2023-08-08 13:37:45.725698 b9572912-7147-4a40-9b84-f024ad69cc86 {"pid": "7663", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/262915219"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:45.792485 2023-08-08 13:37:45.792495 cb42f09b-af79-43a3-bf10-c1cfb0db8ea0 {"pid": "7664", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/262928264"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:45.881852 2023-08-08 13:37:45.881861 233b4c4d-9d19-4a49-a5b2-cf9d4046902b {"pid": "7665", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/26292837X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:45.944371 2023-08-08 13:37:45.944373 1121b49e-e03c-4575-b6de-05191dc413f3 {"pid": "7666", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/262928507"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:46.000795 2023-08-08 13:37:46.000799 5fcf2cb8-d623-441b-af8e-e4ee229b0f7a {"pid": "7667", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/262928701"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:46.073138 2023-08-08 13:37:46.073141 f48d693e-74bd-4a88-8ea2-6d2b5a50cbbc {"pid": "7668", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/26307837X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:46.136246 2023-08-08 13:37:46.136251 3d09a94f-36c0-4627-af2a-d8a68a74b39c {"pid": "7669", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263492680"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:46.216766 2023-08-08 13:37:46.216776 6ec0da4a-6f4d-4d17-8f6f-1139eceeb622 {"pid": "7670", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263499944"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:46.289899 2023-08-08 13:37:46.289907 2a946ae6-1233-4707-a81a-4b8aba9835f6 {"pid": "7671", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263499979"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:46.38191 2023-08-08 13:37:46.381917 66620b9b-cc51-4a12-83e9-97d9d4079e37 {"pid": "7672", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263500047"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:46.481179 2023-08-08 13:37:46.481183 9df43341-cbcb-43d3-bd1a-3fe8810be304 {"pid": "7673", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263500071"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:46.604059 2023-08-08 13:37:46.604063 3c541718-d121-472b-90bf-f299cda14cd4 {"pid": "7674", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263500187"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:46.65738 2023-08-08 13:37:46.657383 731eaf1a-bd59-4d1e-ad9d-353cb8b8503a {"pid": "7675", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263610918"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:46.707409 2023-08-08 13:37:46.707411 b10f8e16-de18-4db4-a112-96a3b1fc4da6 {"pid": "7676", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714233"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:46.760743 2023-08-08 13:37:46.760746 e123ee67-cf0f-4ef1-92db-ddb2b8a8d397 {"pid": "7677", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714241"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:46.810382 2023-08-08 13:37:46.810385 21b56b3b-7eac-4c57-b484-3cbabf894885 {"pid": "7678", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/26371425X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:46.880719 2023-08-08 13:37:46.880727 ecd657a6-0ea1-4236-a251-5fa37c771c18 {"pid": "7679", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714268"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:46.951971 2023-08-08 13:37:46.951974 80ecbe01-8a06-4153-b551-635f2709e5d2 {"pid": "7680", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714276"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:47.001917 2023-08-08 13:37:47.00192 f8cecbca-4916-466f-9fea-503350d53a94 {"pid": "7681", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714284"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:47.051558 2023-08-08 13:37:47.051561 bac34b31-078e-4d3c-9c12-bbf23c181aa7 {"pid": "7682", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714292"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:47.103705 2023-08-08 13:37:47.103708 5bf206ea-0165-4c14-b9b1-a25dcff96f1e {"pid": "7683", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714306"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:47.163854 2023-08-08 13:37:47.163858 216e2e0c-550e-4b3d-8c03-b7f0e114191a {"pid": "7684", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714314"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:47.228255 2023-08-08 13:37:47.228263 9ee598f4-1aae-4869-b4d0-38933dab1699 {"pid": "7685", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714322"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:47.321554 2023-08-08 13:37:47.321559 22989a74-d1a3-46b0-9d9e-b625f5be790a {"pid": "7686", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714330"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:47.414876 2023-08-08 13:37:47.41488 19cc18dc-3724-4051-b098-6fd9b597fdb5 {"pid": "7687", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714349"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:47.512046 2023-08-08 13:37:47.512056 1902c6a4-2b53-4771-bcea-5d832dd96c6c {"pid": "7688", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714357"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:47.574141 2023-08-08 13:37:47.574146 df5793a7-e4bb-42c8-b795-a4f8db244f80 {"pid": "7689", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714365"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:47.645877 2023-08-08 13:37:47.645881 58031939-8da6-4655-b34c-20fcdddb6655 {"pid": "7690", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714373"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:47.735766 2023-08-08 13:37:47.735771 cdb25056-a2dc-4ca7-a7eb-20a02bb98a3b {"pid": "7691", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/26371439X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:47.821326 2023-08-08 13:37:47.821329 3f594464-40a2-4080-94db-4ca026b06a87 {"pid": "7692", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714403"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:47.909352 2023-08-08 13:37:47.909362 a92b492b-f821-4664-85b3-e6217b8c1430 {"pid": "7693", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714411"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:47.994876 2023-08-08 13:37:47.99488 fbb9e8a7-929b-44d9-8a15-b940fef271cf {"pid": "7694", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/26371442X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:48.050258 2023-08-08 13:37:48.050261 ad950c43-b50c-4670-80c1-d9ee15b1e4a9 {"pid": "7695", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714438"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:48.099926 2023-08-08 13:37:48.099929 14d5939d-df82-4739-b16f-a709c1d161b4 {"pid": "7696", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714446"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:48.150012 2023-08-08 13:37:48.150015 0e1453e1-ba61-4837-8f80-2e1dfb153137 {"pid": "7697", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714454"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:48.199152 2023-08-08 13:37:48.199155 764bc049-ccb9-404e-bf3f-6f86e4a40288 {"pid": "7698", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714462"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:48.266284 2023-08-08 13:37:48.266291 e0aca4e3-c0f7-486b-9141-3b0823b304bd {"pid": "7699", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714470"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:48.348006 2023-08-08 13:37:48.348015 03477155-75c1-4c5e-9f17-b1a10780489b {"pid": "7700", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714489"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:48.445254 2023-08-08 13:37:48.445263 a21f9b55-3ee5-4c26-988d-033cbf34422c {"pid": "7701", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714500"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:48.53678 2023-08-08 13:37:48.536783 91660634-6651-4cc7-97b0-eb39fa6e3ee9 {"pid": "7702", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714519"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:48.59085 2023-08-08 13:37:48.590852 b2fa2e60-0e8d-4930-98b7-cfb96fbc9559 {"pid": "7703", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714527"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:48.665705 2023-08-08 13:37:48.665708 7308a3cf-78d2-4a11-9dac-ca211c2e397c {"pid": "7704", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714535"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:48.7324 2023-08-08 13:37:48.732408 353c9a96-48d0-44a1-9e22-ede7327ab0a5 {"pid": "7705", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714543"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:48.79847 2023-08-08 13:37:48.798479 16e523a9-9e19-4607-9405-8e20fb403f96 {"pid": "7706", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714551"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:48.880056 2023-08-08 13:37:48.88006 f2cee243-53d1-4bc3-9f47-a7699b1554aa {"pid": "7707", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/26371456X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:48.964603 2023-08-08 13:37:48.964607 cb10ddc8-a479-4a9a-8182-8c151e326480 {"pid": "7708", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714578"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:49.036551 2023-08-08 13:37:49.036555 acf96121-3580-4e30-8970-d947e7dc940a {"pid": "7709", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714594"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:49.087328 2023-08-08 13:37:49.08733 d5edbfda-ffe7-4ccb-8ad7-73ea711398d5 {"pid": "7710", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714608"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:49.142316 2023-08-08 13:37:49.142319 19a71ea0-734f-48a1-b4ca-a6452fd6082e {"pid": "7711", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714616"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:49.192426 2023-08-08 13:37:49.192429 5bdd9117-818a-4af4-9a5c-447e30197f4e {"pid": "7712", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714624"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:49.241319 2023-08-08 13:37:49.241321 e8ac26df-301a-4b41-8d4c-98b8c55b79fd {"pid": "7713", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714632"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:49.311796 2023-08-08 13:37:49.311805 d6809a2c-da1f-4c86-8f6f-ef5450d3714f {"pid": "7714", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714640"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:49.392798 2023-08-08 13:37:49.392807 ae7a8ede-87e9-4169-bafb-a3c14bff5c85 {"pid": "7715", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714659"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:49.477594 2023-08-08 13:37:49.477602 838e2256-a0a0-4ba6-aff7-3b75c5f29e28 {"pid": "7716", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714667"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:49.551511 2023-08-08 13:37:49.551514 387cec39-4b37-4203-8f88-7b6d8670d23c {"pid": "7717", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714691"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:49.613341 2023-08-08 13:37:49.613346 855c9e44-cda5-4acd-bc59-d87a037c349d {"pid": "7718", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714705"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:49.691903 2023-08-08 13:37:49.691915 8151e4f7-887a-40f7-947f-c40f44d2ce16 {"pid": "7719", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714713"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:28:41.3374 2023-08-08 14:28:41.337408 2e8b0c96-beec-43c1-8b98-b7f3baac4af0 {"pid": "7725", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027797619"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json", "deleted": "2023-08-08T14:28:41.276336+00:00"} 1 -2023-08-08 14:28:41.452805 2023-08-08 14:28:41.452813 d36eeeff-88fd-488c-b7bf-280681988ffb {"pid": "7726", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027798461"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json", "deleted": "2023-08-08T14:28:41.375163+00:00"} 1 -2023-08-08 14:28:41.558929 2023-08-08 14:28:41.558939 696ee35a-b84e-4475-ac7c-2a7418c689ff {"pid": "7727", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027798682"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json", "deleted": "2023-08-08T14:28:41.485675+00:00"} 1 -2023-08-08 14:28:41.646184 2023-08-08 14:28:41.64619 ad5a0f1b-4daf-4a71-ba28-1944f187f8a4 {"pid": "7728", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027799395"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json", "deleted": "2023-08-08T14:28:41.593466+00:00"} 1 -2023-08-08 14:28:41.718275 2023-08-08 14:28:41.718279 c9b23c02-5928-41c4-9900-87481ee4e979 {"pid": "7729", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027799409"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json", "deleted": "2023-08-08T14:28:41.670485+00:00"} 1 -2023-08-08 14:25:03.929335 2023-08-08 14:35:53.773481 a80c2da0-17c0-4fbd-9d3f-51282925c992 {"pid": "7722", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/033466300"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 3 -2023-08-08 14:28:41.242851 2023-08-08 14:28:41.242856 2d4709b8-ad81-4362-903b-32399f268796 {"pid": "7724", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027796930"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json", "deleted": "2023-08-08T14:28:41.182452+00:00"} 1 -2023-08-08 14:28:41.816907 2023-08-08 14:28:41.816917 36b7ddb8-1360-4298-ac11-fceea2de1211 {"pid": "7730", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027799425"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json", "deleted": "2023-08-08T14:28:41.752508+00:00"} 1 -2023-08-08 14:28:41.928485 2023-08-08 14:28:41.928509 a70543e2-4d56-4f75-8237-f23a52f18323 {"pid": "7731", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027804380"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json", "deleted": "2023-08-08T14:28:41.850206+00:00"} 1 -2023-08-08 14:25:04.643365 2023-08-08 14:35:54.456502 892fb8f9-9a56-4b5e-b3af-db4fbb1f82e6 {"pid": "7723", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/050665391"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 3 -2023-08-08 14:28:42.073456 2023-08-08 14:28:42.073465 14c73725-2e49-44f9-b6df-acba7c16f36a {"pid": "7732", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027805158"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json", "deleted": "2023-08-08T14:28:41.984200+00:00"} 1 -2023-08-08 14:28:42.207486 2023-08-08 14:28:42.207546 0238264a-f796-485c-9011-df17ab4da39a {"pid": "7733", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027805301"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json", "deleted": "2023-08-08T14:28:42.125605+00:00"} 1 -2023-08-08 14:28:42.310907 2023-08-08 14:28:42.310916 479c9c0e-7451-46c4-8cf2-99b85fe160cd {"pid": "7734", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027805824"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json", "deleted": "2023-08-08T14:28:42.243305+00:00"} 1 -2023-08-08 14:28:44.037534 2023-08-08 14:28:44.037537 bafdc96a-513e-4f42-9527-fc1e7b22f742 {"pid": "7735", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027812596"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json", "deleted": "2023-08-08T14:28:43.978364+00:00"} 1 -2023-08-08 14:28:44.098457 2023-08-08 14:28:44.098462 82ed0355-eb9c-4a56-82d7-e08dee0f0d79 {"pid": "7736", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02781341X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json", "deleted": "2023-08-08T14:28:44.061768+00:00"} 1 -2023-08-08 14:28:44.908763 2023-08-08 14:28:44.908767 f97a0146-10fe-4f71-b2b1-f17528df368b {"pid": "7737", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027813533"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json", "deleted": "2023-08-08T14:28:44.848459+00:00"} 1 -2023-08-08 14:28:46.950884 2023-08-08 14:28:46.950886 376ad966-bd76-4630-89d3-a7d546cc9907 {"pid": "7738", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027804232"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json", "deleted": "2023-08-08T14:28:46.891848+00:00"} 1 -2023-08-08 13:58:50.961511 2023-08-08 14:31:44.874861 8bff9b3b-2c5a-4804-ba5a-38ce0adf7fc2 {"pid": "7720", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027794687"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 8 -2023-08-08 14:34:56.710646 2023-08-08 14:35:50.113377 dcb128a3-6cdb-4c5e-8559-5c7b553225d3 {"pid": "7739", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/033297746"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 2 -2023-08-08 14:34:56.772315 2023-08-08 14:35:50.189519 e40d9c38-9beb-470f-97cc-03021e6a3b22 {"pid": "7740", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/050170406"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 2 -2023-08-08 14:34:56.852649 2023-08-08 14:35:50.254301 9e94b9ae-91a9-44a9-a965-01162b96c0ae {"pid": "7741", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/098272225"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 2 -2023-08-08 14:34:56.936841 2023-08-08 14:35:50.33681 ee314be9-fca0-4178-bcf5-3d717870a07b {"pid": "7742", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/241963974"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 2 -2023-08-08 14:25:02.869344 2023-08-08 14:35:53.256156 e295686d-6066-4d99-8484-d21d23b83aa9 {"pid": "7721", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029531411"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 3 -2023-08-08 14:36:35.740475 2023-08-08 14:36:35.740483 b78ec242-ad8b-401d-9a57-91e0aadf923f {"pid": "7743", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027793974"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:35.860404 2023-08-08 14:36:35.860414 bc8be94c-afef-480e-ba9f-f2d5fa63edf7 {"pid": "7744", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027794016"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:35.970489 2023-08-08 14:36:35.970499 a3682979-0d5e-4f11-acbb-7871afec1556 {"pid": "7745", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027794903"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:36.077198 2023-08-08 14:36:36.077205 394db9a3-95e7-41ee-8cfc-a8dadb5f83aa {"pid": "7746", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027794954"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:36.207178 2023-08-08 14:36:36.207182 d5d67c0f-776e-43ff-84fc-a64aeaf51799 {"pid": "7747", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027794962"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:36.287753 2023-08-08 14:36:36.287758 306b9c23-37e6-4849-804a-9f2e87704569 {"pid": "7748", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027794970"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:36.373826 2023-08-08 14:36:36.373837 f4c85e77-147e-4c59-8999-6415246ae352 {"pid": "7749", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027795926"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:36.481855 2023-08-08 14:36:36.481865 43802f0e-f47d-4fe9-83c9-4d6b0fb58063 {"pid": "7750", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027796817"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:36.576108 2023-08-08 14:36:36.576113 89c8937b-c705-454c-89d7-5fe938a7527f {"pid": "7751", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027799433"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:36.687423 2023-08-08 14:36:36.687431 9272701a-5ee8-4663-b6b1-cb93ed4c0722 {"pid": "7752", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027804038"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:36.791347 2023-08-08 14:36:36.791355 3f459919-76c6-43c3-9652-7a273abc376f {"pid": "7753", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027804186"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:36.905964 2023-08-08 14:36:36.905975 1abdcaca-15d8-40a0-a6d5-dc1a2fd51e5c {"pid": "7754", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/030860466"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:36.992343 2023-08-08 14:36:36.99235 97b2d58a-5b93-4c4f-8263-9631647dc47f {"pid": "7755", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/031022219"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:37.113504 2023-08-08 14:36:37.113507 13e9a046-350c-4b68-a8fe-f7914dee6999 {"pid": "7756", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/031937667"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:37.222244 2023-08-08 14:36:37.222248 b0813bc1-52c9-489b-93c7-3d8ddc11a052 {"pid": "7757", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/033070202"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:37.287986 2023-08-08 14:36:37.28799 8c354710-957d-4aee-a5d5-d542ddf781bd {"pid": "7758", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034577769"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:37.342732 2023-08-08 14:36:37.342735 2270ca85-22aa-48da-906c-e39036f98914 {"pid": "7759", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/03483446X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:37.439242 2023-08-08 14:36:37.439246 9310c32d-b705-4e32-ab59-20fa0fcd2629 {"pid": "7760", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034853537"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:37.536714 2023-08-08 14:36:37.536722 85430101-9910-4f18-bbbe-a1ee2ee7bfc7 {"pid": "7761", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/03487156X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:37.638247 2023-08-08 14:36:37.638503 bd27440b-3f01-4863-9e47-c5f53386c627 {"pid": "7762", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034933697"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:37.77195 2023-08-08 14:36:37.771956 8ab079ef-cc26-4d10-b6f7-41780d1f560e {"pid": "7763", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034934774"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:37.884989 2023-08-08 14:36:37.884999 167a1116-7ade-475a-b316-ed8d69df3ebd {"pid": "7764", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034934936"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:37.989454 2023-08-08 14:36:37.989466 818e8317-16bb-472d-8282-65883653864f {"pid": "7765", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034935061"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:38.093555 2023-08-08 14:36:38.093565 73c8e684-ba34-4d74-8b91-caf70095e300 {"pid": "7766", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034935134"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:38.221479 2023-08-08 14:36:38.221489 5447671e-7916-42ac-81dd-04d330b761ac {"pid": "7767", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034935177"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:38.305475 2023-08-08 14:36:38.305479 09d3f034-cd60-455c-b62e-746496d10044 {"pid": "7768", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034935207"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:38.358329 2023-08-08 14:36:38.358333 36eabe3e-46e9-47b1-92e8-4f32496971fb {"pid": "7769", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034935274"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:38.432056 2023-08-08 14:36:38.432067 8b73fdc1-d344-40e2-ae45-1470083d8d96 {"pid": "7770", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034935290"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:38.562352 2023-08-08 14:36:38.562364 b1dd8c85-01da-43d7-84ca-231ca8345bc7 {"pid": "7771", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034935304"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:38.673181 2023-08-08 14:36:38.673189 239ffbc4-cfb2-48bb-933b-66c2264b784b {"pid": "7772", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034935827"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:38.757665 2023-08-08 14:36:38.757674 5f6647e3-d960-4548-a625-09e4d51bf593 {"pid": "7773", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034935835"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:38.857905 2023-08-08 14:36:38.857913 8902a539-e780-4524-87ed-511f50e6907d {"pid": "7774", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034935908"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:38.977236 2023-08-08 14:36:38.977244 d684b0ef-15c1-4a3f-b042-c0c1d18b4cd8 {"pid": "7775", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034936890"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:39.068325 2023-08-08 14:36:39.068329 2fef4594-ce29-424a-a22e-5b4aac2bbac7 {"pid": "7776", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034937072"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:39.167822 2023-08-08 14:36:39.167832 3a18a460-bbe9-4b1d-8c41-63ee3d5c4126 {"pid": "7777", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034937099"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:39.270993 2023-08-08 14:36:39.271002 16f5c0ea-15ee-4284-a11d-abdb9af053f2 {"pid": "7778", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034937129"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:39.358718 2023-08-08 14:36:39.358722 6d14c140-d584-4e55-b254-ffc39373fdb6 {"pid": "7779", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/035021128"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:39.417421 2023-08-08 14:36:39.417424 2046f95d-300e-4af2-a793-9c7f15e8fd64 {"pid": "7780", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/035021179"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:39.474608 2023-08-08 14:36:39.47461 47c53fd6-544a-47e0-8e0b-f8c838b0d0e9 {"pid": "7781", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/035077948"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:39.566039 2023-08-08 14:36:39.566049 69847111-2fe1-44b3-9abd-7061a5536944 {"pid": "7782", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/035077964"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:39.673296 2023-08-08 14:36:39.673304 b25b5547-24fc-4271-8c79-bbc0dec5c75c {"pid": "7783", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/035078316"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:39.791887 2023-08-08 14:36:39.791894 702cf5d0-fe7a-4112-ab4b-0afe113b998f {"pid": "7784", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/035087625"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:39.890864 2023-08-08 14:36:39.89087 35a9743c-47cb-417b-9e39-2c45372d48a7 {"pid": "7785", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/03509446X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:40.00627 2023-08-08 14:36:40.006277 e59bb711-dceb-47bd-ba15-c5e2458f33eb {"pid": "7786", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/035207191"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:40.092312 2023-08-08 14:36:40.092316 f4f6e438-7e6a-438c-b193-d1ecfe91b072 {"pid": "7787", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/03528076X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:40.211399 2023-08-08 14:36:40.211412 b706a1aa-6d73-4f71-a8aa-a9ff92cf1d6e {"pid": "7788", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/035383925"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:40.322551 2023-08-08 14:36:40.32256 cf3717b6-14b5-4180-a344-bec25a36f9b5 {"pid": "7789", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/035623683"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:40.408586 2023-08-08 14:36:40.408591 0ad21465-2fc5-48d8-80a1-f8dd5e043526 {"pid": "7790", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/035623691"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:40.468677 2023-08-08 14:36:40.468681 919c237f-91cd-4bbf-afe3-76e4c84d0fbf {"pid": "7791", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/050323148"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:40.57973 2023-08-08 14:36:40.579735 e84589ef-7dc1-422e-b877-b56f40d65f14 {"pid": "7792", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/050323172"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:40.675698 2023-08-08 14:36:40.675707 7eac9c26-e599-4702-af5d-6087547d5883 {"pid": "7793", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/061617296"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:40.788225 2023-08-08 14:36:40.788233 1b8adf9f-d49a-478c-9284-cc35a2fa7cf3 {"pid": "7794", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/077057384"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:40.887092 2023-08-08 14:36:40.8871 5e21ea2e-94b4-4c12-90fe-070119e9931c {"pid": "7795", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/101481241"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:41.011125 2023-08-08 14:36:41.011133 dfadb56d-388f-4cc3-84c7-90dc09e1801f {"pid": "7796", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/101481330"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:41.12338 2023-08-08 14:36:41.123384 238f312c-ddaf-41a8-a388-de711964f81a {"pid": "7797", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/101481349"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:41.240393 2023-08-08 14:36:41.2404 60fb4eb1-3db2-4a2a-846f-1a4890eb1d05 {"pid": "7798", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/101481438"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:41.343628 2023-08-08 14:36:41.343636 436e4ae2-638a-4187-b04a-887161e7c2a8 {"pid": "7799", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/107841363"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:41.446295 2023-08-08 14:36:41.446298 3b24277c-7103-4694-93b5-65da2e4082e9 {"pid": "7800", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/108812987"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:41.498741 2023-08-08 14:36:41.498744 b8a8c575-beb2-4bb3-806f-90e3d0082f80 {"pid": "7801", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/109094883"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:41.55181 2023-08-08 14:36:41.551812 c0dbc979-5108-452b-bb4b-d93d5c4c8e36 {"pid": "7802", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/11353213X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:41.670961 2023-08-08 14:36:41.671022 74f8379f-33a8-47ac-9e8b-7f1d57d5a203 {"pid": "7803", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/11393260X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:42.110794 2023-08-08 14:36:42.110803 28efaa8a-eb2b-49eb-b127-1fad37e16f30 {"pid": "7804", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/12007432X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:42.232408 2023-08-08 14:36:42.232419 c40e01ae-d512-4e13-b269-50fb8eff170c {"pid": "7805", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/120593904"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:42.336043 2023-08-08 14:36:42.336053 b4a42e5c-b1d0-4421-a182-0d3acd574591 {"pid": "7806", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/144664119"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:42.447331 2023-08-08 14:36:42.44734 bac82173-a335-4592-9bcd-697a07bef24a {"pid": "7807", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/146322134"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:42.504094 2023-08-08 14:36:42.504098 8daa95ea-373a-405e-9e96-0e054447e1ba {"pid": "7808", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/148171095"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:42.555742 2023-08-08 14:36:42.555745 d0f49800-b2af-4a42-9ae6-6543e6e63c49 {"pid": "7809", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/169177742"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:42.610047 2023-08-08 14:36:42.61005 f0d5ac4a-f16e-43e6-a31c-bee489b94bcc {"pid": "7810", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/169177750"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:42.705379 2023-08-08 14:36:42.70539 ec3b8470-ed6f-440b-9189-5270a23ff82c {"pid": "7811", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/17089018X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:42.80608 2023-08-08 14:36:42.806088 ba5613ec-8340-4524-a7cf-26c0dc56b317 {"pid": "7812", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/180122312"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:42.926323 2023-08-08 14:36:42.926334 209aeebc-6cd3-43c1-b0c9-f7e235041d38 {"pid": "7813", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/185676146"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:43.019702 2023-08-08 14:36:43.019713 82178c90-c7c3-4064-937b-c14673fd70e9 {"pid": "7814", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/196345359"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:44.013708 2023-08-08 14:36:44.013711 e9b2c4a2-2d24-47a8-bc4f-dab9da77c087 {"pid": "7815", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027809773"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:09.568539 2024-07-29 09:38:09.568543 149d5d58-76aa-4c98-a1df-de88a3737e7a {"pid": "7523", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A009955971"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:09.64327 2024-07-29 09:38:09.643274 f9c647e0-1171-44fa-8a0d-4c60219f0e61 {"pid": "7524", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A010077990"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:09.687789 2024-07-29 09:38:09.687792 08b0db59-c6c6-4d0c-ab10-55d254ad8795 {"pid": "7525", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001001"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:09.730335 2024-07-29 09:38:09.730337 b7221e5a-d2dd-4c40-bb14-228c7057771a {"pid": "7526", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001003"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:09.779495 2024-07-29 09:38:09.779501 7be49491-5a8b-4848-bfe7-3079eebfdc21 {"pid": "7527", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001004"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:09.82414 2024-07-29 09:38:09.824143 8b215d1b-6fac-4892-acca-6bbe635756fb {"pid": "7528", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001005"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:09.868394 2024-07-29 09:38:09.868398 f38df341-f2bb-4bdc-bd81-254d02e12426 {"pid": "7529", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001006"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:09.929562 2024-07-29 09:38:09.92957 56e49e1b-2d0d-466d-8bba-9e6ca785afa4 {"pid": "7530", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001007"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:10.00029 2024-07-29 09:38:10.000298 30c48087-2329-4393-9449-189bf414ca14 {"pid": "7531", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001008"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:10.064244 2024-07-29 09:38:10.064252 d9ddb848-b26c-4fef-8bd4-bdb2ac196193 {"pid": "7532", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001009"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:10.14208 2024-07-29 09:38:10.142088 bff10664-9638-4e6d-ae6a-517958c4bfca {"pid": "7533", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001012"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:10.216832 2024-07-29 09:38:10.216844 4b8b685d-d644-4077-86b9-996506e48b9d {"pid": "7534", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001013"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:10.301764 2024-07-29 09:38:10.301774 db291b5d-c771-4eb7-985f-2e5a8ce44bc9 {"pid": "7535", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001014"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:10.383486 2024-07-29 09:38:10.383496 19c67765-036e-44fd-9bf7-6404ee428344 {"pid": "7536", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001016"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:10.466159 2024-07-29 09:38:10.466168 664d76ab-7cb3-4420-a73a-7ba52d095d3d {"pid": "7537", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001017"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:10.55514 2024-07-29 09:38:10.555153 b937d6d0-256c-46c4-b142-7596e101049d {"pid": "7538", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001018"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:10.644692 2024-07-29 09:38:10.6447 e19026a4-dc9b-4938-a24a-241f0a336c68 {"pid": "7539", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001021"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:10.733262 2024-07-29 09:38:10.733275 b348a801-038d-4173-8576-ef9352c8d194 {"pid": "7540", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001023"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:10.818983 2024-07-29 09:38:10.818993 f1a13aee-3fe9-40ea-b07e-b277cc2bd58a {"pid": "7541", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001024"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:10.875969 2024-07-29 09:38:10.875972 73735b8f-1da7-462d-b411-700b0eb7953a {"pid": "7542", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001025"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:12.547445 2024-07-29 09:38:12.547447 775a47d1-99ef-4df5-8e8b-1d3245819648 {"pid": "7543", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027225798"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:12.609517 2024-07-29 09:38:12.609519 7cd1f3b1-cfde-449c-91b8-6e64f65e3620 {"pid": "7544", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027242250"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:12.67284 2024-07-29 09:38:12.672843 879b273a-6940-416f-83bd-c113976e205e {"pid": "7545", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027246159"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:12.727477 2024-07-29 09:38:12.727479 beaeb007-3c0d-4fb2-9692-8b7e0d25dbf9 {"pid": "7546", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027248062"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:43.600866 2024-07-29 09:40:43.600876 376d12f6-9739-464d-9283-4eda890c66c2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040707385"}, "pid": "9242", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:12.846418 2024-07-29 09:38:12.846425 e51faa75-471c-4cc8-9059-b15cc274b40e {"pid": "7548", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027256138"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:12.887468 2024-07-29 09:38:12.887471 41f6859b-d045-47c7-8f91-b3a0543a9bbc {"pid": "7549", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027257045"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:12.939601 2024-07-29 09:38:12.939609 6505dfdd-9f8d-450c-b4c1-757ec6563169 {"pid": "7550", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027268284"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:13.016385 2024-07-29 09:38:13.016395 e23593a9-e501-4e20-bfae-5be623281349 {"pid": "7551", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027274144"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:13.102791 2024-07-29 09:38:13.102799 f935f9ae-da39-4907-9b24-3419c072abd9 {"pid": "7552", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02727991X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:13.185844 2024-07-29 09:38:13.185857 3370d709-1f80-407b-bb1c-ad2b0aa9e543 {"pid": "7553", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02728607X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:13.282819 2024-07-29 09:38:13.282828 bbc6dbde-7068-4cd4-8066-b4e09878b3fa {"pid": "7554", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027292916"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:13.393926 2024-07-29 09:38:13.393933 d551dddd-e957-498b-a281-672d01558449 {"pid": "7555", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027302148"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:13.491197 2024-07-29 09:38:13.491209 bb325273-43d6-4a76-af2d-29c09a5c65d0 {"pid": "7556", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027308359"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:13.588967 2024-07-29 09:38:13.588979 95e99717-7695-4b1f-8249-6bc8109f91fa {"pid": "7557", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027317145"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:13.682004 2024-07-29 09:38:13.682038 f0a0d8ce-c30b-4d9b-b7b1-f0c9a3dc8364 {"pid": "7558", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027323552"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:13.787875 2024-07-29 09:38:13.787884 12d2d1f1-e9b3-45aa-80a7-5abed5864942 {"pid": "7559", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027328589"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:13.891637 2024-07-29 09:38:13.891642 21c07197-becb-41b4-82f0-2c8cfcb7b29b {"pid": "7560", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027330176"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:13.939463 2024-07-29 09:38:13.939465 270ddd75-c1ba-4d44-b070-a1a23e6d6ee1 {"pid": "7561", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027333930"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:14.008303 2024-07-29 09:38:14.00831 7409f55b-189e-4880-9347-224870ec2710 {"pid": "7562", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027336913"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:14.104592 2024-07-29 09:38:14.104602 88aca5af-c51e-449e-a985-0357c9782360 {"pid": "7563", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027345203"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:14.214853 2024-07-29 09:38:14.214872 9e4e4423-3a33-4016-b615-0bf2c8fd31bd {"pid": "7564", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027355152"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:14.328077 2024-07-29 09:38:14.32809 ba4d6f5c-38f3-4164-8ac0-0679124c1dd0 {"pid": "7565", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027355578"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:14.44418 2024-07-29 09:38:14.44419 11baaf8a-a4c4-4594-9c3c-fe166389e5e5 {"pid": "7566", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027355985"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:14.531763 2024-07-29 09:38:14.531771 fe9cb023-1c5c-478e-abc4-07b385fe7e2c {"pid": "7567", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027356493"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:14.630865 2024-07-29 09:38:14.630875 e26ab2c9-b071-4bd8-91d2-757b1d955e6f {"pid": "7568", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027365697"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:14.72633 2024-07-29 09:38:14.726333 f96e675f-bb58-448f-80be-1756c52421ac {"pid": "7569", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027368661"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:14.806792 2024-07-29 09:38:14.806795 6f1da4ff-ba5b-40aa-9140-db250a662583 {"pid": "7570", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027374351"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:14.879742 2024-07-29 09:38:14.879747 233c9c4f-0848-4bde-a3fb-159ed4e6cd71 {"pid": "7571", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027376982"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:14.937555 2024-07-29 09:38:14.937558 97180f99-7a56-425e-8426-ecfba4d49084 {"pid": "7572", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027391396"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:15.00111 2024-07-29 09:38:15.001117 64ada229-8c93-4606-bdae-a19fe5f5f74f {"pid": "7573", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027396924"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:15.093455 2024-07-29 09:38:15.093465 10fe5752-eff5-4265-aac3-15b1eade9353 {"pid": "7574", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02739770X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:15.182355 2024-07-29 09:38:15.182364 99bcc2a0-5b5e-4de7-b088-ccfaf5da1275 {"pid": "7575", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027415252"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:15.269718 2024-07-29 09:38:15.269725 ec52ee32-64e7-486b-8552-386a5959b37a {"pid": "7576", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02743141X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:15.34432 2024-07-29 09:38:15.344327 04f3b402-265f-4c81-9c52-f63ea2eaf09e {"pid": "7577", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027431444"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:15.425725 2024-07-29 09:38:15.425735 588e36ce-7580-4dce-89e0-400348c94891 {"pid": "7578", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027436683"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:15.530903 2024-07-29 09:38:15.530914 e4977b5d-156f-4f07-81dc-a7a108602e8d {"pid": "7579", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027455092"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:15.645521 2024-07-29 09:38:15.645528 3b3ba73e-516d-44ca-994f-75417659e12d {"pid": "7580", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027461599"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:15.756379 2024-07-29 09:38:15.756391 95397ff5-97c5-414b-9fbd-1f1c56d48940 {"pid": "7581", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027478033"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:15.862841 2024-07-29 09:38:15.862849 8209d284-ef7b-40f5-b400-f02bcdde511e {"pid": "7582", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027481352"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:15.952947 2024-07-29 09:38:15.95295 7be06446-3df3-440b-aeaa-9ccd37cbec1d {"pid": "7583", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027486753"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:16.027471 2024-07-29 09:38:16.027478 acb1926d-a707-461b-8cfa-5443dc0d6b58 {"pid": "7584", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027493032"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:16.10582 2024-07-29 09:38:16.105829 5fa6f89c-2b15-47bc-85d6-a26cddf95331 {"pid": "7585", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027495213"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:16.19952 2024-07-29 09:38:16.199529 3aaa7c76-e46c-404c-a298-a4e99f9eaa02 {"pid": "7586", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027495922"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:16.282014 2024-07-29 09:38:16.282023 8ddae97b-675b-43a7-b953-6b1e8631a298 {"pid": "7587", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02750333X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:16.372233 2024-07-29 09:38:16.372245 d57615b3-7e07-4bd5-9e86-a6599952bf83 {"pid": "7588", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027506762"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:16.468033 2024-07-29 09:38:16.468043 52c784f9-f92e-486d-b505-c72ff84d30b8 {"pid": "7589", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027516652"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:16.54838 2024-07-29 09:38:16.54839 b1618188-16c6-4d6a-84c2-7185a15d37ce {"pid": "7590", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027519546"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:16.644184 2024-07-29 09:38:16.644192 92440aca-1a8d-4032-becd-e574d5c85877 {"pid": "7591", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027519686"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:16.74646 2024-07-29 09:38:16.746472 71bcc85b-93a0-4a84-babc-d93d87c66815 {"pid": "7592", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027528820"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:16.845839 2024-07-29 09:38:16.845851 668a8d61-83c4-4489-be50-21319201df51 {"pid": "7593", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027532488"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:16.938 2024-07-29 09:38:16.938009 8cb66bd5-7dee-481c-92c6-b093e318a702 {"pid": "7594", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027545822"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:17.009596 2024-07-29 09:38:17.009599 0ff571fc-7f5f-4bc2-b974-ceb9d8b159af {"pid": "7595", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027564878"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:17.070687 2024-07-29 09:38:17.070695 8dead794-ff95-4271-b055-7906a80c5b83 {"pid": "7596", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027578747"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:17.157754 2024-07-29 09:38:17.157764 38ccd4e6-d610-4f43-b9b6-5c93c901bb9e {"pid": "7597", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02758254X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:17.253437 2024-07-29 09:38:17.253442 0e3e3850-ab1d-478f-8d11-0dc1eb599609 {"pid": "7598", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027613275"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:17.334759 2024-07-29 09:38:17.334766 a073c221-f2f1-4dfb-a1de-27a70b314f35 {"pid": "7599", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027616908"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:17.419199 2024-07-29 09:38:17.419206 0bbff7f3-cf6e-4492-b27d-ff96361abe7a {"pid": "7600", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027636461"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:17.503011 2024-07-29 09:38:17.503021 1057024d-eb4f-433f-bad2-27cd0023d885 {"pid": "7601", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027674118"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:17.595055 2024-07-29 09:38:17.595062 e970e54b-ed45-4a22-b61e-1c162686c413 {"pid": "7602", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027674150"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:17.693744 2024-07-29 09:38:17.693752 0376dbb9-063c-43e8-b673-2216705a9b0f {"pid": "7603", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027682226"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:17.804062 2024-07-29 09:38:17.804072 ff63f544-f1dd-4480-8bcf-6e00fc7a0974 {"pid": "7604", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027688836"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:17.913179 2024-07-29 09:38:17.913187 f4db645e-18bc-47e2-a3b9-8d7bcf95a6ab {"pid": "7605", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027694852"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:17.998993 2024-07-29 09:38:17.998998 30ebe49c-8a97-458d-a4b3-4f4ff36c340b {"pid": "7606", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027710025"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:18.048708 2024-07-29 09:38:18.048711 c058d926-a1fb-4d58-9419-8413f8dedeff {"pid": "7607", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027727327"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:18.139822 2024-07-29 09:38:18.139832 c861fc18-5c0c-4fef-9f0b-bb68d8024b30 {"pid": "7608", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027727521"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:18.236555 2024-07-29 09:38:18.236566 50bb9e5c-0071-428f-9d90-dbf4d01f44b0 {"pid": "7609", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027729044"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:18.325164 2024-07-29 09:38:18.325171 68a2552d-6c9f-4a0c-8150-d521e42dd78b {"pid": "7610", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027735893"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:18.408188 2024-07-29 09:38:18.408198 2a36ab9d-55e9-410d-b06d-c240c8b455e2 {"pid": "7611", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027756580"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:18.492286 2024-07-29 09:38:18.492298 a0ffd021-dcff-456a-b70e-4298b96d82e6 {"pid": "7612", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027756653"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:18.607784 2024-07-29 09:38:18.60779 e0d3c3e3-eb7f-4473-95e2-d5c6a1efedc0 {"pid": "7613", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027759547"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:18.716693 2024-07-29 09:38:18.716702 d1351d62-b9b3-44da-9a91-9216269e737d {"pid": "7614", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027789551"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:18.810883 2024-07-29 09:38:18.810894 18f88df8-3007-476c-9994-fb02ab424fda {"pid": "7615", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027793575"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:18.902456 2024-07-29 09:38:18.902466 5d764a93-6fc1-4714-8a13-f08c426aacee {"pid": "7616", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027808394"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:19.00485 2024-07-29 09:38:19.004861 9f54a6f4-f56b-4dd8-b4a2-62cb0e4c03e9 {"pid": "7617", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027808629"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:19.062125 2024-07-29 09:38:19.062127 dff1d3ef-50d7-4a33-9019-cf9a8c598156 {"pid": "7618", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027826171"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:19.143674 2024-07-29 09:38:19.143682 41cdd73e-2a05-46c1-aeed-eb603a8c11f6 {"pid": "7619", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027845214"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:19.233532 2024-07-29 09:38:19.23354 4a1906fd-84f9-4b1d-ba2e-a2746e5a6cdf {"pid": "7620", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02785082X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:19.318148 2024-07-29 09:38:19.318153 04561359-8988-4f65-8f00-81e6fdfde60f {"pid": "7621", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027856097"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:19.389004 2024-07-29 09:38:19.389013 9713e22b-f82c-49a6-9dcd-80c9dfd2dfb8 {"pid": "7622", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02785714X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:19.461505 2024-07-29 09:38:19.461508 9879e0cc-ed41-447e-a59a-76e4efc29162 {"pid": "7623", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027867277"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:19.523793 2024-07-29 09:38:19.523801 6facdae9-27e1-42ab-b17d-0b770b50f537 {"pid": "7624", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02786765X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:19.60579 2024-07-29 09:38:19.605797 ae77c01d-94f5-45cb-b8e9-018c3e5bf384 {"pid": "7625", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027868338"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:19.68652 2024-07-29 09:38:19.686528 3d5a98d7-31a5-4ce8-9a08-2d40b0742dc0 {"pid": "7626", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027870510"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:19.776114 2024-07-29 09:38:19.776126 602e3f99-cc5f-4754-a4ae-8e8faa829fb7 {"pid": "7627", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027873196"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:19.877401 2024-07-29 09:38:19.877411 58438637-8fe5-4477-ad42-738a58a7e460 {"pid": "7628", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02787608X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:19.976907 2024-07-29 09:38:19.976919 4af17633-74c9-4eb6-8a64-532f555e9f6c {"pid": "7629", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027883094"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:20.057932 2024-07-29 09:38:20.057934 ad88efa6-7978-4eb4-8ac0-133f329dad45 {"pid": "7630", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02788547X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:20.115812 2024-07-29 09:38:20.115819 a9db3946-00f9-40af-b190-a18215acf371 {"pid": "7631", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027885496"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:20.200863 2024-07-29 09:38:20.200869 c8e6f2d6-65ee-4d4a-b78c-39fe17e4bd84 {"pid": "7632", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027887960"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:20.283446 2024-07-29 09:38:20.283456 01095dea-380c-4c6b-8d31-f60ac3f284e1 {"pid": "7633", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027908380"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:20.376551 2024-07-29 09:38:20.376559 c563afd8-ec94-4aa4-8d44-475ebd61090c {"pid": "7634", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027910210"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:20.465654 2024-07-29 09:38:20.465662 381f0e55-9aa1-45be-8b23-db1f56f52f08 {"pid": "7635", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027915115"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:20.556552 2024-07-29 09:38:20.556561 e872099a-7a25-441d-8280-4dd0961fc40b {"pid": "7636", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027920216"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:20.637967 2024-07-29 09:38:20.637976 fbcfd30a-640a-4705-8be7-3599e7d0b9c2 {"pid": "7637", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027940373"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:20.732894 2024-07-29 09:38:20.732906 5fbb679c-ef37-4e9a-ac95-c29f83696bf2 {"pid": "7638", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027944492"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:20.829323 2024-07-29 09:38:20.829332 0d416b6e-c6cf-421e-9622-2cec63f6f01c {"pid": "7639", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027950808"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:20.922936 2024-07-29 09:38:20.922947 7f9035cb-635e-47c4-acc2-a00e7d97b83f {"pid": "7640", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027963675"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:21.010383 2024-07-29 09:38:21.010393 cafc1020-2b1a-4d54-b854-42d0a993fc4c {"pid": "7641", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028060563"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:21.084263 2024-07-29 09:38:21.084268 15b20133-9c6b-46ee-bdb7-ed3469713664 {"pid": "7642", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028071867"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:21.155351 2024-07-29 09:38:21.155358 53b8d304-036f-4798-acd0-cd761ecab953 {"pid": "7643", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028071964"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:21.238651 2024-07-29 09:38:21.238661 23da0bdf-14c6-470d-8b4f-810492134289 {"pid": "7644", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02807842X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:21.324245 2024-07-29 09:38:21.324257 f1f07c48-3572-4213-998d-56940bdb93ca {"pid": "7645", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02810160X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:21.419857 2024-07-29 09:38:21.419868 5c3f1f5f-0ea2-48c7-a4bd-034803bade9c {"pid": "7646", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028140362"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:21.498502 2024-07-29 09:38:21.498512 3722287a-96f1-4ff8-9fbe-a9402be0e64e {"pid": "7647", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028148800"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:21.588887 2024-07-29 09:38:21.588901 149acbf3-19bc-4a0b-8e7c-6968c24d11cf {"pid": "7648", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028211162"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:21.678086 2024-07-29 09:38:21.678099 e3e48058-fd4a-4b93-9002-6908546079ea {"pid": "7649", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028225090"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:21.767699 2024-07-29 09:38:21.767708 39744d82-4552-41a6-9a79-f1779185fdd6 {"pid": "7650", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028225767"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:21.855994 2024-07-29 09:38:21.856008 baaa6160-97a0-4647-9a09-5a1d3d8821c7 {"pid": "7651", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028233506"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:21.953673 2024-07-29 09:38:21.95369 acf370f4-971e-4044-ac95-aca2eb87688a {"pid": "7652", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028262220"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:22.030881 2024-07-29 09:38:22.030887 5e41a1e6-509c-4102-815b-2230b7606906 {"pid": "7653", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028287169"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:22.109457 2024-07-29 09:38:22.10946 1c52d3d8-adda-4018-9543-1c3957523756 {"pid": "7654", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028359380"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:22.173655 2024-07-29 09:38:22.173662 0274c724-fb52-4b6a-86dc-d277830f9a80 {"pid": "7655", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028431855"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:22.248681 2024-07-29 09:38:22.248687 ca8301d0-5e6b-412c-b0fb-837569cb986e {"pid": "7656", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028433890"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:22.332222 2024-07-29 09:38:22.332228 564bf482-94f2-41e9-8de0-118aed731c77 {"pid": "7657", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028497244"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:22.421779 2024-07-29 09:38:22.421785 d590d9be-4b78-4758-be38-d326b48925db {"pid": "7658", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028517180"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:22.512673 2024-07-29 09:38:22.512683 a98fb0e3-5886-4fbb-b40e-d6f4e8fea0b8 {"pid": "7659", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02852019X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:22.59318 2024-07-29 09:38:22.593186 83f639ca-a431-48fb-bac3-834f17393074 {"pid": "7660", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028549082"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:22.675546 2024-07-29 09:38:22.675555 9c539721-3794-4978-b04a-a18c05abc50b {"pid": "7661", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028631609"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:22.76071 2024-07-29 09:38:22.760721 20dd0481-2f4e-4944-b61b-7df89a424c8a {"pid": "7662", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028637720"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:22.842349 2024-07-29 09:38:22.842361 f7414d73-e141-4efe-ac47-5c4b9905b9cf {"pid": "7663", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028675274"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:22.932523 2024-07-29 09:38:22.932535 f1c998a0-1087-4aab-9765-c853c6e238a2 {"pid": "7664", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028676661"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:23.017545 2024-07-29 09:38:23.017556 2bc4be4c-3949-47ad-8c4c-5a8b0e90d6f6 {"pid": "7665", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02868589X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:23.107948 2024-07-29 09:38:23.107956 912b9c2c-ebbe-47e4-a28c-a016a5d35042 {"pid": "7666", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028698703"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:23.164472 2024-07-29 09:38:23.164478 f6da5bfe-cf42-4d61-8ebb-86ec00ca96d9 {"pid": "7667", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028700139"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:23.237088 2024-07-29 09:38:23.237096 a262cd06-691d-40c9-97b1-d07d50c4be77 {"pid": "7668", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028700171"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:23.316811 2024-07-29 09:38:23.316818 a246a1d4-fd07-46a4-a00d-eb4becb67934 {"pid": "7669", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028725387"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:23.399432 2024-07-29 09:38:23.399442 1bcf3eb9-9375-4cd1-8cc1-b47504c678ac {"pid": "7670", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028898338"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:23.474621 2024-07-29 09:38:23.47463 5d817edf-9813-49d1-8d97-a5e2ff6039e1 {"pid": "7671", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028909917"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:23.565337 2024-07-29 09:38:23.565347 926e39d8-3499-44d7-aa49-6349a5f8eb7f {"pid": "7672", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028910737"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:23.658139 2024-07-29 09:38:23.658152 866fc95c-8507-43dc-9b9f-0bf161c19972 {"pid": "7673", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028912098"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:23.74824 2024-07-29 09:38:23.748248 7005fc46-6c83-410b-a3cb-70480924d823 {"pid": "7674", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028929098"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:23.82465 2024-07-29 09:38:23.824659 120b2524-5df4-440b-8469-b34588c053d1 {"pid": "7675", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028973631"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:23.916443 2024-07-29 09:38:23.916456 914bf8e0-b37b-476c-b48b-4161cd4dbf01 {"pid": "7676", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02900294X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:24.011633 2024-07-29 09:38:24.011644 defa3176-38ac-4b8f-b51b-83eb38086865 {"pid": "7677", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02904197X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:24.103691 2024-07-29 09:38:24.103726 7d50f3aa-a75a-487a-ae03-fd409ea4c0c0 {"pid": "7678", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029042046"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:24.17553 2024-07-29 09:38:24.175533 2ffe8d0b-c084-49da-86c3-6acdf935b349 {"pid": "7679", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029042186"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:24.244173 2024-07-29 09:38:24.244181 ff7d8a49-3654-4716-82e5-ad2b17a4b0d3 {"pid": "7680", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02905026X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:24.32281 2024-07-29 09:38:24.322819 6d6b5884-0cd2-4be3-9955-7584b1255b35 {"pid": "7681", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029182387"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:24.417907 2024-07-29 09:38:24.417918 cd1ef0e5-3ab1-496d-bb95-e7f3e68ab399 {"pid": "7682", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029205794"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:24.507003 2024-07-29 09:38:24.507014 cce272cf-7fc8-4663-a3e6-83944e7e5bfa {"pid": "7683", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029342147"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:24.60245 2024-07-29 09:38:24.602458 cf5437a2-73f5-4181-92c7-35cd98369f24 {"pid": "7684", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029344212"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:24.696444 2024-07-29 09:38:24.696455 4bde3f9e-e9e1-4f86-ae5e-8f179acab17f {"pid": "7685", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029347254"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:24.795199 2024-07-29 09:38:24.79521 f8306172-4089-41e3-b2b2-ee893b921e4c {"pid": "7686", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029349230"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:24.888443 2024-07-29 09:38:24.888451 7fbac5bb-f8bd-4bf3-9f0b-c1d056577fb4 {"pid": "7687", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029404614"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:24.968702 2024-07-29 09:38:24.968711 fe92b5ae-db52-4da6-96ea-a211be5366fc {"pid": "7688", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029410312"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:25.049614 2024-07-29 09:38:25.049623 3d415a92-60eb-4ad8-9dd6-109de741fe58 {"pid": "7689", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029575168"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:25.135223 2024-07-29 09:38:25.135231 4c381831-1dd7-40b7-bd62-db0e6be67c6a {"pid": "7690", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029652308"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:25.20389 2024-07-29 09:38:25.203893 cb9c5596-6d43-4195-9d53-97cb9af90632 {"pid": "7691", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029726190"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:25.277096 2024-07-29 09:38:25.277105 c799ee46-914b-4d8f-85ed-9b3d65cafd0e {"pid": "7692", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029753090"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:25.361253 2024-07-29 09:38:25.361263 4a16efd1-7a4b-4c8e-8ba4-a2b0ab2b3c3e {"pid": "7693", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029755999"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:25.467978 2024-07-29 09:38:25.46799 5670ee51-4b8b-4b69-ae97-d7e37cb56e40 {"pid": "7694", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029795826"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:25.559761 2024-07-29 09:38:25.559773 bf98006b-a281-45a4-aad8-d21181abf7b4 {"pid": "7695", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029888026"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:25.649974 2024-07-29 09:38:25.649987 c1c01b52-1c87-494a-8c8c-6c1febe37524 {"pid": "7696", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029918006"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:25.739765 2024-07-29 09:38:25.739776 13798f70-c460-4b0a-af4c-afc20f7b156d {"pid": "7697", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029933730"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:25.834728 2024-07-29 09:38:25.83474 60426852-561d-42a6-adb3-33c52965419a {"pid": "7698", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029958857"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:25.932642 2024-07-29 09:38:25.932652 e1eb4976-b439-4eba-a2fa-c9288efb8d87 {"pid": "7699", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/03001235X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:26.033805 2024-07-29 09:38:26.033813 ba1b767e-df49-44c9-8a1e-b0449ca45f0a {"pid": "7700", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/030017653"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:26.121239 2024-07-29 09:38:26.121251 4cdc3fb9-e11e-4658-865a-9b511aaf5d11 {"pid": "7701", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/030055849"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:26.208897 2024-07-29 09:38:26.208902 32e2b6da-dbac-4adc-9480-3b7f51af1b46 {"pid": "7702", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/030086469"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:26.272267 2024-07-29 09:38:26.272273 3a09551e-cea6-4504-9144-533f57d2ed31 {"pid": "7703", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/030128145"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:26.360979 2024-07-29 09:38:26.360988 0543be6b-b2dd-41dc-8647-0412e4210f72 {"pid": "7704", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/03018729X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:26.452992 2024-07-29 09:38:26.453 929bf5ea-3fc3-4232-a43e-5a67f11923d3 {"pid": "7705", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/030219884"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:26.552897 2024-07-29 09:38:26.552907 64702ef0-8d9c-4d0f-8251-b35499598096 {"pid": "7706", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/030336880"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:26.661706 2024-07-29 09:38:26.661715 22771bec-3a46-4ad7-94e5-8a1b285ea88d {"pid": "7707", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/030423724"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:26.754153 2024-07-29 09:38:26.754165 93b002db-ea53-44a5-90ac-3db9b4e7c50c {"pid": "7708", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/030435056"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:26.847698 2024-07-29 09:38:26.847708 82883b88-a16d-4840-92eb-edb07ffc3b64 {"pid": "7709", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/030642841"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:26.946516 2024-07-29 09:38:26.946527 1238eb67-2728-4ba3-8f04-cea9667a0798 {"pid": "7710", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/030768381"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:27.041495 2024-07-29 09:38:27.041507 a672f8e9-fd72-4aec-bf85-1fb71f559b59 {"pid": "7711", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/03082401X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:27.139047 2024-07-29 09:38:27.139059 c859d773-d30e-47aa-a694-8ea817cc4eef {"pid": "7712", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/030904218"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:27.233491 2024-07-29 09:38:27.2335 56c70d90-bc3a-4c9e-ba92-ef8b037759a0 {"pid": "7713", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/030909120"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:27.307797 2024-07-29 09:38:27.307805 e242712e-1809-4e02-b9d5-02063ab2aa41 {"pid": "7714", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/030924987"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:27.400451 2024-07-29 09:38:27.40046 4f66c836-9a5b-4d52-8745-798c2993032d {"pid": "7715", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/030975689"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:27.484703 2024-07-29 09:38:27.484711 a0552ab9-8f2b-41fb-a8a9-74df44ca6a9a {"pid": "7716", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/031018866"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:27.56998 2024-07-29 09:38:27.569986 45940b7c-cd50-431d-8270-23fbf24b4d99 {"pid": "7717", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/031067956"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:27.656487 2024-07-29 09:38:27.656498 fb49034c-59e2-47f1-a531-ddb032b92cfd {"pid": "7718", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/031208495"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:27.744682 2024-07-29 09:38:27.744688 1cd0bdb0-302f-4a0e-ac9a-447e98420e91 {"pid": "7719", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/031380107"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:27.822341 2024-07-29 09:38:27.822351 67d4532c-f86e-43c4-94e6-0b91703054f3 {"pid": "7720", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/031531121"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:27.920936 2024-07-29 09:38:27.920947 72b76e16-42ce-4bf2-89e3-e00a4906310a {"pid": "7721", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/03166010X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:28.020449 2024-07-29 09:38:28.020462 488290a1-ed92-4318-ad4a-1feacc1776bc {"pid": "7722", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/031819877"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:28.116064 2024-07-29 09:38:28.116076 d04c7855-9552-41f5-a2fd-1ac3f587f424 {"pid": "7723", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/032027524"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:28.211763 2024-07-29 09:38:28.211775 10d4dce3-c4c0-42ff-92a5-c20697629758 {"pid": "7724", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/032184034"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:28.293274 2024-07-29 09:38:28.293277 b5efc113-754a-49c3-9ae9-6ff82d708179 {"pid": "7725", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/032317468"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:28.366533 2024-07-29 09:38:28.366542 b4b72964-1e3e-42a3-8497-c5828f2e55bf {"pid": "7726", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/032324650"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:28.45375 2024-07-29 09:38:28.453759 ac29b275-85d6-413d-b8a3-7af7be6baa70 {"pid": "7727", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/032324804"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:28.551703 2024-07-29 09:38:28.551715 9e4e5126-066d-4213-adb1-d3c212eb8c12 {"pid": "7728", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/032370474"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:28.711453 2024-07-29 09:38:28.711463 9a66cb8e-0744-4160-a45d-0bd324aa7f06 {"pid": "7729", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/03243782X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:28.808646 2024-07-29 09:38:28.808655 609d879a-97e7-48c9-b9f3-3b64bb8aa392 {"pid": "7730", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/032493940"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:28.903056 2024-07-29 09:38:28.903068 41fe785d-0dbd-4309-8278-8c926026fe2a {"pid": "7731", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/032506929"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:29.004222 2024-07-29 09:38:29.00423 fccb0945-5445-4300-a85d-4b9df52dce11 {"pid": "7732", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/03256953X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:29.088507 2024-07-29 09:38:29.088514 b9c845c2-2b34-4b03-a57f-fddbe3ee2ec5 {"pid": "7733", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/032675011"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:29.176966 2024-07-29 09:38:29.176972 f0b380db-24af-4624-a491-ac816b7a7f48 {"pid": "7734", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/032709501"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:29.267839 2024-07-29 09:38:29.26785 2160bb4c-8d7e-4546-8f9d-a26a07f3927c {"pid": "7735", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/032916078"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:29.3284 2024-07-29 09:38:29.328403 d484bef8-cf31-4d5d-b7f5-d74523c2a6ca {"pid": "7736", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/032978294"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:29.401943 2024-07-29 09:38:29.401953 194a8a82-2f3c-4af1-ae0f-7a742d591b5e {"pid": "7737", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/033125341"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:29.476697 2024-07-29 09:38:29.476706 70efa16d-e927-4135-84af-b16e13f73dc9 {"pid": "7738", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/033136831"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:29.56547 2024-07-29 09:38:29.565481 a942c1d9-ffb8-460f-8de7-423e8b64f47f {"pid": "7739", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/033422605"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:29.666618 2024-07-29 09:38:29.66663 24283a4e-b8db-4b85-9601-9a5aa1227cae {"pid": "7740", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/033433763"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:29.760046 2024-07-29 09:38:29.760054 1eaa6ddd-736f-4241-9328-d6da9715f8be {"pid": "7741", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/033642036"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:29.882434 2024-07-29 09:38:29.882445 4b314bed-2aef-4c27-bb56-7a00d5007ac9 {"pid": "7742", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/033738653"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:29.990883 2024-07-29 09:38:29.990892 3455da59-fe40-4713-9246-1ea9c0998522 {"pid": "7743", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/03374033X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:43.69377 2024-07-29 09:40:43.693778 9c0db42d-9d89-458c-a55c-65aa0123cc0c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040706079"}, "pid": "9243", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:30.236059 2024-07-29 09:38:30.236072 e3fc6aae-7009-469b-8123-c490b4a7030a {"pid": "7745", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/033895732"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:30.329862 2024-07-29 09:38:30.329867 5fc79fdd-88db-4e15-ab94-bba4fcb5cd98 {"pid": "7746", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034054693"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:30.397926 2024-07-29 09:38:30.397932 c0706fc3-8f24-4e0c-8856-a6c5ba9aec67 {"pid": "7747", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/03405491X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:30.487638 2024-07-29 09:38:30.487651 fb1e1bc1-8ce5-47a1-b75a-fd4bd59efcbe {"pid": "7748", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034133704"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:30.583224 2024-07-29 09:38:30.583231 4e86f18c-6b5f-4ceb-99b5-25128088e49a {"pid": "7749", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034195688"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:30.674339 2024-07-29 09:38:30.674351 9026ce07-7a03-432f-8dc9-1df7eb6d3173 {"pid": "7750", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034254145"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:30.774471 2024-07-29 09:38:30.774481 9c8f5279-ca80-4bf3-ab74-715946e4653a {"pid": "7751", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034259910"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:30.879423 2024-07-29 09:38:30.879433 4943f9cb-89c6-4eb3-a285-70cd77f7f448 {"pid": "7752", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034308695"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:30.98737 2024-07-29 09:38:30.98738 ed89c725-7a06-4c0f-ae35-fd998d73f4fb {"pid": "7753", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034342230"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:31.082762 2024-07-29 09:38:31.082772 754cc2eb-e323-4eda-a639-2712e9ec88ad {"pid": "7754", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034566228"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:31.175949 2024-07-29 09:38:31.175962 4c10dabe-de4d-4735-88b7-91db53c6aab8 {"pid": "7755", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034591966"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:31.263593 2024-07-29 09:38:31.263602 1c150312-c35d-40df-8117-0420add8d861 {"pid": "7756", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034623574"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:31.359419 2024-07-29 09:38:31.359427 a7d397b4-91b5-4364-86c2-33d02e6d82f9 {"pid": "7757", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034679391"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:31.419779 2024-07-29 09:38:31.419785 ef3f860e-ea22-4072-bd8d-e60abeaa2b27 {"pid": "7758", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034705384"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:31.493139 2024-07-29 09:38:31.493147 49633d3d-0d55-43ca-b176-d7692b8c32c1 {"pid": "7759", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/03472690X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:31.593773 2024-07-29 09:38:31.593784 e0e6a3ed-f784-42f3-91a8-2ca6d2b1f162 {"pid": "7760", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034766995"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:31.694538 2024-07-29 09:38:31.694545 da09fe1b-e507-46a0-837a-114824eb4520 {"pid": "7761", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034781897"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:31.798113 2024-07-29 09:38:31.798123 997eec88-9f86-49c2-88f2-d01d3553f56d {"pid": "7762", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034857923"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:31.904101 2024-07-29 09:38:31.90411 e439cd4e-edd2-4f19-8922-65d13f251997 {"pid": "7763", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034885420"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:31.995046 2024-07-29 09:38:31.995055 58a52cef-a03f-4b77-bc76-d51d6070a5ce {"pid": "7764", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034892710"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:32.089999 2024-07-29 09:38:32.09001 f77e1358-da92-4ec0-816e-b5fbea4409bf {"pid": "7765", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034960848"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:32.168643 2024-07-29 09:38:32.168651 53ae789b-cff8-4ccb-aefb-63977b387725 {"pid": "7766", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/035061308"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:32.241956 2024-07-29 09:38:32.241964 1fda56d9-af15-481b-bbfa-0d65f05c082c {"pid": "7767", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/035095679"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:32.337483 2024-07-29 09:38:32.337486 22095b02-c84b-4971-bae2-6ae7bd002c28 {"pid": "7768", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/035167734"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:32.410592 2024-07-29 09:38:32.410594 6186ed71-edf6-4d59-8b58-c7d1e3e0d0e9 {"pid": "7769", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/035198222"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:32.468866 2024-07-29 09:38:32.468874 972212ba-9a30-490d-88a8-c46376dbcbb5 {"pid": "7770", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/035260521"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:32.561305 2024-07-29 09:38:32.561314 3681c590-2dad-4273-bf33-7e553f31ddef {"pid": "7771", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/035461152"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:32.654022 2024-07-29 09:38:32.654034 894530b5-7186-49d0-b43e-4ff5a565fb7e {"pid": "7772", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/035486686"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:32.751715 2024-07-29 09:38:32.751724 687f7bca-a75a-4ba4-b895-4f54b2f2f3cc {"pid": "7773", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/035527250"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:32.842302 2024-07-29 09:38:32.842314 936953f8-258c-43eb-b555-ef8e8e11a30a {"pid": "7774", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/035621664"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:32.934171 2024-07-29 09:38:32.934179 76cb02de-c4ea-4c56-8a36-30e3857ae44e {"pid": "7775", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/035634847"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:33.022915 2024-07-29 09:38:33.022924 5c3fc198-0f42-40c1-9a3c-11418fe982bd {"pid": "7776", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/035650532"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:33.125758 2024-07-29 09:38:33.12577 9d614491-8262-43d5-875d-9902e70cec3c {"pid": "7777", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/035658622"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:33.215338 2024-07-29 09:38:33.21535 6c7fadc7-6ba9-4d19-b87e-d39a33a852d5 {"pid": "7778", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/035724099"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:33.30896 2024-07-29 09:38:33.308971 bc175bfb-0c33-4608-8553-e59b1de4ce1f {"pid": "7779", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/050124315"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:33.40238 2024-07-29 09:38:33.402389 2d4340ec-088f-418d-aeb3-68aeaa20e38e {"pid": "7780", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/050186647"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:33.47473 2024-07-29 09:38:33.474737 a56d5590-df0b-4325-9f03-e5d67a77d45e {"pid": "7781", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/050220284"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:33.559801 2024-07-29 09:38:33.55981 add195a8-85a6-40ab-9c27-c316f0d8b3e9 {"pid": "7782", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/050366157"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:33.654179 2024-07-29 09:38:33.65419 ff8073b2-931c-4348-bfdd-3bd991684752 {"pid": "7783", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/05041870X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:33.751286 2024-07-29 09:38:33.751292 fb8f6102-d856-4ebc-8b7f-0e3c5b681eb7 {"pid": "7784", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/050516760"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:33.837025 2024-07-29 09:38:33.837035 346447e0-8343-40fc-92f6-dc5c9d9e0ac1 {"pid": "7785", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/050518526"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:33.926437 2024-07-29 09:38:33.926444 99a82351-08c6-4bda-afa8-eaf107915d8f {"pid": "7786", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/050534882"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:34.008166 2024-07-29 09:38:34.008174 3f003001-f980-4f36-a83a-923439afd6a1 {"pid": "7787", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/05056479X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:34.097743 2024-07-29 09:38:34.097756 2a5bb27e-3ad5-4e62-a6ba-723906e030f1 {"pid": "7788", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/050582453"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:34.199484 2024-07-29 09:38:34.199495 cc767739-658e-4b29-8e63-ee37b1deff40 {"pid": "7789", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/050602195"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:34.284002 2024-07-29 09:38:34.28401 b9ca0052-6770-4026-9f71-8dd06c6f1421 {"pid": "7790", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/050627953"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:34.358159 2024-07-29 09:38:34.358169 baa0665f-9719-4219-85c3-a052c1f03ea4 {"pid": "7791", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/050702858"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:34.438569 2024-07-29 09:38:34.438577 b3c979dd-3ee2-4941-87b2-92649a47ade7 {"pid": "7792", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/050764861"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:34.49881 2024-07-29 09:38:34.49882 9e1b229d-5bf2-4eed-b2e5-805abc8a18e0 {"pid": "7793", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/050773313"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:34.573492 2024-07-29 09:38:34.573501 f542da35-ef60-4601-9553-7a3126c4d590 {"pid": "7794", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/050784005"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:34.661058 2024-07-29 09:38:34.661068 bd54a8ea-590d-43b8-8f71-846051712d48 {"pid": "7795", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/050808583"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:34.754967 2024-07-29 09:38:34.754978 11198373-2568-4578-93bf-2b4c3c3226e0 {"pid": "7796", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/050827405"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:34.846902 2024-07-29 09:38:34.846915 a4f14e0c-318e-47d6-9d6d-67edf00c2a50 {"pid": "7797", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/052587207"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:34.940076 2024-07-29 09:38:34.940087 8ba0686f-99c4-4920-9733-0ab1c156b314 {"pid": "7798", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/052634833"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:35.032264 2024-07-29 09:38:35.032276 194b2165-ffa1-4917-8871-c26b74469221 {"pid": "7799", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/053469844"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:35.130349 2024-07-29 09:38:35.13036 07f755e0-fcd2-44e6-bbeb-6033f8421d6a {"pid": "7800", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/055308600"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:35.227456 2024-07-29 09:38:35.227467 5a6a4bfd-dadf-47e4-8d71-051ba232c6e0 {"pid": "7801", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/059302208"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:35.321446 2024-07-29 09:38:35.321452 b9ac5fe1-8bca-4318-b95b-46f0e37753d0 {"pid": "7802", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/05930278X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:35.423235 2024-07-29 09:38:35.423247 621d7e49-1c9b-4927-af20-7c9bb1a3447c {"pid": "7803", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/059307374"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:35.496974 2024-07-29 09:38:35.496976 86f50329-ad40-4ebc-b01e-12e5b6977974 {"pid": "7804", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/06082929X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:35.551101 2024-07-29 09:38:35.551109 35b88a18-df3a-4621-adf6-76a178ae2547 {"pid": "7805", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/06160738X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:35.631285 2024-07-29 09:38:35.631295 7fbd36b1-e6fe-4d88-b93b-ab7a0968b077 {"pid": "7806", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/075000504"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:35.726837 2024-07-29 09:38:35.726846 dd145dce-8d7e-4093-b2db-897ced8db133 {"pid": "7807", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/077057589"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:35.816408 2024-07-29 09:38:35.816416 a2ee6a00-6621-487f-a224-31e0cb173ebe {"pid": "7808", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/077060377"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:35.903031 2024-07-29 09:38:35.903038 eca91fff-b39e-4f37-a1cb-c12684b604f8 {"pid": "7809", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/077062809"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:35.992319 2024-07-29 09:38:35.99233 a02e4dfc-4fe5-4157-a68d-5db77a7c90cf {"pid": "7810", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/077075757"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:36.08262 2024-07-29 09:38:36.082633 bdb02544-b264-46ae-b6fd-0bef07d22331 {"pid": "7811", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/077088883"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:36.180976 2024-07-29 09:38:36.180989 4527df55-5e40-4862-aec4-2230f2bd07fa {"pid": "7812", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/077091035"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:36.267184 2024-07-29 09:38:36.267194 1c6ade17-ae19-461a-9a08-0771109339bd {"pid": "7813", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/077397827"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:36.362858 2024-07-29 09:38:36.362871 9107d416-9740-45f6-9f7e-64f724899657 {"pid": "7814", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/077937007"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:36.467924 2024-07-29 09:38:36.467932 6aff91a3-22f9-44a0-b752-c768d85f5d26 {"pid": "7815", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/078974089"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:36.540789 2024-07-29 09:38:36.540797 baeedb6d-fe8d-405f-bff2-aef9d1c1bb5a {"pid": "7816", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/079180043"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:36.616125 2024-07-29 09:38:36.616133 b62bbd8c-8da1-4988-846e-9573e0c1517b {"pid": "7817", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/081665660"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:36.705135 2024-07-29 09:38:36.705143 e0476ca0-19f7-409b-a92b-8eb0b1757074 {"pid": "7818", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/083421467"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:36.846298 2024-07-29 09:38:36.846305 844c3f3c-ae5e-4da7-8e00-4fe3b6bc66a9 {"pid": "7819", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/083972684"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:36.938879 2024-07-29 09:38:36.938889 8e227746-c0d6-4540-816d-97e779619c75 {"pid": "7820", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/08523611X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:37.026311 2024-07-29 09:38:37.02632 e57295bc-c803-48f2-b3e4-76ed5908ebf7 {"pid": "7821", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/087834979"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:37.114257 2024-07-29 09:38:37.114265 72b9ac6f-4730-4458-a4d5-e8d3174aabd9 {"pid": "7822", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/087960621"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:37.209349 2024-07-29 09:38:37.20936 a92f0cc8-b642-4ca8-8603-6db4e95838ef {"pid": "7823", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/092468594"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:37.307039 2024-07-29 09:38:37.307052 e59f2048-3211-4b88-9772-6ed6c5233469 {"pid": "7824", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/092468950"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:37.403341 2024-07-29 09:38:37.403349 35b8aee5-9418-49de-98b6-6a1205246928 {"pid": "7825", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/101481071"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:37.498393 2024-07-29 09:38:37.498403 63e7a236-bf36-4a0d-a5f2-8df1d14a0186 {"pid": "7826", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/110905687"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:37.568321 2024-07-29 09:38:37.568327 e64a8ef0-6ad4-47b3-a14a-df26c85fbbee {"pid": "7827", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/111597153"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:37.640609 2024-07-29 09:38:37.640618 e86461f2-c125-497d-ae58-7139a96551d8 {"pid": "7828", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/112539750"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:37.727574 2024-07-29 09:38:37.727586 34d29f11-fc7d-44b4-9e23-895cfc4218fb {"pid": "7829", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/115898840"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:37.823614 2024-07-29 09:38:37.823624 513c9f74-3a01-4590-922e-4bb78a2487e5 {"pid": "7830", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/118419722"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:37.924663 2024-07-29 09:38:37.924672 f1a3bbfd-7aaf-4855-90c9-b032d3854a05 {"pid": "7831", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/118420763"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:38.01596 2024-07-29 09:38:38.01597 d2757c43-208d-4e69-8391-01adbfd671e4 {"pid": "7832", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/11948949X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:38.114251 2024-07-29 09:38:38.114259 0ad4312a-b705-4b56-8b60-ff9490e1a7b7 {"pid": "7833", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/120299658"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:38.208013 2024-07-29 09:38:38.208025 f9052806-f7b0-4831-a268-5499e548b7b5 {"pid": "7834", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/12059353X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:38.29847 2024-07-29 09:38:38.298479 dfb1967b-cf47-4449-98bc-3300806ee804 {"pid": "7835", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/122348486"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:38.406398 2024-07-29 09:38:38.406409 56016ea1-f164-4147-b57e-1400ab4addbc {"pid": "7836", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/122348877"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:38.497639 2024-07-29 09:38:38.49765 18afbfdb-5e09-4811-a88e-2957fe044d11 {"pid": "7837", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/122957032"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:38.572789 2024-07-29 09:38:38.572792 067b406d-daf3-4bf6-8e19-a0f5210ad841 {"pid": "7838", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/123472466"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:38.628406 2024-07-29 09:38:38.628413 818a564a-8dba-4e8e-a859-deda66b5ec3a {"pid": "7839", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/124452248"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:38.706187 2024-07-29 09:38:38.706196 4dce0451-4e09-4ff7-8cf0-62fab27a718b {"pid": "7840", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/129822051"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:38.796908 2024-07-29 09:38:38.79692 302bff85-4c37-40e7-bb33-a8a535af60cb {"pid": "7841", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/130683035"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:38.897978 2024-07-29 09:38:38.897984 530cd234-c096-4c70-ab78-c0a4a116a10c {"pid": "7842", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/13073019X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:39.004198 2024-07-29 09:38:39.004208 73c5fa87-a07c-4390-ac2c-7fa220a1e5a7 {"pid": "7843", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/131981226"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:39.101332 2024-07-29 09:38:39.101342 561b94d6-31b6-489a-bcce-c5751ad09e3a {"pid": "7844", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/132211378"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:39.197803 2024-07-29 09:38:39.197815 53f77a84-1475-498a-9312-cc045f7c3c12 {"pid": "7845", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/133566129"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:39.289032 2024-07-29 09:38:39.289044 0a9dd106-ef39-4cb4-9a02-d60f13a18441 {"pid": "7846", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/135615003"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:39.382792 2024-07-29 09:38:39.382803 0c4045b9-de5b-45af-88e9-4f962871789b {"pid": "7847", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/136707165"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:39.477378 2024-07-29 09:38:39.477386 8ac8bcc9-0980-4c65-b13d-d89ab4a68b1e {"pid": "7848", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/13776541X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:39.572538 2024-07-29 09:38:39.572548 cb2e2207-bef7-4558-af39-2ac3da1a3cd6 {"pid": "7849", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/137978685"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:39.641746 2024-07-29 09:38:39.641753 08a38cba-744c-416f-a769-0f26eaca1586 {"pid": "7850", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/139100857"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:39.720732 2024-07-29 09:38:39.720744 5c8c4e5d-c611-4940-874d-9f10a8cf73b7 {"pid": "7851", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/142761583"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:43.797559 2024-07-29 09:40:43.797568 a5679714-742d-422e-9a3d-1ff63ce62574 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040705846"}, "pid": "9244", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:39.893151 2024-07-29 09:38:39.89316 5098badb-9182-4dfa-9620-3b069303358e {"pid": "7853", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/145035468"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:39.985639 2024-07-29 09:38:39.985648 8adcf4bd-9f2e-4631-8a8e-9ee65576f490 {"pid": "7854", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/145909093"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:40.086448 2024-07-29 09:38:40.08646 7cd0371f-963b-4964-810a-cd820f9dffef {"pid": "7855", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/146923081"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:40.188546 2024-07-29 09:38:40.188556 a85f3341-eb1f-4519-8ffe-383998b9b32d {"pid": "7856", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/147286433"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:40.286865 2024-07-29 09:38:40.286877 b694c47d-d6b9-44d9-909a-7840fcf1dc19 {"pid": "7857", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/148541372"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:40.383517 2024-07-29 09:38:40.383528 785230a4-d7e4-4755-af70-3cb3e8679ea9 {"pid": "7858", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/148542182"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:40.470176 2024-07-29 09:38:40.470185 0143f818-f6fc-4c36-a8f9-da68df07d0b7 {"pid": "7859", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/151385432"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:40.55042 2024-07-29 09:38:40.550428 7d4889de-e5a6-4380-a6db-39feec21b920 {"pid": "7860", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/15212201X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:40.62423 2024-07-29 09:38:40.624233 cd742efc-e33f-4c0a-871a-50b0f71407b1 {"pid": "7861", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/15909545X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:40.682352 2024-07-29 09:38:40.682359 3ce00126-5af1-44ee-8dd7-1bf27f90788f {"pid": "7862", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/167934813"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:40.75681 2024-07-29 09:38:40.756818 f8214b45-6201-4f00-8bfc-5be67cb08a33 {"pid": "7863", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/168476010"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:40.846303 2024-07-29 09:38:40.846315 c21b0602-0224-4ff4-9def-92768058fd4e {"pid": "7864", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/169910733"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:40.945051 2024-07-29 09:38:40.945063 8ce9647f-b51d-4b96-a858-6a1642e1eb0b {"pid": "7865", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/17129226X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:41.035779 2024-07-29 09:38:41.03579 b7296305-8d8d-48a2-929c-f6e6013b6fa0 {"pid": "7866", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/17523308X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:41.131965 2024-07-29 09:38:41.131973 c145c050-a7ed-4b3f-90f1-00b110880442 {"pid": "7867", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/17939360X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:41.223426 2024-07-29 09:38:41.223438 04ad0c8c-78ed-4a2e-874a-a7177d3f0f7c {"pid": "7868", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/180214845"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:41.313911 2024-07-29 09:38:41.313918 2b4e4736-6941-4af7-a010-ed5efa876b33 {"pid": "7869", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/180214926"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:41.401214 2024-07-29 09:38:41.401224 41bdb6aa-fd30-4045-b806-87c133efc349 {"pid": "7870", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/18028505X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:41.499628 2024-07-29 09:38:41.499639 83a91e22-74c0-490d-84f4-f4138e05caeb {"pid": "7871", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/181882604"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:41.596674 2024-07-29 09:38:41.596683 43784209-cb69-4157-ac40-d38912ed85e7 {"pid": "7872", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/182446174"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:41.670083 2024-07-29 09:38:41.670085 05853767-9ca2-42ee-989a-f68bae4aa38e {"pid": "7873", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/183790936"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:41.747834 2024-07-29 09:38:41.747843 5cef19b9-e349-4ac7-b04f-b3ba1a05857a {"pid": "7874", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/183791428"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:41.844465 2024-07-29 09:38:41.844476 f8602b2e-627b-4c40-8739-7b036d94fa6d {"pid": "7875", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/184625807"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:41.944565 2024-07-29 09:38:41.944574 feb75920-8ba2-4789-ab34-d6aa1396c213 {"pid": "7876", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/185018440"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:42.038184 2024-07-29 09:38:42.038194 8b177788-458c-4a2a-a77f-790169f3c196 {"pid": "7877", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/187082324"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:42.134511 2024-07-29 09:38:42.134524 89d05cfa-93b3-4928-86c0-c73af054d973 {"pid": "7878", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/190795786"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:42.233418 2024-07-29 09:38:42.233428 93af6df2-2572-4bbf-9c89-0d3bca574325 {"pid": "7879", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/190994320"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:42.330005 2024-07-29 09:38:42.330018 4f2e7f57-6855-45af-b48a-ed2a6cdc3732 {"pid": "7880", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/193304104"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:42.426933 2024-07-29 09:38:42.426943 7ecf3eae-b3bd-4004-91fe-bbbb52b4e4e7 {"pid": "7881", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/193617668"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:42.518038 2024-07-29 09:38:42.518047 228d2439-3e59-45d4-b1f1-18f7ee7cf505 {"pid": "7882", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/196951763"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:42.605951 2024-07-29 09:38:42.605957 12faecce-8ffb-4745-829c-eec4928ff15b {"pid": "7883", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/197956653"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:42.678367 2024-07-29 09:38:42.67837 a5b3062d-81cb-4fdd-ac3e-e634d2314736 {"pid": "7884", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/197957358"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:42.74371 2024-07-29 09:38:42.743718 3203a43d-396c-44f8-b40a-b0c0521622f8 {"pid": "7885", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/199344019"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:42.83525 2024-07-29 09:38:42.835262 f145fa7f-4405-4181-8f4f-5c1a98248e7e {"pid": "7886", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/199344248"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:42.932004 2024-07-29 09:38:42.932011 136c7396-7369-404a-866a-b60824afe6c2 {"pid": "7887", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/200582038"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:43.025529 2024-07-29 09:38:43.025539 a0ec4936-d316-437c-b00c-41e955e89df7 {"pid": "7888", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/200884530"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:43.122775 2024-07-29 09:38:43.122787 5734ee5c-54f2-4f93-943a-6a7d9dda63e8 {"pid": "7889", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/204008557"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:43.216401 2024-07-29 09:38:43.216409 1829cc0f-cbca-4c9d-ab85-67667a98f753 {"pid": "7890", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/219951152"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:43.310003 2024-07-29 09:38:43.310037 3cc8ec32-ba49-4ec1-99b3-4cf04596a91a {"pid": "7891", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/219966540"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:43.396321 2024-07-29 09:38:43.396328 f7b3c852-5f07-4b5c-9039-5d905e2b56e3 {"pid": "7892", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/223495913"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:43.485288 2024-07-29 09:38:43.485299 1bb5dd93-8605-4f81-8f44-6e162b5d077a {"pid": "7893", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/223831840"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:43.569003 2024-07-29 09:38:43.569015 3e0eaea6-6d69-4c57-9018-e3abc96596f0 {"pid": "7894", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/225382520"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:43.662132 2024-07-29 09:38:43.662142 52703727-5e90-464c-835d-e7a91062fe35 {"pid": "7895", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/227367677"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:43.730565 2024-07-29 09:38:43.730569 176dd232-2e4f-4d22-9e48-aa7c894d3008 {"pid": "7896", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/227858689"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:43.797199 2024-07-29 09:38:43.797206 7a61b964-2cbb-4ba3-9d11-d27ae2c6f312 {"pid": "7897", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/228803608"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:43.89088 2024-07-29 09:38:43.890886 f60ccb9f-4962-4007-bc80-fd5aa9db336d {"pid": "7898", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/232818665"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:43.977064 2024-07-29 09:38:43.977072 465460fa-8581-450d-94ea-76612ae4852a {"pid": "7899", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/234183721"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:44.07191 2024-07-29 09:38:44.071921 beac5898-8a82-49e5-a780-5665e6e2f562 {"pid": "7900", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/236280147"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:44.167118 2024-07-29 09:38:44.167126 e5757ee4-b7e4-481a-8c31-72018993004e {"pid": "7901", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/26110683X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:44.250963 2024-07-29 09:38:44.250974 23b957f6-9107-4079-b5ae-ae4945692e33 {"pid": "7902", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/261107119"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:44.339561 2024-07-29 09:38:44.33957 07b4b1e6-0b95-4e3f-b5aa-b8697e671a30 {"pid": "7903", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/261901915"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:44.434527 2024-07-29 09:38:44.434537 fee00387-b228-4dad-8bb8-aaa44e6ea568 {"pid": "7904", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263499758"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:44.519357 2024-07-29 09:38:44.519364 8aa8bb44-e314-41a5-b412-76096894f992 {"pid": "7905", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/264222423"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:44.615087 2024-07-29 09:38:44.615095 e4f482e1-4053-4cd0-9a8a-65985c922520 {"pid": "7906", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/264325974"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:44.711449 2024-07-29 09:38:44.711567 a4109660-75d8-490c-a868-f586721e0037 {"pid": "7907", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/264387414"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:44.770706 2024-07-29 09:38:44.770712 a01de896-e271-4a0d-8fc2-2b6cad6a14a1 {"pid": "7908", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/264387538"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:44.843477 2024-07-29 09:38:44.843486 c5042c83-3fd0-4b0c-9553-e827208fb1c0 {"pid": "7909", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/26438833X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:44.930219 2024-07-29 09:38:44.930228 efa86545-26d1-4c12-92b4-f5f2e80e2f39 {"pid": "7910", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/271981423"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:45.015724 2024-07-29 09:38:45.015731 b76974d7-b31c-42d9-86fc-400e3f59779e {"pid": "7911", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/27874690X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:45.097188 2024-07-29 09:38:45.097196 89b056b8-594e-47bb-8971-37846e565c6b {"pid": "7912", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278746969"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:45.178481 2024-07-29 09:38:45.178493 90e6807a-e4b8-4103-b5a2-ec82d8c40a8f {"pid": "7913", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278746985"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:45.272418 2024-07-29 09:38:45.272424 3ea3db7a-d544-47b0-a180-2037b9b28103 {"pid": "7914", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278746993"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:45.362126 2024-07-29 09:38:45.362133 dd1dd7e1-5f45-4216-8a52-af1ccb24cfbf {"pid": "7915", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747000"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:45.445511 2024-07-29 09:38:45.44552 c318b023-d800-40da-a2f2-dc27ae08f0d8 {"pid": "7916", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747019"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:45.546889 2024-07-29 09:38:45.546899 cd04ccab-25f0-4547-8095-fa8554577ca8 {"pid": "7917", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747043"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:45.639921 2024-07-29 09:38:45.63993 9a84aded-f6b0-466c-b96b-a61d8d6b3cf6 {"pid": "7918", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747167"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:45.732917 2024-07-29 09:38:45.732925 0a29ed71-6793-4556-a307-28b93ee88872 {"pid": "7919", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747175"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:45.799115 2024-07-29 09:38:45.799122 3eb370f0-894c-4fa2-a7da-c83de772eed4 {"pid": "7920", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747183"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:45.8739 2024-07-29 09:38:45.87391 0ad24e7a-5807-40d0-8949-b12b21ad3750 {"pid": "7921", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747191"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:45.967387 2024-07-29 09:38:45.967397 84bed058-0308-4582-b9d0-40298ad70825 {"pid": "7922", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/27874723X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:46.057023 2024-07-29 09:38:46.057031 9d785cb4-7015-4c39-a5f0-42dc71003143 {"pid": "7923", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747280"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:46.14457 2024-07-29 09:38:46.144578 5be6b200-bdfa-40e7-9691-ed58617b6046 {"pid": "7924", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747329"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:46.238689 2024-07-29 09:38:46.238698 d651a6bf-5ce9-453d-a737-25530354052d {"pid": "7925", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279034725"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:46.32969 2024-07-29 09:38:46.329699 e2f6865e-1c44-4626-8f20-c485fec98482 {"pid": "7926", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279034733"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:46.420783 2024-07-29 09:38:46.420791 dfe6e1f4-1955-4553-abf9-ded340ff4f83 {"pid": "7927", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279034741"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:46.512665 2024-07-29 09:38:46.512676 ac9c331f-ced1-45fa-9b3d-9c2fbcdd3a97 {"pid": "7928", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/27903475X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:46.602805 2024-07-29 09:38:46.602814 95d9ff0a-e501-4867-8210-b83f26afe6f7 {"pid": "7929", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279034806"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:46.692515 2024-07-29 09:38:46.692525 f0338f87-ea28-4e2c-abbb-04fb7a3f379c {"pid": "7930", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279034814"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:46.782622 2024-07-29 09:38:46.782629 4b634e9c-913c-4cad-9325-8896cd28e914 {"pid": "7931", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279034822"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:46.847009 2024-07-29 09:38:46.847017 d26c7be5-0f6a-497b-b45d-2059d9f33ef2 {"pid": "7932", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279034849"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:46.916478 2024-07-29 09:38:46.916486 eb7e22b3-a99d-41a9-99dd-80645db4aff5 {"pid": "7933", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279034881"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:46.990867 2024-07-29 09:38:46.990877 e97338d6-e1ce-49e0-b151-c5179230e622 {"pid": "7934", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/27903492X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:47.08051 2024-07-29 09:38:47.080521 096fcc4a-b7e3-41a6-aec2-ffb327f37da0 {"pid": "7935", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279034946"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:47.184261 2024-07-29 09:38:47.184273 f8c08520-a95e-4902-9ce2-18c6eb1a3002 {"pid": "7936", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279034962"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:47.286638 2024-07-29 09:38:47.28665 b777ae7a-c700-43b3-a2c8-a923a4069566 {"pid": "7937", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279034970"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:47.387041 2024-07-29 09:38:47.387052 ae1b4c27-e7bc-4aee-abe1-cb336f3d208b {"pid": "7938", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279034997"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:47.471787 2024-07-29 09:38:47.471795 321037f6-866a-4441-8197-02c44d6fddb6 {"pid": "7939", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279035020"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:47.558122 2024-07-29 09:38:47.558131 404568d9-cb58-4342-bc50-7e4694eca2e6 {"pid": "7940", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279035063"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:47.640565 2024-07-29 09:38:47.640576 e3246b34-6c02-4b46-a0af-fbeef1a1ec11 {"pid": "7941", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279035071"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:47.735664 2024-07-29 09:38:47.735673 640c652e-5400-4013-8eaa-dbb41bef6445 {"pid": "7942", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/27903508X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:47.818329 2024-07-29 09:38:47.818332 b97c589d-0abe-4159-b5bd-e159d47c5cc2 {"pid": "7943", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279035098"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:47.882226 2024-07-29 09:38:47.882235 ed659835-5dd6-480d-8bce-b1e3aefa8ef9 {"pid": "7944", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279035101"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:47.969135 2024-07-29 09:38:47.969138 79b23144-543d-4b86-83df-7d38085bd7d4 {"pid": "7945", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279035144"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:48.054379 2024-07-29 09:38:48.054387 feefeaf1-962a-4e16-9be3-2d73509fff05 {"pid": "7946", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279035241"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:48.146047 2024-07-29 09:38:48.146058 7954eb86-9c38-412b-b109-1c45c2ebaf27 {"pid": "7947", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027233960"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:48.237059 2024-07-29 09:38:48.237069 5ef06eaa-6b41-400a-8686-c3a606bd0539 {"pid": "7948", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027238431"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:48.325589 2024-07-29 09:38:48.325599 cf6c07cd-3144-43be-9844-24c0165ca120 {"pid": "7949", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027248720"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:48.427014 2024-07-29 09:38:48.427025 b5a811a1-64ff-4435-bc29-e38f41b4cb93 {"pid": "7950", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027255522"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:48.527327 2024-07-29 09:38:48.527335 f7ade95b-00d2-4113-85db-8bb7ed387fa4 {"pid": "7951", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027258556"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:48.622545 2024-07-29 09:38:48.622555 58ca1c6b-ff41-4d7c-9a40-69f650922a49 {"pid": "7952", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027266273"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:48.715829 2024-07-29 09:38:48.715841 a502a737-a15c-479e-8f68-3d632323cf63 {"pid": "7953", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027314073"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:48.816981 2024-07-29 09:38:48.816993 e70b288b-a0b1-4f7a-bca9-1eb498869812 {"pid": "7954", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027361705"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:48.891753 2024-07-29 09:38:48.891759 8929b4c8-7473-4d8d-bd87-ffcb793a31ea {"pid": "7955", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027390349"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:48.969061 2024-07-29 09:38:48.969069 d08c2087-6686-46a9-bcf8-23c02bb64c56 {"pid": "7956", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02741664X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:49.052874 2024-07-29 09:38:49.05288 0ae51bfa-5e3b-442f-bbd6-602fd0e353aa {"pid": "7957", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027802973"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:49.129182 2024-07-29 09:38:49.129191 d1c5bd7a-0c40-4a6d-9736-cc994df8d68b {"pid": "7958", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027824586"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:49.214737 2024-07-29 09:38:49.214749 57d9825a-aaa2-4980-b19a-5dc883fefd4a {"pid": "7959", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027855929"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:49.307455 2024-07-29 09:38:49.307466 22683493-3eec-4c91-9a4a-4047d0584ef9 {"pid": "7960", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028205847"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:49.401384 2024-07-29 09:38:49.401393 2ead3029-1b52-4f5b-b003-d43d65fa2491 {"pid": "7961", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028221044"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:49.48644 2024-07-29 09:38:49.486452 4cd7c9af-4710-40e8-a932-dcad3feaba80 {"pid": "7962", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028889347"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:49.58284 2024-07-29 09:38:49.582849 e285c034-3f20-49b8-bc3b-e980c97c7b7e {"pid": "7963", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028938615"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:49.675416 2024-07-29 09:38:49.675423 5a29bdd3-8d50-4cd2-b517-6ddf8092a542 {"pid": "7964", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/031082599"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:49.778891 2024-07-29 09:38:49.778902 2c91045d-4ca1-4bcf-b784-6daf7f0e0627 {"pid": "7965", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/031955274"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:49.870354 2024-07-29 09:38:49.870357 4b12df11-0daf-4fd8-bd48-325f939e0917 {"pid": "7966", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/03465500X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:49.929824 2024-07-29 09:38:49.929832 63aeb3ac-bcba-423f-b31e-d5485141d408 {"pid": "7967", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/035141913"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:50.019351 2024-07-29 09:38:50.019363 ab111e13-c6ae-4caf-8ad9-a5a6031e18e0 {"pid": "7968", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/05058748X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:50.112576 2024-07-29 09:38:50.112586 374465df-af8e-42ab-a2d6-eb22c4f43d01 {"pid": "7969", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/061612820"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:50.209988 2024-07-29 09:38:50.209996 190d4e59-509c-4339-971e-52f6875dc3eb {"pid": "7970", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/127977996"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:50.292963 2024-07-29 09:38:50.292973 e6d6cdcc-a4f5-433f-8e19-40df6ab952c9 {"pid": "7971", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/131462415"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:50.388333 2024-07-29 09:38:50.388344 9e0c5c4f-5ae7-4755-b00d-83d069c990a6 {"pid": "7972", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/144331373"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:50.483231 2024-07-29 09:38:50.483241 770195cf-f4ba-4164-bb0a-48b982196fcb {"pid": "7973", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/180213911"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:50.569082 2024-07-29 09:38:50.569094 cdb3d5ce-8ac2-470b-bc55-741f36a3bbe6 {"pid": "7974", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/181492628"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:50.664049 2024-07-29 09:38:50.664056 32c196d0-0ccd-44ba-8aae-e98b72aef785 {"pid": "7975", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/273372734"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:50.756681 2024-07-29 09:38:50.756689 4e8040f8-2af7-4092-869d-26c3a2bf5ecc {"pid": "7976", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/273372742"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:50.850567 2024-07-29 09:38:50.850574 d9ffa5c0-42a8-465b-a0be-3c7494c248a7 {"pid": "7977", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/273372750"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:50.924141 2024-07-29 09:38:50.924144 8b4c300b-9f10-4eeb-b248-fffca41cbc75 {"pid": "7978", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/273372777"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:50.992709 2024-07-29 09:38:50.992716 a8dddcb6-6a3d-4707-8cff-a9e6cb4ed516 {"pid": "7979", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/273372785"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:51.064068 2024-07-29 09:38:51.064076 685590e2-9c0d-4f77-ae6c-1f69c209b135 {"pid": "7980", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/277418216"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:51.152392 2024-07-29 09:38:51.152399 4139a34f-9842-4b07-a774-9eb908307d92 {"pid": "7981", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279035152"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:51.247489 2024-07-29 09:38:51.247501 f313b005-10c6-4f8b-8cee-5c9b4b36d8da {"pid": "7982", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279035160"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:51.344655 2024-07-29 09:38:51.344666 2c326460-02b0-4122-a222-1399dd7edff5 {"pid": "7983", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279035179"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:51.440692 2024-07-29 09:38:51.440703 733357e3-3c64-4e37-8d36-f93658f2bef1 {"pid": "7984", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279035187"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:51.536432 2024-07-29 09:38:51.536439 8ac7ef26-42e9-4307-9efa-172bcf77af27 {"pid": "7985", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307322"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:51.627332 2024-07-29 09:38:51.627345 ca57d182-16a0-4ef7-85b7-ef9ab078332e {"pid": "7986", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307330"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:51.725585 2024-07-29 09:38:51.725596 3b772a4a-3541-45ef-9586-2b692265d85f {"pid": "7987", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307349"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:51.823064 2024-07-29 09:38:51.823076 6ae6c4f2-49a6-48f2-9e41-159a73bd3b45 {"pid": "7988", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307357"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:51.924419 2024-07-29 09:38:51.92443 ca515a5d-a1b2-4301-b3d4-7bcbd978acea {"pid": "7989", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307365"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:51.987923 2024-07-29 09:38:51.98793 30418679-a553-4de8-9333-5cdd100912ee {"pid": "7990", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307373"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:52.05727 2024-07-29 09:38:52.057278 84b88274-c4d4-4223-a11f-12f2e20b8273 {"pid": "7991", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307462"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:52.141619 2024-07-29 09:38:52.141629 f65730b8-edd6-45cf-be22-0a1045b7be5f {"pid": "7992", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307470"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:52.233807 2024-07-29 09:38:52.233816 d8a59f56-c0ee-4b35-8b10-9227e8c86cc7 {"pid": "7993", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307519"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:52.323151 2024-07-29 09:38:52.323162 1844f5d0-157e-4a41-9acf-80c67e798580 {"pid": "7994", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307535"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:52.418577 2024-07-29 09:38:52.418585 edc8c5a5-f5b5-4f8e-9149-c5c20d6b81f8 {"pid": "7995", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/27930756X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:52.514108 2024-07-29 09:38:52.514119 71820b05-3399-46e1-b093-543b6cb7c286 {"pid": "7996", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307578"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:52.613289 2024-07-29 09:38:52.613298 c6ffbc20-2132-4511-8e82-af1b3a124533 {"pid": "7997", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307586"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:52.709296 2024-07-29 09:38:52.709306 80458074-0759-48b3-b061-11de3ad02ec8 {"pid": "7998", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307594"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:52.799243 2024-07-29 09:38:52.799256 a5fd2d2d-36bc-4d4e-925e-33c208b4bf07 {"pid": "7999", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307632"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:52.890994 2024-07-29 09:38:52.891004 00d9717e-8c7f-4f35-bdb5-50bce0db2040 {"pid": "8000", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307713"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:52.977163 2024-07-29 09:38:52.977166 f0ecbf88-0142-45a1-8342-d30365b93df0 {"pid": "8001", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/27930773X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:53.035044 2024-07-29 09:38:53.035055 7d130c66-36c7-4aa2-986f-a45c5c059081 {"pid": "8002", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307748"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:53.113499 2024-07-29 09:38:53.113508 97386526-66e2-48c3-ba4e-e968d04148ce {"pid": "8003", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307780"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:53.203267 2024-07-29 09:38:53.203278 bb0a6390-6f93-41b3-bca3-8e806dcf1bf6 {"pid": "8004", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307799"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:53.303297 2024-07-29 09:38:53.303305 18843102-4c85-47d2-a0f9-1e3b00788411 {"pid": "8005", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307810"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:53.394938 2024-07-29 09:38:53.394946 495b6e7a-731d-495d-ab32-24a2d5fa9231 {"pid": "8006", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307837"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:53.470161 2024-07-29 09:38:53.47017 a45f5ccc-4fe5-411d-b548-084fcce0a0c4 {"pid": "8007", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307853"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:53.543924 2024-07-29 09:38:53.543932 5543532a-81d4-4048-9a22-88067879cc2e {"pid": "8008", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027222144"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:53.639144 2024-07-29 09:38:53.639156 7b624584-1414-4931-8d4c-2720d8c16957 {"pid": "8009", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027236897"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:53.738972 2024-07-29 09:38:53.738979 68735343-840d-4b16-951d-6b448b9cd3b3 {"pid": "8010", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027276457"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:53.833658 2024-07-29 09:38:53.83367 24d3752b-8d05-4351-b629-309e9d330a69 {"pid": "8011", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027307565"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:53.929205 2024-07-29 09:38:53.929215 018bde8f-43b9-47e6-a21b-98a7053c63b8 {"pid": "8012", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02767391X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:54.009974 2024-07-29 09:38:54.009976 41656a03-4c58-4785-a3ba-bbe291bf8416 {"pid": "8013", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027800512"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:54.083778 2024-07-29 09:38:54.083787 75f47be5-d9af-45a9-a784-7ac4c00938b3 {"pid": "8014", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02781971X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:54.19361 2024-07-29 09:38:54.193732 e4a24a5b-6275-4acb-af74-6e0ad07ed145 {"pid": "8015", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02787642X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:54.288391 2024-07-29 09:38:54.288402 3d9df97b-12d4-4850-9642-ce5fff3597fc {"pid": "8016", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028374878"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:54.379304 2024-07-29 09:38:54.379313 5aa99129-0509-47c0-b449-99246ea21a31 {"pid": "8017", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028932358"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:54.475158 2024-07-29 09:38:54.475166 4f728508-7abe-4ab8-aef8-606756c6adea {"pid": "8018", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/030120640"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:54.573626 2024-07-29 09:38:54.573639 3dfef4e4-21a5-4ddc-8bca-87b708761272 {"pid": "8019", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/03136795X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:54.669784 2024-07-29 09:38:54.669796 ffd8a043-df8a-4b8c-b21e-462b51135e3e {"pid": "8020", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/033293074"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:54.766651 2024-07-29 09:38:54.766662 26446c33-9b87-48f0-8656-8c96814a1d7d {"pid": "8021", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/050174495"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:54.862188 2024-07-29 09:38:54.8622 9d759c3a-b19d-497c-b2c0-4391751f01a7 {"pid": "8022", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/06008989X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:54.963571 2024-07-29 09:38:54.963583 c12fd2c1-5abe-40f4-8c9c-5c23b604f8e8 {"pid": "8023", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/061604496"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:55.051048 2024-07-29 09:38:55.051054 b9cf4cc0-1e5a-4d64-93b4-eca65eabde30 {"pid": "8024", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/178480231"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:55.131073 2024-07-29 09:38:55.131081 8d315adc-fa5b-4005-9db3-6de87e54b70e {"pid": "8025", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/238529495"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:55.225302 2024-07-29 09:38:55.225315 bb1128f9-1540-469a-b394-6c808daacec6 {"pid": "8026", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263906442"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:55.32011 2024-07-29 09:38:55.320118 1fe29513-6794-4f8b-bd4b-0583c721f2d8 {"pid": "8027", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/264225260"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:55.411689 2024-07-29 09:38:55.411696 75e73389-2bbe-4220-b611-3e8b62de5e4d {"pid": "8028", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/276037685"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:55.496811 2024-07-29 09:38:55.496822 e1b22cd3-4d05-4f49-89a5-5116f5388665 {"pid": "8029", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278746896"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:55.590274 2024-07-29 09:38:55.590284 fafb0d28-f82c-462f-bf78-3a11d273aad2 {"pid": "8030", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278746918"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:55.675131 2024-07-29 09:38:55.675141 99bf67d0-a6a7-4ee9-8191-5dcb1693af93 {"pid": "8031", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278746926"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:55.7626 2024-07-29 09:38:55.762609 3121ce94-e3e3-413e-b6db-fd30abb4b2ee {"pid": "8032", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278746934"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:55.852151 2024-07-29 09:38:55.852162 8b6bbaa2-2423-42ec-955d-2e43b569f85f {"pid": "8033", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278746942"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:55.944726 2024-07-29 09:38:55.944738 747113f9-dd44-40b1-b710-41d51a5f85b4 {"pid": "8034", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278746950"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:56.034947 2024-07-29 09:38:56.034957 066ff354-2483-4571-92dd-0d3b4312d686 {"pid": "8035", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278746977"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:56.088328 2024-07-29 09:38:56.088331 07576f73-1c06-4ca4-8a39-c59e7d37a21d {"pid": "8036", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747027"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:56.157977 2024-07-29 09:38:56.157986 16a093e9-1852-4c40-8c17-d833a1a52185 {"pid": "8037", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747035"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:56.245272 2024-07-29 09:38:56.245282 5d74d09b-8ca5-4227-b7c2-f96cf042dd9b {"pid": "8038", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747051"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:56.327299 2024-07-29 09:38:56.327305 a6a271c0-8938-4315-8134-0a2432858ea9 {"pid": "8039", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/27874706X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:56.41536 2024-07-29 09:38:56.415367 16a79ec8-6611-491f-98dc-821251ec313a {"pid": "8040", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747086"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:56.497773 2024-07-29 09:38:56.497781 6bba325e-286e-4668-a0b0-56eac0d15886 {"pid": "8041", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747094"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:56.591099 2024-07-29 09:38:56.591107 94aad002-0b7a-4099-9b99-37e56b6e3915 {"pid": "8042", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747108"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:56.681868 2024-07-29 09:38:56.681879 1de2f5f1-641a-4755-98d3-2d3c1f3f95a4 {"pid": "8043", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747116"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:56.779865 2024-07-29 09:38:56.779875 39fccaa2-7b6a-4023-96c1-238ed5ee29ec {"pid": "8044", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747124"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:56.873621 2024-07-29 09:38:56.873635 74fa5ed3-e689-4c3b-85de-2596d3a5978e {"pid": "8045", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747132"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:56.965562 2024-07-29 09:38:56.965575 17e9982a-4869-4c29-9662-ee7fb931ed4b {"pid": "8046", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747140"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:57.067063 2024-07-29 09:38:57.067076 f88d7655-0a09-4e55-a515-f4c321d84558 {"pid": "8047", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747159"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:57.125499 2024-07-29 09:38:57.125502 b999a01c-8d85-40a1-998b-2e05b5bf210f {"pid": "8048", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747213"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:57.194441 2024-07-29 09:38:57.194449 aabbd32c-27d1-4873-977b-49069ea69532 {"pid": "8049", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747221"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:57.287311 2024-07-29 09:38:57.287322 9ca4fb62-9de4-491e-9e62-75dc8658cdc0 {"pid": "8050", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747248"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:57.387249 2024-07-29 09:38:57.387259 77b07990-20f9-4897-924e-8f52ce5e4f16 {"pid": "8051", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747256"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:57.470882 2024-07-29 09:38:57.470892 34eef16b-bf3a-472d-827a-dbdbe46bc758 {"pid": "8052", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747264"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:57.56447 2024-07-29 09:38:57.56448 c90cdd3f-6485-4d9a-a588-f5fe3ccd3d02 {"pid": "8053", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747272"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:57.658415 2024-07-29 09:38:57.658426 29e66f5c-9a7c-4f59-8a5d-e49038eef6ea {"pid": "8054", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747299"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:57.743934 2024-07-29 09:38:57.743941 5a576f91-9d35-44bf-b6d6-258e883d2ba8 {"pid": "8055", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747302"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:57.840577 2024-07-29 09:38:57.840586 74c4701d-4446-44c2-97e6-cba6ac7d9981 {"pid": "8056", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279034768"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:57.929854 2024-07-29 09:38:57.929865 99055b40-fb0d-4b10-814a-2512dba24828 {"pid": "8057", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279034776"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:58.025843 2024-07-29 09:38:58.025853 77e02688-5f2e-444b-bcb2-00a98272815f {"pid": "8058", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279034784"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:58.114066 2024-07-29 09:38:58.11407 04fc87cb-a6b1-47b6-8ba3-7277698fe1aa {"pid": "8059", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279034792"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:58.166053 2024-07-29 09:38:58.166061 87f908d5-9df7-46e4-8554-a82b9641020c {"pid": "8060", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279034865"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:58.23679 2024-07-29 09:38:58.236798 458ca9aa-8fa8-47b7-9d8e-0b9515eca0d0 {"pid": "8061", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279034873"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:58.325147 2024-07-29 09:38:58.325158 61fb6ebe-4371-4072-8e2c-d79567860774 {"pid": "8062", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/27903489X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:58.424807 2024-07-29 09:38:58.424817 57b95908-0664-4c03-aa5e-88ccb4370e29 {"pid": "8063", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279034903"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:58.510361 2024-07-29 09:38:58.510372 46fe368a-d293-4336-a0af-3cda130e9850 {"pid": "8064", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279035039"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:58.602115 2024-07-29 09:38:58.602127 8fa8805a-ca83-4ee4-9eeb-10852777a551 {"pid": "8065", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027275639"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:58.696442 2024-07-29 09:38:58.69645 c176cfbe-8bd2-4d7b-bbbd-18f0339ba556 {"pid": "8066", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027362434"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:58.788969 2024-07-29 09:38:58.78898 d2c94394-08fc-412b-afa5-aa1e5eaa9aa8 {"pid": "8067", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027612163"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:58.938167 2024-07-29 09:38:58.93817 8acc55a4-548f-47b8-a1ce-eaba476d9b0c {"pid": "8068", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029385571"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:58.992075 2024-07-29 09:38:58.992078 bcb448a7-a109-4f0d-94a3-af2e3c020e16 {"pid": "8069", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029877555"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:59.044548 2024-07-29 09:38:59.044551 a3b56787-e146-4bf6-baf1-2a08eee5b867 {"pid": "8070", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/033689725"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:59.0968 2024-07-29 09:38:59.096804 14af3389-a3b3-43e1-aa3c-183efcddbfa6 {"pid": "8071", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/035381795"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:59.154741 2024-07-29 09:38:59.154744 0152b5f4-1eee-402d-90f8-f9c6d52b73c7 {"pid": "8072", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/174718276"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:59.21087 2024-07-29 09:38:59.210876 d38e35d5-ba3b-4954-af91-075e29e11774 {"pid": "8073", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747078"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:59.281402 2024-07-29 09:38:59.281412 e60cddf3-8ccd-4c5d-90c9-eba552098ae9 {"pid": "8074", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279034954"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:59.357142 2024-07-29 09:38:59.35715 4ed706a6-583a-4db8-8598-4ac7103e5a8e {"pid": "8075", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307381"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:59.445084 2024-07-29 09:38:59.44509 24b22241-c744-4e5d-b79c-a812adcb2573 {"pid": "8076", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/27930739X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:59.535468 2024-07-29 09:38:59.535478 bb703196-b836-46e0-8a82-c9818a051d97 {"pid": "8077", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307403"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:59.615838 2024-07-29 09:38:59.615847 dcf64a3d-d78f-4646-ae64-e21b46cb2c30 {"pid": "8078", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307411"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:59.691681 2024-07-29 09:38:59.691691 658ee21c-2583-4a67-9eec-3d542d3c0ed6 {"pid": "8079", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/27930742X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:59.777516 2024-07-29 09:38:59.777525 642cd2d1-0993-42e9-a531-c29a75a90f04 {"pid": "8080", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307438"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:59.968022 2024-07-29 09:38:59.968029 b430e567-683b-43f8-95b3-06427d3e7e66 {"pid": "8081", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307446"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:00.0683 2024-07-29 09:39:00.068329 acdcf0f0-96d3-443d-bc89-9d70685ab620 {"pid": "8082", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307454"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:00.155399 2024-07-29 09:39:00.155404 b974efb8-31c4-47fe-bdd7-78f9edac8788 {"pid": "8083", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307543"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:00.212813 2024-07-29 09:39:00.212819 788899e5-341e-4c42-8dd7-30247d488510 {"pid": "8084", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307608"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:00.294167 2024-07-29 09:39:00.294178 bf7ea806-7ab5-4303-a13a-9e2af608a339 {"pid": "8085", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307616"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:00.384976 2024-07-29 09:39:00.384988 bdc7887e-ffd8-4b50-8f20-2a2942836b90 {"pid": "8086", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307640"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:00.475862 2024-07-29 09:39:00.475873 2b90a237-e4ed-4921-9936-ac83c1422018 {"pid": "8087", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307659"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:00.571508 2024-07-29 09:39:00.571521 0d42fd66-0faa-435d-bb7a-13043de5ac01 {"pid": "8088", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307667"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:00.67072 2024-07-29 09:39:00.670731 a8789d79-539a-43c9-9ed6-13e048a29114 {"pid": "8089", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307675"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:00.76256 2024-07-29 09:39:00.76257 7bec5238-3985-43e0-83ef-eb05a574d85b {"pid": "8090", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307683"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:00.858014 2024-07-29 09:39:00.858022 a17b9b2f-de98-466b-b12e-4eca052e27f4 {"pid": "8091", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307705"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:00.943403 2024-07-29 09:39:00.943411 61778768-0a74-43dd-83d1-4db3da63f579 {"pid": "8092", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307721"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:01.033533 2024-07-29 09:39:01.033542 7038d0fb-39dc-4bf5-ae5f-7b6f02d3ef2d {"pid": "8093", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307756"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:02.981087 2024-07-29 09:39:02.981089 af55df67-d3c3-4614-9338-77b34c2be2fb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334542139"}, "pid": "8094", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:03.056617 2024-07-29 09:39:03.056621 36e1b8e8-4412-47bc-bb7c-9c920f0d0b6e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334538549"}, "pid": "8095", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:03.10243 2024-07-29 09:39:03.102433 df2895b2-7ec6-4632-b91d-2f8c9b884083 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334484775"}, "pid": "8096", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:03.142916 2024-07-29 09:39:03.142918 6b2b9bbc-71bd-4317-ab3f-283061043ead {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334336342"}, "pid": "8097", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:03.184274 2024-07-29 09:39:03.184278 ee32fecb-8a6b-48f7-acc2-e72e44ba57f6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334320462"}, "pid": "8098", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:03.22368 2024-07-29 09:39:03.223683 f00b3dc5-f368-4381-99ff-87e7f47aa927 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334314950"}, "pid": "8099", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:03.265362 2024-07-29 09:39:03.265365 e4a8ef28-26da-4862-a2cf-82ee88a5efd3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334231826"}, "pid": "8100", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:03.327136 2024-07-29 09:39:03.327143 cf17deba-8cdd-4ef4-8c5b-85439553f597 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334230463"}, "pid": "8101", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:03.391535 2024-07-29 09:39:03.391541 ebe95f19-e4cd-4efc-b2e1-ae478e18bdfe {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334227209"}, "pid": "8102", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:03.463925 2024-07-29 09:39:03.463934 0aef44f4-233a-467f-a696-fe35ac062097 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334225907"}, "pid": "8103", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:03.547221 2024-07-29 09:39:03.547229 3db06be2-6fbb-40a6-a9ab-aeedc1950e92 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334131074"}, "pid": "8104", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:03.62646 2024-07-29 09:39:03.626471 f6f41b52-2748-4c38-b900-5bc6a8853ea7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334127158"}, "pid": "8105", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:03.721649 2024-07-29 09:39:03.721661 3260120b-08a1-4323-82b6-1774cabe15d0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334091412"}, "pid": "8106", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:03.81835 2024-07-29 09:39:03.81836 3eb114b4-ce49-4dc6-947a-cee5d4112ff5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334089663"}, "pid": "8107", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:03.908107 2024-07-29 09:39:03.908119 9a866f79-f900-49ec-b78e-83dd2fcd3fce {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334088837"}, "pid": "8108", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:04.00327 2024-07-29 09:39:04.003282 4d1e3de0-60ce-4aa9-898f-a3e4433deb18 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334088217"}, "pid": "8109", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:04.094633 2024-07-29 09:39:04.094643 21690857-2e2c-4026-bc67-41c2b0e1e279 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334087156"}, "pid": "8110", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:04.182894 2024-07-29 09:39:04.182905 983dfe4b-70ea-4646-9984-b38df2c9ecea {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/133400076X"}, "pid": "8111", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:04.252424 2024-07-29 09:39:04.252427 aae555c5-6544-4ae6-91a3-577ca384874a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333993331"}, "pid": "8112", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:04.310798 2024-07-29 09:39:04.310807 2ff8a3b5-f1a5-4945-9cb4-b9aad967b5ba {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333992548"}, "pid": "8113", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:04.38254 2024-07-29 09:39:04.382547 ae394e50-63be-4530-9f1b-e778820e9368 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333987366"}, "pid": "8114", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:04.464907 2024-07-29 09:39:04.464915 97a4850c-fabb-4159-a259-6e23c583089e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/133396420X"}, "pid": "8115", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:04.54908 2024-07-29 09:39:04.549093 c375f1c6-494a-4f47-be81-d2ec69e80b84 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333876874"}, "pid": "8116", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:04.631011 2024-07-29 09:39:04.631023 72477692-dd87-4a15-b7e1-4e2d9e1ad299 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333855907"}, "pid": "8117", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:04.716872 2024-07-29 09:39:04.716884 51c678ed-3eaf-457d-8fa1-71e15d7243cd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/133385501X"}, "pid": "8118", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:04.804432 2024-07-29 09:39:04.804443 280635f6-4ea6-4a57-bfb7-593de34ba8a4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333853084"}, "pid": "8119", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:04.892682 2024-07-29 09:39:04.892691 fa4f25f7-1474-41a6-b76b-53d51b7c3d99 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333852673"}, "pid": "8120", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:04.975938 2024-07-29 09:39:04.975948 ebbbc34a-e4f1-4813-b4de-758b6d5a4a51 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333849788"}, "pid": "8121", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:05.058519 2024-07-29 09:39:05.058529 a5a885ef-51e3-4864-b113-6b860b7e97f8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333849435"}, "pid": "8122", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:05.143021 2024-07-29 09:39:05.143034 1afd42e1-0fed-49bf-b1c8-c5209583adbd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333729863"}, "pid": "8123", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:05.236442 2024-07-29 09:39:05.236453 5b80d7d2-37ca-48cf-83cd-ca99cd4d7867 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333716354"}, "pid": "8124", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:05.304416 2024-07-29 09:39:05.304424 2e863c83-2b51-4451-9c45-9c1b0b5a5591 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333566352"}, "pid": "8125", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:05.375709 2024-07-29 09:39:05.375717 8761bb70-9c7f-4829-9b36-1dbdb4e1fae0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333421427"}, "pid": "8126", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:05.439899 2024-07-29 09:39:05.439907 beaaa2d9-ac0b-4bb3-addc-62e8e48b32dd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333376049"}, "pid": "8127", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:05.509781 2024-07-29 09:39:05.509789 fb0252b7-9c73-4173-a78e-0488bc150bde {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/133335245X"}, "pid": "8128", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:05.586266 2024-07-29 09:39:05.586276 37ec1bb0-647b-4bec-aed4-846c72559a67 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333352085"}, "pid": "8129", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:05.670536 2024-07-29 09:39:05.670546 0bb1019c-3bdd-4781-a077-139763ffc081 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333331002"}, "pid": "8130", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:05.750464 2024-07-29 09:39:05.750477 d40bcb62-6de6-4c52-a3fd-0d318fd57b21 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333323778"}, "pid": "8131", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:05.828591 2024-07-29 09:39:05.8286 e0040b46-01b8-43b0-922a-4c192af5f396 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333312415"}, "pid": "8132", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:05.910537 2024-07-29 09:39:05.910547 a5c458a9-7979-4042-abae-0a1181eaddd4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333312326"}, "pid": "8133", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:05.995805 2024-07-29 09:39:05.995815 f18ebccd-2039-4801-81fb-c4eb2cf4c5ca {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333270267"}, "pid": "8134", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:06.097577 2024-07-29 09:39:06.097591 274d5f95-374c-42a1-85a3-507caaa35f4b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/133326514X"}, "pid": "8135", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:06.178939 2024-07-29 09:39:06.178949 0134dcf5-05e2-4596-b662-073db7cd65f1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333260830"}, "pid": "8136", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:06.260234 2024-07-29 09:39:06.260241 fd043e28-44b9-4c70-b212-62ec4b8c0c60 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333256302"}, "pid": "8137", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:06.317301 2024-07-29 09:39:06.317305 6d899d07-5e1f-4547-8905-25ed2a7f34d7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/133325590X"}, "pid": "8138", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:06.405656 2024-07-29 09:39:06.405664 2ef28f5a-ace5-4936-9852-76179be914d0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333255616"}, "pid": "8139", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:06.485676 2024-07-29 09:39:06.485685 887f2fce-3d2b-42f6-b517-5539e10dab26 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333210043"}, "pid": "8140", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:06.563303 2024-07-29 09:39:06.563312 e27a0dbc-afcc-46b4-9b54-7eaff93a107c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333209908"}, "pid": "8141", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:06.64009 2024-07-29 09:39:06.640098 d1a7ffb6-aaa2-463f-b0d2-a812678554bd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333208901"}, "pid": "8142", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:06.712288 2024-07-29 09:39:06.712296 95ca055b-a5ac-432c-b652-a13bc57a698d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333141017"}, "pid": "8143", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:06.790727 2024-07-29 09:39:06.790735 164621da-0aad-4a9e-beab-be86a618aa20 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333125127"}, "pid": "8144", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:06.878567 2024-07-29 09:39:06.878576 696d61f7-01ef-460f-a5f6-dc8b5ba275e5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333119267"}, "pid": "8145", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:06.970691 2024-07-29 09:39:06.970699 7618e785-d483-4d3f-8f38-8889a8c3918f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333118023"}, "pid": "8146", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:07.057268 2024-07-29 09:39:07.057278 d10e6e89-63c2-4c86-b0ff-8ad64d47a728 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333117329"}, "pid": "8147", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:07.145783 2024-07-29 09:39:07.145791 2ea0ec9e-793b-4d18-9e62-4aa2c2d89e49 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333115881"}, "pid": "8148", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:07.235955 2024-07-29 09:39:07.235968 f35b3975-fa6b-4083-9e3d-18b763b000c6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333113749"}, "pid": "8149", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:07.32563 2024-07-29 09:39:07.325633 6bfc300b-9dfc-4119-94e7-8f0dc842f6d3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333065841"}, "pid": "8150", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:07.398184 2024-07-29 09:39:07.398192 57ee06f0-6e27-4c82-988d-203dfd4b6513 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333064136"}, "pid": "8151", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:07.482829 2024-07-29 09:39:07.482838 b9503a94-00ec-42f2-b32e-f3f2159bc194 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333063970"}, "pid": "8152", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:07.565305 2024-07-29 09:39:07.565312 9fd76d94-25f8-43bb-8b43-2ad1888e60a0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333063717"}, "pid": "8153", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:07.655445 2024-07-29 09:39:07.655455 8a8d9ada-63c5-4bdc-a475-90740b7dc543 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/133306179X"}, "pid": "8154", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:07.736499 2024-07-29 09:39:07.736509 6117bbb4-e4e8-4353-9f95-0814c5d647ed {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333037414"}, "pid": "8155", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:07.829675 2024-07-29 09:39:07.829683 ded89be8-98ba-435c-810c-818fe02f7a0c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333027249"}, "pid": "8156", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:07.923028 2024-07-29 09:39:07.923037 e97af95e-996b-47ca-940a-2c2007ab4fe1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1332990258"}, "pid": "8157", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:08.000426 2024-07-29 09:39:08.000437 b3f4df84-cfe0-4083-8466-60665871b3b8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1332899730"}, "pid": "8158", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:08.085609 2024-07-29 09:39:08.085623 c93b08d1-999e-45de-a529-33c9937abaed {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1332895018"}, "pid": "8159", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:08.173758 2024-07-29 09:39:08.17377 86812577-0c52-4182-b5ac-e87ac5e513b5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1332889549"}, "pid": "8160", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:08.26946 2024-07-29 09:39:08.269472 edc44d06-a8ad-46a5-b746-8f175455f7f7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1332775381"}, "pid": "8161", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:08.380559 2024-07-29 09:39:08.380567 5b88aa6a-6a75-4a87-b6c5-b51ff5347907 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1332774113"}, "pid": "8162", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:08.450418 2024-07-29 09:39:08.450427 5e494a3a-d754-4cca-8d64-0783d401f46c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/133276648X"}, "pid": "8163", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:08.540355 2024-07-29 09:39:08.540364 79b7fe62-daad-49c5-a488-e789d058c0dd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1332759254"}, "pid": "8164", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:08.627611 2024-07-29 09:39:08.627621 aff239f6-827a-403a-be40-440cddc0c8ef {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1332688047"}, "pid": "8165", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:08.720871 2024-07-29 09:39:08.720893 45ef9aba-d650-40c6-a580-2b6bd75289fa {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1332661297"}, "pid": "8166", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:08.814794 2024-07-29 09:39:08.814804 4442da28-f683-451c-8617-44ac5f654d89 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1332657273"}, "pid": "8167", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:08.921254 2024-07-29 09:39:08.921268 d4ed661f-3870-4724-8780-31b24efd5814 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1332649688"}, "pid": "8168", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:09.021311 2024-07-29 09:39:09.021327 557d49c2-0dd0-4223-bcba-226556f7558e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1332459587"}, "pid": "8169", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:09.122536 2024-07-29 09:39:09.122549 2a2e01b6-861c-42e3-819e-a8d755bfeaca {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1332430376"}, "pid": "8170", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:09.22215 2024-07-29 09:39:09.222166 4754b428-6547-4b1d-87a7-88627a8d5110 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1332426751"}, "pid": "8171", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:09.327276 2024-07-29 09:39:09.327284 58ce1612-27ca-4abf-9a80-1559895a486c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1332365841"}, "pid": "8172", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:09.408887 2024-07-29 09:39:09.40889 f5fd6c1c-c0bc-420f-8ddf-422d9e70b914 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1332318142"}, "pid": "8173", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:09.506263 2024-07-29 09:39:09.506274 262cfdc6-f30c-481b-bfe6-14eb1e3f338a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1332111971"}, "pid": "8174", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:09.614078 2024-07-29 09:39:09.614083 41100c86-4653-4ba5-8cef-48acab7b76c3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1332095119"}, "pid": "8175", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:09.699265 2024-07-29 09:39:09.699277 6c475c65-88c6-42e8-987c-3a7997609857 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/133197612X"}, "pid": "8176", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:09.793293 2024-07-29 09:39:09.793307 45b9fd25-345c-4efe-bf1e-254fdb0c8535 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/133197593X"}, "pid": "8177", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:09.898984 2024-07-29 09:39:09.898994 1ec2b098-1b91-419c-a189-22a65014e4fd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331975794"}, "pid": "8178", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:09.999901 2024-07-29 09:39:09.999908 94dea22c-bc77-47e4-b939-759b097bdd60 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331886929"}, "pid": "8179", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:10.117023 2024-07-29 09:39:10.117036 96f27869-7a0d-4531-bccd-0df7d9483ad4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331876540"}, "pid": "8180", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:10.240197 2024-07-29 09:39:10.240207 ad0100b7-53d5-47f9-84a3-558059a6f2f2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331840627"}, "pid": "8181", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:10.333947 2024-07-29 09:39:10.333957 0a0f1403-81af-4dd6-942e-75c65ea5bb74 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331747716"}, "pid": "8182", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:10.414642 2024-07-29 09:39:10.414645 70bdf684-3c6b-455b-8ff7-f3caae3beaf2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331734126"}, "pid": "8183", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:10.46969 2024-07-29 09:39:10.469698 e652b5a1-e2f2-4063-a72d-a73e14921004 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331734045"}, "pid": "8184", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:10.544497 2024-07-29 09:39:10.544507 f4d4b263-ec04-4bbd-8aeb-c4981f1d53bc {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331733316"}, "pid": "8185", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:10.618023 2024-07-29 09:39:10.618033 08a2aef4-67c2-4063-88a9-4d066fc486b1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331723361"}, "pid": "8186", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:10.704619 2024-07-29 09:39:10.704628 24bbedc1-afb0-4099-b6b4-62920be4632f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331719054"}, "pid": "8187", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:10.783379 2024-07-29 09:39:10.783391 8c6f34c8-bced-47e3-b122-ed53d02228f2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331717353"}, "pid": "8188", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:10.879485 2024-07-29 09:39:10.879496 e9495903-8877-4613-af68-582cf51e8c1f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331710464"}, "pid": "8189", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:10.969364 2024-07-29 09:39:10.969377 74408197-3947-4810-9c0c-990f577c5228 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331704014"}, "pid": "8190", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:11.05322 2024-07-29 09:39:11.053232 d7eaceff-5ac3-467e-8608-bd557f63b514 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331614392"}, "pid": "8191", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:11.140771 2024-07-29 09:39:11.140781 df9f4e64-25c9-44de-ab93-ce7fd73f945a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331613426"}, "pid": "8192", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:11.232237 2024-07-29 09:39:11.232249 1018259a-21c9-4305-b04a-da9762359069 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331605164"}, "pid": "8193", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:11.323492 2024-07-29 09:39:11.323501 982024f3-69a4-41c0-a63c-0d590a9bdc4b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331605091"}, "pid": "8194", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:11.417831 2024-07-29 09:39:11.417842 d9c27d34-351c-44b6-a659-9074bf5d58eb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331604893"}, "pid": "8195", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:11.471364 2024-07-29 09:39:11.471367 154fc23f-5165-4cc0-bf47-83aa02be1240 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331603897"}, "pid": "8196", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:11.54154 2024-07-29 09:39:11.541543 3732a57e-bc9c-49e1-b61a-7e0ab1918e2f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331594014"}, "pid": "8197", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:11.611073 2024-07-29 09:39:11.611081 35c949a8-5528-492d-a1c4-8b6a277e6d66 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331592208"}, "pid": "8198", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:11.693952 2024-07-29 09:39:11.693962 479ce25c-fe8b-482d-b21b-34ac4f9ebb6c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331584167"}, "pid": "8199", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:11.769019 2024-07-29 09:39:11.769029 940ff891-df17-47c9-a137-be6744b26902 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331530806"}, "pid": "8200", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:11.850585 2024-07-29 09:39:11.850598 47a2b6ee-c902-49f6-b13f-6271b1fcf6d8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331496918"}, "pid": "8201", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:11.939818 2024-07-29 09:39:11.939831 d7b12355-13a7-4082-b837-ef6e5bff6a1f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331482941"}, "pid": "8202", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:12.025876 2024-07-29 09:39:12.025883 93b2c61e-4596-42d5-a17e-3bc7d60268b1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331380073"}, "pid": "8203", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:12.111437 2024-07-29 09:39:12.111447 6ab7ca2b-1bc2-4537-81bd-289bc94c9611 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331102170"}, "pid": "8204", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:12.193698 2024-07-29 09:39:12.193705 7fa162f9-b74e-4904-b22a-f7c96bd85001 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1330854640"}, "pid": "8205", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:12.269083 2024-07-29 09:39:12.269095 1721fb89-8e21-484b-8db5-877e82bca6a7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1330843584"}, "pid": "8206", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:12.355357 2024-07-29 09:39:12.355367 4b5c2384-4814-46ef-ad8a-ee0e5c113883 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1330586557"}, "pid": "8207", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:12.43538 2024-07-29 09:39:12.435388 034424fc-b7fc-40b9-86a4-33039ae8363c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1330586271"}, "pid": "8208", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:12.491251 2024-07-29 09:39:12.491253 4271a95e-be31-4cab-a72b-6b731075fc0a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1330585992"}, "pid": "8209", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:12.550776 2024-07-29 09:39:12.55078 c605bdce-0de0-4ad6-ba2c-45138d996dcd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1330585747"}, "pid": "8210", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:12.617567 2024-07-29 09:39:12.617578 cd0e08d3-638c-473b-8472-0b771979a666 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1330447611"}, "pid": "8211", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:12.701627 2024-07-29 09:39:12.701636 1bc37e3c-e414-440e-aec6-e2a8159c621d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1330433858"}, "pid": "8212", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:12.792386 2024-07-29 09:39:12.792397 801d36ac-058f-44d0-a38e-8d9054b09272 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1330430964"}, "pid": "8213", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:12.876753 2024-07-29 09:39:12.876762 6af88c16-b91d-4f7c-872d-d8e20d06d127 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1330343085"}, "pid": "8214", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:12.969222 2024-07-29 09:39:12.969234 54a1dd7d-8f9f-403c-8a50-e60d39dc7b7f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1330186664"}, "pid": "8215", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:13.055746 2024-07-29 09:39:13.055753 6e3213a9-0215-4958-bdd8-68ed6a5aaa8c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1329650123"}, "pid": "8216", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:13.139726 2024-07-29 09:39:13.139738 3cd8d021-38aa-4578-be19-416c3a3435e9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1329573331"}, "pid": "8217", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:13.225246 2024-07-29 09:39:13.225258 6480ce59-1bd7-4c5f-a0c7-cd9c602223f2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1329325958"}, "pid": "8218", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:13.32828 2024-07-29 09:39:13.328293 236a4a91-7696-4779-a42e-5c2c017ea675 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1328905152"}, "pid": "8219", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:13.437949 2024-07-29 09:39:13.437962 b431ac9d-663f-44ea-abde-77fedbcc361b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1328159116"}, "pid": "8220", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:13.520506 2024-07-29 09:39:13.52051 21b9f18c-7ddc-4341-8095-83807e40bea2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1328114813"}, "pid": "8221", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:13.585975 2024-07-29 09:39:13.585982 d3bf7cfe-4665-4d1d-870d-33a5acd50920 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1326598325"}, "pid": "8222", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:13.66002 2024-07-29 09:39:13.66003 140e1883-7a38-4094-8eed-cc157d621fa9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1325970743"}, "pid": "8223", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:13.748341 2024-07-29 09:39:13.748351 4111ca1c-04cc-4ec6-8601-7b8eefefedd9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1325836214"}, "pid": "8224", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:13.83449 2024-07-29 09:39:13.834499 470ba4fb-bbc4-4c7b-a3a7-f142bb303e33 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1325526541"}, "pid": "8225", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:13.922437 2024-07-29 09:39:13.922444 11ee4591-1e52-4f0e-807a-dfe962cca8c0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1324473703"}, "pid": "8226", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:14.01643 2024-07-29 09:39:14.016438 b4ff9f52-2383-4e81-95d6-e390786b5c6b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1324101571"}, "pid": "8227", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:14.094103 2024-07-29 09:39:14.094114 4e2d0742-7b82-4753-aa71-c0d6f5843cf8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1322498083"}, "pid": "8228", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:14.181336 2024-07-29 09:39:14.181345 4b75bd7e-fc46-419e-980d-e9c1a9a8db47 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1321930690"}, "pid": "8229", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:14.268221 2024-07-29 09:39:14.268234 ba16d2f0-5419-442f-9e37-d34a73cdc378 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1321369956"}, "pid": "8230", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:14.361712 2024-07-29 09:39:14.361723 c4e60345-7c88-4cb7-aa9b-def0a1478ade {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1321325754"}, "pid": "8231", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:14.457071 2024-07-29 09:39:14.457083 75cc7448-5078-4955-af32-aad8f53a112c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/132121202X"}, "pid": "8232", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:14.53317 2024-07-29 09:39:14.533173 62e370cb-a078-4308-ad7d-fa181f48dae7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1319608302"}, "pid": "8233", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:14.599287 2024-07-29 09:39:14.599294 2d4d98fb-671a-4253-b6ad-f57c8cec2e2f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1319352146"}, "pid": "8234", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:14.673007 2024-07-29 09:39:14.673014 6c0e84e3-f1f9-4eb3-92bb-0ab01c98e2ac {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1318875676"}, "pid": "8235", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:14.74044 2024-07-29 09:39:14.740446 b536aad6-0d2c-49fa-8eb8-48e36f53d0ee {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1318600871"}, "pid": "8236", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:14.819999 2024-07-29 09:39:14.820012 b48bd03a-a5d3-426f-a412-597c5ecf82a1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1318529573"}, "pid": "8237", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:14.908253 2024-07-29 09:39:14.908262 0bc3dd62-4144-40fa-91ae-f97c487eebfa {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1315438240"}, "pid": "8238", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:14.989669 2024-07-29 09:39:14.989679 9ad18abf-6d09-4f26-b1f1-edb0eda83e51 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1315344238"}, "pid": "8239", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:15.073523 2024-07-29 09:39:15.073529 a5850b61-5989-49fc-a54c-58601f6323d4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1315166526"}, "pid": "8240", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:15.163571 2024-07-29 09:39:15.163583 d5518448-364d-4564-b75c-752de31e246f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1314207296"}, "pid": "8241", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:15.252714 2024-07-29 09:39:15.252728 87fb52fd-67d4-4fdb-819e-d808f3918546 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1314016547"}, "pid": "8242", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:15.343289 2024-07-29 09:39:15.343301 f57ad7d9-b8b1-4f37-87a5-2e2eb72c48a3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1314016032"}, "pid": "8243", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:15.424286 2024-07-29 09:39:15.424293 4c38eeaf-e22d-4fe4-adcd-544e31157a75 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1311509100"}, "pid": "8244", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:15.505822 2024-07-29 09:39:15.505835 3e685aae-bd75-4319-95ff-b21ae66a9e03 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/131143609X"}, "pid": "8245", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:15.570243 2024-07-29 09:39:15.570246 f10e8479-0eaa-40a0-8937-7efe83aa03ca {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1311352430"}, "pid": "8246", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:15.629171 2024-07-29 09:39:15.629179 0e7bcb98-4eef-4c87-a43a-dbe817fc380a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1310159343"}, "pid": "8247", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:15.703119 2024-07-29 09:39:15.703127 37e80de2-4db8-4213-9951-77d225a54626 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/130899687X"}, "pid": "8248", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:15.779002 2024-07-29 09:39:15.779012 4043f110-d071-4750-8e21-a8fd13c8a158 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1308455038"}, "pid": "8249", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:15.867915 2024-07-29 09:39:15.867927 8ded1ff4-7874-4a7f-9aa7-ffbcb89c0366 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1305992857"}, "pid": "8250", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:15.956766 2024-07-29 09:39:15.956778 e84d9684-92cc-4dcf-8ff3-24e97758902b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1302496050"}, "pid": "8251", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:16.048003 2024-07-29 09:39:16.048012 796e0ee9-52c2-4a77-a640-bfa345610492 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/129922539X"}, "pid": "8252", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:16.136495 2024-07-29 09:39:16.136507 eab0a608-9814-481d-8624-a77a4a5ac83d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1298858054"}, "pid": "8253", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:16.227529 2024-07-29 09:39:16.227539 344f5a36-fac0-4809-84ad-ecb5b97aa519 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1298312817"}, "pid": "8254", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:16.313268 2024-07-29 09:39:16.313279 6f5c765a-ccd5-4d4f-b403-ae4650c35c0a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1297822668"}, "pid": "8255", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:16.397939 2024-07-29 09:39:16.397951 0ec01e2d-a667-43aa-bc56-470850351abe {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1295539519"}, "pid": "8256", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:16.491921 2024-07-29 09:39:16.491933 bd323caf-9523-4ed8-8d91-ff492daed783 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1293306673"}, "pid": "8257", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:16.582594 2024-07-29 09:39:16.582598 b8462cc4-a527-4b1e-94a6-965b97a35e39 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1283002477"}, "pid": "8258", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:16.644105 2024-07-29 09:39:16.644113 1935872a-a9cb-4997-878b-f9be95e00b9c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/127857025X"}, "pid": "8259", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:16.721343 2024-07-29 09:39:16.721352 52022614-1d3c-4df1-91f6-98a37fa44689 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1278063730"}, "pid": "8260", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:16.8018 2024-07-29 09:39:16.801807 a97beda2-a0ee-4cff-aa0b-9a0f775d4143 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1277678871"}, "pid": "8261", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:16.891084 2024-07-29 09:39:16.891094 3c143cbe-2822-48a3-aff2-cbd74b338bb2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1277560676"}, "pid": "8262", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:16.96724 2024-07-29 09:39:16.967246 d88031f9-42d3-455a-8788-7a1023c9418d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1276707304"}, "pid": "8263", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:17.045325 2024-07-29 09:39:17.045332 cde86b36-ca17-4e0d-a2a7-16411506a77a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1276176597"}, "pid": "8264", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:17.12509 2024-07-29 09:39:17.125096 6c3ce559-7733-4b9f-842c-82ea1c6ebb91 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1275619533"}, "pid": "8265", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:17.212892 2024-07-29 09:39:17.212901 76a81fed-9263-4fa3-98d9-c48ecb1771e4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1275172962"}, "pid": "8266", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:17.296252 2024-07-29 09:39:17.296263 30c422bb-25f9-43e7-8546-577a8f845922 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1274948169"}, "pid": "8267", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:17.390532 2024-07-29 09:39:17.390541 29b6e716-dc70-4afe-a451-f998c186bdc7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1274269121"}, "pid": "8268", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:17.480958 2024-07-29 09:39:17.480965 ea89901b-735e-47a0-91ba-78200e4e57f8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1273395077"}, "pid": "8269", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:17.569361 2024-07-29 09:39:17.569373 39974fd1-2f6a-4748-ad58-9f60450d4f36 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1273298268"}, "pid": "8270", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:17.636916 2024-07-29 09:39:17.636919 cb2a0d50-075e-4d4e-bd9b-ab1a12b79dd1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1273295374"}, "pid": "8271", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:17.705177 2024-07-29 09:39:17.705186 3a1e792b-a2b3-479b-a9a3-429896ec31ac {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1270459880"}, "pid": "8272", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:17.794986 2024-07-29 09:39:17.794994 fa21c35b-3d29-4e53-9d1c-587d058b1505 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1268867829"}, "pid": "8273", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:17.881124 2024-07-29 09:39:17.881133 df241e6f-e16f-4bfe-9662-3043dfe6f525 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1267608781"}, "pid": "8274", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:17.969383 2024-07-29 09:39:17.96939 d420bb06-9cef-451e-85a1-c944e6f5cd00 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1267608366"}, "pid": "8275", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:18.05942 2024-07-29 09:39:18.059432 ec01f28f-27f1-455c-bdd4-7eb56a5778e5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1267358122"}, "pid": "8276", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:18.152452 2024-07-29 09:39:18.152464 4a9aefa5-af98-4a21-9dbe-91ed28f23888 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1266800611"}, "pid": "8277", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:18.246636 2024-07-29 09:39:18.246645 6517ad81-162a-4cec-9148-3a30eb35d0ea {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1266799931"}, "pid": "8278", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:18.34022 2024-07-29 09:39:18.340233 5299fbee-be41-47b5-93c3-4c4e2c9cdbde {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1264956134"}, "pid": "8279", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:18.448064 2024-07-29 09:39:18.448072 bfbd7388-92e1-449e-9901-80215f558934 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1262928265"}, "pid": "8280", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:18.538384 2024-07-29 09:39:18.538396 12442da0-e4fe-4c58-8e74-c725c5e901a0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1261933737"}, "pid": "8281", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:18.625087 2024-07-29 09:39:18.625095 29c6d154-14c8-406f-9e1f-b55c4c70a6ba {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1259460460"}, "pid": "8282", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:18.693446 2024-07-29 09:39:18.693453 efe783a8-25ca-46d2-9224-87b1ddc01f89 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1258881675"}, "pid": "8283", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:18.768757 2024-07-29 09:39:18.768767 3e457059-0432-4fdc-9ff1-e443c0f8df31 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/125746423X"}, "pid": "8284", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:18.848862 2024-07-29 09:39:18.848871 11467417-ad51-4ef4-9179-17aa3fd1a836 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1257346415"}, "pid": "8285", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:18.938712 2024-07-29 09:39:18.93872 012676d7-af47-44fa-a54a-cabc87b8bd57 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1257092804"}, "pid": "8286", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:19.030357 2024-07-29 09:39:19.030369 d0be7e53-256b-4780-8fc2-4355a8c89677 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1254569642"}, "pid": "8287", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:19.115206 2024-07-29 09:39:19.115214 58470d4e-732d-461c-8686-ac35611938e9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1254535594"}, "pid": "8288", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:19.196829 2024-07-29 09:39:19.196839 f6b147b8-3c82-4e77-85a0-9e9d7dedda2f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1253837457"}, "pid": "8289", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:19.28546 2024-07-29 09:39:19.285471 0c084514-5cc6-4b8b-ac19-b9cfbd4dc49e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1252827512"}, "pid": "8290", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:19.377792 2024-07-29 09:39:19.3778 a0c455cc-3c2c-4fa6-9193-227d516fa94b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1252257295"}, "pid": "8291", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:19.465724 2024-07-29 09:39:19.465735 e28e2f7d-31bc-4db1-8bbc-c44a5c64ded4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1251536492"}, "pid": "8292", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:19.556996 2024-07-29 09:39:19.557004 184a519a-42b0-4492-ac8f-982e351e6127 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1250258731"}, "pid": "8293", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:19.644551 2024-07-29 09:39:19.644562 b07f440b-b3db-4a9d-a75e-901423fb012b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/124994516X"}, "pid": "8294", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:19.706348 2024-07-29 09:39:19.706355 a56baca8-06d3-4e57-a202-b633fe20d0cb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1249112877"}, "pid": "8295", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:19.775563 2024-07-29 09:39:19.775571 7c6d3afb-06ff-4aa5-b8d2-ac6e6476ab09 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1248945506"}, "pid": "8296", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:19.852978 2024-07-29 09:39:19.852987 0819cb80-ce41-469b-bdb1-a679812f9c5b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1247639401"}, "pid": "8297", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:19.94268 2024-07-29 09:39:19.942692 4a1e1d66-0252-4891-aafc-ebc35bd6c147 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1246126877"}, "pid": "8298", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:20.02983 2024-07-29 09:39:20.029842 a819cfae-4173-4a10-a7a4-e530fb8a694b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/124608841X"}, "pid": "8299", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:20.12004 2024-07-29 09:39:20.120047 743f697e-cb68-431b-bf24-fd978313ad06 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1241975299"}, "pid": "8300", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:20.225498 2024-07-29 09:39:20.225509 b113dc27-0c7a-4063-87b5-bb08884ce7b7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1234514702"}, "pid": "8301", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:20.322293 2024-07-29 09:39:20.322303 14f6e9f6-3734-423c-b80e-99f59f9da729 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1232346071"}, "pid": "8302", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:20.396519 2024-07-29 09:39:20.396528 fcd1c292-a869-46fa-a304-c63c2af1712f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1228154325"}, "pid": "8303", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:20.483002 2024-07-29 09:39:20.483011 33933013-4b27-473e-b76c-9f117279f873 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1225893461"}, "pid": "8304", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:20.572249 2024-07-29 09:39:20.572261 7172ab5d-068f-4e56-92cb-cc59d7bd2a16 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1219598135"}, "pid": "8305", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:20.664901 2024-07-29 09:39:20.664914 c06c7720-6fc6-4d18-aa86-4b19c3487e8f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1210456753"}, "pid": "8306", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:20.726146 2024-07-29 09:39:20.726152 e25b6d54-75cc-4e6c-ad27-add02ba4966a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1202575048"}, "pid": "8307", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:20.800007 2024-07-29 09:39:20.800017 fdb39a47-93d2-402a-b274-b2d8e94c7917 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1201330661"}, "pid": "8308", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:20.887371 2024-07-29 09:39:20.88738 6af3ba93-2349-4f06-b337-b699732c480a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1199404365"}, "pid": "8309", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:20.97251 2024-07-29 09:39:20.972522 b1b7e1a5-cbd4-45ef-86ba-f53fe5ec5cb0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1198723262"}, "pid": "8310", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:21.065139 2024-07-29 09:39:21.065149 1041675d-bbf3-46fe-ba91-fdb168b68680 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1191508781"}, "pid": "8311", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:21.15398 2024-07-29 09:39:21.15399 be233f2c-9bbe-40ad-9272-b3e2677e3643 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1188589024"}, "pid": "8312", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:21.24478 2024-07-29 09:39:21.244788 758ec6e1-e4bc-48a5-8f56-68953e380b03 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1183863349"}, "pid": "8313", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:21.33361 2024-07-29 09:39:21.333622 9110aefe-753a-45e0-8ab8-8de0c6b236cc {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1181268311"}, "pid": "8314", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:21.4234 2024-07-29 09:39:21.423411 4b8c30b1-1512-4cc7-8f1c-e4f8cc67ead1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1181007100"}, "pid": "8315", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:21.50953 2024-07-29 09:39:21.509543 863c5af2-d288-4d9c-9cad-f696c5937b42 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1173842845"}, "pid": "8316", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:21.598706 2024-07-29 09:39:21.598719 b4c758b2-2d16-4896-86c7-2d04fcc44ead {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1173062238"}, "pid": "8317", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:21.702826 2024-07-29 09:39:21.702836 b9ed2885-2827-4d60-959a-7bcbd0a52531 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1172567794"}, "pid": "8318", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:21.760584 2024-07-29 09:39:21.76059 09a1628d-59c0-4c78-91ba-1dbbc08ad52c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1166161722"}, "pid": "8319", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:21.826584 2024-07-29 09:39:21.826592 7756e702-3a8e-4bb0-90a9-0ab30abaf852 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1165352362"}, "pid": "8320", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:21.905393 2024-07-29 09:39:21.905405 d8daa792-8195-4dd4-adbb-c4a8fbbfed3f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1165347768"}, "pid": "8321", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:21.996174 2024-07-29 09:39:21.996183 47ee47a0-93fa-454f-ae7b-e64aa263a3c1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1162072040"}, "pid": "8322", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:22.090797 2024-07-29 09:39:22.09081 50eae9e4-38a0-429e-9f43-227c5ff22db4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1161142878"}, "pid": "8323", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:22.182399 2024-07-29 09:39:22.182411 2fa3f94b-0562-4fae-9346-94934c9c5e9f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1155851412"}, "pid": "8324", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:22.264628 2024-07-29 09:39:22.264636 4b17c12f-136d-421f-a716-a21803b3918c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1155424573"}, "pid": "8325", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:22.342423 2024-07-29 09:39:22.342431 a80a376f-3959-4511-bf9f-4181a11dfa11 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1153834367"}, "pid": "8326", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:22.420301 2024-07-29 09:39:22.420309 3af3000e-9228-415b-9081-240494693254 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1150861010"}, "pid": "8327", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:22.510849 2024-07-29 09:39:22.510862 ea6031a0-0b60-4613-a9e8-c9ac244c7c87 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1145186815"}, "pid": "8328", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:22.597968 2024-07-29 09:39:22.597979 8d16c67e-e75f-4a59-90f1-5b71486f5507 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1144301971"}, "pid": "8329", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:22.692968 2024-07-29 09:39:22.69298 6473331d-6bdf-4e0e-a984-3d4d1a39bda7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/114005791X"}, "pid": "8330", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:22.765146 2024-07-29 09:39:22.765148 359cb60a-cc2f-4f08-aebb-036c95b638a0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1139178725"}, "pid": "8331", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:22.836541 2024-07-29 09:39:22.836549 82c56690-fa1c-44bb-a15c-05a546857d44 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1135938261"}, "pid": "8332", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:22.912102 2024-07-29 09:39:22.91211 1b14d221-3ab1-4d2e-8670-528b79bbf2bf {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1122355092"}, "pid": "8333", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:22.983571 2024-07-29 09:39:22.983581 0ebb6d41-6459-48cf-8b49-72ccdefeebf7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1121689914"}, "pid": "8334", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:23.063329 2024-07-29 09:39:23.063339 3e710ac4-4aaf-409c-8dd2-b2fd1672cc44 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1118514823"}, "pid": "8335", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:23.154096 2024-07-29 09:39:23.154103 a41fed94-6a02-4155-8d9c-c3886d495730 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1117164012"}, "pid": "8336", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:23.247522 2024-07-29 09:39:23.247534 54866b8f-74d7-4c24-8a24-a7d29e2e30d1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1116981521"}, "pid": "8337", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:23.338453 2024-07-29 09:39:23.338465 a598f99c-49fd-4eca-81c3-eefe5ade32ae {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1115371371"}, "pid": "8338", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:23.43466 2024-07-29 09:39:23.434672 53dbb365-4987-4a86-9492-edd93bda2ee5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1099123399"}, "pid": "8339", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:23.527437 2024-07-29 09:39:23.527444 c92af0a6-9cf0-456e-b849-deaea6a16763 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1081489480"}, "pid": "8340", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:23.615121 2024-07-29 09:39:23.615133 27546f35-1210-4672-be0e-358b2d749e16 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1078298378"}, "pid": "8341", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:23.717176 2024-07-29 09:39:23.717188 c78b7d53-15f6-4266-a4dd-6878fd235015 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/107366371X"}, "pid": "8342", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:23.79443 2024-07-29 09:39:23.794434 79fb2e80-1cb4-449a-ab71-f5de573d2a98 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1073212491"}, "pid": "8343", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:23.860649 2024-07-29 09:39:23.860657 cac59fc0-ca30-4442-8669-646cafb6e78f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1072727021"}, "pid": "8344", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:23.940342 2024-07-29 09:39:23.940352 874ac7ee-63c2-4289-8694-10deddc301de {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1072723875"}, "pid": "8345", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:24.028626 2024-07-29 09:39:24.028639 7d4d0019-ca22-44f6-b0bd-974f28615932 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/107257439X"}, "pid": "8346", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:24.113068 2024-07-29 09:39:24.113079 ee524752-e2ea-4bfe-bb9e-53b7059d0298 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1070750409"}, "pid": "8347", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:24.201125 2024-07-29 09:39:24.201133 58c605bd-8f2c-40ba-8aa2-4d12afe76450 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1069698822"}, "pid": "8348", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:24.278577 2024-07-29 09:39:24.278587 4e77196e-b3e6-4b1c-afe6-c0efed7c1141 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1069336971"}, "pid": "8349", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:24.383966 2024-07-29 09:39:24.383976 8e300ef7-7b0f-48d1-a090-2b0793a757a8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1068604875"}, "pid": "8350", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:24.47143 2024-07-29 09:39:24.471442 e1bd58a1-e8c3-4972-9836-b7f9b4ec3b0c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1066801789"}, "pid": "8351", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:24.561348 2024-07-29 09:39:24.561358 41eef8c7-bf61-4809-80bb-7205c7c08db9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1064698727"}, "pid": "8352", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:24.648134 2024-07-29 09:39:24.648145 192fec68-8444-4b09-9ad2-b39793b8d7d6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1064281230"}, "pid": "8353", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:24.737925 2024-07-29 09:39:24.737937 baf97a42-4ac5-4fa0-b64b-b292dc4cf95b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1064280692"}, "pid": "8354", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:24.810362 2024-07-29 09:39:24.810365 63ddfbf1-6a07-4518-91cf-a6b5e1e836b4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/106427546X"}, "pid": "8355", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:24.861077 2024-07-29 09:39:24.86108 24141983-0878-4395-a789-18cfce8e2155 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1064098363"}, "pid": "8356", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:24.926611 2024-07-29 09:39:24.926619 25232e46-ea85-4292-845a-47d1e5b08f38 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1063927137"}, "pid": "8357", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:24.998783 2024-07-29 09:39:24.998794 39576bd0-656d-43c0-9e44-56a3b7b2c37c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1063927110"}, "pid": "8358", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:25.082509 2024-07-29 09:39:25.082522 ff5b353e-25d7-481c-947c-29d0686616d9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1063925908"}, "pid": "8359", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:25.164754 2024-07-29 09:39:25.164795 13fb5dc2-0003-46fa-af9e-2e7db8848bde {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1063349230"}, "pid": "8360", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:25.248929 2024-07-29 09:39:25.24894 a5417057-ea54-4d86-afd2-1fb62cc9840d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1062937325"}, "pid": "8361", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:25.337689 2024-07-29 09:39:25.337696 74c2340a-4066-4730-8c07-32773b0403a5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1060931796"}, "pid": "8362", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:25.431319 2024-07-29 09:39:25.43133 48ea1c2a-0ee9-4fbf-966c-6346cb02f895 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1060912503"}, "pid": "8363", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:25.522656 2024-07-29 09:39:25.522669 83e7fd7f-2dc0-444c-8510-18355aa5397f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1060909251"}, "pid": "8364", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:25.610419 2024-07-29 09:39:25.610432 06681fa2-5d65-4fcf-8eb6-4e86d2ed07e4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1060907534"}, "pid": "8365", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:25.696325 2024-07-29 09:39:25.696333 bdd2c35d-0536-43fd-bdad-e08994d3f943 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1060882345"}, "pid": "8366", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:25.785803 2024-07-29 09:39:25.785814 c269ce5b-12ad-4e81-9f7c-3f691a3eff04 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1060882191"}, "pid": "8367", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:25.866851 2024-07-29 09:39:25.866858 fa2f03a2-3e72-4f44-97e9-770944aa168f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1060881373"}, "pid": "8368", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:25.934021 2024-07-29 09:39:25.934031 adfe6153-98a6-4e07-b95c-b964f09b2d5e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1060881039"}, "pid": "8369", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:26.01249 2024-07-29 09:39:26.0125 4af81281-46a3-49dd-b867-357aea1ce661 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1060858703"}, "pid": "8370", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:26.091536 2024-07-29 09:39:26.091546 ec7afd95-34e9-42d6-9597-f94a2517fd8f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1060811529"}, "pid": "8371", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:26.174436 2024-07-29 09:39:26.174446 fb1f9dca-27d4-4551-be0e-c13b9cbc5fd0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1060804263"}, "pid": "8372", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:26.262187 2024-07-29 09:39:26.2622 f98baac9-1f10-4aa4-bf48-80f3059c7b6a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1060778947"}, "pid": "8373", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:26.351078 2024-07-29 09:39:26.351089 defe6a85-82ff-4a40-a1d1-8f2c3c65fb4e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1060674483"}, "pid": "8374", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:26.429075 2024-07-29 09:39:26.429087 49aa4cef-687f-4b5a-aeb7-f8da82d72b67 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1060581957"}, "pid": "8375", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:26.514404 2024-07-29 09:39:26.514414 d0a01518-9c3d-42c1-b656-5f0e90b516cc {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1060577895"}, "pid": "8376", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:26.594728 2024-07-29 09:39:26.59474 e60ae934-ff0c-4d99-bc89-a850d17011ae {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/106057683X"}, "pid": "8377", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:26.677039 2024-07-29 09:39:26.677049 1c563c44-a720-4fba-aef2-1546af47265e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1060521229"}, "pid": "8378", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:26.76507 2024-07-29 09:39:26.765081 730f2bd4-28af-443c-a147-105616a1e135 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1060471329"}, "pid": "8379", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:26.860962 2024-07-29 09:39:26.860967 6f44d072-5a5c-40d9-92a8-395fff6bcf60 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1060399172"}, "pid": "8380", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:26.929235 2024-07-29 09:39:26.929243 f9a3999f-a8eb-45fb-95c5-339ea8498ce1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1060358328"}, "pid": "8381", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:26.996127 2024-07-29 09:39:26.996135 3c8cdfcd-79f3-4d23-8779-1a814b65bf4b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/106013411X"}, "pid": "8382", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:27.064042 2024-07-29 09:39:27.064051 3bd92525-8cde-4fcd-8a6e-f8fe7367d049 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1060114909"}, "pid": "8383", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:27.144314 2024-07-29 09:39:27.144326 922bc2ee-98aa-4f92-83cd-4d208d5edce0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1060090236"}, "pid": "8384", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:27.233702 2024-07-29 09:39:27.233711 0cf3f7bd-7fcd-4257-90de-d22c39330783 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1060077914"}, "pid": "8385", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:27.31239 2024-07-29 09:39:27.312398 096b91dd-2621-4eba-8181-f3e358d04110 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1060077817"}, "pid": "8386", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:27.395133 2024-07-29 09:39:27.395141 e311ff46-c654-48b0-9f72-00ed99f3f8aa {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1059889455"}, "pid": "8387", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:27.479526 2024-07-29 09:39:27.479537 d3f842b6-322b-4003-a030-62436b0fb07e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1059823527"}, "pid": "8388", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:27.578198 2024-07-29 09:39:27.57821 7870efd2-35a2-41f7-8b10-0665d9b13582 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1059732483"}, "pid": "8389", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:27.663119 2024-07-29 09:39:27.663129 d3e33e8e-ae7b-4d25-a741-d7da763846f9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/105962091X"}, "pid": "8390", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:27.748328 2024-07-29 09:39:27.748338 e21fb56c-6c6d-455a-8bc7-d2b58036c347 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/105960552X"}, "pid": "8391", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:27.832166 2024-07-29 09:39:27.832178 e86d4605-f7c6-4b4f-b438-da4b86ab2618 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1059558653"}, "pid": "8392", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:27.908553 2024-07-29 09:39:27.908557 e2b6b34c-af4e-41e9-8544-db9441f6ed23 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1059464667"}, "pid": "8393", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:27.96481 2024-07-29 09:39:27.964815 7727fba1-e41f-436b-94d8-14a27b986825 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1059463385"}, "pid": "8394", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:28.059098 2024-07-29 09:39:28.059104 c6f1d455-5c1a-4bbc-8cc0-364cfd7f7312 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1059408058"}, "pid": "8395", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:28.145834 2024-07-29 09:39:28.145843 f4558730-f07c-410a-8bb1-5be543ba2d9b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1059388502"}, "pid": "8396", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:28.247114 2024-07-29 09:39:28.247122 f19a2ebd-ca0c-4374-b1b3-67aab97d69ac {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1059388499"}, "pid": "8397", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:28.361462 2024-07-29 09:39:28.361471 66120e93-6dd9-400d-8fbf-ec75756db0af {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1059388464"}, "pid": "8398", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:28.463914 2024-07-29 09:39:28.463922 06726641-e8ba-4c99-91a7-e57547caecf8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1059384434"}, "pid": "8399", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:28.556806 2024-07-29 09:39:28.556809 ae98a923-5f1b-4bfe-8b5b-3aa97bc002f1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1059383780"}, "pid": "8400", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:28.655068 2024-07-29 09:39:28.655077 1c63b57e-4935-4f91-8ef0-a501bb831a64 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1059323001"}, "pid": "8401", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:28.743935 2024-07-29 09:39:28.743949 5e8fd54e-b031-400a-8412-fac0b8f8a8c8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1059271745"}, "pid": "8402", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:28.825602 2024-07-29 09:39:28.825609 42a0f9c5-e98c-497b-893d-f39751f33eee {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1059254697"}, "pid": "8403", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:28.914238 2024-07-29 09:39:28.914241 25d2d67a-db8c-4b3f-9bb0-07ad8c31e67b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1059254646"}, "pid": "8404", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:28.969752 2024-07-29 09:39:28.969761 9d025756-62d3-4a82-9d3f-5c40ecfe8d63 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1059226529"}, "pid": "8405", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:29.036903 2024-07-29 09:39:29.036912 3e7bfabe-e56d-4436-9d00-70b76c23c22b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1059152312"}, "pid": "8406", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:29.117554 2024-07-29 09:39:29.117566 eb4108e6-cac2-4dcd-82be-9fbafbae59b2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1059103257"}, "pid": "8407", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:29.194416 2024-07-29 09:39:29.194425 7f5f4c8a-4dee-4cb9-98fa-c90227caa1bf {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1059090767"}, "pid": "8408", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:29.28253 2024-07-29 09:39:29.282539 67213a76-8fab-472e-b95c-a003d8843f13 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1059087871"}, "pid": "8409", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:29.36493 2024-07-29 09:39:29.364942 8e6c5690-596d-4fae-928c-d70a72cb1214 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1058986295"}, "pid": "8410", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:29.45637 2024-07-29 09:39:29.456383 58481e4b-7ed8-4d70-bd61-72f8b23e4f22 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/105896920X"}, "pid": "8411", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:29.540941 2024-07-29 09:39:29.54095 d0a25f35-a439-4b8d-bd6b-cc14ea1ed9bf {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1058846361"}, "pid": "8412", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:29.636795 2024-07-29 09:39:29.636809 5dbfcd2f-5d2b-4221-892d-ca4bb7707535 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1058723790"}, "pid": "8413", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:29.730155 2024-07-29 09:39:29.730173 ef61c14d-edc1-452f-af42-ad91b536acbc {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1058674900"}, "pid": "8414", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:29.819477 2024-07-29 09:39:29.819489 804fa5e8-284d-4a78-b11d-be9a5a5e4849 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1058669559"}, "pid": "8415", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:29.914958 2024-07-29 09:39:29.914969 ec447da4-8272-4618-b01b-e08cd29fc464 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/105862394X"}, "pid": "8416", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:29.975171 2024-07-29 09:39:29.975174 f8ca12c8-008a-41fb-b825-45a896493491 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1058513710"}, "pid": "8417", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:30.031315 2024-07-29 09:39:30.031324 11db3ae1-0b59-4840-b604-29a81cae48aa {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1058507044"}, "pid": "8418", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:30.098456 2024-07-29 09:39:30.098467 65a3d0b4-6de1-4082-a7ad-343a17703038 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1058389041"}, "pid": "8419", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:30.188902 2024-07-29 09:39:30.188911 fca0ba5c-aff7-4fbe-a6ea-9d9ceeab6a54 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1058382799"}, "pid": "8420", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:30.268556 2024-07-29 09:39:30.268564 775f4cb4-d84e-4cec-9d7f-0ebb21d4eba5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1058371266"}, "pid": "8421", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:30.402305 2024-07-29 09:39:30.402315 b51d5628-b253-404c-9d74-0cf2b2e06638 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1058370677"}, "pid": "8422", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:30.487296 2024-07-29 09:39:30.487306 79f72991-ebc2-40fe-b2f9-7dfdd5e33d73 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1058284371"}, "pid": "8423", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:30.571762 2024-07-29 09:39:30.571769 320c7c4a-7372-4c57-b488-7617c5430c9f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1058284304"}, "pid": "8424", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:30.660497 2024-07-29 09:39:30.660508 3f2d965b-f607-4054-8761-15b31d0059d0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1058284096"}, "pid": "8425", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:30.749612 2024-07-29 09:39:30.749621 6c0b6f19-afdc-4ca8-bb26-962c5a7941e5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1058280910"}, "pid": "8426", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:30.834667 2024-07-29 09:39:30.834678 c4d66978-ccc2-4435-bdeb-20811191d0f0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1058249436"}, "pid": "8427", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:30.929563 2024-07-29 09:39:30.929573 c90fdf99-c30d-41bc-b0ae-6fc2cbd82d2f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1058206753"}, "pid": "8428", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:30.997081 2024-07-29 09:39:30.997084 22dcca4c-9530-46ab-ba8b-f4b8c3ac59b7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1058118161"}, "pid": "8429", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:31.054527 2024-07-29 09:39:31.054536 efdc3a7b-12e8-4e88-be29-247f9a3f2e38 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1055857745"}, "pid": "8430", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:31.126448 2024-07-29 09:39:31.126457 c09bc622-209d-4a1e-9ab4-f3d46c68a26a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1054037531"}, "pid": "8431", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:31.206929 2024-07-29 09:39:31.206936 70b3cddf-bd56-4ba3-8712-82fb423a7c49 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1052970427"}, "pid": "8432", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:31.290353 2024-07-29 09:39:31.290364 5492ed7f-dfcf-4e7b-81d0-d60942bbe936 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1051355478"}, "pid": "8433", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:31.375333 2024-07-29 09:39:31.375344 8f1ff699-a254-44be-abf0-d4661e57b2a7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1050801644"}, "pid": "8434", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:31.466324 2024-07-29 09:39:31.466336 fe38bad0-c361-4d29-9751-c78516000a08 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1050440188"}, "pid": "8435", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:31.56699 2024-07-29 09:39:31.566999 ff2b856e-6d2a-4f2a-b47e-98155cf9cb95 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1049971213"}, "pid": "8436", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:31.648395 2024-07-29 09:39:31.648403 eef4f90c-74f0-4bc7-b6b5-5b05ad47e3b4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1049453719"}, "pid": "8437", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:31.732727 2024-07-29 09:39:31.732739 825b66bc-e534-4a38-b539-a67550a1291f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/104797553X"}, "pid": "8438", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:31.8236 2024-07-29 09:39:31.823612 6ae6dfba-8088-4991-bcfc-a0b912586e6e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1047231085"}, "pid": "8439", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:31.921176 2024-07-29 09:39:31.921188 526fd364-129e-4470-845f-4cec58a30939 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1041610890"}, "pid": "8440", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:32.001415 2024-07-29 09:39:32.00142 8306bd6c-c36e-4e05-83f1-f59eab8ee6a0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1037919874"}, "pid": "8441", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:32.054715 2024-07-29 09:39:32.054727 9cfdaf9e-a929-461f-b8da-536d2ef01753 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1034281828"}, "pid": "8442", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:32.133036 2024-07-29 09:39:32.133044 d6eb217c-4544-4a70-a58b-d645459557a8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1033705691"}, "pid": "8443", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:32.218665 2024-07-29 09:39:32.218678 43767d12-69f5-48e3-81b5-5b4ad5fd5caa {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1030464197"}, "pid": "8444", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:32.298325 2024-07-29 09:39:32.298335 633dc177-7683-4c9f-82be-41f11ffd0a50 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1028524978"}, "pid": "8445", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:32.382541 2024-07-29 09:39:32.382551 2e7ee1a1-82f6-4467-967b-9f677447e9bd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1027073808"}, "pid": "8446", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:32.462967 2024-07-29 09:39:32.462978 8edb87f0-947a-48b8-8e35-2dab31fe68ec {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1027071171"}, "pid": "8447", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:32.550352 2024-07-29 09:39:32.550362 88d9e0df-be42-4330-845c-828180fe3811 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1026470986"}, "pid": "8448", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:32.639899 2024-07-29 09:39:32.63991 43a1f6be-adf5-4b0b-93f6-6738fa94f0bc {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1026351537"}, "pid": "8449", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:32.723666 2024-07-29 09:39:32.723675 424b7c2d-b637-482b-8baf-52ad55e67dd7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1025228928"}, "pid": "8450", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:32.820268 2024-07-29 09:39:32.820283 9f6367b8-2fa3-4ea8-a970-ab36d3e92b84 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1023745712"}, "pid": "8451", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:32.921227 2024-07-29 09:39:32.92124 d878e487-bd20-4c39-b950-7367047e8475 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1023362872"}, "pid": "8452", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:33.013876 2024-07-29 09:39:33.013884 66d694c9-cc63-4fe9-a664-ea34d66bddcb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1022832425"}, "pid": "8453", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:33.076381 2024-07-29 09:39:33.076389 db24404e-5860-4fba-a9a5-dcaef6b5a487 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1021256064"}, "pid": "8454", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:33.143617 2024-07-29 09:39:33.143624 f271cc25-f9d5-4c00-8809-bdae3ab3b600 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1018220429"}, "pid": "8455", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:33.22506 2024-07-29 09:39:33.225067 453cfd18-9c8b-4957-89f2-92e1f9716f93 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1017491062"}, "pid": "8456", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:33.310655 2024-07-29 09:39:33.310667 5ab72916-90ac-4cfd-9578-1408a2845635 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1017490090"}, "pid": "8457", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:33.398784 2024-07-29 09:39:33.398792 3db0e103-6b60-4555-af64-38c950329196 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1017217165"}, "pid": "8458", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:33.470342 2024-07-29 09:39:33.47035 1185b175-5988-401e-84f8-4048a6279756 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1017177503"}, "pid": "8459", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:33.55171 2024-07-29 09:39:33.551716 2354a02e-134c-4d63-b388-7fe48635ebd9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1017027366"}, "pid": "8460", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:33.633734 2024-07-29 09:39:33.633736 908bb38b-a311-4ce6-b86f-886d79915a4e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1016810989"}, "pid": "8461", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:33.724274 2024-07-29 09:39:33.724283 4d6b7eb9-dd2e-45b9-a650-250ead199f03 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1016599463"}, "pid": "8462", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:33.817145 2024-07-29 09:39:33.817154 d32ee1a3-58d9-48bb-895a-3d3f9cdf3af4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1016326106"}, "pid": "8463", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:33.914498 2024-07-29 09:39:33.914505 ca1878ce-fe0a-495c-af84-7d4eb99f2376 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1015079253"}, "pid": "8464", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:34.024473 2024-07-29 09:39:34.024484 4e33bb20-d91c-4445-ae1d-f1b5a7caf2a6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1013014065"}, "pid": "8465", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:34.082793 2024-07-29 09:39:34.082797 692e00db-9e27-4679-8bd2-13c39dc0557c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1011954141"}, "pid": "8466", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:34.169966 2024-07-29 09:39:34.169976 391eaafc-b0e0-4011-9fa6-61fdce23aa3f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1011935201"}, "pid": "8467", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:34.265984 2024-07-29 09:39:34.265992 5de1007a-147f-48a4-8c2d-590bf82f04e2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1011536455"}, "pid": "8468", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:34.359615 2024-07-29 09:39:34.359625 a7c90be4-70d8-4cd4-86af-5fe1a6a6bd22 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1011385856"}, "pid": "8469", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:34.450499 2024-07-29 09:39:34.450511 e7cc963c-8c24-4f5d-98d2-948f93c279d5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1011285738"}, "pid": "8470", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:34.554963 2024-07-29 09:39:34.554974 b892cbed-fd9d-4064-a186-314645bb3f68 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1011285436"}, "pid": "8471", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:34.637812 2024-07-29 09:39:34.63782 26fa0048-aad7-4751-b3c0-424424780a8a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1011282518"}, "pid": "8472", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:34.70977 2024-07-29 09:39:34.709778 d8f35828-8110-4671-ba5f-49283b484d8e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1011281368"}, "pid": "8473", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:34.784457 2024-07-29 09:39:34.784465 a4417b8e-dbfd-4be4-b746-2e286b2843c7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1011278723"}, "pid": "8474", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:34.853176 2024-07-29 09:39:34.853186 4fc79000-d880-4458-b1a8-168969beb2e8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1011253313"}, "pid": "8475", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:34.937883 2024-07-29 09:39:34.937895 daec5a3a-a1c6-4b76-ba31-7d51746f6ff2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1011212722"}, "pid": "8476", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:35.037299 2024-07-29 09:39:35.037309 29da5fa0-8ef4-4825-a5bc-60dad61f4851 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1011172399"}, "pid": "8477", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:35.117665 2024-07-29 09:39:35.117675 ac580902-a26e-4c68-8160-821fc8be27c4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1011095351"}, "pid": "8478", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:35.197903 2024-07-29 09:39:35.197913 1f1ce889-2edc-4824-812c-93ddca4f7f32 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1010824597"}, "pid": "8479", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:35.274393 2024-07-29 09:39:35.274401 5024d4ac-35aa-4cce-bb01-b620e890f74e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1010820389"}, "pid": "8480", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:35.347761 2024-07-29 09:39:35.34777 a5a57416-b011-4c25-a414-8367630dc095 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/101081933X"}, "pid": "8481", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:35.435755 2024-07-29 09:39:35.435762 f9d0591a-316e-45ac-a360-585ecdf7bc98 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/100974786X"}, "pid": "8482", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:35.529392 2024-07-29 09:39:35.529402 e0464b70-c04d-47ef-a3fa-7aead850131d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1009172255"}, "pid": "8483", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:35.610294 2024-07-29 09:39:35.610301 26de9d6c-db2d-4a04-adb8-007a5437bf14 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/100914135X"}, "pid": "8484", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:35.708231 2024-07-29 09:39:35.70824 97445e4e-09e3-4b2d-ab25-2324b0518ed2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1008599360"}, "pid": "8485", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:35.801085 2024-07-29 09:39:35.801099 da7516ac-df16-4b30-890e-eb2ca75e259b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1007558903"}, "pid": "8486", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:35.895548 2024-07-29 09:39:35.89556 c272e444-dc36-4c50-8d52-443ff336d474 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1007553405"}, "pid": "8487", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:35.988149 2024-07-29 09:39:35.988158 1c91ed0e-6b90-48ec-b640-d53fc1f4ed52 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1007096462"}, "pid": "8488", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:36.083498 2024-07-29 09:39:36.083506 0ef93132-1595-402c-ad79-a64e1c0c217d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1006156577"}, "pid": "8489", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:36.14798 2024-07-29 09:39:36.147987 18c2d68f-6602-4374-ab51-b9e8617fca08 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1005952930"}, "pid": "8490", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:39.804775 2024-07-29 09:39:36.229983 b1871f0b-bb4b-48cc-bcc9-e6d0f9012b58 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1005638322"}, "pid": "7852", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/144664194"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 2 +2024-07-29 09:39:36.330221 2024-07-29 09:39:36.330231 5f1bff00-0c4a-4c4c-8bfc-dac142f15c91 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1005003262"}, "pid": "8491", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:36.427385 2024-07-29 09:39:36.427394 b82d8f7b-f851-4966-93ab-97a2d625fa30 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1003591590"}, "pid": "8492", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:36.511157 2024-07-29 09:39:36.511166 d59d8256-baf9-4d7c-93e8-0229327b4367 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1001213157"}, "pid": "8493", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:36.590878 2024-07-29 09:39:36.590887 db3617be-e2a8-4bb7-9609-2dc80c5ac60c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1000465403"}, "pid": "8494", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:36.678012 2024-07-29 09:39:36.678024 2f12cb57-4a25-46fa-ad2a-b9fe8832548c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/999617249"}, "pid": "8495", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:36.773286 2024-07-29 09:39:36.773297 0e9360a1-dc15-46c8-ae6d-806dff576bda {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/999602810"}, "pid": "8496", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:36.867275 2024-07-29 09:39:36.867285 62802ddf-2c15-4251-a3d6-4d87a22d68bf {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/999129317"}, "pid": "8497", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:37.017984 2024-07-29 09:39:37.017994 ca6a6723-4786-4f1e-943a-cf7d107872d0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/999038095"}, "pid": "8498", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:37.107549 2024-07-29 09:39:37.107559 29b93538-63e5-44be-b3a9-e2054a37ffbf {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/998759074"}, "pid": "8499", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:37.173808 2024-07-29 09:39:37.173811 bc0160eb-da2b-4e03-beb8-54c30c37e090 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/997781491"}, "pid": "8500", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:37.238096 2024-07-29 09:39:37.238106 9a63fd75-9709-430b-8502-42de46a61b05 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/994660987"}, "pid": "8501", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:37.32062 2024-07-29 09:39:37.320629 28d1ed4c-3bfa-47b2-92e7-a0ee0fab0b38 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/994508417"}, "pid": "8502", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:37.408464 2024-07-29 09:39:37.408472 4b2d451e-781c-4914-b7f1-1cb13c6e2a32 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/994042582"}, "pid": "8503", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:37.497565 2024-07-29 09:39:37.497574 d5bdd1c9-9b4b-4d36-a9a6-e9b4e2a37012 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/993971806"}, "pid": "8504", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:37.589118 2024-07-29 09:39:37.589129 56a4081b-7fac-42e1-8f53-ac90056d683e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992779871"}, "pid": "8505", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:37.74034 2024-07-29 09:39:37.740343 1a6ebbaf-c520-429d-8668-2a630a03d49a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992757681"}, "pid": "8506", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:37.792571 2024-07-29 09:39:37.792574 5369d1a8-c608-437c-ba28-9218eabbc28c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992754151"}, "pid": "8507", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:37.842192 2024-07-29 09:39:37.842195 35ec6a56-5fb0-42ae-85ff-de13b52d94ae {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992753589"}, "pid": "8508", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:37.88464 2024-07-29 09:39:37.884644 c8113ae2-9090-4ce6-91e7-db0cdc12afec {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992747260"}, "pid": "8509", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:37.931081 2024-07-29 09:39:37.931084 7efd443d-ae3b-4fd5-975c-8ee13bc53031 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992745489"}, "pid": "8510", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:38.00031 2024-07-29 09:39:38.000318 7267a823-e2a8-4046-9cf3-b0464c453a11 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992744431"}, "pid": "8511", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:38.070355 2024-07-29 09:39:38.070365 54df38c3-1c00-41b5-9b67-11137436955f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992744040"}, "pid": "8512", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:38.164125 2024-07-29 09:39:38.164134 fb5283f9-6f51-45bc-9d05-ae9254bc4c38 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992742145"}, "pid": "8513", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:38.217727 2024-07-29 09:39:38.217731 d8011de9-f48d-4397-86af-efc973eeaaea {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992740622"}, "pid": "8514", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:38.285002 2024-07-29 09:39:38.285011 31436919-7ef9-4d29-91b3-af90387fa9f2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992740002"}, "pid": "8515", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:38.358919 2024-07-29 09:39:38.358929 d340d642-4345-4aa1-bade-ff66766adda2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992739888"}, "pid": "8516", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:38.442226 2024-07-29 09:39:38.442236 45b82dfa-5e57-4598-8ea6-860a636e8a97 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992734894"}, "pid": "8517", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:38.522902 2024-07-29 09:39:38.522912 7f38339d-f2e8-49de-8b3f-392ffe01e120 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992733510"}, "pid": "8518", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:38.619024 2024-07-29 09:39:38.61906 7bf00ee9-bb40-463d-a312-001847428f6c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992258820"}, "pid": "8519", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:38.706865 2024-07-29 09:39:38.706876 504f31c3-c0a5-4343-b013-acbeb15fa3ec {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/991512669"}, "pid": "8520", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:38.799525 2024-07-29 09:39:38.799536 8f258d04-2cdd-4d54-9e3d-0c6a42bb2c21 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/99110546X"}, "pid": "8521", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:38.915194 2024-07-29 09:39:38.915202 c9e801e2-7aea-4b2d-b3cc-75f6ce551c3f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/990635139"}, "pid": "8522", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:39.010977 2024-07-29 09:39:39.010986 558e1f65-ea49-4292-bf4b-0d4d1532a901 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/989819264"}, "pid": "8523", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:39.118035 2024-07-29 09:39:39.11805 1139afb0-9e99-47d8-832f-acf69e0a7825 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/987246100"}, "pid": "8524", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:39.207293 2024-07-29 09:39:39.207297 d3a224d6-74fd-4a8d-8de5-bd473f32fe8b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/986124265"}, "pid": "8525", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:39.282248 2024-07-29 09:39:39.282256 ff9fa849-6e63-4a6e-b0f0-173a0fd22fe5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/985953780"}, "pid": "8526", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:39.360517 2024-07-29 09:39:39.360527 29e6a865-976c-4d36-a2b2-503681b306d5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/985948116"}, "pid": "8527", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:39.454764 2024-07-29 09:39:39.454776 a49e072f-3750-4351-b046-fe964cd0f995 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/985147172"}, "pid": "8528", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:39.562361 2024-07-29 09:39:39.562402 e7fdfe5a-cde8-449d-b5a9-7d812f15addd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/985075619"}, "pid": "8529", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:39.654334 2024-07-29 09:39:39.654347 7740a1db-d457-4684-8e9d-d285a0a1f193 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/984505180"}, "pid": "8530", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:39.751517 2024-07-29 09:39:39.75153 a85245b1-10d3-42f9-aac9-2a5e2474b07c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/983782784"}, "pid": "8531", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:39.843136 2024-07-29 09:39:39.843146 0db7ec80-655e-4f56-bd62-5a9bbfc1efb0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/983616299"}, "pid": "8532", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:39.934789 2024-07-29 09:39:39.9348 0a38d5a9-5c10-4e5d-be31-5b0ac121f4bb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/98350816X"}, "pid": "8533", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:40.030993 2024-07-29 09:39:40.031005 842acd1f-4157-49d2-a9e4-c982f32a2b29 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/983481644"}, "pid": "8534", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:40.130896 2024-07-29 09:39:40.130905 28abb386-ede4-4367-ac2e-60659f49b8a5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/983481628"}, "pid": "8535", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:40.223902 2024-07-29 09:39:40.22391 57c3a65a-ca38-4ae8-8767-db233b9246c0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/982938322"}, "pid": "8536", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:40.286443 2024-07-29 09:39:40.286454 489cbd6a-f1df-4fc7-a0eb-22b82244486b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/982377649"}, "pid": "8537", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:40.381661 2024-07-29 09:39:40.381668 6ed4431f-8245-4bef-833b-ebf8dca7f201 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/982125461"}, "pid": "8538", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:40.473088 2024-07-29 09:39:40.473097 b243e42c-44af-4dc3-93e2-31eb47f4b75a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/981073328"}, "pid": "8539", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:40.570107 2024-07-29 09:39:40.570117 f4789314-37d9-4211-84bf-217ee7ba7624 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/98106521X"}, "pid": "8540", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:40.667931 2024-07-29 09:39:40.667939 d8f097c7-2d48-4c3e-a3f1-e614ad209a92 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/980868459"}, "pid": "8541", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:40.746553 2024-07-29 09:39:40.746563 fa47f1e4-c013-4b9a-b9ca-f03fbcc43a4d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/980347890"}, "pid": "8542", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:40.82654 2024-07-29 09:39:40.826548 eb1d18a0-a6ed-4d95-9845-f6c3649cba1e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/979633079"}, "pid": "8543", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:40.921957 2024-07-29 09:39:40.921968 48311105-12a7-498a-9f2c-58bf2e79e4f1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/979217253"}, "pid": "8544", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:41.019929 2024-07-29 09:39:41.01994 a41d8e40-ed00-4352-9f41-db01872d9adb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/979214998"}, "pid": "8545", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:41.112002 2024-07-29 09:39:41.112011 69a84165-bcd4-4fef-a9c9-4de0d89980cd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/977813762"}, "pid": "8546", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:41.199632 2024-07-29 09:39:41.199643 a3d12642-e1aa-44c0-a9e4-387fefdf065e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/977682633"}, "pid": "8547", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:41.281328 2024-07-29 09:39:41.281335 d7203bde-7b87-49c8-8338-7b21a9b3b138 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/977294390"}, "pid": "8548", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:41.364721 2024-07-29 09:39:41.364729 88f95213-b39e-404a-8053-0f3c68d531cf {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/976865351"}, "pid": "8549", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:41.4608 2024-07-29 09:39:41.460811 a9e964e6-2104-4663-b853-ed1be56ecb22 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/976859416"}, "pid": "8550", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:41.550175 2024-07-29 09:39:41.550184 daa54e7f-b9fe-4170-bbdf-af3671f3855b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/976009048"}, "pid": "8551", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:41.630382 2024-07-29 09:39:41.630389 93f9e681-7fe4-4d34-ab3a-22047aab92f0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/975670824"}, "pid": "8552", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:41.718854 2024-07-29 09:39:41.718864 84cd7bdc-00a1-4370-a7cd-20240d094c6e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/975199056"}, "pid": "8553", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:41.808443 2024-07-29 09:39:41.808456 875b86ea-e28d-46fc-8e64-fdc9cb6e9723 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/97466068X"}, "pid": "8554", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:41.912416 2024-07-29 09:39:41.912428 adc50265-c538-48a2-8bea-ec9bcbac9413 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/974476560"}, "pid": "8555", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:42.020137 2024-07-29 09:39:42.020146 96f922e5-3836-4614-bf33-7f63053baeb5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/974160032"}, "pid": "8556", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:42.121129 2024-07-29 09:39:42.121161 15cd2b67-8653-4f01-ba2f-5ca61d3604d5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/97397687X"}, "pid": "8557", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:42.216497 2024-07-29 09:39:42.216505 ad018c56-d693-40ca-83ae-dfd4e54971e4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/972616705"}, "pid": "8558", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:42.293666 2024-07-29 09:39:42.29367 9e7b4dc5-c8d3-4ab7-b37a-7d9e5fde49f8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/972391010"}, "pid": "8559", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:42.348054 2024-07-29 09:39:42.348062 8d169002-c813-45d7-a95c-2b743e62172f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/971044899"}, "pid": "8560", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:42.426623 2024-07-29 09:39:42.426626 de9f453a-06fb-4f41-919c-835aaa264253 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/970758065"}, "pid": "8561", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:42.507867 2024-07-29 09:39:42.507875 729f2092-4cbd-495b-b475-89c79c0a54f3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/970679645"}, "pid": "8562", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:42.606711 2024-07-29 09:39:42.606722 96845e92-ee36-47c0-b7e9-19f6968314d2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/970190417"}, "pid": "8563", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:42.705125 2024-07-29 09:39:42.705136 32074261-e8e1-4366-827a-1cf88bfba9b8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/969678363"}, "pid": "8564", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:42.80158 2024-07-29 09:39:42.801593 752481f7-d95d-4b13-9c38-8b3dbe2926ea {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/969131240"}, "pid": "8565", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:42.912351 2024-07-29 09:39:42.912362 e0baab1a-3dea-41e2-a701-72acabb1ce94 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/968663664"}, "pid": "8566", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:43.011029 2024-07-29 09:39:43.011042 b247cc86-abcd-4b87-8a91-1f24033d4a15 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/968634737"}, "pid": "8567", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:43.118398 2024-07-29 09:39:43.118407 e4497a67-0924-4d66-9172-b5600019f3ad {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/968438121"}, "pid": "8568", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:43.194022 2024-07-29 09:39:43.194032 b8fdf951-483e-4ce0-ac03-edc0e607cf74 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/968387705"}, "pid": "8569", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:43.29126 2024-07-29 09:39:43.291273 fb407f28-4ada-49dc-a866-08209c49db34 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/968377955"}, "pid": "8570", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:43.366453 2024-07-29 09:39:43.366481 5792865b-d45f-4f14-9d50-b1fac4e38bc2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/968360009"}, "pid": "8571", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:43.450179 2024-07-29 09:39:43.450189 7f03c5d1-7c4f-417d-9aeb-967baf0cd5d3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/96832780X"}, "pid": "8572", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:43.564729 2024-07-29 09:39:43.564743 2c02814f-abb6-4e53-bea4-4453c3f00f7a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/967876710"}, "pid": "8573", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:43.65951 2024-07-29 09:39:43.659518 1a2b25a6-969a-4f26-99be-c37d3aa7739d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/967734657"}, "pid": "8574", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:43.732483 2024-07-29 09:39:43.73249 87a6e317-55a8-417f-b8b2-993752260f01 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/967659523"}, "pid": "8575", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:43.81246 2024-07-29 09:39:43.81247 65777967-4958-4ef5-9bb5-cb4a2d1fcf03 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/967617987"}, "pid": "8576", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:43.901524 2024-07-29 09:39:43.901536 a4f4ce77-3ac6-45c7-9478-2de9b78c8c90 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/967326133"}, "pid": "8577", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:44.001004 2024-07-29 09:39:44.001017 fd975954-8c7f-4063-b059-0e0418d53830 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/96717757X"}, "pid": "8578", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:44.093559 2024-07-29 09:39:44.093571 3e5a91c9-6118-4d94-8c82-01bdc0f414eb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/967169399"}, "pid": "8579", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:44.192108 2024-07-29 09:39:44.19212 2a184a9e-fed0-402d-9b0d-3557d2337d6f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/967155223"}, "pid": "8580", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:44.291932 2024-07-29 09:39:44.291944 831571d3-9027-4d27-8286-efe65e01433f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/966649052"}, "pid": "8581", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:44.368369 2024-07-29 09:39:44.368374 f13c3ab4-2e8c-4789-ae29-b466910365b7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/966536304"}, "pid": "8582", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:44.42787 2024-07-29 09:39:44.427877 01d6859e-2566-4f5f-bf9a-25a031b3f6a3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/965652785"}, "pid": "8583", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:44.507532 2024-07-29 09:39:44.50754 3b449aef-c3ca-4839-8bdc-c24a85025357 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/965576825"}, "pid": "8584", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:44.590957 2024-07-29 09:39:44.590967 441eb6a9-c9eb-4bad-9f5e-30ee4764a8d1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/965369846"}, "pid": "8585", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:44.679503 2024-07-29 09:39:44.679515 e7bc586d-0c5b-4cfd-9d9b-9fc1cecc213a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/965367924"}, "pid": "8586", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:44.773231 2024-07-29 09:39:44.773241 846d0fb6-61a6-46a3-8de8-513f2a6227a6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/965252973"}, "pid": "8587", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:44.86571 2024-07-29 09:39:44.865721 1ccac438-09e5-41a2-8e59-f48094713a4c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/964979683"}, "pid": "8588", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:44.971748 2024-07-29 09:39:44.971756 f3f575b3-9095-45d9-9786-a2d81e90d3ca {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/964866862"}, "pid": "8589", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:45.074328 2024-07-29 09:39:45.07434 31627e04-284b-49eb-8cf9-03e269308b74 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/964848651"}, "pid": "8590", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:45.169019 2024-07-29 09:39:45.169027 c4a175d5-8088-4e75-bafd-948b3b582752 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/96473222X"}, "pid": "8591", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:45.259707 2024-07-29 09:39:45.259717 d7901bae-7677-4d66-8dd6-64071ebc5fc1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/964720272"}, "pid": "8592", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:45.365172 2024-07-29 09:39:45.36518 107a3a44-9925-46a1-beb1-d0db479deda8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/964519194"}, "pid": "8593", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:45.418036 2024-07-29 09:39:45.418041 9346f220-cb1f-4d24-9188-29a96f7ef573 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/964421062"}, "pid": "8594", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:45.483295 2024-07-29 09:39:45.483325 4c200a5e-1d1a-4e3f-aac9-431c33177277 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/964339676"}, "pid": "8595", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:45.565085 2024-07-29 09:39:45.565094 f2ead112-3cd6-4ef0-9e3e-a540b9ae6194 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/964334666"}, "pid": "8596", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:45.660853 2024-07-29 09:39:45.660864 9c734348-21de-43f3-8600-96720f8297b7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/964248026"}, "pid": "8597", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:45.758852 2024-07-29 09:39:45.758862 68477d8e-e6ad-4a1d-879e-ff03e94cbce8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/964078880"}, "pid": "8598", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:45.857927 2024-07-29 09:39:45.857937 3506ba17-0756-4874-a97a-e6158cd44d34 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/963708708"}, "pid": "8599", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:45.953937 2024-07-29 09:39:45.953946 980c412c-bf89-43a5-be38-94cd380fd0d9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/963707906"}, "pid": "8600", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:46.04419 2024-07-29 09:39:46.044199 cdb8275a-91b1-4fb3-8a8f-345bf8a8cc0a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/963707884"}, "pid": "8601", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:46.132724 2024-07-29 09:39:46.132733 b9e490c4-a0cc-416c-8da7-60bf5b022228 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/963495046"}, "pid": "8602", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:46.221054 2024-07-29 09:39:46.221067 2758e764-489f-4376-b311-febefeb5a7da {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/963483927"}, "pid": "8603", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:46.31556 2024-07-29 09:39:46.315571 280b1df0-1bc0-411f-8db5-6250fc8491bc {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/96317066X"}, "pid": "8604", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:46.408826 2024-07-29 09:39:46.40883 792ee9cf-ecdb-49d2-97b2-08c9d6df36a6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/963127608"}, "pid": "8605", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:46.470928 2024-07-29 09:39:46.470937 670ab1a3-195c-4b08-ae4e-19534d29bbb1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/963125125"}, "pid": "8606", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:46.55447 2024-07-29 09:39:46.554479 fa0b31c4-1804-4ac2-82d1-1ed390fe6164 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/963005553"}, "pid": "8607", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:46.655432 2024-07-29 09:39:46.655445 bc8d9285-e741-4c40-afce-97269522fe0c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/962883026"}, "pid": "8608", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:46.750737 2024-07-29 09:39:46.750747 ea38bb41-1e2c-4c77-b7a1-07adf0744117 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/962846104"}, "pid": "8609", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:46.837942 2024-07-29 09:39:46.837953 e9404e01-b9ee-4f1d-95d6-a6735cb883fe {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/962794015"}, "pid": "8610", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:46.932272 2024-07-29 09:39:46.932285 941cd999-48d0-455d-b10d-af728bc75e28 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/962681539"}, "pid": "8611", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:47.019239 2024-07-29 09:39:47.01925 83c597b0-4793-4aac-95c7-c1f8f32c0da1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/962256978"}, "pid": "8612", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:47.114912 2024-07-29 09:39:47.114919 9acc8ae5-b6f3-45a3-910e-15a05916a27d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/962005959"}, "pid": "8613", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:47.200678 2024-07-29 09:39:47.200684 c9d0346c-9c6f-4915-a2bb-85ed489ed48d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/961909021"}, "pid": "8614", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:47.289002 2024-07-29 09:39:47.289014 23df0b2e-7d71-4f22-8cf9-fbbd88cf1214 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/961468319"}, "pid": "8615", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:47.39011 2024-07-29 09:39:47.390119 06fbcc1c-63e2-4bb7-a0ed-0203f9c266b7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/960936785"}, "pid": "8616", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:47.460485 2024-07-29 09:39:47.460487 2fb48141-44d4-4f66-bd66-4407c076dc7d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/960733108"}, "pid": "8617", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:47.5201 2024-07-29 09:39:47.520108 62ef234e-80ea-45a9-98b5-9dd07e024557 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/960658491"}, "pid": "8618", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:47.591614 2024-07-29 09:39:47.591621 2b95c913-f371-4fa1-acab-f737dbe1c0c3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/960161872"}, "pid": "8619", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:47.670636 2024-07-29 09:39:47.670644 1d48e2d5-c6a4-47a5-b2a8-48bac6afbb77 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/959965831"}, "pid": "8620", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:47.74886 2024-07-29 09:39:47.748872 ebe0c346-3f62-4cca-928b-ca3ce7119341 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/959960775"}, "pid": "8621", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:47.840189 2024-07-29 09:39:47.840199 4b133ee8-8a17-4427-a5bb-da458b329e7d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/959893202"}, "pid": "8622", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:47.934573 2024-07-29 09:39:47.934582 204019fc-4a9c-4a22-9fc0-2d632dc989e7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/959807241"}, "pid": "8623", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:48.020562 2024-07-29 09:39:48.020578 7b3a7600-6a87-4242-b6a6-59c3f6b88110 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/959710248"}, "pid": "8624", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:48.117575 2024-07-29 09:39:48.11759 cd36223f-daa1-46e3-b30f-978bc2cb5e35 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/959143459"}, "pid": "8625", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:48.219594 2024-07-29 09:39:48.219605 7236c936-126f-4e3f-b6b8-524d18db05e2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/958745404"}, "pid": "8626", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:48.323471 2024-07-29 09:39:48.323481 f6c4496f-b068-41d9-b56f-676ff4efcaba {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/958745374"}, "pid": "8627", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:48.420555 2024-07-29 09:39:48.420562 49fef405-aaad-4431-98e4-7abaa00e3138 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/958745307"}, "pid": "8628", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:48.491626 2024-07-29 09:39:48.491628 7793f197-21f6-4636-9f95-2bebca6af081 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/958577447"}, "pid": "8629", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:48.558806 2024-07-29 09:39:48.558814 c27f7aff-97a1-4263-946d-9eda5ff1063d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/958508402"}, "pid": "8630", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:48.629678 2024-07-29 09:39:48.629685 e2df8978-99be-481d-8564-9a94a60ca502 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/958195455"}, "pid": "8631", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:48.697481 2024-07-29 09:39:48.697489 bc610fb3-4821-4347-9f20-025fbe8c0aa3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/958121966"}, "pid": "8632", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:48.76565 2024-07-29 09:39:48.765657 c866e63f-398f-4767-b91d-186bd09ba1da {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/957564554"}, "pid": "8633", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:48.839704 2024-07-29 09:39:48.839713 8e82a399-bc91-4f76-bf07-45f1ee5d2c44 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/957193599"}, "pid": "8634", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:48.966502 2024-07-29 09:39:48.966514 f7d03c3c-989d-4386-8170-c2cdaf6dfe5e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/957133235"}, "pid": "8635", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:49.077681 2024-07-29 09:39:49.07769 83a6b4a5-1697-4de0-9124-a85c31724cad {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/956836976"}, "pid": "8636", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:49.163394 2024-07-29 09:39:49.163403 e7ecad73-75f3-4a26-ae04-a1b1f4a988e7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/956033679"}, "pid": "8637", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:49.236554 2024-07-29 09:39:49.236563 4108a555-e1f7-4d96-b50d-a80ece9fc0ef {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/955952638"}, "pid": "8638", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:49.338747 2024-07-29 09:39:49.338756 3a307f84-eb06-495d-a32a-be5e3817228a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/955845483"}, "pid": "8639", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:49.440395 2024-07-29 09:39:49.440403 cd6fb95c-62a7-456d-9cec-da1d2f889c18 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/955777844"}, "pid": "8640", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:49.521659 2024-07-29 09:39:49.521662 884f8228-73cb-4a02-a4d3-1c08ca37cbd8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/955671906"}, "pid": "8641", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:49.575565 2024-07-29 09:39:49.575569 def595e4-eee6-4b1a-95ab-f5ee7fab4d06 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/955633087"}, "pid": "8642", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:49.641627 2024-07-29 09:39:49.641636 d4ad8dae-5107-4061-9dc7-4c94de8c751f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/955631963"}, "pid": "8643", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:49.72275 2024-07-29 09:39:49.722761 c8eef050-7e1a-4a39-a61d-27ca8ae8bb69 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/955522552"}, "pid": "8644", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:49.820327 2024-07-29 09:39:49.820339 e231d2f0-0f20-416e-ab6f-a57fab87b221 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/955510392"}, "pid": "8645", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:49.923278 2024-07-29 09:39:49.923285 15f5531e-4a15-4e40-8dfd-ef0a9bfe8ef8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/955497205"}, "pid": "8646", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:50.02338 2024-07-29 09:39:50.023391 fd833cd2-8719-4f11-9e4a-b16e78749948 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/955324300"}, "pid": "8647", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:50.124329 2024-07-29 09:39:50.124344 96ff33f4-66f9-46c2-a025-4803bdf50762 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/955297966"}, "pid": "8648", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:50.228395 2024-07-29 09:39:50.228406 5a34ef45-f9c4-4aba-98d4-3cc07fab0884 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/955286999"}, "pid": "8649", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:50.321418 2024-07-29 09:39:50.321429 7530794e-7acc-4532-9ea1-aaf4555c74a6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/955249929"}, "pid": "8650", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:50.414298 2024-07-29 09:39:50.414307 57383f70-c543-4761-8a24-c7ba7ad4df96 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/955181178"}, "pid": "8651", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:50.520945 2024-07-29 09:39:50.520958 c609c37f-ec24-4e24-9e1f-a68aa6a9b55c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/955150507"}, "pid": "8652", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:50.588341 2024-07-29 09:39:50.588347 6db468e5-0663-431d-882f-0ed2b579fefc {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/954752554"}, "pid": "8653", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:50.69236 2024-07-29 09:39:50.692367 4cf280eb-8b48-4f45-9057-a8a7d80522f8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/95471752X"}, "pid": "8654", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:50.786184 2024-07-29 09:39:50.786197 b508feb2-94df-454b-8644-dbc1fba35492 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/95469483X"}, "pid": "8655", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:50.893399 2024-07-29 09:39:50.893405 6cb70e01-a168-4617-8ce2-64a1b403286a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/954658248"}, "pid": "8656", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:50.993547 2024-07-29 09:39:50.993559 d963ba82-091f-4b23-bce1-eaabc0d1e1b3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/95439836X"}, "pid": "8657", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:51.086593 2024-07-29 09:39:51.0866 de014b50-55c4-4f32-8080-a47a87949049 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/954299973"}, "pid": "8658", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:51.187633 2024-07-29 09:39:51.18764 490753f6-b197-4571-8848-23b7c3bfd771 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/954068572"}, "pid": "8659", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:51.291669 2024-07-29 09:39:51.291681 646392c4-ba6d-4564-89de-3463664aca5e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/95406853X"}, "pid": "8660", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:51.391098 2024-07-29 09:39:51.391103 e1943056-2368-473c-b945-821dc211cb14 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/954021185"}, "pid": "8661", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:51.475064 2024-07-29 09:39:51.475077 756beaa6-70a5-459e-8aa3-8aeff834c320 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/953936503"}, "pid": "8662", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:51.563728 2024-07-29 09:39:51.563732 b28b1e27-2950-4d28-8768-41fe95c7941b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/953467732"}, "pid": "8663", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:51.618598 2024-07-29 09:39:51.618603 60136c02-03b2-4f5f-8075-f63c44020d16 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/953463176"}, "pid": "8664", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:51.688545 2024-07-29 09:39:51.688555 247277ad-9f89-4b70-ba78-74ba31d92de6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/953354431"}, "pid": "8665", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:51.771394 2024-07-29 09:39:51.771404 d5b0c8cf-7d03-46cf-951d-e9162ffbd6a5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/95324590X"}, "pid": "8666", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:51.866264 2024-07-29 09:39:51.866272 87b86701-b1b2-4ec8-aaee-7efd8f958124 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/953019209"}, "pid": "8667", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:51.961842 2024-07-29 09:39:51.961854 4f8ae857-eb6c-481c-9c6c-14de5d0db590 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/953011992"}, "pid": "8668", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:52.039223 2024-07-29 09:39:52.039258 f9d48a10-8540-4e47-811d-1cc476ebc0e6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/952966336"}, "pid": "8669", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:52.131469 2024-07-29 09:39:52.131477 05fc6efa-7421-42d4-8dcb-234d2728482e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/952945991"}, "pid": "8670", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:52.223056 2024-07-29 09:39:52.223067 150deb7e-546c-41c8-87b4-1b321659a4bb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/952945819"}, "pid": "8671", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:52.308557 2024-07-29 09:39:52.308568 d11c4e76-164f-4436-aad2-477aa9f28ec4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/952794357"}, "pid": "8672", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:52.398629 2024-07-29 09:39:52.398657 6d5a6b99-9261-492a-8f07-fcb0e9a02e43 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/952319888"}, "pid": "8673", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:52.496738 2024-07-29 09:39:52.49675 018c087a-3654-4bba-9b25-0a409336d727 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/952090163"}, "pid": "8674", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:52.587356 2024-07-29 09:39:52.587364 a80bbfd3-55b8-465a-be80-2e95fa0c5a39 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/952082098"}, "pid": "8675", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:52.650233 2024-07-29 09:39:52.650242 0b1688e9-0324-4eeb-be35-cce6c9c26b60 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/951939440"}, "pid": "8676", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:52.728298 2024-07-29 09:39:52.728306 af833dfa-aaed-4c13-830e-5c8bed4a1eee {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/95171337X"}, "pid": "8677", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:52.812079 2024-07-29 09:39:52.812091 bba6cb86-0fe2-4a7d-be63-83acc1d65619 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/951567241"}, "pid": "8678", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:52.902638 2024-07-29 09:39:52.902648 dee5958a-982e-4340-bbff-8c0c3d99c7f0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/951452940"}, "pid": "8679", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:53.001792 2024-07-29 09:39:53.001803 68f90e4b-3d04-45d4-8ef8-beda8e0af128 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/95136653X"}, "pid": "8680", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:53.0891 2024-07-29 09:39:53.089116 2231fce4-97ad-4614-8871-1fe65e86504f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/951151541"}, "pid": "8681", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:53.191048 2024-07-29 09:39:53.191062 e73260f9-3b20-401e-b92c-8deefabb7b42 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/951040960"}, "pid": "8682", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:53.289252 2024-07-29 09:39:53.289265 f4ecf059-69a9-40c6-890a-d1e5b103f553 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/950872555"}, "pid": "8683", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:53.390422 2024-07-29 09:39:53.390428 fa650cb6-a426-4d17-96da-d0c315ad957b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/95058410X"}, "pid": "8684", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:53.479233 2024-07-29 09:39:53.479242 aaca63ae-5505-4f2b-b6a8-c98a49e1aa01 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/950461083"}, "pid": "8685", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:53.572121 2024-07-29 09:39:53.572129 9a3ee932-b920-4c6d-b99b-27457126a33c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/950453544"}, "pid": "8686", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:53.646428 2024-07-29 09:39:53.646431 87aaedbc-dcc2-440d-ad31-3a4a45ef5b69 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/950378682"}, "pid": "8687", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:53.720346 2024-07-29 09:39:53.720353 ea5d2170-468b-4e60-9a5f-2f8465cff7e9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/950378658"}, "pid": "8688", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:53.798144 2024-07-29 09:39:53.798153 7813fc62-2a14-4bef-9ed3-4f09488c092f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/950280984"}, "pid": "8689", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:53.893234 2024-07-29 09:39:53.893244 f59914e9-f439-4ce1-a4b7-a9c5ac1cbc7c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/950268593"}, "pid": "8690", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:53.993084 2024-07-29 09:39:53.993094 c69919a8-8d34-466f-8443-bb264d4f2a0e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/94996591X"}, "pid": "8691", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:54.0872 2024-07-29 09:39:54.087211 7e43dbb2-e720-4417-9fb9-834380a5536b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/949736864"}, "pid": "8692", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:54.171707 2024-07-29 09:39:54.171717 4fa8aeb2-6b52-4826-8ab7-b156557163ce {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/949582964"}, "pid": "8693", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:54.253546 2024-07-29 09:39:54.253554 97d0b876-3c71-4c05-a1ff-684e73a2e955 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/94925584X"}, "pid": "8694", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:54.328588 2024-07-29 09:39:54.328599 db016159-7d7d-4619-aa8d-c1cc11fc9e54 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/949178594"}, "pid": "8695", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:54.41635 2024-07-29 09:39:54.416371 49894d7a-deb5-4056-96f3-032d1af6e790 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/948985429"}, "pid": "8696", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:54.504319 2024-07-29 09:39:54.50433 f1de141a-a978-4469-b7b6-46d6f9b4b292 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/948861975"}, "pid": "8697", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:54.593031 2024-07-29 09:39:54.593044 1443d61f-0ce5-4abe-b537-cde6d81f22b8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/948734418"}, "pid": "8698", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:54.679107 2024-07-29 09:39:54.67911 4fa117be-f6b3-4fa9-ba0a-96c6316e91ef {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/948616792"}, "pid": "8699", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:54.7412 2024-07-29 09:39:54.741208 3d06189d-b4f6-488d-847a-69953eea5d85 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/948581387"}, "pid": "8700", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:54.816274 2024-07-29 09:39:54.816284 b606daad-376e-440d-86b7-7f908665aa4f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/948367032"}, "pid": "8701", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:54.926562 2024-07-29 09:39:54.926571 56c0087b-2d55-4266-94f6-f74436c57844 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/948358742"}, "pid": "8702", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:55.026399 2024-07-29 09:39:55.026408 264a58e5-1633-4401-a712-2d6d8d575640 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/94818387X"}, "pid": "8703", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:55.119987 2024-07-29 09:39:55.119995 ecd8d5f3-ed1b-47e8-93e0-9aec24620e07 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/948059028"}, "pid": "8704", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:55.214035 2024-07-29 09:39:55.214041 9cd3572b-69e2-4a7f-8665-c1e631dba180 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/948023465"}, "pid": "8705", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:55.309986 2024-07-29 09:39:55.309996 41fcd0e7-8cdc-490f-a5e1-57fda4e01f7a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/947999043"}, "pid": "8706", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:55.407925 2024-07-29 09:39:55.407933 dea918e1-2651-4ccf-972f-0bac586cef44 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/947807691"}, "pid": "8707", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:55.511143 2024-07-29 09:39:55.511158 d25e453d-16f0-4168-925d-22ab4c3385e3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/947667040"}, "pid": "8708", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:55.602323 2024-07-29 09:39:55.602331 3be6a9a0-eca9-48f1-9d44-7ebb5df5952e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/947636676"}, "pid": "8709", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:55.684022 2024-07-29 09:39:55.684026 ab57473c-cd83-4ecd-b5ba-24abb555f6f2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/947568441"}, "pid": "8710", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:55.754315 2024-07-29 09:39:55.754322 0c2c5c9c-0af2-49bb-876a-db67db4eaec7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/947543112"}, "pid": "8711", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:55.838271 2024-07-29 09:39:55.838281 9f0efdfb-4823-46c2-b6a3-bd3b2f1bfcfe {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/947466223"}, "pid": "8712", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:55.933905 2024-07-29 09:39:55.933936 f3f95403-2009-4d33-9629-5dd131b89ba7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/947465928"}, "pid": "8713", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:56.033942 2024-07-29 09:39:56.03395 d70eb1c1-ebf0-49e5-a101-e237479251f6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/947415874"}, "pid": "8714", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:56.134948 2024-07-29 09:39:56.134961 d8f00032-f2b5-42b0-b43c-597f89fdff8e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/947397213"}, "pid": "8715", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:56.244057 2024-07-29 09:39:56.244062 13f2779d-5004-4fb5-83f8-c9f3a57caee3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/947389229"}, "pid": "8716", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:56.326221 2024-07-29 09:39:56.32623 7215b17f-fc70-4678-8609-6026aaca0d9f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/94736093X"}, "pid": "8717", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:56.414818 2024-07-29 09:39:56.414825 393a4cce-6574-4a51-9b29-d897a1c99b74 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/947337555"}, "pid": "8718", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:56.514607 2024-07-29 09:39:56.514617 ca2a27bc-fd0b-4be7-b7d0-61e979807304 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/947167293"}, "pid": "8719", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:56.637734 2024-07-29 09:39:56.637743 461d86ee-d625-4d5e-8e1a-2a42c8c498e5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/947085017"}, "pid": "8720", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:56.708511 2024-07-29 09:39:56.708514 6b8ebecc-0a5f-45e2-af89-2c21ae930ac5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/947015388"}, "pid": "8721", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:56.764537 2024-07-29 09:39:56.764548 691a9416-c845-4adc-8df5-9f1fad66a123 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/946998051"}, "pid": "8722", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:56.830359 2024-07-29 09:39:56.830367 834be816-c87c-4214-bc94-56d7fe077efd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/946944210"}, "pid": "8723", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:56.898697 2024-07-29 09:39:56.898704 82b66633-1515-4f40-b6b1-6459e4ffca3c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/946868093"}, "pid": "8724", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:56.983913 2024-07-29 09:39:56.983922 1c8c9212-516d-416f-b284-1e57a96b949c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/946792631"}, "pid": "8725", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:57.069655 2024-07-29 09:39:57.069665 5d8bf0fa-c450-42e6-b5d0-303054e194ef {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/946776164"}, "pid": "8726", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:57.153111 2024-07-29 09:39:57.153124 154d0340-3c66-438f-81a4-75d6f4435b87 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/946530629"}, "pid": "8727", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:57.245474 2024-07-29 09:39:57.245485 bd9dad05-409b-43dc-96f9-76e5f26e5339 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/94646085X"}, "pid": "8728", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:57.33578 2024-07-29 09:39:57.335789 f9cd96a2-f9e8-46e1-a0e8-8f4e7cb40f69 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/946062706"}, "pid": "8729", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:57.444981 2024-07-29 09:39:57.44499 61215133-bcf3-44cc-bbc1-d4a40bc90de0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/946022895"}, "pid": "8730", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:57.541014 2024-07-29 09:39:57.541026 5b086fa3-3a54-42a4-90fb-fcbf877e6307 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/94601888X"}, "pid": "8731", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:57.633893 2024-07-29 09:39:57.633901 0f98b235-f3ff-4a10-962e-d37fc73bea87 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/945863837"}, "pid": "8732", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:57.713707 2024-07-29 09:39:57.713715 1a0182b9-13a3-46f8-a4e1-8ca16979a517 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/944522297"}, "pid": "8733", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:57.762003 2024-07-29 09:39:57.762006 ddae9c12-bcec-4fbb-a68d-30894a1242f7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/944502172"}, "pid": "8734", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:57.827586 2024-07-29 09:39:57.827593 5d5db0e2-e229-4c68-9264-dbb459c60c52 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/944484611"}, "pid": "8735", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:57.916512 2024-07-29 09:39:57.916521 893a459f-4b68-4746-a19c-7fdfcbcc93f2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/94430396X"}, "pid": "8736", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:58.004432 2024-07-29 09:39:58.00444 49179c07-0edb-40d8-a254-6111e37b6ad6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/943889170"}, "pid": "8737", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:58.089744 2024-07-29 09:39:58.089757 fae309b8-b29d-4b07-8043-b89387e6c058 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/943836476"}, "pid": "8738", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:58.184544 2024-07-29 09:39:58.184554 12d7e324-29c1-41a2-bbc7-f511903a0e4e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/943625394"}, "pid": "8739", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:58.270282 2024-07-29 09:39:58.270294 b8b04486-7e79-4d28-a834-424e0ea4926a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/943440017"}, "pid": "8740", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:58.359493 2024-07-29 09:39:58.3595 d28e0e0c-9bca-471a-a35e-49f88af73335 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/94337426X"}, "pid": "8741", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:58.444072 2024-07-29 09:39:58.44408 ff4a0e89-320e-48e1-9319-321a9509e8ed {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/943258170"}, "pid": "8742", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:58.528044 2024-07-29 09:39:58.528056 82784f97-5f59-4152-ae6e-ffbe07d273dd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/943209374"}, "pid": "8743", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:58.618473 2024-07-29 09:39:58.618486 d6e5c5e7-8ba0-4381-a4e5-e745a137e83e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/942627644"}, "pid": "8744", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:58.711198 2024-07-29 09:39:58.711209 132b398c-3dc1-4613-9fe1-0e9f62773ea2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/942531639"}, "pid": "8745", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:58.787056 2024-07-29 09:39:58.787064 f0f7b7e5-6ce3-46ed-95e5-6d6124f6143c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/942348036"}, "pid": "8746", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:58.864095 2024-07-29 09:39:58.864104 b84090a9-4c87-454d-ace7-7d3191016713 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/942346300"}, "pid": "8747", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:58.961954 2024-07-29 09:39:58.961966 0815cd02-983c-4018-8ac5-89c5091ba059 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/942142845"}, "pid": "8748", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:59.063922 2024-07-29 09:39:59.063934 be037e57-ede4-4dde-9d54-764c7bb64935 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/94203712X"}, "pid": "8749", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:59.164435 2024-07-29 09:39:59.164447 6b31e220-c50b-474f-9ac5-deef36c493f5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/941869121"}, "pid": "8750", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:59.259122 2024-07-29 09:39:59.259133 e08ccdb8-932b-46ef-8c21-2fb96abb7f15 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/941589021"}, "pid": "8751", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:59.35347 2024-07-29 09:39:59.353483 37577961-d02e-4671-a3b6-9ea381612428 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/941532704"}, "pid": "8752", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:59.448453 2024-07-29 09:39:59.448462 4b4f3e21-8da8-45e6-9f86-55333cdc83b8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/941495256"}, "pid": "8753", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:59.542552 2024-07-29 09:39:59.54256 d6d0121e-f741-4615-a817-b9dbe5445475 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/941482774"}, "pid": "8754", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:59.615938 2024-07-29 09:39:59.61594 43d1b57d-07f5-450c-8c22-e846e2658d28 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/941366138"}, "pid": "8755", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:59.686394 2024-07-29 09:39:59.686403 c70454da-b5c4-44c1-8e04-f18cb67fac95 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/941365050"}, "pid": "8756", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:59.784628 2024-07-29 09:39:59.784632 208bd22f-9cff-4d19-b22a-e8bf8b888ad8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/941158748"}, "pid": "8757", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:59.855295 2024-07-29 09:39:59.855302 38860790-8b41-4711-b408-90bb09494afd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/941131572"}, "pid": "8758", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:39:59.930855 2024-07-29 09:39:59.930873 ea912176-d7ee-46be-8232-0438809bc333 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/940921588"}, "pid": "8759", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:00.022097 2024-07-29 09:40:00.0221 a1c6bf35-301f-40c1-8677-23ac6178b4d2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/940807904"}, "pid": "8760", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:00.102655 2024-07-29 09:40:00.102668 089261d3-f16e-40b2-8478-ae9b6322e166 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/940788187"}, "pid": "8761", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:00.194515 2024-07-29 09:40:00.194522 166d5083-c011-4cae-a431-83386be81f8d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/940762048"}, "pid": "8762", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:00.297996 2024-07-29 09:40:00.298004 3b0b6bfc-87c5-4dc2-8dea-56b253929c5f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/940758776"}, "pid": "8763", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:00.394719 2024-07-29 09:40:00.394725 02f16423-f639-4f19-99b3-6d847faa64ce {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/940755459"}, "pid": "8764", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:00.489544 2024-07-29 09:40:00.489553 292e7872-b048-47d4-b99f-cbe1e0330ae2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/94074449X"}, "pid": "8765", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:00.595018 2024-07-29 09:40:00.595027 92c240bc-3021-459b-ab40-19d6945d8255 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/940604833"}, "pid": "8766", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:00.686112 2024-07-29 09:40:00.686122 aa5ff8f3-f0aa-42f4-bd37-46d083bb1bb7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/940540959"}, "pid": "8767", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:00.76153 2024-07-29 09:40:00.761539 1aa2957b-17e7-444f-8dff-26ec0c4ca469 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/940535912"}, "pid": "8768", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:00.838727 2024-07-29 09:40:00.83873 fbe17c52-9935-4592-b0f9-16620e615d02 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/94052113X"}, "pid": "8769", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:00.91008 2024-07-29 09:40:00.910087 62f46c44-4458-415d-aacc-17064d395c6a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/940125897"}, "pid": "8770", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:00.999333 2024-07-29 09:40:00.999343 f4514303-8e87-4106-8a93-f32fac28eff7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/940111187"}, "pid": "8771", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:01.124525 2024-07-29 09:40:01.124536 6d7be560-97ac-4e60-a80c-c5474f99285e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/940085798"}, "pid": "8772", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:01.237086 2024-07-29 09:40:01.237096 0ba0768a-3b17-4680-bd61-a3aa4faacf36 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/940049570"}, "pid": "8773", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:01.318797 2024-07-29 09:40:01.318812 e584243a-6798-445b-a324-de53be55ce55 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/940035731"}, "pid": "8774", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:01.423811 2024-07-29 09:40:01.423817 3686e691-2373-4fdd-aa29-1a05e51e89d7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/199279101"}, "pid": "8775", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:01.533296 2024-07-29 09:40:01.533308 56e048fb-48c9-47e7-a6cf-aacc082d8e6a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/199254435"}, "pid": "8776", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:01.627509 2024-07-29 09:40:01.627521 a26ddab4-8148-4c60-83ea-06850fe05627 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/199249903"}, "pid": "8777", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:01.722454 2024-07-29 09:40:01.722469 19bf51d8-9892-4196-92ce-cfcd70105b6c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/199099952"}, "pid": "8778", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:01.839903 2024-07-29 09:40:01.839915 6d9d00a9-98df-4573-b9d8-78325efb79fb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/130755087"}, "pid": "8779", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:01.939031 2024-07-29 09:40:01.939044 1ef21ea9-b3f6-4654-8c7b-8da2b86a0076 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/130749478"}, "pid": "8780", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:02.033309 2024-07-29 09:40:02.033319 ba31503f-a2ac-4577-b638-d92450b6c0e1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/130741531"}, "pid": "8781", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:02.118075 2024-07-29 09:40:02.118086 c68cc14a-a4eb-44bc-9182-dfba490bba82 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/130722529"}, "pid": "8782", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:02.209715 2024-07-29 09:40:02.209727 680b4ab6-28b3-423f-893b-94ed812011e1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/130715107"}, "pid": "8783", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:02.291051 2024-07-29 09:40:02.291061 fc30e70f-6c1a-4c8a-b772-1540bca4c5ef {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/130712930"}, "pid": "8784", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:02.369656 2024-07-29 09:40:02.369668 c36c0966-4d16-4324-ae6b-341c1f5bd563 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/13071206X"}, "pid": "8785", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:02.46535 2024-07-29 09:40:02.465362 07918e9d-1ccf-44f4-b223-c843be130580 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/130700525"}, "pid": "8786", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:02.548417 2024-07-29 09:40:02.548423 8a6b486a-a8ea-447c-97ec-07ae2c57d0d0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/130699152"}, "pid": "8787", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:02.638119 2024-07-29 09:40:02.638127 6bb41298-60d5-4f98-bf2b-be2ae6794769 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/130699101"}, "pid": "8788", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:02.724812 2024-07-29 09:40:02.724823 1a585b57-9b66-48ba-81f2-5bc0106d02ad {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/130698644"}, "pid": "8789", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:02.823439 2024-07-29 09:40:02.823449 303678a7-c1b2-4817-ac09-4eafb117ab24 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043280072"}, "pid": "8790", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:02.905489 2024-07-29 09:40:02.905492 326d0f8b-32ca-40bf-a8fc-3719db439faf {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043270972"}, "pid": "8791", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:02.973528 2024-07-29 09:40:02.973535 106b56f1-d274-45e3-a237-cf6ae4aea706 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043270328"}, "pid": "8792", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:03.056373 2024-07-29 09:40:03.056384 7e06afbe-3c7f-42d7-b9a5-7f9612b8f1fc {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043269605"}, "pid": "8793", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:03.143513 2024-07-29 09:40:03.143521 1b916749-79e4-43be-abec-0a39c2bce958 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043265006"}, "pid": "8794", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:03.230337 2024-07-29 09:40:03.230345 ed28300c-bb7e-40ad-8dff-ead5625f5be9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043229395"}, "pid": "8795", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:03.316921 2024-07-29 09:40:03.316928 b7ba90e7-3423-4b2d-b994-b8b4901b2626 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043225276"}, "pid": "8796", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:03.421614 2024-07-29 09:40:03.421618 5a32a4f0-f781-475b-92cd-3a02770d3a96 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043220797"}, "pid": "8797", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:03.497697 2024-07-29 09:40:03.497701 eb1a7765-231b-4a3d-b22b-557203720134 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043196063"}, "pid": "8798", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:03.58047 2024-07-29 09:40:03.580479 d34bfa6a-02db-428a-9f3d-4e9551a1db8a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043172415"}, "pid": "8799", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:03.662355 2024-07-29 09:40:03.66236 b9577aab-1e36-49de-b580-c86203073151 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043170854"}, "pid": "8800", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:03.736247 2024-07-29 09:40:03.736257 d6ed64cd-e9c7-4722-9cad-185991aef563 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043166644"}, "pid": "8801", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:03.819945 2024-07-29 09:40:03.819954 ff20360b-52e9-40b5-8b34-c5388a44c298 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043166202"}, "pid": "8802", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:03.911835 2024-07-29 09:40:03.911841 3531d58a-86ae-41a7-8f5b-d0f14684d139 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04316532X"}, "pid": "8803", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:03.974574 2024-07-29 09:40:03.974579 645568be-9fb1-452f-b9f5-c4ef9d0bd314 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043153607"}, "pid": "8804", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:04.051207 2024-07-29 09:40:04.051216 b0d31c56-a3e2-4cea-8cf2-e1755164252c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043134475"}, "pid": "8805", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:04.141181 2024-07-29 09:40:04.141194 9edcd5be-97f2-496f-b202-da03c926d425 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043134106"}, "pid": "8806", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:04.254694 2024-07-29 09:40:04.254705 ad61149b-b568-42ba-b669-d11b3cab4783 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043133908"}, "pid": "8807", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:04.357192 2024-07-29 09:40:04.357202 2147f30b-eb56-447e-9ca8-b1782347a787 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043133789"}, "pid": "8808", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:04.457755 2024-07-29 09:40:04.457769 a84554d4-77cb-4cbf-9bcc-5bf178ca683e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043126944"}, "pid": "8809", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:04.592023 2024-07-29 09:40:04.592033 be5394a6-4e00-4355-9ff0-5b1015c2551b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043122507"}, "pid": "8810", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:04.69443 2024-07-29 09:40:04.69444 4ab8d4a0-e8dc-449b-ae09-71b9f5807dc4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043119816"}, "pid": "8811", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:04.806909 2024-07-29 09:40:04.806923 29686ff0-e870-4c13-8a01-ed462f28f6f2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04311704X"}, "pid": "8812", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:04.927269 2024-07-29 09:40:04.92728 f1eb3254-419a-44ea-96de-ef7935abe451 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043110290"}, "pid": "8813", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:04.999861 2024-07-29 09:40:04.999873 a2dde6ab-c7c0-4781-b7bf-9d48d16b6cb5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043104754"}, "pid": "8814", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:05.095768 2024-07-29 09:40:05.095783 1f359392-131b-44c2-8206-dfca82af3e77 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043092756"}, "pid": "8815", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:05.203182 2024-07-29 09:40:05.203192 98246f49-c5b5-432c-82bd-5e92e03ec53c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043087787"}, "pid": "8816", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:05.307322 2024-07-29 09:40:05.307337 9dbb910f-a0db-47af-9927-91821e849d17 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043079458"}, "pid": "8817", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:05.409592 2024-07-29 09:40:05.409601 7c33350e-24e0-40b1-9086-50a49da9fc0e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043078664"}, "pid": "8818", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:05.508332 2024-07-29 09:40:05.508347 b27d1678-da98-423a-86cc-bee700a90e30 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043062024"}, "pid": "8819", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:05.620154 2024-07-29 09:40:05.620165 08c1f9d9-5b14-4dea-ae41-fb127acc70fc {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04304980X"}, "pid": "8820", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:05.71632 2024-07-29 09:40:05.71633 c742aba6-4ad3-4431-8ba7-eafa73f449c7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043049354"}, "pid": "8821", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:05.79807 2024-07-29 09:40:05.798081 bb6a52d6-aece-4f40-bb73-c274ea44e4c3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043047815"}, "pid": "8822", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:05.887886 2024-07-29 09:40:05.887889 84bd6ee3-4b5c-49c9-8924-801d3d989c65 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043045820"}, "pid": "8823", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:05.967609 2024-07-29 09:40:05.967613 4d6dbc0c-4808-4264-998c-1d9307406b81 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043023932"}, "pid": "8824", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:06.045943 2024-07-29 09:40:06.045953 a022ea23-e4e4-459d-9345-52ba3696f9d0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043007708"}, "pid": "8825", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:06.153739 2024-07-29 09:40:06.153753 7dcec6d4-25cd-4e08-96e3-13edf7b3efe1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043006248"}, "pid": "8826", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:06.281837 2024-07-29 09:40:06.281849 07d2c927-f533-4103-ab3a-d614211a2bf4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042975174"}, "pid": "8827", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:06.406805 2024-07-29 09:40:06.406818 636f161e-6db4-452a-9c1d-2bcff806fd1c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04296962X"}, "pid": "8828", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:06.512923 2024-07-29 09:40:06.512932 19272e59-f8b9-4c09-8352-98f74d94cf35 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042936586"}, "pid": "8829", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:06.608107 2024-07-29 09:40:06.60812 fbeae33e-32b3-462e-8dc3-ca0850f7b730 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042933854"}, "pid": "8830", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:06.706627 2024-07-29 09:40:06.706639 b47b074f-ba82-446b-a952-1ec802addfda {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042932297"}, "pid": "8831", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:06.810917 2024-07-29 09:40:06.810928 66288cd2-94fc-48da-a78b-fbc2d278a1ec {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042928664"}, "pid": "8832", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:06.927878 2024-07-29 09:40:06.927889 54ed00e4-8de5-423a-8d14-8fdb363d3ad0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04291373X"}, "pid": "8833", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:07.018257 2024-07-29 09:40:07.018262 7d8639cb-cc9f-4cc1-a2a8-746d4c1830fa {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042912709"}, "pid": "8834", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:07.126324 2024-07-29 09:40:07.126333 34ae9c0d-11d1-462c-afec-bd8b4175e2f8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042911915"}, "pid": "8835", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:07.225593 2024-07-29 09:40:07.225605 7ec6ecc3-4aa9-42be-a351-2b5a3591964b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042909163"}, "pid": "8836", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:07.325357 2024-07-29 09:40:07.32537 426b44ec-b253-4dae-aa9a-b8e620beb2e3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042898250"}, "pid": "8837", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:07.437605 2024-07-29 09:40:07.437627 822dce4f-4e17-43cb-916b-28be4f5529af {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042871255"}, "pid": "8838", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:07.55059 2024-07-29 09:40:07.5506 da0f7911-42eb-4977-9ca4-be752c34ab69 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042871093"}, "pid": "8839", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:07.654228 2024-07-29 09:40:07.654243 67b9297a-dc56-48f9-9d19-a93a4fee3e93 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042868696"}, "pid": "8840", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:07.7514 2024-07-29 09:40:07.751412 91e7ffda-5f22-40fb-95e9-61a65460b807 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042855098"}, "pid": "8841", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:07.846267 2024-07-29 09:40:07.846282 f78526ff-b9bc-49e8-9a1b-243917c553fb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042854083"}, "pid": "8842", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:07.951735 2024-07-29 09:40:07.95175 b4917816-7ca4-4e1d-b784-8c9be878f3a2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042829763"}, "pid": "8843", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:08.043633 2024-07-29 09:40:08.043636 d178e02e-a2d9-4803-bd23-73a3f6a4a99c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042829194"}, "pid": "8844", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:08.122307 2024-07-29 09:40:08.122318 50518c18-f287-43a5-94d7-20b1e95d1492 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042828465"}, "pid": "8845", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:08.23258 2024-07-29 09:40:08.232591 3bd5021a-4a51-49f9-8e81-a4330cd55ffa {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042825210"}, "pid": "8846", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:08.341438 2024-07-29 09:40:08.34145 88b7737f-c58d-4cab-9281-9d858e298fb8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042819415"}, "pid": "8847", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:08.450571 2024-07-29 09:40:08.450581 132d9ad1-45e3-4880-96bd-6d10f015832b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042817293"}, "pid": "8848", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:08.556669 2024-07-29 09:40:08.556687 f79b6679-b92c-4f93-8872-8b3d39a4bc71 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042813905"}, "pid": "8849", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:08.665741 2024-07-29 09:40:08.66575 921babee-a42e-4f58-9fb7-975e818678cb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042803098"}, "pid": "8850", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:08.804701 2024-07-29 09:40:08.804712 ab794dcc-ce54-4efb-8948-1ca78fd1439d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042798779"}, "pid": "8851", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:08.918893 2024-07-29 09:40:08.918904 1c746a2b-a6e1-47e2-827c-68b0b7a494f0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042798760"}, "pid": "8852", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:09.031021 2024-07-29 09:40:09.031032 2d181f5c-335e-40bb-babc-ae76a9a2bc6c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042798477"}, "pid": "8853", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:09.114754 2024-07-29 09:40:09.114768 e2130831-d546-4c18-9931-f59332f434b2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042773539"}, "pid": "8854", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:09.223659 2024-07-29 09:40:09.223675 41d0f992-f877-43f2-b90c-df070517d524 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042763568"}, "pid": "8855", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:09.325012 2024-07-29 09:40:09.325025 29206d81-3966-4049-8707-47256d47e400 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04276243X"}, "pid": "8856", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:09.433087 2024-07-29 09:40:09.433104 f5720b44-e6db-478f-a8d0-a075e3fdbc9a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042755255"}, "pid": "8857", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:09.542378 2024-07-29 09:40:09.542393 27771dce-0efc-4c7c-959f-32fc090df4b7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04275206X"}, "pid": "8858", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:09.63868 2024-07-29 09:40:09.638697 da2f1fee-35bb-4513-ad0e-4ec11e0fccb0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042749298"}, "pid": "8859", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:09.743787 2024-07-29 09:40:09.743796 09745d86-6cc8-4b70-bb7f-9f3c5ef7c31d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042740983"}, "pid": "8860", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:09.852438 2024-07-29 09:40:09.852449 a9b3204c-e8a4-48c7-aa75-c2489f9a02dc {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042728622"}, "pid": "8861", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:09.957367 2024-07-29 09:40:09.957382 cbeae672-f21f-4647-b5ed-cffe831dcfd3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042725739"}, "pid": "8862", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:10.064623 2024-07-29 09:40:10.064635 23a4c17e-9aa7-421d-b240-ec354f7ea9b3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042707870"}, "pid": "8863", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:10.117529 2024-07-29 09:40:10.117533 61bc64ac-0ae8-4f2c-878c-e28315e5dc36 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042667208"}, "pid": "8864", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:10.180416 2024-07-29 09:40:10.180424 13fc1f32-2e4b-43bd-bd73-6fde888f6dfe {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04264044X"}, "pid": "8865", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:10.255662 2024-07-29 09:40:10.255669 f29c4789-752f-4c86-89ad-9948798b886c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042625025"}, "pid": "8866", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:10.324888 2024-07-29 09:40:10.324896 d62924a4-9eb6-4f01-a825-bb1aa9d8b81b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042616727"}, "pid": "8867", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:10.392942 2024-07-29 09:40:10.392952 229ba03f-3bdf-4b77-a212-e5ade1fdf648 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042612292"}, "pid": "8868", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:10.475829 2024-07-29 09:40:10.475841 bc9c5301-dedf-4c7f-8754-9fa467e65ba0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042556740"}, "pid": "8869", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:10.566588 2024-07-29 09:40:10.566601 44022c90-de12-4c6c-aaa3-cf593bf1716d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042552192"}, "pid": "8870", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:10.673087 2024-07-29 09:40:10.673094 4fcf56c4-0144-463f-9f35-26dea48540fe {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04252184X"}, "pid": "8871", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:10.76607 2024-07-29 09:40:10.766081 00e31b03-fd08-4391-9367-783ab2338208 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04251729X"}, "pid": "8872", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:10.858277 2024-07-29 09:40:10.858288 57529e29-b984-46f1-afde-e93e4e291a74 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042496918"}, "pid": "8873", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:10.958958 2024-07-29 09:40:10.95897 af5ffbd7-f4a3-4955-a6f0-c28a2a4c9e45 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042496896"}, "pid": "8874", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:11.042745 2024-07-29 09:40:11.042757 5ccbbab4-33ce-47f0-bf40-d06b086dac69 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042491010"}, "pid": "8875", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:11.129179 2024-07-29 09:40:11.129183 84fb46b7-a304-4ff2-9228-e130f926697e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042479770"}, "pid": "8876", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:11.188733 2024-07-29 09:40:11.188742 8e34efce-51ee-4141-bb26-f39565f2f85b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042466199"}, "pid": "8877", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:11.265162 2024-07-29 09:40:11.26517 79a24844-7809-460c-90a1-b13936dbf3e4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04245395X"}, "pid": "8878", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:11.347345 2024-07-29 09:40:11.347352 7a550cdb-4c06-4211-bbc0-0308fefb93f6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042439086"}, "pid": "8879", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:11.439386 2024-07-29 09:40:11.439396 bcfe9caa-35f7-4322-a774-616b83d6fd58 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042433517"}, "pid": "8880", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:11.529879 2024-07-29 09:40:11.529888 7bd5445b-6031-4a49-b11d-34f70192a000 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042427045"}, "pid": "8881", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:11.623134 2024-07-29 09:40:11.623146 01e9710a-1df6-459c-a1cf-adbbee540cde {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042416795"}, "pid": "8882", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:11.710802 2024-07-29 09:40:11.710811 fea9d755-3eab-45c8-a23a-19cd9ef23e46 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042402883"}, "pid": "8883", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:11.800373 2024-07-29 09:40:11.80038 4ba32a10-ab97-4141-a5b6-1f8685d4f16a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042402239"}, "pid": "8884", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:11.896789 2024-07-29 09:40:11.8968 9a5320a1-5279-4595-aada-62d1a518e81d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042363527"}, "pid": "8885", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:11.986988 2024-07-29 09:40:11.986997 fbaaade6-3f3c-45d4-8f2e-ba577a6514eb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042362466"}, "pid": "8886", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:12.063076 2024-07-29 09:40:12.063087 3bb33519-9bd5-4e1f-851c-45929ac8b051 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042349885"}, "pid": "8887", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:12.152863 2024-07-29 09:40:12.152869 016a7ca8-429f-4b16-b627-b29b01e763e5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042349877"}, "pid": "8888", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:12.217473 2024-07-29 09:40:12.217481 953f689b-76ae-4208-81f8-3c7eec5368b2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042319986"}, "pid": "8889", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:12.288384 2024-07-29 09:40:12.288393 1de1966a-e4cc-4145-8c7f-f93fc354bb36 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04231416X"}, "pid": "8890", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:12.371565 2024-07-29 09:40:12.371575 9b924a7b-9424-4bf5-9b36-025119f0eb04 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042294118"}, "pid": "8891", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:12.476485 2024-07-29 09:40:12.476495 ca441bc6-f6d3-44a6-851b-e90058943459 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042259177"}, "pid": "8892", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:12.56677 2024-07-29 09:40:12.566783 31af8b5e-3351-4ce9-9f0a-6403db9eb252 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042250234"}, "pid": "8893", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:12.66216 2024-07-29 09:40:12.662173 11d56d27-8689-4d00-ac1e-a6a77ab6d9b5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042237688"}, "pid": "8894", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:12.746994 2024-07-29 09:40:12.747002 b91715ce-5a4e-4a32-aeff-e77811ae6613 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042221234"}, "pid": "8895", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:12.818829 2024-07-29 09:40:12.818838 c9f34ec7-5d07-4516-8673-dcb625a6f58d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042208408"}, "pid": "8896", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:12.906329 2024-07-29 09:40:12.906336 669b2cb6-a9a7-4fb3-9409-5d75ee1b2d7e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042203856"}, "pid": "8897", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:13.003335 2024-07-29 09:40:13.003348 68049cc5-7d60-48b5-95d9-1eafd7d3ac52 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042203023"}, "pid": "8898", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:13.092804 2024-07-29 09:40:13.092814 f5e0b667-b377-4a69-8e18-d2c9e0778367 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042195810"}, "pid": "8899", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:13.18008 2024-07-29 09:40:13.180085 c6e7ed78-0d5a-4fbf-b6ca-af805daa0f49 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042193958"}, "pid": "8900", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:13.239799 2024-07-29 09:40:13.239807 04f6574f-efaf-4387-af39-2a360b3c13a7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04219007X"}, "pid": "8901", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:13.329718 2024-07-29 09:40:13.32973 ffe2d0ee-60ec-43dd-acb0-58277a8172c2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042189748"}, "pid": "8902", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:13.422555 2024-07-29 09:40:13.422562 6a7cc219-a568-4520-9a35-e8fb51540682 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042187494"}, "pid": "8903", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:13.521565 2024-07-29 09:40:13.521577 dd07753a-ef8a-46f5-8cc4-fbb5cb54e826 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042180805"}, "pid": "8904", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:13.609723 2024-07-29 09:40:13.60973 ac07ed15-9253-490d-897b-555ea6309451 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042159458"}, "pid": "8905", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:13.698509 2024-07-29 09:40:13.698521 e4b5115f-ffa5-476f-8bf1-ed4118c11020 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042154316"}, "pid": "8906", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:13.791266 2024-07-29 09:40:13.791278 479384f6-56ab-4ce4-b207-f237c38853c5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042152089"}, "pid": "8907", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:13.890909 2024-07-29 09:40:13.890916 48b707d7-10ec-41ff-99e0-1ad72ba7efcd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042150876"}, "pid": "8908", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:13.984404 2024-07-29 09:40:13.984416 f4b64e55-8aeb-445a-af70-3876a4e29fcc {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042140048"}, "pid": "8909", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:14.069011 2024-07-29 09:40:14.069021 103f70e5-9b08-4a07-ba74-c7f26e590f8e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042137268"}, "pid": "8910", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:14.152855 2024-07-29 09:40:14.152863 a8a0c2b7-9e36-43cc-b5a7-fd18ca9aeca8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042108160"}, "pid": "8911", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:14.233122 2024-07-29 09:40:14.233124 d5973261-7d3e-4898-9073-f0e84fdcca76 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042108152"}, "pid": "8912", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:14.292654 2024-07-29 09:40:14.292661 518ef720-17c8-432c-abaf-ed6eeeeb2a40 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042104068"}, "pid": "8913", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:14.367929 2024-07-29 09:40:14.367938 00ce20d8-ac50-4d3e-921f-dbdb61ea2045 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042098386"}, "pid": "8914", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:14.456015 2024-07-29 09:40:14.456022 b196441b-520c-4177-9227-d36eb7fa7742 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042092175"}, "pid": "8915", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:14.547902 2024-07-29 09:40:14.547913 19532045-e980-4ac5-bd74-de29aba949bc {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042086280"}, "pid": "8916", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:14.6479 2024-07-29 09:40:14.647912 84c4e15b-8e82-4b1b-a98d-ce79ec8a4323 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04208394X"}, "pid": "8917", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:14.745852 2024-07-29 09:40:14.745864 361fb90d-f4bc-470a-bf64-dd9212cc86ab {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042066107"}, "pid": "8918", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:14.841905 2024-07-29 09:40:14.841917 f06049b8-2aba-4ff7-951a-202374d8775a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042056349"}, "pid": "8919", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:14.937545 2024-07-29 09:40:14.937579 a7c082d7-a0c2-4f49-9dda-166d90fc9682 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042017793"}, "pid": "8920", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:15.025127 2024-07-29 09:40:15.02514 07f3760d-dcd1-4ec0-9320-46161cb77752 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042017246"}, "pid": "8921", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:15.114987 2024-07-29 09:40:15.114994 42abef96-e048-4186-8e67-b768822ed0f4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042003458"}, "pid": "8922", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:15.205081 2024-07-29 09:40:15.205103 ee117fe4-75d8-4e7b-b4f4-4165878fd580 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041995724"}, "pid": "8923", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:15.273522 2024-07-29 09:40:15.273529 d92d7aca-3567-4e4c-a2f4-45fc1c93963c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041992555"}, "pid": "8924", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:15.345188 2024-07-29 09:40:15.345194 d9b19879-cc2f-459f-a3bd-ba34a09afba2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041987489"}, "pid": "8925", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:15.43497 2024-07-29 09:40:15.434981 50cb7019-1438-4884-a063-de864f6ee39c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041981804"}, "pid": "8926", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:15.524899 2024-07-29 09:40:15.524911 7b11bf53-ee30-47b6-bba2-328cb49bfa34 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041977009"}, "pid": "8927", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:15.624163 2024-07-29 09:40:15.624174 fcca49be-b8c9-4791-a570-0d90044cf15c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041975278"}, "pid": "8928", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:15.71779 2024-07-29 09:40:15.717803 7e3bf7a5-c01c-481a-afdc-f0fc55893195 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041954378"}, "pid": "8929", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:15.797507 2024-07-29 09:40:15.797516 c09b7e42-5e35-419b-9825-fe0e341e4ecd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041954327"}, "pid": "8930", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:15.88821 2024-07-29 09:40:15.888218 80d18aa1-f1d7-49f3-a55f-3ce47c5fd794 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041943236"}, "pid": "8931", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:15.980559 2024-07-29 09:40:15.98057 ffbd1b83-b428-477d-abe2-84744c56b0d9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041928547"}, "pid": "8932", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:16.085661 2024-07-29 09:40:16.085676 07d188d0-7c6b-4c78-a24b-8e5a6795dfe2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041928326"}, "pid": "8933", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:16.187499 2024-07-29 09:40:16.187509 ba76a82f-064d-427e-966e-d213243359fa {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041924878"}, "pid": "8934", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:16.279097 2024-07-29 09:40:16.2791 bccb3b36-0b2f-4a5a-badd-112541e1d415 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041918754"}, "pid": "8935", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:16.359888 2024-07-29 09:40:16.359895 1c42ac29-9378-4e2b-992b-6158f10b3a29 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041913272"}, "pid": "8936", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:16.452958 2024-07-29 09:40:16.452968 6706cbf1-026d-4f64-9a61-87d92777fcd8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041911849"}, "pid": "8937", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:16.558816 2024-07-29 09:40:16.558831 2db79306-f974-4b88-b876-7bc75dc6e7e5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041911598"}, "pid": "8938", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:16.670584 2024-07-29 09:40:16.670595 6a494303-27a5-4456-afeb-d0c9a37bf514 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041911199"}, "pid": "8939", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:16.776262 2024-07-29 09:40:16.776275 22d75ac7-fe82-4331-98f0-34e603a00ca8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041910842"}, "pid": "8940", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:16.867454 2024-07-29 09:40:16.867462 805eccca-1cd9-423c-98b3-e46e1da2d459 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041907078"}, "pid": "8941", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:16.954815 2024-07-29 09:40:16.954824 7ea74639-7876-446e-9488-739234263ac1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041902955"}, "pid": "8942", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:17.03777 2024-07-29 09:40:17.03778 2e2c889d-69a4-4a3a-bf6b-35b6b58d9907 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04190186X"}, "pid": "8943", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:17.130742 2024-07-29 09:40:17.130752 9f690ee9-60bc-4c6b-ae42-37bd2aeb81e8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041900804"}, "pid": "8944", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:17.224128 2024-07-29 09:40:17.224138 4f51ffd3-8006-4489-903f-84c1070c2cfc {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041899849"}, "pid": "8945", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:17.299438 2024-07-29 09:40:17.299441 f97e0de4-6f1a-434e-9aa0-6dfb52912f84 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041898273"}, "pid": "8946", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:17.358488 2024-07-29 09:40:17.358496 a6069c4f-004c-48df-ac8b-6002fc66925a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041896807"}, "pid": "8947", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:17.443206 2024-07-29 09:40:17.443216 c357dad8-b164-42ee-95bf-8df2ade579ea {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041891775"}, "pid": "8948", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:17.532847 2024-07-29 09:40:17.532855 135f8b77-bf79-4a1a-8356-6755a01c8d9e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041890787"}, "pid": "8949", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:17.607462 2024-07-29 09:40:17.607471 00ee909b-d261-484c-a46e-d8d0ce9de904 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041889959"}, "pid": "8950", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:17.698618 2024-07-29 09:40:17.698629 90d2f289-2fda-4eae-8a21-45ae3aab44bc {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041887913"}, "pid": "8951", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:17.787305 2024-07-29 09:40:17.787318 c3ddc4e8-d047-46ec-8cb0-894397755c6d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041887786"}, "pid": "8952", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:17.881459 2024-07-29 09:40:17.881467 b9d5249d-625c-4c52-bf53-e7b0ab46dcbc {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041884612"}, "pid": "8953", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:18.00896 2024-07-29 09:40:18.008972 36e5d02d-c791-4aa9-8a18-a941dffce252 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041882229"}, "pid": "8954", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:18.100589 2024-07-29 09:40:18.100599 36740fd6-fd13-4283-a9e7-4ab6b88424a7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041881745"}, "pid": "8955", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:30.083784 2024-07-29 09:40:18.198945 94b97378-4adb-409a-8577-cba3aaef1506 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041878515"}, "pid": "7744", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/033869235"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 2 +2024-07-29 09:40:18.287239 2024-07-29 09:40:18.287249 d67946ef-35de-489c-bb20-23dfb3647f46 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041876938"}, "pid": "8956", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:18.339968 2024-07-29 09:40:18.339971 920f6051-235e-4743-adcf-32360b038269 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041874919"}, "pid": "8957", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:18.411494 2024-07-29 09:40:18.411502 3bf71ab9-eefc-4f2e-8862-8b73bae2f3b1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041873270"}, "pid": "8958", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:18.497527 2024-07-29 09:40:18.497533 71b02859-be88-4a41-a447-0143f89eb020 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041871286"}, "pid": "8959", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:18.598062 2024-07-29 09:40:18.598075 21c7349b-ea21-4e68-b64b-8cdf3093cb6c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041871189"}, "pid": "8960", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:18.694202 2024-07-29 09:40:18.694214 e80004b4-6c87-41b7-8af8-d32403b9f911 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041867785"}, "pid": "8961", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:18.800688 2024-07-29 09:40:18.8007 9df44688-1c97-47c2-9adc-00ad891c23ae {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041863488"}, "pid": "8962", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:18.899097 2024-07-29 09:40:18.899105 ff37bed3-8eca-4e51-a86e-81f143d9c691 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04186347X"}, "pid": "8963", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:18.995555 2024-07-29 09:40:18.995567 2a33ed19-f18f-47f1-a0a2-05f4b859ffa6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041862473"}, "pid": "8964", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:19.088328 2024-07-29 09:40:19.088342 2d1a9a75-23a6-45da-9d51-2ecee6fcfd7b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041862465"}, "pid": "8965", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:19.187865 2024-07-29 09:40:19.187875 78d796b1-efe7-498c-9935-12e28bf85720 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041841387"}, "pid": "8966", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:19.283496 2024-07-29 09:40:19.283508 e28da463-6462-4523-b7d2-71a8f5eac53a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041835662"}, "pid": "8967", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:19.387369 2024-07-29 09:40:19.387377 84463c6e-53fd-47b2-a9a7-0b1470daa2e6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041833333"}, "pid": "8968", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:19.473624 2024-07-29 09:40:19.473631 fc27f955-1f28-47c5-8580-5f56b1b4ccf8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041830989"}, "pid": "8969", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:19.560689 2024-07-29 09:40:19.560701 4f72a607-fd9a-4ad5-a209-1538f9634205 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041823788"}, "pid": "8970", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:19.649143 2024-07-29 09:40:19.64915 d8601598-37c3-4f52-bde4-bb18a458e06f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04182265X"}, "pid": "8971", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:19.722832 2024-07-29 09:40:19.722844 23dabd16-7581-4894-85ad-5c7d4976b370 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041809858"}, "pid": "8972", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:19.824594 2024-07-29 09:40:19.824683 b7f98475-2537-4e00-9cb6-30991403923a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041809165"}, "pid": "8973", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:19.92908 2024-07-29 09:40:19.929093 06c6cd9c-fb3f-43ac-9700-3db1e10d3e1b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041808525"}, "pid": "8974", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:20.023121 2024-07-29 09:40:20.023133 a19e4530-06eb-4285-967f-954c15710214 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041807677"}, "pid": "8975", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:20.113656 2024-07-29 09:40:20.113664 2fea7121-034f-4420-8384-c6e3cc16f9a5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041805348"}, "pid": "8976", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:20.202316 2024-07-29 09:40:20.202328 4c3a41eb-20d5-415c-9b88-98bcd210f218 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04180466X"}, "pid": "8977", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:20.28706 2024-07-29 09:40:20.287074 0657050a-5dda-42a8-ada1-740377044a93 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041802659"}, "pid": "8978", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:20.387518 2024-07-29 09:40:20.387522 f4c48ad1-307b-4f66-9268-635e69bb0006 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041798813"}, "pid": "8979", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:20.458757 2024-07-29 09:40:20.458765 909fd60b-c86b-4aef-87e8-20b2a02e83f8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041794524"}, "pid": "8980", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:20.539427 2024-07-29 09:40:20.53943 6486b615-adf6-42f1-a661-d7057ea316f0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041792432"}, "pid": "8981", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:20.607432 2024-07-29 09:40:20.607439 76511a51-ef69-4235-97c2-414c8ee446e8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041785215"}, "pid": "8982", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:20.68713 2024-07-29 09:40:20.68714 d7dc3a09-b333-4356-92a7-ff7b5bce7c52 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041784839"}, "pid": "8983", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:20.777278 2024-07-29 09:40:20.777285 af9c5b9e-1cdb-4f40-9fa8-a9750a68376f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041781635"}, "pid": "8984", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:20.877474 2024-07-29 09:40:20.877483 06820819-00d9-436a-82ea-e25d962072ab {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041779452"}, "pid": "8985", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:20.981437 2024-07-29 09:40:20.981448 dfd36b57-9364-462d-88b6-3e545ec08d21 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041774434"}, "pid": "8986", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:21.064446 2024-07-29 09:40:21.064453 933f4b38-8c48-466e-99b8-480204fc53d9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041772822"}, "pid": "8987", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:21.150319 2024-07-29 09:40:21.150328 1269f54d-0a8a-4b9d-bf9c-d1b8ed0b0a32 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041772768"}, "pid": "8988", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:21.236547 2024-07-29 09:40:21.236561 eec8df03-93ce-4942-9f42-af99a6b8f33c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041767934"}, "pid": "8989", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:21.333109 2024-07-29 09:40:21.333121 40a4127b-d67a-4905-b634-23d6b4595c59 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041766717"}, "pid": "8990", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:21.41152 2024-07-29 09:40:21.411523 76223f6c-c985-4d17-a3dd-4590b4ac84b1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04176420X"}, "pid": "8991", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:21.472367 2024-07-29 09:40:21.472375 db6f8fd8-08e4-4d56-b191-fa2423b4ce89 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041763165"}, "pid": "8992", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:21.550436 2024-07-29 09:40:21.550439 c7e9cce2-b486-406a-8255-da915dae6e48 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041759834"}, "pid": "8993", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:21.620224 2024-07-29 09:40:21.620232 3cc6d4b6-eb5a-4e61-9df4-049f417c309e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041755014"}, "pid": "8994", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:21.701078 2024-07-29 09:40:21.701087 b7bc59af-603d-47b3-bb5c-3f84c1927fed {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041754557"}, "pid": "8995", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:21.787657 2024-07-29 09:40:21.78767 7fd4c5e7-7513-4dd4-b273-7324f7ec6bd0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04175431X"}, "pid": "8996", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:21.889846 2024-07-29 09:40:21.889853 4660622e-db33-4a08-a22e-a219cbe300c6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04174926X"}, "pid": "8997", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:21.99471 2024-07-29 09:40:21.994721 f277d477-3947-42da-89f8-00ba0dd9bcc9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041748964"}, "pid": "8998", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:22.086456 2024-07-29 09:40:22.086461 642c9632-7860-4438-859b-45c93438883d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04174604X"}, "pid": "8999", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:22.162391 2024-07-29 09:40:22.162399 5c41ad0c-a336-4836-8d8e-b7f6df7833bb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041742648"}, "pid": "9000", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:22.251515 2024-07-29 09:40:22.251524 3a44ab06-ad55-4e8c-ab00-08f2fa92d78e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04174084X"}, "pid": "9001", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:22.337032 2024-07-29 09:40:22.33704 5e7edf13-535a-4a17-a66b-99c1c37d234c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041738063"}, "pid": "9002", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:22.421012 2024-07-29 09:40:22.421016 6ebd641e-06f2-41a9-b7a5-fdadeb723b8e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041737539"}, "pid": "9003", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:22.487281 2024-07-29 09:40:22.487292 d29ef6a9-135e-448c-a1c1-6b01d1cc2eca {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041736346"}, "pid": "9004", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:22.562769 2024-07-29 09:40:22.562778 152184e9-311e-464f-be0a-d37865985c32 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041735390"}, "pid": "9005", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:22.653321 2024-07-29 09:40:22.653329 6e8317c1-07ff-4dd0-aa2a-3f3e03c2eeba {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041734688"}, "pid": "9006", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:22.735046 2024-07-29 09:40:22.735057 b4e87a9a-6b5c-4129-b795-77052732b003 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041733819"}, "pid": "9007", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:22.833445 2024-07-29 09:40:22.833457 473f9288-5519-4b12-9e8f-15a703542526 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041725522"}, "pid": "9008", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:22.935035 2024-07-29 09:40:22.935044 6340a00d-78ab-4890-a628-a90a4f65b395 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041722027"}, "pid": "9009", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:23.019353 2024-07-29 09:40:23.019364 fb7d9e11-cc7e-4328-b9b4-2841e998bbe0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041720040"}, "pid": "9010", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:23.108826 2024-07-29 09:40:23.108835 52cd2b08-95c4-4d94-bcc3-ad474e697989 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041718429"}, "pid": "9011", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:23.189533 2024-07-29 09:40:23.189543 9da24fcb-35d3-4acd-9d90-02edde660115 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041716159"}, "pid": "9012", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:23.274319 2024-07-29 09:40:23.274331 5cb45667-fbc6-40e5-9735-01e7309c6f63 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041714059"}, "pid": "9013", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:23.373075 2024-07-29 09:40:23.373087 474feba2-9aeb-412f-8236-4955ebf382d8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041712188"}, "pid": "9014", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:23.454812 2024-07-29 09:40:23.454815 abe9be4d-34cf-408b-bb57-4d32e6a1f199 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04171069X"}, "pid": "9015", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:23.521517 2024-07-29 09:40:23.521524 0bd82630-ca68-4f87-80c1-0717a6fcfbef {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04171007X"}, "pid": "9016", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:23.604976 2024-07-29 09:40:23.604989 83bc0f2f-7dfc-47f6-8723-ef167e811504 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041707109"}, "pid": "9017", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:23.690827 2024-07-29 09:40:23.690833 7b2848b2-d7bb-4a71-a999-8fcb0c5c4557 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04170441X"}, "pid": "9018", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:23.784196 2024-07-29 09:40:23.784208 d432d336-310a-44de-b43f-b539c5860516 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041700465"}, "pid": "9019", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:23.87221 2024-07-29 09:40:23.87222 673a4d1d-94d0-4276-acec-35679e089f7a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041693442"}, "pid": "9020", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:23.964643 2024-07-29 09:40:23.964654 8c5882ec-df46-4f0c-9be9-f7f3513eb72a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041692403"}, "pid": "9021", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:24.051848 2024-07-29 09:40:24.051856 2e2aaf0c-8867-4b12-a8ae-c9b6011a835d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041691989"}, "pid": "9022", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:24.144928 2024-07-29 09:40:24.144939 b4795d11-7fef-4fb4-ac8d-185db1abcb52 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041691504"}, "pid": "9023", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:24.224368 2024-07-29 09:40:24.224378 2e61aa7b-83e6-4478-a8b7-27e2bdad6b05 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041689976"}, "pid": "9024", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:24.318054 2024-07-29 09:40:24.318113 d2bf8084-6f20-4502-a7bd-b0fbed732cd8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041688473"}, "pid": "9025", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:24.411629 2024-07-29 09:40:24.411639 9aa50f4e-7168-4a76-9bcf-b9e6516b128a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041682106"}, "pid": "9026", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:24.484267 2024-07-29 09:40:24.484271 af05d192-6969-4b2c-a6cc-d67a77bbaff0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041679792"}, "pid": "9027", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:24.541154 2024-07-29 09:40:24.541161 e8e3883c-1037-40d0-96ce-dcb9bc620278 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041678532"}, "pid": "9028", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:24.632251 2024-07-29 09:40:24.632262 bc92b1ee-fec3-4d58-819f-2e4c37436170 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041667093"}, "pid": "9029", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:24.724876 2024-07-29 09:40:24.724884 a5d7fc86-00c6-49c7-a345-45f1437c046d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041664795"}, "pid": "9030", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:38:12.78418 2024-07-29 09:40:24.859252 7e716e47-d7f4-4588-bf94-212268c43b1a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041653025"}, "pid": "7547", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027255468"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 2 +2024-07-29 09:40:24.973681 2024-07-29 09:40:24.973693 4ef0f749-23f0-4ef9-a9e6-e9ef4d0acb4d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041650018"}, "pid": "9031", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:25.064638 2024-07-29 09:40:25.064649 77540030-7a7a-4bf8-b635-d4fe7decfbb6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041640047"}, "pid": "9032", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:25.161149 2024-07-29 09:40:25.161159 36f58e8e-1311-4d0c-994e-b4fce6186fac {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041639383"}, "pid": "9033", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:25.254581 2024-07-29 09:40:25.254594 9cd70791-b6f1-453a-8182-08c83a6ae37b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041634179"}, "pid": "9034", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:25.35437 2024-07-29 09:40:25.354384 c095cdd3-a272-46e0-988f-1d63a230b2ca {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041631692"}, "pid": "9035", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:25.462834 2024-07-29 09:40:25.462845 25ba24db-cc8b-49ec-bcd5-bcaa513ebeb5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041631676"}, "pid": "9036", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:25.535811 2024-07-29 09:40:25.535814 0d675a3b-9541-4846-9c32-2c6ca8f3f295 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04163120X"}, "pid": "9037", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:25.613595 2024-07-29 09:40:25.613604 86e46576-fca5-452d-b1ff-c084695b243c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041627458"}, "pid": "9038", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:25.701663 2024-07-29 09:40:25.701673 c13f32e7-0467-4d65-a8ad-954c26b3b687 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041623010"}, "pid": "9039", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:25.798015 2024-07-29 09:40:25.798026 faf353c2-5ab8-4726-ae66-5e3bc284059b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041621662"}, "pid": "9040", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:25.901562 2024-07-29 09:40:25.901571 22c44231-703a-4246-b25d-2f818cab71c4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041619633"}, "pid": "9041", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:25.989603 2024-07-29 09:40:25.989615 287dbb08-ccdf-4411-8348-0b436f35fc2b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041619366"}, "pid": "9042", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:26.081184 2024-07-29 09:40:26.081192 9debbb0d-4488-418a-8b69-adc1e28a806a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041617266"}, "pid": "9043", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:26.166103 2024-07-29 09:40:26.166116 8e27fe9d-f31a-4af1-bacb-e0ca0a70cf15 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041616375"}, "pid": "9044", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:26.296148 2024-07-29 09:40:26.296157 48897bcd-0d8e-4987-a809-3ad84cdee125 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041612469"}, "pid": "9045", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:26.381558 2024-07-29 09:40:26.381571 ee369b84-3d5c-4d86-8002-f4e94dcb9fb4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041607988"}, "pid": "9046", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:26.470365 2024-07-29 09:40:26.470378 a3bf0a61-ae6b-47ed-999c-f391846f4ca9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041605799"}, "pid": "9047", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:26.552373 2024-07-29 09:40:26.552375 c2c9fe3e-fbeb-47fb-b6db-4b33be7cd2c8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041603176"}, "pid": "9048", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:26.602536 2024-07-29 09:40:26.602539 bfb8ba57-d4ba-4d98-a066-2115e261d07d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041601475"}, "pid": "9049", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:26.661277 2024-07-29 09:40:26.661286 2c515a2f-43d0-43fd-8c04-bc3ae14e48f1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041600622"}, "pid": "9050", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:26.75772 2024-07-29 09:40:26.757731 26fe64bd-c57c-46bb-b864-b38dabcf2edb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041600010"}, "pid": "9051", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:26.850936 2024-07-29 09:40:26.850949 f0b0fab3-6c33-4177-ac37-b5ff39704535 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041596277"}, "pid": "9052", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:26.949716 2024-07-29 09:40:26.949728 637a5ced-274a-449b-ab8c-de4fb66aeb5b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041595505"}, "pid": "9053", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:27.044711 2024-07-29 09:40:27.04472 a33b4b07-c9f4-41ce-863a-b412b38d89bb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041582969"}, "pid": "9054", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:27.130275 2024-07-29 09:40:27.130285 a03e8cb4-7e4f-4730-af37-19c4d81d7fed {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041582675"}, "pid": "9055", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:27.212799 2024-07-29 09:40:27.212808 3832ea23-c3f5-4dcc-b28f-495f72471e06 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041582500"}, "pid": "9056", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:27.311642 2024-07-29 09:40:27.311647 ff05cb97-0628-4ccd-863c-7ebf14756394 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041580176"}, "pid": "9057", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:27.393387 2024-07-29 09:40:27.393396 c1bc6de4-b5d2-4a8e-8ec7-71c810ef23f5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041579550"}, "pid": "9058", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:27.493598 2024-07-29 09:40:27.493607 5ff75c10-a4af-4c6f-8e6c-73c3dffbf97f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041577760"}, "pid": "9059", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:27.586634 2024-07-29 09:40:27.586637 a2e235d3-0550-41fa-8eff-00ca57a70bf3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041573579"}, "pid": "9060", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:27.668418 2024-07-29 09:40:27.668427 134dbebb-3b4a-4968-aa04-efc2678f1e5a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041570316"}, "pid": "9061", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:27.742082 2024-07-29 09:40:27.742086 920b2485-dad5-4e26-b25f-85e816a6ff8d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041570154"}, "pid": "9062", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:27.837123 2024-07-29 09:40:27.837128 b746f738-1c0a-47db-ac66-c26adb8d325c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041565762"}, "pid": "9063", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:27.937052 2024-07-29 09:40:27.937062 4955f13a-6086-440f-89db-8f13a3e7bf78 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041563409"}, "pid": "9064", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:28.020577 2024-07-29 09:40:28.020586 c15d1cc4-e089-46ad-9bd9-82e737e702b6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04155812X"}, "pid": "9065", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:28.11497 2024-07-29 09:40:28.114978 fb0f6504-8d05-45bd-869b-f1d9af647e9d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041558103"}, "pid": "9066", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:28.197272 2024-07-29 09:40:28.197281 e1f4e995-8024-409d-8f20-fe8484ba634b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041556984"}, "pid": "9067", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:28.275544 2024-07-29 09:40:28.275552 857e8c25-b919-4cdb-99a6-5cf382977b2a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041555252"}, "pid": "9068", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:28.342093 2024-07-29 09:40:28.342101 13894388-37b5-4271-830c-c6af1a18f246 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041552725"}, "pid": "9069", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:28.436319 2024-07-29 09:40:28.436329 d16f1dcb-d77b-4fe8-a389-381b1f18f1d9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041552334"}, "pid": "9070", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:28.528947 2024-07-29 09:40:28.528959 09c0ce99-fb01-4fa3-9174-6865aec1db94 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041549457"}, "pid": "9071", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:28.623671 2024-07-29 09:40:28.623674 eec76ade-851c-44e1-bdba-630597153822 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041543688"}, "pid": "9072", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:28.69913 2024-07-29 09:40:28.699139 67d31ef5-2cfc-4f02-8ea8-ce07e0c3ac52 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041540654"}, "pid": "9073", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:28.799819 2024-07-29 09:40:28.799828 a6815433-6b18-4965-88fa-3ff91b914929 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041540387"}, "pid": "9074", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:28.901485 2024-07-29 09:40:28.901494 cf2593d9-0482-4534-bd53-9321e191d7b5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041539346"}, "pid": "9075", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:28.992081 2024-07-29 09:40:28.992091 3f45dab1-8405-4d27-8721-a31d951728b4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041537882"}, "pid": "9076", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:29.072365 2024-07-29 09:40:29.07237 313dfcb7-ebee-46e9-a88a-6eede9d3c214 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04152862X"}, "pid": "9077", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:29.151788 2024-07-29 09:40:29.151793 a7ea0f75-ccc9-475d-b3e1-ae32d323996d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041528565"}, "pid": "9078", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:29.24521 2024-07-29 09:40:29.245218 31e426d9-190b-4684-8866-45d80507940b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041527186"}, "pid": "9079", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:29.328858 2024-07-29 09:40:29.328866 d1c6b634-a14a-46a0-a3e9-1579a20379bb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041527062"}, "pid": "9080", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:29.426687 2024-07-29 09:40:29.426694 28b8b3d6-446b-454b-9c45-93f84fe367a4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041521927"}, "pid": "9081", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:29.525332 2024-07-29 09:40:29.525342 f827e88c-cb77-47d9-b7bc-035b02ee4ef2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041511794"}, "pid": "9082", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:29.619165 2024-07-29 09:40:29.61917 7496c694-999f-4510-8b20-68203dffb2fe {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041511360"}, "pid": "9083", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:29.684884 2024-07-29 09:40:29.684891 8971bbc0-3110-4047-8a1b-4c813d407176 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041507983"}, "pid": "9084", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:29.786847 2024-07-29 09:40:29.78685 d4bf2e15-c210-48b5-a0be-b3a2d8501777 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041506588"}, "pid": "9085", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:29.915981 2024-07-29 09:40:29.91599 230efbb0-dc72-43d0-8a73-6bdc46a002ac {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041505190"}, "pid": "9086", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:30.029451 2024-07-29 09:40:30.029459 aaec3548-55be-4de3-bfee-c67f983ed588 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041504925"}, "pid": "9087", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:30.122134 2024-07-29 09:40:30.122142 1605c8a5-41ed-420d-b0c7-a490c6fae5e1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041501950"}, "pid": "9088", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:30.223025 2024-07-29 09:40:30.223034 0a772504-3c05-4831-b9e5-51c348af9d2b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041501608"}, "pid": "9089", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:30.3005 2024-07-29 09:40:30.300509 20489079-763e-4377-b115-f9b85a48ce51 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041497848"}, "pid": "9090", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:30.400179 2024-07-29 09:40:30.400186 4a765a72-485f-4b67-927c-167d169c4027 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041497112"}, "pid": "9091", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:30.486307 2024-07-29 09:40:30.486319 5fcc267c-2ee6-4f78-8bfe-b126f8ce254f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041490673"}, "pid": "9092", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:30.575529 2024-07-29 09:40:30.575539 15fe1fe1-8d57-4f1a-b7b7-119e9bf84e46 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041489837"}, "pid": "9093", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:30.661142 2024-07-29 09:40:30.661147 1b035c1b-9e48-482d-9172-d2803fb89e9a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041483626"}, "pid": "9094", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:30.718862 2024-07-29 09:40:30.71887 eddbe148-62a5-46dc-b54f-2c71e1e6ae56 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041479017"}, "pid": "9095", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:30.799137 2024-07-29 09:40:30.799147 20f9f422-34d7-4828-844f-157dbdf0d500 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041467760"}, "pid": "9096", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:30.893134 2024-07-29 09:40:30.893137 3fdfc539-a91e-47df-942d-c594b096b55c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04146351X"}, "pid": "9097", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:30.970536 2024-07-29 09:40:30.970543 5f70a446-ac6c-4078-bdc5-35da2f7e69a1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041463250"}, "pid": "9098", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:31.082735 2024-07-29 09:40:31.082746 33665332-9240-4118-8c6b-0632d64f09b6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041462467"}, "pid": "9099", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:31.174903 2024-07-29 09:40:31.17491 7abc93d8-6855-4a64-9df5-e07224f21387 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041456629"}, "pid": "9100", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:31.270365 2024-07-29 09:40:31.270381 65902117-04ae-467e-9609-21c4b9b79954 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041455908"}, "pid": "9101", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:31.367803 2024-07-29 09:40:31.367814 334754d4-3873-44d0-b228-9837c47d15e0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04145412X"}, "pid": "9102", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:31.458035 2024-07-29 09:40:31.458041 512a186f-79d3-4f7d-8895-8cd718955d6b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041451732"}, "pid": "9103", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:31.551315 2024-07-29 09:40:31.551327 20520182-57da-41e3-8cfd-7da25dafc822 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041449347"}, "pid": "9104", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:31.631944 2024-07-29 09:40:31.631954 d3d26a02-3cf5-46e0-88f7-df6896afc322 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041448723"}, "pid": "9105", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:31.701268 2024-07-29 09:40:31.70127 6d6d87af-dac9-4110-86bb-daae8f33341e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041445120"}, "pid": "9106", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:31.754139 2024-07-29 09:40:31.754147 3b898693-728d-4725-94b7-3ebcfac9e013 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041445082"}, "pid": "9107", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:31.831803 2024-07-29 09:40:31.831857 6cb6adff-122f-42e6-a6bc-35ee82ccba8c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041444817"}, "pid": "9108", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:31.915322 2024-07-29 09:40:31.915334 a2d2469d-a59b-4b3c-afa7-43044f9c537a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041444809"}, "pid": "9109", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:32.011718 2024-07-29 09:40:32.01173 3f0d49d8-6be0-44b7-8042-c15765b027b2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041444108"}, "pid": "9110", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:32.106795 2024-07-29 09:40:32.106804 8f1603d4-e050-45a8-aca0-c26f5a2dbe05 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04144115X"}, "pid": "9111", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:32.199054 2024-07-29 09:40:32.199066 946fba33-2907-419a-b889-580b28a98527 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041440706"}, "pid": "9112", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:32.281001 2024-07-29 09:40:32.281013 49400c6d-7b19-48c5-9dfb-f6d9705e6b94 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041439686"}, "pid": "9113", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:32.362367 2024-07-29 09:40:32.362377 11a47166-7d68-4743-9188-1f3f7b40465c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041436512"}, "pid": "9114", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:32.44609 2024-07-29 09:40:32.446097 04a3430a-2266-4753-8ca0-05670545c05d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041434722"}, "pid": "9115", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:32.539556 2024-07-29 09:40:32.539565 34c85fd6-35bc-4a0f-a84f-e5bea7c1d5ce {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041427548"}, "pid": "9116", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:32.631686 2024-07-29 09:40:32.631698 5ad13bb5-2166-4445-8cbd-f094277071d2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041424654"}, "pid": "9117", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:32.712427 2024-07-29 09:40:32.712432 a16da446-4679-4ca6-845d-891fd3f80597 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041419464"}, "pid": "9118", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:32.771172 2024-07-29 09:40:32.77118 5c886517-3a37-4dd4-b0cf-343bd4ee372e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041413334"}, "pid": "9119", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:32.843508 2024-07-29 09:40:32.843516 e1bfed59-9ace-4356-ba2f-43c8cae529dd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041413083"}, "pid": "9120", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:32.926032 2024-07-29 09:40:32.926041 3b073a7f-1ad1-47ef-98bc-6306e6d5b442 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041410513"}, "pid": "9121", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:32.999099 2024-07-29 09:40:32.999107 a1679e29-b227-4a1d-8788-71ed50455e37 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041406605"}, "pid": "9122", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:33.092139 2024-07-29 09:40:33.092148 df07aa82-efa6-4708-98e1-89fe41e11deb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041403886"}, "pid": "9123", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:33.180448 2024-07-29 09:40:33.18046 dafa8b0a-aa97-4df8-ab7a-00747c40fa84 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041403657"}, "pid": "9124", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:33.264741 2024-07-29 09:40:33.264752 688e788d-ee2a-4e6c-9508-90ea9b55b1a5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041401522"}, "pid": "9125", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:33.358579 2024-07-29 09:40:33.358587 e4c10c06-b03f-49b6-b6a2-b432ce84ab58 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041400909"}, "pid": "9126", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:33.443585 2024-07-29 09:40:33.443594 da55bf29-ba9b-4a7a-8b7e-38d1b3453a58 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041398424"}, "pid": "9127", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:33.528473 2024-07-29 09:40:33.528484 fdfe78cd-81c3-46e4-a1f0-f8c334287e31 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041397932"}, "pid": "9128", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:33.625823 2024-07-29 09:40:33.625903 2d862c0e-ff6e-429b-ae69-e236e794512b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041397150"}, "pid": "9129", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:33.722402 2024-07-29 09:40:33.722414 17873de1-b5f1-4940-858c-b64817540fd7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04139674X"}, "pid": "9130", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:33.789982 2024-07-29 09:40:33.789992 6c10a5a7-4c6b-4e9e-ba7d-0d6428d44b57 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041395786"}, "pid": "9131", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:33.863323 2024-07-29 09:40:33.863332 c32f5ecb-c1b2-4983-a66d-f9512526284d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04139531X"}, "pid": "9132", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:33.960983 2024-07-29 09:40:33.960996 4fbfe096-1a62-4f87-b633-5e8f0d7de629 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041393848"}, "pid": "9133", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:34.052828 2024-07-29 09:40:34.052841 1ab13083-9cb4-488a-b165-474e6056a636 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041392736"}, "pid": "9134", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:34.153556 2024-07-29 09:40:34.153569 9676846b-250d-4db2-bba7-893992b86c44 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041385896"}, "pid": "9135", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:34.240296 2024-07-29 09:40:34.240304 8bf0b98e-8a5f-4213-b27d-569ab92530e5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041385659"}, "pid": "9136", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:34.327064 2024-07-29 09:40:34.327077 31b5e24f-8dd4-4601-9c91-2007e2e8b580 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041382994"}, "pid": "9137", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:34.415984 2024-07-29 09:40:34.415995 9d7da637-6346-4f24-b7eb-4e94ad4577a2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041380827"}, "pid": "9138", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:34.508324 2024-07-29 09:40:34.508336 2a247f69-2e96-4f2c-a073-30b3c008721d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041378970"}, "pid": "9139", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:34.593484 2024-07-29 09:40:34.593494 86206f7f-8b95-46d3-812d-97c4cf6cdb5b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041378296"}, "pid": "9140", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:34.682942 2024-07-29 09:40:34.682954 e0dea7c0-1d30-4e66-965b-5abdeb541475 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04137651X"}, "pid": "9141", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:34.770931 2024-07-29 09:40:34.770935 191826d7-e002-4c10-8b72-86612bd27830 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041375785"}, "pid": "9142", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:34.841603 2024-07-29 09:40:34.841613 64345e22-87f1-40bb-9815-011f0b2ad58d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041375157"}, "pid": "9143", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:34.938077 2024-07-29 09:40:34.938085 244fa005-a9ec-4d26-b1c8-d1f624230927 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041373146"}, "pid": "9144", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:35.0484 2024-07-29 09:40:35.048409 f1cf31a5-0197-4ff2-aa91-ad312ac2d513 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041372867"}, "pid": "9145", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:35.155792 2024-07-29 09:40:35.155806 2a041e38-28fd-4387-8208-aacdfc5044c5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041369424"}, "pid": "9146", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:35.265327 2024-07-29 09:40:35.265331 c376e449-cbe6-4c11-89c7-6829510c4b12 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041368118"}, "pid": "9147", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:35.354407 2024-07-29 09:40:35.354415 c3ab4c53-c3af-43ff-bdc8-5a5ea5e3636e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041367782"}, "pid": "9148", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:35.446813 2024-07-29 09:40:35.446821 acccf946-12b2-4c18-8557-5fa21f495e22 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041358902"}, "pid": "9149", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:35.532894 2024-07-29 09:40:35.532903 824091b7-1d1b-4734-864d-1b44b5b8fa38 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041358678"}, "pid": "9150", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:35.615157 2024-07-29 09:40:35.61517 528213ff-a92f-4ea6-b6ab-774439a9583a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041357515"}, "pid": "9151", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:35.70817 2024-07-29 09:40:35.708181 9fd2aaed-ba82-4898-9a1a-437a50443503 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041351169"}, "pid": "9152", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:35.797701 2024-07-29 09:40:35.797705 bb849f39-4ad1-4378-a25a-752008c7b0c9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041344677"}, "pid": "9153", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:35.857334 2024-07-29 09:40:35.857341 e5211a88-881d-4e55-b577-a497c74da9b8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041336844"}, "pid": "9154", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:35.932201 2024-07-29 09:40:35.93221 d770a411-b26e-437e-b1a5-c0179a33cd7d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041336720"}, "pid": "9155", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:36.027975 2024-07-29 09:40:36.027985 f44d628d-e219-459a-be97-283abcc499c3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041332156"}, "pid": "9156", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:36.114506 2024-07-29 09:40:36.114515 e3e09a0f-bb0d-4842-aba2-c7a6ac84e42d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041330048"}, "pid": "9157", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:36.202059 2024-07-29 09:40:36.202068 10ec5ee3-ad6f-4820-891c-3c16ab6652c9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041328523"}, "pid": "9158", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:36.288262 2024-07-29 09:40:36.288275 4157d81f-4290-4419-8218-4f423a86ff8b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041327896"}, "pid": "9159", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:36.381412 2024-07-29 09:40:36.381419 47f32d82-f353-4562-bdfe-f841fe125bc5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041326393"}, "pid": "9160", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:36.47511 2024-07-29 09:40:36.475122 3a5b988b-5a7f-4290-b86e-3913679c1e7f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041325109"}, "pid": "9161", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:36.571822 2024-07-29 09:40:36.571831 8e8f865b-76c8-4f32-b566-d3a86c26b79d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04132501X"}, "pid": "9162", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:36.661128 2024-07-29 09:40:36.661139 d031ae15-33f5-4162-8a40-e850785d1e8b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041321782"}, "pid": "9163", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:36.760035 2024-07-29 09:40:36.760048 e77f083b-33ef-4f08-9327-90523f984724 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041318153"}, "pid": "9164", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:36.841022 2024-07-29 09:40:36.841026 9c820b1e-d054-4705-ba06-04330cd1b85a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041312406"}, "pid": "9165", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:36.90221 2024-07-29 09:40:36.902218 01593173-7063-4b8c-8853-088d5b16098b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041311248"}, "pid": "9166", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:36.97696 2024-07-29 09:40:36.976967 c4199209-b663-4a38-bde8-8d83546f3b64 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041308263"}, "pid": "9167", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:37.04703 2024-07-29 09:40:37.047038 c2fba17e-f484-41f0-8586-089295ab84a8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041306570"}, "pid": "9168", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:37.164871 2024-07-29 09:40:37.16488 8e089862-836e-4519-b3e0-6ad8bd74c1d6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041306473"}, "pid": "9169", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:37.254394 2024-07-29 09:40:37.254405 834f2327-6d6c-4871-8e8c-138e48d95900 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041305450"}, "pid": "9170", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:37.346212 2024-07-29 09:40:37.346223 d42ceaf6-820b-4bdb-a337-80fe021b2d14 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041301005"}, "pid": "9171", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:37.439931 2024-07-29 09:40:37.439943 5245ebaa-abef-4cbe-9add-bac438035b22 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041296540"}, "pid": "9172", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:37.531362 2024-07-29 09:40:37.531374 70a42247-d283-4706-bdd2-b1f5759f9c2a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041291107"}, "pid": "9173", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:37.626492 2024-07-29 09:40:37.626499 652b9ba6-6031-42ce-9484-ad43a337fc1f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041289870"}, "pid": "9174", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:37.718668 2024-07-29 09:40:37.718677 3c006b1b-87fb-45af-b6f2-699acb09ddaa {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041288769"}, "pid": "9175", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:37.808394 2024-07-29 09:40:37.808402 58dfd58d-3c19-45c2-a377-1ef0edf8b348 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04128805X"}, "pid": "9176", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:37.884736 2024-07-29 09:40:37.884741 6e09df70-63fd-47d2-8618-4ed0d925c8fe {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041287886"}, "pid": "9177", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:37.951936 2024-07-29 09:40:37.951944 a53822b5-9968-4903-a74e-50ff1fe1b3fe {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041285913"}, "pid": "9178", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:38.025099 2024-07-29 09:40:38.025107 37aec341-1dfc-4f9f-b937-756ef10e2599 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041284100"}, "pid": "9179", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:38.127258 2024-07-29 09:40:38.127267 983640e0-7026-4a5e-8dc5-37812b2dcf59 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041282787"}, "pid": "9180", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:38.216075 2024-07-29 09:40:38.216088 09263a10-6312-48ac-b65c-1bdca9a59261 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041280628"}, "pid": "9181", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:38.30592 2024-07-29 09:40:38.305928 23a6fcdd-1fbc-45b0-82de-e99ebfb7564c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041277848"}, "pid": "9182", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:38.390262 2024-07-29 09:40:38.390271 d4ed0abe-c4af-486f-a23f-1acf687c5498 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041277090"}, "pid": "9183", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:38.483131 2024-07-29 09:40:38.483143 d14ea0af-0d77-4a19-b219-ba957a83081f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041275829"}, "pid": "9184", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:38.604036 2024-07-29 09:40:38.604048 8b05dd55-69fd-4ad2-a06c-4fa3a623e7fe {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041274059"}, "pid": "9185", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:38.711567 2024-07-29 09:40:38.711579 62cef45a-a3bd-4fed-9928-25d72d0f777d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041270290"}, "pid": "9186", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:38.804916 2024-07-29 09:40:38.804928 f9cda690-2b10-4da8-b486-d551ed0023e1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041264487"}, "pid": "9187", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:38.889267 2024-07-29 09:40:38.88927 dcf653ec-4f5d-4da3-b297-91493b97a9a7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04126133X"}, "pid": "9188", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:38.945779 2024-07-29 09:40:38.945784 2aa256df-0786-4fd6-b84b-a7130d7e5f7a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041258819"}, "pid": "9189", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:39.009571 2024-07-29 09:40:39.00958 f0e7c96a-f5b0-4e51-a7fc-2af90d97f133 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041258762"}, "pid": "9190", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:39.084447 2024-07-29 09:40:39.084456 81a4a191-a699-41a1-9a12-870541ad9219 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041255364"}, "pid": "9191", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:39.172163 2024-07-29 09:40:39.172176 15654622-f9a7-480e-875a-931101f96d1c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041254759"}, "pid": "9192", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:39.263389 2024-07-29 09:40:39.263401 183df0e3-55db-43db-88f8-984a4f54c97b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041254538"}, "pid": "9193", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:39.361878 2024-07-29 09:40:39.361888 5e783ed9-7b5c-4ec5-aa56-4f0bfdd8094d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041251733"}, "pid": "9194", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:39.447598 2024-07-29 09:40:39.447609 3be0333d-b219-4763-a91a-aa54054c28c4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041250117"}, "pid": "9195", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:39.602295 2024-07-29 09:40:39.602307 b0e2eddb-f95d-4ce0-8589-3fae7ad513ef {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041244362"}, "pid": "9196", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:39.700324 2024-07-29 09:40:39.700333 ce5edee0-2855-439e-a35f-dc3a79ed8a8e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04124317X"}, "pid": "9197", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:39.793778 2024-07-29 09:40:39.793784 86239f66-1c48-44cb-b557-5cfb5b638a5c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041240839"}, "pid": "9198", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:39.8946 2024-07-29 09:40:39.894608 0918138d-c0aa-4de2-ba9b-6dd3cdd4ea54 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041237226"}, "pid": "9199", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:39.949942 2024-07-29 09:40:39.949945 659e2337-2028-46da-8b68-9985acb15337 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041231899"}, "pid": "9200", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:40.020364 2024-07-29 09:40:40.020372 fa50642a-4b9f-44c8-8e46-c563f3d44976 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041220803"}, "pid": "9201", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:40.097337 2024-07-29 09:40:40.097348 d2e22a69-f60c-4821-a148-32ef2ec06f6b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041218760"}, "pid": "9202", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:40.181722 2024-07-29 09:40:40.181734 6e1480f9-b574-482c-b264-dfb6c6a7d619 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041217896"}, "pid": "9203", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:40.264899 2024-07-29 09:40:40.264911 5b999c64-2995-4453-a6c5-670ebeb38aec {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041217225"}, "pid": "9204", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:40.350254 2024-07-29 09:40:40.350263 3209f864-2d51-4695-999f-90cef028c804 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041217020"}, "pid": "9205", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:40.433066 2024-07-29 09:40:40.433076 28562b3c-6bf6-4520-be8a-7557eccdb771 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04121630X"}, "pid": "9206", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:40.526323 2024-07-29 09:40:40.526336 a906ce9c-2cc0-4223-9157-6bbca3fa95ea {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041214870"}, "pid": "9207", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:40.627882 2024-07-29 09:40:40.627891 692b7173-65fd-4832-a1af-e915546ddf29 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041212339"}, "pid": "9208", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:40.709062 2024-07-29 09:40:40.709071 4bfa907e-3924-4e91-8df4-1d8c8a353090 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041211383"}, "pid": "9209", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:40.797191 2024-07-29 09:40:40.797203 7b2af90c-312b-45f8-849b-a738dc64cde3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041211154"}, "pid": "9210", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:40.891412 2024-07-29 09:40:40.891421 d448ff0c-1ba0-4d4d-bef1-d898bc0d4d25 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041208862"}, "pid": "9211", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:40.960157 2024-07-29 09:40:40.960159 69c05b4e-572b-44e7-a9e3-8f8cd12c7fbc {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041204409"}, "pid": "9212", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:41.035653 2024-07-29 09:40:41.03566 e779de63-838b-4c6f-b118-d3beb37f7db2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041176626"}, "pid": "9213", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:41.112074 2024-07-29 09:40:41.112082 3be78b29-93df-4fd8-815a-0d598624d328 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041175808"}, "pid": "9214", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:41.206746 2024-07-29 09:40:41.206757 e2813dae-0557-41b2-8ca3-52f2b71ee603 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041173899"}, "pid": "9215", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:41.29666 2024-07-29 09:40:41.296671 1ec10be9-7567-4a23-b94d-2efaaa659dda {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041172922"}, "pid": "9216", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:41.395668 2024-07-29 09:40:41.395679 aa9ec832-102a-419e-a218-47dca3a00193 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041172299"}, "pid": "9217", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:41.498636 2024-07-29 09:40:41.498643 5169a3e0-1dfc-458a-b048-c8bbf0844fca {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041164334"}, "pid": "9218", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:41.59274 2024-07-29 09:40:41.592749 0b15ca04-80ff-4272-b9be-4eaf066cb9e8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04115746X"}, "pid": "9219", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:41.69546 2024-07-29 09:40:41.695473 0604fb2e-3315-4c62-9342-13e398d39b7a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041144910"}, "pid": "9220", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:41.784792 2024-07-29 09:40:41.784802 299b6b98-37c4-4e9c-8ea4-df4cd52448e3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041142993"}, "pid": "9221", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:41.879246 2024-07-29 09:40:41.879259 87ff7f51-f8af-433d-844e-5abfbd8d7478 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041142403"}, "pid": "9222", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:41.965594 2024-07-29 09:40:41.965599 4e65b673-49fd-4461-be74-6c6c0d2b4982 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041134346"}, "pid": "9223", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:42.027778 2024-07-29 09:40:42.027786 dfe3a700-a99e-4c33-a67c-9488328ed598 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041133889"}, "pid": "9224", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:42.110486 2024-07-29 09:40:42.110494 917485bd-eb02-4e83-ae8d-baeaacf56ee1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041125002"}, "pid": "9225", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:42.197212 2024-07-29 09:40:42.197224 3d29d214-1065-474e-a962-aed864fde78d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041067940"}, "pid": "9226", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:42.278813 2024-07-29 09:40:42.278822 20ae5f72-c576-4a23-a9b3-63b437f0ad0d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040785947"}, "pid": "9227", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:42.364004 2024-07-29 09:40:42.364011 3721114a-e70a-4c52-9b05-0ac813e7c308 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04077984X"}, "pid": "9228", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:42.44256 2024-07-29 09:40:42.442567 ed2957d0-d67b-4ffe-a9a2-13bca2074615 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040777820"}, "pid": "9229", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:42.525803 2024-07-29 09:40:42.525812 14ce7eb5-4d0b-4a20-ac02-7b40f5e3bd37 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040776832"}, "pid": "9230", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:42.618767 2024-07-29 09:40:42.61878 e8142332-6613-4b2a-8afd-a128f78f5d10 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040760669"}, "pid": "9231", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:42.71224 2024-07-29 09:40:42.712253 5299f310-49e9-4e97-b34e-23d114843710 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04075121X"}, "pid": "9232", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:42.809548 2024-07-29 09:40:42.80956 b0dce182-5a28-41ea-bd42-9e248abae614 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040741117"}, "pid": "9233", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:42.907065 2024-07-29 09:40:42.907072 f35a281f-000b-4457-a128-d87c68d5b33e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040737888"}, "pid": "9234", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:43.000198 2024-07-29 09:40:43.000201 f88ee117-7cb1-45ee-959f-cd3975f53cc8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040737810"}, "pid": "9235", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:43.060075 2024-07-29 09:40:43.060082 26370a0d-e234-43a4-ab86-f75afdd12727 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040737063"}, "pid": "9236", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:43.13322 2024-07-29 09:40:43.133228 b7530b9b-55fa-4b5f-b938-d5a46a426a86 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040717763"}, "pid": "9237", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:43.217459 2024-07-29 09:40:43.21747 44b791d2-b72d-485e-ad84-9d970838b81d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040717119"}, "pid": "9238", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:43.315158 2024-07-29 09:40:43.31517 d86b553f-da3b-4d6f-816f-f448a413365a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040715213"}, "pid": "9239", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:43.401883 2024-07-29 09:40:43.40189 9480bc3d-5924-4755-be4f-0bb01ceb554e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040712168"}, "pid": "9240", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:43.497678 2024-07-29 09:40:43.49769 b5612f20-c355-4918-a0ec-5ea3ae5f74c1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040709248"}, "pid": "9241", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:43.903859 2024-07-29 09:40:43.90387 46e190fb-0f23-4a60-878b-8c4bb76f595c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040693759"}, "pid": "9245", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:44.004325 2024-07-29 09:40:44.004337 379b6c25-b19d-43cd-bb25-58e7dab5a94d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040693538"}, "pid": "9246", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:44.059807 2024-07-29 09:40:44.05981 84c88fc9-357a-4c9c-b671-aa8b0907eef4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040687333"}, "pid": "9247", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:44.125999 2024-07-29 09:40:44.126008 945cc1e7-5c90-40ae-be82-c1904aa75e9c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040685969"}, "pid": "9248", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:44.202951 2024-07-29 09:40:44.202954 be326e28-81ef-4e91-a908-88b726ca1bfc {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040677036"}, "pid": "9249", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:44.288683 2024-07-29 09:40:44.288693 eb034b8d-efc1-4fbe-a9a0-831c8fb8bb96 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04067701X"}, "pid": "9250", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:44.387364 2024-07-29 09:40:44.387377 0f8d3bb0-5b11-41f9-a0af-a3156caeced8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040664643"}, "pid": "9251", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:44.491486 2024-07-29 09:40:44.491496 1cebe566-4afb-4046-a21b-f5d910e485d9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040664244"}, "pid": "9252", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:44.597255 2024-07-29 09:40:44.597268 67f143ea-1c55-4531-b788-084f3604684b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040664104"}, "pid": "9253", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:44.715232 2024-07-29 09:40:44.715242 b02a880b-b9a1-4fcf-8ac4-c703ce3e274e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040658864"}, "pid": "9254", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:44.822213 2024-07-29 09:40:44.822226 4cccb1af-0926-4e06-80af-81c97913c2d5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040654648"}, "pid": "9255", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:44.931407 2024-07-29 09:40:44.931417 3b0c33a1-7fb1-4890-8bd7-5532d030d0c1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040641805"}, "pid": "9256", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:45.040067 2024-07-29 09:40:45.040076 46fcb4d6-3954-4e9b-b1fb-0469d4705073 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040633306"}, "pid": "9257", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:45.113105 2024-07-29 09:40:45.113115 18396cce-befe-428b-842c-6c46b463a188 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040628604"}, "pid": "9258", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:45.200253 2024-07-29 09:40:45.20026 9a039f3f-7c6b-4f4c-ad78-92a7203172a2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040628094"}, "pid": "9259", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:45.286306 2024-07-29 09:40:45.286319 c1c450c1-a737-492e-84e4-e27c6f0153b1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040621278"}, "pid": "9260", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:45.385297 2024-07-29 09:40:45.385307 2a7e75d1-5cd6-4719-9cd8-3b0e6f704a13 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040617203"}, "pid": "9261", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:45.483015 2024-07-29 09:40:45.483027 416b0344-f9b5-4b56-91c7-87ee99e64273 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040598160"}, "pid": "9262", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:45.580703 2024-07-29 09:40:45.580715 d5b4d967-2fae-43ca-8674-94b3d2d6b0ba {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040596648"}, "pid": "9263", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:45.673666 2024-07-29 09:40:45.673678 179d8ab3-ff99-476c-b897-fcc9bbdb41ca {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04059596X"}, "pid": "9264", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:45.784665 2024-07-29 09:40:45.784676 d5ad78f4-3ff1-479c-acf5-979699abd635 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040581780"}, "pid": "9265", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:45.895582 2024-07-29 09:40:45.895592 e2120a1d-3295-4045-83d0-f58788e6a448 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040579123"}, "pid": "9266", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:45.995679 2024-07-29 09:40:45.995689 07d5a1ed-e9f9-47ec-b194-e153c2ec0d2a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040576337"}, "pid": "9267", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:46.077239 2024-07-29 09:40:46.077248 7ac72f33-db6f-432c-8922-63d73a2263c8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040575136"}, "pid": "9268", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:46.143248 2024-07-29 09:40:46.143257 bb548459-ee09-49b7-a74c-55227502318e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040570215"}, "pid": "9269", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:46.222081 2024-07-29 09:40:46.222091 324ebebe-000b-49c5-bf19-c3e397fc04fd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040562182"}, "pid": "9270", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:46.320637 2024-07-29 09:40:46.320646 ebd5eca8-e953-451d-9ca1-40e992eafc8f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040539644"}, "pid": "9271", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:46.428834 2024-07-29 09:40:46.428844 56b8a74c-8212-4beb-b033-ad85751e9af5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04053376X"}, "pid": "9272", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:46.530338 2024-07-29 09:40:46.530352 482c22fd-eb3e-47df-8312-37bcff1bc348 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040515842"}, "pid": "9273", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:46.630677 2024-07-29 09:40:46.63069 3c2e55bf-215e-4679-ba78-5d40e87b50ba {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040490122"}, "pid": "9274", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:46.723231 2024-07-29 09:40:46.723243 8d6e8149-bd73-45d7-a066-56d54fe5d673 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040475972"}, "pid": "9275", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:46.820132 2024-07-29 09:40:46.820144 995b0a36-11c1-4add-be18-aa57b7fca8fe {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040475778"}, "pid": "9276", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:46.920343 2024-07-29 09:40:46.920353 fa44c49d-6ca3-4d27-9523-7a5c5ec28c02 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040471713"}, "pid": "9277", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:47.015452 2024-07-29 09:40:47.015506 c1bbe224-33cf-4a14-944d-30038e40a46f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040471233"}, "pid": "9278", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:47.111695 2024-07-29 09:40:47.1117 6a7b21b0-afd8-4a44-9445-b57f6d3e4523 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040468003"}, "pid": "9279", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:47.177757 2024-07-29 09:40:47.177765 d0ba3747-d174-4aa6-96a3-a78c844b0bab {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040461912"}, "pid": "9280", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:47.256441 2024-07-29 09:40:47.25645 cb1f4417-fcc2-4686-b043-6920ab168379 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040460495"}, "pid": "9281", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:47.336699 2024-07-29 09:40:47.33671 d3613169-47b3-472a-a53b-1aa5c3f02eba {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040459195"}, "pid": "9282", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:47.428907 2024-07-29 09:40:47.428917 2bcc22d8-338b-4b3d-b85a-b8077592f280 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040448932"}, "pid": "9283", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:47.516973 2024-07-29 09:40:47.516986 f228a3b8-6067-4632-9cd4-a4b860e932a8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040448924"}, "pid": "9284", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:47.608913 2024-07-29 09:40:47.608923 74e2c348-5efb-4579-b215-b48a6b64a3ee {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040414124"}, "pid": "9285", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:47.693426 2024-07-29 09:40:47.693433 a76ff651-7dca-426e-8da3-bb42b2e2a5bc {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04041177X"}, "pid": "9286", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:47.781666 2024-07-29 09:40:47.781676 e5059f8b-b9aa-4373-9c87-34274c4a87a5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040411583"}, "pid": "9287", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:47.879823 2024-07-29 09:40:47.879833 3e85b13b-b6bf-4400-8a91-8dd39a20f68b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040372170"}, "pid": "9288", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:47.982052 2024-07-29 09:40:47.982062 3f163686-0e49-44bd-b20c-ae22f7e22a6b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040366898"}, "pid": "9289", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:48.079437 2024-07-29 09:40:48.079445 aec45c4c-7f99-4d73-8324-372909a20217 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040357228"}, "pid": "9290", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:48.151725 2024-07-29 09:40:48.151728 489634fc-c69f-483f-8a4d-392065330ed3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040354415"}, "pid": "9291", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:48.205807 2024-07-29 09:40:48.205816 8c7c908a-1253-4b1c-ac3f-6b64271af2b6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040351130"}, "pid": "9292", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:48.278712 2024-07-29 09:40:48.278721 35c118cd-d673-4dec-b2d9-9fe2ea40f78f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04034889X"}, "pid": "9293", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:48.358324 2024-07-29 09:40:48.358334 3b9286ae-b2f0-4449-9398-74293643951d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040344029"}, "pid": "9294", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:48.441836 2024-07-29 09:40:48.441848 c34fe398-617d-4727-a7bf-b84371e8f684 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040302482"}, "pid": "9295", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:48.531363 2024-07-29 09:40:48.531376 e47882bb-a6ed-459d-b238-8fd100c8c65f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040299848"}, "pid": "9296", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:48.624095 2024-07-29 09:40:48.624107 ed9ae3c7-26a6-4949-a7a8-9f455c5ff10b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040297519"}, "pid": "9297", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:48.722012 2024-07-29 09:40:48.722025 0e6c2c7e-c1d7-4cce-8523-34277390d73b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040296709"}, "pid": "9298", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:48.812019 2024-07-29 09:40:48.81203 7d148407-45ca-47a3-9f72-cf3f8ae1cea9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040270076"}, "pid": "9299", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:48.906225 2024-07-29 09:40:48.906236 4209a37c-a002-4e48-b305-c02e41109d6e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040267210"}, "pid": "9300", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:49.000419 2024-07-29 09:40:49.000428 cf5506c8-e615-48d6-9809-cf5a5e634431 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040257029"}, "pid": "9301", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:49.083143 2024-07-29 09:40:49.083155 aa10ad8e-3c1f-4364-b724-da9092a46de0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040246655"}, "pid": "9302", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:49.172429 2024-07-29 09:40:49.172435 3bd314c5-9fbf-4833-bce5-55c402b7efe9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040218066"}, "pid": "9303", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:49.242741 2024-07-29 09:40:49.242751 d33690a7-2da8-439a-8fc5-0a8a47b80683 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04021334X"}, "pid": "9304", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:49.322166 2024-07-29 09:40:49.322173 9ced6d22-54a8-468a-a3a1-468a4afb23bf {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040200728"}, "pid": "9305", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:49.405112 2024-07-29 09:40:49.405123 85848423-e4ba-4601-b414-68b4c4dc5fa7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040200159"}, "pid": "9306", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:49.492105 2024-07-29 09:40:49.492116 e7eb5454-9d00-40ae-81ec-4eeadc652ba2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040195589"}, "pid": "9307", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:49.584815 2024-07-29 09:40:49.584828 f14f281b-667b-4edd-82db-ce40a53bba03 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040172503"}, "pid": "9308", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:49.676219 2024-07-29 09:40:49.676231 6b62a68b-1db0-46e1-a0af-16d2ef21db8d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040171078"}, "pid": "9309", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:49.772196 2024-07-29 09:40:49.772208 f23d5c2d-9f7a-4596-aa5b-2fc8a8863900 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040163172"}, "pid": "9310", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:49.87294 2024-07-29 09:40:49.87295 b5451c50-0c24-4409-aff2-561f3fcd27ba {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04015985X"}, "pid": "9311", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:49.968032 2024-07-29 09:40:49.968081 0dd26dd4-4dba-45f4-ad84-af7dab1197d9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040158292"}, "pid": "9312", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:50.058129 2024-07-29 09:40:50.058141 26303179-1b9f-40a4-9a1f-10c333af14b5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040143503"}, "pid": "9313", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:50.158581 2024-07-29 09:40:50.158593 0420e1d7-296d-4a11-b920-3cad7721fee4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040143376"}, "pid": "9314", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:50.235794 2024-07-29 09:40:50.235797 d28ff038-05a5-464c-aef4-833845758bca {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040137465"}, "pid": "9315", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:50.311703 2024-07-29 09:40:50.311714 73b5a1aa-8698-4e02-b1a7-c773e43d7aee {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040136302"}, "pid": "9316", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:50.39602 2024-07-29 09:40:50.396033 78e5c2c4-3e2e-4946-973b-65e1f429d182 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040132153"}, "pid": "9317", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:50.484212 2024-07-29 09:40:50.484222 99872cfc-7c3d-4115-b087-e72d463aa408 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040110680"}, "pid": "9318", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:50.581784 2024-07-29 09:40:50.581799 d94ae576-d037-4f60-9def-4d9373ab7744 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040105423"}, "pid": "9319", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:50.675446 2024-07-29 09:40:50.675456 bdfb6dee-da5a-4f24-a5af-70e42d795c66 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040098923"}, "pid": "9320", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:50.770541 2024-07-29 09:40:50.770553 54b9eac1-6b24-412c-8219-1075dff2da80 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040092755"}, "pid": "9321", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:50.866578 2024-07-29 09:40:50.866591 ad1b02c9-ef64-4947-9575-d6f098c9e770 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04009104X"}, "pid": "9322", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:50.963076 2024-07-29 09:40:50.963085 17d49c46-2887-4985-927d-0a22119673c1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040090809"}, "pid": "9323", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:51.054961 2024-07-29 09:40:51.054971 d1c71e95-be42-44cd-b421-96e432dab35e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040072118"}, "pid": "9324", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:51.139917 2024-07-29 09:40:51.139929 aeabfa52-54a1-422a-bbf6-83b16a36f769 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040070328"}, "pid": "9325", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:51.233399 2024-07-29 09:40:51.233404 b584c15c-a861-48ff-aa7d-10db80b76ec3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040060055"}, "pid": "9326", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:51.307115 2024-07-29 09:40:51.307122 e2ab05bb-9238-4305-a9ff-4e94bdc4781d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040054020"}, "pid": "9327", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:51.383555 2024-07-29 09:40:51.383566 a85f8484-876e-4a8f-b68c-c6057ace9583 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040048543"}, "pid": "9328", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:51.471506 2024-07-29 09:40:51.471516 76809272-66b6-4cbc-a16b-8d516e39e159 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040035506"}, "pid": "9329", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:51.556823 2024-07-29 09:40:51.556834 c3118158-f94d-41b0-8deb-fb9bee1832b0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04003500X"}, "pid": "9330", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:51.646557 2024-07-29 09:40:51.64657 c67a658e-a036-4a8f-a4a4-129b4f292bf9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040030962"}, "pid": "9331", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:51.730452 2024-07-29 09:40:51.730459 b9d0774c-1077-4c4c-9fcc-97eb8aa0af43 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040018040"}, "pid": "9332", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:51.831057 2024-07-29 09:40:51.831066 0477bb41-79bf-4a45-8838-e58a0b98fbf0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040009866"}, "pid": "9333", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:51.920304 2024-07-29 09:40:51.920314 9fd876e1-fcc6-4359-98f3-e45145b21fd3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040009327"}, "pid": "9334", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:52.02008 2024-07-29 09:40:52.02009 91d74cd6-7b27-4a6c-9cde-5f209b981c78 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040004570"}, "pid": "9335", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:52.106365 2024-07-29 09:40:52.106376 bcd803ba-cec1-4e09-a29c-555b83a7a0b0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04000158X"}, "pid": "9336", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:52.199413 2024-07-29 09:40:52.199425 de15b7e0-82eb-446e-9536-ff16237c8e1c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1336884932"}, "pid": "9337", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:52.273761 2024-07-29 09:40:52.273764 972fe0d0-efb6-4655-b2f1-5d0fb0ed8358 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1336884762"}, "pid": "9338", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:52.32697 2024-07-29 09:40:52.326976 6a95be8b-18c2-41fc-b539-1bd7326e9450 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1336876913"}, "pid": "9339", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:52.404973 2024-07-29 09:40:52.404981 cf4bb71e-e1a6-4c36-874f-d6849d9b8783 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1336874678"}, "pid": "9340", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:52.48738 2024-07-29 09:40:52.487393 9858a68c-4f12-4b6f-9092-c216594abc2f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1336874414"}, "pid": "9341", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:52.576595 2024-07-29 09:40:52.576604 5abeb207-4586-4267-aad3-036270fd59bf {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/133686463X"}, "pid": "9342", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:52.657961 2024-07-29 09:40:52.657972 74d96765-a8b6-4526-81d9-c6f457da5106 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1336835052"}, "pid": "9343", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:52.744865 2024-07-29 09:40:52.744877 9599b008-8213-43a2-a439-e3aae0d90e92 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1336765410"}, "pid": "9344", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:52.838831 2024-07-29 09:40:52.838844 67d6e761-959a-4cff-a229-6c72c08748ff {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1336763213"}, "pid": "9345", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:52.93053 2024-07-29 09:40:52.93055 19767ec8-594c-4f20-a147-ffb33ab8eb93 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1336761083"}, "pid": "9346", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:53.015134 2024-07-29 09:40:53.015141 ff8c7827-8ffa-45d1-a42b-30528b0ba6f1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1336749369"}, "pid": "9347", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:53.093246 2024-07-29 09:40:53.093256 9fa7da78-ba92-477d-aff3-69cd7ed7c659 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1336591390"}, "pid": "9348", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:53.193389 2024-07-29 09:40:53.193396 38485bba-9bad-46ae-a09c-21ec50837414 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1336589876"}, "pid": "9349", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:53.28 2024-07-29 09:40:53.280008 a5efc1cb-189b-4e57-be73-f78f75f21add {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/133658873X"}, "pid": "9350", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:53.330517 2024-07-29 09:40:53.33052 8cedf202-c0d9-425f-868c-d0c22a76184e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1336532009"}, "pid": "9351", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:53.401823 2024-07-29 09:40:53.401828 418f620c-f321-4e50-ab85-bba77ff758cb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/133646609X"}, "pid": "9352", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:53.46838 2024-07-29 09:40:53.468389 671b67b2-fc6a-4085-a9e4-35b727bc0516 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1336401087"}, "pid": "9353", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:53.54746 2024-07-29 09:40:53.54747 54786fcb-e976-425e-ba22-3d618c11b477 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1336381698"}, "pid": "9354", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:53.63348 2024-07-29 09:40:53.633493 5564681c-aabe-4dfa-ac1b-1f91af40c01d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1336261625"}, "pid": "9355", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:53.71659 2024-07-29 09:40:53.716598 6b3b9a22-a5f5-4f8b-ad92-882e8f725451 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1336259086"}, "pid": "9356", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:53.894849 2024-07-29 09:40:53.894861 c50baee6-cdc9-4019-aca4-7a58cb0632a2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1336255897"}, "pid": "9357", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:54.254266 2024-07-29 09:40:54.254277 d1341725-f17f-44d7-b3d5-02d371283464 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1336255692"}, "pid": "9358", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:54.355056 2024-07-29 09:40:54.355063 e2995f1e-4300-4f90-8648-bcef9af3048c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1336255609"}, "pid": "9359", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:54.447247 2024-07-29 09:40:54.447258 55ddf09f-df08-4f7e-a49a-7ae4198fff00 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1336248335"}, "pid": "9360", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:54.542032 2024-07-29 09:40:54.542042 9edf23a6-ec0c-451d-9f03-2ea572aa596a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1336235047"}, "pid": "9361", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:54.636017 2024-07-29 09:40:54.63603 23d7fa8f-98cc-4ec6-8fa9-a02eb8764399 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1336230754"}, "pid": "9362", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:54.726127 2024-07-29 09:40:54.726137 2bd65c91-6c0a-4760-b7e0-d4461b951b47 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1336223200"}, "pid": "9363", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:54.811077 2024-07-29 09:40:54.811087 6273ba19-6628-4170-82b3-a465f99bd580 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1336168528"}, "pid": "9364", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:54.899467 2024-07-29 09:40:54.899476 4155a59e-b199-4ee6-9aa0-c7c162aed58e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1336166509"}, "pid": "9365", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:54.995293 2024-07-29 09:40:54.995304 335b548a-f3cf-40e5-9751-10362a71dcff {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1336144033"}, "pid": "9366", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:55.087588 2024-07-29 09:40:55.087604 a3e40a52-67a1-4422-8388-17bf337b4e72 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1336140607"}, "pid": "9367", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:55.175107 2024-07-29 09:40:55.175117 fc364bff-cff3-4920-aef6-bf7b65f644dd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1336136634"}, "pid": "9368", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:55.261724 2024-07-29 09:40:55.261736 02827f59-b88c-4cd1-b89b-7bb1568093b9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1336125306"}, "pid": "9369", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:55.339649 2024-07-29 09:40:55.339652 c6dea369-1de7-4867-8dd5-902f3785719d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1336043652"}, "pid": "9370", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:55.399326 2024-07-29 09:40:55.399334 f5e57aa0-c3cd-48c2-b837-8d2f40f256d4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/133603906X"}, "pid": "9371", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:55.476308 2024-07-29 09:40:55.47632 6c64a192-f380-4115-aa6c-bb49f08c42b2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1336037571"}, "pid": "9372", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:55.565395 2024-07-29 09:40:55.565408 f0b73699-632a-4ec3-b563-9bfae193624f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1336035544"}, "pid": "9373", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:55.652948 2024-07-29 09:40:55.65296 5a29800a-de76-4eaa-bd39-28023fefcca1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1336026758"}, "pid": "9374", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:55.736073 2024-07-29 09:40:55.736082 1f50c2ae-90c8-4ded-a188-4eb15762571b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1336019883"}, "pid": "9375", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:55.817338 2024-07-29 09:40:55.817345 d4d18ad3-b2df-469f-a574-97317b29efa5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1336015497"}, "pid": "9376", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:55.903272 2024-07-29 09:40:55.903283 409193e8-998f-4238-8df2-b5481d4e4546 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1335982361"}, "pid": "9377", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:55.993493 2024-07-29 09:40:55.993505 bbc29262-03f4-4ced-a5ce-e4ed30b02250 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/133595368X"}, "pid": "9378", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:56.077249 2024-07-29 09:40:56.077261 6c49db8e-ded4-4ffe-97ac-60b75d28b94a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1335904158"}, "pid": "9379", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:56.158875 2024-07-29 09:40:56.158888 dbff2ae0-d3fa-4c4e-80af-e5529b3bba02 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1335903623"}, "pid": "9380", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:56.242357 2024-07-29 09:40:56.242364 5ba1e7ca-6bbe-40f4-96e2-f0c1ac99ce4c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1335900330"}, "pid": "9381", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:56.324874 2024-07-29 09:40:56.324884 a01bb640-3f5b-4adc-8a4d-cca62910c2ac {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1335882758"}, "pid": "9382", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:56.391796 2024-07-29 09:40:56.391799 40d6c7ea-0037-4bf3-b246-35baab74f053 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1335881247"}, "pid": "9383", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:56.469163 2024-07-29 09:40:56.469171 c8707199-75dc-4166-857d-ce3d730b0798 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/133582569X"}, "pid": "9384", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:56.555951 2024-07-29 09:40:56.555963 d362133b-e83e-453c-bd6a-89c2b2c4af19 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1335777539"}, "pid": "9385", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:56.642474 2024-07-29 09:40:56.642486 b3bfaba6-68c3-4de5-91a7-1247d9209c78 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1335762779"}, "pid": "9386", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:56.722802 2024-07-29 09:40:56.722809 d2375546-8464-4f0c-b5df-c525e653218f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1335752897"}, "pid": "9387", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:56.813514 2024-07-29 09:40:56.813524 cbd4843d-aaf7-4f97-b36f-8d5f0b955eb9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/133575086X"}, "pid": "9388", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:56.89779 2024-07-29 09:40:56.897799 2d4333fb-e032-44db-8278-51d4cf3cbce8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1335736832"}, "pid": "9389", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:56.985482 2024-07-29 09:40:56.98549 ea7b9d83-9409-4cef-8deb-d0f4efaa23ea {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1335733086"}, "pid": "9390", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:57.052218 2024-07-29 09:40:57.052226 500f7920-e2c8-4d24-b32b-73bc41d5ef0c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1335729577"}, "pid": "9391", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:57.128418 2024-07-29 09:40:57.12843 50cce555-f0e1-4366-ae5d-ef7c51ea8d70 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1335727701"}, "pid": "9392", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:57.195811 2024-07-29 09:40:57.19582 28cba67e-1b74-4b05-b56e-df12d86b89e4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1335528539"}, "pid": "9393", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:57.279113 2024-07-29 09:40:57.279125 edb7f26a-df81-476b-8673-d97404268a00 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1335514767"}, "pid": "9394", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:57.364922 2024-07-29 09:40:57.364933 a1e4380c-569d-4fed-aa2c-03d551a59ec5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1335503307"}, "pid": "9395", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:57.431364 2024-07-29 09:40:57.431368 2e4addc8-0a75-4209-95c7-2474de3d51fb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1335484930"}, "pid": "9396", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:57.498893 2024-07-29 09:40:57.498926 c805b5a7-2fc6-49df-b10c-7bf7200d2f31 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1335484639"}, "pid": "9397", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:57.573808 2024-07-29 09:40:57.573817 fbf31e04-ddcd-42d7-ba60-42146148ff5e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1335475753"}, "pid": "9398", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:57.659042 2024-07-29 09:40:57.659054 45cb123b-d0bc-4a40-93f0-50d66a36b729 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1335475575"}, "pid": "9399", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:57.756515 2024-07-29 09:40:57.756524 51383135-6eb0-4cdd-88a0-e8664a42317a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1335348379"}, "pid": "9400", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:57.85372 2024-07-29 09:40:57.853733 e422372b-4e4c-448b-8dab-3979c893717c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1335334955"}, "pid": "9401", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:57.941607 2024-07-29 09:40:57.941619 36be6f85-38d3-4583-9e3f-e2cbae47acfd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1335332510"}, "pid": "9402", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:58.031647 2024-07-29 09:40:58.031657 df2ed215-9d30-438d-a608-2694c13044d5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1335327541"}, "pid": "9403", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:58.12419 2024-07-29 09:40:58.1242 fd6ab557-306d-4d52-baf3-59cd9f45edcc {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1335263977"}, "pid": "9404", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:58.205909 2024-07-29 09:40:58.20592 ddd9cf65-8928-435c-87cc-1ea8d6a8bca3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1335255869"}, "pid": "9405", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:58.283259 2024-07-29 09:40:58.283275 d1c72c8b-c111-4a57-9f0a-bbff35525f34 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1335237232"}, "pid": "9406", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:58.371858 2024-07-29 09:40:58.371868 a77ed116-ed3c-408c-8d72-e440fe7b09e9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1335237046"}, "pid": "9407", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:58.439053 2024-07-29 09:40:58.439056 47933802-5c99-47ca-add0-7df4c042c9e1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/133523490X"}, "pid": "9408", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:58.495585 2024-07-29 09:40:58.495592 a33cdd79-c3d7-4acc-bf90-5eb8d7bcf673 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1335228187"}, "pid": "9409", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:58.567021 2024-07-29 09:40:58.567031 6eb94e55-013f-4924-bf2f-483d7365ce40 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1335212299"}, "pid": "9410", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:58.648041 2024-07-29 09:40:58.648052 78a74a6b-0083-4833-9f30-efbd4a556a92 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/133521075X"}, "pid": "9411", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:58.740109 2024-07-29 09:40:58.740129 865073b0-9e66-4d66-84b7-49db983f6685 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1335201068"}, "pid": "9412", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:58.829852 2024-07-29 09:40:58.829862 9ff2c16e-d3f8-4f19-a609-739add839472 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1335134549"}, "pid": "9413", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:58.91232 2024-07-29 09:40:58.912327 908c0841-ffa1-45be-a66c-28b03759a29f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1335054405"}, "pid": "9414", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:58.985229 2024-07-29 09:40:58.985238 9dc6d42e-8845-4134-a60d-2fb37006970a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334935475"}, "pid": "9415", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:59.067152 2024-07-29 09:40:59.067164 2a06e67d-aedd-4088-9f63-cfe762025d14 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334906815"}, "pid": "9416", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:59.154355 2024-07-29 09:40:59.154365 4bfc8d05-3762-4a21-b90c-98cbcac2df1c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334879079"}, "pid": "9417", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:59.244268 2024-07-29 09:40:59.244281 193d9f82-f146-482d-b9b8-8d400ac6e0e7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334810524"}, "pid": "9418", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:59.335627 2024-07-29 09:40:59.33564 ee1f2d21-d6be-49d4-9a15-f1549359a4ea {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334804893"}, "pid": "9419", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:59.438903 2024-07-29 09:40:59.438908 33fed73a-d1e1-400a-beb0-5925f4d0bff3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334804699"}, "pid": "9420", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:59.493606 2024-07-29 09:40:59.493612 efe3ed06-18c3-4b45-adba-4d917eaa3621 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334804281"}, "pid": "9421", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:59.567497 2024-07-29 09:40:59.567507 274dff94-7d1a-465a-a0a1-a95dac1dd0f6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334795533"}, "pid": "9422", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:59.661221 2024-07-29 09:40:59.661233 7b3b520f-cd69-49fd-8eae-ed39527c679f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334784639"}, "pid": "9423", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:59.73797 2024-07-29 09:40:59.73798 9b394c83-ce66-4a27-826f-ddb3fbe522c6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334676844"}, "pid": "9424", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:59.817921 2024-07-29 09:40:59.817928 ac71b902-8064-49a0-a7f2-7bf661fc134a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334652074"}, "pid": "9425", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:40:59.915955 2024-07-29 09:40:59.915968 9ceb865a-87ba-4ed2-ba0c-947077b0600e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334205639"}, "pid": "9426", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:00.022849 2024-07-29 09:41:00.022854 19a78188-1e86-469c-8ebf-ac163e02086b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333849850"}, "pid": "9427", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:00.087272 2024-07-29 09:41:00.087282 151a0077-546b-4f94-b91a-2886fe0a0687 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333570651"}, "pid": "9428", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:00.167473 2024-07-29 09:41:00.167484 f72ab870-d990-4a0f-b8f1-cd63193e6799 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333353421"}, "pid": "9429", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:00.250529 2024-07-29 09:41:00.250537 944dae9c-3b05-4a77-bd3f-0aece67abe22 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333321201"}, "pid": "9430", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:00.33919 2024-07-29 09:41:00.339203 d46ac001-5903-41b5-b6c2-14725265858c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333260148"}, "pid": "9431", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:00.427673 2024-07-29 09:41:00.427683 72e4b7af-9ef0-482c-9297-e6e12b15c89b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333126433"}, "pid": "9432", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:00.573645 2024-07-29 09:41:00.573648 e317177a-5781-4d96-8b2d-f4636a0cfa44 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333115482"}, "pid": "9433", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:00.620948 2024-07-29 09:41:00.620951 5394b2c6-b948-4297-8f97-c4c3f6c97e8a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1332860451"}, "pid": "9434", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:00.669522 2024-07-29 09:41:00.669524 c4376ccd-9cd2-450c-816e-0bd6e78875a2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1332767702"}, "pid": "9435", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:00.71105 2024-07-29 09:41:00.711052 cedf78a4-8ee3-4d0d-9f22-e3134da56d53 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1332765785"}, "pid": "9436", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:00.754567 2024-07-29 09:41:00.754569 ae1028e7-80f2-4ec6-81dc-1a5079835712 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1332734316"}, "pid": "9437", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:00.807391 2024-07-29 09:41:00.807396 0a50b5be-8548-4ba7-b1c3-3460ee3715d4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1332672701"}, "pid": "9438", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:00.873961 2024-07-29 09:41:00.87397 30ccc947-d0fb-4eda-8e04-a05a399b1877 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1332661327"}, "pid": "9439", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:00.958763 2024-07-29 09:41:00.958776 530bdf2e-2a1d-4d4c-928d-547f3832e526 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1332426336"}, "pid": "9440", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:01.051349 2024-07-29 09:41:01.051357 4f200eae-346e-4fac-8b4d-8bd8a290cff9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1332101607"}, "pid": "9441", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:01.127974 2024-07-29 09:41:01.127987 825cb361-fdaf-4ba2-99b4-4721b2b79b3d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331864321"}, "pid": "9442", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:01.205886 2024-07-29 09:41:01.205898 94f9b15b-1b12-47f0-9db4-e727852b5b41 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331496861"}, "pid": "9443", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:01.30301 2024-07-29 09:41:01.30302 550298ca-ad38-4ea4-b994-305c62fd0592 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331098114"}, "pid": "9444", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:01.392272 2024-07-29 09:41:01.392281 ac5ce6f3-03bf-40fb-925f-61d559181fd4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/133099051X"}, "pid": "9445", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:01.469148 2024-07-29 09:41:01.469158 dc88596d-af67-4928-b960-f223b9528b4d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1330990056"}, "pid": "9446", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:01.540131 2024-07-29 09:41:01.540133 5b35577c-028c-4748-b234-08cb25f51a44 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1330988728"}, "pid": "9447", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:01.612673 2024-07-29 09:41:01.612677 63012ee0-8ce5-4d1b-a0ae-87a082f06de9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1330985524"}, "pid": "9448", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:01.689769 2024-07-29 09:41:01.689777 0b151f65-5697-4478-9842-3f6e8ba52f81 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1330588517"}, "pid": "9449", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:01.774833 2024-07-29 09:41:01.774841 eaa46e9f-d615-4055-ae8a-1148a7608766 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1330408837"}, "pid": "9450", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:01.85945 2024-07-29 09:41:01.859459 721af3c0-fa0b-46a1-bfc1-d7125d65638d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1330360036"}, "pid": "9451", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:01.958301 2024-07-29 09:41:01.95831 f155c74e-2426-4edc-8a3e-b411f630e017 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1330201647"}, "pid": "9452", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:02.059503 2024-07-29 09:41:02.059513 61146a67-d1fa-4872-b6ff-d052d3295a47 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1330126599"}, "pid": "9453", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:02.172715 2024-07-29 09:41:02.172726 d746af1a-40d0-41db-8c36-b8f007670de5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/132940422X"}, "pid": "9454", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:02.28023 2024-07-29 09:41:02.28024 c5d3e223-dec1-4da0-ab42-4cd886f6ff36 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1329376129"}, "pid": "9455", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:02.388299 2024-07-29 09:41:02.388313 f5ddc6b7-3239-4daa-86b4-cd072a8a5e8e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/132935639X"}, "pid": "9456", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:02.479166 2024-07-29 09:41:02.479177 be96cc01-f214-485a-b869-6e15b5c9c2d7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1329174003"}, "pid": "9457", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:02.558455 2024-07-29 09:41:02.558457 3e29a681-5c88-4f8b-9773-703ab7da3317 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1329171675"}, "pid": "9458", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:02.620384 2024-07-29 09:41:02.620392 a9e99fab-d422-4364-8f50-1f683ec9f73d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1328712400"}, "pid": "9459", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:02.700902 2024-07-29 09:41:02.70091 77180e78-1fc8-4a43-8d74-bfc6d17cb96e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1327991349"}, "pid": "9460", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:02.780298 2024-07-29 09:41:02.780308 e91fd8ce-2ed3-466d-8cbe-59d0d30213d7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1327910268"}, "pid": "9461", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:02.881653 2024-07-29 09:41:02.881662 7cc4c116-5dfc-4f0b-bc4f-6946fc6e8cda {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1327458667"}, "pid": "9462", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:02.975744 2024-07-29 09:41:02.975757 c4c7ffc3-c4cf-4167-9928-ca8a8ba1b308 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1326349392"}, "pid": "9463", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:03.079441 2024-07-29 09:41:03.079453 aafecb87-574c-4746-96a4-df049a5243b1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/132585283X"}, "pid": "9464", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:03.18534 2024-07-29 09:41:03.185354 94ff0c9d-6f49-48c1-b246-221560e4dc6f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1325643645"}, "pid": "9465", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:03.288342 2024-07-29 09:41:03.288355 243edf07-c83e-4f89-b9db-24356776dabf {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1325061557"}, "pid": "9466", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:03.397392 2024-07-29 09:41:03.397601 ff435a51-30a9-473a-a3a9-d6c4a114e9b8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1324688629"}, "pid": "9467", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:03.494129 2024-07-29 09:41:03.494138 c92907f1-4949-4d43-8364-db9d20790c7d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1324590173"}, "pid": "9468", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:03.579351 2024-07-29 09:41:03.579354 30e64c7b-5407-40f8-9cd0-207aece340d0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1324101318"}, "pid": "9469", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:03.633236 2024-07-29 09:41:03.633243 84aadcb1-814e-4d91-9325-4dde9748b1b7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1324092424"}, "pid": "9470", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:03.70562 2024-07-29 09:41:03.70563 e64a6546-3859-4641-8c03-322532a99717 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1323913084"}, "pid": "9471", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:03.797901 2024-07-29 09:41:03.797913 7378f598-4ee1-43b9-95ba-9fa18f5ceae2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1323835148"}, "pid": "9472", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:03.892757 2024-07-29 09:41:03.892765 35421c56-96d3-4cf8-8562-c3ce806becf0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1323832262"}, "pid": "9473", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:03.984647 2024-07-29 09:41:03.984659 fd56f453-13c3-4ba2-835d-ecbe4568db2d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1323804129"}, "pid": "9474", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:04.079155 2024-07-29 09:41:04.079165 490ed754-92fa-4deb-a408-c635447410a5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1323769536"}, "pid": "9475", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:04.182826 2024-07-29 09:41:04.182839 18610583-0c63-4f87-a392-17187b4fb9b5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1323705910"}, "pid": "9476", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:04.280208 2024-07-29 09:41:04.28022 e7bfd31a-1881-46dc-90eb-16e70102b387 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1323590102"}, "pid": "9477", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:04.376474 2024-07-29 09:41:04.376481 40f3a330-43e9-4818-b2d0-1defe0d1a725 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1323303669"}, "pid": "9478", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:04.47107 2024-07-29 09:41:04.471083 698f0f17-aca8-436d-9b61-78b6d2a34e15 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1323303103"}, "pid": "9479", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:04.556041 2024-07-29 09:41:04.556052 dd862c66-4610-4006-8dce-cde7e3ee53c4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1323069380"}, "pid": "9480", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:04.626462 2024-07-29 09:41:04.626465 bc4dd51d-6c77-4c62-9c9b-c2cea8b1db6c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1322662401"}, "pid": "9481", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:04.691308 2024-07-29 09:41:04.691316 60bbcfcb-8def-4569-9c2f-3586c09d1b4a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1322661030"}, "pid": "9482", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:04.765915 2024-07-29 09:41:04.765924 08fa8e83-1174-4285-b824-612f0aaa91cd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1322508801"}, "pid": "9483", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:04.84763 2024-07-29 09:41:04.847643 92181864-ec9c-44df-8a28-d54f945f5746 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1322264716"}, "pid": "9484", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:04.938918 2024-07-29 09:41:04.93893 301fc174-fe63-4093-ba4d-d86ec6b6ab70 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1321257988"}, "pid": "9485", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:05.020947 2024-07-29 09:41:05.020957 39daddd4-2efc-4c0d-a99b-48ffe7e75b31 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1321125623"}, "pid": "9486", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:05.105585 2024-07-29 09:41:05.105596 c8057103-b1ef-4e89-92db-7259c2ad135c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1321125577"}, "pid": "9487", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:05.201195 2024-07-29 09:41:05.201203 57878748-025e-47fe-b25f-25de903395cd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1319483321"}, "pid": "9488", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:05.282326 2024-07-29 09:41:05.282335 82fd052a-2dbe-4397-a15b-2d56ce168daf {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1319390072"}, "pid": "9489", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:05.366567 2024-07-29 09:41:05.366574 853a10f2-1774-4dc5-bd10-9f41d473e411 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1318715598"}, "pid": "9490", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:05.463213 2024-07-29 09:41:05.463226 6a6ec253-2d0d-4a79-b760-ac993d684692 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1318430968"}, "pid": "9491", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:05.551377 2024-07-29 09:41:05.55139 9257bbbd-ae8f-4b3a-b892-22bf790b7b40 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/131634410X"}, "pid": "9492", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:05.635164 2024-07-29 09:41:05.635167 c2550d92-c364-4d26-a974-407e8151b3cf {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1315679264"}, "pid": "9493", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:05.697252 2024-07-29 09:41:05.697259 2659f746-c433-4f35-8c37-cbde71caa63e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1315456125"}, "pid": "9494", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:05.778396 2024-07-29 09:41:05.778404 602d43c5-8efb-4095-abbb-7f118abbc758 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1315226715"}, "pid": "9495", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:05.866716 2024-07-29 09:41:05.866722 c5a0a9d7-068a-4684-8763-65917e7be09b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1315045133"}, "pid": "9496", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:05.95681 2024-07-29 09:41:05.956823 28318fc2-3d6c-48a3-a79b-152062a93358 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/131453260X"}, "pid": "9497", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:06.047114 2024-07-29 09:41:06.047127 12eb33e4-287f-451c-8448-46e026b3640f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1314347403"}, "pid": "9498", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:06.127828 2024-07-29 09:41:06.12784 0f4a368b-5e8a-4e72-a462-d33185b04ec2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1314019333"}, "pid": "9499", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:06.216007 2024-07-29 09:41:06.216019 df8dedf3-488f-41e1-90e7-65cbe7d22648 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1312507497"}, "pid": "9500", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:06.302098 2024-07-29 09:41:06.302106 42058b37-7ae7-4eb2-a4a3-3d28886673e6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1312506059"}, "pid": "9501", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:06.384564 2024-07-29 09:41:06.384573 6dac0773-1102-41ac-9376-d34e1b4963d2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1311262989"}, "pid": "9502", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:06.45808 2024-07-29 09:41:06.458088 2572bb7c-767d-4003-919b-583f8b68b6b2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1311025847"}, "pid": "9503", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:06.550971 2024-07-29 09:41:06.550979 7fb1bce2-2968-415c-8843-34b89b44745a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1310673683"}, "pid": "9504", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:06.62473 2024-07-29 09:41:06.624738 a5737eae-1e86-47d2-a0a5-0a5c201a82d8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1309822123"}, "pid": "9505", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:06.701298 2024-07-29 09:41:06.701306 c26210e2-80f2-49e0-b0f7-801d91ebfa38 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1308550189"}, "pid": "9506", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:06.770771 2024-07-29 09:41:06.77078 00562474-be7e-4b58-8125-76ff75529650 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1305189876"}, "pid": "9507", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:06.840795 2024-07-29 09:41:06.840804 61af98d4-9c48-4c84-89dc-7d384db1d416 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1304711749"}, "pid": "9508", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:06.924923 2024-07-29 09:41:06.924935 18066765-031c-48cc-a615-a6c0278b6bd6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1304458741"}, "pid": "9509", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:07.013676 2024-07-29 09:41:07.013687 3e78893f-a01b-48b6-856b-8cd92b81bb53 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1303066408"}, "pid": "9510", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:07.109131 2024-07-29 09:41:07.109141 4fd89920-ab61-42d6-967c-c08850fe7eeb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1302981390"}, "pid": "9511", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:07.270069 2024-07-29 09:41:07.270076 c4985520-eeab-4b8c-8550-aab0cfb47352 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1302782517"}, "pid": "9512", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:07.354259 2024-07-29 09:41:07.354267 33089f2f-ec18-4f65-92ad-736d3a182769 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1302782274"}, "pid": "9513", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:07.439302 2024-07-29 09:41:07.439314 460bcce0-dcd4-4871-867c-25362938de67 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1302781162"}, "pid": "9514", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:07.532836 2024-07-29 09:41:07.532847 9fc1720a-fc07-408e-9cdd-3cc8f7f7bb01 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1302592122"}, "pid": "9515", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:07.622842 2024-07-29 09:41:07.622854 613b8e80-151e-42df-bc54-66ab8f57f331 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1298190746"}, "pid": "9516", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:07.697396 2024-07-29 09:41:07.6974 8c0d3d26-fd75-4b37-89f6-3401112d1108 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1296860906"}, "pid": "9517", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:07.74969 2024-07-29 09:41:07.749697 8da55b2c-3454-447a-86e3-45714904559b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1296369811"}, "pid": "9518", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:07.818962 2024-07-29 09:41:07.819005 d5c46bb1-6347-4f66-a8ae-a2189e070633 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1295208512"}, "pid": "9519", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:07.900751 2024-07-29 09:41:07.90076 e592c2a2-3b17-42ce-b444-4a1d5c69d878 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1294996460"}, "pid": "9520", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:07.989012 2024-07-29 09:41:07.989024 73f27465-3aa6-4cca-b06b-e7db94257521 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1294772627"}, "pid": "9521", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:08.076381 2024-07-29 09:41:08.076391 d0eb3cb5-d75d-40c7-94cc-039c9707847c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/129400283X"}, "pid": "9522", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:08.165261 2024-07-29 09:41:08.165273 d3cd0bee-951a-4dc3-99c3-507733e4fcac {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1292845384"}, "pid": "9523", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:08.250155 2024-07-29 09:41:08.250163 c898cff0-2351-4adb-a37b-f22256d3de72 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1286766397"}, "pid": "9524", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:08.330353 2024-07-29 09:41:08.330364 26d371b2-6516-4a87-a2e8-93583c39ebdd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1286227941"}, "pid": "9525", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:08.419055 2024-07-29 09:41:08.419065 e189dd29-8a49-4254-bae3-009e0c4db386 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1286106745"}, "pid": "9526", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:08.510635 2024-07-29 09:41:08.510648 cd809819-350f-4177-8caa-d1d76286c900 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1285304527"}, "pid": "9527", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:08.614208 2024-07-29 09:41:08.614217 5c505af6-a29c-42da-b7a7-875c0d59da8d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1284854744"}, "pid": "9528", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:08.696531 2024-07-29 09:41:08.696544 931a0a1f-8843-4b59-9e64-93e2594373ea {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1284760456"}, "pid": "9529", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:08.750451 2024-07-29 09:41:08.750453 c326f1d0-a662-4c0b-b10a-e0caaca726b0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/127990271X"}, "pid": "9530", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:08.813587 2024-07-29 09:41:08.813595 a29ac909-e9cd-4e40-b387-da41944839e3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1279534311"}, "pid": "9531", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:08.89596 2024-07-29 09:41:08.895969 c100aaaa-c90d-419c-8eb0-329f21e0f114 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1278300821"}, "pid": "9532", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:08.978345 2024-07-29 09:41:08.978354 09be9bb5-739f-4ad1-98c9-916b83a81f7e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1275762158"}, "pid": "9533", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:09.058059 2024-07-29 09:41:09.058067 7104d734-a7d4-4a61-a3a8-a13be02da453 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1275016057"}, "pid": "9534", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:09.139999 2024-07-29 09:41:09.140009 0202c063-8e6c-4e58-9040-7d3772df8199 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1274846765"}, "pid": "9535", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:09.226645 2024-07-29 09:41:09.226657 5194fa7c-2e0c-42a7-8117-3202af680020 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1272439836"}, "pid": "9536", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:09.315705 2024-07-29 09:41:09.315713 b0bee509-e824-4c0a-80b9-1e3d6da6023a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1272436322"}, "pid": "9537", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:09.397761 2024-07-29 09:41:09.397771 e9b802f6-fa5d-4bf8-a34b-e80a37a0af52 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/127243124X"}, "pid": "9538", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:09.484487 2024-07-29 09:41:09.4845 68f0f50b-f6ae-4523-a031-34735e6bccab {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1272429997"}, "pid": "9539", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:09.572064 2024-07-29 09:41:09.572075 718c4013-00c6-4fb9-be79-aa6487512def {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1272339785"}, "pid": "9540", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:09.649034 2024-07-29 09:41:09.649043 9dbcacf8-7736-4eb0-a96e-b36f629ee353 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1272271439"}, "pid": "9541", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:09.726468 2024-07-29 09:41:09.726478 5bc371ea-dbf9-49c8-9bc6-53bf3f1b8517 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1272267792"}, "pid": "9542", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:09.785881 2024-07-29 09:41:09.785891 207ec57f-cdbc-424b-8eae-905a774dde07 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1272258963"}, "pid": "9543", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:09.854223 2024-07-29 09:41:09.854233 d377abb3-75a4-4db6-bc21-427eaaa754af {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1271905698"}, "pid": "9544", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:09.942768 2024-07-29 09:41:09.942777 1b9e2e22-312b-45b5-8452-3b20392d8971 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1271895765"}, "pid": "9545", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:10.037319 2024-07-29 09:41:10.037331 cfa2aad2-abd3-40ae-8d8b-09c397403e71 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/127188898X"}, "pid": "9546", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:10.118614 2024-07-29 09:41:10.118623 757310f5-cdfa-4c38-aa04-a5b9976c5d21 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1271822776"}, "pid": "9547", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:10.20595 2024-07-29 09:41:10.205959 40bc69c5-f1a0-40a1-adb7-b92706b19624 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1271808897"}, "pid": "9548", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:10.287489 2024-07-29 09:41:10.287502 51d40c3f-cf96-4a98-bc23-bc2873ebdf9c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1271790165"}, "pid": "9549", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:10.384848 2024-07-29 09:41:10.384858 c60303c9-5aca-471b-88e1-35fea151ee7c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1271715899"}, "pid": "9550", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:10.465082 2024-07-29 09:41:10.465094 e9eac68f-edb2-42a2-8335-1297b84aab61 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1271381702"}, "pid": "9551", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:10.565869 2024-07-29 09:41:10.565881 fadb05d2-5ad5-4159-8a03-0567c932604c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1270556959"}, "pid": "9552", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:10.669773 2024-07-29 09:41:10.669785 4656a158-38c0-4ea0-b506-425ed7b11021 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1268246964"}, "pid": "9553", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:10.755347 2024-07-29 09:41:10.755354 6750bd2e-6999-4af2-ac4e-848c4b618f4a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/126750370X"}, "pid": "9554", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:10.812972 2024-07-29 09:41:10.812979 377f02db-bc52-4b7b-b64f-50ac87c0e49e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1267495847"}, "pid": "9555", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:10.882783 2024-07-29 09:41:10.882792 e0c38ef2-8851-4134-b481-4592ce9c3648 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1267493216"}, "pid": "9556", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:10.963443 2024-07-29 09:41:10.963453 dfdf0790-7a0f-48d2-94da-76ecba2f3d73 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1266330917"}, "pid": "9557", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:11.045589 2024-07-29 09:41:11.045597 a3e5a0c5-b086-4963-98b4-67c32384e775 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1265612927"}, "pid": "9558", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:11.135704 2024-07-29 09:41:11.135717 b53707de-d0b6-4e25-824e-38767ba7e2a8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1265218374"}, "pid": "9559", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:11.224328 2024-07-29 09:41:11.224339 2f03c8ea-0a37-49e3-97da-2c320c5a128e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1261254937"}, "pid": "9560", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:11.312948 2024-07-29 09:41:11.312959 aae4d457-ca96-4a20-aa40-bdb0453ab519 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1259273660"}, "pid": "9561", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:11.399491 2024-07-29 09:41:11.399499 145222e9-6320-4fc9-bd2d-9ecc8f8a1518 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1257092030"}, "pid": "9562", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:11.489647 2024-07-29 09:41:11.489659 79c0534b-07a1-47e4-a7fe-c62a6effa24f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1256073210"}, "pid": "9563", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:11.594862 2024-07-29 09:41:11.594872 4b555848-234f-402a-85f5-26b69cc74ce2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1256072893"}, "pid": "9564", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:11.687039 2024-07-29 09:41:11.687051 7e74a240-c652-4aef-bff7-80bc0e465565 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1254291482"}, "pid": "9565", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:11.779321 2024-07-29 09:41:11.779332 61ecc39e-64aa-469a-9a15-b22f398b98b7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1251426239"}, "pid": "9566", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:11.835543 2024-07-29 09:41:11.835546 2c3276fe-6925-4096-b8b8-c512a2e758cc {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1248276604"}, "pid": "9567", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:11.89742 2024-07-29 09:41:11.897428 f11299b6-0d1c-4011-b456-0b670ffa029e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1245158511"}, "pid": "9568", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:11.9744 2024-07-29 09:41:11.97441 a477dbed-0f2b-4602-a44f-5bfcb96c723a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1242560637"}, "pid": "9569", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:12.052828 2024-07-29 09:41:12.052836 f9ecb6d2-f208-4121-8afc-c87d1de9e9bd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/124129562X"}, "pid": "9570", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:12.155082 2024-07-29 09:41:12.155093 ef7adbee-4dd7-473d-b5d2-7ba7ab2daf69 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1239152302"}, "pid": "9571", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:12.24767 2024-07-29 09:41:12.247679 d1d61483-62eb-4b73-8859-6e207275b019 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1237145422"}, "pid": "9572", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:12.336076 2024-07-29 09:41:12.336086 f8e627f2-54a5-4a62-9083-89860a19f57e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1232354244"}, "pid": "9573", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:12.420646 2024-07-29 09:41:12.420656 be9012cd-493b-4c98-9837-dbe2522ba76d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1229013695"}, "pid": "9574", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:12.499536 2024-07-29 09:41:12.499545 075ad9ce-d2b8-435f-9777-4b956d45d37b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1225001064"}, "pid": "9575", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:12.592438 2024-07-29 09:41:12.592448 7ec5caab-35c2-4a62-b9c2-70055d46d83d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1217543678"}, "pid": "9576", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:12.66903 2024-07-29 09:41:12.669041 7678e5a4-f4bf-4072-9765-93cb70f47231 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1213474337"}, "pid": "9577", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:12.761601 2024-07-29 09:41:12.761608 26a371d8-3044-45e3-9428-58c3bb2b6f52 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1213276500"}, "pid": "9578", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:12.839253 2024-07-29 09:41:12.839256 531138ab-e2ad-4eb2-b6d4-95754a1e7cd6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1211610659"}, "pid": "9579", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:12.904039 2024-07-29 09:41:12.904048 feec3398-8aca-4248-864a-1579eb08f681 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1206111984"}, "pid": "9580", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:12.975459 2024-07-29 09:41:12.975468 c5dd8b1a-3d11-44bc-a227-b7673fd964c9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1205504184"}, "pid": "9581", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:13.054241 2024-07-29 09:41:13.054252 246f404d-be8f-4324-95e5-b982c4eacc2a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1204138915"}, "pid": "9582", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:13.143235 2024-07-29 09:41:13.143243 b4991fe7-0a0b-4034-b4db-73cc28c07643 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/120246193X"}, "pid": "9583", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:13.251515 2024-07-29 09:41:13.251524 8d2adb2a-4175-4bb2-b6fb-f0e7c54752aa {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1201306663"}, "pid": "9584", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:13.344276 2024-07-29 09:41:13.344279 638a26cb-24c6-44c2-b60a-18e4c1d72550 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1197813853"}, "pid": "9585", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:13.421574 2024-07-29 09:41:13.421581 2aec5446-e98d-4355-bd2b-c15751428511 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1197084231"}, "pid": "9586", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:13.521491 2024-07-29 09:41:13.5215 4d686427-f8db-4337-89f3-72134123bd66 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1196153183"}, "pid": "9587", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:13.61229 2024-07-29 09:41:13.612297 3cc37f79-cc86-4026-84b0-85dfb967d698 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1195721455"}, "pid": "9588", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:13.704853 2024-07-29 09:41:13.704862 540735b9-c8ca-4296-bee5-619c636897a7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1195720424"}, "pid": "9589", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:13.781216 2024-07-29 09:41:13.781223 0f79b2d5-c68d-41b5-8bf3-9080b7ceb2ea {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1192998324"}, "pid": "9590", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:13.857413 2024-07-29 09:41:13.857418 4d6dfd14-0b0e-4226-929e-7fa8bf1f778a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/119298918X"}, "pid": "9591", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:13.91602 2024-07-29 09:41:13.916028 971a0ad4-de1c-477b-a64b-bc5bdb85748a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1191213307"}, "pid": "9592", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:14.003224 2024-07-29 09:41:14.003229 b1a53b66-b272-4a05-b4fa-b9f55ea184e4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1190744996"}, "pid": "9593", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:14.095287 2024-07-29 09:41:14.09529 85e86035-4146-402d-8fbf-3d0430e74501 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1189251949"}, "pid": "9594", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:14.178981 2024-07-29 09:41:14.178992 a96362a9-9a16-4e15-ac98-fb59a05fd700 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1181270391"}, "pid": "9595", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:14.280258 2024-07-29 09:41:14.280266 4e7c2393-0e8a-4eba-b394-b46972cc8443 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1177428253"}, "pid": "9596", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:14.363447 2024-07-29 09:41:14.363454 bfa3f723-edb1-4bdc-81b7-d113cbc41ea1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1172931720"}, "pid": "9597", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:14.446299 2024-07-29 09:41:14.446312 4d8d96de-f9f9-49a4-b628-1543fbbe66d4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1164102931"}, "pid": "9598", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:14.556139 2024-07-29 09:41:14.556241 6b19901a-f6c4-4755-bf2e-95df82dbb8f1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1162074078"}, "pid": "9599", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:14.655795 2024-07-29 09:41:14.655805 b3813760-c590-4ec2-9563-8d2c7b6823ec {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1162070234"}, "pid": "9600", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:14.745287 2024-07-29 09:41:14.745294 86f8f247-f22b-4f91-b585-b81b65fdbaec {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1162069848"}, "pid": "9601", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:14.838474 2024-07-29 09:41:14.838487 709b4304-09b4-40dc-84e7-8a383a6ff5e3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1162069279"}, "pid": "9602", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:14.900205 2024-07-29 09:41:14.900208 8e74d085-e1f7-45f4-8325-68200a4b62aa {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1161370048"}, "pid": "9603", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:14.975007 2024-07-29 09:41:14.975016 0a17d5fe-c85a-4d57-8f15-602d4aa418f7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1160916276"}, "pid": "9604", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:15.067914 2024-07-29 09:41:15.067923 acb6a41b-4151-41ea-9448-05edea20e5c1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1160040834"}, "pid": "9605", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:15.175706 2024-07-29 09:41:15.175714 2654c7d0-e309-4e6d-853b-0d85d0d057ba {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1159933278"}, "pid": "9606", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:15.275529 2024-07-29 09:41:15.275539 3f3fa23a-a3d5-45a2-be4c-75f21048bc17 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1159933006"}, "pid": "9607", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:15.363184 2024-07-29 09:41:15.363192 69650bd1-7157-4240-90a9-c77dea0d8e0c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/115992869X"}, "pid": "9608", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:15.447283 2024-07-29 09:41:15.44729 07d99af2-dfb5-42bd-a7e6-0c9be657982f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1159920850"}, "pid": "9609", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:15.529514 2024-07-29 09:41:15.529527 83b0004c-6d20-4a60-974c-31c7cc21de51 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/115992063X"}, "pid": "9610", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:15.619369 2024-07-29 09:41:15.619379 8a4d4f03-8a68-4b33-9e0b-9743b8181ad2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1159919828"}, "pid": "9611", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:15.720667 2024-07-29 09:41:15.720676 d915eb5a-0265-41e8-8b31-83311b99726a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1159716978"}, "pid": "9612", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:15.809663 2024-07-29 09:41:15.809673 74ff5004-8723-4ff8-b296-7e6306ae40c4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1159673381"}, "pid": "9613", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:15.901731 2024-07-29 09:41:15.901736 164b61d0-8998-4968-8b78-eab9b069a275 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1159652686"}, "pid": "9614", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:15.977342 2024-07-29 09:41:15.977352 86371e97-e11f-494e-92cb-de634cf7542b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1158529643"}, "pid": "9615", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:16.06856 2024-07-29 09:41:16.068568 fd16bef8-e358-49e6-ba09-20642865cd1f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1156463467"}, "pid": "9616", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:16.151025 2024-07-29 09:41:16.15104 b60b071a-ca7d-4e4e-a793-d27aedcc5801 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1153904039"}, "pid": "9617", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:16.244462 2024-07-29 09:41:16.244469 e38d6e8a-f108-40cd-9623-1baaadb9a51c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1153848325"}, "pid": "9618", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:16.32407 2024-07-29 09:41:16.324079 1b544f0e-7412-4fa7-aaba-ab15578833d6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1153645505"}, "pid": "9619", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:16.416722 2024-07-29 09:41:16.416731 857de8ad-4fc8-4663-a3cb-b0277f498f5f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1148983325"}, "pid": "9620", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:16.50425 2024-07-29 09:41:16.50426 b17590b4-f815-421e-b2e7-594d8e2243e7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1148983317"}, "pid": "9621", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:16.608648 2024-07-29 09:41:16.608655 5505f570-945a-424b-8ec5-ab2f77cf9935 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1148982329"}, "pid": "9622", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:16.701509 2024-07-29 09:41:16.701522 2cb2f5c9-c24b-4d4b-9118-223798dd3ff4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1145164617"}, "pid": "9623", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:16.800056 2024-07-29 09:41:16.800069 bcc9c459-0dfc-4d78-a3a1-b0f734d56198 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/113724061X"}, "pid": "9624", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:16.888309 2024-07-29 09:41:16.888322 d0968023-4d3c-4b1a-8286-e88a3a5168a6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1136198113"}, "pid": "9625", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:16.958721 2024-07-29 09:41:16.958729 95afb330-247f-4a4e-af89-d30bfee53e24 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1136044426"}, "pid": "9626", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:17.034064 2024-07-29 09:41:17.034072 1b1b9fc5-478b-4260-b21d-99f1af4c5e5c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1133521657"}, "pid": "9627", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:17.112763 2024-07-29 09:41:17.112773 d6b0a3d7-4eed-4b13-8d82-4ddf28871b2b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1132275067"}, "pid": "9628", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:17.206261 2024-07-29 09:41:17.206273 d3d30ba3-943e-4d63-a583-55af7f39d3e3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1132231477"}, "pid": "9629", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:17.30817 2024-07-29 09:41:17.30818 e90d4103-bbe6-432e-9eb1-64515a0fbc78 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1131360478"}, "pid": "9630", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:17.410567 2024-07-29 09:41:17.410574 4697c401-b91c-478b-b1de-7a8432ff037c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1127087932"}, "pid": "9631", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:17.499473 2024-07-29 09:41:17.499483 46a9eefc-f493-4251-a7dc-ae51913c4479 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1126284823"}, "pid": "9632", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:17.588493 2024-07-29 09:41:17.588506 e8617138-b666-49a6-91ed-af8e36c6d68b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1124811885"}, "pid": "9633", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:17.675886 2024-07-29 09:41:17.675898 a436687e-e881-4135-8d62-51ca6fa2cc7c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1124612114"}, "pid": "9634", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:17.771831 2024-07-29 09:41:17.771844 6004cda5-7c35-43f5-94c7-608db205458b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1120527775"}, "pid": "9635", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:17.879841 2024-07-29 09:41:17.87985 08549959-3ca4-4415-b7f6-9614a01dd82e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1120526310"}, "pid": "9636", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:17.956924 2024-07-29 09:41:17.956928 14141924-c948-4202-9646-10db57944c9c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1119923417"}, "pid": "9637", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:18.015078 2024-07-29 09:41:18.015086 2083bf02-8ce4-4bfe-980b-c1e32f211e3f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1117228215"}, "pid": "9638", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:18.097687 2024-07-29 09:41:18.097696 dd50f8c3-e275-47b9-ac70-13cef5e5cf43 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1114188395"}, "pid": "9639", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:18.176912 2024-07-29 09:41:18.176922 ed5793cb-bcc9-4340-b993-3e1ff9ae09d6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1113031921"}, "pid": "9640", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:18.256082 2024-07-29 09:41:18.256092 bcbabf8e-0632-4d5f-ab74-06d627a0bd80 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1111593051"}, "pid": "9641", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:18.338404 2024-07-29 09:41:18.338414 5f6174a0-9b20-4b13-a963-395a05844923 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/110642154X"}, "pid": "9642", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:18.422254 2024-07-29 09:41:18.422267 db06c8c5-c32b-44a6-96b2-f7f81be9def2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1104861453"}, "pid": "9643", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:18.507429 2024-07-29 09:41:18.507437 292efa08-34c5-4f49-9dc5-64ddcfe7c13a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1103248596"}, "pid": "9644", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:18.59945 2024-07-29 09:41:18.599459 e7a4dae7-e59b-4b4c-a815-f1fef0b47444 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1103240579"}, "pid": "9645", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:18.688367 2024-07-29 09:41:18.688381 ecf9f3c8-7238-4a12-87a1-bc741c079da3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1101498900"}, "pid": "9646", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:18.789677 2024-07-29 09:41:18.789686 0ba2541a-9e7e-4182-b1a7-762bac3f5497 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1085190633"}, "pid": "9647", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:18.8672 2024-07-29 09:41:18.867224 2180e4e3-8d9b-4b57-9893-0995b7bc3683 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/108229814X"}, "pid": "9648", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:18.952641 2024-07-29 09:41:18.95265 a804e228-b57a-4840-8fe1-95e886a2bf2a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1077459335"}, "pid": "9649", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:19.035932 2024-07-29 09:41:19.03594 6e1fb1a7-b5b4-4335-9e84-585fca74513e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1077386478"}, "pid": "9650", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:19.133231 2024-07-29 09:41:19.133242 9f7e78f0-df29-41b0-9ebf-410c662f4149 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1077065876"}, "pid": "9651", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:19.225247 2024-07-29 09:41:19.225256 303de5a9-d58c-43e5-a919-0b978ed95dfd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1069876534"}, "pid": "9652", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:19.307758 2024-07-29 09:41:19.307768 f2a78f57-4d42-42bb-a29b-ac65d975f1fe {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1069526703"}, "pid": "9653", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:19.39321 2024-07-29 09:41:19.393219 21f612d6-b445-47df-9313-d829d6ff953b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1069453420"}, "pid": "9654", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:19.475132 2024-07-29 09:41:19.475141 f2558949-9949-49e5-add9-bb8bf345a3b6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1068825820"}, "pid": "9655", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:19.558189 2024-07-29 09:41:19.558198 b6e950f5-8f8f-48b4-babc-aae462800619 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1068606975"}, "pid": "9656", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:19.640973 2024-07-29 09:41:19.640981 26157caf-cc25-473d-bece-ba4effb0a8d8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1068048328"}, "pid": "9657", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:19.708906 2024-07-29 09:41:19.708914 8dde15e9-9a79-460e-94d1-2c599287bc65 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1067974490"}, "pid": "9658", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:19.789692 2024-07-29 09:41:19.789702 c327324d-5de0-4400-a2ef-b2e75d9e7d32 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1066896534"}, "pid": "9659", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:19.872565 2024-07-29 09:41:19.872578 ccc230ac-50c9-44d6-ba19-e8f88d53dfa8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1065486421"}, "pid": "9660", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:19.962232 2024-07-29 09:41:19.962244 9c9d29a2-5663-44e5-93d0-38cfa0f10a8d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/106307147X"}, "pid": "9661", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:20.038962 2024-07-29 09:41:20.038965 c5a8f703-746f-4e83-a6d3-4d64cfcd4101 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/105858488X"}, "pid": "9662", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:20.092103 2024-07-29 09:41:20.092112 b518a181-65cf-4740-8f7c-a9ef37fef7fd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1055013458"}, "pid": "9663", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:20.163322 2024-07-29 09:41:20.163331 d063da86-2173-4e25-b37b-ce03436554af {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1054183104"}, "pid": "9664", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:20.24213 2024-07-29 09:41:20.242139 5c954a91-eb58-4e30-83da-adf57ea23bc4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1054182779"}, "pid": "9665", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:20.322818 2024-07-29 09:41:20.322828 8ac156d7-9cd6-4ce7-9f7d-159d2a4e1676 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1054182620"}, "pid": "9666", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:20.399916 2024-07-29 09:41:20.399926 8e26f86c-91c2-49b7-b162-ea943371da0c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1051146089"}, "pid": "9667", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:20.482731 2024-07-29 09:41:20.482745 fe3c54d9-270b-442b-a838-debb67dd34dc {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1049270851"}, "pid": "9668", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:20.577372 2024-07-29 09:41:20.577376 f2749fe8-967a-4e5f-b044-87c333cff623 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1044279206"}, "pid": "9669", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:20.659105 2024-07-29 09:41:20.659112 03d1a71f-6fb7-4646-b6c4-6894b6a75b97 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1041611064"}, "pid": "9670", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:20.745701 2024-07-29 09:41:20.745709 b5ff9d96-c13a-480d-96b0-415a9805cffd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1036907430"}, "pid": "9671", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:20.837651 2024-07-29 09:41:20.837686 d9c0ce4f-3c2b-4f6a-9631-5d2a2616bd54 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1036857263"}, "pid": "9672", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:20.9288 2024-07-29 09:41:20.92881 4b6f4150-438d-4c6b-a8c8-9d70421376e5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1029263361"}, "pid": "9673", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:21.026925 2024-07-29 09:41:21.026938 d5f3678b-c553-40fe-98fb-38ef37d9143d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1019980389"}, "pid": "9674", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:21.082791 2024-07-29 09:41:21.082794 228b6473-f690-4aa6-b344-935fb124fa8b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1015187382"}, "pid": "9675", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:21.148659 2024-07-29 09:41:21.148663 fda2c1c1-bc36-4637-b1e3-13aa53b4d9f2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1014400783"}, "pid": "9676", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:21.23103 2024-07-29 09:41:21.231036 46230bbf-8f6d-49ec-8606-ee2be803b738 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1013709640"}, "pid": "9677", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:21.308342 2024-07-29 09:41:21.308345 9aef2452-5b83-45d2-8775-8cdb8a193ccc {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1010242008"}, "pid": "9678", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:21.391448 2024-07-29 09:41:21.391454 fda7c97f-f67d-4e8e-8a0e-19a26a94c0c0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1009887017"}, "pid": "9679", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:21.452741 2024-07-29 09:41:21.452749 04c2bf60-dc27-458b-8254-df5f68ff0124 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1008996270"}, "pid": "9680", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:21.52 2024-07-29 09:41:21.52001 dfe2161c-be63-4a0d-b5fb-1ee9341083cf {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1008049115"}, "pid": "9681", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:21.598674 2024-07-29 09:41:21.598685 5af01cda-62a6-432d-84ac-6e6e86456a96 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/100735531X"}, "pid": "9682", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:21.682337 2024-07-29 09:41:21.682343 8c50fe54-9d40-4d3a-8d6b-44d3dcbdb11c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1006894675"}, "pid": "9683", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:21.767464 2024-07-29 09:41:21.767477 073f7a6c-421e-4e08-ae83-a0ddd33f503c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1002238951"}, "pid": "9684", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:21.852954 2024-07-29 09:41:21.852965 761ff673-92e7-49bc-8d5a-18ab8fec901b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1000642119"}, "pid": "9685", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:21.946972 2024-07-29 09:41:21.946982 8cd81420-dcfa-4920-9034-87787e7df4a2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1000168972"}, "pid": "9686", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:22.037878 2024-07-29 09:41:22.037891 5853df05-4eed-4532-a4ca-4e666ef768a0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/998776785"}, "pid": "9687", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:22.11631 2024-07-29 09:41:22.116321 faa37293-4b25-4904-99f4-fab56e5bf784 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/995780951"}, "pid": "9688", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:22.199072 2024-07-29 09:41:22.19908 6167d036-ea1a-4448-9e4c-e1949a9bffac {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/994659857"}, "pid": "9689", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:22.279755 2024-07-29 09:41:22.279762 1e05db56-1c86-43b3-ae70-70fb1bf1d316 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/99405212X"}, "pid": "9690", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:22.379311 2024-07-29 09:41:22.379318 33a6cf8f-a36b-449d-8ca4-73117bba1996 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/99283600X"}, "pid": "9691", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:22.468762 2024-07-29 09:41:22.468774 1add33a9-5a7b-4326-8bb2-51982b270f65 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992757126"}, "pid": "9692", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:22.56008 2024-07-29 09:41:22.56009 df9a8dd3-65ea-4851-965f-f41d4b54928b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992754909"}, "pid": "9693", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:22.656217 2024-07-29 09:41:22.656228 5a873ad1-2739-495e-a4ae-1d809648e176 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992754550"}, "pid": "9694", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:22.753111 2024-07-29 09:41:22.753201 c7364bb7-da39-4180-b504-7bea38634eae {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992754534"}, "pid": "9695", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:22.84471 2024-07-29 09:41:22.84472 f9cc0eb0-155a-4479-b8b1-df975f875d06 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992754305"}, "pid": "9696", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:22.943182 2024-07-29 09:41:22.94319 bb2d943b-cb1f-4f60-8719-5954aa326544 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992753694"}, "pid": "9697", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:23.048168 2024-07-29 09:41:23.048177 d74cf6ce-cb27-497e-afe5-84fbedbcf029 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/99275366X"}, "pid": "9698", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:23.132056 2024-07-29 09:41:23.132061 995a62f7-38c8-461a-965f-6dc6332e34da {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992752973"}, "pid": "9699", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:23.207251 2024-07-29 09:41:23.207259 97720779-9935-4e87-aaad-c1e459dc8d73 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992751020"}, "pid": "9700", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:23.293432 2024-07-29 09:41:23.293442 f4117ce0-8066-47c3-a45e-e5671c8ba8dc {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/99274881X"}, "pid": "9701", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:23.389029 2024-07-29 09:41:23.38904 4a6cf8b9-67be-4442-9dd0-89fc5a70486f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992747031"}, "pid": "9702", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:23.484002 2024-07-29 09:41:23.484009 b10da648-601d-40e0-9695-d7ea6821d1a4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992746779"}, "pid": "9703", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:23.578497 2024-07-29 09:41:23.578506 738ae089-8356-4891-b145-a7bb9ed1de77 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992746248"}, "pid": "9704", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:23.67808 2024-07-29 09:41:23.678088 7a10cb5b-9d0f-4a71-bcae-2ef97ca47d82 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992745969"}, "pid": "9705", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:23.766593 2024-07-29 09:41:23.766605 62f308b5-a611-4492-a10c-a03a37449e6d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992745292"}, "pid": "9706", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:23.8541 2024-07-29 09:41:23.854108 d44b1826-302a-4481-96fd-208b908d8495 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992745187"}, "pid": "9707", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:23.945247 2024-07-29 09:41:23.945259 14ba240f-156b-4553-81a1-8443f2e6edf1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/99274508X"}, "pid": "9708", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:24.033952 2024-07-29 09:41:24.033965 9c4f0105-5cc8-42ef-a752-b0e801f5c888 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992744792"}, "pid": "9709", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:24.129232 2024-07-29 09:41:24.129241 21700dc8-090d-4b17-9270-f86c730af59e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992744091"}, "pid": "9710", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:24.193098 2024-07-29 09:41:24.193105 ad076821-002b-42b2-92c3-81a12d0e0da5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992743605"}, "pid": "9711", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:24.274949 2024-07-29 09:41:24.274959 37d64e21-2ebf-4487-aff2-7aa5a25621ee {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992743273"}, "pid": "9712", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:24.376877 2024-07-29 09:41:24.376889 4574cfd2-e154-4071-8d33-53b276caff47 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992742889"}, "pid": "9713", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:24.468572 2024-07-29 09:41:24.468586 e07ec6b3-07fd-4034-a33a-b890269d3bd9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992742854"}, "pid": "9714", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:24.562367 2024-07-29 09:41:24.562377 02f4efa5-0fc6-4757-b4ef-b98caa2d3e0f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992742722"}, "pid": "9715", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:24.645544 2024-07-29 09:41:24.645555 49dd766e-919a-4b06-a46e-b4882925366c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992742498"}, "pid": "9716", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:24.730214 2024-07-29 09:41:24.730223 51508b2c-4156-4289-b736-45e32a9ec99c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992741696"}, "pid": "9717", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:24.813395 2024-07-29 09:41:24.813407 70b79573-7123-4bd0-8e3f-5b72c1f5ca9e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992741491"}, "pid": "9718", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:24.898737 2024-07-29 09:41:24.898746 2c659cb3-3b5e-4a2d-8d8a-cedf9a53d667 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992739659"}, "pid": "9719", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:24.987958 2024-07-29 09:41:24.987968 848e2abb-f6cb-4b19-bc17-0a96584f5b5d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992738601"}, "pid": "9720", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:25.074037 2024-07-29 09:41:25.074044 8d910781-edb4-433b-a60a-dc211831cbf7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992738172"}, "pid": "9721", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:25.160777 2024-07-29 09:41:25.160784 959bc85d-d18c-4cf5-a3f0-0db9d099fbdb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992738083"}, "pid": "9722", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:25.210876 2024-07-29 09:41:25.210883 2df2d1da-ab32-4c31-adcf-73ac92911c48 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992738075"}, "pid": "9723", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:25.277903 2024-07-29 09:41:25.277913 630fc3aa-9560-4d5c-802a-ded229d854e7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992737834"}, "pid": "9724", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:25.360026 2024-07-29 09:41:25.360038 e2fc9ade-5d0e-4b39-b5fa-a8f369614bcb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992737826"}, "pid": "9725", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:25.458736 2024-07-29 09:41:25.458749 7f064f13-4a34-459d-8e1f-b8892b5de1f1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992737788"}, "pid": "9726", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:25.55481 2024-07-29 09:41:25.554821 b661cbb6-47f6-4202-815b-dc727e0ff479 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992737532"}, "pid": "9727", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:25.647686 2024-07-29 09:41:25.647699 d01b591c-91d9-4371-8631-07162009eaf3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992736269"}, "pid": "9728", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:25.735141 2024-07-29 09:41:25.735154 b9bda44b-3361-48ea-929b-01479773ebce {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992736099"}, "pid": "9729", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:25.824641 2024-07-29 09:41:25.82465 255c0492-000b-4945-abf1-41c66a1d68ae {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992735858"}, "pid": "9730", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:25.913871 2024-07-29 09:41:25.91388 fbbc62aa-f5ea-490a-8143-e788382717df {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/99273584X"}, "pid": "9731", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:25.9904 2024-07-29 09:41:25.990409 c4074c17-a7dd-41a0-8373-cb4d1c28809f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992735823"}, "pid": "9732", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:26.0702 2024-07-29 09:41:26.070209 a6393b9d-d34d-4cbe-9626-411af09f6e85 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992735270"}, "pid": "9733", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:26.148314 2024-07-29 09:41:26.148321 26e32076-c1e1-47aa-aadf-d31695ec6c00 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992735122"}, "pid": "9734", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:26.218043 2024-07-29 09:41:26.218046 ef3e4f2c-9be7-49af-874c-33da62ac4969 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992733634"}, "pid": "9735", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:26.282526 2024-07-29 09:41:26.282535 d8370d80-0cc3-4ee4-9dbf-bd3af3ba9e89 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/99273312X"}, "pid": "9736", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:26.349672 2024-07-29 09:41:26.34968 99fac160-f434-4086-95e5-3379cf056da3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992732468"}, "pid": "9737", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:26.427126 2024-07-29 09:41:26.427134 9a0bfd0a-0924-4539-89f4-f28bb6577cb3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992731496"}, "pid": "9738", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:26.508266 2024-07-29 09:41:26.508274 bcc8c6b0-65b3-4f6a-8b9e-f14de34fb084 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/99273147X"}, "pid": "9739", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:26.587993 2024-07-29 09:41:26.588004 0be5f6e6-01a8-42c6-aba1-581092849543 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992731348"}, "pid": "9740", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:26.688087 2024-07-29 09:41:26.688098 ff7023fe-14e6-485a-b472-7ffed749f1db {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992730937"}, "pid": "9741", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:26.783386 2024-07-29 09:41:26.783399 bc9ccf2b-1caa-45d7-beb4-43b8e19c13da {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/99273052X"}, "pid": "9742", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:26.898378 2024-07-29 09:41:26.898382 a50443a5-a888-4b4c-8af0-369a9ac4a414 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992096200"}, "pid": "9743", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:26.9789 2024-07-29 09:41:26.97891 c40455c5-eb68-48a5-86a3-8fa8e0d236b7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/99018207X"}, "pid": "9744", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:27.07895 2024-07-29 09:41:27.078957 05444ef4-1f0c-4d47-8369-ef683f9f23c1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/987870920"}, "pid": "9745", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:27.182396 2024-07-29 09:41:27.182406 dad638bb-2fc1-4b40-bb38-e405f406d5e8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/987031708"}, "pid": "9746", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:27.253449 2024-07-29 09:41:27.253455 b9080afc-7735-4509-a083-3f907e9f944d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/985142758"}, "pid": "9747", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:27.319567 2024-07-29 09:41:27.319571 164c5e38-6a1c-4264-be1a-4641f8a38825 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/984855246"}, "pid": "9748", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:27.388157 2024-07-29 09:41:27.388167 7f8e55c9-e5a6-4964-b881-012862747069 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/984430695"}, "pid": "9749", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:27.468068 2024-07-29 09:41:27.468079 4735ac5f-ac8f-41d4-8162-0afe7e0667c6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/981355196"}, "pid": "9750", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:27.552238 2024-07-29 09:41:27.552248 05ac016e-f9dc-41cb-a0f9-7c393e00f937 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/981078206"}, "pid": "9751", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:27.639907 2024-07-29 09:41:27.639919 10c30816-5558-4890-b294-e652308a4024 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/980596920"}, "pid": "9752", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:27.728498 2024-07-29 09:41:27.72851 b2f80a6b-0a46-4202-ae7e-031ee3546811 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/980485371"}, "pid": "9753", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:27.817155 2024-07-29 09:41:27.817169 bb2939c3-85a3-4f54-af93-0a1aabbcc887 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/979728509"}, "pid": "9754", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:27.902638 2024-07-29 09:41:27.902648 7d49d308-9f49-45fd-9e2c-b6e242d0ff66 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/979385261"}, "pid": "9755", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:27.997859 2024-07-29 09:41:27.99787 638274f8-0c6d-49b8-9249-f3082eed9b7e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/979340586"}, "pid": "9756", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:28.089835 2024-07-29 09:41:28.089843 73907e89-917d-4c4f-958c-e534e39138db {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/978483669"}, "pid": "9757", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:28.176309 2024-07-29 09:41:28.176322 8f219962-292e-4983-9447-3df389e62600 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/97549175X"}, "pid": "9758", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:28.265484 2024-07-29 09:41:28.265487 0b59cda2-7899-4622-91a1-6f7fc56ea210 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/974924423"}, "pid": "9759", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:28.3281 2024-07-29 09:41:28.328109 f6164056-ddd8-421c-be00-e616b8fbb668 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/974131733"}, "pid": "9760", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:28.409661 2024-07-29 09:41:28.40967 ccd7a19f-a932-40ff-850f-330b5f118c44 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/973073764"}, "pid": "9761", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:28.488029 2024-07-29 09:41:28.488039 ea6977a3-759c-48dd-9eb1-780ad32c0b65 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/973067144"}, "pid": "9762", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:28.568368 2024-07-29 09:41:28.568378 b41eee8f-5d47-472b-995a-b2aba5fa2226 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/971890188"}, "pid": "9763", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:28.650042 2024-07-29 09:41:28.65005 7a23fbf0-574f-48af-867c-8246551879a7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/971874549"}, "pid": "9764", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:28.733408 2024-07-29 09:41:28.733418 5393f4ec-f999-4a0a-a63b-4846a2d71bef {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/971750289"}, "pid": "9765", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:28.828641 2024-07-29 09:41:28.828651 c63fa875-b8ce-4c5e-8565-17f7e74d85dc {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/971566429"}, "pid": "9766", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:28.910507 2024-07-29 09:41:28.910519 7dc07090-9362-477a-8bbb-c34e40805392 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/970782195"}, "pid": "9767", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:28.999953 2024-07-29 09:41:28.999965 9da18912-a952-4be8-9c14-25b28f55cbba {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/970665806"}, "pid": "9768", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:29.089752 2024-07-29 09:41:29.089761 73a4c186-5fa7-412b-a0b6-bb30c35fab54 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/970188919"}, "pid": "9769", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:29.183621 2024-07-29 09:41:29.183633 4bdc4bcc-44d4-4909-bc7a-c80396bf7dd0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/970142838"}, "pid": "9770", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:29.275138 2024-07-29 09:41:29.275147 fec63fc1-0dab-4ba7-9a3e-8cc6405dec82 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/969789726"}, "pid": "9771", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:29.338682 2024-07-29 09:41:29.33869 3fe7ab57-a4e7-4d44-b50d-57d534b18d6c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/968800459"}, "pid": "9772", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:29.412539 2024-07-29 09:41:29.412548 83d0f838-788a-4a6d-be85-47ad699126c6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/967930308"}, "pid": "9773", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:29.495492 2024-07-29 09:41:29.495503 1c13088b-c7ad-44d9-a491-d750987e53e0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/967681758"}, "pid": "9774", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:29.588553 2024-07-29 09:41:29.588562 d6ca3723-605d-449e-aac2-904f437ff3d8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/967612896"}, "pid": "9775", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:29.671125 2024-07-29 09:41:29.671137 9b5614c3-4232-4ff1-b092-18562cc83603 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/967286034"}, "pid": "9776", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:29.754515 2024-07-29 09:41:29.754527 8312b361-6880-48f1-aed9-6dc66ebc76ea {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/966464141"}, "pid": "9777", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:29.844644 2024-07-29 09:41:29.844656 7a92b47b-ed1b-454b-9d9a-4d5570ccd5f5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/966016297"}, "pid": "9778", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:29.938609 2024-07-29 09:41:29.938616 4ff5bdac-9836-4b35-afb3-14bfebee6a33 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/965886654"}, "pid": "9779", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:30.025785 2024-07-29 09:41:30.025791 37b04e07-c666-4229-9eae-d7e4dd3904d2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/965195686"}, "pid": "9780", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:30.114669 2024-07-29 09:41:30.114677 39a30381-4ad3-4903-a6f7-112184408ce4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/96441631X"}, "pid": "9781", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:30.194079 2024-07-29 09:41:30.194088 a63a9b71-5df7-4bcf-a134-cb8dacda902b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/964240300"}, "pid": "9782", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:30.269818 2024-07-29 09:41:30.269826 5b8794a2-55d2-4c17-a48c-6091cd430935 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/964240254"}, "pid": "9783", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:30.338468 2024-07-29 09:41:30.338471 bb4bc23c-f4ba-4d07-81a5-b61c03d90aeb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/964115166"}, "pid": "9784", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:30.397747 2024-07-29 09:41:30.397755 cd365cbd-5f86-49da-8aea-f341f21e3afe {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/963711636"}, "pid": "9785", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:30.470434 2024-07-29 09:41:30.470443 ccac733b-c4ad-407c-b248-e57f269fdef0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/963708872"}, "pid": "9786", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:30.552551 2024-07-29 09:41:30.552568 df5ece16-681b-4918-ba1e-978f2c338ee9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/963708856"}, "pid": "9787", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:30.6429 2024-07-29 09:41:30.642908 2f936f30-9c05-4cad-8071-070f7c24bfbd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/963658166"}, "pid": "9788", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:30.744016 2024-07-29 09:41:30.744026 39d703eb-b8ef-4792-9bb4-b38b33e922dc {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/963553984"}, "pid": "9789", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:30.839887 2024-07-29 09:41:30.839897 bc106db9-8a86-44f3-86fb-c1969d0bc44a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/962075272"}, "pid": "9790", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:30.943632 2024-07-29 09:41:30.943645 172afef7-590f-4feb-8d23-8342eed01278 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/962073881"}, "pid": "9791", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:31.052415 2024-07-29 09:41:31.052426 6c46426e-bd11-456b-86ea-e7ae686159b9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/961897546"}, "pid": "9792", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:31.14542 2024-07-29 09:41:31.145433 2842208c-6a90-47fa-bf4b-4f8d30b2ae18 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/961236752"}, "pid": "9793", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:31.248493 2024-07-29 09:41:31.248503 5065002c-fe0e-426a-a76e-48e5498d7fa4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/961192356"}, "pid": "9794", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:31.342527 2024-07-29 09:41:31.342536 c8291694-3ab8-4f8a-a9dd-9dcc2d9eae78 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/961049510"}, "pid": "9795", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:31.407638 2024-07-29 09:41:31.407647 b5965607-aea4-4201-9973-82bc55bb3622 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/960895175"}, "pid": "9796", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:31.512421 2024-07-29 09:41:31.512429 ee9ee6a8-c981-4744-a953-95c2060d66a4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/96037650X"}, "pid": "9797", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:31.609352 2024-07-29 09:41:31.609359 f922e747-0f1c-4cae-9810-c9026a48cc19 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/960375988"}, "pid": "9798", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:31.700261 2024-07-29 09:41:31.700274 efcfe98a-177a-4742-8016-b3b4072b3663 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/960175105"}, "pid": "9799", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:31.798348 2024-07-29 09:41:31.798357 ce2db562-838d-4c97-b960-453d6c107564 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/959959750"}, "pid": "9800", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:31.897652 2024-07-29 09:41:31.897661 76e3d581-6831-4f15-82e3-35a42dfe174f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/959794972"}, "pid": "9801", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:31.987583 2024-07-29 09:41:31.987592 b9cac31e-e832-4463-a5f1-feedb29fd7aa {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/959794921"}, "pid": "9802", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:32.074295 2024-07-29 09:41:32.074304 2e846a50-6b52-4b73-aae2-df82a4a06c18 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/959794859"}, "pid": "9803", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:32.162318 2024-07-29 09:41:32.162331 2f458bef-9f12-49a7-9cde-e09418c5526f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/959740864"}, "pid": "9804", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:32.254268 2024-07-29 09:41:32.254278 4c3be066-1ddb-403a-9194-ed732214ee8a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/959716688"}, "pid": "9805", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:32.327958 2024-07-29 09:41:32.327967 dfc10400-b2fd-4407-bd6e-d3cd14c8dcff {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/959148523"}, "pid": "9806", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:32.404982 2024-07-29 09:41:32.40499 de5b57eb-9ead-4b45-9890-f90df4980452 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/959148485"}, "pid": "9807", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:32.478537 2024-07-29 09:41:32.478548 ded4de6e-95ef-43cb-b77b-b853ec7466cf {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/959148477"}, "pid": "9808", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:32.563741 2024-07-29 09:41:32.563753 c3b1903a-413c-43ee-886c-56bdb3b75a79 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/958503001"}, "pid": "9809", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:32.657868 2024-07-29 09:41:32.657877 dcbd006d-faff-4bc5-84be-a69cfb6853c3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/958467102"}, "pid": "9810", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:32.753081 2024-07-29 09:41:32.753093 43234943-8351-436b-9266-dc84d23eb33a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/958224625"}, "pid": "9811", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:32.846562 2024-07-29 09:41:32.846571 674d653a-40d7-4ce4-8ffb-8a5e27b1c266 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/958195889"}, "pid": "9812", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:32.943428 2024-07-29 09:41:32.943439 6a333d06-5bf7-4c23-8b1e-c35ad725ef1f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/958190453"}, "pid": "9813", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:33.033152 2024-07-29 09:41:33.033161 cadbd901-252d-4794-b436-51d21ad8cf90 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/957705611"}, "pid": "9814", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:33.121991 2024-07-29 09:41:33.121999 84c3d3bf-f89e-4e20-986e-0a3b4f16e8bb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/95765894X"}, "pid": "9815", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:33.209013 2024-07-29 09:41:33.209023 6df64bd6-a4cf-4f50-8de7-c6879b0ced2e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/957331940"}, "pid": "9816", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:33.293406 2024-07-29 09:41:33.293418 ec45b387-9dbc-498b-8aa7-823cbf15eea1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/957331673"}, "pid": "9817", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:33.387007 2024-07-29 09:41:33.38702 35bee03d-7002-452a-90d3-534fbfcd2961 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/957192517"}, "pid": "9818", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:33.440016 2024-07-29 09:41:33.440018 f9960fc8-b0b2-492d-813b-cb2b43694071 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/956838049"}, "pid": "9819", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:33.506083 2024-07-29 09:41:33.506092 3324448d-52c3-4755-ba7a-c2ec28bcdcc4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/956643221"}, "pid": "9820", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:33.58972 2024-07-29 09:41:33.589732 0e427d84-723a-4b4e-99fa-7d256d83d0bd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/956635709"}, "pid": "9821", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:33.686349 2024-07-29 09:41:33.686359 5edd09f4-e75d-4b4c-b13a-5ca9c5b6a07b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/956220495"}, "pid": "9822", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:33.786132 2024-07-29 09:41:33.786144 2d698a6c-d1ec-4cac-a258-24b71f0c9206 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/955244641"}, "pid": "9823", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:33.878702 2024-07-29 09:41:33.878715 dcd49eb9-d2cb-45ab-8c6e-da898d3f48ae {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/95489748X"}, "pid": "9824", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:33.988186 2024-07-29 09:41:33.988199 328c9562-ff1f-41e3-91af-32e1011dfccd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/954782232"}, "pid": "9825", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:34.072762 2024-07-29 09:41:34.072772 0c266016-7efd-4774-a453-919370030487 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/95462839X"}, "pid": "9826", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:34.154465 2024-07-29 09:41:34.154478 c048fe6f-1d3a-4f5f-bd5c-38117944df16 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/954211774"}, "pid": "9827", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:34.246463 2024-07-29 09:41:34.246472 879a5541-acd2-48b8-ab03-ab8e77fee890 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/954206738"}, "pid": "9828", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:34.341385 2024-07-29 09:41:34.341398 8eee2b0f-3264-410b-995a-bff1983bd745 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/954203232"}, "pid": "9829", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:34.427477 2024-07-29 09:41:34.427481 87f794be-dc3d-4b1a-b6c2-27983e795c93 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/953679802"}, "pid": "9830", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:34.485257 2024-07-29 09:41:34.485268 da4c6ecb-0934-4977-ac66-216b67013fb8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/953550346"}, "pid": "9831", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:34.561552 2024-07-29 09:41:34.561562 7f85f610-62f5-432a-b5c5-d15086e486cf {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/953444201"}, "pid": "9832", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:34.630456 2024-07-29 09:41:34.630462 edac3634-4245-4bf6-9527-187742603f76 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/953056082"}, "pid": "9833", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:34.708262 2024-07-29 09:41:34.708274 a05adfce-9428-426a-ac2a-d202aaa165a0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/952896605"}, "pid": "9834", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:34.795576 2024-07-29 09:41:34.795588 41a23422-0ae3-4f52-8c39-511508c8ab40 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/952702053"}, "pid": "9835", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:34.888638 2024-07-29 09:41:34.888649 5725cd97-0ccb-4ff7-8e6d-fc650e0146bf {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/952619636"}, "pid": "9836", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:34.970922 2024-07-29 09:41:34.970935 42ea98c7-9392-4f1b-9a9c-b29019c006ee {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/952440431"}, "pid": "9837", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:35.063504 2024-07-29 09:41:35.063516 720ce4a3-6d69-48f6-92ef-bae5c23870f5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/952431602"}, "pid": "9838", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:35.174467 2024-07-29 09:41:35.174478 1d28be9d-24c3-48bd-85a3-d191a4ccf171 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/951810189"}, "pid": "9839", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:35.27196 2024-07-29 09:41:35.271971 58ec7427-a000-4a7f-8238-462bd1a41c4f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/951618563"}, "pid": "9840", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:35.366423 2024-07-29 09:41:35.366436 085ece1e-3e26-4047-8a73-93360c613f1d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/951607804"}, "pid": "9841", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:35.462835 2024-07-29 09:41:35.462839 e20bcc97-05af-48b6-8f99-139bcde52894 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/95159981X"}, "pid": "9842", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:35.525671 2024-07-29 09:41:35.525679 810f12db-5101-4a92-aaf9-ed02e32971b0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/951549650"}, "pid": "9843", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:35.609165 2024-07-29 09:41:35.609174 c9ea6a40-1080-4e99-9a17-fc825d6ebd9a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/95153047X"}, "pid": "9844", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:35.691035 2024-07-29 09:41:35.691044 faad17c0-ebfd-48f1-b5fe-6382a06947ec {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/95152092X"}, "pid": "9845", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:35.780754 2024-07-29 09:41:35.780764 0535ac7c-f30c-4fe6-adcb-403f6066a1ee {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/950857157"}, "pid": "9846", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:35.876751 2024-07-29 09:41:35.876762 017feed0-c605-43a4-8094-8f859fcc6c6c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/950693413"}, "pid": "9847", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:35.975697 2024-07-29 09:41:35.975705 35081140-0d78-4d94-b792-b4bf6293c2da {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/950693375"}, "pid": "9848", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:36.079238 2024-07-29 09:41:36.07925 b677d79e-d764-4ee4-8b25-1f800be4a692 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/950692433"}, "pid": "9849", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:36.177195 2024-07-29 09:41:36.177205 b022dc98-a4ac-4d4a-bb4f-93afa6a7d19b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/950632481"}, "pid": "9850", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:36.271132 2024-07-29 09:41:36.271143 868e3ed8-34a9-43e6-b1f3-86dcffb6a482 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/950276014"}, "pid": "9851", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:36.369673 2024-07-29 09:41:36.369685 3cfdafe8-f3db-4a51-aca8-5f6b2c3aa59c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/949894028"}, "pid": "9852", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:36.4766 2024-07-29 09:41:36.476611 53e6403f-a76c-49c0-934a-5a139955811b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/949435015"}, "pid": "9853", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:36.546892 2024-07-29 09:41:36.5469 0daa3cdc-1ff8-4c36-8969-c2d7eea00b99 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/948897244"}, "pid": "9854", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:36.624259 2024-07-29 09:41:36.624267 cd04d849-a5c7-45a8-94bf-cf93bd1195af {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/948567341"}, "pid": "9855", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:36.714307 2024-07-29 09:41:36.714319 5a06661b-6c7f-4675-9993-a3efd17b9dd0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/948567317"}, "pid": "9856", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:36.81235 2024-07-29 09:41:36.81236 243b9538-5d4d-47fa-b5f0-29b483daa6af {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/948565977"}, "pid": "9857", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:36.901534 2024-07-29 09:41:36.901543 3233730f-f205-4ad3-b54b-ce6cf2f22511 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/948520116"}, "pid": "9858", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:36.985995 2024-07-29 09:41:36.986004 768d0466-7fcf-4c56-9e03-80a0b3993847 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/948474688"}, "pid": "9859", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:37.078491 2024-07-29 09:41:37.078501 80e79a99-04fd-41a7-8d8f-b0fdbd8a6a26 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/947762868"}, "pid": "9860", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:37.171858 2024-07-29 09:41:37.171869 a1507f36-311c-4177-a103-d1f7df925e5f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/947572090"}, "pid": "9861", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:37.274812 2024-07-29 09:41:37.274821 1421b6b6-d1ec-4aea-82ca-0e52b5064ae7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/947210601"}, "pid": "9862", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:37.401607 2024-07-29 09:41:37.40162 80e55c77-9834-4c12-8dae-e69cb745c5ef {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/947024387"}, "pid": "9863", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:37.509927 2024-07-29 09:41:37.509939 a23a7956-0e60-4f61-beea-0a8e411c138f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/946840318"}, "pid": "9864", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:37.578653 2024-07-29 09:41:37.578661 3b32caed-9fed-441a-8b75-51206d4a7dd8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/94683203X"}, "pid": "9865", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:37.66469 2024-07-29 09:41:37.664698 f196c1f9-5610-4e73-b75b-059abc3721d7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/946538506"}, "pid": "9866", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:37.747841 2024-07-29 09:41:37.747849 3fa3aeb5-a52c-454a-8ba8-6f1249886547 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/946529981"}, "pid": "9867", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:37.831865 2024-07-29 09:41:37.831872 389162bc-e73d-490f-bb6d-a1d1509ec343 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/946267340"}, "pid": "9868", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:37.914096 2024-07-29 09:41:37.914105 11844245-b42b-4e1f-94d0-08eaba545a1d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/945831749"}, "pid": "9869", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:38.018002 2024-07-29 09:41:38.018012 efbbc109-5848-46f1-9825-42640fb4d493 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/94574577X"}, "pid": "9870", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:38.111981 2024-07-29 09:41:38.111993 a273ad7f-8e24-4a76-a68d-78d5d6ce88f4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/945675267"}, "pid": "9871", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:38.198876 2024-07-29 09:41:38.198887 ac69da90-a14f-4133-97b7-076ef2a5fcc8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/945372604"}, "pid": "9872", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:38.286517 2024-07-29 09:41:38.28653 2221e1a4-57ef-4838-861c-ddd250b97bb1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/945325150"}, "pid": "9873", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:38.390601 2024-07-29 09:41:38.390611 bc7bcf1f-40f5-41a1-8f3f-faaea5fc6e72 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/944352820"}, "pid": "9874", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:38.481241 2024-07-29 09:41:38.481249 5db00784-8916-44af-acb2-0dd6f406fecd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/94392961X"}, "pid": "9875", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:38.576982 2024-07-29 09:41:38.576985 fd52d4a9-2086-4b84-a797-5d23e7e02744 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/94392684X"}, "pid": "9876", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:38.665495 2024-07-29 09:41:38.665544 1799dfe3-15c1-4246-9201-ebb26a73dc8d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/943618118"}, "pid": "9877", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:38.747546 2024-07-29 09:41:38.747555 851cd370-1547-4e62-9fd6-8ee880e72c25 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/943592267"}, "pid": "9878", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:38.845144 2024-07-29 09:41:38.845154 aa29ce9d-75e3-4bb4-a2f8-8f8ee270e223 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/943496799"}, "pid": "9879", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:38.937021 2024-07-29 09:41:38.937033 e2d63eb0-009a-44c6-91ab-e0766d253154 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/943138604"}, "pid": "9880", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:39.036375 2024-07-29 09:41:39.036387 5714a12f-713c-4175-8b7d-a11406a6d97a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/942370295"}, "pid": "9881", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:39.123857 2024-07-29 09:41:39.123869 0720f806-9e48-4b10-9c66-6c5ad234b060 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/942203283"}, "pid": "9882", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:39.227575 2024-07-29 09:41:39.227582 044e4b7a-0b06-4220-adbe-31289706273b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/94206285X"}, "pid": "9883", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:39.324652 2024-07-29 09:41:39.324663 a051cdc0-df21-424e-8fe8-60b6a32c5574 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/941781437"}, "pid": "9884", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:39.421603 2024-07-29 09:41:39.421617 93446bc6-7eac-46ce-8cac-72a147c39d05 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/940910004"}, "pid": "9885", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:39.540149 2024-07-29 09:41:39.540159 3426a058-58e8-48bb-8bcc-69dfb8b758ab {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/940842440"}, "pid": "9886", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:39.609516 2024-07-29 09:41:39.609519 45fc35ae-b8e7-4a6e-9326-5c327e7979a9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/94063855X"}, "pid": "9887", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:39.66826 2024-07-29 09:41:39.668268 d9f8737c-a607-4b7e-a4de-0ab017f06919 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/940594919"}, "pid": "9888", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:39.750619 2024-07-29 09:41:39.750629 a7ab393f-32b7-45b8-87c2-ef5e81f91c07 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/199289190"}, "pid": "9889", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:39.835527 2024-07-29 09:41:39.835538 3703819b-cef5-4125-a9f5-05ae1f1be714 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/199281823"}, "pid": "9890", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:39.91924 2024-07-29 09:41:39.919246 9709b21f-1179-490e-945d-9fde4bda806b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/199193835"}, "pid": "9891", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:40.009938 2024-07-29 09:41:40.009951 b60de76b-6353-43be-b5a7-40ffa798e2ac {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/19917606X"}, "pid": "9892", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:40.096889 2024-07-29 09:41:40.096902 0ecfcbb1-1210-4d18-962f-72ac18704ad9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/199170711"}, "pid": "9893", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:40.192972 2024-07-29 09:41:40.192981 d2b4e599-82b1-4eab-a1a9-36bda445159e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/19915046X"}, "pid": "9894", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:40.290406 2024-07-29 09:41:40.290413 48a27ef8-289b-4282-88a5-1327262cfe92 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/199129215"}, "pid": "9895", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:40.377839 2024-07-29 09:41:40.377847 e731fd73-de18-4af7-b566-db9bb1832358 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/130791008"}, "pid": "9896", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:40.441745 2024-07-29 09:41:40.441751 95872e17-7eb6-4bf4-975b-56d4d39350fa {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/130750085"}, "pid": "9897", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:40.521934 2024-07-29 09:41:40.521944 f70b1551-a7c5-4f49-9973-7524cd81b5b7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/130741094"}, "pid": "9898", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:40.614311 2024-07-29 09:41:40.614317 9e198e4e-e979-4c6d-8782-c92f9be3131d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/130724572"}, "pid": "9899", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:40.680483 2024-07-29 09:41:40.680492 29e215b0-99b1-4685-9cb1-3dae96b6d7f8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/130715387"}, "pid": "9900", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:40.756854 2024-07-29 09:41:40.756861 4704214c-b05c-44f1-90a2-468c16823bd3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/130714941"}, "pid": "9901", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:40.83807 2024-07-29 09:41:40.838083 0e3cb36b-94fd-4022-8a50-045f0b9133c8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/130708291"}, "pid": "9902", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:40.925078 2024-07-29 09:41:40.925085 ce9f1711-841d-4d60-9bf8-1fca6a50e21c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/130703907"}, "pid": "9903", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:41.006984 2024-07-29 09:41:41.006991 d34ebe00-aed9-4232-999f-7dbfbb48481f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/130702722"}, "pid": "9904", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:41.081134 2024-07-29 09:41:41.081142 46f6be71-a1b4-4bc0-bace-ecae7a5b2192 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/13069374X"}, "pid": "9905", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:41.160088 2024-07-29 09:41:41.160098 171b4475-e5ce-40a6-87b1-9cf2e5a4359e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/130692476"}, "pid": "9906", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:41.248672 2024-07-29 09:41:41.248689 b406f296-5132-42f4-bd55-3038e6137e54 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04328762X"}, "pid": "9907", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:41.344102 2024-07-29 09:41:41.344114 a0cd6c8e-9297-4c7c-bcac-f4c1ebeca8fe {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043282695"}, "pid": "9908", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:41.434679 2024-07-29 09:41:41.434689 bb0ce3ec-7aa7-4d50-8530-a65a6182576a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04328213X"}, "pid": "9909", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:41.524756 2024-07-29 09:41:41.524768 4f04e1e8-2861-4532-992c-a793b17b16d3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043274994"}, "pid": "9910", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:41.622503 2024-07-29 09:41:41.622516 9b14edde-45db-4db7-b080-c9152839e80e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043252044"}, "pid": "9911", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:41.687878 2024-07-29 09:41:41.687887 be588c17-cd95-4a38-a3c5-6bc4d6ca0704 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043203469"}, "pid": "9912", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:41.76632 2024-07-29 09:41:41.766329 9a89082b-d938-4f0f-b6ca-391f237211b9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043197574"}, "pid": "9913", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:41.843663 2024-07-29 09:41:41.843675 a5cfe983-cc33-46ee-a799-9035a79c3edf {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043195733"}, "pid": "9914", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:41.94117 2024-07-29 09:41:41.94118 93c20e32-dcf1-4f55-9464-e30bb07e9595 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04313291X"}, "pid": "9915", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:42.024817 2024-07-29 09:41:42.02483 829bc42f-925e-4322-ab5c-2d304c3aecca {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043128629"}, "pid": "9916", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:42.109386 2024-07-29 09:41:42.109395 3e48dd8e-0942-4188-a315-18c122bffa87 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043062008"}, "pid": "9917", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:42.200303 2024-07-29 09:41:42.200315 216b1831-7691-4139-b0ad-e04bacc40eb9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04304929X"}, "pid": "9918", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:42.296342 2024-07-29 09:41:42.296351 e921d950-a7ff-42a3-ac4c-c71629302d7f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043035167"}, "pid": "9919", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:42.389011 2024-07-29 09:41:42.389021 312cf22a-67ba-4744-9e9d-c3a034d20488 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043022790"}, "pid": "9920", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:42.471191 2024-07-29 09:41:42.471201 708a62c2-1b32-4be1-8143-b2859f3edd2b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043004164"}, "pid": "9921", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:42.569671 2024-07-29 09:41:42.56968 12c41f3c-b33a-4eda-a5a7-76cfaac36b84 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043003583"}, "pid": "9922", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:42.658935 2024-07-29 09:41:42.658945 727986f5-1fdc-4824-9896-0edef6538986 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043001173"}, "pid": "9923", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:42.720266 2024-07-29 09:41:42.720272 e03cb46b-b4b3-4ab0-9c7b-06682980b938 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04300024X"}, "pid": "9924", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:42.78087 2024-07-29 09:41:42.780878 2c40e98c-21a6-4191-8df4-850cf5b04406 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043000150"}, "pid": "9925", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:42.864587 2024-07-29 09:41:42.864597 ebf9af2d-78ed-45db-93cf-13b2d2f29e02 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042982553"}, "pid": "9926", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:42.954865 2024-07-29 09:41:42.954877 b61a1f2d-1595-4015-a7a2-fe4595b7463c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042981794"}, "pid": "9927", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:43.043796 2024-07-29 09:41:43.043803 d098a90d-2579-4b92-aaa6-a9881086e928 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042940664"}, "pid": "9928", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:43.139595 2024-07-29 09:41:43.139606 77ae02be-445b-457f-9e97-eb449cc03e9e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042914582"}, "pid": "9929", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:43.231988 2024-07-29 09:41:43.231999 47cd547f-992f-479a-9b34-7429c48584da {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042913748"}, "pid": "9930", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:43.326209 2024-07-29 09:41:43.326221 aaae0d7a-9a39-4e23-96c6-10f631e93de6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04291096X"}, "pid": "9931", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:43.429527 2024-07-29 09:41:43.429539 162da55b-db16-4f9e-adb2-ca6c2b950487 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042910870"}, "pid": "9932", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:43.534164 2024-07-29 09:41:43.534183 cca048e8-a182-4ef6-9918-20817f7a7d6c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042892562"}, "pid": "9933", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:43.637555 2024-07-29 09:41:43.637568 91b9b778-15b0-495c-bc21-150414060820 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042870526"}, "pid": "9934", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:43.713503 2024-07-29 09:41:43.713506 21f65894-6280-4c7c-9445-aa09f5e64935 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042863627"}, "pid": "9935", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:43.769092 2024-07-29 09:41:43.769098 dccfe733-0a40-44c2-9413-860e584fa7a5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042848792"}, "pid": "9936", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:43.859105 2024-07-29 09:41:43.859113 850e896e-434f-4cd7-a100-ab3b0c64dda5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042841259"}, "pid": "9937", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:43.948001 2024-07-29 09:41:43.948009 41a15a85-85ec-4933-a92f-205753d2a0dd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042819458"}, "pid": "9938", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:44.043858 2024-07-29 09:41:44.043865 6b4fccfa-020f-4bc5-b5ab-9f4e8bf95bbc {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042815479"}, "pid": "9939", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:44.140009 2024-07-29 09:41:44.140018 9002c336-91a4-4aef-a661-ddda9d43eb2a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042777089"}, "pid": "9940", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:44.241437 2024-07-29 09:41:44.241448 2c19a1aa-f4ab-455a-8212-47739f82e18f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042765315"}, "pid": "9941", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:44.354443 2024-07-29 09:41:44.354456 bc0f0b32-fcc0-4a5b-8e98-187477ae8078 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042731887"}, "pid": "9942", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:44.447437 2024-07-29 09:41:44.447447 de76b0eb-7581-421e-96c1-ebd992cba1db {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042731437"}, "pid": "9943", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:44.556262 2024-07-29 09:41:44.55627 ae9608e2-1ed9-4198-81dc-8cf5e9e13fbd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042720133"}, "pid": "9944", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:44.6479 2024-07-29 09:41:44.647911 d9407ae3-3461-4e7d-a9af-321af4fc4da9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04266702X"}, "pid": "9945", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:44.747181 2024-07-29 09:41:44.747184 bc7ff17b-8c32-4c68-a53f-2f88c8b785dd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042653304"}, "pid": "9946", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:44.808021 2024-07-29 09:41:44.80803 7c7bff70-cbb7-4ea4-ae54-e0406cba7a0a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042645212"}, "pid": "9947", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:44.896512 2024-07-29 09:41:44.896521 b59bed9f-741a-492a-af95-8991afb3bb44 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042627222"}, "pid": "9948", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:44.987106 2024-07-29 09:41:44.98712 744856b1-eff4-4a32-8c08-763cc2a21e22 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042586208"}, "pid": "9949", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:45.08147 2024-07-29 09:41:45.081479 cfa231d3-80b8-457b-8eef-b7654c5446e8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042578205"}, "pid": "9950", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:45.172398 2024-07-29 09:41:45.172406 a4fe4c49-754c-4f3b-b885-13012e578566 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042573254"}, "pid": "9951", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:45.276299 2024-07-29 09:41:45.27631 932f6ae9-3d49-4e26-b4da-dde70a0beeb8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042536367"}, "pid": "9952", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:45.371065 2024-07-29 09:41:45.371075 4aaf8887-e4a4-48de-9535-186dc7ed9491 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042496675"}, "pid": "9953", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:45.477998 2024-07-29 09:41:45.478008 a83c9837-a3df-4f7a-b1f5-cb13ed4b3755 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042486386"}, "pid": "9954", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:45.566408 2024-07-29 09:41:45.566417 dd28a00b-22e5-4616-ab71-5c36287304a7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042447690"}, "pid": "9955", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:45.647518 2024-07-29 09:41:45.647528 e2f38caf-5851-4a71-822e-33680d77dda4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042438799"}, "pid": "9956", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:45.740087 2024-07-29 09:41:45.740098 eca25dd3-84f9-4fb4-880f-f2688380dd7f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042425875"}, "pid": "9957", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:45.797178 2024-07-29 09:41:45.79718 3c827207-ecba-4757-a920-8101a48d2ecd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042422825"}, "pid": "9958", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:45.858533 2024-07-29 09:41:45.85854 967c4b6c-92be-49a7-9550-0da672c11bd8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042380480"}, "pid": "9959", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:45.957994 2024-07-29 09:41:45.958001 28a6e49a-a842-4068-b6d2-f3365cda1c09 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042374480"}, "pid": "9960", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:46.060911 2024-07-29 09:41:46.060923 a34ccf4c-c22c-4647-b378-fdcced91aa17 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042325900"}, "pid": "9961", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:46.162905 2024-07-29 09:41:46.162915 23d22470-6795-4605-8937-e8047283301d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042325897"}, "pid": "9962", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:46.257723 2024-07-29 09:41:46.257731 4e2b69c4-cbd5-4d56-8fe8-581428fc2de1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042313414"}, "pid": "9963", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:46.346286 2024-07-29 09:41:46.346294 c1b2bb5a-8315-44a8-bb06-2b787032154e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042277558"}, "pid": "9964", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:46.455014 2024-07-29 09:41:46.455021 07f1ae1d-2a21-4d13-ab09-c6b6d79a2b22 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042266289"}, "pid": "9965", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:46.556339 2024-07-29 09:41:46.556349 3b712593-7c35-40c5-9d44-214f450c0471 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042241839"}, "pid": "9966", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:46.657105 2024-07-29 09:41:46.657115 9e5ecabb-aac8-4556-94e4-34a58d206b42 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042230284"}, "pid": "9967", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:46.740172 2024-07-29 09:41:46.740182 232a6204-269a-425d-9c2c-70a85f117bdb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042213010"}, "pid": "9968", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:46.811307 2024-07-29 09:41:46.811309 ed392914-0828-48b3-ae91-97dd0337ff0e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042183154"}, "pid": "9969", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:46.898483 2024-07-29 09:41:46.898491 5f98ed48-0b53-41a8-9343-2e072f656209 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04216818X"}, "pid": "9970", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:46.9895 2024-07-29 09:41:46.989512 71d9dff9-1efe-4a6a-97d3-3a4c3c22e8af {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042161258"}, "pid": "9971", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:47.088382 2024-07-29 09:41:47.088395 bf3926a5-fd03-4eea-9904-db201a4aa625 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042147670"}, "pid": "9972", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:47.183612 2024-07-29 09:41:47.183619 978c219a-fa70-4978-a91a-c9b0d0a2b7fa {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042142237"}, "pid": "9973", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:47.280055 2024-07-29 09:41:47.280066 71eed447-e34a-45e6-b3da-1e408fd43ff4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042137519"}, "pid": "9974", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:47.394668 2024-07-29 09:41:47.394676 3f1f3cf1-cc1c-46d7-81e6-b51389d2a63d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042124093"}, "pid": "9975", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:47.484842 2024-07-29 09:41:47.484855 6bd82f02-adc9-4a47-89af-a436203b4b0f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042123909"}, "pid": "9976", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:47.574755 2024-07-29 09:41:47.574764 8ff38fbe-27aa-470b-94a2-c9d30c6a1006 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04211277X"}, "pid": "9977", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:47.663085 2024-07-29 09:41:47.663095 25682258-a091-4f06-a430-552a28dab26b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042104378"}, "pid": "9978", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:47.765063 2024-07-29 09:41:47.765072 207be046-092d-4432-9fee-18b3ff4ffa89 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042100917"}, "pid": "9979", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:47.836665 2024-07-29 09:41:47.836668 a6b9aa0e-0dbe-4502-9708-553264067fff {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042100445"}, "pid": "9980", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:47.91151 2024-07-29 09:41:47.911519 331e59c0-eea7-452a-9e9d-380166c2056d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042081033"}, "pid": "9981", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:48.000759 2024-07-29 09:41:48.000767 d63cd2bb-612b-49a5-9555-d32de8fa4b87 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042074150"}, "pid": "9982", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:48.085031 2024-07-29 09:41:48.085043 e68c08b5-c4e9-41f7-aa7b-a968f2a82a62 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042044529"}, "pid": "9983", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:48.178694 2024-07-29 09:41:48.178704 29954f6f-d24c-40d8-bf7f-7eb0aa8aca9d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042033276"}, "pid": "9984", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:48.275999 2024-07-29 09:41:48.276008 9e113e0d-cf1f-4759-b5b2-c55928f205fb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042022622"}, "pid": "9985", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:48.383509 2024-07-29 09:41:48.38352 1bafca6b-0568-473f-8807-0fbaf7a6b326 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042020646"}, "pid": "9986", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:48.47519 2024-07-29 09:41:48.475202 f65a1bfa-dbba-485d-8e4c-9841a125d8c1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041969596"}, "pid": "9987", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:48.578411 2024-07-29 09:41:48.578428 636c599d-91ef-4f57-a952-d8c8141cb252 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041966716"}, "pid": "9988", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:48.687934 2024-07-29 09:41:48.687949 f75eb583-994b-4378-a2fe-604de6bda397 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041962923"}, "pid": "9989", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:48.793208 2024-07-29 09:41:48.793219 c7245c80-9f6d-4e61-ac53-f5fcb1d51ff2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041961080"}, "pid": "9990", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:48.871452 2024-07-29 09:41:48.871455 724ca8aa-30ce-4e0d-a9fb-cd58cbbf343c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041944240"}, "pid": "9991", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:48.941928 2024-07-29 09:41:48.941937 eb70d5fd-3e3b-42c2-98fd-29fc1abf26e9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041935659"}, "pid": "9992", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:49.042901 2024-07-29 09:41:49.04291 181288d7-4dd4-499e-beb9-3132b950cfe5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04193458X"}, "pid": "9993", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:49.138284 2024-07-29 09:41:49.138295 2f0e34db-2f3c-419b-9d22-006ba69a54e8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041920287"}, "pid": "9994", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:49.228248 2024-07-29 09:41:49.228257 f978c39f-cf09-43bb-b063-f4ac8460f6a3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041920279"}, "pid": "9995", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:49.325655 2024-07-29 09:41:49.325663 5fc25e2c-7820-4dc1-9cdf-23bdafb2dcfc {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041917413"}, "pid": "9996", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:49.421775 2024-07-29 09:41:49.421784 ce7acb6f-bb63-42dc-9991-65c95c43df7f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041913574"}, "pid": "9997", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:49.513616 2024-07-29 09:41:49.513626 720ca7ec-e3d5-424e-94f1-ce89d2eaebc7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041912888"}, "pid": "9998", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:49.610267 2024-07-29 09:41:49.610275 061060de-7b29-4a74-b76e-8a9167a25625 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041909836"}, "pid": "9999", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:49.717262 2024-07-29 09:41:49.717272 7ef2ddcd-0a48-45c3-bfe0-50629e37792d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041906683"}, "pid": "10000", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:49.818451 2024-07-29 09:41:49.81846 d30ec462-07dd-4bcc-b7ea-acaa73130779 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041901398"}, "pid": "10001", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:49.913517 2024-07-29 09:41:49.913524 da2f0eea-2827-4ef8-a181-41a65f94a372 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041890353"}, "pid": "10002", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:49.996141 2024-07-29 09:41:49.996149 75434b17-691d-47f5-98b4-51c97be7ebc0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04188566X"}, "pid": "10003", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:50.078739 2024-07-29 09:41:50.078749 d1bbc168-cfa2-4eeb-83e2-2df01246381c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041856333"}, "pid": "10004", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:50.172371 2024-07-29 09:41:50.172384 5458dcf1-b02d-46e0-88fc-4af71a822566 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041856325"}, "pid": "10005", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:50.269434 2024-07-29 09:41:50.269443 df13071b-957d-4c21-8cc3-cef137ee57e2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041848020"}, "pid": "10006", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:50.370649 2024-07-29 09:41:50.370659 aa7bbc44-64ad-40cf-9a00-f0c089b9f380 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041844793"}, "pid": "10007", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:50.46793 2024-07-29 09:41:50.46794 8f58b4bc-521b-4367-b76b-bd4e41c201ce {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041844513"}, "pid": "10008", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:50.558023 2024-07-29 09:41:50.558031 3f492ce6-ea78-4d10-9563-99a37701d7b7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041840658"}, "pid": "10009", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:50.659506 2024-07-29 09:41:50.659513 7aa5c19f-a82e-4bcf-a614-353dad3e86bd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041830180"}, "pid": "10010", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:50.76349 2024-07-29 09:41:50.763502 26f284bd-cb2c-474a-8bb9-6dabf9988069 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041822218"}, "pid": "10011", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:50.878503 2024-07-29 09:41:50.878512 b1440ec1-f00c-4907-b956-514b9060bda9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041815173"}, "pid": "10012", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:50.945762 2024-07-29 09:41:50.945765 bfb8415e-aabc-4a6d-a510-c8b00335943c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041810252"}, "pid": "10013", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:51.025079 2024-07-29 09:41:51.025087 10e375ff-10ef-46cc-b579-245a005d56a3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041806417"}, "pid": "10014", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:51.130635 2024-07-29 09:41:51.13064 ffea4536-9cfc-4a28-bf57-cddc20e04ece {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041796462"}, "pid": "10015", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:51.224651 2024-07-29 09:41:51.224664 3ce262cb-3743-493f-81e3-c239275bdbab {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041794923"}, "pid": "10016", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:51.334603 2024-07-29 09:41:51.334617 59db4950-1911-4821-bab5-4dee874f50ea {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041789989"}, "pid": "10017", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:51.441048 2024-07-29 09:41:51.44106 32e27051-2f70-4a5d-853a-306ac5c4d42d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041787250"}, "pid": "10018", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:51.546514 2024-07-29 09:41:51.546525 39524f0d-fbc2-45f8-87bd-80cd516af08b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041785134"}, "pid": "10019", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:51.638571 2024-07-29 09:41:51.638578 83fc696d-10bb-4ac3-973a-5d451bc24e1f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041782445"}, "pid": "10020", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:51.716987 2024-07-29 09:41:51.716996 e4a379a2-ac34-45a3-b3da-f8e7b9d0276c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041766040"}, "pid": "10021", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:51.80784 2024-07-29 09:41:51.807852 72307eb2-ad15-4247-9ab8-37d949b03117 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041762223"}, "pid": "10022", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:51.909458 2024-07-29 09:41:51.909468 1f7c5471-3bb3-4a52-bf94-b5706f10619e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041753615"}, "pid": "10023", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:51.964694 2024-07-29 09:41:51.964697 8a7bacb9-67b7-4df8-820c-1a76a5cf6737 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041748379"}, "pid": "10024", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:52.034847 2024-07-29 09:41:52.034855 77ddcc6f-8cfc-4176-b711-72309959880d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041734467"}, "pid": "10025", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:52.113632 2024-07-29 09:41:52.11364 f0ecff4b-22bd-42f2-b4bf-e4b957d058ef {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041730380"}, "pid": "10026", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:52.19977 2024-07-29 09:41:52.19978 a82752c5-7026-4dc1-9bb7-42764cf204e1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041718380"}, "pid": "10027", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:52.296511 2024-07-29 09:41:52.296521 66608799-becd-4a0a-b0a0-7ab1b35f5d97 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041717007"}, "pid": "10028", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:52.398083 2024-07-29 09:41:52.398093 b3200591-2bce-4a49-948b-04e8fac837db {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041712900"}, "pid": "10029", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:52.503531 2024-07-29 09:41:52.503543 f9119b0c-576b-4fa7-ba63-61d98867f202 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041707222"}, "pid": "10030", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:52.603888 2024-07-29 09:41:52.603905 3e9c98f6-5f07-4ab4-9555-6cdba1ac053b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04170553X"}, "pid": "10031", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:52.70919 2024-07-29 09:41:52.709199 f759b667-f83e-48da-8f97-f5d1c778accc {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041701852"}, "pid": "10032", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:52.805025 2024-07-29 09:41:52.805034 167adffb-03ce-428d-aad4-2fea33fdc284 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041699122"}, "pid": "10033", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:52.899742 2024-07-29 09:41:52.899752 f0666498-f753-4c60-9778-62618c2f96b7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041699114"}, "pid": "10034", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:52.9823 2024-07-29 09:41:52.982302 348ec7a9-1a04-4e03-a251-9832efe92931 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041696492"}, "pid": "10035", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:53.04378 2024-07-29 09:41:53.043789 281d8747-1674-410f-b19e-aca32a24aea4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041693477"}, "pid": "10036", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:53.123179 2024-07-29 09:41:53.123187 b5a792eb-279c-477d-b523-d94102e811e4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041692705"}, "pid": "10037", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:53.194125 2024-07-29 09:41:53.194133 160ba285-0b41-4176-886a-67213c692b89 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041689763"}, "pid": "10038", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:53.284783 2024-07-29 09:41:53.284799 b7c574e2-5a2d-44b2-beb4-ecaef5d4daf9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041687167"}, "pid": "10039", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:53.390675 2024-07-29 09:41:53.390682 6eb660be-6d61-4672-93fa-43670dd57f09 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041667689"}, "pid": "10040", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:53.487849 2024-07-29 09:41:53.487861 ca274d04-5d30-4434-8d3b-3c722b2d2963 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041667670"}, "pid": "10041", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:53.589366 2024-07-29 09:41:53.589379 b3174eb5-d9c0-4c17-8e62-b7631dce752e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041663659"}, "pid": "10042", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:53.698064 2024-07-29 09:41:53.698077 35cb99ed-188c-4f57-b4b4-c4105624013b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04165725X"}, "pid": "10043", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:53.794851 2024-07-29 09:41:53.79486 fb40f53a-72af-4f71-80f7-ba490201741b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041656032"}, "pid": "10044", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:53.904486 2024-07-29 09:41:53.904499 af9c6106-6046-4494-8ede-f29a50cf9a44 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041655974"}, "pid": "10045", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:54.000817 2024-07-29 09:41:54.00082 9bd3d205-dad7-4101-b0fb-112c2a73fa3e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041655168"}, "pid": "10046", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:54.064097 2024-07-29 09:41:54.064104 6fcb729c-2c77-4c46-900d-8ed978374732 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041654013"}, "pid": "10047", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:54.143129 2024-07-29 09:41:54.143138 522e6beb-80d7-4fc1-a246-79f32af34880 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041653386"}, "pid": "10048", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:54.242042 2024-07-29 09:41:54.242054 5a39011a-60fe-4bbb-b8ae-099107ea8410 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041647459"}, "pid": "10049", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:54.353173 2024-07-29 09:41:54.353189 9622eabd-6a7c-46cb-80de-8ed025176f2b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041637763"}, "pid": "10050", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:54.458056 2024-07-29 09:41:54.458066 1d4e50a9-b81b-4cd1-b04e-e2e68735a956 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041636422"}, "pid": "10051", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:54.560914 2024-07-29 09:41:54.560927 a4afa81f-ad4f-4037-93d7-dc1e23d96b1b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041633237"}, "pid": "10052", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:54.664433 2024-07-29 09:41:54.664441 3999b8e5-0810-4be0-9902-064d846317d8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041616715"}, "pid": "10053", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:54.764588 2024-07-29 09:41:54.764597 1c2741ea-93a1-4ed9-90e4-ddb1f62069f7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041614909"}, "pid": "10054", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:54.852725 2024-07-29 09:41:54.852733 848a38b2-6bd3-4b4f-9fa7-22312b92782f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041614836"}, "pid": "10055", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:54.945351 2024-07-29 09:41:54.945364 89994dd8-3783-4282-a7fe-dee9af685c6d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041613872"}, "pid": "10056", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:55.032952 2024-07-29 09:41:55.032956 e921f451-fa8b-4f52-b90f-1cefea764621 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041613597"}, "pid": "10057", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:55.109696 2024-07-29 09:41:55.109704 4230b4cc-efcd-4ea3-9613-55c6ad4319a7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041606760"}, "pid": "10058", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:55.194732 2024-07-29 09:41:55.194743 98993b05-190b-4242-a6dc-5c0fc0fe7f80 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041599470"}, "pid": "10059", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:55.295731 2024-07-29 09:41:55.295741 b958be1b-fb3f-4241-a2f4-2f72f4081a19 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041597508"}, "pid": "10060", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:55.403433 2024-07-29 09:41:55.403445 e317d9f4-f41d-490e-9f11-2daf5a2dbc0a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041594800"}, "pid": "10061", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:55.511967 2024-07-29 09:41:55.511977 022be871-c569-4e52-8c26-bbef85ed28dc {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041591267"}, "pid": "10062", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:55.62294 2024-07-29 09:41:55.622953 72d9dbbc-62cd-4145-b9b9-4f3da2a16ebc {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041585623"}, "pid": "10063", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:55.733268 2024-07-29 09:41:55.733278 84613181-9a37-4f57-aae1-803b271ea55f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041584929"}, "pid": "10064", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:55.836535 2024-07-29 09:41:55.836547 f3bb9ab8-7543-4982-a98a-348ba00339fa {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041582667"}, "pid": "10065", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:55.944845 2024-07-29 09:41:55.944855 84d55521-8875-49f9-93cf-8cf31e3df5ec {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041570170"}, "pid": "10066", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:56.047284 2024-07-29 09:41:56.047326 fd47d98e-f3cc-45e6-974d-c1038577bbb4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041570103"}, "pid": "10067", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:56.122212 2024-07-29 09:41:56.122222 ce3392c8-0018-4e45-a11f-b0f863cac7f2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041565568"}, "pid": "10068", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:56.222726 2024-07-29 09:41:56.222739 66982d36-f329-463f-a925-c45fd15d9b49 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041563247"}, "pid": "10069", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:56.314311 2024-07-29 09:41:56.314319 1b12a779-350f-44f5-bef9-5477edf912a7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041553128"}, "pid": "10070", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:56.405387 2024-07-29 09:41:56.405396 dd98cbcf-3e8d-442d-a753-826dc9dce4dc {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041544323"}, "pid": "10071", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:56.488823 2024-07-29 09:41:56.488834 8b3a68f6-18fa-4526-ae8a-ab8349dce974 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041542436"}, "pid": "10072", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:56.583978 2024-07-29 09:41:56.58399 7f429474-d141-4d86-9f8c-75dc367ba1e2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041534646"}, "pid": "10073", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:56.67749 2024-07-29 09:41:56.677499 1134759d-bc18-400a-a3f4-84b9871502ae {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041531426"}, "pid": "10074", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:56.78567 2024-07-29 09:41:56.785683 1bee804d-4bd3-4b2b-9e88-cdcf262b9072 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04152697X"}, "pid": "10075", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:56.905688 2024-07-29 09:41:56.905699 c9572690-89b1-495d-ac8c-16075263fc14 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041523393"}, "pid": "10076", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:56.990586 2024-07-29 09:41:56.990595 6acb0aa2-3ccd-46de-9190-944de304d9d8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041523318"}, "pid": "10077", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:57.062556 2024-07-29 09:41:57.062564 526ae7bb-33af-431f-901f-649d24ae2fa4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04151923X"}, "pid": "10078", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:57.124654 2024-07-29 09:41:57.124657 1cc22f7c-e36e-40e1-8ca5-bf2c410b8e1a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041518160"}, "pid": "10079", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:57.195137 2024-07-29 09:41:57.195144 595a9296-f25c-414b-b1e9-be97a56b9f36 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041516613"}, "pid": "10080", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:57.267239 2024-07-29 09:41:57.267247 cc0b45d6-38d4-4b0f-a9d5-3e5807aa8c75 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041515420"}, "pid": "10081", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:57.364316 2024-07-29 09:41:57.364326 e3aa9b6b-ef0f-4456-a98b-dba926e56605 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041512820"}, "pid": "10082", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:57.458799 2024-07-29 09:41:57.458809 81235688-0829-427f-ad30-5ed6f5675d95 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041509412"}, "pid": "10083", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:57.551467 2024-07-29 09:41:57.551481 b029dc6f-94e6-476f-b6e1-1ffcde5de63d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041505336"}, "pid": "10084", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:57.642115 2024-07-29 09:41:57.642124 b1a709aa-9f9c-4789-a7ae-84f025ef5bc4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041505077"}, "pid": "10085", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:57.730766 2024-07-29 09:41:57.730775 fda3281e-58bd-4f12-a27f-59de2b48f6d3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04150335X"}, "pid": "10086", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:57.825954 2024-07-29 09:41:57.825964 f370a6e9-bb68-49cf-932e-f7bdaee3ecc1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041502264"}, "pid": "10087", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:57.922796 2024-07-29 09:41:57.922807 1e061967-ec20-4b55-891c-eede5ece3094 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041487109"}, "pid": "10088", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:58.025931 2024-07-29 09:41:58.025941 90147662-3ec9-4f00-9f71-4856b7b2d9e2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041477936"}, "pid": "10089", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:58.121583 2024-07-29 09:41:58.121588 dac4e281-c815-4e5f-abec-448c536277e9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041470966"}, "pid": "10090", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:58.179889 2024-07-29 09:41:58.179897 339ff2d6-aae0-442c-9e78-65ae0047a877 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041470044"}, "pid": "10091", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:58.261118 2024-07-29 09:41:58.261126 b4eb430c-96d6-4065-bea6-294a7661cec5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04146768X"}, "pid": "10092", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:58.347123 2024-07-29 09:41:58.347132 e3296739-50de-4505-a10d-289aea28c349 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041467612"}, "pid": "10093", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:58.442048 2024-07-29 09:41:58.44206 e2163e27-bdf9-48ea-b97b-e2ee2efb87f5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041466578"}, "pid": "10094", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:58.531423 2024-07-29 09:41:58.531434 fd0d639e-254a-4710-bf98-adf42bc3de6d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041466365"}, "pid": "10095", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:58.639425 2024-07-29 09:41:58.639434 f9ca82cc-9071-4cde-8886-6100d8b7e147 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041463692"}, "pid": "10096", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:58.745535 2024-07-29 09:41:58.745546 e5f73fa1-101a-4ab2-a08a-36989085e29f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041450809"}, "pid": "10097", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:58.847033 2024-07-29 09:41:58.847046 57d125a1-4e9f-45cc-9f9f-911bcf6259cb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041450469"}, "pid": "10098", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:58.946858 2024-07-29 09:41:58.946866 527665ff-ab23-41d9-a839-6bd1f6f59a8c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041446186"}, "pid": "10099", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:59.050562 2024-07-29 09:41:59.050571 f1096d97-3dfe-4e4f-bffe-7d825b175ac9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041444280"}, "pid": "10100", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:59.148784 2024-07-29 09:41:59.148794 811391c4-9b47-428e-9969-4db4984c8f69 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041439902"}, "pid": "10101", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:59.211929 2024-07-29 09:41:59.211938 232e5279-5ec3-4571-b846-c7f5f2c3a77b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04143823X"}, "pid": "10102", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:59.303333 2024-07-29 09:41:59.303345 3c16d67e-a6f5-4093-b475-e60a503fb96a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041437896"}, "pid": "10103", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:59.399703 2024-07-29 09:41:59.399712 ef91bee4-a6d0-4d3d-a423-8b5a2f7c248f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041431049"}, "pid": "10104", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:59.478432 2024-07-29 09:41:59.478441 e1a8e92c-e608-4dcf-905b-58a2e3a53c27 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04143028X"}, "pid": "10105", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:59.569505 2024-07-29 09:41:59.569512 2688cbec-b773-4073-92fd-7371dbcd3909 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04142641X"}, "pid": "10106", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:59.652085 2024-07-29 09:41:59.652096 46f33f42-1aac-45c2-8262-28399ffae3e8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04142574X"}, "pid": "10107", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:59.745301 2024-07-29 09:41:59.74531 0d2a0d7d-7857-4210-8e6b-2d8294e08efd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041424573"}, "pid": "10108", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:59.846075 2024-07-29 09:41:59.846082 156bdf94-681a-4f49-9666-eb3188a6e3fa {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041424492"}, "pid": "10109", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:41:59.942603 2024-07-29 09:41:59.942612 04dcffd1-0d7a-4bb1-98cd-837ba3dd9c54 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041422260"}, "pid": "10110", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:00.048872 2024-07-29 09:42:00.048877 2e3822d9-dd1a-4370-8652-d9ffb8119469 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041422058"}, "pid": "10111", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:00.144413 2024-07-29 09:42:00.144417 e7352cb7-a99b-48e8-9ae6-0f96db4fa5a7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041419677"}, "pid": "10112", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:00.217948 2024-07-29 09:42:00.217957 ccaf4ed7-6631-4d77-b399-84ff57f373d2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041411137"}, "pid": "10113", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:00.302738 2024-07-29 09:42:00.302743 890eda27-2f95-429b-9e20-592c5ac289be {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041409965"}, "pid": "10114", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:00.410351 2024-07-29 09:42:00.410359 c05ee284-9278-4a89-a146-cfe343ac73da {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041409760"}, "pid": "10115", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:00.518861 2024-07-29 09:42:00.518872 330b21ed-027e-4e0a-a48a-cf8c1dee0fe7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041392450"}, "pid": "10116", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:00.604887 2024-07-29 09:42:00.604898 4e02a56d-6ff0-4a4e-b46e-f070fa1ae98e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041388984"}, "pid": "10117", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:00.686033 2024-07-29 09:42:00.686044 fa7e7280-59b8-4370-97e9-1160c3d83a89 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041378407"}, "pid": "10118", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:00.768338 2024-07-29 09:42:00.768349 808e3397-fabf-4069-835b-eb492ecde0a1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041374444"}, "pid": "10119", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:00.84782 2024-07-29 09:42:00.847828 208792dc-72e6-4c45-91c6-a418f8b3d109 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041369785"}, "pid": "10120", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:00.940355 2024-07-29 09:42:00.940378 40f8cfda-0dd8-47d4-822c-aaf1d08fe413 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041368517"}, "pid": "10121", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:01.014827 2024-07-29 09:42:01.014835 0e341490-ce56-40f6-9370-841d519f0c3b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041366352"}, "pid": "10122", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:01.097645 2024-07-29 09:42:01.097656 aee4312f-e605-4cc2-8b24-d0116bf8a392 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041365844"}, "pid": "10123", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:01.22021 2024-07-29 09:42:01.220214 251ff56b-6985-4247-8972-72e687762c5d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041354710"}, "pid": "10124", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:01.298318 2024-07-29 09:42:01.298328 7ec71ecb-cc26-4a78-bfe3-935727a8c3a0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041345835"}, "pid": "10125", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:01.391588 2024-07-29 09:42:01.391597 64da92df-c62d-4647-aab6-3e1ab50f8f55 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04134166X"}, "pid": "10126", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:01.468646 2024-07-29 09:42:01.468654 f6e850dd-f23c-42ed-a4af-f25a284a953b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041340892"}, "pid": "10127", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:01.543358 2024-07-29 09:42:01.543366 847604d8-988d-405c-a201-75a93fc58a8d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041333004"}, "pid": "10128", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:01.622545 2024-07-29 09:42:01.622553 6afc263c-9a70-41e0-8362-9dc7a3aa87fe {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041332997"}, "pid": "10129", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:01.702659 2024-07-29 09:42:01.702667 984029fd-b161-4af6-9e7a-dad8e2c4ed36 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041332237"}, "pid": "10130", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:01.781025 2024-07-29 09:42:01.781033 acf05bdd-e577-4cc9-bfa5-1f1872987d96 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041326202"}, "pid": "10131", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:01.859232 2024-07-29 09:42:01.859241 487e34c7-ae90-4027-90a7-9cfa1e4ca7c4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041325710"}, "pid": "10132", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:01.943474 2024-07-29 09:42:01.943481 797b417e-817a-48b2-b6ae-7e453b32db03 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04132305X"}, "pid": "10133", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:02.02217 2024-07-29 09:42:02.022178 4dc07534-e9e3-4328-b372-0e6e5ed54443 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041322886"}, "pid": "10134", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:02.092977 2024-07-29 09:42:02.092985 f4e2e98c-ad2d-45c6-ae9d-085d5e0c61d1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041319125"}, "pid": "10135", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:02.213282 2024-07-29 09:42:02.21329 ecd1d47f-9c8e-4b9c-8e0e-26ed8ae3d5cc {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041317718"}, "pid": "10136", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:02.282057 2024-07-29 09:42:02.282064 e2966153-1dd4-4906-b9cb-5d5709e90398 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041312368"}, "pid": "10137", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:02.356352 2024-07-29 09:42:02.356359 951acd99-ce3d-4d2e-b984-6eb78e186607 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041308166"}, "pid": "10138", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:02.426266 2024-07-29 09:42:02.426273 1a7b836e-4cae-4835-a635-d6749ff470bb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041308107"}, "pid": "10139", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:02.493675 2024-07-29 09:42:02.493686 a3d1a86f-a1ef-400e-90e6-b7492d31dc92 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041303768"}, "pid": "10140", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:02.569518 2024-07-29 09:42:02.569526 99506bad-0e73-4609-8b75-135df0fa0a4b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041299604"}, "pid": "10141", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:02.64392 2024-07-29 09:42:02.643928 a5026c50-8359-4f90-993b-d9ff90e0337e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041287045"}, "pid": "10142", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:02.713966 2024-07-29 09:42:02.713974 ee7e6ebe-5032-494c-a1e2-fd94bdafdfa2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04128237X"}, "pid": "10143", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:02.788871 2024-07-29 09:42:02.788878 ce286e66-4fea-4547-809a-339366b7632d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041281632"}, "pid": "10144", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:02.852917 2024-07-29 09:42:02.852924 bbe0a1ad-382c-4d63-bcb0-0d3c6ac4fd43 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041273230"}, "pid": "10145", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:02.922776 2024-07-29 09:42:02.922783 98a55874-b56e-444a-a7c8-ba04838112fb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041269950"}, "pid": "10146", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:02.990244 2024-07-29 09:42:02.990251 f76a4b84-0fb8-4109-8bbc-add4165482bf {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041258584"}, "pid": "10147", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:03.059198 2024-07-29 09:42:03.059205 16da4e8b-0d01-4108-acb7-2926cb39c786 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041255887"}, "pid": "10148", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:03.135325 2024-07-29 09:42:03.135334 ae1a393c-b365-493d-8997-efe60dbf56d6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041252896"}, "pid": "10149", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:03.200025 2024-07-29 09:42:03.200032 ac01b536-d3c4-4139-933f-0870a4b12bb8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041245296"}, "pid": "10150", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:03.263659 2024-07-29 09:42:03.263666 1d7c6dfe-b19d-4871-90f6-1700ba75a773 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041240510"}, "pid": "10151", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:03.324706 2024-07-29 09:42:03.324713 0aea8771-ef0e-4f76-8bb4-d8734eb5618a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041239288"}, "pid": "10152", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:03.398675 2024-07-29 09:42:03.398682 86c2d021-1e1a-405e-9a5d-5d968a8f92a2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041238826"}, "pid": "10153", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:03.462609 2024-07-29 09:42:03.462616 b6b2483f-2ade-4298-926c-58f5da31e8c0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041236599"}, "pid": "10154", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:03.53083 2024-07-29 09:42:03.530838 7cb19fc9-4abd-4ac3-a21e-b244fdb4a25a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041235347"}, "pid": "10155", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:03.597543 2024-07-29 09:42:03.59755 6fc03a3f-f785-4ab4-b491-a015b551d24b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041227980"}, "pid": "10156", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:03.664743 2024-07-29 09:42:03.66475 5b3122dc-5ed6-4ed2-a44e-48e513408409 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041220609"}, "pid": "10157", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:03.72787 2024-07-29 09:42:03.727877 102507fa-1dbe-43f0-9322-6d0306839cca {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04121952X"}, "pid": "10158", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:03.795412 2024-07-29 09:42:03.795419 a7e9f40e-22c4-4f71-9002-bb606e1ceb70 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041218108"}, "pid": "10159", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:03.863525 2024-07-29 09:42:03.863532 1177b048-1b35-4ac2-a2f7-6bfec7728954 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041217616"}, "pid": "10160", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:03.930617 2024-07-29 09:42:03.930623 9692e13b-f4a0-4d1a-a6f4-d28f18300377 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041212304"}, "pid": "10161", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:04.001607 2024-07-29 09:42:04.001615 3f2be214-3d7b-4af1-93c2-9d4ba3ad6855 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041207017"}, "pid": "10162", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:04.070686 2024-07-29 09:42:04.070693 ad536bf7-872a-4ebd-aebb-00aa31bcdb0a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041206592"}, "pid": "10163", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:04.141914 2024-07-29 09:42:04.141922 f79fd093-c88d-48b7-ac8f-bd9b6101a76d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041201116"}, "pid": "10164", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:04.204609 2024-07-29 09:42:04.204616 4cd99c41-9bb5-440d-80e6-538028a3d49f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041184432"}, "pid": "10165", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:04.282032 2024-07-29 09:42:04.282056 86e6ad64-50ee-42e1-931a-7ea2b5f9443e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041176065"}, "pid": "10166", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:04.355709 2024-07-29 09:42:04.355715 9459e70b-90b9-4783-8a7e-37801ddf9a1f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041155513"}, "pid": "10167", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:04.421626 2024-07-29 09:42:04.421633 7319fb3f-499a-4bcc-9848-9b0b4c4850b8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041154630"}, "pid": "10168", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:04.480269 2024-07-29 09:42:04.480275 3d35f0c9-282e-4743-9ee0-ac3cc18cec88 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04114516X"}, "pid": "10169", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:04.55348 2024-07-29 09:42:04.553487 0141e997-1862-435e-8b67-7c5ac74761bd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041091507"}, "pid": "10170", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:04.627055 2024-07-29 09:42:04.627062 f7ae6951-891c-4acd-9c44-3b8bd6c94308 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041076842"}, "pid": "10171", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:04.704174 2024-07-29 09:42:04.704181 b86b4e14-d1a4-4c2b-8b79-a5cfcb0930ea {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041018699"}, "pid": "10172", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:04.796425 2024-07-29 09:42:04.796436 a4aae25b-be7f-4208-b4e6-a1cf0bdbb7a4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040775593"}, "pid": "10173", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:04.893846 2024-07-29 09:42:04.893854 978c1622-d412-4119-8be1-0a515e8f1d3a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040763889"}, "pid": "10174", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:04.973764 2024-07-29 09:42:04.973774 61086c65-4f7b-4d91-ac88-2de5bd66bd42 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040730913"}, "pid": "10175", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:05.067338 2024-07-29 09:42:05.067348 6578e269-f74e-4cbb-838e-140cf266696b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04071781X"}, "pid": "10176", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:05.15874 2024-07-29 09:42:05.158753 5d065fab-f215-48e7-b00f-c0e346e3c806 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04067777X"}, "pid": "10177", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:05.256627 2024-07-29 09:42:05.256638 f1e19cc9-42a4-417e-8f1b-43138ef95f7d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04066533X"}, "pid": "10178", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:05.343002 2024-07-29 09:42:05.343006 26045861-de2a-43b2-b9d0-be550f0e1c9b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040645312"}, "pid": "10179", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:05.427493 2024-07-29 09:42:05.427503 13239c86-b33a-4a99-b5f8-10b608ee1552 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040633217"}, "pid": "10180", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:05.513855 2024-07-29 09:42:05.513864 86a04760-08b6-4734-b8c3-b9cb81a7f6ae {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040583317"}, "pid": "10181", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:05.604801 2024-07-29 09:42:05.604811 725c4146-bab2-4433-b45d-2e2ec9c163a8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040544567"}, "pid": "10182", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:05.698605 2024-07-29 09:42:05.698616 cd131e71-8656-4153-913d-d6b706bf3d3f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040519384"}, "pid": "10183", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:05.794115 2024-07-29 09:42:05.794126 202407f3-db81-4eaa-a428-9fde1201f45e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040514927"}, "pid": "10184", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:05.900318 2024-07-29 09:42:05.900322 8ccb21a1-531c-42de-a29b-eb42cb20d533 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040512665"}, "pid": "10185", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:05.980702 2024-07-29 09:42:05.980714 92f8b669-8163-410e-a646-4cb27225fb3b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04051238X"}, "pid": "10186", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:06.071654 2024-07-29 09:42:06.071665 683a2bac-43d4-4052-9a89-80ac9cbd4d72 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040490297"}, "pid": "10187", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:06.169256 2024-07-29 09:42:06.169266 d1673773-ed58-453b-bfc1-9696773592a6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040459608"}, "pid": "10188", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:06.260912 2024-07-29 09:42:06.260925 6c39b99c-39cd-445a-8003-920a30c4b820 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040451259"}, "pid": "10189", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:06.345606 2024-07-29 09:42:06.345608 82705657-1db4-447b-bad2-5bed74035d3f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040438163"}, "pid": "10190", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:06.407998 2024-07-29 09:42:06.408006 df3cb978-e390-4930-9e23-6676ecfabd03 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040432149"}, "pid": "10191", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:06.484974 2024-07-29 09:42:06.484982 90a23df5-55b0-49ab-ac0d-35137379d6d7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040416496"}, "pid": "10192", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:06.565921 2024-07-29 09:42:06.56593 0c69b113-5455-410c-94d4-39fb083fd9fd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040406938"}, "pid": "10193", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:06.644238 2024-07-29 09:42:06.644246 321330f7-646e-4339-9236-9f3419054525 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040403688"}, "pid": "10194", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:06.734659 2024-07-29 09:42:06.734669 d3ef1553-82f3-412b-9f5a-76ab135fa08d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040389065"}, "pid": "10195", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:06.82663 2024-07-29 09:42:06.826643 f7c5d248-63a1-4c81-a731-549f2b3e99f6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040335682"}, "pid": "10196", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:06.916576 2024-07-29 09:42:06.916585 ef521ad4-c980-4505-bee7-1362445f7c41 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040328260"}, "pid": "10197", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:07.006888 2024-07-29 09:42:07.006897 dbae54f3-b998-4974-955b-b33d56a440e0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04032009X"}, "pid": "10198", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:07.096718 2024-07-29 09:42:07.096728 2f3f8a48-4475-472c-9f26-36d3df7b550e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040252434"}, "pid": "10199", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:07.196102 2024-07-29 09:42:07.196114 b22ee2bd-e00d-405f-8ff3-86fc27ac76ae {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040247996"}, "pid": "10200", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:07.298194 2024-07-29 09:42:07.298207 1746b90d-ca99-41d8-9c50-970ab4ae6734 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04024055X"}, "pid": "10201", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:07.425898 2024-07-29 09:42:07.425907 a9109a00-586b-421d-8251-b88517e0db6d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040205487"}, "pid": "10202", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:07.515747 2024-07-29 09:42:07.515757 28705028-8421-424d-8669-f6a868b8a64e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040189074"}, "pid": "10203", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:07.596446 2024-07-29 09:42:07.596455 6cbe333f-e197-4f52-a3c7-ee996278babc {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040130193"}, "pid": "10204", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:07.679702 2024-07-29 09:42:07.679715 2dca3c02-6560-48d8-ace7-a9fcd2846f9e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04009006X"}, "pid": "10205", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:07.76737 2024-07-29 09:42:07.767378 2313b642-3047-493d-8203-d728a2aef0fd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040085287"}, "pid": "10206", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:07.860442 2024-07-29 09:42:07.860454 8212f848-705d-4a6d-81fa-f3f851961507 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040085244"}, "pid": "10207", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:07.953514 2024-07-29 09:42:07.953525 bc34d6fd-7338-4b7e-9967-5e7a03ad336c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040078124"}, "pid": "10208", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:08.042532 2024-07-29 09:42:08.04254 c6532c61-980f-46e9-a6b0-2bdaecd1de5f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040068560"}, "pid": "10209", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:08.137869 2024-07-29 09:42:08.137879 afc44c18-0a2b-4be6-864c-d0dba22d73df {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040062120"}, "pid": "10210", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:08.228346 2024-07-29 09:42:08.228356 a17f2a23-3672-4098-b8e7-c2d55b16d834 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040036774"}, "pid": "10211", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:08.319298 2024-07-29 09:42:08.319312 6d5cc071-c00b-4586-9df5-bf939fff2b14 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040030415"}, "pid": "10212", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:08.396094 2024-07-29 09:42:08.396097 adc22423-24ab-44fb-84fa-0a9f72687771 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040021475"}, "pid": "10213", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-07-29 09:42:08.453538 2024-07-29 09:42:08.453546 de9b0d70-f2ff-40fc-9a3f-378ad99ee877 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040021459"}, "pid": "10214", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 diff --git a/data/comef_pidstore.csv b/data/comef_pidstore.csv index 3d39c67f..4244212c 100644 --- a/data/comef_pidstore.csv +++ b/data/comef_pidstore.csv @@ -1,293 +1,2692 @@ -2023-08-08 13:37:34.566634 2023-08-08 13:37:34.56664 comef 7523 R rec dac46dce-f6ed-467e-bf45-b7b8cd223f18 -2023-08-08 13:37:34.639149 2023-08-08 13:37:34.639155 comef 7524 R rec 145433f7-2c2d-4da0-a5e9-1f0ede5f4e5b -2023-08-08 13:37:34.686728 2023-08-08 13:37:34.686733 comef 7525 R rec 41156192-2519-4487-b59d-122fd1ae9413 -2023-08-08 13:37:34.735266 2023-08-08 13:37:34.735271 comef 7526 R rec 04f7c0b9-95c7-41a2-843e-1b138eee3f94 -2023-08-08 13:37:34.781672 2023-08-08 13:37:34.781677 comef 7527 R rec 33d69848-7a15-4f22-a84b-35eb42319b2a -2023-08-08 13:37:34.833959 2023-08-08 13:37:34.833964 comef 7528 R rec fe4fd4cb-7503-4fac-b0f2-ce07ff26766b -2023-08-08 13:37:34.890253 2023-08-08 13:37:34.890265 comef 7529 R rec 164d426e-f0c7-45df-9dcd-2d3873dde307 -2023-08-08 13:37:34.969915 2023-08-08 13:37:34.969929 comef 7530 R rec a0f52ae3-acd7-443d-acab-6a21fbc26666 -2023-08-08 13:37:35.0366 2023-08-08 13:37:35.036605 comef 7531 R rec 49dad886-d4e0-4102-9a57-009308939484 -2023-08-08 13:37:35.116182 2023-08-08 13:37:35.116186 comef 7532 R rec e0631867-3940-4e67-a10c-10ca724557bc -2023-08-08 13:37:35.200544 2023-08-08 13:37:35.200555 comef 7533 R rec 76505cec-e298-454e-8bcc-67e5ac5893fd -2023-08-08 13:37:35.274723 2023-08-08 13:37:35.274733 comef 7534 R rec 9c331bda-472a-4c59-8964-f78697b389a3 -2023-08-08 13:37:35.344008 2023-08-08 13:37:35.344019 comef 7535 R rec 3f0ca320-84a0-49c8-aaf5-2aced99f2523 -2023-08-08 13:37:35.41159 2023-08-08 13:37:35.411595 comef 7536 R rec 9615e44b-8cee-48d7-83e2-5618d3abf222 -2023-08-08 13:37:35.483537 2023-08-08 13:37:35.483548 comef 7537 R rec 768255ea-a4ad-4619-9dd9-f0c31fe43171 -2023-08-08 13:37:35.545891 2023-08-08 13:37:35.545897 comef 7538 R rec b2ce96a6-62cd-47ef-989c-cdf951619a68 -2023-08-08 13:37:35.596633 2023-08-08 13:37:35.596638 comef 7539 R rec f2412722-83f8-4b27-aba2-595e635fa76c -2023-08-08 13:37:35.645308 2023-08-08 13:37:35.645313 comef 7540 R rec 735d6d96-a1bf-4e40-a415-373017cd27fd -2023-08-08 13:37:35.690395 2023-08-08 13:37:35.690401 comef 7541 R rec 5e494833-a62b-4a04-92f9-192ef71ab77f -2023-08-08 13:37:35.742892 2023-08-08 13:37:35.742897 comef 7542 R rec 5215edf8-debf-497c-be84-56680c97c7b8 -2023-08-08 13:37:37.318822 2023-08-08 13:37:37.318828 comef 7543 R rec 672d2c3f-e581-456c-9743-76d6454f5996 -2023-08-08 13:37:37.394378 2023-08-08 13:37:37.394384 comef 7544 R rec 8209ea39-87c8-4c5c-aa72-0d0fe3f5740b -2023-08-08 13:37:37.445806 2023-08-08 13:37:37.445812 comef 7545 R rec 9db59da0-cfaa-4be3-9aad-c7ae55b19380 -2023-08-08 13:37:37.494381 2023-08-08 13:37:37.494386 comef 7546 R rec 8538fe03-0b51-4d54-8d30-f06c84d2683f -2023-08-08 13:37:37.54804 2023-08-08 13:37:37.548046 comef 7547 R rec 400b79a9-0aa8-42df-82b4-e6df7ec325ce -2023-08-08 13:37:37.603265 2023-08-08 13:37:37.60327 comef 7548 R rec 0de0792d-8a7f-421e-9976-ddb6b792b2e1 -2023-08-08 13:37:37.663412 2023-08-08 13:37:37.663417 comef 7549 R rec e5cf5c69-5732-48c4-bcc3-3bd53c2b6c2b -2023-08-08 13:37:37.712887 2023-08-08 13:37:37.712893 comef 7550 R rec 314b3a71-0716-45c0-98ec-63d826cbd4c2 -2023-08-08 13:37:37.76064 2023-08-08 13:37:37.760645 comef 7551 R rec da4db154-9f0e-4df8-9e5a-3728e96d1bd2 -2023-08-08 13:37:37.806377 2023-08-08 13:37:37.806383 comef 7552 R rec 5450b281-9bba-4ac1-881d-658a405b5fe3 -2023-08-08 13:37:37.852819 2023-08-08 13:37:37.852825 comef 7553 R rec 80d57165-9bce-4c24-b78c-5363cda1345a -2023-08-08 13:37:37.92569 2023-08-08 13:37:37.9257 comef 7554 R rec 985081dd-c99d-460f-b772-149625f7aeb9 -2023-08-08 13:37:37.999677 2023-08-08 13:37:37.999688 comef 7555 R rec 49ec3254-16a9-4b79-ac73-52d135b7ffa6 -2023-08-08 13:37:38.089806 2023-08-08 13:37:38.089817 comef 7556 R rec 9e1e09da-607c-4afe-8c0a-bb048ba5c77e -2023-08-08 13:37:38.189603 2023-08-08 13:37:38.189614 comef 7557 R rec 6a3fce1f-e9f5-4cb0-a6f6-c9a0f005aaee -2023-08-08 13:37:38.274798 2023-08-08 13:37:38.274808 comef 7558 R rec f1e27378-e29f-413d-bc19-b0cbf91789fb -2023-08-08 13:37:38.366236 2023-08-08 13:37:38.366241 comef 7559 R rec 0cefbf2f-ec9f-4ae3-b300-a5cdd798be1c -2023-08-08 13:37:38.439395 2023-08-08 13:37:38.439401 comef 7560 R rec fd836156-c7a2-4c8a-94c2-a5e6b9ede2d2 -2023-08-08 13:37:38.526441 2023-08-08 13:37:38.526446 comef 7561 R rec ba59c574-3369-4eb3-b739-726ce9be7337 -2023-08-08 13:37:38.590876 2023-08-08 13:37:38.590886 comef 7562 R rec 76ba8f40-ad15-4afa-8aab-b3cba741962d -2023-08-08 13:37:38.645046 2023-08-08 13:37:38.645051 comef 7563 R rec 979baaba-e1f6-47c7-9c11-5d0cc88bbb24 -2023-08-08 13:37:38.690521 2023-08-08 13:37:38.690526 comef 7564 R rec 879f97bd-1a78-4c1d-b283-920d68c494ab -2023-08-08 13:37:38.742656 2023-08-08 13:37:38.742661 comef 7565 R rec e2aaf252-a10a-4cde-bc73-3c2123a06328 -2023-08-08 13:37:38.790004 2023-08-08 13:37:38.790009 comef 7566 R rec ff7cdaab-cafe-44f2-b82a-cfc793c44269 -2023-08-08 13:37:38.836614 2023-08-08 13:37:38.83662 comef 7567 R rec 891f6917-b7ac-43be-b128-a725aa6643c1 -2023-08-08 13:37:38.909975 2023-08-08 13:37:38.90998 comef 7568 R rec 5c520cfd-bc6a-4756-bdff-50cdb387cdd7 -2023-08-08 13:37:38.980569 2023-08-08 13:37:38.980573 comef 7569 R rec e8d35e34-5757-4fb3-b0dd-801b96c6147b -2023-08-08 13:37:39.05134 2023-08-08 13:37:39.051346 comef 7570 R rec 8b496f92-8a4d-40f6-a1aa-3498b99a821f -2023-08-08 13:37:39.115988 2023-08-08 13:37:39.115994 comef 7571 R rec 3b7d2fb6-a531-4027-8a50-046e32baa30b -2023-08-08 13:37:39.19306 2023-08-08 13:37:39.193065 comef 7572 R rec df0c1508-b627-41ca-b3a9-5609b90ac373 -2023-08-08 13:37:39.266639 2023-08-08 13:37:39.266649 comef 7573 R rec d2d47ac4-6e0d-49be-9f7c-b13ed82b5ef4 -2023-08-08 13:37:39.362368 2023-08-08 13:37:39.362378 comef 7574 R rec 6951537a-dc93-48b8-80a8-91f1be875c75 -2023-08-08 13:37:39.431246 2023-08-08 13:37:39.431251 comef 7575 R rec 5eba0d5f-5c7c-47a6-be9b-3411f9603ed5 -2023-08-08 13:37:39.497052 2023-08-08 13:37:39.497058 comef 7576 R rec dbb7afff-52da-42ce-b2e2-cb6cf4224f94 -2023-08-08 13:37:39.556892 2023-08-08 13:37:39.556898 comef 7577 R rec 8fe839de-3e73-4d1a-805c-e4d9ce9e56ef -2023-08-08 13:37:39.619186 2023-08-08 13:37:39.619196 comef 7578 R rec 8f2ef111-96ca-4e23-a6c1-5c9ee810846f -2023-08-08 13:37:39.679728 2023-08-08 13:37:39.679733 comef 7579 R rec 8e71de06-364c-4b1a-bf83-a0d1c6b11341 -2023-08-08 13:37:39.72725 2023-08-08 13:37:39.727255 comef 7580 R rec 53789323-57d7-4b60-9cdd-d5493697836b -2023-08-08 13:37:39.775719 2023-08-08 13:37:39.775724 comef 7581 R rec a0082d77-481a-4a65-ae00-dda496b2aae9 -2023-08-08 13:37:39.827553 2023-08-08 13:37:39.827558 comef 7582 R rec dc454d11-fa70-4406-8f5d-5a438d1605c6 -2023-08-08 13:37:39.873433 2023-08-08 13:37:39.873439 comef 7583 R rec 3e27a960-f870-4886-a788-57426aab0e81 -2023-08-08 13:37:39.940769 2023-08-08 13:37:39.94078 comef 7584 R rec e83f418d-a2dd-45dd-b914-a9503e0db42b -2023-08-08 13:37:40.027246 2023-08-08 13:37:40.027252 comef 7585 R rec dd69540b-f270-4179-b606-0b0c375ea63c -2023-08-08 13:37:40.081011 2023-08-08 13:37:40.081022 comef 7586 R rec e4e46c08-1fb1-4298-87c4-61cc62c0567f -2023-08-08 13:37:40.164202 2023-08-08 13:37:40.164212 comef 7587 R rec 81f71d3f-b5a3-4d88-bed3-6e5c87b8eee9 -2023-08-08 13:37:40.231791 2023-08-08 13:37:40.231796 comef 7588 R rec 3e2c8926-b993-4645-b4cb-bdc81844baf8 -2023-08-08 13:37:40.31244 2023-08-08 13:37:40.31245 comef 7589 R rec a9081a25-2057-4708-a646-beaaa96c21de -2023-08-08 13:37:40.4005 2023-08-08 13:37:40.400509 comef 7590 R rec 69a83937-6d1b-4f5b-bf96-8410adbf9f0d -2023-08-08 13:37:40.49154 2023-08-08 13:37:40.491551 comef 7591 R rec ada862f3-59a5-428d-a8ef-7cf47a8e86e1 -2023-08-08 13:37:40.560452 2023-08-08 13:37:40.560457 comef 7592 R rec 18eadecc-e55f-40f6-a105-75d592386931 -2023-08-08 13:37:40.632651 2023-08-08 13:37:40.632656 comef 7593 R rec 0c356944-809a-4311-a022-49bc2c806951 -2023-08-08 13:37:40.704392 2023-08-08 13:37:40.704397 comef 7594 R rec 85503263-9362-4a40-a778-6503b93b37d1 -2023-08-08 13:37:40.774714 2023-08-08 13:37:40.77472 comef 7595 R rec 21983b6b-b5a0-4a9a-b95e-4207d45cf46c -2023-08-08 13:37:40.832991 2023-08-08 13:37:40.832997 comef 7596 R rec b6677f66-e9d4-4550-a167-b2b2c5f74bd3 -2023-08-08 13:37:40.883501 2023-08-08 13:37:40.883507 comef 7597 R rec b37b70af-c688-4a00-af9a-d800c3853479 -2023-08-08 13:37:40.96358 2023-08-08 13:37:40.96359 comef 7598 R rec 5434e655-aaac-4f9a-b6c7-549d19682070 -2023-08-08 13:37:41.046763 2023-08-08 13:37:41.046769 comef 7599 R rec 42e7ce67-8fd0-45e0-a485-596533ec3b75 -2023-08-08 13:37:41.11394 2023-08-08 13:37:41.11395 comef 7600 R rec 37bff509-de81-49ae-af92-adb3259f0572 -2023-08-08 13:37:41.194862 2023-08-08 13:37:41.194872 comef 7601 R rec 09ae2a98-7728-40a9-a96c-d74b3f5464b2 -2023-08-08 13:37:41.276731 2023-08-08 13:37:41.276741 comef 7602 R rec fb974f50-be51-4147-8b71-0bd83ef7af89 -2023-08-08 13:37:41.37747 2023-08-08 13:37:41.377476 comef 7603 R rec 645b993d-b3e4-4ffd-93c0-1c773d46ea88 -2023-08-08 13:37:41.463224 2023-08-08 13:37:41.463233 comef 7604 R rec 8341e7a5-fe40-4a33-8302-05cd47a733d8 -2023-08-08 13:37:41.541761 2023-08-08 13:37:41.541766 comef 7605 R rec 5b3abd85-5923-40ce-b262-95793471e7e3 -2023-08-08 13:37:41.611749 2023-08-08 13:37:41.611755 comef 7606 R rec 009228a8-3014-42b1-84ed-de3a72a47939 -2023-08-08 13:37:41.694862 2023-08-08 13:37:41.694868 comef 7607 R rec 62871867-7f81-4b0a-899d-a9730d473dfe -2023-08-08 13:37:41.769972 2023-08-08 13:37:41.769977 comef 7608 R rec 7064aa1e-b931-4284-9410-fe13c8aed530 -2023-08-08 13:37:41.820361 2023-08-08 13:37:41.820366 comef 7609 R rec 975a297c-d44e-43a0-be23-50416a982322 -2023-08-08 13:37:41.880054 2023-08-08 13:37:41.880059 comef 7610 R rec 71f8606e-f10b-49f0-bcdb-5c39ebe24080 -2023-08-08 13:37:41.939339 2023-08-08 13:37:41.939344 comef 7611 R rec babda14f-20f8-4593-b5e1-116b77fd753d -2023-08-08 13:37:42.027852 2023-08-08 13:37:42.027862 comef 7612 R rec 8684b379-b84e-49c2-8120-959446d2bf0d -2023-08-08 13:37:42.094139 2023-08-08 13:37:42.094149 comef 7613 R rec 46543dca-5fa8-4076-b1b6-0cd9376a6d99 -2023-08-08 13:37:42.176926 2023-08-08 13:37:42.176931 comef 7614 R rec d922c892-0f2a-4932-8da8-fc7863281b1a -2023-08-08 13:37:42.251521 2023-08-08 13:37:42.251526 comef 7615 R rec 25d27153-0a43-4d5a-a9c7-98e98697fef0 -2023-08-08 13:37:42.332176 2023-08-08 13:37:42.332186 comef 7616 R rec fd8b99ad-2410-4b7b-b8df-761ea2f55314 -2023-08-08 13:37:42.426363 2023-08-08 13:37:42.426374 comef 7617 R rec dc1d419f-23ad-4a97-8c6c-a588efec071e -2023-08-08 13:37:42.51254 2023-08-08 13:37:42.512545 comef 7618 R rec b2e19a1b-8957-4e03-9bc6-4685aea0f121 -2023-08-08 13:37:42.581685 2023-08-08 13:37:42.581694 comef 7619 R rec d71d61e5-426c-470a-86e9-1f52dc1a1b5a -2023-08-08 13:37:42.674159 2023-08-08 13:37:42.674165 comef 7620 R rec 0521fc43-dd56-41d9-9019-0fc507696600 -2023-08-08 13:37:42.770569 2023-08-08 13:37:42.770579 comef 7621 R rec 84cd3fbf-274f-4f2d-ac1d-ac7cefc1480d -2023-08-08 13:37:42.825367 2023-08-08 13:37:42.825372 comef 7622 R rec ca09bbf7-d883-4c17-b68d-468aef444076 -2023-08-08 13:37:42.874605 2023-08-08 13:37:42.874611 comef 7623 R rec 2cecf4dc-74f8-4229-8dfc-c7a387153c3b -2023-08-08 13:37:42.92447 2023-08-08 13:37:42.924475 comef 7624 R rec f8d78f9b-d5c1-4ec3-846e-45d5f96afd7b -2023-08-08 13:37:42.977476 2023-08-08 13:37:42.977482 comef 7625 R rec 8acda6d8-94c6-40ea-82e6-0639af921cb8 -2023-08-08 13:37:43.033242 2023-08-08 13:37:43.033248 comef 7626 R rec 41c96dcb-c9dc-4673-8baa-1663639d22b9 -2023-08-08 13:37:43.098885 2023-08-08 13:37:43.098896 comef 7627 R rec 9c8040e3-e214-45f0-b099-5bbeea1cb89b -2023-08-08 13:37:43.17842 2023-08-08 13:37:43.17843 comef 7628 R rec 8f236f8e-26d4-44fa-89e8-3ce58c3fdeee -2023-08-08 13:37:43.267103 2023-08-08 13:37:43.267108 comef 7629 R rec c2b14c18-df4b-4849-a87e-9ce78878434f -2023-08-08 13:37:43.361348 2023-08-08 13:37:43.361358 comef 7630 R rec 895cabdc-9cf7-4dad-8af0-4f536e322728 -2023-08-08 13:37:43.439949 2023-08-08 13:37:43.439954 comef 7631 R rec 72f201e3-865d-4867-9ae9-6f377264ce97 -2023-08-08 13:37:43.528849 2023-08-08 13:37:43.528859 comef 7632 R rec 9c59ed71-1817-4079-a5bb-152de90e27bf -2023-08-08 13:37:43.611569 2023-08-08 13:37:43.611575 comef 7633 R rec fae2477e-1dbc-47fa-ac8e-c7a3fb290ce8 -2023-08-08 13:37:43.698726 2023-08-08 13:37:43.698736 comef 7634 R rec b30347ae-8c76-4b94-9eeb-a8a5d9fafbe3 -2023-08-08 13:37:43.786365 2023-08-08 13:37:43.786376 comef 7635 R rec d1866148-015b-4575-8bf1-327997caa4f7 -2023-08-08 13:37:43.850647 2023-08-08 13:37:43.850653 comef 7636 R rec 6d37f397-2c09-437a-aca8-ca7ed6d99c36 -2023-08-08 13:37:43.90102 2023-08-08 13:37:43.901025 comef 7637 R rec ac4deab1-4d2c-4ab1-97cf-92abfc7bc1d4 -2023-08-08 13:37:43.955012 2023-08-08 13:37:43.955018 comef 7638 R rec 4c1e92a2-ea24-4108-971d-926156ce0404 -2023-08-08 13:37:44.004364 2023-08-08 13:37:44.004369 comef 7639 R rec 4f5da7b6-29e6-4122-a658-e759b1159f9c -2023-08-08 13:37:44.053904 2023-08-08 13:37:44.05391 comef 7640 R rec 6dd1c277-569a-4c7a-9f14-33acd19f2b44 -2023-08-08 13:37:44.101281 2023-08-08 13:37:44.101286 comef 7641 R rec 755eebcb-13f4-4479-91ec-b0395543b012 -2023-08-08 13:37:44.196578 2023-08-08 13:37:44.196583 comef 7642 R rec ca35f295-1829-46fa-9880-e028d4c61222 -2023-08-08 13:37:44.26658 2023-08-08 13:37:44.266585 comef 7643 R rec b3a49bd1-d401-450b-94e1-63ab21c581de -2023-08-08 13:37:44.336164 2023-08-08 13:37:44.336169 comef 7644 R rec 4549e154-3034-421a-9aed-6ed29a0c07c3 -2023-08-08 13:37:44.428598 2023-08-08 13:37:44.428608 comef 7645 R rec b7ab1b6b-92e4-4405-8e10-7c4c57b0cd08 -2023-08-08 13:37:44.512301 2023-08-08 13:37:44.512306 comef 7646 R rec 39135e2c-47bb-4c92-acbd-76b4b6138767 -2023-08-08 13:37:44.569712 2023-08-08 13:37:44.569717 comef 7647 R rec 851963c3-1071-4504-9da8-c4dfa7c15d6b -2023-08-08 13:37:44.64803 2023-08-08 13:37:44.64804 comef 7648 R rec 059d275a-e46b-48f2-891e-269299df5c91 -2023-08-08 13:37:44.740255 2023-08-08 13:37:44.740261 comef 7649 R rec 48ff51f2-ef34-42c7-a91d-007dc2b4f457 -2023-08-08 13:37:44.826178 2023-08-08 13:37:44.826188 comef 7650 R rec f54c096a-d7b7-4c7b-966d-160df478cb57 -2023-08-08 13:37:44.903526 2023-08-08 13:37:44.903532 comef 7651 R rec 22bac894-4c43-47ed-8475-894413361eb7 -2023-08-08 13:37:44.952125 2023-08-08 13:37:44.95213 comef 7652 R rec 2b3b6878-5cdd-4b8e-a5a2-fe0b25c84f9a -2023-08-08 13:37:45.00034 2023-08-08 13:37:45.000345 comef 7653 R rec e863b70b-712e-4abf-91e0-b95ee33701a6 -2023-08-08 13:37:45.049646 2023-08-08 13:37:45.04965 comef 7654 R rec 17dcc87d-1971-4a04-9c1d-7b3fe5cb84fe -2023-08-08 13:37:45.099361 2023-08-08 13:37:45.099366 comef 7655 R rec 104b08ff-9911-4369-9620-5819355ef3c0 -2023-08-08 13:37:45.176221 2023-08-08 13:37:45.176258 comef 7656 R rec 4dcc1695-5711-405a-8207-ca60a97f92c7 -2023-08-08 13:37:45.251166 2023-08-08 13:37:45.251175 comef 7657 R rec 67ccc89c-6997-4467-8647-824ca3322f45 -2023-08-08 13:37:45.33466 2023-08-08 13:37:45.334665 comef 7658 R rec e345602c-cc2d-4856-8aa1-e921fe826cda -2023-08-08 13:37:45.4079 2023-08-08 13:37:45.40791 comef 7659 R rec a293661b-ec3f-40a1-8c2e-3ad4835f98e8 -2023-08-08 13:37:45.498807 2023-08-08 13:37:45.498818 comef 7660 R rec 43f5a1dc-1e9d-465b-887c-02d054f34d3e -2023-08-08 13:37:45.567593 2023-08-08 13:37:45.567604 comef 7661 R rec cf803ed6-f82c-443f-b4fb-9f660c516c3f -2023-08-08 13:37:45.643202 2023-08-08 13:37:45.643207 comef 7662 R rec e1cbc25a-a3e9-44ef-bcb9-e6da1292fffd -2023-08-08 13:37:45.719708 2023-08-08 13:37:45.719719 comef 7663 R rec b9572912-7147-4a40-9b84-f024ad69cc86 -2023-08-08 13:37:45.786584 2023-08-08 13:37:45.786594 comef 7664 R rec cb42f09b-af79-43a3-bf10-c1cfb0db8ea0 -2023-08-08 13:37:45.877055 2023-08-08 13:37:45.877065 comef 7665 R rec 233b4c4d-9d19-4a49-a5b2-cf9d4046902b -2023-08-08 13:37:45.942227 2023-08-08 13:37:45.942231 comef 7666 R rec 1121b49e-e03c-4575-b6de-05191dc413f3 -2023-08-08 13:37:45.997861 2023-08-08 13:37:45.997866 comef 7667 R rec 5fcf2cb8-d623-441b-af8e-e4ee229b0f7a -2023-08-08 13:37:46.070719 2023-08-08 13:37:46.070724 comef 7668 R rec f48d693e-74bd-4a88-8ea2-6d2b5a50cbbc -2023-08-08 13:37:46.133061 2023-08-08 13:37:46.133066 comef 7669 R rec 3d09a94f-36c0-4627-af2a-d8a68a74b39c -2023-08-08 13:37:46.212606 2023-08-08 13:37:46.212615 comef 7670 R rec 6ec0da4a-6f4d-4d17-8f6f-1139eceeb622 -2023-08-08 13:37:46.284462 2023-08-08 13:37:46.284472 comef 7671 R rec 2a946ae6-1233-4707-a81a-4b8aba9835f6 -2023-08-08 13:37:46.377729 2023-08-08 13:37:46.377738 comef 7672 R rec 66620b9b-cc51-4a12-83e9-97d9d4079e37 -2023-08-08 13:37:46.478597 2023-08-08 13:37:46.478601 comef 7673 R rec 9df43341-cbcb-43d3-bd1a-3fe8810be304 -2023-08-08 13:37:46.60151 2023-08-08 13:37:46.601515 comef 7674 R rec 3c541718-d121-472b-90bf-f299cda14cd4 -2023-08-08 13:37:46.655237 2023-08-08 13:37:46.655243 comef 7675 R rec 731eaf1a-bd59-4d1e-ad9d-353cb8b8503a -2023-08-08 13:37:46.70527 2023-08-08 13:37:46.705275 comef 7676 R rec b10f8e16-de18-4db4-a112-96a3b1fc4da6 -2023-08-08 13:37:46.758536 2023-08-08 13:37:46.758541 comef 7677 R rec e123ee67-cf0f-4ef1-92db-ddb2b8a8d397 -2023-08-08 13:37:46.807967 2023-08-08 13:37:46.807973 comef 7678 R rec 21b56b3b-7eac-4c57-b484-3cbabf894885 -2023-08-08 13:37:46.876343 2023-08-08 13:37:46.876354 comef 7679 R rec ecd657a6-0ea1-4236-a251-5fa37c771c18 -2023-08-08 13:37:46.949674 2023-08-08 13:37:46.94968 comef 7680 R rec 80ecbe01-8a06-4153-b551-635f2709e5d2 -2023-08-08 13:37:46.999744 2023-08-08 13:37:46.999749 comef 7681 R rec f8cecbca-4916-466f-9fea-503350d53a94 -2023-08-08 13:37:47.049429 2023-08-08 13:37:47.049435 comef 7682 R rec bac34b31-078e-4d3c-9c12-bbf23c181aa7 -2023-08-08 13:37:47.101284 2023-08-08 13:37:47.101289 comef 7683 R rec 5bf206ea-0165-4c14-b9b1-a25dcff96f1e -2023-08-08 13:37:47.161072 2023-08-08 13:37:47.161078 comef 7684 R rec 216e2e0c-550e-4b3d-8c03-b7f0e114191a -2023-08-08 13:37:47.224091 2023-08-08 13:37:47.224101 comef 7685 R rec 9ee598f4-1aae-4869-b4d0-38933dab1699 -2023-08-08 13:37:47.315669 2023-08-08 13:37:47.315678 comef 7686 R rec 22989a74-d1a3-46b0-9d9e-b625f5be790a -2023-08-08 13:37:47.412085 2023-08-08 13:37:47.412091 comef 7687 R rec 19cc18dc-3724-4051-b098-6fd9b597fdb5 -2023-08-08 13:37:47.497632 2023-08-08 13:37:47.497641 comef 7688 R rec 1902c6a4-2b53-4771-bcea-5d832dd96c6c -2023-08-08 13:37:47.566219 2023-08-08 13:37:47.56623 comef 7689 R rec df5793a7-e4bb-42c8-b795-a4f8db244f80 -2023-08-08 13:37:47.643521 2023-08-08 13:37:47.643526 comef 7690 R rec 58031939-8da6-4655-b34c-20fcdddb6655 -2023-08-08 13:37:47.728826 2023-08-08 13:37:47.728836 comef 7691 R rec cdb25056-a2dc-4ca7-a7eb-20a02bb98a3b -2023-08-08 13:37:47.818751 2023-08-08 13:37:47.818756 comef 7692 R rec 3f594464-40a2-4080-94db-4ca026b06a87 -2023-08-08 13:37:47.898225 2023-08-08 13:37:47.898236 comef 7693 R rec a92b492b-f821-4664-85b3-e6217b8c1430 -2023-08-08 13:37:47.992677 2023-08-08 13:37:47.992683 comef 7694 R rec fbb9e8a7-929b-44d9-8a15-b940fef271cf -2023-08-08 13:37:48.04812 2023-08-08 13:37:48.048126 comef 7695 R rec ad950c43-b50c-4670-80c1-d9ee15b1e4a9 -2023-08-08 13:37:48.09773 2023-08-08 13:37:48.097735 comef 7696 R rec 14d5939d-df82-4739-b16f-a709c1d161b4 -2023-08-08 13:37:48.147804 2023-08-08 13:37:48.147809 comef 7697 R rec 0e1453e1-ba61-4837-8f80-2e1dfb153137 -2023-08-08 13:37:48.197077 2023-08-08 13:37:48.197082 comef 7698 R rec 764bc049-ccb9-404e-bf3f-6f86e4a40288 -2023-08-08 13:37:48.262013 2023-08-08 13:37:48.262023 comef 7699 R rec e0aca4e3-c0f7-486b-9141-3b0823b304bd -2023-08-08 13:37:48.344183 2023-08-08 13:37:48.344188 comef 7700 R rec 03477155-75c1-4c5e-9f17-b1a10780489b -2023-08-08 13:37:48.439868 2023-08-08 13:37:48.439879 comef 7701 R rec a21f9b55-3ee5-4c26-988d-033cbf34422c -2023-08-08 13:37:48.534318 2023-08-08 13:37:48.534324 comef 7702 R rec 91660634-6651-4cc7-97b0-eb39fa6e3ee9 -2023-08-08 13:37:48.588659 2023-08-08 13:37:48.588666 comef 7703 R rec b2fa2e60-0e8d-4930-98b7-cfb96fbc9559 -2023-08-08 13:37:48.663348 2023-08-08 13:37:48.663353 comef 7704 R rec 7308a3cf-78d2-4a11-9dac-ca211c2e397c -2023-08-08 13:37:48.727902 2023-08-08 13:37:48.727913 comef 7705 R rec 353c9a96-48d0-44a1-9e22-ede7327ab0a5 -2023-08-08 13:37:48.79574 2023-08-08 13:37:48.795745 comef 7706 R rec 16e523a9-9e19-4607-9405-8e20fb403f96 -2023-08-08 13:37:48.875379 2023-08-08 13:37:48.87539 comef 7707 R rec f2cee243-53d1-4bc3-9f47-a7699b1554aa -2023-08-08 13:37:48.959859 2023-08-08 13:37:48.959871 comef 7708 R rec cb10ddc8-a479-4a9a-8182-8c151e326480 -2023-08-08 13:37:49.033822 2023-08-08 13:37:49.033828 comef 7709 R rec acf96121-3580-4e30-8970-d947e7dc940a -2023-08-08 13:37:49.08522 2023-08-08 13:37:49.085224 comef 7710 R rec d5edbfda-ffe7-4ccb-8ad7-73ea711398d5 -2023-08-08 13:37:49.140097 2023-08-08 13:37:49.140102 comef 7711 R rec 19a71ea0-734f-48a1-b4ca-a6452fd6082e -2023-08-08 13:37:49.190277 2023-08-08 13:37:49.190282 comef 7712 R rec 5bdd9117-818a-4af4-9a5c-447e30197f4e -2023-08-08 13:37:49.239146 2023-08-08 13:37:49.239151 comef 7713 R rec e8ac26df-301a-4b41-8d4c-98b8c55b79fd -2023-08-08 13:37:49.307036 2023-08-08 13:37:49.307041 comef 7714 R rec d6809a2c-da1f-4c86-8f6f-ef5450d3714f -2023-08-08 13:37:49.387565 2023-08-08 13:37:49.387576 comef 7715 R rec ae7a8ede-87e9-4169-bafb-a3c14bff5c85 -2023-08-08 13:37:49.471226 2023-08-08 13:37:49.471237 comef 7716 R rec 838e2256-a0a0-4ba6-aff7-3b75c5f29e28 -2023-08-08 13:37:49.549412 2023-08-08 13:37:49.549417 comef 7717 R rec 387cec39-4b37-4203-8f88-7b6d8670d23c -2023-08-08 13:37:49.610558 2023-08-08 13:37:49.610567 comef 7718 R rec 855c9e44-cda5-4acd-bc59-d87a037c349d -2023-08-08 13:37:49.686044 2023-08-08 13:37:49.686054 comef 7719 R rec 8151e4f7-887a-40f7-947f-c40f44d2ce16 -2023-08-08 13:58:50.958475 2023-08-08 13:58:50.958481 comef 7720 R rec 8bff9b3b-2c5a-4804-ba5a-38ce0adf7fc2 -2023-08-08 14:25:02.86535 2023-08-08 14:25:02.865356 comef 7721 R rec e295686d-6066-4d99-8484-d21d23b83aa9 -2023-08-08 14:25:03.926601 2023-08-08 14:25:03.926606 comef 7722 R rec a80c2da0-17c0-4fbd-9d3f-51282925c992 -2023-08-08 14:25:04.640065 2023-08-08 14:25:04.640071 comef 7723 R rec 892fb8f9-9a56-4b5e-b3af-db4fbb1f82e6 -2023-08-08 14:28:41.239838 2023-08-08 14:28:41.239843 comef 7724 R rec 2d4709b8-ad81-4362-903b-32399f268796 -2023-08-08 14:28:41.331306 2023-08-08 14:28:41.331316 comef 7725 R rec 2e8b0c96-beec-43c1-8b98-b7f3baac4af0 -2023-08-08 14:28:41.446514 2023-08-08 14:28:41.446523 comef 7726 R rec d36eeeff-88fd-488c-b7bf-280681988ffb -2023-08-08 14:28:41.553347 2023-08-08 14:28:41.553356 comef 7727 R rec 696ee35a-b84e-4475-ac7c-2a7418c689ff -2023-08-08 14:28:41.642632 2023-08-08 14:28:41.642638 comef 7728 R rec ad5a0f1b-4daf-4a71-ba28-1944f187f8a4 -2023-08-08 14:28:41.715463 2023-08-08 14:28:41.715468 comef 7729 R rec c9b23c02-5928-41c4-9900-87481ee4e979 -2023-08-08 14:28:41.810295 2023-08-08 14:28:41.810304 comef 7730 R rec 36b7ddb8-1360-4298-ac11-fceea2de1211 -2023-08-08 14:28:41.922236 2023-08-08 14:28:41.922245 comef 7731 R rec a70543e2-4d56-4f75-8237-f23a52f18323 -2023-08-08 14:28:42.063806 2023-08-08 14:28:42.063815 comef 7732 R rec 14c73725-2e49-44f9-b6df-acba7c16f36a -2023-08-08 14:28:42.201709 2023-08-08 14:28:42.201719 comef 7733 R rec 0238264a-f796-485c-9011-df17ab4da39a -2023-08-08 14:28:42.305227 2023-08-08 14:28:42.305238 comef 7734 R rec 479c9c0e-7451-46c4-8cf2-99b85fe160cd -2023-08-08 14:28:44.034842 2023-08-08 14:28:44.034847 comef 7735 R rec bafdc96a-513e-4f42-9527-fc1e7b22f742 -2023-08-08 14:28:44.095483 2023-08-08 14:28:44.095489 comef 7736 R rec 82ed0355-eb9c-4a56-82d7-e08dee0f0d79 -2023-08-08 14:28:44.905897 2023-08-08 14:28:44.905903 comef 7737 R rec f97a0146-10fe-4f71-b2b1-f17528df368b -2023-08-08 14:28:46.94848 2023-08-08 14:28:46.948486 comef 7738 R rec 376ad966-bd76-4630-89d3-a7d546cc9907 -2023-08-08 14:34:56.707342 2023-08-08 14:34:56.707347 comef 7739 R rec dcb128a3-6cdb-4c5e-8559-5c7b553225d3 -2023-08-08 14:34:56.76983 2023-08-08 14:34:56.769835 comef 7740 R rec e40d9c38-9beb-470f-97cc-03021e6a3b22 -2023-08-08 14:34:56.842848 2023-08-08 14:34:56.84286 comef 7741 R rec 9e94b9ae-91a9-44a9-a965-01162b96c0ae -2023-08-08 14:34:56.934392 2023-08-08 14:34:56.934398 comef 7742 R rec ee314be9-fca0-4178-bcf5-3d717870a07b -2023-08-08 14:36:35.733396 2023-08-08 14:36:35.733407 comef 7743 R rec b78ec242-ad8b-401d-9a57-91e0aadf923f -2023-08-08 14:36:35.854413 2023-08-08 14:36:35.854425 comef 7744 R rec bc8be94c-afef-480e-ba9f-f2d5fa63edf7 -2023-08-08 14:36:35.96095 2023-08-08 14:36:35.960963 comef 7745 R rec a3682979-0d5e-4f11-acbb-7871afec1556 -2023-08-08 14:36:36.073027 2023-08-08 14:36:36.073038 comef 7746 R rec 394db9a3-95e7-41ee-8cfc-a8dadb5f83aa -2023-08-08 14:36:36.203807 2023-08-08 14:36:36.203813 comef 7747 R rec d5d67c0f-776e-43ff-84fc-a64aeaf51799 -2023-08-08 14:36:36.284804 2023-08-08 14:36:36.28481 comef 7748 R rec 306b9c23-37e6-4849-804a-9f2e87704569 -2023-08-08 14:36:36.363197 2023-08-08 14:36:36.363208 comef 7749 R rec f4c85e77-147e-4c59-8999-6415246ae352 -2023-08-08 14:36:36.476072 2023-08-08 14:36:36.476083 comef 7750 R rec 43802f0e-f47d-4fe9-83c9-4d6b0fb58063 -2023-08-08 14:36:36.572015 2023-08-08 14:36:36.572025 comef 7751 R rec 89c8937b-c705-454c-89d7-5fe938a7527f -2023-08-08 14:36:36.682646 2023-08-08 14:36:36.682659 comef 7752 R rec 9272701a-5ee8-4663-b6b1-cb93ed4c0722 -2023-08-08 14:36:36.786868 2023-08-08 14:36:36.786878 comef 7753 R rec 3f459919-76c6-43c3-9652-7a273abc376f -2023-08-08 14:36:36.89413 2023-08-08 14:36:36.894141 comef 7754 R rec 1abdcaca-15d8-40a0-a6d5-dc1a2fd51e5c -2023-08-08 14:36:36.988201 2023-08-08 14:36:36.988212 comef 7755 R rec 97b2d58a-5b93-4c4f-8263-9631647dc47f -2023-08-08 14:36:37.110764 2023-08-08 14:36:37.110769 comef 7756 R rec 13e9a046-350c-4b68-a8fe-f7914dee6999 -2023-08-08 14:36:37.219051 2023-08-08 14:36:37.219061 comef 7757 R rec b0813bc1-52c9-489b-93c7-3d8ddc11a052 -2023-08-08 14:36:37.285607 2023-08-08 14:36:37.285613 comef 7758 R rec 8c354710-957d-4aee-a5d5-d542ddf781bd -2023-08-08 14:36:37.340514 2023-08-08 14:36:37.340519 comef 7759 R rec 2270ca85-22aa-48da-906c-e39036f98914 -2023-08-08 14:36:37.436449 2023-08-08 14:36:37.436454 comef 7760 R rec 9310c32d-b705-4e32-ab59-20fa0fcd2629 -2023-08-08 14:36:37.531032 2023-08-08 14:36:37.531043 comef 7761 R rec 85430101-9910-4f18-bbbe-a1ee2ee7bfc7 -2023-08-08 14:36:37.623532 2023-08-08 14:36:37.623545 comef 7762 R rec bd27440b-3f01-4863-9e47-c5f53386c627 -2023-08-08 14:36:37.767497 2023-08-08 14:36:37.767508 comef 7763 R rec 8ab079ef-cc26-4d10-b6f7-41780d1f560e -2023-08-08 14:36:37.879376 2023-08-08 14:36:37.87939 comef 7764 R rec 167a1116-7ade-475a-b316-ed8d69df3ebd -2023-08-08 14:36:37.983478 2023-08-08 14:36:37.983489 comef 7765 R rec 818e8317-16bb-472d-8282-65883653864f -2023-08-08 14:36:38.088662 2023-08-08 14:36:38.088673 comef 7766 R rec 73c8e684-ba34-4d74-8b91-caf70095e300 -2023-08-08 14:36:38.210347 2023-08-08 14:36:38.210358 comef 7767 R rec 5447671e-7916-42ac-81dd-04d330b761ac -2023-08-08 14:36:38.303053 2023-08-08 14:36:38.30306 comef 7768 R rec 09d3f034-cd60-455c-b62e-746496d10044 -2023-08-08 14:36:38.355756 2023-08-08 14:36:38.355762 comef 7769 R rec 36eabe3e-46e9-47b1-92e8-4f32496971fb -2023-08-08 14:36:38.42636 2023-08-08 14:36:38.426371 comef 7770 R rec 8b73fdc1-d344-40e2-ae45-1470083d8d96 -2023-08-08 14:36:38.555968 2023-08-08 14:36:38.555978 comef 7771 R rec b1dd8c85-01da-43d7-84ca-231ca8345bc7 -2023-08-08 14:36:38.66858 2023-08-08 14:36:38.66859 comef 7772 R rec 239ffbc4-cfb2-48bb-933b-66c2264b784b -2023-08-08 14:36:38.752005 2023-08-08 14:36:38.752038 comef 7773 R rec 5f6647e3-d960-4548-a625-09e4d51bf593 -2023-08-08 14:36:38.85327 2023-08-08 14:36:38.853281 comef 7774 R rec 8902a539-e780-4524-87ed-511f50e6907d -2023-08-08 14:36:38.972938 2023-08-08 14:36:38.972949 comef 7775 R rec d684b0ef-15c1-4a3f-b042-c0c1d18b4cd8 -2023-08-08 14:36:39.065699 2023-08-08 14:36:39.065704 comef 7776 R rec 2fef4594-ce29-424a-a22e-5b4aac2bbac7 -2023-08-08 14:36:39.158091 2023-08-08 14:36:39.158103 comef 7777 R rec 3a18a460-bbe9-4b1d-8c41-63ee3d5c4126 -2023-08-08 14:36:39.265805 2023-08-08 14:36:39.265816 comef 7778 R rec 16f5c0ea-15ee-4284-a11d-abdb9af053f2 -2023-08-08 14:36:39.356405 2023-08-08 14:36:39.35641 comef 7779 R rec 6d14c140-d584-4e55-b254-ffc39373fdb6 -2023-08-08 14:36:39.415002 2023-08-08 14:36:39.415008 comef 7780 R rec 2046f95d-300e-4af2-a793-9c7f15e8fd64 -2023-08-08 14:36:39.472498 2023-08-08 14:36:39.472503 comef 7781 R rec 47c53fd6-544a-47e0-8e0b-f8c838b0d0e9 -2023-08-08 14:36:39.559516 2023-08-08 14:36:39.559525 comef 7782 R rec 69847111-2fe1-44b3-9abd-7061a5536944 -2023-08-08 14:36:39.668238 2023-08-08 14:36:39.668248 comef 7783 R rec b25b5547-24fc-4271-8c79-bbc0dec5c75c -2023-08-08 14:36:39.787683 2023-08-08 14:36:39.787694 comef 7784 R rec 702cf5d0-fe7a-4112-ab4b-0afe113b998f -2023-08-08 14:36:39.886744 2023-08-08 14:36:39.886755 comef 7785 R rec 35a9743c-47cb-417b-9e39-2c45372d48a7 -2023-08-08 14:36:40.001952 2023-08-08 14:36:40.001962 comef 7786 R rec e59bb711-dceb-47bd-ba15-c5e2458f33eb -2023-08-08 14:36:40.089726 2023-08-08 14:36:40.089732 comef 7787 R rec f4f6e438-7e6a-438c-b193-d1ecfe91b072 -2023-08-08 14:36:40.205383 2023-08-08 14:36:40.205394 comef 7788 R rec b706a1aa-6d73-4f71-a8aa-a9ff92cf1d6e -2023-08-08 14:36:40.316571 2023-08-08 14:36:40.316582 comef 7789 R rec cf3717b6-14b5-4180-a344-bec25a36f9b5 -2023-08-08 14:36:40.405596 2023-08-08 14:36:40.405602 comef 7790 R rec 0ad21465-2fc5-48d8-80a1-f8dd5e043526 -2023-08-08 14:36:40.466216 2023-08-08 14:36:40.466222 comef 7791 R rec 919c237f-91cd-4bbf-afe3-76e4c84d0fbf -2023-08-08 14:36:40.573584 2023-08-08 14:36:40.573598 comef 7792 R rec e84589ef-7dc1-422e-b877-b56f40d65f14 -2023-08-08 14:36:40.670728 2023-08-08 14:36:40.670739 comef 7793 R rec 7eac9c26-e599-4702-af5d-6087547d5883 -2023-08-08 14:36:40.783566 2023-08-08 14:36:40.783576 comef 7794 R rec 1b8adf9f-d49a-478c-9284-cc35a2fa7cf3 -2023-08-08 14:36:40.881976 2023-08-08 14:36:40.881989 comef 7795 R rec 5e21ea2e-94b4-4c12-90fe-070119e9931c -2023-08-08 14:36:41.006087 2023-08-08 14:36:41.006098 comef 7796 R rec dfadb56d-388f-4cc3-84c7-90dc09e1801f -2023-08-08 14:36:41.119613 2023-08-08 14:36:41.119626 comef 7797 R rec 238f312c-ddaf-41a8-a388-de711964f81a -2023-08-08 14:36:41.236074 2023-08-08 14:36:41.236086 comef 7798 R rec 60fb4eb1-3db2-4a2a-846f-1a4890eb1d05 -2023-08-08 14:36:41.339056 2023-08-08 14:36:41.339067 comef 7799 R rec 436e4ae2-638a-4187-b04a-887161e7c2a8 -2023-08-08 14:36:41.443884 2023-08-08 14:36:41.44389 comef 7800 R rec 3b24277c-7103-4694-93b5-65da2e4082e9 -2023-08-08 14:36:41.496622 2023-08-08 14:36:41.496627 comef 7801 R rec b8a8c575-beb2-4bb3-806f-90e3d0082f80 -2023-08-08 14:36:41.549619 2023-08-08 14:36:41.549624 comef 7802 R rec c0dbc979-5108-452b-bb4b-d93d5c4c8e36 -2023-08-08 14:36:41.659703 2023-08-08 14:36:41.659714 comef 7803 R rec 74f8379f-33a8-47ac-9e8b-7f1d57d5a203 -2023-08-08 14:36:42.105514 2023-08-08 14:36:42.105525 comef 7804 R rec 28efaa8a-eb2b-49eb-b127-1fad37e16f30 -2023-08-08 14:36:42.227393 2023-08-08 14:36:42.227403 comef 7805 R rec c40e01ae-d512-4e13-b269-50fb8eff170c -2023-08-08 14:36:42.331129 2023-08-08 14:36:42.33114 comef 7806 R rec b4a42e5c-b1d0-4421-a182-0d3acd574591 -2023-08-08 14:36:42.441829 2023-08-08 14:36:42.44184 comef 7807 R rec bac82173-a335-4592-9bcd-697a07bef24a -2023-08-08 14:36:42.501698 2023-08-08 14:36:42.501704 comef 7808 R rec 8daa95ea-373a-405e-9e96-0e054447e1ba -2023-08-08 14:36:42.553433 2023-08-08 14:36:42.553438 comef 7809 R rec d0f49800-b2af-4a42-9ae6-6543e6e63c49 -2023-08-08 14:36:42.607906 2023-08-08 14:36:42.607911 comef 7810 R rec f0d5ac4a-f16e-43e6-a31c-bee489b94bcc -2023-08-08 14:36:42.697574 2023-08-08 14:36:42.697586 comef 7811 R rec ec3b8470-ed6f-440b-9189-5270a23ff82c -2023-08-08 14:36:42.801602 2023-08-08 14:36:42.801613 comef 7812 R rec ba5613ec-8340-4524-a7cf-26c0dc56b317 -2023-08-08 14:36:42.921049 2023-08-08 14:36:42.921062 comef 7813 R rec 209aeebc-6cd3-43c1-b0c9-f7e235041d38 -2023-08-08 14:36:43.010377 2023-08-08 14:36:43.010387 comef 7814 R rec 82178c90-c7c3-4064-937b-c14673fd70e9 -2023-08-08 14:36:44.010568 2023-08-08 14:36:44.010573 comef 7815 R rec e9b2c4a2-2d24-47a8-bc4f-dab9da77c087 +2024-07-29 09:38:09.5658 2024-07-29 09:38:09.565805 comef 7523 R rec 149d5d58-76aa-4c98-a1df-de88a3737e7a +2024-07-29 09:38:09.641095 2024-07-29 09:38:09.641101 comef 7524 R rec f9c647e0-1171-44fa-8a0d-4c60219f0e61 +2024-07-29 09:38:09.685967 2024-07-29 09:38:09.685973 comef 7525 R rec 08b0db59-c6c6-4d0c-ab10-55d254ad8795 +2024-07-29 09:38:09.728783 2024-07-29 09:38:09.728788 comef 7526 R rec b7221e5a-d2dd-4c40-bb14-228c7057771a +2024-07-29 09:38:09.774858 2024-07-29 09:38:09.774863 comef 7527 R rec 7be49491-5a8b-4848-bfe7-3079eebfdc21 +2024-07-29 09:38:09.822485 2024-07-29 09:38:09.82249 comef 7528 R rec 8b215d1b-6fac-4892-acca-6bbe635756fb +2024-07-29 09:38:09.866384 2024-07-29 09:38:09.866389 comef 7529 R rec f38df341-f2bb-4bdc-bd81-254d02e12426 +2024-07-29 09:38:09.925703 2024-07-29 09:38:09.925715 comef 7530 R rec 56e49e1b-2d0d-466d-8bba-9e6ca785afa4 +2024-07-29 09:38:09.996641 2024-07-29 09:38:09.996653 comef 7531 R rec 30c48087-2329-4393-9449-189bf414ca14 +2024-07-29 09:38:10.060441 2024-07-29 09:38:10.060453 comef 7532 R rec d9ddb848-b26c-4fef-8bd4-bdb2ac196193 +2024-07-29 09:38:10.138219 2024-07-29 09:38:10.13823 comef 7533 R rec bff10664-9638-4e6d-ae6a-517958c4bfca +2024-07-29 09:38:10.212127 2024-07-29 09:38:10.21214 comef 7534 R rec 4b8b685d-d644-4077-86b9-996506e48b9d +2024-07-29 09:38:10.298375 2024-07-29 09:38:10.298385 comef 7535 R rec db291b5d-c771-4eb7-985f-2e5a8ce44bc9 +2024-07-29 09:38:10.375889 2024-07-29 09:38:10.375904 comef 7536 R rec 19c67765-036e-44fd-9bf7-6404ee428344 +2024-07-29 09:38:10.459525 2024-07-29 09:38:10.459541 comef 7537 R rec 664d76ab-7cb3-4420-a73a-7ba52d095d3d +2024-07-29 09:38:10.549171 2024-07-29 09:38:10.549186 comef 7538 R rec b937d6d0-256c-46c4-b142-7596e101049d +2024-07-29 09:38:10.64088 2024-07-29 09:38:10.640891 comef 7539 R rec e19026a4-dc9b-4938-a24a-241f0a336c68 +2024-07-29 09:38:10.728041 2024-07-29 09:38:10.728052 comef 7540 R rec b348a801-038d-4173-8576-ef9352c8d194 +2024-07-29 09:38:10.814302 2024-07-29 09:38:10.814313 comef 7541 R rec f1a13aee-3fe9-40ea-b07e-b277cc2bd58a +2024-07-29 09:38:10.873898 2024-07-29 09:38:10.873903 comef 7542 R rec 73735b8f-1da7-462d-b411-700b0eb7953a +2024-07-29 09:38:12.545123 2024-07-29 09:38:12.545127 comef 7543 R rec 775a47d1-99ef-4df5-8e8b-1d3245819648 +2024-07-29 09:38:12.607448 2024-07-29 09:38:12.607453 comef 7544 R rec 7cd1f3b1-cfde-449c-91b8-6e64f65e3620 +2024-07-29 09:38:12.670946 2024-07-29 09:38:12.670951 comef 7545 R rec 879b273a-6940-416f-83bd-c113976e205e +2024-07-29 09:38:12.725728 2024-07-29 09:38:12.725732 comef 7546 R rec beaeb007-3c0d-4fb2-9692-8b7e0d25dbf9 +2024-07-29 09:38:12.782086 2024-07-29 09:38:12.782091 comef 7547 R rec 7e716e47-d7f4-4588-bf94-212268c43b1a +2024-07-29 09:38:12.843148 2024-07-29 09:38:12.843157 comef 7548 R rec e51faa75-471c-4cc8-9059-b15cc274b40e +2024-07-29 09:38:12.88577 2024-07-29 09:38:12.885776 comef 7549 R rec 41f6859b-d045-47c7-8f91-b3a0543a9bbc +2024-07-29 09:38:12.935377 2024-07-29 09:38:12.935389 comef 7550 R rec 6505dfdd-9f8d-450c-b4c1-757ec6563169 +2024-07-29 09:38:13.012323 2024-07-29 09:38:13.012335 comef 7551 R rec e23593a9-e501-4e20-bfae-5be623281349 +2024-07-29 09:38:13.099 2024-07-29 09:38:13.09901 comef 7552 R rec f935f9ae-da39-4907-9b24-3419c072abd9 +2024-07-29 09:38:13.17974 2024-07-29 09:38:13.179752 comef 7553 R rec 3370d709-1f80-407b-bb1c-ad2b0aa9e543 +2024-07-29 09:38:13.277605 2024-07-29 09:38:13.277617 comef 7554 R rec bbc6dbde-7068-4cd4-8066-b4e09878b3fa +2024-07-29 09:38:13.38984 2024-07-29 09:38:13.389852 comef 7555 R rec d551dddd-e957-498b-a281-672d01558449 +2024-07-29 09:38:13.484863 2024-07-29 09:38:13.484878 comef 7556 R rec bb325273-43d6-4a76-af2d-29c09a5c65d0 +2024-07-29 09:38:13.582858 2024-07-29 09:38:13.582873 comef 7557 R rec 95e99717-7695-4b1f-8249-6bc8109f91fa +2024-07-29 09:38:13.673781 2024-07-29 09:38:13.673796 comef 7558 R rec f0a0d8ce-c30b-4d9b-b7b1-f0c9a3dc8364 +2024-07-29 09:38:13.78224 2024-07-29 09:38:13.78225 comef 7559 R rec 12d2d1f1-e9b3-45aa-80a7-5abed5864942 +2024-07-29 09:38:13.889264 2024-07-29 09:38:13.889275 comef 7560 R rec 21c07197-becb-41b4-82f0-2c8cfcb7b29b +2024-07-29 09:38:13.937648 2024-07-29 09:38:13.937653 comef 7561 R rec 270ddd75-c1ba-4d44-b070-a1a23e6d6ee1 +2024-07-29 09:38:14.004469 2024-07-29 09:38:14.00448 comef 7562 R rec 7409f55b-189e-4880-9347-224870ec2710 +2024-07-29 09:38:14.098754 2024-07-29 09:38:14.098769 comef 7563 R rec 88aca5af-c51e-449e-a985-0357c9782360 +2024-07-29 09:38:14.206113 2024-07-29 09:38:14.206129 comef 7564 R rec 9e4e4423-3a33-4016-b615-0bf2c8fd31bd +2024-07-29 09:38:14.320794 2024-07-29 09:38:14.32081 comef 7565 R rec ba4d6f5c-38f3-4164-8ac0-0679124c1dd0 +2024-07-29 09:38:14.439534 2024-07-29 09:38:14.439544 comef 7566 R rec 11baaf8a-a4c4-4594-9c3c-fe166389e5e5 +2024-07-29 09:38:14.527202 2024-07-29 09:38:14.527213 comef 7567 R rec fe9cb023-1c5c-478e-abc4-07b385fe7e2c +2024-07-29 09:38:14.624711 2024-07-29 09:38:14.62472 comef 7568 R rec e26ab2c9-b071-4bd8-91d2-757b1d955e6f +2024-07-29 09:38:14.724244 2024-07-29 09:38:14.72425 comef 7569 R rec f96e675f-bb58-448f-80be-1756c52421ac +2024-07-29 09:38:14.804303 2024-07-29 09:38:14.80431 comef 7570 R rec 6f1da4ff-ba5b-40aa-9140-db250a662583 +2024-07-29 09:38:14.871974 2024-07-29 09:38:14.871984 comef 7571 R rec 233c9c4f-0848-4bde-a3fb-159ed4e6cd71 +2024-07-29 09:38:14.93595 2024-07-29 09:38:14.935955 comef 7572 R rec 97180f99-7a56-425e-8426-ecfba4d49084 +2024-07-29 09:38:14.994926 2024-07-29 09:38:14.994937 comef 7573 R rec 64ada229-8c93-4606-bdae-a19fe5f5f74f +2024-07-29 09:38:15.087081 2024-07-29 09:38:15.087092 comef 7574 R rec 10fe5752-eff5-4265-aac3-15b1eade9353 +2024-07-29 09:38:15.175628 2024-07-29 09:38:15.17564 comef 7575 R rec 99bcc2a0-5b5e-4de7-b088-ccfaf5da1275 +2024-07-29 09:38:15.266193 2024-07-29 09:38:15.266202 comef 7576 R rec ec52ee32-64e7-486b-8552-386a5959b37a +2024-07-29 09:38:15.340362 2024-07-29 09:38:15.340372 comef 7577 R rec 04f3b402-265f-4c81-9c52-f63ea2eaf09e +2024-07-29 09:38:15.420861 2024-07-29 09:38:15.420875 comef 7578 R rec 588e36ce-7580-4dce-89e0-400348c94891 +2024-07-29 09:38:15.522297 2024-07-29 09:38:15.522308 comef 7579 R rec e4977b5d-156f-4f07-81dc-a7a108602e8d +2024-07-29 09:38:15.641905 2024-07-29 09:38:15.641915 comef 7580 R rec 3b3ba73e-516d-44ca-994f-75417659e12d +2024-07-29 09:38:15.747327 2024-07-29 09:38:15.747349 comef 7581 R rec 95397ff5-97c5-414b-9fbd-1f1c56d48940 +2024-07-29 09:38:15.857803 2024-07-29 09:38:15.857814 comef 7582 R rec 8209d284-ef7b-40f5-b400-f02bcdde511e +2024-07-29 09:38:15.950773 2024-07-29 09:38:15.95078 comef 7583 R rec 7be06446-3df3-440b-aeaa-9ccd37cbec1d +2024-07-29 09:38:16.023097 2024-07-29 09:38:16.02314 comef 7584 R rec acb1926d-a707-461b-8cfa-5443dc0d6b58 +2024-07-29 09:38:16.100929 2024-07-29 09:38:16.100943 comef 7585 R rec 5fa6f89c-2b15-47bc-85d6-a26cddf95331 +2024-07-29 09:38:16.195493 2024-07-29 09:38:16.195502 comef 7586 R rec 3aaa7c76-e46c-404c-a298-a4e99f9eaa02 +2024-07-29 09:38:16.277498 2024-07-29 09:38:16.27751 comef 7587 R rec 8ddae97b-675b-43a7-b953-6b1e8631a298 +2024-07-29 09:38:16.365441 2024-07-29 09:38:16.365455 comef 7588 R rec d57615b3-7e07-4bd5-9e86-a6599952bf83 +2024-07-29 09:38:16.463416 2024-07-29 09:38:16.463426 comef 7589 R rec 52c784f9-f92e-486d-b505-c72ff84d30b8 +2024-07-29 09:38:16.543724 2024-07-29 09:38:16.543736 comef 7590 R rec b1618188-16c6-4d6a-84c2-7185a15d37ce +2024-07-29 09:38:16.640179 2024-07-29 09:38:16.640189 comef 7591 R rec 92440aca-1a8d-4032-becd-e574d5c85877 +2024-07-29 09:38:16.739211 2024-07-29 09:38:16.739225 comef 7592 R rec 71bcc85b-93a0-4a84-babc-d93d87c66815 +2024-07-29 09:38:16.840004 2024-07-29 09:38:16.840018 comef 7593 R rec 668a8d61-83c4-4489-be50-21319201df51 +2024-07-29 09:38:16.933423 2024-07-29 09:38:16.933434 comef 7594 R rec 8cb66bd5-7dee-481c-92c6-b093e318a702 +2024-07-29 09:38:17.007713 2024-07-29 09:38:17.007718 comef 7595 R rec 0ff571fc-7f5f-4bc2-b974-ceb9d8b159af +2024-07-29 09:38:17.06614 2024-07-29 09:38:17.066151 comef 7596 R rec 8dead794-ff95-4271-b055-7906a80c5b83 +2024-07-29 09:38:17.150669 2024-07-29 09:38:17.150682 comef 7597 R rec 38ccd4e6-d610-4f43-b9b6-5c93c901bb9e +2024-07-29 09:38:17.244466 2024-07-29 09:38:17.244478 comef 7598 R rec 0e3e3850-ab1d-478f-8d11-0dc1eb599609 +2024-07-29 09:38:17.331031 2024-07-29 09:38:17.331044 comef 7599 R rec a073c221-f2f1-4dfb-a1de-27a70b314f35 +2024-07-29 09:38:17.415473 2024-07-29 09:38:17.415483 comef 7600 R rec 0bbff7f3-cf6e-4492-b27d-ff96361abe7a +2024-07-29 09:38:17.498813 2024-07-29 09:38:17.498824 comef 7601 R rec 1057024d-eb4f-433f-bad2-27cd0023d885 +2024-07-29 09:38:17.591716 2024-07-29 09:38:17.591728 comef 7602 R rec e970e54b-ed45-4a22-b61e-1c162686c413 +2024-07-29 09:38:17.690167 2024-07-29 09:38:17.69018 comef 7603 R rec 0376dbb9-063c-43e8-b673-2216705a9b0f +2024-07-29 09:38:17.796628 2024-07-29 09:38:17.796638 comef 7604 R rec ff63f544-f1dd-4480-8bcf-6e00fc7a0974 +2024-07-29 09:38:17.907942 2024-07-29 09:38:17.907952 comef 7605 R rec f4db645e-18bc-47e2-a3b9-8d7bcf95a6ab +2024-07-29 09:38:17.996611 2024-07-29 09:38:17.996616 comef 7606 R rec 30ebe49c-8a97-458d-a4b3-4f4ff36c340b +2024-07-29 09:38:18.047039 2024-07-29 09:38:18.047044 comef 7607 R rec c058d926-a1fb-4d58-9419-8413f8dedeff +2024-07-29 09:38:18.1321 2024-07-29 09:38:18.132111 comef 7608 R rec c861fc18-5c0c-4fef-9f0b-bb68d8024b30 +2024-07-29 09:38:18.230977 2024-07-29 09:38:18.230987 comef 7609 R rec 50bb9e5c-0071-428f-9d90-dbf4d01f44b0 +2024-07-29 09:38:18.321355 2024-07-29 09:38:18.321366 comef 7610 R rec 68a2552d-6c9f-4a0c-8150-d521e42dd78b +2024-07-29 09:38:18.403289 2024-07-29 09:38:18.403302 comef 7611 R rec 2a36ab9d-55e9-410d-b06d-c240c8b455e2 +2024-07-29 09:38:18.48706 2024-07-29 09:38:18.487073 comef 7612 R rec a0ffd021-dcff-456a-b70e-4298b96d82e6 +2024-07-29 09:38:18.603965 2024-07-29 09:38:18.603975 comef 7613 R rec e0d3c3e3-eb7f-4473-95e2-d5c6a1efedc0 +2024-07-29 09:38:18.709863 2024-07-29 09:38:18.709878 comef 7614 R rec d1351d62-b9b3-44da-9a91-9216269e737d +2024-07-29 09:38:18.805017 2024-07-29 09:38:18.805032 comef 7615 R rec 18f88df8-3007-476c-9994-fb02ab424fda +2024-07-29 09:38:18.896475 2024-07-29 09:38:18.896487 comef 7616 R rec 5d764a93-6fc1-4714-8a13-f08c426aacee +2024-07-29 09:38:18.995786 2024-07-29 09:38:18.995798 comef 7617 R rec 9f54a6f4-f56b-4dd8-b4a2-62cb0e4c03e9 +2024-07-29 09:38:19.060291 2024-07-29 09:38:19.060296 comef 7618 R rec dff1d3ef-50d7-4a33-9019-cf9a8c598156 +2024-07-29 09:38:19.137587 2024-07-29 09:38:19.137598 comef 7619 R rec 41cdd73e-2a05-46c1-aeed-eb603a8c11f6 +2024-07-29 09:38:19.228815 2024-07-29 09:38:19.228825 comef 7620 R rec 4a1906fd-84f9-4b1d-ba2e-a2746e5a6cdf +2024-07-29 09:38:19.315464 2024-07-29 09:38:19.315473 comef 7621 R rec 04561359-8988-4f65-8f00-81e6fdfde60f +2024-07-29 09:38:19.383649 2024-07-29 09:38:19.383659 comef 7622 R rec 9713e22b-f82c-49a6-9dcd-80c9dfd2dfb8 +2024-07-29 09:38:19.459587 2024-07-29 09:38:19.459593 comef 7623 R rec 9879e0cc-ed41-447e-a59a-76e4efc29162 +2024-07-29 09:38:19.517961 2024-07-29 09:38:19.517971 comef 7624 R rec 6facdae9-27e1-42ab-b17d-0b770b50f537 +2024-07-29 09:38:19.602376 2024-07-29 09:38:19.602387 comef 7625 R rec ae77c01d-94f5-45cb-b8e9-018c3e5bf384 +2024-07-29 09:38:19.682584 2024-07-29 09:38:19.682595 comef 7626 R rec 3d5a98d7-31a5-4ce8-9a08-2d40b0742dc0 +2024-07-29 09:38:19.771626 2024-07-29 09:38:19.771636 comef 7627 R rec 602e3f99-cc5f-4754-a4ae-8e8faa829fb7 +2024-07-29 09:38:19.867895 2024-07-29 09:38:19.867907 comef 7628 R rec 58438637-8fe5-4477-ad42-738a58a7e460 +2024-07-29 09:38:19.972519 2024-07-29 09:38:19.97253 comef 7629 R rec 4af17633-74c9-4eb6-8a64-532f555e9f6c +2024-07-29 09:38:20.055912 2024-07-29 09:38:20.055917 comef 7630 R rec ad88efa6-7978-4eb4-8ac0-133f329dad45 +2024-07-29 09:38:20.112406 2024-07-29 09:38:20.112416 comef 7631 R rec a9db3946-00f9-40af-b190-a18215acf371 +2024-07-29 09:38:20.197721 2024-07-29 09:38:20.197731 comef 7632 R rec c8e6f2d6-65ee-4d4a-b78c-39fe17e4bd84 +2024-07-29 09:38:20.277517 2024-07-29 09:38:20.277527 comef 7633 R rec 01095dea-380c-4c6b-8d31-f60ac3f284e1 +2024-07-29 09:38:20.371236 2024-07-29 09:38:20.371247 comef 7634 R rec c563afd8-ec94-4aa4-8d44-475ebd61090c +2024-07-29 09:38:20.461752 2024-07-29 09:38:20.461762 comef 7635 R rec 381f0e55-9aa1-45be-8b23-db1f56f52f08 +2024-07-29 09:38:20.549882 2024-07-29 09:38:20.549891 comef 7636 R rec e872099a-7a25-441d-8280-4dd0961fc40b +2024-07-29 09:38:20.633148 2024-07-29 09:38:20.63316 comef 7637 R rec fbcfd30a-640a-4705-8be7-3599e7d0b9c2 +2024-07-29 09:38:20.726061 2024-07-29 09:38:20.726075 comef 7638 R rec 5fbb679c-ef37-4e9a-ac95-c29f83696bf2 +2024-07-29 09:38:20.822961 2024-07-29 09:38:20.822976 comef 7639 R rec 0d416b6e-c6cf-421e-9622-2cec63f6f01c +2024-07-29 09:38:20.917044 2024-07-29 09:38:20.917058 comef 7640 R rec 7f9035cb-635e-47c4-acc2-a00e7d97b83f +2024-07-29 09:38:21.004505 2024-07-29 09:38:21.004519 comef 7641 R rec cafc1020-2b1a-4d54-b854-42d0a993fc4c +2024-07-29 09:38:21.082028 2024-07-29 09:38:21.082034 comef 7642 R rec 15b20133-9c6b-46ee-bdb7-ed3469713664 +2024-07-29 09:38:21.151651 2024-07-29 09:38:21.151661 comef 7643 R rec 53b8d304-036f-4798-acd0-cd761ecab953 +2024-07-29 09:38:21.231313 2024-07-29 09:38:21.231327 comef 7644 R rec 23da0bdf-14c6-470d-8b4f-810492134289 +2024-07-29 09:38:21.320392 2024-07-29 09:38:21.32041 comef 7645 R rec f1f07c48-3572-4213-998d-56940bdb93ca +2024-07-29 09:38:21.414355 2024-07-29 09:38:21.41437 comef 7646 R rec 5c3f1f5f-0ea2-48c7-a4bd-034803bade9c +2024-07-29 09:38:21.493815 2024-07-29 09:38:21.493827 comef 7647 R rec 3722287a-96f1-4ff8-9fbe-a9402be0e64e +2024-07-29 09:38:21.582965 2024-07-29 09:38:21.582974 comef 7648 R rec 149acbf3-19bc-4a0b-8e7c-6968c24d11cf +2024-07-29 09:38:21.671439 2024-07-29 09:38:21.671454 comef 7649 R rec e3e48058-fd4a-4b93-9002-6908546079ea +2024-07-29 09:38:21.763265 2024-07-29 09:38:21.763277 comef 7650 R rec 39744d82-4552-41a6-9a79-f1779185fdd6 +2024-07-29 09:38:21.85037 2024-07-29 09:38:21.850381 comef 7651 R rec baaa6160-97a0-4647-9a09-5a1d3d8821c7 +2024-07-29 09:38:21.947614 2024-07-29 09:38:21.947622 comef 7652 R rec acf370f4-971e-4044-ac95-aca2eb87688a +2024-07-29 09:38:22.027584 2024-07-29 09:38:22.027593 comef 7653 R rec 5e41a1e6-509c-4102-815b-2230b7606906 +2024-07-29 09:38:22.107691 2024-07-29 09:38:22.107696 comef 7654 R rec 1c52d3d8-adda-4018-9543-1c3957523756 +2024-07-29 09:38:22.16984 2024-07-29 09:38:22.169849 comef 7655 R rec 0274c724-fb52-4b6a-86dc-d277830f9a80 +2024-07-29 09:38:22.244923 2024-07-29 09:38:22.244935 comef 7656 R rec ca8301d0-5e6b-412c-b0fb-837569cb986e +2024-07-29 09:38:22.327289 2024-07-29 09:38:22.327299 comef 7657 R rec 564bf482-94f2-41e9-8de0-118aed731c77 +2024-07-29 09:38:22.417087 2024-07-29 09:38:22.417101 comef 7658 R rec d590d9be-4b78-4758-be38-d326b48925db +2024-07-29 09:38:22.507105 2024-07-29 09:38:22.507117 comef 7659 R rec a98fb0e3-5886-4fbb-b40e-d6f4e8fea0b8 +2024-07-29 09:38:22.589793 2024-07-29 09:38:22.589806 comef 7660 R rec 83f639ca-a431-48fb-bac3-834f17393074 +2024-07-29 09:38:22.669599 2024-07-29 09:38:22.669608 comef 7661 R rec 9c539721-3794-4978-b04a-a18c05abc50b +2024-07-29 09:38:22.755775 2024-07-29 09:38:22.755785 comef 7662 R rec 20dd0481-2f4e-4944-b61b-7df89a424c8a +2024-07-29 09:38:22.837722 2024-07-29 09:38:22.837732 comef 7663 R rec f7414d73-e141-4efe-ac47-5c4b9905b9cf +2024-07-29 09:38:22.926519 2024-07-29 09:38:22.926534 comef 7664 R rec f1c998a0-1087-4aab-9765-c853c6e238a2 +2024-07-29 09:38:23.010076 2024-07-29 09:38:23.010089 comef 7665 R rec 2bc4be4c-3949-47ad-8c4c-5a8b0e90d6f6 +2024-07-29 09:38:23.103811 2024-07-29 09:38:23.103823 comef 7666 R rec 912b9c2c-ebbe-47e4-a28c-a016a5d35042 +2024-07-29 09:38:23.161268 2024-07-29 09:38:23.161277 comef 7667 R rec f6da5bfe-cf42-4d61-8ebb-86ec00ca96d9 +2024-07-29 09:38:23.233034 2024-07-29 09:38:23.233045 comef 7668 R rec a262cd06-691d-40c9-97b1-d07d50c4be77 +2024-07-29 09:38:23.313139 2024-07-29 09:38:23.313149 comef 7669 R rec a246a1d4-fd07-46a4-a00d-eb4becb67934 +2024-07-29 09:38:23.394367 2024-07-29 09:38:23.394377 comef 7670 R rec 1bcf3eb9-9375-4cd1-8cc1-b47504c678ac +2024-07-29 09:38:23.469147 2024-07-29 09:38:23.469156 comef 7671 R rec 5d817edf-9813-49d1-8d97-a5e2ff6039e1 +2024-07-29 09:38:23.560138 2024-07-29 09:38:23.56015 comef 7672 R rec 926e39d8-3499-44d7-aa49-6349a5f8eb7f +2024-07-29 09:38:23.652132 2024-07-29 09:38:23.652146 comef 7673 R rec 866fc95c-8507-43dc-9b9f-0bf161c19972 +2024-07-29 09:38:23.74422 2024-07-29 09:38:23.74423 comef 7674 R rec 7005fc46-6c83-410b-a3cb-70480924d823 +2024-07-29 09:38:23.818292 2024-07-29 09:38:23.818328 comef 7675 R rec 120b2524-5df4-440b-8469-b34588c053d1 +2024-07-29 09:38:23.910611 2024-07-29 09:38:23.910625 comef 7676 R rec 914bf8e0-b37b-476c-b48b-4161cd4dbf01 +2024-07-29 09:38:24.005291 2024-07-29 09:38:24.00535 comef 7677 R rec defa3176-38ac-4b8f-b51b-83eb38086865 +2024-07-29 09:38:24.096705 2024-07-29 09:38:24.096719 comef 7678 R rec 7d50f3aa-a75a-487a-ae03-fd409ea4c0c0 +2024-07-29 09:38:24.1736 2024-07-29 09:38:24.173605 comef 7679 R rec 2ffe8d0b-c084-49da-86c3-6acdf935b349 +2024-07-29 09:38:24.240321 2024-07-29 09:38:24.24033 comef 7680 R rec ff7d8a49-3654-4716-82e5-ad2b17a4b0d3 +2024-07-29 09:38:24.318135 2024-07-29 09:38:24.318147 comef 7681 R rec 6d6b5884-0cd2-4be3-9955-7584b1255b35 +2024-07-29 09:38:24.412105 2024-07-29 09:38:24.412118 comef 7682 R rec cd1ef0e5-3ab1-496d-bb95-e7f3e68ab399 +2024-07-29 09:38:24.501093 2024-07-29 09:38:24.501107 comef 7683 R rec cce272cf-7fc8-4663-a3e6-83944e7e5bfa +2024-07-29 09:38:24.598575 2024-07-29 09:38:24.598598 comef 7684 R rec cf5437a2-73f5-4181-92c7-35cd98369f24 +2024-07-29 09:38:24.690224 2024-07-29 09:38:24.690238 comef 7685 R rec 4bde3f9e-e9e1-4f86-ae5e-8f179acab17f +2024-07-29 09:38:24.789364 2024-07-29 09:38:24.789379 comef 7686 R rec f8306172-4089-41e3-b2b2-ee893b921e4c +2024-07-29 09:38:24.884242 2024-07-29 09:38:24.884256 comef 7687 R rec 7fbac5bb-f8bd-4bf3-9f0b-c1d056577fb4 +2024-07-29 09:38:24.964194 2024-07-29 09:38:24.964205 comef 7688 R rec fe92b5ae-db52-4da6-96ea-a211be5366fc +2024-07-29 09:38:25.045142 2024-07-29 09:38:25.045153 comef 7689 R rec 3d415a92-60eb-4ad8-9dd6-109de741fe58 +2024-07-29 09:38:25.13095 2024-07-29 09:38:25.13096 comef 7690 R rec 4c381831-1dd7-40b7-bd62-db0e6be67c6a +2024-07-29 09:38:25.202063 2024-07-29 09:38:25.202068 comef 7691 R rec cb9c5596-6d43-4195-9d53-97cb9af90632 +2024-07-29 09:38:25.272277 2024-07-29 09:38:25.272289 comef 7692 R rec c799ee46-914b-4d8f-85ed-9b3d65cafd0e +2024-07-29 09:38:25.355183 2024-07-29 09:38:25.355196 comef 7693 R rec 4a16efd1-7a4b-4c8e-8ba4-a2b0ab2b3c3e +2024-07-29 09:38:25.462449 2024-07-29 09:38:25.462463 comef 7694 R rec 5670ee51-4b8b-4b69-ae97-d7e37cb56e40 +2024-07-29 09:38:25.552999 2024-07-29 09:38:25.553012 comef 7695 R rec bf98006b-a281-45a4-aad8-d21181abf7b4 +2024-07-29 09:38:25.643744 2024-07-29 09:38:25.643758 comef 7696 R rec c1c01b52-1c87-494a-8c8c-6c1febe37524 +2024-07-29 09:38:25.73402 2024-07-29 09:38:25.73403 comef 7697 R rec 13798f70-c460-4b0a-af4c-afc20f7b156d +2024-07-29 09:38:25.828726 2024-07-29 09:38:25.82874 comef 7698 R rec 60426852-561d-42a6-adb3-33c52965419a +2024-07-29 09:38:25.926448 2024-07-29 09:38:25.926462 comef 7699 R rec e1eb4976-b439-4eba-a2fa-c9288efb8d87 +2024-07-29 09:38:26.029098 2024-07-29 09:38:26.02911 comef 7700 R rec ba1b767e-df49-44c9-8a1e-b0449ca45f0a +2024-07-29 09:38:26.117221 2024-07-29 09:38:26.11723 comef 7701 R rec 4cdc3fb9-e11e-4658-865a-9b511aaf5d11 +2024-07-29 09:38:26.206253 2024-07-29 09:38:26.206262 comef 7702 R rec 32e2b6da-dbac-4adc-9480-3b7f51af1b46 +2024-07-29 09:38:26.268733 2024-07-29 09:38:26.268743 comef 7703 R rec 3a09551e-cea6-4504-9144-533f57d2ed31 +2024-07-29 09:38:26.354779 2024-07-29 09:38:26.354794 comef 7704 R rec 0543be6b-b2dd-41dc-8647-0412e4210f72 +2024-07-29 09:38:26.447647 2024-07-29 09:38:26.447656 comef 7705 R rec 929bf5ea-3fc3-4232-a43e-5a67f11923d3 +2024-07-29 09:38:26.54692 2024-07-29 09:38:26.546933 comef 7706 R rec 64702ef0-8d9c-4d0f-8251-b35499598096 +2024-07-29 09:38:26.656033 2024-07-29 09:38:26.656047 comef 7707 R rec 22771bec-3a46-4ad7-94e5-8a1b285ea88d +2024-07-29 09:38:26.747997 2024-07-29 09:38:26.748011 comef 7708 R rec 93b002db-ea53-44a5-90ac-3db9b4e7c50c +2024-07-29 09:38:26.840912 2024-07-29 09:38:26.840922 comef 7709 R rec 82883b88-a16d-4840-92eb-edb07ffc3b64 +2024-07-29 09:38:26.940459 2024-07-29 09:38:26.940472 comef 7710 R rec 1238eb67-2728-4ba3-8f04-cea9667a0798 +2024-07-29 09:38:27.035558 2024-07-29 09:38:27.035572 comef 7711 R rec a672f8e9-fd72-4aec-bf85-1fb71f559b59 +2024-07-29 09:38:27.132085 2024-07-29 09:38:27.1321 comef 7712 R rec c859d773-d30e-47aa-a694-8ea817cc4eef +2024-07-29 09:38:27.229285 2024-07-29 09:38:27.229295 comef 7713 R rec 56c70d90-bc3a-4c9e-ba92-ef8b037759a0 +2024-07-29 09:38:27.303364 2024-07-29 09:38:27.303376 comef 7714 R rec e242712e-1809-4e02-b9d5-02063ab2aa41 +2024-07-29 09:38:27.395628 2024-07-29 09:38:27.395639 comef 7715 R rec 4f66c836-9a5b-4d52-8745-798c2993032d +2024-07-29 09:38:27.477741 2024-07-29 09:38:27.477755 comef 7716 R rec a0552ab9-8f2b-41fb-a8a9-74df44ca6a9a +2024-07-29 09:38:27.566469 2024-07-29 09:38:27.566479 comef 7717 R rec 45940b7c-cd50-431d-8270-23fbf24b4d99 +2024-07-29 09:38:27.650763 2024-07-29 09:38:27.650776 comef 7718 R rec fb49034c-59e2-47f1-a531-ddb032b92cfd +2024-07-29 09:38:27.741376 2024-07-29 09:38:27.741385 comef 7719 R rec 1cd0bdb0-302f-4a0e-ac9a-447e98420e91 +2024-07-29 09:38:27.817429 2024-07-29 09:38:27.817441 comef 7720 R rec 67d4532c-f86e-43c4-94e6-0b91703054f3 +2024-07-29 09:38:27.915081 2024-07-29 09:38:27.915095 comef 7721 R rec 72b76e16-42ce-4bf2-89e3-e00a4906310a +2024-07-29 09:38:28.014212 2024-07-29 09:38:28.014226 comef 7722 R rec 488290a1-ed92-4318-ad4a-1feacc1776bc +2024-07-29 09:38:28.109856 2024-07-29 09:38:28.10987 comef 7723 R rec d04c7855-9552-41f5-a2fd-1ac3f587f424 +2024-07-29 09:38:28.205844 2024-07-29 09:38:28.205858 comef 7724 R rec 10d4dce3-c4c0-42ff-92a5-c20697629758 +2024-07-29 09:38:28.291443 2024-07-29 09:38:28.291448 comef 7725 R rec b5efc113-754a-49c3-9ae9-6ff82d708179 +2024-07-29 09:38:28.362228 2024-07-29 09:38:28.362239 comef 7726 R rec b4b72964-1e3e-42a3-8497-c5828f2e55bf +2024-07-29 09:38:28.449819 2024-07-29 09:38:28.449828 comef 7727 R rec ac29b275-85d6-413d-b8a3-7af7be6baa70 +2024-07-29 09:38:28.541231 2024-07-29 09:38:28.541243 comef 7728 R rec 9e4e5126-066d-4213-adb1-d3c212eb8c12 +2024-07-29 09:38:28.706435 2024-07-29 09:38:28.706447 comef 7729 R rec 9a66cb8e-0744-4160-a45d-0bd324aa7f06 +2024-07-29 09:38:28.804145 2024-07-29 09:38:28.804154 comef 7730 R rec 609d879a-97e7-48c9-b9f3-3b64bb8aa392 +2024-07-29 09:38:28.897384 2024-07-29 09:38:28.897396 comef 7731 R rec 41fe785d-0dbd-4309-8278-8c926026fe2a +2024-07-29 09:38:28.998958 2024-07-29 09:38:28.998983 comef 7732 R rec fccb0945-5445-4300-a85d-4b9df52dce11 +2024-07-29 09:38:29.083457 2024-07-29 09:38:29.083471 comef 7733 R rec b9c845c2-2b34-4b03-a57f-fddbe3ee2ec5 +2024-07-29 09:38:29.17374 2024-07-29 09:38:29.17375 comef 7734 R rec f0b380db-24af-4624-a491-ac816b7a7f48 +2024-07-29 09:38:29.262096 2024-07-29 09:38:29.26211 comef 7735 R rec 2160bb4c-8d7e-4546-8f9d-a26a07f3927c +2024-07-29 09:38:29.326703 2024-07-29 09:38:29.326708 comef 7736 R rec d484bef8-cf31-4d5d-b7f5-d74523c2a6ca +2024-07-29 09:38:29.39775 2024-07-29 09:38:29.39776 comef 7737 R rec 194a8a82-2f3c-4af1-ae0f-7a742d591b5e +2024-07-29 09:38:29.472748 2024-07-29 09:38:29.472757 comef 7738 R rec 70efa16d-e927-4135-84af-b16e13f73dc9 +2024-07-29 09:38:29.55979 2024-07-29 09:38:29.559805 comef 7739 R rec a942c1d9-ffb8-460f-8de7-423e8b64f47f +2024-07-29 09:38:29.660182 2024-07-29 09:38:29.6602 comef 7740 R rec 24283a4e-b8db-4b85-9601-9a5aa1227cae +2024-07-29 09:38:29.756339 2024-07-29 09:38:29.756349 comef 7741 R rec 1eaa6ddd-736f-4241-9328-d6da9715f8be +2024-07-29 09:38:29.876672 2024-07-29 09:38:29.876682 comef 7742 R rec 4b314bed-2aef-4c27-bb56-7a00d5007ac9 +2024-07-29 09:38:29.986218 2024-07-29 09:38:29.986229 comef 7743 R rec 3455da59-fe40-4713-9246-1ea9c0998522 +2024-07-29 09:38:30.079434 2024-07-29 09:38:30.079444 comef 7744 R rec 94b97378-4adb-409a-8577-cba3aaef1506 +2024-07-29 09:38:30.232011 2024-07-29 09:38:30.232022 comef 7745 R rec e3fc6aae-7009-469b-8123-c490b4a7030a +2024-07-29 09:38:30.327161 2024-07-29 09:38:30.327171 comef 7746 R rec 5fc79fdd-88db-4e15-ab94-bba4fcb5cd98 +2024-07-29 09:38:30.394507 2024-07-29 09:38:30.394517 comef 7747 R rec c0706fc3-8f24-4e0c-8856-a6c5ba9aec67 +2024-07-29 09:38:30.482196 2024-07-29 09:38:30.48221 comef 7748 R rec fb1e1bc1-8ce5-47a1-b75a-fd4bd59efcbe +2024-07-29 09:38:30.57971 2024-07-29 09:38:30.579719 comef 7749 R rec 4e86f18c-6b5f-4ceb-99b5-25128088e49a +2024-07-29 09:38:30.667792 2024-07-29 09:38:30.667806 comef 7750 R rec 9026ce07-7a03-432f-8dc9-1df7eb6d3173 +2024-07-29 09:38:30.76856 2024-07-29 09:38:30.768575 comef 7751 R rec 9c8f5279-ca80-4bf3-ab74-715946e4653a +2024-07-29 09:38:30.868799 2024-07-29 09:38:30.868814 comef 7752 R rec 4943f9cb-89c6-4eb3-a285-70cd77f7f448 +2024-07-29 09:38:30.980337 2024-07-29 09:38:30.980347 comef 7753 R rec ed89c725-7a06-4c0f-ae35-fd998d73f4fb +2024-07-29 09:38:31.076829 2024-07-29 09:38:31.076849 comef 7754 R rec 754cc2eb-e323-4eda-a639-2712e9ec88ad +2024-07-29 09:38:31.169945 2024-07-29 09:38:31.169961 comef 7755 R rec 4c10dabe-de4d-4735-88b7-91db53c6aab8 +2024-07-29 09:38:31.258172 2024-07-29 09:38:31.258182 comef 7756 R rec 1c150312-c35d-40df-8117-0420add8d861 +2024-07-29 09:38:31.35067 2024-07-29 09:38:31.350681 comef 7757 R rec a7d397b4-91b5-4364-86c2-33d02e6d82f9 +2024-07-29 09:38:31.416523 2024-07-29 09:38:31.416533 comef 7758 R rec ef3f860e-ea22-4072-bd8d-e60abeaa2b27 +2024-07-29 09:38:31.488665 2024-07-29 09:38:31.488676 comef 7759 R rec 49633d3d-0d55-43ca-b176-d7692b8c32c1 +2024-07-29 09:38:31.587924 2024-07-29 09:38:31.587938 comef 7760 R rec e0e6a3ed-f784-42f3-91a8-2ca6d2b1f162 +2024-07-29 09:38:31.68851 2024-07-29 09:38:31.688524 comef 7761 R rec da09fe1b-e507-46a0-837a-114824eb4520 +2024-07-29 09:38:31.791553 2024-07-29 09:38:31.791566 comef 7762 R rec 997eec88-9f86-49c2-88f2-d01d3553f56d +2024-07-29 09:38:31.899799 2024-07-29 09:38:31.899812 comef 7763 R rec e439cd4e-edd2-4f19-8922-65d13f251997 +2024-07-29 09:38:31.98965 2024-07-29 09:38:31.989661 comef 7764 R rec 58a52cef-a03f-4b77-bc76-d51d6070a5ce +2024-07-29 09:38:32.084579 2024-07-29 09:38:32.084591 comef 7765 R rec f77e1358-da92-4ec0-816e-b5fbea4409bf +2024-07-29 09:38:32.165055 2024-07-29 09:38:32.165064 comef 7766 R rec 53ae789b-cff8-4ccb-aefb-63977b387725 +2024-07-29 09:38:32.238548 2024-07-29 09:38:32.238558 comef 7767 R rec 1fda56d9-af15-481b-bbfa-0d65f05c082c +2024-07-29 09:38:32.335512 2024-07-29 09:38:32.335516 comef 7768 R rec 22095b02-c84b-4971-bae2-6ae7bd002c28 +2024-07-29 09:38:32.408857 2024-07-29 09:38:32.408861 comef 7769 R rec 6186ed71-edf6-4d59-8b58-c7d1e3e0d0e9 +2024-07-29 09:38:32.46516 2024-07-29 09:38:32.465169 comef 7770 R rec 972212ba-9a30-490d-88a8-c46376dbcbb5 +2024-07-29 09:38:32.555833 2024-07-29 09:38:32.555842 comef 7771 R rec 3681c590-2dad-4273-bf33-7e553f31ddef +2024-07-29 09:38:32.649463 2024-07-29 09:38:32.649473 comef 7772 R rec 894530b5-7186-49d0-b43e-4ff5a565fb7e +2024-07-29 09:38:32.746535 2024-07-29 09:38:32.746549 comef 7773 R rec 687f7bca-a75a-4ba4-b895-4f54b2f2f3cc +2024-07-29 09:38:32.836235 2024-07-29 09:38:32.836249 comef 7774 R rec 936953f8-258c-43eb-b555-ef8e8e11a30a +2024-07-29 09:38:32.928589 2024-07-29 09:38:32.928602 comef 7775 R rec 76cb02de-c4ea-4c56-8a36-30e3857ae44e +2024-07-29 09:38:33.017039 2024-07-29 09:38:33.017053 comef 7776 R rec 5c3fc198-0f42-40c1-9a3c-11418fe982bd +2024-07-29 09:38:33.119544 2024-07-29 09:38:33.11956 comef 7777 R rec 9d614491-8262-43d5-875d-9902e70cec3c +2024-07-29 09:38:33.20926 2024-07-29 09:38:33.209274 comef 7778 R rec 6c7fadc7-6ba9-4d19-b87e-d39a33a852d5 +2024-07-29 09:38:33.303233 2024-07-29 09:38:33.303248 comef 7779 R rec bc175bfb-0c33-4608-8553-e59b1de4ce1f +2024-07-29 09:38:33.39824 2024-07-29 09:38:33.398252 comef 7780 R rec 2d4340ec-088f-418d-aeb3-68aeaa20e38e +2024-07-29 09:38:33.471096 2024-07-29 09:38:33.471106 comef 7781 R rec a56d5590-df0b-4325-9f03-e5d67a77d45e +2024-07-29 09:38:33.554632 2024-07-29 09:38:33.554641 comef 7782 R rec add195a8-85a6-40ab-9c27-c316f0d8b3e9 +2024-07-29 09:38:33.649199 2024-07-29 09:38:33.649213 comef 7783 R rec ff8073b2-931c-4348-bfdd-3bd991684752 +2024-07-29 09:38:33.747848 2024-07-29 09:38:33.747858 comef 7784 R rec fb8f6102-d856-4ebc-8b7f-0e3c5b681eb7 +2024-07-29 09:38:33.830524 2024-07-29 09:38:33.830539 comef 7785 R rec 346447e0-8343-40fc-92f6-dc5c9d9e0ac1 +2024-07-29 09:38:33.922765 2024-07-29 09:38:33.922775 comef 7786 R rec 99a82351-08c6-4bda-afa8-eaf107915d8f +2024-07-29 09:38:34.003697 2024-07-29 09:38:34.003709 comef 7787 R rec 3f003001-f980-4f36-a83a-923439afd6a1 +2024-07-29 09:38:34.091211 2024-07-29 09:38:34.091226 comef 7788 R rec 2a5bb27e-3ad5-4e62-a6ba-723906e030f1 +2024-07-29 09:38:34.193023 2024-07-29 09:38:34.193038 comef 7789 R rec cc767739-658e-4b29-8e63-ee37b1deff40 +2024-07-29 09:38:34.279863 2024-07-29 09:38:34.279873 comef 7790 R rec b9ca0052-6770-4026-9f71-8dd06c6f1421 +2024-07-29 09:38:34.353214 2024-07-29 09:38:34.353226 comef 7791 R rec baa0665f-9719-4219-85c3-a052c1f03ea4 +2024-07-29 09:38:34.434125 2024-07-29 09:38:34.434137 comef 7792 R rec b3c979dd-3ee2-4941-87b2-92649a47ade7 +2024-07-29 09:38:34.494771 2024-07-29 09:38:34.494781 comef 7793 R rec 9e1b229d-5bf2-4eed-b2e5-805abc8a18e0 +2024-07-29 09:38:34.568878 2024-07-29 09:38:34.56889 comef 7794 R rec f542da35-ef60-4601-9553-7a3126c4d590 +2024-07-29 09:38:34.656367 2024-07-29 09:38:34.656379 comef 7795 R rec bd54a8ea-590d-43b8-8f71-846051712d48 +2024-07-29 09:38:34.749134 2024-07-29 09:38:34.749148 comef 7796 R rec 11198373-2568-4578-93bf-2b4c3c3226e0 +2024-07-29 09:38:34.840801 2024-07-29 09:38:34.840815 comef 7797 R rec a4f14e0c-318e-47d6-9d6d-67edf00c2a50 +2024-07-29 09:38:34.934286 2024-07-29 09:38:34.934295 comef 7798 R rec 8ba0686f-99c4-4920-9733-0ab1c156b314 +2024-07-29 09:38:35.026057 2024-07-29 09:38:35.026071 comef 7799 R rec 194b2165-ffa1-4917-8871-c26b74469221 +2024-07-29 09:38:35.124496 2024-07-29 09:38:35.124512 comef 7800 R rec 07f755e0-fcd2-44e6-bbeb-6033f8421d6a +2024-07-29 09:38:35.221692 2024-07-29 09:38:35.221706 comef 7801 R rec 5a6a4bfd-dadf-47e4-8d71-051ba232c6e0 +2024-07-29 09:38:35.317939 2024-07-29 09:38:35.317948 comef 7802 R rec b9ac5fe1-8bca-4318-b95b-46f0e37753d0 +2024-07-29 09:38:35.417808 2024-07-29 09:38:35.417818 comef 7803 R rec 621d7e49-1c9b-4927-af20-7c9bb1a3447c +2024-07-29 09:38:35.495232 2024-07-29 09:38:35.495237 comef 7804 R rec 86f50329-ad40-4ebc-b01e-12e5b6977974 +2024-07-29 09:38:35.547481 2024-07-29 09:38:35.54749 comef 7805 R rec 35b88a18-df3a-4621-adf6-76a178ae2547 +2024-07-29 09:38:35.626575 2024-07-29 09:38:35.626585 comef 7806 R rec 7fbd36b1-e6fe-4d88-b93b-ab7a0968b077 +2024-07-29 09:38:35.721002 2024-07-29 09:38:35.721016 comef 7807 R rec dd145dce-8d7e-4093-b2db-897ced8db133 +2024-07-29 09:38:35.812528 2024-07-29 09:38:35.812537 comef 7808 R rec a2ee6a00-6621-487f-a224-31e0cb173ebe +2024-07-29 09:38:35.898949 2024-07-29 09:38:35.898959 comef 7809 R rec eca91fff-b39e-4f37-a1cb-c12684b604f8 +2024-07-29 09:38:35.986547 2024-07-29 09:38:35.986561 comef 7810 R rec a02e4dfc-4fe5-4157-a68d-5db77a7c90cf +2024-07-29 09:38:36.076415 2024-07-29 09:38:36.07643 comef 7811 R rec bdb02544-b264-46ae-b6fd-0bef07d22331 +2024-07-29 09:38:36.175024 2024-07-29 09:38:36.175035 comef 7812 R rec 4527df55-5e40-4862-aec4-2230f2bd07fa +2024-07-29 09:38:36.262321 2024-07-29 09:38:36.262332 comef 7813 R rec 1c6ade17-ae19-461a-9a08-0771109339bd +2024-07-29 09:38:36.355813 2024-07-29 09:38:36.355829 comef 7814 R rec 9107d416-9740-45f6-9f7e-64f724899657 +2024-07-29 09:38:36.463128 2024-07-29 09:38:36.46314 comef 7815 R rec 6aff91a3-22f9-44a0-b752-c768d85f5d26 +2024-07-29 09:38:36.535145 2024-07-29 09:38:36.535155 comef 7816 R rec baeedb6d-fe8d-405f-bff2-aef9d1c1bb5a +2024-07-29 09:38:36.611856 2024-07-29 09:38:36.611867 comef 7817 R rec b62bbd8c-8da1-4988-846e-9573e0c1517b +2024-07-29 09:38:36.700291 2024-07-29 09:38:36.700303 comef 7818 R rec e0476ca0-19f7-409b-a92b-8eb0b1757074 +2024-07-29 09:38:36.842016 2024-07-29 09:38:36.842027 comef 7819 R rec 844c3f3c-ae5e-4da7-8e00-4fe3b6bc66a9 +2024-07-29 09:38:36.934224 2024-07-29 09:38:36.934235 comef 7820 R rec 8e227746-c0d6-4540-816d-97e779619c75 +2024-07-29 09:38:37.021966 2024-07-29 09:38:37.021975 comef 7821 R rec e57295bc-c803-48f2-b3e4-76ed5908ebf7 +2024-07-29 09:38:37.110483 2024-07-29 09:38:37.110492 comef 7822 R rec 72b9ac6f-4730-4458-a4d5-e8d3174aabd9 +2024-07-29 09:38:37.203257 2024-07-29 09:38:37.203271 comef 7823 R rec a92f0cc8-b642-4ca8-8603-6db4e95838ef +2024-07-29 09:38:37.301747 2024-07-29 09:38:37.301762 comef 7824 R rec e59f2048-3211-4b88-9772-6ed6c5233469 +2024-07-29 09:38:37.398796 2024-07-29 09:38:37.398806 comef 7825 R rec 35b8aee5-9418-49de-98b6-6a1205246928 +2024-07-29 09:38:37.492556 2024-07-29 09:38:37.492571 comef 7826 R rec 63e7a236-bf36-4a0d-a5f2-8df1d14a0186 +2024-07-29 09:38:37.564679 2024-07-29 09:38:37.564688 comef 7827 R rec e64a8ef0-6ad4-47b3-a14a-df26c85fbbee +2024-07-29 09:38:37.635831 2024-07-29 09:38:37.635844 comef 7828 R rec e86461f2-c125-497d-ae58-7139a96551d8 +2024-07-29 09:38:37.72262 2024-07-29 09:38:37.722632 comef 7829 R rec 34d29f11-fc7d-44b4-9e23-895cfc4218fb +2024-07-29 09:38:37.818913 2024-07-29 09:38:37.818925 comef 7830 R rec 513c9f74-3a01-4590-922e-4bb78a2487e5 +2024-07-29 09:38:37.919889 2024-07-29 09:38:37.919914 comef 7831 R rec f1a3bbfd-7aaf-4855-90c9-b032d3854a05 +2024-07-29 09:38:38.010362 2024-07-29 09:38:38.010376 comef 7832 R rec d2757c43-208d-4e69-8391-01adbfd671e4 +2024-07-29 09:38:38.110489 2024-07-29 09:38:38.110499 comef 7833 R rec 0ad4312a-b705-4b56-8b60-ff9490e1a7b7 +2024-07-29 09:38:38.201158 2024-07-29 09:38:38.201172 comef 7834 R rec f9052806-f7b0-4831-a268-5499e548b7b5 +2024-07-29 09:38:38.294062 2024-07-29 09:38:38.294074 comef 7835 R rec dfb1967b-cf47-4449-98bc-3300806ee804 +2024-07-29 09:38:38.400847 2024-07-29 09:38:38.40086 comef 7836 R rec 56016ea1-f164-4147-b57e-1400ab4addbc +2024-07-29 09:38:38.491345 2024-07-29 09:38:38.491359 comef 7837 R rec 18afbfdb-5e09-4811-a88e-2957fe044d11 +2024-07-29 09:38:38.570998 2024-07-29 09:38:38.571003 comef 7838 R rec 067b406d-daf3-4bf6-8e19-a0f5210ad841 +2024-07-29 09:38:38.624376 2024-07-29 09:38:38.624385 comef 7839 R rec 818a564a-8dba-4e8e-a859-deda66b5ec3a +2024-07-29 09:38:38.701413 2024-07-29 09:38:38.701425 comef 7840 R rec 4dce0451-4e09-4ff7-8cf0-62fab27a718b +2024-07-29 09:38:38.79076 2024-07-29 09:38:38.790774 comef 7841 R rec 302bff85-4c37-40e7-bb33-a8a535af60cb +2024-07-29 09:38:38.894726 2024-07-29 09:38:38.894735 comef 7842 R rec 530cd234-c096-4c70-ab78-c0a4a116a10c +2024-07-29 09:38:38.998388 2024-07-29 09:38:38.998402 comef 7843 R rec 73c5fa87-a07c-4390-ac2c-7fa220a1e5a7 +2024-07-29 09:38:39.09522 2024-07-29 09:38:39.095235 comef 7844 R rec 561b94d6-31b6-489a-bcce-c5751ad09e3a +2024-07-29 09:38:39.19178 2024-07-29 09:38:39.191794 comef 7845 R rec 53f77a84-1475-498a-9312-cc045f7c3c12 +2024-07-29 09:38:39.283085 2024-07-29 09:38:39.283099 comef 7846 R rec 0a9dd106-ef39-4cb4-9a02-d60f13a18441 +2024-07-29 09:38:39.373813 2024-07-29 09:38:39.373828 comef 7847 R rec 0c4045b9-de5b-45af-88e9-4f962871789b +2024-07-29 09:38:39.473669 2024-07-29 09:38:39.473679 comef 7848 R rec 8ac8bcc9-0980-4c65-b13d-d89ab4a68b1e +2024-07-29 09:38:39.567045 2024-07-29 09:38:39.567057 comef 7849 R rec cb2e2207-bef7-4558-af39-2ac3da1a3cd6 +2024-07-29 09:38:39.638199 2024-07-29 09:38:39.638208 comef 7850 R rec 08a38cba-744c-416f-a769-0f26eaca1586 +2024-07-29 09:38:39.714622 2024-07-29 09:38:39.714636 comef 7851 R rec 5c8c4e5d-c611-4940-874d-9f10a8cf73b7 +2024-07-29 09:38:39.79904 2024-07-29 09:38:39.799054 comef 7852 R rec b1871f0b-bb4b-48cc-bcc9-e6d0f9012b58 +2024-07-29 09:38:39.888797 2024-07-29 09:38:39.888807 comef 7853 R rec 5098badb-9182-4dfa-9620-3b069303358e +2024-07-29 09:38:39.98132 2024-07-29 09:38:39.981329 comef 7854 R rec 8adcf4bd-9f2e-4631-8a8e-9ee65576f490 +2024-07-29 09:38:40.079875 2024-07-29 09:38:40.07989 comef 7855 R rec 7cd0371f-963b-4964-810a-cd820f9dffef +2024-07-29 09:38:40.182151 2024-07-29 09:38:40.182162 comef 7856 R rec a85f3341-eb1f-4519-8ffe-383998b9b32d +2024-07-29 09:38:40.279003 2024-07-29 09:38:40.279018 comef 7857 R rec b694c47d-d6b9-44d9-909a-7840fcf1dc19 +2024-07-29 09:38:40.375409 2024-07-29 09:38:40.375422 comef 7858 R rec 785230a4-d7e4-4755-af70-3cb3e8679ea9 +2024-07-29 09:38:40.465609 2024-07-29 09:38:40.465622 comef 7859 R rec 0143f818-f6fc-4c36-a8f9-da68df07d0b7 +2024-07-29 09:38:40.54592 2024-07-29 09:38:40.545929 comef 7860 R rec 7d4889de-e5a6-4380-a6db-39feec21b920 +2024-07-29 09:38:40.622246 2024-07-29 09:38:40.622251 comef 7861 R rec cd742efc-e33f-4c0a-871a-50b0f71407b1 +2024-07-29 09:38:40.678564 2024-07-29 09:38:40.678574 comef 7862 R rec 3ce00126-5af1-44ee-8dd7-1bf27f90788f +2024-07-29 09:38:40.751335 2024-07-29 09:38:40.751347 comef 7863 R rec f8214b45-6201-4f00-8bfc-5be67cb08a33 +2024-07-29 09:38:40.840367 2024-07-29 09:38:40.840379 comef 7864 R rec c21b0602-0224-4ff4-9def-92768058fd4e +2024-07-29 09:38:40.939084 2024-07-29 09:38:40.939098 comef 7865 R rec 8ce9647f-b51d-4b96-a858-6a1642e1eb0b +2024-07-29 09:38:41.028888 2024-07-29 09:38:41.028902 comef 7866 R rec b7296305-8d8d-48a2-929c-f6e6013b6fa0 +2024-07-29 09:38:41.127091 2024-07-29 09:38:41.127103 comef 7867 R rec c145c050-a7ed-4b3f-90f1-00b110880442 +2024-07-29 09:38:41.218757 2024-07-29 09:38:41.218767 comef 7868 R rec 04ad0c8c-78ed-4a2e-874a-a7177d3f0f7c +2024-07-29 09:38:41.308767 2024-07-29 09:38:41.308782 comef 7869 R rec 2b4e4736-6941-4af7-a010-ed5efa876b33 +2024-07-29 09:38:41.395272 2024-07-29 09:38:41.395285 comef 7870 R rec 41bdb6aa-fd30-4045-b806-87c133efc349 +2024-07-29 09:38:41.493972 2024-07-29 09:38:41.493987 comef 7871 R rec 83a91e22-74c0-490d-84f4-f4138e05caeb +2024-07-29 09:38:41.591645 2024-07-29 09:38:41.591656 comef 7872 R rec 43784209-cb69-4157-ac40-d38912ed85e7 +2024-07-29 09:38:41.668332 2024-07-29 09:38:41.668336 comef 7873 R rec 05853767-9ca2-42ee-989a-f68bae4aa38e +2024-07-29 09:38:41.739219 2024-07-29 09:38:41.739228 comef 7874 R rec 5cef19b9-e349-4ac7-b04f-b3ba1a05857a +2024-07-29 09:38:41.838414 2024-07-29 09:38:41.838428 comef 7875 R rec f8602b2e-627b-4c40-8739-7b036d94fa6d +2024-07-29 09:38:41.939678 2024-07-29 09:38:41.939689 comef 7876 R rec feb75920-8ba2-4789-ab34-d6aa1396c213 +2024-07-29 09:38:42.034116 2024-07-29 09:38:42.034125 comef 7877 R rec 8b177788-458c-4a2a-a77f-790169f3c196 +2024-07-29 09:38:42.129443 2024-07-29 09:38:42.129455 comef 7878 R rec 89d05cfa-93b3-4928-86c0-c73af054d973 +2024-07-29 09:38:42.228056 2024-07-29 09:38:42.228068 comef 7879 R rec 93af6df2-2572-4bbf-9c89-0d3bca574325 +2024-07-29 09:38:42.323615 2024-07-29 09:38:42.32363 comef 7880 R rec 4f2e7f57-6855-45af-b48a-ed2a6cdc3732 +2024-07-29 09:38:42.42193 2024-07-29 09:38:42.42194 comef 7881 R rec 7ecf3eae-b3bd-4004-91fe-bbbb52b4e4e7 +2024-07-29 09:38:42.512411 2024-07-29 09:38:42.512425 comef 7882 R rec 228d2439-3e59-45d4-b1f1-18f7ee7cf505 +2024-07-29 09:38:42.602561 2024-07-29 09:38:42.60257 comef 7883 R rec 12faecce-8ffb-4745-829c-eec4928ff15b +2024-07-29 09:38:42.676656 2024-07-29 09:38:42.676661 comef 7884 R rec a5b3062d-81cb-4fdd-ac3e-e634d2314736 +2024-07-29 09:38:42.739646 2024-07-29 09:38:42.739656 comef 7885 R rec 3203a43d-396c-44f8-b40a-b0c0521622f8 +2024-07-29 09:38:42.829261 2024-07-29 09:38:42.829275 comef 7886 R rec f145fa7f-4405-4181-8f4f-5c1a98248e7e +2024-07-29 09:38:42.926099 2024-07-29 09:38:42.926113 comef 7887 R rec 136c7396-7369-404a-866a-b60824afe6c2 +2024-07-29 09:38:43.019167 2024-07-29 09:38:43.019182 comef 7888 R rec a0ec4936-d316-437c-b00c-41e955e89df7 +2024-07-29 09:38:43.116818 2024-07-29 09:38:43.116828 comef 7889 R rec 5734ee5c-54f2-4f93-943a-6a7d9dda63e8 +2024-07-29 09:38:43.211862 2024-07-29 09:38:43.211872 comef 7890 R rec 1829cc0f-cbca-4c9d-ab85-67667a98f753 +2024-07-29 09:38:43.30384 2024-07-29 09:38:43.30389 comef 7891 R rec 3cc8ec32-ba49-4ec1-99b3-4cf04596a91a +2024-07-29 09:38:43.392775 2024-07-29 09:38:43.392787 comef 7892 R rec f7b3c852-5f07-4b5c-9039-5d905e2b56e3 +2024-07-29 09:38:43.479295 2024-07-29 09:38:43.479305 comef 7893 R rec 1bb5dd93-8605-4f81-8f44-6e162b5d077a +2024-07-29 09:38:43.562371 2024-07-29 09:38:43.562386 comef 7894 R rec 3e0eaea6-6d69-4c57-9018-e3abc96596f0 +2024-07-29 09:38:43.655607 2024-07-29 09:38:43.655622 comef 7895 R rec 52703727-5e90-464c-835d-e7a91062fe35 +2024-07-29 09:38:43.72852 2024-07-29 09:38:43.728525 comef 7896 R rec 176dd232-2e4f-4d22-9e48-aa7c894d3008 +2024-07-29 09:38:43.793637 2024-07-29 09:38:43.793647 comef 7897 R rec 7a61b964-2cbb-4ba3-9d11-d27ae2c6f312 +2024-07-29 09:38:43.887636 2024-07-29 09:38:43.887646 comef 7898 R rec f60ccb9f-4962-4007-bc80-fd5aa9db336d +2024-07-29 09:38:43.972441 2024-07-29 09:38:43.972452 comef 7899 R rec 465460fa-8581-450d-94ea-76612ae4852a +2024-07-29 09:38:44.067549 2024-07-29 09:38:44.067564 comef 7900 R rec beac5898-8a82-49e5-a780-5665e6e2f562 +2024-07-29 09:38:44.163268 2024-07-29 09:38:44.163278 comef 7901 R rec e5757ee4-b7e4-481a-8c31-72018993004e +2024-07-29 09:38:44.24629 2024-07-29 09:38:44.246299 comef 7902 R rec 23b957f6-9107-4079-b5ae-ae4945692e33 +2024-07-29 09:38:44.334105 2024-07-29 09:38:44.334119 comef 7903 R rec 07b4b1e6-0b95-4e3f-b5aa-b8697e671a30 +2024-07-29 09:38:44.42857 2024-07-29 09:38:44.428619 comef 7904 R rec fee00387-b228-4dad-8bb8-aaa44e6ea568 +2024-07-29 09:38:44.514168 2024-07-29 09:38:44.514182 comef 7905 R rec 8aa8bb44-e314-41a5-b412-76096894f992 +2024-07-29 09:38:44.609767 2024-07-29 09:38:44.609782 comef 7906 R rec e4f482e1-4053-4cd0-9a8a-65985c922520 +2024-07-29 09:38:44.705309 2024-07-29 09:38:44.705318 comef 7907 R rec a4109660-75d8-490c-a868-f586721e0037 +2024-07-29 09:38:44.767479 2024-07-29 09:38:44.767488 comef 7908 R rec a01de896-e271-4a0d-8fc2-2b6cad6a14a1 +2024-07-29 09:38:44.838803 2024-07-29 09:38:44.838814 comef 7909 R rec c5042c83-3fd0-4b0c-9553-e827208fb1c0 +2024-07-29 09:38:44.925247 2024-07-29 09:38:44.925259 comef 7910 R rec efa86545-26d1-4c12-92b4-f5f2e80e2f39 +2024-07-29 09:38:45.011829 2024-07-29 09:38:45.011843 comef 7911 R rec b76974d7-b31c-42d9-86fc-400e3f59779e +2024-07-29 09:38:45.093337 2024-07-29 09:38:45.093423 comef 7912 R rec 89b056b8-594e-47bb-8971-37846e565c6b +2024-07-29 09:38:45.173207 2024-07-29 09:38:45.173217 comef 7913 R rec 90e6807a-e4b8-4103-b5a2-ec82d8c40a8f +2024-07-29 09:38:45.269124 2024-07-29 09:38:45.269138 comef 7914 R rec 3ea3db7a-d544-47b0-a180-2037b9b28103 +2024-07-29 09:38:45.356664 2024-07-29 09:38:45.356678 comef 7915 R rec dd1dd7e1-5f45-4216-8a52-af1ccb24cfbf +2024-07-29 09:38:45.441082 2024-07-29 09:38:45.441091 comef 7916 R rec c318b023-d800-40da-a2f2-dc27ae08f0d8 +2024-07-29 09:38:45.54124 2024-07-29 09:38:45.541252 comef 7917 R rec cd04ccab-25f0-4547-8095-fa8554577ca8 +2024-07-29 09:38:45.635267 2024-07-29 09:38:45.635278 comef 7918 R rec 9a84aded-f6b0-466c-b96b-a61d8d6b3cf6 +2024-07-29 09:38:45.727982 2024-07-29 09:38:45.727996 comef 7919 R rec 0a29ed71-6793-4556-a307-28b93ee88872 +2024-07-29 09:38:45.795731 2024-07-29 09:38:45.79574 comef 7920 R rec 3eb370f0-894c-4fa2-a7da-c83de772eed4 +2024-07-29 09:38:45.867623 2024-07-29 09:38:45.867634 comef 7921 R rec 0ad24e7a-5807-40d0-8949-b12b21ad3750 +2024-07-29 09:38:45.962828 2024-07-29 09:38:45.962839 comef 7922 R rec 84bed058-0308-4582-b9d0-40298ad70825 +2024-07-29 09:38:46.052585 2024-07-29 09:38:46.052597 comef 7923 R rec 9d785cb4-7015-4c39-a5f0-42dc71003143 +2024-07-29 09:38:46.138898 2024-07-29 09:38:46.138912 comef 7924 R rec 5be6b200-bdfa-40e7-9691-ed58617b6046 +2024-07-29 09:38:46.233769 2024-07-29 09:38:46.23378 comef 7925 R rec d651a6bf-5ce9-453d-a737-25530354052d +2024-07-29 09:38:46.325311 2024-07-29 09:38:46.325323 comef 7926 R rec e2f6865e-1c44-4626-8f20-c485fec98482 +2024-07-29 09:38:46.416891 2024-07-29 09:38:46.4169 comef 7927 R rec dfe6e1f4-1955-4553-abf9-ded340ff4f83 +2024-07-29 09:38:46.506715 2024-07-29 09:38:46.506729 comef 7928 R rec ac9c331f-ced1-45fa-9b3d-9c2fbcdd3a97 +2024-07-29 09:38:46.598157 2024-07-29 09:38:46.598169 comef 7929 R rec 95d9ff0a-e501-4867-8210-b83f26afe6f7 +2024-07-29 09:38:46.685241 2024-07-29 09:38:46.685255 comef 7930 R rec f0338f87-ea28-4e2c-abbb-04fb7a3f379c +2024-07-29 09:38:46.779033 2024-07-29 09:38:46.779042 comef 7931 R rec 4b634e9c-913c-4cad-9325-8896cd28e914 +2024-07-29 09:38:46.843173 2024-07-29 09:38:46.843182 comef 7932 R rec d26c7be5-0f6a-497b-b45d-2059d9f33ef2 +2024-07-29 09:38:46.912534 2024-07-29 09:38:46.912544 comef 7933 R rec eb7e22b3-a99d-41a9-99dd-80645db4aff5 +2024-07-29 09:38:46.986365 2024-07-29 09:38:46.986376 comef 7934 R rec e97338d6-e1ce-49e0-b151-c5179230e622 +2024-07-29 09:38:47.074738 2024-07-29 09:38:47.074753 comef 7935 R rec 096fcc4a-b7e3-41a6-aec2-ffb327f37da0 +2024-07-29 09:38:47.178004 2024-07-29 09:38:47.178018 comef 7936 R rec f8c08520-a95e-4902-9ce2-18c6eb1a3002 +2024-07-29 09:38:47.278917 2024-07-29 09:38:47.278931 comef 7937 R rec b777ae7a-c700-43b3-a2c8-a923a4069566 +2024-07-29 09:38:47.377899 2024-07-29 09:38:47.37791 comef 7938 R rec ae1b4c27-e7bc-4aee-abe1-cb336f3d208b +2024-07-29 09:38:47.467467 2024-07-29 09:38:47.467479 comef 7939 R rec 321037f6-866a-4441-8197-02c44d6fddb6 +2024-07-29 09:38:47.552189 2024-07-29 09:38:47.552203 comef 7940 R rec 404568d9-cb58-4342-bc50-7e4694eca2e6 +2024-07-29 09:38:47.634793 2024-07-29 09:38:47.634807 comef 7941 R rec e3246b34-6c02-4b46-a0af-fbeef1a1ec11 +2024-07-29 09:38:47.730358 2024-07-29 09:38:47.730372 comef 7942 R rec 640c652e-5400-4013-8eaa-dbb41bef6445 +2024-07-29 09:38:47.816429 2024-07-29 09:38:47.816435 comef 7943 R rec b97c589d-0abe-4159-b5bd-e159d47c5cc2 +2024-07-29 09:38:47.877816 2024-07-29 09:38:47.877826 comef 7944 R rec ed659835-5dd6-480d-8bce-b1e3aefa8ef9 +2024-07-29 09:38:47.967245 2024-07-29 09:38:47.967251 comef 7945 R rec 79b23144-543d-4b86-83df-7d38085bd7d4 +2024-07-29 09:38:48.049988 2024-07-29 09:38:48.049998 comef 7946 R rec feefeaf1-962a-4e16-9be3-2d73509fff05 +2024-07-29 09:38:48.140233 2024-07-29 09:38:48.140242 comef 7947 R rec 7954eb86-9c38-412b-b109-1c45c2ebaf27 +2024-07-29 09:38:48.231494 2024-07-29 09:38:48.231507 comef 7948 R rec 5ef06eaa-6b41-400a-8686-c3a606bd0539 +2024-07-29 09:38:48.320895 2024-07-29 09:38:48.320906 comef 7949 R rec cf6c07cd-3144-43be-9844-24c0165ca120 +2024-07-29 09:38:48.421258 2024-07-29 09:38:48.421274 comef 7950 R rec b5a811a1-64ff-4435-bc29-e38f41b4cb93 +2024-07-29 09:38:48.523309 2024-07-29 09:38:48.523321 comef 7951 R rec f7ade95b-00d2-4113-85db-8bb7ed387fa4 +2024-07-29 09:38:48.616495 2024-07-29 09:38:48.616509 comef 7952 R rec 58ca1c6b-ff41-4d7c-9a40-69f650922a49 +2024-07-29 09:38:48.711475 2024-07-29 09:38:48.711489 comef 7953 R rec a502a737-a15c-479e-8f68-3d632323cf63 +2024-07-29 09:38:48.811016 2024-07-29 09:38:48.81103 comef 7954 R rec e70b288b-a0b1-4f7a-bca9-1eb498869812 +2024-07-29 09:38:48.888454 2024-07-29 09:38:48.888464 comef 7955 R rec 8929b4c8-7473-4d8d-bd87-ffcb793a31ea +2024-07-29 09:38:48.965192 2024-07-29 09:38:48.965203 comef 7956 R rec d08c2087-6686-46a9-bcf8-23c02bb64c56 +2024-07-29 09:38:49.048244 2024-07-29 09:38:49.048254 comef 7957 R rec 0ae51bfa-5e3b-442f-bbd6-602fd0e353aa +2024-07-29 09:38:49.124851 2024-07-29 09:38:49.124863 comef 7958 R rec d1c5bd7a-0c40-4a6d-9736-cc994df8d68b +2024-07-29 09:38:49.208905 2024-07-29 09:38:49.208919 comef 7959 R rec 57d9825a-aaa2-4980-b19a-5dc883fefd4a +2024-07-29 09:38:49.302543 2024-07-29 09:38:49.302552 comef 7960 R rec 22683493-3eec-4c91-9a4a-4047d0584ef9 +2024-07-29 09:38:49.39643 2024-07-29 09:38:49.396442 comef 7961 R rec 2ead3029-1b52-4f5b-b003-d43d65fa2491 +2024-07-29 09:38:49.482681 2024-07-29 09:38:49.482695 comef 7962 R rec 4cd7c9af-4710-40e8-a932-dcad3feaba80 +2024-07-29 09:38:49.578181 2024-07-29 09:38:49.578193 comef 7963 R rec e285c034-3f20-49b8-bc3b-e980c97c7b7e +2024-07-29 09:38:49.669509 2024-07-29 09:38:49.669529 comef 7964 R rec 5a29bdd3-8d50-4cd2-b517-6ddf8092a542 +2024-07-29 09:38:49.772988 2024-07-29 09:38:49.773003 comef 7965 R rec 2c91045d-4ca1-4bcf-b784-6daf7f0e0627 +2024-07-29 09:38:49.867838 2024-07-29 09:38:49.867843 comef 7966 R rec 4b12df11-0daf-4fd8-bd48-325f939e0917 +2024-07-29 09:38:49.926093 2024-07-29 09:38:49.926103 comef 7967 R rec 63aeb3ac-bcba-423f-b31e-d5485141d408 +2024-07-29 09:38:50.01337 2024-07-29 09:38:50.013384 comef 7968 R rec ab111e13-c6ae-4caf-8ad9-a5a6031e18e0 +2024-07-29 09:38:50.107491 2024-07-29 09:38:50.107503 comef 7969 R rec 374465df-af8e-42ab-a2d6-eb22c4f43d01 +2024-07-29 09:38:50.204344 2024-07-29 09:38:50.204358 comef 7970 R rec 190d4e59-509c-4339-971e-52f6875dc3eb +2024-07-29 09:38:50.288239 2024-07-29 09:38:50.28825 comef 7971 R rec e6d6cdcc-a4f5-433f-8e19-40df6ab952c9 +2024-07-29 09:38:50.381203 2024-07-29 09:38:50.381215 comef 7972 R rec 9e0c5c4f-5ae7-4755-b00d-83d069c990a6 +2024-07-29 09:38:50.478359 2024-07-29 09:38:50.478371 comef 7973 R rec 770195cf-f4ba-4164-bb0a-48b982196fcb +2024-07-29 09:38:50.562929 2024-07-29 09:38:50.562943 comef 7974 R rec cdb3d5ce-8ac2-470b-bc55-741f36a3bbe6 +2024-07-29 09:38:50.660242 2024-07-29 09:38:50.660252 comef 7975 R rec 32c196d0-0ccd-44ba-8aae-e98b72aef785 +2024-07-29 09:38:50.753203 2024-07-29 09:38:50.753213 comef 7976 R rec 4e8040f8-2af7-4092-869d-26c3a2bf5ecc +2024-07-29 09:38:50.846785 2024-07-29 09:38:50.846796 comef 7977 R rec d9ffa5c0-42a8-465b-a0be-3c7494c248a7 +2024-07-29 09:38:50.922328 2024-07-29 09:38:50.922333 comef 7978 R rec 8b4c300b-9f10-4eeb-b248-fffca41cbc75 +2024-07-29 09:38:50.988901 2024-07-29 09:38:50.988911 comef 7979 R rec a8dddcb6-6a3d-4707-8cff-a9e6cb4ed516 +2024-07-29 09:38:51.059611 2024-07-29 09:38:51.059623 comef 7980 R rec 685590e2-9c0d-4f77-ae6c-1f69c209b135 +2024-07-29 09:38:51.148707 2024-07-29 09:38:51.148717 comef 7981 R rec 4139a34f-9842-4b07-a774-9eb908307d92 +2024-07-29 09:38:51.241562 2024-07-29 09:38:51.241575 comef 7982 R rec f313b005-10c6-4f8b-8cee-5c9b4b36d8da +2024-07-29 09:38:51.338985 2024-07-29 09:38:51.338999 comef 7983 R rec 2c326460-02b0-4122-a222-1399dd7edff5 +2024-07-29 09:38:51.435073 2024-07-29 09:38:51.435083 comef 7984 R rec 733357e3-3c64-4e37-8d36-f93658f2bef1 +2024-07-29 09:38:51.527751 2024-07-29 09:38:51.527765 comef 7985 R rec 8ac7ef26-42e9-4307-9efa-172bcf77af27 +2024-07-29 09:38:51.620375 2024-07-29 09:38:51.62039 comef 7986 R rec ca57d182-16a0-4ef7-85b7-ef9ab078332e +2024-07-29 09:38:51.719796 2024-07-29 09:38:51.71981 comef 7987 R rec 3b772a4a-3541-45ef-9586-2b692265d85f +2024-07-29 09:38:51.81729 2024-07-29 09:38:51.817302 comef 7988 R rec 6ae6c4f2-49a6-48f2-9e41-159a73bd3b45 +2024-07-29 09:38:51.916871 2024-07-29 09:38:51.916883 comef 7989 R rec ca515a5d-a1b2-4301-b3d4-7bcbd978acea +2024-07-29 09:38:51.984618 2024-07-29 09:38:51.984628 comef 7990 R rec 30418679-a553-4de8-9333-5cdd100912ee +2024-07-29 09:38:52.052915 2024-07-29 09:38:52.052926 comef 7991 R rec 84b88274-c4d4-4223-a11f-12f2e20b8273 +2024-07-29 09:38:52.136842 2024-07-29 09:38:52.136854 comef 7992 R rec f65730b8-edd6-45cf-be22-0a1045b7be5f +2024-07-29 09:38:52.22943 2024-07-29 09:38:52.229442 comef 7993 R rec d8a59f56-c0ee-4b35-8b10-9227e8c86cc7 +2024-07-29 09:38:52.317898 2024-07-29 09:38:52.317908 comef 7994 R rec 1844f5d0-157e-4a41-9acf-80c67e798580 +2024-07-29 09:38:52.414078 2024-07-29 09:38:52.414089 comef 7995 R rec edc8c5a5-f5b5-4f8e-9149-c5c20d6b81f8 +2024-07-29 09:38:52.508232 2024-07-29 09:38:52.508246 comef 7996 R rec 71820b05-3399-46e1-b093-543b6cb7c286 +2024-07-29 09:38:52.608106 2024-07-29 09:38:52.608116 comef 7997 R rec c6ffbc20-2132-4511-8e82-af1b3a124533 +2024-07-29 09:38:52.702038 2024-07-29 09:38:52.702053 comef 7998 R rec 80458074-0759-48b3-b061-11de3ad02ec8 +2024-07-29 09:38:52.792457 2024-07-29 09:38:52.792471 comef 7999 R rec a5fd2d2d-36bc-4d4e-925e-33c208b4bf07 +2024-07-29 09:38:52.886425 2024-07-29 09:38:52.886434 comef 8000 R rec 00d9717e-8c7f-4f35-bdb5-50bce0db2040 +2024-07-29 09:38:52.975221 2024-07-29 09:38:52.975226 comef 8001 R rec f0ecbf88-0142-45a1-8342-d30365b93df0 +2024-07-29 09:38:53.030482 2024-07-29 09:38:53.030492 comef 8002 R rec 7d130c66-36c7-4aa2-986f-a45c5c059081 +2024-07-29 09:38:53.109703 2024-07-29 09:38:53.109713 comef 8003 R rec 97386526-66e2-48c3-ba4e-e968d04148ce +2024-07-29 09:38:53.197556 2024-07-29 09:38:53.19757 comef 8004 R rec bb0a6390-6f93-41b3-bca3-8e806dcf1bf6 +2024-07-29 09:38:53.297178 2024-07-29 09:38:53.297192 comef 8005 R rec 18843102-4c85-47d2-a0f9-1e3b00788411 +2024-07-29 09:38:53.391517 2024-07-29 09:38:53.391527 comef 8006 R rec 495b6e7a-731d-495d-ab32-24a2d5fa9231 +2024-07-29 09:38:53.465654 2024-07-29 09:38:53.465665 comef 8007 R rec a45f5ccc-4fe5-411d-b548-084fcce0a0c4 +2024-07-29 09:38:53.539432 2024-07-29 09:38:53.539444 comef 8008 R rec 5543532a-81d4-4048-9a22-88067879cc2e +2024-07-29 09:38:53.63341 2024-07-29 09:38:53.633424 comef 8009 R rec 7b624584-1414-4931-8d4c-2720d8c16957 +2024-07-29 09:38:53.735061 2024-07-29 09:38:53.73507 comef 8010 R rec 68735343-840d-4b16-951d-6b448b9cd3b3 +2024-07-29 09:38:53.827071 2024-07-29 09:38:53.827085 comef 8011 R rec 24d3752b-8d05-4351-b629-309e9d330a69 +2024-07-29 09:38:53.924017 2024-07-29 09:38:53.924029 comef 8012 R rec 018bde8f-43b9-47e6-a21b-98a7053c63b8 +2024-07-29 09:38:54.007955 2024-07-29 09:38:54.00796 comef 8013 R rec 41656a03-4c58-4785-a3ba-bbe291bf8416 +2024-07-29 09:38:54.079338 2024-07-29 09:38:54.07935 comef 8014 R rec 75f47be5-d9af-45a9-a784-7ac4c00938b3 +2024-07-29 09:38:54.186955 2024-07-29 09:38:54.18697 comef 8015 R rec e4a24a5b-6275-4acb-af74-6e0ad07ed145 +2024-07-29 09:38:54.281141 2024-07-29 09:38:54.281155 comef 8016 R rec 3d9df97b-12d4-4850-9642-ce5fff3597fc +2024-07-29 09:38:54.369725 2024-07-29 09:38:54.369732 comef 8017 R rec 5aa99129-0509-47c0-b449-99246ea21a31 +2024-07-29 09:38:54.469484 2024-07-29 09:38:54.469499 comef 8018 R rec 4f728508-7abe-4ab8-aef8-606756c6adea +2024-07-29 09:38:54.565266 2024-07-29 09:38:54.565277 comef 8019 R rec 3dfef4e4-21a5-4ddc-8bca-87b708761272 +2024-07-29 09:38:54.66372 2024-07-29 09:38:54.663734 comef 8020 R rec ffd8a043-df8a-4b8c-b21e-462b51135e3e +2024-07-29 09:38:54.76088 2024-07-29 09:38:54.760894 comef 8021 R rec 26446c33-9b87-48f0-8656-8c96814a1d7d +2024-07-29 09:38:54.856164 2024-07-29 09:38:54.856179 comef 8022 R rec 9d759c3a-b19d-497c-b2c0-4391751f01a7 +2024-07-29 09:38:54.957401 2024-07-29 09:38:54.957416 comef 8023 R rec c12fd2c1-5abe-40f4-8c9c-5c23b604f8e8 +2024-07-29 09:38:55.047784 2024-07-29 09:38:55.047793 comef 8024 R rec b9cf4cc0-1e5a-4d64-93b4-eca65eabde30 +2024-07-29 09:38:55.126556 2024-07-29 09:38:55.126566 comef 8025 R rec 8d315adc-fa5b-4005-9db3-6de87e54b70e +2024-07-29 09:38:55.219038 2024-07-29 09:38:55.219053 comef 8026 R rec bb1128f9-1540-469a-b394-6c808daacec6 +2024-07-29 09:38:55.314421 2024-07-29 09:38:55.314435 comef 8027 R rec 1fe29513-6794-4f8b-bd4b-0583c721f2d8 +2024-07-29 09:38:55.407499 2024-07-29 09:38:55.40751 comef 8028 R rec 75e73389-2bbe-4220-b611-3e8b62de5e4d +2024-07-29 09:38:55.490985 2024-07-29 09:38:55.490999 comef 8029 R rec e1b22cd3-4d05-4f49-89a5-5116f5388665 +2024-07-29 09:38:55.585331 2024-07-29 09:38:55.585346 comef 8030 R rec fafb0d28-f82c-462f-bf78-3a11d273aad2 +2024-07-29 09:38:55.670282 2024-07-29 09:38:55.670294 comef 8031 R rec 99bf67d0-a6a7-4ee9-8191-5dcb1693af93 +2024-07-29 09:38:55.757764 2024-07-29 09:38:55.757776 comef 8032 R rec 3121ce94-e3e3-413e-b6db-fd30abb4b2ee +2024-07-29 09:38:55.846278 2024-07-29 09:38:55.846293 comef 8033 R rec 8b6bbaa2-2423-42ec-955d-2e43b569f85f +2024-07-29 09:38:55.938955 2024-07-29 09:38:55.938965 comef 8034 R rec 747113f9-dd44-40b1-b710-41d51a5f85b4 +2024-07-29 09:38:56.02742 2024-07-29 09:38:56.027434 comef 8035 R rec 066ff354-2483-4571-92dd-0d3b4312d686 +2024-07-29 09:38:56.086484 2024-07-29 09:38:56.086489 comef 8036 R rec 07576f73-1c06-4ca4-8a39-c59e7d37a21d +2024-07-29 09:38:56.153134 2024-07-29 09:38:56.153144 comef 8037 R rec 16a093e9-1852-4c40-8c17-d833a1a52185 +2024-07-29 09:38:56.241548 2024-07-29 09:38:56.241556 comef 8038 R rec 5d74d09b-8ca5-4227-b7c2-f96cf042dd9b +2024-07-29 09:38:56.323975 2024-07-29 09:38:56.323985 comef 8039 R rec a6a271c0-8938-4315-8134-0a2432858ea9 +2024-07-29 09:38:56.411793 2024-07-29 09:38:56.411802 comef 8040 R rec 16a79ec8-6611-491f-98dc-821251ec313a +2024-07-29 09:38:56.494163 2024-07-29 09:38:56.494173 comef 8041 R rec 6bba325e-286e-4668-a0b0-56eac0d15886 +2024-07-29 09:38:56.586527 2024-07-29 09:38:56.586539 comef 8042 R rec 94aad002-0b7a-4099-9b99-37e56b6e3915 +2024-07-29 09:38:56.675317 2024-07-29 09:38:56.675331 comef 8043 R rec 1de2f5f1-641a-4755-98d3-2d3c1f3f95a4 +2024-07-29 09:38:56.774119 2024-07-29 09:38:56.774133 comef 8044 R rec 39fccaa2-7b6a-4023-96c1-238ed5ee29ec +2024-07-29 09:38:56.866501 2024-07-29 09:38:56.866512 comef 8045 R rec 74fa5ed3-e689-4c3b-85de-2596d3a5978e +2024-07-29 09:38:56.959027 2024-07-29 09:38:56.959041 comef 8046 R rec 17e9982a-4869-4c29-9662-ee7fb931ed4b +2024-07-29 09:38:57.061027 2024-07-29 09:38:57.061041 comef 8047 R rec f88d7655-0a09-4e55-a515-f4c321d84558 +2024-07-29 09:38:57.123353 2024-07-29 09:38:57.123359 comef 8048 R rec b999a01c-8d85-40a1-998b-2e05b5bf210f +2024-07-29 09:38:57.190009 2024-07-29 09:38:57.190021 comef 8049 R rec aabbd32c-27d1-4873-977b-49069ea69532 +2024-07-29 09:38:57.277166 2024-07-29 09:38:57.27718 comef 8050 R rec 9ca4fb62-9de4-491e-9e62-75dc8658cdc0 +2024-07-29 09:38:57.378154 2024-07-29 09:38:57.378164 comef 8051 R rec 77b07990-20f9-4897-924e-8f52ce5e4f16 +2024-07-29 09:38:57.465177 2024-07-29 09:38:57.465186 comef 8052 R rec 34eef16b-bf3a-472d-827a-dbdbe46bc758 +2024-07-29 09:38:57.557322 2024-07-29 09:38:57.557337 comef 8053 R rec c90cdd3f-6485-4d9a-a588-f5fe3ccd3d02 +2024-07-29 09:38:57.651349 2024-07-29 09:38:57.651363 comef 8054 R rec 29e66f5c-9a7c-4f59-8a5d-e49038eef6ea +2024-07-29 09:38:57.739702 2024-07-29 09:38:57.739715 comef 8055 R rec 5a576f91-9d35-44bf-b6d6-258e883d2ba8 +2024-07-29 09:38:57.836622 2024-07-29 09:38:57.836631 comef 8056 R rec 74c4701d-4446-44c2-97e6-cba6ac7d9981 +2024-07-29 09:38:57.924153 2024-07-29 09:38:57.924167 comef 8057 R rec 99055b40-fb0d-4b10-814a-2512dba24828 +2024-07-29 09:38:58.018805 2024-07-29 09:38:58.01882 comef 8058 R rec 77e02688-5f2e-444b-bcb2-00a98272815f +2024-07-29 09:38:58.112216 2024-07-29 09:38:58.112221 comef 8059 R rec 04fc87cb-a6b1-47b6-8ba3-7277698fe1aa +2024-07-29 09:38:58.162433 2024-07-29 09:38:58.162442 comef 8060 R rec 87f908d5-9df7-46e4-8554-a82b9641020c +2024-07-29 09:38:58.232456 2024-07-29 09:38:58.232467 comef 8061 R rec 458ca9aa-8fa8-47b7-9d8e-0b9515eca0d0 +2024-07-29 09:38:58.319587 2024-07-29 09:38:58.319601 comef 8062 R rec 61fb6ebe-4371-4072-8e2c-d79567860774 +2024-07-29 09:38:58.41881 2024-07-29 09:38:58.418824 comef 8063 R rec 57b95908-0664-4c03-aa5e-88ccb4370e29 +2024-07-29 09:38:58.504432 2024-07-29 09:38:58.504446 comef 8064 R rec 46fe368a-d293-4336-a0af-3cda130e9850 +2024-07-29 09:38:58.596323 2024-07-29 09:38:58.596337 comef 8065 R rec 8fa8805a-ca83-4ee4-9eeb-10852777a551 +2024-07-29 09:38:58.692036 2024-07-29 09:38:58.692047 comef 8066 R rec c176cfbe-8bd2-4d7b-bbbd-18f0339ba556 +2024-07-29 09:38:58.783052 2024-07-29 09:38:58.783067 comef 8067 R rec d2c94394-08fc-412b-afa5-aa1e5eaa9aa8 +2024-07-29 09:38:58.935867 2024-07-29 09:38:58.935872 comef 8068 R rec 8acc55a4-548f-47b8-a1ce-eaba476d9b0c +2024-07-29 09:38:58.990228 2024-07-29 09:38:58.990233 comef 8069 R rec bcb448a7-a109-4f0d-94a3-af2e3c020e16 +2024-07-29 09:38:59.042874 2024-07-29 09:38:59.042878 comef 8070 R rec a3b56787-e146-4bf6-baf1-2a08eee5b867 +2024-07-29 09:38:59.092998 2024-07-29 09:38:59.093027 comef 8071 R rec 14af3389-a3b3-43e1-aa3c-183efcddbfa6 +2024-07-29 09:38:59.153093 2024-07-29 09:38:59.153098 comef 8072 R rec 0152b5f4-1eee-402d-90f8-f9c6d52b73c7 +2024-07-29 09:38:59.207593 2024-07-29 09:38:59.207603 comef 8073 R rec d38e35d5-ba3b-4954-af91-075e29e11774 +2024-07-29 09:38:59.276747 2024-07-29 09:38:59.276759 comef 8074 R rec e60cddf3-8ccd-4c5d-90c9-eba552098ae9 +2024-07-29 09:38:59.352783 2024-07-29 09:38:59.352794 comef 8075 R rec 4ed706a6-583a-4db8-8598-4ac7103e5a8e +2024-07-29 09:38:59.441734 2024-07-29 09:38:59.441744 comef 8076 R rec 24b22241-c744-4e5d-b79c-a812adcb2573 +2024-07-29 09:38:59.529343 2024-07-29 09:38:59.529354 comef 8077 R rec bb703196-b836-46e0-8a82-c9818a051d97 +2024-07-29 09:38:59.612155 2024-07-29 09:38:59.612167 comef 8078 R rec dcf64a3d-d78f-4646-ae64-e21b46cb2c30 +2024-07-29 09:38:59.68667 2024-07-29 09:38:59.686682 comef 8079 R rec 658ee21c-2583-4a67-9eec-3d542d3c0ed6 +2024-07-29 09:38:59.772964 2024-07-29 09:38:59.772976 comef 8080 R rec 642cd2d1-0993-42e9-a531-c29a75a90f04 +2024-07-29 09:38:59.96441 2024-07-29 09:38:59.96442 comef 8081 R rec b430e567-683b-43f8-95b3-06427d3e7e66 +2024-07-29 09:39:00.064418 2024-07-29 09:39:00.064428 comef 8082 R rec acdcf0f0-96d3-443d-bc89-9d70685ab620 +2024-07-29 09:39:00.151989 2024-07-29 09:39:00.152 comef 8083 R rec b974efb8-31c4-47fe-bdd7-78f9edac8788 +2024-07-29 09:39:00.20971 2024-07-29 09:39:00.209758 comef 8084 R rec 788899e5-341e-4c42-8dd7-30247d488510 +2024-07-29 09:39:00.288635 2024-07-29 09:39:00.288645 comef 8085 R rec bf7ea806-7ab5-4303-a13a-9e2af608a339 +2024-07-29 09:39:00.378968 2024-07-29 09:39:00.378982 comef 8086 R rec bdc7887e-ffd8-4b50-8f20-2a2942836b90 +2024-07-29 09:39:00.470151 2024-07-29 09:39:00.470165 comef 8087 R rec 2b90a237-e4ed-4921-9936-ac83c1422018 +2024-07-29 09:39:00.563462 2024-07-29 09:39:00.563475 comef 8088 R rec 0d42fd66-0faa-435d-bb7a-13043de5ac01 +2024-07-29 09:39:00.664691 2024-07-29 09:39:00.664705 comef 8089 R rec a8789d79-539a-43c9-9ed6-13e048a29114 +2024-07-29 09:39:00.758138 2024-07-29 09:39:00.758148 comef 8090 R rec 7bec5238-3985-43e0-83ef-eb05a574d85b +2024-07-29 09:39:00.854252 2024-07-29 09:39:00.854264 comef 8091 R rec a17b9b2f-de98-466b-b12e-4eca052e27f4 +2024-07-29 09:39:00.939489 2024-07-29 09:39:00.939498 comef 8092 R rec 61778768-0a74-43dd-83d1-4db3da63f579 +2024-07-29 09:39:01.028274 2024-07-29 09:39:01.028288 comef 8093 R rec 7038d0fb-39dc-4bf5-ae5f-7b6f02d3ef2d +2024-07-29 09:39:02.978549 2024-07-29 09:39:02.978553 comef 8094 R rec af55df67-d3c3-4614-9338-77b34c2be2fb +2024-07-29 09:39:03.053958 2024-07-29 09:39:03.053964 comef 8095 R rec 36e1b8e8-4412-47bc-bb7c-9c920f0d0b6e +2024-07-29 09:39:03.100738 2024-07-29 09:39:03.100743 comef 8096 R rec df2895b2-7ec6-4632-b91d-2f8c9b884083 +2024-07-29 09:39:03.141291 2024-07-29 09:39:03.141295 comef 8097 R rec 6b2b9bbc-71bd-4317-ab3f-283061043ead +2024-07-29 09:39:03.182369 2024-07-29 09:39:03.182374 comef 8098 R rec ee32fecb-8a6b-48f7-acc2-e72e44ba57f6 +2024-07-29 09:39:03.222021 2024-07-29 09:39:03.222025 comef 8099 R rec f00b3dc5-f368-4381-99ff-87e7f47aa927 +2024-07-29 09:39:03.26372 2024-07-29 09:39:03.263725 comef 8100 R rec e4a8ef28-26da-4862-a2cf-82ee88a5efd3 +2024-07-29 09:39:03.32341 2024-07-29 09:39:03.32342 comef 8101 R rec cf17deba-8cdd-4ef4-8c5b-85439553f597 +2024-07-29 09:39:03.387766 2024-07-29 09:39:03.387777 comef 8102 R rec ebe95f19-e4cd-4efc-b2e1-ae478e18bdfe +2024-07-29 09:39:03.459442 2024-07-29 09:39:03.459454 comef 8103 R rec 0aef44f4-233a-467f-a696-fe35ac062097 +2024-07-29 09:39:03.542837 2024-07-29 09:39:03.542848 comef 8104 R rec 3db06be2-6fbb-40a6-a9ab-aeedc1950e92 +2024-07-29 09:39:03.622339 2024-07-29 09:39:03.622349 comef 8105 R rec f6f41b52-2748-4c38-b900-5bc6a8853ea7 +2024-07-29 09:39:03.714826 2024-07-29 09:39:03.714842 comef 8106 R rec 3260120b-08a1-4323-82b6-1774cabe15d0 +2024-07-29 09:39:03.812504 2024-07-29 09:39:03.812519 comef 8107 R rec 3eb114b4-ce49-4dc6-947a-cee5d4112ff5 +2024-07-29 09:39:03.90199 2024-07-29 09:39:03.902005 comef 8108 R rec 9a866f79-f900-49ec-b78e-83dd2fcd3fce +2024-07-29 09:39:03.997128 2024-07-29 09:39:03.997143 comef 8109 R rec 4d1e3de0-60ce-4aa9-898f-a3e4433deb18 +2024-07-29 09:39:04.088733 2024-07-29 09:39:04.088749 comef 8110 R rec 21690857-2e2c-4026-bc67-41c2b0e1e279 +2024-07-29 09:39:04.176808 2024-07-29 09:39:04.176823 comef 8111 R rec 983dfe4b-70ea-4646-9984-b38df2c9ecea +2024-07-29 09:39:04.250631 2024-07-29 09:39:04.250636 comef 8112 R rec aae555c5-6544-4ae6-91a3-577ca384874a +2024-07-29 09:39:04.306744 2024-07-29 09:39:04.306755 comef 8113 R rec 2ff8a3b5-f1a5-4945-9cb4-b9aad967b5ba +2024-07-29 09:39:04.378849 2024-07-29 09:39:04.378859 comef 8114 R rec ae394e50-63be-4530-9f1b-e778820e9368 +2024-07-29 09:39:04.460586 2024-07-29 09:39:04.460599 comef 8115 R rec 97a4850c-fabb-4159-a259-6e23c583089e +2024-07-29 09:39:04.543035 2024-07-29 09:39:04.54305 comef 8116 R rec c375f1c6-494a-4f47-be81-d2ec69e80b84 +2024-07-29 09:39:04.624807 2024-07-29 09:39:04.624817 comef 8117 R rec 72477692-dd87-4a15-b7e1-4e2d9e1ad299 +2024-07-29 09:39:04.710783 2024-07-29 09:39:04.710798 comef 8118 R rec 51c678ed-3eaf-457d-8fa1-71e15d7243cd +2024-07-29 09:39:04.798659 2024-07-29 09:39:04.798674 comef 8119 R rec 280635f6-4ea6-4a57-bfb7-593de34ba8a4 +2024-07-29 09:39:04.88682 2024-07-29 09:39:04.886835 comef 8120 R rec fa4f25f7-1474-41a6-b76b-53d51b7c3d99 +2024-07-29 09:39:04.969829 2024-07-29 09:39:04.969845 comef 8121 R rec ebbbc34a-e4f1-4813-b4de-758b6d5a4a51 +2024-07-29 09:39:05.053136 2024-07-29 09:39:05.053146 comef 8122 R rec a5a885ef-51e3-4864-b113-6b860b7e97f8 +2024-07-29 09:39:05.13695 2024-07-29 09:39:05.136965 comef 8123 R rec 1afd42e1-0fed-49bf-b1c8-c5209583adbd +2024-07-29 09:39:05.231581 2024-07-29 09:39:05.231594 comef 8124 R rec 5b80d7d2-37ca-48cf-83cd-ca99cd4d7867 +2024-07-29 09:39:05.300441 2024-07-29 09:39:05.300451 comef 8125 R rec 2e863c83-2b51-4451-9c45-9c1b0b5a5591 +2024-07-29 09:39:05.372113 2024-07-29 09:39:05.372123 comef 8126 R rec 8761bb70-9c7f-4829-9b36-1dbdb4e1fae0 +2024-07-29 09:39:05.436278 2024-07-29 09:39:05.436289 comef 8127 R rec beaaa2d9-ac0b-4bb3-addc-62e8e48b32dd +2024-07-29 09:39:05.506146 2024-07-29 09:39:05.506157 comef 8128 R rec fb0252b7-9c73-4173-a78e-0488bc150bde +2024-07-29 09:39:05.582009 2024-07-29 09:39:05.582021 comef 8129 R rec 37ec1bb0-647b-4bec-aed4-846c72559a67 +2024-07-29 09:39:05.664872 2024-07-29 09:39:05.664885 comef 8130 R rec 0bb1019c-3bdd-4781-a077-139763ffc081 +2024-07-29 09:39:05.744465 2024-07-29 09:39:05.74448 comef 8131 R rec d40bcb62-6de6-4c52-a3fd-0d318fd57b21 +2024-07-29 09:39:05.824521 2024-07-29 09:39:05.824531 comef 8132 R rec e0040b46-01b8-43b0-922a-4c192af5f396 +2024-07-29 09:39:05.905873 2024-07-29 09:39:05.905886 comef 8133 R rec a5c458a9-7979-4042-abae-0a1181eaddd4 +2024-07-29 09:39:05.989882 2024-07-29 09:39:05.989897 comef 8134 R rec f18ebccd-2039-4801-81fb-c4eb2cf4c5ca +2024-07-29 09:39:06.091098 2024-07-29 09:39:06.091115 comef 8135 R rec 274d5f95-374c-42a1-85a3-507caaa35f4b +2024-07-29 09:39:06.174343 2024-07-29 09:39:06.174356 comef 8136 R rec 0134dcf5-05e2-4596-b662-073db7cd65f1 +2024-07-29 09:39:06.256584 2024-07-29 09:39:06.256594 comef 8137 R rec fd043e28-44b9-4c70-b212-62ec4b8c0c60 +2024-07-29 09:39:06.315152 2024-07-29 09:39:06.315158 comef 8138 R rec 6d899d07-5e1f-4547-8905-25ed2a7f34d7 +2024-07-29 09:39:06.401866 2024-07-29 09:39:06.401883 comef 8139 R rec 2ef28f5a-ace5-4936-9852-76179be914d0 +2024-07-29 09:39:06.480751 2024-07-29 09:39:06.480761 comef 8140 R rec 887f2fce-3d2b-42f6-b517-5539e10dab26 +2024-07-29 09:39:06.559655 2024-07-29 09:39:06.559666 comef 8141 R rec e27a0dbc-afcc-46b4-9b54-7eaff93a107c +2024-07-29 09:39:06.634865 2024-07-29 09:39:06.634887 comef 8142 R rec d1a7ffb6-aaa2-463f-b0d2-a812678554bd +2024-07-29 09:39:06.708636 2024-07-29 09:39:06.708646 comef 8143 R rec 95ca055b-a5ac-432c-b652-a13bc57a698d +2024-07-29 09:39:06.78708 2024-07-29 09:39:06.78709 comef 8144 R rec 164621da-0aad-4a9e-beab-be86a618aa20 +2024-07-29 09:39:06.87189 2024-07-29 09:39:06.871895 comef 8145 R rec 696d61f7-01ef-460f-a5f6-dc8b5ba275e5 +2024-07-29 09:39:06.966853 2024-07-29 09:39:06.966862 comef 8146 R rec 7618e785-d483-4d3f-8f38-8889a8c3918f +2024-07-29 09:39:07.049477 2024-07-29 09:39:07.049488 comef 8147 R rec d10e6e89-63c2-4c86-b0ff-8ad64d47a728 +2024-07-29 09:39:07.141716 2024-07-29 09:39:07.141727 comef 8148 R rec 2ea0ec9e-793b-4d18-9e62-4aa2c2d89e49 +2024-07-29 09:39:07.22874 2024-07-29 09:39:07.228756 comef 8149 R rec f35b3975-fa6b-4083-9e3d-18b763b000c6 +2024-07-29 09:39:07.323679 2024-07-29 09:39:07.323684 comef 8150 R rec 6bfc300b-9dfc-4119-94e7-8f0dc842f6d3 +2024-07-29 09:39:07.394358 2024-07-29 09:39:07.394369 comef 8151 R rec 57ee06f0-6e27-4c82-988d-203dfd4b6513 +2024-07-29 09:39:07.476953 2024-07-29 09:39:07.476963 comef 8152 R rec b9503a94-00ec-42f2-b32e-f3f2159bc194 +2024-07-29 09:39:07.561794 2024-07-29 09:39:07.561804 comef 8153 R rec 9fd76d94-25f8-43bb-8b43-2ad1888e60a0 +2024-07-29 09:39:07.647441 2024-07-29 09:39:07.647467 comef 8154 R rec 8a8d9ada-63c5-4bdc-a475-90740b7dc543 +2024-07-29 09:39:07.731555 2024-07-29 09:39:07.731567 comef 8155 R rec 6117bbb4-e4e8-4353-9f95-0814c5d647ed +2024-07-29 09:39:07.825086 2024-07-29 09:39:07.825097 comef 8156 R rec ded89be8-98ba-435c-810c-818fe02f7a0c +2024-07-29 09:39:07.916161 2024-07-29 09:39:07.916174 comef 8157 R rec e97af95e-996b-47ca-940a-2c2007ab4fe1 +2024-07-29 09:39:07.995614 2024-07-29 09:39:07.995627 comef 8158 R rec b3f4df84-cfe0-4083-8466-60665871b3b8 +2024-07-29 09:39:08.080751 2024-07-29 09:39:08.080763 comef 8159 R rec c93b08d1-999e-45de-a529-33c9937abaed +2024-07-29 09:39:08.1685 2024-07-29 09:39:08.168513 comef 8160 R rec 86812577-0c52-4182-b5ac-e87ac5e513b5 +2024-07-29 09:39:08.2634 2024-07-29 09:39:08.263412 comef 8161 R rec edc44d06-a8ad-46a5-b746-8f175455f7f7 +2024-07-29 09:39:08.377048 2024-07-29 09:39:08.377059 comef 8162 R rec 5b88aa6a-6a75-4a87-b6c5-b51ff5347907 +2024-07-29 09:39:08.446805 2024-07-29 09:39:08.446815 comef 8163 R rec 5e494a3a-d754-4cca-8d64-0783d401f46c +2024-07-29 09:39:08.535622 2024-07-29 09:39:08.535634 comef 8164 R rec 79b7fe62-daad-49c5-a488-e789d058c0dd +2024-07-29 09:39:08.618149 2024-07-29 09:39:08.618163 comef 8165 R rec aff239f6-827a-403a-be40-440cddc0c8ef +2024-07-29 09:39:08.71385 2024-07-29 09:39:08.713862 comef 8166 R rec 45ef9aba-d650-40c6-a580-2b6bd75289fa +2024-07-29 09:39:08.809809 2024-07-29 09:39:08.809825 comef 8167 R rec 4442da28-f683-451c-8617-44ac5f654d89 +2024-07-29 09:39:08.915575 2024-07-29 09:39:08.915588 comef 8168 R rec d4ed661f-3870-4724-8780-31b24efd5814 +2024-07-29 09:39:09.015278 2024-07-29 09:39:09.015289 comef 8169 R rec 557d49c2-0dd0-4223-bcba-226556f7558e +2024-07-29 09:39:09.116621 2024-07-29 09:39:09.116633 comef 8170 R rec 2a2e01b6-861c-42e3-819e-a8d755bfeaca +2024-07-29 09:39:09.215907 2024-07-29 09:39:09.215922 comef 8171 R rec 4754b428-6547-4b1d-87a7-88627a8d5110 +2024-07-29 09:39:09.323189 2024-07-29 09:39:09.323204 comef 8172 R rec 58ce1612-27ca-4abf-9a80-1559895a486c +2024-07-29 09:39:09.406974 2024-07-29 09:39:09.406979 comef 8173 R rec f5fd6c1c-c0bc-420f-8ddf-422d9e70b914 +2024-07-29 09:39:09.499495 2024-07-29 09:39:09.499516 comef 8174 R rec 262cfdc6-f30c-481b-bfe6-14eb1e3f338a +2024-07-29 09:39:09.611086 2024-07-29 09:39:09.611097 comef 8175 R rec 41100c86-4653-4ba5-8cef-48acab7b76c3 +2024-07-29 09:39:09.692518 2024-07-29 09:39:09.692534 comef 8176 R rec 6c475c65-88c6-42e8-987c-3a7997609857 +2024-07-29 09:39:09.785918 2024-07-29 09:39:09.785932 comef 8177 R rec 45b9fd25-345c-4efe-bf1e-254fdb0c8535 +2024-07-29 09:39:09.892786 2024-07-29 09:39:09.8928 comef 8178 R rec 1ec2b098-1b91-419c-a189-22a65014e4fd +2024-07-29 09:39:09.993511 2024-07-29 09:39:09.993525 comef 8179 R rec 94dea22c-bc77-47e4-b939-759b097bdd60 +2024-07-29 09:39:10.108572 2024-07-29 09:39:10.108584 comef 8180 R rec 96f27869-7a0d-4531-bccd-0df7d9483ad4 +2024-07-29 09:39:10.235126 2024-07-29 09:39:10.235138 comef 8181 R rec ad0100b7-53d5-47f9-84a3-558059a6f2f2 +2024-07-29 09:39:10.329667 2024-07-29 09:39:10.329679 comef 8182 R rec 0a0f1403-81af-4dd6-942e-75c65ea5bb74 +2024-07-29 09:39:10.412913 2024-07-29 09:39:10.412918 comef 8183 R rec 70bdf684-3c6b-455b-8ff7-f3caae3beaf2 +2024-07-29 09:39:10.465724 2024-07-29 09:39:10.465735 comef 8184 R rec e652b5a1-e2f2-4063-a72d-a73e14921004 +2024-07-29 09:39:10.53989 2024-07-29 09:39:10.5399 comef 8185 R rec f4d4b263-ec04-4bbd-8aeb-c4981f1d53bc +2024-07-29 09:39:10.61255 2024-07-29 09:39:10.612562 comef 8186 R rec 08a2aef4-67c2-4063-88a9-4d066fc486b1 +2024-07-29 09:39:10.700027 2024-07-29 09:39:10.70004 comef 8187 R rec 24bbedc1-afb0-4099-b6b4-62920be4632f +2024-07-29 09:39:10.777374 2024-07-29 09:39:10.777389 comef 8188 R rec 8c6f34c8-bced-47e3-b122-ed53d02228f2 +2024-07-29 09:39:10.866788 2024-07-29 09:39:10.866803 comef 8189 R rec e9495903-8877-4613-af68-582cf51e8c1f +2024-07-29 09:39:10.964985 2024-07-29 09:39:10.965 comef 8190 R rec 74408197-3947-4810-9c0c-990f577c5228 +2024-07-29 09:39:11.047058 2024-07-29 09:39:11.047074 comef 8191 R rec d7eaceff-5ac3-467e-8608-bd557f63b514 +2024-07-29 09:39:11.135803 2024-07-29 09:39:11.135816 comef 8192 R rec df9f4e64-25c9-44de-ab93-ce7fd73f945a +2024-07-29 09:39:11.22621 2024-07-29 09:39:11.226225 comef 8193 R rec 1018259a-21c9-4305-b04a-da9762359069 +2024-07-29 09:39:11.317821 2024-07-29 09:39:11.317836 comef 8194 R rec 982024f3-69a4-41c0-a63c-0d590a9bdc4b +2024-07-29 09:39:11.412496 2024-07-29 09:39:11.412508 comef 8195 R rec d9c27d34-351c-44b6-a659-9074bf5d58eb +2024-07-29 09:39:11.469571 2024-07-29 09:39:11.469576 comef 8196 R rec 154fc23f-5165-4cc0-bf47-83aa02be1240 +2024-07-29 09:39:11.539583 2024-07-29 09:39:11.539588 comef 8197 R rec 3732a57e-bc9c-49e1-b61a-7e0ab1918e2f +2024-07-29 09:39:11.607485 2024-07-29 09:39:11.607496 comef 8198 R rec 35c949a8-5528-492d-a1c4-8b6a277e6d66 +2024-07-29 09:39:11.688529 2024-07-29 09:39:11.688543 comef 8199 R rec 479ce25c-fe8b-482d-b21b-34ac4f9ebb6c +2024-07-29 09:39:11.764114 2024-07-29 09:39:11.764125 comef 8200 R rec 940ff891-df17-47c9-a137-be6744b26902 +2024-07-29 09:39:11.845863 2024-07-29 09:39:11.845873 comef 8201 R rec 47a2b6ee-c902-49f6-b13f-6271b1fcf6d8 +2024-07-29 09:39:11.933553 2024-07-29 09:39:11.933567 comef 8202 R rec d7b12355-13a7-4082-b837-ef6e5bff6a1f +2024-07-29 09:39:12.019954 2024-07-29 09:39:12.019969 comef 8203 R rec 93b2c61e-4596-42d5-a17e-3bc7d60268b1 +2024-07-29 09:39:12.105961 2024-07-29 09:39:12.105975 comef 8204 R rec 6ab7ca2b-1bc2-4537-81bd-289bc94c9611 +2024-07-29 09:39:12.190536 2024-07-29 09:39:12.190546 comef 8205 R rec 7fa162f9-b74e-4904-b22a-f7c96bd85001 +2024-07-29 09:39:12.263338 2024-07-29 09:39:12.263349 comef 8206 R rec 1721fb89-8e21-484b-8db5-877e82bca6a7 +2024-07-29 09:39:12.347181 2024-07-29 09:39:12.347196 comef 8207 R rec 4b5c2384-4814-46ef-ad8a-ee0e5c113883 +2024-07-29 09:39:12.429036 2024-07-29 09:39:12.429045 comef 8208 R rec 034424fc-b7fc-40b9-86a4-33039ae8363c +2024-07-29 09:39:12.489453 2024-07-29 09:39:12.489457 comef 8209 R rec 4271a95e-be31-4cab-a72b-6b731075fc0a +2024-07-29 09:39:12.547052 2024-07-29 09:39:12.547063 comef 8210 R rec c605bdce-0de0-4ad6-ba2c-45138d996dcd +2024-07-29 09:39:12.612461 2024-07-29 09:39:12.612474 comef 8211 R rec cd0e08d3-638c-473b-8472-0b771979a666 +2024-07-29 09:39:12.696193 2024-07-29 09:39:12.696203 comef 8212 R rec 1bc37e3c-e414-440e-aec6-e2a8159c621d +2024-07-29 09:39:12.786 2024-07-29 09:39:12.786016 comef 8213 R rec 801d36ac-058f-44d0-a38e-8d9054b09272 +2024-07-29 09:39:12.869311 2024-07-29 09:39:12.869326 comef 8214 R rec 6af88c16-b91d-4f7c-872d-d8e20d06d127 +2024-07-29 09:39:12.965774 2024-07-29 09:39:12.965785 comef 8215 R rec 54a1dd7d-8f9f-403c-8a50-e60d39dc7b7f +2024-07-29 09:39:13.051699 2024-07-29 09:39:13.051711 comef 8216 R rec 6e3213a9-0215-4958-bdd8-68ed6a5aaa8c +2024-07-29 09:39:13.133654 2024-07-29 09:39:13.133669 comef 8217 R rec 3cd8d021-38aa-4578-be19-416c3a3435e9 +2024-07-29 09:39:13.219469 2024-07-29 09:39:13.219479 comef 8218 R rec 6480ce59-1bd7-4c5f-a0c7-cd9c602223f2 +2024-07-29 09:39:13.321631 2024-07-29 09:39:13.321666 comef 8219 R rec 236a4a91-7696-4779-a42e-5c2c017ea675 +2024-07-29 09:39:13.433372 2024-07-29 09:39:13.433383 comef 8220 R rec b431ac9d-663f-44ea-abde-77fedbcc361b +2024-07-29 09:39:13.518568 2024-07-29 09:39:13.518574 comef 8221 R rec 21b9f18c-7ddc-4341-8095-83807e40bea2 +2024-07-29 09:39:13.582519 2024-07-29 09:39:13.582529 comef 8222 R rec d3bf7cfe-4665-4d1d-870d-33a5acd50920 +2024-07-29 09:39:13.655309 2024-07-29 09:39:13.655321 comef 8223 R rec 140e1883-7a38-4094-8eed-cc157d621fa9 +2024-07-29 09:39:13.742669 2024-07-29 09:39:13.742682 comef 8224 R rec 4111ca1c-04cc-4ec6-8601-7b8eefefedd9 +2024-07-29 09:39:13.829752 2024-07-29 09:39:13.829765 comef 8225 R rec 470ba4fb-bbc4-4c7b-a3a7-f142bb303e33 +2024-07-29 09:39:13.919191 2024-07-29 09:39:13.919201 comef 8226 R rec 11ee4591-1e52-4f0e-807a-dfe962cca8c0 +2024-07-29 09:39:14.011867 2024-07-29 09:39:14.011905 comef 8227 R rec b4ff9f52-2383-4e81-95d6-e390786b5c6b +2024-07-29 09:39:14.089191 2024-07-29 09:39:14.089204 comef 8228 R rec 4e2d0742-7b82-4753-aa71-c0d6f5843cf8 +2024-07-29 09:39:14.176283 2024-07-29 09:39:14.176292 comef 8229 R rec 4b75bd7e-fc46-419e-980d-e9c1a9a8db47 +2024-07-29 09:39:14.258814 2024-07-29 09:39:14.25883 comef 8230 R rec ba16d2f0-5419-442f-9e37-d34a73cdc378 +2024-07-29 09:39:14.356822 2024-07-29 09:39:14.356832 comef 8231 R rec c4e60345-7c88-4cb7-aa9b-def0a1478ade +2024-07-29 09:39:14.450953 2024-07-29 09:39:14.450976 comef 8232 R rec 75cc7448-5078-4955-af32-aad8f53a112c +2024-07-29 09:39:14.531362 2024-07-29 09:39:14.531367 comef 8233 R rec 62e370cb-a078-4308-ad7d-fa181f48dae7 +2024-07-29 09:39:14.595902 2024-07-29 09:39:14.595913 comef 8234 R rec 2d4d98fb-671a-4253-b6ad-f57c8cec2e2f +2024-07-29 09:39:14.669091 2024-07-29 09:39:14.669103 comef 8235 R rec 6c0e84e3-f1f9-4eb3-92bb-0ab01c98e2ac +2024-07-29 09:39:14.736802 2024-07-29 09:39:14.736812 comef 8236 R rec b536aad6-0d2c-49fa-8eb8-48e36f53d0ee +2024-07-29 09:39:14.816065 2024-07-29 09:39:14.816075 comef 8237 R rec b48bd03a-a5d3-426f-a412-597c5ecf82a1 +2024-07-29 09:39:14.903634 2024-07-29 09:39:14.903646 comef 8238 R rec 0bc3dd62-4144-40fa-91ae-f97c487eebfa +2024-07-29 09:39:14.984791 2024-07-29 09:39:14.984804 comef 8239 R rec 9ad18abf-6d09-4f26-b1f1-edb0eda83e51 +2024-07-29 09:39:15.07026 2024-07-29 09:39:15.07027 comef 8240 R rec a5850b61-5989-49fc-a54c-58601f6323d4 +2024-07-29 09:39:15.157778 2024-07-29 09:39:15.157792 comef 8241 R rec d5518448-364d-4564-b75c-752de31e246f +2024-07-29 09:39:15.248136 2024-07-29 09:39:15.248151 comef 8242 R rec 87fb52fd-67d4-4fdb-819e-d808f3918546 +2024-07-29 09:39:15.337265 2024-07-29 09:39:15.33728 comef 8243 R rec f57ad7d9-b8b1-4f37-87a5-2e2eb72c48a3 +2024-07-29 09:39:15.421041 2024-07-29 09:39:15.421051 comef 8244 R rec 4c38eeaf-e22d-4fe4-adcd-544e31157a75 +2024-07-29 09:39:15.499914 2024-07-29 09:39:15.499929 comef 8245 R rec 3e685aae-bd75-4319-95ff-b21ae66a9e03 +2024-07-29 09:39:15.568312 2024-07-29 09:39:15.568318 comef 8246 R rec f10e8479-0eaa-40a0-8937-7efe83aa03ca +2024-07-29 09:39:15.625268 2024-07-29 09:39:15.625312 comef 8247 R rec 0e7bcb98-4eef-4c87-a43a-dbe817fc380a +2024-07-29 09:39:15.699256 2024-07-29 09:39:15.699266 comef 8248 R rec 37e80de2-4db8-4213-9951-77d225a54626 +2024-07-29 09:39:15.774006 2024-07-29 09:39:15.774019 comef 8249 R rec 4043f110-d071-4750-8e21-a8fd13c8a158 +2024-07-29 09:39:15.86213 2024-07-29 09:39:15.862145 comef 8250 R rec 8ded1ff4-7874-4a7f-9aa7-ffbcb89c0366 +2024-07-29 09:39:15.951079 2024-07-29 09:39:15.95109 comef 8251 R rec e84d9684-92cc-4dcf-8ff3-24e97758902b +2024-07-29 09:39:16.04346 2024-07-29 09:39:16.043473 comef 8252 R rec 796e0ee9-52c2-4a77-a640-bfa345610492 +2024-07-29 09:39:16.130461 2024-07-29 09:39:16.130476 comef 8253 R rec eab0a608-9814-481d-8624-a77a4a5ac83d +2024-07-29 09:39:16.222578 2024-07-29 09:39:16.222591 comef 8254 R rec 344f5a36-fac0-4809-84ad-ecb5b97aa519 +2024-07-29 09:39:16.307346 2024-07-29 09:39:16.307361 comef 8255 R rec 6f5c765a-ccd5-4d4f-b403-ae4650c35c0a +2024-07-29 09:39:16.392148 2024-07-29 09:39:16.392158 comef 8256 R rec 0ec01e2d-a667-43aa-bc56-470850351abe +2024-07-29 09:39:16.487076 2024-07-29 09:39:16.487088 comef 8257 R rec bd323caf-9523-4ed8-8d91-ff492daed783 +2024-07-29 09:39:16.578574 2024-07-29 09:39:16.578585 comef 8258 R rec b8462cc4-a527-4b1e-94a6-965b97a35e39 +2024-07-29 09:39:16.640372 2024-07-29 09:39:16.640383 comef 8259 R rec 1935872a-a9cb-4997-878b-f9be95e00b9c +2024-07-29 09:39:16.716626 2024-07-29 09:39:16.716638 comef 8260 R rec 52022614-1d3c-4df1-91f6-98a37fa44689 +2024-07-29 09:39:16.797367 2024-07-29 09:39:16.797378 comef 8261 R rec a97beda2-a0ee-4cff-aa0b-9a0f775d4143 +2024-07-29 09:39:16.886006 2024-07-29 09:39:16.886019 comef 8262 R rec 3c143cbe-2822-48a3-aff2-cbd74b338bb2 +2024-07-29 09:39:16.963848 2024-07-29 09:39:16.963858 comef 8263 R rec d88031f9-42d3-455a-8788-7a1023c9418d +2024-07-29 09:39:17.041298 2024-07-29 09:39:17.041309 comef 8264 R rec cde86b36-ca17-4e0d-a2a7-16411506a77a +2024-07-29 09:39:17.121983 2024-07-29 09:39:17.121993 comef 8265 R rec 6c3ce559-7733-4b9f-842c-82ea1c6ebb91 +2024-07-29 09:39:17.208518 2024-07-29 09:39:17.20853 comef 8266 R rec 76a81fed-9263-4fa3-98d9-c48ecb1771e4 +2024-07-29 09:39:17.290126 2024-07-29 09:39:17.290142 comef 8267 R rec 30c422bb-25f9-43e7-8546-577a8f845922 +2024-07-29 09:39:17.385611 2024-07-29 09:39:17.385624 comef 8268 R rec 29b6e716-dc70-4afe-a451-f998c186bdc7 +2024-07-29 09:39:17.475373 2024-07-29 09:39:17.475388 comef 8269 R rec ea89901b-735e-47a0-91ba-78200e4e57f8 +2024-07-29 09:39:17.565824 2024-07-29 09:39:17.565839 comef 8270 R rec 39974fd1-2f6a-4748-ad58-9f60450d4f36 +2024-07-29 09:39:17.635236 2024-07-29 09:39:17.635241 comef 8271 R rec cb2a0d50-075e-4d4e-bd9b-ab1a12b79dd1 +2024-07-29 09:39:17.701286 2024-07-29 09:39:17.701299 comef 8272 R rec 3a1e792b-a2b3-479b-a9a3-429896ec31ac +2024-07-29 09:39:17.788546 2024-07-29 09:39:17.788559 comef 8273 R rec fa21c35b-3d29-4e53-9d1c-587d058b1505 +2024-07-29 09:39:17.874622 2024-07-29 09:39:17.874633 comef 8274 R rec df241e6f-e16f-4bfe-9662-3043dfe6f525 +2024-07-29 09:39:17.965803 2024-07-29 09:39:17.965814 comef 8275 R rec d420bb06-9cef-451e-85a1-c944e6f5cd00 +2024-07-29 09:39:18.053315 2024-07-29 09:39:18.053326 comef 8276 R rec ec01f28f-27f1-455c-bdd4-7eb56a5778e5 +2024-07-29 09:39:18.146191 2024-07-29 09:39:18.146206 comef 8277 R rec 4a9aefa5-af98-4a21-9dbe-91ed28f23888 +2024-07-29 09:39:18.242231 2024-07-29 09:39:18.242241 comef 8278 R rec 6517ad81-162a-4cec-9148-3a30eb35d0ea +2024-07-29 09:39:18.334013 2024-07-29 09:39:18.334029 comef 8279 R rec 5299fbee-be41-47b5-93c3-4c4e2c9cdbde +2024-07-29 09:39:18.442349 2024-07-29 09:39:18.442364 comef 8280 R rec bfbd7388-92e1-449e-9901-80215f558934 +2024-07-29 09:39:18.532421 2024-07-29 09:39:18.532436 comef 8281 R rec 12442da0-e4fe-4c58-8e74-c725c5e901a0 +2024-07-29 09:39:18.620474 2024-07-29 09:39:18.620486 comef 8282 R rec 29c6d154-14c8-406f-9e1f-b55c4c70a6ba +2024-07-29 09:39:18.690028 2024-07-29 09:39:18.69004 comef 8283 R rec efe783a8-25ca-46d2-9224-87b1ddc01f89 +2024-07-29 09:39:18.764539 2024-07-29 09:39:18.764551 comef 8284 R rec 3e457059-0432-4fdc-9ff1-e443c0f8df31 +2024-07-29 09:39:18.844402 2024-07-29 09:39:18.844416 comef 8285 R rec 11467417-ad51-4ef4-9179-17aa3fd1a836 +2024-07-29 09:39:18.93435 2024-07-29 09:39:18.934362 comef 8286 R rec 012676d7-af47-44fa-a54a-cabc87b8bd57 +2024-07-29 09:39:19.025184 2024-07-29 09:39:19.025194 comef 8287 R rec d0be7e53-256b-4780-8fc2-4355a8c89677 +2024-07-29 09:39:19.11156 2024-07-29 09:39:19.111571 comef 8288 R rec 58470d4e-732d-461c-8686-ac35611938e9 +2024-07-29 09:39:19.192217 2024-07-29 09:39:19.192229 comef 8289 R rec f6b147b8-3c82-4e77-85a0-9e9d7dedda2f +2024-07-29 09:39:19.279761 2024-07-29 09:39:19.279777 comef 8290 R rec 0c084514-5cc6-4b8b-ac19-b9cfbd4dc49e +2024-07-29 09:39:19.36743 2024-07-29 09:39:19.367445 comef 8291 R rec a0c455cc-3c2c-4fa6-9193-227d516fa94b +2024-07-29 09:39:19.459956 2024-07-29 09:39:19.459971 comef 8292 R rec e28e2f7d-31bc-4db1-8bbc-c44a5c64ded4 +2024-07-29 09:39:19.552587 2024-07-29 09:39:19.5526 comef 8293 R rec 184a519a-42b0-4492-ac8f-982e351e6127 +2024-07-29 09:39:19.639252 2024-07-29 09:39:19.639268 comef 8294 R rec b07f440b-b3db-4a9d-a75e-901423fb012b +2024-07-29 09:39:19.702952 2024-07-29 09:39:19.702961 comef 8295 R rec a56baca8-06d3-4e57-a202-b633fe20d0cb +2024-07-29 09:39:19.77161 2024-07-29 09:39:19.771621 comef 8296 R rec 7c6d3afb-06ff-4aa5-b8d2-ac6e6476ab09 +2024-07-29 09:39:19.848477 2024-07-29 09:39:19.848489 comef 8297 R rec 0819cb80-ce41-469b-bdb1-a679812f9c5b +2024-07-29 09:39:19.936476 2024-07-29 09:39:19.936491 comef 8298 R rec 4a1e1d66-0252-4891-aafc-ebc35bd6c147 +2024-07-29 09:39:20.024046 2024-07-29 09:39:20.024061 comef 8299 R rec a819cfae-4173-4a10-a7a4-e530fb8a694b +2024-07-29 09:39:20.116624 2024-07-29 09:39:20.116633 comef 8300 R rec 743f697e-cb68-431b-bf24-fd978313ad06 +2024-07-29 09:39:20.211013 2024-07-29 09:39:20.211023 comef 8301 R rec b113dc27-0c7a-4063-87b5-bb08884ce7b7 +2024-07-29 09:39:20.313443 2024-07-29 09:39:20.313458 comef 8302 R rec 14f6e9f6-3734-423c-b80e-99f59f9da729 +2024-07-29 09:39:20.391999 2024-07-29 09:39:20.392011 comef 8303 R rec fcd1c292-a869-46fa-a304-c63c2af1712f +2024-07-29 09:39:20.477426 2024-07-29 09:39:20.477441 comef 8304 R rec 33933013-4b27-473e-b76c-9f117279f873 +2024-07-29 09:39:20.566524 2024-07-29 09:39:20.566538 comef 8305 R rec 7172ab5d-068f-4e56-92cb-cc59d7bd2a16 +2024-07-29 09:39:20.658869 2024-07-29 09:39:20.658884 comef 8306 R rec c06c7720-6fc6-4d18-aa86-4b19c3487e8f +2024-07-29 09:39:20.72293 2024-07-29 09:39:20.72294 comef 8307 R rec e25b6d54-75cc-4e6c-ad27-add02ba4966a +2024-07-29 09:39:20.793885 2024-07-29 09:39:20.793897 comef 8308 R rec fdb39a47-93d2-402a-b274-b2d8e94c7917 +2024-07-29 09:39:20.882826 2024-07-29 09:39:20.882836 comef 8309 R rec 6af3ba93-2349-4f06-b337-b699732c480a +2024-07-29 09:39:20.966267 2024-07-29 09:39:20.966282 comef 8310 R rec b1b7e1a5-cbd4-45ef-86ba-f53fe5ec5cb0 +2024-07-29 09:39:21.060227 2024-07-29 09:39:21.060238 comef 8311 R rec 1041675d-bbf3-46fe-ba91-fdb168b68680 +2024-07-29 09:39:21.14831 2024-07-29 09:39:21.148323 comef 8312 R rec be233f2c-9bbe-40ad-9272-b3e2677e3643 +2024-07-29 09:39:21.239528 2024-07-29 09:39:21.239543 comef 8313 R rec 758ec6e1-e4bc-48a5-8f56-68953e380b03 +2024-07-29 09:39:21.327579 2024-07-29 09:39:21.327595 comef 8314 R rec 9110aefe-753a-45e0-8ab8-8de0c6b236cc +2024-07-29 09:39:21.416499 2024-07-29 09:39:21.416515 comef 8315 R rec 4b8c30b1-1512-4cc7-8f1c-e4f8cc67ead1 +2024-07-29 09:39:21.503608 2024-07-29 09:39:21.503623 comef 8316 R rec 863c5af2-d288-4d9c-9cad-f696c5937b42 +2024-07-29 09:39:21.592529 2024-07-29 09:39:21.592544 comef 8317 R rec b4c758b2-2d16-4896-86c7-2d04fcc44ead +2024-07-29 09:39:21.689405 2024-07-29 09:39:21.68942 comef 8318 R rec b9ed2885-2827-4d60-959a-7bcbd0a52531 +2024-07-29 09:39:21.757369 2024-07-29 09:39:21.757378 comef 8319 R rec 09a1628d-59c0-4c78-91ba-1dbbc08ad52c +2024-07-29 09:39:21.822848 2024-07-29 09:39:21.822859 comef 8320 R rec 7756e702-3a8e-4bb0-90a9-0ab30abaf852 +2024-07-29 09:39:21.899566 2024-07-29 09:39:21.899581 comef 8321 R rec d8daa792-8195-4dd4-adbb-c4a8fbbfed3f +2024-07-29 09:39:21.991463 2024-07-29 09:39:21.991475 comef 8322 R rec 47ee47a0-93fa-454f-ae7b-e64aa263a3c1 +2024-07-29 09:39:22.08501 2024-07-29 09:39:22.085025 comef 8323 R rec 50eae9e4-38a0-429e-9f43-227c5ff22db4 +2024-07-29 09:39:22.175741 2024-07-29 09:39:22.175755 comef 8324 R rec 2fa3f94b-0562-4fae-9346-94934c9c5e9f +2024-07-29 09:39:22.260411 2024-07-29 09:39:22.260422 comef 8325 R rec 4b17c12f-136d-421f-a716-a21803b3918c +2024-07-29 09:39:22.338567 2024-07-29 09:39:22.338577 comef 8326 R rec a80a376f-3959-4511-bf9f-4181a11dfa11 +2024-07-29 09:39:22.416411 2024-07-29 09:39:22.416422 comef 8327 R rec 3af3000e-9228-415b-9081-240494693254 +2024-07-29 09:39:22.504618 2024-07-29 09:39:22.504633 comef 8328 R rec ea6031a0-0b60-4613-a9e8-c9ac244c7c87 +2024-07-29 09:39:22.592321 2024-07-29 09:39:22.59233 comef 8329 R rec 8d16c67e-e75f-4a59-90f1-5b71486f5507 +2024-07-29 09:39:22.68708 2024-07-29 09:39:22.687095 comef 8330 R rec 6473331d-6bdf-4e0e-a984-3d4d1a39bda7 +2024-07-29 09:39:22.763372 2024-07-29 09:39:22.763378 comef 8331 R rec 359cb60a-cc2f-4f08-aebb-036c95b638a0 +2024-07-29 09:39:22.832629 2024-07-29 09:39:22.83264 comef 8332 R rec 82c56690-fa1c-44bb-a15c-05a546857d44 +2024-07-29 09:39:22.907678 2024-07-29 09:39:22.90769 comef 8333 R rec 1b14d221-3ab1-4d2e-8670-528b79bbf2bf +2024-07-29 09:39:22.978879 2024-07-29 09:39:22.978891 comef 8334 R rec 0ebb6d41-6459-48cf-8b49-72ccdefeebf7 +2024-07-29 09:39:23.058853 2024-07-29 09:39:23.058864 comef 8335 R rec 3e710ac4-4aaf-409c-8dd2-b2fd1672cc44 +2024-07-29 09:39:23.148255 2024-07-29 09:39:23.14827 comef 8336 R rec a41fed94-6a02-4155-8d9c-c3886d495730 +2024-07-29 09:39:23.241572 2024-07-29 09:39:23.241587 comef 8337 R rec 54866b8f-74d7-4c24-8a24-a7d29e2e30d1 +2024-07-29 09:39:23.332463 2024-07-29 09:39:23.332477 comef 8338 R rec a598f99c-49fd-4eca-81c3-eefe5ade32ae +2024-07-29 09:39:23.428884 2024-07-29 09:39:23.428895 comef 8339 R rec 53dbb365-4987-4a86-9492-edd93bda2ee5 +2024-07-29 09:39:23.523998 2024-07-29 09:39:23.524014 comef 8340 R rec c92af0a6-9cf0-456e-b849-deaea6a16763 +2024-07-29 09:39:23.608894 2024-07-29 09:39:23.608909 comef 8341 R rec 27546f35-1210-4672-be0e-358b2d749e16 +2024-07-29 09:39:23.712245 2024-07-29 09:39:23.712255 comef 8342 R rec c78b7d53-15f6-4266-a4dd-6878fd235015 +2024-07-29 09:39:23.792554 2024-07-29 09:39:23.792564 comef 8343 R rec 79fb2e80-1cb4-449a-ab71-f5de573d2a98 +2024-07-29 09:39:23.857017 2024-07-29 09:39:23.857028 comef 8344 R rec cac59fc0-ca30-4442-8669-646cafb6e78f +2024-07-29 09:39:23.935587 2024-07-29 09:39:23.935599 comef 8345 R rec 874ac7ee-63c2-4289-8694-10deddc301de +2024-07-29 09:39:24.022787 2024-07-29 09:39:24.022802 comef 8346 R rec 7d4d0019-ca22-44f6-b0bd-974f28615932 +2024-07-29 09:39:24.107892 2024-07-29 09:39:24.107904 comef 8347 R rec ee524752-e2ea-4bfe-bb9e-53b7059d0298 +2024-07-29 09:39:24.19627 2024-07-29 09:39:24.196285 comef 8348 R rec 58c605bd-8f2c-40ba-8aa2-4d12afe76450 +2024-07-29 09:39:24.27477 2024-07-29 09:39:24.274779 comef 8349 R rec 4e77196e-b3e6-4b1c-afe6-c0efed7c1141 +2024-07-29 09:39:24.377416 2024-07-29 09:39:24.377428 comef 8350 R rec 8e300ef7-7b0f-48d1-a090-2b0793a757a8 +2024-07-29 09:39:24.46539 2024-07-29 09:39:24.465401 comef 8351 R rec e1bd58a1-e8c3-4972-9836-b7f9b4ec3b0c +2024-07-29 09:39:24.555818 2024-07-29 09:39:24.555833 comef 8352 R rec 41eef8c7-bf61-4809-80bb-7205c7c08db9 +2024-07-29 09:39:24.640447 2024-07-29 09:39:24.640462 comef 8353 R rec 192fec68-8444-4b09-9ad2-b39793b8d7d6 +2024-07-29 09:39:24.733053 2024-07-29 09:39:24.733066 comef 8354 R rec baf97a42-4ac5-4fa0-b64b-b292dc4cf95b +2024-07-29 09:39:24.808591 2024-07-29 09:39:24.808596 comef 8355 R rec 63ddfbf1-6a07-4518-91cf-a6b5e1e836b4 +2024-07-29 09:39:24.859232 2024-07-29 09:39:24.859237 comef 8356 R rec 24141983-0878-4395-a789-18cfce8e2155 +2024-07-29 09:39:24.922911 2024-07-29 09:39:24.922922 comef 8357 R rec 25232e46-ea85-4292-845a-47d1e5b08f38 +2024-07-29 09:39:24.993185 2024-07-29 09:39:24.993198 comef 8358 R rec 39576bd0-656d-43c0-9e44-56a3b7b2c37c +2024-07-29 09:39:25.076076 2024-07-29 09:39:25.076091 comef 8359 R rec ff5b353e-25d7-481c-947c-29d0686616d9 +2024-07-29 09:39:25.158876 2024-07-29 09:39:25.158891 comef 8360 R rec 13fb5dc2-0003-46fa-af9e-2e7db8848bde +2024-07-29 09:39:25.243144 2024-07-29 09:39:25.243158 comef 8361 R rec a5417057-ea54-4d86-afd2-1fb62cc9840d +2024-07-29 09:39:25.334065 2024-07-29 09:39:25.334075 comef 8362 R rec 74c2340a-4066-4730-8c07-32773b0403a5 +2024-07-29 09:39:25.425877 2024-07-29 09:39:25.425892 comef 8363 R rec 48ea1c2a-0ee9-4fbf-966c-6346cb02f895 +2024-07-29 09:39:25.516755 2024-07-29 09:39:25.516769 comef 8364 R rec 83e7fd7f-2dc0-444c-8510-18355aa5397f +2024-07-29 09:39:25.604055 2024-07-29 09:39:25.604069 comef 8365 R rec 06681fa2-5d65-4fcf-8eb6-4e86d2ed07e4 +2024-07-29 09:39:25.691797 2024-07-29 09:39:25.691808 comef 8366 R rec bdd2c35d-0536-43fd-bdad-e08994d3f943 +2024-07-29 09:39:25.779333 2024-07-29 09:39:25.779346 comef 8367 R rec c269ce5b-12ad-4e81-9f7c-3f691a3eff04 +2024-07-29 09:39:25.863595 2024-07-29 09:39:25.863605 comef 8368 R rec fa2f03a2-3e72-4f44-97e9-770944aa168f +2024-07-29 09:39:25.929455 2024-07-29 09:39:25.929508 comef 8369 R rec adfe6153-98a6-4e07-b95c-b964f09b2d5e +2024-07-29 09:39:26.006325 2024-07-29 09:39:26.00634 comef 8370 R rec 4af81281-46a3-49dd-b867-357aea1ce661 +2024-07-29 09:39:26.083422 2024-07-29 09:39:26.083437 comef 8371 R rec ec7afd95-34e9-42d6-9597-f94a2517fd8f +2024-07-29 09:39:26.168752 2024-07-29 09:39:26.168767 comef 8372 R rec fb1f9dca-27d4-4551-be0e-c13b9cbc5fd0 +2024-07-29 09:39:26.255871 2024-07-29 09:39:26.255887 comef 8373 R rec f98baac9-1f10-4aa4-bf48-80f3059c7b6a +2024-07-29 09:39:26.345054 2024-07-29 09:39:26.345069 comef 8374 R rec defe6a85-82ff-4a40-a1d1-8f2c3c65fb4e +2024-07-29 09:39:26.42319 2024-07-29 09:39:26.423206 comef 8375 R rec 49aa4cef-687f-4b5a-aeb7-f8da82d72b67 +2024-07-29 09:39:26.509171 2024-07-29 09:39:26.509186 comef 8376 R rec d0a01518-9c3d-42c1-b656-5f0e90b516cc +2024-07-29 09:39:26.588879 2024-07-29 09:39:26.588894 comef 8377 R rec e60ae934-ff0c-4d99-bc89-a850d17011ae +2024-07-29 09:39:26.672121 2024-07-29 09:39:26.672133 comef 8378 R rec 1c563c44-a720-4fba-aef2-1546af47265e +2024-07-29 09:39:26.759456 2024-07-29 09:39:26.759472 comef 8379 R rec 730f2bd4-28af-443c-a147-105616a1e135 +2024-07-29 09:39:26.858618 2024-07-29 09:39:26.85863 comef 8380 R rec 6f44d072-5a5c-40d9-92a8-395fff6bcf60 +2024-07-29 09:39:26.925987 2024-07-29 09:39:26.925997 comef 8381 R rec f9a3999f-a8eb-45fb-95c5-339ea8498ce1 +2024-07-29 09:39:26.991864 2024-07-29 09:39:26.991876 comef 8382 R rec 3c8cdfcd-79f3-4d23-8779-1a814b65bf4b +2024-07-29 09:39:27.059494 2024-07-29 09:39:27.059506 comef 8383 R rec 3bd92525-8cde-4fcd-8a6e-f8fe7367d049 +2024-07-29 09:39:27.138105 2024-07-29 09:39:27.13812 comef 8384 R rec 922bc2ee-98aa-4f92-83cd-4d208d5edce0 +2024-07-29 09:39:27.227948 2024-07-29 09:39:27.227963 comef 8385 R rec 0cf3f7bd-7fcd-4257-90de-d22c39330783 +2024-07-29 09:39:27.308373 2024-07-29 09:39:27.308384 comef 8386 R rec 096b91dd-2621-4eba-8181-f3e358d04110 +2024-07-29 09:39:27.391178 2024-07-29 09:39:27.391189 comef 8387 R rec e311ff46-c654-48b0-9f72-00ed99f3f8aa +2024-07-29 09:39:27.4741 2024-07-29 09:39:27.474112 comef 8388 R rec d3f842b6-322b-4003-a030-62436b0fb07e +2024-07-29 09:39:27.571857 2024-07-29 09:39:27.571872 comef 8389 R rec 7870efd2-35a2-41f7-8b10-0665d9b13582 +2024-07-29 09:39:27.658342 2024-07-29 09:39:27.658354 comef 8390 R rec d3e33e8e-ae7b-4d25-a741-d7da763846f9 +2024-07-29 09:39:27.743442 2024-07-29 09:39:27.743455 comef 8391 R rec e21fb56c-6c6d-455a-8bc7-d2b58036c347 +2024-07-29 09:39:27.826214 2024-07-29 09:39:27.826229 comef 8392 R rec e86d4605-f7c6-4b4f-b438-da4b86ab2618 +2024-07-29 09:39:27.906673 2024-07-29 09:39:27.906678 comef 8393 R rec e2b6b34c-af4e-41e9-8544-db9441f6ed23 +2024-07-29 09:39:27.96108 2024-07-29 09:39:27.96109 comef 8394 R rec 7727fba1-e41f-436b-94d8-14a27b986825 +2024-07-29 09:39:28.055458 2024-07-29 09:39:28.055474 comef 8395 R rec c6f1d455-5c1a-4bbc-8cc0-364cfd7f7312 +2024-07-29 09:39:28.141231 2024-07-29 09:39:28.141243 comef 8396 R rec f4558730-f07c-410a-8bb1-5be543ba2d9b +2024-07-29 09:39:28.243487 2024-07-29 09:39:28.243497 comef 8397 R rec f19a2ebd-ca0c-4374-b1b3-67aab97d69ac +2024-07-29 09:39:28.356955 2024-07-29 09:39:28.356966 comef 8398 R rec 66120e93-6dd9-400d-8fbf-ec75756db0af +2024-07-29 09:39:28.460318 2024-07-29 09:39:28.460335 comef 8399 R rec 06726641-e8ba-4c99-91a7-e57547caecf8 +2024-07-29 09:39:28.554812 2024-07-29 09:39:28.554818 comef 8400 R rec ae98a923-5f1b-4bfe-8b5b-3aa97bc002f1 +2024-07-29 09:39:28.650858 2024-07-29 09:39:28.650872 comef 8401 R rec 1c63b57e-4935-4f91-8ef0-a501bb831a64 +2024-07-29 09:39:28.736733 2024-07-29 09:39:28.736749 comef 8402 R rec 5e8fd54e-b031-400a-8412-fac0b8f8a8c8 +2024-07-29 09:39:28.822145 2024-07-29 09:39:28.822156 comef 8403 R rec 42a0f9c5-e98c-497b-893d-f39751f33eee +2024-07-29 09:39:28.912267 2024-07-29 09:39:28.912272 comef 8404 R rec 25d2d67a-db8c-4b3f-9bb0-07ad8c31e67b +2024-07-29 09:39:28.965989 2024-07-29 09:39:28.966 comef 8405 R rec 9d025756-62d3-4a82-9d3f-5c40ecfe8d63 +2024-07-29 09:39:29.032586 2024-07-29 09:39:29.032598 comef 8406 R rec 3e7bfabe-e56d-4436-9d00-70b76c23c22b +2024-07-29 09:39:29.112152 2024-07-29 09:39:29.112191 comef 8407 R rec eb4108e6-cac2-4dcd-82be-9fbafbae59b2 +2024-07-29 09:39:29.190131 2024-07-29 09:39:29.190141 comef 8408 R rec 7f5f4c8a-4dee-4cb9-98fa-c90227caa1bf +2024-07-29 09:39:29.276373 2024-07-29 09:39:29.276388 comef 8409 R rec 67213a76-8fab-472e-b95c-a003d8843f13 +2024-07-29 09:39:29.358886 2024-07-29 09:39:29.358901 comef 8410 R rec 8e6c5690-596d-4fae-928c-d70a72cb1214 +2024-07-29 09:39:29.449705 2024-07-29 09:39:29.44972 comef 8411 R rec 58481e4b-7ed8-4d70-bd61-72f8b23e4f22 +2024-07-29 09:39:29.534749 2024-07-29 09:39:29.534765 comef 8412 R rec d0a25f35-a439-4b8d-bd6b-cc14ea1ed9bf +2024-07-29 09:39:29.627751 2024-07-29 09:39:29.627767 comef 8413 R rec 5dbfcd2f-5d2b-4221-892d-ca4bb7707535 +2024-07-29 09:39:29.724227 2024-07-29 09:39:29.724242 comef 8414 R rec ef61c14d-edc1-452f-af42-ad91b536acbc +2024-07-29 09:39:29.813599 2024-07-29 09:39:29.813614 comef 8415 R rec 804fa5e8-284d-4a78-b11d-be9a5a5e4849 +2024-07-29 09:39:29.908988 2024-07-29 09:39:29.909003 comef 8416 R rec ec447da4-8272-4618-b01b-e08cd29fc464 +2024-07-29 09:39:29.973428 2024-07-29 09:39:29.973433 comef 8417 R rec f8ca12c8-008a-41fb-b825-45a896493491 +2024-07-29 09:39:30.027509 2024-07-29 09:39:30.027521 comef 8418 R rec 11db3ae1-0b59-4840-b604-29a81cae48aa +2024-07-29 09:39:30.093527 2024-07-29 09:39:30.093539 comef 8419 R rec 65a3d0b4-6de1-4082-a7ad-343a17703038 +2024-07-29 09:39:30.184669 2024-07-29 09:39:30.184681 comef 8420 R rec fca0ba5c-aff7-4fbe-a6ea-9d9ceeab6a54 +2024-07-29 09:39:30.264389 2024-07-29 09:39:30.264399 comef 8421 R rec 775f4cb4-d84e-4cec-9d7f-0ebb21d4eba5 +2024-07-29 09:39:30.397341 2024-07-29 09:39:30.397354 comef 8422 R rec b51d5628-b253-404c-9d74-0cf2b2e06638 +2024-07-29 09:39:30.481569 2024-07-29 09:39:30.481582 comef 8423 R rec 79f72991-ebc2-40fe-b2f9-7dfdd5e33d73 +2024-07-29 09:39:30.568492 2024-07-29 09:39:30.568503 comef 8424 R rec 320c7c4a-7372-4c57-b488-7617c5430c9f +2024-07-29 09:39:30.654917 2024-07-29 09:39:30.654932 comef 8425 R rec 3f2d965b-f607-4054-8761-15b31d0059d0 +2024-07-29 09:39:30.74307 2024-07-29 09:39:30.743084 comef 8426 R rec 6c0b6f19-afdc-4ca8-bb26-962c5a7941e5 +2024-07-29 09:39:30.828769 2024-07-29 09:39:30.828784 comef 8427 R rec c4d66978-ccc2-4435-bdeb-20811191d0f0 +2024-07-29 09:39:30.923267 2024-07-29 09:39:30.923282 comef 8428 R rec c90fdf99-c30d-41bc-b0ae-6fc2cbd82d2f +2024-07-29 09:39:30.995304 2024-07-29 09:39:30.99531 comef 8429 R rec 22dcca4c-9530-46ab-ba8b-f4b8c3ac59b7 +2024-07-29 09:39:31.050763 2024-07-29 09:39:31.050774 comef 8430 R rec efdc3a7b-12e8-4e88-be29-247f9a3f2e38 +2024-07-29 09:39:31.121707 2024-07-29 09:39:31.121718 comef 8431 R rec c09bc622-209d-4a1e-9ab4-f3d46c68a26a +2024-07-29 09:39:31.20334 2024-07-29 09:39:31.203349 comef 8432 R rec 70b3cddf-bd56-4ba3-8712-82fb423a7c49 +2024-07-29 09:39:31.285939 2024-07-29 09:39:31.285948 comef 8433 R rec 5492ed7f-dfcf-4e7b-81d0-d60942bbe936 +2024-07-29 09:39:31.368781 2024-07-29 09:39:31.368795 comef 8434 R rec 8f1ff699-a254-44be-abf0-d4661e57b2a7 +2024-07-29 09:39:31.462417 2024-07-29 09:39:31.462427 comef 8435 R rec fe38bad0-c361-4d29-9751-c78516000a08 +2024-07-29 09:39:31.555693 2024-07-29 09:39:31.555707 comef 8436 R rec ff2b856e-6d2a-4f2a-b47e-98155cf9cb95 +2024-07-29 09:39:31.644731 2024-07-29 09:39:31.644742 comef 8437 R rec eef4f90c-74f0-4bc7-b6b5-5b05ad47e3b4 +2024-07-29 09:39:31.726788 2024-07-29 09:39:31.726811 comef 8438 R rec 825b66bc-e534-4a38-b539-a67550a1291f +2024-07-29 09:39:31.817798 2024-07-29 09:39:31.81781 comef 8439 R rec 6ae6dfba-8088-4991-bcfc-a0b912586e6e +2024-07-29 09:39:31.915176 2024-07-29 09:39:31.91519 comef 8440 R rec 526fd364-129e-4470-845f-4cec58a30939 +2024-07-29 09:39:31.999407 2024-07-29 09:39:31.999412 comef 8441 R rec 8306bd6c-c36e-4e05-83f1-f59eab8ee6a0 +2024-07-29 09:39:32.050794 2024-07-29 09:39:32.050807 comef 8442 R rec 9cfdaf9e-a929-461f-b8da-536d2ef01753 +2024-07-29 09:39:32.127526 2024-07-29 09:39:32.127537 comef 8443 R rec d6eb217c-4544-4a70-a58b-d645459557a8 +2024-07-29 09:39:32.212515 2024-07-29 09:39:32.21253 comef 8444 R rec 43767d12-69f5-48e3-81b5-5b4ad5fd5caa +2024-07-29 09:39:32.293988 2024-07-29 09:39:32.293999 comef 8445 R rec 633dc177-7683-4c9f-82be-41f11ffd0a50 +2024-07-29 09:39:32.374586 2024-07-29 09:39:32.374598 comef 8446 R rec 2e7ee1a1-82f6-4467-967b-9f677447e9bd +2024-07-29 09:39:32.458391 2024-07-29 09:39:32.458402 comef 8447 R rec 8edb87f0-947a-48b8-8e35-2dab31fe68ec +2024-07-29 09:39:32.545394 2024-07-29 09:39:32.545406 comef 8448 R rec 88d9e0df-be42-4330-845c-828180fe3811 +2024-07-29 09:39:32.634155 2024-07-29 09:39:32.634171 comef 8449 R rec 43a1f6be-adf5-4b0b-93f6-6738fa94f0bc +2024-07-29 09:39:32.719272 2024-07-29 09:39:32.719284 comef 8450 R rec 424b7c2d-b637-482b-8baf-52ad55e67dd7 +2024-07-29 09:39:32.814604 2024-07-29 09:39:32.814619 comef 8451 R rec 9f6367b8-2fa3-4ea8-a970-ab36d3e92b84 +2024-07-29 09:39:32.91499 2024-07-29 09:39:32.915005 comef 8452 R rec d878e487-bd20-4c39-b950-7367047e8475 +2024-07-29 09:39:33.009019 2024-07-29 09:39:33.009031 comef 8453 R rec 66d694c9-cc63-4fe9-a664-ea34d66bddcb +2024-07-29 09:39:33.072836 2024-07-29 09:39:33.072846 comef 8454 R rec db24404e-5860-4fba-a9a5-dcaef6b5a487 +2024-07-29 09:39:33.140451 2024-07-29 09:39:33.140461 comef 8455 R rec f271cc25-f9d5-4c00-8809-bdae3ab3b600 +2024-07-29 09:39:33.221325 2024-07-29 09:39:33.221335 comef 8456 R rec 453cfd18-9c8b-4957-89f2-92e1f9716f93 +2024-07-29 09:39:33.306362 2024-07-29 09:39:33.306376 comef 8457 R rec 5ab72916-90ac-4cfd-9578-1408a2845635 +2024-07-29 09:39:33.395046 2024-07-29 09:39:33.395057 comef 8458 R rec 3db0e103-6b60-4555-af64-38c950329196 +2024-07-29 09:39:33.46575 2024-07-29 09:39:33.465762 comef 8459 R rec 1185b175-5988-401e-84f8-4048a6279756 +2024-07-29 09:39:33.548545 2024-07-29 09:39:33.548551 comef 8460 R rec 2354a02e-134c-4d63-b388-7fe48635ebd9 +2024-07-29 09:39:33.631799 2024-07-29 09:39:33.631805 comef 8461 R rec 908bb38b-a311-4ce6-b86f-886d79915a4e +2024-07-29 09:39:33.72028 2024-07-29 09:39:33.720291 comef 8462 R rec 4d6b7eb9-dd2e-45b9-a650-250ead199f03 +2024-07-29 09:39:33.812537 2024-07-29 09:39:33.812548 comef 8463 R rec d32ee1a3-58d9-48bb-895a-3d3f9cdf3af4 +2024-07-29 09:39:33.910942 2024-07-29 09:39:33.910953 comef 8464 R rec ca1878ce-fe0a-495c-af84-7d4eb99f2376 +2024-07-29 09:39:34.013972 2024-07-29 09:39:34.013983 comef 8465 R rec 4e33bb20-d91c-4445-ae1d-f1b5a7caf2a6 +2024-07-29 09:39:34.081108 2024-07-29 09:39:34.081113 comef 8466 R rec 692e00db-9e27-4679-8bd2-13c39dc0557c +2024-07-29 09:39:34.163906 2024-07-29 09:39:34.163916 comef 8467 R rec 391eaafc-b0e0-4011-9fa6-61fdce23aa3f +2024-07-29 09:39:34.262323 2024-07-29 09:39:34.262336 comef 8468 R rec 5de1007a-147f-48a4-8c2d-590bf82f04e2 +2024-07-29 09:39:34.354945 2024-07-29 09:39:34.354955 comef 8469 R rec a7c90be4-70d8-4cd4-86af-5fe1a6a6bd22 +2024-07-29 09:39:34.444135 2024-07-29 09:39:34.44415 comef 8470 R rec e7cc963c-8c24-4f5d-98d2-948f93c279d5 +2024-07-29 09:39:34.545213 2024-07-29 09:39:34.545224 comef 8471 R rec b892cbed-fd9d-4064-a186-314645bb3f68 +2024-07-29 09:39:34.634344 2024-07-29 09:39:34.634355 comef 8472 R rec 26fa0048-aad7-4751-b3c0-424424780a8a +2024-07-29 09:39:34.706187 2024-07-29 09:39:34.706219 comef 8473 R rec d8f35828-8110-4671-ba5f-49283b484d8e +2024-07-29 09:39:34.780424 2024-07-29 09:39:34.780434 comef 8474 R rec a4417b8e-dbfd-4be4-b746-2e286b2843c7 +2024-07-29 09:39:34.848553 2024-07-29 09:39:34.848566 comef 8475 R rec 4fc79000-d880-4458-b1a8-168969beb2e8 +2024-07-29 09:39:34.932066 2024-07-29 09:39:34.932081 comef 8476 R rec daec5a3a-a1c6-4b76-ba31-7d51746f6ff2 +2024-07-29 09:39:35.030013 2024-07-29 09:39:35.030029 comef 8477 R rec 29da5fa0-8ef4-4825-a5bc-60dad61f4851 +2024-07-29 09:39:35.11321 2024-07-29 09:39:35.113221 comef 8478 R rec ac580902-a26e-4c68-8160-821fc8be27c4 +2024-07-29 09:39:35.193297 2024-07-29 09:39:35.19331 comef 8479 R rec 1f1ce889-2edc-4824-812c-93ddca4f7f32 +2024-07-29 09:39:35.270076 2024-07-29 09:39:35.270088 comef 8480 R rec 5024d4ac-35aa-4cce-bb01-b620e890f74e +2024-07-29 09:39:35.343255 2024-07-29 09:39:35.343268 comef 8481 R rec a5a57416-b011-4c25-a414-8367630dc095 +2024-07-29 09:39:35.432387 2024-07-29 09:39:35.432403 comef 8482 R rec f9d0591a-316e-45ac-a360-585ecdf7bc98 +2024-07-29 09:39:35.523094 2024-07-29 09:39:35.523109 comef 8483 R rec e0464b70-c04d-47ef-a3fa-7aead850131d +2024-07-29 09:39:35.606442 2024-07-29 09:39:35.606457 comef 8484 R rec 26de9d6c-db2d-4a04-adb8-007a5437bf14 +2024-07-29 09:39:35.703589 2024-07-29 09:39:35.703602 comef 8485 R rec 97445e4e-09e3-4b2d-ab25-2324b0518ed2 +2024-07-29 09:39:35.796514 2024-07-29 09:39:35.796526 comef 8486 R rec da7516ac-df16-4b30-890e-eb2ca75e259b +2024-07-29 09:39:35.890054 2024-07-29 09:39:35.890067 comef 8487 R rec c272e444-dc36-4c50-8d52-443ff336d474 +2024-07-29 09:39:35.983601 2024-07-29 09:39:35.983614 comef 8488 R rec 1c91ed0e-6b90-48ec-b640-d53fc1f4ed52 +2024-07-29 09:39:36.077727 2024-07-29 09:39:36.077742 comef 8489 R rec 0ef93132-1595-402c-ad79-a64e1c0c217d +2024-07-29 09:39:36.144854 2024-07-29 09:39:36.144866 comef 8490 R rec 18c2d68f-6602-4374-ab51-b9e8617fca08 +2024-07-29 09:39:36.323788 2024-07-29 09:39:36.323804 comef 8491 R rec 5f1bff00-0c4a-4c4c-8bfc-dac142f15c91 +2024-07-29 09:39:36.423363 2024-07-29 09:39:36.423375 comef 8492 R rec b82d8f7b-f851-4966-93ab-97a2d625fa30 +2024-07-29 09:39:36.506508 2024-07-29 09:39:36.506521 comef 8493 R rec d59d8256-baf9-4d7c-93e8-0229327b4367 +2024-07-29 09:39:36.586651 2024-07-29 09:39:36.586661 comef 8494 R rec db3617be-e2a8-4bb7-9609-2dc80c5ac60c +2024-07-29 09:39:36.672885 2024-07-29 09:39:36.672899 comef 8495 R rec 2f12cb57-4a25-46fa-ad2a-b9fe8832548c +2024-07-29 09:39:36.7685 2024-07-29 09:39:36.768513 comef 8496 R rec 0e9360a1-dc15-46c8-ae6d-806dff576bda +2024-07-29 09:39:36.862331 2024-07-29 09:39:36.862345 comef 8497 R rec 62802ddf-2c15-4251-a3d6-4d87a22d68bf +2024-07-29 09:39:37.013074 2024-07-29 09:39:37.013086 comef 8498 R rec ca6a6723-4786-4f1e-943a-cf7d107872d0 +2024-07-29 09:39:37.102366 2024-07-29 09:39:37.102379 comef 8499 R rec 29b93538-63e5-44be-b3a9-e2054a37ffbf +2024-07-29 09:39:37.171887 2024-07-29 09:39:37.171892 comef 8500 R rec bc0160eb-da2b-4e03-beb8-54c30c37e090 +2024-07-29 09:39:37.23352 2024-07-29 09:39:37.233533 comef 8501 R rec 9a63fd75-9709-430b-8502-42de46a61b05 +2024-07-29 09:39:37.316283 2024-07-29 09:39:37.316294 comef 8502 R rec 28d1ed4c-3bfa-47b2-92e7-a0ee0fab0b38 +2024-07-29 09:39:37.404293 2024-07-29 09:39:37.404309 comef 8503 R rec 4b2d451e-781c-4914-b7f1-1cb13c6e2a32 +2024-07-29 09:39:37.491678 2024-07-29 09:39:37.491694 comef 8504 R rec d5bdd1c9-9b4b-4d36-a9a6-e9b4e2a37012 +2024-07-29 09:39:37.585505 2024-07-29 09:39:37.585515 comef 8505 R rec 56a4081b-7fac-42e1-8f53-ac90056d683e +2024-07-29 09:39:37.738291 2024-07-29 09:39:37.738296 comef 8506 R rec 1a6ebbaf-c520-429d-8668-2a630a03d49a +2024-07-29 09:39:37.790653 2024-07-29 09:39:37.790659 comef 8507 R rec 5369d1a8-c608-437c-ba28-9218eabbc28c +2024-07-29 09:39:37.840341 2024-07-29 09:39:37.840346 comef 8508 R rec 35ec6a56-5fb0-42ae-85ff-de13b52d94ae +2024-07-29 09:39:37.882522 2024-07-29 09:39:37.882526 comef 8509 R rec c8113ae2-9090-4ce6-91e7-db0cdc12afec +2024-07-29 09:39:37.929448 2024-07-29 09:39:37.929453 comef 8510 R rec 7efd443d-ae3b-4fd5-975c-8ee13bc53031 +2024-07-29 09:39:37.996793 2024-07-29 09:39:37.996803 comef 8511 R rec 7267a823-e2a8-4046-9cf3-b0464c453a11 +2024-07-29 09:39:38.065776 2024-07-29 09:39:38.065787 comef 8512 R rec 54df38c3-1c00-41b5-9b67-11137436955f +2024-07-29 09:39:38.1568 2024-07-29 09:39:38.156838 comef 8513 R rec fb5283f9-6f51-45bc-9d05-ae9254bc4c38 +2024-07-29 09:39:38.215585 2024-07-29 09:39:38.21559 comef 8514 R rec d8011de9-f48d-4397-86af-efc973eeaaea +2024-07-29 09:39:38.280167 2024-07-29 09:39:38.280179 comef 8515 R rec 31436919-7ef9-4d29-91b3-af90387fa9f2 +2024-07-29 09:39:38.35062 2024-07-29 09:39:38.35063 comef 8516 R rec d340d642-4345-4aa1-bade-ff66766adda2 +2024-07-29 09:39:38.436419 2024-07-29 09:39:38.436429 comef 8517 R rec 45b82dfa-5e57-4598-8ea6-860a636e8a97 +2024-07-29 09:39:38.518293 2024-07-29 09:39:38.518306 comef 8518 R rec 7f38339d-f2e8-49de-8b3f-392ffe01e120 +2024-07-29 09:39:38.615377 2024-07-29 09:39:38.615393 comef 8519 R rec 7bf00ee9-bb40-463d-a312-001847428f6c +2024-07-29 09:39:38.701042 2024-07-29 09:39:38.701057 comef 8520 R rec 504f31c3-c0a5-4343-b013-acbeb15fa3ec +2024-07-29 09:39:38.793774 2024-07-29 09:39:38.793789 comef 8521 R rec 8f258d04-2cdd-4d54-9e3d-0c6a42bb2c21 +2024-07-29 09:39:38.910497 2024-07-29 09:39:38.910508 comef 8522 R rec c9e801e2-7aea-4b2d-b3cc-75f6ce551c3f +2024-07-29 09:39:39.007219 2024-07-29 09:39:39.007231 comef 8523 R rec 558e1f65-ea49-4292-bf4b-0d4d1532a901 +2024-07-29 09:39:39.112681 2024-07-29 09:39:39.112692 comef 8524 R rec 1139afb0-9e99-47d8-832f-acf69e0a7825 +2024-07-29 09:39:39.205025 2024-07-29 09:39:39.205031 comef 8525 R rec d3a224d6-74fd-4a8d-8de5-bd473f32fe8b +2024-07-29 09:39:39.277238 2024-07-29 09:39:39.277249 comef 8526 R rec ff9fa849-6e63-4a6e-b0f0-173a0fd22fe5 +2024-07-29 09:39:39.355905 2024-07-29 09:39:39.355916 comef 8527 R rec 29e6a865-976c-4d36-a2b2-503681b306d5 +2024-07-29 09:39:39.448673 2024-07-29 09:39:39.448689 comef 8528 R rec a49e072f-3750-4351-b046-fe964cd0f995 +2024-07-29 09:39:39.558842 2024-07-29 09:39:39.558858 comef 8529 R rec e7fdfe5a-cde8-449d-b5a9-7d812f15addd +2024-07-29 09:39:39.648245 2024-07-29 09:39:39.648304 comef 8530 R rec 7740a1db-d457-4684-8e9d-d285a0a1f193 +2024-07-29 09:39:39.745801 2024-07-29 09:39:39.74581 comef 8531 R rec a85245b1-10d3-42f9-aac9-2a5e2474b07c +2024-07-29 09:39:39.837234 2024-07-29 09:39:39.83725 comef 8532 R rec 0db7ec80-655e-4f56-bd62-5a9bbfc1efb0 +2024-07-29 09:39:39.928691 2024-07-29 09:39:39.928706 comef 8533 R rec 0a38d5a9-5c10-4e5d-be31-5b0ac121f4bb +2024-07-29 09:39:40.02576 2024-07-29 09:39:40.025775 comef 8534 R rec 842acd1f-4157-49d2-a9e4-c982f32a2b29 +2024-07-29 09:39:40.125515 2024-07-29 09:39:40.125527 comef 8535 R rec 28abb386-ede4-4367-ac2e-60659f49b8a5 +2024-07-29 09:39:40.219983 2024-07-29 09:39:40.219995 comef 8536 R rec 57c3a65a-ca38-4ae8-8767-db233b9246c0 +2024-07-29 09:39:40.282398 2024-07-29 09:39:40.282407 comef 8537 R rec 489cbd6a-f1df-4fc7-a0eb-22b82244486b +2024-07-29 09:39:40.378159 2024-07-29 09:39:40.37817 comef 8538 R rec 6ed4431f-8245-4bef-833b-ebf8dca7f201 +2024-07-29 09:39:40.46756 2024-07-29 09:39:40.467574 comef 8539 R rec b243e42c-44af-4dc3-93e2-31eb47f4b75a +2024-07-29 09:39:40.561743 2024-07-29 09:39:40.56176 comef 8540 R rec f4789314-37d9-4211-84bf-217ee7ba7624 +2024-07-29 09:39:40.663982 2024-07-29 09:39:40.663992 comef 8541 R rec d8f097c7-2d48-4c3e-a3f1-e614ad209a92 +2024-07-29 09:39:40.739557 2024-07-29 09:39:40.739567 comef 8542 R rec fa47f1e4-c013-4b9a-b9ca-f03fbcc43a4d +2024-07-29 09:39:40.822375 2024-07-29 09:39:40.822386 comef 8543 R rec eb1d18a0-a6ed-4d95-9845-f6c3649cba1e +2024-07-29 09:39:40.917351 2024-07-29 09:39:40.917362 comef 8544 R rec 48311105-12a7-498a-9f2c-58bf2e79e4f1 +2024-07-29 09:39:41.01567 2024-07-29 09:39:41.015684 comef 8545 R rec a41d8e40-ed00-4352-9f41-db01872d9adb +2024-07-29 09:39:41.107127 2024-07-29 09:39:41.10714 comef 8546 R rec 69a84165-bcd4-4fef-a9c9-4de0d89980cd +2024-07-29 09:39:41.194306 2024-07-29 09:39:41.19432 comef 8547 R rec a3d12642-e1aa-44c0-a9e4-387fefdf065e +2024-07-29 09:39:41.278021 2024-07-29 09:39:41.278031 comef 8548 R rec d7203bde-7b87-49c8-8338-7b21a9b3b138 +2024-07-29 09:39:41.36001 2024-07-29 09:39:41.360024 comef 8549 R rec 88f95213-b39e-404a-8053-0f3c68d531cf +2024-07-29 09:39:41.456296 2024-07-29 09:39:41.456307 comef 8550 R rec a9e964e6-2104-4663-b853-ed1be56ecb22 +2024-07-29 09:39:41.545315 2024-07-29 09:39:41.545328 comef 8551 R rec daa54e7f-b9fe-4170-bbdf-af3671f3855b +2024-07-29 09:39:41.626124 2024-07-29 09:39:41.626137 comef 8552 R rec 93f9e681-7fe4-4d34-ab3a-22047aab92f0 +2024-07-29 09:39:41.711723 2024-07-29 09:39:41.711739 comef 8553 R rec 84cd7bdc-00a1-4370-a7cd-20240d094c6e +2024-07-29 09:39:41.802125 2024-07-29 09:39:41.80214 comef 8554 R rec 875b86ea-e28d-46fc-8e64-fdc9cb6e9723 +2024-07-29 09:39:41.901011 2024-07-29 09:39:41.901022 comef 8555 R rec adc50265-c538-48a2-8bea-ec9bcbac9413 +2024-07-29 09:39:42.015707 2024-07-29 09:39:42.01572 comef 8556 R rec 96f922e5-3836-4614-bf33-7f63053baeb5 +2024-07-29 09:39:42.112525 2024-07-29 09:39:42.112543 comef 8557 R rec 15cd2b67-8653-4f01-ba2f-5ca61d3604d5 +2024-07-29 09:39:42.210625 2024-07-29 09:39:42.21064 comef 8558 R rec ad018c56-d693-40ca-83ae-dfd4e54971e4 +2024-07-29 09:39:42.291692 2024-07-29 09:39:42.291698 comef 8559 R rec 9e7b4dc5-c8d3-4ab7-b37a-7d9e5fde49f8 +2024-07-29 09:39:42.344778 2024-07-29 09:39:42.344788 comef 8560 R rec 8d169002-c813-45d7-a95c-2b743e62172f +2024-07-29 09:39:42.424156 2024-07-29 09:39:42.424162 comef 8561 R rec de9f453a-06fb-4f41-919c-835aaa264253 +2024-07-29 09:39:42.503489 2024-07-29 09:39:42.503501 comef 8562 R rec 729f2092-4cbd-495b-b475-89c79c0a54f3 +2024-07-29 09:39:42.603252 2024-07-29 09:39:42.603267 comef 8563 R rec 96845e92-ee36-47c0-b7e9-19f6968314d2 +2024-07-29 09:39:42.696148 2024-07-29 09:39:42.696157 comef 8564 R rec 32074261-e8e1-4366-827a-1cf88bfba9b8 +2024-07-29 09:39:42.79599 2024-07-29 09:39:42.796006 comef 8565 R rec 752481f7-d95d-4b13-9c38-8b3dbe2926ea +2024-07-29 09:39:42.906509 2024-07-29 09:39:42.906524 comef 8566 R rec e0baab1a-3dea-41e2-a701-72acabb1ce94 +2024-07-29 09:39:43.006481 2024-07-29 09:39:43.006496 comef 8567 R rec b247cc86-abcd-4b87-8a91-1f24033d4a15 +2024-07-29 09:39:43.113722 2024-07-29 09:39:43.11376 comef 8568 R rec e4497a67-0924-4d66-9172-b5600019f3ad +2024-07-29 09:39:43.18797 2024-07-29 09:39:43.187982 comef 8569 R rec b8fdf951-483e-4ce0-ac03-edc0e607cf74 +2024-07-29 09:39:43.284734 2024-07-29 09:39:43.284749 comef 8570 R rec fb407f28-4ada-49dc-a866-08209c49db34 +2024-07-29 09:39:43.362428 2024-07-29 09:39:43.362438 comef 8571 R rec 5792865b-d45f-4f14-9d50-b1fac4e38bc2 +2024-07-29 09:39:43.445704 2024-07-29 09:39:43.445716 comef 8572 R rec 7f03c5d1-7c4f-417d-9aeb-967baf0cd5d3 +2024-07-29 09:39:43.559311 2024-07-29 09:39:43.559322 comef 8573 R rec 2c02814f-abb6-4e53-bea4-4453c3f00f7a +2024-07-29 09:39:43.655646 2024-07-29 09:39:43.655658 comef 8574 R rec 1a2b25a6-969a-4f26-99be-c37d3aa7739d +2024-07-29 09:39:43.728928 2024-07-29 09:39:43.728939 comef 8575 R rec 87a6e317-55a8-417f-b8b2-993752260f01 +2024-07-29 09:39:43.808025 2024-07-29 09:39:43.808038 comef 8576 R rec 65777967-4958-4ef5-9bb5-cb4a2d1fcf03 +2024-07-29 09:39:43.894812 2024-07-29 09:39:43.894828 comef 8577 R rec a4f4ce77-3ac6-45c7-9478-2de9b78c8c90 +2024-07-29 09:39:43.994242 2024-07-29 09:39:43.994258 comef 8578 R rec fd975954-8c7f-4063-b059-0e0418d53830 +2024-07-29 09:39:44.087241 2024-07-29 09:39:44.087256 comef 8579 R rec 3e5a91c9-6118-4d94-8c82-01bdc0f414eb +2024-07-29 09:39:44.185722 2024-07-29 09:39:44.185737 comef 8580 R rec 2a184a9e-fed0-402d-9b0d-3557d2337d6f +2024-07-29 09:39:44.285812 2024-07-29 09:39:44.285827 comef 8581 R rec 831571d3-9027-4d27-8286-efe65e01433f +2024-07-29 09:39:44.366084 2024-07-29 09:39:44.36609 comef 8582 R rec f13c3ab4-2e8c-4789-ae29-b466910365b7 +2024-07-29 09:39:44.42441 2024-07-29 09:39:44.42442 comef 8583 R rec 01d6859e-2566-4f5f-bf9a-25a031b3f6a3 +2024-07-29 09:39:44.503801 2024-07-29 09:39:44.503812 comef 8584 R rec 3b449aef-c3ca-4839-8bdc-c24a85025357 +2024-07-29 09:39:44.5858 2024-07-29 09:39:44.585813 comef 8585 R rec 441eb6a9-c9eb-4bad-9f5e-30ee4764a8d1 +2024-07-29 09:39:44.673624 2024-07-29 09:39:44.673639 comef 8586 R rec e7bc586d-0c5b-4cfd-9d9b-9fc1cecc213a +2024-07-29 09:39:44.767504 2024-07-29 09:39:44.767519 comef 8587 R rec 846d0fb6-61a6-46a3-8de8-513f2a6227a6 +2024-07-29 09:39:44.859662 2024-07-29 09:39:44.859678 comef 8588 R rec 1ccac438-09e5-41a2-8e59-f48094713a4c +2024-07-29 09:39:44.967942 2024-07-29 09:39:44.967953 comef 8589 R rec f3f575b3-9095-45d9-9786-a2d81e90d3ca +2024-07-29 09:39:45.070718 2024-07-29 09:39:45.07073 comef 8590 R rec 31627e04-284b-49eb-8cf9-03e269308b74 +2024-07-29 09:39:45.16318 2024-07-29 09:39:45.163195 comef 8591 R rec c4a175d5-8088-4e75-bafd-948b3b582752 +2024-07-29 09:39:45.253807 2024-07-29 09:39:45.253822 comef 8592 R rec d7901bae-7677-4d66-8dd6-64071ebc5fc1 +2024-07-29 09:39:45.361086 2024-07-29 09:39:45.361099 comef 8593 R rec 107a3a44-9925-46a1-beb1-d0db479deda8 +2024-07-29 09:39:45.415784 2024-07-29 09:39:45.415789 comef 8594 R rec 9346f220-cb1f-4d24-9188-29a96f7ef573 +2024-07-29 09:39:45.478727 2024-07-29 09:39:45.478739 comef 8595 R rec 4c200a5e-1d1a-4e3f-aac9-431c33177277 +2024-07-29 09:39:45.560585 2024-07-29 09:39:45.560597 comef 8596 R rec f2ead112-3cd6-4ef0-9e3e-a540b9ae6194 +2024-07-29 09:39:45.655017 2024-07-29 09:39:45.655027 comef 8597 R rec 9c734348-21de-43f3-8600-96720f8297b7 +2024-07-29 09:39:45.75424 2024-07-29 09:39:45.754252 comef 8598 R rec 68477d8e-e6ad-4a1d-879e-ff03e94cbce8 +2024-07-29 09:39:45.852963 2024-07-29 09:39:45.852976 comef 8599 R rec 3506ba17-0756-4874-a97a-e6158cd44d34 +2024-07-29 09:39:45.948665 2024-07-29 09:39:45.948677 comef 8600 R rec 980c412c-bf89-43a5-be38-94cd380fd0d9 +2024-07-29 09:39:46.039791 2024-07-29 09:39:46.0398 comef 8601 R rec cdb8275a-91b1-4fb3-8a8f-345bf8a8cc0a +2024-07-29 09:39:46.128048 2024-07-29 09:39:46.128062 comef 8602 R rec b9e490c4-a0cc-416c-8da7-60bf5b022228 +2024-07-29 09:39:46.214274 2024-07-29 09:39:46.214287 comef 8603 R rec 2758e764-489f-4376-b311-febefeb5a7da +2024-07-29 09:39:46.309763 2024-07-29 09:39:46.309778 comef 8604 R rec 280b1df0-1bc0-411f-8db5-6250fc8491bc +2024-07-29 09:39:46.406704 2024-07-29 09:39:46.406709 comef 8605 R rec 792ee9cf-ecdb-49d2-97b2-08c9d6df36a6 +2024-07-29 09:39:46.466611 2024-07-29 09:39:46.466622 comef 8606 R rec 670ab1a3-195c-4b08-ae4e-19534d29bbb1 +2024-07-29 09:39:46.550125 2024-07-29 09:39:46.550138 comef 8607 R rec fa0b31c4-1804-4ac2-82d1-1ed390fe6164 +2024-07-29 09:39:46.64934 2024-07-29 09:39:46.649355 comef 8608 R rec bc8d9285-e741-4c40-afce-97269522fe0c +2024-07-29 09:39:46.744425 2024-07-29 09:39:46.74444 comef 8609 R rec ea38bb41-1e2c-4c77-b7a1-07adf0744117 +2024-07-29 09:39:46.83228 2024-07-29 09:39:46.832295 comef 8610 R rec e9404e01-b9ee-4f1d-95d6-a6735cb883fe +2024-07-29 09:39:46.926494 2024-07-29 09:39:46.926504 comef 8611 R rec 941cd999-48d0-455d-b10d-af728bc75e28 +2024-07-29 09:39:47.016098 2024-07-29 09:39:47.016104 comef 8612 R rec 83c597b0-4793-4aac-95c7-c1f8f32c0da1 +2024-07-29 09:39:47.111389 2024-07-29 09:39:47.1114 comef 8613 R rec 9acc8ae5-b6f3-45a3-910e-15a05916a27d +2024-07-29 09:39:47.196794 2024-07-29 09:39:47.19681 comef 8614 R rec c9d0346c-9c6f-4915-a2bb-85ed489ed48d +2024-07-29 09:39:47.282481 2024-07-29 09:39:47.282496 comef 8615 R rec 23df0b2e-7d71-4f22-8cf9-fbbd88cf1214 +2024-07-29 09:39:47.385328 2024-07-29 09:39:47.385341 comef 8616 R rec 06fbcc1c-63e2-4bb7-a0ed-0203f9c266b7 +2024-07-29 09:39:47.458668 2024-07-29 09:39:47.458674 comef 8617 R rec 2fb48141-44d4-4f66-bd66-4407c076dc7d +2024-07-29 09:39:47.515941 2024-07-29 09:39:47.515952 comef 8618 R rec 62ef234e-80ea-45a9-98b5-9dd07e024557 +2024-07-29 09:39:47.587873 2024-07-29 09:39:47.587885 comef 8619 R rec 2b95c913-f371-4fa1-acab-f737dbe1c0c3 +2024-07-29 09:39:47.667028 2024-07-29 09:39:47.667037 comef 8620 R rec 1d48e2d5-c6a4-47a5-b2a8-48bac6afbb77 +2024-07-29 09:39:47.743121 2024-07-29 09:39:47.743136 comef 8621 R rec ebe0c346-3f62-4cca-928b-ca3ce7119341 +2024-07-29 09:39:47.83439 2024-07-29 09:39:47.834405 comef 8622 R rec 4b133ee8-8a17-4427-a5bb-da458b329e7d +2024-07-29 09:39:47.928905 2024-07-29 09:39:47.928921 comef 8623 R rec 204019fc-4a9c-4a22-9fc0-2d632dc989e7 +2024-07-29 09:39:48.016478 2024-07-29 09:39:48.016491 comef 8624 R rec 7b3a7600-6a87-4242-b6a6-59c3f6b88110 +2024-07-29 09:39:48.110443 2024-07-29 09:39:48.110459 comef 8625 R rec cd36223f-daa1-46e3-b30f-978bc2cb5e35 +2024-07-29 09:39:48.212635 2024-07-29 09:39:48.212651 comef 8626 R rec 7236c936-126f-4e3f-b6b8-524d18db05e2 +2024-07-29 09:39:48.314939 2024-07-29 09:39:48.314955 comef 8627 R rec f6c4496f-b068-41d9-b56f-676ff4efcaba +2024-07-29 09:39:48.416897 2024-07-29 09:39:48.416913 comef 8628 R rec 49fef405-aaad-4431-98e4-7abaa00e3138 +2024-07-29 09:39:48.489984 2024-07-29 09:39:48.489989 comef 8629 R rec 7793f197-21f6-4636-9f95-2bebca6af081 +2024-07-29 09:39:48.554499 2024-07-29 09:39:48.55451 comef 8630 R rec c27f7aff-97a1-4263-946d-9eda5ff1063d +2024-07-29 09:39:48.626367 2024-07-29 09:39:48.626377 comef 8631 R rec e2df8978-99be-481d-8564-9a94a60ca502 +2024-07-29 09:39:48.693519 2024-07-29 09:39:48.69353 comef 8632 R rec bc610fb3-4821-4347-9f20-025fbe8c0aa3 +2024-07-29 09:39:48.762091 2024-07-29 09:39:48.762102 comef 8633 R rec c866e63f-398f-4767-b91d-186bd09ba1da +2024-07-29 09:39:48.835176 2024-07-29 09:39:48.835188 comef 8634 R rec 8e82a399-bc91-4f76-bf07-45f1ee5d2c44 +2024-07-29 09:39:48.961349 2024-07-29 09:39:48.961363 comef 8635 R rec f7d03c3c-989d-4386-8170-c2cdaf6dfe5e +2024-07-29 09:39:49.073619 2024-07-29 09:39:49.07363 comef 8636 R rec 83a6b4a5-1697-4de0-9124-a85c31724cad +2024-07-29 09:39:49.159637 2024-07-29 09:39:49.159649 comef 8637 R rec e7ecad73-75f3-4a26-ae04-a1b1f4a988e7 +2024-07-29 09:39:49.232194 2024-07-29 09:39:49.232207 comef 8638 R rec 4108a555-e1f7-4d96-b50d-a80ece9fc0ef +2024-07-29 09:39:49.331204 2024-07-29 09:39:49.331214 comef 8639 R rec 3a307f84-eb06-495d-a32a-be5e3817228a +2024-07-29 09:39:49.436271 2024-07-29 09:39:49.436283 comef 8640 R rec cd6fb95c-62a7-456d-9cec-da1d2f889c18 +2024-07-29 09:39:49.519933 2024-07-29 09:39:49.519938 comef 8641 R rec 884f8228-73cb-4a02-a4d3-1c08ca37cbd8 +2024-07-29 09:39:49.572804 2024-07-29 09:39:49.572815 comef 8642 R rec def595e4-eee6-4b1a-95ab-f5ee7fab4d06 +2024-07-29 09:39:49.637323 2024-07-29 09:39:49.637335 comef 8643 R rec d4ad8dae-5107-4061-9dc7-4c94de8c751f +2024-07-29 09:39:49.717636 2024-07-29 09:39:49.717648 comef 8644 R rec c8eef050-7e1a-4a39-a61d-27ca8ae8bb69 +2024-07-29 09:39:49.814572 2024-07-29 09:39:49.814587 comef 8645 R rec e231d2f0-0f20-416e-ab6f-a57fab87b221 +2024-07-29 09:39:49.919747 2024-07-29 09:39:49.919808 comef 8646 R rec 15f5531e-4a15-4e40-8dfd-ef0a9bfe8ef8 +2024-07-29 09:39:50.017234 2024-07-29 09:39:50.017249 comef 8647 R rec fd833cd2-8719-4f11-9e4a-b16e78749948 +2024-07-29 09:39:50.117738 2024-07-29 09:39:50.11775 comef 8648 R rec 96ff33f4-66f9-46c2-a025-4803bdf50762 +2024-07-29 09:39:50.224216 2024-07-29 09:39:50.224228 comef 8649 R rec 5a34ef45-f9c4-4aba-98d4-3cc07fab0884 +2024-07-29 09:39:50.315432 2024-07-29 09:39:50.315447 comef 8650 R rec 7530794e-7acc-4532-9ea1-aaf4555c74a6 +2024-07-29 09:39:50.410566 2024-07-29 09:39:50.410576 comef 8651 R rec 57383f70-c543-4761-8a24-c7ba7ad4df96 +2024-07-29 09:39:50.507315 2024-07-29 09:39:50.507326 comef 8652 R rec c609c37f-ec24-4e24-9e1f-a68aa6a9b55c +2024-07-29 09:39:50.585073 2024-07-29 09:39:50.585084 comef 8653 R rec 6db468e5-0663-431d-882f-0ed2b579fefc +2024-07-29 09:39:50.688799 2024-07-29 09:39:50.688812 comef 8654 R rec 4cf280eb-8b48-4f45-9057-a8a7d80522f8 +2024-07-29 09:39:50.779126 2024-07-29 09:39:50.779141 comef 8655 R rec b508feb2-94df-454b-8644-dbc1fba35492 +2024-07-29 09:39:50.88997 2024-07-29 09:39:50.88998 comef 8656 R rec 6cb70e01-a168-4617-8ce2-64a1b403286a +2024-07-29 09:39:50.987764 2024-07-29 09:39:50.987775 comef 8657 R rec d963ba82-091f-4b23-bce1-eaabc0d1e1b3 +2024-07-29 09:39:51.082635 2024-07-29 09:39:51.082651 comef 8658 R rec de014b50-55c4-4f32-8080-a47a87949049 +2024-07-29 09:39:51.18382 2024-07-29 09:39:51.183836 comef 8659 R rec 490753f6-b197-4571-8848-23b7c3bfd771 +2024-07-29 09:39:51.284453 2024-07-29 09:39:51.28447 comef 8660 R rec 646392c4-ba6d-4564-89de-3463664aca5e +2024-07-29 09:39:51.3867 2024-07-29 09:39:51.386711 comef 8661 R rec e1943056-2368-473c-b945-821dc211cb14 +2024-07-29 09:39:51.469172 2024-07-29 09:39:51.469188 comef 8662 R rec 756beaa6-70a5-459e-8aa3-8aeff834c320 +2024-07-29 09:39:51.560345 2024-07-29 09:39:51.560355 comef 8663 R rec b28b1e27-2950-4d28-8768-41fe95c7941b +2024-07-29 09:39:51.616274 2024-07-29 09:39:51.616284 comef 8664 R rec 60136c02-03b2-4f5f-8075-f63c44020d16 +2024-07-29 09:39:51.684029 2024-07-29 09:39:51.68404 comef 8665 R rec 247277ad-9f89-4b70-ba78-74ba31d92de6 +2024-07-29 09:39:51.766727 2024-07-29 09:39:51.76674 comef 8666 R rec d5b0c8cf-7d03-46cf-951d-e9162ffbd6a5 +2024-07-29 09:39:51.862458 2024-07-29 09:39:51.862468 comef 8667 R rec 87b86701-b1b2-4ec8-aaee-7efd8f958124 +2024-07-29 09:39:51.956781 2024-07-29 09:39:51.956796 comef 8668 R rec 4f8ae857-eb6c-481c-9c6c-14de5d0db590 +2024-07-29 09:39:52.03508 2024-07-29 09:39:52.03509 comef 8669 R rec f9d48a10-8540-4e47-811d-1cc476ebc0e6 +2024-07-29 09:39:52.127559 2024-07-29 09:39:52.127569 comef 8670 R rec 05fc6efa-7421-42d4-8dcb-234d2728482e +2024-07-29 09:39:52.217687 2024-07-29 09:39:52.217704 comef 8671 R rec 150deb7e-546c-41c8-87b4-1b321659a4bb +2024-07-29 09:39:52.300864 2024-07-29 09:39:52.300875 comef 8672 R rec d11c4e76-164f-4436-aad2-477aa9f28ec4 +2024-07-29 09:39:52.393807 2024-07-29 09:39:52.39382 comef 8673 R rec 6d5a6b99-9261-492a-8f07-fcb0e9a02e43 +2024-07-29 09:39:52.490958 2024-07-29 09:39:52.490974 comef 8674 R rec 018c087a-3654-4bba-9b25-0a409336d727 +2024-07-29 09:39:52.582991 2024-07-29 09:39:52.583004 comef 8675 R rec a80bbfd3-55b8-465a-be80-2e95fa0c5a39 +2024-07-29 09:39:52.646116 2024-07-29 09:39:52.646127 comef 8676 R rec 0b1688e9-0324-4eeb-be35-cce6c9c26b60 +2024-07-29 09:39:52.724399 2024-07-29 09:39:52.72441 comef 8677 R rec af833dfa-aaed-4c13-830e-5c8bed4a1eee +2024-07-29 09:39:52.806237 2024-07-29 09:39:52.806253 comef 8678 R rec bba6cb86-0fe2-4a7d-be63-83acc1d65619 +2024-07-29 09:39:52.898305 2024-07-29 09:39:52.898315 comef 8679 R rec dee5958a-982e-4340-bbff-8c0c3d99c7f0 +2024-07-29 09:39:52.998401 2024-07-29 09:39:52.998411 comef 8680 R rec 68f90e4b-3d04-45d4-8ef8-beda8e0af128 +2024-07-29 09:39:53.081204 2024-07-29 09:39:53.08122 comef 8681 R rec 2231fce4-97ad-4614-8871-1fe65e86504f +2024-07-29 09:39:53.184331 2024-07-29 09:39:53.184347 comef 8682 R rec e73260f9-3b20-401e-b92c-8deefabb7b42 +2024-07-29 09:39:53.283497 2024-07-29 09:39:53.283512 comef 8683 R rec f4ecf059-69a9-40c6-890a-d1e5b103f553 +2024-07-29 09:39:53.386833 2024-07-29 09:39:53.386846 comef 8684 R rec fa650cb6-a426-4d17-96da-d0c315ad957b +2024-07-29 09:39:53.474236 2024-07-29 09:39:53.474251 comef 8685 R rec aaca63ae-5505-4f2b-b6a8-c98a49e1aa01 +2024-07-29 09:39:53.566576 2024-07-29 09:39:53.566591 comef 8686 R rec 9a3ee932-b920-4c6d-b99b-27457126a33c +2024-07-29 09:39:53.644593 2024-07-29 09:39:53.644598 comef 8687 R rec 87aaedbc-dcc2-440d-ad31-3a4a45ef5b69 +2024-07-29 09:39:53.716795 2024-07-29 09:39:53.716805 comef 8688 R rec ea5d2170-468b-4e60-9a5f-2f8465cff7e9 +2024-07-29 09:39:53.793781 2024-07-29 09:39:53.793794 comef 8689 R rec 7813fc62-2a14-4bef-9ed3-4f09488c092f +2024-07-29 09:39:53.888751 2024-07-29 09:39:53.888761 comef 8690 R rec f59914e9-f439-4ce1-a4b7-a9c5ac1cbc7c +2024-07-29 09:39:53.987055 2024-07-29 09:39:53.987072 comef 8691 R rec c69919a8-8d34-466f-8443-bb264d4f2a0e +2024-07-29 09:39:54.082639 2024-07-29 09:39:54.082649 comef 8692 R rec 7e43dbb2-e720-4417-9fb9-834380a5536b +2024-07-29 09:39:54.166957 2024-07-29 09:39:54.166969 comef 8693 R rec 4fa8aeb2-6b52-4826-8ab7-b156557163ce +2024-07-29 09:39:54.249639 2024-07-29 09:39:54.249649 comef 8694 R rec 97d0b876-3c71-4c05-a1ff-684e73a2e955 +2024-07-29 09:39:54.32241 2024-07-29 09:39:54.322421 comef 8695 R rec db016159-7d7d-4619-aa8d-c1cc11fc9e54 +2024-07-29 09:39:54.413044 2024-07-29 09:39:54.413055 comef 8696 R rec 49894d7a-deb5-4056-96f3-032d1af6e790 +2024-07-29 09:39:54.498427 2024-07-29 09:39:54.498442 comef 8697 R rec f1de141a-a978-4469-b7b6-46d6f9b4b292 +2024-07-29 09:39:54.586596 2024-07-29 09:39:54.58661 comef 8698 R rec 1443d61f-0ce5-4abe-b537-cde6d81f22b8 +2024-07-29 09:39:54.67724 2024-07-29 09:39:54.677246 comef 8699 R rec 4fa117be-f6b3-4fa9-ba0a-96c6316e91ef +2024-07-29 09:39:54.737245 2024-07-29 09:39:54.737256 comef 8700 R rec 3d06189d-b4f6-488d-847a-69953eea5d85 +2024-07-29 09:39:54.812204 2024-07-29 09:39:54.812214 comef 8701 R rec b606daad-376e-440d-86b7-7f908665aa4f +2024-07-29 09:39:54.92209 2024-07-29 09:39:54.922101 comef 8702 R rec 56c0087b-2d55-4266-94f6-f74436c57844 +2024-07-29 09:39:55.02224 2024-07-29 09:39:55.022251 comef 8703 R rec 264a58e5-1633-4401-a712-2d6d8d575640 +2024-07-29 09:39:55.1153 2024-07-29 09:39:55.115317 comef 8704 R rec ecd8d5f3-ed1b-47e8-93e0-9aec24620e07 +2024-07-29 09:39:55.210361 2024-07-29 09:39:55.210403 comef 8705 R rec 9cd3572b-69e2-4a7f-8665-c1e631dba180 +2024-07-29 09:39:55.304993 2024-07-29 09:39:55.305008 comef 8706 R rec 41fcd0e7-8cdc-490f-a5e1-57fda4e01f7a +2024-07-29 09:39:55.401682 2024-07-29 09:39:55.401698 comef 8707 R rec dea918e1-2651-4ccf-972f-0bac586cef44 +2024-07-29 09:39:55.506216 2024-07-29 09:39:55.506233 comef 8708 R rec d25e453d-16f0-4168-925d-22ab4c3385e3 +2024-07-29 09:39:55.598535 2024-07-29 09:39:55.598545 comef 8709 R rec 3be6a9a0-eca9-48f1-9d44-7ebb5df5952e +2024-07-29 09:39:55.681939 2024-07-29 09:39:55.681944 comef 8710 R rec ab57473c-cd83-4ecd-b5ba-24abb555f6f2 +2024-07-29 09:39:55.750668 2024-07-29 09:39:55.75068 comef 8711 R rec 0c2c5c9c-0af2-49bb-876a-db67db4eaec7 +2024-07-29 09:39:55.833674 2024-07-29 09:39:55.833684 comef 8712 R rec 9f0efdfb-4823-46c2-b6a3-bd3b2f1bfcfe +2024-07-29 09:39:55.927718 2024-07-29 09:39:55.927731 comef 8713 R rec f3f95403-2009-4d33-9629-5dd131b89ba7 +2024-07-29 09:39:56.029927 2024-07-29 09:39:56.029937 comef 8714 R rec d70eb1c1-ebf0-49e5-a101-e237479251f6 +2024-07-29 09:39:56.12865 2024-07-29 09:39:56.128661 comef 8715 R rec d8f00032-f2b5-42b0-b43c-597f89fdff8e +2024-07-29 09:39:56.24098 2024-07-29 09:39:56.240992 comef 8716 R rec 13f2779d-5004-4fb5-83f8-c9f3a57caee3 +2024-07-29 09:39:56.320603 2024-07-29 09:39:56.320614 comef 8717 R rec 7215b17f-fc70-4678-8609-6026aaca0d9f +2024-07-29 09:39:56.411234 2024-07-29 09:39:56.411245 comef 8718 R rec 393a4cce-6574-4a51-9b29-d897a1c99b74 +2024-07-29 09:39:56.510368 2024-07-29 09:39:56.51038 comef 8719 R rec ca2a27bc-fd0b-4be7-b7d0-61e979807304 +2024-07-29 09:39:56.63336 2024-07-29 09:39:56.633373 comef 8720 R rec 461d86ee-d625-4d5e-8e1a-2a42c8c498e5 +2024-07-29 09:39:56.706696 2024-07-29 09:39:56.706701 comef 8721 R rec 6b8ebecc-0a5f-45e2-af89-2c21ae930ac5 +2024-07-29 09:39:56.760717 2024-07-29 09:39:56.760728 comef 8722 R rec 691a9416-c845-4adc-8df5-9f1fad66a123 +2024-07-29 09:39:56.826486 2024-07-29 09:39:56.826497 comef 8723 R rec 834be816-c87c-4214-bc94-56d7fe077efd +2024-07-29 09:39:56.894994 2024-07-29 09:39:56.895005 comef 8724 R rec 82b66633-1515-4f40-b6b1-6459e4ffca3c +2024-07-29 09:39:56.979197 2024-07-29 09:39:56.979207 comef 8725 R rec 1c8c9212-516d-416f-b284-1e57a96b949c +2024-07-29 09:39:57.064784 2024-07-29 09:39:57.064797 comef 8726 R rec 5d8bf0fa-c450-42e6-b5d0-303054e194ef +2024-07-29 09:39:57.149041 2024-07-29 09:39:57.149052 comef 8727 R rec 154d0340-3c66-438f-81a4-75d6f4435b87 +2024-07-29 09:39:57.239489 2024-07-29 09:39:57.239504 comef 8728 R rec bd9dad05-409b-43dc-96f9-76e5f26e5339 +2024-07-29 09:39:57.331208 2024-07-29 09:39:57.331221 comef 8729 R rec f9cd96a2-f9e8-46e1-a0e8-8f4e7cb40f69 +2024-07-29 09:39:57.43964 2024-07-29 09:39:57.439655 comef 8730 R rec 61215133-bcf3-44cc-bbc1-d4a40bc90de0 +2024-07-29 09:39:57.535059 2024-07-29 09:39:57.535074 comef 8731 R rec 5b086fa3-3a54-42a4-90fb-fcbf877e6307 +2024-07-29 09:39:57.62946 2024-07-29 09:39:57.629473 comef 8732 R rec 0f98b235-f3ff-4a10-962e-d37fc73bea87 +2024-07-29 09:39:57.70955 2024-07-29 09:39:57.709563 comef 8733 R rec 1a0182b9-13a3-46f8-a4e1-8ca16979a517 +2024-07-29 09:39:57.760332 2024-07-29 09:39:57.760337 comef 8734 R rec ddae9c12-bcec-4fbb-a68d-30894a1242f7 +2024-07-29 09:39:57.82393 2024-07-29 09:39:57.823941 comef 8735 R rec 5d5db0e2-e229-4c68-9264-dbb459c60c52 +2024-07-29 09:39:57.910656 2024-07-29 09:39:57.910671 comef 8736 R rec 893a459f-4b68-4746-a19c-7fdfcbcc93f2 +2024-07-29 09:39:57.999352 2024-07-29 09:39:57.999368 comef 8737 R rec 49179c07-0edb-40d8-a254-6111e37b6ad6 +2024-07-29 09:39:58.083701 2024-07-29 09:39:58.083717 comef 8738 R rec fae309b8-b29d-4b07-8043-b89387e6c058 +2024-07-29 09:39:58.178152 2024-07-29 09:39:58.178167 comef 8739 R rec 12d7e324-29c1-41a2-bbc7-f511903a0e4e +2024-07-29 09:39:58.265084 2024-07-29 09:39:58.265101 comef 8740 R rec b8b04486-7e79-4d28-a834-424e0ea4926a +2024-07-29 09:39:58.355486 2024-07-29 09:39:58.355501 comef 8741 R rec d28e0e0c-9bca-471a-a35e-49f88af73335 +2024-07-29 09:39:58.439513 2024-07-29 09:39:58.439526 comef 8742 R rec ff4a0e89-320e-48e1-9319-321a9509e8ed +2024-07-29 09:39:58.522079 2024-07-29 09:39:58.522094 comef 8743 R rec 82784f97-5f59-4152-ae6e-ffbe07d273dd +2024-07-29 09:39:58.611991 2024-07-29 09:39:58.612006 comef 8744 R rec d6e5c5e7-8ba0-4381-a4e5-e745a137e83e +2024-07-29 09:39:58.705491 2024-07-29 09:39:58.705513 comef 8745 R rec 132b398c-3dc1-4613-9fe1-0e9f62773ea2 +2024-07-29 09:39:58.782355 2024-07-29 09:39:58.782365 comef 8746 R rec f0f7b7e5-6ce3-46ed-95e5-6d6124f6143c +2024-07-29 09:39:58.85977 2024-07-29 09:39:58.859783 comef 8747 R rec b84090a9-4c87-454d-ace7-7d3191016713 +2024-07-29 09:39:58.953632 2024-07-29 09:39:58.953647 comef 8748 R rec 0815cd02-983c-4018-8ac5-89c5091ba059 +2024-07-29 09:39:59.057815 2024-07-29 09:39:59.05783 comef 8749 R rec be037e57-ede4-4dde-9d54-764c7bb64935 +2024-07-29 09:39:59.158629 2024-07-29 09:39:59.158645 comef 8750 R rec 6b31e220-c50b-474f-9ac5-deef36c493f5 +2024-07-29 09:39:59.253209 2024-07-29 09:39:59.253224 comef 8751 R rec e08ccdb8-932b-46ef-8c21-2fb96abb7f15 +2024-07-29 09:39:59.348797 2024-07-29 09:39:59.348808 comef 8752 R rec 37577961-d02e-4671-a3b6-9ea381612428 +2024-07-29 09:39:59.44178 2024-07-29 09:39:59.44179 comef 8753 R rec 4b4f3e21-8da8-45e6-9f86-55333cdc83b8 +2024-07-29 09:39:59.538577 2024-07-29 09:39:59.538588 comef 8754 R rec d6d0121e-f741-4615-a817-b9dbe5445475 +2024-07-29 09:39:59.613987 2024-07-29 09:39:59.613992 comef 8755 R rec 43d1b57d-07f5-450c-8c22-e846e2658d28 +2024-07-29 09:39:59.679528 2024-07-29 09:39:59.67954 comef 8756 R rec c70454da-b5c4-44c1-8e04-f18cb67fac95 +2024-07-29 09:39:59.782074 2024-07-29 09:39:59.782085 comef 8757 R rec 208bd22f-9cff-4d19-b22a-e8bf8b888ad8 +2024-07-29 09:39:59.851873 2024-07-29 09:39:59.851883 comef 8758 R rec 38860790-8b41-4711-b408-90bb09494afd +2024-07-29 09:39:59.92614 2024-07-29 09:39:59.926153 comef 8759 R rec ea912176-d7ee-46be-8232-0438809bc333 +2024-07-29 09:40:00.019926 2024-07-29 09:40:00.019931 comef 8760 R rec a1c6bf35-301f-40c1-8677-23ac6178b4d2 +2024-07-29 09:40:00.096334 2024-07-29 09:40:00.096347 comef 8761 R rec 089261d3-f16e-40b2-8478-ae9b6322e166 +2024-07-29 09:40:00.190375 2024-07-29 09:40:00.190387 comef 8762 R rec 166d5083-c011-4cae-a431-83386be81f8d +2024-07-29 09:40:00.294223 2024-07-29 09:40:00.294235 comef 8763 R rec 3b0b6bfc-87c5-4dc2-8dea-56b253929c5f +2024-07-29 09:40:00.390952 2024-07-29 09:40:00.390961 comef 8764 R rec 02f16423-f639-4f19-99b3-6d847faa64ce +2024-07-29 09:40:00.48454 2024-07-29 09:40:00.484551 comef 8765 R rec 292e7872-b048-47d4-b99f-cbe1e0330ae2 +2024-07-29 09:40:00.588573 2024-07-29 09:40:00.588584 comef 8766 R rec 92c240bc-3021-459b-ab40-19d6945d8255 +2024-07-29 09:40:00.681044 2024-07-29 09:40:00.681056 comef 8767 R rec aa5ff8f3-f0aa-42f4-bd37-46d083bb1bb7 +2024-07-29 09:40:00.757967 2024-07-29 09:40:00.75798 comef 8768 R rec 1aa2957b-17e7-444f-8dff-26ec0c4ca469 +2024-07-29 09:40:00.83694 2024-07-29 09:40:00.836945 comef 8769 R rec fbe17c52-9935-4592-b0f9-16620e615d02 +2024-07-29 09:40:00.906638 2024-07-29 09:40:00.906648 comef 8770 R rec 62f46c44-4458-415d-aacc-17064d395c6a +2024-07-29 09:40:00.994496 2024-07-29 09:40:00.99451 comef 8771 R rec f4514303-8e87-4106-8a93-f32fac28eff7 +2024-07-29 09:40:01.101587 2024-07-29 09:40:01.101599 comef 8772 R rec 6d7be560-97ac-4e60-a80c-c5474f99285e +2024-07-29 09:40:01.219297 2024-07-29 09:40:01.219311 comef 8773 R rec 0ba0768a-3b17-4680-bd61-a3aa4faacf36 +2024-07-29 09:40:01.312262 2024-07-29 09:40:01.312273 comef 8774 R rec e584243a-6798-445b-a324-de53be55ce55 +2024-07-29 09:40:01.420038 2024-07-29 09:40:01.420051 comef 8775 R rec 3686e691-2373-4fdd-aa29-1a05e51e89d7 +2024-07-29 09:40:01.529498 2024-07-29 09:40:01.529509 comef 8776 R rec 56e048fb-48c9-47e7-a6cf-aacc082d8e6a +2024-07-29 09:40:01.621884 2024-07-29 09:40:01.6219 comef 8777 R rec a26ddab4-8148-4c60-83ea-06850fe05627 +2024-07-29 09:40:01.716971 2024-07-29 09:40:01.716987 comef 8778 R rec 19bf51d8-9892-4196-92ce-cfcd70105b6c +2024-07-29 09:40:01.833739 2024-07-29 09:40:01.833822 comef 8779 R rec 6d9d00a9-98df-4573-b9d8-78325efb79fb +2024-07-29 09:40:01.933092 2024-07-29 09:40:01.933105 comef 8780 R rec 1ef21ea9-b3f6-4654-8c7b-8da2b86a0076 +2024-07-29 09:40:02.023872 2024-07-29 09:40:02.023887 comef 8781 R rec ba31503f-a2ac-4577-b638-d92450b6c0e1 +2024-07-29 09:40:02.113831 2024-07-29 09:40:02.113842 comef 8782 R rec c68cc14a-a4eb-44bc-9182-dfba490bba82 +2024-07-29 09:40:02.203777 2024-07-29 09:40:02.203792 comef 8783 R rec 680b4ab6-28b3-423f-893b-94ed812011e1 +2024-07-29 09:40:02.285094 2024-07-29 09:40:02.28511 comef 8784 R rec fc30e70f-6c1a-4c8a-b772-1540bca4c5ef +2024-07-29 09:40:02.364517 2024-07-29 09:40:02.364527 comef 8785 R rec c36c0966-4d16-4324-ae6b-341c1f5bd563 +2024-07-29 09:40:02.45911 2024-07-29 09:40:02.459125 comef 8786 R rec 07918e9d-1ccf-44f4-b223-c843be130580 +2024-07-29 09:40:02.544829 2024-07-29 09:40:02.544842 comef 8787 R rec 8a6b486a-a8ea-447c-97ec-07ae2c57d0d0 +2024-07-29 09:40:02.631305 2024-07-29 09:40:02.631321 comef 8788 R rec 6bb41298-60d5-4f98-bf2b-be2ae6794769 +2024-07-29 09:40:02.719964 2024-07-29 09:40:02.71998 comef 8789 R rec 1a585b57-9b66-48ba-81f2-5bc0106d02ad +2024-07-29 09:40:02.818317 2024-07-29 09:40:02.818328 comef 8790 R rec 303678a7-c1b2-4817-ac09-4eafb117ab24 +2024-07-29 09:40:02.903651 2024-07-29 09:40:02.903657 comef 8791 R rec 326d0f8b-32ca-40bf-a8fc-3719db439faf +2024-07-29 09:40:02.969833 2024-07-29 09:40:02.969844 comef 8792 R rec 106b56f1-d274-45e3-a237-cf6ae4aea706 +2024-07-29 09:40:03.051634 2024-07-29 09:40:03.051659 comef 8793 R rec 7e06afbe-3c7f-42d7-b9a5-7f9612b8f1fc +2024-07-29 09:40:03.139777 2024-07-29 09:40:03.139787 comef 8794 R rec 1b916749-79e4-43be-abec-0a39c2bce958 +2024-07-29 09:40:03.226047 2024-07-29 09:40:03.226059 comef 8795 R rec ed28300c-bb7e-40ad-8dff-ead5625f5be9 +2024-07-29 09:40:03.310438 2024-07-29 09:40:03.310449 comef 8796 R rec b7ba90e7-3423-4b2d-b994-b8b4901b2626 +2024-07-29 09:40:03.419657 2024-07-29 09:40:03.419663 comef 8797 R rec 5a32a4f0-f781-475b-92cd-3a02770d3a96 +2024-07-29 09:40:03.492239 2024-07-29 09:40:03.492249 comef 8798 R rec eb1a7765-231b-4a3d-b22b-557203720134 +2024-07-29 09:40:03.576001 2024-07-29 09:40:03.576013 comef 8799 R rec d34bfa6a-02db-428a-9f3d-4e9551a1db8a +2024-07-29 09:40:03.658693 2024-07-29 09:40:03.658703 comef 8800 R rec b9577aab-1e36-49de-b580-c86203073151 +2024-07-29 09:40:03.731427 2024-07-29 09:40:03.731439 comef 8801 R rec d6ed64cd-e9c7-4722-9cad-185991aef563 +2024-07-29 09:40:03.813679 2024-07-29 09:40:03.813769 comef 8802 R rec ff20360b-52e9-40b5-8b34-c5388a44c298 +2024-07-29 09:40:03.909268 2024-07-29 09:40:03.909278 comef 8803 R rec 3531d58a-86ae-41a7-8f5b-d0f14684d139 +2024-07-29 09:40:03.972279 2024-07-29 09:40:03.972289 comef 8804 R rec 645568be-9fb1-452f-b9f5-c4ef9d0bd314 +2024-07-29 09:40:04.046669 2024-07-29 09:40:04.046682 comef 8805 R rec b0d31c56-a3e2-4cea-8cf2-e1755164252c +2024-07-29 09:40:04.134239 2024-07-29 09:40:04.134256 comef 8806 R rec 9edcd5be-97f2-496f-b202-da03c926d425 +2024-07-29 09:40:04.249656 2024-07-29 09:40:04.249667 comef 8807 R rec ad61149b-b568-42ba-b669-d11b3cab4783 +2024-07-29 09:40:04.353248 2024-07-29 09:40:04.35326 comef 8808 R rec 2147f30b-eb56-447e-9ca8-b1782347a787 +2024-07-29 09:40:04.450753 2024-07-29 09:40:04.450768 comef 8809 R rec a84554d4-77cb-4cbf-9bcc-5bf178ca683e +2024-07-29 09:40:04.58704 2024-07-29 09:40:04.587055 comef 8810 R rec be5394a6-4e00-4355-9ff0-5b1015c2551b +2024-07-29 09:40:04.688313 2024-07-29 09:40:04.688331 comef 8811 R rec 4ab8d4a0-e8dc-449b-ae09-71b9f5807dc4 +2024-07-29 09:40:04.801195 2024-07-29 09:40:04.801208 comef 8812 R rec 29686ff0-e870-4c13-8a01-ed462f28f6f2 +2024-07-29 09:40:04.922005 2024-07-29 09:40:04.92202 comef 8813 R rec f1eb3254-419a-44ea-96de-ef7935abe451 +2024-07-29 09:40:04.994638 2024-07-29 09:40:04.994649 comef 8814 R rec a2dde6ab-c7c0-4781-b7bf-9d48d16b6cb5 +2024-07-29 09:40:05.089755 2024-07-29 09:40:05.089767 comef 8815 R rec 1f359392-131b-44c2-8206-dfca82af3e77 +2024-07-29 09:40:05.198448 2024-07-29 09:40:05.19846 comef 8816 R rec 98246f49-c5b5-432c-82bd-5e92e03ec53c +2024-07-29 09:40:05.300709 2024-07-29 09:40:05.300727 comef 8817 R rec 9dbb910f-a0db-47af-9927-91821e849d17 +2024-07-29 09:40:05.405599 2024-07-29 09:40:05.405611 comef 8818 R rec 7c33350e-24e0-40b1-9086-50a49da9fc0e +2024-07-29 09:40:05.500837 2024-07-29 09:40:05.500849 comef 8819 R rec b27d1678-da98-423a-86cc-bee700a90e30 +2024-07-29 09:40:05.614803 2024-07-29 09:40:05.614818 comef 8820 R rec 08c1f9d9-5b14-4dea-ae41-fb127acc70fc +2024-07-29 09:40:05.71049 2024-07-29 09:40:05.710505 comef 8821 R rec c742aba6-4ad3-4431-8ba7-eafa73f449c7 +2024-07-29 09:40:05.793737 2024-07-29 09:40:05.793752 comef 8822 R rec bb6a52d6-aece-4f40-bb73-c274ea44e4c3 +2024-07-29 09:40:05.885913 2024-07-29 09:40:05.885918 comef 8823 R rec 84bd6ee3-4b5c-49c9-8924-801d3d989c65 +2024-07-29 09:40:05.964417 2024-07-29 09:40:05.964427 comef 8824 R rec 4d6dbc0c-4808-4264-998c-1d9307406b81 +2024-07-29 09:40:06.040542 2024-07-29 09:40:06.040587 comef 8825 R rec a022ea23-e4e4-459d-9345-52ba3696f9d0 +2024-07-29 09:40:06.145479 2024-07-29 09:40:06.14549 comef 8826 R rec 7dcec6d4-25cd-4e08-96e3-13edf7b3efe1 +2024-07-29 09:40:06.273747 2024-07-29 09:40:06.273765 comef 8827 R rec 07d2c927-f533-4103-ab3a-d614211a2bf4 +2024-07-29 09:40:06.398953 2024-07-29 09:40:06.398973 comef 8828 R rec 636f161e-6db4-452a-9c1d-2bcff806fd1c +2024-07-29 09:40:06.508043 2024-07-29 09:40:06.508055 comef 8829 R rec 19272e59-f8b9-4c09-8352-98f74d94cf35 +2024-07-29 09:40:06.60226 2024-07-29 09:40:06.602274 comef 8830 R rec fbeae33e-32b3-462e-8dc3-ca0850f7b730 +2024-07-29 09:40:06.697424 2024-07-29 09:40:06.697436 comef 8831 R rec b47b074f-ba82-446b-a952-1ec802addfda +2024-07-29 09:40:06.805947 2024-07-29 09:40:06.805963 comef 8832 R rec 66288cd2-94fc-48da-a78b-fbc2d278a1ec +2024-07-29 09:40:06.920822 2024-07-29 09:40:06.920839 comef 8833 R rec 54ed00e4-8de5-423a-8d14-8fdb363d3ad0 +2024-07-29 09:40:07.015815 2024-07-29 09:40:07.015822 comef 8834 R rec 7d8639cb-cc9f-4cc1-a2a8-746d4c1830fa +2024-07-29 09:40:07.122111 2024-07-29 09:40:07.122128 comef 8835 R rec 34ae9c0d-11d1-462c-afec-bd8b4175e2f8 +2024-07-29 09:40:07.219221 2024-07-29 09:40:07.219234 comef 8836 R rec 7ec6ecc3-4aa9-42be-a351-2b5a3591964b +2024-07-29 09:40:07.319902 2024-07-29 09:40:07.319916 comef 8837 R rec 426b44ec-b253-4dae-aa9a-b8e620beb2e3 +2024-07-29 09:40:07.430576 2024-07-29 09:40:07.430593 comef 8838 R rec 822dce4f-4e17-43cb-916b-28be4f5529af +2024-07-29 09:40:07.546553 2024-07-29 09:40:07.546563 comef 8839 R rec da0f7911-42eb-4977-9ca4-be752c34ab69 +2024-07-29 09:40:07.647336 2024-07-29 09:40:07.647351 comef 8840 R rec 67b9297a-dc56-48f9-9d19-a93a4fee3e93 +2024-07-29 09:40:07.747123 2024-07-29 09:40:07.747138 comef 8841 R rec 91e7ffda-5f22-40fb-95e9-61a65460b807 +2024-07-29 09:40:07.840403 2024-07-29 09:40:07.840419 comef 8842 R rec f78526ff-b9bc-49e8-9a1b-243917c553fb +2024-07-29 09:40:07.945664 2024-07-29 09:40:07.945674 comef 8843 R rec b4917816-7ca4-4e1d-b784-8c9be878f3a2 +2024-07-29 09:40:08.041973 2024-07-29 09:40:08.041979 comef 8844 R rec d178e02e-a2d9-4803-bd23-73a3f6a4a99c +2024-07-29 09:40:08.116001 2024-07-29 09:40:08.116014 comef 8845 R rec 50518c18-f287-43a5-94d7-20b1e95d1492 +2024-07-29 09:40:08.227029 2024-07-29 09:40:08.227043 comef 8846 R rec 3bd5021a-4a51-49f9-8e81-a4330cd55ffa +2024-07-29 09:40:08.332909 2024-07-29 09:40:08.332928 comef 8847 R rec 88b7737f-c58d-4cab-9281-9d858e298fb8 +2024-07-29 09:40:08.444335 2024-07-29 09:40:08.444351 comef 8848 R rec 132d9ad1-45e3-4880-96bd-6d10f015832b +2024-07-29 09:40:08.549027 2024-07-29 09:40:08.549039 comef 8849 R rec f79b6679-b92c-4f93-8872-8b3d39a4bc71 +2024-07-29 09:40:08.659693 2024-07-29 09:40:08.659709 comef 8850 R rec 921babee-a42e-4f58-9fb7-975e818678cb +2024-07-29 09:40:08.799292 2024-07-29 09:40:08.799309 comef 8851 R rec ab794dcc-ce54-4efb-8948-1ca78fd1439d +2024-07-29 09:40:08.914342 2024-07-29 09:40:08.914354 comef 8852 R rec 1c746a2b-a6e1-47e2-827c-68b0b7a494f0 +2024-07-29 09:40:09.024226 2024-07-29 09:40:09.024243 comef 8853 R rec 2d181f5c-335e-40bb-babc-ae76a9a2bc6c +2024-07-29 09:40:09.109653 2024-07-29 09:40:09.109666 comef 8854 R rec e2130831-d546-4c18-9931-f59332f434b2 +2024-07-29 09:40:09.216794 2024-07-29 09:40:09.216811 comef 8855 R rec 41d0f992-f877-43f2-b90c-df070517d524 +2024-07-29 09:40:09.320606 2024-07-29 09:40:09.320626 comef 8856 R rec 29206d81-3966-4049-8707-47256d47e400 +2024-07-29 09:40:09.427246 2024-07-29 09:40:09.427257 comef 8857 R rec f5720b44-e6db-478f-a8d0-a075e3fdbc9a +2024-07-29 09:40:09.534854 2024-07-29 09:40:09.534866 comef 8858 R rec 27771dce-0efc-4c7c-959f-32fc090df4b7 +2024-07-29 09:40:09.633384 2024-07-29 09:40:09.633401 comef 8859 R rec da2f1fee-35bb-4513-ad0e-4ec11e0fccb0 +2024-07-29 09:40:09.739046 2024-07-29 09:40:09.739109 comef 8860 R rec 09745d86-6cc8-4b70-bb7f-9f3c5ef7c31d +2024-07-29 09:40:09.847297 2024-07-29 09:40:09.847311 comef 8861 R rec a9b3204c-e8a4-48c7-aa75-c2489f9a02dc +2024-07-29 09:40:09.950624 2024-07-29 09:40:09.950636 comef 8862 R rec cbeae672-f21f-4647-b5ed-cffe831dcfd3 +2024-07-29 09:40:10.058728 2024-07-29 09:40:10.058743 comef 8863 R rec 23a4c17e-9aa7-421d-b240-ec354f7ea9b3 +2024-07-29 09:40:10.115674 2024-07-29 09:40:10.115679 comef 8864 R rec 61bc64ac-0ae8-4f2c-878c-e28315e5dc36 +2024-07-29 09:40:10.175197 2024-07-29 09:40:10.175209 comef 8865 R rec 13fc1f32-2e4b-43bd-bd73-6fde888f6dfe +2024-07-29 09:40:10.252203 2024-07-29 09:40:10.252213 comef 8866 R rec f29c4789-752f-4c86-89ad-9948798b886c +2024-07-29 09:40:10.32134 2024-07-29 09:40:10.32135 comef 8867 R rec d62924a4-9eb6-4f01-a825-bb1aa9d8b81b +2024-07-29 09:40:10.388423 2024-07-29 09:40:10.388433 comef 8868 R rec 229ba03f-3bdf-4b77-a212-e5ade1fdf648 +2024-07-29 09:40:10.47129 2024-07-29 09:40:10.4713 comef 8869 R rec bc9c5301-dedf-4c7f-8754-9fa467e65ba0 +2024-07-29 09:40:10.56081 2024-07-29 09:40:10.56082 comef 8870 R rec 44022c90-de12-4c6c-aaa3-cf593bf1716d +2024-07-29 09:40:10.669258 2024-07-29 09:40:10.669268 comef 8871 R rec 4fcf56c4-0144-463f-9f35-26dea48540fe +2024-07-29 09:40:10.75992 2024-07-29 09:40:10.759933 comef 8872 R rec 00e31b03-fd08-4391-9367-783ab2338208 +2024-07-29 09:40:10.852317 2024-07-29 09:40:10.852332 comef 8873 R rec 57529e29-b984-46f1-afde-e93e4e291a74 +2024-07-29 09:40:10.952946 2024-07-29 09:40:10.952963 comef 8874 R rec af5ffbd7-f4a3-4955-a6f0-c28a2a4c9e45 +2024-07-29 09:40:11.036588 2024-07-29 09:40:11.036601 comef 8875 R rec 5ccbbab4-33ce-47f0-bf40-d06b086dac69 +2024-07-29 09:40:11.126973 2024-07-29 09:40:11.126978 comef 8876 R rec 84fb46b7-a304-4ff2-9228-e130f926697e +2024-07-29 09:40:11.184826 2024-07-29 09:40:11.184837 comef 8877 R rec 8e34efce-51ee-4141-bb26-f39565f2f85b +2024-07-29 09:40:11.260725 2024-07-29 09:40:11.260737 comef 8878 R rec 79a24844-7809-460c-90a1-b13936dbf3e4 +2024-07-29 09:40:11.343373 2024-07-29 09:40:11.343383 comef 8879 R rec 7a550cdb-4c06-4211-bbc0-0308fefb93f6 +2024-07-29 09:40:11.433426 2024-07-29 09:40:11.433442 comef 8880 R rec bcfe9caa-35f7-4322-a774-616b83d6fd58 +2024-07-29 09:40:11.525064 2024-07-29 09:40:11.525076 comef 8881 R rec 7bd5445b-6031-4a49-b11d-34f70192a000 +2024-07-29 09:40:11.617187 2024-07-29 09:40:11.617202 comef 8882 R rec 01e9710a-1df6-459c-a1cf-adbbee540cde +2024-07-29 09:40:11.706388 2024-07-29 09:40:11.706398 comef 8883 R rec fea9d755-3eab-45c8-a23a-19cd9ef23e46 +2024-07-29 09:40:11.79666 2024-07-29 09:40:11.796675 comef 8884 R rec 4ba32a10-ab97-4141-a5b6-1f8685d4f16a +2024-07-29 09:40:11.893276 2024-07-29 09:40:11.893286 comef 8885 R rec 9a5320a1-5279-4595-aada-62d1a518e81d +2024-07-29 09:40:11.981891 2024-07-29 09:40:11.981903 comef 8886 R rec fbaaade6-3f3c-45d4-8f2e-ba577a6514eb +2024-07-29 09:40:12.058327 2024-07-29 09:40:12.058339 comef 8887 R rec 3bb33519-9bd5-4e1f-851c-45929ac8b051 +2024-07-29 09:40:12.146718 2024-07-29 09:40:12.146729 comef 8888 R rec 016a7ca8-429f-4b16-b627-b29b01e763e5 +2024-07-29 09:40:12.213999 2024-07-29 09:40:12.21401 comef 8889 R rec 953f689b-76ae-4208-81f8-3c7eec5368b2 +2024-07-29 09:40:12.284092 2024-07-29 09:40:12.284102 comef 8890 R rec 1de1966a-e4cc-4145-8c7f-f93fc354bb36 +2024-07-29 09:40:12.365753 2024-07-29 09:40:12.365769 comef 8891 R rec 9b924a7b-9424-4bf5-9b36-025119f0eb04 +2024-07-29 09:40:12.471691 2024-07-29 09:40:12.471705 comef 8892 R rec ca441bc6-f6d3-44a6-851b-e90058943459 +2024-07-29 09:40:12.560371 2024-07-29 09:40:12.560386 comef 8893 R rec 31af8b5e-3351-4ce9-9f0a-6403db9eb252 +2024-07-29 09:40:12.656317 2024-07-29 09:40:12.656333 comef 8894 R rec 11d56d27-8689-4d00-ac1e-a6a77ab6d9b5 +2024-07-29 09:40:12.742205 2024-07-29 09:40:12.742219 comef 8895 R rec b91715ce-5a4e-4a32-aeff-e77811ae6613 +2024-07-29 09:40:12.814325 2024-07-29 09:40:12.814337 comef 8896 R rec c9f34ec7-5d07-4516-8673-dcb625a6f58d +2024-07-29 09:40:12.902511 2024-07-29 09:40:12.902526 comef 8897 R rec 669b2cb6-a9a7-4fb3-9409-5d75ee1b2d7e +2024-07-29 09:40:12.997249 2024-07-29 09:40:12.997258 comef 8898 R rec 68049cc5-7d60-48b5-95d9-1eafd7d3ac52 +2024-07-29 09:40:13.088842 2024-07-29 09:40:13.088855 comef 8899 R rec f5e0b667-b377-4a69-8e18-d2c9e0778367 +2024-07-29 09:40:13.177034 2024-07-29 09:40:13.177044 comef 8900 R rec c6e7ed78-0d5a-4fbf-b6ca-af805daa0f49 +2024-07-29 09:40:13.235898 2024-07-29 09:40:13.235909 comef 8901 R rec 04f6574f-efaf-4387-af39-2a360b3c13a7 +2024-07-29 09:40:13.323319 2024-07-29 09:40:13.323335 comef 8902 R rec ffe2d0ee-60ec-43dd-acb0-58277a8172c2 +2024-07-29 09:40:13.419107 2024-07-29 09:40:13.419118 comef 8903 R rec 6a7cc219-a568-4520-9a35-e8fb51540682 +2024-07-29 09:40:13.514886 2024-07-29 09:40:13.514901 comef 8904 R rec dd07753a-ef8a-46f5-8cc4-fbb5cb54e826 +2024-07-29 09:40:13.603973 2024-07-29 09:40:13.603989 comef 8905 R rec ac07ed15-9253-490d-897b-555ea6309451 +2024-07-29 09:40:13.692343 2024-07-29 09:40:13.692359 comef 8906 R rec e4b5115f-ffa5-476f-8bf1-ed4118c11020 +2024-07-29 09:40:13.785239 2024-07-29 09:40:13.785255 comef 8907 R rec 479384f6-56ab-4ce4-b207-f237c38853c5 +2024-07-29 09:40:13.887473 2024-07-29 09:40:13.887486 comef 8908 R rec 48b707d7-10ec-41ff-99e0-1ad72ba7efcd +2024-07-29 09:40:13.978441 2024-07-29 09:40:13.978455 comef 8909 R rec f4b64e55-8aeb-445a-af70-3876a4e29fcc +2024-07-29 09:40:14.064507 2024-07-29 09:40:14.064519 comef 8910 R rec 103f70e5-9b08-4a07-ba74-c7f26e590f8e +2024-07-29 09:40:14.148924 2024-07-29 09:40:14.148934 comef 8911 R rec a8a0c2b7-9e36-43cc-b5a7-fd18ca9aeca8 +2024-07-29 09:40:14.23141 2024-07-29 09:40:14.231416 comef 8912 R rec d5973261-7d3e-4898-9073-f0e84fdcca76 +2024-07-29 09:40:14.289058 2024-07-29 09:40:14.289069 comef 8913 R rec 518ef720-17c8-432c-abaf-ed6eeeeb2a40 +2024-07-29 09:40:14.363542 2024-07-29 09:40:14.363553 comef 8914 R rec 00ce20d8-ac50-4d3e-921f-dbdb61ea2045 +2024-07-29 09:40:14.451392 2024-07-29 09:40:14.451405 comef 8915 R rec b196441b-520c-4177-9227-d36eb7fa7742 +2024-07-29 09:40:14.542185 2024-07-29 09:40:14.5422 comef 8916 R rec 19532045-e980-4ac5-bd74-de29aba949bc +2024-07-29 09:40:14.641706 2024-07-29 09:40:14.641722 comef 8917 R rec 84c4e15b-8e82-4b1b-a98d-ce79ec8a4323 +2024-07-29 09:40:14.740115 2024-07-29 09:40:14.740131 comef 8918 R rec 361fb90d-f4bc-470a-bf64-dd9212cc86ab +2024-07-29 09:40:14.836106 2024-07-29 09:40:14.836121 comef 8919 R rec f06049b8-2aba-4ff7-951a-202374d8775a +2024-07-29 09:40:14.93124 2024-07-29 09:40:14.931256 comef 8920 R rec a7c082d7-a0c2-4f49-9dda-166d90fc9682 +2024-07-29 09:40:15.018934 2024-07-29 09:40:15.01895 comef 8921 R rec 07f3760d-dcd1-4ec0-9320-46161cb77752 +2024-07-29 09:40:15.111325 2024-07-29 09:40:15.111335 comef 8922 R rec 42abef96-e048-4186-8e67-b768822ed0f4 +2024-07-29 09:40:15.197705 2024-07-29 09:40:15.19772 comef 8923 R rec ee117fe4-75d8-4e7b-b4f4-4165878fd580 +2024-07-29 09:40:15.270181 2024-07-29 09:40:15.270192 comef 8924 R rec d92d7aca-3567-4e4c-a2f4-45fc1c93963c +2024-07-29 09:40:15.341914 2024-07-29 09:40:15.341925 comef 8925 R rec d9b19879-cc2f-459f-a3bd-ba34a09afba2 +2024-07-29 09:40:15.431283 2024-07-29 09:40:15.431295 comef 8926 R rec 50cb7019-1438-4884-a063-de864f6ee39c +2024-07-29 09:40:15.519214 2024-07-29 09:40:15.519225 comef 8927 R rec 7b11bf53-ee30-47b6-bba2-328cb49bfa34 +2024-07-29 09:40:15.618678 2024-07-29 09:40:15.618694 comef 8928 R rec fcca49be-b8c9-4791-a570-0d90044cf15c +2024-07-29 09:40:15.711935 2024-07-29 09:40:15.711948 comef 8929 R rec 7e3bf7a5-c01c-481a-afdc-f0fc55893195 +2024-07-29 09:40:15.793268 2024-07-29 09:40:15.793279 comef 8930 R rec c09b7e42-5e35-419b-9825-fe0e341e4ecd +2024-07-29 09:40:15.883512 2024-07-29 09:40:15.883522 comef 8931 R rec 80d18aa1-f1d7-49f3-a55f-3ce47c5fd794 +2024-07-29 09:40:15.975291 2024-07-29 09:40:15.975301 comef 8932 R rec ffbd1b83-b428-477d-abe2-84744c56b0d9 +2024-07-29 09:40:16.080039 2024-07-29 09:40:16.080054 comef 8933 R rec 07d188d0-7c6b-4c78-a24b-8e5a6795dfe2 +2024-07-29 09:40:16.181519 2024-07-29 09:40:16.181534 comef 8934 R rec ba76a82f-064d-427e-966e-d213243359fa +2024-07-29 09:40:16.27723 2024-07-29 09:40:16.277235 comef 8935 R rec bccb3b36-0b2f-4a5a-badd-112541e1d415 +2024-07-29 09:40:16.356245 2024-07-29 09:40:16.356259 comef 8936 R rec 1c42ac29-9378-4e2b-992b-6158f10b3a29 +2024-07-29 09:40:16.446132 2024-07-29 09:40:16.446148 comef 8937 R rec 6706cbf1-026d-4f64-9a61-87d92777fcd8 +2024-07-29 09:40:16.552368 2024-07-29 09:40:16.55238 comef 8938 R rec 2db79306-f974-4b88-b876-7bc75dc6e7e5 +2024-07-29 09:40:16.663681 2024-07-29 09:40:16.663697 comef 8939 R rec 6a494303-27a5-4456-afeb-d0c9a37bf514 +2024-07-29 09:40:16.768059 2024-07-29 09:40:16.768071 comef 8940 R rec 22d75ac7-fe82-4331-98f0-34e603a00ca8 +2024-07-29 09:40:16.862998 2024-07-29 09:40:16.863011 comef 8941 R rec 805eccca-1cd9-423c-98b3-e46e1da2d459 +2024-07-29 09:40:16.949958 2024-07-29 09:40:16.94997 comef 8942 R rec 7ea74639-7876-446e-9488-739234263ac1 +2024-07-29 09:40:17.033013 2024-07-29 09:40:17.033023 comef 8943 R rec 2e2c889d-69a4-4a3a-bf6b-35b6b58d9907 +2024-07-29 09:40:17.12544 2024-07-29 09:40:17.125453 comef 8944 R rec 9f690ee9-60bc-4c6b-ae42-37bd2aeb81e8 +2024-07-29 09:40:17.218968 2024-07-29 09:40:17.21898 comef 8945 R rec 4f51ffd3-8006-4489-903f-84c1070c2cfc +2024-07-29 09:40:17.297765 2024-07-29 09:40:17.29777 comef 8946 R rec f97e0de4-6f1a-434e-9aa0-6dfb52912f84 +2024-07-29 09:40:17.354455 2024-07-29 09:40:17.354466 comef 8947 R rec a6069c4f-004c-48df-ac8b-6002fc66925a +2024-07-29 09:40:17.439523 2024-07-29 09:40:17.439536 comef 8948 R rec c357dad8-b164-42ee-95bf-8df2ade579ea +2024-07-29 09:40:17.528126 2024-07-29 09:40:17.528136 comef 8949 R rec 135f8b77-bf79-4a1a-8356-6755a01c8d9e +2024-07-29 09:40:17.602652 2024-07-29 09:40:17.602664 comef 8950 R rec 00ee909b-d261-484c-a46e-d8d0ce9de904 +2024-07-29 09:40:17.693808 2024-07-29 09:40:17.693818 comef 8951 R rec 90d2f289-2fda-4eae-8a21-45ae3aab44bc +2024-07-29 09:40:17.780976 2024-07-29 09:40:17.780992 comef 8952 R rec c3ddc4e8-d047-46ec-8cb0-894397755c6d +2024-07-29 09:40:17.87761 2024-07-29 09:40:17.877619 comef 8953 R rec b9d5249d-625c-4c52-bf53-e7b0ab46dcbc +2024-07-29 09:40:18.002487 2024-07-29 09:40:18.002498 comef 8954 R rec 36e5d02d-c791-4aa9-8a18-a941dffce252 +2024-07-29 09:40:18.096661 2024-07-29 09:40:18.096671 comef 8955 R rec 36740fd6-fd13-4283-a9e7-4ab6b88424a7 +2024-07-29 09:40:18.282339 2024-07-29 09:40:18.282351 comef 8956 R rec d67946ef-35de-489c-bb20-23dfb3647f46 +2024-07-29 09:40:18.338256 2024-07-29 09:40:18.338262 comef 8957 R rec 920f6051-235e-4743-adcf-32360b038269 +2024-07-29 09:40:18.406759 2024-07-29 09:40:18.406773 comef 8958 R rec 3bf71ab9-eefc-4f2e-8862-8b73bae2f3b1 +2024-07-29 09:40:18.491858 2024-07-29 09:40:18.491873 comef 8959 R rec 71b02859-be88-4a41-a447-0143f89eb020 +2024-07-29 09:40:18.59091 2024-07-29 09:40:18.590926 comef 8960 R rec 21c7349b-ea21-4e68-b64b-8cdf3093cb6c +2024-07-29 09:40:18.688334 2024-07-29 09:40:18.68835 comef 8961 R rec e80004b4-6c87-41b7-8af8-d32403b9f911 +2024-07-29 09:40:18.796071 2024-07-29 09:40:18.796087 comef 8962 R rec 9df44688-1c97-47c2-9adc-00ad891c23ae +2024-07-29 09:40:18.894928 2024-07-29 09:40:18.894937 comef 8963 R rec ff37bed3-8eca-4e51-a86e-81f143d9c691 +2024-07-29 09:40:18.989572 2024-07-29 09:40:18.989587 comef 8964 R rec 2a33ed19-f18f-47f1-a0a2-05f4b859ffa6 +2024-07-29 09:40:19.081374 2024-07-29 09:40:19.081389 comef 8965 R rec 2d1a9a75-23a6-45da-9d51-2ecee6fcfd7b +2024-07-29 09:40:19.18173 2024-07-29 09:40:19.181745 comef 8966 R rec 78d796b1-efe7-498c-9935-12e28bf85720 +2024-07-29 09:40:19.277452 2024-07-29 09:40:19.277468 comef 8967 R rec e28da463-6462-4523-b7d2-71a8f5eac53a +2024-07-29 09:40:19.38341 2024-07-29 09:40:19.383421 comef 8968 R rec 84463c6e-53fd-47b2-a9a7-0b1470daa2e6 +2024-07-29 09:40:19.469822 2024-07-29 09:40:19.469833 comef 8969 R rec fc27f955-1f28-47c5-8580-5f56b1b4ccf8 +2024-07-29 09:40:19.556641 2024-07-29 09:40:19.556657 comef 8970 R rec 4f72a607-fd9a-4ad5-a209-1538f9634205 +2024-07-29 09:40:19.645402 2024-07-29 09:40:19.645412 comef 8971 R rec d8601598-37c3-4f52-bde4-bb18a458e06f +2024-07-29 09:40:19.719058 2024-07-29 09:40:19.719105 comef 8972 R rec 23dabd16-7581-4894-85ad-5c7d4976b370 +2024-07-29 09:40:19.817107 2024-07-29 09:40:19.817118 comef 8973 R rec b7f98475-2537-4e00-9cb6-30991403923a +2024-07-29 09:40:19.922882 2024-07-29 09:40:19.922898 comef 8974 R rec 06c6cd9c-fb3f-43ac-9700-3db1e10d3e1b +2024-07-29 09:40:20.017001 2024-07-29 09:40:20.017016 comef 8975 R rec a19e4530-06eb-4285-967f-954c15710214 +2024-07-29 09:40:20.109167 2024-07-29 09:40:20.10918 comef 8976 R rec 2fea7121-034f-4420-8384-c6e3cc16f9a5 +2024-07-29 09:40:20.196651 2024-07-29 09:40:20.196667 comef 8977 R rec 4c3a41eb-20d5-415c-9b88-98bcd210f218 +2024-07-29 09:40:20.282314 2024-07-29 09:40:20.282325 comef 8978 R rec 0657050a-5dda-42a8-ada1-740377044a93 +2024-07-29 09:40:20.385543 2024-07-29 09:40:20.385548 comef 8979 R rec f4c48ad1-307b-4f66-9268-635e69bb0006 +2024-07-29 09:40:20.455114 2024-07-29 09:40:20.455125 comef 8980 R rec 909fd60b-c86b-4aef-87e8-20b2a02e83f8 +2024-07-29 09:40:20.537311 2024-07-29 09:40:20.537316 comef 8981 R rec 6486b615-adf6-42f1-a661-d7057ea316f0 +2024-07-29 09:40:20.60378 2024-07-29 09:40:20.60379 comef 8982 R rec 76511a51-ef69-4235-97c2-414c8ee446e8 +2024-07-29 09:40:20.681205 2024-07-29 09:40:20.681221 comef 8983 R rec d7dc3a09-b333-4356-92a7-ff7b5bce7c52 +2024-07-29 09:40:20.773521 2024-07-29 09:40:20.77354 comef 8984 R rec af9c5b9e-1cdb-4f40-9fa8-a9750a68376f +2024-07-29 09:40:20.865227 2024-07-29 09:40:20.865242 comef 8985 R rec 06820819-00d9-436a-82ea-e25d962072ab +2024-07-29 09:40:20.972301 2024-07-29 09:40:20.972314 comef 8986 R rec dfd36b57-9364-462d-88b6-3e545ec08d21 +2024-07-29 09:40:21.05954 2024-07-29 09:40:21.05955 comef 8987 R rec 933f4b38-8c48-466e-99b8-480204fc53d9 +2024-07-29 09:40:21.14585 2024-07-29 09:40:21.145863 comef 8988 R rec 1269f54d-0a8a-4b9d-bf9c-d1b8ed0b0a32 +2024-07-29 09:40:21.231927 2024-07-29 09:40:21.231942 comef 8989 R rec eec8df03-93ce-4942-9f42-af99a6b8f33c +2024-07-29 09:40:21.326853 2024-07-29 09:40:21.326868 comef 8990 R rec 40a4127b-d67a-4905-b634-23d6b4595c59 +2024-07-29 09:40:21.409652 2024-07-29 09:40:21.409657 comef 8991 R rec 76223f6c-c985-4d17-a3dd-4590b4ac84b1 +2024-07-29 09:40:21.468468 2024-07-29 09:40:21.468479 comef 8992 R rec db6f8fd8-08e4-4d56-b191-fa2423b4ce89 +2024-07-29 09:40:21.54861 2024-07-29 09:40:21.548615 comef 8993 R rec c7e9cce2-b486-406a-8255-da915dae6e48 +2024-07-29 09:40:21.616436 2024-07-29 09:40:21.616447 comef 8994 R rec 3cc6d4b6-eb5a-4e61-9df4-049f417c309e +2024-07-29 09:40:21.696548 2024-07-29 09:40:21.69656 comef 8995 R rec b7bc59af-603d-47b3-bb5c-3f84c1927fed +2024-07-29 09:40:21.78132 2024-07-29 09:40:21.781335 comef 8996 R rec 7fd4c5e7-7513-4dd4-b273-7324f7ec6bd0 +2024-07-29 09:40:21.886261 2024-07-29 09:40:21.886273 comef 8997 R rec 4660622e-db33-4a08-a22e-a219cbe300c6 +2024-07-29 09:40:21.98873 2024-07-29 09:40:21.988739 comef 8998 R rec f277d477-3947-42da-89f8-00ba0dd9bcc9 +2024-07-29 09:40:22.084089 2024-07-29 09:40:22.084097 comef 8999 R rec 642c9632-7860-4438-859b-45c93438883d +2024-07-29 09:40:22.156314 2024-07-29 09:40:22.156325 comef 9000 R rec 5c41ad0c-a336-4836-8d8e-b7f6df7833bb +2024-07-29 09:40:22.246216 2024-07-29 09:40:22.246226 comef 9001 R rec 3a44ab06-ad55-4e8c-ab00-08f2fa92d78e +2024-07-29 09:40:22.333386 2024-07-29 09:40:22.333397 comef 9002 R rec 5e7edf13-535a-4a17-a66b-99c1c37d234c +2024-07-29 09:40:22.418947 2024-07-29 09:40:22.418952 comef 9003 R rec 6ebd641e-06f2-41a9-b7a5-fdadeb723b8e +2024-07-29 09:40:22.480171 2024-07-29 09:40:22.48018 comef 9004 R rec d29ef6a9-135e-448c-a1c1-6b01d1cc2eca +2024-07-29 09:40:22.558307 2024-07-29 09:40:22.558319 comef 9005 R rec 152184e9-311e-464f-be0a-d37865985c32 +2024-07-29 09:40:22.649916 2024-07-29 09:40:22.649925 comef 9006 R rec 6e8317c1-07ff-4dd0-aa2a-3f3e03c2eeba +2024-07-29 09:40:22.729245 2024-07-29 09:40:22.729257 comef 9007 R rec b4e87a9a-6b5c-4129-b795-77052732b003 +2024-07-29 09:40:22.826681 2024-07-29 09:40:22.826695 comef 9008 R rec 473f9288-5519-4b12-9e8f-15a703542526 +2024-07-29 09:40:22.930396 2024-07-29 09:40:22.930408 comef 9009 R rec 6340a00d-78ab-4890-a628-a90a4f65b395 +2024-07-29 09:40:23.014587 2024-07-29 09:40:23.014599 comef 9010 R rec fb7d9e11-cc7e-4328-b9b4-2841e998bbe0 +2024-07-29 09:40:23.103491 2024-07-29 09:40:23.103506 comef 9011 R rec 52cd2b08-95c4-4d94-bcc3-ad474e697989 +2024-07-29 09:40:23.183185 2024-07-29 09:40:23.183222 comef 9012 R rec 9da24fcb-35d3-4acd-9d90-02edde660115 +2024-07-29 09:40:23.267776 2024-07-29 09:40:23.267791 comef 9013 R rec 5cb45667-fbc6-40e5-9735-01e7309c6f63 +2024-07-29 09:40:23.365896 2024-07-29 09:40:23.365911 comef 9014 R rec 474feba2-9aeb-412f-8236-4955ebf382d8 +2024-07-29 09:40:23.453121 2024-07-29 09:40:23.453127 comef 9015 R rec abe9be4d-34cf-408b-bb57-4d32e6a1f199 +2024-07-29 09:40:23.517665 2024-07-29 09:40:23.517676 comef 9016 R rec 0bd82630-ca68-4f87-80c1-0717a6fcfbef +2024-07-29 09:40:23.599521 2024-07-29 09:40:23.599531 comef 9017 R rec 83bc0f2f-7dfc-47f6-8723-ef167e811504 +2024-07-29 09:40:23.687753 2024-07-29 09:40:23.687762 comef 9018 R rec 7b2848b2-d7bb-4a71-a999-8fcb0c5c4557 +2024-07-29 09:40:23.778059 2024-07-29 09:40:23.778073 comef 9019 R rec d432d336-310a-44de-b43f-b539c5860516 +2024-07-29 09:40:23.865283 2024-07-29 09:40:23.865298 comef 9020 R rec 673a4d1d-94d0-4276-acec-35679e089f7a +2024-07-29 09:40:23.95892 2024-07-29 09:40:23.958935 comef 9021 R rec 8c5882ec-df46-4f0c-9be9-f7f3513eb72a +2024-07-29 09:40:24.047765 2024-07-29 09:40:24.047776 comef 9022 R rec 2e2aaf0c-8867-4b12-a8ae-c9b6011a835d +2024-07-29 09:40:24.138407 2024-07-29 09:40:24.138419 comef 9023 R rec b4795d11-7fef-4fb4-ac8d-185db1abcb52 +2024-07-29 09:40:24.219446 2024-07-29 09:40:24.219458 comef 9024 R rec 2e61aa7b-83e6-4478-a8b7-27e2bdad6b05 +2024-07-29 09:40:24.312137 2024-07-29 09:40:24.312153 comef 9025 R rec d2bf8084-6f20-4502-a7bd-b0fbed732cd8 +2024-07-29 09:40:24.405616 2024-07-29 09:40:24.405632 comef 9026 R rec 9aa50f4e-7168-4a76-9bcf-b9e6516b128a +2024-07-29 09:40:24.482321 2024-07-29 09:40:24.482326 comef 9027 R rec af05d192-6969-4b2c-a6cc-d67a77bbaff0 +2024-07-29 09:40:24.537471 2024-07-29 09:40:24.537482 comef 9028 R rec e8e3883c-1037-40d0-96ce-dcb9bc620278 +2024-07-29 09:40:24.626324 2024-07-29 09:40:24.626339 comef 9029 R rec bc92b1ee-fec3-4d58-819f-2e4c37436170 +2024-07-29 09:40:24.716601 2024-07-29 09:40:24.716617 comef 9030 R rec a5d7fc86-00c6-49c7-a345-45f1437c046d +2024-07-29 09:40:24.969682 2024-07-29 09:40:24.969697 comef 9031 R rec 4ef0f749-23f0-4ef9-a9e6-e9ef4d0acb4d +2024-07-29 09:40:25.058523 2024-07-29 09:40:25.058538 comef 9032 R rec 77540030-7a7a-4bf8-b635-d4fe7decfbb6 +2024-07-29 09:40:25.153658 2024-07-29 09:40:25.153669 comef 9033 R rec 36f58e8e-1311-4d0c-994e-b4fce6186fac +2024-07-29 09:40:25.247695 2024-07-29 09:40:25.24771 comef 9034 R rec 9cd70791-b6f1-453a-8182-08c83a6ae37b +2024-07-29 09:40:25.345108 2024-07-29 09:40:25.345123 comef 9035 R rec c095cdd3-a272-46e0-988f-1d63a230b2ca +2024-07-29 09:40:25.456193 2024-07-29 09:40:25.456206 comef 9036 R rec 25ba24db-cc8b-49ec-bcd5-bcaa513ebeb5 +2024-07-29 09:40:25.533953 2024-07-29 09:40:25.533959 comef 9037 R rec 0d675a3b-9541-4846-9c32-2c6ca8f3f295 +2024-07-29 09:40:25.609496 2024-07-29 09:40:25.609508 comef 9038 R rec 86e46576-fca5-452d-b1ff-c084695b243c +2024-07-29 09:40:25.694038 2024-07-29 09:40:25.694049 comef 9039 R rec c13f32e7-0467-4d65-a8ad-954c26b3b687 +2024-07-29 09:40:25.79219 2024-07-29 09:40:25.792205 comef 9040 R rec faf353c2-5ab8-4726-ae66-5e3bc284059b +2024-07-29 09:40:25.897606 2024-07-29 09:40:25.897615 comef 9041 R rec 22c44231-703a-4246-b25d-2f818cab71c4 +2024-07-29 09:40:25.984288 2024-07-29 09:40:25.984301 comef 9042 R rec 287dbb08-ccdf-4411-8348-0b436f35fc2b +2024-07-29 09:40:26.077568 2024-07-29 09:40:26.077579 comef 9043 R rec 9debbb0d-4488-418a-8b69-adc1e28a806a +2024-07-29 09:40:26.160164 2024-07-29 09:40:26.160178 comef 9044 R rec 8e27fe9d-f31a-4af1-bacb-e0ca0a70cf15 +2024-07-29 09:40:26.291495 2024-07-29 09:40:26.291507 comef 9045 R rec 48897bcd-0d8e-4987-a809-3ad84cdee125 +2024-07-29 09:40:26.376201 2024-07-29 09:40:26.37621 comef 9046 R rec ee369b84-3d5c-4d86-8002-f4e94dcb9fb4 +2024-07-29 09:40:26.464491 2024-07-29 09:40:26.464527 comef 9047 R rec a3bf0a61-ae6b-47ed-999c-f391846f4ca9 +2024-07-29 09:40:26.550561 2024-07-29 09:40:26.550566 comef 9048 R rec c2c9fe3e-fbeb-47fb-b6db-4b33be7cd2c8 +2024-07-29 09:40:26.600765 2024-07-29 09:40:26.60077 comef 9049 R rec bfb8ba57-d4ba-4d98-a066-2115e261d07d +2024-07-29 09:40:26.657435 2024-07-29 09:40:26.657446 comef 9050 R rec 2c515a2f-43d0-43fd-8c04-bc3ae14e48f1 +2024-07-29 09:40:26.750122 2024-07-29 09:40:26.750133 comef 9051 R rec 26fe64bd-c57c-46bb-b864-b38dabcf2edb +2024-07-29 09:40:26.843701 2024-07-29 09:40:26.843717 comef 9052 R rec f0b0fab3-6c33-4177-ac37-b5ff39704535 +2024-07-29 09:40:26.943139 2024-07-29 09:40:26.943161 comef 9053 R rec 637a5ced-274a-449b-ab8c-de4fb66aeb5b +2024-07-29 09:40:27.040039 2024-07-29 09:40:27.040052 comef 9054 R rec a33b4b07-c9f4-41ce-863a-b412b38d89bb +2024-07-29 09:40:27.125445 2024-07-29 09:40:27.125457 comef 9055 R rec a03e8cb4-7e4f-4730-af37-19c4d81d7fed +2024-07-29 09:40:27.208323 2024-07-29 09:40:27.208335 comef 9056 R rec 3832ea23-c3f5-4dcc-b28f-495f72471e06 +2024-07-29 09:40:27.307187 2024-07-29 09:40:27.307207 comef 9057 R rec ff05cb97-0628-4ccd-863c-7ebf14756394 +2024-07-29 09:40:27.388835 2024-07-29 09:40:27.388849 comef 9058 R rec c1bc6de4-b5d2-4a8e-8ec7-71c810ef23f5 +2024-07-29 09:40:27.484488 2024-07-29 09:40:27.484504 comef 9059 R rec 5ff75c10-a4af-4c6f-8e6c-73c3dffbf97f +2024-07-29 09:40:27.584625 2024-07-29 09:40:27.58463 comef 9060 R rec a2e235d3-0550-41fa-8eff-00ca57a70bf3 +2024-07-29 09:40:27.664632 2024-07-29 09:40:27.664643 comef 9061 R rec 134dbebb-3b4a-4968-aa04-efc2678f1e5a +2024-07-29 09:40:27.740093 2024-07-29 09:40:27.740099 comef 9062 R rec 920b2485-dad5-4e26-b25f-85e816a6ff8d +2024-07-29 09:40:27.831953 2024-07-29 09:40:27.831963 comef 9063 R rec b746f738-1c0a-47db-ac66-c26adb8d325c +2024-07-29 09:40:27.932629 2024-07-29 09:40:27.932639 comef 9064 R rec 4955f13a-6086-440f-89db-8f13a3e7bf78 +2024-07-29 09:40:28.016219 2024-07-29 09:40:28.016229 comef 9065 R rec c15d1cc4-e089-46ad-9bd9-82e737e702b6 +2024-07-29 09:40:28.107959 2024-07-29 09:40:28.107969 comef 9066 R rec fb0f6504-8d05-45bd-869b-f1d9af647e9d +2024-07-29 09:40:28.193154 2024-07-29 09:40:28.193164 comef 9067 R rec e1f4e995-8024-409d-8f20-fe8484ba634b +2024-07-29 09:40:28.272153 2024-07-29 09:40:28.272163 comef 9068 R rec 857e8c25-b919-4cdb-99a6-5cf382977b2a +2024-07-29 09:40:28.338243 2024-07-29 09:40:28.338255 comef 9069 R rec 13894388-37b5-4271-830c-c6af1a18f246 +2024-07-29 09:40:28.431558 2024-07-29 09:40:28.43157 comef 9070 R rec d16f1dcb-d77b-4fe8-a389-381b1f18f1d9 +2024-07-29 09:40:28.522643 2024-07-29 09:40:28.522658 comef 9071 R rec 09c0ce99-fb01-4fa3-9174-6865aec1db94 +2024-07-29 09:40:28.621825 2024-07-29 09:40:28.62183 comef 9072 R rec eec76ade-851c-44e1-bdba-630597153822 +2024-07-29 09:40:28.694667 2024-07-29 09:40:28.694679 comef 9073 R rec 67d31ef5-2cfc-4f02-8ea8-ce07e0c3ac52 +2024-07-29 09:40:28.793243 2024-07-29 09:40:28.793255 comef 9074 R rec a6815433-6b18-4965-88fa-3ff91b914929 +2024-07-29 09:40:28.89514 2024-07-29 09:40:28.895152 comef 9075 R rec cf2593d9-0482-4534-bd53-9321e191d7b5 +2024-07-29 09:40:28.984885 2024-07-29 09:40:28.984895 comef 9076 R rec 3f45dab1-8405-4d27-8721-a31d951728b4 +2024-07-29 09:40:29.06622 2024-07-29 09:40:29.066232 comef 9077 R rec 313dfcb7-ebee-46e9-a88a-6eede9d3c214 +2024-07-29 09:40:29.149547 2024-07-29 09:40:29.149559 comef 9078 R rec a7ea0f75-ccc9-475d-b3e1-ae32d323996d +2024-07-29 09:40:29.241055 2024-07-29 09:40:29.241069 comef 9079 R rec 31e426d9-190b-4684-8866-45d80507940b +2024-07-29 09:40:29.323782 2024-07-29 09:40:29.323792 comef 9080 R rec d1c6b634-a14a-46a0-a3e9-1579a20379bb +2024-07-29 09:40:29.422579 2024-07-29 09:40:29.422592 comef 9081 R rec 28b8b3d6-446b-454b-9c45-93f84fe367a4 +2024-07-29 09:40:29.517751 2024-07-29 09:40:29.517764 comef 9082 R rec f827e88c-cb77-47d9-b7bc-035b02ee4ef2 +2024-07-29 09:40:29.614256 2024-07-29 09:40:29.614267 comef 9083 R rec 7496c694-999f-4510-8b20-68203dffb2fe +2024-07-29 09:40:29.681844 2024-07-29 09:40:29.681849 comef 9084 R rec 8971bbc0-3110-4047-8a1b-4c813d407176 +2024-07-29 09:40:29.784894 2024-07-29 09:40:29.7849 comef 9085 R rec d4bf2e15-c210-48b5-a0be-b3a2d8501777 +2024-07-29 09:40:29.911841 2024-07-29 09:40:29.911852 comef 9086 R rec 230efbb0-dc72-43d0-8a73-6bdc46a002ac +2024-07-29 09:40:30.025271 2024-07-29 09:40:30.025281 comef 9087 R rec aaec3548-55be-4de3-bfee-c67f983ed588 +2024-07-29 09:40:30.116166 2024-07-29 09:40:30.116178 comef 9088 R rec 1605c8a5-41ed-420d-b0c7-a490c6fae5e1 +2024-07-29 09:40:30.218873 2024-07-29 09:40:30.218885 comef 9089 R rec 0a772504-3c05-4831-b9e5-51c348af9d2b +2024-07-29 09:40:30.295909 2024-07-29 09:40:30.295921 comef 9090 R rec 20489079-763e-4377-b115-f9b85a48ce51 +2024-07-29 09:40:30.396907 2024-07-29 09:40:30.396917 comef 9091 R rec 4a765a72-485f-4b67-927c-167d169c4027 +2024-07-29 09:40:30.479817 2024-07-29 09:40:30.479832 comef 9092 R rec 5fcc267c-2ee6-4f78-8bfe-b126f8ce254f +2024-07-29 09:40:30.570464 2024-07-29 09:40:30.570476 comef 9093 R rec 15fe1fe1-8d57-4f1a-b7b7-119e9bf84e46 +2024-07-29 09:40:30.657617 2024-07-29 09:40:30.657627 comef 9094 R rec 1b035c1b-9e48-482d-9172-d2803fb89e9a +2024-07-29 09:40:30.715234 2024-07-29 09:40:30.715244 comef 9095 R rec eddbe148-62a5-46dc-b54f-2c71e1e6ae56 +2024-07-29 09:40:30.793544 2024-07-29 09:40:30.793559 comef 9096 R rec 20f9f422-34d7-4828-844f-157dbdf0d500 +2024-07-29 09:40:30.891112 2024-07-29 09:40:30.891118 comef 9097 R rec 3fdfc539-a91e-47df-942d-c594b096b55c +2024-07-29 09:40:30.966363 2024-07-29 09:40:30.966379 comef 9098 R rec 5f70a446-ac6c-4078-bdc5-35da2f7e69a1 +2024-07-29 09:40:31.078746 2024-07-29 09:40:31.078757 comef 9099 R rec 33665332-9240-4118-8c6b-0632d64f09b6 +2024-07-29 09:40:31.171168 2024-07-29 09:40:31.171179 comef 9100 R rec 7abc93d8-6855-4a64-9df5-e07224f21387 +2024-07-29 09:40:31.26361 2024-07-29 09:40:31.263624 comef 9101 R rec 65902117-04ae-467e-9609-21c4b9b79954 +2024-07-29 09:40:31.36185 2024-07-29 09:40:31.361865 comef 9102 R rec 334754d4-3873-44d0-b228-9837c47d15e0 +2024-07-29 09:40:31.454518 2024-07-29 09:40:31.454533 comef 9103 R rec 512a186f-79d3-4f7d-8895-8cd718955d6b +2024-07-29 09:40:31.54608 2024-07-29 09:40:31.546093 comef 9104 R rec 20520182-57da-41e3-8cfd-7da25dafc822 +2024-07-29 09:40:31.627403 2024-07-29 09:40:31.627415 comef 9105 R rec d3d26a02-3cf5-46e0-88f7-df6896afc322 +2024-07-29 09:40:31.699552 2024-07-29 09:40:31.699557 comef 9106 R rec 6d6d87af-dac9-4110-86bb-daae8f33341e +2024-07-29 09:40:31.74849 2024-07-29 09:40:31.748501 comef 9107 R rec 3b898693-728d-4725-94b7-3ebcfac9e013 +2024-07-29 09:40:31.828351 2024-07-29 09:40:31.828361 comef 9108 R rec 6cb6adff-122f-42e6-a6bc-35ee82ccba8c +2024-07-29 09:40:31.90963 2024-07-29 09:40:31.909645 comef 9109 R rec a2d2469d-a59b-4b3c-afa7-43044f9c537a +2024-07-29 09:40:32.005929 2024-07-29 09:40:32.005942 comef 9110 R rec 3f0d49d8-6be0-44b7-8042-c15765b027b2 +2024-07-29 09:40:32.101972 2024-07-29 09:40:32.101984 comef 9111 R rec 8f1603d4-e050-45a8-aca0-c26f5a2dbe05 +2024-07-29 09:40:32.19303 2024-07-29 09:40:32.193044 comef 9112 R rec 946fba33-2907-419a-b889-580b28a98527 +2024-07-29 09:40:32.275173 2024-07-29 09:40:32.275189 comef 9113 R rec 49400c6d-7b19-48c5-9dfb-f6d9705e6b94 +2024-07-29 09:40:32.357936 2024-07-29 09:40:32.357946 comef 9114 R rec 11a47166-7d68-4743-9188-1f3f7b40465c +2024-07-29 09:40:32.440378 2024-07-29 09:40:32.440393 comef 9115 R rec 04a3430a-2266-4753-8ca0-05670545c05d +2024-07-29 09:40:32.534815 2024-07-29 09:40:32.534828 comef 9116 R rec 34c85fd6-35bc-4a0f-a84f-e5bea7c1d5ce +2024-07-29 09:40:32.625627 2024-07-29 09:40:32.625642 comef 9117 R rec 5ad13bb5-2166-4445-8cbd-f094277071d2 +2024-07-29 09:40:32.70835 2024-07-29 09:40:32.708361 comef 9118 R rec a16da446-4679-4ca6-845d-891fd3f80597 +2024-07-29 09:40:32.767331 2024-07-29 09:40:32.767346 comef 9119 R rec 5c886517-3a37-4dd4-b0cf-343bd4ee372e +2024-07-29 09:40:32.839236 2024-07-29 09:40:32.839248 comef 9120 R rec e1bfed59-9ace-4356-ba2f-43c8cae529dd +2024-07-29 09:40:32.922091 2024-07-29 09:40:32.922102 comef 9121 R rec 3b073a7f-1ad1-47ef-98bc-6306e6d5b442 +2024-07-29 09:40:32.994638 2024-07-29 09:40:32.994651 comef 9122 R rec a1679e29-b227-4a1d-8788-71ed50455e37 +2024-07-29 09:40:33.087914 2024-07-29 09:40:33.087926 comef 9123 R rec df07aa82-efa6-4708-98e1-89fe41e11deb +2024-07-29 09:40:33.176091 2024-07-29 09:40:33.176101 comef 9124 R rec dafa8b0a-aa97-4df8-ab7a-00747c40fa84 +2024-07-29 09:40:33.258646 2024-07-29 09:40:33.258663 comef 9125 R rec 688e788d-ee2a-4e6c-9508-90ea9b55b1a5 +2024-07-29 09:40:33.354989 2024-07-29 09:40:33.355 comef 9126 R rec e4c10c06-b03f-49b6-b6a2-b432ce84ab58 +2024-07-29 09:40:33.438747 2024-07-29 09:40:33.438759 comef 9127 R rec da55bf29-ba9b-4a7a-8b7e-38d1b3453a58 +2024-07-29 09:40:33.522711 2024-07-29 09:40:33.522726 comef 9128 R rec fdfe78cd-81c3-46e4-a1f0-f8c334287e31 +2024-07-29 09:40:33.618619 2024-07-29 09:40:33.618634 comef 9129 R rec 2d862c0e-ff6e-429b-ae69-e236e794512b +2024-07-29 09:40:33.716808 2024-07-29 09:40:33.716823 comef 9130 R rec 17873de1-b5f1-4940-858c-b64817540fd7 +2024-07-29 09:40:33.786177 2024-07-29 09:40:33.786187 comef 9131 R rec 6c10a5a7-4c6b-4e9e-ba7d-0d6428d44b57 +2024-07-29 09:40:33.85876 2024-07-29 09:40:33.858778 comef 9132 R rec c32f5ecb-c1b2-4983-a66d-f9512526284d +2024-07-29 09:40:33.956792 2024-07-29 09:40:33.956805 comef 9133 R rec 4fbfe096-1a62-4f87-b633-5e8f0d7de629 +2024-07-29 09:40:34.046414 2024-07-29 09:40:34.046429 comef 9134 R rec 1ab13083-9cb4-488a-b165-474e6056a636 +2024-07-29 09:40:34.147308 2024-07-29 09:40:34.147323 comef 9135 R rec 9676846b-250d-4db2-bba7-893992b86c44 +2024-07-29 09:40:34.236229 2024-07-29 09:40:34.236239 comef 9136 R rec 8bf0b98e-8a5f-4213-b27d-569ab92530e5 +2024-07-29 09:40:34.321207 2024-07-29 09:40:34.321222 comef 9137 R rec 31b5e24f-8dd4-4601-9c91-2007e2e8b580 +2024-07-29 09:40:34.409867 2024-07-29 09:40:34.409882 comef 9138 R rec 9d7da637-6346-4f24-b7eb-4e94ad4577a2 +2024-07-29 09:40:34.50197 2024-07-29 09:40:34.501985 comef 9139 R rec 2a247f69-2e96-4f2c-a073-30b3c008721d +2024-07-29 09:40:34.587968 2024-07-29 09:40:34.587983 comef 9140 R rec 86206f7f-8b95-46d3-812d-97c4cf6cdb5b +2024-07-29 09:40:34.676727 2024-07-29 09:40:34.676742 comef 9141 R rec e0dea7c0-1d30-4e66-965b-5abdeb541475 +2024-07-29 09:40:34.768329 2024-07-29 09:40:34.768339 comef 9142 R rec 191826d7-e002-4c10-8b72-86612bd27830 +2024-07-29 09:40:34.836954 2024-07-29 09:40:34.836966 comef 9143 R rec 64345e22-87f1-40bb-9815-011f0b2ad58d +2024-07-29 09:40:34.930843 2024-07-29 09:40:34.930858 comef 9144 R rec 244fa005-a9ec-4d26-b1c8-d1f624230927 +2024-07-29 09:40:35.044478 2024-07-29 09:40:35.04449 comef 9145 R rec f1cf31a5-0197-4ff2-aa91-ad312ac2d513 +2024-07-29 09:40:35.146604 2024-07-29 09:40:35.146615 comef 9146 R rec 2a041e38-28fd-4387-8208-aacdfc5044c5 +2024-07-29 09:40:35.263303 2024-07-29 09:40:35.263309 comef 9147 R rec c376e449-cbe6-4c11-89c7-6829510c4b12 +2024-07-29 09:40:35.350355 2024-07-29 09:40:35.350365 comef 9148 R rec c3ab4c53-c3af-43ff-bdc8-5a5ea5e3636e +2024-07-29 09:40:35.442279 2024-07-29 09:40:35.442292 comef 9149 R rec acccf946-12b2-4c18-8557-5fa21f495e22 +2024-07-29 09:40:35.527227 2024-07-29 09:40:35.527241 comef 9150 R rec 824091b7-1d1b-4734-864d-1b44b5b8fa38 +2024-07-29 09:40:35.608995 2024-07-29 09:40:35.60901 comef 9151 R rec 528213ff-a92f-4ea6-b6ab-774439a9583a +2024-07-29 09:40:35.702377 2024-07-29 09:40:35.702393 comef 9152 R rec 9fd2aaed-ba82-4898-9a1a-437a50443503 +2024-07-29 09:40:35.795402 2024-07-29 09:40:35.795407 comef 9153 R rec bb849f39-4ad1-4378-a25a-752008c7b0c9 +2024-07-29 09:40:35.853976 2024-07-29 09:40:35.853986 comef 9154 R rec e5211a88-881d-4e55-b577-a497c74da9b8 +2024-07-29 09:40:35.928237 2024-07-29 09:40:35.928248 comef 9155 R rec d770a411-b26e-437e-b1a5-c0179a33cd7d +2024-07-29 09:40:36.023281 2024-07-29 09:40:36.023291 comef 9156 R rec f44d628d-e219-459a-be97-283abcc499c3 +2024-07-29 09:40:36.11019 2024-07-29 09:40:36.110203 comef 9157 R rec e3e09a0f-bb0d-4842-aba2-c7a6ac84e42d +2024-07-29 09:40:36.197512 2024-07-29 09:40:36.197527 comef 9158 R rec 10ec5ee3-ad6f-4820-891c-3c16ab6652c9 +2024-07-29 09:40:36.281963 2024-07-29 09:40:36.281976 comef 9159 R rec 4157d81f-4290-4419-8218-4f423a86ff8b +2024-07-29 09:40:36.377701 2024-07-29 09:40:36.377711 comef 9160 R rec 47f32d82-f353-4562-bdfe-f841fe125bc5 +2024-07-29 09:40:36.468789 2024-07-29 09:40:36.46881 comef 9161 R rec 3a5b988b-5a7f-4290-b86e-3913679c1e7f +2024-07-29 09:40:36.566496 2024-07-29 09:40:36.566509 comef 9162 R rec 8e8f865b-76c8-4f32-b566-d3a86c26b79d +2024-07-29 09:40:36.65639 2024-07-29 09:40:36.656403 comef 9163 R rec d031ae15-33f5-4162-8a40-e850785d1e8b +2024-07-29 09:40:36.753479 2024-07-29 09:40:36.753494 comef 9164 R rec e77f083b-33ef-4f08-9327-90523f984724 +2024-07-29 09:40:36.839073 2024-07-29 09:40:36.839079 comef 9165 R rec 9c820b1e-d054-4705-ba06-04330cd1b85a +2024-07-29 09:40:36.898435 2024-07-29 09:40:36.898445 comef 9166 R rec 01593173-7063-4b8c-8853-088d5b16098b +2024-07-29 09:40:36.973125 2024-07-29 09:40:36.973134 comef 9167 R rec c4199209-b663-4a38-bde8-8d83546f3b64 +2024-07-29 09:40:37.043656 2024-07-29 09:40:37.043666 comef 9168 R rec c2fba17e-f484-41f0-8586-089295ab84a8 +2024-07-29 09:40:37.160372 2024-07-29 09:40:37.160382 comef 9169 R rec 8e089862-836e-4519-b3e0-6ad8bd74c1d6 +2024-07-29 09:40:37.250235 2024-07-29 09:40:37.250245 comef 9170 R rec 834f2327-6d6c-4871-8e8c-138e48d95900 +2024-07-29 09:40:37.341058 2024-07-29 09:40:37.341071 comef 9171 R rec d42ceaf6-820b-4bdb-a337-80fe021b2d14 +2024-07-29 09:40:37.434166 2024-07-29 09:40:37.43418 comef 9172 R rec 5245ebaa-abef-4cbe-9add-bac438035b22 +2024-07-29 09:40:37.525303 2024-07-29 09:40:37.525319 comef 9173 R rec 70a42247-d283-4706-bdd2-b1f5759f9c2a +2024-07-29 09:40:37.623084 2024-07-29 09:40:37.623099 comef 9174 R rec 652b9ba6-6031-42ce-9484-ad43a337fc1f +2024-07-29 09:40:37.714044 2024-07-29 09:40:37.714063 comef 9175 R rec 3c006b1b-87fb-45af-b6f2-699acb09ddaa +2024-07-29 09:40:37.802478 2024-07-29 09:40:37.802494 comef 9176 R rec 58dfd58d-3c19-45c2-a377-1ef0edf8b348 +2024-07-29 09:40:37.882527 2024-07-29 09:40:37.882533 comef 9177 R rec 6e09df70-63fd-47d2-8618-4ed0d925c8fe +2024-07-29 09:40:37.94819 2024-07-29 09:40:37.9482 comef 9178 R rec a53822b5-9968-4903-a74e-50ff1fe1b3fe +2024-07-29 09:40:38.021047 2024-07-29 09:40:38.021058 comef 9179 R rec 37aec341-1dfc-4f9f-b937-756ef10e2599 +2024-07-29 09:40:38.122735 2024-07-29 09:40:38.122747 comef 9180 R rec 983640e0-7026-4a5e-8dc5-37812b2dcf59 +2024-07-29 09:40:38.209867 2024-07-29 09:40:38.209882 comef 9181 R rec 09263a10-6312-48ac-b65c-1bdca9a59261 +2024-07-29 09:40:38.302368 2024-07-29 09:40:38.302377 comef 9182 R rec 23a6fcdd-1fbc-45b0-82de-e99ebfb7564c +2024-07-29 09:40:38.385693 2024-07-29 09:40:38.385704 comef 9183 R rec d4ed0abe-c4af-486f-a23f-1acf687c5498 +2024-07-29 09:40:38.477282 2024-07-29 09:40:38.477297 comef 9184 R rec d14ea0af-0d77-4a19-b219-ba957a83081f +2024-07-29 09:40:38.598411 2024-07-29 09:40:38.598421 comef 9185 R rec 8b05dd55-69fd-4ad2-a06c-4fa3a623e7fe +2024-07-29 09:40:38.705726 2024-07-29 09:40:38.705741 comef 9186 R rec 62cef45a-a3bd-4fed-9928-25d72d0f777d +2024-07-29 09:40:38.799092 2024-07-29 09:40:38.799108 comef 9187 R rec f9cda690-2b10-4da8-b486-d551ed0023e1 +2024-07-29 09:40:38.887099 2024-07-29 09:40:38.887104 comef 9188 R rec dcf653ec-4f5d-4da3-b297-91493b97a9a7 +2024-07-29 09:40:38.941687 2024-07-29 09:40:38.941698 comef 9189 R rec 2aa256df-0786-4fd6-b84b-a7130d7e5f7a +2024-07-29 09:40:39.005563 2024-07-29 09:40:39.005574 comef 9190 R rec f0e7c96a-f5b0-4e51-a7fc-2af90d97f133 +2024-07-29 09:40:39.079797 2024-07-29 09:40:39.079809 comef 9191 R rec 81a4a191-a699-41a1-9a12-870541ad9219 +2024-07-29 09:40:39.166558 2024-07-29 09:40:39.166572 comef 9192 R rec 15654622-f9a7-480e-875a-931101f96d1c +2024-07-29 09:40:39.257422 2024-07-29 09:40:39.257437 comef 9193 R rec 183df0e3-55db-43db-88f8-984a4f54c97b +2024-07-29 09:40:39.352923 2024-07-29 09:40:39.352933 comef 9194 R rec 5e783ed9-7b5c-4ec5-aa56-4f0bfdd8094d +2024-07-29 09:40:39.441879 2024-07-29 09:40:39.441894 comef 9195 R rec 3be0333d-b219-4763-a91a-aa54054c28c4 +2024-07-29 09:40:39.596073 2024-07-29 09:40:39.596088 comef 9196 R rec b0e2eddb-f95d-4ce0-8589-3fae7ad513ef +2024-07-29 09:40:39.69579 2024-07-29 09:40:39.695803 comef 9197 R rec ce5edee0-2855-439e-a35f-dc3a79ed8a8e +2024-07-29 09:40:39.790203 2024-07-29 09:40:39.790214 comef 9198 R rec 86239f66-1c48-44cb-b557-5cfb5b638a5c +2024-07-29 09:40:39.890928 2024-07-29 09:40:39.890938 comef 9199 R rec 0918138d-c0aa-4de2-ba9b-6dd3cdd4ea54 +2024-07-29 09:40:39.948256 2024-07-29 09:40:39.948261 comef 9200 R rec 659e2337-2028-46da-8b68-9985acb15337 +2024-07-29 09:40:40.01677 2024-07-29 09:40:40.01678 comef 9201 R rec fa50642a-4b9f-44c8-8e46-c563f3d44976 +2024-07-29 09:40:40.092376 2024-07-29 09:40:40.092389 comef 9202 R rec d2e22a69-f60c-4821-a148-32ef2ec06f6b +2024-07-29 09:40:40.176055 2024-07-29 09:40:40.176065 comef 9203 R rec 6e1480f9-b574-482c-b264-dfb6c6a7d619 +2024-07-29 09:40:40.258995 2024-07-29 09:40:40.259009 comef 9204 R rec 5b999c64-2995-4453-a6c5-670ebeb38aec +2024-07-29 09:40:40.346411 2024-07-29 09:40:40.346422 comef 9205 R rec 3209f864-2d51-4695-999f-90cef028c804 +2024-07-29 09:40:40.428364 2024-07-29 09:40:40.428376 comef 9206 R rec 28562b3c-6bf6-4520-be8a-7557eccdb771 +2024-07-29 09:40:40.52023 2024-07-29 09:40:40.520245 comef 9207 R rec a906ce9c-2cc0-4223-9157-6bbca3fa95ea +2024-07-29 09:40:40.623087 2024-07-29 09:40:40.623099 comef 9208 R rec 692b7173-65fd-4832-a1af-e915546ddf29 +2024-07-29 09:40:40.703408 2024-07-29 09:40:40.703421 comef 9209 R rec 4bfa907e-3924-4e91-8df4-1d8c8a353090 +2024-07-29 09:40:40.791252 2024-07-29 09:40:40.791267 comef 9210 R rec 7b2af90c-312b-45f8-849b-a738dc64cde3 +2024-07-29 09:40:40.887057 2024-07-29 09:40:40.887069 comef 9211 R rec d448ff0c-1ba0-4d4d-bef1-d898bc0d4d25 +2024-07-29 09:40:40.958309 2024-07-29 09:40:40.958314 comef 9212 R rec 69c05b4e-572b-44e7-a9e3-8f8cd12c7fbc +2024-07-29 09:40:41.031408 2024-07-29 09:40:41.031434 comef 9213 R rec e779de63-838b-4c6f-b118-d3beb37f7db2 +2024-07-29 09:40:41.108155 2024-07-29 09:40:41.108166 comef 9214 R rec 3be78b29-93df-4fd8-815a-0d598624d328 +2024-07-29 09:40:41.200979 2024-07-29 09:40:41.200994 comef 9215 R rec e2813dae-0557-41b2-8ca3-52f2b71ee603 +2024-07-29 09:40:41.290754 2024-07-29 09:40:41.290771 comef 9216 R rec 1ec10be9-7567-4a23-b94d-2efaaa659dda +2024-07-29 09:40:41.390201 2024-07-29 09:40:41.390214 comef 9217 R rec aa9ec832-102a-419e-a218-47dca3a00193 +2024-07-29 09:40:41.49282 2024-07-29 09:40:41.492835 comef 9218 R rec 5169a3e0-1dfc-458a-b048-c8bbf0844fca +2024-07-29 09:40:41.588069 2024-07-29 09:40:41.588081 comef 9219 R rec 0b15ca04-80ff-4272-b9be-4eaf066cb9e8 +2024-07-29 09:40:41.689532 2024-07-29 09:40:41.689547 comef 9220 R rec 0604fb2e-3315-4c62-9342-13e398d39b7a +2024-07-29 09:40:41.779922 2024-07-29 09:40:41.779935 comef 9221 R rec 299b6b98-37c4-4e9c-8ea4-df4cd52448e3 +2024-07-29 09:40:41.872189 2024-07-29 09:40:41.872204 comef 9222 R rec 87ff7f51-f8af-433d-844e-5abfbd8d7478 +2024-07-29 09:40:41.963072 2024-07-29 09:40:41.963081 comef 9223 R rec 4e65b673-49fd-4461-be74-6c6c0d2b4982 +2024-07-29 09:40:42.02419 2024-07-29 09:40:42.024201 comef 9224 R rec dfe3a700-a99e-4c33-a67c-9488328ed598 +2024-07-29 09:40:42.106214 2024-07-29 09:40:42.106226 comef 9225 R rec 917485bd-eb02-4e83-ae8d-baeaacf56ee1 +2024-07-29 09:40:42.19086 2024-07-29 09:40:42.190875 comef 9226 R rec 3d29d214-1065-474e-a962-aed864fde78d +2024-07-29 09:40:42.274423 2024-07-29 09:40:42.274434 comef 9227 R rec 20ae5f72-c576-4a23-a9b3-63b437f0ad0d +2024-07-29 09:40:42.360458 2024-07-29 09:40:42.360469 comef 9228 R rec 3721114a-e70a-4c52-9b05-0ac813e7c308 +2024-07-29 09:40:42.438833 2024-07-29 09:40:42.438842 comef 9229 R rec ed2957d0-d67b-4ffe-a9a2-13bca2074615 +2024-07-29 09:40:42.520168 2024-07-29 09:40:42.520183 comef 9230 R rec 14ce7eb5-4d0b-4a20-ac02-7b40f5e3bd37 +2024-07-29 09:40:42.612816 2024-07-29 09:40:42.612831 comef 9231 R rec e8142332-6613-4b2a-8afd-a128f78f5d10 +2024-07-29 09:40:42.706032 2024-07-29 09:40:42.706047 comef 9232 R rec 5299f310-49e9-4e97-b34e-23d114843710 +2024-07-29 09:40:42.803469 2024-07-29 09:40:42.803486 comef 9233 R rec b0dce182-5a28-41ea-bd42-9e248abae614 +2024-07-29 09:40:42.903725 2024-07-29 09:40:42.903736 comef 9234 R rec f35a281f-000b-4457-a128-d87c68d5b33e +2024-07-29 09:40:42.998074 2024-07-29 09:40:42.99808 comef 9235 R rec f88ee117-7cb1-45ee-959f-cd3975f53cc8 +2024-07-29 09:40:43.056855 2024-07-29 09:40:43.056866 comef 9236 R rec 26370a0d-e234-43a4-ab86-f75afdd12727 +2024-07-29 09:40:43.129298 2024-07-29 09:40:43.129308 comef 9237 R rec b7530b9b-55fa-4b5f-b938-d5a46a426a86 +2024-07-29 09:40:43.211738 2024-07-29 09:40:43.211754 comef 9238 R rec 44b791d2-b72d-485e-ad84-9d970838b81d +2024-07-29 09:40:43.309218 2024-07-29 09:40:43.309234 comef 9239 R rec d86b553f-da3b-4d6f-816f-f448a413365a +2024-07-29 09:40:43.398442 2024-07-29 09:40:43.398458 comef 9240 R rec 9480bc3d-5924-4755-be4f-0bb01ceb554e +2024-07-29 09:40:43.492037 2024-07-29 09:40:43.492047 comef 9241 R rec b5612f20-c355-4918-a0ec-5ea3ae5f74c1 +2024-07-29 09:40:43.596912 2024-07-29 09:40:43.596921 comef 9242 R rec 376d12f6-9739-464d-9283-4eda890c66c2 +2024-07-29 09:40:43.689974 2024-07-29 09:40:43.689984 comef 9243 R rec 9c0db42d-9d89-458c-a55c-65aa0123cc0c +2024-07-29 09:40:43.793388 2024-07-29 09:40:43.7934 comef 9244 R rec a5679714-742d-422e-9a3d-1ff63ce62574 +2024-07-29 09:40:43.896103 2024-07-29 09:40:43.896113 comef 9245 R rec 46e190fb-0f23-4a60-878b-8c4bb76f595c +2024-07-29 09:40:43.99809 2024-07-29 09:40:43.998102 comef 9246 R rec 379b6c25-b19d-43cd-bb25-58e7dab5a94d +2024-07-29 09:40:44.057787 2024-07-29 09:40:44.057791 comef 9247 R rec 84c88fc9-357a-4c9c-b671-aa8b0907eef4 +2024-07-29 09:40:44.117929 2024-07-29 09:40:44.117942 comef 9248 R rec 945cc1e7-5c90-40ae-be82-c1904aa75e9c +2024-07-29 09:40:44.200715 2024-07-29 09:40:44.20072 comef 9249 R rec be326e28-81ef-4e91-a908-88b726ca1bfc +2024-07-29 09:40:44.281934 2024-07-29 09:40:44.281946 comef 9250 R rec eb034b8d-efc1-4fbe-a9a0-831c8fb8bb96 +2024-07-29 09:40:44.382028 2024-07-29 09:40:44.382038 comef 9251 R rec 0f8d3bb0-5b11-41f9-a0af-a3156caeced8 +2024-07-29 09:40:44.485645 2024-07-29 09:40:44.485658 comef 9252 R rec 1cebe566-4afb-4046-a21b-f5d910e485d9 +2024-07-29 09:40:44.590544 2024-07-29 09:40:44.590559 comef 9253 R rec 67f143ea-1c55-4531-b788-084f3604684b +2024-07-29 09:40:44.70995 2024-07-29 09:40:44.709961 comef 9254 R rec b02a880b-b9a1-4fcf-8ac4-c703ce3e274e +2024-07-29 09:40:44.815266 2024-07-29 09:40:44.815282 comef 9255 R rec 4cccb1af-0926-4e06-80af-81c97913c2d5 +2024-07-29 09:40:44.926121 2024-07-29 09:40:44.926134 comef 9256 R rec 3b0c33a1-7fb1-4890-8bd7-5532d030d0c1 +2024-07-29 09:40:45.036067 2024-07-29 09:40:45.036078 comef 9257 R rec 46fcb4d6-3954-4e9b-b1fb-0469d4705073 +2024-07-29 09:40:45.108717 2024-07-29 09:40:45.108729 comef 9258 R rec 18396cce-befe-428b-842c-6c46b463a188 +2024-07-29 09:40:45.196457 2024-07-29 09:40:45.196468 comef 9259 R rec 9a039f3f-7c6b-4f4c-ad78-92a7203172a2 +2024-07-29 09:40:45.280272 2024-07-29 09:40:45.280287 comef 9260 R rec c1c450c1-a737-492e-84e4-e27c6f0153b1 +2024-07-29 09:40:45.373886 2024-07-29 09:40:45.3739 comef 9261 R rec 2a7e75d1-5cd6-4719-9cd8-3b0e6f704a13 +2024-07-29 09:40:45.477 2024-07-29 09:40:45.477015 comef 9262 R rec 416b0344-f9b5-4b56-91c7-87ee99e64273 +2024-07-29 09:40:45.574602 2024-07-29 09:40:45.574617 comef 9263 R rec d5b4d967-2fae-43ca-8674-94b3d2d6b0ba +2024-07-29 09:40:45.665218 2024-07-29 09:40:45.665232 comef 9264 R rec 179d8ab3-ff99-476c-b897-fcc9bbdb41ca +2024-07-29 09:40:45.777513 2024-07-29 09:40:45.777528 comef 9265 R rec d5ad78f4-3ff1-479c-acf5-979699abd635 +2024-07-29 09:40:45.890699 2024-07-29 09:40:45.890712 comef 9266 R rec e2120a1d-3295-4045-83d0-f58788e6a448 +2024-07-29 09:40:45.991147 2024-07-29 09:40:45.99116 comef 9267 R rec 07d5a1ed-e9f9-47ec-b194-e153c2ec0d2a +2024-07-29 09:40:46.074567 2024-07-29 09:40:46.074578 comef 9268 R rec 7ac72f33-db6f-432c-8922-63d73a2263c8 +2024-07-29 09:40:46.139306 2024-07-29 09:40:46.139317 comef 9269 R rec bb548459-ee09-49b7-a74c-55227502318e +2024-07-29 09:40:46.216039 2024-07-29 09:40:46.216055 comef 9270 R rec 324ebebe-000b-49c5-bf19-c3e397fc04fd +2024-07-29 09:40:46.316335 2024-07-29 09:40:46.316345 comef 9271 R rec ebd5eca8-e953-451d-9ca1-40e992eafc8f +2024-07-29 09:40:46.422519 2024-07-29 09:40:46.422534 comef 9272 R rec 56b8a74c-8212-4beb-b033-ad85751e9af5 +2024-07-29 09:40:46.521613 2024-07-29 09:40:46.521628 comef 9273 R rec 482c22fd-eb3e-47df-8312-37bcff1bc348 +2024-07-29 09:40:46.624475 2024-07-29 09:40:46.62449 comef 9274 R rec 3c2e55bf-215e-4679-ba78-5d40e87b50ba +2024-07-29 09:40:46.716993 2024-07-29 09:40:46.717007 comef 9275 R rec 8d6e8149-bd73-45d7-a066-56d54fe5d673 +2024-07-29 09:40:46.814854 2024-07-29 09:40:46.814867 comef 9276 R rec 995b0a36-11c1-4add-be18-aa57b7fca8fe +2024-07-29 09:40:46.91496 2024-07-29 09:40:46.914975 comef 9277 R rec fa44c49d-6ca3-4d27-9523-7a5c5ec28c02 +2024-07-29 09:40:47.00911 2024-07-29 09:40:47.009125 comef 9278 R rec c1bbe224-33cf-4a14-944d-30038e40a46f +2024-07-29 09:40:47.109467 2024-07-29 09:40:47.109477 comef 9279 R rec 6a7b21b0-afd8-4a44-9445-b57f6d3e4523 +2024-07-29 09:40:47.174091 2024-07-29 09:40:47.174102 comef 9280 R rec d0ba3747-d174-4aa6-96a3-a78c844b0bab +2024-07-29 09:40:47.251942 2024-07-29 09:40:47.251954 comef 9281 R rec cb1f4417-fcc2-4686-b043-6920ab168379 +2024-07-29 09:40:47.33144 2024-07-29 09:40:47.331453 comef 9282 R rec d3613169-47b3-472a-a53b-1aa5c3f02eba +2024-07-29 09:40:47.424216 2024-07-29 09:40:47.424228 comef 9283 R rec 2bcc22d8-338b-4b3d-b85a-b8077592f280 +2024-07-29 09:40:47.510715 2024-07-29 09:40:47.51073 comef 9284 R rec f228a3b8-6067-4632-9cd4-a4b860e932a8 +2024-07-29 09:40:47.60407 2024-07-29 09:40:47.604082 comef 9285 R rec 74e2c348-5efb-4579-b215-b48a6b64a3ee +2024-07-29 09:40:47.689978 2024-07-29 09:40:47.689988 comef 9286 R rec a76ff651-7dca-426e-8da3-bb42b2e2a5bc +2024-07-29 09:40:47.775084 2024-07-29 09:40:47.775099 comef 9287 R rec e5059f8b-b9aa-4373-9c87-34274c4a87a5 +2024-07-29 09:40:47.872953 2024-07-29 09:40:47.872969 comef 9288 R rec 3e85b13b-b6bf-4400-8a91-8dd39a20f68b +2024-07-29 09:40:47.976148 2024-07-29 09:40:47.976163 comef 9289 R rec 3f163686-0e49-44bd-b20c-ae22f7e22a6b +2024-07-29 09:40:48.072021 2024-07-29 09:40:48.072038 comef 9290 R rec aec45c4c-7f99-4d73-8324-372909a20217 +2024-07-29 09:40:48.14987 2024-07-29 09:40:48.149875 comef 9291 R rec 489634fc-c69f-483f-8a4d-392065330ed3 +2024-07-29 09:40:48.202472 2024-07-29 09:40:48.202482 comef 9292 R rec 8c7c908a-1253-4b1c-ac3f-6b64271af2b6 +2024-07-29 09:40:48.27406 2024-07-29 09:40:48.274072 comef 9293 R rec 35c118cd-d673-4dec-b2d9-9fe2ea40f78f +2024-07-29 09:40:48.3535 2024-07-29 09:40:48.353512 comef 9294 R rec 3b9286ae-b2f0-4449-9398-74293643951d +2024-07-29 09:40:48.438024 2024-07-29 09:40:48.43804 comef 9295 R rec c34fe398-617d-4727-a7bf-b84371e8f684 +2024-07-29 09:40:48.524944 2024-07-29 09:40:48.524958 comef 9296 R rec e47882bb-a6ed-459d-b238-8fd100c8c65f +2024-07-29 09:40:48.618656 2024-07-29 09:40:48.618666 comef 9297 R rec ed9ae3c7-26a6-4949-a7a8-9f455c5ff10b +2024-07-29 09:40:48.712158 2024-07-29 09:40:48.712173 comef 9298 R rec 0e6c2c7e-c1d7-4cce-8523-34277390d73b +2024-07-29 09:40:48.806113 2024-07-29 09:40:48.806128 comef 9299 R rec 7d148407-45ca-47a3-9f72-cf3f8ae1cea9 +2024-07-29 09:40:48.900876 2024-07-29 09:40:48.900888 comef 9300 R rec 4209a37c-a002-4e48-b305-c02e41109d6e +2024-07-29 09:40:48.991619 2024-07-29 09:40:48.991629 comef 9301 R rec cf5506c8-e615-48d6-9809-cf5a5e634431 +2024-07-29 09:40:49.077137 2024-07-29 09:40:49.077157 comef 9302 R rec aa10ad8e-3c1f-4364-b724-da9092a46de0 +2024-07-29 09:40:49.169946 2024-07-29 09:40:49.169956 comef 9303 R rec 3bd314c5-9fbf-4833-bce5-55c402b7efe9 +2024-07-29 09:40:49.23799 2024-07-29 09:40:49.238002 comef 9304 R rec d33690a7-2da8-439a-8fc5-0a8a47b80683 +2024-07-29 09:40:49.318608 2024-07-29 09:40:49.31862 comef 9305 R rec 9ced6d22-54a8-468a-a3a1-468a4afb23bf +2024-07-29 09:40:49.400511 2024-07-29 09:40:49.400521 comef 9306 R rec 85848423-e4ba-4601-b414-68b4c4dc5fa7 +2024-07-29 09:40:49.486344 2024-07-29 09:40:49.486359 comef 9307 R rec e7eb5454-9d00-40ae-81ec-4eeadc652ba2 +2024-07-29 09:40:49.57909 2024-07-29 09:40:49.579105 comef 9308 R rec f14f281b-667b-4edd-82db-ce40a53bba03 +2024-07-29 09:40:49.670288 2024-07-29 09:40:49.670309 comef 9309 R rec 6b62a68b-1db0-46e1-a0af-16d2ef21db8d +2024-07-29 09:40:49.766254 2024-07-29 09:40:49.766269 comef 9310 R rec f23d5c2d-9f7a-4596-aa5b-2fc8a8863900 +2024-07-29 09:40:49.867556 2024-07-29 09:40:49.867572 comef 9311 R rec b5451c50-0c24-4409-aff2-561f3fcd27ba +2024-07-29 09:40:49.963913 2024-07-29 09:40:49.963922 comef 9312 R rec 0dd26dd4-4dba-45f4-ad84-af7dab1197d9 +2024-07-29 09:40:50.051738 2024-07-29 09:40:50.051753 comef 9313 R rec 26303179-1b9f-40a4-9a1f-10c333af14b5 +2024-07-29 09:40:50.152513 2024-07-29 09:40:50.152528 comef 9314 R rec 0420e1d7-296d-4a11-b920-3cad7721fee4 +2024-07-29 09:40:50.233814 2024-07-29 09:40:50.233819 comef 9315 R rec d28ff038-05a5-464c-aef4-833845758bca +2024-07-29 09:40:50.305744 2024-07-29 09:40:50.305765 comef 9316 R rec 73b5a1aa-8698-4e02-b1a7-c773e43d7aee +2024-07-29 09:40:50.391687 2024-07-29 09:40:50.3917 comef 9317 R rec 78e5c2c4-3e2e-4946-973b-65e1f429d182 +2024-07-29 09:40:50.479692 2024-07-29 09:40:50.479704 comef 9318 R rec 99872cfc-7c3d-4115-b087-e72d463aa408 +2024-07-29 09:40:50.576012 2024-07-29 09:40:50.576027 comef 9319 R rec d94ae576-d037-4f60-9def-4d9373ab7744 +2024-07-29 09:40:50.669771 2024-07-29 09:40:50.669786 comef 9320 R rec bdfb6dee-da5a-4f24-a5af-70e42d795c66 +2024-07-29 09:40:50.764346 2024-07-29 09:40:50.764361 comef 9321 R rec 54b9eac1-6b24-412c-8219-1075dff2da80 +2024-07-29 09:40:50.860369 2024-07-29 09:40:50.860384 comef 9322 R rec ad1b02c9-ef64-4947-9575-d6f098c9e770 +2024-07-29 09:40:50.95742 2024-07-29 09:40:50.957435 comef 9323 R rec 17d49c46-2887-4985-927d-0a22119673c1 +2024-07-29 09:40:51.048927 2024-07-29 09:40:51.048942 comef 9324 R rec d1c71e95-be42-44cd-b421-96e432dab35e +2024-07-29 09:40:51.133427 2024-07-29 09:40:51.133442 comef 9325 R rec aeabfa52-54a1-422a-bbf6-83b16a36f769 +2024-07-29 09:40:51.231093 2024-07-29 09:40:51.231104 comef 9326 R rec b584c15c-a861-48ff-aa7d-10db80b76ec3 +2024-07-29 09:40:51.303553 2024-07-29 09:40:51.303564 comef 9327 R rec e2ab05bb-9238-4305-a9ff-4e94bdc4781d +2024-07-29 09:40:51.378725 2024-07-29 09:40:51.378736 comef 9328 R rec a85f8484-876e-4a8f-b68c-c6057ace9583 +2024-07-29 09:40:51.466253 2024-07-29 09:40:51.466266 comef 9329 R rec 76809272-66b6-4cbc-a16b-8d516e39e159 +2024-07-29 09:40:51.551799 2024-07-29 09:40:51.551809 comef 9330 R rec c3118158-f94d-41b0-8deb-fb9bee1832b0 +2024-07-29 09:40:51.640591 2024-07-29 09:40:51.640606 comef 9331 R rec c67a658e-a036-4a8f-a4a4-129b4f292bf9 +2024-07-29 09:40:51.726327 2024-07-29 09:40:51.726342 comef 9332 R rec b9d0774c-1077-4c4c-9fcc-97eb8aa0af43 +2024-07-29 09:40:51.826034 2024-07-29 09:40:51.826045 comef 9333 R rec 0477bb41-79bf-4a45-8838-e58a0b98fbf0 +2024-07-29 09:40:51.91578 2024-07-29 09:40:51.915793 comef 9334 R rec 9fd876e1-fcc6-4359-98f3-e45145b21fd3 +2024-07-29 09:40:52.014455 2024-07-29 09:40:52.014468 comef 9335 R rec 91d74cd6-7b27-4a6c-9cde-5f209b981c78 +2024-07-29 09:40:52.101435 2024-07-29 09:40:52.101448 comef 9336 R rec bcd803ba-cec1-4e09-a29c-555b83a7a0b0 +2024-07-29 09:40:52.193548 2024-07-29 09:40:52.193563 comef 9337 R rec de15b7e0-82eb-446e-9536-ff16237c8e1c +2024-07-29 09:40:52.271909 2024-07-29 09:40:52.271915 comef 9338 R rec 972fe0d0-efb6-4655-b2f1-5d0fb0ed8358 +2024-07-29 09:40:52.323745 2024-07-29 09:40:52.323756 comef 9339 R rec 6a95be8b-18c2-41fc-b539-1bd7326e9450 +2024-07-29 09:40:52.400494 2024-07-29 09:40:52.400503 comef 9340 R rec cf4bb71e-e1a6-4c36-874f-d6849d9b8783 +2024-07-29 09:40:52.480949 2024-07-29 09:40:52.480964 comef 9341 R rec 9858a68c-4f12-4b6f-9092-c216594abc2f +2024-07-29 09:40:52.572124 2024-07-29 09:40:52.572137 comef 9342 R rec 5abeb207-4586-4267-aad3-036270fd59bf +2024-07-29 09:40:52.652201 2024-07-29 09:40:52.652215 comef 9343 R rec 74d96765-a8b6-4526-81d9-c6f457da5106 +2024-07-29 09:40:52.738781 2024-07-29 09:40:52.738796 comef 9344 R rec 9599b008-8213-43a2-a439-e3aae0d90e92 +2024-07-29 09:40:52.831332 2024-07-29 09:40:52.831341 comef 9345 R rec 67d6e761-959a-4cff-a229-6c72c08748ff +2024-07-29 09:40:52.923994 2024-07-29 09:40:52.924009 comef 9346 R rec 19767ec8-594c-4f20-a147-ffb33ab8eb93 +2024-07-29 09:40:53.011183 2024-07-29 09:40:53.011193 comef 9347 R rec ff8c7827-8ffa-45d1-a42b-30528b0ba6f1 +2024-07-29 09:40:53.088183 2024-07-29 09:40:53.088193 comef 9348 R rec 9fa7da78-ba92-477d-aff3-69cd7ed7c659 +2024-07-29 09:40:53.189967 2024-07-29 09:40:53.189977 comef 9349 R rec 38485bba-9bad-46ae-a09c-21ec50837414 +2024-07-29 09:40:53.276158 2024-07-29 09:40:53.276171 comef 9350 R rec a5efc1cb-189b-4e57-be73-f78f75f21add +2024-07-29 09:40:53.328652 2024-07-29 09:40:53.328657 comef 9351 R rec 8cedf202-c0d9-425f-868c-d0c22a76184e +2024-07-29 09:40:53.399496 2024-07-29 09:40:53.399502 comef 9352 R rec 418f620c-f321-4e50-ab85-bba77ff758cb +2024-07-29 09:40:53.464371 2024-07-29 09:40:53.464382 comef 9353 R rec 671b67b2-fc6a-4085-a9e4-35b727bc0516 +2024-07-29 09:40:53.543028 2024-07-29 09:40:53.543041 comef 9354 R rec 54786fcb-e976-425e-ba22-3d618c11b477 +2024-07-29 09:40:53.627622 2024-07-29 09:40:53.627637 comef 9355 R rec 5564681c-aabe-4dfa-ac1b-1f91af40c01d +2024-07-29 09:40:53.712776 2024-07-29 09:40:53.712788 comef 9356 R rec 6b3b9a22-a5f5-4f8b-ad92-882e8f725451 +2024-07-29 09:40:53.871126 2024-07-29 09:40:53.871136 comef 9357 R rec c50baee6-cdc9-4019-aca4-7a58cb0632a2 +2024-07-29 09:40:54.249261 2024-07-29 09:40:54.249274 comef 9358 R rec d1341725-f17f-44d7-b3d5-02d371283464 +2024-07-29 09:40:54.35144 2024-07-29 09:40:54.351451 comef 9359 R rec e2995f1e-4300-4f90-8648-bcef9af3048c +2024-07-29 09:40:54.442601 2024-07-29 09:40:54.442613 comef 9360 R rec 55ddf09f-df08-4f7e-a49a-7ae4198fff00 +2024-07-29 09:40:54.536121 2024-07-29 09:40:54.536133 comef 9361 R rec 9edf23a6-ec0c-451d-9f03-2ea572aa596a +2024-07-29 09:40:54.629753 2024-07-29 09:40:54.629768 comef 9362 R rec 23d7fa8f-98cc-4ec6-8fa9-a02eb8764399 +2024-07-29 09:40:54.72139 2024-07-29 09:40:54.721403 comef 9363 R rec 2bd65c91-6c0a-4760-b7e0-d4461b951b47 +2024-07-29 09:40:54.806338 2024-07-29 09:40:54.806347 comef 9364 R rec 6273ba19-6628-4170-82b3-a465f99bd580 +2024-07-29 09:40:54.895328 2024-07-29 09:40:54.895339 comef 9365 R rec 4155a59e-b199-4ee6-9aa0-c7c162aed58e +2024-07-29 09:40:54.989083 2024-07-29 09:40:54.989094 comef 9366 R rec 335b548a-f3cf-40e5-9751-10362a71dcff +2024-07-29 09:40:55.080481 2024-07-29 09:40:55.080497 comef 9367 R rec a3e40a52-67a1-4422-8388-17bf337b4e72 +2024-07-29 09:40:55.170599 2024-07-29 09:40:55.170611 comef 9368 R rec fc364bff-cff3-4920-aef6-bf7b65f644dd +2024-07-29 09:40:55.255494 2024-07-29 09:40:55.255529 comef 9369 R rec 02827f59-b88c-4cd1-b89b-7bb1568093b9 +2024-07-29 09:40:55.33764 2024-07-29 09:40:55.337646 comef 9370 R rec c6dea369-1de7-4867-8dd5-902f3785719d +2024-07-29 09:40:55.395647 2024-07-29 09:40:55.395657 comef 9371 R rec f5e57aa0-c3cd-48c2-b837-8d2f40f256d4 +2024-07-29 09:40:55.470804 2024-07-29 09:40:55.470814 comef 9372 R rec 6c64a192-f380-4115-aa6c-bb49f08c42b2 +2024-07-29 09:40:55.55908 2024-07-29 09:40:55.559094 comef 9373 R rec f0b73699-632a-4ec3-b563-9bfae193624f +2024-07-29 09:40:55.646838 2024-07-29 09:40:55.646853 comef 9374 R rec 5a29800a-de76-4eaa-bd39-28023fefcca1 +2024-07-29 09:40:55.732217 2024-07-29 09:40:55.732228 comef 9375 R rec 1f50c2ae-90c8-4ded-a188-4eb15762571b +2024-07-29 09:40:55.813267 2024-07-29 09:40:55.813282 comef 9376 R rec d4d18ad3-b2df-469f-a574-97317b29efa5 +2024-07-29 09:40:55.898942 2024-07-29 09:40:55.898956 comef 9377 R rec 409193e8-998f-4238-8df2-b5481d4e4546 +2024-07-29 09:40:55.987695 2024-07-29 09:40:55.987709 comef 9378 R rec bbc29262-03f4-4ced-a5ce-e4ed30b02250 +2024-07-29 09:40:56.070906 2024-07-29 09:40:56.07092 comef 9379 R rec 6c49db8e-ded4-4ffe-97ac-60b75d28b94a +2024-07-29 09:40:56.154362 2024-07-29 09:40:56.154372 comef 9380 R rec dbff2ae0-d3fa-4c4e-80af-e5529b3bba02 +2024-07-29 09:40:56.238819 2024-07-29 09:40:56.23883 comef 9381 R rec 5ba1e7ca-6bbe-40f4-96e2-f0c1ac99ce4c +2024-07-29 09:40:56.319925 2024-07-29 09:40:56.319938 comef 9382 R rec a01bb640-3f5b-4adc-8a4d-cca62910c2ac +2024-07-29 09:40:56.390181 2024-07-29 09:40:56.390186 comef 9383 R rec 40d6c7ea-0037-4bf3-b246-35baab74f053 +2024-07-29 09:40:56.465051 2024-07-29 09:40:56.465061 comef 9384 R rec c8707199-75dc-4166-857d-ce3d730b0798 +2024-07-29 09:40:56.550027 2024-07-29 09:40:56.550042 comef 9385 R rec d362133b-e83e-453c-bd6a-89c2b2c4af19 +2024-07-29 09:40:56.636254 2024-07-29 09:40:56.636269 comef 9386 R rec b3bfaba6-68c3-4de5-91a7-1247d9209c78 +2024-07-29 09:40:56.71758 2024-07-29 09:40:56.717592 comef 9387 R rec d2375546-8464-4f0c-b5df-c525e653218f +2024-07-29 09:40:56.809043 2024-07-29 09:40:56.809053 comef 9388 R rec cbd4843d-aaf7-4f97-b36f-8d5f0b955eb9 +2024-07-29 09:40:56.893349 2024-07-29 09:40:56.893361 comef 9389 R rec 2d4333fb-e032-44db-8278-51d4cf3cbce8 +2024-07-29 09:40:56.98114 2024-07-29 09:40:56.981152 comef 9390 R rec ea7b9d83-9409-4cef-8deb-d0f4efaa23ea +2024-07-29 09:40:57.048786 2024-07-29 09:40:57.048797 comef 9391 R rec 500f7920-e2c8-4d24-b32b-73bc41d5ef0c +2024-07-29 09:40:57.117869 2024-07-29 09:40:57.117881 comef 9392 R rec 50cce555-f0e1-4366-ae5d-ef7c51ea8d70 +2024-07-29 09:40:57.191957 2024-07-29 09:40:57.191968 comef 9393 R rec 28cba67e-1b74-4b05-b56e-df12d86b89e4 +2024-07-29 09:40:57.272939 2024-07-29 09:40:57.272955 comef 9394 R rec edb7f26a-df81-476b-8673-d97404268a00 +2024-07-29 09:40:57.359134 2024-07-29 09:40:57.359149 comef 9395 R rec a1e4380c-569d-4fed-aa2c-03d551a59ec5 +2024-07-29 09:40:57.428388 2024-07-29 09:40:57.428398 comef 9396 R rec 2e4addc8-0a75-4209-95c7-2474de3d51fb +2024-07-29 09:40:57.492681 2024-07-29 09:40:57.492693 comef 9397 R rec c805b5a7-2fc6-49df-b10c-7bf7200d2f31 +2024-07-29 09:40:57.569454 2024-07-29 09:40:57.569466 comef 9398 R rec fbf31e04-ddcd-42d7-ba60-42146148ff5e +2024-07-29 09:40:57.652996 2024-07-29 09:40:57.653011 comef 9399 R rec 45cb123b-d0bc-4a40-93f0-50d66a36b729 +2024-07-29 09:40:57.750291 2024-07-29 09:40:57.750307 comef 9400 R rec 51383135-6eb0-4cdd-88a0-e8664a42317a +2024-07-29 09:40:57.848009 2024-07-29 09:40:57.848024 comef 9401 R rec e422372b-4e4c-448b-8dab-3979c893717c +2024-07-29 09:40:57.935786 2024-07-29 09:40:57.9358 comef 9402 R rec 36be6f85-38d3-4583-9e3f-e2cbae47acfd +2024-07-29 09:40:58.026267 2024-07-29 09:40:58.02628 comef 9403 R rec df2ed215-9d30-438d-a608-2694c13044d5 +2024-07-29 09:40:58.119621 2024-07-29 09:40:58.119633 comef 9404 R rec fd6ab557-306d-4d52-baf3-59cd9f45edcc +2024-07-29 09:40:58.199409 2024-07-29 09:40:58.199424 comef 9405 R rec ddd9cf65-8928-435c-87cc-1ea8d6a8bca3 +2024-07-29 09:40:58.278406 2024-07-29 09:40:58.278419 comef 9406 R rec d1c72c8b-c111-4a57-9f0a-bbff35525f34 +2024-07-29 09:40:58.366136 2024-07-29 09:40:58.366145 comef 9407 R rec a77ed116-ed3c-408c-8d72-e440fe7b09e9 +2024-07-29 09:40:58.437398 2024-07-29 09:40:58.437404 comef 9408 R rec 47933802-5c99-47ca-add0-7df4c042c9e1 +2024-07-29 09:40:58.492099 2024-07-29 09:40:58.492109 comef 9409 R rec a33cdd79-c3d7-4acc-bf90-5eb8d7bcf673 +2024-07-29 09:40:58.562523 2024-07-29 09:40:58.562536 comef 9410 R rec 6eb94e55-013f-4924-bf2f-483d7365ce40 +2024-07-29 09:40:58.643128 2024-07-29 09:40:58.643141 comef 9411 R rec 78a74a6b-0083-4833-9f30-efbd4a556a92 +2024-07-29 09:40:58.733313 2024-07-29 09:40:58.733328 comef 9412 R rec 865073b0-9e66-4d66-84b7-49db983f6685 +2024-07-29 09:40:58.825418 2024-07-29 09:40:58.825428 comef 9413 R rec 9ff2c16e-d3f8-4f19-a609-739add839472 +2024-07-29 09:40:58.908764 2024-07-29 09:40:58.908775 comef 9414 R rec 908c0841-ffa1-45be-a66c-28b03759a29f +2024-07-29 09:40:58.980552 2024-07-29 09:40:58.980564 comef 9415 R rec 9dc6d42e-8845-4134-a60d-2fb37006970a +2024-07-29 09:40:59.061627 2024-07-29 09:40:59.061642 comef 9416 R rec 2a06e67d-aedd-4088-9f63-cfe762025d14 +2024-07-29 09:40:59.148143 2024-07-29 09:40:59.148159 comef 9417 R rec 4bfc8d05-3762-4a21-b90c-98cbcac2df1c +2024-07-29 09:40:59.238022 2024-07-29 09:40:59.238036 comef 9418 R rec 193d9f82-f146-482d-b9b8-8d400ac6e0e7 +2024-07-29 09:40:59.329408 2024-07-29 09:40:59.329423 comef 9419 R rec ee1f2d21-d6be-49d4-9a15-f1549359a4ea +2024-07-29 09:40:59.435098 2024-07-29 09:40:59.435108 comef 9420 R rec 33fed73a-d1e1-400a-beb0-5925f4d0bff3 +2024-07-29 09:40:59.490523 2024-07-29 09:40:59.490533 comef 9421 R rec efe3ed06-18c3-4b45-adba-4d917eaa3621 +2024-07-29 09:40:59.563004 2024-07-29 09:40:59.563016 comef 9422 R rec 274dff94-7d1a-465a-a0a1-a95dac1dd0f6 +2024-07-29 09:40:59.656995 2024-07-29 09:40:59.657005 comef 9423 R rec 7b3b520f-cd69-49fd-8eae-ed39527c679f +2024-07-29 09:40:59.733457 2024-07-29 09:40:59.733472 comef 9424 R rec 9b394c83-ce66-4a27-826f-ddb3fbe522c6 +2024-07-29 09:40:59.812333 2024-07-29 09:40:59.812348 comef 9425 R rec ac71b902-8064-49a0-a7f2-7bf661fc134a +2024-07-29 09:40:59.910084 2024-07-29 09:40:59.910099 comef 9426 R rec 9ceb865a-87ba-4ed2-ba0c-947077b0600e +2024-07-29 09:41:00.020548 2024-07-29 09:41:00.020555 comef 9427 R rec 19a78188-1e86-469c-8ebf-ac163e02086b +2024-07-29 09:41:00.082234 2024-07-29 09:41:00.082247 comef 9428 R rec 151a0077-546b-4f94-b91a-2886fe0a0687 +2024-07-29 09:41:00.16167 2024-07-29 09:41:00.161685 comef 9429 R rec f72ab870-d990-4a0f-b8f1-cd63193e6799 +2024-07-29 09:41:00.246939 2024-07-29 09:41:00.246949 comef 9430 R rec 944dae9c-3b05-4a77-bd3f-0aece67abe22 +2024-07-29 09:41:00.332979 2024-07-29 09:41:00.332994 comef 9431 R rec d46ac001-5903-41b5-b6c2-14725265858c +2024-07-29 09:41:00.422073 2024-07-29 09:41:00.422085 comef 9432 R rec 72e4b7af-9ef0-482c-9297-e6e12b15c89b +2024-07-29 09:41:00.571838 2024-07-29 09:41:00.571843 comef 9433 R rec e317177a-5781-4d96-8b2d-f4636a0cfa44 +2024-07-29 09:41:00.619095 2024-07-29 09:41:00.6191 comef 9434 R rec 5394b2c6-b948-4297-8f97-c4c3f6c97e8a +2024-07-29 09:41:00.667846 2024-07-29 09:41:00.66785 comef 9435 R rec c4376ccd-9cd2-450c-816e-0bd6e78875a2 +2024-07-29 09:41:00.709454 2024-07-29 09:41:00.709458 comef 9436 R rec cedf78a4-8ee3-4d0d-9f22-e3134da56d53 +2024-07-29 09:41:00.752954 2024-07-29 09:41:00.752959 comef 9437 R rec ae1028e7-80f2-4ec6-81dc-1a5079835712 +2024-07-29 09:41:00.80533 2024-07-29 09:41:00.80534 comef 9438 R rec 0a50b5be-8548-4ba7-b1c3-3460ee3715d4 +2024-07-29 09:41:00.86878 2024-07-29 09:41:00.868793 comef 9439 R rec 30ccc947-d0fb-4eda-8e04-a05a399b1877 +2024-07-29 09:41:00.952857 2024-07-29 09:41:00.952872 comef 9440 R rec 530bdf2e-2a1d-4d4c-928d-547f3832e526 +2024-07-29 09:41:01.045234 2024-07-29 09:41:01.045249 comef 9441 R rec 4f200eae-346e-4fac-8b4d-8bd8a290cff9 +2024-07-29 09:41:01.122504 2024-07-29 09:41:01.122518 comef 9442 R rec 825cb361-fdaf-4ba2-99b4-4721b2b79b3d +2024-07-29 09:41:01.199809 2024-07-29 09:41:01.199824 comef 9443 R rec 94f9b15b-1b12-47f0-9db4-e727852b5b41 +2024-07-29 09:41:01.296989 2024-07-29 09:41:01.297 comef 9444 R rec 550298ca-ad38-4ea4-b994-305c62fd0592 +2024-07-29 09:41:01.387721 2024-07-29 09:41:01.387734 comef 9445 R rec ac5ce6f3-03bf-40fb-925f-61d559181fd4 +2024-07-29 09:41:01.465013 2024-07-29 09:41:01.465023 comef 9446 R rec dc88596d-af67-4928-b960-f223b9528b4d +2024-07-29 09:41:01.538453 2024-07-29 09:41:01.538458 comef 9447 R rec 5b35577c-028c-4748-b234-08cb25f51a44 +2024-07-29 09:41:01.607819 2024-07-29 09:41:01.607829 comef 9448 R rec 63012ee0-8ce5-4d1b-a0ae-87a082f06de9 +2024-07-29 09:41:01.685733 2024-07-29 09:41:01.685745 comef 9449 R rec 0b151f65-5697-4478-9842-3f6e8ba52f81 +2024-07-29 09:41:01.770465 2024-07-29 09:41:01.770477 comef 9450 R rec eaa46e9f-d615-4055-ae8a-1148a7608766 +2024-07-29 09:41:01.855004 2024-07-29 09:41:01.855018 comef 9451 R rec 721af3c0-fa0b-46a1-bfc1-d7125d65638d +2024-07-29 09:41:01.953703 2024-07-29 09:41:01.953791 comef 9452 R rec f155c74e-2426-4edc-8a3e-b411f630e017 +2024-07-29 09:41:02.054645 2024-07-29 09:41:02.054657 comef 9453 R rec 61146a67-d1fa-4872-b6ff-d052d3295a47 +2024-07-29 09:41:02.157751 2024-07-29 09:41:02.157767 comef 9454 R rec d746af1a-40d0-41db-8c36-b8f007670de5 +2024-07-29 09:41:02.275608 2024-07-29 09:41:02.27562 comef 9455 R rec c5d3e223-dec1-4da0-ab42-4cd886f6ff36 +2024-07-29 09:41:02.379607 2024-07-29 09:41:02.379618 comef 9456 R rec f5ddc6b7-3239-4daa-86b4-cd072a8a5e8e +2024-07-29 09:41:02.474296 2024-07-29 09:41:02.474306 comef 9457 R rec be96cc01-f214-485a-b869-6e15b5c9c2d7 +2024-07-29 09:41:02.556604 2024-07-29 09:41:02.556609 comef 9458 R rec 3e29a681-5c88-4f8b-9773-703ab7da3317 +2024-07-29 09:41:02.616613 2024-07-29 09:41:02.616624 comef 9459 R rec a9e99fab-d422-4364-8f50-1f683ec9f73d +2024-07-29 09:41:02.696891 2024-07-29 09:41:02.696902 comef 9460 R rec 77180e78-1fc8-4a43-8d74-bfc6d17cb96e +2024-07-29 09:41:02.775653 2024-07-29 09:41:02.775666 comef 9461 R rec e91fd8ce-2ed3-466d-8cbe-59d0d30213d7 +2024-07-29 09:41:02.872342 2024-07-29 09:41:02.872353 comef 9462 R rec 7cc4c116-5dfc-4f0b-bc4f-6946fc6e8cda +2024-07-29 09:41:02.970633 2024-07-29 09:41:02.970645 comef 9463 R rec c4c7ffc3-c4cf-4167-9928-ca8a8ba1b308 +2024-07-29 09:41:03.073369 2024-07-29 09:41:03.073386 comef 9464 R rec aafecb87-574c-4746-96a4-df049a5243b1 +2024-07-29 09:41:03.1784 2024-07-29 09:41:03.17841 comef 9465 R rec 94ff0c9d-6f49-48c1-b246-221560e4dc6f +2024-07-29 09:41:03.280182 2024-07-29 09:41:03.280197 comef 9466 R rec 243edf07-c83e-4f89-b9db-24356776dabf +2024-07-29 09:41:03.392854 2024-07-29 09:41:03.392867 comef 9467 R rec ff435a51-30a9-473a-a3a9-d6c4a114e9b8 +2024-07-29 09:41:03.489551 2024-07-29 09:41:03.489564 comef 9468 R rec c92907f1-4949-4d43-8364-db9d20790c7d +2024-07-29 09:41:03.577577 2024-07-29 09:41:03.577583 comef 9469 R rec 30e64c7b-5407-40f8-9cd0-207aece340d0 +2024-07-29 09:41:03.629708 2024-07-29 09:41:03.629718 comef 9470 R rec 84aadcb1-814e-4d91-9325-4dde9748b1b7 +2024-07-29 09:41:03.700859 2024-07-29 09:41:03.700872 comef 9471 R rec e64a6546-3859-4641-8c03-322532a99717 +2024-07-29 09:41:03.791981 2024-07-29 09:41:03.791996 comef 9472 R rec 7378f598-4ee1-43b9-95ba-9fa18f5ceae2 +2024-07-29 09:41:03.88883 2024-07-29 09:41:03.888842 comef 9473 R rec 35421c56-96d3-4cf8-8562-c3ce806becf0 +2024-07-29 09:41:03.97834 2024-07-29 09:41:03.978355 comef 9474 R rec fd56f453-13c3-4ba2-835d-ecbe4568db2d +2024-07-29 09:41:04.073161 2024-07-29 09:41:04.073176 comef 9475 R rec 490ed754-92fa-4deb-a408-c635447410a5 +2024-07-29 09:41:04.176562 2024-07-29 09:41:04.176578 comef 9476 R rec 18610583-0c63-4f87-a392-17187b4fb9b5 +2024-07-29 09:41:04.273709 2024-07-29 09:41:04.273724 comef 9477 R rec e7bfd31a-1881-46dc-90eb-16e70102b387 +2024-07-29 09:41:04.372624 2024-07-29 09:41:04.372633 comef 9478 R rec 40f3a330-43e9-4818-b2d0-1defe0d1a725 +2024-07-29 09:41:04.464463 2024-07-29 09:41:04.464479 comef 9479 R rec 698f0f17-aca8-436d-9b61-78b6d2a34e15 +2024-07-29 09:41:04.551891 2024-07-29 09:41:04.551901 comef 9480 R rec dd862c66-4610-4006-8dce-cde7e3ee53c4 +2024-07-29 09:41:04.624834 2024-07-29 09:41:04.624839 comef 9481 R rec bc4dd51d-6c77-4c62-9c9b-c2cea8b1db6c +2024-07-29 09:41:04.687457 2024-07-29 09:41:04.687468 comef 9482 R rec 60bbcfcb-8def-4569-9c2f-3586c09d1b4a +2024-07-29 09:41:04.761459 2024-07-29 09:41:04.761471 comef 9483 R rec 08fa8e83-1174-4285-b824-612f0aaa91cd +2024-07-29 09:41:04.841243 2024-07-29 09:41:04.841259 comef 9484 R rec 92181864-ec9c-44df-8a28-d54f945f5746 +2024-07-29 09:41:04.933067 2024-07-29 09:41:04.933082 comef 9485 R rec 301fc174-fe63-4093-ba4d-d86ec6b6ab70 +2024-07-29 09:41:05.015558 2024-07-29 09:41:05.015573 comef 9486 R rec 39daddd4-2efc-4c0d-a99b-48ffe7e75b31 +2024-07-29 09:41:05.100205 2024-07-29 09:41:05.100216 comef 9487 R rec c8057103-b1ef-4e89-92db-7259c2ad135c +2024-07-29 09:41:05.196961 2024-07-29 09:41:05.196971 comef 9488 R rec 57878748-025e-47fe-b25f-25de903395cd +2024-07-29 09:41:05.276516 2024-07-29 09:41:05.276531 comef 9489 R rec 82fd052a-2dbe-4397-a15b-2d56ce168daf +2024-07-29 09:41:05.360919 2024-07-29 09:41:05.360933 comef 9490 R rec 853a10f2-1774-4dc5-bd10-9f41d473e411 +2024-07-29 09:41:05.455148 2024-07-29 09:41:05.455157 comef 9491 R rec 6a6ec253-2d0d-4a79-b760-ac993d684692 +2024-07-29 09:41:05.544625 2024-07-29 09:41:05.544639 comef 9492 R rec 9257bbbd-ae8f-4b3a-b892-22bf790b7b40 +2024-07-29 09:41:05.632941 2024-07-29 09:41:05.632946 comef 9493 R rec c2550d92-c364-4d26-a974-407e8151b3cf +2024-07-29 09:41:05.69367 2024-07-29 09:41:05.693681 comef 9494 R rec 2659f746-c433-4f35-8c37-cbde71caa63e +2024-07-29 09:41:05.772812 2024-07-29 09:41:05.772827 comef 9495 R rec 602d43c5-8efb-4095-abbb-7f118abbc758 +2024-07-29 09:41:05.861128 2024-07-29 09:41:05.861143 comef 9496 R rec c5a0a9d7-068a-4684-8763-65917e7be09b +2024-07-29 09:41:05.950621 2024-07-29 09:41:05.950636 comef 9497 R rec 28318fc2-3d6c-48a3-a79b-152062a93358 +2024-07-29 09:41:06.042583 2024-07-29 09:41:06.042599 comef 9498 R rec 12eb33e4-287f-451c-8448-46e026b3640f +2024-07-29 09:41:06.121628 2024-07-29 09:41:06.121643 comef 9499 R rec 0f4a368b-5e8a-4e72-a462-d33185b04ec2 +2024-07-29 09:41:06.209939 2024-07-29 09:41:06.209954 comef 9500 R rec df8dedf3-488f-41e1-90e7-65cbe7d22648 +2024-07-29 09:41:06.297854 2024-07-29 09:41:06.297865 comef 9501 R rec 42058b37-7ae7-4eb2-a4a3-3d28886673e6 +2024-07-29 09:41:06.380644 2024-07-29 09:41:06.380655 comef 9502 R rec 6dac0773-1102-41ac-9376-d34e1b4963d2 +2024-07-29 09:41:06.453856 2024-07-29 09:41:06.453867 comef 9503 R rec 2572bb7c-767d-4003-919b-583f8b68b6b2 +2024-07-29 09:41:06.545556 2024-07-29 09:41:06.545568 comef 9504 R rec 7fb1bce2-2968-415c-8843-34b89b44745a +2024-07-29 09:41:06.621134 2024-07-29 09:41:06.621145 comef 9505 R rec a5737eae-1e86-47d2-a0a5-0a5c201a82d8 +2024-07-29 09:41:06.69769 2024-07-29 09:41:06.6977 comef 9506 R rec c26210e2-80f2-49e0-b0f7-801d91ebfa38 +2024-07-29 09:41:06.766963 2024-07-29 09:41:06.766973 comef 9507 R rec 00562474-be7e-4b58-8125-76ff75529650 +2024-07-29 09:41:06.836785 2024-07-29 09:41:06.836797 comef 9508 R rec 61af98d4-9c48-4c84-89dc-7d384db1d416 +2024-07-29 09:41:06.919107 2024-07-29 09:41:06.919122 comef 9509 R rec 18066765-031c-48cc-a615-a6c0278b6bd6 +2024-07-29 09:41:07.008004 2024-07-29 09:41:07.008019 comef 9510 R rec 3e78893f-a01b-48b6-856b-8cd92b81bb53 +2024-07-29 09:41:07.100769 2024-07-29 09:41:07.100786 comef 9511 R rec 4fd89920-ab61-42d6-967c-c08850fe7eeb +2024-07-29 09:41:07.266753 2024-07-29 09:41:07.266763 comef 9512 R rec c4985520-eeab-4b8c-8550-aab0cfb47352 +2024-07-29 09:41:07.350304 2024-07-29 09:41:07.350317 comef 9513 R rec 33089f2f-ec18-4f65-92ad-736d3a182769 +2024-07-29 09:41:07.435308 2024-07-29 09:41:07.435319 comef 9514 R rec 460bcce0-dcd4-4871-867c-25362938de67 +2024-07-29 09:41:07.527119 2024-07-29 09:41:07.527134 comef 9515 R rec 9fc1720a-fc07-408e-9cdd-3cc8f7f7bb01 +2024-07-29 09:41:07.617542 2024-07-29 09:41:07.617552 comef 9516 R rec 613b8e80-151e-42df-bc54-66ab8f57f331 +2024-07-29 09:41:07.695609 2024-07-29 09:41:07.695614 comef 9517 R rec 8c0d3d26-fd75-4b37-89f6-3401112d1108 +2024-07-29 09:41:07.746199 2024-07-29 09:41:07.74621 comef 9518 R rec 8da55b2c-3454-447a-86e3-45714904559b +2024-07-29 09:41:07.814517 2024-07-29 09:41:07.81453 comef 9519 R rec d5c46bb1-6347-4f66-a8ae-a2189e070633 +2024-07-29 09:41:07.896657 2024-07-29 09:41:07.896667 comef 9520 R rec e592c2a2-3b17-42ce-b444-4a1d5c69d878 +2024-07-29 09:41:07.983096 2024-07-29 09:41:07.983111 comef 9521 R rec 73f27465-3aa6-4cca-b06b-e7db94257521 +2024-07-29 09:41:08.071222 2024-07-29 09:41:08.071235 comef 9522 R rec d0eb3cb5-d75d-40c7-94cc-039c9707847c +2024-07-29 09:41:08.159224 2024-07-29 09:41:08.159239 comef 9523 R rec d3cd0bee-951a-4dc3-99c3-507733e4fcac +2024-07-29 09:41:08.245924 2024-07-29 09:41:08.245936 comef 9524 R rec c898cff0-2351-4adb-a37b-f22256d3de72 +2024-07-29 09:41:08.32459 2024-07-29 09:41:08.324606 comef 9525 R rec 26d371b2-6516-4a87-a2e8-93583c39ebdd +2024-07-29 09:41:08.414413 2024-07-29 09:41:08.414426 comef 9526 R rec e189dd29-8a49-4254-bae3-009e0c4db386 +2024-07-29 09:41:08.504361 2024-07-29 09:41:08.504374 comef 9527 R rec cd809819-350f-4177-8caa-d1d76286c900 +2024-07-29 09:41:08.609963 2024-07-29 09:41:08.609972 comef 9528 R rec 5c505af6-a29c-42da-b7a7-875c0d59da8d +2024-07-29 09:41:08.68969 2024-07-29 09:41:08.689704 comef 9529 R rec 931a0a1f-8843-4b59-9e64-93e2594373ea +2024-07-29 09:41:08.748714 2024-07-29 09:41:08.748719 comef 9530 R rec c326f1d0-a662-4c0b-b10a-e0caaca726b0 +2024-07-29 09:41:08.809941 2024-07-29 09:41:08.809952 comef 9531 R rec a29ac909-e9cd-4e40-b387-da41944839e3 +2024-07-29 09:41:08.892029 2024-07-29 09:41:08.892041 comef 9532 R rec c100aaaa-c90d-419c-8eb0-329f21e0f114 +2024-07-29 09:41:08.972462 2024-07-29 09:41:08.972477 comef 9533 R rec 09be9bb5-739f-4ad1-98c9-916b83a81f7e +2024-07-29 09:41:09.054657 2024-07-29 09:41:09.054667 comef 9534 R rec 7104d734-a7d4-4a61-a3a8-a13be02da453 +2024-07-29 09:41:09.134061 2024-07-29 09:41:09.134076 comef 9535 R rec 0202c063-8e6c-4e58-9040-7d3772df8199 +2024-07-29 09:41:09.220855 2024-07-29 09:41:09.22087 comef 9536 R rec 5194fa7c-2e0c-42a7-8117-3202af680020 +2024-07-29 09:41:09.310592 2024-07-29 09:41:09.310605 comef 9537 R rec b0bee509-e824-4c0a-80b9-1e3d6da6023a +2024-07-29 09:41:09.393008 2024-07-29 09:41:09.39302 comef 9538 R rec e9b802f6-fa5d-4bf8-a34b-e80a37a0af52 +2024-07-29 09:41:09.478047 2024-07-29 09:41:09.478062 comef 9539 R rec 68f0f50b-f6ae-4523-a031-34735e6bccab +2024-07-29 09:41:09.568611 2024-07-29 09:41:09.56862 comef 9540 R rec 718c4013-00c6-4fb9-be79-aa6487512def +2024-07-29 09:41:09.645258 2024-07-29 09:41:09.64527 comef 9541 R rec 9dbcacf8-7736-4eb0-a96e-b36f629ee353 +2024-07-29 09:41:09.720644 2024-07-29 09:41:09.72066 comef 9542 R rec 5bc371ea-dbf9-49c8-9bc6-53bf3f1b8517 +2024-07-29 09:41:09.782222 2024-07-29 09:41:09.782232 comef 9543 R rec 207ec57f-cdbc-424b-8eae-905a774dde07 +2024-07-29 09:41:09.848818 2024-07-29 09:41:09.84883 comef 9544 R rec d377abb3-75a4-4db6-bc21-427eaaa754af +2024-07-29 09:41:09.938211 2024-07-29 09:41:09.938223 comef 9545 R rec 1b9e2e22-312b-45b5-8452-3b20392d8971 +2024-07-29 09:41:10.031133 2024-07-29 09:41:10.031148 comef 9546 R rec cfa2aad2-abd3-40ae-8d8b-09c397403e71 +2024-07-29 09:41:10.114923 2024-07-29 09:41:10.114933 comef 9547 R rec 757310f5-cdfa-4c38-aa04-a5b9976c5d21 +2024-07-29 09:41:10.200429 2024-07-29 09:41:10.200444 comef 9548 R rec 40bc69c5-f1a0-40a1-adb7-b92706b19624 +2024-07-29 09:41:10.281407 2024-07-29 09:41:10.281422 comef 9549 R rec 51d40c3f-cf96-4a98-bc23-bc2873ebdf9c +2024-07-29 09:41:10.376068 2024-07-29 09:41:10.37608 comef 9550 R rec c60303c9-5aca-471b-88e1-35fea151ee7c +2024-07-29 09:41:10.461033 2024-07-29 09:41:10.461048 comef 9551 R rec e9eac68f-edb2-42a2-8335-1297b84aab61 +2024-07-29 09:41:10.560158 2024-07-29 09:41:10.560172 comef 9552 R rec fadb05d2-5ad5-4159-8a03-0567c932604c +2024-07-29 09:41:10.663648 2024-07-29 09:41:10.663663 comef 9553 R rec 4656a158-38c0-4ea0-b506-425ed7b11021 +2024-07-29 09:41:10.751394 2024-07-29 09:41:10.751409 comef 9554 R rec 6750bd2e-6999-4af2-ac4e-848c4b618f4a +2024-07-29 09:41:10.809207 2024-07-29 09:41:10.809218 comef 9555 R rec 377f02db-bc52-4b7b-b64f-50ac87c0e49e +2024-07-29 09:41:10.878844 2024-07-29 09:41:10.878856 comef 9556 R rec e0c38ef2-8851-4134-b481-4592ce9c3648 +2024-07-29 09:41:10.957967 2024-07-29 09:41:10.957977 comef 9557 R rec dfdf0790-7a0f-48d2-94da-76ecba2f3d73 +2024-07-29 09:41:11.042184 2024-07-29 09:41:11.042194 comef 9558 R rec a3e5a0c5-b086-4963-98b4-67c32384e775 +2024-07-29 09:41:11.128811 2024-07-29 09:41:11.128826 comef 9559 R rec b53707de-d0b6-4e25-824e-38767ba7e2a8 +2024-07-29 09:41:11.218445 2024-07-29 09:41:11.21846 comef 9560 R rec 2f03c8ea-0a37-49e3-97da-2c320c5a128e +2024-07-29 09:41:11.307307 2024-07-29 09:41:11.307321 comef 9561 R rec aae4d457-ca96-4a20-aa40-bdb0453ab519 +2024-07-29 09:41:11.395048 2024-07-29 09:41:11.395058 comef 9562 R rec 145222e9-6320-4fc9-bd2d-9ecc8f8a1518 +2024-07-29 09:41:11.483832 2024-07-29 09:41:11.483846 comef 9563 R rec 79c0534b-07a1-47e4-a7fe-c62a6effa24f +2024-07-29 09:41:11.589449 2024-07-29 09:41:11.589462 comef 9564 R rec 4b555848-234f-402a-85f5-26b69cc74ce2 +2024-07-29 09:41:11.681153 2024-07-29 09:41:11.681168 comef 9565 R rec 7e74a240-c652-4aef-bff7-80bc0e465565 +2024-07-29 09:41:11.770929 2024-07-29 09:41:11.770941 comef 9566 R rec 61ecc39e-64aa-469a-9a15-b22f398b98b7 +2024-07-29 09:41:11.833476 2024-07-29 09:41:11.833481 comef 9567 R rec 2c3276fe-6925-4096-b8b8-c512a2e758cc +2024-07-29 09:41:11.893653 2024-07-29 09:41:11.893664 comef 9568 R rec f11299b6-0d1c-4011-b456-0b670ffa029e +2024-07-29 09:41:11.969686 2024-07-29 09:41:11.969698 comef 9569 R rec a477dbed-0f2b-4602-a44f-5bfcb96c723a +2024-07-29 09:41:12.047883 2024-07-29 09:41:12.047895 comef 9570 R rec f9ecb6d2-f208-4121-8afc-c87d1de9e9bd +2024-07-29 09:41:12.149769 2024-07-29 09:41:12.149779 comef 9571 R rec ef7adbee-4dd7-473d-b5d2-7ba7ab2daf69 +2024-07-29 09:41:12.242151 2024-07-29 09:41:12.242162 comef 9572 R rec d1d61483-62eb-4b73-8859-6e207275b019 +2024-07-29 09:41:12.330715 2024-07-29 09:41:12.330728 comef 9573 R rec f8e627f2-54a5-4a62-9083-89860a19f57e +2024-07-29 09:41:12.415955 2024-07-29 09:41:12.415967 comef 9574 R rec be9012cd-493b-4c98-9837-dbe2522ba76d +2024-07-29 09:41:12.494175 2024-07-29 09:41:12.49419 comef 9575 R rec 075ad9ce-d2b8-435f-9777-4b956d45d37b +2024-07-29 09:41:12.587537 2024-07-29 09:41:12.587548 comef 9576 R rec 7ec5caab-35c2-4a62-b9c2-70055d46d83d +2024-07-29 09:41:12.664712 2024-07-29 09:41:12.664723 comef 9577 R rec 7678e5a4-f4bf-4072-9765-93cb70f47231 +2024-07-29 09:41:12.757335 2024-07-29 09:41:12.757346 comef 9578 R rec 26a371d8-3044-45e3-9428-58c3bb2b6f52 +2024-07-29 09:41:12.837377 2024-07-29 09:41:12.837381 comef 9579 R rec 531138ab-e2ad-4eb2-b6d4-95754a1e7cd6 +2024-07-29 09:41:12.900131 2024-07-29 09:41:12.900141 comef 9580 R rec feec3398-8aca-4248-864a-1579eb08f681 +2024-07-29 09:41:12.970881 2024-07-29 09:41:12.970893 comef 9581 R rec c5dd8b1a-3d11-44bc-a227-b7673fd964c9 +2024-07-29 09:41:13.050356 2024-07-29 09:41:13.050361 comef 9582 R rec 246f404d-be8f-4324-95e5-b982c4eacc2a +2024-07-29 09:41:13.139683 2024-07-29 09:41:13.139694 comef 9583 R rec b4991fe7-0a0b-4034-b4db-73cc28c07643 +2024-07-29 09:41:13.244211 2024-07-29 09:41:13.244223 comef 9584 R rec 8d2adb2a-4175-4bb2-b6fb-f0e7c54752aa +2024-07-29 09:41:13.342104 2024-07-29 09:41:13.34211 comef 9585 R rec 638a26cb-24c6-44c2-b60a-18e4c1d72550 +2024-07-29 09:41:13.417532 2024-07-29 09:41:13.417544 comef 9586 R rec 2aec5446-e98d-4355-bd2b-c15751428511 +2024-07-29 09:41:13.517071 2024-07-29 09:41:13.517086 comef 9587 R rec 4d686427-f8db-4337-89f3-72134123bd66 +2024-07-29 09:41:13.608376 2024-07-29 09:41:13.608388 comef 9588 R rec 3cc37f79-cc86-4026-84b0-85dfb967d698 +2024-07-29 09:41:13.699777 2024-07-29 09:41:13.699807 comef 9589 R rec 540735b9-c8ca-4296-bee5-619c636897a7 +2024-07-29 09:41:13.777665 2024-07-29 09:41:13.777676 comef 9590 R rec 0f79b2d5-c68d-41b5-8bf3-9080b7ceb2ea +2024-07-29 09:41:13.855605 2024-07-29 09:41:13.85561 comef 9591 R rec 4d6dfd14-0b0e-4226-929e-7fa8bf1f778a +2024-07-29 09:41:13.912512 2024-07-29 09:41:13.912524 comef 9592 R rec 971a0ad4-de1c-477b-a64b-bc5bdb85748a +2024-07-29 09:41:13.997728 2024-07-29 09:41:13.997739 comef 9593 R rec b1a53b66-b272-4a05-b4fa-b9f55ea184e4 +2024-07-29 09:41:14.093468 2024-07-29 09:41:14.093473 comef 9594 R rec 85e86035-4146-402d-8fbf-3d0430e74501 +2024-07-29 09:41:14.17207 2024-07-29 09:41:14.172083 comef 9595 R rec a96362a9-9a16-4e15-ac98-fb59a05fd700 +2024-07-29 09:41:14.276491 2024-07-29 09:41:14.276501 comef 9596 R rec 4e7c2393-0e8a-4eba-b394-b46972cc8443 +2024-07-29 09:41:14.359546 2024-07-29 09:41:14.359627 comef 9597 R rec bfa3f723-edb1-4bdc-81b7-d113cbc41ea1 +2024-07-29 09:41:14.440745 2024-07-29 09:41:14.440759 comef 9598 R rec 4d8d96de-f9f9-49a4-b628-1543fbbe66d4 +2024-07-29 09:41:14.543119 2024-07-29 09:41:14.543208 comef 9599 R rec 6b19901a-f6c4-4755-bf2e-95df82dbb8f1 +2024-07-29 09:41:14.650106 2024-07-29 09:41:14.650116 comef 9600 R rec b3813760-c590-4ec2-9563-8d2c7b6823ec +2024-07-29 09:41:14.741693 2024-07-29 09:41:14.741703 comef 9601 R rec 86f8f247-f22b-4f91-b585-b81b65fdbaec +2024-07-29 09:41:14.834145 2024-07-29 09:41:14.834155 comef 9602 R rec 709b4304-09b4-40dc-84e7-8a383a6ff5e3 +2024-07-29 09:41:14.898284 2024-07-29 09:41:14.898289 comef 9603 R rec 8e74d085-e1f7-45f4-8325-68200a4b62aa +2024-07-29 09:41:14.968323 2024-07-29 09:41:14.968335 comef 9604 R rec 0a17d5fe-c85a-4d57-8f15-602d4aa418f7 +2024-07-29 09:41:15.063553 2024-07-29 09:41:15.063563 comef 9605 R rec acb6a41b-4151-41ea-9448-05edea20e5c1 +2024-07-29 09:41:15.170865 2024-07-29 09:41:15.170876 comef 9606 R rec 2654c7d0-e309-4e6d-853b-0d85d0d057ba +2024-07-29 09:41:15.267792 2024-07-29 09:41:15.267804 comef 9607 R rec 3f3fa23a-a3d5-45a2-be4c-75f21048bc17 +2024-07-29 09:41:15.359568 2024-07-29 09:41:15.359579 comef 9608 R rec 69650bd1-7157-4240-90a9-c77dea0d8e0c +2024-07-29 09:41:15.443442 2024-07-29 09:41:15.443453 comef 9609 R rec 07d99af2-dfb5-42bd-a7e6-0c9be657982f +2024-07-29 09:41:15.52438 2024-07-29 09:41:15.524394 comef 9610 R rec 83b0004c-6d20-4a60-974c-31c7cc21de51 +2024-07-29 09:41:15.614575 2024-07-29 09:41:15.614586 comef 9611 R rec 8a4d4f03-8a68-4b33-9e0b-9743b8181ad2 +2024-07-29 09:41:15.716566 2024-07-29 09:41:15.716576 comef 9612 R rec d915eb5a-0265-41e8-8b31-83311b99726a +2024-07-29 09:41:15.805391 2024-07-29 09:41:15.805402 comef 9613 R rec 74ff5004-8723-4ff8-b296-7e6306ae40c4 +2024-07-29 09:41:15.899387 2024-07-29 09:41:15.899393 comef 9614 R rec 164b61d0-8998-4968-8b78-eab9b069a275 +2024-07-29 09:41:15.972444 2024-07-29 09:41:15.972456 comef 9615 R rec 86371e97-e11f-494e-92cb-de634cf7542b +2024-07-29 09:41:16.064752 2024-07-29 09:41:16.064761 comef 9616 R rec fd16bef8-e358-49e6-ba09-20642865cd1f +2024-07-29 09:41:16.144828 2024-07-29 09:41:16.144841 comef 9617 R rec b60b071a-ca7d-4e4e-a793-d27aedcc5801 +2024-07-29 09:41:16.240882 2024-07-29 09:41:16.240893 comef 9618 R rec e38d6e8a-f108-40cd-9623-1baaadb9a51c +2024-07-29 09:41:16.319146 2024-07-29 09:41:16.31916 comef 9619 R rec 1b544f0e-7412-4fa7-aaba-ab15578833d6 +2024-07-29 09:41:16.412171 2024-07-29 09:41:16.41218 comef 9620 R rec 857de8ad-4fc8-4663-a3cb-b0277f498f5f +2024-07-29 09:41:16.499943 2024-07-29 09:41:16.499953 comef 9621 R rec b17590b4-f815-421e-b2e7-594d8e2243e7 +2024-07-29 09:41:16.605133 2024-07-29 09:41:16.605144 comef 9622 R rec 5505f570-945a-424b-8ec5-ab2f77cf9935 +2024-07-29 09:41:16.696632 2024-07-29 09:41:16.696647 comef 9623 R rec 2cb2f5c9-c24b-4d4b-9118-223798dd3ff4 +2024-07-29 09:41:16.794046 2024-07-29 09:41:16.794061 comef 9624 R rec bcc9c459-0dfc-4d78-a3a1-b0f734d56198 +2024-07-29 09:41:16.883012 2024-07-29 09:41:16.883021 comef 9625 R rec d0968023-4d3c-4b1a-8286-e88a3a5168a6 +2024-07-29 09:41:16.9549 2024-07-29 09:41:16.95491 comef 9626 R rec 95afb330-247f-4a4e-af89-d30bfee53e24 +2024-07-29 09:41:17.02968 2024-07-29 09:41:17.029693 comef 9627 R rec 1b1b9fc5-478b-4260-b21d-99f1af4c5e5c +2024-07-29 09:41:17.108992 2024-07-29 09:41:17.109002 comef 9628 R rec d6b0a3d7-4eed-4b13-8d82-4ddf28871b2b +2024-07-29 09:41:17.200393 2024-07-29 09:41:17.200408 comef 9629 R rec d3d30ba3-943e-4d63-a583-55af7f39d3e3 +2024-07-29 09:41:17.303547 2024-07-29 09:41:17.303558 comef 9630 R rec e90d4103-bbe6-432e-9eb1-64515a0fbc78 +2024-07-29 09:41:17.404989 2024-07-29 09:41:17.405006 comef 9631 R rec 4697c401-b91c-478b-b1de-7a8432ff037c +2024-07-29 09:41:17.493311 2024-07-29 09:41:17.493326 comef 9632 R rec 46a9eefc-f493-4251-a7dc-ae51913c4479 +2024-07-29 09:41:17.582743 2024-07-29 09:41:17.582758 comef 9633 R rec e8617138-b666-49a6-91ed-af8e36c6d68b +2024-07-29 09:41:17.669476 2024-07-29 09:41:17.669491 comef 9634 R rec a436687e-e881-4135-8d62-51ca6fa2cc7c +2024-07-29 09:41:17.766009 2024-07-29 09:41:17.766025 comef 9635 R rec 6004cda5-7c35-43f5-94c7-608db205458b +2024-07-29 09:41:17.869542 2024-07-29 09:41:17.869557 comef 9636 R rec 08549959-3ca4-4415-b7f6-9614a01dd82e +2024-07-29 09:41:17.954985 2024-07-29 09:41:17.95499 comef 9637 R rec 14141924-c948-4202-9646-10db57944c9c +2024-07-29 09:41:18.011025 2024-07-29 09:41:18.011036 comef 9638 R rec 2083bf02-8ce4-4bfe-980b-c1e32f211e3f +2024-07-29 09:41:18.092396 2024-07-29 09:41:18.092408 comef 9639 R rec dd50f8c3-e275-47b9-ac70-13cef5e5cf43 +2024-07-29 09:41:18.170769 2024-07-29 09:41:18.170784 comef 9640 R rec ed5793cb-bcc9-4340-b993-3e1ff9ae09d6 +2024-07-29 09:41:18.24999 2024-07-29 09:41:18.250005 comef 9641 R rec bcbabf8e-0632-4d5f-ab74-06d627a0bd80 +2024-07-29 09:41:18.332623 2024-07-29 09:41:18.332638 comef 9642 R rec 5f6174a0-9b20-4b13-a963-395a05844923 +2024-07-29 09:41:18.417875 2024-07-29 09:41:18.417885 comef 9643 R rec db06c8c5-c32b-44a6-96b2-f7f81be9def2 +2024-07-29 09:41:18.502464 2024-07-29 09:41:18.502473 comef 9644 R rec 292efa08-34c5-4f49-9dc5-64ddcfe7c13a +2024-07-29 09:41:18.595308 2024-07-29 09:41:18.595319 comef 9645 R rec e7a4dae7-e59b-4b4c-a815-f1fef0b47444 +2024-07-29 09:41:18.680965 2024-07-29 09:41:18.68098 comef 9646 R rec ecf9f3c8-7238-4a12-87a1-bc741c079da3 +2024-07-29 09:41:18.784222 2024-07-29 09:41:18.784234 comef 9647 R rec 0ba2541a-9e7e-4182-b1a7-762bac3f5497 +2024-07-29 09:41:18.863677 2024-07-29 09:41:18.863687 comef 9648 R rec 2180e4e3-8d9b-4b57-9893-0995b7bc3683 +2024-07-29 09:41:18.945238 2024-07-29 09:41:18.945248 comef 9649 R rec a804e228-b57a-4840-8fe1-95e886a2bf2a +2024-07-29 09:41:19.032293 2024-07-29 09:41:19.032304 comef 9650 R rec 6e1fb1a7-b5b4-4335-9e84-585fca74513e +2024-07-29 09:41:19.126277 2024-07-29 09:41:19.126289 comef 9651 R rec 9f7e78f0-df29-41b0-9ebf-410c662f4149 +2024-07-29 09:41:19.220049 2024-07-29 09:41:19.220061 comef 9652 R rec 303de5a9-d58c-43e5-a919-0b978ed95dfd +2024-07-29 09:41:19.303267 2024-07-29 09:41:19.30328 comef 9653 R rec f2a78f57-4d42-42bb-a29b-ac65d975f1fe +2024-07-29 09:41:19.388392 2024-07-29 09:41:19.388405 comef 9654 R rec 21f612d6-b445-47df-9313-d829d6ff953b +2024-07-29 09:41:19.470685 2024-07-29 09:41:19.470696 comef 9655 R rec f2558949-9949-49e5-add9-bb8bf345a3b6 +2024-07-29 09:41:19.553006 2024-07-29 09:41:19.553018 comef 9656 R rec b6e950f5-8f8f-48b4-babc-aae462800619 +2024-07-29 09:41:19.635374 2024-07-29 09:41:19.635386 comef 9657 R rec 26157caf-cc25-473d-bece-ba4effb0a8d8 +2024-07-29 09:41:19.705008 2024-07-29 09:41:19.70502 comef 9658 R rec 8dde15e9-9a79-460e-94d1-2c599287bc65 +2024-07-29 09:41:19.784738 2024-07-29 09:41:19.784748 comef 9659 R rec c327324d-5de0-4400-a2ef-b2e75d9e7d32 +2024-07-29 09:41:19.866557 2024-07-29 09:41:19.866572 comef 9660 R rec ccc230ac-50c9-44d6-ba19-e8f88d53dfa8 +2024-07-29 09:41:19.955694 2024-07-29 09:41:19.955709 comef 9661 R rec 9c9d29a2-5663-44e5-93d0-38cfa0f10a8d +2024-07-29 09:41:20.037034 2024-07-29 09:41:20.037039 comef 9662 R rec c5a8f703-746f-4e83-a6d3-4d64cfcd4101 +2024-07-29 09:41:20.087789 2024-07-29 09:41:20.0878 comef 9663 R rec b518a181-65cf-4740-8f7c-a9ef37fef7fd +2024-07-29 09:41:20.159005 2024-07-29 09:41:20.159017 comef 9664 R rec d063da86-2173-4e25-b37b-ce03436554af +2024-07-29 09:41:20.237516 2024-07-29 09:41:20.237526 comef 9665 R rec 5c954a91-eb58-4e30-83da-adf57ea23bc4 +2024-07-29 09:41:20.318173 2024-07-29 09:41:20.318185 comef 9666 R rec 8ac156d7-9cd6-4ce7-9f7d-159d2a4e1676 +2024-07-29 09:41:20.395194 2024-07-29 09:41:20.395206 comef 9667 R rec 8e26f86c-91c2-49b7-b162-ea943371da0c +2024-07-29 09:41:20.478319 2024-07-29 09:41:20.47833 comef 9668 R rec fe3c54d9-270b-442b-a838-debb67dd34dc +2024-07-29 09:41:20.575383 2024-07-29 09:41:20.575388 comef 9669 R rec f2749fe8-967a-4e5f-b044-87c333cff623 +2024-07-29 09:41:20.655783 2024-07-29 09:41:20.655799 comef 9670 R rec 03d1a71f-6fb7-4646-b6c4-6894b6a75b97 +2024-07-29 09:41:20.7425 2024-07-29 09:41:20.74251 comef 9671 R rec b5ff9d96-c13a-480d-96b0-415a9805cffd +2024-07-29 09:41:20.830064 2024-07-29 09:41:20.830079 comef 9672 R rec d9c0ce4f-3c2b-4f6a-9631-5d2a2616bd54 +2024-07-29 09:41:20.924169 2024-07-29 09:41:20.924181 comef 9673 R rec 4b6f4150-438d-4c6b-a8c8-9d70421376e5 +2024-07-29 09:41:21.020188 2024-07-29 09:41:21.020203 comef 9674 R rec d5f3678b-c553-40fe-98fb-38ef37d9143d +2024-07-29 09:41:21.080977 2024-07-29 09:41:21.080983 comef 9675 R rec 228b6473-f690-4aa6-b344-935fb124fa8b +2024-07-29 09:41:21.143265 2024-07-29 09:41:21.143275 comef 9676 R rec fda2c1c1-bc36-4637-b1e3-13aa53b4d9f2 +2024-07-29 09:41:21.227336 2024-07-29 09:41:21.227347 comef 9677 R rec 46230bbf-8f6d-49ec-8606-ee2be803b738 +2024-07-29 09:41:21.306483 2024-07-29 09:41:21.306489 comef 9678 R rec 9aef2452-5b83-45d2-8775-8cdb8a193ccc +2024-07-29 09:41:21.377636 2024-07-29 09:41:21.377646 comef 9679 R rec fda7c97f-f67d-4e8e-8a0e-19a26a94c0c0 +2024-07-29 09:41:21.449168 2024-07-29 09:41:21.449179 comef 9680 R rec 04c2bf60-dc27-458b-8254-df5f68ff0124 +2024-07-29 09:41:21.515416 2024-07-29 09:41:21.515428 comef 9681 R rec dfe2161c-be63-4a0d-b5fb-1ee9341083cf +2024-07-29 09:41:21.592911 2024-07-29 09:41:21.592926 comef 9682 R rec 5af01cda-62a6-432d-84ac-6e6e86456a96 +2024-07-29 09:41:21.677477 2024-07-29 09:41:21.677487 comef 9683 R rec 8c50fe54-9d40-4d3a-8d6b-44d3dcbdb11c +2024-07-29 09:41:21.761523 2024-07-29 09:41:21.761538 comef 9684 R rec 073f7a6c-421e-4e08-ae83-a0ddd33f503c +2024-07-29 09:41:21.847149 2024-07-29 09:41:21.847163 comef 9685 R rec 761ff673-92e7-49bc-8d5a-18ab8fec901b +2024-07-29 09:41:21.941374 2024-07-29 09:41:21.941386 comef 9686 R rec 8cd81420-dcfa-4920-9034-87787e7df4a2 +2024-07-29 09:41:22.032062 2024-07-29 09:41:22.032073 comef 9687 R rec 5853df05-4eed-4532-a4ca-4e666ef768a0 +2024-07-29 09:41:22.111892 2024-07-29 09:41:22.111903 comef 9688 R rec faa37293-4b25-4904-99f4-fab56e5bf784 +2024-07-29 09:41:22.195216 2024-07-29 09:41:22.195228 comef 9689 R rec 6167d036-ea1a-4448-9e4c-e1949a9bffac +2024-07-29 09:41:22.276053 2024-07-29 09:41:22.276063 comef 9690 R rec 1e05db56-1c86-43b3-ae70-70fb1bf1d316 +2024-07-29 09:41:22.375523 2024-07-29 09:41:22.375534 comef 9691 R rec 33a6cf8f-a36b-449d-8ca4-73117bba1996 +2024-07-29 09:41:22.46378 2024-07-29 09:41:22.46379 comef 9692 R rec 1add33a9-5a7b-4326-8bb2-51982b270f65 +2024-07-29 09:41:22.552191 2024-07-29 09:41:22.552203 comef 9693 R rec df9a8dd3-65ea-4851-965f-f41d4b54928b +2024-07-29 09:41:22.64888 2024-07-29 09:41:22.648904 comef 9694 R rec 5a873ad1-2739-495e-a4ae-1d809648e176 +2024-07-29 09:41:22.747913 2024-07-29 09:41:22.747923 comef 9695 R rec c7364bb7-da39-4180-b504-7bea38634eae +2024-07-29 09:41:22.84092 2024-07-29 09:41:22.840931 comef 9696 R rec f9cc0eb0-155a-4479-b8b1-df975f875d06 +2024-07-29 09:41:22.938173 2024-07-29 09:41:22.938185 comef 9697 R rec bb2d943b-cb1f-4f60-8719-5954aa326544 +2024-07-29 09:41:23.044118 2024-07-29 09:41:23.044129 comef 9698 R rec d74cf6ce-cb27-497e-afe5-84fbedbcf029 +2024-07-29 09:41:23.130072 2024-07-29 09:41:23.130078 comef 9699 R rec 995a62f7-38c8-461a-965f-6dc6332e34da +2024-07-29 09:41:23.202104 2024-07-29 09:41:23.202117 comef 9700 R rec 97720779-9935-4e87-aaad-c1e459dc8d73 +2024-07-29 09:41:23.288886 2024-07-29 09:41:23.288897 comef 9701 R rec f4117ce0-8066-47c3-a45e-e5671c8ba8dc +2024-07-29 09:41:23.381008 2024-07-29 09:41:23.381018 comef 9702 R rec 4a6cf8b9-67be-4442-9dd0-89fc5a70486f +2024-07-29 09:41:23.479957 2024-07-29 09:41:23.479967 comef 9703 R rec b10da648-601d-40e0-9695-d7ea6821d1a4 +2024-07-29 09:41:23.574259 2024-07-29 09:41:23.57427 comef 9704 R rec 738ae089-8356-4891-b145-a7bb9ed1de77 +2024-07-29 09:41:23.674472 2024-07-29 09:41:23.674482 comef 9705 R rec 7a10cb5b-9d0f-4a71-bcae-2ef97ca47d82 +2024-07-29 09:41:23.761929 2024-07-29 09:41:23.761939 comef 9706 R rec 62f308b5-a611-4492-a10c-a03a37449e6d +2024-07-29 09:41:23.850206 2024-07-29 09:41:23.850216 comef 9707 R rec d44b1826-302a-4481-96fd-208b908d8495 +2024-07-29 09:41:23.941513 2024-07-29 09:41:23.941528 comef 9708 R rec 14ba240f-156b-4553-81a1-8443f2e6edf1 +2024-07-29 09:41:24.028025 2024-07-29 09:41:24.028042 comef 9709 R rec 9c4f0105-5cc8-42ef-a752-b0e801f5c888 +2024-07-29 09:41:24.125103 2024-07-29 09:41:24.125117 comef 9710 R rec 21700dc8-090d-4b17-9270-f86c730af59e +2024-07-29 09:41:24.189873 2024-07-29 09:41:24.189883 comef 9711 R rec ad076821-002b-42b2-92c3-81a12d0e0da5 +2024-07-29 09:41:24.270471 2024-07-29 09:41:24.270482 comef 9712 R rec 37d64e21-2ebf-4487-aff2-7aa5a25621ee +2024-07-29 09:41:24.365909 2024-07-29 09:41:24.365925 comef 9713 R rec 4574cfd2-e154-4071-8d33-53b276caff47 +2024-07-29 09:41:24.462934 2024-07-29 09:41:24.462972 comef 9714 R rec e07ec6b3-07fd-4034-a33a-b890269d3bd9 +2024-07-29 09:41:24.557711 2024-07-29 09:41:24.557722 comef 9715 R rec 02f4efa5-0fc6-4757-b4ef-b98caa2d3e0f +2024-07-29 09:41:24.641257 2024-07-29 09:41:24.641269 comef 9716 R rec 49dd766e-919a-4b06-a46e-b4882925366c +2024-07-29 09:41:24.725209 2024-07-29 09:41:24.725224 comef 9717 R rec 51508b2c-4156-4289-b736-45e32a9ec99c +2024-07-29 09:41:24.80739 2024-07-29 09:41:24.807405 comef 9718 R rec 70b79573-7123-4bd0-8e3f-5b72c1f5ca9e +2024-07-29 09:41:24.894716 2024-07-29 09:41:24.894727 comef 9719 R rec 2c659cb3-3b5e-4a2d-8d8a-cedf9a53d667 +2024-07-29 09:41:24.983024 2024-07-29 09:41:24.983036 comef 9720 R rec 848e2abb-f6cb-4b19-bc17-0a96584f5b5d +2024-07-29 09:41:25.070279 2024-07-29 09:41:25.070289 comef 9721 R rec 8d910781-edb4-433b-a60a-dc211831cbf7 +2024-07-29 09:41:25.156324 2024-07-29 09:41:25.156334 comef 9722 R rec 959bc85d-d18c-4cf5-a3f0-0db9d099fbdb +2024-07-29 09:41:25.207589 2024-07-29 09:41:25.207739 comef 9723 R rec 2df2d1da-ab32-4c31-adcf-73ac92911c48 +2024-07-29 09:41:25.27386 2024-07-29 09:41:25.27387 comef 9724 R rec 630fc3aa-9560-4d5c-802a-ded229d854e7 +2024-07-29 09:41:25.353684 2024-07-29 09:41:25.353699 comef 9725 R rec e2fc9ade-5d0e-4b39-b5fa-a8f369614bcb +2024-07-29 09:41:25.452451 2024-07-29 09:41:25.452466 comef 9726 R rec 7f064f13-4a34-459d-8e1f-b8892b5de1f1 +2024-07-29 09:41:25.549059 2024-07-29 09:41:25.549073 comef 9727 R rec b661cbb6-47f6-4202-815b-dc727e0ff479 +2024-07-29 09:41:25.64172 2024-07-29 09:41:25.641735 comef 9728 R rec d01b591c-91d9-4371-8631-07162009eaf3 +2024-07-29 09:41:25.73052 2024-07-29 09:41:25.730529 comef 9729 R rec b9bda44b-3361-48ea-929b-01479773ebce +2024-07-29 09:41:25.820027 2024-07-29 09:41:25.820039 comef 9730 R rec 255c0492-000b-4945-abf1-41c66a1d68ae +2024-07-29 09:41:25.909373 2024-07-29 09:41:25.909384 comef 9731 R rec fbbc62aa-f5ea-490a-8143-e788382717df +2024-07-29 09:41:25.985718 2024-07-29 09:41:25.98573 comef 9732 R rec c4074c17-a7dd-41a0-8373-cb4d1c28809f +2024-07-29 09:41:26.065317 2024-07-29 09:41:26.065331 comef 9733 R rec a6393b9d-d34d-4cbe-9626-411af09f6e85 +2024-07-29 09:41:26.143562 2024-07-29 09:41:26.143575 comef 9734 R rec 26e32076-c1e1-47aa-aadf-d31695ec6c00 +2024-07-29 09:41:26.216228 2024-07-29 09:41:26.216234 comef 9735 R rec ef3e4f2c-9be7-49af-874c-33da62ac4969 +2024-07-29 09:41:26.276804 2024-07-29 09:41:26.276816 comef 9736 R rec d8370d80-0cc3-4ee4-9dbf-bd3af3ba9e89 +2024-07-29 09:41:26.346355 2024-07-29 09:41:26.346365 comef 9737 R rec 99fac160-f434-4086-95e5-3379cf056da3 +2024-07-29 09:41:26.423791 2024-07-29 09:41:26.423801 comef 9738 R rec 9a0bfd0a-0924-4539-89f4-f28bb6577cb3 +2024-07-29 09:41:26.504464 2024-07-29 09:41:26.504475 comef 9739 R rec bcc8c6b0-65b3-4f6a-8b9e-f14de34fb084 +2024-07-29 09:41:26.58163 2024-07-29 09:41:26.581641 comef 9740 R rec 0be5f6e6-01a8-42c6-aba1-581092849543 +2024-07-29 09:41:26.682743 2024-07-29 09:41:26.682753 comef 9741 R rec ff7023fe-14e6-485a-b472-7ffed749f1db +2024-07-29 09:41:26.776714 2024-07-29 09:41:26.776729 comef 9742 R rec bc9ccf2b-1caa-45d7-beb4-43b8e19c13da +2024-07-29 09:41:26.89643 2024-07-29 09:41:26.896436 comef 9743 R rec a50443a5-a888-4b4c-8af0-369a9ac4a414 +2024-07-29 09:41:26.973928 2024-07-29 09:41:26.97394 comef 9744 R rec c40455c5-eb68-48a5-86a3-8fa8e0d236b7 +2024-07-29 09:41:27.07424 2024-07-29 09:41:27.074256 comef 9745 R rec 05444ef4-1f0c-4d47-8369-ef683f9f23c1 +2024-07-29 09:41:27.178114 2024-07-29 09:41:27.178126 comef 9746 R rec dad638bb-2fc1-4b40-bb38-e405f406d5e8 +2024-07-29 09:41:27.250973 2024-07-29 09:41:27.250978 comef 9747 R rec b9080afc-7735-4509-a083-3f907e9f944d +2024-07-29 09:41:27.317068 2024-07-29 09:41:27.317074 comef 9748 R rec 164c5e38-6a1c-4264-be1a-4641f8a38825 +2024-07-29 09:41:27.382118 2024-07-29 09:41:27.382127 comef 9749 R rec 7f8e55c9-e5a6-4964-b881-012862747069 +2024-07-29 09:41:27.46318 2024-07-29 09:41:27.46319 comef 9750 R rec 4735ac5f-ac8f-41d4-8162-0afe7e0667c6 +2024-07-29 09:41:27.54617 2024-07-29 09:41:27.546184 comef 9751 R rec 05ac016e-f9dc-41cb-a0f9-7c393e00f937 +2024-07-29 09:41:27.633631 2024-07-29 09:41:27.633647 comef 9752 R rec 10c30816-5558-4890-b294-e652308a4024 +2024-07-29 09:41:27.723949 2024-07-29 09:41:27.72396 comef 9753 R rec b2f80a6b-0a46-4202-ae7e-031ee3546811 +2024-07-29 09:41:27.811074 2024-07-29 09:41:27.811089 comef 9754 R rec bb2939c3-85a3-4f54-af93-0a1aabbcc887 +2024-07-29 09:41:27.897807 2024-07-29 09:41:27.897819 comef 9755 R rec 7d49d308-9f49-45fd-9e2c-b6e242d0ff66 +2024-07-29 09:41:27.993131 2024-07-29 09:41:27.993143 comef 9756 R rec 638274f8-0c6d-49b8-9249-f3082eed9b7e +2024-07-29 09:41:28.084699 2024-07-29 09:41:28.084714 comef 9757 R rec 73907e89-917d-4c4f-958c-e534e39138db +2024-07-29 09:41:28.170543 2024-07-29 09:41:28.170557 comef 9758 R rec 8f219962-292e-4983-9447-3df389e62600 +2024-07-29 09:41:28.263114 2024-07-29 09:41:28.26312 comef 9759 R rec 0b59cda2-7899-4622-91a1-6f7fc56ea210 +2024-07-29 09:41:28.323523 2024-07-29 09:41:28.323535 comef 9760 R rec f6164056-ddd8-421c-be00-e616b8fbb668 +2024-07-29 09:41:28.40432 2024-07-29 09:41:28.404332 comef 9761 R rec ccd7a19f-a932-40ff-850f-330b5f118c44 +2024-07-29 09:41:28.483527 2024-07-29 09:41:28.483538 comef 9762 R rec ea6977a3-759c-48dd-9eb1-780ad32c0b65 +2024-07-29 09:41:28.564071 2024-07-29 09:41:28.564082 comef 9763 R rec b41eee8f-5d47-472b-995a-b2aba5fa2226 +2024-07-29 09:41:28.645869 2024-07-29 09:41:28.645885 comef 9764 R rec 7a23fbf0-574f-48af-867c-8246551879a7 +2024-07-29 09:41:28.728107 2024-07-29 09:41:28.728122 comef 9765 R rec 5393f4ec-f999-4a0a-a63b-4846a2d71bef +2024-07-29 09:41:28.820464 2024-07-29 09:41:28.820477 comef 9766 R rec c63fa875-b8ce-4c5e-8565-17f7e74d85dc +2024-07-29 09:41:28.906177 2024-07-29 09:41:28.906187 comef 9767 R rec 7dc07090-9362-477a-8bbb-c34e40805392 +2024-07-29 09:41:28.993875 2024-07-29 09:41:28.99389 comef 9768 R rec 9da18912-a952-4be8-9c14-25b28f55cbba +2024-07-29 09:41:29.084803 2024-07-29 09:41:29.084813 comef 9769 R rec 73a4c186-5fa7-412b-a0b6-bb30c35fab54 +2024-07-29 09:41:29.177719 2024-07-29 09:41:29.177734 comef 9770 R rec 4bdc4bcc-44d4-4909-bc7a-c80396bf7dd0 +2024-07-29 09:41:29.270253 2024-07-29 09:41:29.270268 comef 9771 R rec fec63fc1-0dab-4ba7-9a3e-8cc6405dec82 +2024-07-29 09:41:29.334987 2024-07-29 09:41:29.335 comef 9772 R rec 3fe7ab57-a4e7-4d44-b50d-57d534b18d6c +2024-07-29 09:41:29.408254 2024-07-29 09:41:29.408264 comef 9773 R rec 83d0f838-788a-4a6d-be85-47ad699126c6 +2024-07-29 09:41:29.489484 2024-07-29 09:41:29.489499 comef 9774 R rec 1c13088b-c7ad-44d9-a491-d750987e53e0 +2024-07-29 09:41:29.578034 2024-07-29 09:41:29.578046 comef 9775 R rec d6ca3723-605d-449e-aac2-904f437ff3d8 +2024-07-29 09:41:29.665483 2024-07-29 09:41:29.665498 comef 9776 R rec 9b5614c3-4232-4ff1-b092-18562cc83603 +2024-07-29 09:41:29.74852 2024-07-29 09:41:29.748535 comef 9777 R rec 8312b361-6880-48f1-aed9-6dc66ebc76ea +2024-07-29 09:41:29.8382 2024-07-29 09:41:29.838215 comef 9778 R rec 7a92b47b-ed1b-454b-9d9a-4d5570ccd5f5 +2024-07-29 09:41:29.935153 2024-07-29 09:41:29.935163 comef 9779 R rec 4ff5bdac-9836-4b35-afb3-14bfebee6a33 +2024-07-29 09:41:30.021883 2024-07-29 09:41:30.021898 comef 9780 R rec 37b04e07-c666-4229-9eae-d7e4dd3904d2 +2024-07-29 09:41:30.111178 2024-07-29 09:41:30.111189 comef 9781 R rec 39a30381-4ad3-4903-a6f7-112184408ce4 +2024-07-29 09:41:30.19018 2024-07-29 09:41:30.19019 comef 9782 R rec a63a9b71-5df7-4bcf-a134-cb8dacda902b +2024-07-29 09:41:30.266214 2024-07-29 09:41:30.266224 comef 9783 R rec 5b8794a2-55d2-4c17-a48c-6091cd430935 +2024-07-29 09:41:30.336766 2024-07-29 09:41:30.336771 comef 9784 R rec bb4bc23c-f4ba-4d07-81a5-b61c03d90aeb +2024-07-29 09:41:30.394095 2024-07-29 09:41:30.394106 comef 9785 R rec cd365cbd-5f86-49da-8aea-f341f21e3afe +2024-07-29 09:41:30.466242 2024-07-29 09:41:30.466253 comef 9786 R rec ccac733b-c4ad-407c-b248-e57f269fdef0 +2024-07-29 09:41:30.547603 2024-07-29 09:41:30.547614 comef 9787 R rec df5ece16-681b-4918-ba1e-978f2c338ee9 +2024-07-29 09:41:30.635908 2024-07-29 09:41:30.635917 comef 9788 R rec 2f936f30-9c05-4cad-8071-070f7c24bfbd +2024-07-29 09:41:30.739724 2024-07-29 09:41:30.73974 comef 9789 R rec 39d703eb-b8ef-4792-9bb4-b38b33e922dc +2024-07-29 09:41:30.833079 2024-07-29 09:41:30.833094 comef 9790 R rec bc106db9-8a86-44f3-86fb-c1969d0bc44a +2024-07-29 09:41:30.937175 2024-07-29 09:41:30.937189 comef 9791 R rec 172afef7-590f-4feb-8d23-8342eed01278 +2024-07-29 09:41:31.044601 2024-07-29 09:41:31.044617 comef 9792 R rec 6c46426e-bd11-456b-86ea-e7ae686159b9 +2024-07-29 09:41:31.140599 2024-07-29 09:41:31.140609 comef 9793 R rec 2842208c-6a90-47fa-bf4b-4f8d30b2ae18 +2024-07-29 09:41:31.243786 2024-07-29 09:41:31.243799 comef 9794 R rec 5065002c-fe0e-426a-a76e-48e5498d7fa4 +2024-07-29 09:41:31.338561 2024-07-29 09:41:31.338573 comef 9795 R rec c8291694-3ab8-4f8a-a9dd-9dcc2d9eae78 +2024-07-29 09:41:31.403088 2024-07-29 09:41:31.4031 comef 9796 R rec b5965607-aea4-4201-9973-82bc55bb3622 +2024-07-29 09:41:31.508505 2024-07-29 09:41:31.508516 comef 9797 R rec ee9ee6a8-c981-4744-a953-95c2060d66a4 +2024-07-29 09:41:31.605391 2024-07-29 09:41:31.605402 comef 9798 R rec f922e747-0f1c-4cae-9810-c9026a48cc19 +2024-07-29 09:41:31.693536 2024-07-29 09:41:31.693551 comef 9799 R rec efcfe98a-177a-4742-8016-b3b4072b3663 +2024-07-29 09:41:31.792075 2024-07-29 09:41:31.792091 comef 9800 R rec ce2db562-838d-4c97-b960-453d6c107564 +2024-07-29 09:41:31.893591 2024-07-29 09:41:31.893601 comef 9801 R rec 76e3d581-6831-4f15-82e3-35a42dfe174f +2024-07-29 09:41:31.982678 2024-07-29 09:41:31.982688 comef 9802 R rec b9cac31e-e832-4463-a5f1-feedb29fd7aa +2024-07-29 09:41:32.069535 2024-07-29 09:41:32.069548 comef 9803 R rec 2e846a50-6b52-4b73-aae2-df82a4a06c18 +2024-07-29 09:41:32.155682 2024-07-29 09:41:32.155698 comef 9804 R rec 2f458bef-9f12-49a7-9cde-e09418c5526f +2024-07-29 09:41:32.250292 2024-07-29 09:41:32.250303 comef 9805 R rec 4c3be066-1ddb-403a-9194-ed732214ee8a +2024-07-29 09:41:32.324069 2024-07-29 09:41:32.324081 comef 9806 R rec dfc10400-b2fd-4407-bd6e-d3cd14c8dcff +2024-07-29 09:41:32.401755 2024-07-29 09:41:32.401765 comef 9807 R rec de5b57eb-9ead-4b45-9890-f90df4980452 +2024-07-29 09:41:32.473655 2024-07-29 09:41:32.473667 comef 9808 R rec ded4de6e-95ef-43cb-b77b-b853ec7466cf +2024-07-29 09:41:32.55828 2024-07-29 09:41:32.55829 comef 9809 R rec c3b1903a-413c-43ee-886c-56bdb3b75a79 +2024-07-29 09:41:32.650652 2024-07-29 09:41:32.650665 comef 9810 R rec dcbd006d-faff-4bc5-84be-a69cfb6853c3 +2024-07-29 09:41:32.749005 2024-07-29 09:41:32.749017 comef 9811 R rec 43234943-8351-436b-9266-dc84d23eb33a +2024-07-29 09:41:32.842171 2024-07-29 09:41:32.842183 comef 9812 R rec 674d653a-40d7-4ce4-8ffb-8a5e27b1c266 +2024-07-29 09:41:32.938383 2024-07-29 09:41:32.938396 comef 9813 R rec 6a333d06-5bf7-4c23-8b1e-c35ad725ef1f +2024-07-29 09:41:33.027737 2024-07-29 09:41:33.027749 comef 9814 R rec cadbd901-252d-4794-b436-51d21ad8cf90 +2024-07-29 09:41:33.11845 2024-07-29 09:41:33.11846 comef 9815 R rec 84c3d3bf-f89e-4e20-986e-0a3b4f16e8bb +2024-07-29 09:41:33.204353 2024-07-29 09:41:33.204367 comef 9816 R rec 6df64bd6-a4cf-4f50-8de7-c6879b0ced2e +2024-07-29 09:41:33.288965 2024-07-29 09:41:33.28898 comef 9817 R rec ec45b387-9dbc-498b-8aa7-823cbf15eea1 +2024-07-29 09:41:33.379823 2024-07-29 09:41:33.379835 comef 9818 R rec 35bee03d-7002-452a-90d3-534fbfcd2961 +2024-07-29 09:41:33.438324 2024-07-29 09:41:33.438329 comef 9819 R rec f9960fc8-b0b2-492d-813b-cb2b43694071 +2024-07-29 09:41:33.502302 2024-07-29 09:41:33.502313 comef 9820 R rec 3324448d-52c3-4755-ba7a-c2ec28bcdcc4 +2024-07-29 09:41:33.584769 2024-07-29 09:41:33.584802 comef 9821 R rec 0e427d84-723a-4b4e-99fa-7d256d83d0bd +2024-07-29 09:41:33.680382 2024-07-29 09:41:33.680397 comef 9822 R rec 5edd09f4-e75d-4b4c-b13a-5ca9c5b6a07b +2024-07-29 09:41:33.780318 2024-07-29 09:41:33.780333 comef 9823 R rec 2d698a6c-d1ec-4cac-a258-24b71f0c9206 +2024-07-29 09:41:33.871929 2024-07-29 09:41:33.871944 comef 9824 R rec dcd49eb9-d2cb-45ab-8c6e-da898d3f48ae +2024-07-29 09:41:33.982342 2024-07-29 09:41:33.982357 comef 9825 R rec 328c9562-ff1f-41e3-91af-32e1011dfccd +2024-07-29 09:41:34.068579 2024-07-29 09:41:34.068589 comef 9826 R rec 0c266016-7efd-4774-a453-919370030487 +2024-07-29 09:41:34.148567 2024-07-29 09:41:34.148582 comef 9827 R rec c048fe6f-1d3a-4f5f-bd5c-38117944df16 +2024-07-29 09:41:34.242777 2024-07-29 09:41:34.242794 comef 9828 R rec 879a5541-acd2-48b8-ab03-ab8e77fee890 +2024-07-29 09:41:34.335416 2024-07-29 09:41:34.33543 comef 9829 R rec 8eee2b0f-3264-410b-995a-bff1983bd745 +2024-07-29 09:41:34.42531 2024-07-29 09:41:34.425316 comef 9830 R rec 87f794be-dc3d-4b1a-b6c2-27983e795c93 +2024-07-29 09:41:34.481045 2024-07-29 09:41:34.481056 comef 9831 R rec da4c6ecb-0934-4977-ac66-216b67013fb8 +2024-07-29 09:41:34.556711 2024-07-29 09:41:34.556723 comef 9832 R rec 7f85f610-62f5-432a-b5c5-d15086e486cf +2024-07-29 09:41:34.627057 2024-07-29 09:41:34.62707 comef 9833 R rec edac3634-4245-4bf6-9527-187742603f76 +2024-07-29 09:41:34.702467 2024-07-29 09:41:34.702477 comef 9834 R rec a05adfce-9428-426a-ac2a-d202aaa165a0 +2024-07-29 09:41:34.789795 2024-07-29 09:41:34.78981 comef 9835 R rec 41a23422-0ae3-4f52-8c39-511508c8ab40 +2024-07-29 09:41:34.882226 2024-07-29 09:41:34.882238 comef 9836 R rec 5725cd97-0ccb-4ff7-8e6d-fc650e0146bf +2024-07-29 09:41:34.966792 2024-07-29 09:41:34.966807 comef 9837 R rec 42ea98c7-9392-4f1b-9a9c-b29019c006ee +2024-07-29 09:41:35.058549 2024-07-29 09:41:35.058564 comef 9838 R rec 720ce4a3-6d69-48f6-92ef-bae5c23870f5 +2024-07-29 09:41:35.167697 2024-07-29 09:41:35.167711 comef 9839 R rec 1d28be9d-24c3-48bd-85a3-d191a4ccf171 +2024-07-29 09:41:35.265971 2024-07-29 09:41:35.265986 comef 9840 R rec 58ec7427-a000-4a7f-8238-462bd1a41c4f +2024-07-29 09:41:35.359754 2024-07-29 09:41:35.359769 comef 9841 R rec 085ece1e-3e26-4047-8a73-93360c613f1d +2024-07-29 09:41:35.460932 2024-07-29 09:41:35.460937 comef 9842 R rec e20bcc97-05af-48b6-8f99-139bcde52894 +2024-07-29 09:41:35.520485 2024-07-29 09:41:35.520498 comef 9843 R rec 810f12db-5101-4a92-aaf9-ed02e32971b0 +2024-07-29 09:41:35.604623 2024-07-29 09:41:35.604635 comef 9844 R rec c9ea6a40-1080-4e99-9a17-fc825d6ebd9a +2024-07-29 09:41:35.686638 2024-07-29 09:41:35.68665 comef 9845 R rec faad17c0-ebfd-48f1-b5fe-6382a06947ec +2024-07-29 09:41:35.776897 2024-07-29 09:41:35.776909 comef 9846 R rec 0535ac7c-f30c-4fe6-adcb-403f6066a1ee +2024-07-29 09:41:35.872508 2024-07-29 09:41:35.872518 comef 9847 R rec 017feed0-c605-43a4-8094-8f859fcc6c6c +2024-07-29 09:41:35.969664 2024-07-29 09:41:35.969681 comef 9848 R rec 35081140-0d78-4d94-b792-b4bf6293c2da +2024-07-29 09:41:36.073445 2024-07-29 09:41:36.073457 comef 9849 R rec b677d79e-d764-4ee4-8b25-1f800be4a692 +2024-07-29 09:41:36.172416 2024-07-29 09:41:36.172429 comef 9850 R rec b022dc98-a4ac-4d4a-bb4f-93afa6a7d19b +2024-07-29 09:41:36.265295 2024-07-29 09:41:36.265306 comef 9851 R rec 868e3ed8-34a9-43e6-b1f3-86dcffb6a482 +2024-07-29 09:41:36.362341 2024-07-29 09:41:36.362353 comef 9852 R rec 3cfdafe8-f3db-4a51-aca8-5f6b2c3aa59c +2024-07-29 09:41:36.471167 2024-07-29 09:41:36.47118 comef 9853 R rec 53e6403f-a76c-49c0-934a-5a139955811b +2024-07-29 09:41:36.543238 2024-07-29 09:41:36.543248 comef 9854 R rec 0daa3cdc-1ff8-4c36-8969-c2d7eea00b99 +2024-07-29 09:41:36.620071 2024-07-29 09:41:36.620082 comef 9855 R rec cd04d849-a5c7-45a8-94bf-cf93bd1195af +2024-07-29 09:41:36.708772 2024-07-29 09:41:36.708786 comef 9856 R rec 5a06661b-6c7f-4675-9993-a3efd17b9dd0 +2024-07-29 09:41:36.807227 2024-07-29 09:41:36.807241 comef 9857 R rec 243b9538-5d4d-47fa-b5f0-29b483daa6af +2024-07-29 09:41:36.896699 2024-07-29 09:41:36.89671 comef 9858 R rec 3233730f-f205-4ad3-b54b-ce6cf2f22511 +2024-07-29 09:41:36.981025 2024-07-29 09:41:36.981035 comef 9859 R rec 768d0466-7fcf-4c56-9e03-80a0b3993847 +2024-07-29 09:41:37.072989 2024-07-29 09:41:37.073002 comef 9860 R rec 80e79a99-04fd-41a7-8d8f-b0fdbd8a6a26 +2024-07-29 09:41:37.164696 2024-07-29 09:41:37.164707 comef 9861 R rec a1507f36-311c-4177-a103-d1f7df925e5f +2024-07-29 09:41:37.270229 2024-07-29 09:41:37.270241 comef 9862 R rec 1421b6b6-d1ec-4aea-82ca-0e52b5064ae7 +2024-07-29 09:41:37.396365 2024-07-29 09:41:37.396375 comef 9863 R rec 80e55c77-9834-4c12-8dae-e69cb745c5ef +2024-07-29 09:41:37.498418 2024-07-29 09:41:37.498429 comef 9864 R rec a23a7956-0e60-4f61-beea-0a8e411c138f +2024-07-29 09:41:37.57545 2024-07-29 09:41:37.57546 comef 9865 R rec 3b32caed-9fed-441a-8b75-51206d4a7dd8 +2024-07-29 09:41:37.660806 2024-07-29 09:41:37.660817 comef 9866 R rec f196c1f9-5610-4e73-b75b-059abc3721d7 +2024-07-29 09:41:37.744144 2024-07-29 09:41:37.744155 comef 9867 R rec 3fa3aeb5-a52c-454a-8ba8-6f1249886547 +2024-07-29 09:41:37.827988 2024-07-29 09:41:37.827999 comef 9868 R rec 389162bc-e73d-490f-bb6d-a1d1509ec343 +2024-07-29 09:41:37.91047 2024-07-29 09:41:37.910482 comef 9869 R rec 11844245-b42b-4e1f-94d0-08eaba545a1d +2024-07-29 09:41:38.012073 2024-07-29 09:41:38.012085 comef 9870 R rec efbbc109-5848-46f1-9825-42640fb4d493 +2024-07-29 09:41:38.107338 2024-07-29 09:41:38.10735 comef 9871 R rec a273ad7f-8e24-4a76-a68d-78d5d6ce88f4 +2024-07-29 09:41:38.194465 2024-07-29 09:41:38.194475 comef 9872 R rec ac69da90-a14f-4133-97b7-076ef2a5fcc8 +2024-07-29 09:41:38.280181 2024-07-29 09:41:38.280193 comef 9873 R rec 2221e1a4-57ef-4838-861c-ddd250b97bb1 +2024-07-29 09:41:38.385168 2024-07-29 09:41:38.385181 comef 9874 R rec bc7bcf1f-40f5-41a1-8f3f-faaea5fc6e72 +2024-07-29 09:41:38.477363 2024-07-29 09:41:38.477376 comef 9875 R rec 5db00784-8916-44af-acb2-0dd6f406fecd +2024-07-29 09:41:38.575174 2024-07-29 09:41:38.575179 comef 9876 R rec fd52d4a9-2086-4b84-a797-5d23e7e02744 +2024-07-29 09:41:38.661734 2024-07-29 09:41:38.661745 comef 9877 R rec 1799dfe3-15c1-4246-9201-ebb26a73dc8d +2024-07-29 09:41:38.743007 2024-07-29 09:41:38.743018 comef 9878 R rec 851cd370-1547-4e62-9fd6-8ee880e72c25 +2024-07-29 09:41:38.840382 2024-07-29 09:41:38.840396 comef 9879 R rec aa29ce9d-75e3-4bb4-a2f8-8f8ee270e223 +2024-07-29 09:41:38.930747 2024-07-29 09:41:38.930758 comef 9880 R rec e2d63eb0-009a-44c6-91ab-e0766d253154 +2024-07-29 09:41:39.030024 2024-07-29 09:41:39.030037 comef 9881 R rec 5714a12f-713c-4175-8b7d-a11406a6d97a +2024-07-29 09:41:39.118542 2024-07-29 09:41:39.118556 comef 9882 R rec 0720f806-9e48-4b10-9c66-6c5ad234b060 +2024-07-29 09:41:39.223243 2024-07-29 09:41:39.223254 comef 9883 R rec 044e4b7a-0b06-4220-adbe-31289706273b +2024-07-29 09:41:39.319509 2024-07-29 09:41:39.319523 comef 9884 R rec a051cdc0-df21-424e-8fe8-60b6a32c5574 +2024-07-29 09:41:39.413914 2024-07-29 09:41:39.413927 comef 9885 R rec 93446bc6-7eac-46ce-8cac-72a147c39d05 +2024-07-29 09:41:39.535195 2024-07-29 09:41:39.535207 comef 9886 R rec 3426a058-58e8-48bb-8bcc-69dfb8b758ab +2024-07-29 09:41:39.60773 2024-07-29 09:41:39.607735 comef 9887 R rec 45fc35ae-b8e7-4a6e-9326-5c327e7979a9 +2024-07-29 09:41:39.66431 2024-07-29 09:41:39.66432 comef 9888 R rec d9f8737c-a607-4b7e-a4de-0ab017f06919 +2024-07-29 09:41:39.744122 2024-07-29 09:41:39.744137 comef 9889 R rec a7ab393f-32b7-45b8-87c2-ef5e81f91c07 +2024-07-29 09:41:39.829841 2024-07-29 09:41:39.829856 comef 9890 R rec 3703819b-cef5-4125-a9f5-05ae1f1be714 +2024-07-29 09:41:39.915936 2024-07-29 09:41:39.915948 comef 9891 R rec 9709b21f-1179-490e-945d-9fde4bda806b +2024-07-29 09:41:40.003774 2024-07-29 09:41:40.003789 comef 9892 R rec b60de76b-6353-43be-b5a7-40ffa798e2ac +2024-07-29 09:41:40.090693 2024-07-29 09:41:40.090708 comef 9893 R rec 0ecfcbb1-1210-4d18-962f-72ac18704ad9 +2024-07-29 09:41:40.18851 2024-07-29 09:41:40.188523 comef 9894 R rec d2b4e599-82b1-4eab-a1a9-36bda445159e +2024-07-29 09:41:40.287111 2024-07-29 09:41:40.287122 comef 9895 R rec 48a27ef8-289b-4282-88a5-1327262cfe92 +2024-07-29 09:41:40.373301 2024-07-29 09:41:40.37331 comef 9896 R rec e731fd73-de18-4af7-b566-db9bb1832358 +2024-07-29 09:41:40.438541 2024-07-29 09:41:40.438551 comef 9897 R rec 95872e17-7eb6-4bf4-975b-56d4d39350fa +2024-07-29 09:41:40.516057 2024-07-29 09:41:40.516072 comef 9898 R rec f70b1551-a7c5-4f49-9973-7524cd81b5b7 +2024-07-29 09:41:40.611788 2024-07-29 09:41:40.611794 comef 9899 R rec 9e198e4e-e979-4c6d-8782-c92f9be3131d +2024-07-29 09:41:40.675886 2024-07-29 09:41:40.675898 comef 9900 R rec 29e215b0-99b1-4685-9cb1-3dae96b6d7f8 +2024-07-29 09:41:40.753285 2024-07-29 09:41:40.7533 comef 9901 R rec 4704214c-b05c-44f1-90a2-468c16823bd3 +2024-07-29 09:41:40.832944 2024-07-29 09:41:40.832957 comef 9902 R rec 0e3cb36b-94fd-4022-8a50-045f0b9133c8 +2024-07-29 09:41:40.92066 2024-07-29 09:41:40.920674 comef 9903 R rec ce9f1711-841d-4d60-9bf8-1fca6a50e21c +2024-07-29 09:41:41.002907 2024-07-29 09:41:41.002917 comef 9904 R rec d34ebe00-aed9-4232-999f-7dbfbb48481f +2024-07-29 09:41:41.077271 2024-07-29 09:41:41.077282 comef 9905 R rec 46f6be71-a1b4-4bc0-bace-ecae7a5b2192 +2024-07-29 09:41:41.154976 2024-07-29 09:41:41.154988 comef 9906 R rec 171b4475-e5ce-40a6-87b1-9cf2e5a4359e +2024-07-29 09:41:41.242511 2024-07-29 09:41:41.242526 comef 9907 R rec b406f296-5132-42f4-bd55-3038e6137e54 +2024-07-29 09:41:41.3383 2024-07-29 09:41:41.338315 comef 9908 R rec a0cd6c8e-9297-4c7c-bcac-f4c1ebeca8fe +2024-07-29 09:41:41.429983 2024-07-29 09:41:41.429996 comef 9909 R rec bb0ce3ec-7aa7-4d50-8530-a65a6182576a +2024-07-29 09:41:41.518926 2024-07-29 09:41:41.518957 comef 9910 R rec 4f04e1e8-2861-4532-992c-a793b17b16d3 +2024-07-29 09:41:41.616766 2024-07-29 09:41:41.616783 comef 9911 R rec 9b14edde-45db-4db7-b080-c9152839e80e +2024-07-29 09:41:41.683731 2024-07-29 09:41:41.683741 comef 9912 R rec be588c17-cd95-4a38-a3c5-6bc4d6ca0704 +2024-07-29 09:41:41.76128 2024-07-29 09:41:41.761292 comef 9913 R rec 9a89082b-d938-4f0f-b6ca-391f237211b9 +2024-07-29 09:41:41.837779 2024-07-29 09:41:41.837794 comef 9914 R rec a5cfe983-cc33-46ee-a799-9035a79c3edf +2024-07-29 09:41:41.936426 2024-07-29 09:41:41.936438 comef 9915 R rec 93c20e32-dcf1-4f55-9464-e30bb07e9595 +2024-07-29 09:41:42.020438 2024-07-29 09:41:42.020448 comef 9916 R rec 829bc42f-925e-4322-ab5c-2d304c3aecca +2024-07-29 09:41:42.104964 2024-07-29 09:41:42.104977 comef 9917 R rec 3e48dd8e-0942-4188-a315-18c122bffa87 +2024-07-29 09:41:42.19502 2024-07-29 09:41:42.19503 comef 9918 R rec 216b1831-7691-4139-b0ad-e04bacc40eb9 +2024-07-29 09:41:42.291783 2024-07-29 09:41:42.291795 comef 9919 R rec e921d950-a7ff-42a3-ac4c-c71629302d7f +2024-07-29 09:41:42.380531 2024-07-29 09:41:42.380545 comef 9920 R rec 312cf22a-67ba-4744-9e9d-c3a034d20488 +2024-07-29 09:41:42.464498 2024-07-29 09:41:42.464514 comef 9921 R rec 708a62c2-1b32-4be1-8143-b2859f3edd2b +2024-07-29 09:41:42.56541 2024-07-29 09:41:42.565421 comef 9922 R rec 12c41f3c-b33a-4eda-a5a7-76cfaac36b84 +2024-07-29 09:41:42.653292 2024-07-29 09:41:42.653305 comef 9923 R rec 727986f5-1fdc-4824-9896-0edef6538986 +2024-07-29 09:41:42.717766 2024-07-29 09:41:42.717777 comef 9924 R rec e03cb46b-b4b3-4ab0-9c7b-06682980b938 +2024-07-29 09:41:42.777142 2024-07-29 09:41:42.777152 comef 9925 R rec 2c40e98c-21a6-4191-8df4-850cf5b04406 +2024-07-29 09:41:42.858153 2024-07-29 09:41:42.858169 comef 9926 R rec ebf9af2d-78ed-45db-93cf-13b2d2f29e02 +2024-07-29 09:41:42.946887 2024-07-29 09:41:42.946902 comef 9927 R rec b61a1f2d-1595-4015-a7a2-fe4595b7463c +2024-07-29 09:41:43.040554 2024-07-29 09:41:43.040565 comef 9928 R rec d098a90d-2579-4b92-aaa6-a9881086e928 +2024-07-29 09:41:43.132959 2024-07-29 09:41:43.132974 comef 9929 R rec 77ae02be-445b-457f-9e97-eb449cc03e9e +2024-07-29 09:41:43.225791 2024-07-29 09:41:43.225806 comef 9930 R rec 47cd547f-992f-479a-9b34-7429c48584da +2024-07-29 09:41:43.320207 2024-07-29 09:41:43.320222 comef 9931 R rec aaae0d7a-9a39-4e23-96c6-10f631e93de6 +2024-07-29 09:41:43.423513 2024-07-29 09:41:43.423528 comef 9932 R rec 162da55b-db16-4f9e-adb2-ca6c2b950487 +2024-07-29 09:41:43.526933 2024-07-29 09:41:43.526948 comef 9933 R rec cca048e8-a182-4ef6-9918-20817f7a7d6c +2024-07-29 09:41:43.630679 2024-07-29 09:41:43.630692 comef 9934 R rec 91b9b778-15b0-495c-bc21-150414060820 +2024-07-29 09:41:43.711921 2024-07-29 09:41:43.711926 comef 9935 R rec 21f65894-6280-4c7c-9445-aa09f5e64935 +2024-07-29 09:41:43.765143 2024-07-29 09:41:43.765153 comef 9936 R rec dccfe733-0a40-44c2-9413-860e584fa7a5 +2024-07-29 09:41:43.855314 2024-07-29 09:41:43.855325 comef 9937 R rec 850e896e-434f-4cd7-a100-ab3b0c64dda5 +2024-07-29 09:41:43.943597 2024-07-29 09:41:43.943609 comef 9938 R rec 41a15a85-85ec-4933-a92f-205753d2a0dd +2024-07-29 09:41:44.040509 2024-07-29 09:41:44.040519 comef 9939 R rec 6b4fccfa-020f-4bc5-b5ab-9f4e8bf95bbc +2024-07-29 09:41:44.135477 2024-07-29 09:41:44.135488 comef 9940 R rec 9002c336-91a4-4aef-a661-ddda9d43eb2a +2024-07-29 09:41:44.235795 2024-07-29 09:41:44.235998 comef 9941 R rec 2c19a1aa-f4ab-455a-8212-47739f82e18f +2024-07-29 09:41:44.347677 2024-07-29 09:41:44.347688 comef 9942 R rec bc0f0b32-fcc0-4a5b-8e98-187477ae8078 +2024-07-29 09:41:44.442347 2024-07-29 09:41:44.442357 comef 9943 R rec de76b0eb-7581-421e-96c1-ebd992cba1db +2024-07-29 09:41:44.551083 2024-07-29 09:41:44.551095 comef 9944 R rec ae9608e2-1ed9-4198-81dc-8cf5e9e13fbd +2024-07-29 09:41:44.641607 2024-07-29 09:41:44.641624 comef 9945 R rec d9407ae3-3461-4e7d-a9af-321af4fc4da9 +2024-07-29 09:41:44.745196 2024-07-29 09:41:44.745201 comef 9946 R rec bc7ff17b-8c32-4c68-a53f-2f88c8b785dd +2024-07-29 09:41:44.803155 2024-07-29 09:41:44.803168 comef 9947 R rec 7c7bff70-cbb7-4ea4-ae54-e0406cba7a0a +2024-07-29 09:41:44.89197 2024-07-29 09:41:44.891983 comef 9948 R rec b59bed9f-741a-492a-af95-8991afb3bb44 +2024-07-29 09:41:44.9805 2024-07-29 09:41:44.980516 comef 9949 R rec 744856b1-eff4-4a32-8c08-763cc2a21e22 +2024-07-29 09:41:45.077036 2024-07-29 09:41:45.077048 comef 9950 R rec cfa231d3-80b8-457b-8eef-b7654c5446e8 +2024-07-29 09:41:45.167552 2024-07-29 09:41:45.167564 comef 9951 R rec a4fe4c49-754c-4f3b-b885-13012e578566 +2024-07-29 09:41:45.264614 2024-07-29 09:41:45.26468 comef 9952 R rec 932f6ae9-3d49-4e26-b4da-dde70a0beeb8 +2024-07-29 09:41:45.364621 2024-07-29 09:41:45.364632 comef 9953 R rec 4aaf8887-e4a4-48de-9535-186dc7ed9491 +2024-07-29 09:41:45.474206 2024-07-29 09:41:45.474217 comef 9954 R rec a83c9837-a3df-4f7a-b1f5-cb13ed4b3755 +2024-07-29 09:41:45.5619 2024-07-29 09:41:45.561911 comef 9955 R rec dd28a00b-22e5-4616-ab71-5c36287304a7 +2024-07-29 09:41:45.642815 2024-07-29 09:41:45.642827 comef 9956 R rec e2f38caf-5851-4a71-822e-33680d77dda4 +2024-07-29 09:41:45.733478 2024-07-29 09:41:45.733493 comef 9957 R rec eca25dd3-84f9-4fb4-880f-f2688380dd7f +2024-07-29 09:41:45.795485 2024-07-29 09:41:45.795489 comef 9958 R rec 3c827207-ecba-4757-a920-8101a48d2ecd +2024-07-29 09:41:45.854877 2024-07-29 09:41:45.854888 comef 9959 R rec 967c4b6c-92be-49a7-9550-0da672c11bd8 +2024-07-29 09:41:45.953385 2024-07-29 09:41:45.953398 comef 9960 R rec 28a6e49a-a842-4068-b6d2-f3365cda1c09 +2024-07-29 09:41:46.055173 2024-07-29 09:41:46.055186 comef 9961 R rec a34ccf4c-c22c-4647-b378-fdcced91aa17 +2024-07-29 09:41:46.157395 2024-07-29 09:41:46.157409 comef 9962 R rec 23d22470-6795-4605-8937-e8047283301d +2024-07-29 09:41:46.253642 2024-07-29 09:41:46.253654 comef 9963 R rec 4e2b69c4-cbd5-4d56-8fe8-581428fc2de1 +2024-07-29 09:41:46.341757 2024-07-29 09:41:46.341767 comef 9964 R rec c1b2bb5a-8315-44a8-bb06-2b787032154e +2024-07-29 09:41:46.451391 2024-07-29 09:41:46.451402 comef 9965 R rec 07f1ae1d-2a21-4d13-ab09-c6b6d79a2b22 +2024-07-29 09:41:46.545424 2024-07-29 09:41:46.545437 comef 9966 R rec 3b712593-7c35-40c5-9d44-214f450c0471 +2024-07-29 09:41:46.652575 2024-07-29 09:41:46.652602 comef 9967 R rec 9e5ecabb-aac8-4556-94e4-34a58d206b42 +2024-07-29 09:41:46.735437 2024-07-29 09:41:46.735448 comef 9968 R rec 232a6204-269a-425d-9c2c-70a85f117bdb +2024-07-29 09:41:46.809564 2024-07-29 09:41:46.809569 comef 9969 R rec ed392914-0828-48b3-ae91-97dd0337ff0e +2024-07-29 09:41:46.893948 2024-07-29 09:41:46.89396 comef 9970 R rec 5f98ed48-0b53-41a8-9343-2e072f656209 +2024-07-29 09:41:46.983814 2024-07-29 09:41:46.983828 comef 9971 R rec 71d9dff9-1efe-4a6a-97d3-3a4c3c22e8af +2024-07-29 09:41:47.081319 2024-07-29 09:41:47.081331 comef 9972 R rec bf3926a5-fd03-4eea-9904-db201a4aa625 +2024-07-29 09:41:47.180227 2024-07-29 09:41:47.180237 comef 9973 R rec 978c219a-fa70-4978-a91a-c9b0d0a2b7fa +2024-07-29 09:41:47.275184 2024-07-29 09:41:47.275215 comef 9974 R rec 71eed447-e34a-45e6-b3da-1e408fd43ff4 +2024-07-29 09:41:47.390889 2024-07-29 09:41:47.3909 comef 9975 R rec 3f1f3cf1-cc1c-46d7-81e6-b51389d2a63d +2024-07-29 09:41:47.47941 2024-07-29 09:41:47.479421 comef 9976 R rec 6bd82f02-adc9-4a47-89af-a436203b4b0f +2024-07-29 09:41:47.569228 2024-07-29 09:41:47.56924 comef 9977 R rec 8ff38fbe-27aa-470b-94a2-c9d30c6a1006 +2024-07-29 09:41:47.658429 2024-07-29 09:41:47.658442 comef 9978 R rec 25682258-a091-4f06-a430-552a28dab26b +2024-07-29 09:41:47.761139 2024-07-29 09:41:47.76115 comef 9979 R rec 207be046-092d-4432-9fee-18b3ff4ffa89 +2024-07-29 09:41:47.834632 2024-07-29 09:41:47.83464 comef 9980 R rec a6b9aa0e-0dbe-4502-9708-553264067fff +2024-07-29 09:41:47.907578 2024-07-29 09:41:47.907589 comef 9981 R rec 331e59c0-eea7-452a-9e9d-380166c2056d +2024-07-29 09:41:47.996202 2024-07-29 09:41:47.996214 comef 9982 R rec d63cd2bb-612b-49a5-9555-d32de8fa4b87 +2024-07-29 09:41:48.078537 2024-07-29 09:41:48.078549 comef 9983 R rec e68c08b5-c4e9-41f7-aa7b-a968f2a82a62 +2024-07-29 09:41:48.172336 2024-07-29 09:41:48.172352 comef 9984 R rec 29954f6f-d24c-40d8-bf7f-7eb0aa8aca9d +2024-07-29 09:41:48.271325 2024-07-29 09:41:48.271338 comef 9985 R rec 9e113e0d-cf1f-4759-b5b2-c55928f205fb +2024-07-29 09:41:48.372629 2024-07-29 09:41:48.372642 comef 9986 R rec 1bafca6b-0568-473f-8807-0fbaf7a6b326 +2024-07-29 09:41:48.470747 2024-07-29 09:41:48.470758 comef 9987 R rec f65a1bfa-dbba-485d-8e4c-9841a125d8c1 +2024-07-29 09:41:48.573402 2024-07-29 09:41:48.573413 comef 9988 R rec 636c599d-91ef-4f57-a952-d8c8141cb252 +2024-07-29 09:41:48.679607 2024-07-29 09:41:48.67962 comef 9989 R rec f75eb583-994b-4378-a2fe-604de6bda397 +2024-07-29 09:41:48.787819 2024-07-29 09:41:48.787832 comef 9990 R rec c7245c80-9f6d-4e61-ac53-f5fcb1d51ff2 +2024-07-29 09:41:48.869387 2024-07-29 09:41:48.869393 comef 9991 R rec 724ca8aa-30ce-4e0d-a9fb-cd58cbbf343c +2024-07-29 09:41:48.938063 2024-07-29 09:41:48.938075 comef 9992 R rec eb70d5fd-3e3b-42c2-98fd-29fc1abf26e9 +2024-07-29 09:41:49.038078 2024-07-29 09:41:49.038089 comef 9993 R rec 181288d7-4dd4-499e-beb9-3132b950cfe5 +2024-07-29 09:41:49.134144 2024-07-29 09:41:49.134158 comef 9994 R rec 2f0e34db-2f3c-419b-9d22-006ba69a54e8 +2024-07-29 09:41:49.224334 2024-07-29 09:41:49.224347 comef 9995 R rec f978c39f-cf09-43bb-b063-f4ac8460f6a3 +2024-07-29 09:41:49.317672 2024-07-29 09:41:49.317685 comef 9996 R rec 5fc25e2c-7820-4dc1-9cdf-23bdafb2dcfc +2024-07-29 09:41:49.417106 2024-07-29 09:41:49.417117 comef 9997 R rec ce7acb6f-bb63-42dc-9991-65c95c43df7f +2024-07-29 09:41:49.508849 2024-07-29 09:41:49.508859 comef 9998 R rec 720ca7ec-e3d5-424e-94f1-ce89d2eaebc7 +2024-07-29 09:41:49.605257 2024-07-29 09:41:49.605273 comef 9999 R rec 061060de-7b29-4a74-b76e-8a9167a25625 +2024-07-29 09:41:49.710976 2024-07-29 09:41:49.710988 comef 10000 R rec 7ef2ddcd-0a48-45c3-bfe0-50629e37792d +2024-07-29 09:41:49.811384 2024-07-29 09:41:49.811394 comef 10001 R rec d30ec462-07dd-4bcc-b7ea-acaa73130779 +2024-07-29 09:41:49.910292 2024-07-29 09:41:49.910302 comef 10002 R rec da2f0eea-2827-4ef8-a181-41a65f94a372 +2024-07-29 09:41:49.992264 2024-07-29 09:41:49.992276 comef 10003 R rec 75434b17-691d-47f5-98b4-51c97be7ebc0 +2024-07-29 09:41:50.074341 2024-07-29 09:41:50.074351 comef 10004 R rec d1bbc168-cfa2-4eeb-83e2-2df01246381c +2024-07-29 09:41:50.165378 2024-07-29 09:41:50.165461 comef 10005 R rec 5458dcf1-b02d-46e0-88fc-4af71a822566 +2024-07-29 09:41:50.262875 2024-07-29 09:41:50.26289 comef 10006 R rec df13071b-957d-4c21-8cc3-cef137ee57e2 +2024-07-29 09:41:50.363057 2024-07-29 09:41:50.363072 comef 10007 R rec aa7bbc44-64ad-40cf-9a00-f0c089b9f380 +2024-07-29 09:41:50.461124 2024-07-29 09:41:50.46114 comef 10008 R rec 8f58b4bc-521b-4367-b76b-bd4e41c201ce +2024-07-29 09:41:50.554141 2024-07-29 09:41:50.554151 comef 10009 R rec 3f492ce6-ea78-4d10-9563-99a37701d7b7 +2024-07-29 09:41:50.655893 2024-07-29 09:41:50.655903 comef 10010 R rec 7aa5c19f-a82e-4bcf-a614-353dad3e86bd +2024-07-29 09:41:50.75753 2024-07-29 09:41:50.757545 comef 10011 R rec 26f284bd-cb2c-474a-8bb9-6dabf9988069 +2024-07-29 09:41:50.868124 2024-07-29 09:41:50.868139 comef 10012 R rec b1440ec1-f00c-4907-b956-514b9060bda9 +2024-07-29 09:41:50.943964 2024-07-29 09:41:50.943969 comef 10013 R rec bfb8415e-aabc-4a6d-a510-c8b00335943c +2024-07-29 09:41:51.021355 2024-07-29 09:41:51.021368 comef 10014 R rec 10e375ff-10ef-46cc-b579-245a005d56a3 +2024-07-29 09:41:51.12829 2024-07-29 09:41:51.128301 comef 10015 R rec ffea4536-9cfc-4a28-bf57-cddc20e04ece +2024-07-29 09:41:51.219313 2024-07-29 09:41:51.219326 comef 10016 R rec 3ce262cb-3743-493f-81e3-c239275bdbab +2024-07-29 09:41:51.329179 2024-07-29 09:41:51.329193 comef 10017 R rec 59db4950-1911-4821-bab5-4dee874f50ea +2024-07-29 09:41:51.436005 2024-07-29 09:41:51.436016 comef 10018 R rec 32e27051-2f70-4a5d-853a-306ac5c4d42d +2024-07-29 09:41:51.541547 2024-07-29 09:41:51.541565 comef 10019 R rec 39524f0d-fbc2-45f8-87bd-80cd516af08b +2024-07-29 09:41:51.634978 2024-07-29 09:41:51.634988 comef 10020 R rec 83fc696d-10bb-4ac3-973a-5d451bc24e1f +2024-07-29 09:41:51.712932 2024-07-29 09:41:51.712943 comef 10021 R rec e4a379a2-ac34-45a3-b3da-f8e7b9d0276c +2024-07-29 09:41:51.801571 2024-07-29 09:41:51.801586 comef 10022 R rec 72307eb2-ad15-4247-9ab8-37d949b03117 +2024-07-29 09:41:51.904699 2024-07-29 09:41:51.904713 comef 10023 R rec 1f7c5471-3bb3-4a52-bf94-b5706f10619e +2024-07-29 09:41:51.963087 2024-07-29 09:41:51.963092 comef 10024 R rec 8a7bacb9-67b7-4df8-820c-1a76a5cf6737 +2024-07-29 09:41:52.031085 2024-07-29 09:41:52.031096 comef 10025 R rec 77ddcc6f-8cfc-4176-b711-72309959880d +2024-07-29 09:41:52.109558 2024-07-29 09:41:52.10957 comef 10026 R rec f0ecff4b-22bd-42f2-b4bf-e4b957d058ef +2024-07-29 09:41:52.194837 2024-07-29 09:41:52.194849 comef 10027 R rec a82752c5-7026-4dc1-9bb7-42764cf204e1 +2024-07-29 09:41:52.291854 2024-07-29 09:41:52.291867 comef 10028 R rec 66608799-becd-4a0a-b0a0-7ab1b35f5d97 +2024-07-29 09:41:52.391797 2024-07-29 09:41:52.391812 comef 10029 R rec b3200591-2bce-4a49-948b-04e8fac837db +2024-07-29 09:41:52.495419 2024-07-29 09:41:52.495435 comef 10030 R rec f9119b0c-576b-4fa7-ba63-61d98867f202 +2024-07-29 09:41:52.597542 2024-07-29 09:41:52.597553 comef 10031 R rec 3e9c98f6-5f07-4ab4-9555-6cdba1ac053b +2024-07-29 09:41:52.704667 2024-07-29 09:41:52.70468 comef 10032 R rec f759b667-f83e-48da-8f97-f5d1c778accc +2024-07-29 09:41:52.800789 2024-07-29 09:41:52.800799 comef 10033 R rec 167adffb-03ce-428d-aad4-2fea33fdc284 +2024-07-29 09:41:52.894986 2024-07-29 09:41:52.894999 comef 10034 R rec f0666498-f753-4c60-9778-62618c2f96b7 +2024-07-29 09:41:52.980417 2024-07-29 09:41:52.980422 comef 10035 R rec 348ec7a9-1a04-4e03-a251-9832efe92931 +2024-07-29 09:41:53.039713 2024-07-29 09:41:53.039724 comef 10036 R rec 281d8747-1674-410f-b19e-aca32a24aea4 +2024-07-29 09:41:53.118528 2024-07-29 09:41:53.118543 comef 10037 R rec b5a792eb-279c-477d-b523-d94102e811e4 +2024-07-29 09:41:53.190065 2024-07-29 09:41:53.190076 comef 10038 R rec 160ba285-0b41-4176-886a-67213c692b89 +2024-07-29 09:41:53.276709 2024-07-29 09:41:53.276724 comef 10039 R rec b7c574e2-5a2d-44b2-beb4-ecaef5d4daf9 +2024-07-29 09:41:53.387094 2024-07-29 09:41:53.387106 comef 10040 R rec 6eb660be-6d61-4672-93fa-43670dd57f09 +2024-07-29 09:41:53.48183 2024-07-29 09:41:53.481841 comef 10041 R rec ca274d04-5d30-4434-8d3b-3c722b2d2963 +2024-07-29 09:41:53.581568 2024-07-29 09:41:53.581583 comef 10042 R rec b3174eb5-d9c0-4c17-8e62-b7631dce752e +2024-07-29 09:41:53.691599 2024-07-29 09:41:53.691616 comef 10043 R rec 35cb99ed-188c-4f57-b4b4-c4105624013b +2024-07-29 09:41:53.790864 2024-07-29 09:41:53.790875 comef 10044 R rec fb40f53a-72af-4f71-80f7-ba490201741b +2024-07-29 09:41:53.897045 2024-07-29 09:41:53.897058 comef 10045 R rec af9c6106-6046-4494-8ede-f29a50cf9a44 +2024-07-29 09:41:53.998601 2024-07-29 09:41:53.998607 comef 10046 R rec 9bd3d205-dad7-4101-b0fb-112c2a73fa3e +2024-07-29 09:41:54.057985 2024-07-29 09:41:54.057996 comef 10047 R rec 6fcb729c-2c77-4c46-900d-8ed978374732 +2024-07-29 09:41:54.137544 2024-07-29 09:41:54.137558 comef 10048 R rec 522e6beb-80d7-4fc1-a246-79f32af34880 +2024-07-29 09:41:54.236628 2024-07-29 09:41:54.236639 comef 10049 R rec 5a39011a-60fe-4bbb-b8ae-099107ea8410 +2024-07-29 09:41:54.347297 2024-07-29 09:41:54.347311 comef 10050 R rec 9622eabd-6a7c-46cb-80de-8ed025176f2b +2024-07-29 09:41:54.453157 2024-07-29 09:41:54.453169 comef 10051 R rec 1d4e50a9-b81b-4cd1-b04e-e2e68735a956 +2024-07-29 09:41:54.55442 2024-07-29 09:41:54.554435 comef 10052 R rec a4afa81f-ad4f-4037-93d7-dc1e23d96b1b +2024-07-29 09:41:54.659112 2024-07-29 09:41:54.659124 comef 10053 R rec 3999b8e5-0810-4be0-9902-064d846317d8 +2024-07-29 09:41:54.760411 2024-07-29 09:41:54.760422 comef 10054 R rec 1c2741ea-93a1-4ed9-90e4-ddb1f62069f7 +2024-07-29 09:41:54.845552 2024-07-29 09:41:54.845566 comef 10055 R rec 848a38b2-6bd3-4b4f-9fa7-22312b92782f +2024-07-29 09:41:54.940622 2024-07-29 09:41:54.940633 comef 10056 R rec 89994dd8-3783-4282-a7fe-dee9af685c6d +2024-07-29 09:41:55.030772 2024-07-29 09:41:55.030778 comef 10057 R rec e921f451-fa8b-4f52-b90f-1cefea764621 +2024-07-29 09:41:55.105261 2024-07-29 09:41:55.105273 comef 10058 R rec 4230b4cc-efcd-4ea3-9613-55c6ad4319a7 +2024-07-29 09:41:55.189502 2024-07-29 09:41:55.189515 comef 10059 R rec 98993b05-190b-4242-a6dc-5c0fc0fe7f80 +2024-07-29 09:41:55.289621 2024-07-29 09:41:55.289634 comef 10060 R rec b958be1b-fb3f-4241-a2f4-2f72f4081a19 +2024-07-29 09:41:55.39576 2024-07-29 09:41:55.395776 comef 10061 R rec e317d9f4-f41d-490e-9f11-2daf5a2dbc0a +2024-07-29 09:41:55.508219 2024-07-29 09:41:55.508229 comef 10062 R rec 022be871-c569-4e52-8c26-bbef85ed28dc +2024-07-29 09:41:55.613437 2024-07-29 09:41:55.613452 comef 10063 R rec 72d9dbbc-62cd-4145-b9b9-4f3da2a16ebc +2024-07-29 09:41:55.728161 2024-07-29 09:41:55.728174 comef 10064 R rec 84613181-9a37-4f57-aae1-803b271ea55f +2024-07-29 09:41:55.829922 2024-07-29 09:41:55.829937 comef 10065 R rec f3bb9ab8-7543-4982-a98a-348ba00339fa +2024-07-29 09:41:55.940111 2024-07-29 09:41:55.940124 comef 10066 R rec 84d55521-8875-49f9-93cf-8cf31e3df5ec +2024-07-29 09:41:56.042861 2024-07-29 09:41:56.042874 comef 10067 R rec fd47d98e-f3cc-45e6-974d-c1038577bbb4 +2024-07-29 09:41:56.116905 2024-07-29 09:41:56.116917 comef 10068 R rec ce3392c8-0018-4e45-a11f-b0f863cac7f2 +2024-07-29 09:41:56.215368 2024-07-29 09:41:56.215384 comef 10069 R rec 66982d36-f329-463f-a925-c45fd15d9b49 +2024-07-29 09:41:56.310389 2024-07-29 09:41:56.3104 comef 10070 R rec 1b12a779-350f-44f5-bef9-5477edf912a7 +2024-07-29 09:41:56.401417 2024-07-29 09:41:56.401428 comef 10071 R rec dd98cbcf-3e8d-442d-a753-826dc9dce4dc +2024-07-29 09:41:56.480625 2024-07-29 09:41:56.480637 comef 10072 R rec 8b3a68f6-18fa-4526-ae8a-ab8349dce974 +2024-07-29 09:41:56.579588 2024-07-29 09:41:56.579603 comef 10073 R rec 7f429474-d141-4d86-9f8c-75dc367ba1e2 +2024-07-29 09:41:56.673009 2024-07-29 09:41:56.673021 comef 10074 R rec 1134759d-bc18-400a-a3f4-84b9871502ae +2024-07-29 09:41:56.779 2024-07-29 09:41:56.779016 comef 10075 R rec 1bee804d-4bd3-4b2b-9e88-cdcf262b9072 +2024-07-29 09:41:56.900372 2024-07-29 09:41:56.900383 comef 10076 R rec c9572690-89b1-495d-ac8c-16075263fc14 +2024-07-29 09:41:56.984735 2024-07-29 09:41:56.984745 comef 10077 R rec 6acb0aa2-3ccd-46de-9190-944de304d9d8 +2024-07-29 09:41:57.058715 2024-07-29 09:41:57.058726 comef 10078 R rec 526ae7bb-33af-431f-901f-649d24ae2fa4 +2024-07-29 09:41:57.122964 2024-07-29 09:41:57.122969 comef 10079 R rec 1cc22f7c-e36e-40e1-8ca5-bf2c410b8e1a +2024-07-29 09:41:57.19155 2024-07-29 09:41:57.191562 comef 10080 R rec 595a9296-f25c-414b-b1e9-be97a56b9f36 +2024-07-29 09:41:57.262314 2024-07-29 09:41:57.262326 comef 10081 R rec cc0b45d6-38d4-4b0f-a9d5-3e5807aa8c75 +2024-07-29 09:41:57.358584 2024-07-29 09:41:57.358597 comef 10082 R rec e3aa9b6b-ef0f-4456-a98b-dba926e56605 +2024-07-29 09:41:57.455237 2024-07-29 09:41:57.455248 comef 10083 R rec 81235688-0829-427f-ad30-5ed6f5675d95 +2024-07-29 09:41:57.544915 2024-07-29 09:41:57.544925 comef 10084 R rec b029dc6f-94e6-476f-b6e1-1ffcde5de63d +2024-07-29 09:41:57.636961 2024-07-29 09:41:57.636973 comef 10085 R rec b1a709aa-9f9c-4789-a7ae-84f025ef5bc4 +2024-07-29 09:41:57.725293 2024-07-29 09:41:57.725306 comef 10086 R rec fda3281e-58bd-4f12-a27f-59de2b48f6d3 +2024-07-29 09:41:57.821285 2024-07-29 09:41:57.821301 comef 10087 R rec f370a6e9-bb68-49cf-932e-f7bdaee3ecc1 +2024-07-29 09:41:57.91497 2024-07-29 09:41:57.914983 comef 10088 R rec 1e061967-ec20-4b55-891c-eede5ece3094 +2024-07-29 09:41:58.0209 2024-07-29 09:41:58.020911 comef 10089 R rec 90147662-3ec9-4f00-9f71-4856b7b2d9e2 +2024-07-29 09:41:58.118613 2024-07-29 09:41:58.118625 comef 10090 R rec dac4e281-c815-4e5f-abec-448c536277e9 +2024-07-29 09:41:58.176359 2024-07-29 09:41:58.176369 comef 10091 R rec 339ff2d6-aae0-442c-9e78-65ae0047a877 +2024-07-29 09:41:58.256592 2024-07-29 09:41:58.256606 comef 10092 R rec b4eb430c-96d6-4065-bea6-294a7661cec5 +2024-07-29 09:41:58.342433 2024-07-29 09:41:58.342444 comef 10093 R rec e3296739-50de-4505-a10d-289aea28c349 +2024-07-29 09:41:58.435937 2024-07-29 09:41:58.435952 comef 10094 R rec e2163e27-bdf9-48ea-b97b-e2ee2efb87f5 +2024-07-29 09:41:58.526645 2024-07-29 09:41:58.526657 comef 10095 R rec fd0d639e-254a-4710-bf98-adf42bc3de6d +2024-07-29 09:41:58.632813 2024-07-29 09:41:58.63283 comef 10096 R rec f9ca82cc-9071-4cde-8886-6100d8b7e147 +2024-07-29 09:41:58.731394 2024-07-29 09:41:58.731407 comef 10097 R rec e5f73fa1-101a-4ab2-a08a-36989085e29f +2024-07-29 09:41:58.840726 2024-07-29 09:41:58.840742 comef 10098 R rec 57d125a1-4e9f-45cc-9f9f-911bcf6259cb +2024-07-29 09:41:58.941161 2024-07-29 09:41:58.941171 comef 10099 R rec 527665ff-ab23-41d9-a839-6bd1f6f59a8c +2024-07-29 09:41:59.046096 2024-07-29 09:41:59.046108 comef 10100 R rec f1096d97-3dfe-4e4f-bffe-7d825b175ac9 +2024-07-29 09:41:59.143925 2024-07-29 09:41:59.143936 comef 10101 R rec 811391c4-9b47-428e-9969-4db4984c8f69 +2024-07-29 09:41:59.208335 2024-07-29 09:41:59.208344 comef 10102 R rec 232e5279-5ec3-4571-b846-c7f5f2c3a77b +2024-07-29 09:41:59.297762 2024-07-29 09:41:59.297772 comef 10103 R rec 3c16d67e-a6f5-4093-b475-e60a503fb96a +2024-07-29 09:41:59.395263 2024-07-29 09:41:59.395274 comef 10104 R rec ef91bee4-a6d0-4d3d-a423-8b5a2f7c248f +2024-07-29 09:41:59.474325 2024-07-29 09:41:59.474335 comef 10105 R rec e1a8e92c-e608-4dcf-905b-58a2e3a53c27 +2024-07-29 09:41:59.566034 2024-07-29 09:41:59.566045 comef 10106 R rec 2688cbec-b773-4073-92fd-7371dbcd3909 +2024-07-29 09:41:59.645466 2024-07-29 09:41:59.645478 comef 10107 R rec 46f33f42-1aac-45c2-8262-28399ffae3e8 +2024-07-29 09:41:59.740986 2024-07-29 09:41:59.740998 comef 10108 R rec 0d2a0d7d-7857-4210-8e6b-2d8294e08efd +2024-07-29 09:41:59.842424 2024-07-29 09:41:59.842435 comef 10109 R rec 156bdf94-681a-4f49-9666-eb3188a6e3fa +2024-07-29 09:41:59.938241 2024-07-29 09:41:59.938251 comef 10110 R rec 04dcffd1-0d7a-4bb1-98cd-837ba3dd9c54 +2024-07-29 09:42:00.046601 2024-07-29 09:42:00.046607 comef 10111 R rec 2e3822d9-dd1a-4370-8652-d9ffb8119469 +2024-07-29 09:42:00.142589 2024-07-29 09:42:00.142594 comef 10112 R rec e7352cb7-a99b-48e8-9ae6-0f96db4fa5a7 +2024-07-29 09:42:00.2142 2024-07-29 09:42:00.21421 comef 10113 R rec ccaf4ed7-6631-4d77-b399-84ff57f373d2 +2024-07-29 09:42:00.300616 2024-07-29 09:42:00.30062 comef 10114 R rec 890eda27-2f95-429b-9e20-592c5ac289be +2024-07-29 09:42:00.406335 2024-07-29 09:42:00.406347 comef 10115 R rec c05ee284-9278-4a89-a146-cfe343ac73da +2024-07-29 09:42:00.513277 2024-07-29 09:42:00.513287 comef 10116 R rec 330b21ed-027e-4e0a-a48a-cf8c1dee0fe7 +2024-07-29 09:42:00.600592 2024-07-29 09:42:00.600603 comef 10117 R rec 4e02a56d-6ff0-4a4e-b46e-f070fa1ae98e +2024-07-29 09:42:00.681091 2024-07-29 09:42:00.681101 comef 10118 R rec fa7e7280-59b8-4370-97e9-1160c3d83a89 +2024-07-29 09:42:00.763283 2024-07-29 09:42:00.763292 comef 10119 R rec 808e3397-fabf-4069-835b-eb492ecde0a1 +2024-07-29 09:42:00.843423 2024-07-29 09:42:00.843435 comef 10120 R rec 208792dc-72e6-4c45-91c6-a418f8b3d109 +2024-07-29 09:42:00.930843 2024-07-29 09:42:00.930852 comef 10121 R rec 40f8cfda-0dd8-47d4-822c-aaf1d08fe413 +2024-07-29 09:42:01.010921 2024-07-29 09:42:01.01093 comef 10122 R rec 0e341490-ce56-40f6-9370-841d519f0c3b +2024-07-29 09:42:01.092945 2024-07-29 09:42:01.09319 comef 10123 R rec aee4312f-e605-4cc2-8b24-d0116bf8a392 +2024-07-29 09:42:01.217771 2024-07-29 09:42:01.217777 comef 10124 R rec 251ff56b-6985-4247-8972-72e687762c5d +2024-07-29 09:42:01.293793 2024-07-29 09:42:01.293803 comef 10125 R rec 7ec71ecb-cc26-4a78-bfe3-935727a8c3a0 +2024-07-29 09:42:01.38761 2024-07-29 09:42:01.387621 comef 10126 R rec 64da92df-c62d-4647-aab6-3e1ab50f8f55 +2024-07-29 09:42:01.46402 2024-07-29 09:42:01.46403 comef 10127 R rec f6e850dd-f23c-42ed-a4af-f25a284a953b +2024-07-29 09:42:01.539327 2024-07-29 09:42:01.539339 comef 10128 R rec 847604d8-988d-405c-a201-75a93fc58a8d +2024-07-29 09:42:01.618115 2024-07-29 09:42:01.618127 comef 10129 R rec 6afc263c-9a70-41e0-8362-9dc7a3aa87fe +2024-07-29 09:42:01.698202 2024-07-29 09:42:01.698211 comef 10130 R rec 984029fd-b161-4af6-9e7a-dad8e2c4ed36 +2024-07-29 09:42:01.776964 2024-07-29 09:42:01.776973 comef 10131 R rec acf05bdd-e577-4cc9-bfa5-1f1872987d96 +2024-07-29 09:42:01.855318 2024-07-29 09:42:01.855329 comef 10132 R rec 487e34c7-ae90-4027-90a7-9cfa1e4ca7c4 +2024-07-29 09:42:01.939687 2024-07-29 09:42:01.939698 comef 10133 R rec 797b417e-817a-48b2-b6ae-7e453b32db03 +2024-07-29 09:42:02.018559 2024-07-29 09:42:02.018569 comef 10134 R rec 4dc07534-e9e3-4328-b372-0e6e5ed54443 +2024-07-29 09:42:02.089276 2024-07-29 09:42:02.089285 comef 10135 R rec f4e2e98c-ad2d-45c6-ae9d-085d5e0c61d1 +2024-07-29 09:42:02.209164 2024-07-29 09:42:02.209174 comef 10136 R rec ecd1d47f-9c8e-4b9c-8e0e-26ed8ae3d5cc +2024-07-29 09:42:02.27784 2024-07-29 09:42:02.277848 comef 10137 R rec e2966153-1dd4-4906-b9cb-5d5709e90398 +2024-07-29 09:42:02.352441 2024-07-29 09:42:02.35245 comef 10138 R rec 951acd99-ce3d-4d2e-b984-6eb78e186607 +2024-07-29 09:42:02.422938 2024-07-29 09:42:02.422947 comef 10139 R rec 1a7b836e-4cae-4835-a635-d6749ff470bb +2024-07-29 09:42:02.489817 2024-07-29 09:42:02.489827 comef 10140 R rec a3d1a86f-a1ef-400e-90e6-b7492d31dc92 +2024-07-29 09:42:02.565567 2024-07-29 09:42:02.565576 comef 10141 R rec 99506bad-0e73-4609-8b75-135df0fa0a4b +2024-07-29 09:42:02.639564 2024-07-29 09:42:02.639573 comef 10142 R rec a5026c50-8359-4f90-993b-d9ff90e0337e +2024-07-29 09:42:02.710144 2024-07-29 09:42:02.710155 comef 10143 R rec ee7e6ebe-5032-494c-a1e2-fd94bdafdfa2 +2024-07-29 09:42:02.785378 2024-07-29 09:42:02.785387 comef 10144 R rec ce286e66-4fea-4547-809a-339366b7632d +2024-07-29 09:42:02.84947 2024-07-29 09:42:02.849479 comef 10145 R rec bbe0a1ad-382c-4d63-bcb0-0d3c6ac4fd43 +2024-07-29 09:42:02.919406 2024-07-29 09:42:02.919415 comef 10146 R rec 98a55874-b56e-444a-a7c8-ba04838112fb +2024-07-29 09:42:02.986824 2024-07-29 09:42:02.986833 comef 10147 R rec f76a4b84-0fb8-4109-8bbc-add4165482bf +2024-07-29 09:42:03.055848 2024-07-29 09:42:03.055856 comef 10148 R rec 16da4e8b-0d01-4108-acb7-2926cb39c786 +2024-07-29 09:42:03.131391 2024-07-29 09:42:03.1314 comef 10149 R rec ae1a393c-b365-493d-8997-efe60dbf56d6 +2024-07-29 09:42:03.196758 2024-07-29 09:42:03.196766 comef 10150 R rec ac01b536-d3c4-4139-933f-0870a4b12bb8 +2024-07-29 09:42:03.260294 2024-07-29 09:42:03.260302 comef 10151 R rec 1d7c6dfe-b19d-4871-90f6-1700ba75a773 +2024-07-29 09:42:03.321367 2024-07-29 09:42:03.321375 comef 10152 R rec 0aea8771-ef0e-4f76-8bb4-d8734eb5618a +2024-07-29 09:42:03.394956 2024-07-29 09:42:03.394966 comef 10153 R rec 86c2d021-1e1a-405e-9a5d-5d968a8f92a2 +2024-07-29 09:42:03.459261 2024-07-29 09:42:03.45927 comef 10154 R rec b6b2483f-2ade-4298-926c-58f5da31e8c0 +2024-07-29 09:42:03.527427 2024-07-29 09:42:03.527435 comef 10155 R rec 7cb19fc9-4abd-4ac3-a21e-b244fdb4a25a +2024-07-29 09:42:03.594109 2024-07-29 09:42:03.594118 comef 10156 R rec 6fc03a3f-f785-4ab4-b491-a015b551d24b +2024-07-29 09:42:03.661234 2024-07-29 09:42:03.661243 comef 10157 R rec 5b3122dc-5ed6-4ed2-a44e-48e513408409 +2024-07-29 09:42:03.724541 2024-07-29 09:42:03.724549 comef 10158 R rec 102507fa-1dbe-43f0-9322-6d0306839cca +2024-07-29 09:42:03.79203 2024-07-29 09:42:03.792039 comef 10159 R rec a7e9f40e-22c4-4f71-9002-bb606e1ceb70 +2024-07-29 09:42:03.859952 2024-07-29 09:42:03.85996 comef 10160 R rec 1177b048-1b35-4ac2-a2f7-6bfec7728954 +2024-07-29 09:42:03.927177 2024-07-29 09:42:03.927185 comef 10161 R rec 9692e13b-f4a0-4d1a-a6f4-d28f18300377 +2024-07-29 09:42:03.998016 2024-07-29 09:42:03.998024 comef 10162 R rec 3f2be214-3d7b-4af1-93c2-9d4ba3ad6855 +2024-07-29 09:42:04.067151 2024-07-29 09:42:04.06716 comef 10163 R rec ad536bf7-872a-4ebd-aebb-00aa31bcdb0a +2024-07-29 09:42:04.13849 2024-07-29 09:42:04.138499 comef 10164 R rec f79fd093-c88d-48b7-ac8f-bd9b6101a76d +2024-07-29 09:42:04.201219 2024-07-29 09:42:04.201228 comef 10165 R rec 4cd99c41-9bb5-440d-80e6-538028a3d49f +2024-07-29 09:42:04.278542 2024-07-29 09:42:04.278551 comef 10166 R rec 86e6ad64-50ee-42e1-931a-7ea2b5f9443e +2024-07-29 09:42:04.352073 2024-07-29 09:42:04.352082 comef 10167 R rec 9459e70b-90b9-4783-8a7e-37801ddf9a1f +2024-07-29 09:42:04.418407 2024-07-29 09:42:04.418416 comef 10168 R rec 7319fb3f-499a-4bcc-9848-9b0b4c4850b8 +2024-07-29 09:42:04.477018 2024-07-29 09:42:04.477027 comef 10169 R rec 3d35f0c9-282e-4743-9ee0-ac3cc18cec88 +2024-07-29 09:42:04.549983 2024-07-29 09:42:04.549991 comef 10170 R rec 0141e997-1862-435e-8b67-7c5ac74761bd +2024-07-29 09:42:04.623612 2024-07-29 09:42:04.623621 comef 10171 R rec f7ae6951-891c-4acd-9c44-3b8bd6c94308 +2024-07-29 09:42:04.700792 2024-07-29 09:42:04.700802 comef 10172 R rec b86b4e14-d1a4-4c2b-8b79-a5cfcb0930ea +2024-07-29 09:42:04.789894 2024-07-29 09:42:04.789909 comef 10173 R rec a4aae25b-be7f-4208-b4e6-a1cf0bdbb7a4 +2024-07-29 09:42:04.889753 2024-07-29 09:42:04.889764 comef 10174 R rec 978c1622-d412-4119-8be1-0a515e8f1d3a +2024-07-29 09:42:04.969083 2024-07-29 09:42:04.969091 comef 10175 R rec 61086c65-4f7b-4d91-ac88-2de5bd66bd42 +2024-07-29 09:42:05.062673 2024-07-29 09:42:05.062686 comef 10176 R rec 6578e269-f74e-4cbb-838e-140cf266696b +2024-07-29 09:42:05.152193 2024-07-29 09:42:05.152208 comef 10177 R rec 5d065fab-f215-48e7-b00f-c0e346e3c806 +2024-07-29 09:42:05.248676 2024-07-29 09:42:05.248689 comef 10178 R rec f1e19cc9-42a4-417e-8f1b-43138ef95f7d +2024-07-29 09:42:05.340786 2024-07-29 09:42:05.340792 comef 10179 R rec 26045861-de2a-43b2-b9d0-be550f0e1c9b +2024-07-29 09:42:05.422796 2024-07-29 09:42:05.422808 comef 10180 R rec 13239c86-b33a-4a99-b5f8-10b608ee1552 +2024-07-29 09:42:05.509448 2024-07-29 09:42:05.50946 comef 10181 R rec 86a04760-08b6-4734-b8c3-b9cb81a7f6ae +2024-07-29 09:42:05.598461 2024-07-29 09:42:05.598476 comef 10182 R rec 725c4146-bab2-4433-b45d-2e2ec9c163a8 +2024-07-29 09:42:05.692746 2024-07-29 09:42:05.692761 comef 10183 R rec cd131e71-8656-4153-913d-d6b706bf3d3f +2024-07-29 09:42:05.787887 2024-07-29 09:42:05.787903 comef 10184 R rec 202407f3-db81-4eaa-a428-9fde1201f45e +2024-07-29 09:42:05.897926 2024-07-29 09:42:05.897932 comef 10185 R rec 8ccb21a1-531c-42de-a29b-eb42cb20d533 +2024-07-29 09:42:05.976577 2024-07-29 09:42:05.976588 comef 10186 R rec 92f8b669-8163-410e-a646-4cb27225fb3b +2024-07-29 09:42:06.065733 2024-07-29 09:42:06.065748 comef 10187 R rec 683a2bac-43d4-4052-9a89-80ac9cbd4d72 +2024-07-29 09:42:06.160675 2024-07-29 09:42:06.16069 comef 10188 R rec d1673773-ed58-453b-bfc1-9696773592a6 +2024-07-29 09:42:06.254591 2024-07-29 09:42:06.254607 comef 10189 R rec 6c39b99c-39cd-445a-8003-920a30c4b820 +2024-07-29 09:42:06.343534 2024-07-29 09:42:06.34354 comef 10190 R rec 82705657-1db4-447b-bad2-5bed74035d3f +2024-07-29 09:42:06.403846 2024-07-29 09:42:06.403859 comef 10191 R rec df3cb978-e390-4930-9e23-6676ecfabd03 +2024-07-29 09:42:06.480749 2024-07-29 09:42:06.48076 comef 10192 R rec 90a23df5-55b0-49ab-ac0d-35137379d6d7 +2024-07-29 09:42:06.561847 2024-07-29 09:42:06.561858 comef 10193 R rec 0c69b113-5455-410c-94d4-39fb083fd9fd +2024-07-29 09:42:06.640348 2024-07-29 09:42:06.640359 comef 10194 R rec 321330f7-646e-4339-9236-9f3419054525 +2024-07-29 09:42:06.728194 2024-07-29 09:42:06.728207 comef 10195 R rec d3ef1553-82f3-412b-9f5a-76ab135fa08d +2024-07-29 09:42:06.820161 2024-07-29 09:42:06.820177 comef 10196 R rec f7c5d248-63a1-4c81-a731-549f2b3e99f6 +2024-07-29 09:42:06.91292 2024-07-29 09:42:06.912931 comef 10197 R rec ef521ad4-c980-4505-bee7-1362445f7c41 +2024-07-29 09:42:07.002939 2024-07-29 09:42:07.002949 comef 10198 R rec dbae54f3-b998-4974-955b-b33d56a440e0 +2024-07-29 09:42:07.091696 2024-07-29 09:42:07.091708 comef 10199 R rec 2f3f8a48-4475-472c-9f26-36d3df7b550e +2024-07-29 09:42:07.190108 2024-07-29 09:42:07.190123 comef 10200 R rec b22ee2bd-e00d-405f-8ff3-86fc27ac76ae +2024-07-29 09:42:07.291711 2024-07-29 09:42:07.291728 comef 10201 R rec 1746b90d-ca99-41d8-9c50-970ab4ae6734 +2024-07-29 09:42:07.422228 2024-07-29 09:42:07.422238 comef 10202 R rec a9109a00-586b-421d-8251-b88517e0db6d +2024-07-29 09:42:07.511585 2024-07-29 09:42:07.511596 comef 10203 R rec 28705028-8421-424d-8669-f6a868b8a64e +2024-07-29 09:42:07.59204 2024-07-29 09:42:07.592052 comef 10204 R rec 6cbe333f-e197-4f52-a3c7-ee996278babc +2024-07-29 09:42:07.675271 2024-07-29 09:42:07.675281 comef 10205 R rec 2dca3c02-6560-48d8-ace7-a9fcd2846f9e +2024-07-29 09:42:07.761987 2024-07-29 09:42:07.762002 comef 10206 R rec 2313b642-3047-493d-8203-d728a2aef0fd +2024-07-29 09:42:07.856739 2024-07-29 09:42:07.856748 comef 10207 R rec 8212f848-705d-4a6d-81fa-f3f851961507 +2024-07-29 09:42:07.94911 2024-07-29 09:42:07.949123 comef 10208 R rec bc34d6fd-7338-4b7e-9967-5e7a03ad336c +2024-07-29 09:42:08.038682 2024-07-29 09:42:08.038693 comef 10209 R rec c6532c61-980f-46e9-a6b0-2bdaecd1de5f +2024-07-29 09:42:08.132982 2024-07-29 09:42:08.132997 comef 10210 R rec afc44c18-0a2b-4be6-864c-d0dba22d73df +2024-07-29 09:42:08.222773 2024-07-29 09:42:08.222789 comef 10211 R rec a17f2a23-3672-4098-b8e7-c2d55b16d834 +2024-07-29 09:42:08.313176 2024-07-29 09:42:08.313191 comef 10212 R rec 6d5cc071-c00b-4586-9df5-bf939fff2b14 +2024-07-29 09:42:08.394316 2024-07-29 09:42:08.394322 comef 10213 R rec adc22423-24ab-44fb-84fa-0a9f72687771 +2024-07-29 09:42:08.450188 2024-07-29 09:42:08.450199 comef 10214 R rec de9b0d70-f2ff-40fc-9a3f-378ad99ee877 diff --git a/data/mef_id.csv b/data/mef_id.csv index e4a5e296..65c4a0f1 100644 --- a/data/mef_id.csv +++ b/data/mef_id.csv @@ -8798,3 +8798,1714 @@ 8798 8799 8800 +8801 +8802 +8803 +8804 +8805 +8806 +8807 +8808 +8809 +8810 +8811 +8812 +8813 +8814 +8815 +8816 +8817 +8818 +8819 +8820 +8821 +8822 +8823 +8824 +8825 +8826 +8827 +8828 +8829 +8830 +8831 +8832 +8833 +8834 +8835 +8836 +8837 +8838 +8839 +8840 +8841 +8842 +8843 +8844 +8845 +8846 +8847 +8848 +8849 +8850 +8851 +8852 +8853 +8854 +8855 +8856 +8857 +8858 +8859 +8860 +8861 +8862 +8863 +8864 +8865 +8866 +8867 +8868 +8869 +8870 +8871 +8872 +8873 +8874 +8875 +8876 +8877 +8878 +8879 +8880 +8881 +8882 +8883 +8884 +8885 +8886 +8887 +8888 +8889 +8890 +8891 +8892 +8893 +8894 +8895 +8896 +8897 +8898 +8899 +8900 +8901 +8902 +8903 +8904 +8905 +8906 +8907 +8908 +8909 +8910 +8911 +8912 +8913 +8914 +8915 +8916 +8917 +8918 +8919 +8920 +8921 +8922 +8923 +8924 +8925 +8926 +8927 +8928 +8929 +8930 +8931 +8932 +8933 +8934 +8935 +8936 +8937 +8938 +8939 +8940 +8941 +8942 +8943 +8944 +8945 +8946 +8947 +8948 +8949 +8950 +8951 +8952 +8953 +8954 +8955 +8956 +8957 +8958 +8959 +8960 +8961 +8962 +8963 +8964 +8965 +8966 +8967 +8968 +8969 +8970 +8971 +8972 +8973 +8974 +8975 +8976 +8977 +8978 +8979 +8980 +8981 +8982 +8983 +8984 +8985 +8986 +8987 +8988 +8989 +8990 +8991 +8992 +8993 +8994 +8995 +8996 +8997 +8998 +8999 +9000 +9001 +9002 +9003 +9004 +9005 +9006 +9007 +9008 +9009 +9010 +9011 +9012 +9013 +9014 +9015 +9016 +9017 +9018 +9019 +9020 +9021 +9022 +9023 +9024 +9025 +9026 +9027 +9028 +9029 +9030 +9031 +9032 +9033 +9034 +9035 +9036 +9037 +9038 +9039 +9040 +9041 +9042 +9043 +9044 +9045 +9046 +9047 +9048 +9049 +9050 +9051 +9052 +9053 +9054 +9055 +9056 +9057 +9058 +9059 +9060 +9061 +9062 +9063 +9064 +9065 +9066 +9067 +9068 +9069 +9070 +9071 +9072 +9073 +9074 +9075 +9076 +9077 +9078 +9079 +9080 +9081 +9082 +9083 +9084 +9085 +9086 +9087 +9088 +9089 +9090 +9091 +9092 +9093 +9094 +9095 +9096 +9097 +9098 +9099 +9100 +9101 +9102 +9103 +9104 +9105 +9106 +9107 +9108 +9109 +9110 +9111 +9112 +9113 +9114 +9115 +9116 +9117 +9118 +9119 +9120 +9121 +9122 +9123 +9124 +9125 +9126 +9127 +9128 +9129 +9130 +9131 +9132 +9133 +9134 +9135 +9136 +9137 +9138 +9139 +9140 +9141 +9142 +9143 +9144 +9145 +9146 +9147 +9148 +9149 +9150 +9151 +9152 +9153 +9154 +9155 +9156 +9157 +9158 +9159 +9160 +9161 +9162 +9163 +9164 +9165 +9166 +9167 +9168 +9169 +9170 +9171 +9172 +9173 +9174 +9175 +9176 +9177 +9178 +9179 +9180 +9181 +9182 +9183 +9184 +9185 +9186 +9187 +9188 +9189 +9190 +9191 +9192 +9193 +9194 +9195 +9196 +9197 +9198 +9199 +9200 +9201 +9202 +9203 +9204 +9205 +9206 +9207 +9208 +9209 +9210 +9211 +9212 +9213 +9214 +9215 +9216 +9217 +9218 +9219 +9220 +9221 +9222 +9223 +9224 +9225 +9226 +9227 +9228 +9229 +9230 +9231 +9232 +9233 +9234 +9235 +9236 +9237 +9238 +9239 +9240 +9241 +9242 +9243 +9244 +9245 +9246 +9247 +9248 +9249 +9250 +9251 +9252 +9253 +9254 +9255 +9256 +9257 +9258 +9259 +9260 +9261 +9262 +9263 +9264 +9265 +9266 +9267 +9268 +9269 +9270 +9271 +9272 +9273 +9274 +9275 +9276 +9277 +9278 +9279 +9280 +9281 +9282 +9283 +9284 +9285 +9286 +9287 +9288 +9289 +9290 +9291 +9292 +9293 +9294 +9295 +9296 +9297 +9298 +9299 +9300 +9301 +9302 +9303 +9304 +9305 +9306 +9307 +9308 +9309 +9310 +9311 +9312 +9313 +9314 +9315 +9316 +9317 +9318 +9319 +9320 +9321 +9322 +9323 +9324 +9325 +9326 +9327 +9328 +9329 +9330 +9331 +9332 +9333 +9334 +9335 +9336 +9337 +9338 +9339 +9340 +9341 +9342 +9343 +9344 +9345 +9346 +9347 +9348 +9349 +9350 +9351 +9352 +9353 +9354 +9355 +9356 +9357 +9358 +9359 +9360 +9361 +9362 +9363 +9364 +9365 +9366 +9367 +9368 +9369 +9370 +9371 +9372 +9373 +9374 +9375 +9376 +9377 +9378 +9379 +9380 +9381 +9382 +9383 +9384 +9385 +9386 +9387 +9388 +9389 +9390 +9391 +9392 +9393 +9394 +9395 +9396 +9397 +9398 +9399 +9400 +9401 +9402 +9403 +9404 +9405 +9406 +9407 +9408 +9409 +9410 +9411 +9412 +9413 +9414 +9415 +9416 +9417 +9418 +9419 +9420 +9421 +9422 +9423 +9424 +9425 +9426 +9427 +9428 +9429 +9430 +9431 +9432 +9433 +9434 +9435 +9436 +9437 +9438 +9439 +9440 +9441 +9442 +9443 +9444 +9445 +9446 +9447 +9448 +9449 +9450 +9451 +9452 +9453 +9454 +9455 +9456 +9457 +9458 +9459 +9460 +9461 +9462 +9463 +9464 +9465 +9466 +9467 +9468 +9469 +9470 +9471 +9472 +9473 +9474 +9475 +9476 +9477 +9478 +9479 +9480 +9481 +9482 +9483 +9484 +9485 +9486 +9487 +9488 +9489 +9490 +9491 +9492 +9493 +9494 +9495 +9496 +9497 +9498 +9499 +9500 +9501 +9502 +9503 +9504 +9505 +9506 +9507 +9508 +9509 +9510 +9511 +9512 +9513 +9514 +9515 +9516 +9517 +9518 +9519 +9520 +9521 +9522 +9523 +9524 +9525 +9526 +9527 +9528 +9529 +9530 +9531 +9532 +9533 +9534 +9535 +9536 +9537 +9538 +9539 +9540 +9541 +9542 +9543 +9544 +9545 +9546 +9547 +9548 +9549 +9550 +9551 +9552 +9553 +9554 +9555 +9556 +9557 +9558 +9559 +9560 +9561 +9562 +9563 +9564 +9565 +9566 +9567 +9568 +9569 +9570 +9571 +9572 +9573 +9574 +9575 +9576 +9577 +9578 +9579 +9580 +9581 +9582 +9583 +9584 +9585 +9586 +9587 +9588 +9589 +9590 +9591 +9592 +9593 +9594 +9595 +9596 +9597 +9598 +9599 +9600 +9601 +9602 +9603 +9604 +9605 +9606 +9607 +9608 +9609 +9610 +9611 +9612 +9613 +9614 +9615 +9616 +9617 +9618 +9619 +9620 +9621 +9622 +9623 +9624 +9625 +9626 +9627 +9628 +9629 +9630 +9631 +9632 +9633 +9634 +9635 +9636 +9637 +9638 +9639 +9640 +9641 +9642 +9643 +9644 +9645 +9646 +9647 +9648 +9649 +9650 +9651 +9652 +9653 +9654 +9655 +9656 +9657 +9658 +9659 +9660 +9661 +9662 +9663 +9664 +9665 +9666 +9667 +9668 +9669 +9670 +9671 +9672 +9673 +9674 +9675 +9676 +9677 +9678 +9679 +9680 +9681 +9682 +9683 +9684 +9685 +9686 +9687 +9688 +9689 +9690 +9691 +9692 +9693 +9694 +9695 +9696 +9697 +9698 +9699 +9700 +9701 +9702 +9703 +9704 +9705 +9706 +9707 +9708 +9709 +9710 +9711 +9712 +9713 +9714 +9715 +9716 +9717 +9718 +9719 +9720 +9721 +9722 +9723 +9724 +9725 +9726 +9727 +9728 +9729 +9730 +9731 +9732 +9733 +9734 +9735 +9736 +9737 +9738 +9739 +9740 +9741 +9742 +9743 +9744 +9745 +9746 +9747 +9748 +9749 +9750 +9751 +9752 +9753 +9754 +9755 +9756 +9757 +9758 +9759 +9760 +9761 +9762 +9763 +9764 +9765 +9766 +9767 +9768 +9769 +9770 +9771 +9772 +9773 +9774 +9775 +9776 +9777 +9778 +9779 +9780 +9781 +9782 +9783 +9784 +9785 +9786 +9787 +9788 +9789 +9790 +9791 +9792 +9793 +9794 +9795 +9796 +9797 +9798 +9799 +9800 +9801 +9802 +9803 +9804 +9805 +9806 +9807 +9808 +9809 +9810 +9811 +9812 +9813 +9814 +9815 +9816 +9817 +9818 +9819 +9820 +9821 +9822 +9823 +9824 +9825 +9826 +9827 +9828 +9829 +9830 +9831 +9832 +9833 +9834 +9835 +9836 +9837 +9838 +9839 +9840 +9841 +9842 +9843 +9844 +9845 +9846 +9847 +9848 +9849 +9850 +9851 +9852 +9853 +9854 +9855 +9856 +9857 +9858 +9859 +9860 +9861 +9862 +9863 +9864 +9865 +9866 +9867 +9868 +9869 +9870 +9871 +9872 +9873 +9874 +9875 +9876 +9877 +9878 +9879 +9880 +9881 +9882 +9883 +9884 +9885 +9886 +9887 +9888 +9889 +9890 +9891 +9892 +9893 +9894 +9895 +9896 +9897 +9898 +9899 +9900 +9901 +9902 +9903 +9904 +9905 +9906 +9907 +9908 +9909 +9910 +9911 +9912 +9913 +9914 +9915 +9916 +9917 +9918 +9919 +9920 +9921 +9922 +9923 +9924 +9925 +9926 +9927 +9928 +9929 +9930 +9931 +9932 +9933 +9934 +9935 +9936 +9937 +9938 +9939 +9940 +9941 +9942 +9943 +9944 +9945 +9946 +9947 +9948 +9949 +9950 +9951 +9952 +9953 +9954 +9955 +9956 +9957 +9958 +9959 +9960 +9961 +9962 +9963 +9964 +9965 +9966 +9967 +9968 +9969 +9970 +9971 +9972 +9973 +9974 +9975 +9976 +9977 +9978 +9979 +9980 +9981 +9982 +9983 +9984 +9985 +9986 +9987 +9988 +9989 +9990 +9991 +9992 +9993 +9994 +9995 +9996 +9997 +9998 +9999 +10000 +10001 +10002 +10003 +10004 +10005 +10006 +10007 +10008 +10009 +10010 +10011 +10012 +10013 +10014 +10015 +10016 +10017 +10018 +10019 +10020 +10021 +10022 +10023 +10024 +10025 +10026 +10027 +10028 +10029 +10030 +10031 +10032 +10033 +10034 +10035 +10036 +10037 +10038 +10039 +10040 +10041 +10042 +10043 +10044 +10045 +10046 +10047 +10048 +10049 +10050 +10051 +10052 +10053 +10054 +10055 +10056 +10057 +10058 +10059 +10060 +10061 +10062 +10063 +10064 +10065 +10066 +10067 +10068 +10069 +10070 +10071 +10072 +10073 +10074 +10075 +10076 +10077 +10078 +10079 +10080 +10081 +10082 +10083 +10084 +10085 +10086 +10087 +10088 +10089 +10090 +10091 +10092 +10093 +10094 +10095 +10096 +10097 +10098 +10099 +10100 +10101 +10102 +10103 +10104 +10105 +10106 +10107 +10108 +10109 +10110 +10111 +10112 +10113 +10114 +10115 +10116 +10117 +10118 +10119 +10120 +10121 +10122 +10123 +10124 +10125 +10126 +10127 +10128 +10129 +10130 +10131 +10132 +10133 +10134 +10135 +10136 +10137 +10138 +10139 +10140 +10141 +10142 +10143 +10144 +10145 +10146 +10147 +10148 +10149 +10150 +10151 +10152 +10153 +10154 +10155 +10156 +10157 +10158 +10159 +10160 +10161 +10162 +10163 +10164 +10165 +10166 +10167 +10168 +10169 +10170 +10171 +10172 +10173 +10174 +10175 +10176 +10177 +10178 +10179 +10180 +10181 +10182 +10183 +10184 +10185 +10186 +10187 +10188 +10189 +10190 +10191 +10192 +10193 +10194 +10195 +10196 +10197 +10198 +10199 +10200 +10201 +10202 +10203 +10204 +10205 +10206 +10207 +10208 +10209 +10210 +10211 +10212 +10213 +10214 +10215 +10216 +10217 +10218 +10219 +10220 +10221 +10222 +10223 +10224 +10225 +10226 +10227 +10228 +10229 +10230 +10231 +10232 +10233 +10234 +10235 +10236 +10237 +10238 +10239 +10240 +10241 +10242 +10243 +10244 +10245 +10246 +10247 +10248 +10249 +10250 +10251 +10252 +10253 +10254 +10255 +10256 +10257 +10258 +10259 +10260 +10261 +10262 +10263 +10264 +10265 +10266 +10267 +10268 +10269 +10270 +10271 +10272 +10273 +10274 +10275 +10276 +10277 +10278 +10279 +10280 +10281 +10282 +10283 +10284 +10285 +10286 +10287 +10288 +10289 +10290 +10291 +10292 +10293 +10294 +10295 +10296 +10297 +10298 +10299 +10300 +10301 +10302 +10303 +10304 +10305 +10306 +10307 +10308 +10309 +10310 +10311 +10312 +10313 +10314 +10315 +10316 +10317 +10318 +10319 +10320 +10321 +10322 +10323 +10324 +10325 +10326 +10327 +10328 +10329 +10330 +10331 +10332 +10333 +10334 +10335 +10336 +10337 +10338 +10339 +10340 +10341 +10342 +10343 +10344 +10345 +10346 +10347 +10348 +10349 +10350 +10351 +10352 +10353 +10354 +10355 +10356 +10357 +10358 +10359 +10360 +10361 +10362 +10363 +10364 +10365 +10366 +10367 +10368 +10369 +10370 +10371 +10372 +10373 +10374 +10375 +10376 +10377 +10378 +10379 +10380 +10381 +10382 +10383 +10384 +10385 +10386 +10387 +10388 +10389 +10390 +10391 +10392 +10393 +10394 +10395 +10396 +10397 +10398 +10399 +10400 +10401 +10402 +10403 +10404 +10405 +10406 +10407 +10408 +10409 +10410 +10411 +10412 +10413 +10414 +10415 +10416 +10417 +10418 +10419 +10420 +10421 +10422 +10423 +10424 +10425 +10426 +10427 +10428 +10429 +10430 +10431 +10432 +10433 +10434 +10435 +10436 +10437 +10438 +10439 +10440 +10441 +10442 +10443 +10444 +10445 +10446 +10447 +10448 +10449 +10450 +10451 +10452 +10453 +10454 +10455 +10456 +10457 +10458 +10459 +10460 +10461 +10462 +10463 +10464 +10465 +10466 +10467 +10468 +10469 +10470 +10471 +10472 +10473 +10474 +10475 +10476 +10477 +10478 +10479 +10480 +10481 +10482 +10483 +10484 +10485 +10486 +10487 +10488 +10489 +10490 +10491 +10492 +10493 +10494 +10495 +10496 +10497 +10498 +10499 +10500 +10501 +10502 +10503 +10504 +10505 +10506 +10507 +10508 +10509 +10510 +10511 diff --git a/data/oaisources.yml b/data/oaisources.yml index c67a6302..7219421a 100644 --- a/data/oaisources.yml +++ b/data/oaisources.yml @@ -7,32 +7,38 @@ # OAI-PMH connection settings agents.idref: - # http://documentation.abes.fr/aideidrefoai/index.html + # https://documentation.abes.fr/aideidrefoai/index.html baseurl: https://www.idref.fr/OAI/oai.jsp metadataprefix: marc-xml comment: 'idref' setspecs: 'a b' agents.gnd: # https://www.dnb.de/EN/Professionell/Metadatendienste/Datenbezug/OAI/oai_node.html - baseurl: http://services.dnb.de/oai/repository + baseurl: https://services.dnb.de/oai/repository metadataprefix: MARC21-xml comment: 'gnd' setspecs: 'authorities:kongress authorities:koerperschaft authorities:person' concepts.idref: - # http://documentation.abes.fr/aideidrefoai/index.html + # https://documentation.abes.fr/aideidrefoai/index.html baseurl: https://www.idref.fr/OAI/oai.jsp metadataprefix: marc-xml comment: 'idref' setspecs: 'j l' +concepts.gnd: + # https://www.dnb.de/EN/Professionell/Metadatendienste/Datenbezug/OAI/oai_node.html + baseurl: https://services.dnb.de/oai/repository + metadataprefix: MARC21-xml + comment: 'gnd' + setspecs: 'authorities:sachbegriff' places.idref: - # http://documentation.abes.fr/aideidrefoai/index.html + # https://documentation.abes.fr/aideidrefoai/index.html baseurl: https://www.idref.fr/OAI/oai.jsp metadataprefix: marc-xml comment: 'idref' setspecs: 'c' places.gnd: # https://www.dnb.de/EN/Professionell/Metadatendienste/Datenbezug/OAI/oai_node.html - baseurl: http://services.dnb.de/oai/repository + baseurl: https://services.dnb.de/oai/repository metadataprefix: MARC21-xml comment: 'gnd' setspecs: 'authorities:geografikum' \ No newline at end of file diff --git a/data/pidref.json b/data/pidref.json index b085df55..5f732b88 100644 --- a/data/pidref.json +++ b/data/pidref.json @@ -1,82 +1,40 @@ [ { - "md5": "ba6ca6d6e83aba4a80c37ce03d34e610", - "pid": "027218546", - "note": [ - { - "label": [ - "GLU" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Voir aussi aux vedettes commen\u00e7ant par Afrique, par ex. : Afrique anglophone ; Afrique australe", - "Voir aussi la subdivision Et l'Afrique aux collectivit\u00e9s (\u00e0 l'exception des types de collectivit\u00e9s) et aux personnes" - ], - "noteType": "seeReference" - } - ], - "type": "bf:Place", + "authorized_access_point": "Afrique centrale", "bnf_type": "sujet Rameau", - "narrower": [ - { - "authorized_access_point": "Sahel" - }, - { - "authorized_access_point": "Afrique du Nord" - }, - { - "authorized_access_point": "Afrique subsaharienne" - } - ], + "identifier": "http://www.idref.fr/027218562", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027218546", + "value": "http://www.idref.fr/027218562", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119308418", + "value": "http://catalogue.bnf.fr/ark:/12148/cb16272632j", "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040006956", - "source": "GND" - }, - { - "type": "uri", - "value": "https://d-nb.info/gnd/4000695-5", - "source": "GND" + "value": "(DE-101)040794857" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/123310773", - "source": "VIAF" - }, - { - "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Afrique", - "source": "WIKIPEDIA" + "value": "http://viaf.org/viaf/169969170" } ], - "authorized_access_point": "Afrique" - }, - { - "md5": "8258a0f3164682b45ff98e6e8724ce30", - "pid": "027218562", "note": [ { + "noteType": "general", "label": [ "Sous cette vedette on trouve les ouvrages qui traitent de la partie de l'Afrique s'\u00e9tendant du nord du Tchad au sud du Zai\u034f\u0308re et du Cameroun au Rwanda et au Burundi" - ], - "noteType": "general" + ] } ], + "pid": "027218562", "type": "bf:Place", - "bnf_type": "sujet Rameau", "narrower": [ { "authorized_access_point": "Burundi" @@ -115,607 +73,530 @@ "authorized_access_point": "Grands lacs africains (r\u00e9gion)" } ], + "variant_access_point": [ + "Afrique (centre)", + "Afrique \u00e9quatoriale", + "Afrique \u00e9quatoriale francophone" + ], + "md5": "97dd76099c66b973536b627a8d9162de" + }, + { + "authorized_access_point": "Allemagne", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027218856", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027218562", + "value": "http://www.idref.fr/027218856", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb16272632j", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11930867z", "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040794857", - "source": "GND" + "value": "(DE-101)040118827" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/169969170", - "source": "VIAF" + "value": "http://viaf.org/viaf/173418378" } ], - "variant_access_point": [ - "Afrique (centre)", - "Afrique \u00e9quatoriale", - "Afrique \u00e9quatoriale francophone" - ], - "authorized_access_point": "Afrique centrale" - }, - { - "md5": "8565e9a95bd5a93637431392f17ed15c", - "pid": "027218597", "note": [ { + "noteType": "dataSource", "label": [ - "GLU", - "Laval RVM, 1999-01" - ], - "noteType": "dataSource" + "GLU, 1991", + "BN ACO (en ligne), 1997-05-26. Laval RVM, 1997-02. Deutschland ; SWD, 1995-04 ; GKD, 1994-05" + ] }, { + "noteType": "general", "label": [ - "Sous cette vedette, on trouve les documents qui traitent du territoire comprenant le Maroc, la Mauritanie, l'Alg\u00e9rie, la Tunisie et la Libye" - ], - "noteType": "general" + "Sous cette vedette, on trouve les ouvrages qui traitent de l'Allemagne dans son ensemble : pays de langue allemande du Saint-Empire, pays de la Conf\u00e9d\u00e9ration germanique, Empire allemand et R\u00e9publique f\u00e9d\u00e9rale d'Allemagne depuis l'unification du 3 octobre 1990. Les ouvrages sur la RFA de 1949 \u00e0 1990 se trouvent sous la vedette Allemagne (R\u00e9publique f\u00e9d\u00e9rale)", + "Attention : seules les collectivit\u00e9s depuis 1990 sont sous la vedette Allemagne ; les collectivit\u00e9s de la p\u00e9riode 1871 \u00e0 1945 sont sous la vedette Allemagne (1871-1945) ; celles de la p\u00e9riode 1945-1949, sous la vedette Allemagne (Zone sous occupation alli\u00e9e)" + ] }, { + "noteType": "seeReference", "label": [ - "Voir aussi la subdivision Et l'Afrique du Nord aux personnes et collectivit\u00e9s" - ], - "noteType": "seeReference" + "Voir aussi la subdivision Et l'Allemagne aux personnes et collectivit\u00e9s", + "Voir aussi la subdivision R\u00e9clamations contre l'Allemagne aux lieux" + ] } ], + "pid": "027218856", "type": "bf:Place", "broader": [ { - "authorized_access_point": "M\u00e9diterran\u00e9e (r\u00e9gion)" + "authorized_access_point": "Europe centrale" + }, + { + "authorized_access_point": "Pays de l'Union europ\u00e9enne" }, { - "authorized_access_point": "Pays arabes" + "authorized_access_point": "Pays de langue allemande" } ], + "variant_access_point": [ + "BRD", + "Bundesrepublik Deutschland (1990-)", + "Deutsches Reich", + "Deutschland", + "Empire allemand", + "Reich allemand", + "R\u00e9publique f\u00e9d\u00e9rale d'Allemagne (1990-)" + ], + "md5": "c47fd72199b3522d71acec7340de9500" + }, + { + "authorized_access_point": "Angkor (ville ancienne)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027219224", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027218597", + "value": "http://www.idref.fr/027219224", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119308460", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11930897w", "source": "BNF" }, { - "type": "uri", - "value": "http://d-nb.info/gnd/4042482-0", - "source": "GND" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040424820", - "source": "GND" + "value": "(DE-101)040020347" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/315124797", - "source": "VIAF" + "value": "http://viaf.org/viaf/173744543" }, { + "source": "PACTOLS", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Afrique_du_Nord", - "source": "WIKIPEDIA" + "value": "https://ark.frantiq.fr/ark:/26678/pcrtJ3hUIUrZZ3" } ], + "pid": "027219224", + "type": "bf:Place", "variant_access_point": [ - "Afrique (nord)", - "Afrique blanche", - "Afrique m\u00e9diterran\u00e9enne", - "Afrique septentrionale", - "Barbaresques, \u00c9tats", - "Barbarie (r\u00e9gion)", - "\u00c9tats Barbaresques", - "Maghreb", - "Maghrib", - "Marhrib", - "Moghreb" + "Angkor (Cambodge)" ], - "authorized_access_point": "Afrique du Nord" + "md5": "f4539c26411f374d51c00c353eb9d32b" }, { - "md5": "ed775c568d6c89cd199c94e7cdcd58e7", - "pid": "027218619", - "note": [ - { - "label": [ - "GLU. Pays et capitales du monde / IGN, 1986. SY 2000", - "Laval RVM, 2000-01" - ], - "noteType": "dataSource" - }, - { - "label": [ - "1910 : Union sud-africaine ; 1961 : R\u00e9publique d'Afrique du Sud. En 1994 les 4 provinces historiques (Le Cap, Natal, Orange et Transvaal) ont \u00e9t\u00e9 remplac\u00e9es par 9 nouvelles provinces" - ], - "noteType": "general" - } - ], - "type": "bf:Place", - "broader": [ - { - "authorized_access_point": "Afrique australe" - } - ], + "authorized_access_point": "Arabie saoudite", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027219631", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027218619", + "value": "http://www.idref.fr/027219631", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb13969835d", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11930929p", "source": "BNF" }, { - "type": "uri", - "value": "http://d-nb.info/gnd/4078012-0", - "source": "GND" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040780120", - "source": "GND" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/159069376", - "source": "VIAF" + "value": "(DE-101)040517888" }, { + "source": "VIAF", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Afrique_du_Sud", - "source": "WIKIPEDIA" + "value": "http://viaf.org/viaf/164965477" } ], - "variant_access_point": [ - "Azanie", - "South Africa", - "Suid-Afrika", - "Union sud-africaine" - ], - "authorized_access_point": "Afrique du Sud" - }, - { - "md5": "efad1ba39f48169cea18f6dcdce1dbbc", - "pid": "027218767", "note": [ { + "noteType": "dataSource", "label": [ - "Pays et capitales du monde / IGN, 1986. IFLA, Names of states, 1981" - ], - "noteType": "dataSource" + "Names of states / IFLA, 1981. Pays et capitales du monde / IGN, 1985" + ] } ], + "pid": "027219631", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Afrique du Nord" + "authorized_access_point": "Arabie" + }, + { + "authorized_access_point": "Persique, Golfe (r\u00e9gion)" } ], + "variant_access_point": [ + "Arabie s\u00e9oudite", + "Al-Sa' udiya", + "\u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0629", + "\u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0629", + "\u0627\u0644\u0645\u0645\u0644\u0643\u0629 \u0627\u0644\u0639\u0631\u0628\u064a\u0629 \u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0629", + "\u0627\u0644\u0645\u0645\u0644\u0643\u0629 \u0627\u0644\u0639\u0631\u0628\u064a\u0629 \u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0629", + "Saudi Arabia", + "Kingdom of Saudi Arabia" + ], + "md5": "6f8b334f2ea77bdf5494f870139c3848" + }, + { + "authorized_access_point": "Atlantique (oc\u00e9an)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027220389", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027218767", + "value": "http://www.idref.fr/027220389", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15238304z", + "value": "http://catalogue.bnf.fr/ark:/12148/cb152874072", "source": "BNF" }, { - "type": "uri", - "value": "http://d-nb.info/gnd/4001179-3", - "source": "GND" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040011798", - "source": "GND" + "value": "(DE-101)040033880" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/8536148574370824430009", - "source": "VIAF" + "value": "http://viaf.org/viaf/152295726" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Alg\u00e9rie", - "source": "WIKIPEDIA" + "value": "https://fr.wikipedia.org/wiki/Oc\u00e9an_Atlantique" } ], - "relation_pid": { - "type": "redirect_from", - "value": "256370915" - }, - "variant_access_point": [ - "Alg\u00e9rie (R\u00e9publique)", - "el Djaz\u00e2ir", - "R\u00e9publique alg\u00e9rienne d\u00e9mocratique" - ], - "authorized_access_point": "Alg\u00e9rie" - }, - { - "md5": "50350d093bcfadfc7d72d8b054419a8c", - "pid": "027218856", "note": [ { + "noteType": "dataSource", "label": [ - "GLU, 1991", - "BN ACO (en ligne), 1997-05-26. Laval RVM, 1997-02. Deutschland ; SWD, 1995-04 ; GKD, 1994-05" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Sous cette vedette, on trouve les ouvrages qui traitent de l'Allemagne dans son ensemble : pays de langue allemande du Saint-Empire, pays de la Conf\u00e9d\u00e9ration germanique, Empire allemand et R\u00e9publique f\u00e9d\u00e9rale d'Allemagne depuis l'unification du 3 octobre 1990. Les ouvrages sur la RFA de 1949 \u00e0 1990 se trouvent sous la vedette Allemagne (R\u00e9publique f\u00e9d\u00e9rale)", - "Attention : seules les collectivit\u00e9s depuis 1990 sont sous la vedette Allemagne ; les collectivit\u00e9s de la p\u00e9riode 1871 \u00e0 1945 sont sous la vedette Allemagne (1871-1945) ; celles de la p\u00e9riode 1945-1949, sous la vedette Allemagne (Zone sous occupation alli\u00e9e)" - ], - "noteType": "general" + "Atlantique, Oc\u00e9an ; Laval RVM, 1995-02" + ] }, { + "noteType": "seeReference", "label": [ - "Voir aussi la subdivision Et l'Allemagne aux personnes et collectivit\u00e9s", - "Voir aussi la subdivision R\u00e9clamations contre l'Allemagne aux lieux" - ], - "noteType": "seeReference" + "Voir aussi aux diff\u00e9rentes parties de l'Atlantique, par ex. Atlantique (oc\u00e9an ; nord)" + ] } ], + "pid": "027220389", "type": "bf:Place", - "broader": [ + "narrower": [ { - "authorized_access_point": "Europe centrale" + "authorized_access_point": "Atlantique (oc\u00e9an ; sud)" + } + ], + "variant_access_point": [ + "Atlantique", + "Oc\u00e9an Atlantique" + ], + "md5": "07a20cce21e15ac2818fe38e8793467d" + }, + { + "authorized_access_point": "Chartres (Eure-et-Loir, France) - Cath\u00e9drale Notre-Dame", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "200", + "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)" }, { - "authorized_access_point": "Pays de l'Union europ\u00e9enne" + "type": "bf:ClassificationDdc", + "classificationPortion": "720", + "name": "Architecture" }, { - "authorized_access_point": "Pays de langue allemande" + "type": "bf:ClassificationDdc", + "classificationPortion": "912" } ], - "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "authorized_access_point": "Cath\u00e9drale de Chartres", + "source": "LCA", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/names/n50052168", + "source": "LCA" + } + ] + } + ], + "identifier": "http://www.idref.fr/027222608", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027218856", + "value": "http://www.idref.fr/027222608", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11930867z", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11931157z", "source": "BNF" }, { - "type": "uri", - "value": "http://d-nb.info/gnd/2008993-4", - "source": "GND" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)00468687X", - "source": "GND" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/173418378", - "source": "VIAF" + "value": "(DE-101)040699307" } ], - "variant_access_point": [ - "BRD", - "Bundesrepublik Deutschland (1990-)", - "Deutsches Reich", - "Deutschland", - "Empire allemand", - "Reich allemand", - "R\u00e9publique f\u00e9d\u00e9rale d'Allemagne (1990-)" - ], - "authorized_access_point": "Allemagne" - }, - { - "md5": "8ab6b40f1c868b1ddacebe503add0350", - "pid": "027218961", "note": [ { + "noteType": "dataSource", "label": [ - "GDEL. Laval RVM, 1991-02" - ], - "noteType": "dataSource" + "Guides bleus : France, 1974", + "Patrimoine mondial de l'Unesco - http://whc.unesco.org/fr (2015-08-19)" + ] }, { + "noteType": "general", "label": [ - "Sous cette vedette on trouve les ouvrages qui traitent de l'Am\u00e9rique du Nord, incluant ou non le Mexique" - ], - "noteType": "general" + "Cath\u00e9drale consid\u00e9r\u00e9e comme la plus repr\u00e9sentative de l'art gothique fran\u00e7ais, dont la construction d\u00e9buta en 1145. Inscrite au patrimoine mondial de l'Unesco depuis 1979" + ] } ], + "pid": "027222608", "type": "bf:Place", - "broader": [ + "narrower": [ { - "authorized_access_point": "Am\u00e9rique" + "authorized_access_point": "Chartres (Eure-et-Loir) - Cath\u00e9drale Notre-Dame - Portail nord" + }, + { + "authorized_access_point": "Chartres (Eure-et-Loir) - Cath\u00e9drale Notre-Dame - Portail sud" + }, + { + "authorized_access_point": "Chartres (Eure-et-Loir) - Cath\u00e9drale Notre-Dame - Puits des Saints-Forts" } ], + "variant_access_point": [ + "Cath\u00e9drale de Chartres", + "Cath\u00e9drale Notre-Dame (Chartres, Eure-et-Loire)", + "Notre-Dame, Cath\u00e9drale (Chartres, Eure-et-Loire)" + ], + "md5": "e6339b4cad97918393ed8fc40474383f" + }, + { + "authorized_access_point": "Chili", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027222950", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027218961", + "value": "http://www.idref.fr/027222950", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15238493p", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15238523s", "source": "BNF" }, { - "type": "uri", - "value": "http://d-nb.info/gnd/4042483-2", - "source": "GND" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040424839", - "source": "GND" + "value": "(DE-101)040099296" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/315126791", - "source": "VIAF" + "value": "http://viaf.org/viaf/233665742" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Am\u00e9rique_du_Nord", - "source": "WIKIPEDIA" + "value": "https://fr.wikipedia.org/wiki/Chili" } ], - "variant_access_point": [ - "Am\u00e9rique (nord)" - ], - "authorized_access_point": "Am\u00e9rique du Nord" - }, - { - "md5": "ca7a4ee839028061404adbaa633d349b", - "pid": "02721897X", "note": [ { + "noteType": "dataSource", "label": [ - "GLU. Laval RVM, 1995-02" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Sous cette vedette, on trouve les ouvrages qui traitent de l'ensemble des pays d'Am\u00e9rique qui furent colonis\u00e9s par les Espagnols et par les Portugais" - ], - "noteType": "general" - }, - { - "label": [ - "Voir aussi la subdivision Et l'Am\u00e9rique latine aux personnes et collectivit\u00e9s" - ], - "noteType": "seeReference" + "IFLA, Names of states, 1981" + ] } ], + "pid": "027222950", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Am\u00e9rique" + "authorized_access_point": "Andes (r\u00e9gion)" }, { - "authorized_access_point": "Pays de langue espagnole" + "authorized_access_point": "C\u00f4ne Sud de l'Am\u00e9rique du Sud" } ], + "variant_access_point": [ + "Chile" + ], + "md5": "3d68e927997f2b9c343cd424548adbd9" + }, + { + "authorized_access_point": "Allemagne (R\u00e9publique d\u00e9mocratique)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027223736", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/02721897X", + "value": "http://www.idref.fr/027223736", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11930876x", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11931234k", "source": "BNF" }, { - "type": "uri", - "value": "http://d-nb.info/gnd/4074032-8 ", - "source": "GND" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040740323", - "source": "GND" + "value": "(DE-101)040118908" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/172711055", - "source": "VIAF" + "value": "http://viaf.org/viaf/268607483" } ], - "variant_access_point": [ - "Am\u00e9rique espagnole" - ], - "authorized_access_point": "Am\u00e9rique latine" - }, - { - "md5": "b4820952728f10d594b7e1a15a6a05b8", - "pid": "027220443", "note": [ { + "noteType": "dataSource", "label": [ - "IFLA, Names of states, 1981. GLU, 1991", - "Laval RVM, 1996-02" - ], - "noteType": "dataSource" - } - ], - "type": "bf:Place", - "broader": [ - { - "authorized_access_point": "Australasie" + "Autorit\u00e9 mati\u00e8re / BPI, 1980. BN ACO" + ] }, { - "authorized_access_point": "Oc\u00e9anie" + "noteType": "general", + "label": [ + "Les ouvrages qui traitent de la partie orientale de l'Allemagne (dans les fronti\u00e8res de la p\u00e9riode consid\u00e9r\u00e9e) avant 1949 ou depuis 1990 se trouvent sous la vedette Allemagne (est)" + ] } ], + "pid": "027223736", + "type": "bf:Place", + "variant_access_point": [ + "Allemagne (RDA)", + "Allemagne de l'Est", + "Allemande, R\u00e9publique d\u00e9mocratique", + "DDR", + "Deutsche Demokratische Republik", + "Deutschland (DDR)", + "RDA", + "R\u00e9publique d\u00e9mocratique allemande" + ], + "md5": "bfbffed842f1489e148acb182f90978f" + }, + { + "authorized_access_point": "Alpes (Autriche)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027223760", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027220443", + "value": "http://www.idref.fr/027223760", "source": "IDREF" }, { "type": "uri", - "value": "http://d-nb.info/gnd/4003900-6", - "source": "GND" + "value": "http://catalogue.bnf.fr/ark:/12148/cb11931235x", + "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040039005", - "source": "GND" + "value": "(DE-101)040432742" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/9948148574334924430009", - "source": "VIAF" + "value": "http://viaf.org/viaf/484144783099466463271" } ], - "variant_access_point": [ - "Australia", - "Commonwealth d'Australie", - "Commonwealth of Australia" - ], - "authorized_access_point": "Australie" - }, - { - "md5": "b1a0f1cd5bd7661335f72dcfcbab294d", - "pid": "027222950", "note": [ { + "noteType": "dataSource", "label": [ - "IFLA, Names of states, 1981" - ], - "noteType": "dataSource" + "Alps, Austrian (Austria) ; LCSH, 1988-12" + ] } ], + "pid": "027223760", "type": "bf:Place", - "broader": [ + "related": [ { - "authorized_access_point": "Andes (r\u00e9gion)" - }, - { - "authorized_access_point": "C\u00f4ne Sud de l'Am\u00e9rique du Sud" + "authorized_access_point": "Alpes (est)" } ], - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "narrower": [ { - "type": "uri", - "value": "http://www.idref.fr/027222950", - "source": "IDREF" + "authorized_access_point": "Dachstein (Autriche ; massif)" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15238523s", - "source": "BNF" + "authorized_access_point": "G\u00f6tschenberg (Autriche ; mont)" }, { - "type": "bf:Nbn", - "value": "(DE-101)040099296", - "source": "GND" + "authorized_access_point": "Hohe Tauern (Autriche ; massif)" }, { - "type": "uri", - "value": "http://viaf.org/viaf/233665742", - "source": "VIAF" + "authorized_access_point": "Raxalpe (Autriche ; mont)" }, { - "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Chili", - "source": "WIKIPEDIA" + "authorized_access_point": "Schneeberg (Autriche ; mont)" + }, + { + "authorized_access_point": "Stub-Alpe (Autriche)" + } + ], + "broader": [ + { + "authorized_access_point": "Alpes" } ], "variant_access_point": [ - "Chile" + "Alpes autrichiennes" ], - "authorized_access_point": "Chili" + "md5": "5f78499278b572dbde2d8caa8bb73fbd" }, { - "md5": "5a5f0ff2dc0d3fbaa5a667067e73b447", - "pid": "027223736", - "note": [ - { - "label": [ - "Autorit\u00e9 mati\u00e8re / BPI, 1980. BN ACO" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Les ouvrages qui traitent de la partie orientale de l'Allemagne (dans les fronti\u00e8res de la p\u00e9riode consid\u00e9r\u00e9e) avant 1949 ou depuis 1990 se trouvent sous la vedette Allemagne (est)" - ], - "noteType": "general" - } - ], - "type": "bf:Place", + "authorized_access_point": "Alpes (France)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027223779", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027223736", + "value": "http://www.idref.fr/027223779", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11931234k", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119312368", "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040118908", - "source": "GND" + "value": "(DE-101)040932052" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/268607483", - "source": "VIAF" + "value": "http://viaf.org/viaf/173145181" } ], - "variant_access_point": [ - "Allemagne (RDA)", - "Allemagne de l'Est", - "Allemande, R\u00e9publique d\u00e9mocratique", - "DDR", - "Deutsche Demokratische Republik", - "Deutschland (DDR)", - "RDA", - "R\u00e9publique d\u00e9mocratique allemande" - ], - "authorized_access_point": "Allemagne (R\u00e9publique d\u00e9mocratique)" - }, - { - "md5": "cc9b74106a6c6c690a96fdbc6e6e7eb3", "pid": "027223779", "type": "bf:Place", - "bnf_type": "sujet Rameau", "narrower": [ { "authorized_access_point": "\u00c9crins, Massif des (France)" @@ -736,1973 +617,1683 @@ "authorized_access_point": "Alpes maritimes (massif)" } ], + "variant_access_point": [ + "Alpes fran\u00e7aises" + ], + "md5": "34c3592a114c585094c642b45bc23d52" + }, + { + "authorized_access_point": "\u00c9thiopie", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027224570", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027223779", + "value": "http://www.idref.fr/027224570", "source": "IDREF" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119312368", - "source": "BNF" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040932052", - "source": "GND" + "value": "(DE-101)040006395" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/173145181", - "source": "VIAF" + "value": "http://viaf.org/viaf/172818811" } ], - "variant_access_point": [ - "Alpes fran\u00e7aises" - ], - "authorized_access_point": "Alpes (France)" - }, - { - "md5": "6a1ac1ea5b195a2e89bc9bcf0810e5ec", - "pid": "027224406", "note": [ { + "noteType": "dataSource", "label": [ - "IFLA, Names of states, 1981. GLU, 1991", - "Laval RVM, 1996-02" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Voir aussi la subdivision Et l'Espagne aux personnes et collectivit\u00e9s" - ], - "noteType": "seeReference" + "IFLA, Names of states, 1981" + ] } ], + "pid": "027224570", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Ib\u00e9rique, P\u00e9ninsule" - }, - { - "authorized_access_point": "Pays de l'Union europ\u00e9enne" - }, - { - "authorized_access_point": "Pays de langue espagnole" + "authorized_access_point": "Afrique du Nord-Est" } ], + "variant_access_point": [ + "Abyssinie", + "Ityopya" + ], + "md5": "13d2cf0d6e681c578c6ed3ecc3112f02" + }, + { + "authorized_access_point": "\u00c9quateur", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027225399", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027224406", + "value": "http://www.idref.fr/027225399", "source": "IDREF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040559645", - "source": "GND" - }, - { - "type": "uri", - "value": "http://d-nb.info/gnd/4055964-6", - "source": "GND" + "value": "(DE-101)041293215" }, { + "source": "VIAF", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Spain_(groupe)", - "source": "WIKIPEDIA" + "value": "http://viaf.org/viaf/150084159" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "http://viaf.org/viaf/147947476", - "source": "VIAF" + "value": "https://fr.wikipedia.org/wiki/\u00c9quateur_(pays)" } ], - "variant_access_point": [ - "Espa\u00f1a" - ], - "authorized_access_point": "Espagne" - }, - { - "md5": "c2cdfacbbc6ce22a31270d262fd50764", - "pid": "027224651", "note": [ { + "noteType": "dataSource", "label": [ - "GLU" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Voir aussi aux diff\u00e9rentes parties de l'Europe, par ex. Europe de l'Ouest" - ], - "noteType": "seeReference" + "IFLA, Names of states, 1981. Laval RVM, 1995-02" + ] } ], + "pid": "027225399", "type": "bf:Place", - "broader": [ + "narrower": [ { - "authorized_access_point": "Eurasie" + "authorized_access_point": "Amazonie (\u00c9quateur)" } ], + "variant_access_point": [ + "Ecuador" + ], + "md5": "b0f5b84003d88411a63f8b2cfb1d603f" + }, + { + "authorized_access_point": "Finlande", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027225984", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027224651", + "value": "http://www.idref.fr/027225984", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11931301w", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15238532r", "source": "BNF" }, { - "type": "uri", - "value": "http://d-nb.info/gnd/4015701-5", - "source": "GND" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040157016", - "source": "GND" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/124144648501726049254", - "source": "VIAF" + "value": "(DE-101)040172430" }, { + "source": "VIAF", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Europe", - "source": "WIKIPEDIA" + "value": "http://viaf.org/viaf/2759153532459148820002" } ], - "variant_access_point": [ - "Conseil de l'Europe, Pays du", - "Pays du Conseil de l'Europe" - ], - "authorized_access_point": "Europe" - }, - { - "md5": "0be74c406b2b5e243d0c730dcb7bb680", - "pid": "027224678", "note": [ { + "noteType": "dataSource", "label": [ - "Europe de l'Est ; Laval RVM, 1995-02" - ], - "noteType": "dataSource" + "IFLA, Names of states, 1981. SY 1996-97" + ] }, { + "noteType": "seeReference", "label": [ - "Sous cette vedette, on trouve les ouvrages qui traitent de la partie de l'Europe situ\u00e9e \u00e0 l'est de l'Allemagne et de l'Autriche jusqu'\u00e0 l'Oural, ou des anciennes d\u00e9mocraties populaires de l'Europe orientale (y compris la RDA). Les ouvrages qui traitent de la r\u00e9gion form\u00e9e par les bassins du Rhin, de l'Elbe, de l'Oder et du Danube jusqu'aux Portes de Fer se trouvent sous la vedette Europe centrale" - ], - "noteType": "general" + "Voir aussi la subdivision Et la Finlande aux personnes et collectivit\u00e9s" + ] } ], + "pid": "027225984", "type": "bf:Place", - "related": [ + "broader": [ { - "authorized_access_point": "Pays slaves" + "authorized_access_point": "Pays de l'Union europ\u00e9enne" + }, + { + "authorized_access_point": "Scandinavie" } ], + "variant_access_point": [ + "Finland", + "Suomi" + ], + "md5": "adafb5a6d04c48944b854df82cfa33e4" + }, + { + "authorized_access_point": "France (nord)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027227472", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027224678", + "value": "http://www.idref.fr/027227472", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11931303k", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119315243", "source": "BNF" }, { - "type": "uri", - "value": "http://d-nb.info/gnd/4075739-0", - "source": "GND" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040757390", - "source": "GND" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/248539062", - "source": "VIAF" + "value": "(DE-101)041100867" }, { + "source": "VIAF", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Europe_de_l'Est", - "source": "WIKIPEDIA" + "value": "http://viaf.org/viaf/172655931" } ], - "variant_access_point": [ - "Europe (est)", - "Europe centrale et orientale", - "Europe orientale", - "Pays d'Europe centrale et orientale", - "PECO" - ], - "authorized_access_point": "Europe de l'Est" - }, - { - "md5": "12bdf65dfd197b5f7abbbdf48dc68baa", - "pid": "027224694", "note": [ { + "noteType": "dataSource", + "label": [ + "France (Nord) ; Laval RVM, 1996-02" + ] + }, + { + "noteType": "general", "label": [ - "Sous cette vedette on trouve les ouvrages qui traitent de la partie de l'Europe situ\u00e9e \u00e0 l'ouest de la ligne L\u00fcbeck-Trieste, et/ou, pour la p\u00e9riode 1945-1990, de l'ensemble des pays non socialistes d'Europe, de la Finlande \u00e0 la Gr\u00e8ce et \u00e0 la Turquie" - ], - "noteType": "general" + "Sous cette vedette, on trouve les ouvrages qui traitent de la moiti\u00e9 nord de la France" + ] } ], + "pid": "027227472", "type": "bf:Place", - "bnf_type": "sujet Rameau", "narrower": [ { - "authorized_access_point": "Pays de l'Union europ\u00e9enne" - }, - { - "authorized_access_point": "Benelux" - }, - { - "authorized_access_point": "Pays de l'Union europ\u00e9enne (centre)" + "authorized_access_point": "France (nord-est)" } ], + "variant_access_point": [ + "France du nord", + "France septentrionale", + "Nord de la France" + ], + "md5": "84d5f2fae58c2945c4223a855a67d67c" + }, + { + "authorized_access_point": "G\u00eanes (Italie)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027227871", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027224694", + "value": "http://www.idref.fr/027227871", "source": "IDREF" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119313058", - "source": "BNF" - }, - { - "type": "uri", - "value": "http://d-nb.info/gnd/4079215-8", - "source": "GND" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040792153", - "source": "GND" + "value": "(DE-101)040201856" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/245653394", - "source": "VIAF" - }, - { - "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Europe_de_l'Ouest", - "source": "WIKIPEDIA" + "value": "http://viaf.org/viaf/125409416" } ], - "variant_access_point": [ - "Europe (ouest)", - "Europe atlantique", - "Europe occidentale" - ], - "authorized_access_point": "Europe de l'Ouest" - }, - { - "md5": "a60b0cb6270e8050729f73551948ee51", - "pid": "027225488", "note": [ { + "noteType": "dataSource", "label": [ - "Names of states / IFLA, 1981. Laval RVM, 1983" - ], - "noteType": "dataSource" + "BN ACO. GDEL" + ] } ], + "pid": "027227871", "type": "bf:Place", - "broader": [ - { - "authorized_access_point": "Am\u00e9rique du Nord" - } + "variant_access_point": [ + "G\u00eanes (R\u00e9publique)", + "Genova (Italie)" ], + "md5": "f46cf81e2dc4acfce4a354d997648870" + }, + { + "authorized_access_point": "Antilles fran\u00e7aises", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027228878", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027225488", + "value": "http://www.idref.fr/027228878", "source": "IDREF" }, { "type": "uri", - "value": "https://catalogue.bnf.fr/ark:/12148/cb119313712", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11931628r", "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)000339784", - "source": "GND" + "value": "(DE-101)041379225" }, { + "source": "VIAF", "type": "uri", - "value": "http://d-nb.info/gnd/33978-7", - "source": "GND" + "value": "http://viaf.org/viaf/172385538" + } + ], + "pid": "027228878", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Antilles" }, { - "type": "uri", - "value": "http://viaf.org/viaf/421148574296124430003", - "source": "VIAF" + "authorized_access_point": "Petites Antilles" } ], - "relation_pid": { - "type": "redirect_from", - "value": "155744879" - }, - "variant_access_point": [ - "\u00c9tats-Unis d'Am\u00e9rique", - "Etats Unis", - "United States", - "United States of America", - "US", - "USA" - ], - "authorized_access_point": "\u00c9tats-Unis" + "md5": "a3a0045a596081b3de7b85758eba29f5" }, { - "md5": "8d535ec4fc50acccbf71b2b651d68fe9", - "pid": "027226042", - "note": [ - { - "label": [ - "GLU" - ], - "noteType": "dataSource" - } - ], - "type": "bf:Place", + "authorized_access_point": "Aube (France)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027229211", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027226042", + "value": "http://www.idref.fr/027229211", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11931414h", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11931650x", "source": "BNF" }, { - "type": "bf:Nbn", - "value": "(DE-101)040175812", - "source": "GND" - }, - { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/158387156", - "source": "VIAF" + "value": "http://viaf.org/viaf/312788193" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Florence", - "source": "WIKIPEDIA" + "value": "https://fr.wikipedia.org/wiki/Aube_(d\u00e9partement)" } ], - "variant_access_point": [ - "Firenze (Italie)", - "Florence" - ], - "authorized_access_point": "Florence (Italie)" - }, - { - "md5": "d7e13769b5002c0dbc19cfeb1a0647cd", - "pid": "027226794", "note": [ { + "noteType": "dataSource", "label": [ - "IFLA, Names of states, 1981. GLU, 1991", - "Laval RVM, 1997-02" - ], - "noteType": "dataSource" + "GDEL" + ] }, { + "noteType": "general", "label": [ - "Voir aussi la subdivision Et la France aux personnes et collectivit\u00e9s" - ], - "noteType": "seeReference" + "D\u00e9partement fran\u00e7ais (10)" + ] } ], + "pid": "027229211", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Europe francophone" - }, - { - "authorized_access_point": "Pays de l'Union europ\u00e9enne" + "authorized_access_point": "Champagne-Ardenne (France)" } ], + "variant_access_point": [ + "Aube" + ], + "md5": "cdca0e5f8b54cbe64f9cb4095d85f715" + }, + { + "authorized_access_point": "C\u00f4te d'Ivoire", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027230309", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027226794", + "value": "http://www.idref.fr/027230309", "source": "IDREF" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119314762", - "source": "BNF" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040181456", - "source": "GND" - }, - { - "type": "bf:Nbn", - "value": "040181456", - "source": "GND" + "value": "(DE-101)040144267" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/7487148574366524430008", - "source": "VIAF" + "value": "http://viaf.org/viaf/164154015337309310002" } ], - "relation_pid": { - "type": "redirect_from", - "value": "078010705" - }, - "variant_access_point": [ - "France occidentale" - ], - "authorized_access_point": "France" - }, - { - "md5": "b5ec02204d01ac2897dc3044c9406f8f", - "pid": "027227812", "note": [ { + "noteType": "dataSource", "label": [ - "Atlas universalis. GDEL" - ], - "noteType": "dataSource" + "Names of states / IFLA, 1981. Pays et capitales du monde / IGN, 1985. Manuel de l'Unesco, 1985" + ] } ], + "pid": "027230309", "type": "bf:Place", - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "broader": [ { - "type": "uri", - "value": "http://www.idref.fr/027227812", - "source": "IDREF" - }, + "authorized_access_point": "Afrique occidentale" + } + ], + "related": [ { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11931552b", - "source": "BNF" + "authorized_access_point": "Moronou (Royaume)" } ], "variant_access_point": [ - "Dantzig (Pologne)", - "Gedania", - "Gedani", - "Danzig (Pologne)" + "C\u00f4te-d'Ivoire" ], - "authorized_access_point": "Gda\u0144sk (Pologne)" + "md5": "540f87c3c6d909e48f40b4e5085a9cae" }, { - "md5": "651a35bc68b19d47ff803adec18625eb", - "pid": "027228428", - "note": [ - { - "label": [ - "IFLA, Names of states, 1981. GDEL" - ], - "noteType": "dataSource" - } - ], - "type": "bf:Place", - "broader": [ - { - "authorized_access_point": "Balkans" - }, - { - "authorized_access_point": "M\u00e9diterran\u00e9e (r\u00e9gion ; est)" - }, - { - "authorized_access_point": "Pays de l'Union europ\u00e9enne" - } - ], + "authorized_access_point": "Cologne (Allemagne)", "bnf_type": "sujet Rameau", - "narrower": [ - { - "authorized_access_point": "Thrace (Gr\u00e8ce)" - } - ], + "identifier": "http://www.idref.fr/027230422", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027228428", + "value": "http://www.idref.fr/027230422", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11931600c", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11931745m", "source": "BNF" }, { - "type": "bf:Nbn", - "value": "(DE-101)040220478", - "source": "GND" - }, - { + "source": "VIAF", "type": "uri", - "value": "http://d-nb.info/gnd/4022047-3", - "source": "GND" + "value": "http://viaf.org/viaf/6135148574319424430006" }, { - "type": "uri", - "value": "http://viaf.org/viaf/172224968", - "source": "VIAF" + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040314839" } ], - "variant_access_point": [ - "Ell\u00e1s", - "Hellade", - "Hellas", - "\u0627\u0644\u064a\u0648\u0646\u0627\u0646" - ], - "authorized_access_point": "Gr\u00e8ce" - }, - { - "md5": "43b1daf8f7c51a18b4a119d11ff29e63", - "pid": "027228517", "note": [ { + "noteType": "dataSource", "label": [ - "GDEL. SY 1990/91. Laval RVM, 1990-08" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Canton suisse" - ], - "noteType": "general" + "GDEL. GKD, 1980", + "Colonia Agrippinensis : Festschrift der 43. Versammlung deutscher Philologen und Schulm\u00e4nner, 1895" + ] } ], + "pid": "027230422", "type": "bf:Place", - "broader": [ + "narrower": [ { - "authorized_access_point": "Suisse - Cantons" + "authorized_access_point": "Cologne (Allemagne ; est)" } ], + "variant_access_point": [ + "K\u00f6ln (Allemagne)", + "Koeln (Allemagne)", + "Colonia Agrippinensis (ville ancienne)" + ], + "md5": "27a08a13b2e7c0eb45a849d882b924f4" + }, + { + "authorized_access_point": "Colombie", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027230430", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027228517", + "value": "http://www.idref.fr/027230430", "source": "IDREF" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb153220844", - "source": "BNF" + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040318125" }, { + "source": "VIAF", "type": "uri", - "value": "http://d-nb.info/gnd/4021881-8 ", - "source": "GND" - }, - { - "type": "bf:Nbn", - "value": "(DE-101)040218813", - "source": "GND" + "value": "http://viaf.org/viaf/127757650" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "http://viaf.org/viaf/170357195", - "source": "VIAF" + "value": "https://fr.wikipedia.org/wiki/Colombie" } ], - "variant_access_point": [ - "Graub\u00fcnden (Suisse)", - "Grigioni (Suisse)", - "Grishun (Suisse)" - ], - "authorized_access_point": "Grisons (Suisse)" - }, - { - "md5": "05632639cd0c7e46e70f928c3a9f1fe4", - "pid": "027228959", "note": [ { + "noteType": "dataSource", "label": [ - "Grand Larousse universel (art. : Arabe)", - "Encycl. universalis : Arabe (Monde) - http://www.universalis-edu.com (2011-11-24)", - "Wikip\u00e9dia : Monde arabe - http://fr.wikipedia.org (2011-11-24)", - "L'\u00e9conomie des pays arabes / A. Martens, 1983" - ], - "noteType": "dataSource" + "IFLA, Names of states, 1981. GLU. BN ACO. Laval RVM, 1995-02" + ] }, { + "noteType": "general", "label": [ - "Voir aussi la subdivision Et les pays arabes [sans subd. g\u00e9ogr.] aux collectivit\u00e9s et aux personnes" - ], - "noteType": "seeReference" + "Apr\u00e8s l'\u00e9clatement de la Grande-Colombie, l'actuelle R\u00e9publique de Colombie a port\u00e9 successivement les noms de \"R\u00e9publique de Nouvelle-Grenade\" (Rep\u00fablica de Nueva Granada) (1830-1858), \"Conf\u00e9d\u00e9ration grenadine\" (Confederaci\u00f3n granadina) (1858-1861), et \"\u00c9tats-Unis de Colombie\" (Estados Unidos de Colombia) (1861-1880)" + ] } ], + "pid": "027230430", "type": "bf:Place", - "related": [ - { - "authorized_access_point": "Moyen-Orient" - }, + "broader": [ { - "authorized_access_point": "Pays arabes - Histoire" + "authorized_access_point": "Andes (r\u00e9gion)" } ], - "bnf_type": "sujet Rameau", - "narrower": [ - { - "authorized_access_point": "Afrique du Nord" - } + "variant_access_point": [ + "Colombia", + "Confederaci\u00f3n granadina", + "Estados Unidos de Colombia", + "Nouvelle-Grenade", + "Nueva Granada" ], + "md5": "a6ca31bfd8b25bcdaf36c3bb5971196f" + }, + { + "authorized_access_point": "Danemark", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027231585", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027228959", + "value": "http://www.idref.fr/027231585", "source": "IDREF" }, { "type": "uri", - "value": "http://d-nb.info/gnd/4068789-2", - "source": "GND" + "value": "http://catalogue.bnf.fr/ark:/12148/cb11931839z", + "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040687899", - "source": "GND" + "value": "(DE-101)040108775" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/172492075", - "source": "VIAF" - } - ], - "relation_pid": { - "type": "redirect_from", - "value": "164701583" - }, - "classification": [ - { - "name": "G\u00e9ographie du reste du monde", - "type": "bf:ClassificationDdc", - "classificationPortion": "915" + "value": "http://viaf.org/viaf/150081023" } ], - "variant_access_point": [ - "Arabes, Pays", - "\u00c9tats arabes", - "Monde arabe", - "Pays de langue arabe" - ], - "authorized_access_point": "Pays arabes" - }, - { - "md5": "618583fb790e3bd6a11c27d22bc9486c", - "pid": "027229246", "note": [ { + "noteType": "dataSource", "label": [ - "IFLA, Names of states, 1981. \u00d6sterreich ; GKD, 1994-05 ; SWD, 1995-04", - "Laval RVM, 1997-02" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Sous cette vedette, on trouve les ouvrages qui traitent de l'Autriche, des origines \u00e0 nos jours, quelles qu'aient \u00e9t\u00e9 son \u00e9tendue territoriale et son r\u00e9gime politique. Cependant les ouvrages relatifs \u00e0 l'Autriche-Hongrie (1867-1918) se trouvent sous la vedette Autriche-Hongrie ; et ceux qui, pour la m\u00eame p\u00e9riode, se limitent \u00e0 la partie autrichienne de l'empire (Cisleithanie) se trouvent sous la vedette Autriche, suivie des subdivisions de sujet et chronologiques appropri\u00e9es" - ], - "noteType": "general" - }, - { - "label": [ - "Voir aussi la subdivision Et l'Autriche aux personnes et collectivit\u00e9s", - "Voir aussi la subdivision R\u00e9clamations contre l'Autriche aux lieux" - ], - "noteType": "seeReference" + "IFLA, Names of states, 1981" + ] } ], + "pid": "027231585", "type": "bf:Place", "broader": [ - { - "authorized_access_point": "Europe centrale" - }, { "authorized_access_point": "Pays de l'Union europ\u00e9enne" }, { - "authorized_access_point": "Pays de langue allemande" + "authorized_access_point": "Scandinavie" } ], + "variant_access_point": [ + "Danmark" + ], + "md5": "ff50a790208907beef32b340dcc8abaa" + }, + { + "authorized_access_point": "Ib\u00e9rique, P\u00e9ninsule", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027234274", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027229246", + "value": "http://www.idref.fr/027234274", "source": "IDREF" }, { "type": "uri", - "value": "http://d-nb.info/gnd/4043271-3", - "source": "GND" + "value": "http://catalogue.bnf.fr/ark:/12148/cb119320646", + "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040432718", - "source": "GND" + "value": "(DE-101)040479129" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/422148574296124430006", - "source": "VIAF" + "value": "http://viaf.org/viaf/172655949" } ], - "variant_access_point": [ - "Cisleithanie", - "Empire d'Autriche", - "Ostmark", - "Zisleithanien", - "Austria" - ], - "authorized_access_point": "Autriche" - }, - { - "md5": "2873168fa16dbe41a9c5203b5fe1cd87", - "pid": "02722953X", "note": [ { + "noteType": "dataSource", "label": [ - "IFLA, Names of states, 1981. SY, 1990/1991" - ], - "noteType": "dataSource" + "GLU. Laval RVM, 1993-02" + ] } ], + "pid": "027234274", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Am\u00e9rique du Sud" + "authorized_access_point": "Europe du Sud" + } + ], + "narrower": [ + { + "authorized_access_point": "Espagne" }, { - "authorized_access_point": "Pays de langue portugaise" + "authorized_access_point": "Portugal" + }, + { + "authorized_access_point": "Hispanie ult\u00e9rieure" + }, + { + "authorized_access_point": "Hispanie cit\u00e9rieure" } ], + "variant_access_point": [ + "Hispanie", + "Ib\u00e9rie", + "P\u00e9ninsule ib\u00e9rique", + "P\u00e9ninsule ib\u00e9rique (Espagne)", + "P\u00e9ninsule ib\u00e9rique (Portugal)" + ], + "md5": "1d7adcbada0041ab627ed5bcbac81104" + }, + { + "authorized_access_point": "Pays islamiques", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027234592", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/02722953X", + "value": "http://www.idref.fr/027234592", "source": "IDREF" }, { "type": "uri", - "value": "http://d-nb.info/gnd/4008003-1", - "source": "GND" + "value": "http://catalogue.bnf.fr/ark:/12148/cb11932087v", + "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)04008003X", - "source": "GND" + "value": "(DE-101)040731723" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/1732148574301324430003", - "source": "VIAF" + "value": "http://viaf.org/viaf/173581056" } ], - "variant_access_point": [ - "Brasil", - "Brazil" - ], - "authorized_access_point": "Br\u00e9sil" - }, - { - "md5": "6504d4ff2db6728c95ecc3472b973ac5", - "pid": "027230309", "note": [ { + "noteType": "general", "label": [ - "Names of states / IFLA, 1981. Pays et capitales du monde / IGN, 1985. Manuel de l'Unesco, 1985" - ], - "noteType": "dataSource" + "Sous cette vedette on trouve les ouvrages qui traitent des pays o\u00f9 la majorit\u00e9 de la population est musulmane, ou dont l'islam est la religion reconnue" + ] } ], + "pid": "027234592", "type": "bf:Place", - "broader": [ - { - "authorized_access_point": "Afrique occidentale" - } - ], - "related": [ - { - "authorized_access_point": "Moronou (Royaume)" - } + "variant_access_point": [ + "\u00c9tats islamiques", + "Islamiques, Pays", + "Musulmans, Pays", + "Pays musulmans" ], + "md5": "86d55890c6af791ccb38f3f82b5c28ed" + }, + { + "authorized_access_point": "J\u00e9rusalem", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027235769", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027230309", + "value": "http://www.idref.fr/027235769", "source": "IDREF" }, { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119321723", + "source": "BNF" + }, + { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040144267", - "source": "GND" + "value": "(DE-101)040285863" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/164154015337309310002", - "source": "VIAF" + "value": "http://viaf.org/viaf/23147121724526391653" } ], - "variant_access_point": [ - "C\u00f4te-d'Ivoire" - ], - "authorized_access_point": "C\u00f4te d'Ivoire" - }, - { - "md5": "87b941879ceea47081a257691f25af96", - "pid": "027230430", "note": [ { + "noteType": "dataSource", "label": [ - "IFLA, Names of states, 1981. GLU. BN ACO. Laval RVM, 1995-02" - ], - "noteType": "dataSource" + "GDEL. Atlas universalis. LCSH, 1987" + ] }, { + "noteType": "general", "label": [ - "Apr\u00e8s l'\u00e9clatement de la Grande-Colombie, l'actuelle R\u00e9publique de Colombie a port\u00e9 successivement les noms de \"R\u00e9publique de Nouvelle-Grenade\" (Rep\u00fablica de Nueva Granada) (1830-1858), \"Conf\u00e9d\u00e9ration grenadine\" (Confederaci\u00f3n granadina) (1858-1861), et \"\u00c9tats-Unis de Colombie\" (Estados Unidos de Colombia) (1861-1880)" - ], - "noteType": "general" + "Emploi direct en subdivision : [Sujet] -- J\u00e9rusalem" + ] } ], + "pid": "027235769", "type": "bf:Place", - "broader": [ + "narrower": [ { - "authorized_access_point": "Andes (r\u00e9gion)" + "authorized_access_point": "J\u00e9rusalem - Katamon" + }, + { + "authorized_access_point": "J\u00e9rusalem - Talbiyeh" } ], + "variant_access_point": [ + "al Quds", + "\u0627\u0644\u0642\u062f\u0633", + "al-Quds", + "\u0623\u0648\u0631\u0634\u0644\u064a\u0645", + "\u016ar\u0161al\u012bm", + "Yerushalayim", + "Yr\u1e87\u0161alayim" + ], + "md5": "9591a143c5417612848b26eb172f76c3" + }, + { + "authorized_access_point": "Lot (France)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027236153", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027230430", + "value": "http://www.idref.fr/027236153", "source": "IDREF" }, { - "type": "bf:Nbn", - "value": "(DE-101)040318125", - "source": "GND" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119322088", + "source": "BNF" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/127757650", - "source": "VIAF" + "value": "http://viaf.org/viaf/125492314" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Colombie", - "source": "WIKIPEDIA" + "value": "https://fr.wikipedia.org/wiki/Lot_(d\u00e9partement)" } ], - "variant_access_point": [ - "Colombia", - "Confederaci\u00f3n granadina", - "Estados Unidos de Colombia", - "Nouvelle-Grenade", - "Nueva Granada" - ], - "authorized_access_point": "Colombie" - }, - { - "md5": "756f37840633fab8d989c9325fa92be2", - "pid": "027234002", "note": [ { + "noteType": "dataSource", "label": [ - "IFLA, Names of states, 1981" - ], - "noteType": "dataSource" + "GDEL" + ] + }, + { + "noteType": "general", + "label": [ + "D\u00e9partement fran\u00e7ais (46)" + ] } ], + "pid": "027236153", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Europe centrale" + "authorized_access_point": "Midi-Pyr\u00e9n\u00e9es (France)" + }, + { + "authorized_access_point": "Quercy (France)" } ], + "variant_access_point": [ + "Lot" + ], + "md5": "882cb04d456bfed64a4294c08df8d8b0" + }, + { + "authorized_access_point": "Lisbonne (Portugal)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027236668", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027234002", + "value": "http://www.idref.fr/027236668", "source": "IDREF" }, { "type": "uri", - "value": "http://d-nb.info/gnd/4078541-5", - "source": "GND" + "value": "http://catalogue.bnf.fr/ark:/12148/cb11932254f", + "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040785416", - "source": "GND" + "value": "(DE-101)040359190<" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/124321959" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "http://viaf.org/viaf/4031148574352124430001", - "source": "VIAF" + "value": "https://fr.wikipedia.org/wiki/Lisbonne" } ], - "variant_access_point": [ - "Magyarorsz\u00e1g" - ], - "authorized_access_point": "Hongrie" - }, - { - "md5": "abad9fe269ba0e350ec9ac48792c37cd", - "pid": "027234592", "note": [ { + "noteType": "dataSource", "label": [ - "Sous cette vedette on trouve les ouvrages qui traitent des pays o\u00f9 la majorit\u00e9 de la population est musulmane, ou dont l'islam est la religion reconnue" - ], - "noteType": "general" + "GLU" + ] } ], + "pid": "027236668", "type": "bf:Place", + "variant_access_point": [ + "Al-Uchb\u016bna (Portugal)", + "Felicitas Julia (ville ancienne)", + "Lisboa (Portugal)", + "Olisipo (ville ancienne)" + ], + "md5": "fd38bc2e66a93690f0164d5a482d796d" + }, + { + "authorized_access_point": "Louisiane (\u00c9tats-Unis)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027237257", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027234592", + "value": "http://www.idref.fr/027237257", "source": "IDREF" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11932087v", - "source": "BNF" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040731723", - "source": "GND" + "value": "(DE-101)040363945" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/173581056", - "source": "VIAF" + "value": "http://viaf.org/viaf/172764975" } ], - "variant_access_point": [ - "\u00c9tats islamiques", - "Islamiques, Pays", - "Musulmans, Pays", - "Pays musulmans" - ], - "authorized_access_point": "Pays islamiques" - }, - { - "md5": "956dfc25b132d05af33d8d3b80dabd40", - "pid": "027236536", "note": [ { + "noteType": "dataSource", + "label": [ + "GDEL" + ] + }, + { + "noteType": "general", "label": [ - "IFLA, Names of states, 1981. GLU" - ], - "noteType": "dataSource" + "En pr\u00e9cision de lieu employer La., par ex. Baton Rouge (La.)" + ] } ], + "pid": "027237257", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Proche-Orient" + "authorized_access_point": "\u00c9tats-Unis (Vieux Sud-Ouest)" + }, + { + "authorized_access_point": "\u00c9tats-Unis - \u00c9tats" } ], + "variant_access_point": [ + "Louisiana (\u00c9tats-Unis)" + ], + "md5": "69b88f92b4407d3c8551026852db5952" + }, + { + "authorized_access_point": "Malawi", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027238423", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027236536", + "value": "http://www.idref.fr/027238423", "source": "IDREF" }, { - "type": "bf:Nbn", - "value": "(DE-101)0403556", - "source": "GND" - }, - { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/4134148574352624430002", - "source": "VIAF" + "value": "http://viaf.org/viaf/8609148574329424430004" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Liban_(chanson)", - "source": "WIKIPEDIA" + "value": "https://fr.wikipedia.org/wiki/Malawi" } ], - "variant_access_point": [ - "Lubn\u0101n" - ], - "authorized_access_point": "Liban" - }, - { - "md5": "b7876c3257c100ec68d4dc1237343654", - "pid": "027236668", "note": [ { + "noteType": "dataSource", "label": [ - "GLU" - ], - "noteType": "dataSource" + "Names of states / IFLA, 1981. LCSH, 1985" + ] } ], + "pid": "027238423", "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Rhod\u00e9sie et du Nyassaland, F\u00e9d\u00e9ration de (1953-1963)" + }, + { + "authorized_access_point": "Afrique australe" + } + ], + "variant_access_point": [ + "Afrique centrale britannique", + "Nyasaland", + "Nyassaland" + ], + "md5": "53d55126cdee771020378a419d8020cb" + }, + { + "authorized_access_point": "M\u00e9sopotamie", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027239365", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027236668", + "value": "http://www.idref.fr/027239365", "source": "IDREF" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11932254f", - "source": "BNF" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040359190<", - "source": "GND" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/124321959", - "source": "VIAF" + "value": "(DE-101)040387887" }, { + "source": "VIAF", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Lisbonne", - "source": "WIKIPEDIA" + "value": "http://viaf.org/viaf/173636243" } ], - "variant_access_point": [ - "Al-Uchb\u016bna (Portugal)", - "Felicitas Julia (ville ancienne)", - "Lisboa (Portugal)", - "Olisipo (ville ancienne)" + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL" + ] + } ], - "authorized_access_point": "Lisbonne (Portugal)" + "pid": "027239365", + "type": "bf:Place", + "md5": "3a112ca2e8d9967ab8ae39f42006c2ba" }, { - "md5": "ad8327ffc6a38f6abf9f1c7a907751be", - "pid": "027237249", - "note": [ + "authorized_access_point": "Namibie", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027240525", + "identifiedBy": [ { - "label": [ - "GDEL", - "Encycl. Britannica", - "Paris-Londres, premi\u00e8res m\u00e9tropoles europ\u00e9ennes / INSEE-DRIF, 1991", - "Londres (Angleterre) ; Laval RVM, 1998-07" - ], - "noteType": "dataSource" + "type": "uri", + "value": "http://www.idref.fr/027240525", + "source": "IDREF" }, { - "label": [ - "Sous cette vedette, on trouve les ouvrages qui traitent de la ville de Londres dans ses d\u00e9finitions administratives successives (comt\u00e9 de Londres en 1888, Greater London depuis 1965). Le Grand Londres comprend 33 boroughs, largement autonomes depuis la dissolution du Greater London Council en 1986 : 14 pour les Inner boroughs (dont la Cit\u00e9), 19 pour les Outer boroughs. Les ouvrages qui ne traitent que des Outer boroughs se trouvent sous la vedette Londres (GB ; banlieue)", - "Par convention, les Inner boroughs sont consid\u00e9r\u00e9s comme des \"quartiers\" de Londres, les Outer boroughs comme des villes distinctes (LCNA et Laval RVM les prennent \u00e0 leur nom, localis\u00e9 \u00e0 Londres)" - ], - "noteType": "general" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb122216301", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04075202X" }, { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/2945152988203912790008" + } + ], + "note": [ + { + "noteType": "dataSource", "label": [ - "Voir aussi la subdivision Et Londres aux personnes et collectivit\u00e9s" - ], - "noteType": "seeReference" + "GLU. SWD, 1991" + ] } ], + "pid": "027240525", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Londres (GB ; agglom\u00e9ration)" - }, - { - "authorized_access_point": "Angleterre (GB ; sud-est)" + "authorized_access_point": "Afrique australe" } ], + "variant_access_point": [ + "Deutsch-S\u00fcdwestafrika", + "Namibia", + "South West Africa", + "Sud-Ouest africain", + "S\u00fcdwestafrika" + ], + "md5": "efd0e54384af9c0a497d55861b072d08" + }, + { + "authorized_access_point": "Antarctique", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027241912", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027237249", + "value": "http://www.idref.fr/027241912", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119323045", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15238492b", "source": "BNF" }, { - "type": "uri", - "value": "http://d-nb.info/gnd/4074335-4", - "source": "GND" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040743357", - "source": "GND" + "value": "(DE-101)040022080" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/172278143", - "source": "VIAF" + "value": "http://viaf.org/viaf/113150032973411180002" } ], - "relation_pid": { - "type": "redirect_from", - "value": "058632123" - }, - "variant_access_point": [ - "Augusta Tribonantum (ville ancienne)", - "Grand Londres (GB)", - "Greater London (GB)", - "Llyn Din (ville ancienne)", - "Londinium (ville ancienne)", - "Londres (GB) - Inner boroughs", - "Londres (GB ; comt\u00e9)", - "Londres (G.B.)", - "Londres (G. B.)" - ], - "authorized_access_point": "Londres (GB)" - }, - { - "md5": "49bd031ced726c54530fdb5dbed8effe", - "pid": "027237664", "note": [ { + "noteType": "dataSource", "label": [ - "M\u00e9diterran\u00e9e, R\u00e9gion de la ; Laval RVM, 1993-02", - "Ecology, biogeography and management of Pinus halepensis and P. brutia forest ecosystems in the Mediterranean Basin ; ISBN9057820552" - ], - "noteType": "dataSource" + "GLU, 1991. Encycl. universalis, 1989", + "Laval RVM, 1996-08" + ] }, { + "noteType": "general", "label": [ - "Sous cette vedette, on trouve les ouvrages qui traitent des \u00eeles et des r\u00e9gions riveraines de la M\u00e9diterran\u00e9e" - ], - "noteType": "general" + "Sous cette vedette on trouve les ouvrages sur le continent antarctique ainsi que sur les terres situ\u00e9es au sud du 60e parall\u00e8le, concern\u00e9es par le Trait\u00e9 sur l'Antarctique (1959)", + "Les lieux situ\u00e9s dans l'Antarctique sont localis\u00e9s \u00e0 Antarctique (sauf le p\u00f4le sud) ; ils s'utilisent en subdivision indirectement, par l'interm\u00e9diaire d'Antarctique" + ] } ], + "pid": "027241912", "type": "bf:Place", - "bnf_type": "sujet Rameau", - "narrower": [ - { - "authorized_access_point": "Afrique du Nord" - }, - { - "authorized_access_point": "Europe du Sud" - }, + "broader": [ { - "authorized_access_point": "M\u00e9diterran\u00e9e, \u00celes de la" + "authorized_access_point": "R\u00e9gions polaires" } ], + "variant_access_point": [ + "Antarctide", + "Antarctiques, R\u00e9gions", + "Continent antarctique", + "R\u00e9gions antarctiques", + "Terres antarctiques" + ], + "md5": "b8e0e3b1b9aa403a5b2244ef5889a33f" + }, + { + "authorized_access_point": "La R\u00e9union (France ; \u00eele)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027242005", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027237664", + "value": "http://www.idref.fr/027242005", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11932344d", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15326035w", "source": "BNF" }, { - "type": "uri", - "value": "http://d-nb.info/gnd/4074900-9", - "source": "GND" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040749002", - "source": "GND" + "value": "(DE-101)040496392" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/173035680", - "source": "VIAF" - }, - { - "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Bassin_m\u00e9diterran\u00e9en", - "source": "WIKIPEDIA" + "value": "http://viaf.org/viaf/129722462" } ], - "relation_pid": { - "type": "redirect_from", - "value": "059863188" - }, - "variant_access_point": [ - "Bassin m\u00e9diterran\u00e9en", - "M\u00e9diterran\u00e9e (mer ; r\u00e9gion)", - "M\u00e9diterran\u00e9e, Pays de la", - "M\u00e9diterran\u00e9ens, Pays", - "Pays de la M\u00e9diterran\u00e9e", - "Pays m\u00e9diterran\u00e9ens", - "R\u00e9gions m\u00e9diterran\u00e9ennes", - "R\u00e9gion m\u00e9diterran\u00e9enne" - ], - "authorized_access_point": "M\u00e9diterran\u00e9e (r\u00e9gion)" - }, - { - "md5": "5a2a1d07cfb488a5d52920b47560c160", - "pid": "027238180", "note": [ { + "noteType": "dataSource", "label": [ - "IFLA, Names of states, 1981. GLU" - ], - "noteType": "dataSource" + "IFLA, Names of states, 1981. GLU. BN ACO (en ligne), 1995-07-07. Laval RVM, 1995-02", + "https://www.insee.fr/fr/metadonnees/cog/, 2017-04-28", + "http://www.geonames.org/, 2017-04-28" + ] }, { + "noteType": "general", "label": [ - "De 1958 \u00e0 1976 : R\u00e9publique malgache" - ], - "noteType": "general" + "Emploi direct en subdivision : [Sujet] -- La R\u00e9union", + "D\u00e9partement d'outre-mer de la France" + ] } ], + "pid": "027242005", "type": "bf:Place", "broader": [ { "authorized_access_point": "Indien, \u00celes de l'oc\u00e9an" + }, + { + "authorized_access_point": "Mascareignes (\u00eeles)" + }, + { + "authorized_access_point": "France - D\u00e9partements et r\u00e9gions d'outre-mer" } ], - "deleted": "2024-07-16T19:52:36.233702+00:00", + "relation_pid": { + "value": "089774507", + "type": "redirect_from" + }, + "variant_access_point": [ + "Bonaparte, \u00cele (France)", + "Bourbon, \u00cele (France)", + "\u00cele Bourbon (France)", + "R\u00e9union, \u00cele de la (France)", + "\u00cele de La R\u00e9union (France)", + "R\u00e9union (France ; \u00eele)", + "La R\u00e9union", + "La R\u00e9union (\u00eele)", + "R\u00e9union" + ], + "md5": "fe113a29d7d189b6166354e441406bae" + }, + { + "authorized_access_point": "Rhin, Vall\u00e9e du", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027242676", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027238180", + "value": "http://www.idref.fr/027242676", "source": "IDREF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040744256", - "source": "GND" + "value": "(DE-101)041240626" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/146036991", - "source": "VIAF" + "value": "http://viaf.org/viaf/172385555" } ], + "pid": "027242676", + "type": "bf:Place", "variant_access_point": [ - "Madagaskar", - "Madagascar (\u00eele)", - "Rep\u00f3blika Malagasy", - "R\u00e9publique malgache", - "Madagascar" + "Vall\u00e9e du Rhin" ], - "authorized_access_point": "Madagascar" + "md5": "c8f8c1ce6e8fa94044078fbcb0e370b5" }, { - "md5": "504f3de5f62d5a2efc9d4eb2a78be0c9", - "pid": "027239365", - "note": [ - { - "label": [ - "GDEL" - ], - "noteType": "dataSource" - } - ], - "type": "bf:Place", + "authorized_access_point": "Polyn\u00e9sie", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027243265", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027239365", + "value": "http://www.idref.fr/027243265", "source": "IDREF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040387887", - "source": "GND" + "value": "(DE-101)040467090" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/173636243", - "source": "VIAF" - } - ], - "authorized_access_point": "M\u00e9sopotamie" - }, - { - "md5": "3f12e1a0c6da8d8ace6e38ba0ccc3d5c", - "pid": "027239497", - "note": [ - { - "label": [ - "IFLA, Names of states, 1981. GLU, 1991", - "Laval RVM, 1997-02" - ], - "noteType": "dataSource" + "value": "http://viaf.org/viaf/173418425" }, { - "label": [ - "Voir aussi la subdivision Et le Mexique aux personnes et collectivit\u00e9s" - ], - "noteType": "seeReference" + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Polyn\u00e9sie" } ], + "pid": "027243265", "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Oc\u00e9anie" + } + ], + "md5": "e1ae43b1f40f0b3767ad72ef540a0c00" + }, + { + "authorized_access_point": "Pays de langue allemande", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/02724606X", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027239497", + "value": "http://www.idref.fr/02724606X", "source": "IDREF" }, { "type": "uri", - "value": "http://d-nb.info/gnd/4039058-5", - "source": "GND" + "value": "http://catalogue.bnf.fr/ark:/12148/cb11933043g", + "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040390586", - "source": "GND" + "value": "(DE-101)040703703" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/173636258", - "source": "VIAF" - } - ], - "variant_access_point": [ - "Estados unidos mexicanos", - "M\u00e9jico", - "M\u00e9xico" - ], - "authorized_access_point": "Mexique" - }, - { - "md5": "5ab83fd2bad768829d255b4b56978332", - "pid": "027241912", - "note": [ - { - "label": [ - "GLU, 1991. Encycl. universalis, 1989", - "Laval RVM, 1996-08" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Sous cette vedette on trouve les ouvrages sur le continent antarctique ainsi que sur les terres situ\u00e9es au sud du 60e parall\u00e8le, concern\u00e9es par le Trait\u00e9 sur l'Antarctique (1959)", - "Les lieux situ\u00e9s dans l'Antarctique sont localis\u00e9s \u00e0 Antarctique (sauf le p\u00f4le sud) ; ils s'utilisent en subdivision indirectement, par l'interm\u00e9diaire d'Antarctique" - ], - "noteType": "general" + "value": "http://viaf.org/viaf/173145199" } ], + "pid": "02724606X", "type": "bf:Place", "broader": [ { - "authorized_access_point": "R\u00e9gions polaires" + "authorized_access_point": "Pays de langues germaniques" } ], + "variant_access_point": [ + "Pays germanophones", + "R\u00e9gions de langue allemande", + "Germanophonie", + "Europe germanophone" + ], + "md5": "bf6fb94d428a76fb9f84405461bb1bf6" + }, + { + "authorized_access_point": "Savoie (France ; r\u00e9gion)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027247740", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027241912", + "value": "http://www.idref.fr/027247740", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15238492b", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11933188q", "source": "BNF" }, { - "type": "bf:Nbn", - "value": "(DE-101)040022080", - "source": "GND" + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/172331909" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "http://viaf.org/viaf/113150032973411180002", - "source": "VIAF" + "value": "https://fr.wikipedia.org/wiki/Savoie" } ], - "variant_access_point": [ - "Antarctide", - "Antarctiques, R\u00e9gions", - "Continent antarctique", - "R\u00e9gions antarctiques", - "Terres antarctiques" - ], - "authorized_access_point": "Antarctique" - }, - { - "md5": "2a34e24a150951537d9edb3213007aed", - "pid": "027242005", "note": [ { + "noteType": "dataSource", "label": [ - "IFLA, Names of states, 1981. GLU. BN ACO (en ligne), 1995-07-07. Laval RVM, 1995-02", - "https://www.insee.fr/fr/metadonnees/cog/, 2017-04-28", - "http://www.geonames.org/, 2017-04-28" - ], - "noteType": "dataSource" + "GLU. Laval RVM, 2000-01" + ] }, { + "noteType": "general", "label": [ - "Emploi direct en subdivision : [Sujet] -- La R\u00e9union", - "D\u00e9partement d'outre-mer de la France" - ], - "noteType": "general" + "Sous cette vedette on trouve les documents sur la r\u00e9gion qui forme aujourd'hui les deux d\u00e9partements fran\u00e7ais de Savoie et de Haute-Savoie. Les documents sur le d\u00e9partement de la Savoie sont sous la vedette Savoie (France). Les documents sur la Savoie historique avant 1860 sont sous la vedette Savoie" + ] } ], + "pid": "027247740", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Indien, \u00celes de l'oc\u00e9an" - }, - { - "authorized_access_point": "Mascareignes (\u00eeles)" - }, - { - "authorized_access_point": "France - D\u00e9partements et r\u00e9gions d'outre-mer" + "authorized_access_point": "Rh\u00f4ne-Alpes (France)" } ], + "md5": "d6189628ad88eae7bf2606599aee884d" + }, + { + "authorized_access_point": "S\u00e9ville (Espagne)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027248704", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027242005", + "value": "http://www.idref.fr/027248704", "source": "IDREF" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15326035w", - "source": "BNF" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040496392", - "source": "GND" + "value": "(DE-101)04054671" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/129722462", - "source": "VIAF" + "value": "http://viaf.org/viaf/142678783" } ], - "relation_pid": { - "type": "redirect_from", - "value": "089774507" - }, - "variant_access_point": [ - "Bonaparte, \u00cele (France)", - "Bourbon, \u00cele (France)", - "\u00cele Bourbon (France)", - "R\u00e9union, \u00cele de la (France)", - "\u00cele de La R\u00e9union (France)", - "R\u00e9union (France ; \u00eele)", - "La R\u00e9union", - "La R\u00e9union (\u00eele)", - "R\u00e9union" - ], - "authorized_access_point": "La R\u00e9union (France ; \u00eele)" - }, - { - "md5": "4ffc2763dad6b5cd0821e6471d814e55", - "pid": "02724301X", "note": [ { + "noteType": "dataSource", "label": [ - "Rome (Italy) ; LCSH, 1988-12. Laval RVM, 1988-12" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Sous cette vedette, on trouve les ouvrages sur la ville de Rome, ancienne et moderne. Les ouvrages sur l'\u00c9tat romain antique se trouvent sous la vedette Rome" - ], - "noteType": "general" + "GDEL" + ] } ], + "pid": "027248704", "type": "bf:Place", + "variant_access_point": [ + "Sevilla (Espagne)" + ], + "md5": "fd80994177f4c18616de134cc9645135" + }, + { + "authorized_access_point": "Pays socialistes", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027248933", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/02724301X", + "value": "http://www.idref.fr/027248933", "source": "IDREF" }, { "type": "uri", - "value": "https://catalogue.bnf.fr/ark:/12148/cb11932804j", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119332807", "source": "BNF" }, { - "type": "uri", - "value": "http://d-nb.info/gnd/4050471-2", - "source": "GND" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040504719", - "source": "GND" + "value": "(DE-101)040558134" }, { - "type": "bf:Nbn", - "value": "(DE-101)040504719", - "source": "GND" - }, + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/315125192" + } + ], + "pid": "027248933", + "type": "bf:Place", + "related": [ + { + "authorized_access_point": "Anciens pays socialistes" + } + ], + "variant_access_point": [ + "Bloc sovi\u00e9tique", + "Communistes, \u00c9tats", + "D\u00e9mocraties populaires", + "\u00c9tats communistes", + "\u00c9tats socialistes", + "Pays communistes", + "Pays du rideau de fer", + "Pays satellites sovi\u00e9tiques", + "Satellites sovi\u00e9tiques (Pays)", + "Socialistes, \u00c9tats", + "Socialistes, Pays" + ], + "md5": "da2a669fd9fc67cdb59b5fc278a63033" + }, + { + "authorized_access_point": "Bal\u00e9ares (Espagne)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027250199", + "identifiedBy": [ { "type": "uri", - "value": "https://d-nb.info/gnd/4050471-2", - "source": "GND" + "value": "http://www.idref.fr/027250199", + "source": "IDREF" }, { "type": "uri", - "value": "http://viaf.org/viaf/159835544", - "source": "VIAF" + "value": "http://catalogue.bnf.fr/ark:/12148/cb11933372w", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040690989" }, { + "source": "VIAF", "type": "uri", - "value": "https://ark.frantiq.fr/ark:/26678/pcrtW9ctTWwSAK", - "source": "PACTOLS" + "value": "http://viaf.org/viaf/130205220" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Rome", - "source": "WIKIPEDIA" + "value": "https://fr.wikipedia.org/wiki/\u00celes_Bal\u00e9ares" } ], - "variant_access_point": [ - "Roma (Italie)" - ], - "authorized_access_point": "Rome (Italie)" - }, - { - "md5": "3d0c030aa8ff22acc8cdf5b6f71b2fb4", - "pid": "027243222", "note": [ { + "noteType": "dataSource", "label": [ - "IFLA, Names of states, 1981. GLU, 1991", - "Laval RVM, 1996-02" - ], - "noteType": "dataSource" + "GLU. SY 1993/94" + ] }, { + "noteType": "general", "label": [ - "Voir aussi la subdivision Et la Pologne aux personnes et collectivit\u00e9s" - ], - "noteType": "seeReference" + "Communaut\u00e9 autonome de l'Espagne depuis 1983" + ] } ], + "pid": "027250199", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Europe centrale" - }, - { - "authorized_access_point": "Pays slaves" - } - ], - "bnf_type": "sujet Rameau", - "identifiedBy": [ - { - "type": "uri", - "value": "http://www.idref.fr/027243222", - "source": "IDREF" - }, - { - "type": "uri", - "value": "http://d-nb.info/gnd/4046496-9 ", - "source": "GND" + "authorized_access_point": "M\u00e9diterran\u00e9e, \u00celes de la" }, { - "type": "bf:Nbn", - "value": "(DE-101)040464962", - "source": "GND" + "authorized_access_point": "Pays catalans" }, { - "type": "uri", - "value": "http://viaf.org/viaf/173581060", - "source": "VIAF" + "authorized_access_point": "Espagne - Communaut\u00e9s autonomes" } ], "variant_access_point": [ - "Polska" + "Balears (Espagne)", + "Illes Balears (Espagne)", + "Islas Baleares (Espagne)" ], - "authorized_access_point": "Pologne" + "md5": "21390f9b24b0a6a61d5b8865b8f16508" }, { - "md5": "0c79969cec313b5063fa3275a09517e4", - "pid": "027244482", - "note": [ - { - "label": [ - "Laval RVM, 1992-02" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Sous cette vedette, on trouve les ouvrages qui traitent de la r\u00e9gion du Proche-Orient comprise entre le Liban, la Mer Morte, la M\u00e9diterran\u00e9e et le d\u00e9sert de Syrie, correspondant \u00e0 l'ancien pays de Canaan, puis aux royaumes d'Israe\u034f\u0308l et de Juda et actuellement \u00e0 l'\u00c9tat d'Israe\u034f\u0308l ainsi qu'aux divers territoires \u00e0 juridiction contest\u00e9e. Les ouvrages sur un territoire en particulier se trouvent \u00e0 son nom propre" - ], - "noteType": "general" - } - ], - "type": "bf:Place", - "broader": [ - { - "authorized_access_point": "Proche-Orient" - } - ], + "authorized_access_point": "Barcelone (Espagne)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027250210", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027244482", + "value": "http://www.idref.fr/027250210", "source": "IDREF" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11932928t", - "source": "BNF" - }, - { - "type": "uri", - "value": "http://d-nb.info/gnd/4044381-4", - "source": "GND" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040443817", - "source": "GND" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/138926424", - "source": "VIAF" + "value": "(DE-101)04004503X" }, { + "source": "VIAF", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Palestine_(Arkansas)", - "source": "WIKIPEDIA" + "value": "http://viaf.org/viaf/173418460" } ], - "variant_access_point": [ - "Terre sainte", - "\u0641\u0644\u0633\u0637\u064a\u0646", - "Filas\u1e6d\u012bn" - ], - "authorized_access_point": "Palestine" - }, - { - "md5": "31e634102abcd01b55344db7c7707f35", - "pid": "027244520", "note": [ { + "noteType": "dataSource", "label": [ - "GLU" - ], - "noteType": "dataSource" + "GLU. Guide bleu, Epagne, 1992" + ] } ], + "pid": "027250210", "type": "bf:Place", "broader": [ { - "authorized_access_point": "\u00cele-de-France (France)" + "authorized_access_point": "Barcelone (Espagne ; province)" } ], + "variant_access_point": [ + "Barcelona (Espagne)", + "Barcino (ville ancienne)", + "Barcinona (ville ancienne)" + ], + "md5": "3dc79b1cb80d0a2eca0d936597d5f573" + }, + { + "authorized_access_point": "Bari (Italie)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027250245", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027244520", + "value": "http://www.idref.fr/027250245", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb152821567", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119333768", "source": "BNF" }, { - "type": "bf:Nbn", - "value": "(DE-101)040446603", - "source": "GND" - }, - { - "type": "uri", - "value": "http://d-nb.info/gnd/4044660-8", - "source": "GND" - }, - { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/260846891", - "source": "VIAF" + "value": "http://viaf.org/viaf/172547104" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Paris-France", - "source": "WIKIPEDIA" + "value": "https://fr.wikipedia.org/wiki/Bari" } ], - "variant_access_point": [ - "Lut\u00e8ce (ville ancienne)", - "Lutetia Parisiorum (ville ancienne)", - "Paris", - "Paname" - ], - "authorized_access_point": "Paris (France)" - }, - { - "md5": "2568896ba3cfb0803dc0a5f599d7f826", - "pid": "02724606X", - "type": "bf:Place", - "broader": [ + "note": [ { - "authorized_access_point": "Pays de langues germaniques" + "noteType": "dataSource", + "label": [ + "Atlas Le Monde" + ] } ], + "pid": "027250245", + "type": "bf:Place", + "md5": "c59d414b92bc18801a9df299e9e2c6bb" + }, + { + "authorized_access_point": "Boh\u00eame (R\u00e9publique tch\u00e8que)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027250393", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/02724606X", + "value": "http://www.idref.fr/027250393", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11933043g", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11933389m", "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040703703", - "source": "GND" + "value": "(DE-101)040074676" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/173145199", - "source": "VIAF" + "value": "http://viaf.org/viaf/172547115" } ], - "variant_access_point": [ - "Pays germanophones", - "R\u00e9gions de langue allemande", - "Germanophonie", - "Europe germanophone" - ], - "authorized_access_point": "Pays de langue allemande" - }, - { - "md5": "3f374de115c2e23964659484009a8e65", - "pid": "027249654", "note": [ { + "noteType": "dataSource", "label": [ - "IFLA, Names of states, 1981. GLU, 1991", - "Laval RVM, 1997-02" - ], - "noteType": "dataSource" + "GLU" + ] }, { + "noteType": "general", "label": [ - "Voir aussi la subdivision Et la Suisse aux personnes et collectivit\u00e9s" - ], - "noteType": "seeReference" + "Sous cette vedette, on trouve les ouvrages qui traitent de la Boh\u00eame au sens strict, ou, pour la p\u00e9riode allant jusqu'\u00e0 1918, de l'ensemble des pays relevant de la couronne de Boh\u00eame, incluant notemment le margraviat de Moravie" + ] } ], + "pid": "027250393", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Europe centrale" + "authorized_access_point": "R\u00e9publique tch\u00e8que" } ], + "variant_access_point": [ + "Boh\u00eame", + "Boh\u00eame (Royaume)", + "B\u00f6hmen (R\u00e9publique tch\u00e8que)", + "\u010cechy (R\u00e9publique tch\u00e8que)", + "Couronne de Boh\u00eame, Pays de la", + "Pays tch\u00e8ques" + ], + "md5": "02c87c356b9d38893f531815817c748c" + }, + { + "authorized_access_point": "Bologne (Italie)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027250407", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027249654", + "value": "http://www.idref.fr/027250407", "source": "IDREF" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15241146v", - "source": "BNF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11933332n", - "source": "BNF" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040538818", - "source": "GND" + "value": "(DE-101)040076164" }, { + "source": "VIAF", "type": "uri", - "value": "https://d-nb.info/gnd/4053881-3", - "source": "GND" + "value": "http://viaf.org/viaf/242997663" }, { + "source": "PACTOLS", "type": "uri", - "value": "http://viaf.org/viaf/3896148574351624430005", - "source": "VIAF" + "value": "https://ark.frantiq.fr/ark:/26678/pcrtxAvrNy1ySE" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Suisse_(Moselle)", - "source": "WIKIPEDIA" + "value": "https://fr.wikipedia.org/wiki/Bologne" } ], - "variant_access_point": [ - "Conf\u00e9d\u00e9ration helv\u00e9tique", - "Confederazione svizzera", - "Helvetia", - "Helv\u00e9tie", - "Schweiz", - "Schweizerische Eidgenossenschaft", - "Svizra", - "Svizzera" - ], - "authorized_access_point": "Suisse" - }, - { - "md5": "25dfb2efd760f151c22517bd63973b21", - "pid": "02725030X", "note": [ { + "noteType": "dataSource", "label": [ - "IFLA, Names of states, 1981. SY, 1990/1991" - ], - "noteType": "dataSource" + "Atlas Le Monde. GDEL" + ] } ], + "pid": "027250407", "type": "bf:Place", - "broader": [ - { - "authorized_access_point": "Benelux" - }, - { - "authorized_access_point": "Pays de l'Union europ\u00e9enne" - } + "variant_access_point": [ + "Bologna (Italie)" ], + "md5": "b185908b60c2f4a856939d684191b646" + }, + { + "authorized_access_point": "Bruxelles (Belgique)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027250547", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/02725030X", + "value": "http://www.idref.fr/027250547", "source": "IDREF" }, { - "type": "uri", - "value": "http://d-nb.info/gnd/4005406-8", - "source": "GND" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040054063", - "source": "GND" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/7718148574367424430004", - "source": "VIAF" + "value": "(DE-101)040084604" }, { + "source": "VIAF", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Belgium_(village_du_Wisconsin)", - "source": "WIKIPEDIA" + "value": "http://viaf.org/viaf/8187154983561567860004" } ], - "variant_access_point": [ - "Belgie\u034f\u0308", - "Belgien", - "Pays-Bas m\u00e9ridionaux", - "Pays-Bas autrichiens", - "Pays-Bas espagnols", - "S\u00fcdliche Niederlande", - "Zuidelijke Nederlanden" - ], - "authorized_access_point": "Belgique" - }, - { - "md5": "c0ace3f9408f195aa3ceb8c5d0d180bc", - "pid": "027250504", "note": [ { + "noteType": "dataSource", "label": [ - "Dict. communes, 1984 - Saint-Sauveur, \u00e9galement appel\u00e9e Saint-Sauveur-de-Givre-en-Mai, est une ancienne commune fran\u00e7aise situ\u00e9e dans le d\u00e9partement des Deux-S\u00e8vres et la r\u00e9gion Poitou-Charentes. Elle est associ\u00e9e \u00e0 la commune de Bressuire depuis 1973." - ], - "noteType": "dataSource" + "GDEL" + ] } ], + "pid": "027250547", "type": "bf:Place", + "variant_access_point": [ + "Bruxelles", + "Brussel (Belgique)" + ], + "md5": "643f45f209a91c058b6f461d92d4e47b" + }, + { + "authorized_access_point": "Californie (\u00c9tats-Unis)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027250636", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027250504", + "value": "http://www.idref.fr/027250636", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11854138n", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11933409d", "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040293076" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/172438990" } ], - "variant_access_point": [ - "Saint-Sauveur-de-Givre-en-Mai" - ], - "authorized_access_point": "Bressuire (Deux-S\u00e8vres)" - }, - { - "md5": "14ad4d2f53be2abfbfd06f6515cd2389", - "pid": "027250636", "note": [ { + "noteType": "dataSource", "label": [ "GLU" - ], - "noteType": "dataSource" + ] }, { + "noteType": "general", "label": [ "En pr\u00e9cision de lieu, employer Calif., par ex. Los Angeles (Calif.)" - ], - "noteType": "general" + ] } ], + "pid": "027250636", "type": "bf:Place", "broader": [ { @@ -2712,281 +2303,271 @@ "authorized_access_point": "\u00c9tats-Unis - \u00c9tats" } ], + "variant_access_point": [ + "California (\u00c9tats-Unis)", + "Californie" + ], + "md5": "1bc0dbd39772041056e5965c8e5eb6d4" + }, + { + "authorized_access_point": "Canaries", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027250695", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027250636", + "value": "http://www.idref.fr/027250695", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11933409d", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12263408m", "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040293076", - "source": "GND" + "value": "(DE-101)04073188X" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/148386330" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "http://viaf.org/viaf/172438990", - "source": "VIAF" + "value": "https://fr.wikipedia.org/wiki/\u00celes_Canaries" } ], - "variant_access_point": [ - "California (\u00c9tats-Unis)", - "Californie" - ], - "authorized_access_point": "Californie (\u00c9tats-Unis)" - }, - { - "md5": "0fcf9c94ae9f97da0c9bd90bfc5e6744", - "pid": "027250644", "note": [ { + "noteType": "dataSource", + "label": [ + "SY, 1987/1988. GDEL. Laval RVM suppl., 1987" + ] + }, + { + "noteType": "general", "label": [ - "Pays et capitales du monde / IGN, 1986 ; GLU ; Encycl. universalis, 1984, t.4, p.69 sq. Cambodia ; SY, 1992/1993" - ], - "noteType": "dataSource" + "Cette vedette s'emploie directement en subdivision de lieu : [Sujet] -- Canaries. Les lieux situ\u00e9s aux Canaries sont localis\u00e9s \u00e0 (Canaries)", + "Communaut\u00e9 autonome de l'Espagne. La capitale r\u00e9gionale est alternativement Las Palmas et Santa Cruz de Tenerife" + ] } ], + "pid": "027250695", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Indochine" + "authorized_access_point": "Atlantique, \u00celes de l'" + }, + { + "authorized_access_point": "Espagne - Communaut\u00e9s autonomes" } ], + "variant_access_point": [ + "Canaries (\u00eeles)", + "\u00celes Fortun\u00e9es", + "Fortun\u00e9es (\u00eeles)", + "Canarias" + ], + "md5": "111b05da47ae72935113012054dcf3ff" + }, + { + "authorized_access_point": "Cher (France)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027250857", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027250644", + "value": "http://www.idref.fr/027250857", "source": "IDREF" }, { - "type": "bf:Nbn", - "value": "(DE-101)04029400", - "source": "GND" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11933428p", + "source": "BNF" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/134861112", - "source": "VIAF" + "value": "http://viaf.org/viaf/137228189" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Cambodge", - "source": "WIKIPEDIA" + "value": "https://fr.wikipedia.org/wiki/Cher_(d\u00e9partement)" } ], - "relation_pid": { - "type": "redirect_from", - "value": "094318433" - }, - "variant_access_point": [ - "Kamb\u016bj\u0101", - "Kampuchea", - "Kampuchea d\u00e9mocratique", - "Khm\u00e8re, R\u00e9publique", - "R\u00e9publique khm\u00e8re" - ], - "authorized_access_point": "Cambodge" - }, - { - "md5": "84214c81ce63e5101f07b69a5d37ab0e", - "pid": "027250679", "note": [ { + "noteType": "dataSource", "label": [ - "IFLA, Names of states, 1981. GLU, 1991", - "Laval RVM, 1997-02" - ], - "noteType": "dataSource" + "GLU, 1991" + ] }, { + "noteType": "general", "label": [ - "Bas- et Haut-Canada : 1791-1840 ; Province du Canada ou Canada-Uni (1840-1867) ; Dominion du Canada (depuis le 01-07-1867)" - ], - "noteType": "general" + "D\u00e9partement fran\u00e7ais (18)" + ] } ], + "pid": "027250857", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Am\u00e9rique du Nord" - } - ], - "bnf_type": "sujet Rameau", - "narrower": [ + "authorized_access_point": "Berry (France)" + }, { - "authorized_access_point": "R\u00e9gion frontali\u00e8re canado-am\u00e9ricaine" + "authorized_access_point": "Centre (France)" } ], + "variant_access_point": [ + "Cher", + "Haut Berry (France)" + ], + "md5": "a4fc78ad04f0b6b139456f4beb63f831" + }, + { + "authorized_access_point": "Chypre", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027250873", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027250679", + "value": "http://www.idref.fr/027250873", "source": "IDREF" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb120149708", - "source": "BNF" - }, - { - "type": "uri", - "value": "http://d-nb.info/gnd/4029456-0", - "source": "GND" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040294560", - "source": "GND" + "value": "(DE-101)040795969" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/259064546", - "source": "VIAF" + "value": "http://viaf.org/viaf/174324116" } ], - "variant_access_point": [ - "Am\u00e9rique du Nord britannique", - "British North America", - "Canada (Dominion)", - "Canada (Province)", - "Canada-Uni" - ], - "authorized_access_point": "Canada" - }, - { - "md5": "8eea9641cf3a845b1c8637b928d71410", - "pid": "027250911", "note": [ { + "noteType": "dataSource", "label": [ - "Cor\u00e9e du Sud ; Laval RVM, 1994-08. Han'guk (Min'guk) ; GKD, 1980" - ], - "noteType": "dataSource" + "IFLA, Names of states, 1981. GDEL. SY, 1987/1988. Laval RVM suppl., 1987" + ] }, { + "noteType": "general", "label": [ - "En pr\u00e9cision g\u00e9ographique, employer Cor\u00e9e S., par ex. S\u00e9oul (Cor\u00e9e S.)", - "Le Royaume de Cor\u00e9e fut colonis\u00e9 par le Japon de 1905 \u00e0 la fin de la Seconde guerre mondiale. La partition, en 1945, en 2 zones d'occupation (USA et URSS) aboutit le 15 ao\u00fbt 1948 \u00e0 la proclamation de la R\u00e9publique de Cor\u00e9e. Capitale S\u00e9oul, langue officielle cor\u00e9en" - ], - "noteType": "general" + "Sous cette vedette, on trouve les ouvrages qui traitent de l'\u00eele de Chypre et/ou de la R\u00e9publique de Chypre, au territoire r\u00e9duit \u00e0 la suite de l'intervention turque de 1974. Les ouvrages qui traitent exclusivement de la R\u00e9publique turque de Chypre du Nord se trouvent sous la vedette : Chypre du Nord (R\u00e9publique turque)" + ] } ], + "pid": "027250873", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Cor\u00e9e" + "authorized_access_point": "M\u00e9diterran\u00e9e, \u00celes de la" + }, + { + "authorized_access_point": "Proche-Orient" } ], + "relation_pid": { + "value": "059675527", + "type": "redirect_from" + }, + "variant_access_point": [ + "Cyprus", + "Kibris", + "Kypros" + ], + "md5": "d5925c67171b3d7248fc6d8e911674af" + }, + { + "authorized_access_point": "Copenhague (Danemark)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/02725089X", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027250911", + "value": "http://www.idref.fr/02725089X", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb152988753", - "source": "BNF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119334338", + "value": "http://catalogue.bnf.fr/ark:/12148/cb152399621", "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040780295", - "source": "GND" + "value": "(DE-101)040323994" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/139094665", - "source": "VIAF" - }, - { - "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Gouvernement_militaire_de_l'arm\u00e9e_des_\u00c9tats-Unis_en_Cor\u00e9e", - "source": "WIKIPEDIA" + "value": "http://viaf.org/viaf/300998144" } ], - "variant_access_point": [ - "Han Kook", - "Cor\u00e9e du Sud", - "R\u00e9publique de Cor\u00e9e", - "Cor\u00e9e, R\u00e9publique de", - "Cor\u00e9e, R\u00e9publique de (1948-....)" - ], - "authorized_access_point": "Cor\u00e9e (R\u00e9publique)" - }, - { - "md5": "65b7ea2f0753df6b4d8216be3205a079", - "pid": "027250938", "note": [ { + "noteType": "dataSource", "label": [ - "GDEL" - ], - "noteType": "dataSource" + "BN ACO" + ] } ], + "pid": "02725089X", "type": "bf:Place", - "broader": [ - { - "authorized_access_point": "M\u00e9diterran\u00e9e, \u00celes de la" - }, + "narrower": [ { - "authorized_access_point": "France - R\u00e9gions" + "authorized_access_point": "Copenhague (Danemark) - Quartier de Frederiksstaden" } ], + "variant_access_point": [ + "K\u00f8benhavn (Danemark)", + "Hauniae (Danemark)", + "Hafniae (Danemark)" + ], + "md5": "8a9eae490542508335708af34c8110ff" + }, + { + "authorized_access_point": "Cuba", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/02725108X", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027250938", + "value": "http://www.idref.fr/02725108X", "source": "IDREF" }, { "type": "uri", - "value": "http://d-nb.info/gnd/4032527-1", - "source": "GND" + "value": "http://catalogue.bnf.fr/ark:/12148/cb119334489", + "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)04032527X", - "source": "GND" + "value": "(DE-101)04033340X" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/266664107", - "source": "VIAF" + "value": "http://viaf.org/viaf/162884679" } ], - "variant_access_point": [ - "Corse", - "Corse, \u00eele de (France)", - "Corsica (France)" - ], - "authorized_access_point": "Corse (France)" - }, - { - "md5": "ee6d223a97236cdebbd28fc0b033da7d", - "pid": "02725108X", "note": [ { + "noteType": "dataSource", "label": [ "IFLA, Names of states, 1981" - ], - "noteType": "dataSource" + ] } ], + "pid": "02725108X", "type": "bf:Place", "broader": [ { @@ -2996,406 +2577,439 @@ "authorized_access_point": "Grandes Antilles" } ], + "md5": "53cd15e7b7e46bd7c367be97d5a26a97" + }, + { + "authorized_access_point": "Dauphin\u00e9 (France)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027251160", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/02725108X", + "value": "http://www.idref.fr/027251160", "source": "IDREF" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119334489", - "source": "BNF" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)04033340X", - "source": "GND" + "value": "(DE-101)040909255" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/162884679", - "source": "VIAF" + "value": "http://viaf.org/viaf/141826527" } ], - "authorized_access_point": "Cuba" - }, - { - "md5": "b1e2591463c0f2fdacba7131c1602289", - "pid": "027251411", "note": [ { + "noteType": "dataSource", "label": [ - "GLU, 1991. Mourre, 1986", - "Laval RVM, 1997-02" - ], - "noteType": "dataSource" + "GDEL" + ] } ], + "pid": "027251160", "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Rh\u00f4ne-Alpes (France)" + } + ], + "variant_access_point": [ + "Dauphin\u00e9 de Viennois" + ], + "md5": "7aef2ff06c738b210a61f7b3d7be98f2" + }, + { + "authorized_access_point": "Soudan", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027251594", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027251411", + "value": "http://www.idref.fr/027251594", "source": "IDREF" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11933474v", - "source": "BNF" - }, - { - "type": "uri", - "value": "http://d-nb.info/gnd/4062501-1", - "source": "GND" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)04062501X", - "source": "GND" + "value": "(DE-101)040583783" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/136651400", - "source": "VIAF" + "value": "http://viaf.org/viaf/150756275" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Venise", - "source": "WIKIPEDIA" + "value": "https://fr.wikipedia.org/wiki/Soudan" } ], - "variant_access_point": [ - "Venezia (Italie)", - "Venise (R\u00e9publique)" - ], - "authorized_access_point": "Venise (Italie)" - }, - { - "md5": "8b5f28d47a4a6edfbc29adbd0111b078", - "pid": "027251551", "note": [ { + "noteType": "dataSource", "label": [ - "GDEL" - ], - "noteType": "dataSource" + "IFLA, Names of states, 1981. GDEL" + ] } ], + "pid": "027251594", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Italie (sud)" - }, - { - "authorized_access_point": "M\u00e9diterran\u00e9e, \u00celes de la" + "authorized_access_point": "Afrique du Nord-Est" }, { - "authorized_access_point": "Italie - R\u00e9gions" + "authorized_access_point": "Moyen-Orient" } ], + "variant_access_point": [ + "Soudan anglo-\u00e9gyptien", + "Sudan", + "\u0627\u0644\u0633\u0648\u062f\u0627\u0646", + "Al-S\u016bd\u0101n" + ], + "md5": "d7a15ca0a7c68344826c265e23c2f097" + }, + { + "authorized_access_point": "Tha\u00eflande", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027251659", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027251551", + "value": "http://www.idref.fr/027251659", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11933486v", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11933494g", "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040551938", - "source": "GND" + "value": "(DE-101)04078228X" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/128149106013968490737", - "source": "VIAF" + "value": "http://viaf.org/viaf/138308059" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Sicile", - "source": "WIKIPEDIA" + "value": "https://fr.wikipedia.org/wiki/Tha\u00eflande" } ], - "variant_access_point": [ - "Sicile", - "Sicile (Royaume)", - "Sicilia (Italie)", - "Trinacrie", - "Trinacria" - ], - "authorized_access_point": "Sicile (Italie)" - }, - { - "md5": "1ca8b275185aa0489230935cdb50c420", - "pid": "027251659", "note": [ { + "noteType": "dataSource", "label": [ "Names of states / IFLA, 1981. SY, 1986/1987" - ], - "noteType": "dataSource" + ] } ], + "pid": "027251659", "type": "bf:Place", "broader": [ { "authorized_access_point": "Indochine" } ], + "variant_access_point": [ + "Muang-Thai", + "Prathet Thai", + "Siam" + ], + "md5": "ea19525e9bee11dba7834bb2f050b4e8" + }, + { + "authorized_access_point": "Marrakech (Maroc)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027251810", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027251659", + "value": "http://www.idref.fr/027251810", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11933494g", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12570735b", "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)04078228X", - "source": "GND" + "value": "(DE-101)040376842" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/138308059", - "source": "VIAF" + "value": "http://viaf.org/viaf/138361991" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Tha\u00eflande", - "source": "WIKIPEDIA" + "value": "https://fr.wikipedia.org/wiki/Marrakech" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. BN Service arabe" + ] } ], + "pid": "027251810", + "type": "bf:Place", "variant_access_point": [ - "Muang-Thai", - "Prathet Thai", - "Siam" + "Marr\u0101ku\u0161 (Maroc)" ], - "authorized_access_point": "Tha\u00eflande" + "md5": "0b763791d48d28ee0555a82f72fe1a4f" }, { - "md5": "fc7debc086b369e2fab675cb6b9d5492", - "pid": "027252124", + "authorized_access_point": "M\u00e9diterran\u00e9e (mer)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027251861", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027251861", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/307211045" + } + ], "note": [ { + "noteType": "dataSource", "label": [ "GDEL" - ], - "noteType": "dataSource" + ] } ], + "pid": "027251861", "type": "bf:Place", - "related": [ + "narrower": [ + { + "authorized_access_point": "M\u00e9diterran\u00e9e (mer ; sud-ouest)" + }, { - "authorized_access_point": "Moscou (Russie) - Histoire" + "authorized_access_point": "M\u00e9diterran\u00e9e (mer ; est)" } ], + "variant_access_point": [ + "M\u00e9diterran\u00e9e" + ], + "md5": "43f950b070d303984e7ab75d9e1d0f63" + }, + { + "authorized_access_point": "Mozambique", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027252132", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027252124", + "value": "http://www.idref.fr/027252132", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11933531v", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12246813m", "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040749878", - "source": "GND" + "value": "(DE-101)040397866" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/142519565", - "source": "VIAF" + "value": "http://viaf.org/viaf/130895295" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Moscou", - "source": "WIKIPEDIA" + "value": "https://fr.wikipedia.org/wiki/R\u00e9publique_populaire_du_Mozambique" } ], - "variant_access_point": [ - "Moscou", - "Moskva (Russie)" - ], - "authorized_access_point": "Moscou (Russie)" - }, - { - "md5": "e6474f3582d2a2f395d8b32138005d91", - "pid": "027252272", "note": [ { + "noteType": "dataSource", "label": [ - "GLU" - ], - "noteType": "dataSource" + "Names of states / IFLA, 1981. LCSH, 1985" + ] + } + ], + "pid": "027252132", + "type": "bf:Place", + "narrower": [ + { + "authorized_access_point": "Inhambane (Mozambique ; province)" }, { - "label": [ - "Sous cette vedette on trouve les ouvrages qui traitent de l'ensemble de l'empire turc osmanli. Les ouvrages sur la R\u00e9publique turque ou sur la seule Anatolie se trouvent sous la vedette Turquie" - ], - "noteType": "general" + "authorized_access_point": "Nampula (Mozambique ; province)" + }, + { + "authorized_access_point": "Zamb\u00e9zie (Mozambique)" } ], - "type": "bf:Place", "broader": [ { - "authorized_access_point": "Orient" + "authorized_access_point": "Afrique australe" } ], + "relation_pid": { + "value": "031209068", + "type": "redirect_from" + }, + "variant_access_point": [ + "Mo\u00e7ambique" + ], + "md5": "bc23ab983c7fcca9e3d97fb641f12d85" + }, + { + "authorized_access_point": "N\u00e9pal", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027252175", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027252272", + "value": "http://www.idref.fr/027252175", "source": "IDREF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)04075720X", - "source": "GND" + "value": "(DE-101)040416127" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/5493148574275724430005", - "source": "VIAF" + "value": "http://viaf.org/viaf/5689148574317624430000" } ], - "variant_access_point": [ - "Empire turc", - "Ottoman, Empire" - ], - "authorized_access_point": "Empire ottoman" - }, - { - "md5": "00ffe89cc4693f3c847a9d5709cd6f3e", - "pid": "027252361", "note": [ { + "noteType": "dataSource", "label": [ - "IFLA, Names of states, 1981" - ], - "noteType": "dataSource" + "Names of states / IFLA, 1981" + ] } ], + "pid": "027252175", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Benelux" - }, - { - "authorized_access_point": "Pays de l'Union europ\u00e9enne" + "authorized_access_point": "Asie du Sud" } ], + "md5": "a36e26eceef827713f6c876793938d4a" + }, + { + "authorized_access_point": "Empire ottoman", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027252272", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027252361", + "value": "http://www.idref.fr/027252272", "source": "IDREF" }, { - "type": "uri", - "value": "https://catalogue.bnf.fr/ark:/12148/cb11933554h", - "source": "BNF" - }, - { - "type": "uri", - "value": "http://d-nb.info/gnd/4042203-3", - "source": "GND" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040422038", - "source": "GND" + "value": "(DE-101)04075720X" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/1557150033026211180005", - "source": "VIAF" + "value": "http://viaf.org/viaf/5493148574275724430005" } ], - "variant_access_point": [ - "Nederland", - "Provinces-Unies" - ], - "authorized_access_point": "Pays-Bas" - }, - { - "md5": "0b49dfaff1531150b0fc3f8bbeb7049d", - "pid": "027252388", "note": [ { + "noteType": "dataSource", "label": [ - "IFLA, Names of states, 1981", - "Laval RVM, 1996-02" - ], - "noteType": "dataSource" + "GLU" + ] + }, + { + "noteType": "general", + "label": [ + "Sous cette vedette on trouve les ouvrages qui traitent de l'ensemble de l'empire turc osmanli. Les ouvrages sur la R\u00e9publique turque ou sur la seule Anatolie se trouvent sous la vedette Turquie" + ] } ], + "pid": "027252272", "type": "bf:Place", - "bnf_type": "sujet Rameau", - "narrower": [ + "broader": [ { - "authorized_access_point": "Amazonie (P\u00e9rou)" + "authorized_access_point": "Orient" } ], + "variant_access_point": [ + "Empire turc", + "Ottoman, Empire" + ], + "md5": "5c011c04d54ecd6163551beb7b01b038" + }, + { + "authorized_access_point": "Rh\u00e9nanie du Nord-Westphalie (Allemagne)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027252485", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027252388", + "value": "http://www.idref.fr/027252485", "source": "IDREF" }, { - "type": "uri", - "value": "http://d-nb.info/gnd/4045312-1", - "source": "GND" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)04045312X", - "source": "GND" + "value": "(DE-101)040425703" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/175126463", - "source": "VIAF" + "value": "http://viaf.org/viaf/173527834" } ], - "variant_access_point": [ - "Per\u00fa" - ], - "authorized_access_point": "P\u00e9rou" - }, - { - "md5": "4106fa410577d0648c2c532ff13f53f9", - "pid": "027252620", "note": [ { + "noteType": "dataSource", "label": [ - "GDEL" - ], - "noteType": "dataSource" + "GDEL. Nordrhein-Westfalen ; GKD, 1980 ; BN ACO" + ] } ], + "pid": "027252485", "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Rh\u00e9nanie (Allemagne)" + }, + { + "authorized_access_point": "Allemagne - L\u00e4nder" + } + ], + "variant_access_point": [ + "Nordrhein-Westfalen" + ], + "md5": "8a871296a91273a916f365c245de3f54" + }, + { + "authorized_access_point": "Saint-Jacques-de-Compostelle (Espagne)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027252620", "identifiedBy": [ { "type": "uri", @@ -3403,9670 +3017,32413 @@ "source": "IDREF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)04051658X", - "source": "GND" + "value": "(DE-101)04051658X" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/9662148705732037080009", - "source": "VIAF" + "value": "http://viaf.org/viaf/9662148705732037080009" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/122531297", - "source": "VIAF" + "value": "http://viaf.org/viaf/122531297" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL" + ] } ], + "pid": "027252620", + "type": "bf:Place", "relation_pid": { - "type": "redirect_from", - "value": "169986365" + "value": "169986365", + "type": "redirect_from" }, "variant_access_point": [ "Santiago de Compostela (Espagne)" ], - "authorized_access_point": "Saint-Jacques-de-Compostelle (Espagne)" + "md5": "05463f04b0a0b2b0c34ac51e3f561397" }, { - "md5": "00e62591406c96c53539dc9d06979082", - "pid": "02725349X", - "note": [ + "authorized_access_point": "Saint-Romain-en-Gal (Rh\u00f4ne)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027252728", + "identifiedBy": [ { - "label": [ - "IFLA, Names of states, 1981" - ], - "noteType": "dataSource" + "type": "uri", + "value": "http://www.idref.fr/027252728", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119335833", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/236092358" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Saint-Romain-en-Gal" } ], - "type": "bf:Place", - "broader": [ + "note": [ { - "authorized_access_point": "Afrique du Nord" + "noteType": "dataSource", + "label": [ + "Dict. communes, 1992. GDEL. Rachet. Dict. arch\u00e9ol. de France" + ] } ], + "pid": "027252728", + "type": "bf:Place", + "md5": "62a55e5bea0fe8219b24d0b594b64a14" + }, + { + "authorized_access_point": "Vietnam", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027255697", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/02725349X", + "value": "http://www.idref.fr/027255697", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119336345", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119337871", "source": "BNF" }, { - "type": "bf:Nbn", - "value": "(DE-101)040612066", - "source": "GND" - }, - { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/134783062", - "source": "VIAF" + "value": "http://viaf.org/viaf/155871049" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Tayara.tn", - "source": "WIKIPEDIA" + "value": "https://fr.wikipedia.org/wiki/Vi\u00eat_Nam" } ], - "authorized_access_point": "Tunisie" - }, - { - "md5": "14c72f6bff502f85b9b4986f864b0ef1", - "pid": "027254755", "note": [ { + "noteType": "dataSource", "label": [ - "IFLA, Names of states, 1981. GLU" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Sous cette vedette on trouve les documents qui traitent de la Turquie dans ses fronti\u00e8res actuelles, ou de la seule Anatolie (terme qui pour les Turcs d\u00e9signe toute la Turquie d'Asie). Les documents sur l'ensemble de la Turquie avant 1922 sont sous la vedette Empire ottoman ; ceux sur l'Anatolie antique et byzantine sont sous la vedette Asie mineure" - ], - "noteType": "general" - }, - { - "label": [ - "Voir aussi la subdivision Et la Turquie aux collectivit\u00e9s, familles et personnes" - ], - "noteType": "seeReference" + "Viet-Nam : BN ACO ; IFLA, Names of states, 1981. Vi\u00eat Nam : Pays et capitales du monde / IGN, 1992. Vietnam : LCNA, 1977-1986 ; Encycl. universalis, 1984, t.18, p.820 sq. Viet Nam : Manuel de l'Unesco, 1985. Vi\u00eat-nam : GLU ; Laval RVM, 1995-08 ; GKD, 1994-05. Vi\u1ec7t Nam : GKD, 1980" + ] } ], + "pid": "027255697", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Moyen-Orient" + "authorized_access_point": "Indochine" } ], + "variant_access_point": [ + "Viet-Nam", + "Viet-Nam (R\u00e9publique socialiste)" + ], + "md5": "314680915ec3ebdf53d4cf9a1f730ad3" + }, + { + "authorized_access_point": "Vorarlberg (Autriche)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027256693", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027254755", + "value": "http://www.idref.fr/027256693", "source": "IDREF" }, { - "type": "uri", - "value": "http://d-nb.info/gnd/4061163-2", - "source": "GND" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040611639", - "source": "GND" + "value": "(DE-101)040639444" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/175126574", - "source": "VIAF" + "value": "http://viaf.org/viaf/8161148574369124430000" } ], - "variant_access_point": [ - "Anadolu (Turquie)", - "Anatolie (Turquie)", - "T\u00fcrkiye" - ], - "authorized_access_point": "Turquie" - }, - { - "md5": "c0fd98e83f917a58a5852d1939aa4888", - "pid": "027255123", "note": [ { + "noteType": "dataSource", "label": [ - "Names of states / IFLA, 1981. GDEL. Encicl. italiana. LAVAL RVM, 1989-06" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Cette vedette s'emploie directement en subdivision de lieu", - "Partie de Rome constituant depuis le trait\u00e9 du Latran (11-02-1929) le territoire souverain du Saint-Si\u00e8ge" - ], - "noteType": "general" + "GDEL" + ] } ], + "pid": "027256693", "type": "bf:Place", + "md5": "9d7030933d78115043b2d59968a4fe38" + }, + { + "authorized_access_point": "Pays basque (Pyr\u00e9n\u00e9es-Atlantiques)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027257525", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027255123", + "value": "http://www.idref.fr/027257525", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119337484", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119339131", "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040624048", - "source": "GND" + "value": "(DE-101)040802809" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/136038551", - "source": "VIAF" + "value": "http://viaf.org/viaf/130232465" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Vatican", - "source": "WIKIPEDIA" + "value": "https://fr.wikipedia.org/wiki/Pays_basque_fran\u00e7ais" } ], - "variant_access_point": [ - "Cit\u00e9 du Vatican", - "Rome (Italie) - Cit\u00e9 du Vatican", - "Vaticano", - "Vaticano - Stato della Citt\u00e0 del" - ], - "authorized_access_point": "Vatican" - }, - { - "md5": "058dc7028c5bd75d355ad2e04a8be0e7", - "pid": "027256308", "note": [ { + "noteType": "dataSource", "label": [ - "IFLA, Names of states, 1981. SY 1996-97. Quid, 1989. Le Monde, 13-05-1992", - "Laval RVM, 1997-02" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Sous cette vedette on trouve les ouvrages qui traitent de la Yougoslavie de 1918 \u00e0 1992, ou de la R\u00e9publique f\u00e9d\u00e9rale de Yougoslavie r\u00e9duite \u00e0 la Serbie et au Mont\u00e9n\u00e9gro de 1992 \u00e0 2003", - "Le Royaume des Serbes, Croates et des Slov\u00e8nes, constitu\u00e9 le 01-12-1918, prend le nom de Yougoslavie le 03-10-1929 et devient une R\u00e9publique le 29-11-1945. Apr\u00e8s la s\u00e9cession de la Croatie, de la Slov\u00e9nie, de la Bosnie-Herz\u00e9govine et de la Mac\u00e9doine, est proclam\u00e9e le 27-04-1992 la R\u00e9publique f\u00e9d\u00e9rale de Yougoslavie comprenant la Serbie et le Mont\u00e9n\u00e9gro, qui devient le 04-02-2003 la Serbie-et-Mont\u00e9n\u00e9gro" - ], - "noteType": "general" + "GDEL", + "BNF" + ] }, { + "noteType": "general", "label": [ - "Voir aussi la subdivision Et la Yougoslavie aux personnes et collectivit\u00e9s" - ], - "noteType": "seeReference" + "Le Pays basque, du c\u00f4t\u00e9 fran\u00e7ais, se limite aux arrondissements de Bayonne, et pour une faible part, d'Oloron-Sainte-Marie (pays de Soule)" + ] } ], + "pid": "027257525", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Balkans - 20e si\u00e8cle" + "authorized_access_point": "Pays basque" + }, + { + "authorized_access_point": "Pyr\u00e9n\u00e9es-Atlantiques (France)" } ], - "related": [ + "narrower": [ { - "authorized_access_point": "Serbie-et-Mont\u00e9n\u00e9gro" + "authorized_access_point": "Labourd (France)" + }, + { + "authorized_access_point": "Navarre (France)" + }, + { + "authorized_access_point": "Soule, Pays de (France)" } ], + "variant_access_point": [ + "Basque, Pays (Pyr\u00e9n\u00e9es-Atlantiques)", + "Euzkadi (nord)", + "Ipar Euskal Herria", + "Iparraldea", + "Pays basque (France)", + "Pays basque (nord)" + ], + "md5": "7f6d187aab8442bfd52613d71ed1544d" + }, + { + "authorized_access_point": "Argovie (Suisse)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027259641", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027256308", + "value": "http://www.idref.fr/027259641", "source": "IDREF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040289664", - "source": "GND" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/138974509", - "source": "VIAF" + "value": "(DE-101)040000222" }, { + "source": "VIAF", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/R\u00e9publique_f\u00e9d\u00e9rative_socialiste_de_Yougoslavie", - "source": "WIKIPEDIA" + "value": "http://viaf.org/viaf/57148570704724312118" } ], - "variant_access_point": [ - "Jugoslavija", - "Royaume des Serbes, Croates et Slov\u00e8nes", - "Serbes, Croates et Slov\u00e8nes, Royaume des", - "Yougoslavie (R\u00e9publique f\u00e9d\u00e9rale)" - ], - "authorized_access_point": "Yougoslavie" - }, - { - "md5": "d7c6d1055abb7b2fe453901904bac72e", - "pid": "027259234", "note": [ { + "noteType": "dataSource", "label": [ - "IFLA, Names of states, 1981. BN ACO (en ligne), 1995-07-06. Deutschland ; GKD, 1993-05 ; SWD, 1994-10" - ], - "noteType": "dataSource" + "GDEL. SY, 1990-91" + ] }, { + "noteType": "general", "label": [ - "Sous cette vedette, on trouve les ouvrages qui traitent de la R\u00e9publique f\u00e9d\u00e9rale d'Allemagne de 1949 \u00e0 1990. Les ouvrages qui se limitent \u00e0 la partie occidentale de l'Allemagne avant 1949 ou depuis 1990 se trouvent sous la vedette Allemagne (ouest) ; ceux qui traitent de l'Allemagne d'avant 1949, ou de l'Allemagne depuis l'unification (3 octobre 1990), dont le nom officiel est R\u00e9publique f\u00e9d\u00e9rale d'Allemagne, se trouvent sous la vedette Allemagne" - ], - "noteType": "general" + "Canton suisse" + ] } ], + "pid": "027259641", "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Suisse - Cantons" + } + ], + "variant_access_point": [ + "Aargau (Suisse)" + ], + "md5": "a4ada79d6c81590a7ac00007dbefb92c" + }, + { + "authorized_access_point": "Pays basque", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027259811", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027259234", + "value": "http://www.idref.fr/027259811", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11934033d", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11934078c", "source": "BNF" }, { - "type": "uri", - "value": "http://d-nb.info/gnd/4011889-7", - "source": "GND" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040118894", - "source": "GND" + "value": "(DE-101)042569087" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/3765159035196701380009", - "source": "VIAF" + "value": "http://viaf.org/viaf/173145229" } ], - "variant_access_point": [ - "Allemagne (RFA)", - "Allemagne de l'Ouest (1949-1990)", - "Allemagne f\u00e9d\u00e9rale (1949-1990)", - "BRD", - "Bundesrepublik Deutschland (1949-1990)", - "Deutschland (Bundesrepublik ; 1949-1990)", - "R\u00e9publique f\u00e9d\u00e9rale d'Allemagne (1949-1990)", - "RFA" - ], - "authorized_access_point": "Allemagne (R\u00e9publique f\u00e9d\u00e9rale)" - }, - { - "md5": "1d4e35afa607c819d598a7e763213972", - "pid": "027259285", "note": [ { + "noteType": "dataSource", "label": [ - "GLU", - "Laval RVM, 1995-08. Alpen ; SWD, 1995-04" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Sous cette vedette, on trouve les ouvrages qui traitent du massif des Alpes ou de l'ensemble de la r\u00e9gion alpine (massif et r\u00e9gions p\u00e9riph\u00e9riques)" - ], - "noteType": "general" + "Basque-English dict. / G. Aulestia, 1989" + ] }, { + "noteType": "general", "label": [ - "Voir aussi aux diff\u00e9rentes parties des Alpes, par ex. Alpes (Autriche), Alpes (ouest)" - ], - "noteType": "seeReference" + "Les termes Euskalerri, Euskal herri, designent le Pays basque dans son ensemble, en tant qu'entit\u00e9 historico-culturelle (litt\u00e9ralement :\"pays de la langue basque\"). Le terme Euzkadi s'applique soit au Pays basque, entit\u00e9 politique autonome espagnole, soit \u00e0 l'ensemble du Pays basque (suppos\u00e9 r\u00e9uni)" + ] } ], + "pid": "027259811", "type": "bf:Place", - "bnf_type": "sujet Rameau", "narrower": [ { - "authorized_access_point": "Alpes (Allemagne)" - }, - { - "authorized_access_point": "Alpes (Autriche)" + "authorized_access_point": "Pays basque (Espagne)" }, { - "authorized_access_point": "Alpes (Italie)" - }, + "authorized_access_point": "Pays basque (Pyr\u00e9n\u00e9es-Atlantiques)" + } + ], + "variant_access_point": [ + "Basque, Pays", + "Euskal herri", + "Euskalerri", + "Euzkadi" + ], + "md5": "6257537d6cbe39abf3eb0cab72bc5b11" + }, + { + "authorized_access_point": "Brandebourg (Allemagne ; \u00c9tat)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027260011", + "identifiedBy": [ { - "authorized_access_point": "Alpes (France)" + "type": "uri", + "value": "http://www.idref.fr/027260011", + "source": "IDREF" }, { - "authorized_access_point": "Alpes (Slov\u00e9nie)" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119340938", + "source": "BNF" }, { - "authorized_access_point": "Alpes (Suisse)" + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040079554" }, { - "authorized_access_point": "Alpes (Liechtenstein)" - }, + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/246066379" + } + ], + "note": [ { - "authorized_access_point": "Alpes (Monaco)" + "noteType": "dataSource", + "label": [ + "GDEL", + "Brandenburg (Havel, Staat) ; GKD, 1980", + "Brandenburg (Germany and Poland) ; LCSH, 1990-06" + ] }, { - "authorized_access_point": "Alpes (Nord)" - }, + "noteType": "general", + "label": [ + "Margraviat, puis \u00c9lectorat du Saint-Empire, province prussienne \u00e0 partir de 1701, le Brandebourg est aujourd'hui un Land allemand. - Une partie de l'ancien Brandebourg, situ\u00e9e \u00e0 l'est de l'Oder, est aujourd'hui en Pologne" + ] + } + ], + "pid": "027260011", + "type": "bf:Place", + "narrower": [ { - "authorized_access_point": "Alpes (centre)" + "authorized_access_point": "Nowa Marchia (Pologne)" }, { - "authorized_access_point": "Alpes (est)" + "authorized_access_point": "Basse-Lusace (Allemagne)" }, { - "authorized_access_point": "Alpes (ouest)" - }, + "authorized_access_point": "Templin (Allemagne)" + } + ], + "broader": [ { - "authorized_access_point": "Alpes (Sud)" + "authorized_access_point": "Allemagne - L\u00e4nder" } ], + "relation_pid": { + "value": "144260069", + "type": "redirect_from" + }, + "variant_access_point": [ + "Brandebourg (Allemagne ; Land)", + "Brandebourg (Allemagne ; province)", + "Brandebourg (\u00c9lectorat)", + "Brandebourg (Margraviat)", + "Brandenburg (Allemagne ; \u00c9tat)" + ], + "md5": "bbea2b114628b4d372b8d5b1ff6e1505" + }, + { + "authorized_access_point": "Br\u00e9sil (nord-est)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/02726002X", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027259285", + "value": "http://www.idref.fr/02726002X", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11934036f", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11934094m", "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040013286", - "source": "GND" - }, - { - "type": "uri", - "value": "http://d-nb.info/gnd/4001328-5", - "source": "GND" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/148144928888154441142", - "source": "VIAF" + "value": "(DE-101)040899535" }, { + "source": "VIAF", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Alpes", - "source": "WIKIPEDIA" + "value": "http://viaf.org/viaf/155483347" } ], - "variant_access_point": [ - "Alpen", - "Alpes (cha\u00eene)", - "Alpes (massif)", - "Alpes (r\u00e9gion)", - "Alpi", - "Alpok", - "Alpin, Arc", - "Arc alpin", - "Europe alpine" - ], - "authorized_access_point": "Alpes" - }, - { - "md5": "ffb9fd46ed565d0cac1defbe67d08b0f", - "pid": "027259641", "note": [ { + "noteType": "dataSource", "label": [ - "GDEL. SY, 1990-91" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Canton suisse" - ], - "noteType": "general" + "Nordeste ; GLU", + "Nordeste (Br\u00e9sil) ; Laval RVM, 1996-02" + ] } ], + "pid": "02726002X", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Suisse - Cantons" + "authorized_access_point": "Br\u00e9sil" } ], + "variant_access_point": [ + "Nordeste (Br\u00e9sil)", + "Br\u00e9sil (Nordeste)", + "Nordeste (Brasil)", + "Brasil (Nordeste)" + ], + "md5": "2c7165f6ee3c600d494345a237231757" + }, + { + "authorized_access_point": "Pays de l'Union europ\u00e9enne", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027260461", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027259641", + "value": "http://www.idref.fr/027260461", "source": "IDREF" }, { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11934129f", + "source": "BNF" + }, + { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040000222", - "source": "GND" + "value": "(DE-101)040583929" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/57148570704724312118", - "source": "VIAF" + "value": "http://viaf.org/viaf/170452307" } ], - "variant_access_point": [ - "Aargau (Suisse)" - ], - "authorized_access_point": "Argovie (Suisse)" - }, - { - "md5": "0d4946993015ef868846a3275ede7411", - "pid": "027259978", "note": [ { + "noteType": "general", "label": [ - "GDEL" - ], - "noteType": "dataSource" + "Sous cette vedette, on trouve les ouvrages sur les pays membres de la Communaut\u00e9 (avant fin 1993) comme de l'Union europ\u00e9enne, consid\u00e9r\u00e9s comme une entit\u00e9 g\u00e9ographique. De ce fait, cette vedette peut \u00eatre employ\u00e9e en subdivision, ou \u00eatre suivie des subdivisions propres aux noms de lieu. Les ouvrages sur l'Union europ\u00e9enne en tant qu'organisation internationale se trouvent sous la vedette Union europ\u00e9enne, ou sous la vedette de collectivit\u00e9 appropri\u00e9e, notamment Communaut\u00e9 europ\u00e9enne pour les ouvrages portant sur la p\u00e9riode ant\u00e9rieure \u00e0 novembre 1993", + "1-1-1958 : Allemagne (RFA), Belgique, France, Italie, Luxembourg, Pays-Bas. 1-1-1973 : Danemark, Grande-Bretagne, Irlande. 1-1-1981 : Gr\u00e8ce. 1-1-1986 : Espagne, Portugal. 1-1-1995 : Autriche, Finlande, Su\u00e8de. 1-5-2004 : Malte, Chypre, Slov\u00e9nie, Estonie, Lettonie, Lituanie, Pologne, R\u00e9publique tch\u00e8que, Slovaquie, Hongrie. 1-1-2007 : Bulgarie, Roumanie. Le Groenland (pays associ\u00e9 au Danemark) s'est retir\u00e9 en 1982 (r\u00e9f\u00e9rendum du 23-02) ; la Norv\u00e8ge a refus\u00e9 son adh\u00e9sion en 1972, puis en 1994 (r\u00e9f\u00e9rendum du 28-11)" + ] } ], + "pid": "027260461", "type": "bf:Place", "broader": [ { - "authorized_access_point": "France (centre)" + "authorized_access_point": "Europe" + }, + { + "authorized_access_point": "Europe de l'Ouest" + } + ], + "variant_access_point": [ + "CEE, Pays de la", + "Communaut\u00e9 europ\u00e9enne, Pays de la", + "\u00c9tats de l'Union europ\u00e9enne", + "Europe de Maastricht", + "Pays de l'UE", + "Pays de la CEE", + "Pays de la Communaut\u00e9 \u00e9conomique europ\u00e9enne", + "Pays de la Communaut\u00e9 europ\u00e9enne", + "Pays des Communaut\u00e9s europ\u00e9ennes", + "Pays du March\u00e9 commun europ\u00e9en", + "Union europ\u00e9enne, Pays de l'" + ], + "md5": "e14eac4f7fa85924712cc46a91532284" + }, + { + "authorized_access_point": "Constance (Allemagne)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027260607", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027260607", + "source": "IDREF" }, { - "authorized_access_point": "France (centre-est)" + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040322157" }, { - "authorized_access_point": "France (est)" + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/4526148574271724430007" }, { - "authorized_access_point": "France - R\u00e9gions" + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Constance_(Allemagne)" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL" + ] } ], + "pid": "027260607", + "type": "bf:Place", + "variant_access_point": [ + "Konstanz (Allemagne)" + ], + "md5": "2ff9621678e711f91f7bf79855673925" + }, + { + "authorized_access_point": "\u00c9cosse (GB)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027261050", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027259978", + "value": "http://www.idref.fr/027261050", "source": "IDREF" }, { "type": "uri", - "value": "http://d-nb.info/gnd/4129468-3", - "source": "GND" + "value": "http://catalogue.bnf.fr/ark:/12148/cb119341659", + "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)041294688", - "source": "GND" + "value": "(DE-101)04053233X" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/149443835", - "source": "VIAF" + "value": "http://viaf.org/viaf/148914377" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Bourgogne_(ancienne_r\u00e9gion_administrative)", - "source": "WIKIPEDIA" + "value": "https://fr.wikipedia.org/wiki/\u00c9cosse" } ], - "relation_pid": { - "type": "redirect_from", - "value": "110360524" - }, - "variant_access_point": [ - "Bourgogne", - "Bourgogne (duch\u00e9)" - ], - "authorized_access_point": "Bourgogne (France)" - }, - { - "md5": "9381fc04fe5a70e395a12dc8381c35f2", - "pid": "027262162", - "note": [ + "pid": "027261050", + "type": "bf:Place", + "narrower": [ { - "label": [ - "IFLA, Names of states, 1981. GDEL. SY 1990/91" - ], - "noteType": "dataSource" + "authorized_access_point": "Lowlands (GB)" }, { - "label": [ - "Le Japon est divis\u00e9 en 9 r\u00e9gions, dont 5 sont sur Honsh\u016b ; les 4 autres sont Hokkaid\u014d, Shikoku, Ky\u016bsh\u016b et Okinawa" - ], - "noteType": "general" + "authorized_access_point": "Strathclyde (GB ; r\u00e9gion)" } ], - "type": "bf:Place", "broader": [ { - "authorized_access_point": "Asie du Nord-Est" + "authorized_access_point": "Grande-Bretagne" + }, + { + "authorized_access_point": "Pays celtiques" } ], + "variant_access_point": [ + "Scotland", + "\u00c9cosse", + "Grande-Bretagne (nord)" + ], + "md5": "348e646c23a82d32317d564cd8dfc640" + }, + { + "authorized_access_point": "\u00c9tats-Unis (sud)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027261204", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027262162", + "value": "http://www.idref.fr/027261204", "source": "IDREF" }, { - "type": "bf:Nbn", - "value": "(DE-101)040284956", - "source": "GND" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11934175m", + "source": "BNF" }, { - "type": "uri", - "value": "https://d-nb.info/gnd/4028495-5", - "source": "GND" + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040786749" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/1165148574381824430006", - "source": "VIAF" + "value": "http://viaf.org/viaf/172385572" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Japon_(homonymie)", - "source": "WIKIPEDIA" + "value": "https://fr.wikipedia.org/wiki/Sud_des_\u00c9tats-Unis" } ], - "variant_access_point": [ - "Nihon", - "Nippon", - "\u042f\u043f\u043e\u043d\u0438\u044f" - ], - "authorized_access_point": "Japon" - }, - { - "md5": "7e435b8a780c3364d23832330ff0a1df", - "pid": "027262952", "note": [ { + "noteType": "dataSource", "label": [ - "IFLA, Names of states, 1981" - ], - "noteType": "dataSource" + "\u00c9tats-Unis (Sud) ; Laval RVM, 1994-02" + ] + }, + { + "noteType": "general", + "label": [ + "Sous cette vedette on trouve les ouvrages qui traitent des 11 anciens \u00c9tats conf\u00e9d\u00e9r\u00e9s (Alabama, Arkansas, Caroline du N., Caroline du S., Floride, G\u00e9orgie, Louisiane, Mississippi, Tennessee, Texas et Virginie), ou des seuls \u00c9tats situ\u00e9s \u00e0 l'est du Mississippi" + ] } ], + "pid": "027261204", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Balkans" + "authorized_access_point": "\u00c9tats du Sun Belt (\u00c9tats-Unis)" } ], + "variant_access_point": [ + "\u00c9tats du Sud (\u00c9tats-Unis)", + "\u00c9tats-Unis (sud-est)", + "Southern States (\u00c9tats-Unis)", + "Sud, \u00c9tats du (\u00c9tats-Unis)", + "Vieux Sud (\u00c9tats-Unis)" + ], + "md5": "d130faf5472d6091c578b4786a9ac167" + }, + { + "authorized_access_point": "Foix (Comt\u00e9)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027261336", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027262952", + "value": "http://www.idref.fr/027261336", "source": "IDREF" }, { + "source": "VIAF", "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11934311x", - "source": "BNF" - }, - { - "type": "uri", - "value": "http://d-nb.info/gnd/4050939-4", - "source": "GND" - }, - { - "type": "bf:Nbn", - "value": "(DE-101)040509397", - "source": "GND" + "value": "http://viaf.org/viaf/153634112" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "http://viaf.org/viaf/153149185", - "source": "VIAF" + "value": "https://fr.wikipedia.org/wiki/Comt\u00e9_de_Foix" } ], - "variant_access_point": [ - "Rom\u00e2nia", - "\u0420\u0443\u043c\u044b\u043d\u0438\u044f", - "\u0420\u0443\u043c\u0443\u043d\u0456\u044f" - ], - "authorized_access_point": "Roumanie" - }, - { - "md5": "8678b83bbe152292a185a5f9d09d28f8", - "pid": "027263061", "note": [ { + "noteType": "dataSource", "label": [ - "GLU. Mourre. Brockhaus, 19. Aufl.", - "Laval RVM, 1996-02" - ], - "noteType": "dataSource" + "GDEL" + ] } ], + "pid": "027261336", "type": "bf:Place", + "md5": "e7717359245f2bc055e757b700ac1ce1" + }, + { + "authorized_access_point": "Gabon", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027261417", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027263061", + "value": "http://www.idref.fr/027261417", "source": "IDREF" }, { "type": "uri", - "value": "http://d-nb.info/gnd/2035457-5", - "source": "GND" + "value": "http://catalogue.bnf.fr/ark:/12148/cb119341957", + "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)004911474", - "source": "GND" + "value": "(DE-101)040190528" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/5228148574274624430002", - "source": "VIAF" + "value": "http://viaf.org/viaf/6762148574322124430000" } ], - "variant_access_point": [ - "Empire romain germanique, Saint", - "Heiliges R\u00f6misches Reich Deutscher Nation", - "Sacrum Romanum Imperium Nationis Germanicae" - ], - "authorized_access_point": "Saint Empire romain germanique" - }, - { - "md5": "0a5471118ebedb167ca1b6979e940270", - "pid": "027263487", "note": [ { + "noteType": "dataSource", "label": [ - "GLU" - ], - "noteType": "dataSource" - }, - { - "label": [ - "L'Amazonie correspond aux bassins moyen et inf\u00e9rieur de l'Amazone" - ], - "noteType": "general" + "Names of states / IFLA, 1981. LCSH, 1985" + ] } ], + "pid": "027261417", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Am\u00e9rique du Sud" + "authorized_access_point": "Afrique centrale" } ], + "md5": "d6d437690d19dd1f01bd9ed59dc226a4" + }, + { + "authorized_access_point": "Grenoble (Is\u00e8re)", "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "912", + "name": "G\u00e9ographie de la France" + } + ], + "identifier": "http://www.idref.fr/027261530", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027263487", + "value": "http://www.idref.fr/027261530", "source": "IDREF" }, { - "type": "bf:Nbn", - "value": "(DE-101)040016269", - "source": "GND" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15238650z", + "source": "BNF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119342062", + "source": "BNF" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/173418487", - "source": "VIAF" + "value": "http://viaf.org/viaf/170334907" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Amazonie_(Ngong)", - "source": "WIKIPEDIA" + "value": "https://fr.wikipedia.org/wiki/Grenoble" } ], - "authorized_access_point": "Amazonie" - }, - { - "md5": "4af3da21a61f3529718995ca318d8c43", - "pid": "027263495", "note": [ { + "noteType": "dataSource", "label": [ - "GDEL" - ], - "noteType": "dataSource" + "Dict. communes, 1992. GLU" + ] + }, + { + "noteType": "general", + "label": [ + "Coordonn\u00e9es g\u00e9ographiques : E 5\u00b043' / N 45\u00b011", + "Gentil\u00e9 : Grenoblois" + ] } ], + "pid": "027261530", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Hispanie ult\u00e9rieure" - }, - { - "authorized_access_point": "Espagne - Communaut\u00e9s autonomes" + "authorized_access_point": "Grenoble (Is\u00e8re ; r\u00e9gion)" } ], "related": [ { - "authorized_access_point": "Al-Andalus" + "authorized_access_point": "Grenoble (Is\u00e8re ; agglom\u00e9ration)" } ], + "variant_access_point": [ + "Cularo (ville ancienne, 43 av. JC)", + "Gratianopolis (ville ancienne, 377)", + "Grelibre (1793)", + "Grenoble" + ], + "md5": "ad63eb1a996043dcfa6135742d967e07" + }, + { + "authorized_access_point": "Isra\u00ebl", "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "915", + "name": "G\u00e9ographie du reste du monde" + } + ], + "identifier": "http://www.idref.fr/027262111", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027263495", + "value": "http://www.idref.fr/027262111", "source": "IDREF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040019098", - "source": "GND" + "value": "(DE-101)040278085" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/132461455", - "source": "VIAF" + "value": "http://viaf.org/viaf/5668155226761984490000" } ], - "variant_access_point": [ - "Andaluc\u00eda (Espagne)", - "Baetica", - "B\u00e9tique", - "Tarsis" - ], - "authorized_access_point": "Andalousie (Espagne)" - }, - { - "md5": "2716c5701adfcb5763c00877aacdd1a6", - "pid": "02726369X", "note": [ { + "noteType": "dataSource", "label": [ - "IFLA, Names of states, 1981 ; Pays et capitales du monde / IGN, 1986" - ], - "noteType": "dataSource" + "Names of states / IFLA, 1981. LCNA, 1985", + "Grand Larousse universel", + "Robert encyclop\u00e9dique des noms propres 2008", + "Encycl. universalis - http://www.universalis-edu.com (2013-01-11)", + "L'\u00c9tat d'Isra\u00ebl / A. Chouraqui, 1998" + ] + }, + { + "noteType": "general", + "label": [ + "Sous cette vedette, on trouve les documents sur l'\u00c9tat d'Isra\u00ebl proclam\u00e9 le 14 mai 1948 et/ou sur Isra\u00ebl et les territoires occup\u00e9s. Les documents sur l'ancien royaume d'Isra\u00ebl se trouvent sous Isra\u00ebl (Royaume)", + "Pour la p\u00e9riode ant\u00e9rieure \u00e0 1948, ne pas employer \"Isra\u00ebl\", mais \"Palestine\", sauf pour la construction indirecte, par ex. : Architecture -- Palestine -- 1900-1945 ; Architecture -- Isra\u00ebl -- Ha\u00effa (Isra\u00ebl) -- 1900-1945" + ] }, { + "noteType": "seeReference", "label": [ - "Sous cette vedette on trouve les ouvrages qui traitent de l'\u00eele d'Irlande et/ou de la R\u00e9publique d'Irlande. Les ouvrages qui traitent de la partie de l'Ulster demeur\u00e9e britannique en 1921 se trouvent sous Irlande du Nord" - ], - "noteType": "general" + "Voir aussi la subdivision Et Isra\u00ebl [sans subd. g\u00e9ogr.] aux collectivit\u00e9s et aux personnes", + "Voir aussi la subdivision Opinion publique isra\u00e9lienne [sans subd. g\u00e9ogr.] aux guerres et aux lieux" + ] } ], + "pid": "027262111", "type": "bf:Place", - "broader": [ + "related": [ { - "authorized_access_point": "Britanniques, \u00celes" + "authorized_access_point": "Proche-Orient" }, { - "authorized_access_point": "Pays de l'Union europ\u00e9enne" - }, - { - "authorized_access_point": "Pays celtiques" + "authorized_access_point": "Palestine" } ], + "variant_access_point": [ + "Yi\u015bra'el" + ], + "md5": "22ef0cbfaef2f8bb371944cbeab62b30" + }, + { + "authorized_access_point": "Saint-P\u00e9tersbourg (Russie)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027262464", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/02726369X", + "value": "http://www.idref.fr/027262464", "source": "IDREF" }, { "type": "uri", - "value": "http://d-nb.info/gnd/4027667-3", - "source": "GND" + "value": "http://catalogue.bnf.fr/ark:/12148/cb119342736", + "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040276678", - "source": "GND" + "value": "(DE-101)042670268" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/139487820" } ], - "variant_access_point": [ - "\u00c9ire", - "Ireland" - ], - "authorized_access_point": "Irlande" - }, - { - "md5": "1c6b7130b66849b21f1fed106c597327", - "pid": "027263711", "note": [ { + "noteType": "dataSource", "label": [ - "IFLA, Names of states, 1981. GLU, 1991", - "Laval RVM, 1997-02. Marr\u0101ku\u0161 ; GKD, 1994-05" - ], - "noteType": "dataSource" + "GDEL. Le Monde, 8/9 sept. 1991" + ] }, { + "noteType": "general", "label": [ - "Voir aussi la subdivision Et le Maroc aux personnes et collectivit\u00e9s" - ], - "noteType": "seeReference" + "Fond\u00e9e en 1703, Saint-P\u00e9tersbourg devient P\u00e9trograd en 1914, puis L\u00e9ningrad en 1924 et redevient Saint-P\u00e9tersbourg en 1991 (referendum du 12-6, d\u00e9cision du Soviet supr\u00eame de Russie du 6-9)" + ] } ], + "pid": "027262464", "type": "bf:Place", - "broader": [ - { - "authorized_access_point": "Afrique du Nord" - } + "variant_access_point": [ + "Saint P\u00e9tersbourg (Russie)", + "L\u00e9ningrad (URSS)", + "P\u00e9trograd (Russie)", + "Saint Petersburg", + "St Petersburg", + "\u0421\u0430\u043d\u043a\u0442-\u041f\u0435\u0442\u0435\u0440\u0431\u0443\u0301\u0440\u0433" ], + "md5": "b4a0956b358057f3406cf9c8a0ed7370" + }, + { + "authorized_access_point": "Libye", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027262545", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027263711", + "value": "http://www.idref.fr/027262545", "source": "IDREF" }, { "type": "uri", - "value": "http://d-nb.info/gnd/4037680-1", - "source": "GND" + "value": "http://catalogue.bnf.fr/ark:/12148/cb15323238r", + "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)04037680X", - "source": "GND" + "value": "(DE-101)040355896" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/6606148574280324430001", - "source": "VIAF" - }, - { - "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Mar\u00f3c", - "source": "WIKIPEDIA" + "value": "http://viaf.org/viaf/2704148574305224430002" } ], - "variant_access_point": [ - "Al-Maghrib al- Aq\u1e63\u0101", - "Al Maghreb Al Aqsa", - "Ch\u00e9rifien, Empire", - "Empire ch\u00e9rifien", - "Marruecos", - "\u041c\u0430\u0440\u043e\u043a\u043a\u043e", - "Marokko" - ], - "authorized_access_point": "Maroc" - }, - { - "md5": "c012d167b01dbb8d24fd910d09e1d6f2", - "pid": "027263762", "note": [ { + "noteType": "dataSource", "label": [ - "GLU. Laval RVM, 2000-01" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Voir aussi la subdivision Et la Norv\u00e8ge aux collectivit\u00e9s et aux personnes" - ], - "noteType": "seeReference" + "IFLA, Names of states, 1981. GDEL" + ] } ], + "pid": "027262545", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Scandinavie" + "authorized_access_point": "Afrique du Nord" } ], + "variant_access_point": [ + "Jamahiriya arabe libyenne", + "L\u012bbiy\u0101" + ], + "md5": "07f72eabe9ea3a484248d7194c152514" + }, + { + "authorized_access_point": "Lorraine (France)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027262685", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027263762", + "value": "http://www.idref.fr/027262685", "source": "IDREF" }, { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119342914", + "source": "BNF" + }, + { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040754715", - "source": "GND" + "value": "(DE-101)040363775" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/727148574256024430009", - "source": "VIAF" + "value": "http://viaf.org/viaf/144260070" } ], - "variant_access_point": [ - "Norge", - "Noreg" - ], - "authorized_access_point": "Norv\u00e8ge" - }, - { - "md5": "e312048136c7178bd24bd7c2eafd3c02", - "pid": "02726453X", "note": [ { + "noteType": "dataSource", + "label": [ + "GDEL" + ] + }, + { + "noteType": "general", "label": [ - "Laval RVM, 1983. GDEL" - ], - "noteType": "dataSource" + "Sous cette vedette on trouve les ouvrages qui traitent du duch\u00e9 puis province de Lorraine et/ou de l'actuelle r\u00e9gion de Lorraine" + ] } ], + "pid": "027262685", "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "France (est)" + }, + { + "authorized_access_point": "France (nord-est)" + }, + { + "authorized_access_point": "Lotharingie" + }, + { + "authorized_access_point": "France - R\u00e9gions" + } + ], + "variant_access_point": [ + "Lorraine", + "Lorraine (Duch\u00e9)", + "Lothringen (France)" + ], + "md5": "8b4a7d3f6fc2e9440a84c2a55628cdea" + }, + { + "authorized_access_point": "Congo (R\u00e9publique d\u00e9mocratique)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027263053", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/02726453X", + "value": "http://www.idref.fr/027263053", "source": "IDREF" }, { "type": "uri", - "value": "https://d-nb.info/gnd/4020137-5", - "source": "GND" + "value": "http://catalogue.bnf.fr/ark:/12148/cb11934318b", + "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040201376", - "source": "GND" + "value": "(DE-101)04067357X" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/157214194", - "source": "VIAF" + "value": "http://viaf.org/viaf/5843158188242320260008" } ], - "variant_access_point": [ - "Gen\u00e8ve", - "Genf (Suisse)", - "Ginevra (Suisse)", - "Geneva" - ], - "authorized_access_point": "Gen\u00e8ve (Gen\u00e8ve, Suisse)" - }, - { - "md5": "001207f0e1bd5b6a2ff9e43b853ffeec", - "pid": "027264580", "note": [ { + "noteType": "dataSource", + "label": [ + "GLU, 1991. Mourre, 1986", + "Zai\u034f\u0308re ; Laval RVM, 1997-02" + ] + }, + { + "noteType": "general", "label": [ - "Encycl. universalis, 1989, 19, 154-159", - "Prusse (Allemagne) ; Laval RVM, 1996-02", - "Preussen , puis Preussen , puis Preussen ; SWD, 1995-04" - ], - "noteType": "dataSource" + "La R\u00e9publique d\u00e9mocratique du Congo, ind\u00e9pendante le 30 juin 1960, a pris le nom de Za\u00efre d'octobre 1971 \u00e0 mai 1997" + ] }, { + "noteType": "seeReference", "label": [ - "Sous cette vedette on trouve les ouvrages qui traitent de la Prusse depuis ses origines (les anciens Prussiens ou Borusses) jusqu'\u00e0 sa disparition en tant qu'\u00c9tat en 1947" - ], - "noteType": "general" + "Voir aussi la subdivision Et le Congo (R\u00e9publique d\u00e9mocratique) aux personnes et collectivit\u00e9s" + ] } ], + "pid": "027263053", "type": "bf:Place", - "related": [ + "broader": [ { - "authorized_access_point": "Prusse - Histoire" + "authorized_access_point": "Afrique centrale" } ], - "bnf_type": "sujet Rameau", - "narrower": [ - { - "authorized_access_point": "Prusse-Occidentale (Pologne)" - }, - { - "authorized_access_point": "Prusse-Orientale" - } + "variant_access_point": [ + "Congo", + "Congo (\u00c9tat ind\u00e9pendant ; 1885-1908)", + "Congo belge", + "Congo-Kinshasa", + "Congo-L\u00e9opoldville", + "\u00c9tat ind\u00e9pendant du Congo (1885-1908)", + "Za\u00efre" ], + "md5": "250068b2fbe31c0efe6542a38522ab47" + }, + { + "authorized_access_point": "Basse-Saxe (Allemagne)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027263118", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027264580", + "value": "http://www.idref.fr/027263118", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119344356", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12031086v", "source": "BNF" }, { - "type": "uri", - "value": "http://d-nb.info/gnd/4047194-9", - "source": "GND" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040471942", - "source": "GND" + "value": "(DE-101)040422267" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/266665986", - "source": "VIAF" + "value": "http://viaf.org/viaf/4086154387419430970003" }, { + "source": "VIAF", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Prusse", - "source": "WIKIPEDIA" + "value": "http://viaf.org/viaf/14144647646568895784" } ], - "variant_access_point": [ - "Preussen", - "Prusse (Duch\u00e9)", - "Prusse (Royaume)" - ], - "authorized_access_point": "Prusse" - }, - { - "md5": "1d04da0252db2de8b1f65027d9f82363", - "pid": "027266060", "note": [ { + "noteType": "dataSource", "label": [ - "Laval RVM, 1983" - ], - "noteType": "dataSource" + "GDEL" + ] } ], + "pid": "027263118", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Arctique" - }, - { - "authorized_access_point": "R\u00e9gions polaires" + "authorized_access_point": "Allemagne - L\u00e4nder" } ], + "relation_pid": { + "value": "028483960", + "type": "redirect_from" + }, + "variant_access_point": [ + "Basse-Saxe", + "Niedersachsen (Allemagne)", + "Saxe, Basse- (Allemagne)" + ], + "md5": "2f54094d63e2e0bfc030327c441d2821" + }, + { + "authorized_access_point": "Serbie", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027263193", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027266060", + "value": "http://www.idref.fr/027263193", "source": "IDREF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)041179145", - "source": "GND" + "value": "(DE-101)040545989" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/316891260", - "source": "VIAF" + "value": "http://viaf.org/viaf/1427148574258824430000" } ], - "authorized_access_point": "P\u00f4le Nord" - }, - { - "md5": "68ae9405a6c82333df0cce16f7a09c25", - "pid": "027266257", "note": [ { + "noteType": "dataSource", "label": [ - "Moreau", - "Laval RVM, 2001-01" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Ancienne province de France, la Provence historique a form\u00e9 en 1790 les trois d\u00e9partements des Bouches-du-Rh\u00f4ne, du Var et des Basses-Alpes (Alpes-de-Haute-Provence), auxquels s'est rajout\u00e9 le d\u00e9partement du Vaucluse, form\u00e9 en 1793 par Avignon et le Comtat Venaissin. La Provence g\u00e9ographique, plus vaste que l'ancienne province, est une r\u00e9gion naturelle d\u00e9limit\u00e9e par le Rh\u00f4ne, la Dr\u00f4me, la vall\u00e9e de l'Ubaye, les Alpes maritimes et la mer" - ], - "noteType": "general" + "Grand Larousse universel", + "Dict. univ. d'histoire / M. Mourre, 1996", + "Le Monde, 2006-06-15" + ] }, { + "noteType": "general", "label": [ - "Voir aussi la subdivision Et la Provence aux collectivit\u00e9s, familles et personnes" - ], - "noteType": "seeReference" + "Royaume incorpor\u00e9 \u00e0 la Yougoslavie en 1918, la Serbie constitue l'une des r\u00e9publiques f\u00e9d\u00e9r\u00e9es de la Yougoslavie (1946), puis de la Serbie-et-Mont\u00e9n\u00e9gro (2003) ; elle est ind\u00e9pendante depuis le 5 juin 2006" + ] } ], + "pid": "027263193", "type": "bf:Place", - "bnf_type": "sujet Rameau", - "identifiedBy": [ - { - "type": "uri", - "value": "http://www.idref.fr/027266257", - "source": "IDREF" - }, + "narrower": [ { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11934548t", - "source": "BNF" + "authorized_access_point": "Kosovo (Serbie)" }, { - "type": "uri", - "value": "http://d-nb.info/gnd/4047564-5", - "source": "GND" + "authorized_access_point": "Sand\u017eak (Serbie, Mont\u00e9n\u00e9gro ; r\u00e9gion)" }, { - "type": "bf:Nbn", - "value": "(DE-101)040475646", - "source": "GND" - }, + "authorized_access_point": "Vo\u00efvodine (Serbie)" + } + ], + "related": [ { - "type": "uri", - "value": "http://viaf.org/viaf/147742069", - "source": "VIAF" - }, + "authorized_access_point": "Serbie-et-Mont\u00e9n\u00e9gro" + } + ], + "broader": [ { - "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Provence", - "source": "WIKIPEDIA" + "authorized_access_point": "Balkans" } ], "variant_access_point": [ - "Provence", - "Provence (Comt\u00e9)" + "Serbie (Serbie-et-Mont\u00e9n\u00e9gro)", + "\u0421\u0440\u0431\u0438\u0458\u0430", + "Srbija" ], - "authorized_access_point": "Provence (France)" + "md5": "96fd08dcf6c6d4a42945859d84eb246c" }, { - "md5": "35c1089c3e81bf17c11760848dcd59bc", - "pid": "027267830", - "note": [ + "authorized_access_point": "Andalousie (Espagne)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027263495", + "identifiedBy": [ { - "label": [ - "Names of states / IFLA, 1981. SY, 1986/1987. GDEL" - ], - "noteType": "dataSource" + "type": "uri", + "value": "http://www.idref.fr/027263495", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040019098" }, { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/132461455" + } + ], + "note": [ + { + "noteType": "dataSource", "label": [ - "Cette vedette s'emploie directement en subdivision de lieu", - "R\u00e9gion autonome du Danemark depuis le 1-5-1979" - ], - "noteType": "general" + "GDEL" + ] } ], + "pid": "027263495", "type": "bf:Place", + "related": [ + { + "authorized_access_point": "Al-Andalus" + } + ], "broader": [ { - "authorized_access_point": "Am\u00e9rique du Nord" + "authorized_access_point": "Hispanie ult\u00e9rieure" }, { - "authorized_access_point": "Arctique" + "authorized_access_point": "Espagne - Communaut\u00e9s autonomes" } ], + "variant_access_point": [ + "Andaluc\u00eda (Espagne)", + "Baetica", + "B\u00e9tique", + "Tarsis" + ], + "md5": "6e4323d21536a718f33e24c8d7c8ba17" + }, + { + "authorized_access_point": "Nord (France)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027263746", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027267830", + "value": "http://www.idref.fr/027263746", "source": "IDREF" }, { - "type": "bf:Nbn", - "value": "(DE-101)04022113X", - "source": "GND" + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/1075148574257424430006" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "http://viaf.org/viaf/4459148574312624430000", - "source": "VIAF" + "value": "https://fr.wikipedia.org/wiki/Nord_(d\u00e9partement_fran\u00e7ais)" } ], - "variant_access_point": [ - "Groenland (Danemark ; \u00eele)", - "Greenland", - "Gr\u00f8nland", - "Kalaallit Nunaat" - ], - "authorized_access_point": "Groenland" - }, - { - "md5": "88e39cf171715175857435682a1c859c", - "pid": "027267873", "note": [ { + "noteType": "dataSource", "label": [ - "BA, 1989" - ], - "noteType": "dataSource" + "GDEL" + ] }, { + "noteType": "general", "label": [ - "Emploi direct en subdivision : [sujet] -- Guyane" - ], - "noteType": "general" + "D\u00e9partement fran\u00e7ais (59)" + ] } ], + "pid": "027263746", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Guyanes" - }, - { - "authorized_access_point": "France - D\u00e9partements et r\u00e9gions d'outre-mer" + "authorized_access_point": "Nord-Pas-de-Calais (France)" } ], + "variant_access_point": [ + "Nord" + ], + "md5": "d8cd136027605adfddc3d7fb54315664" + }, + { + "authorized_access_point": "Norv\u00e8ge", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027263762", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027267873", + "value": "http://www.idref.fr/027263762", "source": "IDREF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040181847", - "source": "GND" + "value": "(DE-101)040754715" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/173457961", - "source": "VIAF" + "value": "http://viaf.org/viaf/727148574256024430009" } ], - "relation_pid": { - "type": "redirect_from", - "value": "087992019" - }, - "variant_access_point": [ - "Guyane fran\u00e7aise" - ], - "authorized_access_point": "Guyane" - }, - { - "md5": "0c45eacf669606f578e0d0846fa785cb", - "pid": "027275922", "note": [ { + "noteType": "dataSource", "label": [ - "GDEL. SY 1990/91" - ], - "noteType": "dataSource" + "GLU. Laval RVM, 2000-01" + ] }, { + "noteType": "seeReference", "label": [ - "Canton issu de la scission (1833) de l'ancien canton de B\u00e2le en B\u00e2le-Campagne et B\u00e2le-Ville" - ], - "noteType": "general" + "Voir aussi la subdivision Et la Norv\u00e8ge aux collectivit\u00e9s et aux personnes" + ] } ], + "pid": "027263762", "type": "bf:Place", "broader": [ { - "authorized_access_point": "B\u00e2le (Suisse ; canton)" - }, - { - "authorized_access_point": "Suisse - Cantons" + "authorized_access_point": "Scandinavie" } ], + "variant_access_point": [ + "Norge", + "Noreg" + ], + "md5": "5257ae1d9c69743c93466d3fca2a0db3" + }, + { + "authorized_access_point": "La Rioja (Espagne ; Communaut\u00e9 autonome)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027263789", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027275922", + "value": "http://www.idref.fr/027263789", "source": "IDREF" }, { - "type": "bf:Nbn", - "value": "(DE-101)1077172354", - "source": "GND" - }, - { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/132058475", - "source": "VIAF" + "value": "http://viaf.org/viaf/173199850" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Canton_de_B\u00e2le-Ville", - "source": "WIKIPEDIA" + "value": "https://fr.wikipedia.org/wiki/La_Rioja" } ], - "relation_pid": { - "type": "redirect_from", - "value": "060557001" - }, - "variant_access_point": [ - "Basel Stadt (Suisse)" - ], - "authorized_access_point": "B\u00e2le-Ville (Suisse)" - }, - { - "md5": "74df160ee8b49d85dd243fd2973b35cd", - "pid": "027283518", "note": [ { + "noteType": "dataSource", "label": [ - "GLU, 1991", - "Laval RVM, 1997-02" - ], - "noteType": "dataSource" + "GDEL. Quid, 1989. SY, 1990/1991" + ] }, { + "noteType": "general", "label": [ - "Sous cette vedette on trouve les ouvrages qui traitent : de la r\u00e9gion qui s'\u00e9tend de la mer Caspienne \u00e0 la Mongolie et la Chine du nord-ouest (inclusivement), et du sud de la Sib\u00e9rie \u00e0 l'Afghanistan et au nord de l'Iran (inclusivement) ; ou bien des seules 5 r\u00e9publiques ex-sovi\u00e9tiques consid\u00e9r\u00e9es collectivement" - ], - "noteType": "general" + "Communaut\u00e9 autonome (statut du 9-6-1982 ; chef-lieu : Logro\u00f1o), comprenant la province de Logro\u00f1o auparavant en Vieille-Castille" + ] } ], + "pid": "027263789", "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Espagne - Communaut\u00e9s autonomes" + } + ], + "variant_access_point": [ + "Logro\u00f1o (Espagne ; province)", + "Rioja, La (Espagne)" + ], + "md5": "10d09e5809a1bb6e24adcb45fa22f28f" + }, + { + "authorized_access_point": "Auvernier (Neuch\u00e2tel, Suisse)", "bnf_type": "sujet Rameau", - "narrower": [ + "identifier": "http://www.idref.fr/027263878", + "identifiedBy": [ { - "authorized_access_point": "Afghanistan" + "type": "uri", + "value": "http://www.idref.fr/027263878", + "source": "IDREF" }, { - "authorized_access_point": "Kazakhstan" + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040798828" }, { - "authorized_access_point": "Kirghizistan" - }, - { - "authorized_access_point": "Mongolie" - }, - { - "authorized_access_point": "Ouzb\u00e9kistan" - }, - { - "authorized_access_point": "Tadjikistan" - }, - { - "authorized_access_point": "Tibet (Chine)" - }, - { - "authorized_access_point": "Turkm\u00e9nistan" - }, + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/17148570434724310085" + } + ], + "note": [ { - "authorized_access_point": "Xinjiang (Chine)" + "noteType": "dataSource", + "label": [ + "Atlas Le Monde" + ] } ], + "pid": "027263878", + "type": "bf:Place", + "md5": "abb9345e627a268d122cd2c282b7026a" + }, + { + "authorized_access_point": "Slov\u00e9nie", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027264602", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027283518", + "value": "http://www.idref.fr/027264602", "source": "IDREF" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11935913h", + "type": "bf:Nbn", + "value": "ark:/12148/cb11934437w", "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040794873", - "source": "GND" + "value": "(DE-101)040553027" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/170431196", - "source": "VIAF" + "value": "http://viaf.org/viaf/6399148574320624430003" } ], - "variant_access_point": [ - "Asie (centre)", - "Asie centrale (CEI)", - "Asie centrale russe", - "Asie centrale sovi\u00e9tique", - "Turkestan", - "Turkestan occidental", - "Turkestan russe", - "Turkestan chinois", - "Tartarie", - "Grande Tartarie" - ], - "authorized_access_point": "Asie centrale" - }, - { - "md5": "eddb75bcaab01aaa08c99c85b6cedb30", - "pid": "027286703", "note": [ { + "noteType": "dataSource", "label": [ "GDEL" - ], - "noteType": "dataSource" - }, - { - "label": [ - "R\u00e9gion d'Italie centrale comprenant 9 provinces (capitale : Florence)" - ], - "noteType": "general" + ] } ], + "pid": "027264602", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Italie (centre)" - }, - { - "authorized_access_point": "Italie - R\u00e9gions" + "authorized_access_point": "Europe centrale" } ], - "related": [ - { - "authorized_access_point": "\u00c9trurie" - } + "variant_access_point": [ + "Slovenija" ], + "md5": "06cadd88302adc6250a4356e8fd49d82" + }, + { + "authorized_access_point": "\u00c9r\u00e9trie (Gr\u00e8ce)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027265013", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027286703", + "value": "http://www.idref.fr/027265013", "source": "IDREF" }, { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11934464s", + "source": "BNF" + }, + { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040604853\u200f ", - "source": "GND" + "value": "(DE-101)040855902" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/128956370", - "source": "VIAF" + "value": "http://viaf.org/viaf/171148570526024311115" } ], - "relation_pid": { - "type": "redirect_from", - "value": "123793696" - }, - "variant_access_point": [ - "Toscana (Italie)", - "Toscane (Grand-duch\u00e9)" - ], - "authorized_access_point": "Toscane (Italie)" - }, - { - "md5": "390f864064efe7fc593523d265ad0c08", - "pid": "027290530", "note": [ { + "noteType": "dataSource", "label": [ - "GDEL. Laval RVM, 1989-06." - ], - "noteType": "dataSource" + "GDEL. Rachet", + "Eretria (Ancient city) ; LCSH, 1991-03", + "Internet, www.catalogue.bnf.fr, 20070417" + ] } ], + "pid": "027265013", "type": "bf:Place", + "variant_access_point": [ + "\u00c9r\u00e9tria (ville ancienne)", + "\u00c9r\u00e9tria (Gr\u00e8ce)", + "\u00c9r\u00e9trie (ville ancienne)", + "Nea Psara (Gr\u00e8ce)" + ], + "md5": "52a064cc49b3d8b15857dfa6807b4e12" + }, + { + "authorized_access_point": "P\u00f4le Nord", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027266060", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027290530", + "value": "http://www.idref.fr/027266060", "source": "IDREF" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11936474k", - "source": "BNF" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)04003366X", - "source": "GND" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/131280462", - "source": "VIAF" + "value": "(DE-101)041179145" }, { + "source": "VIAF", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Ath\u00e8nes", - "source": "WIKIPEDIA" + "value": "http://viaf.org/viaf/316891260" } ], - "variant_access_point": [ - "Ath\u00e8nes", - "Athinai (Gr\u00e8ce)" - ], - "authorized_access_point": "Ath\u00e8nes (Gr\u00e8ce)" - }, - { - "md5": "380ec045975ff1d84979cb81ac6399ac", - "pid": "027296946", "note": [ { + "noteType": "dataSource", "label": [ - "GDEL" - ], - "noteType": "dataSource" - }, - { - "label": [ - "D\u00e9partement fran\u00e7ais (39)" - ], - "noteType": "general" + "Laval RVM, 1983" + ] } ], + "pid": "027266060", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Franche-Comt\u00e9 (France)" + "authorized_access_point": "Arctique" + }, + { + "authorized_access_point": "R\u00e9gions polaires" } ], + "md5": "cadc7920ac5c4333748580f71c4c07d5" + }, + { + "authorized_access_point": "Guyane", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027267873", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027296946", + "value": "http://www.idref.fr/027267873", "source": "IDREF" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11936964n", - "source": "BNF" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040932087", - "source": "GND" + "value": "(DE-101)040181847" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/234191213", - "source": "VIAF" + "value": "http://viaf.org/viaf/173457961" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "BA, 1989" + ] }, { - "type": "uri", - "value": "http://viaf.org/viaf/168693353", - "source": "VIAF" + "noteType": "general", + "label": [ + "Emploi direct en subdivision : [sujet] -- Guyane" + ] + } + ], + "pid": "027267873", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Guyanes" }, { - "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Jura_(d\u00e9partement)", - "source": "WIKIPEDIA" + "authorized_access_point": "France - D\u00e9partements et r\u00e9gions d'outre-mer" } ], "relation_pid": { - "type": "redirect_from", - "value": "127958827" + "value": "087992019", + "type": "redirect_from" }, "variant_access_point": [ - "Jura", - "Jura (d\u00e9partement)", - "Jura, D\u00e9partement du (France)" + "Guyane fran\u00e7aise" ], - "authorized_access_point": "Jura (France)" + "md5": "50d93c51a56deaac0816caacc2acb661" }, { - "md5": "2fe5880f2070a12371d54b09bf406c73", - "pid": "027303063", - "note": [ + "authorized_access_point": "Lombardie (Italie)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027274241", + "identifiedBy": [ { - "label": [ - "GDEL. SY 1990/91" - ], - "noteType": "dataSource" + "type": "uri", + "value": "http://www.idref.fr/027274241", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040362949" }, { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/134876348" + } + ], + "note": [ + { + "noteType": "dataSource", "label": [ - "Canton suisse" - ], - "noteType": "general" + "GDEL" + ] } ], + "pid": "027274241", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Suisse - Cantons" - } - ], - "bnf_type": "sujet Rameau", - "closeMatch": [ + "authorized_access_point": "Italie (nord)" + }, { - "source": "LCA", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/names/n80104828", - "source": "LCA" - }, - "authorized_access_point": "Valais (Switzerland)" + "authorized_access_point": "Italie - R\u00e9gions" } ], + "variant_access_point": [ + "Lombardia (Italie)", + "Lombardy (Italie)" + ], + "md5": "44d6e7da64fb84f4b8aa958987aec360" + }, + { + "authorized_access_point": "Afrique orientale", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027274365", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027303063", + "value": "http://www.idref.fr/027274365", "source": "IDREF" }, { "type": "uri", - "value": "http://d-nb.info/gnd/4064466-2", - "source": "GND" + "value": "http://catalogue.bnf.fr/ark:/12148/cb16272629n", + "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040644669", - "source": "GND" + "value": "(DE-101)040757226" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/316909073", - "source": "VIAF" - } - ], - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "914" + "value": "http://viaf.org/viaf/170530065" } ], - "variant_access_point": [ - "Vallese (Suisse)", - "Wallis (Suisse)" - ], - "authorized_access_point": "Valais (Suisse)" - }, - { - "md5": "16d4783cf7f4683c88ac580df1b1581a", - "pid": "027311430", "note": [ { + "noteType": "dataSource", "label": [ - "Names of states / IFLA, 1981. Pays et capitales du monde / IGN, 1985. Manuel de l'Unesco, 1985. Le Grand atlas de g\u00e9ographie, 1984. GDEL" - ], - "noteType": "dataSource" + "Laval RVM, 1992-02" + ] }, { + "noteType": "general", "label": [ - "Sous cette vedette on trouve les ouvrages sur la R\u00e9publique populaire de Mongolie et/ou sur l'ensemble de la Mongolie" - ], - "noteType": "general" + "Sous cette vedette on trouve les ouvrages qui traitent de la partie de l'Afrique qui s'\u00e9tend du Soudan au Mozambique" + ] } ], + "pid": "027274365", "type": "bf:Place", - "broader": [ + "narrower": [ { - "authorized_access_point": "Asie centrale" + "authorized_access_point": "Afrique du Nord-Est" + }, + { + "authorized_access_point": "Afrique orientale anglophone" + }, + { + "authorized_access_point": "Grands lacs africains (r\u00e9gion)" } ], + "variant_access_point": [ + "Afrique (est)", + "Afrique de l'Est" + ], + "md5": "096992bec7b6dd432753696175a11268" + }, + { + "authorized_access_point": "Pi\u00e9mont (Italie)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027274985", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027311430", + "value": "http://www.idref.fr/027274985", "source": "IDREF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040400565", - "source": "GND" + "value": "(DE-101)040460398" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/155144648525066137570", - "source": "VIAF" + "value": "http://viaf.org/viaf/132508744" } ], - "variant_access_point": [ - "Mongol Ard Uls", - "Mongolie (R\u00e9publique populaire)", - "Mongolie-ext\u00e9rieure" - ], - "authorized_access_point": "Mongolie" - }, - { - "md5": "06f31bfc233ad2600fc2ddf41549062a", - "pid": "027316211", "note": [ { + "noteType": "dataSource", "label": [ - "GDEL. Le Monde, 9-10-1991" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Sous cette vedette on trouve les ouvrages qui traitent de l'ensemble de l'Arm\u00e9nie et/ou de sa seule partie orientale annex\u00e9e par la Russie en 1828, qui constitue aujourd'hui une r\u00e9publique ind\u00e9pendante (r\u00e9f\u00e9rendum du 21-09-1991)" - ], - "noteType": "general" + "GDEL" + ] } ], + "pid": "027274985", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Transcaucasie" + "authorized_access_point": "Italie (nord)" }, { - "authorized_access_point": "Pays de la CEI" + "authorized_access_point": "Italie - R\u00e9gions" } ], + "variant_access_point": [ + "Pi\u00e9mont", + "Piemonte (Italie)" + ], + "md5": "bcfe2b631247b610012f924648ad226b" + }, + { + "authorized_access_point": "Seychelles", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027275191", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027316211", + "value": "http://www.idref.fr/027275191", "source": "IDREF" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb123844340", - "source": "BNF" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040859312", - "source": "GND" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/136032216", - "source": "VIAF" + "value": "(DE-101)040546942" }, { + "source": "VIAF", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Arm\u00e9nie", - "source": "WIKIPEDIA" + "value": "http://viaf.org/viaf/31148574294324430007" } ], - "variant_access_point": [ - "Arm\u00e9nie (R\u00e9publique socialiste sovi\u00e9tique)", - "Hai\u034f\u0308k", - "Hayastan" - ], - "authorized_access_point": "Arm\u00e9nie" - }, - { - "md5": "d979077b0b5819460d543162e416f8bf", - "pid": "027316696", "note": [ { + "noteType": "dataSource", "label": [ - "IFLA, Names of states, 1981", - "Cor\u00e9e du Nord ; Laval RVM, 1994-08. Chos\u01d2n ; GKD, 1980" - ], - "noteType": "dataSource" - }, - { - "label": [ - "En pr\u00e9cision g\u00e9ographique, employer Cor\u00e9e N., par ex. Pyongyang (Cor\u00e9e N.)", - "Le Royaume de Cor\u00e9e fut colonis\u00e9 par le Japon de 1905 \u00e0 la fin de la Seconde guerre mondiale. La partition, en 1945, en 2 zones d'occupation (USA et URSS) aboutit le 9 septembre 1948 \u00e0 la proclamation de la R\u00e9publique populaire d\u00e9mocratique de Cor\u00e9e par l'Assembl\u00e9e populaire supr\u00eame. Capitale Pyongyang, langue officielle cor\u00e9en" - ], - "noteType": "general" + "Names of states / IFLA, 1981. LCNA, 1985" + ] } ], + "pid": "027275191", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Cor\u00e9e" + "authorized_access_point": "Indien, \u00celes de l'oc\u00e9an" } ], + "md5": "1da43470a95a0ea7337c2caa173568f2" + }, + { + "authorized_access_point": "Jura souabe (Allemagne ; massif)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027283496", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027316696", + "value": "http://www.idref.fr/027283496", "source": "IDREF" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11938542q", - "source": "BNF" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040754685", - "source": "GND" + "value": "(DE-101)040536866" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/6097150325542010090000", - "source": "VIAF" + "value": "http://viaf.org/viaf/2083148574385624430003" } ], - "variant_access_point": [ - "Chos\u01d2n", - "Cor\u00e9e du Nord", - "R\u00e9publique populaire d\u00e9mocratique de Cor\u00e9e", - "Cor\u00e9e, R\u00e9publique populaire d\u00e9mocratique de", - "Cor\u00e9e, R\u00e9publique populaire d\u00e9mocratique de (1948-....)" - ], - "authorized_access_point": "Cor\u00e9e (R\u00e9publique populaire d\u00e9mocratique)" - }, - { - "md5": "84ff30a18d2a063afd3b1f34cb10e01c", - "pid": "027318494", "note": [ { + "noteType": "dataSource", "label": [ - "GDEL. SY 1991/92" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Canton suisse" - ], - "noteType": "general" + "Atlas universalis. GDEL" + ] } ], + "pid": "027283496", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Suisse - Cantons" + "authorized_access_point": "Souabe (Allemagne)" } ], + "variant_access_point": [ + "Schw\u00e4bische Alb (Allemagne ; massif)" + ], + "md5": "727837a51f0ca3ba6db4ec8ce12c1507" + }, + { + "authorized_access_point": "Asie centrale", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027283518", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027318494", + "value": "http://www.idref.fr/027283518", "source": "IDREF" }, { - "type": "bf:Nbn", - "value": "(DE-101)040789829", - "source": "GND" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11935913h", + "source": "BNF" }, { - "type": "uri", - "value": "http://d-nb.info/gnd/4078982-2", - "source": "GND" + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040794873" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/172278245", - "source": "VIAF" + "value": "http://viaf.org/viaf/170431196" } ], - "variant_access_point": [ - "L\u00e9man (Suisse)", - "Vaud", - "Waadt (Suisse)" - ], - "authorized_access_point": "Vaud (Suisse)" - }, - { - "md5": "889960ebf20d8883ce5e9134ff37bdd7", - "pid": "027321940", "note": [ { + "noteType": "dataSource", "label": [ - "Laval RVM, 1992-08" - ], - "noteType": "dataSource" + "GLU, 1991", + "Laval RVM, 1997-02" + ] }, { + "noteType": "general", "label": [ - "Sous cette vedette on trouve les ouvrages qui traitent de la partie de l'Afrique situ\u00e9e au sud du Sahara et \u00e0 l'ouest du Tchad et du Cameroun" - ], - "noteType": "general" + "Sous cette vedette on trouve les ouvrages qui traitent : de la r\u00e9gion qui s'\u00e9tend de la mer Caspienne \u00e0 la Mongolie et la Chine du nord-ouest (inclusivement), et du sud de la Sib\u00e9rie \u00e0 l'Afghanistan et au nord de l'Iran (inclusivement) ; ou bien des seules 5 r\u00e9publiques ex-sovi\u00e9tiques consid\u00e9r\u00e9es collectivement" + ] } ], + "pid": "027283518", "type": "bf:Place", - "bnf_type": "sujet Rameau", "narrower": [ { - "authorized_access_point": "Afrique occidentale anglophone" - }, - { - "authorized_access_point": "Afrique occidentale francophone" - }, - { - "authorized_access_point": "B\u00e9nin" - }, - { - "authorized_access_point": "Burkina Faso" - }, - { - "authorized_access_point": "Cap-Vert" - }, - { - "authorized_access_point": "C\u00f4te d'Ivoire" - }, - { - "authorized_access_point": "Gambie" - }, - { - "authorized_access_point": "Ghana" - }, - { - "authorized_access_point": "Guin\u00e9e" - }, - { - "authorized_access_point": "Guin\u00e9e-Bissau" - }, - { - "authorized_access_point": "Liberia" + "authorized_access_point": "Afghanistan" }, { - "authorized_access_point": "Mali" + "authorized_access_point": "Kazakhstan" }, { - "authorized_access_point": "Mauritanie" + "authorized_access_point": "Kirghizistan" }, { - "authorized_access_point": "Niger" + "authorized_access_point": "Mongolie" }, { - "authorized_access_point": "Nigeria" + "authorized_access_point": "Ouzb\u00e9kistan" }, { - "authorized_access_point": "S\u00e9n\u00e9gal" + "authorized_access_point": "Tadjikistan" }, { - "authorized_access_point": "Sierra Leone" + "authorized_access_point": "Tibet (Chine)" }, { - "authorized_access_point": "Togo" + "authorized_access_point": "Turkm\u00e9nistan" }, { - "authorized_access_point": "Guin\u00e9e (r\u00e9gion)" + "authorized_access_point": "Xinjiang (Chine)" } ], + "variant_access_point": [ + "Asie (centre)", + "Asie centrale (CEI)", + "Asie centrale russe", + "Asie centrale sovi\u00e9tique", + "Turkestan", + "Turkestan occidental", + "Turkestan russe", + "Turkestan chinois", + "Tartarie", + "Grande Tartarie" + ], + "md5": "527402c2a4e297773fd18d88e81ac68e" + }, + { + "authorized_access_point": "Toscane (Italie)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027286703", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027321940", + "value": "http://www.idref.fr/027286703", "source": "IDREF" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb162726289", - "source": "BNF" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)04079203X", - "source": "GND" + "value": "(DE-101)040604853\u200f " }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/315124800", - "source": "VIAF" - }, - { - "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Afrique_de_l'Ouest", - "source": "WIKIPEDIA" + "value": "http://viaf.org/viaf/128956370" } ], - "variant_access_point": [ - "Afrique (ouest)", - "Afrique de l'Ouest" - ], - "authorized_access_point": "Afrique occidentale" - }, - { - "md5": "57b08ae67e61c49ed024539a506baa8e", - "pid": "027322998", "note": [ { + "noteType": "dataSource", "label": [ - "Names of states / IFLA, 1981. LCSH, 1985" - ], - "noteType": "dataSource" + "GDEL" + ] + }, + { + "noteType": "general", + "label": [ + "R\u00e9gion d'Italie centrale comprenant 9 provinces (capitale : Florence)" + ] } ], + "pid": "027286703", "type": "bf:Place", + "related": [ + { + "authorized_access_point": "\u00c9trurie" + } + ], "broader": [ { - "authorized_access_point": "Afrique orientale anglophone" + "authorized_access_point": "Italie (centre)" + }, + { + "authorized_access_point": "Italie - R\u00e9gions" } ], + "relation_pid": { + "value": "123793696", + "type": "redirect_from" + }, + "variant_access_point": [ + "Toscana (Italie)", + "Toscane (Grand-duch\u00e9)" + ], + "md5": "56ad80ab391e89c1783688a7304d41ed" + }, + { + "authorized_access_point": "Le Cap (Afrique du Sud)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027286835", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027322998", + "value": "http://www.idref.fr/027286835", "source": "IDREF" }, { - "type": "bf:Nbn", - "value": "(DE-101)040302369", - "source": "GND" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119361931", + "source": "BNF" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/869148574256524430002", - "source": "VIAF" + "value": "http://viaf.org/viaf/125475857" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Kenya_(Lubumbashi)", - "source": "WIKIPEDIA" + "value": "https://fr.wikipedia.org/wiki/Le_Cap" } ], - "authorized_access_point": "Kenya" - }, - { - "md5": "2ce7fd3d99962e8bb1aa3808dca5fbd2", - "pid": "027323072", "note": [ { + "noteType": "dataSource", "label": [ - "Names of states / IFLA, 1981. Pays et capitales du monde / IGN, 1985" - ], - "noteType": "dataSource" + "GDEL. Cape Town (South Africa) ; LCNA, 1977-1986" + ] } ], + "pid": "027286835", "type": "bf:Place", - "broader": [ - { - "authorized_access_point": "Australasie" - }, + "variant_access_point": [ + "Cap, Le (Afrique du Sud)", + "Cape Town (Afrique du Sud)", + "Kaapstad (Afrique du Sud)" + ], + "md5": "a210dbf85f21e836bcb3fbf5406c16d1" + }, + { + "authorized_access_point": "Espagne - 1936-1939 (Guerre civile)", + "bnf_type": "sujet Rameau", + "classification": [ { - "authorized_access_point": "Oc\u00e9anie" + "type": "bf:ClassificationDdc", + "classificationPortion": "940", + "name": "Histoire de l'Europe" } ], - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027288951", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027323072", + "value": "http://www.idref.fr/027288951", "source": "IDREF" }, { - "type": "bf:Nbn", - "value": "(DE-101)040419150", - "source": "GND" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11936368c", + "source": "BNF" }, { - "type": "uri", - "value": "http://viaf.org/viaf/3232154260428024480001", - "source": "VIAF" + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04055970X" } ], - "variant_access_point": [ - "New Zealand", - "Nouvelle Z\u00e9lande" - ], - "authorized_access_point": "Nouvelle-Z\u00e9lande" - }, - { - "md5": "6e3c3bb57c6a15022b6bf76eeaaf2656", - "pid": "027331180", "note": [ { + "noteType": "dataSource", "label": [ - "Atlas Le Monde", - "Grand Larousse universel", - "Laval RVM (en ligne) et LC Authorities (en ligne), 2006-04-18" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Province du Canada (capitale : Qu\u00e9bec)" - ], - "noteType": "general" + "Grand Larousse universel : Espagne (guerre civile d')", + "Encycl. universalis (art. : Espagne (Le territoire et les hommes) - De l'unit\u00e9 politique \u00e0 la guerre civile) - http://www.universalis-edu.com (2015-03-17)", + "Dict. encyclop\u00e9dique d'histoire / M. Mourre, 1996 (art. : Espagne)", + "La guerre d'Espagne / A. Beevor, 2006", + "La Guerre d'Espagne : juillet 1936-mars 1939 / H. Thomas, 1985", + "La r\u00e9volution et la guerre d'Espagne / P. Brou\u00e9, \u00c9. T\u00e9mime, 1979", + "Historical dict. of the Spanish civil war, 1936-1939 / J. W. Cortada, 1982" + ] }, { + "noteType": "general", "label": [ - "Voir aussi la subdivision Et le Qu\u00e9bec aux collectivit\u00e9s (\u00e0 l'exception des types de collectivit\u00e9s) et aux personnes" - ], - "noteType": "seeReference" + "17-18 juillet 1936 : soul\u00e8vement militaire. 30 mars 1939 : entr\u00e9e des troupes nationalistes \u00e0 Valence" + ] } ], + "pid": "027288951", "type": "bf:Place", - "broader": [ + "related": [ + { + "authorized_access_point": "Espagne - 1936-1939 (Guerre civile) - Cin\u00e9ma et guerre" + }, + { + "authorized_access_point": "Espagne - 1936-1939 (Guerre civile) - Litt\u00e9rature et guerre" + }, { - "authorized_access_point": "Canada (est)" + "authorized_access_point": "Espagne - 1936-1939 (Guerre civile) - Origines" }, { - "authorized_access_point": "Canada - Provinces" + "authorized_access_point": "Espagne - 1936-1939 (Guerre civile) - R\u00e9fugi\u00e9s" } ], - "bnf_type": "sujet Rameau", "narrower": [ { - "authorized_access_point": "Mont\u00e9r\u00e9gie (Canada)" + "authorized_access_point": "Andalousie (Espagne) - 1936-1939 (Guerre civile)" }, { - "authorized_access_point": "Abitibi-T\u00e9miscamingue (Canada)" + "authorized_access_point": "Aragon (Espagne) - 1936-1939 (Guerre civile)" }, { - "authorized_access_point": "Beauce (Canada)" + "authorized_access_point": "Asturies (Espagne) - 1936-1939 (Guerre civile)" }, { - "authorized_access_point": "Bois-Francs (Canada)" + "authorized_access_point": "Bal\u00e9ares (Espagne) - 1936-1939 (Guerre civile)" }, { - "authorized_access_point": "Estrie (Canada)" + "authorized_access_point": "Canaries - 1936-1939 (Guerre civile)" }, { - "authorized_access_point": "Etchemin (Canada ; r\u00e9gion)" + "authorized_access_point": "Cantabrie (Espagne) - 1936-1939 (Guerre civile)" }, { - "authorized_access_point": "Gasp\u00e9sie (Canada ; p\u00e9ninsule)" + "authorized_access_point": "Castille-La Manche (Espagne) - 1936-1939 (Guerre civile)" }, { - "authorized_access_point": "Haut-Richelieu (Canada)" + "authorized_access_point": "Castille-Le\u00f3n (Espagne) - 1936-1939 (Guerre civile)" }, { - "authorized_access_point": "James, Baie (Canada ; r\u00e9gion)" + "authorized_access_point": "Catalogne (Espagne) - 1936-1939 (Guerre civile)" }, { - "authorized_access_point": "Lanaudi\u00e8re (Canada)" + "authorized_access_point": "Espagne - 1936-1937 (R\u00e9volution)" }, { - "authorized_access_point": "Laurentides (Canada)" + "authorized_access_point": "Espagne - 1936-1939 (Guerre civile) - Op\u00e9rations militaires" }, { - "authorized_access_point": "Mauricie-Bois-Francs (Canada)" + "authorized_access_point": "Espagne - 1936-1939 (Guerre civile) - Participation \u00e9trang\u00e8re" }, { - "authorized_access_point": "Nord-du-Qu\u00e9bec (Canada)" + "authorized_access_point": "Espagne - 1936 (Soul\u00e8vement du 18 juillet 1936)" }, { - "authorized_access_point": "Outaouais (Canada ; r\u00e9gion administrative)" - } - ], - "identifiedBy": [ - { - "type": "uri", - "value": "http://www.idref.fr/027331180", - "source": "IDREF" + "authorized_access_point": "Estr\u00e9madure (Espagne) - 1936-1939 (Guerre civile)" }, { - "type": "bf:Nbn", - "value": "(DE-101)040480305", - "source": "GND" + "authorized_access_point": "Galice (Espagne) - 1936-1939 (Guerre civile)" }, { - "type": "bf:Nbn", - "value": " https://d-nb.info/gnd/4048030-6", - "source": "GND" + "authorized_access_point": "La Rioja (Espagne) - 1936-1939 (Guerre civile)" }, { - "type": "uri", - "value": "http://viaf.org/viaf/1454149296307780670001", - "source": "VIAF" - } - ], - "relation_pid": { - "type": "redirect_from", - "value": "027241831" - }, - "variant_access_point": [ - "Bas-Canada", - "Canada, Bas-", - "Qu\u00e9bec", - "Qu\u00e9bec (Province)" - ], - "authorized_access_point": "Qu\u00e9bec (Canada ; province)" - }, - { - "md5": "8862cebefa0c1315c6287b4dc79905e3", - "pid": "027333752", - "note": [ + "authorized_access_point": "Pays basque (Espagne) - 1936-1939 (Guerre civile)" + }, { - "label": [ - "GDEL" - ], - "noteType": "dataSource" + "authorized_access_point": "Valence (Espagne ; r\u00e9gion) - 1936-1939 (Guerre civile)" } ], - "type": "bf:Place", "broader": [ { - "authorized_access_point": "Asie du Nord" - }, - { - "authorized_access_point": "Russie" + "authorized_access_point": "Espagne - 1931-1939 (2e R\u00e9publique)" } ], + "md5": "fc01c2134a948fa1d0dda4e977c11730" + }, + { + "authorized_access_point": "Ath\u00e8nes (Gr\u00e8ce)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027290530", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027333752", + "value": "http://www.idref.fr/027290530", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11939827w", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11936474k", "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040547809", - "source": "GND" + "value": "(DE-101)04003366X" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/251794742", - "source": "VIAF" + "value": "http://viaf.org/viaf/131280462" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Sib\u00e9rie", - "source": "WIKIPEDIA" + "value": "https://fr.wikipedia.org/wiki/Ath\u00e8nes" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. Laval RVM, 1989-06." + ] } ], + "pid": "027290530", + "type": "bf:Place", "variant_access_point": [ - "Russie d'Asie", - "Sibir (Russie)" + "Ath\u00e8nes", + "Athinai (Gr\u00e8ce)" ], - "authorized_access_point": "Sib\u00e9rie (Russie)" + "md5": "1e6e8ded3b3fa22297628d8037789cf7" }, { - "md5": "9169be1795b476a90d867f8ce3c61603", - "pid": "027342395", - "note": [ + "authorized_access_point": "H\u1ed3 Ch\u00ed Minh-Ville (Viet-Nam ; province)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027291499", + "identifiedBy": [ { - "label": [ - "GLU. SY 1994-95" - ], - "noteType": "dataSource" + "type": "uri", + "value": "http://www.idref.fr/027291499", + "source": "IDREF" }, { - "label": [ - "Sous cette vedette on trouve les ouvrages qui traitent de la Russie jusqu'en 1917, ou de la R\u00e9publique socialiste f\u00e9d\u00e9rative sovi\u00e9tique de Russie (1918-1991), ou de l'actuelle F\u00e9d\u00e9ration de Russie. Les ouvrages qui traitent de l'ensemble des r\u00e9publiques socialistes sovi\u00e9tiques de 1917 \u00e0 1991 (bien que l'URSS n'ait \u00e9t\u00e9 fond\u00e9e officiellement que le 30-12-1922) se trouvent sous la vedette URSS" - ], - "noteType": "general" + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/164772349" }, { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/H\u00f4_Chi_Minh-Ville" + } + ], + "note": [ + { + "noteType": "dataSource", "label": [ - "Voir aussi la subdivision Et la Russie aux personnes et aux collectivit\u00e9s" - ], - "noteType": "seeReference" + "GLU. BN Service vietnamien" + ] } ], + "pid": "027291499", "type": "bf:Place", - "broader": [ - { - "authorized_access_point": "Pays de la CEI" - }, + "narrower": [ { - "authorized_access_point": "Pays slaves" + "authorized_access_point": "C\u01b0 Chinh (Viet Nam ; r\u00e9gion)" } ], + "variant_access_point": [ + "S\u00e0i g\u00f2n (Viet-Nam)", + "Saigon (Viet-Nam)", + "Th\u00e0nh ph\u1ed1 H\u1ed3 Ch\u00ed Minh (Viet-Nam)" + ], + "md5": "aa3e683188ff8627090c89b0ed383803" + }, + { + "authorized_access_point": "Jura (France)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027296946", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027342395", + "value": "http://www.idref.fr/027296946", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119405184", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11936964n", "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040768996", - "source": "GND" + "value": "(DE-101)040932087" }, { + "source": "VIAF", "type": "uri", - "value": "https://d-nb.info/gnd/4076899-5", - "source": "GND" + "value": "http://viaf.org/viaf/234191213" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/3147270312635700007", - "source": "VIAF" + "value": "http://viaf.org/viaf/168693353" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Empire_russe", - "source": "WIKIPEDIA" + "value": "https://fr.wikipedia.org/wiki/Jura_(d\u00e9partement)" } ], - "variant_access_point": [ - "Empire russe", - "F\u00e9d\u00e9ration de Russie", - "Moscovie", - "Rossia", - "RSFSR", - "Russie (Empire)", - "Russie (F\u00e9d\u00e9ration)", - "Russie (R\u00e9publique socialiste f\u00e9d\u00e9rative sovi\u00e9tique)" - ], - "authorized_access_point": "Russie" - }, - { - "md5": "2026bfc1f21983e82f2749f2f9300e8b", - "pid": "027350789", "note": [ { + "noteType": "dataSource", "label": [ - "GLU. Encycl. universalis, 1989, 20, 642-661", - "Laval RVM, 1997-02" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Sous cette vedette, on trouve les ouvrages sur la r\u00e9gion form\u00e9e par le Danemark, la Norv\u00e8ge et la Su\u00e8de, \u00e9ventuellement \u00e9tendue \u00e0 la Finlande et \u00e0 l'Islande" - ], - "noteType": "general" + "GDEL" + ] }, { + "noteType": "general", "label": [ - "Voir aussi la subdivision Et la Scandinavie aux personnes et collectivit\u00e9s" - ], - "noteType": "seeReference" + "D\u00e9partement fran\u00e7ais (39)" + ] } ], + "pid": "027296946", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Europe du Nord" - }, - { - "authorized_access_point": "Pays de langues germaniques" + "authorized_access_point": "Franche-Comt\u00e9 (France)" } ], + "relation_pid": { + "value": "127958827", + "type": "redirect_from" + }, + "variant_access_point": [ + "Jura", + "Jura (d\u00e9partement)", + "Jura, D\u00e9partement du (France)" + ], + "md5": "992d837c8d59562e7a7f51c357eed876" + }, + { + "authorized_access_point": "Gex, Pays de (Ain)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027296970", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027350789", + "value": "http://www.idref.fr/027296970", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15238529v", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11936967p", "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040552098", - "source": "GND" + "value": "(DE-101)953732320" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/172765142", - "source": "VIAF" + "value": "http://viaf.org/viaf/173309018" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Scandinavie", - "source": "WIKIPEDIA" + "value": "https://fr.wikipedia.org/wiki/Pays_de_Gex" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Moreau. GLU" + ] + } + ], + "pid": "027296970", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Ain (France)" } ], "variant_access_point": [ - "Conseil nordique, Pays du", - "\u00c9tats scandinaves", - "Fennoscandie", - "Nordiques, Pays", - "Pays du Conseil nordique", - "Pays nordiques", - "Pays scandinaves", - "Scandinaves, Pays" + "Pays de Gex (Ain)", + "Gex (Ain ; r\u00e9gion)" ], - "authorized_access_point": "Scandinavie" + "md5": "0280d709471fc2cbbe1e93938f13cbff" }, { - "md5": "9bf64b25a5d46f3276162fe2a05281e7", - "pid": "027356302", + "authorized_access_point": "Cr\u00e8te (Gr\u00e8ce)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027297810", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027297810", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040737918" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/151226384" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Cr\u00e8te" + } + ], "note": [ { + "noteType": "dataSource", "label": [ - "GLU" - ], - "noteType": "dataSource" + "GDEL. SY 1990/91" + ] }, { + "noteType": "general", "label": [ - "Sous cette vedette on trouve les ouvrages qui traitent des pays riverains de la M\u00e9diterran\u00e9e orientale (Chypre, \u00c9gypte, Palestine, Israe\u034f\u0308l, Liban, Syrie) et de la Jordanie. Les ouvrages qui traitent de l'ensemble de l'Asie occidentale, et \u00e9ventuellement de l'\u00c9gypte et du Soudan, se trouvent sous la vedette Moyen-Orient" - ], - "noteType": "general" + "\u00eele et r\u00e9gion de la Gr\u00e8ce" + ] } ], + "pid": "027297810", "type": "bf:Place", "broader": [ { - "authorized_access_point": "M\u00e9diterran\u00e9e (r\u00e9gion ; est)" + "authorized_access_point": "Gr\u00e8ce" }, { - "authorized_access_point": "Moyen-Orient" + "authorized_access_point": "M\u00e9diterran\u00e9e, \u00celes de la" } ], + "variant_access_point": [ + "Candie (Gr\u00e8ce ; \u00eele)", + "Candia (Gr\u00e8ce ; \u00eele)", + "Kr\u00eat\u00ea (Gr\u00e8ce)", + "Kr\u00edti (Gr\u00e8ce)", + "\u00cele de Cr\u00eate" + ], + "md5": "e107c5d64335c683c28cd60b55eec3bc" + }, + { + "authorized_access_point": "Loire, Vall\u00e9e de la (France)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027298531", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027356302", + "value": "http://www.idref.fr/027298531", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15365915b", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11937097c", "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)04068878X", - "source": "GND" + "value": "(DE-101)040997758" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/170319740", - "source": "VIAF" - } - ], - "variant_access_point": [ - "Levant", - "Orient, Proche-" - ], - "authorized_access_point": "Proche-Orient" - }, - { - "md5": "e93db978958b0789659e18b9813a40f1", - "pid": "027356949", - "note": [ - { - "label": [ - "IFLA, Names of states, 1981. BN Service arabe", - "Laval RVM, 1997-02. S\u016br\u012by\u0101 ; GKD, 1994-05" - ], - "noteType": "dataSource" + "value": "http://viaf.org/viaf/172765072" } ], + "pid": "027298531", "type": "bf:Place", - "broader": [ + "narrower": [ { - "authorized_access_point": "Proche-Orient" + "authorized_access_point": "Val de Loire (France)" } ], + "md5": "6cb2cb4e434e71eec2f1ea12df4ad1fc" + }, + { + "authorized_access_point": "Naples (Italie)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027298728", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027356949", + "value": "http://www.idref.fr/027298728", "source": "IDREF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040587940", - "source": "GND" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/154701530", - "source": "VIAF" + "value": "(DE-101)040414760" }, { + "source": "VIAF", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Syrie", - "source": "WIKIPEDIA" + "value": "http://viaf.org/viaf/1991155648121518330006" } ], - "variant_access_point": [ - "\u0633\u0648\u0631\u064a\u0627", - "S\u016briy\u0101", - "\u0633\u0648\u0631\u064a\u0629", - "S\u016briya\u1e97", - "\u0633\u0648\u0631\u064a\u0647", - "S\u016br\u012byah" - ], - "authorized_access_point": "Syrie" - }, - { - "md5": "c56919d9f26d355a3f6d312afad0ca28", - "pid": "02735895X", "note": [ { + "noteType": "dataSource", "label": [ - "GDEL" - ], - "noteType": "dataSource" + "GDEL", + "http://ark.bnf.fr/ark:/12148/cb119371144, 2024-07-23" + ] } ], + "pid": "027298728", "type": "bf:Place", - "broader": [ + "related": [ { - "authorized_access_point": "Grande-Bretagne" + "authorized_access_point": "Naples (Italie) - Histoire" } ], + "relation_pid": { + "value": "119626551", + "type": "redirect_from" + }, + "variant_access_point": [ + "Napoli (Italie)", + "Parth\u00e9nope (ville ancienne)", + "Neapolis (ville ancienne)", + "Naples (Campanie, Italie)" + ], + "md5": "2f5b17cad04d9a451c0df41a570783ee" + }, + { + "authorized_access_point": "Saxe (Allemagne)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027308561", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/02735895X", + "value": "http://www.idref.fr/027308561", "source": "IDREF" }, { "type": "uri", - "value": "http://d-nb.info/gnd/4014770-8", - "source": "GND" + "value": "http://catalogue.bnf.fr/ark:/12148/cb119379010", + "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040147703", - "source": "GND" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/173636420", - "source": "VIAF" + "value": "(DE-101)040511766" }, { + "source": "VIAF", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Angleterre", - "source": "WIKIPEDIA" + "value": "http://viaf.org/viaf/201974690" } ], - "variant_access_point": [ - "England", - "Angleterre" - ], - "authorized_access_point": "Angleterre (GB)" - }, - { - "md5": "2a528378bce56fd20fe605c4a921c0fd", - "pid": "027360199", "note": [ { + "noteType": "dataSource", "label": [ - "GDEL", - "Balkans ; Laval RVM, 1992-02" - ], - "noteType": "dataSource" + "GLU. Mourre", + "Laval RVM, 1995-08. Sachsen ; SWD, 1994-10" + ] + }, + { + "noteType": "general", + "label": [ + "Sous cette vedette on trouve les ouvrages qui traitent de la Saxe : duch\u00e9, puis \u00e9lectorat, puis royaume, puis Land" + ] } ], + "pid": "027308561", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Europe du Sud" + "authorized_access_point": "Allemagne - L\u00e4nder" } ], + "variant_access_point": [ + "Kursachsen (Allemagne)", + "Sachsen", + "Sachsen (Allemagne)", + "Saxe", + "Saxe (Allemagne ; Land)", + "Saxe (Duch\u00e9)", + "Saxe (\u00c9lectorat)", + "Saxe (Royaume)", + "Saxe \u00e9lectorale" + ], + "md5": "5a379e65bc389f41d09ee453377518da" + }, + { + "authorized_access_point": "Benelux", "bnf_type": "sujet Rameau", - "narrower": [ - { - "authorized_access_point": "Albanie" - }, - { - "authorized_access_point": "Bosnie-Herz\u00e9govine" - }, - { - "authorized_access_point": "Bulgarie" - }, + "identifier": "http://www.idref.fr/027311058", + "identifiedBy": [ { - "authorized_access_point": "Ex-Yougoslavie" + "type": "uri", + "value": "http://www.idref.fr/027311058", + "source": "IDREF" }, { - "authorized_access_point": "Gr\u00e8ce" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15238537g", + "source": "BNF" }, { - "authorized_access_point": "Mac\u00e9doine" + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/171985634" }, { - "authorized_access_point": "Mac\u00e9doine du Nord (R\u00e9publique)" - }, + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Benelux" + } + ], + "note": [ { - "authorized_access_point": "M\u00e9sie" - }, + "noteType": "dataSource", + "label": [ + "GLU. Laval RVM, 1994-08" + ] + } + ], + "pid": "027311058", + "type": "bf:Place", + "broader": [ { - "authorized_access_point": "Mont\u00e9n\u00e9gro" - }, + "authorized_access_point": "Europe de l'Ouest" + } + ], + "related": [ { - "authorized_access_point": "Roumanie" + "authorized_access_point": "Belgique" }, { - "authorized_access_point": "Serbie" + "authorized_access_point": "Pays-Bas" }, { - "authorized_access_point": "Thrace" + "authorized_access_point": "Luxembourg" } ], + "variant_access_point": [ + "Pays du Benelux" + ], + "md5": "72451a2a46e7886b73d08a17b09b145c" + }, + { + "authorized_access_point": "Mongolie", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027311430", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027360199", + "value": "http://www.idref.fr/027311430", "source": "IDREF" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11941903f", - "source": "BNF" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040690997", - "source": "GND" + "value": "(DE-101)040400565" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/60144648482279885458", - "source": "VIAF" + "value": "http://viaf.org/viaf/155144648525066137570" } ], - "variant_access_point": [ - "Balkanique, P\u00e9ninsule", - "Europe (sud-est)", - "Europe du Sud-Est", - "Pays balkaniques" - ], - "authorized_access_point": "Balkans" - }, - { - "md5": "939117550222b3d77f28b6f1c9a731f0", - "pid": "027367428", "note": [ { + "noteType": "dataSource", "label": [ - "GDEL" - ], - "noteType": "dataSource" + "Names of states / IFLA, 1981. Pays et capitales du monde / IGN, 1985. Manuel de l'Unesco, 1985. Le Grand atlas de g\u00e9ographie, 1984. GDEL" + ] }, { + "noteType": "general", "label": [ - "Fief constitu\u00e9 au 12e si\u00e8cle par Thierry, de la maison de Bar-le-Duc, le comt\u00e9 passe ensuite \u00e0 celle de Montfaucon puis au Wurtemberg (1397) et devient la principaut\u00e9 de Montb\u00e9liard. Annex\u00e9e par la Convention (10 oct. 1793), elle est d\u00e9finitivement r\u00e9unie \u00e0 la France par le trait\u00e9 de Lun\u00e9ville (1801). On l'appelait usuellement Pays de Montb\u00e9liard, expression qui est toujours en usage" - ], - "noteType": "general" + "Sous cette vedette on trouve les ouvrages sur la R\u00e9publique populaire de Mongolie et/ou sur l'ensemble de la Mongolie" + ] } ], + "pid": "027311430", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Doubs (France)" + "authorized_access_point": "Asie centrale" } ], + "variant_access_point": [ + "Mongol Ard Uls", + "Mongolie (R\u00e9publique populaire)", + "Mongolie-ext\u00e9rieure" + ], + "md5": "0f68c4e63b3b73448820df559bab5ed7" + }, + { + "authorized_access_point": "Toronto (Canada)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027311694", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027367428", + "value": "http://www.idref.fr/027311694", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11942447x", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119381418", "source": "BNF" }, { - "type": "bf:Nbn", - "value": "(DE-101)040401499", - "source": "GND" - }, - { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/155890847", - "source": "VIAF" + "value": "http://viaf.org/viaf/7267148574365324430001" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Montb\u00e9liard", - "source": "WIKIPEDIA" + "value": "https://fr.wikipedia.org/wiki/Toronto" } ], - "variant_access_point": [ - "Montb\u00e9liard (comt\u00e9)", - "Montb\u00e9liard (Doubs ; r\u00e9gion)", - "Montb\u00e9liard (principaut\u00e9)", - "Pays de Montb\u00e9liard (France)" - ], - "authorized_access_point": "Montb\u00e9liard, Pays de (France)" - }, - { - "md5": "b6e93cecf91107f7889b67c3b2f3f6f9", - "pid": "027369714", "note": [ { + "noteType": "dataSource", "label": [ - "GDEL" - ], - "noteType": "dataSource" + "Atlas Le Monde" + ] } ], + "pid": "027311694", "type": "bf:Place", + "md5": "09a56ff0c38056ef744c2cad494c842d" + }, + { + "authorized_access_point": "R\u00e9gions tropicales", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027314049", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027369714", + "value": "http://www.idref.fr/027314049", "source": "IDREF" }, { "type": "uri", - "value": "http://d-nb.info/gnd/4005762-8", - "source": "GND" + "value": "http://catalogue.bnf.fr/ark:/12148/cb11938331h", + "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040057623", - "source": "GND" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/237298336", - "source": "VIAF" + "value": "(DE-101)040609979" }, { + "source": "VIAF", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Berne", - "source": "WIKIPEDIA" + "value": "http://viaf.org/viaf/316897266" } ], - "variant_access_point": [ - "Bern (Suisse)" - ], - "authorized_access_point": "Berne (Suisse)" - }, - { - "md5": "149b850a12a3ca4eea613c54453da991", - "pid": "027375080", "note": [ { + "noteType": "dataSource", "label": [ - "Laval RVM, 1991-02" - ], - "noteType": "dataSource" + "Laval RVM, 1992-08" + ] + }, + { + "noteType": "general", + "label": [ + "S'emploie \u00e9galement en subdivision g\u00e9ographique aux sujets noms communs appropri\u00e9s, par ex. Agriculture -- R\u00e9gions tropicales" + ] + }, + { + "noteType": "seeReference", + "label": [ + "Voir aussi la subdivision Conditions tropicales aux sujets noms communs appropri\u00e9s lorsque l'emploi de la subdivision g\u00e9ographique R\u00e9gions tropicales n'est pas possible, par ex. Livres -- Conservation et restauration -- Conditions tropicales", + "Voir aussi les vedettes du type : Cultures tropicales ; Poissons tropicaux" + ] } ], + "pid": "027314049", "type": "bf:Place", - "broader": [ + "narrower": [ { - "authorized_access_point": "Am\u00e9rique" + "authorized_access_point": "R\u00e9gions tropicales humides" + }, + { + "authorized_access_point": "R\u00e9gions tropicales s\u00e8ches" } ], + "md5": "e1905f10c0950fc805baf9a174818ca5" + }, + { + "authorized_access_point": "Cor\u00e9e (R\u00e9publique populaire d\u00e9mocratique)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027316696", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027375080", + "value": "http://www.idref.fr/027316696", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15238498d", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11938542q", "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040794865", - "source": "GND" + "value": "(DE-101)040754685" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/170225739", - "source": "VIAF" + "value": "http://viaf.org/viaf/6097150325542010090000" } ], - "variant_access_point": [ - "Am\u00e9rique (centre)", - "Guatemala (Royaume)" - ], - "authorized_access_point": "Am\u00e9rique centrale" - }, - { - "md5": "0aa4634bc2b2cbde1f9e52f566e3e693", - "pid": "027375412", "note": [ { + "noteType": "dataSource", "label": [ - "GLU. Laval RVM, 1993-02" - ], - "noteType": "dataSource" + "IFLA, Names of states, 1981", + "Cor\u00e9e du Nord ; Laval RVM, 1994-08. Chos\u01d2n ; GKD, 1980" + ] }, { + "noteType": "general", "label": [ - "Sous cette vedette on trouve les ouvrages qui traitent de l'archipel qui s\u00e9pare l'Atlantique de la mer des Antilles et qui comprend les Bahamas, les Grandes et les Petites Antilles" - ], - "noteType": "general" + "En pr\u00e9cision g\u00e9ographique, employer Cor\u00e9e N., par ex. Pyongyang (Cor\u00e9e N.)", + "Le Royaume de Cor\u00e9e fut colonis\u00e9 par le Japon de 1905 \u00e0 la fin de la Seconde guerre mondiale. La partition, en 1945, en 2 zones d'occupation (USA et URSS) aboutit le 9 septembre 1948 \u00e0 la proclamation de la R\u00e9publique populaire d\u00e9mocratique de Cor\u00e9e par l'Assembl\u00e9e populaire supr\u00eame. Capitale Pyongyang, langue officielle cor\u00e9en" + ] } ], + "pid": "027316696", "type": "bf:Place", "broader": [ { - "authorized_access_point": "R\u00e9gion cara\u00efbe" + "authorized_access_point": "Cor\u00e9e" } ], + "variant_access_point": [ + "Chos\u01d2n", + "Cor\u00e9e du Nord", + "R\u00e9publique populaire d\u00e9mocratique de Cor\u00e9e", + "Cor\u00e9e, R\u00e9publique populaire d\u00e9mocratique de", + "Cor\u00e9e, R\u00e9publique populaire d\u00e9mocratique de (1948-....)" + ], + "md5": "df995129264e2c0e7f4c07c8c7282a38" + }, + { + "authorized_access_point": "\u00c9gypte", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027316866", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027375412", + "value": "http://www.idref.fr/027316866", "source": "IDREF" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119430639", - "source": "BNF" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040022935", - "source": "GND" + "value": "(DE-101)040005569" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/155553957", - "source": "VIAF" + "value": "http://viaf.org/viaf/128459794" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "IFLA, Names of states, 1981", + "https://fr.wikipedia.org/wiki/%C3%89gypte" + ] }, { - "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Antilles", - "source": "WIKIPEDIA" + "noteType": "seeReference", + "label": [ + "Voir aussi la subdivision Et l'\u00c9gypte aux personnes et collectivit\u00e9s" + ] } ], - "variant_access_point": [ - "Antillas", - "Antillen", - "Cara\u00efbes (\u00eeles)", - "Indes occidentales", - "West Indies" + "pid": "027316866", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Proche-Orient" + } + ], + "relation_pid": { + "value": "197265855", + "type": "redirect_from" + }, + "variant_access_point": [ + "Mi\u1e63r", + "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0645\u0635\u0631 \u0627\u0644\u0639\u0631\u0628\u064a\u0629", + "\u0645\u0635\u0631", + "Arab Republic of Egypt", + "RAE (R\u00e9publique Arabe d'\u00c9gypte)", + "R\u00e9publique arabe d'\u00c9gypte", + "United Arab Republic", + "R\u00e9publique arabe unie" ], - "authorized_access_point": "Antilles" + "md5": "ed0a531ce25489b9c94cbbf3f1c5a86e" }, { - "md5": "44a5ba54c4c821021d4a203daaaced4b", - "pid": "027377067", + "authorized_access_point": "Afrique occidentale", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027321940", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027321940", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb162726289", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04079203X" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/315124800" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Afrique_de_l'Ouest" + } + ], "note": [ { + "noteType": "dataSource", "label": [ - "IFLA, Names of states, 1981. GDEL" - ], - "noteType": "dataSource" + "Laval RVM, 1992-08" + ] + }, + { + "noteType": "general", + "label": [ + "Sous cette vedette on trouve les ouvrages qui traitent de la partie de l'Afrique situ\u00e9e au sud du Sahara et \u00e0 l'ouest du Tchad et du Cameroun" + ] } ], + "pid": "027321940", "type": "bf:Place", - "bnf_type": "sujet Rameau", "narrower": [ { - "authorized_access_point": "Amazonie (Bolivie)" + "authorized_access_point": "Afrique occidentale anglophone" }, { - "authorized_access_point": "Beni (Bolivie)" + "authorized_access_point": "Afrique occidentale francophone" }, { - "authorized_access_point": "Cochabamba (Bolivie ; d\u00e9partement)" + "authorized_access_point": "B\u00e9nin" }, { - "authorized_access_point": "La Paz (Bolivie ; d\u00e9partement)" + "authorized_access_point": "Burkina Faso" }, { - "authorized_access_point": "Potos\u00ed (Bolivie ; d\u00e9partement)" + "authorized_access_point": "Cap-Vert" }, { - "authorized_access_point": "Santa Cruz (Bolivie ; d\u00e9partement)" + "authorized_access_point": "C\u00f4te d'Ivoire" }, { - "authorized_access_point": "Chuquisaca (Bolivie ; d\u00e9partement)" + "authorized_access_point": "Gambie" }, { - "authorized_access_point": "Moxos (Bolivie)" + "authorized_access_point": "Ghana" }, { - "authorized_access_point": "Oriente (Bolivie)" - } - ], - "identifiedBy": [ + "authorized_access_point": "Guin\u00e9e" + }, { - "type": "uri", - "value": "http://www.idref.fr/027377067", - "source": "IDREF" + "authorized_access_point": "Guin\u00e9e-Bissau" }, { - "type": "bf:Nbn", - "value": "(DE-101)040076075", - "source": "GND" + "authorized_access_point": "Liberia" }, { - "type": "uri", - "value": "http://viaf.org/viaf/130756130", - "source": "VIAF" + "authorized_access_point": "Mali" }, { - "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Bolivie", - "source": "WIKIPEDIA" - } - ], - "variant_access_point": [ - "Alto Per\u00fa", - "Bolivia", - "Haut-P\u00e9rou", - "P\u00e9rou, Haut-" - ], - "authorized_access_point": "Bolivie" - }, - { - "md5": "fb702a2ecb8ea17b2821141f32270285", - "pid": "027377768", - "note": [ + "authorized_access_point": "Mauritanie" + }, { - "label": [ - "Names of states / IFLA, 1981. GDEL. SY, 1986/1987" - ], - "noteType": "dataSource" + "authorized_access_point": "Niger" }, { - "label": [ - "Sous cette vedette on trouve les ouvrages qui traitent du territoire qui fut plac\u00e9 sous protectorat allemand, puis sous mandats fran\u00e7ais et britannique, et qui constitue aujourd'hui la R\u00e9publique du Cameroun" - ], - "noteType": "general" - } - ], - "type": "bf:Place", - "broader": [ + "authorized_access_point": "Nigeria" + }, { - "authorized_access_point": "Afrique centrale" - } - ], - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "authorized_access_point": "S\u00e9n\u00e9gal" + }, { - "type": "uri", - "value": "http://www.idref.fr/027377768", - "source": "IDREF" + "authorized_access_point": "Sierra Leone" }, { - "type": "bf:Nbn", - "value": "(DE-101)040294137", - "source": "GND" + "authorized_access_point": "Togo" }, { - "type": "uri", - "value": "http://viaf.org/viaf/147664051", - "source": "VIAF" + "authorized_access_point": "Guin\u00e9e (r\u00e9gion)" } ], "variant_access_point": [ - "Cameroon", - "Kamerun" + "Afrique (ouest)", + "Afrique de l'Ouest" ], - "authorized_access_point": "Cameroun" + "md5": "2058990252f4d7044a8130a8080cebb0" }, { - "md5": "0c4cafbf21716abfa4638a9fbbe4335f", - "pid": "027401421", - "note": [ - { - "label": [ - "GDEL" - ], - "noteType": "dataSource" - } - ], - "type": "bf:Place", + "authorized_access_point": "Nouvelle-Z\u00e9lande", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027323072", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027401421", + "value": "http://www.idref.fr/027323072", "source": "IDREF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040753034", - "source": "GND" - }, - { - "type": "uri", - "value": "http://d-nb.info/gnd/4075303-7", - "source": "GND" + "value": "(DE-101)040419150" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/173035857", - "source": "VIAF" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/83148570667224311413", - "source": "VIAF" + "value": "http://viaf.org/viaf/3232154260428024480001" } ], - "relation_pid": { - "type": "redirect_from", - "value": "088761398" - }, - "variant_access_point": [ - "Neuenburg (Suisse)", - "Neocomi Helvetorum", - "Neufch\u00e2tel", - "Neufchastel", - "Novum Castrum", - "Novi Castri", - "Neocomum", - "Neocomi" - ], - "authorized_access_point": "Neuch\u00e2tel (Neuch\u00e2tel, Suisse)" - }, - { - "md5": "c34d8ed6a07ab6449908bc87e50bd02e", - "pid": "027401448", "note": [ { + "noteType": "dataSource", "label": [ - "GDEL. SY 1990/91" - ], - "noteType": "dataSource" + "Names of states / IFLA, 1981. Pays et capitales du monde / IGN, 1985" + ] } ], + "pid": "027323072", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Suisse - Cantons" + "authorized_access_point": "Australasie" + }, + { + "authorized_access_point": "Oc\u00e9anie" } ], + "variant_access_point": [ + "New Zealand", + "Nouvelle Z\u00e9lande" + ], + "md5": "7bca6f17af231bc4fa989655e74b3b96" + }, + { + "authorized_access_point": "Rh\u00e9nanie-Palatinat (Allemagne)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027326977", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027401448", + "value": "http://www.idref.fr/027326977", "source": "IDREF" }, { - "type": "uri", - "value": "https://d-nb.info/gnd/4041745-1", - "source": "GND" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)04041745X", - "source": "GND" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/122584639", - "source": "VIAF" + "value": "(DE-101)04049795X" }, { + "source": "VIAF", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Principaut\u00e9_de_Neuch\u00e2tel", - "source": "WIKIPEDIA" + "value": "http://viaf.org/viaf/173418537" } ], - "variant_access_point": [ - "Neuch\u00e2tel (canton)", - "Neuch\u00e2tel (Principaut\u00e9)" - ], - "authorized_access_point": "Neuch\u00e2tel (Suisse ; canton)" - }, - { - "md5": "62a171741b815ad55ed0c3934ffb3228", - "pid": "027401901", "note": [ { + "noteType": "dataSource", "label": [ - "GDEL" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Sous cette vedette on trouve les ouvrages qui traitent du continent oc\u00e9anien, constitu\u00e9 par l'Australie, la Nouvelle-Z\u00e9lande et les archipels de M\u00e9lan\u00e9sie (y compris la Nouvelle-Guin\u00e9e), Micron\u00e9sie et Polyn\u00e9sie. Les ouvrages sur l'ensemble des \u00eeles de l'oc\u00e9an Pacifique se trouvent sous la vedette Pacifique, \u00celes du" - ], - "noteType": "general" + "GDEL. Rheinland-Pfalz ; GKD ; BN ACO" + ] } ], + "pid": "027326977", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Pacifique (r\u00e9gion)" + "authorized_access_point": "Rh\u00e9nanie (Allemagne)" + }, + { + "authorized_access_point": "Allemagne - L\u00e4nder" } ], + "variant_access_point": [ + "Rheinland-Pfalz" + ], + "md5": "22e6f045ec7f2675ee7b6c2d5b129c48" + }, + { + "authorized_access_point": "Sib\u00e9rie (Russie)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027333752", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027401901", + "value": "http://www.idref.fr/027333752", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15364628m", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11939827w", "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040442578", - "source": "GND" + "value": "(DE-101)040547809" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/312565208", - "source": "VIAF" + "value": "http://viaf.org/viaf/251794742" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Oc\u00e9anie", - "source": "WIKIPEDIA" + "value": "https://fr.wikipedia.org/wiki/Sib\u00e9rie" } ], - "authorized_access_point": "Oc\u00e9anie" - }, - { - "md5": "ae5c3e27c2ba9e8462652b53ec7436c6", - "pid": "027405621", "note": [ { + "noteType": "dataSource", "label": [ - "Names of states / IFLA, 1981" - ], - "noteType": "dataSource" + "GDEL" + ] } ], + "pid": "027333752", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Atlantique, \u00celes de l'" + "authorized_access_point": "Asie du Nord" }, { - "authorized_access_point": "Scandinavie" + "authorized_access_point": "Russie" } ], + "variant_access_point": [ + "Russie d'Asie", + "Sibir (Russie)" + ], + "md5": "fff7914395c199a902229a5ee1737406" + }, + { + "authorized_access_point": "Versailles (Yvelines)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027334279", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027405621", + "value": "http://www.idref.fr/027334279", "source": "IDREF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040277542", - "source": "GND" + "value": "(DE-101)040631427" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/2599148574346024430006", - "source": "VIAF" + "value": "http://viaf.org/viaf/173254969" } ], - "variant_access_point": [ - "\u00cdsland" - ], - "authorized_access_point": "Islande" - }, - { - "md5": "9fe264e567bda6aaa2b3966f771bfe3d", - "pid": "027407012", "note": [ { + "noteType": "dataSource", "label": [ - "GDEL" - ], - "noteType": "dataSource" + "Dict. communes, 1984" + ] } ], + "pid": "027334279", "type": "bf:Place", + "variant_access_point": [ + "Versailles" + ], + "md5": "372a200ba442bae55da04d7c6c258665" + }, + { + "authorized_access_point": "Hong Kong (Chine)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027340880", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027407012", + "value": "http://www.idref.fr/027340880", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11864772p", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11940411f", "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040367339", - "source": "GND" - }, - { - "type": "bf:Nbn", - "value": "(DE-101)040367339", - "source": "GND" + "value": "(DE-101)04025822X" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/140255133", - "source": "VIAF" + "value": "http://viaf.org/viaf/261062131" } ], - "variant_access_point": [ - "Luzern (Suisse)" - ], - "authorized_access_point": "Lucerne (Suisse)" - }, - { - "md5": "caf22148beff6868e64cd0fbb639df93", - "pid": "027407918", "note": [ { + "noteType": "dataSource", "label": [ - "Laval RVM, 1995-08" - ], - "noteType": "dataSource" + "GLU, 1991 (Hongkong ou Hong Kong). Atlas Le Monde, 1993. Monde, 1997-07-02", + "Hong-Kong ; IFLA, Names of states, 1981. Hongkong ; Laval RVM, 1997-02. Hong Kong ; GKD, 1994-05" + ] }, { + "noteType": "general", "label": [ - "Sous cette vedette, on trouve les ouvrages qui traitent des pays dont le revenu par capital est relativement bas comparativement \u00e0 celui des pays nord-am\u00e9ricains et europ\u00e9ens. Cette vedette peut se subdiviser par toutes les subdivisions de sujet applicables aux noms de lieux, par ex. Pays en voie de d\u00e9veloppement -- Conditions \u00e9conomiques. Elle peut aussi \u00eatre utilis\u00e9e comme subdivision g\u00e9ographique sous les vedettes qui peuvent \u00eatre localis\u00e9es, par ex. Technologie -- Pays en voie de d\u00e9veloppement" - ], - "noteType": "general" + "Ville de Chine. Devenue colonie britannique en 1842, agrandie de Kowloon (1860) et des Nouveaux territoires (1898, pour un bail de 99 ans), elle est r\u00e9troc\u00e9d\u00e9e par la Grande-Bretagne \u00e0 la Chine le 01-07-1997" + ] } ], + "pid": "027340880", "type": "bf:Place", - "bnf_type": "sujet Rameau", - "narrower": [ - { - "authorized_access_point": "Nouveaux pays industrialis\u00e9s" - }, - { - "authorized_access_point": "Pays ACP" - }, - { - "authorized_access_point": "Pays les moins avanc\u00e9s" - }, - { - "authorized_access_point": "Pays insulaires en voie de d\u00e9veloppement" - } + "relation_pid": { + "value": "152490701", + "type": "redirect_from" + }, + "variant_access_point": [ + "Hong Kong (colonie)", + "Hongkong (Chine)", + "Hsiang-kang (Chine)", + "Xianggang (Chine)", + "Hong Kong Special Administrative Region (Chine)", + "Xiang gang", + "Xianggang", + "Xiang gang te bie xing zheng qu (Chine)", + "Chung-hua jen min kung ho kuo Hsiang-kang t\u02bbe pieh hsing cheng ch\u02bb\u00fc", + "Zhonghua Renmin Gongheguo Xianggang Tebie Xingzhengqu", + "Zhong hua Ren min Gong he guo Xianggang Te bie Xing zheng qu", + "HKSAR", + "Hsiang-kang t\u02bbe pieh hsing cheng ch\u02bb\u00fc (Chine)", + "Hongkong S. A. R. (Chine)", + "Hongkong" ], + "md5": "21fda27674aaf6a793263b3a42612523" + }, + { + "authorized_access_point": "Indre (France)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027341046", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027407918", + "value": "http://www.idref.fr/027341046", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119456356", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11940421r", "source": "BNF" }, { + "source": "VIAF", "type": "uri", - "value": "http://d-nb.info/gnd/4014954-7", - "source": "GND" + "value": "http://viaf.org/viaf/167743789" }, { - "type": "bf:Nbn", - "value": "(DE-101)040149544", - "source": "GND" + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Indre_(d\u00e9partement)" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GLU, 1991" + ] }, { - "type": "uri", - "value": "http://viaf.org/viaf/173200037", - "source": "VIAF" + "noteType": "general", + "label": [ + "D\u00e9partement fran\u00e7ais (36)" + ] + } + ], + "pid": "027341046", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Berry (France)" }, { - "type": "uri", - "value": "http://viaf.org/viaf/259366441", - "source": "VIAF" + "authorized_access_point": "Centre (France)" } ], - "relation_pid": { - "type": "redirect_from", - "value": "27352111X" - }, "variant_access_point": [ - "Pays du tiers-monde", - "Sud global", - "Pays du Sud", - "Pays en d\u00e9veloppement", - "Pays sous-d\u00e9velopp\u00e9s", - "PVD", - "R\u00e9gions sous-d\u00e9velopp\u00e9es", - "Tiers-monde" + "Bas Berry (France)", + "Indre" ], - "authorized_access_point": "Pays en voie de d\u00e9veloppement" + "md5": "f1d63e37fa9d33491ddc488d8e2e2fed" }, { - "md5": "238c76ca91fddb9d484106ad2a9ff519", - "pid": "027408647", - "note": [ - { - "label": [ - "GLU" - ], - "noteType": "dataSource" - } - ], - "type": "bf:Place", + "authorized_access_point": "Arctique", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027341879", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027408647", + "value": "http://www.idref.fr/027341879", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15239961p", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15289876g", "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040763102", - "source": "GND" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/153543031", - "source": "VIAF" + "value": "(DE-101)040029247" }, { + "source": "VIAF", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Prague", - "source": "WIKIPEDIA" + "value": "http://viaf.org/viaf/173636386" } ], - "variant_access_point": [ - "Prague", - "Praha (R\u00e9publique tch\u00e8que)" - ], - "authorized_access_point": "Prague (R\u00e9publique tch\u00e8que)" - }, - { - "md5": "4fd18544f4eb7a726755fa05584b802e", - "pid": "027416925", "note": [ { + "noteType": "dataSource", "label": [ - "GLU. BN ACO" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Sous cette vedette on trouve les ouvrages qui traitent de la vall\u00e9e d'Aoste ou de la R\u00e9gion autonome du Val d'Aoste" - ], - "noteType": "general" + "GLU, 1991", + "Laval RVM, 1996-08" + ] } ], + "pid": "027341879", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Italie (nord)" - }, - { - "authorized_access_point": "Italie - R\u00e9gions" + "authorized_access_point": "R\u00e9gions polaires" } ], + "variant_access_point": [ + "Arctique, Oc\u00e9an (r\u00e9gion)", + "Arctiques, R\u00e9gions", + "Grand Nord", + "R\u00e9gions arctiques", + "Terres arctiques" + ], + "md5": "b4835bbc5f5131d4ced69a7099537a6c" + }, + { + "authorized_access_point": "Orne (France)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027345483", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027416925", + "value": "http://www.idref.fr/027345483", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11946285w", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11940746x", "source": "BNF" }, { + "source": "VIAF", "type": "uri", - "value": "http://d-nb.info/gnd/4002386-2", - "source": "GND" - }, - { - "type": "bf:Nbn", - "value": "(DE-101)040023869", - "source": "GND" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/172872962", - "source": "VIAF" + "value": "http://viaf.org/viaf/5608148574276124430001" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Vall\u00e9e_d'Aoste_(coalition)", - "source": "WIKIPEDIA" + "value": "https://fr.wikipedia.org/wiki/Orne_(d\u00e9partement)" } ], - "variant_access_point": [ - "Aoste, Val d' (Italie)", - "Aoste, Vall\u00e9e d' (Italie)", - "Val d'Aoste", - "Valle d'Aosta (Italie)" - ], - "authorized_access_point": "Val d'Aoste (Italie)" - }, - { - "md5": "d43fc13934a81dc617d332584a3728a8", - "pid": "027417298", "note": [ { + "noteType": "dataSource", "label": [ - "GLU. Laval RVM, 2000-01" - ], - "noteType": "dataSource" + "GDEL" + ] }, { + "noteType": "general", "label": [ - "Sous cette vedette on trouve les documents sur le d\u00e9partement de la Savoie. Les documents sur la r\u00e9gion historique de la Savoie avant 1860 sont sous la vedette Savoie", - "D\u00e9partement fran\u00e7ais (73) ; chef-lieu : Chamb\u00e9ry" - ], - "noteType": "general" + "D\u00e9partement fran\u00e7ais (61)" + ] } ], + "pid": "027345483", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Rh\u00f4ne-Alpes (France)" - }, - { - "authorized_access_point": "Savoie (France ; r\u00e9gion)" + "authorized_access_point": "Basse-Normandie (France)" } ], + "variant_access_point": [ + "Orne" + ], + "md5": "4038f28cba605ac80f48a6b0bd3edb3e" + }, + { + "authorized_access_point": "Jura (France ; massif)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027348695", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027417298", + "value": "http://www.idref.fr/027348695", "source": "IDREF" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11946312z", - "source": "BNF" - }, - { - "type": "uri", - "value": "http://d-nb.info/gnd/4051850-4", - "source": "GND" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040518507", - "source": "GND" + "value": "(DE-101)04071330X" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/139289471", - "source": "VIAF" - } - ], - "variant_access_point": [ - "Savoie (d\u00e9partement)", - "Savoie (France ; d\u00e9partement)" - ], - "authorized_access_point": "Savoie (France)" - }, - { - "md5": "aadc4f6bb0da6d1325e76fb6c0bde95a", - "pid": "027429261", - "note": [ - { - "label": [ - "GDEL" - ], - "noteType": "dataSource" + "value": "http://viaf.org/viaf/980148574339324430007" } ], + "pid": "027348695", "type": "bf:Place", - "related": [ + "broader": [ { - "authorized_access_point": "Saint Point, Lac de (France)" + "authorized_access_point": "Jura (massif)" } ], + "md5": "7e0328ce0ed3c5d398776e33f425315d" + }, + { + "authorized_access_point": "Shanxi (Chine ; province)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027349004", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027429261", + "value": "http://www.idref.fr/027349004", "source": "IDREF" }, { + "source": "VIAF", "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11947260s", - "source": "BNF" - }, - { - "type": "uri", - "value": "http://d-nb.info/gnd/4091200-0", - "source": "GND" - }, - { - "type": "bf:Nbn", - "value": "(DE-101)040912000", - "source": "GND" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/3231148574348624430008", - "source": "VIAF" + "value": "http://viaf.org/viaf/172439138" } ], - "authorized_access_point": "Doubs (cours d'eau)" - }, - { - "md5": "c72befb94c45c521892539e15c2ebccc", - "pid": "027434141", "note": [ { + "noteType": "dataSource", "label": [ - "GDEL. SY 1990/91" - ], - "noteType": "dataSource" + "Wikip\u00e9dia : https://fr.wikipedia.org/wiki/Shanxi, 37\u00b0 52\u2032 24\u2033 N, 112\u00b0 33\u2032 52\u2033 E", + "GDEL. Atlas Le Monde", + "\u5c71\u897f\u68ee\u6797 /\u300a\u5c71\u897f\u68ee\u6797\u300b\u7f16\u8f91\u59d4\u5458\u4f1a\u7f16\u8457,\u4e2d\u534e\u4eba\u6c11\u5171\u548c\u56fd\u6797\u4e1a\u90e8\u7ec4\u7ec7\u7f16\u5199, 1992", + "Shanxi sen lin / \"Shanxi sen lin\" bian ji wei yuan hui bian zhu,Zhonghua Renmin Gongheguo lin ye bu zu zhi bian xie,1992" + ] }, { + "noteType": "general", "label": [ - "Canton suisse" - ], - "noteType": "general" + "Province du Nord-Est, situ\u00e9e \u00e0 l'ouest des monts Taihang (\u592a\u884c\u5c71 pinyin : T\u00e0ihangsh\u0101n) et dont le nom signifie \u00ab \u00e0 l'ouest de la montagne \u00bb ; capitale Taiyuan (\u592a\u539f, pinyin : t\u00e0iyu\u00e1n)" + ] } ], + "pid": "027349004", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Suisse - Cantons" + "authorized_access_point": "Chine (nord)" + }, + { + "authorized_access_point": "Chine - Provinces" } ], + "variant_access_point": [ + "Chan-si", + "Shan-hsi", + "Shansi", + "\u5c71\u897f\u7701", + "Shanxi Sheng" + ], + "md5": "8dd2e30fe79a65491cae284d6a24961f" + }, + { + "authorized_access_point": "Navarre (France)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027350169", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027434141", + "value": "http://www.idref.fr/027350169", "source": "IDREF" }, - { - "type": "bf:Nbn", - "value": "(DE-101)040290433", - "source": "GND" - }, { "type": "uri", - "value": "https://d-nb.info/gnd/4029043-8", - "source": "GND" + "value": "http://catalogue.bnf.fr/ark:/12148/cb11941113j", + "source": "BNF" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/155481782", - "source": "VIAF" + "value": "http://viaf.org/viaf/316733006" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/J\u016bra", - "source": "WIKIPEDIA" + "value": "https://fr.wikipedia.org/wiki/Basse-Navarre" } ], - "variant_access_point": [ - "Jura (canton)" - ], - "authorized_access_point": "Jura (Suisse ; canton)" - }, - { - "md5": "673228933377fd4f5099bebe10fcaebb", - "pid": "027437213", "note": [ { + "noteType": "dataSource", "label": [ - "GDEL. Laval RVM suppl., 1988-03" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Emploi direct en subdivision : [Sujet] -- Suisse al\u00e9manique" - ], - "noteType": "general" + "Navarre fran\u00e7aise (France) ; Laval RVM suppl., 1989-06" + ] } ], + "pid": "027350169", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Pays de langue allemande" + "authorized_access_point": "Pays basque (Pyr\u00e9n\u00e9es-Atlantiques)" }, { - "authorized_access_point": "Suisse" + "authorized_access_point": "Navarre (Royaume)" } ], + "variant_access_point": [ + "Basse-Navarre (France)" + ], + "md5": "c0f80d1322451a7b87c4178b880dde97" + }, + { + "authorized_access_point": "Vienne (Autriche)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027350843", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027437213", + "value": "http://www.idref.fr/027350843", "source": "IDREF" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11947885s", - "source": "BNF" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040703525", - "source": "GND" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/315160381", - "source": "VIAF" + "value": "(DE-101)04066009" }, { + "source": "VIAF", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Suisse_al\u00e9manique", - "source": "WIKIPEDIA" + "value": "http://viaf.org/viaf/313001781" } ], - "variant_access_point": [ - "Suisse de langue allemande" - ], - "authorized_access_point": "Suisse al\u00e9manique" - }, - { - "md5": "39362e8dd413050ce08478a90e123fbf", - "pid": "027437221", "note": [ { + "noteType": "dataSource", "label": [ - "GDEL. Laval RVM suppl., 1988-03" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Emploi direct en subdivision : [Sujet] -- Suisse romande" - ], - "noteType": "general" + "GDEL" + ] } ], + "pid": "027350843", "type": "bf:Place", - "broader": [ - { - "authorized_access_point": "Suisse" - }, - { - "authorized_access_point": "Europe francophone" - } + "variant_access_point": [ + "Vindobona (ville ancienne)", + "Vienna" ], + "md5": "a4129e2c325e588ddced8b932c85ba0e" + }, + { + "authorized_access_point": "Papouasie-Nouvelle-Guin\u00e9e", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027350991", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027437221", + "value": "http://www.idref.fr/027350991", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119478864", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11941180p", "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)041940458", - "source": "GND" + "value": "(DE-101)040445690" }, { + "source": "VIAF", "type": "uri", - "value": "http://d-nb.info/gnd/4194045-3", - "source": "GND" + "value": "http://viaf.org/viaf/151781392" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "http://viaf.org/viaf/172982288", - "source": "VIAF" + "value": "https://fr.wikipedia.org/wiki/Papouasie-Nouvelle-Guin\u00e9e" } ], - "variant_access_point": [ - "Suisse de langue francaise", - "Romandie" - ], - "authorized_access_point": "Suisse romande" - }, - { - "md5": "42eb923bc72cf150dc09cd103ef08313", - "pid": "027442128", "note": [ { + "noteType": "dataSource", "label": [ - "IFLA, Names of states, 1981. Pays et capitales du monde / IGN, 1986. Laval RVM, 1995-02" - ], - "noteType": "dataSource" + "IFLA, Names of states, 1981. SY 2000. GLU" + ] }, { + "noteType": "general", "label": [ - "Sous cette vedette on trouve les ouvrages qui traitent du territoire du Rwanda, avant ou depuis son ind\u00e9pendance en 1962. Les ouvrages sur le Ruanda-Urundi, qui comprenait \u00e0 l'\u00e9poque coloniale le territoire des actuels Rwanda et Burundi, se trouvent sous la vedette Ruanda-Urundi" - ], - "noteType": "general" + "La Papouasie-Nouvelle-Guin\u00e9e, ind\u00e9pendante depuis le 16-09-1975, comprend l'ancienne Nouvelle-Guin\u00e9e allemande, plac\u00e9e en 1921 sous mandat australien, et la Papouasie, britannique depuis 1884" + ] } ], + "pid": "027350991", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Afrique centrale" + "authorized_access_point": "M\u00e9lan\u00e9sie" } ], + "variant_access_point": [ + "Papua New Guinea" + ], + "md5": "080c6e7fe826903c33335992f6bf4a70" + }, + { + "authorized_access_point": "Kazakhstan", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027351076", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027442128", + "value": "http://www.idref.fr/027351076", "source": "IDREF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040769100", - "source": "GND" + "value": "(DE-101)040298396" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/3125148574307124430008", - "source": "VIAF" + "value": "http://viaf.org/viaf/153440315" } ], - "variant_access_point": [ - "Ruanda" - ], - "authorized_access_point": "Rwanda" - }, - { - "md5": "00007ac1b6b514973c6a1b41cb57f5f3", - "pid": "027443876", "note": [ { + "noteType": "dataSource", "label": [ - "GLU. Brockhaus, 19. Aufl.", - "Laval RVM, 2000-01. Bayern ; GKD, 1994-05. SWD, 1995-04" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Duch\u00e9 puis \u00e9lectorat (1623), royaume (1806), et l'un des dix cercles du Saint Empire. L'\u00c9tat libre de Bavi\u00e8re (capitale : Munich) comprend 7 Regierungsbezirke" - ], - "noteType": "general" + "GDEL" + ] } ], + "pid": "027351076", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Allemagne - L\u00e4nder" + "authorized_access_point": "Asie centrale" }, { - "authorized_access_point": "Allemagne (sud)" + "authorized_access_point": "Pays de la CEI" + } + ], + "narrower": [ + { + "authorized_access_point": "Kazakhstan (Sud-Est)" } ], + "variant_access_point": [ + "Kazakhie", + "Kazahstan", + "Qazaqstan" + ], + "md5": "8535b5750466c539e8c43172097073e0" + }, + { + "authorized_access_point": "Fribourg-en-Brisgau (Allemagne) - M\u00fcnster", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027353990", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027443876", + "value": "http://www.idref.fr/027353990", "source": "IDREF" }, - { - "type": "bf:Nbn", - "value": "(DE-101)040050440", - "source": "GND" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/125426357", - "source": "VIAF" - }, { "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Bavi\u00e8re", - "source": "WIKIPEDIA" + "value": "http://catalogue.bnf.fr/ark:/12148/cb119414094", + "source": "BNF" } ], - "variant_access_point": [ - "Bavaria", - "Bavi\u00e8re", - "Bavi\u00e8re (Duch\u00e9)", - "Bavi\u00e8re (\u00c9lectorat)", - "Bavi\u00e8re (Royaume)", - "Bayerischer Kreis (Saint Empire romain germanique)", - "Bayern (Allemagne)", - "Freistaat Bayern", - "Bayerischer Reichskreis" - ], - "authorized_access_point": "Bavi\u00e8re (Allemagne)" - }, - { - "md5": "9ffd4d8c13639394b87264e58eab3bab", - "pid": "027465012", "note": [ { + "noteType": "dataSource", "label": [ - "GDEL" - ], - "noteType": "dataSource" + "Freiburger M\u00fcnster ; LCNA, 1977-1986" + ] } ], + "pid": "027353990", "type": "bf:Place", + "relation_pid": { + "value": "11077471X", + "type": "redirect_from" + }, + "md5": "d5e41f55bdd8c18f75422ceddeac318c" + }, + { + "authorized_access_point": "Sardaigne (Italie)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027356388", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027465012", + "value": "http://www.idref.fr/027356388", "source": "IDREF" }, { - "type": "bf:Nbn", - "value": "(DE-101)04051594X", - "source": "GND" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11941615m", + "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)04051594X", - "source": "GND" + "value": "(DE-101)040516865" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/9591148574375024430008", - "source": "VIAF" + "value": "http://viaf.org/viaf/172601866" } ], - "variant_access_point": [ - "Sankt Gallen (Suisse)", - "St. Gallen (Suisse)", - "St.Gallen (Suisse)", - "St Gall (Suisse)", - "Saint Gall (Suisse)", - "Saint-Gall (Suisse)", - "Sankt-Gallen (Suisse)" + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL" + ] + } ], - "authorized_access_point": "Saint-Gall (Suisse)" - }, - { - "md5": "56fbf8ca890840637cca0e582d2e9e58", - "pid": "027468909", + "pid": "027356388", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Berne (Suisse ; canton)" + "authorized_access_point": "Italie (sud)" + }, + { + "authorized_access_point": "M\u00e9diterran\u00e9e, \u00celes de la" + }, + { + "authorized_access_point": "Italie - R\u00e9gions" } ], + "variant_access_point": [ + "Sardaigne", + "Sardegna (Italie)" + ], + "md5": "0933c61d20a8573007fc8c0bd961d2dd" + }, + { + "authorized_access_point": "Floride (\u00c9tats-Unis)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027358100", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027468909", + "value": "http://www.idref.fr/027358100", "source": "IDREF" }, { - "type": "uri", - "value": "http://d-nb.info/gnd/4005783-5", - "source": "GND" + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040175855" }, { - "type": "bf:Nbn", - "value": "(DE-101)04005783", - "source": "GND" + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/157185686" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "http://viaf.org/viaf/5974148574360224430000", - "source": "VIAF" + "value": "https://fr.wikipedia.org/wiki/Floride" } ], - "authorized_access_point": "Oberland bernois (Suisse)" - }, - { - "md5": "9284327d57ff34837b40a5cc50d64536", - "pid": "027472906", "note": [ { + "noteType": "dataSource", "label": [ - "GDEL. Laval RVM, 1991-02" - ], - "noteType": "dataSource" + "GDEL" + ] }, { + "noteType": "general", "label": [ - "Sous cette vedette on trouve les ouvrages qui traitent de l'empire byzantin, de 395 \u00e0 1453. Les ouvrages qui traitent de la ville de Byzance avant 330 se trouvent sous la vedette Byzance" - ], - "noteType": "general" + "En pr\u00e9cision de lieu, employer Fla., par ex. Tallahassee (Fla.)" + ] } ], + "pid": "027358100", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Orient" + "authorized_access_point": "\u00c9tats du Golfe (\u00c9tats-Unis)" + }, + { + "authorized_access_point": "\u00c9tats du Sud-Atlantique (\u00c9tats-Unis)" + }, + { + "authorized_access_point": "\u00c9tats-Unis - \u00c9tats" } ], + "variant_access_point": [ + "Florida (\u00c9tats-Unis)" + ], + "md5": "55c469c787b153ddc0171245b2e827e6" + }, + { + "authorized_access_point": "Gansu (Chine ; province)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027358232", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027472906", + "value": "http://www.idref.fr/027358232", "source": "IDREF" }, { - "type": "bf:Nbn", - "value": "(DE-101)040092569", - "source": "GND" + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/173309143" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. Atlas Le Monde", + "GeoNames (2019-11-28)" + ] }, { - "type": "uri", - "value": "http://viaf.org/viaf/149804778", - "source": "VIAF" + "noteType": "general", + "label": [ + "Le Gansu est une province du nord-ouest de la R\u00e9publique populaire de Chine. Longue province \u00e9troite, coinc\u00e9e entre le plateau de Mongolie au nord et les contreforts du plateau Tib\u00e9tain au sud, \u00e9pousant le trac\u00e9 principal de l'ancienne route de la soie, le Gansu est habit\u00e9 par environ 26 millions d'habitants (en 2004), dont une minorit\u00e9 importante de Hui. La capitale, Lanzhou, est situ\u00e9e dans le sud-est de la province.", + "Coordonn\u00e9es en degr\u00e9s s\u00e9xag\u00e9simaux : N 37\u00b045\u203200\u2033 / E 102\u00b045\u203200\u2033" + ] + } + ], + "pid": "027358232", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Chine (ouest)" }, { - "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Empire_byzantin", - "source": "WIKIPEDIA" + "authorized_access_point": "Chine - Provinces" } ], "variant_access_point": [ - "Byzantin, Empire", - "Empire d'Orient", - "Empire romain d'Orient", - "Orient, Empire d'" + "\u7518\u8085\u7701", + "Kan-sou (Chine)", + "Kansu (Chine)", + "\u7518\u8083\u7701", + "Gansu Sheng" ], - "authorized_access_point": "Empire byzantin" + "md5": "dbe39253685c78e915da050d923a213c" }, { - "md5": "f8745fdc6e028d1500b72f23ca92dd02", - "pid": "027483304", - "note": [ - { - "label": [ - "GLU" - ], - "noteType": "dataSource" - } - ], - "type": "bf:Place", - "broader": [ - { - "authorized_access_point": "Europe centrale" - } - ], + "authorized_access_point": "Indon\u00e9sie", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027358305", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027483304", + "value": "http://www.idref.fr/027358305", "source": "IDREF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040738418", - "source": "GND" + "value": "(DE-101)04026761X" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/8072148574327224430003", - "source": "VIAF" + "value": "http://viaf.org/viaf/4708148574313724430000" } ], - "variant_access_point": [ - "Hrvatska", - "\u0425\u0440\u0432\u0430\u0442\u0441\u043a\u0430", - "Hrvatska" - ], - "authorized_access_point": "Croatie" - }, - { - "md5": "fcd039c6ffdcc01d9db55fec393bdda8", - "pid": "027501302", "note": [ { + "noteType": "dataSource", "label": [ - "Names of states / IFLA, 1981", - "wikipedia.org, 2019-07-25" - ], - "noteType": "dataSource" + "IFLA, Names of states, 1981. GDEL" + ] } ], + "pid": "027358305", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Balkans" + "authorized_access_point": "Insulinde" } ], + "variant_access_point": [ + "Indes n\u00e9erlandaises", + "Indes orientales", + "Indonesia" + ], + "md5": "7ddefd735ad3a12fb1fa9c204aa48a0d" + }, + { + "authorized_access_point": "Is\u00e8re (France)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027358321", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027501302", + "value": "http://www.idref.fr/027358321", "source": "IDREF" }, { "type": "uri", - "value": "https://catalogue.bnf.fr/ark:/12148/cb11952716p", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119417674", "source": "BNF" }, { - "type": "bf:Nbn", - "value": "(DE-101)040010287", - "source": "GND" + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/263181452" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "http://viaf.org/viaf/8663159248210104870006", - "source": "VIAF" + "value": "https://fr.wikipedia.org/wiki/Is\u00e8re_(rivi\u00e8re)" } ], - "variant_access_point": [ - "Shqipe\u034f\u0308ri", - "Shqip\u00ebria", - "Arbri", - "Arb\u00ebria", - "Republika e Shqip\u00ebris\u00eb" - ], - "authorized_access_point": "Albanie" - }, - { - "md5": "7b7f3e6118ee674a00fd17bb3b65dc3d", - "pid": "027501418", "note": [ { + "noteType": "dataSource", "label": [ "GDEL" - ], - "noteType": "dataSource" + ] }, { + "noteType": "general", "label": [ - "Sous cette vedette on trouve les ouvrages qui traitent de la Ciscaucasie (versant nord du Grand Caucase) et de la Transcaucasie (versant sud du Grand Caucase, d\u00e9pression Rion-Koura et Petit Caucase)" - ], - "noteType": "general" + "D\u00e9partement fran\u00e7ais (38)" + ] } ], + "pid": "027358321", "type": "bf:Place", - "bnf_type": "sujet Rameau", - "narrower": [ - { - "authorized_access_point": "Grand Caucase (monts)" - }, + "broader": [ { - "authorized_access_point": "Petit Caucase (monts)" + "authorized_access_point": "Dauphin\u00e9 (France)" }, { - "authorized_access_point": "Transcaucasie" + "authorized_access_point": "Rh\u00f4ne-Alpes (France)" } ], + "variant_access_point": [ + "Is\u00e8re", + "Is\u00e8re - D\u00e9partement" + ], + "md5": "95bee8b5381f0651fa9f04c2f1701c08" + }, + { + "authorized_access_point": "Mauritanie", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027358399", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027501418", + "value": "http://www.idref.fr/027358399", "source": "IDREF" }, { + "type": "uri", + "value": "https://catalogue.bnf.fr/ark:/12148/cb119417732", + "source": "BNF" + }, + { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040300900", - "source": "GND" + "value": "(DE-101)040380513" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/172982363", - "source": "VIAF" + "value": "http://viaf.org/viaf/152430470" } ], - "variant_access_point": [ - "Caucasie", - "Kavkaz" - ], - "authorized_access_point": "Caucase" - }, - { - "md5": "d1877545b0f2135c8669a54206768cfa", - "pid": "027502333", "note": [ { + "noteType": "dataSource", "label": [ - "GLU (art. Extr\u00eame-Orient)", - "Extr\u00eame-Orient ; Laval RVM, 1998-07" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Sous cette vedette on trouve les ouvrages qui traitent de la partie de l'Asie comprenant la Chine, la Cor\u00e9e, le Japon, la Sib\u00e9rie orientale, l'Indochine et l'Insulinde" - ], - "noteType": "general" + "Names of states / IFLA, 1981" + ] } ], + "pid": "027358399", "type": "bf:Place", - "bnf_type": "sujet Rameau", - "narrower": [ - { - "authorized_access_point": "Asie du Nord-Est" - }, - { - "authorized_access_point": "Asie du Sud-Est" - }, + "broader": [ { - "authorized_access_point": "Chine" + "authorized_access_point": "Afrique occidentale" }, { - "authorized_access_point": "Cor\u00e9e" - }, + "authorized_access_point": "Afrique du Nord" + } + ], + "variant_access_point": [ + "Mauritanie (R\u00e9publique)", + "M\u016britan\u012b\u0101" + ], + "md5": "5fffb24bb88c0ea35cd77c15ad53dc32" + }, + { + "authorized_access_point": "France - 1562-1598 (Guerres de religion)", + "bnf_type": "sujet Rameau", + "classification": [ { - "authorized_access_point": "Japon" + "type": "bf:ClassificationDdc", + "classificationPortion": "200", + "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)" }, { - "authorized_access_point": "Pacifique, C\u00f4te du (Asie)" - }, + "type": "bf:ClassificationDdc", + "classificationPortion": "944", + "name": "Histoire de la France (depuis 486)" + } + ], + "closeMatch": [ { - "authorized_access_point": "Sib\u00e9rie (Russie ; est)" + "authorized_access_point": "France--History--Wars of the Huguenots, 1562-1598", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85051298", + "source": "LCSH" + } + ] }, { - "authorized_access_point": "Ta\u00efwan" + "authorized_access_point": "France -- Histoire -- 1562-1598 (Guerres de religion)", + "source": "RVMLaval" } ], + "identifier": "http://www.idref.fr/027359336", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027502333", + "value": "http://www.idref.fr/027359336", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119528028", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119418453", "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040757277", - "source": "GND" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/172332114", - "source": "VIAF" + "value": "(DE-101)041607686" } ], - "variant_access_point": [ - "Asie (est)", - "Asie de l'Est", - "Asie-Pacifique, R\u00e9gion", - "Extr\u00eame-Orient", - "Orient, Extr\u00eame-" - ], - "authorized_access_point": "Asie orientale" - }, - { - "md5": "0eddcb032da4278d7bbf6b80a381b719", - "pid": "027502368", "note": [ { + "noteType": "dataSource", "label": [ - "GLU", - "Laval RVM, 2001-01" - ], - "noteType": "dataSource" + "Grand Larousse universel : Religion (guerres de)", + "Robert encyclop\u00e9dique des noms propres 2008 : Religion (guerres de)", + "Dict. encyclop\u00e9dique d'histoire / M. Mourre, 1996 : Religion (guerres de)", + "Les guerres de religion / G. Livet, 2002", + "Les guerres de religion / P. Miquel, 1980" + ] }, { + "noteType": "general", "label": [ - "Sous cette vedette on trouve les documents qui traitent de la partie de l'Asie situ\u00e9e \u00e0 l'est de l'Inde et au sud de la Chine, comprenant l'Indochine (Birmanie, Cambodge, Laos, Malaisie, Tha\u00eflande et Viet-Nam) et l'Insulinde (Brun\u00e9i, Indon\u00e9sie, Malaisie orientale, Philippines et Singapour)" - ], - "noteType": "general" + "1er mars 1562 : massacre de Wassy. 13 avril 1598 : \u00e9dit de Nantes ; 2 mai 1598 : trait\u00e9 de Vervins" + ] } ], + "pid": "027359336", "type": "bf:Place", - "broader": [ - { - "authorized_access_point": "Asie orientale" - } - ], - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "related": [ { - "type": "uri", - "value": "http://www.idref.fr/027502368", - "source": "IDREF" + "authorized_access_point": "France - 1560-1574 (Charles IX)" }, { - "type": "bf:Nbn", - "value": "(DE-101)040584488", - "source": "GND" + "authorized_access_point": "France - 1574-1589 (Henri III)" }, { - "type": "uri", - "value": "http://viaf.org/viaf/255510483", - "source": "VIAF" - }, + "authorized_access_point": "France - 1589-1610 (Henri IV)" + } + ], + "narrower": [ { - "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Asie_du_Sud-Est", - "source": "WIKIPEDIA" + "authorized_access_point": "France - 1562-1598 (Guerres de religion) - Op\u00e9rations militaires" } ], - "variant_access_point": [ - "ASEAN, Pays de l'", - "Asie (sud-est)", - "Asie sud-orientale", - "Association des nations de l'Asie du Sud-Est, Pays de l'", - "Pays de l'ASEAN", - "Pays de l'Association des nations de l'Asie du Sud-Est", - "Sud-Est asiatique" + "broader": [ + { + "authorized_access_point": "France - 16e si\u00e8cle" + } ], - "authorized_access_point": "Asie du Sud-Est" + "md5": "0b564da424c3ebf4a2987d3bf4d30e68" }, { - "md5": "280155536c821eac8382978909f0ec8b", - "pid": "027524329", - "type": "bf:Place", + "authorized_access_point": "Balkans", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027360199", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027524329", + "value": "http://www.idref.fr/027360199", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119546266", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11941903f", "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040713326", - "source": "GND" + "value": "(DE-101)040690997" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/173309353", - "source": "VIAF" + "value": "http://viaf.org/viaf/60144648482279885458" } ], - "variant_access_point": [ - "Carolingien (empire)" - ], - "authorized_access_point": "Empire carolingien" - }, - { - "md5": "470242430d551967cefc05a735eaf8df", - "pid": "027526836", "note": [ { + "noteType": "dataSource", "label": [ - "BN ACO" - ], - "noteType": "dataSource" + "GDEL", + "Balkans ; Laval RVM, 1992-02" + ] } ], + "pid": "027360199", "type": "bf:Place", - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "narrower": [ { - "type": "uri", - "value": "http://www.idref.fr/027526836", - "source": "IDREF" + "authorized_access_point": "Albanie" }, { - "type": "bf:Nbn", - "value": "(DE-101)040714446", - "source": "GND" + "authorized_access_point": "Bosnie-Herz\u00e9govine" }, { - "type": "bf:Nbn", - "value": " https://d-nb.info/gnd/4071444-5", - "source": "GND" + "authorized_access_point": "Bulgarie" }, { - "type": "uri", - "value": "http://viaf.org/viaf/124901897", - "source": "VIAF" + "authorized_access_point": "Ex-Yougoslavie" }, { - "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Fribourg_(ville_suisse)", - "source": "WIKIPEDIA" - } - ], - "variant_access_point": [ - "Freiburg im \u00dcchtland (Freiburg, Schweiz)" - ], - "authorized_access_point": "Fribourg (Fribourg, Suisse)" - }, - { - "md5": "f75dd2952d14665687cc9f0c17b830bd", - "pid": "02754785X", - "note": [ + "authorized_access_point": "Gr\u00e8ce" + }, { - "label": [ - "GDEL. SY 1990/91" - ], - "noteType": "dataSource" + "authorized_access_point": "Mac\u00e9doine" }, { - "label": [ - "Canton suisse" - ], - "noteType": "general" + "authorized_access_point": "Mac\u00e9doine du Nord (R\u00e9publique)" + }, + { + "authorized_access_point": "M\u00e9sie" + }, + { + "authorized_access_point": "Mont\u00e9n\u00e9gro" + }, + { + "authorized_access_point": "Roumanie" + }, + { + "authorized_access_point": "Serbie" + }, + { + "authorized_access_point": "Thrace" } ], - "type": "bf:Place", "broader": [ { - "authorized_access_point": "Suisse - Cantons" + "authorized_access_point": "Europe du Sud" } ], + "variant_access_point": [ + "Balkanique, P\u00e9ninsule", + "Europe (sud-est)", + "Europe du Sud-Est", + "Pays balkaniques" + ], + "md5": "42e33009acb406d9cbe45aa5c7605d23" + }, + { + "authorized_access_point": "For\u00eat-Noire (Allemagne ; massif)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027360881", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/02754785X", + "value": "http://www.idref.fr/027360881", "source": "IDREF" }, { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12363185d", + "source": "BNF" + }, + { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)041196058", - "source": "GND" + "value": "(DE-101)040538079" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/117148570735124312537", - "source": "VIAF" + "value": "http://viaf.org/viaf/248969460" } ], - "variant_access_point": [ - "Thurgau (Suisse)" - ], - "authorized_access_point": "Thurgovie (Suisse)" - }, - { - "md5": "e97c9bca0239ced4b53491e7c92f80fc", - "pid": "027584763", "note": [ { + "noteType": "dataSource", "label": [ - "Laval RVM, 1996-08" - ], - "noteType": "dataSource" + "GDEL" + ] } ], + "pid": "027360881", "type": "bf:Place", - "bnf_type": "sujet Rameau", - "narrower": [ - { - "authorized_access_point": "Afrique francophone" - }, - { - "authorized_access_point": "Am\u00e9rique francophone" - }, - { - "authorized_access_point": "Europe francophone" - } + "variant_access_point": [ + "Schwarzwald (Allemagne ; massif)", + "For\u00eat Noire" ], + "md5": "300693e3987cf8041e16b058aaee86b2" + }, + { + "authorized_access_point": "Ars-sur-Formans (Ain)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027366456", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027584763", + "value": "http://www.idref.fr/027366456", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11959324w", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11942363w", "source": "BNF" }, { - "type": "bf:Nbn", - "value": "(DE-101)040181413", - "source": "GND" + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/141163407" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "http://viaf.org/viaf/13144647641039724008", - "source": "VIAF" + "value": "https://fr.wikipedia.org/wiki/Ars-sur-Formans" } ], - "variant_access_point": [ - "Pays francophones", - "R\u00e9gions de langue fran\u00e7aise" - ], - "authorized_access_point": "Pays de langue fran\u00e7aise" - }, - { - "md5": "168456b1c3f70d88e62cb7825e56ba8a", - "pid": "027585190", "note": [ { + "noteType": "dataSource", "label": [ - "GDEL" - ], - "noteType": "dataSource" + "Dict. communes, 1984" + ] } ], + "pid": "027366456", "type": "bf:Place", - "related": [ - { - "authorized_access_point": "Pomp\u00e9i (ville ancienne)" - } - ], + "md5": "c01f0e40795bc118e7b2275778284b83" + }, + { + "authorized_access_point": "Asie du Sud", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027366936", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027585190", + "value": "http://www.idref.fr/027366936", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119593586", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119424039", "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040467554", - "source": "GND" + "value": "(DE-101)040584062" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/316884438", - "source": "VIAF" + "value": "http://viaf.org/viaf/254470885" } ], - "authorized_access_point": "Pomp\u00e9i (Italie)" - }, - { - "md5": "1113a5baacbd21bd3be2a559ef57c92f", - "pid": "027597334", + "note": [ + { + "noteType": "general", + "label": [ + "Sous cette vedette on trouve les ouvrages qui traitent de l'Inde et des pays voisins : Pakistan, N\u00e9pal, Bhoutan, Bangladesh, Sri Lanka et Maldives" + ] + } + ], + "pid": "027366936", "type": "bf:Place", - "bnf_type": "sujet Rameau", "narrower": [ { - "authorized_access_point": "Etats du Pacifique (Etats-Unis)" - }, - { - "authorized_access_point": "\u00c9tats-Unis (nord-ouest)" - }, - { - "authorized_access_point": "\u00c9tats-Unis (sud-ouest)" + "authorized_access_point": "Bangladesh" }, { - "authorized_access_point": "Grand Bassin (\u00c9tats-Unis)" + "authorized_access_point": "Bhoutan" }, { - "authorized_access_point": "Grandes Plaines (\u00c9tats-Unis)" - } - ], - "identifiedBy": [ - { - "type": "uri", - "value": "http://www.idref.fr/027597334", - "source": "IDREF" + "authorized_access_point": "Inde" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11960312x", - "source": "BNF" + "authorized_access_point": "Maldives" }, { - "type": "bf:Nbn", - "value": "(DE-101)041355350", - "source": "GND" + "authorized_access_point": "N\u00e9pal" }, { - "type": "uri", - "value": "http://viaf.org/viaf/172385909", - "source": "VIAF" + "authorized_access_point": "Pakistan" }, { - "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Ouest_am\u00e9ricain", - "source": "WIKIPEDIA" + "authorized_access_point": "Sri Lanka" } ], - "relation_pid": { - "type": "redirect_from", - "value": "027597377" - }, "variant_access_point": [ - "\u00c9tats de l'Ouest (\u00c9tats-Unis)", - "Far West", - "Far Ouest", - "Ouest am\u00e9ricain" + "Asie (sud)", + "Asie m\u00e9ridionale", + "Indien, Sous-continent", + "Sous continent indien" ], - "authorized_access_point": "\u00c9tats-Unis (ouest)" + "md5": "c479073b8f5232cbe2a879c810924010" }, { - "md5": "06ae55c19ac6e366222f9f7677e762ce", - "pid": "027614697", - "note": [ + "authorized_access_point": "Naples (Italie ; Royaume)", + "bnf_type": "sujet Rameau", + "classification": [ { - "label": [ - "Names of states / IFLA, 1981" - ], - "noteType": "dataSource" + "type": "bf:ClassificationDdc", + "classificationPortion": "914" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "940", + "name": "Histoire m\u00e9di\u00e9vale, moderne et contemporaine (sauf la France)" } ], - "type": "bf:Place", - "broader": [ + "closeMatch": [ { - "authorized_access_point": "Proche-Orient" + "authorized_access_point": "Naples (Kingdom)", + "source": "LCA", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/names/n79063272", + "source": "LCA" + } + ] + }, + { + "authorized_access_point": "Naples (Royaume)", + "source": "RVMLaval" } ], - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/02736819X", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027614697", + "value": "http://www.idref.fr/02736819X", "source": "IDREF" }, { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11942515k", + "source": "BNF" + }, + { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040287505", - "source": "GND" + "value": "(DE-101)040414787" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/204148574377724430003", - "source": "VIAF" + "value": "http://viaf.org/viaf/9120164963977824300002" } ], - "variant_access_point": [ - "Transjordanie", - "\u0627\u0644\u0623\u0631\u062f\u0646", - "Al-Urdun" - ], - "authorized_access_point": "Jordanie" - }, - { - "md5": "69d69836df8ab4accbab7cf1ce291f9b", - "pid": "027622444", "note": [ { + "noteType": "dataSource", "label": [ - "IFLA, Names of states, 1981", - "Laval RVM, 1996-02. Sverige ; GKD, 1994-05" - ], - "noteType": "dataSource" + "Grand Larousse universel", + "Robert encyclop\u00e9dique des noms propres 2008", + "Dict. encyclop\u00e9dique d'histoire / M. Mourre, 1996" + ] }, { + "noteType": "general", "label": [ - "Voir aussi la subdivision Et la Su\u00e8de aux personnes et collectivit\u00e9s" - ], - "noteType": "seeReference" + "Le sud de la p\u00e9ninsule italienne (Pouille, Calabre) uni \u00e0 la Sicile forme le royaume de Sicile en 1130. En 1282 la Sicile devient aragonaise, mais Charles d'Anjou, roi depuis 1266, se maintient dans la partie p\u00e9ninsulaire du royaume, qui devient le royaume de Naples ou de Terre ferme. Royaume de Naples et Sicile sont \u00e0 nouveau unis sous un m\u00eame roi en 1442-1458, sous la domination espagnole (1504-1707), autrichienne (1707-1713, 1720-1734), puis sous les Bourbons de Naples (1734-1799, 1799-1806, 1815-1816). Naples et Sicile forment de 1816 \u00e0 1861 le royaume des Deux-Siciles", + "Sous cette vedette, on trouve les documents sur le royaume de Naples de 1268\u00e0 1816, seul ou uni au royaume de Sicile. Les documents sur le sud de la p\u00e9ninsule italienne avant 1268 se trouvent sous Italie (sud). Les documents sur le royaume de Sicile se trouvent sous Sicile (Italie). Les documents sur le royaume unitaire des Deux-Siciles (1816-1861) se trouvent sous Royaume des Deux-Siciles" + ] } ], + "pid": "02736819X", "type": "bf:Place", - "broader": [ - { - "authorized_access_point": "Scandinavie" - }, - { - "authorized_access_point": "Pays de l'Union europ\u00e9enne" - } + "variant_access_point": [ + "Napoli, Regno di", + "Regno di Napoli", + "Royaume de Naples", + "Royaume de Terre ferme", + "Terre ferme, Royaume de" ], + "md5": "ac666ad9c00bc9c60972db6645be5fe8" + }, + { + "authorized_access_point": "Lyon (Rh\u00f4ne ; agglom\u00e9ration)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027368343", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027622444", + "value": "http://www.idref.fr/027368343", "source": "IDREF" }, { + "source": "VIAF", "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb13953240p", - "source": "BNF" - }, - { - "type": "bf:Nbn", - "value": "(DE-101)040772586", - "source": "GND" + "value": "http://viaf.org/viaf/173364079" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "http://viaf.org/viaf/178302678", - "source": "VIAF" - } - ], - "variant_access_point": [ - "Sverige" - ], - "authorized_access_point": "Su\u00e8de" - }, - { - "md5": "7c07b2713b88aad30b805feb49909f67", - "pid": "027633179", - "note": [ - { - "label": [ - "IFLA, Names of states, 1981. GLU, 1991", - "Laval RVM, 1996-08" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Voir aussi la subdivision Et la Chine aux personnes et collectivit\u00e9s" - ], - "noteType": "seeReference" + "value": "https://fr.wikipedia.org/wiki/Lyon" } ], + "pid": "027368343", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Asie du Nord-Est" - }, - { - "authorized_access_point": "Asie orientale" + "authorized_access_point": "Lyon (Rh\u00f4ne ; r\u00e9gion)" } ], + "relation_pid": { + "value": "184304202", + "type": "redirect_from" + }, + "variant_access_point": [ + "Lyon, Aire m\u00e9tropolitaine" + ], + "md5": "a76f61150f31a815019a003fc5bc4bbb" + }, + { + "authorized_access_point": "Tr\u00e8ves (Allemagne)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027368785", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027633179", + "value": "http://www.idref.fr/027368785", "source": "IDREF" }, { - "type": "uri", - "value": "https://catalogue.bnf.fr/ark:/12148/cb11963283w", - "source": "BNF" - }, - { - "type": "uri", - "value": "https://d-nb.info/gnd/4009937-4", - "source": "GND" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040099377", - "source": "GND" + "value": "(DE-101)040608778" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/5951158188189220260002", - "source": "VIAF" + "value": "http://viaf.org/viaf/8916148574372424430008" } ], - "variant_access_point": [ - "Cathay", - "C\u00e9leste empire", - "Chine (R\u00e9publique populaire)", - "Chine populaire", - "Empire c\u00e9leste", - "Empire du Milieu", - "Milieu, Empire du", - "\u4e2d\u570b", - "\u4e2d\u83ef\u4eba\u6c11\u5171\u548c\u570b", - "Zhonghua Ren min Gong he guo", - "Zhonghua Renmin Gong he guo", - "\u4e2d\u56fd", - "Zhongguo", - "\u4e2d\u534e\u4eba\u6c11\u5171\u548c\u56fd", - "Zhonghua Renmin Gongheguo" - ], - "authorized_access_point": "Chine" - }, - { - "md5": "85db08d809c37be49e2161f50fb65cdc", - "pid": "02763857X", "note": [ { + "noteType": "dataSource", "label": [ "GDEL" - ], - "noteType": "dataSource" + ] } ], + "pid": "027368785", "type": "bf:Place", - "broader": [ - { - "authorized_access_point": "Himalaya" - } + "variant_access_point": [ + "Augusta Treverorum (ville ancienne)", + "Trier (Allemagne)" ], + "md5": "d08fbb412516c82ee37d440be9b88d95" + }, + { + "authorized_access_point": "Le Caire (\u00c9gypte)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027370763", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/02763857X", + "value": "http://www.idref.fr/027370763", "source": "IDREF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)04040417X", - "source": "GND" + "value": "(DE-101)040292363" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/247168735", - "source": "VIAF" - }, - { - "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Everest", - "source": "WIKIPEDIA" + "value": "http://viaf.org/viaf/125715126" } ], - "variant_access_point": [ - "Chomolungma (mont)" + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL" + ] + } ], - "authorized_access_point": "Everest, Mont" - }, - { - "md5": "64aea29bb1ee34ad68ec960f56b698dd", - "pid": "027705781", + "pid": "027370763", "type": "bf:Place", - "bnf_type": "sujet Rameau", "narrower": [ { - "authorized_access_point": "Rhodanien, Sillon (France)" + "authorized_access_point": "Fustat (\u00c9gypte ; ville ancienne)" } ], + "variant_access_point": [ + "Caire, Le (\u00c9gypte)", + "Cairo", + "(\u0627\u0644\u0642\u0627\u0647\u0631\u0629 (\u0645\u0635\u0631", + "Al-Q\u0101hira\u1e97 (Mi\u1e63r)" + ], + "md5": "d2917c48b0b57e3d0d3684e51b22928e" + }, + { + "authorized_access_point": "Amazone (cours d'eau)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027372618", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027705781", + "value": "http://www.idref.fr/027372618", "source": "IDREF" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119691089", - "source": "BNF" - }, - { - "type": "bf:Nbn", - "value": "(DE-101)041037766", - "source": "GND" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)041037766", - "source": "GND" + "value": "(DE-101)040016269" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/173745158", - "source": "VIAF" + "value": "http://viaf.org/viaf/173309158" } ], - "authorized_access_point": "Rh\u00f4ne, Vall\u00e9e du" - }, - { - "md5": "68e6966c7614c941c9c3350997d3c586", - "pid": "02773417X", "note": [ { + "noteType": "dataSource", "label": [ - "GDEL" - ], - "noteType": "dataSource" + "GLU. Atlas Le Monde" + ] + }, + { + "noteType": "general", + "label": [ + "Rio Solim\u00f5es est le nom portugais de l'Amazone en amont de Manaus" + ] } ], + "pid": "027372618", "type": "bf:Place", + "variant_access_point": [ + "Amazonas, R\u00edo", + "Solim\u00f5es, Rio" + ], + "md5": "0116b45a4d2e7ce42e99267fa5afede6" + }, + { + "authorized_access_point": "Afrique australe", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027374750", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/02773417X", + "value": "http://www.idref.fr/027374750", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15294892q", + "value": "http://catalogue.bnf.fr/ark:/12148/cb162726316", "source": "BNF" }, { "type": "uri", - "value": "http://d-nb.info/gnd/4020144-2", - "source": "GND" + "value": "http://catalogue.bnf.fr/ark:/12148/cb11943016s", + "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040201449", - "source": "GND" + "value": "(DE-101)040583937" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/237685109", - "source": "VIAF" - }, - { - "type": "uri", - "value": "https://fr.wikipedia.org/wiki/L\u00e9man", - "source": "WIKIPEDIA" + "value": "http://viaf.org/viaf/152394654" } ], - "variant_access_point": [ - "Gen\u00e8ve, Lac de" - ], - "authorized_access_point": "L\u00e9man, Lac" - }, - { - "md5": "d32fe8280c4844f0ffcb5c67553d3e82", - "pid": "02775751X", "note": [ { + "noteType": "dataSource", "label": [ - "Alps, Italian (Italy) ; LCSH, 1988-12" - ], - "noteType": "dataSource" + "Laval RVM, 1992-02" + ] + }, + { + "noteType": "general", + "label": [ + "Sous cette vedette, on trouve les ouvrages qui traitent de la partie de l'Afrique situ\u00e9e au sud du Zai\u034f\u0308re et de la Tanzanie. Les ouvrages sur la R\u00e9publique d'Afrique du Sud se trouvent sous la vedette Afrique du Sud" + ] } ], + "pid": "027374750", "type": "bf:Place", - "bnf_type": "sujet Rameau", "narrower": [ { - "authorized_access_point": "Grappa (Italie ; massif)" + "authorized_access_point": "Afrique du Sud" }, { - "authorized_access_point": "Cadore (Italie)" + "authorized_access_point": "Angola" }, { - "authorized_access_point": "Dolomites (Italie ; massif)" + "authorized_access_point": "Botswana" }, { - "authorized_access_point": "Alpes juliennes" + "authorized_access_point": "Lesotho" }, { - "authorized_access_point": "Alpes cottiennes" + "authorized_access_point": "Malawi" }, { - "authorized_access_point": "Alpes maritimes (massif)" + "authorized_access_point": "Mozambique" }, { - "authorized_access_point": "Adamello (Italie ; massif)" - } - ], - "identifiedBy": [ + "authorized_access_point": "Namibie" + }, { - "type": "uri", - "value": "http://www.idref.fr/02775751X", - "source": "IDREF" + "authorized_access_point": "Swaziland" }, { - "type": "bf:Nbn", - "value": "(DE-101)040278395", - "source": "GND" + "authorized_access_point": "Zambie" }, { - "type": "uri", - "value": "http://viaf.org/viaf/316431852", - "source": "VIAF" + "authorized_access_point": "Zimbabwe" } ], "variant_access_point": [ - "Alpes italiennes" + "Afrique (sud)", + "Afrique m\u00e9ridionale" ], - "authorized_access_point": "Alpes (Italie)" + "md5": "ae4648147c244f19605a0f8be55c9875" }, { - "md5": "86f849fc2b060f97c60510e5d670c11c", - "pid": "027768678", - "note": [ - { - "label": [ - "France (Sud) ; Laval RVM, 1996-02" - ], - "noteType": "dataSource" - } - ], - "type": "bf:Place", + "authorized_access_point": "Ain (France ; cours d'eau)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027374831", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027768678", + "value": "http://www.idref.fr/027374831", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11974022k", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11943022q", "source": "BNF" }, { - "type": "bf:Nbn", - "value": "(DE-101)040714039", - "source": "GND" - }, - { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/172332341", - "source": "VIAF" - } - ], - "variant_access_point": [ - "France du sud", - "France m\u00e9ridionale", - "Midi (France)", - "Sud de la France" - ], - "authorized_access_point": "France (sud)" - }, - { - "md5": "86390248ebbd80dcef9d19eff6023c68", - "pid": "027801101", - "note": [ - { - "label": [ - "GLU. Laval RVM, 1995-02" - ], - "noteType": "dataSource" + "value": "http://viaf.org/viaf/8281148574369624430004" }, { - "label": [ - "Voir aussi aux diff\u00e9rentes parties de l'Asie, par ex. Asie du Sud-Est", - "Voir aussi la subdivision Et l'Asie aux personnes et collectivit\u00e9s" - ], - "noteType": "seeReference" + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Ain_(rivi\u00e8re)" } ], + "pid": "027374831", "type": "bf:Place", - "broader": [ + "related": [ { - "authorized_access_point": "Eurasie" + "authorized_access_point": "Combe d'Ain, Bassin de la (France)" } ], + "md5": "f45348df1b61a0d3c1dce95db5d298fe" + }, + { + "authorized_access_point": "Am\u00e9rique centrale", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027375080", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027801101", + "value": "http://www.idref.fr/027375080", "source": "IDREF" }, { "type": "uri", - "value": "http://d-nb.info/gnd/4003217-6", - "source": "GND" + "value": "http://catalogue.bnf.fr/ark:/12148/cb15238498d", + "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040032175", - "source": "GND" + "value": "(DE-101)040794865" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/4444148574353824430005", - "source": "VIAF" + "value": "http://viaf.org/viaf/170225739" } ], - "authorized_access_point": "Asie" - }, - { - "md5": "4fd1594003d219070a026b8a1f7131ed", - "pid": "027804151", "note": [ { + "noteType": "dataSource", "label": [ - "Laval RVM, 1997-02" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Sous cette vedette, on trouve les ouvrages sur la partie de l'Europe comprenant les bassins du Danube (jusqu'aux Portes de Fer), de l'Elbe, de l'Oder et du Rhin. Les ouvrages qui traitent de la partie de l'Europe situ\u00e9e \u00e0 l'est de l'Allemagne et de l'Autriche jusqu'\u00e0 l'Oural, ou des anciennes d\u00e9mocraties populaires d'Europe (URSS non comprise), se trouvent sous la vedette Europe de l'Est" - ], - "noteType": "general" - }, - { - "label": [ - "Voir aussi la subdivision Et l'Europe centrale aux personnes et collectivit\u00e9s" - ], - "noteType": "seeReference" + "Laval RVM, 1991-02" + ] } ], + "pid": "027375080", "type": "bf:Place", - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "broader": [ + { + "authorized_access_point": "Am\u00e9rique" + } + ], + "variant_access_point": [ + "Am\u00e9rique (centre)", + "Guatemala (Royaume)" + ], + "md5": "a3c63d90a39224a522b0f8a9042411f2" + }, + { + "authorized_access_point": "Am\u00e9rique du Sud", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027375099", + "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027804151", + "value": "http://www.idref.fr/027375099", "source": "IDREF" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15180937h", - "source": "BNF" + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040780147" }, { + "source": "VIAF", "type": "uri", - "value": "http://d-nb.info/gnd/4039677-0", - "source": "GND" - }, - { - "type": "bf:Nbn", - "value": "(DE-101)040396770", - "source": "GND" + "value": "http://viaf.org/viaf/577145424560886831330" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "http://viaf.org/viaf/171699483", - "source": "VIAF" + "value": "https://fr.wikipedia.org/wiki/Am\u00e9rique_du_Sud" } ], - "variant_access_point": [ - "Europe (centre)", - "Mitteleuropa" - ], - "authorized_access_point": "Europe centrale" - }, - { - "md5": "7ab3ab13cecd468591a1053d06417efd", - "pid": "027810674", "note": [ { + "noteType": "dataSource", "label": [ - "IFLA, Names of states, 1981. Pays et capitales du monde / IGN, 1990. Mourre, 1986", - "Laval RVM, 1996-08. Luxemburg ; SWD, 1995-04" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Sous cette vedette on trouve les ouvrages qui traitent de l'ensemble du Luxembourg (comt\u00e9, duch\u00e9 en 1354, grand-duch\u00e9 en 1815) ou du seul grand-duch\u00e9 depuis 1831 (priv\u00e9 de sa partie occidentale, wallonne, annex\u00e9e par la Belgique)" - ], - "noteType": "general" + "Laval RVM, 1994-08" + ] } ], + "pid": "027375099", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Benelux" - }, - { - "authorized_access_point": "Pays de l'Union europ\u00e9enne" + "authorized_access_point": "Am\u00e9rique" } ], + "variant_access_point": [ + "Am\u00e9rique (sud)" + ], + "md5": "239366508f05075f191e49e6bd5fa502" + }, + { + "authorized_access_point": "Amsterdam (Pays-Bas)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027375188", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027810674", + "value": "http://www.idref.fr/027375188", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119772596", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119430472", "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040367282", - "source": "GND" + "value": "(DE-101)040017834" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/14145003656661341083", - "source": "VIAF" + "value": "http://viaf.org/viaf/152912999" }, { - "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Luxembourg", - "source": "WIKIPEDIA" + "source": "GEOVISTORY", + "type": "bf:Nbn", + "value": "i205236" } ], - "variant_access_point": [ - "Letzeburg", - "Luxembourg (comt\u00e9)", - "Luxembourg (duch\u00e9)", - "Luxembourg (Grand-duch\u00e9)", - "Luxemburg" - ], - "authorized_access_point": "Luxembourg" - }, - { - "md5": "0da090fd03de8b86de24f5da9b4c4e57", - "pid": "027849414", "note": [ { + "noteType": "dataSource", "label": [ - "GDEL. SY 1990/91" - ], - "noteType": "dataSource" + "GDEL" + ] } ], + "pid": "027375188", "type": "bf:Place", - "broader": [ - { - "authorized_access_point": "Suisse - Cantons" - } - ], + "relation_pid": { + "value": "253217083", + "type": "redirect_from" + }, + "md5": "ff33b0f0bccf812e9e97b2b6a97d1fd9" + }, + { + "authorized_access_point": "Antilles", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027375412", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027849414", + "value": "http://www.idref.fr/027375412", "source": "IDREF" }, { - "type": "bf:Nbn", - "value": "(DE-101)040057658", - "source": "GND" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119430639", + "source": "BNF" }, { - "type": "uri", - "value": "http://d-nb.info/gnd/4005765-3 ", - "source": "GND" + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040022935" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/172118589", - "source": "VIAF" + "value": "http://viaf.org/viaf/155553957" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Canton_de_Berne", - "source": "WIKIPEDIA" + "value": "https://fr.wikipedia.org/wiki/Antilles" } ], - "authorized_access_point": "Berne (Suisse ; canton)" - }, - { - "md5": "4fadf276ff24607f762da7526fb4d0c9", - "pid": "02788743X", "note": [ { + "noteType": "dataSource", "label": [ - "GLU, 1991", - "Laval RVM, 1996-08. Elsass ; SWD, 1995-04" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Sous cette vedette on trouve les ouvrages qui traitent de l'Alsace historique, ou de l'actuelle r\u00e9gion d'Alsace qui ne comprend pas le Territoire-de-Belfort" - ], - "noteType": "general" + "GLU. Laval RVM, 1993-02" + ] }, { + "noteType": "general", "label": [ - "Voir aussi la subdivision Et l'Alsace aux personnes et collectivit\u00e9s" - ], - "noteType": "seeReference" + "Sous cette vedette on trouve les ouvrages qui traitent de l'archipel qui s\u00e9pare l'Atlantique de la mer des Antilles et qui comprend les Bahamas, les Grandes et les Petites Antilles" + ] } ], + "pid": "027375412", "type": "bf:Place", "broader": [ { - "authorized_access_point": "France (est)" - }, - { - "authorized_access_point": "France (nord-est)" - }, - { - "authorized_access_point": "Rh\u00e9nans, Pays (sud)" - }, - { - "authorized_access_point": "France - R\u00e9gions" + "authorized_access_point": "R\u00e9gion cara\u00efbe" } ], + "variant_access_point": [ + "Antillas", + "Antillen", + "Cara\u00efbes (\u00eeles)", + "Indes occidentales", + "West Indies" + ], + "md5": "ffed70073f629aad7a66ff5f1ee7b4b6" + }, + { + "authorized_access_point": "Anvers (Belgique)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027375463", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/02788743X", + "value": "http://www.idref.fr/027375463", "source": "IDREF" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119832719", - "source": "BNF" - }, - { - "type": "uri", - "value": "http://d-nb.info/gnd/4014500-1", - "source": "GND" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)04014500X", - "source": "GND" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/153554472", - "source": "VIAF" + "value": "(DE-101)040023648" }, { + "source": "VIAF", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Alsace", - "source": "WIKIPEDIA" + "value": "http://viaf.org/viaf/135575206" } ], - "variant_access_point": [ - "Alsace", - "Elsass (France)" - ], - "authorized_access_point": "Alsace (France)" - }, - { - "md5": "d1cb8503972c4aca53b75f4578b48205", - "pid": "027945774", "note": [ { + "noteType": "dataSource", "label": [ "GDEL" - ], - "noteType": "dataSource" + ] } ], + "pid": "027375463", "type": "bf:Place", + "variant_access_point": [ + "Antwerpen (Belgique)" + ], + "md5": "2d4b71d160dfc1c1517c46b68938edaa" + }, + { + "authorized_access_point": "Babylone (Iraq ; ville ancienne)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/02737601X", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027945774", + "value": "http://www.idref.fr/02737601X", "source": "IDREF" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11987945n", - "source": "BNF" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040554589", - "source": "GND" + "value": "(DE-101)040041018" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/128144648648649371618", - "source": "VIAF" + "value": "http://viaf.org/viaf/172711277" } ], - "relation_pid": { - "type": "redirect_from", - "value": "276094255" - }, - "variant_access_point": [ - "Solothurn (Suisse)" - ], - "authorized_access_point": "Soleure (Soleure, Suisse)" - }, - { - "md5": "b42dccaef0835a9cf9a9de044f9b6b26", - "pid": "028146239", "note": [ { + "noteType": "dataSource", "label": [ - "GDEL. Atlas universalis" - ], - "noteType": "dataSource" + "GDEL. LCSH, 1989-03" + ] } ], + "pid": "02737601X", "type": "bf:Place", + "md5": "57c598ab3da0070d1f06c61808a776a4" + }, + { + "authorized_access_point": "Bolivie", "bnf_type": "sujet Rameau", - "narrower": [ - { - "authorized_access_point": "Saint-Pierre (Suisse ; \u00eele)" - } - ], + "identifier": "http://www.idref.fr/027377067", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/028146239", + "value": "http://www.idref.fr/027377067", "source": "IDREF" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb120038758", - "source": "BNF" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040065146", - "source": "GND" + "value": "(DE-101)040076075" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/315149407", - "source": "VIAF" + "value": "http://viaf.org/viaf/130756130" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Lac_de_Bienne", - "source": "WIKIPEDIA" + "value": "https://fr.wikipedia.org/wiki/Bolivie" } ], - "variant_access_point": [ - "Biel, Lac de (Suisse)", - "Bielersee (Suisse ; lac)" - ], - "authorized_access_point": "Bienne, Lac de (Suisse)" - }, - { - "md5": "b40f19f491375095c03a6112eed148b5", - "pid": "028179420", "note": [ { + "noteType": "dataSource", "label": [ - "GDEL. SY 1990/91" - ], - "noteType": "dataSource" + "IFLA, Names of states, 1981. GDEL" + ] } ], + "pid": "027377067", "type": "bf:Place", - "broader": [ - { - "authorized_access_point": "Suisse - Cantons" - } - ], - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "narrower": [ { - "type": "uri", - "value": "http://www.idref.fr/028179420", - "source": "IDREF" + "authorized_access_point": "Amazonie (Bolivie)" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb120066503", - "source": "BNF" + "authorized_access_point": "Beni (Bolivie)" }, { - "type": "uri", - "value": "http://d-nb.info/gnd/4068041-1", - "source": "GND" + "authorized_access_point": "Cochabamba (Bolivie ; d\u00e9partement)" }, { - "type": "bf:Nbn", - "value": "(DE-101)04068041X", - "source": "GND" + "authorized_access_point": "La Paz (Bolivie ; d\u00e9partement)" }, { - "type": "uri", - "value": "http://viaf.org/viaf/140174177", - "source": "VIAF" - } - ], - "authorized_access_point": "Zurich (Suisse ; canton)" - }, - { - "md5": "1a937806599c65b13cd9d7efec2139b4", - "pid": "02847158X", - "note": [ - { - "label": [ - "Alps, Western ; LCSH, 1988-12. Alpes occidentales ; Laval RVM, 1988-12" - ], - "noteType": "dataSource" - } - ], - "type": "bf:Place", - "bnf_type": "sujet Rameau", - "narrower": [ + "authorized_access_point": "Potos\u00ed (Bolivie ; d\u00e9partement)" + }, { - "authorized_access_point": "Alpes cottiennes" + "authorized_access_point": "Santa Cruz (Bolivie ; d\u00e9partement)" }, { - "authorized_access_point": "Mont Blanc, Massif du" + "authorized_access_point": "Chuquisaca (Bolivie ; d\u00e9partement)" }, { - "authorized_access_point": "Alpes maritimes (massif)" + "authorized_access_point": "Moxos (Bolivie)" }, { - "authorized_access_point": "La Lauzi\u00e8re, massif de (France)" + "authorized_access_point": "Oriente (Bolivie)" } ], + "variant_access_point": [ + "Alto Per\u00fa", + "Bolivia", + "Haut-P\u00e9rou", + "P\u00e9rou, Haut-" + ], + "md5": "d24194be366d118646191ac61d9e7f47" + }, + { + "authorized_access_point": "Calabre (Italie)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027377660", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/02847158X", + "value": "http://www.idref.fr/027377660", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb120300409", + "value": "http://catalogue.bnf.fr/ark:/12148/cb121177322", "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040792048", - "source": "GND" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/315530690", - "source": "VIAF" + "value": "(DE-101)040292789" }, { + "source": "VIAF", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Alpes_occidentales", - "source": "WIKIPEDIA" + "value": "http://viaf.org/viaf/155870508" } ], - "variant_access_point": [ - "Alpes occidentales" - ], - "authorized_access_point": "Alpes (ouest)" - }, - { - "md5": "9dce3b98f74ebae8f59278dc17a1b8c2", - "pid": "028567005", "note": [ { + "noteType": "dataSource", "label": [ - "DHGE. Mourre, 1996" - ], - "noteType": "dataSource" + "GDEL" + ] + } + ], + "pid": "027377660", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Italie (sud)" }, { - "label": [ - "L'introduction de la R\u00e9forme \u00e0 B\u00e2le en 1529 amena la scission entre la ville r\u00e9form\u00e9e et l'\u00e9v\u00eaque catholique, pr\u00e9figuration de la scission du canton en deux demi-cantons en 1833" - ], - "noteType": "general" + "authorized_access_point": "Italie - R\u00e9gions" } ], - "type": "bf:Place", + "variant_access_point": [ + "Bruttium", + "Calabria (Italie)" + ], + "md5": "3598178b30bbe776a55d716b14796c5f" + }, + { + "authorized_access_point": "Cameroun", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027377768", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/028567005", + "value": "http://www.idref.fr/027377768", "source": "IDREF" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb120377073", - "source": "BNF" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040802752", - "source": "GND" + "value": "(DE-101)040294137" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/599144783181696879819", - "source": "VIAF" + "value": "http://viaf.org/viaf/147664051" } ], - "variant_access_point": [ - "Ancien \u00e9v\u00each\u00e9 de B\u00e2le (Suisse)" - ], - "authorized_access_point": "B\u00e2le (Principaut\u00e9 eccl\u00e9siastique)" - }, - { - "md5": "7c391f369510f13eadb16bc74dd59390", - "pid": "028706536", "note": [ { + "noteType": "dataSource", "label": [ - "Trirhena : une r\u00e9gion sans fronti\u00e8res ?, 2002" - ], - "noteType": "dataSource" + "Names of states / IFLA, 1981. GDEL. SY, 1986/1987" + ] }, { + "noteType": "general", "label": [ - "Sous cette vedette on trouve les ouvrages qui traitent de la r\u00e9gion b\u00e2loise, s'\u00e9tendant sur le canton de B\u00e2le, le sud-est de l'Alsace et le sud du pays de Bade. Les ouvrages qui traitent des pays rh\u00e9nans depuis B\u00e2le jusqu'\u00e0 Mayence se trouvent sous la vedette Rh\u00e9nans, Pays (sud)" - ], - "noteType": "general" + "Sous cette vedette on trouve les ouvrages qui traitent du territoire qui fut plac\u00e9 sous protectorat allemand, puis sous mandats fran\u00e7ais et britannique, et qui constitue aujourd'hui la R\u00e9publique du Cameroun" + ] } ], + "pid": "027377768", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Rh\u00e9nans, Pays (sud)" + "authorized_access_point": "Afrique centrale" } ], + "variant_access_point": [ + "Cameroon", + "Kamerun" + ], + "md5": "295e3b61e43ab3be2f7557b99b49dc29" + }, + { + "authorized_access_point": "R\u00e9publique dominicaine", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027379647", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/028706536", + "value": "http://www.idref.fr/027379647", "source": "IDREF" }, { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13162779p", + "source": "BNF" + }, + { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040046206", - "source": "GND" + "value": "(DE-101)040126943" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/158939441", - "source": "VIAF" + "value": "http://viaf.org/viaf/849148574256524430004" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Names of states / IFLA, 1981. Pays et capitales du monde / IGN, 1985. Laval RVM, 1983" + ] + } + ], + "pid": "027379647", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Ha\u00efti (\u00eele)" }, { - "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Regio_Basiliensis", - "source": "WIKIPEDIA" + "authorized_access_point": "Antilles hispaniques" } ], "variant_access_point": [ - "Basiliensis, Regio", - "Regio Basiliensis", - "TriRhena, Regio" + "Dominicaine (R\u00e9publique)", + "Rep\u00fablica Dominicana" ], - "authorized_access_point": "B\u00e2le (Suisse ; r\u00e9gion)" + "md5": "d799b84e562b1f1b71099460b548dcb3" }, { - "md5": "30d7b3938fed5f84d44126446e016203", - "pid": "028724208", - "type": "bf:Place", + "authorized_access_point": "Pays de Galles (GB)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027381323", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/028724208", + "value": "http://www.idref.fr/027381323", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12050127s", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11943541c", "source": "BNF" }, { - "type": "uri", - "value": "http://d-nb.info/gnd/4118667-9", - "source": "GND" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)041186672", - "source": "GND" + "value": "(DE-101)040644359" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/316747146", - "source": "VIAF" - }, - { - "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Tunnel_du_Simplon", - "source": "WIKIPEDIA" + "value": "http://viaf.org/viaf/12144647638200048242" } ], - "authorized_access_point": "Simplon, Tunnel du" - }, - { - "md5": "bc1c76ecaeac3f4d3ebb7b0269278ffe", - "pid": "028931491", + "note": [ + { + "noteType": "dataSource", + "label": [ + "GLU, 1991", + "Pays de Galles ; Laval RVM, 1997-02" + ] + } + ], + "pid": "027381323", "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Grande-Bretagne" + }, + { + "authorized_access_point": "Pays celtiques" + } + ], + "variant_access_point": [ + "Cambria", + "Cambrie", + "Cymru (GB)", + "Galles, Pays de (GB)", + "Wales (GB)" + ], + "md5": "642bd20681c4b8ab3fe76077b824761a" + }, + { + "authorized_access_point": "Malaisie", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027400212", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/028931491", + "value": "http://www.idref.fr/027400212", "source": "IDREF" }, { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11945050f", + "source": "BNF" + }, + { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)949642762", - "source": "GND" + "value": "(DE-101)040372030" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/145332698" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "http://viaf.org/viaf/173637213", - "source": "VIAF" + "value": "https://fr.wikipedia.org/wiki/Malaisie" } ], - "authorized_access_point": "L\u00e9man, Lac (r\u00e9gion)" - }, - { - "md5": "ca5bec865c9e0097d289f0a1f3e31b79", - "pid": "028988310", "note": [ { + "noteType": "dataSource", "label": [ - "Petit Robert des noms propres 2016", - "Grand Larousse universel", - "L'atlas National geographic, 2007 : Schwytz", - "Wikip\u00e9dia : canton de Schwytz [ou Schwyz] - https://fr.wikipedia.org (2017-10-21)", - "Statoids - http://www.statoids.com (2017-10-21)", - "Kanton Schwyz - https://www.sz.ch (2017-10-21)", - "Dict. historique de la Suisse : Schwytz (canton) - http://www.hls-dhs-dss.ch (2017-10-21)" - ], - "noteType": "dataSource" + "Malaisie ; IFLA, Names of states, 1981 ; Pays et capitales du monde / IGN, 1986 ; BN ACO. Malaysia ; GLU ; Laval RVM, 1995-02 ; Atlas Le Monde" + ] }, { + "noteType": "general", "label": [ - "Canton germanophone du centre-est ; capitale : Schwyz. Il est un des 4 cantons historiques ayant donn\u00e9 naissance \u00e0 la Conf\u00e9d\u00e9ration helv\u00e9tique au 19e si\u00e8cle, apr\u00e8s avoir souvent lutt\u00e9 contre les Habsbourg. Son nom a donn\u00e9 naissance \u00e0 celui du pays tout entier - dans sa version allemande 'Schweiz'. Pour la ville comme pour le canton, on peut dire aussi \"Schwytz\", qui est une graphie romande, mais dans sa version fran\u00e7aise, la Constitution suisse emploie le terme \"Schwyz" - ], - "noteType": "general" + "Sous cette vedette on trouve les ouvrages qui traitent de la F\u00e9d\u00e9ration de Malaisie (ou Malaysia), comprenant depuis 1963 la Malaisie p\u00e9ninsulaire, Sabah et Sarawak (et Singapour de 1963 \u00e0 1965). Les ouvrages qui traitent de la Malaisie p\u00e9ninsulaire, avant ou depuis 1963, se trouvent sous la vedette Malaisie occidentale" + ] } ], + "pid": "027400212", "type": "bf:Place", - "broader": [ + "narrower": [ { - "authorized_access_point": "Suisse - Cantons" + "authorized_access_point": "Malaisie occidentale" + }, + { + "authorized_access_point": "Malaisie orientale" } ], + "variant_access_point": [ + "Malaysia" + ], + "md5": "9e0f059c38859e00faa3c9e5d4d7f363" + }, + { + "authorized_access_point": "Ouganda", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027402193", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/028988310", + "value": "http://www.idref.fr/027402193", "source": "IDREF" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb120709591", - "source": "BNF" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040540197", - "source": "GND" + "value": "(DE-101)040614573" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/134271490", - "source": "VIAF" - }, + "value": "http://viaf.org/viaf/134866435" + } + ], + "note": [ { - "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Cat\u00e9gorie:Canton_de_Schwytz", - "source": "WIKIPEDIA" + "noteType": "dataSource", + "label": [ + "Names of states / IFLA, 1981" + ] } ], - "classification": [ + "pid": "027402193", + "type": "bf:Place", + "broader": [ { - "name": "G\u00e9ographie de l'Europe", - "type": "bf:ClassificationDdc", - "classificationPortion": "914" + "authorized_access_point": "Afrique orientale anglophone" } ], "variant_access_point": [ - "Kanton Schwyz (Suisse)", - "Pays de Schwyz (Suisse)", - "Schweitz (Suisse ; canton)", - "Schwytz (Suisse ; canton)", - "Svitto (Suisse ; canton)", - "Sviz (Suisse ; canton)" + "Uganda" ], - "authorized_access_point": "Schwyz (Suisse ; canton)" + "md5": "4f46da08803b646737e13f28c4721c38" }, { - "md5": "633d7b2a486c35a64a9868ac8dce10b8", - "pid": "028992318", + "authorized_access_point": "Indien, Oc\u00e9an", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027405478", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027405478", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040267377" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/145299573" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Oc\u00e9an_Indien" + } + ], "note": [ { + "noteType": "dataSource", "label": [ - "GDEL. SY 1990/91" - ], - "noteType": "dataSource" + "GDEL. Laval RVM, 1991-08" + ] } ], + "pid": "027405478", "type": "bf:Place", - "broader": [ + "narrower": [ { - "authorized_access_point": "Suisse - Cantons" + "authorized_access_point": "Persique, Golfe" + }, + { + "authorized_access_point": "Oman, Mer d'" } ], + "variant_access_point": [ + "\u00c9rythr\u00e9e, Mer", + "Indes, Mer des", + "Indicus, Oceanus", + "Oc\u00e9an Indien" + ], + "md5": "6398204215397ce7c81da045e5c68bf7" + }, + { + "authorized_access_point": "Islande", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027405621", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/028992318", + "value": "http://www.idref.fr/027405621", "source": "IDREF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040680649", - "source": "GND" + "value": "(DE-101)040277542" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/20144647636134910488", - "source": "VIAF" + "value": "http://viaf.org/viaf/2599148574346024430006" } ], - "authorized_access_point": "Zoug (Suisse ; canton)" - }, - { - "md5": "72ecc8b6a0ad0092ed2068eb45fd53ef", - "pid": "02899275X", "note": [ { + "noteType": "dataSource", "label": [ - "GDEL. SY 1990/91" - ], - "noteType": "dataSource" + "Names of states / IFLA, 1981" + ] } ], + "pid": "027405621", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Suisse - Cantons" + "authorized_access_point": "Atlantique, \u00celes de l'" + }, + { + "authorized_access_point": "Scandinavie" } ], + "variant_access_point": [ + "\u00cdsland" + ], + "md5": "2a7ae383a711d21a5ecefaa547fa0df1" + }, + { + "authorized_access_point": "Jama\u00efque", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027405753", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/02899275X", + "value": "http://www.idref.fr/027405753", "source": "IDREF" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12071302n", - "source": "BNF" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040519937", - "source": "GND" + "value": "(DE-101)040284565" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/144820199", - "source": "VIAF" - }, + "value": "http://viaf.org/viaf/398148574254724430000" + } + ], + "note": [ { - "type": "uri", - "value": "http://viaf.org/viaf/152454816", - "source": "VIAF" + "noteType": "dataSource", + "label": [ + "Names of states / IFLA, 1981" + ] + } + ], + "pid": "027405753", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Grandes Antilles" }, { - "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Schaffhouse", - "source": "WIKIPEDIA" + "authorized_access_point": "Antilles anglophones" } ], - "relation_pid": { - "type": "redirect_from", - "value": "197672701" - }, "variant_access_point": [ - "Schaffhausen (Suisse ; canton)" + "Jamaica" ], - "authorized_access_point": "Schaffhouse (Suisse ; canton)" + "md5": "d0b2e4828163dffc551ef46ed3f6d2e1" }, { - "md5": "158ec07faa8a1ffd8801596da865c2a5", - "pid": "029036690", - "type": "bf:Place", + "authorized_access_point": "Labourd (France)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027406415", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/029036690", + "value": "http://www.idref.fr/027406415", "source": "IDREF" }, { - "type": "bf:Nbn", - "value": "(DE-101)040772756", - "source": "GND" - }, - { + "source": "VIAF", "type": "uri", - "value": "http://d-nb.info/gnd/4077275-5<", - "source": "GND" + "value": "http://viaf.org/viaf/130274539" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "http://viaf.org/viaf/2253148574262324430007", - "source": "VIAF" + "value": "https://fr.wikipedia.org/wiki/Labourd" } ], - "variant_access_point": [ - "Alpes suisses" + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL" + ] + } + ], + "pid": "027406415", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Pays basque (Pyr\u00e9n\u00e9es-Atlantiques)" + } ], - "authorized_access_point": "Alpes (Suisse)" + "md5": "b2a55bc3653d9060ab51876e2d0f4632" }, { - "md5": "573af1b964e87fc62ce0175c823f57ea", - "pid": "029201098", - "note": [ + "authorized_access_point": "Lettonie", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027406733", + "identifiedBy": [ { - "label": [ - "GDEL. Grand-Saint-Bernard (Italie et Suisse) ; Laval RVM, 1990-08", - "GeoNames (2017-07-06)" - ], - "noteType": "dataSource" + "type": "uri", + "value": "http://www.idref.fr/027406733", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040741877" }, { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/4704148574272524430009" + } + ], + "note": [ + { + "noteType": "dataSource", "label": [ - "Le col du Grand-Saint-Bernard, anciennement appel\u00e9 col du Mont-Joux, est un col de montagne routier des Alpes pennines, situ\u00e9 \u00e0 2 469 m\u00e8tres d'altitude en Valais sur la commune de Bourg-Saint-Pierre en Suisse. La fronti\u00e8re avec l'Italie (commune de Saint-Rh\u00e9my-en-Bosses) passe quelques centaines de m\u00e8tres au sud-ouest du col. Il s\u00e9pare la vall\u00e9e du m\u00eame nom, en Vall\u00e9e d'Aoste au sud, du val d'Entremont, situ\u00e9 en Valais au nord et constitue un passage entre le mont Mort et la pointe de Dr\u00f4ne, tous deux situ\u00e9s sur la fronti\u00e8re italio-suisse. C'est le troisi\u00e8me plus haut col routier des Alpes suisses et le septi\u00e8me plus haut d'Italie" - ], - "noteType": "general" + "GLU. Laval RVM, 1994-08" + ] } ], + "pid": "027406733", "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Pays baltes" + } + ], + "variant_access_point": [ + "Latvija" + ], + "md5": "aff9cdf5b59a71d15aa1b24728c32b21" + }, + { + "authorized_access_point": "Lucerne (Suisse)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027407012", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/029201098", + "value": "http://www.idref.fr/027407012", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12087709t", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11864772p", "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040940888", - "source": "GND" + "value": "(DE-101)040367339" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-588)4094088-3", - "source": "GND" + "value": "(DE-101)040367339" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/5670150567623106370006", - "source": "VIAF" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/240823931", - "source": "VIAF" - }, + "value": "http://viaf.org/viaf/140255133" + } + ], + "note": [ { - "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Col_du_Grand-Saint-Bernard", - "source": "WIKIPEDIA" + "noteType": "dataSource", + "label": [ + "GDEL" + ] } ], - "relation_pid": { - "type": "redirect_from", - "value": "202981762" - }, + "pid": "027407012", + "type": "bf:Place", "variant_access_point": [ - "Saint-Bernard, Grand- (col)", - "Grosser Sankt Bernhard", - "Gran San Bernardo", - "Great Saint Bernard Pass", - "Colle del Gran San Bernardo", - "Grand-Saint-Bernard, Col du (Valais, Suisse)" + "Luzern (Suisse)" ], - "authorized_access_point": "Grand-Saint-Bernard (col)" + "md5": "5b7ddb04767f992b5486849a78933eae" }, { - "md5": "d8b5efb2ae63476558d2ada82880438b", - "pid": "029805287", - "note": [ + "authorized_access_point": "Paris (France) - 1871 (Commune)", + "bnf_type": "sujet Rameau", + "classification": [ { - "label": [ - "Atlas Le Monde", - "https://hls-dhs-dss.ch/fr/articles/002802/2017-11-16/, 2024-02-20", - "Sion et Mayens-de-Sion / Louis Courthion, 1910" - ], - "noteType": "dataSource" + "type": "bf:ClassificationDdc", + "classificationPortion": "320", + "name": "Science politique" }, { - "label": [ - "Ville situ\u00e9e dans le canton du Valais ; chef-lieu du canton" - ], - "noteType": "general" + "type": "bf:ClassificationDdc", + "classificationPortion": "944", + "name": "Histoire de la France" } ], - "type": "bf:Place", - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027407632", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/029805287", + "value": "http://www.idref.fr/027407632", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12135301m", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119456147", "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040774678", - "source": "GND" - }, - { - "type": "bf:Nbn", - "value": "(DE-101)040774678", - "source": "GND" - }, - { - "type": "uri", - "value": "http://d-nb.info/gnd/4077467-3", - "source": "GND" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/316751302", - "source": "VIAF" + "value": "(DE-101)040446689" } ], - "variant_access_point": [ - "Sitten (Suisse)" - ], - "authorized_access_point": "Sion (Valais, Suisse)" - }, - { - "md5": "f9658358a32810397df757570d432357", - "pid": "030519799", "note": [ { + "noteType": "dataSource", "label": [ - "Wikip\u00e9dia : ch\u00e2teau de Val\u00e8re - https://fr.wikipedia.org (2021-08-10)", - "Wikipedia : Basilica di Val\u00e8re, castello di Val\u00e8re - https:/:it.wikipedia.org (2021-08-10)", - "Wikipedia : Basilique de Val\u00e8re (oder Basilika von Valeria, Schloss Valeria) - https://de.wikipedia.org (2021-08-10)", - "Petit Robert des noms propres, 2015 (art. : Sion) : \u00e9glise Notre-Dame de Val\u00e8re", - "Grand Larousse universel (art. : Sion) : \u00e9glise Notre-Dame de Val\u00e8re", - "Guides Voir : Suisse, 2012", - "Sion Tourisme : ch\u00e2teau de Val\u00e8re (interface en fran\u00e7ais), Schloss Valeria (interface en allemand) - https://siontourisme.ch (2021-08-10)" - ], - "noteType": "dataSource" + "Grand Larousse universel", + "Encycl. universalis - http://www.universalis-edu.com (2014-03-13)", + "Dict. encyclop\u00e9dique d'histoire / M. Mourre, 1996", + "La Commune de 1871 / J. Rougerie, 1992", + "Dict. de la Commune / B. No\u00ebl, 1971" + ] }, { + "noteType": "general", "label": [ - "Le \"ch\u00e2teau de Val\u00e8re\", qui couronne la colline du m\u00eame nom dominant Sion, est en r\u00e9alit\u00e9 une \u00e9glise fortifi\u00e9e des 12e-13e si\u00e8cles, \u00e9glise entour\u00e9e de maisons qui furent r\u00e9sidence des chanoines de la cath\u00e9drale de la ville, le tout prot\u00e9g\u00e9 par une enceinte (remparts et tours), le clocher de l'\u00e9glise \u00e9tant en quelque sorte le donjon de ce v\u00e9ritable petit bourg m\u00e9di\u00e9val. L'\u00e9glise Notre-Dame de Val\u00e8re fut \u00e9lev\u00e9e au rang de basilique (mineure) sous le pontificat de Jean-Paul II, en 1987. Ses chapiteaux sont romans, ses fresques, gothiques ; son orgue de la fin du 14e si\u00e8cle est le plus ancien du monde sur lequel on peut encore jouer. Le complexe abrite le Mus\u00e9e d'histoire du Valais" - ], - "noteType": "general" + "Sous cette vedette, on trouve les documents sur la Commune de Paris de 1871. Les documents dont la Commune est l'auteur se trouvent sous Commune de Paris (1871)", + "18 mars-28 mai 1871 : gouvernement insurrectionnel de la Commune \u00e0 Paris, \u00e9cras\u00e9 par le gouvernement d'Adolphe Thiers si\u00e9geant \u00e0 Versailles" + ] } ], + "pid": "027407632", "type": "bf:Place", - "bnf_type": "sujet Rameau", - "closeMatch": [ + "broader": [ { - "source": "LCA", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/names/n91123541", - "source": "LCA" - }, - "authorized_access_point": "Notre-Dame de Val\u00e8re (Church : Sion, Switzerland)" + "authorized_access_point": "France - 1871-1873 (A. Thiers)" } ], + "variant_access_point": [ + "France - 1871 (Commune)" + ], + "md5": "d8f176cd00c880c065a920a201ff4fbb" + }, + { + "authorized_access_point": "P\u00f4le Sud", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027408310", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/030519799", + "value": "http://www.idref.fr/027408310", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12191796h", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11945666g", "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)042499909", - "source": "GND" + "value": "(DE-101)955497434" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/173709059" } ], - "classification": [ - { - "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)", - "type": "bf:ClassificationDdc", - "classificationPortion": "200" - }, + "note": [ { - "name": "Art et science militaires", - "type": "bf:ClassificationDdc", - "classificationPortion": "355" - }, + "noteType": "dataSource", + "label": [ + "Laval RVM, 1983" + ] + } + ], + "pid": "027408310", + "type": "bf:Place", + "broader": [ { - "name": "Architecture", - "type": "bf:ClassificationDdc", - "classificationPortion": "720" + "authorized_access_point": "Antarctique" }, { - "type": "bf:ClassificationDdc", - "classificationPortion": "914" + "authorized_access_point": "R\u00e9gions polaires" } ], - "variant_access_point": [ - "Basilica di Val\u00e8re (Sion, Valais, Suisse)", - "Basilika von Valeria (Sion, Valais, Suisse)", - "Basilique de Val\u00e8re (Sion, Valais, Suisse)", - "Basilique Notre-Dame de Val\u00e8re (Sion, Valais, Suisse)", - "Castello di Val\u00e8re (Sion, Valais, Suisse)", - "Ch\u00e2teau de Val\u00e8re (Sion, Valais, Suisse)", - "\u00c9glise Notre-Dame de Val\u00e8re (Sion, Valais, Suisse)", - "Kirche von Valeria (Sion, Valais, Suisse)", - "Notre-Dame de Val\u00e8re, Basilique (Sion, Valais, Suisse)", - "Schloss Valeria (Sion, Valais, Suisse)", - "Val\u00e8re, Ch\u00e2teau de (Sion, Valais, Suisse)", - "Valeria, Schloss (Sion, Valais, Suisse)" - ], - "authorized_access_point": "Sion (Valais, Suisse) - Ch\u00e2teau de Val\u00e8re" + "md5": "8d22cf32b8f4b3106441462deb75e53a" }, { - "md5": "99ab64574732f58131461a1198b4f22f", - "pid": "030575257", - "note": [ - { - "label": [ - "GDEL. SY 1990/91" - ], - "noteType": "dataSource" - } - ], - "type": "bf:Place", - "broader": [ - { - "authorized_access_point": "Genevois" - }, - { - "authorized_access_point": "Suisse - Cantons" - } - ], + "authorized_access_point": "Polyn\u00e9sie fran\u00e7aise", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027408450", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/030575257", + "value": "http://www.idref.fr/027408450", "source": "IDREF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040201384", - "source": "GND" + "value": "(DE-101)04018191X" }, { + "source": "VIAF", "type": "uri", - "value": "http://d-nb.info/gnd/4020138-7", - "source": "GND" + "value": "http://viaf.org/viaf/148353190" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GLU. BN ACO (2 vedettes). Laval RVM, 1994-08" + ] }, { - "type": "uri", - "value": "http://viaf.org/viaf/159388627", - "source": "VIAF" + "noteType": "general", + "label": [ + "Emploi direct en subdivision : [sujet] -- Polyn\u00e9sie fran\u00e7aise", + "Territoire d'outre-mer fran\u00e7ais, comprenant 5 circonscriptions administratives (\u00celes Australes, \u00eeles-du-Vent, \u00celes-Sous-le-Vent, Marquises, Tuamotu) ; Clipperton y est officiellement rattach\u00e9. De 1885 \u00e0 1957 : \u00c9tablissements fran\u00e7ais de l'Oc\u00e9anie" + ] + } + ], + "pid": "027408450", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Polyn\u00e9sie" + }, + { + "authorized_access_point": "France - Collectivit\u00e9s d'outre-mer" } ], - "authorized_access_point": "Gen\u00e8ve (Suisse ; canton)" + "variant_access_point": [ + "\u00c9tablissements fran\u00e7ais de l'Oc\u00e9anie", + "Oc\u00e9anie fran\u00e7aise" + ], + "md5": "62db27f069d5d315f4f335cdce3b1c36" }, { - "md5": "5199e9499e2664255a30c0ae1c672d9a", - "pid": "031211097", - "type": "bf:Place", + "authorized_access_point": "Venezuela", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027409317", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/031211097", + "value": "http://www.idref.fr/027409317", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12246994q", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119457375", "source": "BNF" }, { - "type": "bf:Nbn", - "value": "(DE-101)040658236", - "source": "GND" + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/1897158188178220260005" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "http://viaf.org/viaf/621144783051845602289", - "source": "VIAF" + "value": "https://fr.wikipedia.org/wiki/Venezuela" } ], - "variant_access_point": [ - "Suisse occidentale" - ], - "authorized_access_point": "Suisse (ouest)" - }, - { - "md5": "4dbf7608bb4207e46fc899dce7473146", - "pid": "031649424", "note": [ { + "noteType": "dataSource", "label": [ - "GeoNames (2018-06-27)" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Aix-la-Chapelle est une ville d'Allemagne situ\u00e9e dans le Land de Rh\u00e9nanie-du-Nord-Westphalie. Elle se situe \u00e0 5 km de la jonction des fronti\u00e8res de l'Allemagne, des Pays-Bas et de la Belgique. C'est la ville la plus \u00e0 l'ouest de l'Allemagne", - "Coordonn\u00e9es en degr\u00e9s s\u00e9xag\u00e9simaux : N 50\u00b046\u203236\u2033 / E 6\u00b005\u203200\u2033" - ], - "noteType": "general" + "Venezuela ; BN Cartes et plans ; BN ACO ; Pays et capitales du monde / IGN, 1986 ; Laval RVM, 1995-02 ; Manuel de l'Unesco, 1985 ; GLU ; Encycl. universalis ; Atlas Le Monde" + ] } ], + "pid": "027409317", "type": "bf:Place", - "broader": [ + "narrower": [ { - "authorized_access_point": "Rh\u00e9nanie du Nord-Westphalie (Allemagne)" + "authorized_access_point": "Amazonie (Venezuela)" } ], + "md5": "5a0946be08cf0ba67c09811fb05d9056" + }, + { + "authorized_access_point": "Winterthour (Suisse)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027418499", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/031649424", + "value": "http://www.idref.fr/027418499", "source": "IDREF" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12282480h", - "source": "BNF" + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04066337X" }, { - "type": "bf:Nbn", - "value": "(DE-101)040000079", - "source": "GND" + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/676148574297124430002" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "http://viaf.org/viaf/124330404", - "source": "VIAF" + "value": "https://fr.wikipedia.org/wiki/Winterthour" } ], - "relation_pid": { - "type": "redirect_from", - "value": "228265843" - }, - "variant_access_point": [ - "Aachen", - "Aken", - "Akwizgran", - "Aquisgr\u00e1n", - "Aquisgrano" - ], - "authorized_access_point": "Aix-la-Chapelle (Allemagne ; r\u00e9gion)" - }, - { - "md5": "3b235193ed1de3a125dae22d380760e5", - "pid": "032861621", "note": [ { + "noteType": "dataSource", "label": [ - "GLU. \u00d6sterreich-Ungarn ; SWD, 1991" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Sous cette vedette, on trouve les ouvrages qui traitent de l'ensemble de l'Autriche-Hongrie (1867-1918). Les ouvrages qui traitent plus particuli\u00e8rement des parties autrichienne et hongroise de l'empire se trouvent sous les vedettes Autriche et Hongrie (suivies des subdivisions appropri\u00e9es)" - ], - "noteType": "general" + "GDEL" + ] } ], + "pid": "027418499", "type": "bf:Place", - "broader": [ - { - "authorized_access_point": "Europe du Centre-Est" - } + "variant_access_point": [ + "Winterthur (Suisse)", + "Vitudurum (ville ancienne)" ], + "md5": "0a50639a07d2d6dffa3c177e71664aaf" + }, + { + "authorized_access_point": "Beaufort (Savoie)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027427374", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/032861621", + "value": "http://www.idref.fr/027427374", "source": "IDREF" }, { + "source": "VIAF", "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb123809301", - "source": "BNF" - }, - { - "type": "bf:Nbn", - "value": "(DE-101)040756130", - "source": "GND" + "value": "http://viaf.org/viaf/152886958" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "http://viaf.org/viaf/38146285364515371330", - "source": "VIAF" + "value": "https://fr.wikipedia.org/wiki/Beaufort_(Savoie)" } ], - "variant_access_point": [ - "Austro-hongroise, Monarchie", - "Double Monarchie", - "Empire austro-hongrois", - "Monarchie austro-hongroise", - "\u00f6sterreich-Ungarn", - "Osztr\u00e1k-Magyar Mon\u00e1rchia" - ], - "authorized_access_point": "Autriche-Hongrie" - }, - { - "md5": "67f897d5271f5daa9e5b9446f23c9c0c", - "pid": "033640874", "note": [ { + "noteType": "dataSource", "label": [ - "GDEL" - ], - "noteType": "dataSource" + "Dict. communes, 1971" + ] } ], + "pid": "027427374", "type": "bf:Place", + "variant_access_point": [ + "Beaufort-sur-Doron (Savoie)" + ], + "md5": "f85358eb39c4bbaf60800ddf66040f92" + }, + { + "authorized_access_point": "Antilles, Mer des", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027428095", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/033640874", + "value": "http://www.idref.fr/027428095", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12448796p", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11947172h", "source": "BNF" }, { - "type": "uri", - "value": "http://d-nb.info/gnd/4041747-5", - "source": "GND" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040417476", - "source": "GND" + "value": "(DE-101)040296679" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/304911054", - "source": "VIAF" - }, + "value": "http://viaf.org/viaf/1967148574385124430009" + } + ], + "note": [ { - "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Lac_de_Neuch\u00e2tel", - "source": "WIKIPEDIA" + "noteType": "dataSource", + "label": [ + "GLU. Laval RVM, 1994-02" + ] + } + ], + "pid": "027428095", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Atlantique (oc\u00e9an ; nord)" } ], "variant_access_point": [ - "Neuch\u00e2tel, Lac (Neuch\u00e2tel, Suisse)", - "Neuenburg, Lac (Neuch\u00e2tel, Suisse)" + "Cara\u00efbe, Mer", + "Cara\u00efbes, Mer des" ], - "authorized_access_point": "Neuch\u00e2tel, Lac de (Neuch\u00e2tel, Suisse)" + "md5": "0ea9274dc223fa88b9c239b38c2b4b21" }, { - "md5": "2fe3d5f7f01ab0d90093ad45bb31c3e4", - "pid": "055302149", - "note": [ - { - "label": [ - "Cervin (mont) ; GLU", - "Cervin (Suisse et Italie) ; Laval RVM, 2000-01" - ], - "noteType": "dataSource" - }, + "authorized_access_point": "Comtat Venaissin (Vaucluse)", + "bnf_type": "sujet Rameau", + "classification": [ { - "label": [ - "Sommet des Alpes Pennines, \u00e0 la fronti\u00e8re italo-suisse (4478 m.)" - ], - "noteType": "general" + "type": "bf:ClassificationDdc", + "classificationPortion": "912", + "name": "G\u00e9ographie de la France" } ], - "type": "bf:Place", - "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027428672", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/055302149", + "value": "http://www.idref.fr/027428672", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb152909205", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119472180", "source": "BNF" }, { + "source": "VIAF", "type": "uri", - "value": "http://d-nb.info/gnd/4037992-9", - "source": "GND" - }, - { - "type": "bf:Nbn", - "value": "(DE-101)040379922", - "source": "GND" + "value": "http://viaf.org/viaf/133732676" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "http://viaf.org/viaf/170262409", - "source": "VIAF" + "value": "https://fr.wikipedia.org/wiki/Comtat_Venaissin" } ], - "variant_access_point": [ - "Cervino, Monte", - "Matterhorn (mont)" - ], - "authorized_access_point": "Cervin, Mont" - }, - { - "md5": "d7312c3254f0c2d94178edbebd7069f0", - "pid": "071586709", "note": [ { + "noteType": "dataSource", "label": [ "Grand Larousse universel", - "Robert encyclop\u00e9dique des noms propres 2008", - "Encycl. universalis - http://www.universalis-edu.com (2011-10-24)", - "Wikip\u00e9dia - http://fr.wikipedia.org (2011-10-24)" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Capitale de la Lombardie" - ], - "noteType": "general" + "Robert encyclop\u00e9dique des noms propres, 2008", + "Dict. de g\u00e9ographie historique de la Gaule et de la France / J. Moreau, 1972", + "Dict. encyclop\u00e9dique d'histoire / M. Mourre, 1996", + "Tr\u00e9sor des r\u00e9gions de France - http://tresordesregions.mgm.fr (2008-12-19)", + "Robert encyclop\u00e9dique des noms propres, 2008" + ] }, { + "noteType": "general", "label": [ - "Voir aussi la subdivision Et Milan [sans subd. g\u00e9ogr.] aux collectivit\u00e9s et aux personnes" - ], - "noteType": "seeReference" + "Comt\u00e9 qui appartint \u00e0 la Papaut\u00e9 (1274-1790), couvrant l'actuel Vaucluse (sauf la partie sud-orientale de celui-ci). Capitale : Carpentras" + ] } ], + "pid": "027428672", "type": "bf:Place", + "related": [ + { + "authorized_access_point": "Mur de la peste (France)" + } + ], + "broader": [ + { + "authorized_access_point": "Vaucluse (France)" + } + ], + "variant_access_point": [ + "Comtat Venaissin", + "Comtat-Venaissin", + "Venaissin (comtat)", + "Comtat (Vaucluse)", + "Coumtat (Vaucluse)", + "Venaissin, Comtat (Vaucluse)" + ], + "md5": "e02280189fec02cb019190bd88a55153" + }, + { + "authorized_access_point": "Estonie", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027429393", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/071586709", + "value": "http://www.idref.fr/027429393", "source": "IDREF" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11936471j", - "source": "BNF" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)04037100X", - "source": "GND" + "value": "(DE-101)040155870" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/112144814525470906849", - "source": "VIAF" - }, + "value": "http://viaf.org/viaf/2916148574347324430000" + } + ], + "note": [ { - "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Mediolanum", - "source": "WIKIPEDIA" + "noteType": "dataSource", + "label": [ + "GLU. Berthelot (Ehstonie ou Esthonie)", + "Laval RVM, 1994-08" + ] } ], - "relation_pid": { - "type": "redirect_from", - "value": "181631121" - }, - "classification": [ + "pid": "027429393", + "type": "bf:Place", + "broader": [ { - "name": "G\u00e9ographie de l'Europe", - "type": "bf:ClassificationDdc", - "classificationPortion": "914" + "authorized_access_point": "Pays baltes" } ], "variant_access_point": [ - "Mediolanum (ville ancienne)", - "Milan", - "Milano (Italie)" + "Eesti", + "Ehstonie", + "Esthonie" ], - "authorized_access_point": "Milan (Italie)" + "md5": "877b3c46c4e3ccf8a06c1d8481ed2d79" }, { - "md5": "2eb5d1f6dfc499429a1f2c6822c6bc02", - "pid": "085560839", - "note": [ - { - "label": [ - "GDEL" - ], - "noteType": "dataSource" - } - ], - "type": "bf:Place", + "authorized_access_point": "Jura (massif)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027434125", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/085560839", + "value": "http://www.idref.fr/027434125", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb121645931", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119476392", "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040804003", - "source": "GND" + "value": "(DE-101)040731294" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/30144647638547014341", - "source": "VIAF" + "value": "http://viaf.org/viaf/198144782989882286451" } ], - "variant_access_point": [ - "Biel (Suisse)" - ], - "authorized_access_point": "Bienne (Suisse)" - }, - { - "md5": "9aded22e21b9e41baf1174e7610eeca2", - "pid": "085703419", "note": [ { + "noteType": "dataSource", "label": [ - "GDEL" - ], - "noteType": "dataSource" + "GDEL. Jura Mountains (France and Switzerland) ; LCSH, 1989-09. Jura ; Laval RVM, 1989-06" + ] } ], + "pid": "027434125", "type": "bf:Place", + "narrower": [ + { + "authorized_access_point": "Jura (France ; massif)" + }, + { + "authorized_access_point": "Jura (Suisse ; massif)" + } + ], + "variant_access_point": [ + "Jura", + "Jura (cha\u00eene)" + ], + "md5": "c1ed917ae263868572f954376df019f2" + }, + { + "authorized_access_point": "Lituanie", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027434648", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/085703419", + "value": "http://www.idref.fr/027434648", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb14475513s", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11947680h", "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040201392", - "source": "GND" + "value": "(DE-101)040742660" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/55144647634843459675", - "source": "VIAF" + "value": "http://viaf.org/viaf/888148574256624430002" } ], - "classification": [ + "note": [ { - "name": "G\u00e9ographie de l'Europe", - "type": "bf:ClassificationDdc", - "classificationPortion": "914" + "noteType": "dataSource", + "label": [ + "GLU. Laval RVM, 1994-08" + ] + } + ], + "pid": "027434648", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Pays baltes" } ], - "authorized_access_point": "Gen\u00e8ve (Suisse ; r\u00e9gion)" + "variant_access_point": [ + "Lietuva", + "Lithuanie" + ], + "md5": "79998087f8a11ca93fc5f508c7b281b1" }, { - "md5": "4d85ab7f707fb93cd4009f8108496b13", - "pid": "097857300", - "note": [ + "authorized_access_point": "Singapour", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027436810", + "identifiedBy": [ { - "label": [ - "Grand Larousse universel", - "Dict. de g\u00e9opolitique / dir. Y. Lacoste, 1993", - "Laval RVM (en ligne), 2006-01-23" - ], - "noteType": "dataSource" + "type": "uri", + "value": "http://www.idref.fr/027436810", + "source": "IDREF" }, { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040550893" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/15145376341283720567" + } + ], + "note": [ + { + "noteType": "dataSource", "label": [ - "Sous cette vedette on trouve les documents qui traitent de l'Occident selon les diff\u00e9rents sens du mot au cours de l'histoire, par opposition \u00e0 diff\u00e9rents Orients : par ex. Occident latin / Orient grec, Occident catholique / Orient orthodoxe, Chr\u00e9tient\u00e9 / Islam et Asie, pays occidentaux / pays socialistes, etc" - ], - "noteType": "general" + "Names of states / IFLA, 1981" + ] }, { + "noteType": "general", "label": [ - "Voir aussi la subdivision Et l'Occident aux collectivit\u00e9s (\u00e0 l'exception des types de collectivit\u00e9s) et aux personnes" - ], - "noteType": "seeReference" + "Vedette commune \u00e0 la ville et \u00e0 l'\u00c9tat" + ] } ], + "pid": "027436810", "type": "bf:Place", + "variant_access_point": [ + "Singapore", + "Singapura" + ], + "md5": "59b5758965dd6641788fc5a53479fe7c" + }, + { + "authorized_access_point": "Slovaquie", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027436837", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/097857300", + "value": "http://www.idref.fr/027436837", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb150357447", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11947852t", "source": "BNF" }, { - "type": "uri", - "value": "http://d-nb.info/gnd/4079237-7", - "source": "GND" + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040552977" }, { - "type": "bf:Nbn", - "value": "(DE-101)040792374", - "source": "GND" + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/154427228" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "http://viaf.org/viaf/66145602566901361640", - "source": "VIAF" + "value": "https://fr.wikipedia.org/wiki/Slovaquie" } ], - "classification": [ + "note": [ + { + "noteType": "dataSource", + "label": [ + "GLU. Le Monde, 1-1-1993", + "SY, 1987-88, 1993-94" + ] + }, + { + "noteType": "general", + "label": [ + "R\u00e9publique f\u00e9d\u00e9r\u00e9e de Tch\u00e9coslovaquie de 1968 \u00e0 1992, Etat ind\u00e9pendant depuis le 1er janvier 1993 ; capitale Bratislava" + ] + } + ], + "pid": "027436837", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Europe centrale" + } + ], + "relation_pid": { + "value": "066869196", + "type": "redirect_from" + }, + "variant_access_point": [ + "R\u00e9publique socialiste slovaque", + "Slovensko", + "Szlov\u00e1kia", + "R\u00e9publique slovaque", + "Slovensk\u00e1 Republika" + ], + "md5": "3b015b938916bd4ff4ed15023376fc15" + }, + { + "authorized_access_point": "G\u00e9orgie", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027439658", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027439658", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb116643727", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040224066" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/316601102" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GLU" + ] + } + ], + "pid": "027439658", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Pays de la CEI" + }, + { + "authorized_access_point": "Transcaucasie" + } + ], + "variant_access_point": [ + "G\u00e9orgie (R\u00e9publique)", + "G\u00e9orgie (Transcaucasie)", + "Grouzia", + "Sakartv\u00e9lo", + "Gruzja", + "\u0413\u0440\u0443\u0437\u0438\u044f", + "Gruzi\u00e2", + "\u0413\u0440\u0443\u0437\u0438\u043d\u0441\u043a\u0430\u044f \u0421\u043e\u0432\u0435\u0442\u0441\u043a\u0430\u044f \u0421\u043e\u0446\u0438\u0430\u043b\u0438\u0441\u0442\u0438\u0447\u0435\u0441\u043a\u0430\u044f \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430", + "Gruzinska\u00e2 Sovetska\u00e2 Socialisti\u010deska\u00e2 Respublika", + "\u0413\u0440\u0443\u0437\u0438\u043d\u0441\u043a\u0430\u044f \u0421\u0421\u0420", + "Gruzinska\u00e2 SSR" + ], + "md5": "77dbaaf2d3d94c011f0d86627c3b2b8e" + }, + { + "authorized_access_point": "Rwanda", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027442128", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027442128", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040769100" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/3125148574307124430008" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "IFLA, Names of states, 1981. Pays et capitales du monde / IGN, 1986. Laval RVM, 1995-02" + ] + }, + { + "noteType": "general", + "label": [ + "Sous cette vedette on trouve les ouvrages qui traitent du territoire du Rwanda, avant ou depuis son ind\u00e9pendance en 1962. Les ouvrages sur le Ruanda-Urundi, qui comprenait \u00e0 l'\u00e9poque coloniale le territoire des actuels Rwanda et Burundi, se trouvent sous la vedette Ruanda-Urundi" + ] + } + ], + "pid": "027442128", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Afrique centrale" + } + ], + "variant_access_point": [ + "Ruanda" + ], + "md5": "388c80fa7229f04a8883159e39e95556" + }, + { + "authorized_access_point": "Tanzanie", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027442381", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027442381", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11948282b", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040781496" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/1972148574302324430007" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "IFLA, Names of states, 1981. SY, 1990/19991" + ] + }, + { + "noteType": "general", + "label": [ + "Protectorat allemand en 1891, territoire sous mandat britannique en 1920, \u00c9tat ind\u00e9pendant le 09-12-1961, le Tanganyika s'unit \u00e0 Zanzibar et Pemba le 26-4-1964 pour former la R\u00e9publique unie du Tanganyika et de Zanzibar qui prend le nom de Tanzanie le 29-10-1964. Capitale Dodoma" + ] + } + ], + "pid": "027442381", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Afrique orientale anglophone" + } + ], + "variant_access_point": [ + "R\u00e9publique-Unie de Tanzanie", + "Tanganyika", + "Tanzania", + "Tanzanie continentale" + ], + "md5": "f3b15aa4d9dc848b97a053be2eb2d477" + }, + { + "authorized_access_point": "Tchad", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027442454", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027442454", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040610748" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/2941148574389024430003" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "IFLA, Names of states, 1981" + ] + } + ], + "pid": "027442454", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Afrique centrale" + } + ], + "md5": "ddfc8b2a4998a523dbbe68a746b9bfb0" + }, + { + "authorized_access_point": "Tch\u00e9coslovaquie", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027442462", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027442462", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11948289r", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040784355" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/173418642" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "IFLA, Names of states, 1981. Monde, 1-1-1993. Laval RVM, 1995-02" + ] + }, + { + "noteType": "general", + "label": [ + "Fond\u00e9e le 14 novembre 1918, la Tch\u00e9coslovaquie se scinde le 1er janvier 1993 en R\u00e9publique tch\u00e8que et Slovaquie" + ] + }, + { + "noteType": "seeReference", + "label": [ + "Voir aussi la subdivision Et la Tch\u00e9coslovaquie aux personnes et collectivit\u00e9s" + ] + } + ], + "pid": "027442462", + "type": "bf:Place", + "variant_access_point": [ + "\u010ceskoslovensko" + ], + "md5": "dbc4fc88fc4e4254cadefad512cd1093" + }, + { + "authorized_access_point": "Bavi\u00e8re (Allemagne)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027443876", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027443876", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040050440" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/125426357" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Bavi\u00e8re" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GLU. Brockhaus, 19. Aufl.", + "Laval RVM, 2000-01. Bayern ; GKD, 1994-05. SWD, 1995-04" + ] + }, + { + "noteType": "general", + "label": [ + "Duch\u00e9 puis \u00e9lectorat (1623), royaume (1806), et l'un des dix cercles du Saint Empire. L'\u00c9tat libre de Bavi\u00e8re (capitale : Munich) comprend 7 Regierungsbezirke" + ] + } + ], + "pid": "027443876", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Allemagne - L\u00e4nder" + }, + { + "authorized_access_point": "Allemagne (sud)" + } + ], + "variant_access_point": [ + "Bavaria", + "Bavi\u00e8re", + "Bavi\u00e8re (Duch\u00e9)", + "Bavi\u00e8re (\u00c9lectorat)", + "Bavi\u00e8re (Royaume)", + "Bayerischer Kreis (Saint Empire romain germanique)", + "Bayern (Allemagne)", + "Freistaat Bayern", + "Bayerischer Reichskreis" + ], + "md5": "e971545eccdfecc5648af5d4a6a6fd6c" + }, + { + "authorized_access_point": "Haguenau (Bas-Rhin)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/02744628X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/02744628X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://ark.bnf.fr/ark:/12148/cb11948590s", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/8409148574328624430005" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. communes, 1992. GDEL" + ] + } + ], + "pid": "02744628X", + "type": "bf:Place", + "md5": "952658a9c0aec444340350f2d50596a6" + }, + { + "authorized_access_point": "Versailles (Yvelines) - Ch\u00e2teau", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "720", + "name": "Architecture" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "912", + "name": "G\u00e9ographie de la France" + } + ], + "identifier": "http://www.idref.fr/027448177", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027448177", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119487267", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041944313" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Grand Larousse universel", + "Robert encyclop\u00e9dique des noms propres 2008", + "Wikip\u00e9dia - http://fr.wikipedia.org (2011-10-19)", + "Encycl. universalis - http://www.universalis.fr (2011-10-19)", + "Versailles : ch\u00e2teau de la France et orgueil des rois / C. Constans, 1989", + "Ch\u00e2teau de Versailles - http://www.chateauversailles.fr (2011-10-19)" + ] + }, + { + "noteType": "general", + "label": [ + "Ch\u00e2teau construit pour Louis XIII, puis agrandi \u00e0 partir de 1661 par Louis Le Vau puis Jules-Hardouin Mansart. Le roi et la cour y r\u00e9sid\u00e8rent de 1682 \u00e0 1789" + ] + } + ], + "pid": "027448177", + "type": "bf:Place", + "related": [ + { + "authorized_access_point": "France - Journ\u00e9es des 5 et 6 octobre 1789" + } + ], + "narrower": [ + { + "authorized_access_point": "Versailles (Yvelines) - Ch\u00e2teau - Aile du Midi" + }, + { + "authorized_access_point": "Versailles (Yvelines) - Ch\u00e2teau - Aile du Nord" + }, + { + "authorized_access_point": "Versailles (Yvelines) - Ch\u00e2teau - Ailes des Ministres" + }, + { + "authorized_access_point": "Versailles (Yvelines) - Ch\u00e2teau - Corps central" + }, + { + "authorized_access_point": "Versailles (Yvelines) - Ch\u00e2teau - \u00c9curies royales" + }, + { + "authorized_access_point": "Versailles (Yvelines) - Ch\u00e2teau - Galerie des Glaces" + }, + { + "authorized_access_point": "Versailles (Yvelines) - Ch\u00e2teau - R\u00e9servoirs" + }, + { + "authorized_access_point": "Versailles (Yvelines) - Ch\u00e2teau - Salle du Conseil priv\u00e9" + }, + { + "authorized_access_point": "Versailles (Yvelines) - Ch\u00e2teau - Salon de Mercure" + } + ], + "variant_access_point": [ + "Ch\u00e2teau de Versailles (Versailles, Yvelines)" + ], + "md5": "e57531b7bcc236787fd3ae4705be90be" + }, + { + "authorized_access_point": "\u00c9g\u00e9e, Mer", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/02745228X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/02745228X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11949030s", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040684253" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/255146259" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Mer_\u00c9g\u00e9e" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GLU. Laval RVM, 1995-02" + ] + } + ], + "pid": "02745228X", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "M\u00e9diterran\u00e9e (mer ; est)" + } + ], + "variant_access_point": [ + "Aigaion Pelagos", + "Aiyaion Pelagos", + "Ege Denizi" + ], + "md5": "aba7a79a200fe2da5fb91e78086af08d" + }, + { + "authorized_access_point": "Rhin (cours d'eau)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027452816", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027452816", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11949068g", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040497399" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/259663544" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Rhin" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GLU" + ] + } + ], + "pid": "027452816", + "type": "bf:Place", + "variant_access_point": [ + "Rhein (cours d'eau)", + "Rhenus (cours d'eau)", + "Rhin", + "Rijn (cours d'eau)" + ], + "md5": "8d441cc3c2aa2c2d8a45d8e16d14c50a" + }, + { + "authorized_access_point": "Ta\u00efwan", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027463613", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027463613", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/207148632961830630000" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Taiwan ; LCSH, 1987-09 et LCSCM : H 925 ; Laval RVM suppl., 1987-09 ; Pays et capitales du Monde / IGN, 1986 ; GDEL ; Encycl. universalis, t.17 p.650 ; Atlas Le Monde ; BN Cartes et plans. Chine (R\u00e9publique) ; BN ACO ; China (Republic, 1949- ) ; LCNA, 1985" + ] + }, + { + "noteType": "general", + "label": [ + "Sous cette vedette on trouve les ouvrages qui traitent de l'\u00eele de Taiwan et/ou de la R\u00e9publique de Chine ; en pr\u00e9cision g\u00e9ographique, employer la forme (Taiwan), par ex. Gaoxiong (Taiwan). Les ouvrages sur les organismes administratifs centraux de la R\u00e9publique et du Gouvernement provincial se trouvent respectivement sous les vedettes Chine (R\u00e9publique) et Taiwan (Province) suivies de la sous-vedette appropri\u00e9e, par ex. Chine (R\u00e9publique). Overseas Chinese Affairs Commission ; Taiwan (Province). Department of Information" + ] + } + ], + "pid": "027463613", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Asie orientale" + } + ], + "variant_access_point": [ + "Chine (R\u00e9publique)", + "Chine nationaliste", + "Formose", + "T'aiwan", + "\u53f0\u6e7e", + "\u53f0\u7063", + "\u81fa\u7063", + "Taiwan" + ], + "md5": "e104ae04968b9a160410996295bf4b05" + }, + { + "authorized_access_point": "\u00cele-de-France (France)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027464180", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027464180", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11949941x", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040265382" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/150105086" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL" + ] + }, + { + "noteType": "general", + "label": [ + "Sous cette vedette, on trouve les ouvrages qui traitent de l'ancienne province et/ou de l'actuelle r\u00e9gion d'\u00cele-de-France" + ] + } + ], + "pid": "027464180", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "France (centre)" + }, + { + "authorized_access_point": "France - R\u00e9gions" + } + ], + "related": [ + { + "authorized_access_point": "Seine, Vall\u00e9e moyenne de la (France)" + } + ], + "variant_access_point": [ + "\u00cele-de-France", + "\u00cele de France", + "Paris (France ; r\u00e9gion)", + "Parisienne, R\u00e9gion (France)", + "R\u00e9gion parisienne (France)" + ], + "md5": "79e7eb61e64f6fc222d94dbcf581caa5" + }, + { + "authorized_access_point": "Italie (nord)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027464512", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027464512", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11949964k", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "Italie (nord)" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/173636567" + } + ], + "pid": "027464512", + "type": "bf:Place", + "variant_access_point": [ + "Italie du Nord" + ], + "md5": "43390788ca85252e4046411737e44aa1" + }, + { + "authorized_access_point": "Saint-Gall (Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027465012", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027465012", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04051594X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04051594X" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/9591148574375024430008" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL" + ] + } + ], + "pid": "027465012", + "type": "bf:Place", + "variant_access_point": [ + "Sankt Gallen (Suisse)", + "St. Gallen (Suisse)", + "St.Gallen (Suisse)", + "St Gall (Suisse)", + "Saint Gall (Suisse)", + "Saint-Gall (Suisse)", + "Sankt-Gallen (Suisse)" + ], + "md5": "cc4bfa2fb7d8e7653927ce19dbe160a1" + }, + { + "authorized_access_point": "Empire byzantin", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027472906", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027472906", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040092569" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/149804778" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Empire_byzantin" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. Laval RVM, 1991-02" + ] + }, + { + "noteType": "general", + "label": [ + "Sous cette vedette on trouve les ouvrages qui traitent de l'empire byzantin, de 395 \u00e0 1453. Les ouvrages qui traitent de la ville de Byzance avant 330 se trouvent sous la vedette Byzance" + ] + } + ], + "pid": "027472906", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Orient" + } + ], + "variant_access_point": [ + "Byzantin, Empire", + "Empire d'Orient", + "Empire romain d'Orient", + "Orient, Empire d'" + ], + "md5": "46bf3626d7e4962daa31bb002f1f8172" + }, + { + "authorized_access_point": "Pays industrialis\u00e9s", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "330", + "name": "\u00c9conomie politique" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "910", + "name": "G\u00e9ographie" + } + ], + "identifier": "http://www.idref.fr/027479056", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027479056", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119510302", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04026840" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/172385834" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Eurovoc thesaurus, 1987", + "Lexique d'\u00e9conomie Dalloz, 2002" + ] + }, + { + "noteType": "general", + "label": [ + "Cette expression d\u00e9signe les pays particuli\u00e8rement avanc\u00e9s dans les domaines des capacit\u00e9s industrielles, de la productivit\u00e9 \u00e9conomique et de la sophistication technologique" + ] + } + ], + "pid": "027479056", + "type": "bf:Place", + "related": [ + { + "authorized_access_point": "Occident" + } + ], + "narrower": [ + { + "authorized_access_point": "Nouveaux pays industrialis\u00e9s" + }, + { + "authorized_access_point": "Pays de l'OCDE" + } + ], + "variant_access_point": [ + "Pays d\u00e9velopp\u00e9s", + "Pays \u00e9conomiquement d\u00e9velopp\u00e9s", + "Pays industriels", + "Pays riches" + ], + "md5": "ea56b712faa702fdd72ffa5619000428" + }, + { + "authorized_access_point": "Cisjordanie", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027482928", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027482928", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040657418" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/155352830" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. West Bank ; LCSH, 1985" + ] + }, + { + "noteType": "general", + "label": [ + "Cette vedette s'emploie directement en subdivision de lieu. Les localit\u00e9s de Cisjordanie sont localis\u00e9es \u00e0 (Cisjordanie), et en subdivision suivent la construction indirecte : -- Cisjordanie -- Nom de lieu", + "Partie de la Palestine annex\u00e9e par la Jordanie (24-04-1950) et occup\u00e9e par Israe\u034f\u0308l depuis juin 1967" + ] + } + ], + "pid": "027482928", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Palestine" + } + ], + "variant_access_point": [ + "Jud\u00e9e et Samarie" + ], + "md5": "c60f301f36962e6a23bde50498857a74" + }, + { + "authorized_access_point": "Constance, Lac de", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027483169", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027483169", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb152986119", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04007403X" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/8145602486301362470" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Lac_de_Constance" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL" + ] + } + ], + "pid": "027483169", + "type": "bf:Place", + "variant_access_point": [ + "Bodensee (lac)", + "Lac de Constance" + ], + "md5": "8041beddaf8fe3ef62b16052b0336370" + }, + { + "authorized_access_point": "Croatie", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027483304", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027483304", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040738418" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/8072148574327224430003" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GLU" + ] + } + ], + "pid": "027483304", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Europe centrale" + } + ], + "variant_access_point": [ + "Hrvatska", + "\u0425\u0440\u0432\u0430\u0442\u0441\u043a\u0430", + "Hrvatska" + ], + "md5": "6a8eecd5ef17607cd502e17636bcc731" + }, + { + "authorized_access_point": "Dombes (France ; sud)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/02748355X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/02748355X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12503056n", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/109144648552106101862" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Dombes" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL" + ] + } + ], + "pid": "02748355X", + "type": "bf:Place", + "variant_access_point": [ + "C\u00f4ti\u00e8re de Dombes" + ], + "md5": "af927d2307827772303c55f71888690d" + }, + { + "authorized_access_point": "Ha\u00efti", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027484319", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027484319", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040229742" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/462154387165030970008" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Names of states / IFLA, 1981" + ] + } + ], + "pid": "027484319", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Ha\u00efti (\u00eele)" + } + ], + "md5": "55bf00e18a3e1db4ccf0c07edbd79916" + }, + { + "authorized_access_point": "Ligurie (Italie ; r\u00e9gion)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/02748498X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/02748498X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb14643876r", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040357198" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/164861616" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL" + ] + } + ], + "pid": "02748498X", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Italie (nord)" + }, + { + "authorized_access_point": "Italie - R\u00e9gions" + } + ], + "variant_access_point": [ + "Liguria (Italie)" + ], + "md5": "8a30413000f2d5981824b7c01eb1faf2" + }, + { + "authorized_access_point": "Ombrie (Italie)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027485552", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027485552", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040615812" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/154755801" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL" + ] + } + ], + "pid": "027485552", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Italie (centre)" + }, + { + "authorized_access_point": "Italie - R\u00e9gions" + } + ], + "variant_access_point": [ + "Umbria (Italie)" + ], + "md5": "74848f02327e6f13f31d38f50024c2bb" + }, + { + "authorized_access_point": "Ad\u00e9lie, Terre (Antarctique)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027486354", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027486354", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11951563d", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042596270" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/2863147270504335700004" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Terre_Ad\u00e9lie" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GLU, 1991", + "Laval RVM, 1996-08" + ] + } + ], + "pid": "027486354", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Antarctique" + }, + { + "authorized_access_point": "Terres australes et antarctiques fran\u00e7aises" + } + ], + "variant_access_point": [ + "Terre Ad\u00e9lie (Antarctique)" + ], + "md5": "59f0c292a65754a04fe2efa5037bd8b3" + }, + { + "authorized_access_point": "Nouvelle-Cal\u00e9donie", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027491099", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027491099", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041024982" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/2506148574304424430002" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GLU", + "\"Le bois anc\u00eatre\" : arbres, for\u00eats et occupation kanak pr\u00e9coloniale sur la Grande Terre de Nouvelle-Cal\u00e9donie : \u00e9tude de cas et approche anthracologique dans la vall\u00e9e de la Tiwaka (Nord Est) / \u00c9milie Dotte-Sarout, 2010", + "Les rapports des 9 ateliers du diagnostic : Nouvelle-Cal\u00e9donie 2025, sch\u00e9ma d'am\u00e9nagement et de d\u00e9veloppement de la Nouvelle-Cal\u00e9donie / Haut-commissariat de la R\u00e9publique en Nouvelle-Cal\u00e9donie ; Gouvernement de la Nouvelle-Cal\u00e9donie. - Noum\u00e9a : Gouvernement de la Nouvelle-Cal\u00e9donie, 2009" + ] + }, + { + "noteType": "general", + "label": [ + "Sous cette vedette on trouve les ouvrages qui traitent de l'archipel de la Nouvelle-Cal\u00e9donie (Grande Terre, Loyaut\u00e9, Belep, \u00cele des Pins, etc) ou de la seule Grande-Terre", + "Emploi direct en subdivision : [Sujet] -- Nouvelle-Cal\u00e9donie" + ] + } + ], + "pid": "027491099", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "France - Collectivit\u00e9s d'outre-mer" + }, + { + "authorized_access_point": "M\u00e9lan\u00e9sie" + }, + { + "authorized_access_point": "Pacifique, \u00celes du" + } + ], + "relation_pid": { + "value": "163936250", + "type": "redirect_from" + }, + "variant_access_point": [ + "Grande-Terre (Nouvelle-Cal\u00e9donie)", + "Kanaky", + "Nouvelle-Cal\u00e9donie et D\u00e9pendances" + ], + "md5": "cdda416d62d20ce4ef93a621634d0d36" + }, + { + "authorized_access_point": "Gibraltar", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027492753", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027492753", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb14011467j", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/125501644" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Gibraltar" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. LCSH, 1985" + ] + }, + { + "noteType": "general", + "label": [ + "Cette vedette s'emploie directement en subdivision de lieu" + ] + } + ], + "pid": "027492753", + "type": "bf:Place", + "md5": "b38be6f7e0ec587194976b9c8e6d799b" + }, + { + "authorized_access_point": "Albanie", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027501302", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027501302", + "source": "IDREF" + }, + { + "type": "uri", + "value": "https://catalogue.bnf.fr/ark:/12148/cb11952716p", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040010287" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/8663159248210104870006" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Names of states / IFLA, 1981", + "wikipedia.org, 2019-07-25" + ] + } + ], + "pid": "027501302", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Balkans" + } + ], + "variant_access_point": [ + "Shqipe\u034f\u0308ri", + "Shqip\u00ebria", + "Arbri", + "Arb\u00ebria", + "Republika e Shqip\u00ebris\u00eb" + ], + "md5": "65ed7e698d80e0d6d24c8ffc755ce852" + }, + { + "authorized_access_point": "Caucase", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027501418", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027501418", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040300900" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/172982363" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL" + ] + }, + { + "noteType": "general", + "label": [ + "Sous cette vedette on trouve les ouvrages qui traitent de la Ciscaucasie (versant nord du Grand Caucase) et de la Transcaucasie (versant sud du Grand Caucase, d\u00e9pression Rion-Koura et Petit Caucase)" + ] + } + ], + "pid": "027501418", + "type": "bf:Place", + "narrower": [ + { + "authorized_access_point": "Grand Caucase (monts)" + }, + { + "authorized_access_point": "Petit Caucase (monts)" + }, + { + "authorized_access_point": "Transcaucasie" + } + ], + "variant_access_point": [ + "Caucasie", + "Kavkaz" + ], + "md5": "1ab065708601c70d2bc7833f4073823b" + }, + { + "authorized_access_point": "Asie orientale", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027502333", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027502333", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119528028", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040757277" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/172332114" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GLU (art. Extr\u00eame-Orient)", + "Extr\u00eame-Orient ; Laval RVM, 1998-07" + ] + }, + { + "noteType": "general", + "label": [ + "Sous cette vedette on trouve les ouvrages qui traitent de la partie de l'Asie comprenant la Chine, la Cor\u00e9e, le Japon, la Sib\u00e9rie orientale, l'Indochine et l'Insulinde" + ] + } + ], + "pid": "027502333", + "type": "bf:Place", + "narrower": [ + { + "authorized_access_point": "Asie du Nord-Est" + }, + { + "authorized_access_point": "Asie du Sud-Est" + }, + { + "authorized_access_point": "Chine" + }, + { + "authorized_access_point": "Cor\u00e9e" + }, + { + "authorized_access_point": "Japon" + }, + { + "authorized_access_point": "Pacifique, C\u00f4te du (Asie)" + }, + { + "authorized_access_point": "Sib\u00e9rie (Russie ; est)" + }, + { + "authorized_access_point": "Ta\u00efwan" + } + ], + "variant_access_point": [ + "Asie (est)", + "Asie de l'Est", + "Asie-Pacifique, R\u00e9gion", + "Extr\u00eame-Orient", + "Orient, Extr\u00eame-" + ], + "md5": "ca87cd42cd4cf474996fc049877519ee" + }, + { + "authorized_access_point": "Asie du Sud-Est", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027502368", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027502368", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040584488" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/255510483" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Asie_du_Sud-Est" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GLU", + "Laval RVM, 2001-01" + ] + }, + { + "noteType": "general", + "label": [ + "Sous cette vedette on trouve les documents qui traitent de la partie de l'Asie situ\u00e9e \u00e0 l'est de l'Inde et au sud de la Chine, comprenant l'Indochine (Birmanie, Cambodge, Laos, Malaisie, Tha\u00eflande et Viet-Nam) et l'Insulinde (Brun\u00e9i, Indon\u00e9sie, Malaisie orientale, Philippines et Singapour)" + ] + } + ], + "pid": "027502368", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Asie orientale" + } + ], + "variant_access_point": [ + "ASEAN, Pays de l'", + "Asie (sud-est)", + "Asie sud-orientale", + "Association des nations de l'Asie du Sud-Est, Pays de l'", + "Pays de l'ASEAN", + "Pays de l'Association des nations de l'Asie du Sud-Est", + "Sud-Est asiatique" + ], + "md5": "7a91398a69ff88bb591e36e20002dbb1" + }, + { + "authorized_access_point": "Pacifique (oc\u00e9an)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027502775", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027502775", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15287406q", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040449815" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/170040002" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Pacifique, Oc\u00e9an ; Laval RVM, 1995-02" + ] + }, + { + "noteType": "seeReference", + "label": [ + "Voir aussi aux diff\u00e9rentes parties du Pacifique, par ex. Pacifique (oc\u00e9an ; sud)" + ] + } + ], + "pid": "027502775", + "type": "bf:Place", + "narrower": [ + { + "authorized_access_point": "Chine, Mer de" + }, + { + "authorized_access_point": "Japon, Mer du" + } + ], + "variant_access_point": [ + "Oc\u00e9an Pacifique", + "Pacifique" + ], + "md5": "f455d6b2f2a7605b32e0d080015415ae" + }, + { + "authorized_access_point": "Sichuan (Chine ; province)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027504271", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027504271", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/134813396" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. Atlas Le Monde" + ] + }, + { + "noteType": "general", + "label": [ + "Province chinoise" + ] + } + ], + "pid": "027504271", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Chine (sud)" + }, + { + "authorized_access_point": "Chine - Provinces" + } + ], + "variant_access_point": [ + "Sseu-tch'ouan", + "Szechwan", + "\u56db\u5ddd\u7701", + "Sichuan Sheng" + ], + "md5": "25538ee9a0a6d93e6c9fd5f7b60a53fe" + }, + { + "authorized_access_point": "Somalie", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027504379", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027504379", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040775097" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/5310148574275024430005" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Names of states / IFLA, 1981" + ] + } + ], + "pid": "027504379", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Afrique du Nord-Est" + } + ], + "variant_access_point": [ + "Somalia" + ], + "md5": "4d4377360babe693f1b2464391b82760" + }, + { + "authorized_access_point": "Mac\u00e9doine", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027522296", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027522296", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041149378" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/135978180" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Mac\u00e9doine_(r\u00e9gion)" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GLU", + "Laval RVM, 1996-02" + ] + }, + { + "noteType": "general", + "label": [ + "Sous cette vedette on trouve les ouvrages qui traitent de la Mac\u00e9doine historique, partag\u00e9e en 1913 entre la Bulgarie, la Gr\u00e8ce et la Serbie. Les ouvrages sur la Mac\u00e9doine serbe, puis yougoslave, qui est devenue une R\u00e9publique ind\u00e9pendante le 20-11-1992, se trouvent sous la vedette Mac\u00e9doine (R\u00e9publique) et Mac\u00e9doine du Nord" + ] + } + ], + "pid": "027522296", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Mac\u00e9doine (Gr\u00e8ce)" + }, + { + "authorized_access_point": "Balkans" + } + ], + "related": [ + { + "authorized_access_point": "Mac\u00e9doine du Nord (R\u00e9publique)" + } + ], + "variant_access_point": [ + "Makedonija", + "\u039c\u03b1\u03ba\u03b5\u03b4\u03bf\u03bd\u03af\u03b1", + "Makhedonia" + ], + "md5": "370b78fc8775fcfe684f7b1884d375dd" + }, + { + "authorized_access_point": "Laponie", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027528359", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027528359", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040345815" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/173744995" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL" + ] + } + ], + "pid": "027528359", + "type": "bf:Place", + "md5": "de35fc735059a0ab5d7d64d3d0b217b7" + }, + { + "authorized_access_point": "Congo (R\u00e9publique)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027544931", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027544931", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119562586", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040320979" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/173167475" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/R\u00e9publique_du_Congo" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "SY 1994-95", + "Congo ; Laval RVM, 1997-02" + ] + } + ], + "pid": "027544931", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Afrique centrale" + } + ], + "variant_access_point": [ + "Congo", + "Congo (Brazzaville)", + "Congo (R\u00e9publique populaire)", + "Congo-Brazzaville", + "Congo fran\u00e7ais" + ], + "md5": "75c0cc10b6fe7bb834fe9f409bc97383" + }, + { + "authorized_access_point": "Thurgovie (Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/02754785X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/02754785X", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041196058" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/117148570735124312537" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. SY 1990/91" + ] + }, + { + "noteType": "general", + "label": [ + "Canton suisse" + ] + } + ], + "pid": "02754785X", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Suisse - Cantons" + } + ], + "variant_access_point": [ + "Thurgau (Suisse)" + ], + "md5": "af5e20e03fdd66cd7f292695816cba46" + }, + { + "authorized_access_point": "Berz\u00e9-la-Ville (Sa\u00f4ne-et-Loire)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027552543", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027552543", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11956863f", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/237008510" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Berz\u00e9-la-Ville" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. communes, 1984" + ] + } + ], + "pid": "027552543", + "type": "bf:Place", + "md5": "35f272eb34c315afe3d15cf4fb732c4d" + }, + { + "authorized_access_point": "P\u00e9kin (Chine)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027557758", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027557758", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15238685m", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040759717" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/312565158" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/P\u00e9kin" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. Laval RVM, 1991-08. BN Service chinois", + "wikipedia.org, 2018-04-04" + ] + } + ], + "pid": "027557758", + "type": "bf:Place", + "variant_access_point": [ + "Bei-jing (Chine)", + "Bei-ping (Chine)", + "Beijing (Chine)", + "Beiping (Chine)", + "Pei-ching (Chine)", + "Pei-king (Chine)", + "Pei-p'ing (Chine)", + "Pei-ping (Chine)", + "Peiping (Chine)", + "Peking (Chine)", + "\u5317\u4eac", + "\u5317\u4eac\u5e02", + "\u5317\u5e73", + "B\u011bip\u00edng", + "\u5927\u90fd", + "D\u00e0d\u016b", + "\u6c57\u516b\u91cc", + "H\u00e0nb\u0101l\u01d0", + "Khanbalik", + "Cambaluc" + ], + "md5": "c3b9e0f0d90e198d1e988d643f84bf2b" + }, + { + "authorized_access_point": "Shaanxi (Chine ; province)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027563278", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027563278", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119576874", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/173472735" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. Atlas Le Monde" + ] + }, + { + "noteType": "general", + "label": [ + "Province chinoise" + ] + } + ], + "pid": "027563278", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Chine (nord)" + }, + { + "authorized_access_point": "Chine - Provinces" + } + ], + "variant_access_point": [ + "\u965d\u897f", + "Chen-si", + "Shen-hsi", + "Shensi", + "\u9655\u897f\u7701", + "Shaanxi Sheng" + ], + "md5": "0eb875bbf602a140dbfcc5300e76bc27" + }, + { + "authorized_access_point": "Villars-les-Dombes (Ain)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027564053", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027564053", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13121289j", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/246262792" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Villars-les-Dombes" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. communes, 1984" + ] + } + ], + "pid": "027564053", + "type": "bf:Place", + "md5": "24c2211d691cb09ce18f6a450b02e302" + }, + { + "authorized_access_point": "Zhejiang (Chine ; province)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027564223", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027564223", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/123524226" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. Atlas Le Monde", + "Wikip\u00e9dia, https://fr.wikipedia.org/wiki/Zhejiang, 2020-11-05" + ] + }, + { + "noteType": "general", + "label": [ + "Province chinoise" + ] + } + ], + "pid": "027564223", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Chine (sud)" + }, + { + "authorized_access_point": "Chine - Provinces" + } + ], + "variant_access_point": [ + "Che-kiang", + "Chekiang", + "Ch\u00f6-kiang", + "Tch\u00f6-kiang", + "Tch\u00e9-Kiang", + "\u6d59\u6c5f\u7701", + "Zhejiang Sheng" + ], + "md5": "37effa31260d123f4da997388a77151f" + }, + { + "authorized_access_point": "Montricher-Albanne (Savoie)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027579425", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027579425", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/241581656" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Montricher-Albanne" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. Dict. communes, 1984" + ] + } + ], + "pid": "027579425", + "type": "bf:Place", + "narrower": [ + { + "authorized_access_point": "Les Karellis (Savoie)" + } + ], + "variant_access_point": [ + "Albanne (Savoie)" + ], + "md5": "4287f889553136466a9f714b63b0de0b" + }, + { + "authorized_access_point": "Pays de langue fran\u00e7aise", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027584763", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027584763", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11959324w", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040181413" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/13144647641039724008" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Laval RVM, 1996-08" + ] + } + ], + "pid": "027584763", + "type": "bf:Place", + "narrower": [ + { + "authorized_access_point": "Afrique francophone" + }, + { + "authorized_access_point": "Am\u00e9rique francophone" + }, + { + "authorized_access_point": "Europe francophone" + } + ], + "variant_access_point": [ + "Pays francophones", + "R\u00e9gions de langue fran\u00e7aise" + ], + "md5": "f59ed97d201174417c1ff9800d481982" + }, + { + "authorized_access_point": "Pomp\u00e9i (Italie)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027585190", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027585190", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119593586", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040467554" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/316884438" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL" + ] + } + ], + "pid": "027585190", + "type": "bf:Place", + "related": [ + { + "authorized_access_point": "Pomp\u00e9i (ville ancienne)" + } + ], + "md5": "5f31abf1fba20ed87670b53eac62573f" + }, + { + "authorized_access_point": "Guin\u00e9e", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027596591", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027596591", + "source": "IDREF" + }, + { + "type": "uri", + "value": "https://catalogue.bnf.fr/ark:/12148/cb11960248n", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040225208" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/3649148574267924430008" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Names of states / IFLA, 1981" + ] + } + ], + "pid": "027596591", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Afrique occidentale" + } + ], + "variant_access_point": [ + "Guin\u00e9e fran\u00e7aise" + ], + "md5": "79247b0d1de9e9effd206e33fb88c848" + }, + { + "authorized_access_point": "Allevard (Is\u00e8re ; r\u00e9gion)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027603504", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027603504", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11960787x", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/147280021" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Allevard" + } + ], + "pid": "027603504", + "type": "bf:Place", + "variant_access_point": [ + "Br\u00e9da (France ; cours d'eau ; vall\u00e9e haute)", + "Pays d'Allevard (France)" + ], + "md5": "2782553070dd774c82d6588253e1cfa6" + }, + { + "authorized_access_point": "Anhui (Chine ; province)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027603784", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027603784", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11960807q", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/316144783067243628506" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. Atlas Le Monde" + ] + }, + { + "noteType": "general", + "label": [ + "Province chinoise" + ] + } + ], + "pid": "027603784", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Chine (sud)" + }, + { + "authorized_access_point": "Chine - Provinces" + } + ], + "variant_access_point": [ + "Anhwei (Chine)", + "Ngan-houei (Chine)", + "\u5b89\u5fbd\u7701", + "Anhui Sheng" + ], + "md5": "6da5c13e3f07f0901ff877f3e531a1b1" + }, + { + "authorized_access_point": "Transsib\u00e9rien, Chemin de fer (Russie)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027606996", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027606996", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11961068z", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04060702X" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/304926548" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL" + ] + } + ], + "pid": "027606996", + "type": "bf:Place", + "variant_access_point": [ + "Moscou-Vladivostok, Chemin de fer (Russie)", + "Vladivostok-Moscou, Chemin de fer (Russie)" + ], + "md5": "0c80b548d7d0fedbd88cd3b8ad88ebe9" + }, + { + "authorized_access_point": "Luanda (Angola)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/02761803X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/02761803X", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/1544158188257920260000" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Luanda" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL" + ] + }, + { + "noteType": "general", + "label": [ + "Capitale de pays" + ] + } + ], + "pid": "02761803X", + "type": "bf:Place", + "variant_access_point": [ + "S\u00e3o Paulo de Loanda (Angola)" + ], + "md5": "dc237affec7cb18ef7934e219688eea6" + }, + { + "authorized_access_point": "Sil\u00e9sie (Pologne)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027621952", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027621952", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11962295n", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04052678X" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/137152383" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL" + ] + } + ], + "pid": "027621952", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Sil\u00e9sie" + }, + { + "authorized_access_point": "Pologne (sud)" + }, + { + "authorized_access_point": "Pologne (ouest)" + }, + { + "authorized_access_point": "Territoires anciennement allemands de l'est" + } + ], + "md5": "dc8a8486d29f57fa59f30a223c7f2f10" + }, + { + "authorized_access_point": "Su\u00e8de", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027622444", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027622444", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13953240p", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040772586" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/178302678" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "IFLA, Names of states, 1981", + "Laval RVM, 1996-02. Sverige ; GKD, 1994-05" + ] + }, + { + "noteType": "seeReference", + "label": [ + "Voir aussi la subdivision Et la Su\u00e8de aux personnes et collectivit\u00e9s" + ] + } + ], + "pid": "027622444", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Scandinavie" + }, + { + "authorized_access_point": "Pays de l'Union europ\u00e9enne" + } + ], + "variant_access_point": [ + "Sverige" + ], + "md5": "6a626aaeae6f11349168be562d90d90d" + }, + { + "authorized_access_point": "Y\u00e9men", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/02763065X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/02763065X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11963045s", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040730093" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/158182311" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Y\u00e9men" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Le Monde, 1990-05-23", + "Y\u00e9men ; Pays et capitales du monde / IGN, 1986. Y\u00e9men (R\u00e9publique arabe) ; IFLA, Names of states, 1981 ; BN ACO ; GDEL. Laval RVM, 1991-08 distingue les vedettes Y\u00e9men et Y\u00e9men du Nord" + ] + }, + { + "noteType": "general", + "label": [ + "Sous cette vedette on trouve les ouvrages qui traitent du Y\u00e9men jusqu'en 1962 et/ou de la R\u00e9publique arabe du Y\u00e9men (1962-1990) et/ou du Y\u00e9men unifi\u00e9 depuis 1990", + "Le 26-09-1962, l'imam Mansour est d\u00e9pos\u00e9, et le Y\u00e9men devient la R\u00e9publique arabe du Y\u00e9men. Le 22-05-1990, proclamation de la R\u00e9publique du Y\u00e9men, r\u00e9sultant de la fusion entre le Nord et le Sud-Y\u00e9men (Capitale : \u1e62an \u0326\u0101)" + ] + } + ], + "pid": "02763065X", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Arabie" + }, + { + "authorized_access_point": "Arabie (sud)" + } + ], + "variant_access_point": [ + "Nord-Y\u00e9men", + "Y\u00e9men (R\u00e9publique arabe)", + "Y\u00e9men du Nord", + "\u0627\u0644\u064a\u0645\u0646", + "Al-Yaman", + "\u064a\u0645\u0646", + "Yaman" + ], + "md5": "b5fcaeee23313ea7ffc6d65060b364a3" + }, + { + "authorized_access_point": "Mont-Cenis, Col du (France)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027632571", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027632571", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119632320", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/173636676" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Col_du_Mont-Cenis" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL" + ] + } + ], + "pid": "027632571", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Mont-Cenis (France ; massif)" + } + ], + "variant_access_point": [ + "Cenis, Col du Mont- (France)", + "Mont Cenis, Col du (France)" + ], + "md5": "ba18131f63e2e025a23f89dbcd61e2f3" + }, + { + "authorized_access_point": "Everest, Mont", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/02763857X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/02763857X", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04040417X" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/247168735" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Everest" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL" + ] + } + ], + "pid": "02763857X", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Himalaya" + } + ], + "variant_access_point": [ + "Chomolungma (mont)" + ], + "md5": "cd5ffd90c570edfa3e753e63430b1365" + }, + { + "authorized_access_point": "Pacifique (r\u00e9gion)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027645649", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027645649", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119643079", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040449823" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/172439456" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Pacific Area ; LCSH, 1988-06. Pacifique, R\u00e9gion du ; Laval RVM suppl., 1988-03" + ] + }, + { + "noteType": "general", + "label": [ + "Sous cette vedette on trouve les ouvrages qui traitent de l'ensemble form\u00e9 par les \u00eeles et les pays riverains du Pacifique" + ] + } + ], + "pid": "027645649", + "type": "bf:Place", + "narrower": [ + { + "authorized_access_point": "Pacifique, \u00celes du" + }, + { + "authorized_access_point": "Oc\u00e9anie" + } + ], + "variant_access_point": [ + "Pacifique (oc\u00e9an ; r\u00e9gion)" + ], + "md5": "7c270e7faae634a68d753f797640acf5" + }, + { + "authorized_access_point": "Russie - 1917 (R\u00e9volution)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "940", + "name": "Histoire de l'Europe" + } + ], + "identifier": "http://www.idref.fr/027656438", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027656438", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11965185s", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04043429X" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Grand Larousse universel (art. : R\u00e9volution russe de 1917)", + "Dict. encyclop\u00e9dique d'histoire / M. Mourre (art. : Russie)" + ] + }, + { + "noteType": "general", + "label": [ + "Sous cette vedette, on trouve les documents qui traitent des \u00e9v\u00e9nements survenus du 12 au 15 mars 1917 (27 f\u00e9vrier-2 mars du calendrier julien), jusqu'aux 6 et 7 novembre 1917 (24-25 octobre du calendrier julien). Les documents sur l'ensemble de la p\u00e9riode r\u00e9volutionnaire de 1917 \u00e0 1921 sont sous la vedette : URSS -- 1917-1921 (R\u00e9volution)" + ] + } + ], + "pid": "027656438", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "URSS - 1917-1921 (R\u00e9volution)" + } + ], + "variant_access_point": [ + "URSS - 1917 (R\u00e9volution)" + ], + "md5": "14846c12b155c9e48299865d090d6f23" + }, + { + "authorized_access_point": "Ch\u00e2teauneuf-de-Galaure (Dr\u00f4me)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027668479", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027668479", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/3155148574307224430007" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Ch\u00e2teauneuf-de-Galaure" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. communes, 1984" + ] + } + ], + "pid": "027668479", + "type": "bf:Place", + "md5": "89b1f91462e271f042508e079c400469" + }, + { + "authorized_access_point": "Anglo-Normandes, \u00celes (GB)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027680231", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027680231", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119671393", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040731863" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/316732616" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/\u00celes_Anglo-Normandes" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. SY 1990/91. \u00celes Anglo-Normandes ; Laval RVM, 1990-08" + ] + } + ], + "pid": "027680231", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Grande-Bretagne" + }, + { + "authorized_access_point": "Manche, \u00celes de la" + } + ], + "variant_access_point": [ + "Channel Islands (GB)", + "\u00celes Anglo-Normandes (GB)" + ], + "md5": "1aaf18f233393879a66f0cac5c25e16e" + }, + { + "authorized_access_point": "Gen\u00e8ve (Suisse) - Cath\u00e9drale Saint-Pierre", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "200", + "name": "Religion" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "690", + "name": "Construction" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "720", + "name": "Architecture" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "914", + "name": "G\u00e9ographie de l'Europe" + } + ], + "identifier": "http://www.idref.fr/027693007", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027693007", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11968062k", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042384516" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Petit Robert des noms propres 2013 (art. : Gen\u00e8ve)", + "Grand Larousse universel (art. : Gen\u00e8ve)", + "Wikip\u00e9dia : Cath\u00e9drale Saint-Pierre de Gen\u00e8ve - https://fr.wikip\u00e9dia.org (2016-01-22)", + "Guides Voir : Suisse, 2012", + "Cath\u00e9drale Saint-Pierre - Ville de Gen\u00e8ve - http://www.ville-geneve.ch (2016-01-22)", + "Cath\u00e9drale Saint-Pierre - Gen\u00e8ve - http://www.cathedrale-geneve.ch (2016-01-22)" + ] + }, + { + "noteType": "general", + "label": [ + "Cath\u00e9drale sise dans la cour du m\u00eame nom, construite de 1160 \u00e0 1230, avec une fl\u00e8che entre ses deux tours ; un portail n\u00e9oclassique \u00e0 colonnes est ajout\u00e9 au 18e si\u00e8cle. A l'endroit de plusieurs \u00e9difices cultuels ant\u00e9rieurs - un temple romain, un palais \u00e9piscopal (en t\u00e9moigne son pavement mosa\u00efqu\u00e9), une \u00e9glise romane (on trouve des chapiteaux romans et gothiques) - la cath\u00e9drale est d'abord vou\u00e9e au culte catholique, avant de devenir cath\u00e9drale protestante \u00e0 partir de la R\u00e9forme (1535), avec les pr\u00eaches de Guillaume Farel et surtout de Jean Calvin" + ] + } + ], + "pid": "027693007", + "type": "bf:Place", + "variant_access_point": [ + "Cath\u00e9drale Saint-Pierre (Gen\u00e8ve, Suisse)", + "Saint-Pierre, Cath\u00e9drale (Gen\u00e8ve, Suisse)" + ], + "md5": "da4b3f8e72594a127b20f210eb9356a9" + }, + { + "authorized_access_point": "Guangdong (Chine ; province)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027693805", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027693805", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/123100736" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. Atlas Le Monde" + ] + }, + { + "noteType": "general", + "label": [ + "Province de Chine" + ] + } + ], + "pid": "027693805", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Chine (sud)" + }, + { + "authorized_access_point": "Chine - Provinces" + } + ], + "variant_access_point": [ + "\u5ee3\u6771\u7701", + "Canton (Chine ; province)", + "Kouang-tong (Chine)", + "Kuang-tung (Chine)", + "Kwangtung (Chine)", + "\u5e7f\u4e1c\u7701", + "Guangdong Sheng" + ], + "md5": "bf52e7bd5eef5a9024459fc77e2cd3ed" + }, + { + "authorized_access_point": "Guangxi (Chine ; province)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027693821", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027693821", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb153562085", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/263760018" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. Atlas Le Monde" + ] + }, + { + "noteType": "general", + "label": [ + "R\u00e9gion autonome en partie peupl\u00e9e de Zhuang, Chine" + ] + } + ], + "pid": "027693821", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Chine - Provinces" + }, + { + "authorized_access_point": "Chine (sud)" + } + ], + "variant_access_point": [ + "Kouang-si (Chine)", + "Kuang-hsi (Chine)", + "Kwangsi (Chine)", + "\u5ee3\u897f\u7701", + "\u5e7f\u897f\u58ee\u65cf\u81ea\u6cbb\u533a", + "\u5ee3\u897f\u58ef\u65cf\u81ea\u6cbb\u5340", + "gu\u01cengx\u012b zhu\u00e0ngz\u00fa z\u00eczh\u00ecq\u016b", + "\u5e7f\u897f\u7701", + "Guangxi Sheng" + ], + "md5": "15d43252c3c4f162be7f96d5e57c370e" + }, + { + "authorized_access_point": "Kowe\u00eft (Kowe\u00eft)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027694658", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027694658", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/127853965" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Kowe\u00eft_(ville)" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL" + ] + }, + { + "noteType": "general", + "label": [ + "Capitale du Kowe\u00eft" + ] + } + ], + "pid": "027694658", + "type": "bf:Place", + "md5": "edd18dc318fd56b186ab1949754ab2f7" + }, + { + "authorized_access_point": "Rh\u00f4ne, Vall\u00e9e du", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027705781", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027705781", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119691089", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041037766" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041037766" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/173745158" + } + ], + "pid": "027705781", + "type": "bf:Place", + "narrower": [ + { + "authorized_access_point": "Rhodanien, Sillon (France)" + } + ], + "md5": "d573c5bf79b2612914c166c0fd56aaf3" + }, + { + "authorized_access_point": "Claix (Is\u00e8re)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027722996", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027722996", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119704817", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/295782321" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Claix_(Is\u00e8re)" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. communes, 1984" + ] + } + ], + "pid": "027722996", + "type": "bf:Place", + "md5": "3b20eae7ddc70089c7a06b87837226ab" + }, + { + "authorized_access_point": "Rh\u00e9nanie (Allemagne)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027744795", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027744795", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119721889", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040497887" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/173036235" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Mourre, 1986. GLU, 1991", + "Laval RVM, 1996-02. Rheinland ; Rheinprovinz ; SWD, 1995-04" + ] + }, + { + "noteType": "general", + "label": [ + "Partie de l'Allemagne situ\u00e9e de part et d'autre du Rhin, de la fronti\u00e8re fran\u00e7aise \u00e0 la fronti\u00e8re n\u00e9erlandaise" + ] + } + ], + "pid": "027744795", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Allemagne (ouest)" + }, + { + "authorized_access_point": "Rhin, Bassin du" + } + ], + "variant_access_point": [ + "Prusse rh\u00e9nane", + "Rheinland (Allemagne)", + "Rheinprovinz" + ], + "md5": "e64318facf37ac85767be3326f602c4a" + }, + { + "authorized_access_point": "Alpes (Italie)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/02775751X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/02775751X", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040278395" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/316431852" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Alps, Italian (Italy) ; LCSH, 1988-12" + ] + } + ], + "pid": "02775751X", + "type": "bf:Place", + "narrower": [ + { + "authorized_access_point": "Grappa (Italie ; massif)" + }, + { + "authorized_access_point": "Cadore (Italie)" + }, + { + "authorized_access_point": "Dolomites (Italie ; massif)" + }, + { + "authorized_access_point": "Alpes juliennes" + }, + { + "authorized_access_point": "Alpes cottiennes" + }, + { + "authorized_access_point": "Alpes maritimes (massif)" + }, + { + "authorized_access_point": "Adamello (Italie ; massif)" + } + ], + "variant_access_point": [ + "Alpes italiennes" + ], + "md5": "27a1700c28a39fe81f0c084bc3b6d824" + }, + { + "authorized_access_point": "Hangzhou (Chine)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027764842", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027764842", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/172602288" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Hangzhou" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GLU. Atlas universalis, 1984. LCNA (CD), 1995-09" + ] + }, + { + "noteType": "general", + "label": [ + "Ville de Chine, capitale de la province de Zhejiang" + ] + } + ], + "pid": "027764842", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Zhejiang (Chine ; province)" + } + ], + "relation_pid": { + "value": "075553589", + "type": "redirect_from" + }, + "variant_access_point": [ + "Hang-tcheou (Chine)", + "Hangchow (Chine)", + "Hang-chou Shih (Chine)", + "\u676d\u5dde\u5e02", + "Hangzhou Shi" + ], + "md5": "47e55bec6a4ab81f93f8542e47dee6b2" + }, + { + "authorized_access_point": "France (est)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027768627", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027768627", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119740170", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04044063X" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/173255369" + } + ], + "pid": "027768627", + "type": "bf:Place", + "narrower": [ + { + "authorized_access_point": "Alsace (France)" + }, + { + "authorized_access_point": "Bourgogne (France)" + }, + { + "authorized_access_point": "Champagne-Ardenne (France)" + }, + { + "authorized_access_point": "Franche-Comt\u00e9 (France)" + }, + { + "authorized_access_point": "Lorraine (France)" + }, + { + "authorized_access_point": "Rh\u00f4ne-Alpes (France)" + } + ], + "md5": "61d6df6f1e38b7d3b0f94c2b0f6df85e" + }, + { + "authorized_access_point": "France (ouest)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/02776866X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/02776866X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119740217", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042449510" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/172492580" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "France (Ouest) ; Laval RVM, 1994-02" + ] + }, + { + "noteType": "general", + "label": [ + "Sous cette vedette on trouve les ouvrages qui traitent de la partie de la France situ\u00e9e entre l'estuaire de la Seine et la Gironde" + ] + } + ], + "pid": "02776866X", + "type": "bf:Place", + "narrower": [ + { + "authorized_access_point": "Armoricain, Massif (France)" + }, + { + "authorized_access_point": "Basse-Normandie (France)" + }, + { + "authorized_access_point": "Bretagne (France)" + }, + { + "authorized_access_point": "Pays de la Loire (France)" + }, + { + "authorized_access_point": "Poitou-Charentes (France)" + }, + { + "authorized_access_point": "Longueville (Calvados, Basse-Normandie)" + } + ], + "md5": "2d8349fabb5f614221360c6eef11d6ac" + }, + { + "authorized_access_point": "France (sud)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027768678", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027768678", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11974022k", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040714039" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/172332341" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "France (Sud) ; Laval RVM, 1996-02" + ] + } + ], + "pid": "027768678", + "type": "bf:Place", + "variant_access_point": [ + "France du sud", + "France m\u00e9ridionale", + "Midi (France)", + "Sud de la France" + ], + "md5": "2868da55aeffeab25470878698e3f344" + }, + { + "authorized_access_point": "France (sud-est)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027768686", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027768686", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11974023x", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041330986" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/315160421" + } + ], + "pid": "027768686", + "type": "bf:Place", + "narrower": [ + { + "authorized_access_point": "Languedoc-Roussillon (France)" + }, + { + "authorized_access_point": "Provence-Alpes-C\u00f4te d'Azur (France)" + }, + { + "authorized_access_point": "Rh\u00f4ne-Alpes (France)" + }, + { + "authorized_access_point": "Alpes maritimes (province romaine)" + }, + { + "authorized_access_point": "Viennoise (province romaine)" + } + ], + "variant_access_point": [ + "M\u00e9diterran\u00e9e (r\u00e9gion ; France)" + ], + "md5": "bfd19b3a8781b33fee3281a4b08e170f" + }, + { + "authorized_access_point": "France (sud-ouest)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027768694", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027768694", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119740248", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040584755" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/315160386" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "France (Sud-Ouest) ; Laval RVM, 1996-02" + ] + } + ], + "pid": "027768694", + "type": "bf:Place", + "narrower": [ + { + "authorized_access_point": "Aquitaine (France)" + }, + { + "authorized_access_point": "Aquitaine, Bassin (France)" + }, + { + "authorized_access_point": "Gascogne (France)" + }, + { + "authorized_access_point": "Guyenne (France)" + }, + { + "authorized_access_point": "Limousin (France)" + }, + { + "authorized_access_point": "Midi-Pyr\u00e9n\u00e9es (France)" + }, + { + "authorized_access_point": "Poitou-Charentes (France)" + }, + { + "authorized_access_point": "Septimanie" + } + ], + "variant_access_point": [ + "Sud-Ouest (France)" + ], + "md5": "1a9aea5dd5efa32287945729f1a15601" + }, + { + "authorized_access_point": "Bordelais (Gironde)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027775348", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027775348", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11974560h", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040804690" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/173418908" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL" + ] + } + ], + "pid": "027775348", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Gironde (France)" + } + ], + "variant_access_point": [ + "Bordeaux (Gironde ; r\u00e9gion)" + ], + "md5": "e825928795e34d0324ad2fded6e1eaae" + }, + { + "authorized_access_point": "La Roche-Vineuse (Sa\u00f4ne-et-Loire)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027777456", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027777456", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/242735625" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/La_Roche-Vineuse" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. communes, 1984" + ] + } + ], + "pid": "027777456", + "type": "bf:Place", + "variant_access_point": [ + "Roche-Vineuse, La (Sa\u00f4ne-et-Loire)" + ], + "md5": "b302f722830ebe9607de12e60315d341" + }, + { + "authorized_access_point": "Suisse italienne", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027785718", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027785718", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11975348b", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041972147" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/171144783017780015328" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. Laval RVM suppl., 1988-03" + ] + }, + { + "noteType": "general", + "label": [ + "Emploi direct en subdivision : [Sujet] -- Suisse italienne" + ] + } + ], + "pid": "027785718", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Suisse" + } + ], + "variant_access_point": [ + "Suisse de langue italienne" + ], + "md5": "1a3b560d0395cc78ccf3136a2b078d47" + }, + { + "authorized_access_point": "Allemagne (nord)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027806626", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027806626", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11976943h", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040754863" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040754545" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/173036261" + } + ], + "pid": "027806626", + "type": "bf:Place", + "narrower": [ + { + "authorized_access_point": "Allemagne (nord-est)" + }, + { + "authorized_access_point": "Allemagne (nord-ouest)" + } + ], + "broader": [ + { + "authorized_access_point": "Allemagne" + } + ], + "md5": "f8f29ff4fc55b60d655cde16e8e5b1b0" + }, + { + "authorized_access_point": "Bordeaux (Gironde)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027812723", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027812723", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040880729" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/173309588" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. communes, 1984. GDEL" + ] + } + ], + "pid": "027812723", + "type": "bf:Place", + "variant_access_point": [ + "Bordeaux", + "Bordelh (Gironde, France)", + "Bord\u00e8u (Gironde, France)", + "Burdigala (ville ancienne)" + ], + "md5": "08cd75080060ddd809c4c61566d7e0e0" + }, + { + "authorized_access_point": "Lyonnais, Monts du (France)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027825558", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027825558", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/242739698" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Monts_du_Lyonnais" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GLU, 1991", + "Laval RVM, 1996-08" + ] + } + ], + "pid": "027825558", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Massif central (France)" + } + ], + "md5": "7644115adbe54c1839a5ba8f499e1e4c" + }, + { + "authorized_access_point": "\u00c9mirats arabes unis", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027838935", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027838935", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119794070", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04062742X" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/3379148574308124430003" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Names of states / IFLA, 1981. Pays et capitales du monde / IGN, 1985" + ] + } + ], + "pid": "027838935", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Pays du golfe Persique" + } + ], + "variant_access_point": [ + "Al-Im\u0101r\u0101t", + "United Arab Emirates", + "UAE" + ], + "md5": "ae6031724a7a17a4958fffe2a78f5025" + }, + { + "authorized_access_point": "Kirghizistan", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027840883", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027840883", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13507963h", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040308480" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/148476223" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Kirghizistan" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GLU. Mourre, 1996", + "Laval RVM, 1999-01" + ] + } + ], + "pid": "027840883", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Asie centrale" + }, + { + "authorized_access_point": "Pays de la CEI" + } + ], + "variant_access_point": [ + "Kirghizie", + "Kirghizstan", + "Kyrgyzstan" + ], + "md5": "b2e90262316c455ee32b07ddb14c5d1a" + }, + { + "authorized_access_point": "R\u00e9publique tch\u00e8que", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027842959", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027842959", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04303381" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/953148574339124430001" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "BN ACO. Le Monde, 1-1-1993" + ] + }, + { + "noteType": "general", + "label": [ + "La R\u00e9publique socialiste tch\u00e8que, cr\u00e9\u00e9e le 1-1-1969, comprenait la partie tch\u00e8que de la Tch\u00e9coslovaquie (Boh\u00eame, Moravie et Sil\u00e9sie, cette derni\u00e8re \u00e9tant rattach\u00e9e \u00e0 la Moravie-Septentrionale) ; elle devient la R\u00e9publique tch\u00e8que en 1990 et acc\u00e8de \u00e0 l'ind\u00e9pendance le 1-1-1993" + ] + } + ], + "pid": "027842959", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Europe centrale" + } + ], + "variant_access_point": [ + "Boh\u00eame-Moravie", + "\u010cesk\u00e1 republika", + "\u010cesk\u00e1 socialistick\u00e1 republika", + "R\u00e9publique socialiste tch\u00e8que", + "Tch\u00e8que, R\u00e9publique", + "Tch\u00e9quie" + ], + "md5": "be14343c73e0ba924b0847cd1377ef1a" + }, + { + "authorized_access_point": "Brun\u00e9i", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027848213", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027848213", + "source": "IDREF" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Brunei" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Names of states / IFLA, 1981. Pays et capitales du monde / IGN, 1985" + ] + } + ], + "pid": "027848213", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Born\u00e9o" + } + ], + "md5": "c5700e2056e00d6ac2ba88bbab43a8ac" + }, + { + "authorized_access_point": "Alpes (centre)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027853128", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027853128", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040676110" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/173364430" + } + ], + "pid": "027853128", + "type": "bf:Place", + "variant_access_point": [ + "Alpes centrales" + ], + "md5": "7c0ec46a82f23143482aa8314070dd2f" + }, + { + "authorized_access_point": "Suisse (est)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027853136", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027853136", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040441067" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/1391148574382824430000" + } + ], + "pid": "027853136", + "type": "bf:Place", + "narrower": [ + { + "authorized_access_point": "Rh\u00e9tie (province romaine)" + } + ], + "variant_access_point": [ + "Suisse orientale" + ], + "md5": "0f0226e9895eba8616c97f4209014afb" + }, + { + "authorized_access_point": "Saint-Gall (Suisse ; canton)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027860787", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027860787", + "source": "IDREF" + }, + { + "type": "uri", + "value": "https://catalogue.bnf.fr/ark:/12148/cb11981215b", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040515958" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/5207153126238624750006" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/124913894" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. SY 1990/91", + "DNB - https://d-nb.info/gnd/4051594-1, 2023-12-01", + "DHS - https://hls-dhs-dss.ch/de/articles/007390/2017-05-11/, 2023-12-01" + ] + } + ], + "pid": "027860787", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Suisse - Cantons" + } + ], + "relation_pid": { + "value": "227521803", + "type": "redirect_from" + }, + "variant_access_point": [ + "Sankt Gallen (Suisse ; canton)", + "St. Gallen (Suisse ; canton)" + ], + "md5": "541e494f4f46baea18d937dd566ef0a4" + }, + { + "authorized_access_point": "Heilongjiang (Chine; province)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027875695", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027875695", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/173036300" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. Atlas Le Monde" + ] + }, + { + "noteType": "general", + "label": [ + "Province chinoise" + ] + } + ], + "pid": "027875695", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Mandchourie (Chine)" + }, + { + "authorized_access_point": "Chine (nord)" + }, + { + "authorized_access_point": "Chine - Provinces" + } + ], + "variant_access_point": [ + "Hei-long-kiang (Chine)", + "Heilungkiang (Chine)", + "\u9ed1\u9f8d\u6c5f\u7701", + "\u9ed1\u9f99\u6c5f\u7701", + "Heilongjiang Sheng" + ], + "md5": "fdf3a241b34f803c18da9ce76c47b9df" + }, + { + "authorized_access_point": "Jilin (Chine ; province)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027875717", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027875717", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/147752871" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. Atlas Le Monde" + ] + }, + { + "noteType": "general", + "label": [ + "Province chinoise" + ] + } + ], + "pid": "027875717", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Mandchourie (Chine)" + }, + { + "authorized_access_point": "Chine (nord)" + }, + { + "authorized_access_point": "Chine - Provinces" + } + ], + "variant_access_point": [ + "Chi-lin", + "Ki-lin", + "Kirin", + "\u5409\u6797\u7701", + "Jilin Sheng" + ], + "md5": "94b6e84bce6875a7d360b774b075a343" + }, + { + "authorized_access_point": "Liaoning (Chine ; province)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027875725", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027875725", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/8421148574328624430007" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. Atlas Le Monde. BN Service chinois" + ] + }, + { + "noteType": "general", + "label": [ + "Province chinoise form\u00e9e par la r\u00e9union du Liaodong et du Liaoxi en 1954" + ] + } + ], + "pid": "027875725", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Mandchourie (Chine)" + }, + { + "authorized_access_point": "Chine (nord)" + }, + { + "authorized_access_point": "Chine - Provinces" + } + ], + "variant_access_point": [ + "Leao-ning", + "Liao-ning", + "\u907c\u5be7\u7701", + "\u8fbd\u5b81\u7701", + "Liaoning Sheng" + ], + "md5": "d5ee7629cdf556075aa394d538f07fb9" + }, + { + "authorized_access_point": "Jura (Suisse ; massif)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027883000", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027883000", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040538885" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/9759148574375724430007" + } + ], + "pid": "027883000", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Jura (massif)" + } + ], + "md5": "18040075ca1ed50994e82a90e2c3a362" + }, + { + "authorized_access_point": "Faucigny (France)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027935280", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027935280", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11987107w", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/151274210" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Faucigny_(Haute-Savoie)" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL" + ] + } + ], + "pid": "027935280", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Haute-Savoie (France)" + }, + { + "authorized_access_point": "Pr\u00e9alpes (France)" + }, + { + "authorized_access_point": "Savoie" + } + ], + "variant_access_point": [ + "Bonneville (Haute-Savoie ; r\u00e9gion)" + ], + "md5": "25b99e23bcb506aa0bf603cc763f628f" + }, + { + "authorized_access_point": "Soleure (Soleure, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027945774", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027945774", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11987945n", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040554589" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/128144648648649371618" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL" + ] + } + ], + "pid": "027945774", + "type": "bf:Place", + "relation_pid": { + "value": "276094255", + "type": "redirect_from" + }, + "variant_access_point": [ + "Solothurn (Suisse)" + ], + "md5": "72b4a0484eed713037416abf9618b882" + }, + { + "authorized_access_point": "Paris (France ; agglom\u00e9ration)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027949117", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027949117", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11988194w", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04044662X" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/315153457" + } + ], + "pid": "027949117", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "\u00cele-de-France (France)" + } + ], + "variant_access_point": [ + "Paris (France ; r\u00e9gion)", + "Grand Paris (France)" + ], + "md5": "2433c15f621c53e21ee8d0db15bfd962" + }, + { + "authorized_access_point": "Soleure (Suisse ; canton)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/027952800", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027952800", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119884863", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040554597" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/132527094" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. SY 1990/91" + ] + }, + { + "noteType": "general", + "label": [ + "Canton suisse" + ] + } + ], + "pid": "027952800", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Suisse - Cantons" + } + ], + "variant_access_point": [ + "Solothurn (Suisse ; canton)" + ], + "md5": "b5c554a3d903ac06c64e38eb9313b195" + }, + { + "authorized_access_point": "Fianarantsoa (Madagascar ; province)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/028036336", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028036336", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/123282613" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. SY, 1990/1991" + ] + } + ], + "pid": "028036336", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Madagascar" + } + ], + "md5": "e219eeaf31975d9f6b0bc25ff014a86b" + }, + { + "authorized_access_point": "Afrique lusophone", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/028097505", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028097505", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)043270158" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/172982699" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Sous cette vedette on touve les ouvrages qui traitent des \u00c9tats africains dont la langue officielle est le portugais (Angola, Cap-Vert, Guin\u00e9e-Bissau, Mozambique, S\u00e3o Tom\u00e9-et-Principe) depuis leur accession \u00e0 l'ind\u00e9pendance. Les ouvrages qui traitent de ces territoires durant la p\u00e9riode coloniale se trouvent sous la vedette : Portugal -- Colonies -- Afrique" + ] + } + ], + "pid": "028097505", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Pays de langue portugaise" + } + ], + "variant_access_point": [ + "Afrique d'expression portugaise" + ], + "md5": "ca503662f9b4af1a8f43c7b3fc1a17d9" + }, + { + "authorized_access_point": "Suisse - 1798-1803 (R\u00e9publique helv\u00e9tique)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/028135903", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028135903", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)954767330" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Laval RVM, 1992-08" + ] + } + ], + "pid": "028135903", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "France - 1789-1799 (R\u00e9volution) - R\u00e9publiques soeurs" + } + ], + "variant_access_point": [ + "Helv\u00e9tique, R\u00e9publique (1798-1803)", + "R\u00e9publique helv\u00e9tique (1798-1803)" + ], + "md5": "a0a4e469a334c6eed8ff23d3179ba129" + }, + { + "authorized_access_point": "Lausanne (Suisse) - Cath\u00e9drale Notre-Dame", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/028141814", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028141814", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12003515k", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040740528" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Guide bleu Suisse, 1977" + ] + } + ], + "pid": "028141814", + "type": "bf:Place", + "md5": "51bd9b7526f3ed89483e6af7bb50744e" + }, + { + "authorized_access_point": "Saint-Pierre (Suisse ; \u00eele)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/028146212", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028146212", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12003873k", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040516385" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/878144783180710992014" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Guide bleu, Suisse, 1977" + ] + } + ], + "pid": "028146212", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Bienne, Lac de (Suisse)" + } + ], + "md5": "50c034be4e670ec37edc187ce01ef0d6" + }, + { + "authorized_access_point": "L\u0101rist\u0101n (Iran)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/028172825", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028172825", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/81148570732224312626" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Atlas Le Monde. BN service Asie" + ] + } + ], + "pid": "028172825", + "type": "bf:Place", + "variant_access_point": [ + "Larestan (Iran)" + ], + "md5": "6112633e143e92cadb682ac948374e7f" + }, + { + "authorized_access_point": "Divonne-les-Bains (Ain)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/02817450X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/02817450X", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/134507635" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Divonne-les-Bains" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. communes, 1984" + ] + } + ], + "pid": "02817450X", + "type": "bf:Place", + "md5": "569af49b1c0af4703262bfd75e09c8f7" + }, + { + "authorized_access_point": "Areuse, Gorges de l' (Neuch\u00e2tel, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/028180135", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028180135", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb120067197", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)964919958" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/240551570" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Gorges_de_l'Areuse" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Atlas Le Monde. GLE" + ] + } + ], + "pid": "028180135", + "type": "bf:Place", + "md5": "d65669b857c1092e801c1ea5ff166aff" + }, + { + "authorized_access_point": "Alsace-Lorraine", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/028201922", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028201922", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040145026" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/137798315" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Alsace-Lorraine (Allemagne) ; Laval RVM, 1997-02", + "GLU, 1991. Mourre, 1996" + ] + }, + { + "noteType": "general", + "label": [ + "Par convention cette vedette, qui peut s'utiliser pour la p\u00e9riode allemande comme la p\u00e9riode fran\u00e7aise, s'emploie directement en subdivision : [sujet] -- Alsace-Lorraine", + "Partie de l'Alsace et de la Lorraine annex\u00e9e par l'Allemagne (1871-1918 et 1940-1944), comprenant les d\u00e9partements actuels du Bas-Rhin, du Haut-Rhin et de la Moselle" + ] + } + ], + "pid": "028201922", + "type": "bf:Place", + "variant_access_point": [ + "Alsace-Moselle", + "Elsass-Lothringen" + ], + "md5": "5718205b7289a391522535764adab328" + }, + { + "authorized_access_point": "Hunan (Chine ; province)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/028212967", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028212967", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12009405f", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/124144928850254441195" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. Atlas Le Monde" + ] + }, + { + "noteType": "general", + "label": [ + "Province chinoise" + ] + } + ], + "pid": "028212967", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Chine (sud)" + }, + { + "authorized_access_point": "Chine - Provinces" + } + ], + "variant_access_point": [ + "Hou-nan", + "\u6e56\u5357\u7701", + "Hunan Sheng" + ], + "md5": "7bc06da873fc50adef2226f66c1a5d00" + }, + { + "authorized_access_point": "Qinghai (Chine)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/028212991", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028212991", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/173581638" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. Atlas Le Monde" + ] + }, + { + "noteType": "general", + "label": [ + "Province du nord-ouest de la Chine qui tire son nom du lac du m\u00eame nom et correspond \u00e0 peu pr\u00e8s \u00e0 l'ancienne r\u00e9gion tib\u00e9taine de l'Amdo" + ] + } + ], + "pid": "028212991", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Chine (ouest)" + }, + { + "authorized_access_point": "Chine - Provinces" + } + ], + "variant_access_point": [ + "Ts'ing-hai (Chine)", + "Tsinghai (Chine)", + "\u9752\u6d77\u7701", + "Qinghai Sheng", + "\u0f58\u0f5a\u0f7c\u0f0b\u0f66\u0f94\u0f7c\u0f53\u0f0b", + "mTsho sngon" + ], + "md5": "25bbf22903f9e438f57f98115c130fb2" + }, + { + "authorized_access_point": "Hubei (Chine ; province)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/028213017", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028213017", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/172172257" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. Atlas Le Monde. Laval RVM, 1990-02" + ] + }, + { + "noteType": "general", + "label": [ + "Province chinoise" + ] + } + ], + "pid": "028213017", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Chine (sud)" + }, + { + "authorized_access_point": "Chine - Provinces" + } + ], + "variant_access_point": [ + "Hou-pei", + "Hupeh", + "\u6e56\u5317\u7701", + "Hubei Sheng" + ], + "md5": "16492f4efe12c37106e97be2c307b2a7" + }, + { + "authorized_access_point": "Inde (nord)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/028215346", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028215346", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040727688" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/172765671" + } + ], + "pid": "028215346", + "type": "bf:Place", + "md5": "c38fb5ad0dc0312f73bb7fd3d0618a10" + }, + { + "authorized_access_point": "Rougemont (Doubs)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/028217160", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028217160", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/147742263" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Rougemont_(Doubs)" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. Dict. communes, 1984" + ] + } + ], + "pid": "028217160", + "type": "bf:Place", + "md5": "67212c563eff2f3d38091d7f0aa11848" + }, + { + "authorized_access_point": "Inde (sud)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/028245431", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028245431", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040267547" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/172928236" + } + ], + "pid": "028245431", + "type": "bf:Place", + "narrower": [ + { + "authorized_access_point": "Andhra Pradesh (Inde)" + }, + { + "authorized_access_point": "Karn\u0101taka (Inde)" + }, + { + "authorized_access_point": "Kerala (Inde)" + }, + { + "authorized_access_point": "Tamil Nadu (Inde)" + } + ], + "variant_access_point": [ + "Inde du sud", + "Inde m\u00e9ridionale" + ], + "md5": "3ea2b467f55a5b9d3768b47913b1d11f" + }, + { + "authorized_access_point": "Ch\u00e2tillon-sur-Chalaronne (Ain ; r\u00e9gion)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/028289129", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028289129", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12015519n", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/133532530" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Ch\u00e2tillon-sur-Chalaronne" + } + ], + "pid": "028289129", + "type": "bf:Place", + "md5": "d1c0775962ddbdbf05821e39044781e7" + }, + { + "authorized_access_point": "Allemagne (est)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/028355431", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028355431", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12020781m", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042252997" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Allemagne (Est) ; Laval RVM, 2001-01", + "SWD, 1995-04 distingue : Ostdeutschland ; Deutschland <\u00d6stliche L\u00e4nder>" + ] + }, + { + "noteType": "general", + "label": [ + "Sous cette vedette on trouve les documents qui traitent de la partie orientale de l'Allemagne (\u00e0 l'est de l'Elbe et dans les limites orientales de la p\u00e9riode consid\u00e9r\u00e9e) jusqu'en 1949 ou depuis 1990. Les documents sur la RDA de 1949 \u00e0 1990 sont sous la vedette Allemagne (R\u00e9publique d\u00e9mocratique). Les documents sur les territoires autrefois allemands situ\u00e9s \u00e0 l'est de la ligne Oder-Neisse sont sous la vedette : Territoires anciennement allemands de l'est" + ] + } + ], + "pid": "028355431", + "type": "bf:Place", + "variant_access_point": [ + "Allemagne - L\u00e4nder orientaux", + "Allemagne - Nouveaux L\u00e4nder", + "Allemagne (Nouveaux L\u00e4nder)", + "Allemagne de l'Est", + "Allemagne orientale", + "Deutschland (\u00d6stliche L\u00e4nder)", + "Deutschland (Ost)", + "L\u00e4nder orientaux (Allemagne)", + "Neue Bundesl\u00e4nder", + "Nouveaux L\u00e4nder (Allemagne)", + "\u00d6stliche Bundesl\u00e4nder", + "Ostdeutschland" + ], + "md5": "b6ab22c969671cea9ac5109b204b4053" + }, + { + "authorized_access_point": "Allemagne (sud)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/028366360", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028366360", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040780228" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/172711766" + } + ], + "pid": "028366360", + "type": "bf:Place", + "narrower": [ + { + "authorized_access_point": "Bavi\u00e8re (Allemagne)" + }, + { + "authorized_access_point": "Souabe (Allemagne)" + }, + { + "authorized_access_point": "Bade-Wurtemberg (Allemagne)" + } + ], + "md5": "a2f0f80a8b30215166ec5ef7116f8b37" + }, + { + "authorized_access_point": "Allemagne (sud-ouest)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/028388569", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028388569", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12023403q", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040780538" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/18144647635337368856" + } + ], + "pid": "028388569", + "type": "bf:Place", + "md5": "c81752c88ef3b52cc1b6f53f7cf9acdc" + }, + { + "authorized_access_point": "Colorado (cours d'eau)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/028411773", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028411773", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb120251877", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/14144647634406825410" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. Atlas Le Monde", + "http://www.geonames.org/, 2020-06-22" + ] + } + ], + "pid": "028411773", + "type": "bf:Place", + "variant_access_point": [ + "Rio Colorado", + "Colorado River", + "Grand River (cours d'eau)" + ], + "md5": "09b859c2b6fe8389fd36bc10a078b68c" + }, + { + "authorized_access_point": "B\u00e2le-Campagne (Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/028554108", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028554108", + "source": "IDREF" + }, + { + "source": "DNB", + "type": "bf:Nbn", + "value": "(DE-101)040046192" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/2975148574389124430005" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. SY 1990/91" + ] + }, + { + "noteType": "general", + "label": [ + "Demi-canton issu de la scission du canton de B\u00e2le en B\u00e2le-Ville et B\u00e2le-Campagne (1833)" + ] + } + ], + "pid": "028554108", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Suisse - Cantons" + } + ], + "variant_access_point": [ + "Basel-Landschaft (Suisse)" + ], + "md5": "232673803a6ede7a1fd7d423a6937451" + }, + { + "authorized_access_point": "Pouilles (Italie)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/028565924", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028565924", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12037604s", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04002508X" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/151256943" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. Pouilles ; Atlas Le Monde" + ] + } + ], + "pid": "028565924", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Italie (sud)" + }, + { + "authorized_access_point": "Italie - R\u00e9gions" + }, + { + "authorized_access_point": "Daunie" + } + ], + "relation_pid": { + "value": "255615825", + "type": "redirect_from" + }, + "variant_access_point": [ + "Apulia", + "Apulie", + "Pouille (Italie)", + "Pouilles", + "Puglia (Italie)" + ], + "md5": "1cb5790b6e2891d582f1e75b03d56c20" + }, + { + "authorized_access_point": "B\u00e2le (Principaut\u00e9 eccl\u00e9siastique)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/028567005", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028567005", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb120377073", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040802752" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/599144783181696879819" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "DHGE. Mourre, 1996" + ] + }, + { + "noteType": "general", + "label": [ + "L'introduction de la R\u00e9forme \u00e0 B\u00e2le en 1529 amena la scission entre la ville r\u00e9form\u00e9e et l'\u00e9v\u00eaque catholique, pr\u00e9figuration de la scission du canton en deux demi-cantons en 1833" + ] + } + ], + "pid": "028567005", + "type": "bf:Place", + "variant_access_point": [ + "Ancien \u00e9v\u00each\u00e9 de B\u00e2le (Suisse)" + ], + "md5": "844ca011d556d3a0e75d32193b195bca" + }, + { + "authorized_access_point": "Alpes (France ; sud)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/028601475", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028601475", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040932079" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/172656768" + } + ], + "pid": "028601475", + "type": "bf:Place", + "variant_access_point": [ + "Alpes du Sud (France)" + ], + "md5": "0dbbddcf3a217e05bb6a76b4cc8cf8af" + }, + { + "authorized_access_point": "Guizhou (Chine ; province)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/028654706", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028654706", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb120445389", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/172172578" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. BN Service Asie" + ] + }, + { + "noteType": "general", + "label": [ + "Province de Chine" + ] + } + ], + "pid": "028654706", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Chine (sud)" + }, + { + "authorized_access_point": "Chine - Provinces" + } + ], + "variant_access_point": [ + "Kouei-tcheou (Chine)", + "Koueitcheou (Chine)", + "Kui-chou (Chine)", + "Kweichow (Chine)", + "\u8cb4\u5dde\u7701", + "\u8d35\u5dde\u7701", + "Guizhou Sheng" + ], + "md5": "68fd93fe317d43ab0548009dbd7d9f24" + }, + { + "authorized_access_point": "B\u00e9arn (France ; sud)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/028695984", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028695984", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/136075732" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/B\u00e9arn" + } + ], + "pid": "028695984", + "type": "bf:Place", + "md5": "36819aaff74dc479378fc2c6aaabc3bf" + }, + { + "authorized_access_point": "Suisse (nord-ouest)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/028700570", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028700570", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042142016" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/173148574253724430006" + } + ], + "pid": "028700570", + "type": "bf:Place", + "md5": "3db0be0ef9d8ee6814d4ce74b20a5364" + }, + { + "authorized_access_point": "Turin (Italie ; province)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/02870097X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/02870097X", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/123794615" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Ville_m\u00e9tropolitaine_de_Turin" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL" + ] + } + ], + "pid": "02870097X", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Pi\u00e9mont (Italie)" + } + ], + "variant_access_point": [ + "Turin (Italie ; r\u00e9gion)", + "Torino (Italie ; province)" + ], + "md5": "d6ada17142f2329fc949a5f5b616b612" + }, + { + "authorized_access_point": "Saint-Symphorien-de-Lay (Loire ; r\u00e9gion)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/028706137", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028706137", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/684148574379924430005" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Saint-Symphorien-de-Lay" + } + ], + "pid": "028706137", + "type": "bf:Place", + "md5": "1ad607ddd21d266842e14c33c79a7d8e" + }, + { + "authorized_access_point": "Saint-Gothard, Tunnel ferroviaire du (Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/028727444", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028727444", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040216934" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/1458148574258924430003" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL" + ] + } + ], + "pid": "028727444", + "type": "bf:Place", + "md5": "46c7b2158740e66ca893f73785afef53" + }, + { + "authorized_access_point": "Aar (Suisse ; cours d'eau)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/028877764", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028877764", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12062211c", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04000019" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/21144647635437368856" + } + ], + "pid": "028877764", + "type": "bf:Place", + "md5": "cf45aa58d56ee438810f5a18bd5d8289" + }, + { + "authorized_access_point": "Mont Blanc, Tunnel du", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/028889460", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028889460", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/148577329" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Tunnel_du_Mont-Blanc" + } + ], + "pid": "028889460", + "type": "bf:Place", + "variant_access_point": [ + "Tunnel du Mont Blanc" + ], + "md5": "d4a652fe2ff83d76e437420b591f8f17" + }, + { + "authorized_access_point": "Ajoie (Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/028913663", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028913663", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb120651067", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040008657" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/25144647637959901293" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GLU" + ] + }, + { + "noteType": "general", + "label": [ + "Partie jurassienne de la Suisse frontali\u00e8re, autour de Porrentruy" + ] + } + ], + "pid": "028913663", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Porrentruy (Suisse ; r\u00e9gion)" + } + ], + "md5": "2b00b5b02622f8cb464578beebd0fece" + }, + { + "authorized_access_point": "Jiangxi (Chine ; province)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/028928709", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028928709", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12066284j", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/172332872" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. Atlas Le Monde. BN Service Asie" + ] + }, + { + "noteType": "general", + "label": [ + "Province chinoise" + ] + } + ], + "pid": "028928709", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Chine (sud)" + }, + { + "authorized_access_point": "Chine - Provinces" + } + ], + "variant_access_point": [ + "Chiang-hsi (Chine)", + "Kiang-si (Chine)", + "Kiangsi (Chine)", + "\u6c5f\u897f\u7701", + "Jiangxi Sheng" + ], + "md5": "6a7f11bd9b87e3af976ab27f1fb58692" + }, + { + "authorized_access_point": "L\u00e9man, Lac (r\u00e9gion)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/028931491", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028931491", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)949642762" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/173637213" + } + ], + "pid": "028931491", + "type": "bf:Place", + "md5": "8e8a0b78ef7d480a5fb4daad9316c9ef" + }, + { + "authorized_access_point": "Saint-Bonnet-le-Courreau (Loire)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/028979885", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028979885", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12070283z", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/245870249" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Saint-Bonnet-le-Courreau" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. communes, 1984" + ] + } + ], + "pid": "028979885", + "type": "bf:Place", + "md5": "eb03c816740d15e65d5ee14ebf4b20f5" + }, + { + "authorized_access_point": "Schwyz (Suisse ; canton)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "914", + "name": "G\u00e9ographie de l'Europe" + } + ], + "identifier": "http://www.idref.fr/028988310", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028988310", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb120709591", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040540197" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/134271490" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Cat\u00e9gorie:Canton_de_Schwytz" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Petit Robert des noms propres 2016", + "Grand Larousse universel", + "L'atlas National geographic, 2007 : Schwytz", + "Wikip\u00e9dia : canton de Schwytz [ou Schwyz] - https://fr.wikipedia.org (2017-10-21)", + "Statoids - http://www.statoids.com (2017-10-21)", + "Kanton Schwyz - https://www.sz.ch (2017-10-21)", + "Dict. historique de la Suisse : Schwytz (canton) - http://www.hls-dhs-dss.ch (2017-10-21)" + ] + }, + { + "noteType": "general", + "label": [ + "Canton germanophone du centre-est ; capitale : Schwyz. Il est un des 4 cantons historiques ayant donn\u00e9 naissance \u00e0 la Conf\u00e9d\u00e9ration helv\u00e9tique au 19e si\u00e8cle, apr\u00e8s avoir souvent lutt\u00e9 contre les Habsbourg. Son nom a donn\u00e9 naissance \u00e0 celui du pays tout entier - dans sa version allemande 'Schweiz'. Pour la ville comme pour le canton, on peut dire aussi \"Schwytz\", qui est une graphie romande, mais dans sa version fran\u00e7aise, la Constitution suisse emploie le terme \"Schwyz" + ] + } + ], + "pid": "028988310", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Suisse - Cantons" + } + ], + "variant_access_point": [ + "Kanton Schwyz (Suisse)", + "Pays de Schwyz (Suisse)", + "Schweitz (Suisse ; canton)", + "Schwytz (Suisse ; canton)", + "Svitto (Suisse ; canton)", + "Sviz (Suisse ; canton)" + ], + "md5": "0eca779636984d825bfd223ae95010c1" + }, + { + "authorized_access_point": "Appenzell (Suisse ; canton)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/028991575", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028991575", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb120712100", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040024873" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/127860862" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL" + ] + }, + { + "noteType": "general", + "label": [ + "Ancien canton suisse qui s'est scind\u00e9 en 1597 en 2 demi-cantons : Appenzell Rhodes-Ext\u00e9rieures et Appenzell Rhodes-Int\u00e9rieures ; chef-lieu : Appenzell" + ] + } + ], + "pid": "028991575", + "type": "bf:Place", + "narrower": [ + { + "authorized_access_point": "Appenzell Rhodes-Ext\u00e9rieures (Suisse)" + }, + { + "authorized_access_point": "Appenzell Rhodes-Int\u00e9rieures (Suisse)" + } + ], + "md5": "666b248aedca84d0baa599fad41379fb" + }, + { + "authorized_access_point": "Glaris (Suisse ; canton)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/028992105", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028992105", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12071251k", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/152492599" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/170356636" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Cat\u00e9gorie:Canton_de_Glaris" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgen\u00f6ssische Stabsb\u00fcreau unter der direktion von Oberst Siegfried ver\u00f6ffentlicht", + "GDEL. SY 1990/91" + ] + }, + { + "noteType": "general", + "label": [ + "Canton suisse" + ] + } + ], + "pid": "028992105", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Suisse - Cantons" + } + ], + "relation_pid": { + "value": "157134822", + "type": "redirect_from" + }, + "variant_access_point": [ + "Glarus (Suisse ; canton)" + ], + "md5": "4714f1a00b893106ceab521e62188526" + }, + { + "authorized_access_point": "Zoug (Suisse ; canton)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/028992318", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028992318", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040680649" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/20144647636134910488" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. SY 1990/91" + ] + } + ], + "pid": "028992318", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Suisse - Cantons" + } + ], + "md5": "942731cc102d3d9bdb5b452559c37297" + }, + { + "authorized_access_point": "Shandong (Chine ; province)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/028996593", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028996593", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12071578f", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/142766112" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. Atlas Le Monde. BN Service chinois" + ] + }, + { + "noteType": "general", + "label": [ + "Province chinoise" + ] + } + ], + "pid": "028996593", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Chine (nord)" + }, + { + "authorized_access_point": "Chine - Provinces" + } + ], + "variant_access_point": [ + "Chan-tong", + "Chan-toung", + "Shan-tung", + "Shangdong", + "Shantung", + "\u5c71\u6771\u7701", + "\u5c71\u4e1c\u7701", + "Shandong Sheng" + ], + "md5": "bb9edda7349c3fe5072983ff5654d50f" + }, + { + "authorized_access_point": "Hebei (Chine ; province)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/028996690", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028996690", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12071585q", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/172144783025014766925" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. BN Service chinois" + ] + }, + { + "noteType": "general", + "label": [ + "Province chinoise" + ] + } + ], + "pid": "028996690", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Chine (nord)" + }, + { + "authorized_access_point": "Chine - Provinces" + } + ], + "variant_access_point": [ + "H\u00ea-pei (Chine)", + "Ho-pei (Chine)", + "Hopeh (Chine)", + "\u6cb3\u5317\u7701", + "Hebei Sheng" + ], + "md5": "5bdb578e267f81ef05796c7319a7dad9" + }, + { + "authorized_access_point": "Suisse - 1845-1847 (Sonderbund)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/029152887", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029152887", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12083794x", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)950025607" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Laval RVM, 1992-08" + ] + } + ], + "pid": "029152887", + "type": "bf:Place", + "md5": "232ba439f76a51f3faa3cfcbe51e3f8a" + }, + { + "authorized_access_point": "Avenches (Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/029183340", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029183340", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb120863320", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040040070" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/131328802" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Avenches" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL" + ] + } + ], + "pid": "029183340", + "type": "bf:Place", + "variant_access_point": [ + "Aventicum (ville ancienne)" + ], + "md5": "556da92030ff491b0e95663e2d8f503e" + }, + { + "authorized_access_point": "If, Ch\u00e2teau d' (Bouches-du-Rh\u00f4ne)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/029216540", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029216540", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12088946t", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/249396875" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Ch\u00e2teau_d'If" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL" + ] + } + ], + "pid": "029216540", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "If (France ; \u00eele)" + } + ], + "variant_access_point": [ + "Marseille (Bouches-du-Rh\u00f4ne) - Ch\u00e2teau d'If" + ], + "md5": "46986a42fa65df645e7320486d6b5c05" + }, + { + "authorized_access_point": "La Motte-Servolex (Savoie)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/029220661", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029220661", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12089241d", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/132623678" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/La_Motte-Servolex" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. communes, 1984" + ] + } + ], + "pid": "029220661", + "type": "bf:Place", + "variant_access_point": [ + "Motte-Servolex, La (Savoie)" + ], + "md5": "b108336a7f71ae237fecd106559c1825" + }, + { + "authorized_access_point": "Yunnan (Chine ; province)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/029345529", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029345529", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/172766187" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. Atlas Le Monde" + ] + }, + { + "noteType": "general", + "label": [ + "Province chinoise" + ] + } + ], + "pid": "029345529", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Chine (sud)" + }, + { + "authorized_access_point": "Chine - Provinces" + } + ], + "variant_access_point": [ + "Yun-nan", + "\u96f2\u5357\u7701", + "\u4e91\u5357\u7701", + "Yunnan Sheng" + ], + "md5": "2ddee88e26ee7648d4a4d54580e95fc6" + }, + { + "authorized_access_point": "R\u00edobamba (\u00c9quateur)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/029368707", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029368707", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12101014j", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/127968369" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Riobamba" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Atlas universalis" + ] + }, + { + "noteType": "general", + "label": [ + "Capitale de la province du Chimborazo" + ] + } + ], + "pid": "029368707", + "type": "bf:Place", + "md5": "1bd71ff92067630fba0d407783b0003f" + }, + { + "authorized_access_point": "Uri (Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/029453208", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029453208", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12107734j", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040621294" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/486145858125123022135" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/124361741" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. SY 1990/91" + ] + }, + { + "noteType": "general", + "label": [ + "Canton suisse" + ] + } + ], + "pid": "029453208", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Suisse - Cantons" + } + ], + "relation_pid": { + "value": "225674920", + "type": "redirect_from" + }, + "md5": "f0dd4a7dabe2e454f983c5b7bd914b9e" + }, + { + "authorized_access_point": "Saint-Maurice (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/029459060", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029459060", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04118257X" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/249012358" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GLU" + ] + }, + { + "noteType": "general", + "label": [ + "Commune du Valais" + ] + } + ], + "pid": "029459060", + "type": "bf:Place", + "variant_access_point": [ + "Acaunum (ville ancienne)", + "Agaunum (ville ancienne)", + "Saint-Maurice d'Agaune (Valais, Suisse)" + ], + "md5": "2eef14f668f40bd254303cdad0b73ace" + }, + { + "authorized_access_point": "Alpes (est)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/029502764", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029502764", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12111693j", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040757242" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/173146304" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Alps, Eastern ; LCSH, 1988-12. Alpes orientales ; Laval RVM, 1988-12" + ] + } + ], + "pid": "029502764", + "type": "bf:Place", + "narrower": [ + { + "authorized_access_point": "Alpes dinariques" + }, + { + "authorized_access_point": "Alpes juliennes" + }, + { + "authorized_access_point": "Dolomites (Italie ; massif)" + }, + { + "authorized_access_point": "Alpes carniques" + } + ], + "variant_access_point": [ + "Alpes orientales" + ], + "md5": "7b34ae2e00240623c28645b855b0e2a7" + }, + { + "authorized_access_point": "La Turbie (Alpes-Maritimes)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/029508347", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029508347", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12112125x", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/170363823" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/La_Turbie" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. Dict. communes, 1984" + ] + } + ], + "pid": "029508347", + "type": "bf:Place", + "variant_access_point": [ + "Turbie, La (Alpes-Maritimes)" + ], + "md5": "0454e7cdffedb81ace7899de33a51a4e" + }, + { + "authorized_access_point": "Charolles (Sa\u00f4ne-et-Loire ; r\u00e9gion)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/029571219", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029571219", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11956257v", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/357144783127363163101" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Charolais_(pays)" + } + ], + "pid": "029571219", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Charolais (France)" + } + ], + "md5": "34cdda9131bed78cb147ee9d0d4c9c1b" + }, + { + "authorized_access_point": "Pont-d'Ain (Ain)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/029592259", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029592259", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb121185395", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/143067429" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Pont-d'Ain" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. communes, 1984" + ] + } + ], + "pid": "029592259", + "type": "bf:Place", + "md5": "1e5c41e1b450f3310769223cd529f1ec" + }, + { + "authorized_access_point": "Aoste (Is\u00e8re)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/029680344", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029680344", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/245116875" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Aoste_(Is\u00e8re)" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. communes, 1984" + ] + } + ], + "pid": "029680344", + "type": "bf:Place", + "md5": "2746b80c386b3a1e3f63f3b6d47c9a34" + }, + { + "authorized_access_point": "Valangin (Neuch\u00e2tel, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/029693756", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029693756", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041193458" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/42148570488424310649" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Atlas Le Monde" + ] + } + ], + "pid": "029693756", + "type": "bf:Place", + "md5": "0948ab5c7dd5252555249c0875bb3e45" + }, + { + "authorized_access_point": "Valangin (Neuch\u00e2tel, Suisse) - Ch\u00e2teau", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/029693772", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029693772", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb121262977", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)946532389" + } + ], + "pid": "029693772", + "type": "bf:Place", + "variant_access_point": [ + "Valangin (Neuch\u00e2tel, Suisse) - Ch\u00e2teau de Valangin" + ], + "md5": "9686febc13709c1a1f285996cce3faed" + }, + { + "authorized_access_point": "Aquitaine (France)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/02976436X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/02976436X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12131785m", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04002525X" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/127778483" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Aquitaine_(ancienne_r\u00e9gion_administrative)" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL" + ] + }, + { + "noteType": "general", + "label": [ + "Sous cette vedette on trouve les ouvrages qui traitent de l'Aquitaine historique et/ou de l'actuelle r\u00e9gion d'Aquitaine" + ] + } + ], + "pid": "02976436X", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "France (sud-ouest)" + }, + { + "authorized_access_point": "France - R\u00e9gions" + } + ], + "variant_access_point": [ + "Aquitaine" + ], + "md5": "1ae1eb3a664809e6b84b52069448574f" + }, + { + "authorized_access_point": "Sion (Valais, Suisse) - Site arch\u00e9ologique du Petit-Chasseur", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "914", + "name": "G\u00e9ographie de l'Europe" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "930", + "name": "Arch\u00e9ologie. Histoire ancienne" + } + ], + "identifier": "http://www.idref.fr/029805279", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029805279", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb121353008", + "source": "BNF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "La pr\u00e9histoire / D. Vialou, 2004 : Petit-Chasseur", + "Dict. historique de la Suisse (art. : Sion) - http://www.hls-dhs-dss.ch (2015-06-25)", + "Le n\u00e9olithique en Europe, 2007 : Sion (Petit-Chasseur)", + "Dict. de la pr\u00e9histoire / A. Leroi-Gourhan, 2005 : Sion-Petit-Chasseur" + ] + }, + { + "noteType": "general", + "label": [ + "Site pr\u00e9historique (n\u00e9olithique et \u00e2ge du bronze) du quartier de Saint-Gu\u00e9rin \u00e0 Sion (Valais), autour de l'avenue du Petit-Chasseur et des rues adjacentes (habitats cortaillod et n\u00e9cropole m\u00e9galithique (dolmens) avec st\u00e8les anthropomorphes)" + ] + } + ], + "pid": "029805279", + "type": "bf:Place", + "variant_access_point": [ + "Petit-Chasseur (Suisse ; site arch\u00e9ologique)", + "Sion-Petit-Chasseur (Suisse ; site arch\u00e9ologique)" + ], + "md5": "d924369aa280d61f2732d0a4ef098162" + }, + { + "authorized_access_point": "Fujian (Chine ; province)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/029857678", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029857678", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12139611q", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/173310302" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. Atlas Le Monde" + ] + }, + { + "noteType": "general", + "label": [ + "Province chinoise" + ] + } + ], + "pid": "029857678", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Chine (sud)" + }, + { + "authorized_access_point": "Chine - Provinces" + } + ], + "variant_access_point": [ + "Fou-kien (Chine)", + "Fukien (Chine)", + "\u798f\u5efa\u7701", + "Fujian Sheng" + ], + "md5": "dd04c38d5bbcf450af315d578f946016" + }, + { + "authorized_access_point": "Virieu-le-Grand (Ain)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/02985850X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/02985850X", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/148067721" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Virieu-le-Grand" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. Dict. communes, 1984" + ] + } + ], + "pid": "02985850X", + "type": "bf:Place", + "md5": "12d91eb7bf636046bc40517535ef5189" + }, + { + "authorized_access_point": "Aar, Massif de l' (Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/030398614", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/030398614", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12182069q", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040000206" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/30144647639575548307" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. Laval RVM, 1990-08" + ] + } + ], + "pid": "030398614", + "type": "bf:Place", + "narrower": [ + { + "authorized_access_point": "Jungfrau (Suisse ; mont)" + } + ], + "variant_access_point": [ + "Aar-Gothard, Massif de l' (Suisse)", + "Gothard, Massif du (Suisse)", + "Jungfrau, Massif de la (Suisse)", + "Saint-Gothard, Massif du (Suisse)" + ], + "md5": "2855be5ab8016bf697e48b61bb40b666" + }, + { + "authorized_access_point": "Beaujeu (Rh\u00f4ne)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/030512425", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/030512425", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb133247112", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/168033061" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Beaujeu_(Rh\u00f4ne)" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. communes, 1984" + ] + } + ], + "pid": "030512425", + "type": "bf:Place", + "md5": "2b911897820e1a9f0272f7dd18a0d4b6" + }, + { + "authorized_access_point": "Sion (Valais, Suisse) - Ch\u00e2teau de Val\u00e8re", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "200", + "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "355", + "name": "Art et science militaires" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "720", + "name": "Architecture" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "914" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Notre-Dame de Val\u00e8re (Church : Sion, Switzerland)", + "source": "LCA", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/names/n91123541", + "source": "LCA" + } + ] + } + ], + "identifier": "http://www.idref.fr/030519799", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/030519799", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12191796h", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042499909" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikip\u00e9dia : ch\u00e2teau de Val\u00e8re - https://fr.wikipedia.org (2021-08-10)", + "Wikipedia : Basilica di Val\u00e8re, castello di Val\u00e8re - https:/:it.wikipedia.org (2021-08-10)", + "Wikipedia : Basilique de Val\u00e8re (oder Basilika von Valeria, Schloss Valeria) - https://de.wikipedia.org (2021-08-10)", + "Petit Robert des noms propres, 2015 (art. : Sion) : \u00e9glise Notre-Dame de Val\u00e8re", + "Grand Larousse universel (art. : Sion) : \u00e9glise Notre-Dame de Val\u00e8re", + "Guides Voir : Suisse, 2012", + "Sion Tourisme : ch\u00e2teau de Val\u00e8re (interface en fran\u00e7ais), Schloss Valeria (interface en allemand) - https://siontourisme.ch (2021-08-10)" + ] + }, + { + "noteType": "general", + "label": [ + "Le \"ch\u00e2teau de Val\u00e8re\", qui couronne la colline du m\u00eame nom dominant Sion, est en r\u00e9alit\u00e9 une \u00e9glise fortifi\u00e9e des 12e-13e si\u00e8cles, \u00e9glise entour\u00e9e de maisons qui furent r\u00e9sidence des chanoines de la cath\u00e9drale de la ville, le tout prot\u00e9g\u00e9 par une enceinte (remparts et tours), le clocher de l'\u00e9glise \u00e9tant en quelque sorte le donjon de ce v\u00e9ritable petit bourg m\u00e9di\u00e9val. L'\u00e9glise Notre-Dame de Val\u00e8re fut \u00e9lev\u00e9e au rang de basilique (mineure) sous le pontificat de Jean-Paul II, en 1987. Ses chapiteaux sont romans, ses fresques, gothiques ; son orgue de la fin du 14e si\u00e8cle est le plus ancien du monde sur lequel on peut encore jouer. Le complexe abrite le Mus\u00e9e d'histoire du Valais" + ] + } + ], + "pid": "030519799", + "type": "bf:Place", + "variant_access_point": [ + "Basilica di Val\u00e8re (Sion, Valais, Suisse)", + "Basilika von Valeria (Sion, Valais, Suisse)", + "Basilique de Val\u00e8re (Sion, Valais, Suisse)", + "Basilique Notre-Dame de Val\u00e8re (Sion, Valais, Suisse)", + "Castello di Val\u00e8re (Sion, Valais, Suisse)", + "Ch\u00e2teau de Val\u00e8re (Sion, Valais, Suisse)", + "\u00c9glise Notre-Dame de Val\u00e8re (Sion, Valais, Suisse)", + "Kirche von Valeria (Sion, Valais, Suisse)", + "Notre-Dame de Val\u00e8re, Basilique (Sion, Valais, Suisse)", + "Schloss Valeria (Sion, Valais, Suisse)", + "Val\u00e8re, Ch\u00e2teau de (Sion, Valais, Suisse)", + "Valeria, Schloss (Sion, Valais, Suisse)" + ], + "md5": "23999c3d90343b8ab0e4ce60d7c3e24f" + }, + { + "authorized_access_point": "Valteline (Italie)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/03055537X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/03055537X", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041081757" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/8711148574329824430003" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GLU" + ] + } + ], + "pid": "03055537X", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Sondrio (Italie ; province)" + } + ], + "variant_access_point": [ + "Valtellina (Italie)" + ], + "md5": "b0e3798a2a9b803b4c9375717db034eb" + }, + { + "authorized_access_point": "Alpes (Allemagne)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/030628156", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/030628156", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12200597c", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040050114" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/639144783049465966845" + } + ], + "pid": "030628156", + "type": "bf:Place", + "variant_access_point": [ + "Alpes bavaroises" + ], + "md5": "b64e148d0593ac4861c9322daf6c3d38" + }, + { + "authorized_access_point": "Alpes (France ; nord)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/030640091", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/030640091", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12201582k", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040932060" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/172820298" + } + ], + "pid": "030640091", + "type": "bf:Place", + "narrower": [ + { + "authorized_access_point": "Aravis, Cha\u00eene des (France)" + } + ], + "variant_access_point": [ + "Alpes du Nord (France)" + ], + "md5": "aa2e6b954fa641fd282a261ed62dd813" + }, + { + "authorized_access_point": "Morat (Fribourg, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/031139876", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/031139876", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040751058" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/124377145" + }, + { + "source": "DHS", + "type": "uri", + "value": "http://hls-dhs-dss.ch/articles/001014/" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL" + ] + }, + { + "noteType": "general", + "label": [ + "Commune du canton de Fribourg (Suisse), chef-lieu du district du Lac. Elle est officiellement bilingue fran\u00e7ais-allemand. Nom allemand : Murten" + ] + } + ], + "pid": "031139876", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Fribourg (Suisse ; canton)" + } + ], + "md5": "87e179b3fdde9c47509d94af8581f6e6" + }, + { + "authorized_access_point": "Suisse (ouest)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/031211097", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/031211097", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12246994q", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040658236" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/621144783051845602289" + } + ], + "pid": "031211097", + "type": "bf:Place", + "variant_access_point": [ + "Suisse occidentale" + ], + "md5": "02b2062410b47cd35f6fa634f29ae508" + }, + { + "authorized_access_point": "Aix-la-Chapelle (Allemagne ; r\u00e9gion)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/031649424", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/031649424", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12282480h", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040000079" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/124330404" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GeoNames (2018-06-27)" + ] + }, + { + "noteType": "general", + "label": [ + "Aix-la-Chapelle est une ville d'Allemagne situ\u00e9e dans le Land de Rh\u00e9nanie-du-Nord-Westphalie. Elle se situe \u00e0 5 km de la jonction des fronti\u00e8res de l'Allemagne, des Pays-Bas et de la Belgique. C'est la ville la plus \u00e0 l'ouest de l'Allemagne", + "Coordonn\u00e9es en degr\u00e9s s\u00e9xag\u00e9simaux : N 50\u00b046\u203236\u2033 / E 6\u00b005\u203200\u2033" + ] + } + ], + "pid": "031649424", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Rh\u00e9nanie du Nord-Westphalie (Allemagne)" + } + ], + "relation_pid": { + "value": "228265843", + "type": "redirect_from" + }, + "variant_access_point": [ + "Aachen", + "Aken", + "Akwizgran", + "Aquisgr\u00e1n", + "Aquisgrano" + ], + "md5": "06cd698c8d9609680315aa9042c6015e" + }, + { + "authorized_access_point": "Meillonnas (Ain)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/03168520X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/03168520X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12285327h", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/135027706" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Meillonnas" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. communes, 1992" + ] + } + ], + "pid": "03168520X", + "type": "bf:Place", + "md5": "0c4da5774060196625afc9592bfa7e37" + }, + { + "authorized_access_point": "Mahajanga (Madagascar)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/031702473", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/031702473", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb122867940", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/131443013" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Mahajanga" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL" + ] + } + ], + "pid": "031702473", + "type": "bf:Place", + "narrower": [ + { + "authorized_access_point": "Betsiboka (Madagascar ; r\u00e9gion)" + } + ], + "broader": [ + { + "authorized_access_point": "Madagascar" + } + ], + "variant_access_point": [ + "Majunga (Madagascar)", + "Massali" + ], + "md5": "bdb8e962cf151f40f03a03aa4c4c0a7b" + }, + { + "authorized_access_point": "Bourg-Saint-Maurice (Savoie ; r\u00e9gion)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/031977561", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/031977561", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb123094336", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/233850704" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Bourg-Saint-Maurice" + } + ], + "pid": "031977561", + "type": "bf:Place", + "md5": "f7f6143258c4536cb70030f51284c530" + }, + { + "authorized_access_point": "Alpes (Sud)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/032028555", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/032028555", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12313654g", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040583988" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/430144783136365031650" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL" + ] + } + ], + "pid": "032028555", + "type": "bf:Place", + "variant_access_point": [ + "Alpes du Sud", + "Alpes m\u00e9ridionales" + ], + "md5": "b667d21c75fae791bc83d961f4609c1c" + }, + { + "authorized_access_point": "Virieu-le-Petit (Ain)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/032029667", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/032029667", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12313753d", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/142064160" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Virieu-le-Petit" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. communes, 1992" + ] + } + ], + "pid": "032029667", + "type": "bf:Place", + "md5": "b097ce355394c0423a87d4d0edfb4fa0" + }, + { + "authorized_access_point": "Champr\u00e9veyres (Suisse ; site arch\u00e9ologique)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/03210572X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/03210572X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12320021b", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)043212646" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/1147309939037850707" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Hauterive-Champr\u00e9veyres, les plantes de l'\u00e2ge du Bronze / C. Jacquat, 1988" + ] + } + ], + "pid": "03210572X", + "type": "bf:Place", + "variant_access_point": [ + "Hauterive-Champr\u00e9veyres (Suisse ; site arch\u00e9ologique)" + ], + "md5": "a4c9669f44acf1811f19aa023cb52b7e" + }, + { + "authorized_access_point": "Rh\u00e9nan, Foss\u00e9", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/03261991X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/03261991X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb123615286", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040755614" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/39144647639299173338" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. g\u00e9ol., 1988" + ] + } + ], + "pid": "03261991X", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Rhin, Vall\u00e9e moyenne du" + }, + { + "authorized_access_point": "Rh\u00e9nans, Pays (sud)" + } + ], + "variant_access_point": [ + "Foss\u00e9 Rh\u00e9nan" + ], + "md5": "82532410c9764db60bfb9475e4b096cb" + }, + { + "authorized_access_point": "Autriche-Hongrie", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/032861621", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/032861621", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb123809301", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040756130" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/38146285364515371330" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GLU. \u00d6sterreich-Ungarn ; SWD, 1991" + ] + }, + { + "noteType": "general", + "label": [ + "Sous cette vedette, on trouve les ouvrages qui traitent de l'ensemble de l'Autriche-Hongrie (1867-1918). Les ouvrages qui traitent plus particuli\u00e8rement des parties autrichienne et hongroise de l'empire se trouvent sous les vedettes Autriche et Hongrie (suivies des subdivisions appropri\u00e9es)" + ] + } + ], + "pid": "032861621", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Europe du Centre-Est" + } + ], + "variant_access_point": [ + "Austro-hongroise, Monarchie", + "Double Monarchie", + "Empire austro-hongrois", + "Monarchie austro-hongroise", + "\u00f6sterreich-Ungarn", + "Osztr\u00e1k-Magyar Mon\u00e1rchia" + ], + "md5": "93f0ca86ffb79a7153de34db970e090d" + }, + { + "authorized_access_point": "Fribourg (Fribourg, Suisse) - Cath\u00e9drale Saint-Nicolas", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/032972997", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/032972997", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12389271v", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)945514727" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "https://fr.wikipedia.org/wiki/Cath%C3%A9drale_Saint-Nicolas_de_Fribourg" + ] + }, + { + "noteType": "general", + "label": [ + "Cath\u00e9drale depuis 1924" + ] + } + ], + "pid": "032972997", + "type": "bf:Place", + "relation_pid": { + "value": "060550279", + "type": "redirect_from" + }, + "variant_access_point": [ + "Eglise Saint-Nicolas (Fribourg, Fribourg, Suisse)" + ], + "md5": "4bb6094d9ae6ef1ffcb8a1b76f53392e" + }, + { + "authorized_access_point": "Saint-Bonnet-les-Oules (Loire)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/033023808", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/033023808", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb123932781", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/1144648107425911473" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Saint-Bonnet-les-Oules" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. des communes, 1992" + ] + } + ], + "pid": "033023808", + "type": "bf:Place", + "md5": "5dc96f29158c4182bf91415f2f66aa82" + }, + { + "authorized_access_point": "Tokelau", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/033459118", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/033459118", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12432262b", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/156083443" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Tokelau" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "LAVAL RVM, 1994-08", + "GDEL. Atlas \"Le Monde\"" + ] + }, + { + "noteType": "general", + "label": [ + "Petit archipel polyn\u00e9sien compos\u00e9 de trois atolls (Atafu, Nukunonu, Fakaofo)" + ] + } + ], + "pid": "033459118", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Polyn\u00e9sie" + }, + { + "authorized_access_point": "Pacifique, \u00celes du" + } + ], + "variant_access_point": [ + "Union, \u00celes de l'", + "Tokelau Islands", + "Tokelau, \u00celes de" + ], + "md5": "a595d3de4dcc964734d59061c165ea6b" + }, + { + "authorized_access_point": "F\u00e9lines (Ard\u00e8che)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/034580506", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/034580506", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12532193h", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/244300953" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/F\u00e9lines_(Ard\u00e8che)" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. communes, 1992" + ] + } + ], + "pid": "034580506", + "type": "bf:Place", + "md5": "071049d15e0a0575b4f17ba35ee81826" + }, + { + "authorized_access_point": "Doubs, Vall\u00e9e du", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/034800964", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/034800964", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12551685f", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)963626132" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/236125833" + } + ], + "pid": "034800964", + "type": "bf:Place", + "narrower": [ + { + "authorized_access_point": "Doubs, Vall\u00e9e basse du" + }, + { + "authorized_access_point": "Doubs, Vall\u00e9e haute du" + } + ], + "md5": "699123a007643be6840c612b249b13ff" + }, + { + "authorized_access_point": "Thamusida (ville ancienne)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/034910190", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/034910190", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb125612110", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/46144647641939898059" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Thamusida : fouilles du Service des Antiquit\u00e9s du Maroc.1, Texte / Jean-Pierre Callu, Jean-Paul Morel, Ren\u00e9 Rebuffat... [et al.], 1965", + "Rachet. Brockhaus, 19. Aufl." + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9e sur la rive de l'oued Sebou, pr\u00e8s de Kenitra, Thamusida \u00e9tait une ancienne colonie berb\u00e8re, conquise par les Romains au 1er si\u00e8cle avant J.C. Sous l'Empire, elle devint essentiellement une ville de garnison, reconstruite et agrandie au II\u00e8me si\u00e8cle apr\u00e8s J.C. apr\u00e8s une inondation. Semble avoir \u00e9t\u00e9 abandonn\u00e9e entre 274 et 280. Ruines d'un grand camp militaire du temps de Marc Aur\u00e8le, d'un temple, d'un praetorium et de grandes thermes, situ\u00e9es \u00e0 l'emplacement de l'actuel marabout de Sidi Ali ben Ahmed" + ] + } + ], + "pid": "034910190", + "type": "bf:Place", + "variant_access_point": [ + "Tamusida (ville ancienne)" + ], + "md5": "6408664a1c1cacc353927bb89367570f" + }, + { + "authorized_access_point": "France - 1789-1799 (R\u00e9volution) - R\u00e9publiques soeurs", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "940", + "name": "Histoire de l'Europe" + } + ], + "identifier": "http://www.idref.fr/03512802X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/03512802X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13169029w", + "source": "BNF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Les R\u00e9publiques soeurs / J.-L. Harouel" + ] + }, + { + "noteType": "dataNotFound", + "label": [ + "LCSH, 1996-09" + ] + }, + { + "noteType": "general", + "label": [ + "\u00c9tats satellites mis en place par la R\u00e9publique fran\u00e7aise d\u00e8s 1792 (R\u00e9publique rauracienne), puis surtout \u00e0 partir de 1795 (R. batave). Ces r\u00e9publiques furent renvers\u00e9es en 1799 (R. parth\u00e9nop\u00e9enne, R. romaine), annex\u00e9es \u00e0 la France (R. ligurienne, 1805), ou transform\u00e9es en royaumes (Italie, 1805 ; Hollande, 1806), tandis que la R\u00e9publique helv\u00e9tique redevenait Conf\u00e9d\u00e9ration helv\u00e9tique en 1803" + ] + } + ], + "pid": "03512802X", + "type": "bf:Place", + "narrower": [ + { + "authorized_access_point": "R\u00e9publique cispadane (1796-1797)" + }, + { + "authorized_access_point": "G\u00eanes (Italie) - 1789-1815" + }, + { + "authorized_access_point": "Naples (Royaume) - 1799 (R\u00e9volution)" + }, + { + "authorized_access_point": "Pays-Bas - 1795-1806 (R\u00e9publique batave)" + }, + { + "authorized_access_point": "R\u00e9publique cisalpine" + }, + { + "authorized_access_point": "Rome (Italie) - 1798-1799 (R\u00e9publique romaine)" + }, + { + "authorized_access_point": "Suisse - 1798-1803 (R\u00e9publique helv\u00e9tique)" + } + ], + "variant_access_point": [ + "R\u00e9publiques soeurs (1792-1806)" + ], + "md5": "9cde0e150cda8fea95bd4b04b9638b75" + }, + { + "authorized_access_point": "Alpes maritimes (massif)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/035220287", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/035220287", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13174970t", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040746798" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/70146462766027772779" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Atlas universalis, 1984", + "Alpes Maritimes (France et Italie) ; Laval RVM, 1997-02" + ] + } + ], + "pid": "035220287", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Alpes (France)" + }, + { + "authorized_access_point": "Alpes (Italie)" + }, + { + "authorized_access_point": "Alpes (ouest)" + } + ], + "variant_access_point": [ + "Alpi Marittime", + "Maritimes, Alpes (massif)" + ], + "md5": "591a2e90dbda232c0f0419d288949344" + }, + { + "authorized_access_point": "Saint-Georges-des-Hurti\u00e8res (Savoie)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/03530183X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/03530183X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13180196j", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/244298214" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Saint-Georges-d'Hurti\u00e8res" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. communes, 1992" + ] + } + ], + "pid": "03530183X", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Hurti\u00e8res, Pays des (France)" + } + ], + "md5": "9f80069ec0e89f9c172700f8a4fb7343" + }, + { + "authorized_access_point": "Saint-Pierre-de-Belleville (Savoie)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/035301872", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/035301872", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13180199k", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/5144648144682560894" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Saint-Pierre-de-Belleville" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. communes, 1992" + ] + } + ], + "pid": "035301872", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Hurti\u00e8res, Pays des (France)" + } + ], + "md5": "f1f5d637bb26ae0da138cdfff73d8b87" + }, + { + "authorized_access_point": "Le Caire (\u00c9gypte ; r\u00e9gion)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/035321318", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/035321318", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13181517r", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/268148574378024430004" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Le_Caire" + } + ], + "pid": "035321318", + "type": "bf:Place", + "md5": "eecde9a362e6d3921b12f4e54dd093f0" + }, + { + "authorized_access_point": "Quatre-Cantons, Lac des (Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/035444193", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/035444193", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13189770p", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040635112" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/243437017" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Lac_des_Quatre-Cantons" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GLU, 1991" + ] + } + ], + "pid": "035444193", + "type": "bf:Place", + "variant_access_point": [ + "Lucerne, Lac de (Suisse)", + "Lac des Quatre-Cantons (Suisse)", + "Vierwaldst\u00e4tter See (Suisse)" + ], + "md5": "36c215b035b5c456ba4bd82523d05277" + }, + { + "authorized_access_point": "Revermont (France)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/050211250", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/050211250", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/315125754" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Val-Revermont" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GLU. Guide bleu Franche-Comt\u00e9, Monts du Jura, 1955", + "Laval RVM, 1998-07" + ] + }, + { + "noteType": "general", + "label": [ + "Rebord occidental du Jura \u00e0 l'ouest de l'Ain, le Revermont comporte deux cha\u00eenons, de part et d'autre du Suran" + ] + } + ], + "pid": "050211250", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Jura (France ; massif)" + } + ], + "md5": "ca951aeba3129fe5337eb2fbf9338545" + }, + { + "authorized_access_point": "Cogne (Italie)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/05021778X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/05021778X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb135067940", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/127919056" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Cogne" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Robert 2", + "Operai alla Cogne / Stefano Peirano, 1997" + ] + } + ], + "pid": "05021778X", + "type": "bf:Place", + "md5": "ca6a481fb06750fa354c55d881d8b0c9" + }, + { + "authorized_access_point": "Abkhazie (G\u00e9orgie)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/050300334", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/050300334", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/137166785" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GLU. SY 1996-97", + "Laval RVM, 1999-01" + ] + }, + { + "noteType": "general", + "label": [ + "R\u00e9publique sovi\u00e9tique en 1921, R\u00e9publique autonome de la G\u00e9orgie en 1930" + ] + } + ], + "pid": "050300334", + "type": "bf:Place", + "md5": "68b8520a179acb8dd09901106f0eca17" + }, + { + "authorized_access_point": "Chasse-sur-Rh\u00f4ne (Is\u00e8re)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/050311530", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/050311530", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13114324r", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/159424557" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Chasse-sur-Rh\u00f4ne" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. communes, 1997" + ] + } + ], + "pid": "050311530", + "type": "bf:Place", + "md5": "3d24c7a9e3e4fcc7994b92df70cd1756" + }, + { + "authorized_access_point": "Moras-en-Valloire (Dr\u00f4me)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/050438417", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/050438417", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13513437t", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/173306971" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Moras-en-Valloire" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. communes, 1992" + ] + } + ], + "pid": "050438417", + "type": "bf:Place", + "md5": "114913b389f9cd7d6aa3cb3d421262cb" + }, + { + "authorized_access_point": "Nouvelle-Guin\u00e9e (\u00eele)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/050556789", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/050556789", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb126484470", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040753190" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/316924037" + } + ], + "pid": "050556789", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "M\u00e9lan\u00e9sie" + }, + { + "authorized_access_point": "Australasie" + }, + { + "authorized_access_point": "Pacifique, \u00celes du" + } + ], + "variant_access_point": [ + "Irian", + "Nouvelle Guin\u00e9e (\u00eele)" + ], + "md5": "b14790b8022f23e9fc3d0fba716167e2" + }, + { + "authorized_access_point": "Assyrie", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/050557556", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/050557556", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04003285X" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/172875652" + } + ], + "pid": "050557556", + "type": "bf:Place", + "relation_pid": { + "value": "027491870", + "type": "redirect_from" + }, + "md5": "d295e5b8b6c7bd4c65effa9c73eeca43" + }, + { + "authorized_access_point": "Samnaun (suisse) (val)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/050578480", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/050578480", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12650280j", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/124351558" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Samnaun" + } + ], + "pid": "050578480", + "type": "bf:Place", + "variant_access_point": [ + "Val samnaun (suisse)" + ], + "md5": "47a4dbe6c722ec6e0f3285a58fbb0ab1" + }, + { + "authorized_access_point": "Baden (Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/052490157", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/052490157", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13557976w", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040041646" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/49144647636482974054" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Internet (en ligne), 2000-05-23 : www.baden.ch/" + ] + }, + { + "noteType": "general", + "label": [ + "Ville et station thermale du canton d'Argovie" + ] + } + ], + "pid": "052490157", + "type": "bf:Place", + "variant_access_point": [ + "Aquae Helveticae (ville ancienne)" + ], + "md5": "bbad35163ee3b6ed8a57f3459a3a7ab6" + }, + { + "authorized_access_point": "L\u00e9man (d\u00e9partement)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/053443586", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/053443586", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/7503148574325124430009" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/L\u00e9man_(d\u00e9partement)" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GLU. Mirot" + ] + }, + { + "noteType": "general", + "label": [ + "Emploi direct en subdivision : [sujet] -- L\u00e9man (d\u00e9partement)", + "Le d\u00e9partement du L\u00e9man a \u00e9t\u00e9 cr\u00e9\u00e9 le 26-04-1798 (chef-lieu : Gen\u00e8ve ; sous-pr\u00e9fectures : Bonneville, Thonon) ; il s'\u00e9tendait sur Gen\u00e8ve, le nord de la Savoie et le pays de Gex" + ] + } + ], + "pid": "053443586", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Savoie - 1792-1815 (Occupation fran\u00e7aise)" + } + ], + "md5": "d9b1ed65dd63722eb2c1b4c09727e6bd" + }, + { + "authorized_access_point": "Copponex (Haute-Savoie)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/053500539", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/053500539", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb136008673", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/242304355" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Copponex" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. communes, 1997" + ] + } + ], + "pid": "053500539", + "type": "bf:Place", + "md5": "fe2b603c1f8fa2646f63416ddef9ba32" + }, + { + "authorized_access_point": "Harbin (Chine)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/053504755", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/053504755", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/55144647638065498121" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Ma vie : enfance en Sib\u00e9rie, jeunesse \u00e0 Harbin de 1914 \u00e0 1932 / Nina Mokrinskaia ; trad. du russe par Val\u00e9rie Morichon-Kolesnikov, 2000", + "Cihai, 1999", + "Gd Robert 2. GDEL" + ] + }, + { + "noteType": "general", + "label": [ + "Chef-lieu de la province du Heilongjiang, Chine" + ] + } + ], + "pid": "053504755", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Heilongjiang (Chine)" + } + ], + "variant_access_point": [ + "Haerbin (Chine)", + "Harbin (Chine)", + "Ha-eul-pin (Chine)", + "Kharbin (Chine)", + "\u54c8\u723e\u6ff1\u5e02", + "\u54c8\u5c14\u6ee8\u5e02", + "Ha'erbin Shi" + ], + "md5": "e73b9b7dafd21fdc385d06d9c2434639" + }, + { + "authorized_access_point": "Saint-Cyr-sur-le-Rh\u00f4ne (Rh\u00f4ne)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/055832024", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/055832024", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb136127080", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/245852500" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Saint-Cyr-sur-le-Rh\u00f4ne" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. communes, 1997" + ] + } + ], + "pid": "055832024", + "type": "bf:Place", + "variant_access_point": [ + "Saint-Cyr-sur-Rh\u00f4ne (Rh\u00f4ne)" + ], + "md5": "707e3179c341dc8f56020a4819cecece" + }, + { + "authorized_access_point": "Multan (Pakistan ; district)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/061566284", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/061566284", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/974158070665608780008" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL", + "Web, http://www.geonames.org/maps/google_29.933_71.386.html (2016-03-18)", + "Internet, http://authorities.loc.gov, 2016-04-06" + ] + }, + { + "noteType": "general", + "label": [ + "E 71\u00b023'10\" - N 29\u00b055'59\"" + ] + } + ], + "pid": "061566284", + "type": "bf:Place", + "variant_access_point": [ + "\u0645\u0644\u062a\u0627\u0646 (Pakistan ; district)" + ], + "md5": "4b6dc9fc8618c5caf09208e4d980f7c4" + }, + { + "authorized_access_point": "Chengdu (Chine)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/066838339", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/066838339", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13745600g", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/265184140" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Chengdu" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Le petit Larousse, 2001", + "\u00c9tude sur la fabrication des arcs et des fl\u00e8ches \u00e0 Chengtu en Chine / T'an Tan-Chiung / 2001" + ] + }, + { + "noteType": "general", + "label": [ + "Capitale de Sichuan" + ] + } + ], + "pid": "066838339", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Sichuan (Chine)" + } + ], + "variant_access_point": [ + "Ch'eng-tu (Chine)", + "Tch'eng-tou (Chine)", + "Chengtu (Chine)", + "\u6210\u90fd" + ], + "md5": "05f74e2f0502e884f7771d320cf4c73b" + }, + { + "authorized_access_point": "Boisset-l\u00e8s-Montrond (Loire)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/068861974", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/068861974", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/4369148574353524430000" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Boisset-l\u00e8s-Montrond" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dictionnaire des communes de France, 1992" + ] + } + ], + "pid": "068861974", + "type": "bf:Place", + "md5": "3537ee775b99cd58ba5bd8aee611947b" + }, + { + "authorized_access_point": "Ch\u00e2tel (Haute-Savoie)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "912", + "name": "G\u00e9ographie de la France" + } + ], + "identifier": "http://www.idref.fr/068954174", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/068954174", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb167056033", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/308188277" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Ch\u00e2tel" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. des communes, 2001", + "S\u00e9rie bleue 1:250000. 3528 est, Abondance. Ch\u00e2tel, 1986" + ] + } + ], + "pid": "068954174", + "type": "bf:Place", + "md5": "11609df2f4b5942bbc8a887a0557d92b" + }, + { + "authorized_access_point": "Lizerne, Vall\u00e9e de la (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/069367027", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/069367027", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/237457712" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Derborence et la vall\u00e9e de la Lizerne / Th\u00e9odore Kuonen, 2000" + ] + } + ], + "pid": "069367027", + "type": "bf:Place", + "md5": "6c6f4f153ad09d7b7ea18895e851e6aa" + }, + { + "authorized_access_point": "H\u00e9phaistia (Gr\u00e8ce ; site arch\u00e9ologique)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/070388830", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/070388830", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/70148570552324310847" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Efestia : scavi Adriani 1928-1930, 2001" + ] + } + ], + "pid": "070388830", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "\u00c9g\u00e9e, Mer (r\u00e9gion ; nord)" + }, + { + "authorized_access_point": "Lemnos (Gr\u00e8ce ; \u00eele)" + } + ], + "variant_access_point": [ + "Efestia (Gr\u00e8ce ; site arch\u00e9ologique)", + "H\u00e9phaistias (Gr\u00e8ce ; site arch\u00e9ologique)" + ], + "md5": "bd4b9306182a7defeb604d3b17f1cee9" + }, + { + "authorized_access_point": "Tire (Turquie)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/072290455", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/072290455", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/31148570657424311634" + } + ], + "pid": "072290455", + "type": "bf:Place", + "md5": "734682d7c87e929eb53b9c39b55dddcb" + }, + { + "authorized_access_point": "Saillon (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/072616652", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/072616652", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/35148570661324311641" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)956137008" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Saillon / Pascal Thurre, 2002" + ] + } + ], + "pid": "072616652", + "type": "bf:Place", + "md5": "b7f0b753725391b1d179074d03883bff" + }, + { + "authorized_access_point": "Saint-Georges-en-Couzan (Loire)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/073387576", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/073387576", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb146042604", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/1312145424714286830500" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Saint-Georges-en-Couzan" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Bottin des communes, 2001" + ] + } + ], + "pid": "073387576", + "type": "bf:Place", + "variant_access_point": [ + "St Georges-en-Couzan (Loire)" + ], + "md5": "26b75c2feaa60c6395a93e277504a432" + }, + { + "authorized_access_point": "Bo\u00ebn (Loire)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/073444073", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/073444073", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11970308w", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/149197662" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Bo\u00ebn-sur-Lignon" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. communes, 1984" + ] + } + ], + "pid": "073444073", + "type": "bf:Place", + "md5": "3ee4fa606c156e5a5cbf11403941b9e3" + }, + { + "authorized_access_point": "Serri\u00e8res (Ard\u00e8che)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/074436805", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/074436805", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb14522148r", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/172123723" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Serri\u00e8res_(Ard\u00e8che)" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Bottin des communes, 2001" + ] + } + ], + "pid": "074436805", + "type": "bf:Place", + "md5": "b6f33e595f9aa760af7b39ae8c1db596" + }, + { + "authorized_access_point": "Ch\u00e2tillon (Italie)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/074578022", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/074578022", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/144380489" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Ch\u00e2tillon_(Italie)" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Le petit Robert : dictionnaire universel des noms propres. - Le Robert, 1995" + ] + }, + { + "noteType": "general", + "label": [ + "Commune du Val d'Aoste" + ] + } + ], + "pid": "074578022", + "type": "bf:Place", + "md5": "2a8add0edeac7b6eb113b5107bdabd23" + }, + { + "authorized_access_point": "Saint-Symphorien-d'Ozon (Rh\u00f4ne)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/077271041", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/077271041", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12374893d", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/234758907" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Saint-Symphorien-d'Ozon" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. des communes, 1992" + ] + } + ], + "pid": "077271041", + "type": "bf:Place", + "md5": "249e642ac49c033fe79885c3b5ef0c30" + }, + { + "authorized_access_point": "Bri\u00e9-et-Angonnes (Is\u00e8re)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "912", + "name": "G\u00e9ographie de la France" + } + ], + "identifier": "http://www.idref.fr/077437160", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/077437160", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/4748148574355124430004" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Bri\u00e9-et-Angonnes" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. communes, 1997" + ] + } + ], + "pid": "077437160", + "type": "bf:Place", + "md5": "081578cca7862e4908836e4ed723a4a7" + }, + { + "authorized_access_point": "Salvan (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "914", + "name": "G\u00e9ographie de l'Europe" + } + ], + "identifier": "http://www.idref.fr/078613655", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/078613655", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041980409" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/81148570735924312360" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GLU", + "Guide bleu Suisse, 1991", + "Repr\u00e9sentations du rique d'avalanches et comportements sociaux dans deux communes valaisannes : Salvan et \u00c9vol\u00e8ne, 1998" + ] + }, + { + "noteType": "general", + "label": [ + "Commune du Valais, dans la vall\u00e9e du Trient" + ] + } + ], + "pid": "078613655", + "type": "bf:Place", + "narrower": [ + { + "authorized_access_point": "Les Mar\u00e9cottes (Valais, Suisse)" + } + ], + "md5": "fbec93596453e75ea9a437fae21d390e" + }, + { + "authorized_access_point": "Vonnas (Ain)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/084272996", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/084272996", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12351512m", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/245387195" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Vonnas" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. communes, 1984" + ] + } + ], + "pid": "084272996", + "type": "bf:Place", + "md5": "db50471fb29b5ac9732c32f3e28f6f6b" + }, + { + "authorized_access_point": "Gen\u00e8ve (Suisse ; r\u00e9gion)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "914", + "name": "G\u00e9ographie de l'Europe" + } + ], + "identifier": "http://www.idref.fr/085703419", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/085703419", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb14475513s", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040201392" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/55144647634843459675" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL" + ] + } + ], + "pid": "085703419", + "type": "bf:Place", + "md5": "1f740469443f1a616a8d1e5e5d58ecf6" + }, + { + "authorized_access_point": "Ohio (\u00c9tats-Unis ; cours d'eau)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/092146430", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/092146430", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11968106c", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/24144647633045786856" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GLU", + "https://fr.wikipedia.org/wiki/Ohio_(rivi\u00e8re)" + ] + }, + { + "noteType": "general", + "label": [ + "Rivi\u00e8re des Etats-Unis qui part de Pennsylvanie, forme la fronti\u00e8re entre les \u00c9tats de la Virginie-Occidentale et l'Ohio, et traverse les \u00c9tats du Kentucky, de l'Ohio, de l'Indiana et de l'Illinois, avant de se jeter dans le Mississippi \u00e0 Cairo, dans l'Illinois. 1570 km." + ] + } + ], + "pid": "092146430", + "type": "bf:Place", + "variant_access_point": [ + "Ohio", + "Ohio River (\u00c9tats-Unis ; cours d'eau)" + ], + "md5": "43119b5ad6b09ead1d85ba33cd7117f5" + }, + { + "authorized_access_point": "Rivoli (Italie)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "914", + "name": "G\u00e9ographie de l'Europe" + } + ], + "identifier": "http://www.idref.fr/09445423X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/09445423X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15551512c", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/149005556" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Rivoli" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Guida d'Italia, Torino e valle d'Aosta, Touring club italiano, Milan, 1959" + ] + } + ], + "pid": "09445423X", + "type": "bf:Place", + "md5": "b430553cdd3cbb872a3101b2a5dfc9d4" + }, + { + "authorized_access_point": "Bussi\u00e8res (Loire)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/095140484", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/095140484", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15060567r", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/126846977" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Bussi\u00e8res_(Sa\u00f4ne-et-Loire)" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "\"La soie, c'est notre muse\" : le tissage de la soie \u00e0 Bussi\u00e8res, du second Empire au Front populaire / Mireille Grivot ; [publi\u00e9 par l'] Institut des \u00e9tudes r\u00e9gionales et des patrimoines, 2005" + ] + } + ], + "pid": "095140484", + "type": "bf:Place", + "md5": "aa354f71c22e9971708e0a4e3d9fa36b" + }, + { + "authorized_access_point": "La Chapelle-Blanche (Savoie)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "912", + "name": "G\u00e9ographie de la France" + } + ], + "identifier": "http://www.idref.fr/102120935", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/102120935", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb150472227", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/139948506" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/La_Chapelle-Blanche_(Savoie)" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. communes, 2001" + ] + } + ], + "pid": "102120935", + "type": "bf:Place", + "variant_access_point": [ + "Chapelle-Blanche, La (Savoie)" + ], + "md5": "fae66a1ba4d25226326f8a632088149f" + }, + { + "authorized_access_point": "Kentucky (\u00c9tats-Unis ; cours d'eau)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/102147817", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/102147817", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/88148570693824312469" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "https://fr.wikipedia.org/wiki/Kentucky_(rivi\u00e8re)/, 2024-07-18" + ] + }, + { + "noteType": "general", + "label": [ + "La Kentucky est une rivi\u00e8re du Kentucky aux \u00c9tats-Unis, affluent rive gauche de la rivi\u00e8re Ohio, donc un sous-affluent du Mississippi" + ] + } + ], + "pid": "102147817", + "type": "bf:Place", + "variant_access_point": [ + "Kentucky river (Ky. ; cours d'eau)" + ], + "md5": "8e7943fd7ae2b139537d3a23f816ef8e" + }, + { + "authorized_access_point": "Lusaka (Zambie)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/113070926", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/113070926", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb151948916", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/151258315" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Lusaka" + } + ], + "pid": "113070926", + "type": "bf:Place", + "md5": "7761d8141aabfb063456786f2a04ee17" + }, + { + "authorized_access_point": "Bas-Valais (Suisse)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "914", + "name": "G\u00e9ographie de l'Europe" + } + ], + "identifier": "http://www.idref.fr/114526591", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/114526591", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb144160064", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040786528" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/51144647641031129112" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL", + "https://www.vs.ch/web/communes/-/bas-valais, 2022-09-27", + "\u00c0 la d\u00e9couverte de trois r\u00e9gions alpines, une culture : Bas-Valais, vall\u00e9e d'Aoste, Haute-Savoie - Savoie, 2000" + ] + }, + { + "noteType": "general", + "label": [ + "R\u00e9gion du Canton du Valais comprenant les districts de Monthey, St-Maurice, Entremont et Martigny" + ] + } + ], + "pid": "114526591", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Valais (Suisse)" + } + ], + "variant_access_point": [ + "Valais, Bas- (Suisse)" + ], + "md5": "1c5c1f8f2c2040adc6e4e34b05f3062b" + }, + { + "authorized_access_point": "Aletsch, Grand Glacier d' (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/116317825", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/116317825", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15240705p", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040721000" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/170096434" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Le glacier de l'Aletsch et le lac de M\u00e4rjelen / Roland Bonaparte. Paris : 1889." + ] + }, + { + "noteType": "general", + "label": [ + "E 8\u00b04' / N 46\u00b026'" + ] + } + ], + "pid": "116317825", + "type": "bf:Place", + "variant_access_point": [ + "Aletschgletscher (Suisse)", + "Grosser Aletschgletscher (Valais, Suisse)", + "Glacier d'Aletsch (Valais, Suisse)", + "Aletsch, Glacier d' (Valais, Suisse)", + "Grand Glacier d'Aletsch (Valais, Suisse)" + ], + "md5": "f11cd3845ac6f413a7f5407c6f388d44" + }, + { + "authorized_access_point": "Albanie (nord)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/116459425", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/116459425", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/55148570478224310503" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)947297987" + } + ], + "pid": "116459425", + "type": "bf:Place", + "md5": "0a87dfd9b7c84d1802a4714a86973ab1" + }, + { + "authorized_access_point": "Dalian (Chine)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/119411016", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/119411016", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/23145243768374441278" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "\u00c9tude de la transformation des paysages aux limites des agglom\u00e9rations. Les exemples de Caen et Dalian. / Xiao Wang, 2007" + ] + }, + { + "noteType": "general", + "label": [ + "Ville de la province du Liaoning" + ] + } + ], + "pid": "119411016", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Liaoning (Chine)" + } + ], + "variant_access_point": [ + "\u5927\u9023\u5e02", + "\u5927\u8fde\u5e02", + "Dalian Shi" + ], + "md5": "cb1e64e2ce5e3e5f61ba47b546148937" + }, + { + "authorized_access_point": "Chermignon (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/123048338", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/123048338", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/73148570504824310991" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04201459X" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Lutte de clans, lutte de classes : Chermignon, la politique au village / Uli Windisch, 1986.", + "https://www.commune-cransmontana.ch/pages/la-commune-de-crans-montana-3352", + "Internet, http://www.chermignon.ch, 2008-04-09" + ] + }, + { + "noteType": "general", + "label": [ + "Village du canton du Valais. Ancienne commune. Rattach\u00e9 \u00e0 la commune de Crans-Montana en 2017" + ] + } + ], + "pid": "123048338", + "type": "bf:Place", + "md5": "b40166a2b21ed98e1cfd3a089856edd7" + }, + { + "authorized_access_point": "Saint Martin de la Porte (Savoie)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/124441092", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/124441092", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/241869154" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Saint-Martin-de-la-Porte" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://fr.wikipedia.org/wiki/Saint-Martin-de-la-Porte" + ] + } + ], + "pid": "124441092", + "type": "bf:Place", + "md5": "ce97fd22ed441387e8d73e2e341dad6c" + }, + { + "authorized_access_point": "L\u00f6tschberg, Tunnel de base du (Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/127372547", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/127372547", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/139148570539024310972" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)96475455X" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Tunnel de base du L\u00f6tschberg : de la roche au chemin de fer / Felix freank, 2008", + "https://fr.wikipedia.org/wiki/Tunnel_de_base_du_L%C3%B6tschberg, 2022-09-13" + ] + }, + { + "noteType": "general", + "label": [ + "Tunnel ferroviaire qui relie le canton du Valais \u00e0 celui de Berne. Inaugur\u00e9 en 2007." + ] + } + ], + "pid": "127372547", + "type": "bf:Place", + "variant_access_point": [ + "Tunnel de base du L\u00f6tschberg (Suisse)", + "L\u00f6tschberg Basistunnel (Suisse)" + ], + "md5": "c064ed095d71d1f45c58836ae98eb5d3" + }, + { + "authorized_access_point": "Saint-Barth\u00e9lemy-de-Vals (Dr\u00f4me)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/131577166", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/131577166", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb10755012m", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/299563798" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Saint-Barth\u00e9lemy-de-Vals" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dictionnaire des communes, 2002" + ] + } + ], + "pid": "131577166", + "type": "bf:Place", + "md5": "ac5e366bc38a887b751174cb0272378d" + }, + { + "authorized_access_point": "Saint-Martin-le-Vinoux (Is\u00e8re)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/133653951", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/133653951", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12539212n", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/95144648445080947459" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Saint-Martin-le-Vinoux" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "L'appropriation des habitants de Saint-Martin-le-Vinoux aux territoires / M\u00e9moire de master 2\u00e8me ann\u00e9e : Politiques publiques et changement social, sp\u00e9cialit\u00e9 \"Villes, Territoires, Solidarit\u00e9s\" / Grenoble : IEP, 2008" + ] + } + ], + "pid": "133653951", + "type": "bf:Place", + "md5": "f881776c340c16f39b06e429b5b4b977" + }, + { + "authorized_access_point": "Majunga (Madagascar ; province)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/140829520", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/140829520", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/154785947" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Carte de la province de Majunga. 1:1 000 000 / Service g\u00e9ographique de Madagascar, [s.d.]" + ] + } + ], + "pid": "140829520", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Madagascar" + } + ], + "variant_access_point": [ + "Mahajanga (Madagascar ; province)" + ], + "md5": "665ab4306114ff8c5073f31c0af26e95" + }, + { + "authorized_access_point": "Mananjary (Madagascar ; province)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/140834087", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/140834087", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/143237247" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Carte de la province de Mananjary. 1:1 000 000 / Service g\u00e9ographique de Madagascar, 1925" + ] + } + ], + "pid": "140834087", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Madagascar" + } + ], + "md5": "36542c957dd56c80c30bfbd14239df9c" + }, + { + "authorized_access_point": "Mont-Rose, Massif du", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/144820072", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/144820072", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/136148570652124311276" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041152077" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Uebersichstkarte zum Relief der Monterosa-Gruppe / von X. Imfeld, 1880", + "GLU" + ] + }, + { + "noteType": "general", + "label": [ + "Massif des Alpes Pennines partag\u00e9 entre la Suisse (canton du Valais) et l'Italie." + ] + } + ], + "pid": "144820072", + "type": "bf:Place", + "variant_access_point": [ + "Monte Rosa, Massif du" + ], + "md5": "05e9200121abda0129b224452d70f44e" + }, + { + "authorized_access_point": "Chasselas (Sa\u00f4ne-et-Loire)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/145818713", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/145818713", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/49148570720624312579" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Chasselas_(Sa\u00f4ne-et-Loire)" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dictionnaire des Communes, 2002" + ] + } + ], + "pid": "145818713", + "type": "bf:Place", + "md5": "b2f9a92bdff59597928ee6a8f42c749d" + }, + { + "authorized_access_point": "Hab\u00e8re-Lullin (Haute-Savoie)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/148119778", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/148119778", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb16241764k", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/93144647642602560697" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Hab\u00e8re-Lullin" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dictionnaire des communes, 2002" + ] + } + ], + "pid": "148119778", + "type": "bf:Place", + "md5": "3ce0e673af4048d9025d12c2b1013990" + }, + { + "authorized_access_point": "Val-de-Travers (Neuch\u00e2tel, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/148833829", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/148833829", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/173812545" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1038431506" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Un grand r\u00eave d'avenir : [Val-de-Travers, histoire d'une fusion / Kaeslin, Jacques, 19..-2019 (contributeur - collaborateur);Kleiner, Claude-Alain, 1951-.... (contributeur - collaborateur);Charri\u00e8re, Fran\u00e7ois, 19..-...., photographe (contributeur - collaborateur);Lyc\u00e9e Denis de Rougemont (Fleurier) (contributeur - collaborateur), 2013" + ] + }, + { + "noteType": "general", + "label": [ + "Val-de-Travers est une commune suisse du canton de Neuch\u00e2tel, situ\u00e9e dans la r\u00e9gion Val-de-Travers. Val-de-Travers a \u00e9t\u00e9 cr\u00e9\u00e9e le 1er janvier 2009 \u00e0 la suite de la fusion de neuf anciennes communes : Boveresse, Buttes, Couvet, Fleurier, Les Bayards, M\u00f4tiers, Noiraigue, Saint-Sulpice et Travers." + ] + } + ], + "pid": "148833829", + "type": "bf:Place", + "md5": "7bead4365a13357b1cbb6408930c3109" + }, + { + "authorized_access_point": "Gemmi, Col de la (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/150220200", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/150220200", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/118148570517524310836" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040717003" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040717003" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://catalogue.bnf.fr/ark:/12148/cb152923816/UNIMARC 2011-02-21", + "20 Jahre Furggent\u00e4lti: Permafrostuntersuchungen auf der Gemmi / Bernhard Krummenacher .... - Bern : Geogr. Inst. d. Univ., 2008" + ] + }, + { + "noteType": "general", + "label": [ + "Coordonn\u00e9es g\u00e9ographiques : E 7\u00b037' / N 46\u00b024'" + ] + } + ], + "pid": "150220200", + "type": "bf:Place", + "md5": "df46870a3793950da2008f7f0b90fcf2" + }, + { + "authorized_access_point": "Treffort-Cuisiat (Ain)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/151572429", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/151572429", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/225148570700124311979" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Treffort_(Ain)" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Richesses touristiques et arch\u00e9ologiques du canton de Treffort : Treffort, Cuisiat, Chavannes-sur-Suran, Corveissiat, Arnans, Courmangoux, Germagnat, Meillonnas, Pouillas, Pressit, Saint-Etienne-du-Bois / D\u00e9partement de l'Ain, Pr\u00e9-inventaire, impr. 1982" + ] + } + ], + "pid": "151572429", + "type": "bf:Place", + "variant_access_point": [ + "Treffort (Ain)" + ], + "md5": "1aa83ff306c3eca2f16282f528303db3" + }, + { + "authorized_access_point": "Qasr al-Buleida (Jordanie ; site arch\u00e9ologique)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/152219005", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/152219005", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb166008514", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/243233070" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Qasr r al-Buleida : a late Roman-Byzantine fortified settlement on the Dead Sea Plain, Jordan / Alexandra Ariotti, 2009" + ] + }, + { + "noteType": "general", + "label": [ + "Hameau situ\u00e9 \u00e0 6 km du village Ghor al-Mazra'a" + ] + } + ], + "pid": "152219005", + "type": "bf:Place", + "md5": "03059a8080ec055aedba45f8e186285c" + }, + { + "authorized_access_point": "Auschwitz (Pologne)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/153092815", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/153092815", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/37148570468224310076" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040689794" + } + ], + "pid": "153092815", + "type": "bf:Place", + "md5": "7914a133190a1710d45cf2b73f08d478" + }, + { + "authorized_access_point": "Gorner, Glacier de (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "550", + "name": "Sciences de la Terre" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "914", + "name": "G\u00e9ographie de l'Europe" + } + ], + "identifier": "http://www.idref.fr/153807989", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/153807989", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb16679045m", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/300148461" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)961576073" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Zur Geschichte des Gornergletschers: ein Puzzle aus historischen Dokumenten und fossilen H\u00f6lzern aus dem Gletschervorfeld / Hanspeter Holzhauser. - Bern : Geographisches Institut der Universit\u00e4t Bern, 2010" + ] + } + ], + "pid": "153807989", + "type": "bf:Place", + "variant_access_point": [ + "Gorner Gletscher (Valais, Suisse)", + "Gornergletscher (Valais, Suisse)", + "Glacier de Gorner (Valais, Suisse)", + "Zermatt, Glacier de (Valais, Suisse)", + "Glacier de Zermatt (Valais, Suisse)", + "G\u00f6rnergletscher (Valais, Suisse)", + "N\u00f6rdlischer Monte Rosa Gletscher (Valais, Suisse)" + ], + "md5": "5c47603b31dbf3ddc7a0ad723d90b5b4" + }, + { + "authorized_access_point": "Martigny (Valais, Suisse) - \u00c9glise Notre-Dame de la Visitation", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "200", + "name": "Religion" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "720", + "name": "Architecture" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "914", + "name": "G\u00e9ographie de l'Europe" + } + ], + "identifier": "http://www.idref.fr/154297550", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/154297550", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb16530054d", + "source": "BNF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "\u00c9glise paroissiale de Martigny-Ville - http://www.paroissemartigny.ch (2011-08-10)", + "Ville de Martigny - http://www.martigny.ch (2011-08-10)", + "Dict. historique de la Suisse : \u00e9glise Notre-Dame des champs - http://www.hls-dhs-dss.ch (2011-08-10)" + ] + }, + { + "noteType": "dataNotFound", + "label": [ + "Guides Voir : Suisse, 2006" + ] + }, + { + "noteType": "general", + "label": [ + "\u00c9glise paroissiale de Martigny, qui a succ\u00e9d\u00e9 \u00e0 plusieurs lieux de culte, d'un sanctuaire romain \u00e0 l'\u00e9glise baroque. Longtemps utilis\u00e9, le vocable \"Notre-Dame des Champs\" est aujourd'hui affect\u00e9 au b\u00e2timent paroissial voisin" + ] + } + ], + "pid": "154297550", + "type": "bf:Place", + "variant_access_point": [ + "\u00c9glise Notre-Dame de la Visitation (Martigny, Valais, Suisse)", + "\u00c9glise Notre-Dame des Champs (Martigny, Valais, Suisse)", + "Notre-Dame de la Visitation, \u00c9glise (Martigny, Valais, Suisse)", + "Notre-Dame des Champs, \u00c9glise (Martigny, Valais, Suisse)" + ], + "md5": "341de3e4a1bf1952a0ad716d1eed4947" + }, + { + "authorized_access_point": "Leukerbad (Valais, Suisse) - Camp d'internement", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/154762393", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/154762393", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "BDIC Nanterre. Archives des Collectivit\u00e9s. La Guerre 1914-1918 dans le ressort de l'Acad\u00e9mie de Lille. Cote : F delta 1126//01a/A1.212" + ] + }, + { + "noteType": "general", + "label": [ + "Camp d'internement pendant la guerre de 1914-1918. Situ\u00e9 au canton Valais. Ony trouvait notamment des intern\u00e9s militaires fran\u00e7ais." + ] + } + ], + "pid": "154762393", + "type": "bf:Place", + "variant_access_point": [ + "Lo\u00e8che-les-Bains (Valais, Suisse) - Camp d'internement" + ], + "md5": "c2aaf4c76689a1d16719e0b5987efeb3" + }, + { + "authorized_access_point": "Berne (Suisse ; r\u00e9gion)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/156994151", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/156994151", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/53148570484424310365" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04005764X" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgen\u00f6ssische Stabsb\u00fcreau unter der direktion von Oberst Siegfried ver\u00f6ffentlicht" + ] + } + ], + "pid": "156994151", + "type": "bf:Place", + "variant_access_point": [ + "Bern (Suisse)" + ], + "md5": "66b853bb2cbc44346ddfcc26c23242d6" + }, + { + "authorized_access_point": "Cheseaux (Suisse ; r\u00e9gion)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/157032469", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/157032469", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb16200295d", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/239656292" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Cheseaux-sur-Lausanne" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgen\u00f6ssische Stabsb\u00fcreau unter der direktion von Oberst Siegfried ver\u00f6ffentlicht" + ] + } + ], + "pid": "157032469", + "type": "bf:Place", + "md5": "ed3b2d5693d7e2451508f40b95691ddf" + }, + { + "authorized_access_point": "Belfaux (Fribourg, Suisse ; r\u00e9gion)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/157043819", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/157043819", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/137148570485524310256" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgen\u00f6ssische Stabsb\u00fcreau unter der direktion von Oberst Siegfried ver\u00f6ffentlicht" + ] + } + ], + "pid": "157043819", + "type": "bf:Place", + "md5": "d3f7ec6b494e6822cb70d9cc9b410085" + }, + { + "authorized_access_point": "Fribourg (Fribourg, Suisse ; r\u00e9gion)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/157043908", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/157043908", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/136148570491024310547" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041965299" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgen\u00f6ssische Stabsb\u00fcreau unter der direktion von Oberst Siegfried ver\u00f6ffentlicht" + ] + } + ], + "pid": "157043908", + "type": "bf:Place", + "md5": "7898cf6c323dd5468f89675ffd1f99cd" + }, + { + "authorized_access_point": "Saint-Blaise (Neuch\u00e2tel, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/157046125", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/157046125", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb155788903", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/27144648222762151333" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)949680915" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Saint-Blaise_(Neuch\u00e2tel)" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgen\u00f6ssische Stabsb\u00fcreau unter der direktion von Oberst Siegfried ver\u00f6ffentlicht" + ] + } + ], + "pid": "157046125", + "type": "bf:Place", + "variant_access_point": [ + "St-Blaise (Suisse)" + ], + "md5": "027cc35179b2aa96b33c757744a43c54" + }, + { + "authorized_access_point": "Bienne (Suisse ; r\u00e9gion)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/157046486", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/157046486", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/8605148574371124430002" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040804003" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgen\u00f6ssische Stabsb\u00fcreau unter der direktion von Oberst Siegfried ver\u00f6ffentlicht" + ] + } + ], + "pid": "157046486", + "type": "bf:Place", + "variant_access_point": [ + "Biel (Suisse)" + ], + "md5": "3bdd7db74d7e188a46a15da629662dce" + }, + { + "authorized_access_point": "Sion (Valais, Suisse ; r\u00e9gion)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/157070093", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/157070093", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/6822148574363524430000" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)953273733" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)953273733" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgen\u00f6ssische Stabsb\u00fcreau unter der direktion von Oberst Siegfried ver\u00f6ffentlicht" + ] + } + ], + "pid": "157070093", + "type": "bf:Place", + "md5": "3dafcd42f4379c0648bf06a5dc88da17" + }, + { + "authorized_access_point": "Villmergen (Suisse ; r\u00e9gion)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/157075109", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/157075109", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13332495t", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/157272680" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Villmergen" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgen\u00f6ssische Stabsb\u00fcreau unter der direktion von Oberst Siegfried ver\u00f6ffentlicht" + ] + } + ], + "pid": "157075109", + "type": "bf:Place", + "md5": "cb6b3a07b03ecaac5e392396826e103f" + }, + { + "authorized_access_point": "C\u00f4te aux f\u00e9es (Suisse ; r\u00e9gion)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/157110184", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/157110184", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/237444110" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/La_C\u00f4te-aux-F\u00e9es" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgen\u00f6ssische Stabsb\u00fcreau unter der direktion von Oberst Siegfried ver\u00f6ffentlicht" + ] + } + ], + "pid": "157110184", + "type": "bf:Place", + "md5": "5005de9d980db1098d88cb674e3fb0cc" + }, + { + "authorized_access_point": "Finhaut (Valais, Suisse ; r\u00e9gion)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/157135675", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/157135675", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/121148570787624312975" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgen\u00f6ssische Stabsb\u00fcreau unter der direktion von Oberst Siegfried ver\u00f6ffentlicht" + ] + } + ], + "pid": "157135675", + "type": "bf:Place", + "md5": "205aa27319b268f8af092efca53d92c7" + }, + { + "authorized_access_point": "Martigny (Valais, Suisse ; r\u00e9gion)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/157135756", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/157135756", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/7324148574283224430000" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)953387615" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgen\u00f6ssische Stabsb\u00fcreau unter der direktion von Oberst Siegfried ver\u00f6ffentlicht" + ] + } + ], + "pid": "157135756", + "type": "bf:Place", + "md5": "a143f5a97b788df28c7a987bbb0e4598" + }, + { + "authorized_access_point": "Colombier (Neuch\u00e2tel, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/157143791", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/157143791", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/86148570501924310556" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)959239235" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgen\u00f6ssische Stabsb\u00fcreau unter der direktion von Oberst Siegfried ver\u00f6ffentlicht" + ] + }, + { + "noteType": "general", + "label": [ + "Ne pas confondre avec: Colombier (Vaud, Suisse)" + ] + } + ], + "pid": "157143791", + "type": "bf:Place", + "md5": "af34cad6efda5b005faa9dcaa764a792" + }, + { + "authorized_access_point": "Neuch\u00e2tel (Neuch\u00e2tel, Suisse ; r\u00e9gion)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/157164764", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/157164764", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/97148570783424312980" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)953427730" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgen\u00f6ssische Stabsb\u00fcreau unter der direktion von Oberst Siegfried ver\u00f6ffentlicht" + ] + } + ], + "pid": "157164764", + "type": "bf:Place", + "variant_access_point": [ + "Neuenburg (Neuch\u00e2tel, Suisse)" + ], + "md5": "283cba437dcf10760bd2b645d4761656" + }, + { + "authorized_access_point": "Saint-Maurice (Valais, Suisse ; r\u00e9gion)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/157165892", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/157165892", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/102148570725424312417" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)959192743" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgen\u00f6ssische Stabsb\u00fcreau unter der direktion von Oberst Siegfried ver\u00f6ffentlicht" + ] + } + ], + "pid": "157165892", + "type": "bf:Place", + "md5": "8956c75142456313af70443097d2ee23" + }, + { + "authorized_access_point": "Vouvry (Valais, Suisse ; r\u00e9gion)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/157260275", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/157260275", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/144290317" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Vouvry" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgen\u00f6ssische Stabsb\u00fcreau unter der direktion von Oberst Siegfried ver\u00f6ffentlicht" + ] + } + ], + "pid": "157260275", + "type": "bf:Place", + "md5": "0b99ea5f49e2ed08010842db2259d86b" + }, + { + "authorized_access_point": "Gryon (Vaud, Suisse ; r\u00e9gion)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/157265927", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/157265927", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/105148570725524312416" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgen\u00f6ssische Stabsb\u00fcreau unter der direktion von Oberst Siegfried ver\u00f6ffentlicht" + ] + } + ], + "pid": "157265927", + "type": "bf:Place", + "md5": "eef272cbdb9e3a47dd15396941a11ede" + }, + { + "authorized_access_point": "Saint-Fons (France)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/158185102", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/158185102", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/173407949" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Saint-Fons" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Kommunalpolitik in Penzberg und Saint-Fons / Gilbert Casasus, 1985" + ] + } + ], + "pid": "158185102", + "type": "bf:Place", + "md5": "b0c19af31dc1ed2288f1411a1280ed55" + }, + { + "authorized_access_point": "L\u00f6tschental (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/158634624", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/158634624", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/2769148574264424430001" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040361640" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Eine katholische Glaubenswelt : das L\u00f6tschental des 19. Jahrhunderts / herausgegeben vom L\u00f6tschentaler Museum in Kippel anl\u00e4sslich der Ausstellung \"Katholische Bildwelten\" vom 29. Mai 2010 bis zum 31. M\u00e4rz 2011 ; [Herausgeber, Thomas Antonietti und Rita Kalbermatten-Ebener ; Texte, Thomas Antonietti], cop. 2010" + ] + } + ], + "pid": "158634624", + "type": "bf:Place", + "variant_access_point": [ + "L\u00f6tschen, Vall\u00e9e de (Valais, Suisse)", + "L\u00f6tschen, Vall\u00e9e du (Valais, Suisse)", + "Loetschen, Vall\u00e9e de (Valais, Suisse)", + "Loetschen, Vall\u00e9e du (Valais, Suisse)" + ], + "md5": "0ec00735e29e66e496ea52657481e878" + }, + { + "authorized_access_point": "Gruy\u00e8res (Fribourg, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/15903194X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/15903194X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12002988n", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040220419" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/88148570483324310216" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL", + "Brockhaus, 17e ed" + ] + } + ], + "pid": "15903194X", + "type": "bf:Place", + "variant_access_point": [ + "Greyerz (Freiburg, Schweiz)" + ], + "md5": "ef86ffd194e86c63949fd8443e00388d" + }, + { + "authorized_access_point": "Soule (Pyr\u00e9n\u00e9es-Atlantiques)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/159667518", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/159667518", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11987681p", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/166144783024238212729" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Soule_(province)" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Robert encyclop\u00e9dique des noms propres, 2008" + ] + }, + { + "noteType": "general", + "label": [ + "L'une des sept provinces historiques du Pays basque, comprise entre la Navarre et le B\u00e9arn" + ] + } + ], + "pid": "159667518", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Pays basque (Pyr\u00e9n\u00e9es-Atlantiques)" + }, + { + "authorized_access_point": "Pyr\u00e9n\u00e9es-Atlantiques (France)" + } + ], + "variant_access_point": [ + "Soule, Pays de (Pyr\u00e9n\u00e9es-Atlantiques)" + ], + "md5": "1b5fcca1a30fa22696c2670cc6024246" + }, + { + "authorized_access_point": "H\u00e9r\u00e9mence (Valais, Suisse) - \u00c9glise Saint-Nicolas", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/16152270X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/16152270X", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "\"Gebilde von hoher Zwecklosigkeit\" : Walter Maria F\u00f6rderers Gratwanderung zwischen Architektur und Skulptur am Beispiel St-Nicolas in H\u00e9r\u00e9mence / Zara Reckermann, cop. 2009", + "Internet, http://d-nb.info/gnd/7672770-1, 2012-06-06" + ] + }, + { + "noteType": "general", + "label": [ + "Eglise n\u00e9o-expressionniste construite par Walter Maria F\u00f6rderer (1928-2006) en 1971" + ] + } + ], + "pid": "16152270X", + "type": "bf:Place", + "variant_access_point": [ + "H\u00e9r\u00e9mence (Valais, Suisse) - St-Nicolas", + "H\u00e9r\u00e9mence (Valais, Suisse) - Katholische Pfarrkirche", + "H\u00e9r\u00e9mence (Valais, Suisse) - Sankt Nicolas" + ], + "md5": "f086529ebb2a45b5af26d2733af91f64" + }, + { + "authorized_access_point": "H\u00e9r\u00e9mence (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/161522718", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/161522718", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)043082572" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/112144647650953000031" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "\"Gebilde von hoher Zwecklosigkeit\" : Walter Maria F\u00f6rderers Gratwanderung zwischen Architektur und Skulptur am Beispiel St-Nicolas in H\u00e9r\u00e9mence / Zara Reckermann, cop. 2009" + ] + } + ], + "pid": "161522718", + "type": "bf:Place", + "variant_access_point": [ + "Armensi (Valais, Suisse)", + "Ermenz (Valais, Suisse)" + ], + "md5": "fceec4f791eacc2e3c6655f0193f49b3" + }, + { + "authorized_access_point": "Veyrier-du-Lac (Haute-Savoie)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/161930069", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/161930069", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb131958679", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/159189091" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Veyrier-du-Lac" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dictionnaire des communes, 2002" + ] + } + ], + "pid": "161930069", + "type": "bf:Place", + "md5": "378662f2f52de413fd085d39a0b22aa4" + }, + { + "authorized_access_point": "Monthey (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/162029667", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/162029667", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/40148570706524311869" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041021746" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Site officiel de la commune" + ] + }, + { + "noteType": "general", + "label": [ + "Commune du canton du Valais" + ] + } + ], + "pid": "162029667", + "type": "bf:Place", + "md5": "e3709feacd7b1dcc74e0db0cb30d5f20" + }, + { + "authorized_access_point": "Saint-Jean-d'Arves (Savoie)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/162144342", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/162144342", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15591531g", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/14144648150835336147" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Saint-Jean-d'Arves" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. communes, 2002" + ] + } + ], + "pid": "162144342", + "type": "bf:Place", + "md5": "06ae1ea5dc5d04fbe893dd93e73074e7" + }, + { + "authorized_access_point": "Chippis (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/163687536", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/163687536", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/66148570719924312145" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1004355866" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "BDIC Nanterre, Archives. Bureau d'\u00e9tudes de la presse \u00e9trang\u00e8re.- Suisse 1915-1922 (cote F delta 788/22)", + "Dictionnaire Historique de la Suisse (URL: http://www.hls-dhs-dss.ch/textes/f/F2782.php)" + ] + }, + { + "noteType": "general", + "label": [ + "Commune du canton Valais. On y trouve depuis 1905 une usine de Aluminium Industrie AG (depuis Alusuisse), th\u00e9\u00e2tre d'une gr\u00e8ve insurrectionnelle en mai-juin 1917." + ] + } + ], + "pid": "163687536", + "type": "bf:Place", + "md5": "d4f3d6907f336c0925e09a147e5e992a" + }, + { + "authorized_access_point": "Thielle (Suisse ; cours d'eau)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/165827157", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/165827157", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/91148570456824310233" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1025748506" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Am\u00e9nagements fluviaux de la Thielle au Moyen Age : p\u00eacherie et moulin de Pr\u00e9 de la Mottaz / Nicole Plumettaz, Daniel Pillonel et Nigel Thew; avec des contributions de St\u00e9phane B\u00f6hringer, Patrick Gassmann, Philippe Hadorn...[et al.]; avec un texte orginal d'Hanni Schwab; et un document de Bernard Vauthier, 2011" + ] + } + ], + "pid": "165827157", + "type": "bf:Place", + "variant_access_point": [ + "Thielle (Neuch\u00e2tel, Suisse ; cours d'eau)", + "Thielle (Berne, Suisse ; cours d'eau)" + ], + "md5": "e855b6a2a8eb65715e91908d2fc2b5bc" + }, + { + "authorized_access_point": "Bah\u0101walpur (Pakistan)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/169621820", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/169621820", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb16026376x", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/123164765" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "The history of Bahawalpur / Shahamet Ali, 2012", + "Internet, http://wikipedia.org, 2013-05-29", + "Bernard Desnous. BULAC. T\u00e9l. 01 81 69 18 24. Courriel : bernard.desnouesbulac.fr" + ] + }, + { + "noteType": "general", + "label": [ + "Ville situ\u00e9e dans le district de Bahawalpur dans la Province du Pendjab au Pakistan" + ] + } + ], + "pid": "169621820", + "type": "bf:Place", + "variant_access_point": [ + "Bah\u0101valp\u016br (Pakistan)", + "\u0628\u06be\u0627\u0648\u0644\u067e\u0648\u0631 (Pakistan)" + ], + "md5": "4d9b442c9d4378fe9dc7dec3f0e9e3a9" + }, + { + "authorized_access_point": "Nonglard (Haute-Savoie)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/171128362", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/171128362", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb16529740m", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/254854254" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Nonglard" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dictionnaire des communes, 2002" + ] + } + ], + "pid": "171128362", + "type": "bf:Place", + "md5": "a8fff6186c8d8a909607a28a8b9e4287" + }, + { + "authorized_access_point": "Zhanjiang (Chine)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "915", + "name": "G\u00e9ographie du reste du monde" + } + ], + "identifier": "http://www.idref.fr/175270147", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/175270147", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb167267480", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/113144647643872637671" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/4147150749007416420001" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Ci hai, 1999" + ] + }, + { + "noteType": "general", + "label": [ + "Ville situ\u00e9e \u00e0 l'extr\u00e9mit\u00e9 occidentale de la province du Guangdong. Concession fran\u00e7aise sous le nom de Fort-Bayard de 1899 \u00e0 1945", + "N 21\u00b016\u203253\u2033 / E 110\u00b020\u203234\u2033" + ] + } + ], + "pid": "175270147", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Guangdong (Chine ; province)" + } + ], + "relation_pid": { + "value": "203905040", + "type": "redirect_from" + }, + "variant_access_point": [ + "Chan kiang (Chine)", + "Fort Bayard (Chine)", + "Kwang chou wan (Chine)", + "Tsan kiang (Chine)", + "Zhan jiang (Chine)", + "Zhan jiang shi (Chine)", + "Kwangchowwan", + "\u6e5b\u6c5f\u5e02", + "Zhanjiang shi" + ], + "md5": "1e9890221a1a2502acffe369309f75c5" + }, + { + "authorized_access_point": "Bah\u0101walpur (Pakistan ; Division)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/176470875", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/176470875", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/156004112" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Bah\u0101valp\u016br : \u1e35\u1e96vush\u1e25\u0101l riy\u0101sat se pasm\u0101ndah \u1e0div\u012bzhan tak / Muj\u0101hid \u1e24usain, 2011", + "Bernard Desnous. BULAC. T\u00e9l. 01 81 69 18 24. Courriel : bernard.desnouesbulac.fr" + ] + }, + { + "noteType": "general", + "label": [ + "Chef-lieu de l'administration territoriale du m\u00eame nom" + ] + } + ], + "pid": "176470875", + "type": "bf:Place", + "variant_access_point": [ + "Bah\u0101valp\u016br (Pakistan ; Division)", + "\u0628\u06be\u0627\u0648\u0644\u067e\u0648\u0631 (Pakistan ; Division)" + ], + "md5": "9178416ab70790efbed8a36f3fb5cda5" + }, + { + "authorized_access_point": "Arolla (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/177159855", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/177159855", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15284200c", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/169947327" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)962615161" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Carte nationale de la Suisse 1:50 000. feuille 283. Arolla. Grand Combin - Lac des Dix - Matterhorn [Document cartographique] / Office f\u00e9d\u00e9ral de topographie swisstopo, 2013" + ] + }, + { + "noteType": "general", + "label": [ + "Village de montagne du canton du Valais", + "Coordonn\u00e9es g\u00e9ographiques : E 7\u00b029' / N 46\u00b01'31\"" + ] + } + ], + "pid": "177159855", + "type": "bf:Place", + "md5": "47b7f16f5882c0b0211b44b9f5aaf8ac" + }, + { + "authorized_access_point": "Machilly (Haute-Savoie)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/177517506", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/177517506", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/316739960" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Machilly" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "R\u00e9sistance entre Voirons et fronti\u00e8re : Machilly 1938-1947 / Simone et Robert Amoudruz, impr. 2013" + ] + } + ], + "pid": "177517506", + "type": "bf:Place", + "md5": "ab7ab609c44d06795a0cb7542c4b608e" + }, + { + "authorized_access_point": "Sanc\u00e9 (Sa\u00f4ne-et-Loire)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/177835893", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/177835893", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13167493m", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/238768969" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Sanc\u00e9_(Sa\u00f4ne-et-Loire)" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. communes, 1992" + ] + } + ], + "pid": "177835893", + "type": "bf:Place", + "md5": "ceab94a213a808349a0e8e25af4cd92c" + }, + { + "authorized_access_point": "Al-Daw\u1e25a (Qatar)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "915", + "name": "G\u00e9ographie du reste du monde" + } + ], + "identifier": "http://www.idref.fr/178091219", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/178091219", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11962996x", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/136649381" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Doha" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Grand Larousse universel : Daw\u1e25a (al-) ou Doha (al-)", + "Atlas Le Monde : Ad Daw\u1e25a" + ] + }, + { + "noteType": "general", + "label": [ + "Capitale du Qatar" + ] + } + ], + "pid": "178091219", + "type": "bf:Place", + "variant_access_point": [ + "Ad Daw\u1e25a (Qatar)", + "Al-Doha (Qatar)", + "Daw\u1e25a, Al (Qatar)", + "Doha (Qatar)" + ], + "md5": "e75c42e040e52d51f1782d925c4425dc" + }, + { + "authorized_access_point": "Vaux-en-Bugey (Ain)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/178635863", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/178635863", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/146557727" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Vaux-en-Bugey" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Dictionnaire des communes, 2002" + ] + } + ], + "pid": "178635863", + "type": "bf:Place", + "md5": "a2013eb1788971339f54c8d41d246806" + }, + { + "authorized_access_point": "Pully (Suisse)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "914", + "name": "G\u00e9ographie de l'Europe" + } + ], + "identifier": "http://www.idref.fr/18055686X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/18055686X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15858450v", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/157246276" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Pully" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Atlas universel Le Monde, 1989" + ] + }, + { + "noteType": "general", + "label": [ + "Commune du canton de Vaud, sur la rive nord du lac L\u00e9man, toute proche de Lausanne" + ] + } + ], + "pid": "18055686X", + "type": "bf:Place", + "md5": "295397123acd7681eae57a685a4c6d12" + }, + { + "authorized_access_point": "La Roche-sur-Foron (Haute-Savoie)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/183926943", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/183926943", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15868881f", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/133728351" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/La_Roche-sur-Foron" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Notice n\u00b0 : FRBNF15274480. Adresse:http://catalogue.bnf.fr/ark:/12148/cb152744806/PUBLIC", + "La Roche-sur-Foron: 74800: voies de communication / [r\u00e9alis\u00e9 et publi\u00e9 par]Editions P.P.P., 1982" + ] + }, + { + "noteType": "general", + "label": [ + "Coordonn\u00e9es g\u00e9ographiques : E 6\u00b018'40\" / N 46\u00b03'56\"" + ] + } + ], + "pid": "183926943", + "type": "bf:Place", + "md5": "884443aedc90820fc685e845a455b8ab" + }, + { + "authorized_access_point": "Podgorica (Mont\u00e9n\u00e9gro)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/184504872", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/184504872", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15205350s", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/127589542" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Podgorica" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia (2015-03-24)" + ] + }, + { + "noteType": "general", + "label": [ + "Podgorica est la capitale du Mont\u00e9n\u00e9gro ainsi que sa plus grande ville", + "N 42\u00b0 26\u2032 28\u2033 / E 19\u00b0 15\u2032 49\u2033" + ] + } + ], + "pid": "184504872", + "type": "bf:Place", + "variant_access_point": [ + "\u041f\u043e\u0434\u0433\u043e\u0440\u0438\u0446\u0430", + "Titograd" + ], + "md5": "035eb50c9bb35386f9e1235a1146be11" + }, + { + "authorized_access_point": "Neuville-les-Dames (Ain)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "912", + "name": "G\u00e9ographie de la France" + } + ], + "identifier": "http://www.idref.fr/185130348", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/185130348", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15049047h", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/236148481" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Neuville-les-Dames" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. communes, 2001" + ] + } + ], + "pid": "185130348", + "type": "bf:Place", + "md5": "3807ec0aacfcd90de97a7d839dc2e30f" + }, + { + "authorized_access_point": "R\u00e9gny (Loire)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/185838235", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/185838235", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12016494c", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/244320617" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/R\u00e9gny" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. communes, 1984" + ] + } + ], + "pid": "185838235", + "type": "bf:Place", + "md5": "9b5ad74290f2ef02a85bf26f2e01aa64" + }, + { + "authorized_access_point": "Nassau (Bahamas)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/186257287", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/186257287", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/148911449" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Nassau_(Bahamas)" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Historic Nassau / Gail Saunders and Donald Cartwright, 1979" + ] + }, + { + "noteType": "general", + "label": [ + "Capitale des Bahamas" + ] + } + ], + "pid": "186257287", + "type": "bf:Place", + "md5": "e9f989ddcb1921ac43288c77596cbc32" + }, + { + "authorized_access_point": "Jiangsu (Chine ; province)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/188234837", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/188234837", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/3997148574310724430001" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GeoNames (2015-09-15)" + ] + }, + { + "noteType": "general", + "label": [ + "Province chinoise", + "N 33\u00b000\u203200\u2033 / E 119\u00b050\u203200\u2033" + ] + } + ], + "pid": "188234837", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Chine - Provinces" + } + ], + "variant_access_point": [ + "\u6c5f\u8607\u7701", + "\u6c5f\u82cf\u7701", + "Jiangsu Sheng" + ], + "md5": "84059c39b22a9bd927556548dddabf8f" + }, + { + "authorized_access_point": "Tarentaise (Savoie)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "912", + "name": "G\u00e9ographie de la France" + } + ], + "identifier": "http://www.idref.fr/190533889", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/190533889", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119334934", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/278144783073895221354" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Vall\u00e9e_de_la_Tarentaise" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Grand Larousse universel", + "Robert encyclop\u00e9dique des noms propres, 2008", + "Dict. de g\u00e9ographie historique de la Gaule et de la France / J. Moreau, 1972", + "Tr\u00e9sor des r\u00e9gions - http://tresordesregions.mgm.fr (2008-12-16)" + ] + }, + { + "noteType": "general", + "label": [ + "Vall\u00e9e haute de l'Is\u00e8re (en amont d'Albertville), et r\u00e9gion de Savoie autour de cette vall\u00e9e, qui a constitu\u00e9 une province de l'ancienne Savoie" + ] + } + ], + "pid": "190533889", + "type": "bf:Place", + "variant_access_point": [ + "Is\u00e8re, Vall\u00e9e haute de l' (Savoie)" + ], + "md5": "fdcf6ed2dc347afb06394a84bf288f39" + }, + { + "authorized_access_point": "Rome (Italie) - Chiesa di Santa Caterina", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "200", + "name": "Religion" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "720", + "name": "Architecture" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "914", + "name": "G\u00e9ographie de l'Europe" + } + ], + "identifier": "http://www.idref.fr/192765531", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/192765531", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "S. Bernardo alle Terme e le distrutte chiese di S. Ciriaco e S. Caterina in Thermis / Sergio Ortolani, vers 1923" + ] + }, + { + "noteType": "general", + "label": [ + "Adresse : Via Giulia. L'\u00e9difice appartient \u00e0 l'archiconfr\u00e9rie de Sienne depuis sa fondation en 1526. L'\u00e9difice fut enti\u00e8rement reconstruit entre 1766 et 1775" + ] + } + ], + "pid": "192765531", + "type": "bf:Place", + "variant_access_point": [ + "Chiesa di Santa Caterina (Rome, Italie)", + "Chiesa di Santa Caterina in Thermis (Rome, Italie)", + "Rome (Italie) - \u00c9glise Sainte-Catherine", + "\u00c9glise Sainte-Catherine (Rome, Italie)", + "Santa Caterina (Rome, Italie)" + ], + "md5": "b2f09f62b8218510d853ad9b370eb372" + }, + { + "authorized_access_point": "Vall\u00e9e des Rois (\u00c9gypte ; site arch\u00e9ologique) - Tombe de Toutankhamon", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "720", + "name": "Architecture" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "915" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "930", + "name": "Pr\u00e9histoire et histoire ancienne" + } + ], + "identifier": "http://www.idref.fr/193304767", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/193304767", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb17046157n", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1165082802" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "LC online cat., 2023-10-05 : Tutankhamen, King of Egypt -- Tomb", + "Guides bleus : \u00c9gypte, 1990", + "Chronique de l'\u00c9gypte ancienne / M. Dessoudeix, 2008", + "Encycl. of the archaeology of ancient Egypt / K. A. Bard, 1999 (art. : Thebes, Valley of the Kings)", + "The complete Valley of the Kings / N. Reeves, R. H. Wilkinson, 1997", + "Antikforever : les n\u00e9cropoles : la vall\u00e9e des Rois - http://antikforever.com/Egypte/Tombes/vallees_rois.htm (2016-05-13)", + "Topographical bibliography of ancient Egyptian hieroglyphic texts, reliefs, and paintings, 1.2 The Theban necropolis : Royal tombs and smaller cemeteries / B. Porter, R. L. B. Moss, 1964 (p. 569-586) : Tut\u02bfankham\u016bn' - http://www.griffith.ox.ac.uk/topbib/pdf/pm1-2.pdf (2016-05-13)" + ] + }, + { + "noteType": "general", + "label": [ + "Tombeau d\u00e9couvert le 4 novembre 1922 par Howard Carter, contenant, inviol\u00e9s, le tr\u00e9sor et la momie du pharaon" + ] + } + ], + "pid": "193304767", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Vall\u00e9e des Rois (\u00c9gypte ; site arch\u00e9ologique)" + } + ], + "variant_access_point": [ + "Th\u00e8bes (ville ancienne) - Tombe KV62", + "Tombe de Toutankhamon (Vall\u00e9e des Rois, \u00c9gypte)", + "Tombe KV62 (Vall\u00e9e des Rois, \u00c9gypte)", + "Tombeau de Toutankhamon (Vall\u00e9e des Rois, \u00c9gypte)", + "Vall\u00e9e des Rois (\u00c9gypte ; site arch\u00e9ologique) - Tombe KV62" + ], + "md5": "601912494d1b291508ff4be49d669855" + }, + { + "authorized_access_point": "Saint-Just-la-Pendue (Loire)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/193589370", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/193589370", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11987537x", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/141509173" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Saint-Just-la-Pendue" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Web, https://fr.wikipedia.org/wiki/Saint-Just-la-Pendue (2016-06-07)" + ] + }, + { + "noteType": "general", + "label": [ + "E 4\u00b014'38\" / N 45\u00b053'42\"" + ] + } + ], + "pid": "193589370", + "type": "bf:Place", + "md5": "aea64a4507801855ba1d3a05a69bf17b" + }, + { + "authorized_access_point": "Saint-Sorlin-en-Bugey (Ain)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/194382206", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/194382206", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb161556451", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/25144648229821282355" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Saint-Sorlin-en-Bugey" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.insee.fr/fr/methodes/nomenclatures/cog/, 2016-07-19", + "http://www.geonames.org/, 2016-07-19" + ] + } + ], + "pid": "194382206", + "type": "bf:Place", + "md5": "34a498307c7c5e968457f81445ecf5be" + }, + { + "authorized_access_point": "Strasbourg (Bas-Rhin ; r\u00e9gion)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/196449103", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/196449103", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/3060148574347924430005" + } + ], + "pid": "196449103", + "type": "bf:Place", + "variant_access_point": [ + "Argentoratum (ville ancienne ; r\u00e9gion)", + "Strasbourg", + "Strassburg (Bas-Rhin ; r\u00e9gion)" + ], + "md5": "25f9da156eb6a23614d3d93acdd1fc87" + }, + { + "authorized_access_point": "Saint-Gothard, massif du (Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/197647235", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/197647235", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/287148570783524312836" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040938174" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Das St. Gotthardgebirge mit einer geologischen Karte und 4 tafeln / von Karl von Fritsch, J. Dalp, 1873", + "https://fr.wikipedia.org/wiki/Massif_du_Saint-Gothard, 2024-06-27", + "http://www.geonames.org/search.html?q=Gotthard&country=CH, 2017-01-16" + ] + }, + { + "noteType": "general", + "label": [ + "Le massif du Saint-Gothard est une r\u00e9gion montagneuse situ\u00e9e dans la cha\u00eene des Alpes, en Suisse, \u00e0 la fronti\u00e8re de quatre cantons suisses : le Valais, le Tessin, Uri et les Grisons" + ] + } + ], + "pid": "197647235", + "type": "bf:Place", + "variant_access_point": [ + "Sankt Gotthardgebirge (Suisse)", + "Gotthardmassiv (Suisse)", + "San Gottardo, massiccio del (Suisse)" + ], + "md5": "3360e0e59425a4fe6cfac0879873f4ed" + }, + { + "authorized_access_point": "Chablais (Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/197699855", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/197699855", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/124148570784924312981" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)950051233" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Description g\u00e9ologique des pr\u00e9alpes du canton de Vaud et du Chablais jusqu'\u00e0 la Dranse et de la cha\u00eene des dents du Midi / par Ernest Favre et Hans Schardt, 1887", + "https://fr.wikipedia.org/wiki/Chablais,2017-01-18" + ] + }, + { + "noteType": "general", + "label": [ + "R\u00e9gion situ\u00e9e \u00e0 l\u2019extr\u00e9mit\u00e9 vaudoise et valaisanne du L\u00e9man, en aval de la haute vall\u00e9e du Rh\u00f4ne" + ] + } + ], + "pid": "197699855", + "type": "bf:Place", + "md5": "0335a8570872b7f7cc3a81adf927fa5d" + }, + { + "authorized_access_point": "Soucieu-en-Jarrest (Rh\u00f4ne)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/19787133X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/19787133X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11933489w", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/134869146" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Soucieu-en-Jarrest" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. communes, 1984" + ] + } + ], + "pid": "19787133X", + "type": "bf:Place", + "variant_access_point": [ + "Soucieu-en-Jarez (Rh\u00f4ne)" + ], + "md5": "622a0acad5f687deb6f449e663d42702" + }, + { + "authorized_access_point": "Auvergne-Rh\u00f4ne-Alpes (France)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "912", + "name": "G\u00e9ographie de la France" + } + ], + "identifier": "http://www.idref.fr/198026072", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/198026072", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb17023163f", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/729145857886323020755" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Auvergne-Rh\u00f4ne-Alpes" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "La R\u00e9gion Auvergne-Rh\u00f4ne-Alpes - http://www.auvergnerhonealpes.fr (2016-11-14)", + "D\u00e9cret n\u00b0 2016-1266 du 28 septembre 2016 portant fixation du nom et du chef-lieu de la r\u00e9gion Auvergne-Rh\u00f4ne-Alpes (JO du 29) - https://www.legifrance.gouv.fr (2016-11-14)" + ] + }, + { + "noteType": "general", + "label": [ + "R\u00e9gion administrative de la France comprenant 12 d\u00e9partements : Ain, Allier, Ard\u00e8che, Cantal, Dr\u00f4me, Haute-Loire, Haute-Savoie, Is\u00e8re, Loire, Puy-de-D\u00f4me, Rh\u00f4ne et Savoie (chef-lieu : Lyon), cr\u00e9\u00e9e le 1er janvier 2016 par la fusion des r\u00e9gions Auvergne et Rh\u00f4ne-Alpes (le nom est adopt\u00e9 par le Conseil r\u00e9gional le 23 juin 2016)" + ] + } + ], + "pid": "198026072", + "type": "bf:Place", + "variant_access_point": [ + "Auvergne-Rh\u00f4ne-Alpes", + "R\u00e9gion Auvergne-Rh\u00f4ne-Alpes (France)" + ], + "md5": "6598e7e90556b7c92fe758e5fe36538f" + }, + { + "authorized_access_point": "Lo\u00e8che-les-Bains (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/198231288", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/198231288", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040995623" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/144250507" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Lo\u00e8che-les-Bains" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Note sur la G\u00e9ologie des environs de Lou\u00e8che-les-Bains / par le Dr Phil. de La Harpe, 1877" + ] + } + ], + "pid": "198231288", + "type": "bf:Place", + "variant_access_point": [ + "Lou\u00e8che-les-Bains (Valais, Suisse)", + "Leukerbad (Valais, Suisse)" + ], + "md5": "7131417f6d704874413934fd32825307" + }, + { + "authorized_access_point": "Berlin (Allemagne) - Mur de Berlin", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "690", + "name": "Construction" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "940", + "name": "Histoire de l'Europe" + } + ], + "identifier": "http://www.idref.fr/198239386", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/198239386", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119380937", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040948374" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Mourre", + "Brockhaus, 19. Aufl", + "Berliner Mauer ; SWD, 1995-04", + "Mur de Berlin ; Laval RVM, 2001-07" + ] + }, + { + "noteType": "general", + "label": [ + "Mur de 45 km s\u00e9parant Berlin-Ouest du territoire de la RDA, \u00e9rig\u00e9 par les autorit\u00e9s est-allemandes dans la nuit du 13 ao\u00fbt 1961. - Son ouverture le 9 novembre 1989 pr\u00e9luda \u00e0 l'unification des deux Allemagne" + ] + } + ], + "pid": "198239386", + "type": "bf:Place", + "narrower": [ + { + "authorized_access_point": "Berlin (Allemagne) - 1989 (Chute du Mur)" + } + ], + "broader": [ + { + "authorized_access_point": "Rideau de fer (fronti\u00e8re)" + }, + { + "authorized_access_point": "Berlin (Allemagne) - 1945-1990" + } + ], + "relation_pid": { + "value": "084361409", + "type": "redirect_from" + }, + "variant_access_point": [ + "Berlin (Allemagne) - Mauer", + "Berlin (Allemagne) - Berliner Mauer", + "Berlin, Mur de (1961-1989)", + "Berliner Mauer (1961-1989)", + "Mur de Berlin" + ], + "md5": "119c55c1578d2cdc7351505d8cc1e81b" + }, + { + "authorized_access_point": "Finhaut (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/201852845", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/201852845", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/219150565656806251127" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)942312023" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Tourisme, mobilit\u00e9 et d\u00e9veloppement r\u00e9gional dans les Alpes suisses / Delphine Gueux. 2016", + "wikipedia.org, 2017-06-17" + ] + } + ], + "pid": "201852845", + "type": "bf:Place", + "md5": "942750209221e0cb92d5c79d8fd3fbf1" + }, + { + "authorized_access_point": "Montrond-les-Bains (Loire)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/203060571", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/203060571", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb131210592", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/304890312" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Montrond-les-Bains" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dictionnaire des communes, 2002" + ] + } + ], + "pid": "203060571", + "type": "bf:Place", + "md5": "ed05ef6cf83c7075a9dff44a1665af97" + }, + { + "authorized_access_point": "Les Houches (Haute-Savoie ; r\u00e9gion)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/203376552", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/203376552", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12509599r", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/147176499" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Les_Houches" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GeoNames (2017-07-26)" + ] + }, + { + "noteType": "general", + "label": [ + "Les Houches sont une commune fran\u00e7aise situ\u00e9e dans le d\u00e9partement de la Haute-Savoie, en r\u00e9gion Auvergne-Rh\u00f4ne-Alpes. La commune des Houches est situ\u00e9e dans la vall\u00e9e de l'Arve, non loin de la commune de Chamonix, au pied du mont Blanc. \u00c9tendue sur pr\u00e8s de 5 000 hectares, de 850 m \u00e0 4 304 m (sommet du d\u00f4me du Go\u00fbter), la commune comprend de nombreux hameaux.", + "N 45\u00b053\u203224\u2033 / E 6\u00b047\u203246\u2033" + ] + } + ], + "pid": "203376552", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Haute-Savoie (France)" + } + ], + "variant_access_point": [ + "Houches" + ], + "md5": "3661e9cb16e1069e51179aec0483b4b3" + }, + { + "authorized_access_point": "H\u00e9r\u00e9mence (Valais, Suisse) - Pyramides d'Euseigne", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "914", + "name": "G\u00e9ographie de l'Europe" + } + ], + "identifier": "http://www.idref.fr/204299276", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/204299276", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb17150260r", + "source": "BNF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Atlas universel / \"Le Monde\", S\u00e9lection du \"Reader's digest\", 1989", + "Dict. historique de la Suisse - http://www.hls-dhs-hss.ch (2014-02-20)", + "Heremence.ch - http://www.heremence.ch (2014-02-20)", + "Office national suisse du tourisme - https://www.myswitzerland.com/fr-fr/pyramides-d-euseigne.html (2017-09-13)" + ] + }, + { + "noteType": "general", + "label": [ + "Curiosit\u00e9 g\u00e9ologique, dite aussi hoodoo, demoiselles coiff\u00e9es, colonne de roche friable surmont\u00e9e, coiff\u00e9e d'un socle en roche r\u00e9sistant, situ\u00e9e \u00e0 l'entr\u00e9e du village d'Euseigne situ\u00e9e sur la commune d'H\u00e9r\u00e9mence, Canton du Valais" + ] + } + ], + "pid": "204299276", + "type": "bf:Place", + "variant_access_point": [ + "Chemin\u00e9es de f\u00e9es (H\u00e9r\u00e9mence, Valais, Suisse)", + "Pyramides d'Euseigne (H\u00e9r\u00e9mence, Valais, Suisse)" + ], + "md5": "80f631dbbf7dd4d74709f2004a1f05a4" + }, + { + "authorized_access_point": "Betsiboka (Madagascar, r\u00e9gion)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/219922608", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/219922608", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/2245152865647904940008" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia (2011-11-03)" + ] + }, + { + "noteType": "general", + "label": [ + "Betsiboka est l'une des vingt-deux r\u00e9gions de Madagascar. Elle est situ\u00e9e dans la province de Majunga, dans l'ouest de l'\u00eele", + "S 16\u00b057\u203200\u2033 / E 46\u00b049\u203248\u2033" + ] + } + ], + "pid": "219922608", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Madagascar" + } + ], + "md5": "556f1075a1c84f09cced3a060957c046" + }, + { + "authorized_access_point": "Boeny (Madagascar)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/219924074", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/219924074", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb171412498", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/5150202060003111021" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia (2011-11-03)" + ] + }, + { + "noteType": "general", + "label": [ + "Boeny est l'une des vingt-deux r\u00e9gions de Madagascar. Elle est situ\u00e9e dans la province de Mahajanga, dans l'ouest de l'\u00eele.", + "S 15\u00b043\u203212\u2033 / E 46\u00b019\u203212\u2033" + ] + } + ], + "pid": "219924074", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Madagascar" + } + ], + "md5": "9fa3627c10af7c26e9c09d55e10ac1ab" + }, + { + "authorized_access_point": "Sava (Madagascar, r\u00e9gion)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/219925283", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/219925283", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/6233151304668549460009" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia (2011-11-03)" + ] + }, + { + "noteType": "general", + "label": [ + "La Sava est l'une des vingt-deux r\u00e9gions de Madagascar, dont le nom est un acronyme form\u00e9 \u00e0 partir de ceux de ses quatre districts : Sambava, Antalaha, Vohemar et Andapa. Situ\u00e9e dans la partie du nord-est de l'\u00eele, elle appartient \u00e0 la province de Diego-Suarez. Sa capitale est Sambava", + "S 14\u00b016\u203212\u2033 / E 50\u00b010\u203212\u2033" + ] + } + ], + "pid": "219925283", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Madagascar" + } + ], + "md5": "c017c22eb1fa177b552fe6f249d83882" + }, + { + "authorized_access_point": "Analamanga (Madagascar ; r\u00e9gion administrative)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/22395294X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/22395294X", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/905152080581907230007" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GeoNames (2018-02-01)" + ] + }, + { + "noteType": "general", + "label": [ + "Analamanga est l'une des vingt-deux r\u00e9gions de Madagascar. Elle est situ\u00e9e dans la Province d'Antananarivo, dans le centre de l'\u00eele.", + "S 18\u00b056\u203224\u2033 / E 47\u00b031\u203212\u2033" + ] + } + ], + "pid": "22395294X", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Madagascar" + } + ], + "md5": "ffc58164362384296da7671c0bfc997a" + }, + { + "authorized_access_point": "Diana (Madagascar ; r\u00e9gion administrative)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/223976369", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/223976369", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/345149196398874790984" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GeoNames (2018-02-01)" + ] + }, + { + "noteType": "general", + "label": [ + "Diana (de Diego I & II - Ambilobe - Nosy Be - Ambanja qui sont les districts constituant la r\u00e9gion) est l'une des vingt-deux r\u00e9gions de Madagascar, situ\u00e9e dans la province de Diego-Suarez, dans le nord de l'\u00eele.", + "S 13\u00b030\u203200\u2033 / E 49\u00b000\u203200\u2033" + ] + } + ], + "pid": "223976369", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Madagascar" + } + ], + "variant_access_point": [ + "R\u00e9gion Diana" + ], + "md5": "1ab8cbf61e396f2514d448f37a9b6563" + }, + { + "authorized_access_point": "Atsinanana (Madagascar ; r\u00e9gion administrative)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/223979171", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/223979171", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/6215152080604607230004" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GeoNames (2018-02-02)" + ] + }, + { + "noteType": "general", + "label": [ + "L'Atsinanana (Est) est une des vingt-deux r\u00e9gions de Madagascar. Elle est situ\u00e9e dans la province de Tamatave, dans l'Est de l'\u00eele", + "S 19\u00b000\u203200\u2033 / E 48\u00b054\u203200\u2033" + ] + } + ], + "pid": "223979171", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Madagascar" + } + ], + "md5": "8e97b0d14cc29bfd55b969ed302c4b0d" + }, + { + "authorized_access_point": "Sofia (Madagascar ; r\u00e9gion administrative)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/224235893", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/224235893", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/3351152080592507230005" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GeoNames (2018-02-13)" + ] + }, + { + "noteType": "general", + "label": [ + "Sofia est l'une des vingt-deux r\u00e9gions de Madagascar, nomm\u00e9e d'apr\u00e8s le nom d'un fleuve. Elle est situ\u00e9e dans la province de Majunga (ou Mahajanga) et son chef-lieu est Antsohihy", + "S 14\u00b052\u203247\u2033 / E 47\u00b059\u203215\u2033" + ] + } + ], + "pid": "224235893", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Madagascar" + } + ], + "variant_access_point": [ + "Sofia (r\u00e9gion)" + ], + "md5": "5e3737c813f0e7ec9036c319107c5622" + }, + { + "authorized_access_point": "Moundou (Tchad )", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/225651289", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/225651289", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/126787513" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Moundou" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GeoNames (2018-03-13)", + "wikipedia.org, 2018-04-04" + ] + }, + { + "noteType": "general", + "label": [ + "Moundou est la seconde ville du Tchad et la capitale \u00e9conomique du sud tchadien. Chef-lieu de la r\u00e9gion du Logone Occidental et du d\u00e9partement du Lac Wey" + ] + } + ], + "pid": "225651289", + "type": "bf:Place", + "variant_access_point": [ + "Mundu" + ], + "md5": "cd22324daf49b9c92b2cd190ccea7470" + }, + { + "authorized_access_point": "Fort Branch (Ind.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/226539962", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/226539962", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/148991886" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2018-05-02" + ] + } + ], + "pid": "226539962", + "type": "bf:Place", + "variant_access_point": [ + "Ft Branch" + ], + "md5": "5135ade3ee5903608a2ab829156c3938" + }, + { + "authorized_access_point": "Kansas River (Kan. ; cours d'eau)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/226556425", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/226556425", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/69152864114304821008" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "https://fr.wikipedia.org/wiki/Kansas_(rivi\u00e8re)/, 2024-07-10" + ] + }, + { + "noteType": "general", + "label": [ + "La rivi\u00e8re Kansas (connue localement sous le nom de Kaw), ou Kansas River, est une rivi\u00e8re du nord-est de l'\u00c9tat du Kansas, aux \u00c9tats-Unis" + ] + } + ], + "pid": "226556425", + "type": "bf:Place", + "md5": "9625ff0cc2cfb745ed8456522ab63d51" + }, + { + "authorized_access_point": "Garland (Kan.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/226664414", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/226664414", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/99152864133904821583" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2018-05-03" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Bourbon" + ] + } + ], + "pid": "226664414", + "type": "bf:Place", + "md5": "b7973488828bff5c99047dd00ca984ae" + }, + { + "authorized_access_point": "Neosho River (\u00c9tats-Unis. ; cours d'eau)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/226835391", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/226835391", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/126152864098304820720" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2018-05-09" + ] + }, + { + "noteType": "general", + "label": [ + "La Neosho est un cours d'eau et affluent de la rivi\u00e8re Arkansas dans les \u00c9tats am\u00e9ricains du Kansas et de l'Oklahoma" + ] + } + ], + "pid": "226835391", + "type": "bf:Place", + "md5": "5fcb18e8f3805022f3bef99b48f4b707" + }, + { + "authorized_access_point": "Cimarron River (\u00c9tats-Unis ; cours d'eau)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/226964558", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/226964558", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/145152864188104822007" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "https://en.wikipedia.org/wiki/Cimarron_River_(Arkansas_River_tributary)/, 2018-05-16" + ] + }, + { + "noteType": "general", + "label": [ + "La rivi\u00e8re Cimarron est un affluent de l'Arkansas dans le sud-ouest des \u00c9tats-Unis, donc un sous-affluent du Mississippi. Long de 1 123 km, elle coule \u00e0 travers quatre \u00c9tats : le Nouveau-Mexique, l'Oklahoma, le Colorado, et le Kansas" + ] + } + ], + "pid": "226964558", + "type": "bf:Place", + "md5": "0ee0ebae8761ddf29301ea02cd62631e" + }, + { + "authorized_access_point": "S\u00e9rilhac (Corr\u00e8ze)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/230294707", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/230294707", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/89153953219005560177" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. communes, 1984" + ] + } + ], + "pid": "230294707", + "type": "bf:Place", + "md5": "01a8dcc56fbc6b182150feb9099ae297" + }, + { + "authorized_access_point": "Alexandrie (\u00c9gypte)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/231217161", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/231217161", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/1371151172692439210005" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040011380" + } + ], + "pid": "231217161", + "type": "bf:Place", + "md5": "06464119ea5037b9111d405e97751d9b" + }, + { + "authorized_access_point": "Pommiers (Loire)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/231498829", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/231498829", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/278471593" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Pommiers-en-Forez" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Pommiers-en-Forez / Denys Buenner, 1947" + ] + } + ], + "pid": "231498829", + "type": "bf:Place", + "variant_access_point": [ + "Pommiers-en-Forez" + ], + "md5": "7eb6c59dae29268611e965eafa1fa563" + }, + { + "authorized_access_point": "Chalain-le-Comtal (Loire)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/233055045", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/233055045", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/1106154983527467860006" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Chalain-le-Comtal" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Chalain-le-Comtal : un village de la Plaine, il y a 100 ans / d'apr\u00e8s les notes de l'abb\u00e9 No\u00ebl Valendru ; pr\u00e9sentation et notes: Marie Grange, Joseph Barou, 1995" + ] + } + ], + "pid": "233055045", + "type": "bf:Place", + "md5": "191e3fcaafb056751405a41b12fe913d" + }, + { + "authorized_access_point": "Pont-de-Veyle (Ain)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/237826763", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/237826763", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb121238030", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/243846589" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Pont-de-Veyle" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. communes, 1984" + ] + } + ], + "pid": "237826763", + "type": "bf:Place", + "md5": "5c1ded802540b15ca4734fc0c8cfd77f" + }, + { + "authorized_access_point": "Saint-Jean-de-Sixt (Haute-Savoie)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/242868851", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/242868851", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/4735159248350804870000" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Saint-Jean-de-Sixt" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. communes, 1984" + ] + } + ], + "pid": "242868851", + "type": "bf:Place", + "md5": "0c0d0bce5d44d258683d1c6d7efcb9ec" + }, + { + "authorized_access_point": "Zhejiang", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/250173565", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/250173565", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15040156k", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/239458535" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "https://fr.wikipedia.org/wiki/Zhejiang, 2020-11-05" + ] + }, + { + "noteType": "general", + "label": [ + "Province sud de Shanghai (Chine)" + ] + } + ], + "pid": "250173565", + "type": "bf:Place", + "variant_access_point": [ + "Tch\u00e9-Kiang", + "\u6d59", + "\u6d59\u6c5f", + "Tch\u00e9kiang" + ], + "md5": "afdd1add6d0f0a017cb33d40f93751e4" + }, + { + "authorized_access_point": "Suisse (centre)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/250748533", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/250748533", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/131160789752202681728" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040794903" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Karton : Architektur im Alltag der Zentralschweiz / Redaktion Gerold Kunz, 2004-" + ] + }, + { + "noteType": "general", + "label": [ + "Correspond aux cantons de Lucerne, Nidwald, Obwald, Schwytz, Uri et Zoug" + ] + } + ], + "pid": "250748533", + "type": "bf:Place", + "variant_access_point": [ + "Zentralschweiz", + "Suisse centrale" + ], + "md5": "04db2c2363c7162f3bbc176b6fc8c5e0" + }, + { + "authorized_access_point": "Conches, Vall\u00e9e de (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/253709520", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/253709520", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/82161511999070560407" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04021592X" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Proc\u00e8s de sorcellerie dans la vall\u00e9e de Conches (1466-1467) et chasses aux sorciers et sorci\u00e8res en Valais au XVe si\u00e8cle = Hexenprozesse im Goms (166-1467) und Hexenverfolgungen im Wallis im 15 Jahrhundert : Kurzfassung / Chantal Amman-Doubliez ; \u00fcbersetzt von Curdin Ebneter ; mit einer \u00dcbersetzung der lateinischen Hexenprozessakten von Biel VS (1466-167) von Hans-Robert Ammann und Josef Sarbach, 2020.", + "https://fr.wikipedia.org/wiki/Vall%C3%A9e_de_Conches, 2021-02-22" + ] + }, + { + "noteType": "general", + "label": [ + "La vall\u00e9e de Conches (Goms ou Gommertal en allemand) est une vall\u00e9e suisse situ\u00e9e \u00e0 cheval sur le demi-district de Rarogne oriental et le district de Conches en Valais." + ] + } + ], + "pid": "253709520", + "type": "bf:Place", + "variant_access_point": [ + "Goms, Vall\u00e9e de (Valais, Suisse)", + "Gommertal (Valais, Suisse)" + ], + "md5": "5a10ab48f9d9b49fe45d691d87f508e0" + }, + { + "authorized_access_point": "Guin (Fribourg, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/253865727", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/253865727", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/141295369" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Guin" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dachziegel der freiburgischen Ziegeleien D\u00fcdingen, Le Mouret und Corbi\u00e8res : chemische, geologische und historische Aspekte / Marino Maggetti und Giulio Galetti. In: Bulletin de la Soci\u00e9t\u00e9 fribourgeoise des sciences naturelles = Bulletin der Naturforschenden Gesellschaft Freiburg, 2020", + "Conf\u00e9d\u00e9ration suisse, Office f\u00e9d\u00e9ral de la statistiques, page 'Noms de communes dont la traduction est usuelle', https://www.bfs.admin.ch/bfs/fr/home/bases-statistiques/repertoire-officiel-communes-suisse/noms-communes-traduction-usuelle.html, 2024-03-06", + "https://hls-dhs-dss.ch/fr/articles/046549, 2021-03-01" + ] + }, + { + "noteType": "general", + "label": [ + "Commune du canton de Fribourg (Suisse). Nom allemand : D\u00fcdingen" + ] + } + ], + "pid": "253865727", + "type": "bf:Place", + "md5": "f686915fcd64b1c01102ed1df1471a2d" + }, + { + "authorized_access_point": "La Balme-de-Sillingy (Haute-Savoie)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/254939422", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/254939422", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12125106k", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/131548127" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/La_Balme-de-Sillingy" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. communes, 1984" + ] + } + ], + "pid": "254939422", + "type": "bf:Place", + "variant_access_point": [ + "Balme-de-Sillingy, La (Haute-Savoie)" + ], + "md5": "f734484734464a9b442e7b0c811e0cb9" + }, + { + "authorized_access_point": "Bardonnex (Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/255076592", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/255076592", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/234694698" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Bardonnex" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dictionnaire historique de la Suisse (DHS) - https://hls-dhs-dss.ch/fr/articles/002887/2014-06-24/, 2021-04-29", + "Compesi\u00e8res, Landecy, Charrot, Bardonnex, Croix-de-Rozon : histoire et v\u00e9cu d'une commune : Commune de Bardonnex / Eric Golay, Dominique Zumkeller ; Commune de Bardonnex, 2007" + ] + }, + { + "noteType": "general", + "label": [ + "Commune du canton de Gen\u00e8ve issue de la division, en 1851, de la commune de Compesi\u00e8res en deux entit\u00e9s, Bardonnex et Plan-les-Ouates" + ] + } + ], + "pid": "255076592", + "type": "bf:Place", + "md5": "874ab0c509222b8eb8705c79dfec809c" + }, + { + "authorized_access_point": "Ch\u00eane-Bougeries (Suisse) - Grange-Canal", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/25527999X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/25527999X", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Grange-Canal et Jean Jacques Rousseau / Louis Thomas, 1901", + "Commune de Ch\u00eane-Bougeries - https://chene-bougeries.ch/, 2021-05-11", + "DHS - https://hls-dhs-dss.ch/fr/articles/002894/2005-07-14/, 2021-05-10" + ] + } + ], + "pid": "25527999X", + "type": "bf:Place", + "md5": "52d4b49a92e09d88b5f8228f6b006a41" + }, + { + "authorized_access_point": "Les Brenets (Neuch\u00e2tel, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/256800375", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/256800375", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/133675509" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)959239103" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Les Brenets et sa vieille Eglise : \"500 ans d'une histoire commune\" / [r\u00e9d., conception David Favre, Pierre Del\u00e9glise], 2011", + "http://viaf.org/processed/SZ%7C959239103, 2021-08-09", + "https://hls-dhs-dss.ch/fr/articles/002840/2004-10-14, 2021-08-09", + "https://www.lelocle.ch/accueil-les-brenets, 2021-08-09" + ] + }, + { + "noteType": "general", + "label": [ + "Village de la commune du Locle dans le canton de Neuch\u00e2tel. Sur les bord du Doubs. Fusion de l'ancienne commune avec celle du Locle en janvier 2021." + ] + } + ], + "pid": "256800375", + "type": "bf:Place", + "md5": "0787eced143168e9ce8373f79855d251" + }, + { + "authorized_access_point": "Vernayaz (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "914" + } + ], + "identifier": "http://www.idref.fr/257056378", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/257056378", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb17879678q", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)94231199X" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/9159697710603312385" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. historique de la Suisse - http://www.hls-dhs-dss.ch (2020-07-03)", + "SCD de Poitiers, Fonds ancien, Manuscrits isol\u00e9s, MS 86, Herbier peint \u00e0 la gouache par Marie Corneille Saint-Marc, Calames http://www.calames.abes.fr/pub/ms/Calames-202171516757929351" + ] + }, + { + "noteType": "general", + "label": [ + "Ville du canton du Valais" + ] + } + ], + "pid": "257056378", + "type": "bf:Place", + "md5": "42ee7d35fc3b2ae2a0c8eacae5b75b9e" + }, + { + "authorized_access_point": "Parc national suisse (Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/257143025", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/257143025", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/148583304" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040539164" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Parc national suisse, sauvage et fascinant / Hans Lozza, 2021", + "https://www.nationalpark.ch/fr/about/a-propos-de-nous/particularites/, 2021-09-07" + ] + }, + { + "noteType": "general", + "label": [ + "Parc national de 170 km2 situ\u00e9 dans le canton des Grisons (Engadine et val M\u00fcstair) ; fond\u00e9 en 1914 ; unique parc national de Suisse" + ] + } + ], + "pid": "257143025", + "type": "bf:Place", + "variant_access_point": [ + "Parc natiunal svizzer (Suisse)", + "Parco nazionale svizzero (Suisse)", + "Schweizerische Nationalpark (Suisse)" + ], + "md5": "9bb637f36d0dad8cfa4b3c349e4d3988" + }, + { + "authorized_access_point": "M\u00f4tiers (Neuch\u00e2tel, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/257162895", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/257162895", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/109163408932100091569" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)941396754" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "M\u00f4tiers 2021 : art en plein air, 2021" + ] + }, + { + "noteType": "general", + "label": [ + "Localit\u00e9 suisse de la commune de Val-de-Travers. - Ancienne commune suisse du canton de Neuch\u00e2tel, situ\u00e9e dans la r\u00e9gion Val-de-Travers, qui a fusionn\u00e9 le 1er janvier 2009" + ] + } + ], + "pid": "257162895", + "type": "bf:Place", + "md5": "f91b19a42fc80355ce540b96c5901de0" + }, + { + "authorized_access_point": "Champex (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/257475117", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/257475117", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/179163408660000090306" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)960746404" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Stage de biog\u00e9ographie alpine, \u00e0 Champex, du 15 au 19 juillet 2000 / Beth Zaniewski, Cyrille Faure, [2000]" + ] + } + ], + "pid": "257475117", + "type": "bf:Place", + "variant_access_point": [ + "Champex-Lac (Valais, Suisse)" + ], + "md5": "a150675b1d742d86a92f10c6cde8698b" + }, + { + "authorized_access_point": "Fully (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/258360976", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/258360976", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/1377159474070127660711" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)942463633" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "La question sociale \u00e0 Fully / perception, d\u00e9finition et analyse de l'action sociale fuill\u00e9raine / Dominique Rast, 1995", + "DHS - https://hls-dhs-dss.ch/fr/articles/002729/2007-06-14/, 2021-11-09" + ] + }, + { + "noteType": "general", + "label": [ + "Commune du canton du Valais" + ] + } + ], + "pid": "258360976", + "type": "bf:Place", + "md5": "30ce38b8f0f62dd63f3693979745ed81" + }, + { + "authorized_access_point": "Franches-Montagnes (Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/25887421X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/25887421X", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04259634" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "https://fr.wikipedia.org/wiki/District_des_Franches-Montagnes" + ] + }, + { + "noteType": "general", + "label": [ + "Suisse, canton de Jura" + ] + } + ], + "pid": "25887421X", + "type": "bf:Place", + "md5": "12510e656ac15b380b0ba55b4c329375" + }, + { + "authorized_access_point": "Vuisternens-devant-Romont (Fribourg, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/260281395", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/260281395", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/305971955" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Vuisternens-devant-Romont" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Un patrimoine religieux (d)\u00e9tonnant : les \"mortiers\" de la paroisse de Vuisternens-devant-Romont / par Aloys Lauper. In : Annales fribourgeoises, vol. 83 (2021)", + "Dictionnaire historique de la Suisse, https://hls-dhs-dss.ch/fr/articles/000890/2016-09-27, 2022-02-10" + ] + }, + { + "noteType": "general", + "label": [ + "Commune du canton de Fribourg (Suisse), ayant fusionn\u00e9 en 2003 avec Est\u00e9venens, La Joux, La Magne, Les Ecasseys, Lieffrens, Sommentier et Villariaz, ainsi qu'avec La Neirigue en 2004" + ] + } + ], + "pid": "260281395", + "type": "bf:Place", + "md5": "6016f218ce8307e70daed5896b0ccf1f" + }, + { + "authorized_access_point": "Savi\u00e8se (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/260555088", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/260555088", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/1325159233919803370377" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041184556" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Savi\u00e8se / Delphine Debons ; avec des contributions de Emmanuel Reynard [et 5 autres], 2021", + "https://www.saviese.ch/fr/villages-hameaux-1644.html, 2022-02-23" + ] + }, + { + "noteType": "general", + "label": [ + "Commune situ\u00e9e dans le canton du Valais ; compos\u00e9e de 6 villages et de nombreux hameaux." + ] + } + ], + "pid": "260555088", + "type": "bf:Place", + "md5": "cb1e38d6699a3f08bad0b01bfa893442" + }, + { + "authorized_access_point": "Chasseral (Berne, Suisse ; mont)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/260905585", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/260905585", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/167164959833424021618" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040903435" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Skieuses et skieurs pr\u00e8s de Chasseral / Amez-Droz, Arthur, 1883-1962 (cr\u00e9ateur), 14 janvier 1917", + "Visualisation sur SITN- G\u00e9oportail du syst\u00e8me d'information du territoire neuch\u00e2telois https://sitn.ne.ch, 2022-03-10" + ] + } + ], + "pid": "260905585", + "type": "bf:Place", + "md5": "d27a9d24255b5076249a5e2cdc38993e" + }, + { + "authorized_access_point": "La Sagne (Neuch\u00e2tel, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/260966401", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/260966401", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/93164959497624020651" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)964991500" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "L'int\u00e9rieur du temple de La Sagne apr\u00e8s r\u00e9novation / Galley, Christian,, photographe (cr\u00e9ateur), 2001", + "Visualisation sur SITN- G\u00e9oportail du syst\u00e8me d'information du territoire neuch\u00e2telois https://sitn.ne.ch, 2022-03-14" + ] + } + ], + "pid": "260966401", + "type": "bf:Place", + "relation_pid": { + "value": "261065416", + "type": "redirect_from" + }, + "md5": "23fec1c5f491ec6cbe11cc06bdb3a79d" + }, + { + "authorized_access_point": "Saint-Imier (Berne, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/260996440", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/260996440", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/48144647641235584390" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": " (DE-101)949296880" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Georges Schneider lors de l'inauguration de son \"Imier labourant\" \u00e0 Saint-Imier / Buhler, Jean, 1919-2017 (cr\u00e9ateur), 1959" + ] + } + ], + "pid": "260996440", + "type": "bf:Place", + "md5": "aa18cf35371968d840faec5870a7c05e" + }, + { + "authorized_access_point": "Saint-L\u00e9onard (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/261121162", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/261121162", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/102164959931224022033" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)954696867" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Saint-L\u00e9onard de jadis et de nagu\u00e8re / Barth\u00e9l\u00e9my Gillioz, 2021", + "https://www.st-leonard.ch/index.php/en-bref, 2022-03-22" + ] + }, + { + "noteType": "general", + "label": [ + "Commune situ\u00e9e dans le canton du Valais" + ] + } + ], + "pid": "261121162", + "type": "bf:Place", + "md5": "52c89b35706e1d98b3ae5550621b272f" + }, + { + "authorized_access_point": "Le Locle (Neuch\u00e2tel, Suisse) - Grande-Rue", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/26138449X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/26138449X", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "La Grand-Rue au Locle / Amez-Droz, Arthur, 1883-1962 (cr\u00e9ateur), 1920", + "Visualisation sur SITN- G\u00e9oportail du syst\u00e8me d'information du territoire neuch\u00e2telois https://sitn.ne.ch, 2022-03-29" + ] + } + ], + "pid": "26138449X", + "type": "bf:Place", + "variant_access_point": [ + "Le Locle (Neuch\u00e2tel, Suisse) - Grand-Rue" + ], + "md5": "4760346bfea72964355aaa6072a566d9" + }, + { + "authorized_access_point": "Mund (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/26144722X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/26144722X", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/340164960096024022192" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)941147797" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "L'or de Mund / Rolf Jeitziner, Barbara Seiler, 2021", + "https://fr.wikipedia.org/wiki/Mund_(Valais), 2022-03-31" + ] + }, + { + "noteType": "general", + "label": [ + "Village situ\u00e9 dans le Haut-Valais" + ] + } + ], + "pid": "26144722X", + "type": "bf:Place", + "md5": "176ed92fffbad5edbc3ae9b0b0dc1d25" + }, + { + "authorized_access_point": "Combe des Enfers (Neuch\u00e2tel, Suisse ; combe)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/261527452", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/261527452", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Hameau du Verger et Combe des Enfers \u00e0 l'extr\u00e9mit\u00e9 est du Locle / Amez-Droz, Arthur, 1883-1962 (cr\u00e9ateur), Entre 1916 et 1919", + "Visualisation sur SITN- G\u00e9oportail du syst\u00e8me d'information du territoire neuch\u00e2telois https://sitn.ne.ch, 2022-04-01" + ] + } + ], + "pid": "261527452", + "type": "bf:Place", + "md5": "704d93e59004fda8b9e6c14148e04a9b" + }, + { + "authorized_access_point": "Sahiwal (Pakistan ; district)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/261762311", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/261762311", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/839165264609810191507" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Gazetteer of the Montgomery District (Sahiwal) 1883-84, 2012", + "Internet, https://authorities.loc.gov, 2022-04-12", + "Internet, https://wikipedia.org, 2022-04-12", + "Marine Defosse. BULAC. TEL. 01.81.69.18.81 M\u00e8l. marine.defossebulac.fr" + ] + }, + { + "noteType": "general", + "label": [ + "Le district de Sahiwal est une subdivision administrative de la province du Pendjab au Pakistan" + ] + } + ], + "pid": "261762311", + "type": "bf:Place", + "variant_access_point": [ + "\u0633\u0627\u06be\u06cc\u0648\u0627\u0644 (Pakistan ; district)", + "Sah\u012bv\u0101l (Pakistan ; district)", + "Montgomery (Pakistan ; district)" + ], + "md5": "6ef3ea73b6a2e254b577c414e1b7fa9a" + }, + { + "authorized_access_point": "Bourg-Saint-Pierre (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/261933841", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/261933841", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/158595722" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)958192014" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Bourg-Saint-Pierre" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Bourg-Saint-Pierre : souvenirs d'autrefois et images d'aujourd'hui / Louis Moret-Rausis, 1996", + "https://www.bourg-saint-pierre.ch/, 2022-04-21" + ] + }, + { + "noteType": "general", + "label": [ + "Commune du canton du Valais et localit\u00e9 la plus \u00e9lev\u00e9e du district de l\u2019Entremont." + ] + } + ], + "pid": "261933841", + "type": "bf:Place", + "variant_access_point": [ + "Sankt Petersburg (Valais, Suisse)" + ], + "md5": "d0f7d9b7add5dd08bf3ef5b9ff16bc08" + }, + { + "authorized_access_point": "W\u00fcnnewil-Flamatt (Fribourg, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/262216744", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/262216744", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/93166001566975020277" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "W\u00fcnnewil-Flamatt - zwei D\u00f6rfer, eine Gemeinde : ein Portr\u00e4t, 2014", + "Dictionnaire historique de la Suisse, https://hls-dhs-dss.ch/fr/articles/001040/2013-11-26, 2022-05-05" + ] + }, + { + "noteType": "general", + "label": [ + "Commune du canton de Fribourg (Suisse), district de la Singine, comprenant les villages de W\u00fcnnewil et Flamatt, ainsi que de nombreux hameaux" + ] + } + ], + "pid": "262216744", + "type": "bf:Place", + "md5": "2fd5db96c4165ebf0ea4d307a0ba7afc" + }, + { + "authorized_access_point": "Fleurier (Neuch\u00e2tel, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/262555697", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/262555697", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)941214095" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Vue panoramique de Fleurier et du Val-de-Travers / Chiffelle, Max-F., 19..-.... (cr\u00e9ateur), 1949", + "Visualisation sur SITN- G\u00e9oportail du syst\u00e8me d'information du territoire neuch\u00e2telois https://sitn.ne.ch, 2022-05-23" + ] + } + ], + "pid": "262555697", + "type": "bf:Place", + "md5": "f33239d88cfb4573b57af687ef65d57b" + }, + { + "authorized_access_point": "Fleurier (Neuch\u00e2tel, Suisse) - Rue du Temple", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/262557215", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/262557215", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Temple et maison rue du Temple 1 \u00e0 Fleurier / Charr\u00e8re, Jean-Jacques,, 1951 (cr\u00e9ateur), 1984", + "Visualisation sur SITN- G\u00e9oportail du syst\u00e8me d'information du territoire neuch\u00e2telois https://sitn.ne.ch, 2022-05-23" + ] + } + ], + "pid": "262557215", + "type": "bf:Place", + "md5": "acc72c2a91b21893cdbac8f94741ec5f" + }, + { + "authorized_access_point": "Cressier (Neuch\u00e2tel, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/262767619", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/262767619", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/64165747035353931293" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)954064593" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "https://hls-dhs-dss.ch/fr/articles/002848/2017-12-18/" + ] + }, + { + "noteType": "general", + "label": [ + "Commune du canton de Neuch\u00e2tel (Suisse)" + ] + } + ], + "pid": "262767619", + "type": "bf:Place", + "md5": "2537444e49f98fe63abda2f5e5a75181" + }, + { + "authorized_access_point": "Chapelle (Gl\u00e2ne, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/262834162", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/262834162", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/6626155286653687180005" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Chapelle_(Gl\u00e2ne)" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Le p'tit Chapelois, no 1(d\u00e9c. 1998)", + "Dictionnaire historique de la Suisse, https://hls-dhs-dss.ch/fr/articles/000850/2003-11-11, 2022-06-08" + ] + }, + { + "noteType": "general", + "label": [ + "Commune du canton de Fribourg (Suisse), district de la Gl\u00e2ne. \u00c0 ne pas confondre avec l'ancienne commune fribourgeoise homonyme, dans le district de la Broye, partie de la commune de Cheiry de 2005 \u00e0 2020, puis de celle de Surpierre d\u00e8s 2021" + ] + } + ], + "pid": "262834162", + "type": "bf:Place", + "md5": "9edee3d222f8d2ef4c6b65672439f8cc" + }, + { + "authorized_access_point": "M\u00f4tiers (Neuch\u00e2tel, Suisse) - Temple", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/26298606X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/26298606X", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "https://fr.wikipedia.org/wiki/Temple_de_M%C3%B4tiers, 2022-06-15", + "Le temple de M\u00f4tiers-Boveresse : historique \u00e9dit\u00e9 \u00e0 l'occasion de la restauration / Courvoisier, Jean, 1922-2010 (cr\u00e9ateur);Bovet, Jacques,, 1921 (contributeur - collaborateur), 1961" + ] + }, + { + "noteType": "general", + "label": [ + "Instaur\u00e9e \u00e0 Neuch\u00e2tel en 1530, la R\u00e9forme va conduire \u00e0 la s\u00e9cularisation du prieur\u00e9 en 1537 et \u00e0 la transformation de l\u2019\u00e9glise Notre-Dame en temple protestant." + ] + } + ], + "pid": "26298606X", + "type": "bf:Place", + "variant_access_point": [ + "M\u00f4tiers (Neuch\u00e2tel, Suisse) - Temple de M\u00f4tiers", + "Notre-Dame (M\u00f4tiers, Neuch\u00e2tel, Suisse)" + ], + "md5": "657691dbc79fbf3dac4bf2d68a9f5b73" + }, + { + "authorized_access_point": "Corcelles-Cormondr\u00e8che (Neuch\u00e2tel, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/263043231", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/263043231", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/766170011248884810003" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)973555181" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Vignes et village de Corcelles-Cormondr\u00e8che / Perret, Henri,, pharmacien (cr\u00e9ateur), Entre 1890 et 1900", + "Canton de Neuch\u00e2tel, Suisse. Visualisation sur SITN- G\u00e9oportail du syst\u00e8me d'information du territoire neuch\u00e2telois https://sitn.ne.ch, 2022-06-18" + ] + } + ], + "pid": "263043231", + "type": "bf:Place", + "md5": "b6ef9a165518accf055b7dd7dfa9e2f6" + }, + { + "authorized_access_point": "Boudry (Neuch\u00e2tel, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/26304324X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/26304324X", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/64165746780053930276" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)945475136" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Viaduc ferroviaire enjambant l'Areuse \u00e0 Boudry / Amez-Droz, Arthur, 1883-1962 (cr\u00e9ateur), Mai 1916", + "Visualisation sur SITN- G\u00e9oportail du syst\u00e8me d'information du territoire neuch\u00e2telois https://sitn.ne.ch, 2022-06-18" + ] + } + ], + "pid": "26304324X", + "type": "bf:Place", + "md5": "2d59a180192ef2dd2eed7fc6fa6ef400" + }, + { + "authorized_access_point": "Valangin (Neuch\u00e2tel, Suisse ; seigneurie)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/26304338X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/26304338X", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/1788159234878203372988" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)987073028" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "https://hls-dhs-dss.ch/fr/articles/007624/2014-03-05, 2022-06-18", + "D\u00e9claration des droits et des revenus de la Seigneurie de Valangin : 1531, janvier / Scheurer, R\u00e9my, 1934-.... (contributeur - collaborateur), 1988" + ] + }, + { + "noteType": "general", + "label": [ + "La seigneurie de Valangin est une seigneurie du Canton de Neuch\u00e2tel en Suisse. En 1707, elle devient un comt\u00e9." + ] + } + ], + "pid": "26304338X", + "type": "bf:Place", + "md5": "0e2346153e16813dfac731c41bb3b08a" + }, + { + "authorized_access_point": "W\u00fcnnewil-Flamatt (Fribourg, Suisse ; r\u00e9gion)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/263197794", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/263197794", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/130165746668753930715" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Schwarzenburg : Schmitten - Flamatt - R\u00fceggisberg, 2022", + "Dictionnaire historique de la Suisse, https://hls-dhs-dss.ch/fr/articles/001040/2013-11-26, 2022-06-27" + ] + } + ], + "pid": "263197794", + "type": "bf:Place", + "md5": "f7c1603286e3fb788c2e1c1d09917e5f" + }, + { + "authorized_access_point": "\u00c9cublens (Fribourg, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/263222985", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/263222985", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/128440319" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/\u00c9cublens_(Fribourg)" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "\u00c9cublens, une commune qui veut garder son \u00e2me et sa physionomie / G\u00e9rard Bourquenoud. In : Fribourg illustr\u00e9, no 19 (1988)", + "Dictionnaire historique de la Suisse, https://hls-dhs-dss.ch/fr/articles/000856/2006-03-06, 2022-06-28" + ] + }, + { + "noteType": "general", + "label": [ + "Commune du canton de Fribourg (Suisse), district de la Gl\u00e2ne, comprenant le village-rue d'\u00c9cublens, les hameaux d'Eschiens et de Villangeaux" + ] + } + ], + "pid": "263222985", + "type": "bf:Place", + "md5": "3fbcf2b2518506e2cd08457aebdf2cc0" + }, + { + "authorized_access_point": "Gr\u00f4ne (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/263256790", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/263256790", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/237165747430953932437" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)949921300" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "L'histoire de Gr\u00f4ne et des communes environnantes / Michel M\u00e9tral" + ] + } + ], + "pid": "263256790", + "type": "bf:Place", + "md5": "a804b94e5e5f1aeed17b14ad12d5c76c" + }, + { + "authorized_access_point": "Nendaz (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/26369514X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/26369514X", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/3234166063377880560006" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041178068" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Arboueytoeu dij'oratou\u00e9 de Ninde / Germaine du Blanc, 2021", + "https://www.nendaz.org/" + ] + }, + { + "noteType": "general", + "label": [ + "Commune situ\u00e9e dans le canton du Valais. Compos\u00e9e d'une quinzaine de villages et de hameaux" + ] + } + ], + "pid": "26369514X", + "type": "bf:Place", + "md5": "8c193bee01fd5652c21dabb4d7ac5444" + }, + { + "authorized_access_point": "Les Mayens-de-Sion (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/263838250", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/263838250", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/236561087" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)958901333" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Les Mayens de Sion : la montagne des S\u00e9dunois / sous la dir. de Pierre Dall\u00e8ves, Ga\u00ebtan Cassina, Fran\u00e7oise Vannotti ; photogr. Alain de Kalbermatten, 2009", + "https://sd-mayensdesion.ch/, 2022-08-10" + ] + }, + { + "noteType": "general", + "label": [ + "Lieu de vill\u00e9giature situ\u00e9 en Valais, \u00e0 cheval entre les communes de Vex et de Sion." + ] + } + ], + "pid": "263838250", + "type": "bf:Place", + "md5": "16420b7809c0b1ee4505918244ed51ce" + }, + { + "authorized_access_point": "Stalden (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/264073258", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/264073258", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/241211327" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)95731910X" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Famille dans un pr\u00e9, Stalden, 1880-1900", + "https://www.valais4you.ch/fr/le-valais-en-quelques-mots/habitat/abecedaire-des-communes/viege/stalden-94, 2022-08-30" + ] + }, + { + "noteType": "general", + "label": [ + "Commune situ\u00e9e dans le district de Vi\u00e8ge dans le Haut-Valais" + ] + } + ], + "pid": "264073258", + "type": "bf:Place", + "md5": "72f203384a8cfab218e668ca6bbb22f4" + }, + { + "authorized_access_point": "Grimisuat (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/264087313", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/264087313", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/46166596464417590876" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)106040219X" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "R\u00e9p\u00e9tition musicale, Grimisuat / Tibor Varga, 1973", + "https://www.grimisuat.ch/commune/situation-acces-3759.html, 2022-08-30" + ] + }, + { + "noteType": "general", + "label": [ + "Commune situ\u00e9e en Valais" + ] + } + ], + "pid": "264087313", + "type": "bf:Place", + "md5": "cc48ede9388948c758b2f7d4e275e807" + }, + { + "authorized_access_point": "La Grande B\u00e9roche (Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/264145046", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/264145046", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/34153288315232652105" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/La_Grande_B\u00e9roche" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Milvignes et r\u00e9gion : La Grande B\u00e9roche : plan de r\u00e9gion / Brandmark Services (Bichwil) (cartographe), 2019" + ] + }, + { + "noteType": "general", + "label": [ + "Canton de Neuch\u00e2tel, Suisse. Visualisation sur SITN- G\u00e9oportail du syst\u00e8me d'information du territoire neuch\u00e2telois https://sitn.ne.ch, 2022-09-01" + ] + } + ], + "pid": "264145046", + "type": "bf:Place", + "md5": "4b07adf22b9ead6852b6660c4960709b" + }, + { + "authorized_access_point": "Sion (Valais, Suisse) - Ch\u00e2teau de Tourbillon", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/264271831", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/264271831", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)958593663" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Vue sur les ch\u00e2teaux de Val\u00e8re et Tourbillon, Sion, 1880-1910", + "https://siontourisme.ch/fr/tourbillon, 2022-09-08" + ] + }, + { + "noteType": "general", + "label": [ + "Ch\u00e2teau situ\u00e9 sur la colline de Tourbillon, \u00e0 Sion dans le canton du Valais" + ] + } + ], + "pid": "264271831", + "type": "bf:Place", + "variant_access_point": [ + "Ch\u00e2teau de Tourbillon (Valais, Sion, Suisse)", + "Tourbillon, Ch\u00e2teau de (Valais, Sion, Suisse)" + ], + "md5": "2224c31fce194083e408842feea9b7ef" + }, + { + "authorized_access_point": "Trient, Vall\u00e9e du (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/264406095", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/264406095", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/247827636" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)955884152" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Vall\u00e9e_du_Trient" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Passage de la T\u00eate Noire, Vall\u00e9e du Trient, 1863", + "https://fr.wikipedia.org/wiki/Vall%C3%A9e_du_Trient, 2022-09-15" + ] + }, + { + "noteType": "general", + "label": [ + "Vall\u00e9e situ\u00e9e dans le Bas-Valais" + ] + } + ], + "pid": "264406095", + "type": "bf:Place", + "variant_access_point": [ + "Vall\u00e9e du Trient (Valais, Suisse)" + ], + "md5": "56dff563c80eadb0b34f15cda0713ce4" + }, + { + "authorized_access_point": "Kentucky Lake (Etats-Unis. ; lac)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/264435583", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/264435583", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/55166597435217592956" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "https://fr.wikipedia.org/wiki/Lac_Kentucky/, 2022-09-16" + ] + }, + { + "noteType": "general", + "label": [ + "Le lac Kentucky est un important lac de barrage navigable le long de la rivi\u00e8re Tennessee au Kentucky et au Tennessee" + ] + } + ], + "pid": "264435583", + "type": "bf:Place", + "md5": "16555bcd5ee0a7db8dfeb6dd99eccd71" + }, + { + "authorized_access_point": "Crans-sur-Sierre (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/264538943", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/264538943", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/5522166600446918000000" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041974352" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Histoire du golf de Crans, 1906-2006 / Pierre Ducrey ; avec le collab. de Delphine Rivier et Sylvie Fournier ; [publ. par le Golf-Club Crans-sur-Sierre \u00e0 l'occasion du 100e anniversaire de l'ouverture du premier parcours de golf \u00e0 Crans], 2006", + "https://hls-dhs-dss.ch/fr/articles/008215/2017-01-12/, 2022-09-22" + ] + }, + { + "noteType": "general", + "label": [ + "Station touristique du canton du Valais" + ] + } + ], + "pid": "264538943", + "type": "bf:Place", + "md5": "be4b020c108bc70a0b5ef54aef2ae42c" + }, + { + "authorized_access_point": "Lens (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/264540670", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/264540670", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/1277159474348527662803" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042072816" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Alpages du Grand Lens : [L\u00e0 haut sur la montagne: la vie sur nos alpages hier et aujourd'hui] / [par Joseph Lamon] ; [\u00e9d. Les amis du patrimoine de Lens], 2015", + "https://hls-dhs-dss.ch/fr/articles/002786/2017-03-13/, 2022-09-22 ; https://de.wikipedia.org/wiki/Lens_VS, 2024-07-03" + ] + }, + { + "noteType": "general", + "label": [ + "Commune du canton du Valais, district de Sierre" + ] + } + ], + "pid": "264540670", + "type": "bf:Place", + "variant_access_point": [ + "Leis (Valais, Suisse)" + ], + "md5": "8fd5a0663a33a8a31e9681f14559a817" + }, + { + "authorized_access_point": "Granges (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/264600886", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/264600886", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/58166597389417592658" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042816688" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Ch\u00e2tellenie de Granges, Lens, Gr\u00f4ne, St-L\u00e9onard avec Chalais-Chippis / Jean-Emile Tamini, Lucien Quaglia ; choix et pr\u00e9sentation Joseph Lamon, 2009", + "https://hls-dhs-dss.ch/fr/articles/003303/2007-07-17/, 2022-09-23" + ] + }, + { + "noteType": "general", + "label": [ + "Localit\u00e9 du canton du Valais. Ancienne commune, r\u00e9unie \u00e0 Sierre en 1972" + ] + } + ], + "pid": "264600886", + "type": "bf:Place", + "md5": "d81f2456d8d193b576b7563b7b1a4faa" + }, + { + "authorized_access_point": "Valais central (Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/264644093", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/264644093", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/2685166600430118000000" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)952816407" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Agrisculptures / Maximilien Urfer ; essais : Rapha\u00ebl Brunner et Eric Felley ; direction de publication : St\u00e9phane Fretz, 2019", + "https://www.vs.ch/web/communes/-/valais-central, 2022-09-27" + ] + }, + { + "noteType": "general", + "label": [ + "R\u00e9gion du Canton du Valais comprenant les districts de Conthey, Sion, Sierre et d'H\u00e9rens" + ] + } + ], + "pid": "264644093", + "type": "bf:Place", + "md5": "5fd78a8f1d728be50624d31ec8d4a334" + }, + { + "authorized_access_point": "Valais romand (Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/264645081", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/264645081", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/75166600409218000002" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)993248810" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "Valais romand" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Les sobriquets des localit\u00e9s du Valais romand ; Articles historiques sur le Valais ; Histoire du Vieux Chablais / Raphy Rappaz, 1976", + "https://www.valais4you.ch/fr/le-valais-en-quelques-mots/habitat, 2022-09-27" + ] + }, + { + "noteType": "general", + "label": [ + "Partie francophone du canton du Valais" + ] + } + ], + "pid": "264645081", + "type": "bf:Place", + "variant_access_point": [ + "Valais francophone (Suisse)" + ], + "md5": "9129b201be0658f3f70e8377f0ac6866" + }, + { + "authorized_access_point": "Wolf River ( Tenn. ; cours d'eau)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/264836251", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/264836251", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/74166835480035941126" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "https://en.wikipedia.org/wiki/Wolf_River_Tennessee/, 2022-10-07" + ] + }, + { + "noteType": "general", + "label": [ + "La rivi\u00e8re Wolf est un cours d'eau qui coule dans l'\u00c9tat du Tennessee aux \u00c9tats-Unis et qui se jette dans le Mississippi, rive gauche, \u00e0 la hauteur de la ville de Memphis" + ] + } + ], + "pid": "264836251", + "type": "bf:Place", + "md5": "21dcc3e4c814572df12310515e17b16c" + }, + { + "authorized_access_point": "Lausanne (Vaud, Suisse) - Gare", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/265364957", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/265364957", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "La r\u00e9ponse des CFF \u00e0 la suite du retard dans les travaux de la gare de Lausanne : interview de Vincent Ducrot / journaliste Mehmet Gultas. \u00c9mission Forum de la Radio t\u00e9l\u00e9vision suisse, 2022-10-12", + "https://fr.wikipedia.org/wiki/Gare_de_Lausanne, 2022-11-02" + ] + } + ], + "pid": "265364957", + "type": "bf:Place", + "variant_access_point": [ + "Vaud, Suisse - Gare de Lausanne" + ], + "md5": "b4449fb354054456f111fdcda898a570" + }, + { + "authorized_access_point": "Villaz (Fribourg, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/26588912X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/26588912X", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/6760159400300219620005" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Villaz_(Fribourg)" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Bulletin communal / commune de Villaz, no 1 (juin 2020)", + "Dictionnaire historique de la Suisse, https://hls-dhs-dss.ch/fr/articles/059026/2020-04-21, 2022-11-28" + ] + }, + { + "noteType": "general", + "label": [ + "Commune du canton de Fribourg (Suisse), district de la Gl\u00e2ne, n\u00e9e en 2020 de la fusion de Villaz-Saint-Pierre et La Folliaz (issue en 2005 de la fusion de Lussy et Villarimboud)" + ] + } + ], + "pid": "26588912X", + "type": "bf:Place", + "md5": "3403671a4b087a590621114fd6400197" + }, + { + "authorized_access_point": "Th\u00f4nex (Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/266633668", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/266633668", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12217770s", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/155967389" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Th\u00f4nex" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Histoire de Th\u00f4nex, 1989" + ] + }, + { + "noteType": "general", + "label": [ + "Commune du canton de Gen\u00e8ve" + ] + } + ], + "pid": "266633668", + "type": "bf:Place", + "md5": "02aae57b6ff46e46f424d0d642e1f354" + }, + { + "authorized_access_point": "Naters (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/26663415X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/26663415X", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/380167864514022742683" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041023838" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "100 Jahre Wasserversorgung Naters AG, 1920-2020. Naters : Wasserversorgung Naters AG, [2020]" + ] + }, + { + "noteType": "general", + "label": [ + "Ville situ\u00e9e dans le Haut-Valais" + ] + } + ], + "pid": "26663415X", + "type": "bf:Place", + "md5": "eb2f5fff21ec01055b3e922aea69d9a5" + }, + { + "authorized_access_point": "Petit-Lancy (Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/266656595", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/266656595", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/38167622079903341253" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Pasodoble, 1213 Petit-Lancy (GE), paru dans AS. Krafft ; 223/27", + "DHS - https://hls-dhs-dss.ch/fr/articles/002910/2009-03-10/, 2024-06-17" + ] + }, + { + "noteType": "general", + "label": [ + "Localit\u00e9 de la commune de Lancy (canton de Gen\u00e8ve)" + ] + } + ], + "pid": "266656595", + "type": "bf:Place", + "variant_access_point": [ + "Lancy (Suisse) - Petit-Lancy" + ], + "md5": "59b3d2ebfd47afd11809d8c8186c6641" + }, + { + "authorized_access_point": "Ayent (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/26665715X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/26665715X", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/1375159233947303370245" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)958198667" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Ayent / Argnou / Les Frisses : un plateau o\u00f9 il fait bon vivre / Office cantonal d'arch\u00e9ologie, 2021", + "https://www.ayent.ch/commune/situation-villages.html, 2022-12-29" + ] + }, + { + "noteType": "general", + "label": [ + "Commune situ\u00e9e dans le canton du Valais. Elle est compos\u00e9e de 12 villages dont aucun ne porte le nom d'Ayent" + ] + } + ], + "pid": "26665715X", + "type": "bf:Place", + "md5": "1b19babdc1a7e3bd32ad81d5a974d260" + }, + { + "authorized_access_point": "Salgesch (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/267209568", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/267209568", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/3577169829219637320009" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Salgesch in Bildern / Burgergemeinde Salgesch, 2016", + "https://hls-dhs-dss.ch/fr/articles/002723/2012-06-20/, 2023-01-23" + ] + }, + { + "noteType": "general", + "label": [ + "Commune du Haut-Valais, dans le district de Lo\u00e8che, en fran\u00e7ais \"Salquenen\"." + ] + } + ], + "pid": "267209568", + "type": "bf:Place", + "variant_access_point": [ + "Salquenen (Valais, Suisse)" + ], + "md5": "22a73f9a40973e73eae6f5b2fa591f58" + }, + { + "authorized_access_point": "Fenin (Neuch\u00e2tel, Suisse) - Ch\u00e2teau", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/26722138X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/26722138X", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Ch\u00e2teau de Fenin / Adequa (photographe), 1971", + "Visualisation sur SITN- G\u00e9oportail du syst\u00e8me d'information du territoire neuch\u00e2telois https://sitn.ne.ch, 2023-01-24" + ] + } + ], + "pid": "26722138X", + "type": "bf:Place", + "variant_access_point": [ + "Fenin (Neuch\u00e2tel, Suisse) - Ch\u00e2teau de Fenin" + ], + "md5": "42ca93964a686d47c171c291b9077e51" + }, + { + "authorized_access_point": "Nax (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/267421214", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/267421214", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/49167867534523060006" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)964988283" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Nax, vers 1910 [photographie]", + "https://hls-dhs-dss.ch/fr/articles/002707/2016-12-23, 2023-02-01" + ] + }, + { + "noteType": "general", + "label": [ + "Ancienne commune du canton du Valais, district d'H\u00e9rens, ayant fusionn\u00e9 en 2011 avec Mase et Vernami\u00e8ge pour former la commune de Mont-Noble" + ] + } + ], + "pid": "267421214", + "type": "bf:Place", + "md5": "4ad403f19070234220f60e6f740f45af" + }, + { + "authorized_access_point": "Mont-Noble (Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/267446713", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/267446713", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/1701155286584187180009" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Mont-Noble en fusion : commune de Mont-Noble : Nax, Vernami\u00e8ge, Mase / Interface (Sion), Mont-Noble (commune), 2010", + "https://hls-dhs-dss.ch/fr/articles/049539/2016-09-28/, 2023-02-02" + ] + }, + { + "noteType": "general", + "label": [ + "Commune du canton du Valais, district d'H\u00e9rens, n\u00e9e en 2011 de la fusion de Mase, Nax et Vernami\u00e8ge." + ] + } + ], + "pid": "267446713", + "type": "bf:Place", + "md5": "6ed5b29f2f1577a180568a13f34276cb" + }, + { + "authorized_access_point": "Gujrat (Pakistan ; district)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/267488092", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/267488092", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/110167864550222742932" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Gazetteer of the Gujrat district, 1892-93, 1893", + "Internet, https://authorities.loc.gov, 2023-02-03" + ] + }, + { + "noteType": "general", + "label": [ + "Le district de Gujrat est une subdivision administrative du nord de la province du Pendjab au Pakistan. Coordonn\u00e9es g\u00e9ographiques : E 74\u00b0 3' 16'' / N 32\u00b0 42' 1''" + ] + } + ], + "pid": "267488092", + "type": "bf:Place", + "variant_access_point": [ + "\u06af\u062c\u0631\u0627\u062a (Pakistan ; district)" + ], + "md5": "2836a761c7c29754cc2be4f46493ae59" + }, + { + "authorized_access_point": "Lahore (Pakistan ; district)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/267506589", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/267506589", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/136739196" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Gazetteer of the Lahore district, 1893-94 / by G. C. Walker ; compiled and published under the authority of the Punjab Government, 1894", + "Internet, https://authorities.loc.gov, 2023-02-06" + ] + }, + { + "noteType": "general", + "label": [ + "Le district de Lahore est une subdivision administrative de la province du Pendjab au Pakistan. Coordonn\u00e9es g\u00e9ographiques : E 74\u00b0 23' 52'' / N 31\u00b0 29' 10''" + ] + } + ], + "pid": "267506589", + "type": "bf:Place", + "variant_access_point": [ + "\u0644\u0627\u06be\u0648\u0631 (Pakistan ; district)", + "L\u0101haur (Pakistan ; district)" + ], + "md5": "a68e724edd1c709a14d08a2ab168be67" + }, + { + "authorized_access_point": "Flamatt (Fribourg, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/267678584", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/267678584", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/113167864081422741509" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Als Flamatt \u00fcberfahren wurde : 50 Jahre Autobahn N12 / von Imelda Ruffieux. In : Freiburger Volkskalender, 114. Jahrgang, 2023, pages 47-50", + "Dictionnaire historique de la Suisse, https://hls-dhs-dss.ch/fr/articles/011357/2015-07-23, 2023-02-14" + ] + }, + { + "noteType": "general", + "label": [ + "Village de la commune de W\u00fcnnewil-Flamatt dans le canton de Fribourg (Suisse), district de la Singine" + ] + } + ], + "pid": "267678584", + "type": "bf:Place", + "md5": "e491f96d295ad15c4cfdb4ecb3638b55" + }, + { + "authorized_access_point": "Evionnaz (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/267860048", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/267860048", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/151289873" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)961803010" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Comptes de la bourgeoisie d'Evionnaz. - Evionnaz : administration communale, 2013" + ] + }, + { + "noteType": "general", + "label": [ + "Commune du canton du Valais (Suisse)" + ] + } + ], + "pid": "267860048", + "type": "bf:Place", + "md5": "1c5e528ae861359b8cec60d9393d60e8" + }, + { + "authorized_access_point": "Ardon (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/26792237X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/26792237X", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/1272167867538823060002" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)959192603" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Accident entre une fourgonnette et une voiture, Ardon / Philippe Schmid, 1962 [photographie]", + "https://fr.wikipedia.org/wiki/Ardon_(Valais) /,2023-02-22" + ] + }, + { + "noteType": "general", + "label": [ + "Commune du canton du Valais, situ\u00e9e dans le district de Conthey." + ] + } + ], + "pid": "26792237X", + "type": "bf:Place", + "md5": "f5ccdb8c7fc3a5fc81cd3cd3b6e256a9" + }, + { + "authorized_access_point": "Aproz (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/267928262", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/267928262", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/285167863719022740515" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1046852981" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Avant d\u00e9truit d'un bus VW de l'Usine des Eaux min\u00e9rales, Aproz / Philippe Schmid, 1962 [photographie]", + "https://www.nendaz.ch/fr/P75016/aproz/, 2023-02-22," + ] + }, + { + "noteType": "general", + "label": [ + "Village du canton du Valais faisant partie de la commune de Nendaz" + ] + } + ], + "pid": "267928262", + "type": "bf:Place", + "md5": "fd9147e636847f5c2df84cc07c8e07ae" + }, + { + "authorized_access_point": "Riddes (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/268500460", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/268500460", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/1278159474198227661307" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)956715753" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Sortie de route d'un camion / Philippe Schmid, 1971 [photographies]", + "https://hls-dhs-dss.ch/fr/articles/002734/2012-05-11/, 2023-03-15" + ] + }, + { + "noteType": "general", + "label": [ + "Commune du canton du Valais, district de Martigny" + ] + } + ], + "pid": "268500460", + "type": "bf:Place", + "md5": "f2bb74da6c244c228cef8c0e11f4b774" + }, + { + "authorized_access_point": "Ernen (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/268649472", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/268649472", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/126168169046348042654" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042350964" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Fastent\u00fccher im Untergoms / Alex Agten. - In: Walliser Jahrbuch. - Visp. - [92. Jahrgang] (2023), Seiten 24-27" + ] + }, + { + "noteType": "general", + "label": [ + "Commune du canton du Valais (Suisse)" + ] + } + ], + "pid": "268649472", + "type": "bf:Place", + "md5": "faaa0db30f281b87aeef8d5b939f0615" + }, + { + "authorized_access_point": "Liddes (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/268664110", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/268664110", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/5153168172581848620008" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042072344" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Fanfare la Fraternit\u00e9, Liddes [photographie]", + "https://www.liddes.ch/decouvrir/presentation, 2023-03-23" + ] + }, + { + "noteType": "general", + "label": [ + "Commune du canton du Valais, district d'Entremont. Elle se compose de 13 villages et hameaux r\u00e9partis sur les deux versants de la Dranse d\u2019Entremont qui s\u2019\u00e9coule au fond de la vall\u00e9e : Liddes, Chandonne, Fontaine-Dessus, Rive-Haute, Fontaine-Dessous, Pallazuit et Combe se situent sur la rive droite; Dranse, Chez-Petit, Fornex, Les Moulins, Montatuay et Vich\u00e8res sur la rive gauche." + ] + } + ], + "pid": "268664110", + "type": "bf:Place", + "md5": "5eb87289859a76f40e842eec14266d04" + }, + { + "authorized_access_point": "Orsi\u00e8res (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/268664447", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/268664447", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/5405168172582848620007" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Clocher, Orsi\u00e8res [photographie]", + "https://fr.wikipedia.org/wiki/Orsi\u00e8res, 2023-03-23" + ] + }, + { + "noteType": "general", + "label": [ + "Commune du canton du Valais, district d'Entremont. Elle se compose principalement de deux grandes vall\u00e9es, le val Ferret et la vall\u00e9e de Champex, le bourg d'Orsi\u00e8res, situ\u00e9 sur la Drance d'Entremont, et douze villages, dont Champex, Ferret, Issert, La Fouly et Praz-de-Fort" + ] + } + ], + "pid": "268664447", + "type": "bf:Place", + "md5": "9caffdb4e45e2a8e90ec54049682d63a" + }, + { + "authorized_access_point": "Chamoson (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/268666938", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/268666938", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/170378445" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)959192352" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)959192352" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Usine \u00e9lectrique, Chamoson [photographie]", + "https://fr.wikipedia.org/wiki/Chamoson, 2023-03-23" + ] + }, + { + "noteType": "general", + "label": [ + "Commune du canton du Valais, situ\u00e9e dans le district de Conthey." + ] + } + ], + "pid": "268666938", + "type": "bf:Place", + "relation_pid": { + "value": "268729328", + "type": "redirect_from" + }, + "md5": "dce5048d23ebe30f5b443d02f456599c" + }, + { + "authorized_access_point": "Turtmann (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/268735190", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/268735190", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/166168168491948041084" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042975735" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Medizinische Versorgung vor 75 Jahren im Raum Turtmann / Josef J\u00e4ger . - In: Walliser Jahrbuch. - Visp. - [92. Jahrgang] (2023), Seiten 55-56" + ] + }, + { + "noteType": "general", + "label": [ + "Village et commune situ\u00e9e dans le Haut-Valais" + ] + } + ], + "pid": "268735190", + "type": "bf:Place", + "variant_access_point": [ + "Tourtemagne (Valais, Suisse)" + ], + "md5": "1c4433eb6c38e40090f8eba03955063d" + }, + { + "authorized_access_point": "Sion (Valais, Suisse) - Ch\u00e2teauneuf", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/268791694", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/268791694", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)95887638X" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Camion happ\u00e9 par un train, Ch\u00e2teauneuf / Philippe Schmid, 1962 [photographie]", + "https://www.chateauneufsion.ch/, 2023-03-29" + ] + }, + { + "noteType": "general", + "label": [ + "Quartier de la ville de Sion dans le canton du Valais" + ] + } + ], + "pid": "268791694", + "type": "bf:Place", + "md5": "0fae09bd483e3043e62b1d334d65517b" + }, + { + "authorized_access_point": "Bramois (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/268793948", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/268793948", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/5167621890903341945" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)956042651" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Voiture tomb\u00e9e dans la Borgne, Bramois / Philippe Schmid, 1964 [photographie]", + "https://fr.wikipedia.org/wiki/Bramois, 2023-03-29" + ] + }, + { + "noteType": "general", + "label": [ + "Village situ\u00e9 dans le canton du Valais. Ancienne commune suisse et localit\u00e9 de la commune de Sion" + ] + } + ], + "pid": "268793948", + "type": "bf:Place", + "variant_access_point": [ + "Br\u00e4mis (Valais, Suisse)" + ], + "md5": "d00f95502a66e2c1b71e3d2a5993fffc" + }, + { + "authorized_access_point": "Gen\u00e8ve (Suisse) - Conf\u00e9d\u00e9ration Centre", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/269784136", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/269784136", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "https://www.confederationcentre.ch/en/le-centre, 2023-05-09", + "Conf\u00e9d\u00e9ration Centre \u00e0 Gen\u00e8ve : un souffle de modernit\u00e9 rajeunit le Palais des Glaces, 2022" + ] + } + ], + "pid": "269784136", + "type": "bf:Place", + "md5": "d170bf685ccce52de78250ab848090be" + }, + { + "authorized_access_point": "Silverado (Calif.) - Saint Michael's Abbey", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/270059482", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/270059482", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Saint Michael's Abbey : Silverado Orange County, California / Jean-Louis Pag\u00e8s, 2020" + ] + } + ], + "pid": "270059482", + "type": "bf:Place", + "variant_access_point": [ + "Saint Michael's Abbey (Silverado, Calif.)", + "St. Michael's Abbey (Silverado, Calif.)" + ], + "md5": "71c21655cd5644668f4c3851994fb6e5" + }, + { + "authorized_access_point": "Leytron (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/270977848", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/270977848", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/2029159474075927660481" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)959192387" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Union Instrumentale, Leytron / Michel Darbellay, 18 avril 1976 [photographie]", + "https://hls-dhs-dss.ch/fr/articles/002731/2008-01-24/, 2023-07-07" + ] + }, + { + "noteType": "general", + "label": [ + "Commune du canton du Valais, situ\u00e9e dans le district de Martigny." + ] + } + ], + "pid": "270977848", + "type": "bf:Place", + "md5": "1418b02ca0e02f302bfac309d68c4249" + }, + { + "authorized_access_point": "T\u00f6rbel (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/271120738", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/271120738", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/3850169261908109510008" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041196392" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Radiometrische Anomalien in der Umgebung von T\u00f6rbel, nahe Visp im Wallis / Ruedi Stucki. - In: Mitteilungen der Naturforschenden Gesellschaft in Bern. - Bern. - N.F., Bd 80(2023), Seiten 40-63", + "https://de.wikipedia.org/wiki/T%C3%B6rbel (2023-07-18)" + ] + }, + { + "noteType": "general", + "label": [ + "T\u00f6rbel est une commune suisse du canton du Valais, situ\u00e9e dans le district de Vi\u00e8ge" + ] + } + ], + "pid": "271120738", + "type": "bf:Place", + "md5": "6fc95e0712fbad69d2a0b8f144dd687f" + }, + { + "authorized_access_point": "V\u00e9troz (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/271160926", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/271160926", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/97169253683692700516" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)947204954" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Collision entre un camion semi-remorque et un train, V\u00e9troz / Philippe Schmid, 1982 [photographie]", + "https://fr.wikipedia.org/wiki/V%C3%A9troz7, 2023-07-19" + ] + }, + { + "noteType": "general", + "label": [ + "Commune de canton du Valais, situ\u00e9e dans le district de Conthey" + ] + } + ], + "pid": "271160926", + "type": "bf:Place", + "md5": "b9660b38e6ad82f584db436662b4dbd7" + }, + { + "authorized_access_point": "Vex (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/271161957", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/271161957", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/81169254481492702368" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)956137954" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Voiture d\u00e9valant de 50 m\u00e8tres sur un talus, Vex / Philippe Schmid, 1962 [photographie]", + "https://fr.wikipedia.org/wiki/Vex/, 2023-07-19" + ] + }, + { + "noteType": "general", + "label": [ + "Commune du canton du Valais, chef-lieu du district d'H\u00e9rens. Le village est situ\u00e9 \u00e0 l'entr\u00e9e du Val d'H\u00e9rens. La commune comprend les hameaux des Prasses, d'Ypresse et de l'Argilly ainsi que Les Collons et Thyon 2000" + ] + } + ], + "pid": "271161957", + "type": "bf:Place", + "md5": "6114e1be6e9bb6820c2332b49862fec5" + }, + { + "authorized_access_point": "Anz\u00e8re (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/271166118", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/271166118", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/108169253837092700807" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1019951494" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Inauguration du t\u00e9l\u00e9ski, Anz\u00e8re / Philippe Schmid, 1961", + "https://www.myswitzerland.com/fr-ch/destinations/anzere/, 2023-07-24" + ] + }, + { + "noteType": "general", + "label": [ + "Station touristique sur la commune d'Ayent en Valais" + ] + } + ], + "pid": "271166118", + "type": "bf:Place", + "md5": "c315151fd43c8acfc682a946df707971" + }, + { + "authorized_access_point": "Collombey-Muraz (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/271323485", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/271323485", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12131962h", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042424003" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/1992159474343127662579" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL" + ] + } + ], + "pid": "271323485", + "type": "bf:Place", + "md5": "87c94aa4f5a1ec67ed1b2b3073180a2a" + }, + { + "authorized_access_point": "Le Bouveret (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "914" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Bouveret (Switzerland)", + "source": "LCA", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/names/n83224886", + "source": "LCA" + } + ] + } + ], + "identifier": "http://www.idref.fr/271323515", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/271323515", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb169627006", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": " (DE-101)959682708" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/113144647637759345491" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikip\u00e9dia - http://fr.wikipedia.org (2015-04-30)", + "Dict. historique de la Suisse (art. : Port-Valais) - http://www.hls-dhs-dss.ch (2015-05-18)" + ] + }, + { + "noteType": "general", + "label": [ + "Localit\u00e9 de la commune de Port-Valais dans le canton du Valais, situ\u00e9e au sud du lac L\u00e9man et proche de la fronti\u00e8re fran\u00e7aise" + ] + } + ], + "pid": "271323515", + "type": "bf:Place", + "variant_access_point": [ + "Bouveret, Le (Valais, Suisse)", + "Bouveret (Valais, Suisse)", + "Port-Valais (Valais, Suisse) - Village du Bouveret" + ], + "md5": "a279fb34c3336bfc2758cee4d7830ed7" + }, + { + "authorized_access_point": "B\u00e2le (B\u00e2le-Ville, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/271323590", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/271323590", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb152399861", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040046176" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/3925169442785525340002" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Coordonn\u00e9es g\u00e9ographiques : E 7\u00b036' / N 47\u00b033'" + ] + } + ], + "pid": "271323590", + "type": "bf:Place", + "variant_access_point": [ + "B\u00e2le-Ville (Suisse)", + "Basel-Stadt (Suisse)", + "Basilea Citta (Suisse)", + "Basilea", + "Basilia", + "Basilea Rauracorum", + "Colonia Munatiana", + "Athenae Rauracae", + "Bazela", + "Baesula", + "Basula", + "Baille", + "Baalle", + "Basle" + ], + "md5": "20daa5f54affbc451eda52347c9d1d4c" + }, + { + "authorized_access_point": "Vouvry (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "914" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Vouvry (Switzerland)", + "source": "LCA", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/names/n83239447", + "source": "LCA" + } + ] + } + ], + "identifier": "http://www.idref.fr/271323663", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/271323663", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb16909821w", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)976443899" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/110144647635667511245" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Geonames - http://www.geonames.org (2014-09-12)", + "Atlas universel / \"Le Monde\", S\u00e9lection du \"Reader's digest\", 1993" + ] + }, + { + "noteType": "general", + "label": [ + "Commune du canton du Valais" + ] + } + ], + "pid": "271323663", + "type": "bf:Place", + "md5": "8cddeb50e69ec4a1f294f21c6765c773" + }, + { + "authorized_access_point": "Saint Nicolas (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/271323698", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/271323698", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15301322r", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)952907682" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/5819169442791125340000" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Coordonn\u00e9es g\u00e9ographiques : E 7\u00b048' / N 46\u00b011'" + ] + } + ], + "pid": "271323698", + "type": "bf:Place", + "variant_access_point": [ + "Zaniglas", + "Saniglaas" + ], + "md5": "de8cb21c22b6fb422e5be4a6c552b9e2" + }, + { + "authorized_access_point": "Blatten (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/271323752", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/271323752", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15171340s", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040884422" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/170502802" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dictionnaire historique de la Suisse - http://www.hls-dhs-dss.ch/textes/f/F2757.php (2010-07-16)" + ] + }, + { + "noteType": "general", + "label": [ + "Coordonn\u00e9es g\u00e9ographiques : E 7\u00b049' / N 46\u00b025'" + ] + } + ], + "pid": "271323752", + "type": "bf:Place", + "variant_access_point": [ + "Uffen der Blattun (Valais, Suisse)", + "Uf der Blattun (Valais, Suiss)", + "Eisten (Valais, Suisse)", + "Ried (Valais, Suisse)", + "Weissenried (Valais, Suisse)", + "Fafleralp (Valais, Suisse)", + "K\u00fchmatt (Valais, Suisse)" + ], + "md5": "d4798d17647ed3f2555eac3fb7810c6e" + }, + { + "authorized_access_point": "Gressoney, Val de (Italie)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "914" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Gressoney Valley (Italy)", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85057315", + "source": "LCSH" + } + ] + } + ], + "identifier": "http://www.idref.fr/271326441", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/271326441", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12725205j", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040787249" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/4151594428405352226" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Atlas universalis (Val di Gressoney)", + "Valle d'Aosta-Vall\u00e9e d'Aoste - http://www.regione.vda.it (2006-04-20)" + ] + }, + { + "noteType": "general", + "label": [ + "Vall\u00e9e du nord-est du Val d'Aoste au pied du Mont Rose, drain\u00e9e par le Lys. Elle est habit\u00e9e depuis le 13e si\u00e8cle par des Valaisiens (Walser) germanophones" + ] + } + ], + "pid": "271326441", + "type": "bf:Place", + "variant_access_point": [ + "Gressoney, Val di (Italie)", + "Gressoney, Valle di (Italie)", + "Gressoneytal (Italie)", + "Lys, Vall\u00e9e du (Italie)", + "Val de Gressoney (Italie)" + ], + "md5": "377a421c23e28385417e1c79e2fbb493" + }, + { + "authorized_access_point": "Anatolie (Turquie ; r\u00e9gion)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/271326840", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/271326840", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb162621083", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040856852" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/170339943" + } + ], + "pid": "271326840", + "type": "bf:Place", + "md5": "ee7bcd874bb7b2b710db7bfecfdba249" + }, + { + "authorized_access_point": "Saint-Gingolph (Haute-Savoie, France)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "912" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Saint-Gingolph (France)", + "source": "LCA", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/names/no2011036870", + "source": "LCA" + } + ] + } + ], + "identifier": "http://www.idref.fr/271328762", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/271328762", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb162289872", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/80144647643792852617" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Saint-Gingolph_(Haute-Savoie)" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. des communes, 2001" + ] + } + ], + "pid": "271328762", + "type": "bf:Place", + "md5": "6b4004dc8a96ddaef07bacedc48e6c2d" + }, + { + "authorized_access_point": "Alpes (nord)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "914" + } + ], + "identifier": "http://www.idref.fr/271342889", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/271342889", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb178332023", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)973450509" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/1189169442776925340005" + } + ], + "pid": "271342889", + "type": "bf:Place", + "narrower": [ + { + "authorized_access_point": "Alpes (Allemagne)" + } + ], + "variant_access_point": [ + "Alpes du Nord", + "Alpes septentrionales" + ], + "md5": "17f01af8ef464d799f66b443a65b05ac" + }, + { + "authorized_access_point": "Ollon (Vaud, Suisse)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "914" + } + ], + "identifier": "http://www.idref.fr/271347821", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/271347821", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb161099642", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/9402165326398616290004" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Ollon" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Atlas universel Le Monde, 1989", + "https://fr.wikipedia.org/wiki/Ollon, 2024-06-26" + ] + }, + { + "noteType": "general", + "label": [ + "Commune du canton de Vaud, district d'Aigle" + ] + } + ], + "pid": "271347821", + "type": "bf:Place", + "md5": "123932e029b0576ccf98c6c52db4254f" + }, + { + "authorized_access_point": "Grand Muveran (Suisse ; mont)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/271377445", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/271377445", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb17014374p", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/41169436117514272671" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "https://fr.wikipedia.org/wiki/Grand_Muveran, 2024-06-25" + ] + }, + { + "noteType": "general", + "label": [ + "Coordonn\u00e9es g\u00e9ographiques : E 7\u00b08'29\" / N 46\u00b014'17\"", + "Sommet situ\u00e9 entre les cantons du Valais et de Vaud" + ] + } + ], + "pid": "271377445", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Alpes vaudoises (Suisse)" + }, + { + "authorized_access_point": "Muverans, Massif des (Suisse)" + } + ], + "md5": "9e5b5abfdff143b4dac986710866bf6d" + }, + { + "authorized_access_point": "Zinal (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/271529172", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/271529172", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/86169435151714270533" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)043141668" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Zinal : parcours historique / Adriana Tenda Claude, 2016", + "https://fr.wikipedia.org/wiki/Zinal, 2023-08-25" + ] + }, + { + "noteType": "general", + "label": [ + "Village et station touristique situ\u00e9 dans sur la commune d'Anniviers" + ] + } + ], + "pid": "271529172", + "type": "bf:Place", + "md5": "6cd5b9ae08641d665b283ed7fea7b66d" + }, + { + "authorized_access_point": "Com\u00e9die des Champs-Elys\u00e9es", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/271733764", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/271733764", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Bernard Marrey, La Naissance du th\u00e9\u00e2tre des Champs-Elys\u00e9es 1910-1922, \u00e9d. Picard, 2007." + ] + }, + { + "noteType": "general", + "label": [ + "Le Th\u00e9\u00e2tre, la Com\u00e9die et le Studio des Champs-Elys\u00e9es font partie du m\u00eame ensemble architectural. Inaugur\u00e9e en 1913 sous la direction de L\u00e9on Poirier, la Com\u00e9die L\u00e9on-Poirier prend en 1919 le nom de Com\u00e9die-Montaigne. Louis Jouvet en prend la direction de 1923 \u00e0 1934. La Com\u00e9die devient un th\u00e9\u00e2tre d'art et d'essai en 1937, et abrite de nombreuses troupes. A partir de 1944, elle est dirig\u00e9e par C. Sainval et R. Pietri, puis par Sainval seul.", + "Paris (France)" + ] + } + ], + "pid": "271733764", + "type": "bf:Place", + "variant_access_point": [ + "Com\u00e9die L\u00e9on-Poirier (Paris)", + "Th\u00e9\u00e2tre Louis Jouvet (Paris)", + "Com\u00e9die-Montaigne (Paris)" + ], + "md5": "f29b7f2e53550c6eaea990ca40fc1aaa" + }, + { + "authorized_access_point": "Th\u00e9\u00e2tre des Champs-\u00c9lys\u00e9es, Paris", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/271786574", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/271786574", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Bernard Marrey, La Naissance du th\u00e9\u00e2tre des Champs-Elys\u00e9es 1910-1922, \u00e9d. Picard, 2007." + ] + }, + { + "noteType": "general", + "label": [ + "Paris, France" + ] + } + ], + "pid": "271786574", + "type": "bf:Place", + "variant_access_point": [ + "Th\u00e9\u00e2tre des Champs \u00c9lys\u00e9es, Paris" + ], + "md5": "bcd9bd9ec9693f0da06cf17627b40b8a" + }, + { + "authorized_access_point": "Buner (Pakistan ; district)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/272053430", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/272053430", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Mer\u0101 \u1e34\u1e96addo\u1e35\u1e96el : 326 Q\u0101f. M\u012bm. t\u0101 2000 : \u02bfal\u0101qah \u1e34\u1e96addo\u1e35\u1e96el k\u0101 mu\u1e35\u1e96ta\u1e63r t\u0101r\u012b\u1e35\u1e96\u012b, tah\u1e95\u012bb\u012b va s\u0331aq\u0101fat\u012b mut\u0324\u0101la\u02bfah / Shir\u012bnz\u0101dah \u1e34\u1e96ado\u1e35\u1e96el, 2000", + "Internet, https://authorities.loc.gov, 2023-09-18" + ] + }, + { + "noteType": "general", + "label": [ + "Le district de Buner est une subdivision administrative de la province Khyber Pakhtunkhwa au Pakistan. Coordonn\u00e9es g\u00e9ographiques : E 72\u00b0 29\u2032 02'' / N 34\u00b0 30\u2032 41''" + ] + } + ], + "pid": "272053430", + "type": "bf:Place", + "variant_access_point": [ + "\u0628\u0648\u0646\u06cc\u0631 (Pakistan ; district)" + ], + "md5": "112e65688651d2c1fd181a4437e5c93b" + }, + { + "authorized_access_point": "Studio des Champs-Elys\u00e9es, Paris", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/272179213", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/272179213", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Louis-Fran\u00e7ois Delisle de la Dreveti\u00e8re, Le th\u00e9\u00e2tre des Champs-\u00c9lys\u00e9es, 1912." + ] + }, + { + "noteType": "general", + "label": [ + "De 1960 \u00e0 1965, Antoine Bourseiller assure la direction artistique. Depuis 1966, la direction est assur\u00e9e par les directeurs de la Com\u00e9die des Champs-\u00c9lys\u00e9es : Claude Sainval, Guy Descaux, Jacqueline Cormier, Michel Fagadau (assist\u00e9 par Viviane Elbaz de 1997 \u00e0 2005) et St\u00e9phanie Fagadau-Mercier.", + "Paris, France" + ] + } + ], + "pid": "272179213", + "type": "bf:Place", + "md5": "a4d0ec641759ac05193c8b3396c4bdf8" + }, + { + "authorized_access_point": "Th\u00e9\u00e2tre du Pr\u00e9 Catelan, Bois de Boulogne, Paris", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/272823627", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/272823627", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "https://fr.wikipedia.org/wiki/Jardin_du_Pr%C3%A9-Catelan, 2023-10-25" + ] + }, + { + "noteType": "general", + "label": [ + "Parc botanique du bois de Boulogne \u00e0 Paris qui se trouve dans la zone du Pr\u00e9 Catelan. En 1911, un nouvel espace consacr\u00e9 au spectacle vivant est inaugur\u00e9 dans le parc, \u00e0 proximit\u00e9 de La Villa Bengali, le th\u00e9\u00e2tre de Verdure du Pr\u00e9-Catelan, un th\u00e9\u00e2tre d'\u00e9t\u00e9, en plein air, dirig\u00e9 par Francis Robin9, ancien directeur du th\u00e9\u00e2tre de la Tour Eiffel et fondateur du th\u00e9\u00e2tre Le Tr\u00e9teau Royal, et o\u00f9 sont notamment pr\u00e9sent\u00e9es les premi\u00e8res pi\u00e8ces de Louis Delluc. En 1953 est inaugur\u00e9 le Th\u00e9\u00e2tre de verdure du jardin Shakespeare, \u00e0 la place de l'ancien Th\u00e9\u00e2tre des fleurs. Il est constitu\u00e9 de petits jardins th\u00e9matiques faisant r\u00e9f\u00e9rence \u00e0 cinq pi\u00e8ces du dramaturge anglais, notamment via un choix de v\u00e9g\u00e9taux li\u00e9s \u00e0 son \u0153uvre (roses, ifs, etc.). Chaque \u00e9t\u00e9, des pi\u00e8ces y sont jou\u00e9es en plein air." + ] + } + ], + "pid": "272823627", + "type": "bf:Place", + "variant_access_point": [ + "Th\u00e9\u00e2tre de verdure du Jardin Shakespeare" + ], + "md5": "9a8cf9bd2a0eaf4fd7f80826e577b34a" + }, + { + "authorized_access_point": "Ovronnaz (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/273580728", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/273580728", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/53170520280403302918" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)960113355" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Ovronnaz \u00e0 pied / Soci\u00e9t\u00e9 de d\u00e9veloppement (Ovronnaz), 1973", + "https://www.ovronnaz.ch/ovronnaz-ses-alentours/, 2023-12-01" + ] + }, + { + "noteType": "general", + "label": [ + "Station touristique de montagne, sur le territoire de la commune de Leytron" + ] + } + ], + "pid": "273580728", + "type": "bf:Place", + "md5": "067de4fe1620fc0f05ec2a0e6fa43de5" + }, + { + "authorized_access_point": "Finges, Bois de (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/275775569", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/275775569", + "source": "IDREF" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Bois_de_Finges" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)043187048" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Tr\u00e9sors naturels du bois de Finges / Ren\u00e9-Pierre Bille, Philippe Werner, 1986", + "https://www.pfyn-finges.ch/fr/experience/carte-du-parc/offer-detail/site-protege-du-bois-de-finges-1991, 2024-02-14", + "https://hls-dhs-dss.ch/fr/articles/008553/2010-09-28/, 2024-02-14" + ] + }, + { + "noteType": "general", + "label": [ + "R\u00e9serve naturelle" + ] + } + ], + "pid": "275775569", + "type": "bf:Place", + "variant_access_point": [ + "Bois de Finges (Valais, Suisse)", + "Pfynwald (Valais, Suisse)", + "For\u00eat de Finges (Valais, Suisse)" + ], + "md5": "57f9b6d3fc52badb650c550cb7a9dc85" + }, + { + "authorized_access_point": "Biel-Benken (B\u00e2le-Campagne, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/276090829", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/276090829", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Arlesheim : Biel-Benken - Reinach - Pratteln, 2023. (Landeskarte der Schweiz; 1067)" + ] + } + ], + "pid": "276090829", + "type": "bf:Place", + "md5": "0499032fffced6b1725401bcfe1d0a37" + }, + { + "authorized_access_point": "Reinach (B\u00e2le-Campagne, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/27609266X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/27609266X", + "source": "IDREF" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Reinach_(B\u00e2le-Campagne)" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Arlesheim : Biel-Benken - Reinach - Pratteln, 2023. (Landeskarte der Schweiz; 1067)" + ] + } + ], + "pid": "27609266X", + "type": "bf:Place", + "md5": "d089675c5c64e5a3dd823d83ff610a92" + }, + { + "authorized_access_point": "Pratteln (B\u00e2le-Campagne, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/276092945", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/276092945", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Arlesheim : Biel-Benken - Reinach - Pratteln, 2023. (Landeskarte der Schweiz; 1067)" + ] + } + ], + "pid": "276092945", + "type": "bf:Place", + "md5": "f99477416f48275a57d532a493459fab" + }, + { + "authorized_access_point": "Eckartsburg, Ch\u00e2teau d\u2019 (Allemagne)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/276180232", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/276180232", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Die Eckartsburg / Reinhard Schmitt. - M\u00fcnchen ; Berlin : Deutscher Kunstverlag, 1993." + ] + } + ], + "pid": "276180232", + "type": "bf:Place", + "variant_access_point": [ + "Eckartsberga (Saxe-Anhalt) - Ch\u00e2teau d\u2019Eckartsburg" + ], + "md5": "8f0fc41d9c343c4dbd84e2c32e24c690" + }, + { + "authorized_access_point": "Diegten (B\u00e2le-Campagne, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/276183762", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/276183762", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Hauenstein : Oberdorf - Diegten - Olten, 2023 (Landeskarte der Schweiz; 1088)" + ] + } + ], + "pid": "276183762", + "type": "bf:Place", + "md5": "c4058a8d8911b283bb2b2857806fdab3" + }, + { + "authorized_access_point": "Schnellenberg, Ch\u00e2teau de (Allemagne)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/276185986", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/276185986", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Burg Schnellenberg / Karl E. Mummenhoff. - M\u00fcnchen ; Berlin : Deutscher Kunstverlag, 1987." + ] + } + ], + "pid": "276185986", + "type": "bf:Place", + "variant_access_point": [ + "Burg Schnellenberg", + "Attendorn, Rh\u00e9nanie du Nord-Westphalie (Allemagne)) - Ch\u00e2teau de Schnellenberg" + ], + "md5": "f082fb24f561ed5f5cb1d535cbccf397" + }, + { + "authorized_access_point": "Neuenburg, Ch\u00e2teau de (Allemagne)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/276213939", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/276213939", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Schloss Neuenburg / Kristine Glatzel und Reinhard Schmitt. - M\u00fcnchen ; Berlin : Deutscher Kunstverlag, 1993." + ] + } + ], + "pid": "276213939", + "type": "bf:Place", + "variant_access_point": [ + "Schloss Neuenburg", + "Freyburg (Unstrut) - Ch\u00e2teau de Neuenburg" + ], + "md5": "b01ab9de6d7e37a2322fb7f3eaf76643" + }, + { + "authorized_access_point": "Passwang (Soleure, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/276214129", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/276214129", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Passwang : Laufen - Scheltenpass - Reigoldswil, 2023. (Landeskarte der Schweiz; 1087)" + ] + } + ], + "pid": "276214129", + "type": "bf:Place", + "md5": "7f1dbefca1614ed24ffec5b8b0356124" + }, + { + "authorized_access_point": "Reigoldswil (B\u00e2le-Campagne, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/276214463", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/276214463", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Passwang : Laufen - Scheltenpass - Reigoldswil, 2023. (Landeskarte der Schweiz; 1087)" + ] + } + ], + "pid": "276214463", + "type": "bf:Place", + "md5": "9982179e88b8aebb7fe76c27713df555" + }, + { + "authorized_access_point": "Sissach (B\u00e2le-Campagne, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/27621675X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/27621675X", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Liestal : Rheinfelden - Sissach - Fricktal, 2023. (Landeskarte der Schweiz ; 214)" + ] + } + ], + "pid": "27621675X", + "type": "bf:Place", + "md5": "b6b16f3a705c164f2c37d60a2d111137" + }, + { + "authorized_access_point": "Kyffhausen, Ch\u00e2teau de (Allemagne)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/276271890", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/276271890", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Die Baugeschichte der Burg Kyffhausen / Hermann W\u00e4scher. - Halle (Saale) : Kreuz Verlag (VOB), 1959." + ] + } + ], + "pid": "276271890", + "type": "bf:Place", + "variant_access_point": [ + "Burg Kyffhausen", + "Kyffh\u00e4userland, Land de Thuringe (Allemagne) - Ch\u00e2teau de Kyffhausen" + ], + "md5": "44f578d93b8807e6e18521b3af9d9f8b" + }, + { + "authorized_access_point": "Gemen, Ch\u00e2teau de (Allemagne)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/276300882", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/276300882", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Burg Gemen / Eberhard G. Neumann. - 4. Auflage. - M\u00fcnchen ; Berlin : Deutscher Kunstverlag, 1987." + ] + } + ], + "pid": "276300882", + "type": "bf:Place", + "variant_access_point": [ + "Burg Gemen", + "Borken (Westphalie) - Ch\u00e2teau de Gemen" + ], + "md5": "4e5c3185658829957c5c9eff1b2aa40a" + }, + { + "authorized_access_point": "Otzberg, Ch\u00e2teau d\u2019 (Allemagne)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/276306651", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/276306651", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Otzberg : Burg - Festung \u2013 Kaserne / Dr. Axel Gleue. - Otzberg : A.W.Gleue, \u00a9 2003" + ] + } + ], + "pid": "276306651", + "type": "bf:Place", + "variant_access_point": [ + "Veste Otzberg", + "Otzberg (Hesse, Allemagne) - Ch\u00e2teau d\u2019Otzberg" + ], + "md5": "172f1169269699d3303288b29c346a88" + }, + { + "authorized_access_point": "Alpes Bernoises (Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/276398157", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/276398157", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15331629m", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04005781X" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Alpes bernoises : s\u00e9lection d'itin\u00e9raires / Maurice Brandt, 1982", + "Guide des Alpes bernoises : du Sanetsch au Grimsel : s\u00e9lection d'itin\u00e9raires / Ueli Mosimann, 2002", + "https://fr.wikipedia.org/wiki/Subdivision_orographique_internationale_unifi%C3%A9e_du_syst%C3%A8me_alpin, 2024-03-20" + ] + }, + { + "noteType": "general", + "label": [ + "Les Alpes bernoises couvrent un territoire allant du col du Sanetsch au col du Grimsel, sur les cantons de Berne (Oberland bernois) et du Valais (rive droite du Rh\u00f4ne). Dans un sens plus large, elles touchent \u00e9galement les cantons de Vaud, d'Uri et d'Obwald" + ] + } + ], + "pid": "276398157", + "type": "bf:Place", + "narrower": [ + { + "authorized_access_point": "Jungfrau-Alestch, Site Unesco (Berne / Valais, Suisse)" + }, + { + "authorized_access_point": "Aletsch, Grand Glacier d' (Valais, Suisse)" + }, + { + "authorized_access_point": "Jungfrau (Berne, Suisse ; Mont)" + } + ], + "broader": [ + { + "authorized_access_point": "Alpes, Cha\u00eene des" + } + ], + "variant_access_point": [ + "Alpi Bernesi (Suisse)", + "Berner Alpen (Suisse)" + ], + "md5": "1f4f840a731b7a28763ad29394298e84" + }, + { + "authorized_access_point": "Alpes vaudoises (Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/276510216", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/276510216", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)944449360" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "111 lieux des Alpes vaudoises \u00e0 ne pas manquer / Benjamin Amiguet, Marc Voltenauer, 2022", + "https://fr.wikipedia.org/wiki/Alpes_vaudoises, 2024-03-20", + "https://search.ortsnamen.ch/fr/record/803319560/, 2024-03-20" + ] + }, + { + "noteType": "general", + "label": [ + "Les Alpes vaudoises sont un ensemble montagneux des Alpes suisses situ\u00e9 principalement dans les cantons de Vaud et du Valais" + ] + } + ], + "pid": "276510216", + "type": "bf:Place", + "narrower": [ + { + "authorized_access_point": "Grand Muveran (Suisse ; mont)" + }, + { + "authorized_access_point": "Les Diablerets (Suisse ; massif)" + } + ], + "variant_access_point": [ + "Waadtl\u00e4nder Alpen (Suisse)", + "Alpi Valdesi (Suisse)" + ], + "md5": "8d178bc04c6fbb630ce249b2ba547e5a" + }, + { + "authorized_access_point": "Madagascar", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/276534921", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/276534921", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15325769w", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040744256" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/146036991" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Coordonn\u00e9es g\u00e9ographiques : E 43\u00b020' - E 50\u00b015' / S 12\u00b0 - S 25\u00b030'" + ] + } + ], + "pid": "276534921", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Afrique" + } + ], + "relation_pid": { + "value": "027238180", + "type": "redirect_from" + }, + "variant_access_point": [ + "R\u00e9publique Malgache (1960-)", + "Malgache, R\u00e9publique (1960-)", + "Madagascar (1960-)" + ], + "md5": "fc3b9c5f18410bed41ee3c387965a4b3" + }, + { + "authorized_access_point": "Anholt, Ch\u00e2teau de (Allemagne)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/276626370", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/276626370", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wasserburg Anholt / Eberhard G. Neumann. - M\u00fcnchen ; Berlin : Deutscher Kunstverlag, 1976" + ] + } + ], + "pid": "276626370", + "type": "bf:Place", + "variant_access_point": [ + "Wasserburg Anholt", + "Isselburg (Westphalie) - Ch\u00e2teau d\u2019Anholt" + ], + "md5": "a1481849e03c971258dbedd0f2f6a53f" + }, + { + "authorized_access_point": "Gelnhausen (Hesse, Allemagne) - Kaiserpfalz", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/276637674", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/276637674", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Gelnhausen : Kaiserpfalz : amtlicher F\u00fchrer / Wolfgang Einsingbach. - Bad Homburg vor der H\u00f6he : Verwaltung der Staatlichen Schl\u00f6sser und G\u00e4rten Hessen, 1980" + ] + } + ], + "pid": "276637674", + "type": "bf:Place", + "variant_access_point": [ + "Ch\u00e2teau de Gelnhausen (Gelnhausen, Allemagne)", + "Kaiserpfalz Gelnhausen (Gelnhausen, Allemagne)", + "Pfalz Gelnhausen (Gelnhausen, Allemagne)", + "Barbarossaburg (Gelnhausen, Allemagne)" + ], + "md5": "d06a3188cb11c9ba19d2f5bfe3b6f2e3" + }, + { + "authorized_access_point": "Roccantica (Italie) - Chiesa Santa Caterina d'Alessandria", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "200", + "name": "Religion" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "720", + "name": "Architecture" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "914", + "name": "G\u00e9ographie de l'Europe" + } + ], + "identifier": "http://www.idref.fr/276708083", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/276708083", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Pietro Coleberti e il ciclo pittorico di Santa Caterina a Roccantica / Giuseppe Cassio, 2023" + ] + }, + { + "noteType": "general", + "label": [ + "Via della Torre, 25, 02040 Roccantica RI, Italie" + ] + } + ], + "pid": "276708083", + "type": "bf:Place", + "variant_access_point": [ + "Chiesa Santa Caterina d'Alessandria (Roccantica, Italie)", + "Roccantica (Italie) - \u00c9glise Sainte Catherine d'Alexandrie", + "\u00c9glise Sainte Catherine d'Alexandrie (Roccantica, Italie)", + "Sainte Catherine (Roccantica, Italie)" + ], + "md5": "e20aabf09441c1655d23745c9962338e" + }, + { + "authorized_access_point": "Eltz, Ch\u00e2teau d\u2019(Allemagne)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/276783743", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/276783743", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Burg Eltz / Dieter Ritzenhofen. - 17. Auflage. - M\u00fcnchen ; Berlin : Deutscher Kunstverlag, 1989" + ] + } + ], + "pid": "276783743", + "type": "bf:Place", + "variant_access_point": [ + "Burg Eltz", + "Wierschem, Rh\u00e9nanie-Palatinat (Allemagne) - Ch\u00e2teau d\u2019Eltz" + ], + "md5": "8e204e2168e1d8bad82c47c7da1bc748" + }, + { + "authorized_access_point": "Desenberg, Ch\u00e2teau de (Allemagne)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/27678832X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/27678832X", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Der Desenberg bei Warburg, Kreis H\u00f6xter / [Cornelia Kneppe, Hans-Werner Peine]. - M\u00fcnster : Altertumskommission f\u00fcr Westfalen, 2000" + ] + } + ], + "pid": "27678832X", + "type": "bf:Place", + "variant_access_point": [ + "Der Desenberg", + "Der Daseburg", + "Warburg, Westphalie (Allemagne) - Ch\u00e2teau de Desenberg" + ], + "md5": "a3d428436ec1ad04d7192accb4ac6d5e" + }, + { + "authorized_access_point": "Leukerbad (Valais, Suisse) - Campus Studiengang Physiotherapie HES-SO", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/276828984", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/276828984", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Campus, HES-SO Studiengang Physiotherapie Leukerbad : Umbau : Schulgeb\u00e4ude = HES-SO, Campus \u00c9tudes de physioth\u00e9rapie Lo\u00e8che-les-Bains : transformation : b\u00e2timent scolaire / D\u00e9partement des finances et de l\u2019\u00e9nergie. Service immobilier et patrimoine. Section Investissement. - Canton du Valais, 2023" + ] + }, + { + "noteType": "general", + "label": [ + "Campus HES-SO des Etudes de physioth\u00e9rapie situ\u00e9 au Rathausstrasse 25 \u00e0 Lo\u00e8che-les-Bains. Ancienne clinique/h\u00f4pital pour la r\u00e9adaptation neurologique r\u00e9adapt\u00e9e en 2018 par l'Etat du Valais pour les besoins de la HES-SO" + ] + } + ], + "pid": "276828984", + "type": "bf:Place", + "variant_access_point": [ + "Lo\u00e8che-les-Bains (Valais, Suisse) - Campus Etudes de physioth\u00e9rapie HES-SO" + ], + "md5": "cd0b6be4baa4f9b59074b0218d23ea56" + }, + { + "authorized_access_point": "Lavaux-Saint-Anne (Belgique) - Ch\u00e2teau", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/276944135", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/276944135", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Erfgoed op de vlucht. Duitse bezetters, Vlaamse meesterwerken, een Waals kasteel / Bert Govaerts, 2024", + "2024/04/09 https://fr.wikipedia.org/wiki/Ch%C3%A2teau_de_Lavaux-Sainte-Anne" + ] + }, + { + "noteType": "general", + "label": [ + "Le ch\u00e2teau de Lavaux-Sainte-Anne est situ\u00e9 en Wallonie \u00e0 Lavaux-Sainte-Anne (5580) en Belgique pr\u00e8s de Rochefort, dans la province de Namur. Ne doit pas \u00eatre confondu avec Lavault-Sainte-Anne. La construction ayant commenc\u00e9 au 15e si\u00e8cle et termin\u00e9e au 16e si\u00e8cle, il s'agit d'une forteresse m\u00e9di\u00e9vale transform\u00e9e par des influences Renaissance. Lavaux-Sainte-Anne (en wallon Li V\u00e5-Sinte-Ane) est une section de la ville belge de Rochefort. C'\u00e9tait une commune \u00e0 part enti\u00e8re avant la fusion des communes de 1977." + ] + } + ], + "pid": "276944135", + "type": "bf:Place", + "md5": "a7c4236ba1d97c6c374a135be20423ab" + }, + { + "authorized_access_point": "Honstein, Ch\u00e2teau de (Allemagne)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/276970950", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/276970950", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Gehn wir mal auf den Honstein / Hansjoachim Stenzhorn. - 3. Aufflage. - Nordhausen : Eigenverlag, 2001" + ] + } + ], + "pid": "276970950", + "type": "bf:Place", + "variant_access_point": [ + "Burg Honstein", + "Burg Hohnstein", + "Burg Hohenstein", + "Nordhausen, Thuringe (Allemagne) - Ch\u00e2teau de Honstein" + ], + "md5": "3a494c6beac84926efd23e94f709773b" + }, + { + "authorized_access_point": "Meyrin (Gen\u00e8ve, Suisse) - Les Vergers", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/277221307", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/277221307", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Die institutionelle F\u00f6rderung des nachbarschaftlichen Miteinanders im Genfer \u00d6koviertel \u00abLes Vergers\u00bb : eine Untersuchung \u00fcber ihre Gestaltung und ihre Resonanz bei den \u00f6rtlichen Bewohner:innen / von Marc-Aur\u00e8le Dubois-Pelerin, 2023" + ] + }, + { + "noteType": "general", + "label": [ + "L'\u00e9coquartier Les Vergers comprend 1350 logements r\u00e9partis dans 30 b\u00e2timents. B\u00e2ti sur un terrain d'une superficie d'environ 16 hectares, il accueille environ 3'000 habitants et 10'000 m2 de surfaces commerciales. Ce quartier exemplaire est bas\u00e9 sur les trois piliers du d\u00e9veloppement durable : solidarit\u00e9 sociale, responsabilit\u00e9 environnementale et efficience \u00e9conomique. Il a \u00e9t\u00e9 finalis\u00e9 en 2023" + ] + } + ], + "pid": "277221307", + "type": "bf:Place", + "md5": "c467b4ba36c6b50cf6c181e1c8aecad6" + }, + { + "authorized_access_point": "Flossenb\u00fcrg (Allemagne) - Burgruine", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/27727382X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/27727382X", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Die Ruine Flossenb\u00fcrg : Auferstehung einer Burg des hohen und sp\u00e4ten Mittelalters / von Andreas Boos. - Flossenb\u00fcrg : Gemeinde Flossenb\u00fcrg, 1993." + ] + } + ], + "pid": "27727382X", + "type": "bf:Place", + "variant_access_point": [ + "ch\u00e2teau de Flossenb\u00fcrg (Flossenb\u00fcrg, Allemagne)", + "Burgruine Flossenb\u00fcrg (Flossenb\u00fcrg, Allemagne)", + "Ruine Flossenb\u00fcrg (Flossenb\u00fcrg, Allemagne)" + ], + "md5": "a0c1cf24fafc7aa35fa5fb329ab734ed" + }, + { + "authorized_access_point": "R\u00e9chy, Val de (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/277473284", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/277473284", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1019952792" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Les richesses naturelles du Vallon de R\u00e9chy : en vue de sa mise sous protection / Ren\u00e9-Pierre Bille... et al., 1986", + "https://www.vs.ch/web/sites-naturels-proteges/val-de-rechy, 2024-05-01" + ] + }, + { + "noteType": "general", + "label": [ + "Vallon situ\u00e9 entre le val d'H\u00e9rens et le val d'Anniviers" + ] + } + ], + "pid": "277473284", + "type": "bf:Place", + "variant_access_point": [ + "R\u00e9chy, Vallon de (Valais, Suisse)" + ], + "md5": "0ac58f0d9375e4e039de3367246ddfda" + }, + { + "authorized_access_point": "Kasur (Pakistan)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/278628117", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/278628117", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Historical archives of Kasur / Amjad Zafar Ali, 2023", + "Internet, https://authorities.loc.gov, 2024-06-04" + ] + }, + { + "noteType": "general", + "label": [ + "Kasur est une ville pakistanaise, et capitale du district de Kasur, dans la province du Pendjab. Coordonn\u00e9es g\u00e9ographiques : E 74\u00b0 26'' 48'' / N 31\u00b0 6' 56''" + ] + } + ], + "pid": "278628117", + "type": "bf:Place", + "variant_access_point": [ + "\u0642\u0635\u0648\u0631 (Pakistan)", + "Qas\u016br (Pakistan)" + ], + "md5": "56a7bb93c479080375061ece59ef19e9" + }, + { + "authorized_access_point": "Forrest (Ill.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/278728596", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/278728596", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-06-10" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Livingston" + ] + } + ], + "pid": "278728596", + "type": "bf:Place", + "md5": "b79cabc651f8493c8c827e3105ceaff9" + }, + { + "authorized_access_point": "Azarori (Niger)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/278738230", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/278738230", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "https://fr.wikipedia.org/wiki/Azarori" + ] + }, + { + "noteType": "general", + "label": [ + "Azarori est une localit\u00e9 et une commune rurale du Niger, du d\u00e9partement de Madaoua, r\u00e9gion de Tahoua. Elle s'\u00e9tend sur 166 localit\u00e9s." + ] + } + ], + "pid": "278738230", + "type": "bf:Place", + "variant_access_point": [ + "Az\u00e9rori (Niger)", + "Arzerori (Niger)" + ], + "md5": "343fb36e44c238fc673bf70760a31195" + }, + { + "authorized_access_point": "Berlin (Allemagne) - Dorotheenst\u00e4dtischer Friedhof", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "390", + "name": "Ethnologie, anthropologie, folklore" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "710", + "name": "Urbanisme" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "914" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Dorotheenst\u00e4dtischer Friedhof (Berlin, Germany)", + "source": "LCSH" + } + ], + "identifier": "http://www.idref.fr/278747310", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/278747310", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18150875k", + "source": "BNF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Endzeiten : Wie G.W.F. Hegel, Dietrich Bonhoeffer, Heinrich Mann, Bertolt Brecht, Herbert Marcuse, Heiner M\u00fcller und Christa Wolf ihr nahes Ende lebten : Was der Tod mit ihrem Werk machte und wie er mit der Geschichte zusammenhing / Karl Heinz G\u00f6tze, 2023", + "Biblioth\u00e8que nationale, autorit\u00e9s, Allemagne : Dorotheenst\u00e4dtischer Friedhof (Berlin) - https://d-nb.info/gnd/4333021-6 (2024-06-05)" + ] + } + ], + "pid": "278747310", + "type": "bf:Place", + "variant_access_point": [ + "Dorotheenst\u00e4dtischer Friedhof (Berlin, Allemagne)" + ], + "md5": "6afa8b6092cb11dc39912d62df7786eb" + }, + { + "authorized_access_point": "Temple d'Hadrien (Rome, Italie)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/278850650", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/278850650", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Hadrianeum : il progetto architettonico e le fasi costruttive / Claudio Parisi Presicce, Massimo Baldi, [2024]", + "https://fr.wikipedia.org/wiki/Temple_d%27Hadrien, 2024-06-13" + ] + }, + { + "noteType": "general", + "label": [ + "Ancien temple romain situ\u00e9 sur la piazza di Pietra, au Champ de Mars, \u00e0 Rome, \u00e9rig\u00e9 en l'honneur de l'empereur Hadrien par son successeur Antonin le Pieux, en 145 apr. J.-C." + ] + } + ], + "pid": "278850650", + "type": "bf:Place", + "variant_access_point": [ + "Hadrianeum (Rome, Italie)", + "Hadrien, temple d' (Rome, Italie)", + "Rome (Italie) - Hadrianeum" + ], + "md5": "dcf9f768bea5fdf5ee47c8d2b9e289e4" + }, + { + "authorized_access_point": "Dalkey (Comt\u00e9 de Dublin, Irlande) - Monte Alverno", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/278893899", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/278893899", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Monte Alverno : an Irish private collection : auction in London, 16 May 2022 / Sotheby's, 2022" + ] + }, + { + "noteType": "general", + "label": [ + "Manoir construit vers 1835, agrandi et restaur\u00e9 en 1895" + ] + } + ], + "pid": "278893899", + "type": "bf:Place", + "variant_access_point": [ + "Monte Alverno (Dalkey, Comt\u00e9 de Dublin, Irlande)" + ], + "md5": "aad49f31f40bde0547e3d238f0155596" + }, + { + "authorized_access_point": "Ferrare (Italie) - Palazzo dei Diamanti", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/278918964", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/278918964", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Palazzo dei Diamanti : contributi per il restauro / a cura di Carla Di Francesco, 1991", + "https://www.palazzodiamanti.it/en/about-us/, 2024-06-18", + "https://www.comune.fe.it/it/z/384/view?modelClass=open20%5Cagid%5Corganizationalunit%5Cmodels%5CAgidOrganizationalUnit&view=detailAgidOrgUnit, 2024-05-03", + "https://viaf.org/processed/RERO%7CA006071632, 2024-05-30" + ] + }, + { + "noteType": "general", + "label": [ + "Le palais, con\u00e7u par Biagio Rossetti, fut construit \u00e0 partir de 1493 pour le compte de Sigismondo d\u2019Este, fr\u00e8re du duc Hercule Ier d\u2019Este. Le b\u00e2timent fut achet\u00e9 par la municipalit\u00e9 de Ferrare en 1832. Devenu espace d'exposition, il d\u00e9pendait de la Galleria civica d'arte moderna - comprise d\u00e9sormais dans les Gallerie d'Arte Moderna e Contemporanea - et d\u00e9pend actuellement (2024) de la Fondazione Ferrara Arte." + ] + } + ], + "pid": "278918964", + "type": "bf:Place", + "variant_access_point": [ + "Palazzo dei Diamanti (Ferrare, Italie)", + "Ferrare (Italie) - Palais des diamants", + "Palais des diamants (Ferrare, Italie)" + ], + "md5": "b7e82d8d041adf9c490a474426f19061" + }, + { + "authorized_access_point": "Lardy (Essonne, France) - Parc Boussard", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "710", + "name": "Urbanisme" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "912" + } + ], + "identifier": "http://www.idref.fr/279034989", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279034989", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18152832s", + "source": "BNF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Ville de Lardy - https://www.ville-lardy.fr/tourisme/parcs-et-jardins/le-parc-boussard (2024-06-14)", + "Le parc Boussard / A-S. Godot, 2024" + ] + }, + { + "noteType": "general", + "label": [ + "Ancien parc priv\u00e9 de style Art d\u00e9co cr\u00e9\u00e9 entre 1927 et 1930 par l'architecte Joseph Marrast pour le n\u00e9gociant Henri Boussard" + ] + } + ], + "pid": "279034989", + "type": "bf:Place", + "relation_pid": { + "value": "27949002X", + "type": "redirect_from" + }, + "variant_access_point": [ + "Boussard, Parc (Lardy, Essonne)", + "Parc Boussard (Lardy, Essonne)" + ], + "md5": "9ed9ccea91d062affa9d0f192eb9760e" + }, + { + "authorized_access_point": "Enewetak (Atoll)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279121369", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279121369", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/315128069" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Seismic-refraction studies of Eniwetok Atoll / by Russell W. Raitt, 1957." + ] + }, + { + "noteType": "general", + "label": [ + "Atoll des iles Marshall" + ] + } + ], + "pid": "279121369", + "type": "bf:Place", + "variant_access_point": [ + "Eniwetok (Atoll)" + ], + "md5": "9757fb07a0e8870ef0631ff0561b0046" + }, + { + "authorized_access_point": "Strawn (Ill.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279128800", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279128800", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-01" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Livingston" + ] + } + ], + "pid": "279128800", + "type": "bf:Place", + "md5": "b057072c01f90823dbd1a43f8d9957ae" + }, + { + "authorized_access_point": "Sibley (Ill.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/27912886X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/27912886X", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-01" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Ford" + ] + } + ], + "pid": "27912886X", + "type": "bf:Place", + "md5": "aeaf29a660adbc283c4f2503fea438a8" + }, + { + "authorized_access_point": "Guthrie (Ill.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279128959", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279128959", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-01" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Ford" + ] + } + ], + "pid": "279128959", + "type": "bf:Place", + "md5": "57ef7ecd555fe58c7b46dd346e498bbf" + }, + { + "authorized_access_point": "Karunki (Finlande)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279129467", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279129467", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Suomen geologinen kartta Lehti 2542+2524 = =Geological map of Finland : kallioper\u00e4kartta / Geologisen tutkimuslaitoksen julkaisema ; Tehnyt Vesa Perttunen, 1972.", + "http://www.geonames.org/653831/karunki.html , 2024-07-01" + ] + }, + { + "noteType": "general", + "label": [ + "Ville de Finlande, Laponie" + ] + } + ], + "pid": "279129467", + "type": "bf:Place", + "md5": "72b38eb170a5469f62ee7d61ff97afeb" + }, + { + "authorized_access_point": "Polo (Ill.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279129912", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279129912", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-01" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 d'Ogle" + ] + } + ], + "pid": "279129912", + "type": "bf:Place", + "md5": "6424c65d9e66ebee4d47caebd5bc59ff" + }, + { + "authorized_access_point": "Kotka (Finlande)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279129920", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279129920", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Suomen geologinen kartta Lehti 3041 = =Geological map of Finland : kallioper\u00e4kartta / Geologisen tutkimuslaitoksen julkaisema ; Tehnyt Matti Laitala & Ahti Simonen, 1972." + ] + }, + { + "noteType": "general", + "label": [ + "Commune de Finlande, r\u00e9gion Vall\u00e9e de la Kymi; Absorbe le comt\u00e9 de Haapasaari en 1974" + ] + } + ], + "pid": "279129920", + "type": "bf:Place", + "md5": "ca74cf67685ce489aedd3d25f6266ba9" + }, + { + "authorized_access_point": "Rock Falls (Ill.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279130252", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279130252", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-01" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Whiteside" + ] + } + ], + "pid": "279130252", + "type": "bf:Place", + "md5": "4e766d6cad006f1f3b33694c252e17a0" + }, + { + "authorized_access_point": "Barcena de Cicero (Espagne) - Iglisia San Pelayo de Cicero", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "200", + "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "690", + "name": "B\u00e2timent" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "720", + "name": "Architecture" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "914" + } + ], + "identifier": "http://www.idref.fr/279131321", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279131321", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "El retablo mayor de Cicero : historia y restauraci\u00f3n / Julio J. Polo S\u00e1nchez, Rocio Espejo-Saavedra, 1996", + "Blog : https://iglesiasdecantabria-blogspot-com.translate.goog/2009/05/cicero.html?_x_tr_sl=es&_x_tr_tl=fr&_x_tr_hl=fr&_x_tr_pto=sc (01-07-2024)" + ] + }, + { + "noteType": "general", + "label": [ + "Eglise du milieu du XVIe si\u00e8cle. Son retable principal est l'un des exemples les plus remarquables de Cantabrie. Dat\u00e9 de 1633, il a \u00e9t\u00e9 assembl\u00e9 par Rodrigo de los Corrales et poss\u00e8de des sculptures de Juan de Palacio" + ] + } + ], + "pid": "279131321", + "type": "bf:Place", + "variant_access_point": [ + "\u00c9glise de San Pelayo de Cicero (Barcena de Cicero, Espagne)", + "Iglesia de San Pelayo de Cicero (Barcena de Cicero, Espagne)" + ], + "md5": "8cbfc3fc64ea8f0e52c33c4897fe7c41" + }, + { + "authorized_access_point": "Windsor (Ill.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279131356", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279131356", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-01" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Shelby" + ] + } + ], + "pid": "279131356", + "type": "bf:Place", + "md5": "3b3d675e5c1487c50b25acdcbc38dbd2" + }, + { + "authorized_access_point": "Strasburg (Ill.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/27913150X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/27913150X", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-01" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Shelby" + ] + } + ], + "pid": "27913150X", + "type": "bf:Place", + "md5": "3ec702510fa45cb4812e29f3fbd44996" + }, + { + "authorized_access_point": "Stewardson (Ill.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279131593", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279131593", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-01" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Shelby" + ] + } + ], + "pid": "279131593", + "type": "bf:Place", + "md5": "b8fa23bd85e02dc9a3a6699a832a3a31" + }, + { + "authorized_access_point": "Long Point (Ill.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279132409", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279132409", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-01" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Livingston" + ] + } + ], + "pid": "279132409", + "type": "bf:Place", + "md5": "9772882274157a874b5fa6feb18a070f" + }, + { + "authorized_access_point": "Aydin", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279132581", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279132581", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "https://fr.wikipedia.org/wiki/Ayd%C4%B1n" + ] + }, + { + "noteType": "general", + "label": [ + "ville de Turquie" + ] + } + ], + "pid": "279132581", + "type": "bf:Place", + "variant_access_point": [ + "Tralles", + "A\u00efdini" + ], + "md5": "ff6dad013bcc4872077c9386fba86a5d" + }, + { + "authorized_access_point": "Roum\u00e9lie", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279133782", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279133782", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "https://fr.wikipedia.org/wiki/Roum%C3%A9lie" + ] + }, + { + "noteType": "general", + "label": [ + "partie de la p\u00e9ninsule balkanique sous domination ottomane" + ] + } + ], + "pid": "279133782", + "type": "bf:Place", + "variant_access_point": [ + "Rumeli", + "Rumelia" + ], + "md5": "2e5d16fce1338e386547eb5f7dfd3004" + }, + { + "authorized_access_point": "Jacona de Plancarte (Mexico)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/27913438X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/27913438X", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "https://viaf.org/viaf/134019187" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Jacona y Zamora : datos hist\u00f3ricos, \u00fatiles y curiosos / Arturo Rodriguez Zetina, 1956", + "Nuestra Se\u00f1ora de la Esperanza, 1997:", + "GEOnet, Dec. 7, 1999" + ] + }, + { + "noteType": "general", + "label": [ + "Ville de Jacona de Plancarte (Jacona), dans l'\u00e9tat de Michoac\u00e1n" + ] + } + ], + "pid": "27913438X", + "type": "bf:Place", + "md5": "ca3e10e5e2bb95615909f70ca7392ea9" + }, + { + "authorized_access_point": "Sumner (Ill.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/27913469X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/27913469X", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-01" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Lawrence" + ] + } + ], + "pid": "27913469X", + "type": "bf:Place", + "md5": "ca478dec04f28509575741ba28ad4850" + }, + { + "authorized_access_point": "Maple Park (Ill.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279135130", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279135130", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-01" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Kane" + ] + } + ], + "pid": "279135130", + "type": "bf:Place", + "md5": "5ee7bd8a2871cff66c245f5b18c4fcd2" + }, + { + "authorized_access_point": "Hinckley (Ill.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279135289", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279135289", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-01" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de DeKalb" + ] + } + ], + "pid": "279135289", + "type": "bf:Place", + "md5": "87b84221caf6a866ebf54e5acd7fac89" + }, + { + "authorized_access_point": "Buckhart (Ill.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279135777", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279135777", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-01" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Sangamon" + ] + } + ], + "pid": "279135777", + "type": "bf:Place", + "md5": "593cae1125c3e00cbf28441e83c19ca7" + }, + { + "authorized_access_point": "Edinburg (Ill.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279135890", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279135890", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-01" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Christian" + ] + } + ], + "pid": "279135890", + "type": "bf:Place", + "md5": "7fa919b68373e2afd2869fd921689721" + }, + { + "authorized_access_point": "Bursa", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279136730", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279136730", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "https://fr.wikipedia.org/wiki/Bursa" + ] + }, + { + "noteType": "general", + "label": [ + "ville de Turquie" + ] + } + ], + "pid": "279136730", + "type": "bf:Place", + "variant_access_point": [ + "Brousse", + "Prousa", + "\u03a0\u03c1\u03bf\u1fe6\u03c3\u03b1", + "Pruse" + ], + "md5": "01239b3c6f3b03cb972de9ff07ba16d0" + }, + { + "authorized_access_point": "Susurluk", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279136900", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279136900", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "https://fr.wikipedia.org/wiki/Susurluk" + ] + }, + { + "noteType": "general", + "label": [ + "Ville de Turquie" + ] + } + ], + "pid": "279136900", + "type": "bf:Place", + "md5": "6e0b7b87236a06bd2a2d02d1441399dc" + }, + { + "authorized_access_point": "Bade-Wurtemberg (Allemagne ; sud)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279146884", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279146884", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Konstanz / copied in 1951 from Central Europe, 1:250,000, GSGS, sheet L48, 1943 ; prepared by the Army map service (AMS), corps of engineers, U.S. army, Washington D.C. ; main communications revised from intelligence data, 1951, universal transverse Mercator grid added and marginal data revised by AMS ; printed by Army map service, corps of engineers, 10-1951, 1951" + ] + } + ], + "pid": "279146884", + "type": "bf:Place", + "md5": "c2eec8028abd641fdf819c803e955068" + }, + { + "authorized_access_point": "Sigel (Ill.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279147546", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279147546", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-02" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Shelby" + ] + } + ], + "pid": "279147546", + "type": "bf:Place", + "md5": "36f85182961b4d1bd345dc4570a45586" + }, + { + "authorized_access_point": "Teutopolis (Ill.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279147708", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279147708", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-02" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 d'Effingham" + ] + } + ], + "pid": "279147708", + "type": "bf:Place", + "md5": "e0d4b0e002ca839f4fec19de5e1bc0ab" + }, + { + "authorized_access_point": "Wheeler (Ill.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/27914783X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/27914783X", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-02" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Jasper" + ] + } + ], + "pid": "27914783X", + "type": "bf:Place", + "md5": "d28710a21ad9a15b9b1960dc3715e021" + }, + { + "authorized_access_point": "Illmo (Mo.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279148232", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279148232", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-02" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Scott" + ] + } + ], + "pid": "279148232", + "type": "bf:Place", + "md5": "33c800440874e2471747a8fc95adadda" + }, + { + "authorized_access_point": "Thebes (Ill.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279148658", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279148658", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-02" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 d'Alexander" + ] + } + ], + "pid": "279148658", + "type": "bf:Place", + "md5": "fb2550902fd40fd1bde57ea9d7f2ff84" + }, + { + "authorized_access_point": "Miller City (Ill.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279148739", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279148739", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-02" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 d'Alexander" + ] + } + ], + "pid": "279148739", + "type": "bf:Place", + "md5": "c4f185941c75b4949e7a0fc1ab6f5b12" + }, + { + "authorized_access_point": "Isso (Espagne)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279149492", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279149492", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Isso / Hergestellt im Auftrage Gen St d H Abt f Kr Kart u Verm Wes (II), 1941", + "http://www.geonames.org, 2024-07-02" + ] + }, + { + "noteType": "general", + "label": [ + "N 38\u00b029\u203227\u2033 W 1\u00b044\u203234\u2033" + ] + } + ], + "pid": "279149492", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Castille-La Manche (Espagne)" + } + ], + "md5": "7117e887358386c5ae78986fabee1efe" + }, + { + "authorized_access_point": "Tandil, Sierra del (Argentine)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "915" + } + ], + "identifier": "http://www.idref.fr/279149522", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279149522", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Atlas geografico de la republica argentina / Instituto geogr\u00e1fico militar, 2001", + "L'Atlas national geographic, 2007" + ] + }, + { + "noteType": "dataNotFound", + "label": [ + "LCSH, 2024-06-27" + ] + } + ], + "pid": "279149522", + "type": "bf:Place", + "md5": "f94a1344b7e39eec0870b92607caead9" + }, + { + "authorized_access_point": "Embarrass river (Ill. ; cours d'eau)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279150350", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279150350", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-02" + ] + } + ], + "pid": "279150350", + "type": "bf:Place", + "md5": "1e8e1fa8d47d5212113bf81395a178f4" + }, + { + "authorized_access_point": "Toledo (Ill.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279150504", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279150504", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-02" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Cumberland" + ] + } + ], + "pid": "279150504", + "type": "bf:Place", + "md5": "abafb935a61c3fc874f2737bdd93e028" + }, + { + "authorized_access_point": "Atwood (Ill.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279150911", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279150911", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-02" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Douglas et Platt" + ] + } + ], + "pid": "279150911", + "type": "bf:Place", + "md5": "40a8d41b29477a3d6af176bec60a9419" + }, + { + "authorized_access_point": "Tuscola (Ill.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279150989", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279150989", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-02" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Douglas" + ] + } + ], + "pid": "279150989", + "type": "bf:Place", + "md5": "8f0c1690a79f94d030483a9499e54053" + }, + { + "authorized_access_point": "Olvega (Espagne)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279152426", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279152426", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/238431643" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Mapa geol\u00f3gico de Espa\u00f1a E. 1:50 000 351 / Instituto geol\u00f3gico y minero de Espa\u00f1a ; M. Mart\u00edn Fern\u00e1ndez, J.M. Esnaola G\u00f3mez, 1972, DL 1973.", + "https://www.geonames.org/3115088/olvega.html, 2024-07-02" + ] + }, + { + "noteType": "general", + "label": [ + "Vile, province de Soria" + ] + } + ], + "pid": "279152426", + "type": "bf:Place", + "md5": "200c27f2be53981a2e26f54f2457d1f2" + }, + { + "authorized_access_point": "Vienna (Ill.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/27915397X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/27915397X", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-02" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Johnson" + ] + } + ], + "pid": "27915397X", + "type": "bf:Place", + "md5": "ffce17c0debf7487d0a1ff953850204b" + }, + { + "authorized_access_point": "Karnak (Ill.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279154097", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279154097", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-02" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Pulaski" + ] + } + ], + "pid": "279154097", + "type": "bf:Place", + "md5": "8558aea92d60b1b6f64d8746f0e01cb1" + }, + { + "authorized_access_point": "Philo (Ill.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279154437", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279154437", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-02" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Champaign" + ] + } + ], + "pid": "279154437", + "type": "bf:Place", + "md5": "90fa8f60ebd98723518d549b1690aee8" + }, + { + "authorized_access_point": "Villa Grove (Ill.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279154488", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279154488", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-02" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Douglas" + ] + } + ], + "pid": "279154488", + "type": "bf:Place", + "md5": "989e34655e484bd3522b17db285af646" + }, + { + "authorized_access_point": "Kar\u015fiaka", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279154542", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279154542", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://calames.abes.fr/pub/ms/Calames-202405241694556323" + ] + }, + { + "noteType": "general", + "label": [ + "ville de la province d'\u0130zmir, rquie" + ] + } + ], + "pid": "279154542", + "type": "bf:Place", + "variant_access_point": [ + "Kordeli\u00f3" + ], + "md5": "18057d1859e68c613044140e09dec668" + }, + { + "authorized_access_point": "Hugo (Ill.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279154593", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279154593", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "https://en.wikipedia.org/wiki/Hugo,_Illinois/, 2024-07-02" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Douglas" + ] + } + ], + "pid": "279154593", + "type": "bf:Place", + "md5": "3437e2496ac1ecfea6767fe20d159182" + }, + { + "authorized_access_point": "Sylvania Tablemount (iles Marshall)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279156766", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279156766", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/315167742" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Lower Eocene phosphatized Globigerina ooze from Sylvania Guyot / by Edwin L. Hamilton and Robert W. Rex, 1959." + ] + }, + { + "noteType": "general", + "label": [ + "Guyot ou Tablemount, mont sous-marin volcanique" + ] + } + ], + "pid": "279156766", + "type": "bf:Place", + "variant_access_point": [ + "W\u014ddejebato (iles Marshall)" + ], + "md5": "ccb3c584c67322b2364f2efba7069665" + }, + { + "authorized_access_point": "Virginia (Ill.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279158475", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279158475", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-02" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Cass" + ] + } + ], + "pid": "279158475", + "type": "bf:Place", + "md5": "02a8319bf25fafff860481196645362f" + }, + { + "authorized_access_point": "Portuguese Hill (Ill.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279158599", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279158599", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-02" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Morgan" + ] + } + ], + "pid": "279158599", + "type": "bf:Place", + "md5": "edb754410ec97784914b7a2a472ceba1" + }, + { + "authorized_access_point": "Elliottstown (Ill.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/27915948X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/27915948X", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-02" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 d'Effingham" + ] + } + ], + "pid": "27915948X", + "type": "bf:Place", + "md5": "c56c9c5b0b867a69fa773296d063f0dd" + }, + { + "authorized_access_point": "G\u00e9rontas", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279166303", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279166303", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "https://web.archive.org/web/20240127115300/https://www.slate.fr/story/221376/grecs-empire-ottoman-revolution-independance-guerre" + ] + }, + { + "noteType": "general", + "label": [ + "village grec d'Asie Mineure face \u00e0 l'\u00eele de Farmakonisi" + ] + } + ], + "pid": "279166303", + "type": "bf:Place", + "md5": "79c3beb264cd6fc1d10482c096ec5606" + }, + { + "authorized_access_point": "Kayak\u00f6y", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279167334", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279167334", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "https://fr.wikipedia.org/wiki/Kayak%C3%B6y" + ] + }, + { + "noteType": "general", + "label": [ + "quartier du district de Fethiye dans la province de Mu\u011fla - Turquie" + ] + } + ], + "pid": "279167334", + "type": "bf:Place", + "variant_access_point": [ + "\u039b\u03b9\u03b2\u03af\u03c3\u03c3\u03b9", + "Livissi" + ], + "md5": "6de7db978df3664cb09732ed86493b62" + }, + { + "authorized_access_point": "Venta de C\u00e1rdenas (Espagne)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/27918669X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/27918669X", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Venta de C\u00e1rdenas / Hergestellt im Auftrage Gen St d H Abt f Kr Kart u Verm Wes (II), 1941", + "http://www.geonames.org, 2024-07-03" + ] + }, + { + "noteType": "general", + "label": [ + "N 38\u00b025\u203200\u2033 W 3\u00b029\u203249\u2033" + ] + } + ], + "pid": "27918669X", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Castille-La Manche (Espagne)" + } + ], + "md5": "4248ecc50dac11be42f1e281180af156" + }, + { + "authorized_access_point": "Qasr al-Lebia (Lybie ; site arch\u00e9ologique)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279187610", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279187610", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "From Wilderness to Paradise. A Sixth-Century Mosaic Pavement at Qasr el-Lebia in Cyrenaica, Libya / Jane Chick" + ] + }, + { + "noteType": "general", + "label": [ + "Ville situ\u00e9e \u00e0 66 km au nord-ouest de Bayda. Site arch\u00e9ologique remarquable pour ses mosa\u00efques byzantines" + ] + } + ], + "pid": "279187610", + "type": "bf:Place", + "variant_access_point": [ + "Qasr Libya", + "Qasr Lebia" + ], + "md5": "4dff642b1377be66d0a3e957ed887055" + }, + { + "authorized_access_point": "Harmon (Ill.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279188994", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279188994", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-03" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Lee" + ] + } + ], + "pid": "279188994", + "type": "bf:Place", + "md5": "6ef3acbf90c2880c1a13b8d6f6e453dd" + }, + { + "authorized_access_point": "Walnut (Ill.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279189087", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279189087", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-03" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Bureau" + ] + } + ], + "pid": "279189087", + "type": "bf:Place", + "md5": "aff764d6ec8af84ef224bd07700ca64b" + }, + { + "authorized_access_point": "New Bedford (Ill.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279189249", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279189249", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-03" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Bureau" + ] + } + ], + "pid": "279189249", + "type": "bf:Place", + "md5": "68edd13ff89e9af0eaa16f197ec50a83" + }, + { + "authorized_access_point": "San Pablo Huitzo (Mexique)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279192576", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279192576", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "https://viaf.org/viaf/157285506" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "El exconvento y templo de San Pablo Huitzo, 1995:", + "BGN gaz. of Mexico", + "Historia del corregimiento de Guaxolotitlan (Huitzo) durante la colonia, siglos XVI al XIX, 2000:", + "GEOnet, Mar. 1, 2004" + ] + } + ], + "pid": "279192576", + "type": "bf:Place", + "variant_access_point": [ + "Huitzo (Mexique)" + ], + "md5": "f7da4bd5b4f4ea76d4717f7c27bc6d94" + }, + { + "authorized_access_point": "Curran (Ill.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/27919269X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/27919269X", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-02" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Sangamon" + ] + } + ], + "pid": "27919269X", + "type": "bf:Place", + "md5": "607b3d897515bd0e835ed5637587e79a" + }, + { + "authorized_access_point": "Waverly (Ill.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279192800", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279192800", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-03" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Morgan" + ] + } + ], + "pid": "279192800", + "type": "bf:Place", + "md5": "a8fac4604fa20218fb3260d661188ff9" + }, + { + "authorized_access_point": "Bluford (Ill.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/27919305X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/27919305X", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-03" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Jefferson" + ] + } + ], + "pid": "27919305X", + "type": "bf:Place", + "md5": "92c2a26147788191436e4671b7a575a4" + }, + { + "authorized_access_point": "Wayne City (Ill.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279193092", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279193092", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-03" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Wayne" + ] + } + ], + "pid": "279193092", + "type": "bf:Place", + "md5": "35df04de5fc8cbc620a79ec23953dc11" + }, + { + "authorized_access_point": "Sims (Ill.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279193181", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279193181", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-03" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Wayne" + ] + } + ], + "pid": "279193181", + "type": "bf:Place", + "md5": "4dcd63c1f0cf5dc37f98f601e5e8b0af" + }, + { + "authorized_access_point": "Johnson City (Ill.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/27919336X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/27919336X", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "https://fr.wikipedia.org/wiki/Johnston_City/, 2024-07-03" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Williamson" + ] + } + ], + "pid": "27919336X", + "type": "bf:Place", + "md5": "c632b9b7d13fd873c445557afd0e1d40" + }, + { + "authorized_access_point": "Itasca (Ill.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279193750", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279193750", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-03" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de DuPage" + ] + } + ], + "pid": "279193750", + "type": "bf:Place", + "md5": "0b81a7d93bcb3dca04afc98eb6594310" + }, + { + "authorized_access_point": "Shabeellaha Dhexe (Somalie ; r\u00e9gion)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279199929", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279199929", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GeoNames (2024-07-03)" + ] + }, + { + "noteType": "general", + "label": [ + "Shabeellaha Dhexe est une r\u00e9gion du sud est de la Somalie, avec fa\u00e7ade orientale sur l'Oc\u00e9an Indien, limitrophe des provinces somalies de Galguduud au nord-est, de Hiiraan au nord, et de Shabeellaha Hoose et de Banaadir au sud-ouest.", + "Coordonn\u00e9es en degr\u00e9s s\u00e9xag\u00e9simaux : N 3\u00b000\u203200\u2033 / E 46\u00b000\u203200\u2033" + ] + } + ], + "pid": "279199929", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Somalie" + } + ], + "variant_access_point": [ + "Middle Shebelle" + ], + "md5": "cdd35bf4fb728de12548b448843d2b92" + }, + { + "authorized_access_point": "Beas de Segura (Espagne)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279200471", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279200471", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Beas de Segura / Hergestellt im Auftrage Gen St d H Abt f Kr Kart u Verm Wes (II), 1941", + "http://www.geonames.org, 2024-07-03" + ] + }, + { + "noteType": "general", + "label": [ + "N 38\u00b015\u203209\u2033 W 2\u00b053\u203220\u2033" + ] + } + ], + "pid": "279200471", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Andalousie (Espagne)" + } + ], + "md5": "88eaa12f0a0987e2998eb5ad78c4104d" + }, + { + "authorized_access_point": "Dauphin\u00e9 (France) - 1349 (Annexion \u00e0 la France)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279207646", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279207646", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Rattachement du Dauphin\u00e9 \u00e0 la France, 1349-1949 : exposition organis\u00e9e pour le VIe centenaire au Ch\u00e2teau de Versailles, 28 septembre-15 novembre 1949 / [catalogue r\u00e9dig\u00e9 par Mademoiselle Marguerite Jallut] ; [avant-propos de Maurichau-Beaupr\u00e9], 1949" + ] + } + ], + "pid": "279207646", + "type": "bf:Place", + "md5": "1d6414559170c7d5adb2073c05210111" + }, + { + "authorized_access_point": "Jurong Shi (Chine)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279209592", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279209592", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikip\u00e9dia, https://zh.wikipedia.org/wiki/%E5%8F%A5%E5%AE%B9%E5%B8%82, 2024-07-04", + "\u8a66\u8fa6\u53e5\u5bb9\u7e23\u4eba\u53e3\u8fb2\u696d\u7e3d\u8abf\u67e5\u5831\u544a : \u6c11\u570b\u4e8c\u5341\u4e09\u5e74 / \u5433\u76f8\u6e58 \u4e3b\u7de8, 1971", + "Shi ban Jurong xian ren kou nong ye zong diao cha bao gao : min guo er shi san nian / Wu Xiangxiang zhu bian, 1971" + ] + }, + { + "noteType": "general", + "label": [ + "Ville-district de la province du Jiangsu" + ] + } + ], + "pid": "279209592", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Jiangsu Sheng (Chine ; province)" + } + ], + "variant_access_point": [ + "\u53e5\u5bb9\u53bf", + "\u53e5\u5bb9\u7e23", + "Jurong Xian", + "\u53e5\u5bb9\u5e02", + "Jurong Shi" + ], + "md5": "9394142ae14379e7b4e0f05d0dac6907" + }, + { + "authorized_access_point": "Wilmington (Ill.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279209754", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279209754", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-04" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Will" + ] + } + ], + "pid": "279209754", + "type": "bf:Place", + "md5": "658a59b8e80bc980096dd365b8544843" + }, + { + "authorized_access_point": "Braidwood (Ill.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279209886", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279209886", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-04" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Will" + ] + } + ], + "pid": "279209886", + "type": "bf:Place", + "md5": "f33a09f456d0269f742019f00ada6446" + }, + { + "authorized_access_point": "Yetas de Abajo (Espagne)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279210809", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279210809", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Yetas de Abajo / Hergestellt im Auftrage Gen St d H Abt f Kr Kart u Verm Wes (II), 1941", + "http://www.geonames.org, 2024-07-04" + ] + }, + { + "noteType": "general", + "label": [ + "N 38\u00b014\u203207\u2033 W 2\u00b019\u203237\u2033" + ] + } + ], + "pid": "279210809", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Castille-La Manche (Espagne)" + } + ], + "md5": "e1027ccda160f07ee330a64807bf5c3c" + }, + { + "authorized_access_point": "Winchester (Ill.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279211066", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279211066", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-04" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Scott" + ] + } + ], + "pid": "279211066", + "type": "bf:Place", + "md5": "8f85b59dc425916e660374bbb28c7109" + }, + { + "authorized_access_point": "Barrow (Ill.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279211147", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279211147", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-04" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Greene" + ] + } + ], + "pid": "279211147", + "type": "bf:Place", + "md5": "3f57dde4c2ca55880fb04fb71c95200f" + }, + { + "authorized_access_point": "Rio (Ill.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279214944", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279214944", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-04" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Knox" + ] + } + ], + "pid": "279214944", + "type": "bf:Place", + "md5": "bb77e781b3461c0117846a49883543b5" + }, + { + "authorized_access_point": "Wataga (Ill.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279214960", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279214960", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-04" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Knox" + ] + } + ], + "pid": "279214960", + "type": "bf:Place", + "md5": "23a0b54f8538d799309ff993cf4bcef0" + }, + { + "authorized_access_point": "Xenia (Ill.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279215142", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279215142", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-04" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Clay" + ] + } + ], + "pid": "279215142", + "type": "bf:Place", + "md5": "64e75fd6da311718953505b290d3c161" + }, + { + "authorized_access_point": "Johnsonville (Ill.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279215258", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279215258", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-04-07" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Wayne" + ] + } + ], + "pid": "279215258", + "type": "bf:Place", + "md5": "9a02247b775029a4930ef0b8e30cf811" + }, + { + "authorized_access_point": "Orchardville (Ill.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279215347", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279215347", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-04" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Wayne" + ] + } + ], + "pid": "279215347", + "type": "bf:Place", + "md5": "5582904fb702a051eb2d6c1b9e41ec05" + }, + { + "authorized_access_point": "De Gonia Springs (Ind.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279219717", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279219717", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-04" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Warrick" + ] + } + ], + "pid": "279219717", + "type": "bf:Place", + "variant_access_point": [ + "Degonia Springs" + ], + "md5": "00d0b51bb0e6d428ce20485aaeb5abaf" + }, + { + "authorized_access_point": "Gaoqing Xian (Chine)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279221487", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279221487", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikip\u00e9dia, https://zh.wikipedia.org/wiki/%E9%AB%98%E9%9D%92%E5%8E%BF, 2024-07-04", + "\u9ad8\u9752\u53bf\u5fd7 / \u9ad8\u9752\u53bf\u5730\u65b9\u53f2\u5fd7\u7f16\u7e82\u59d4\u5458\u4f1a\u7f16, 1991", + "Gaoqing xian zhi / Gaoqing xian di fang shi zhi bian zuan wei yuan hui bian, 1991" + ] + }, + { + "noteType": "general", + "label": [ + "District de la province du shandong" + ] + } + ], + "pid": "279221487", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Shandong (Chine)" + } + ], + "variant_access_point": [ + "\u9ad8\u9752\u7e23", + "\u9ad8\u9752\u53bf", + "Gaoqing Xian" + ], + "md5": "b77b47f0ae4b9069683f18e289495865" + }, + { + "authorized_access_point": "Villar San Costanzo (Italie) - Chiesa di San Costanzo sul Monte", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279230087", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279230087", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "L'antica chiesa di San Costanzo sul monte in Villar San Costanzo (Cuneo) / Eugenio Olivero, 1929" + ] + } + ], + "pid": "279230087", + "type": "bf:Place", + "md5": "439f98e6a04077d2e4f8828786549c25" + }, + { + "authorized_access_point": "Big Blue river (Ind.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279231547", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279231547", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-05", + "https://en.wikipedia.org/wiki/Big_Blue_River_(Indiana), 2024-07-05" + ] + }, + { + "noteType": "general", + "label": [ + "La Big Blue River est un affluent de la Driftwood River d'une longueur dans le centre-est de l'Indiana aux \u00c9tats-Unis. Par l'interm\u00e9diaire des rivi\u00e8res Driftwood, White, Wabash et Ohio, elle fait partie du bassin versant du fleuve Mississippi. La rivi\u00e8re prend sa source dans le nord-est du comt\u00e9 de Henry et s'\u00e9coule g\u00e9n\u00e9ralement vers le sud-ouest \u00e0 travers les comt\u00e9s de Rush, Hancock, Shelby et Johnson, en passant par les villes de New Castle, Knightstown, Carthage, Morristown, Shelbyville et Edinburgh" + ] + } + ], + "pid": "279231547", + "type": "bf:Place", + "variant_access_point": [ + "Blue river" + ], + "md5": "55f9a749176fa518b797765bd2868f8a" + }, + { + "authorized_access_point": "Driftwood river (Ind.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279231679", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279231679", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-05", + "https://en.wikipedia.org/wiki/Driftwood_River/, 2024-07-05" + ] + }, + { + "noteType": "general", + "label": [ + "La Driftwood River se forme dans le sud-est du comt\u00e9 de Johnson \u00e0 l'ouest d'Edinburgh, au confluent de la Sugar Creek et de la Big Blue River. Elle s'\u00e9coule g\u00e9n\u00e9ralement vers le sud \u00e0 travers le nord-ouest du comt\u00e9 de Bartholomew jusqu'\u00e0 Columbus, o\u00f9 elle rejoint la rivi\u00e8re Flatrock pour former l'East Fork of the White River" + ] + } + ], + "pid": "279231679", + "type": "bf:Place", + "md5": "b783594d699fa5cf1fad407ad80fd83c" + }, + { + "authorized_access_point": "West Union (Ill.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279233493", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279233493", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-05" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Clark" + ] + } + ], + "pid": "279233493", + "type": "bf:Place", + "md5": "f16c91710875c8c0c5e2548b92b65999" + }, + { + "authorized_access_point": "Hutsonville (Ill.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279233639", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279233639", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-04-05" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Crawford" + ] + } + ], + "pid": "279233639", + "type": "bf:Place", + "md5": "34d0fb64d8d21e1927be8fa559ee5dc3" + }, + { + "authorized_access_point": "Robinson (Ill.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279233752", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279233752", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-05" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Crawford" + ] + } + ], + "pid": "279233752", + "type": "bf:Place", + "md5": "db9b9a44821db7c8b92677d9d8a5d529" + }, + { + "authorized_access_point": "Whitewater river (Ohio ; cours d'eau )", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279236417", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279236417", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-05", + "https://en.wikipedia.org/wiki/Whitewater_River_(Great_Miami_River_tributary)/, 2024-07-05" + ] + }, + { + "noteType": "general", + "label": [ + "La rivi\u00e8re Whitewater est un affluent droit de la rivi\u00e8re Great Miami, qui coule vers le sud, dans le sud-est de l'Indiana et le sud-ouest de l'Ohio, aux \u00c9tats-Unis" + ] + } + ], + "pid": "279236417", + "type": "bf:Place", + "md5": "72c37ebbe9e4af60504a12988caec574" + }, + { + "authorized_access_point": "Elizabethtown (Ohio)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279236611", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279236611", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-05" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Hamilton" + ] + } + ], + "pid": "279236611", + "type": "bf:Place", + "md5": "fb00933b49c48d3b7c09fac50ab96291" + }, + { + "authorized_access_point": "Petersburg (Ky.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279236697", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279236697", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-05" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Boone" + ] + } + ], + "pid": "279236697", + "type": "bf:Place", + "md5": "6cdda810a8b8f83a40372d411e4dfc2c" + }, + { + "authorized_access_point": "Somerville (Ind.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279238037", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279238037", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-04" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Gibson" + ] + } + ], + "pid": "279238037", + "type": "bf:Place", + "md5": "0c109951ac5a8f4b984fe0a156d7aa56" + }, + { + "authorized_access_point": "Banan Qu (Chongqing, Chine)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279245947", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279245947", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikip\u00e9dia, https://zh.wikipedia.org/wiki/%E5%B7%B4%E5%8D%97%E5%8C%BA, 2024-07-08", + "\u6e05\u4ee3\u4e0b\u5c42\u5973\u6027\u7814\u7a76 : \u4ee5\u5357\u90e8\u53bf\u3001\u5df4\u53bf\u6863\u6848\u4e3a\u4e2d\u5fc3 / \u6bdb\u7acb\u5e73\u8457, 2023", + "Qing dai xia ceng n\u00fc xing yan jiu : yi Nanbu Xian, Ba Xian dang an wei zhong xin / Mao Liping zhu, 2023" + ] + }, + { + "noteType": "general", + "label": [ + "Quartier de Chongqing depuis 1994, autrefois district Ba" + ] + } + ], + "pid": "279245947", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Chongqing (Chine)" + } + ], + "variant_access_point": [ + "\u5df4\u5357\u533a", + "\u5df4\u53bf", + "\u5df4\u5357\u5340", + "Banan Qu", + "\u5df4\u7e23", + "Ba Xian" + ], + "md5": "29e51d5fcb1d14e8e9f36cc7bd0f4bd1" + }, + { + "authorized_access_point": "Nanbu Xian (Chine)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279246358", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279246358", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikip\u00e9dia, https://zh.wikipedia.org/wiki/%E5%8D%97%E9%83%A8%E5%8E%BF, 2024-07-08", + "\u6e05\u4ee3\u4e0b\u5c42\u5973\u6027\u7814\u7a76 : \u4ee5\u5357\u90e8\u53bf\u3001\u5df4\u53bf\u6863\u6848\u4e3a\u4e2d\u5fc3 / \u6bdb\u7acb\u5e73\u8457, 2023", + "Qing dai xia ceng n\u00fc xing yan jiu : yi Nanbu Xian, Ba Xian dang an wei zhong xin / Mao Liping zhu, 2023" + ] + }, + { + "noteType": "general", + "label": [ + "District de la province du Sichuan appartenant \u00e0 la pr\u00e9fecture de Nanchong Shi" + ] + } + ], + "pid": "279246358", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Sichuan (Chine)" + } + ], + "variant_access_point": [ + "\u5357\u90e8\u7e23", + "\u5357\u90e8\u53bf", + "Nanbu Xian" + ], + "md5": "0746afc2e4decc87bbadf2a109e1b163" + }, + { + "authorized_access_point": "White river (Ind. ; cours d'eau)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279247060", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279247060", + "source": "IDREF" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/White_River_(Indiana)" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-08" + ] + }, + { + "noteType": "general", + "label": [ + "La White River est une rivi\u00e8re au double cours irriguant le centre et le sud de l'Indiana, affluent de la Wabash River, donc un sous-affluent du fleuve le Mississippi, par l'Ohio" + ] + } + ], + "pid": "279247060", + "type": "bf:Place", + "md5": "efb5b35fd1e10af7e7bd26ba33bba24c" + }, + { + "authorized_access_point": "Saint-Pierre-\u00c9glise (Manche) - ch\u00e2teau", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "720", + "name": "Architecture" + } + ], + "identifier": "http://www.idref.fr/279247087", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279247087", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Regards de peintres en Cotentin : XIXe-XXe si\u00e8cles : [exposition], Ch\u00e2teau de Saint-Pierre-Eglise, 24 juillet-15 ao\u00fbt 1993 / [organis\u00e9 par le festival du Cotentin ; catalogue par Monique Barbier, Brigitte Scart, Jean Fouace], 1993" + ] + } + ], + "pid": "279247087", + "type": "bf:Place", + "md5": "d8a01269d09da2a4e815fa1b33c1239b" + }, + { + "authorized_access_point": "Patoka river (Ind. ; cours d'eau)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279247184", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279247184", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "https://en.wikipedia.org/wiki/Patoka_River/, 2024-07-08" + ] + }, + { + "noteType": "general", + "label": [ + "La rivi\u00e8re Patoka est un affluent de la rivi\u00e8re Wabash dans le sud-ouest de l'Indiana aux \u00c9tats-Unis" + ] + } + ], + "pid": "279247184", + "type": "bf:Place", + "md5": "18e074a9edc62f55dc5e213f7f78f1a8" + }, + { + "authorized_access_point": "Whiting (Ind.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279248180", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279248180", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-08" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Lake" + ] + } + ], + "pid": "279248180", + "type": "bf:Place", + "md5": "4fbcd32a231f7ec8da3524a35114baa6" + }, + { + "authorized_access_point": "East Chicago (Ind.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279248288", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279248288", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-08" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Lake" + ] + } + ], + "pid": "279248288", + "type": "bf:Place", + "md5": "c86ae70681a9090638eb93d37113bcd8" + }, + { + "authorized_access_point": "Grand Calumet river (Ind. ; cours d'eau)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279248482", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279248482", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-08" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Lake" + ] + } + ], + "pid": "279248482", + "type": "bf:Place", + "md5": "6c443c983d42172ecb4c2442da149efc" + }, + { + "authorized_access_point": "Toleston (Ind.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279248598", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279248598", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-08" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Lake" + ] + } + ], + "pid": "279248598", + "type": "bf:Place", + "md5": "b6224f16d2a1f4833f6c623a29261dce" + }, + { + "authorized_access_point": "Griffith (Ind.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279248792", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279248792", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-08" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Lake" + ] + } + ], + "pid": "279248792", + "type": "bf:Place", + "md5": "a9eeac8d6f6340b6f78a057f50b7fc65" + }, + { + "authorized_access_point": "Lawrenceville (Ill.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279249535", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279249535", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-08" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Lawrence" + ] + } + ], + "pid": "279249535", + "type": "bf:Place", + "md5": "730ca52cca82f4c1569a86be3c6d5eb0" + }, + { + "authorized_access_point": "Ireland (Ind.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279250002", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279250002", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-08" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Dubois" + ] + } + ], + "pid": "279250002", + "type": "bf:Place", + "md5": "3d92367c38166d2da05acbd352b6b541" + }, + { + "authorized_access_point": "Pikeville (Ind.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279250142", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279250142", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-08" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Pike" + ] + } + ], + "pid": "279250142", + "type": "bf:Place", + "md5": "e5a8ff1575735e8264f32a4f6298a265" + }, + { + "authorized_access_point": "Fontgombault (Indre)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "912" + } + ], + "identifier": "http://www.idref.fr/279253001", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279253001", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb17851893t", + "source": "BNF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. communes, 2001" + ] + } + ], + "pid": "279253001", + "type": "bf:Place", + "md5": "5646dbc7dd673c79206c288f06834fac" + }, + { + "authorized_access_point": "Little Beaver creek (Kan. ; cours d'eau)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279255381", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279255381", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-08" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Rawlins" + ] + } + ], + "pid": "279255381", + "type": "bf:Place", + "md5": "0f02cd2d8da5c0b9858778044d88db93" + }, + { + "authorized_access_point": "Atwood lake (Kan. ; lac)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279255519", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279255519", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-08" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Rawlins" + ] + } + ], + "pid": "279255519", + "type": "bf:Place", + "md5": "9a344c2a64420c8c78cb744765409650" + }, + { + "authorized_access_point": "South Fork Republican river (Etats-Unis. ; cours d'eau)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279256337", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279256337", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "https://en.wikipedia.org/wiki/South_Fork_Republican_River/, 2024-07-08" + ] + }, + { + "noteType": "general", + "label": [ + "La South Fork Republican est une rivi\u00e8re qui prend sa source dans le comt\u00e9 de Lincoln, Colorado, \u00c9tats-Unis, et s'\u00e9coule vers l'est-nord-est \u00e0 travers les comt\u00e9s de Kit Carson et de Yuma, Colorado, et le comt\u00e9 de Cheyenne, Kansas, jusqu'\u00e0 un confluent avec la Republican River dans le comt\u00e9 de Dundy, Nebraska" + ] + } + ], + "pid": "279256337", + "type": "bf:Place", + "md5": "0797f338bc411614c6f62f5b156b17b2" + }, + { + "authorized_access_point": "Cole Pond (Kan. ; lac)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279256434", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279256434", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-08" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Cheyenne" + ] + } + ], + "pid": "279256434", + "type": "bf:Place", + "md5": "edc017af42d99dc15bfafd36c6c4aa12" + }, + { + "authorized_access_point": "Bird City (Kan.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279256574", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279256574", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-08" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Cheyenne" + ] + } + ], + "pid": "279256574", + "type": "bf:Place", + "md5": "c2d01d03371172286ec7971eded6eef8" + }, + { + "authorized_access_point": "Wheeler (Kan.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279256647", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279256647", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-08" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Wheeler" + ] + } + ], + "pid": "279256647", + "type": "bf:Place", + "md5": "1fa66c261d04f7b807c5cb145f300848" + }, + { + "authorized_access_point": "Beaver creek (Kan., Neb. ; cours d'eau)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279257120", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279257120", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "https://en.wikipedia.org/wiki/Beaver_Creek_(Sappa_Creek_tributary)/, 2024-07-08" + ] + }, + { + "noteType": "general", + "label": [ + "Beaver Creek est une rivi\u00e8re situ\u00e9e dans les \u00c9tats du Kansas et du Nebraska. Elle prend naissance au nord-nord-est de Goodland (Kansas) et se jette dans Sappa Creek \u00e0 l'ouest d'Orleans (Nebraska)" + ] + } + ], + "pid": "279257120", + "type": "bf:Place", + "md5": "fb60b7760940af2532fac936ad918abc" + }, + { + "authorized_access_point": "Huamantla (Mexico)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279263864", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279263864", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "https://viaf.org/viaf/127845608" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Nava Rodr\u00edguez, L. Hist. de Huamantla, 1974.", + "Lippincott", + "BGN gaz., Mexico, 1992" + ] + } + ], + "pid": "279263864", + "type": "bf:Place", + "md5": "a4dda7ff2c308d12167b8338d8ca47c3" + }, + { + "authorized_access_point": "Ravensburg (Allemagne ; r\u00e9gion)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279264410", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279264410", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Das fr\u00fchmittelalterliche Gr\u00e4berfeld bei Weingarten (Kr. Ravensburg) / Helmut Roth, Claudia Theune, 1995" + ] + } + ], + "pid": "279264410", + "type": "bf:Place", + "md5": "a2e6ab1f3354fcc81d7602edfd21608b" + }, + { + "authorized_access_point": "Adam, Pic d' (Sri Lanka)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279288743", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279288743", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb16247820p", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/315529013" + } + ], + "pid": "279288743", + "type": "bf:Place", + "variant_access_point": [ + "Pic d'Adam", + "Adam's Peak (Sri Lanka)", + "Sri Pada", + "Samanala", + "Sivanolipatha Malai", + "Al-Rohun" + ], + "md5": "528839d3d91fef42cca015cb8c6f240d" + }, + { + "authorized_access_point": "Paris (France) - Rue de Madagascar", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "912" + } + ], + "identifier": "http://www.idref.fr/279307500", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279307500", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18154746p", + "source": "BNF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikip\u00e9dia - https://fr.wikipedia.org/wiki/Rue_de_Madagascar (2024-06-26)" + ] + } + ], + "pid": "279307500", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Paris (France) - Arrondissement (12e)" + } + ], + "variant_access_point": [ + "Madagascar, Rue de (Paris, France)", + "Rue de Madagascar (Paris, France)" + ], + "md5": "f856c03c4c5a57f1e03f304476bbc314" + }, + { + "authorized_access_point": "Cuma (Italie) - Anfiteatro romano", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "720", + "name": "Architecture" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "914" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "930", + "name": "Pr\u00e9histoire et histoire ancienne" + } + ], + "identifier": "http://www.idref.fr/279307772", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279307772", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181557040", + "source": "BNF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia : Liste d'amphith\u00e9\u00e2tres romains en Italie - http://it.wikipedia.org (2024-07-02)" + ] + } + ], + "pid": "279307772", + "type": "bf:Place", + "variant_access_point": [ + "Amphith\u00e9\u00e2tre romain (Cuma, Italie)" + ], + "md5": "6b1a294f759b6e7a008af043c81b0124" + }, + { + "authorized_access_point": "Petersberg (Allemagne) - Festung", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "940", + "name": "Histoire m\u00e9di\u00e9vale, moderne et contemporaine (sauf la France)" + } + ], + "identifier": "http://www.idref.fr/279307829", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279307829", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18155980n", + "source": "BNF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Kloster und Festung - Beitr\u00e4ge zur Geschichte des Erfurter Petersbergs : Vortr\u00e4ge anl\u00e4sslich der Bundesgartenschau 2021 in Erfurt / Stiftung Th\u00fcringer Schl\u00f6sser und Garten, 2022" + ] + } + ], + "pid": "279307829", + "type": "bf:Place", + "variant_access_point": [ + "Festung Petersberg (Petersberg, Allemagne)", + "Festung Petersberg (Erfurt, Allemagne)" + ], + "md5": "8fa622e6f9ed5f10e429584319a82ffe" + }, + { + "authorized_access_point": "Deauville (Calvados, France) - Les Planches", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "912" + } + ], + "identifier": "http://www.idref.fr/279307845", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279307845", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18156072s", + "source": "BNF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikip\u00e9dia - https://fr.wikipedia.org/wiki/Les_Planches_(Deauville) (2024-07-04)", + "Les Planches, Deauville : 100 ans d'histoires / P. Normand, 2024" + ] + }, { - "name": "Histoire", - "type": "bf:ClassificationDdc", - "classificationPortion": "900" + "noteType": "general", + "label": [ + "Promenade longeant la plage de Deauville sur toute sa longueur" + ] } ], + "pid": "279307845", + "type": "bf:Place", "variant_access_point": [ - "Occidentaux, Pays", - "Ouest, Pays de l'", - "Pays de l'Ouest", - "Pays occidentaux" + "Planches, Les (Deauville, Calvados, France)", + "Promenade des Planches (Deauville, Calvados, France)" ], - "authorized_access_point": "Occident" + "md5": "99fe622c839846e16ca2c1be56eb3587" }, { - "md5": "0546f48c4dd787755884de6ea344eae1", - "pid": "110868056", + "authorized_access_point": "Iatan (Mo.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279311044", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279311044", + "source": "IDREF" + } + ], "note": [ { + "noteType": "dataSource", "label": [ - "Raron : Burg und Kirche / Redaktion: Alfred A. Schmid ; mit einem Vorwort von Nello Celio und Beitr\u00e4gen von Christoph Bernouli, Carl J. Burckhardt, Am\u00e9d\u00e9e Cachin... [et al.]. - Basel : Birkh\u00e4user, cop. 1972" - ], - "noteType": "dataSource" + "http://www.geonames.org/, 2024-07-10" + ] }, { + "noteType": "general", "label": [ - "Village suisse situ\u00e9 dans le canton du Valais. Tombe du po\u00e8te Rainer Maria Rilke" - ], - "noteType": "general" + "Situ\u00e9 dans le comt\u00e9 de Platte" + ] } ], + "pid": "279311044", "type": "bf:Place", + "md5": "f54076c75f2bacc7af72144e610691c3" + }, + { + "authorized_access_point": "Merriam (Kan.)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279311443", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/110868056", + "value": "http://www.idref.fr/279311443", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/149281369", - "source": "VIAF" - }, + } + ], + "note": [ { - "type": "bf:Nbn", - "value": "(DE-101)041048989", - "source": "GND" + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-10" + ] }, { - "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Rarogne", - "source": "WIKIPEDIA" + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Johnson" + ] } ], - "variant_access_point": [ - "Raron (Valais, Suisse)" - ], - "authorized_access_point": "Rarogne (Valais, Suisse)" + "pid": "279311443", + "type": "bf:Place", + "md5": "b7c0cc685ad052526dfa228c77ac5018" }, { - "md5": "d9fc1e611df3488716a376e848a6fd3a", - "pid": "114526591", + "authorized_access_point": "Bruges (Belgique) - Adornesdomein", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279312415", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279312415", + "source": "IDREF" + } + ], "note": [ { + "noteType": "dataSource", "label": [ - "GDEL", - "https://www.vs.ch/web/communes/-/bas-valais, 2022-09-27", - "\u00c0 la d\u00e9couverte de trois r\u00e9gions alpines, une culture : Bas-Valais, vall\u00e9e d'Aoste, Haute-Savoie - Savoie, 2000" - ], - "noteType": "dataSource" + "Une J\u00e9rusalem c\u00e9leste \u00e0 Bruges : le Domaine Adornes et la chapelle de J\u00e9rusalem / Jan Dumolyn et No\u00ebl Geirnaert (\u00e9d.), 2024" + ] }, { + "noteType": "general", "label": [ - "R\u00e9gion du Canton du Valais comprenant les districts de Monthey, St-Maurice, Entremont et Martigny" - ], - "noteType": "general" + "Domaine familial priv\u00e9 remontant au 15e si\u00e8cle et comprenant essentiellement la chapelle de J\u00e9rusalem, des maisons-dieu et un h\u00f4tel particulier bord\u00e9 d\u2019un vaste jardin" + ] } ], + "pid": "279312415", "type": "bf:Place", - "broader": [ - { - "authorized_access_point": "Valais (Suisse)" - } + "variant_access_point": [ + "Bruges (Belgique) - Domaine Adornes", + "Bruges (Belgique) - Domaine des Adornes" ], + "md5": "8fdff2b77e37470f42bdb73540f7cca2" + }, + { + "authorized_access_point": "Ogden (Kan.)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279313543", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/114526591", + "value": "http://www.idref.fr/279313543", "source": "IDREF" - }, + } + ], + "note": [ { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb144160064", - "source": "BNF" + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-10" + ] }, { - "type": "bf:Nbn", - "value": "(DE-101)040786528", - "source": "GND" - }, + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Riley" + ] + } + ], + "pid": "279313543", + "type": "bf:Place", + "md5": "a82c1161416149e2fb2f20ad4010ac64" + }, + { + "authorized_access_point": "Mayence (Allemagne) - Pfarrkirche St. Ignaz", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279313853", + "identifiedBy": [ { "type": "uri", - "value": "http://viaf.org/viaf/51144647641031129112", - "source": "VIAF" + "value": "http://www.idref.fr/279313853", + "source": "IDREF" } ], - "classification": [ + "note": [ { - "name": "G\u00e9ographie de l'Europe", - "type": "bf:ClassificationDdc", - "classificationPortion": "914" + "noteType": "dataSource", + "label": [ + "Die Urkunden des Pfarrarchivs von St. Ignaz in Mainz : Regesten / von Elisabeth Darapsky und Richard Dertsch, 1974" + ] } ], + "pid": "279313853", + "type": "bf:Place", "variant_access_point": [ - "Valais, Bas- (Suisse)" + "St. Ignaz zu Mainz", + "Sankt Ignaz zu Mainz" ], - "authorized_access_point": "Bas-Valais (Suisse)" + "md5": "9189b993e784b58e5f9db9f096604479" }, { - "md5": "7ff8a470ffcad120e6ff4e0fda04ae73", - "pid": "116317825", + "authorized_access_point": "McDonald (Kan.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279314833", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279314833", + "source": "IDREF" + } + ], "note": [ { + "noteType": "dataSource", "label": [ - "Le glacier de l'Aletsch et le lac de M\u00e4rjelen / Roland Bonaparte. Paris : 1889." - ], - "noteType": "dataSource" + "http://www.geonames.org/, 2024-07-10" + ] }, { + "noteType": "general", "label": [ - "E 8\u00b04' / N 46\u00b026'" - ], - "noteType": "general" + "Situ\u00e9 dans le comt\u00e9 de Rawlins" + ] } ], + "pid": "279314833", "type": "bf:Place", + "variant_access_point": [ + "Mc Donald" + ], + "md5": "a18be70be16e88589974a7d5bafdd681" + }, + { + "authorized_access_point": "Marienthal (Kan.)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279315287", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/116317825", + "value": "http://www.idref.fr/279315287", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15240705p", - "source": "BNF" - }, + } + ], + "note": [ { - "type": "bf:Nbn", - "value": "(DE-101)040721000", - "source": "GND" + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-10" + ] }, { - "type": "uri", - "value": "http://viaf.org/viaf/170096434", - "source": "VIAF" + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Wichita" + ] } ], - "variant_access_point": [ - "Aletschgletscher (Suisse)", - "Grosser Aletschgletscher (Valais, Suisse)", - "Glacier d'Aletsch (Valais, Suisse)", - "Aletsch, Glacier d' (Valais, Suisse)", - "Grand Glacier d'Aletsch (Valais, Suisse)" - ], - "authorized_access_point": "Aletsch, Grand Glacier d' (Valais, Suisse)" + "pid": "279315287", + "type": "bf:Place", + "md5": "710cc64b0004469d87217e1cd1dad12c" }, { - "md5": "d4a659f9fee059c7afd1e3af983b147f", - "pid": "116459425", - "type": "bf:Place", + "authorized_access_point": "Whitewoman creek (Kan.)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279315368", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/116459425", + "value": "http://www.idref.fr/279315368", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/55148570478224310503", - "source": "VIAF" - }, - { - "type": "bf:Nbn", - "value": "(DE-101)947297987", - "source": "GND" } ], - "authorized_access_point": "Albanie (nord)" - }, - { - "md5": "efdab2ef904bf4fa2ec446f9b66e1b2e", - "pid": "127372547", "note": [ { + "noteType": "dataSource", "label": [ - "Tunnel de base du L\u00f6tschberg : de la roche au chemin de fer / Felix freank, 2008", - "https://fr.wikipedia.org/wiki/Tunnel_de_base_du_L%C3%B6tschberg, 2022-09-13" - ], - "noteType": "dataSource" + "http://www.geonames.org/, 2024-07-10" + ] }, { + "noteType": "general", "label": [ - "Tunnel ferroviaire qui relie le canton du Valais \u00e0 celui de Berne. Inaugur\u00e9 en 2007." - ], - "noteType": "general" + "Situ\u00e9 dans le comt\u00e9 de Scott" + ] } ], + "pid": "279315368", "type": "bf:Place", + "md5": "7f855a58c2f2788e553e3defd90a77ff" + }, + { + "authorized_access_point": "Mound Valley (Kan.)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279315597", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/127372547", + "value": "http://www.idref.fr/279315597", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/139148570539024310972", - "source": "VIAF" - }, - { - "type": "bf:Nbn", - "value": "(DE-101)96475455X", - "source": "GND" } ], - "variant_access_point": [ - "Tunnel de base du L\u00f6tschberg (Suisse)", - "L\u00f6tschberg Basistunnel (Suisse)" - ], - "authorized_access_point": "L\u00f6tschberg, Tunnel de base du (Suisse)" - }, - { - "md5": "a893e9b2d5dc6c79077b8c9c14300686", - "pid": "144820072", "note": [ { + "noteType": "dataSource", "label": [ - "Uebersichstkarte zum Relief der Monterosa-Gruppe / von X. Imfeld, 1880", - "GLU" - ], - "noteType": "dataSource" + "http://www.geonames.org/, 2024-07-10" + ] }, { + "noteType": "general", "label": [ - "Massif des Alpes Pennines partag\u00e9 entre la Suisse (canton du Valais) et l'Italie." - ], - "noteType": "general" + "Situ\u00e9 dans le comt\u00e9 de Labette" + ] } ], + "pid": "279315597", "type": "bf:Place", + "md5": "7b4509563382710908486825c7286bbc" + }, + { + "authorized_access_point": "Altamont (Kan.)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279315678", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/144820072", + "value": "http://www.idref.fr/279315678", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/136148570652124311276", - "source": "VIAF" - }, - { - "type": "bf:Nbn", - "value": "(DE-101)041152077", - "source": "GND" } ], - "variant_access_point": [ - "Monte Rosa, Massif du" - ], - "authorized_access_point": "Mont-Rose, Massif du" - }, - { - "md5": "d8bf58b68f1fa33c75f617d62ba3c26f", - "pid": "14704233X", "note": [ { + "noteType": "dataSource", "label": [ - "Le 5/10/ 2010 : http://fr.wikipedia.org/wiki/Val_de_Bagnes" - ], - "noteType": "dataSource" + "http://www.geonames.org/, 2024-07-10" + ] }, { + "noteType": "general", "label": [ - "Vall\u00e9e de Suisse dans le district d'Entremont en Valais" - ], - "noteType": "general" + "Situ\u00e9 dans le comt\u00e9 de Labette" + ] } ], + "pid": "279315678", "type": "bf:Place", + "md5": "fd8e229f7caf9ed19eff8a62aa48ee70" + }, + { + "authorized_access_point": "Edna (Kan.)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279315759", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/14704233X", + "value": "http://www.idref.fr/279315759", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/241474357", - "source": "VIAF" - }, - { - "type": "uri", - "value": "http://d-nb.info/gnd/4107510-9", - "source": "GND" - }, - { - "type": "bf:Nbn", - "value": "(DE-101)041075102", - "source": "GND" - }, - { - "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Val_de_Bagnes", - "source": "WIKIPEDIA" } ], - "variant_access_point": [ - "Val de Bagnes (Suisse ; vall\u00e9e)", - "Baniental", - "Bangital", - "Vall\u00e9e de Bagnes (Valais, Suisse)" - ], - "authorized_access_point": "Bagnes, Vall\u00e9e de (Valais, Suisse)" - }, - { - "md5": "a3479ba5c5f14e316e29ffe233ebe6e0", - "pid": "150220200", "note": [ { + "noteType": "dataSource", "label": [ - "http://catalogue.bnf.fr/ark:/12148/cb152923816/UNIMARC 2011-02-21", - "20 Jahre Furggent\u00e4lti: Permafrostuntersuchungen auf der Gemmi / Bernhard Krummenacher .... - Bern : Geogr. Inst. d. Univ., 2008" - ], - "noteType": "dataSource" + "http://www.geonames.org/, 2024-07-10" + ] }, { + "noteType": "general", "label": [ - "Coordonn\u00e9es g\u00e9ographiques : E 7\u00b037' / N 46\u00b024'" - ], - "noteType": "general" + "Situ\u00e9 dans le comt\u00e9 de Labette" + ] } ], + "pid": "279315759", "type": "bf:Place", + "md5": "211139b1b9cc43081708434d2735552c" + }, + { + "authorized_access_point": "Norcatur (Kan.)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279316232", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/150220200", + "value": "http://www.idref.fr/279316232", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/118148570517524310836", - "source": "VIAF" - }, + } + ], + "note": [ { - "type": "bf:Nbn", - "value": "(DE-101)040717003", - "source": "GND" + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-10" + ] }, { - "type": "bf:Nbn", - "value": "(DE-101)040717003", - "source": "GND" + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Dacartur" + ] } ], - "authorized_access_point": "Gemmi, Col de la (Valais, Suisse)" + "pid": "279316232", + "type": "bf:Place", + "md5": "ccbb9ff265fff02e33360e8ae3df958c" }, { - "md5": "1b37f32cf5e62aafb681f7e333c14080", - "pid": "157143392", + "authorized_access_point": "Dellvale (Kan.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279316291", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279316291", + "source": "IDREF" + } + ], "note": [ { + "noteType": "dataSource", "label": [ - "Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgen\u00f6ssische Stabsb\u00fcreau unter der direktion von Oberst Siegfried ver\u00f6ffentlicht", - "https://hls-dhs-dss.ch/fr/articles/008388/2012-01-06, 2022-07-27" - ], - "noteType": "dataSource" + "http://www.geonames.org/, 2024-07-10" + ] }, { + "noteType": "general", "label": [ - "Partie orientale de la vall\u00e9e de Vi\u00e8ge dans le canton du Valais (Suisse) qui, en amont de Stalden, se subdivise en deux vall\u00e9es en direction du sud, celles de Saint-Nicolas et de Saas" - ], - "noteType": "general" + "Situ\u00e9 dans le comt\u00e9 de Norton" + ] } ], + "pid": "279316291", "type": "bf:Place", + "md5": "5eadfd5c1730143ff153ae093a1be1e6" + }, + { + "authorized_access_point": "Saint-Victor-l'Abbaye (Seine-Maritime, France)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279333013", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/157143392", + "value": "http://www.idref.fr/279333013", "source": "IDREF" }, { "type": "uri", - "value": "http://viaf.org/viaf/125148570562224311120", - "source": "VIAF" - }, - { - "type": "uri", - "value": "http://d-nb.info/gnd/4105151-8", - "source": "GND" - }, - { - "type": "bf:Nbn", - "value": "(DE-101)041051513", - "source": "GND" - }, - { - "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Vall\u00e9e_de_Saas", - "source": "WIKIPEDIA" + "value": "http://catalogue.bnf.fr/ark:/12148/cb152752410", + "source": "BNF" } ], - "variant_access_point": [ - "Saas (Valais, Suisse ; r\u00e9gion)", - "Saastal (Valais, Suisse)", - "Vall\u00e9e de Saas (Valais, Suisse)" - ], - "authorized_access_point": "Saas, Vall\u00e9e de (Valais, Suisse)" - }, - { - "md5": "52a1cdfd866dcc68baab7b914d5227e8", - "pid": "157143422", "note": [ { + "noteType": "general", "label": [ - "Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgen\u00f6ssische Stabsb\u00fcreau unter der direktion von Oberst Siegfried ver\u00f6ffentlicht" - ], - "noteType": "dataSource" + "Coordonn\u00e9es g\u00e9ographiques : E 1\u00b07'13\" / N 49\u00b040'30\"", + "Coordonn\u00e9es Lambert : 05120 25204 +5121 12201 -1351 55194", + "Feuille IGN 1:50 000 : 2010. Feuille IGN 1:25 000 : W", + "Code INSEE : 76656" + ] } ], + "pid": "279333013", "type": "bf:Place", + "md5": "8ea7a749749a4ff7826083693adcfb8a" + }, + { + "authorized_access_point": "Prairie Dog creek (Kan. ; cours d'eau)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279334699", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/157143422", + "value": "http://www.idref.fr/279334699", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/8682148574329724430000", - "source": "VIAF" - }, + } + ], + "note": [ { - "type": "uri", - "value": "http://d-nb.info/gnd/4119238-2", - "source": "GND" + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-11" + ] }, { - "type": "bf:Nbn", - "value": "(DE-101)041192389", - "source": "GND" + "noteType": "general", + "label": [ + "Prairie Dog Creek est un cours d'eau situ\u00e9 dans le centre des Grandes Plaines d'Am\u00e9rique du Nord. Affluent de la rivi\u00e8re Republican, il s'\u00e9coule sur 396 km \u00e0 travers les \u00c9tats am\u00e9ricains du Kansas et du Nebraska" + ] } ], - "authorized_access_point": "Zermatt (Valais, Suisse ; r\u00e9gion)" + "pid": "279334699", + "type": "bf:Place", + "md5": "521f2209e21d4bf79e75c86c7c7b46e1" }, { - "md5": "aa412770544a6e7d8576109efb942e4b", - "pid": "161911846", + "authorized_access_point": "Traer (Kan.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279334982", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279334982", + "source": "IDREF" + } + ], "note": [ { + "noteType": "dataSource", "label": [ - "Aesch. ein fr\u00fchmittelelterliches Gr\u00e4berfeld / Chantal Hartmann ; mit Beitr\u00e4gen von Andreas Cueni und Antoinette Rast-Eicher, 2009" - ], - "noteType": "dataSource" + "http://www.geonames.org/, 2024-07-11" + ] }, { + "noteType": "general", "label": [ - "Commune du canton de Lucerne au bord du Hallwiler See" - ], - "noteType": "general" + "Situ\u00e9 dans le comt\u00e9 de Decatur" + ] } ], + "pid": "279334982", "type": "bf:Place", + "md5": "4dca7f9d838edcaef0867c73bc4e11d0" + }, + { + "authorized_access_point": "Cedar Bluffs (Kan.)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279335156", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/161911846", + "value": "http://www.idref.fr/279335156", "source": "IDREF" - }, + } + ], + "note": [ { - "type": "uri", - "value": "http://viaf.org/viaf/238806520", - "source": "VIAF" + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-11" + ] }, { - "type": "bf:Nbn", - "value": "(DE-101)968963935", - "source": "GND" - }, + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Decartur" + ] + } + ], + "pid": "279335156", + "type": "bf:Place", + "md5": "019706f4adf22994655f8897db6714c4" + }, + { + "authorized_access_point": "Labette (Kan.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279335512", + "identifiedBy": [ { "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Eich_(Lucerne)", - "source": "WIKIPEDIA" + "value": "http://www.idref.fr/279335512", + "source": "IDREF" } ], - "variant_access_point": [ - "Aesch (Canton de Lucerne, Suisse)", - "Aesch (Kanton Luzern, Schweiz)" - ], - "authorized_access_point": "Aesch (Lucerne, Suisse)" - }, - { - "md5": "f176e3296f3dad69c215812dc0844b91", - "pid": "185110363", "note": [ { + "noteType": "dataSource", "label": [ - "Carte nationale de la Suisse 1:50 000. 273 : Montana / Service topographique f\u00e9d\u00e9ral, 1974", - "https://fr.wikipedia.org/, 2020-11-30" - ], - "noteType": "dataSource" + "http://www.geonames.org/, 2024-07-11" + ] }, { + "noteType": "general", "label": [ - "Ancienne commune du canton du Valais, situ\u00e9e dans le district de Sierre. Elle fusionna le 1er janvier 2017 avec Mollens, Chermignon et Randogne pour former Crans-Montana." - ], - "noteType": "general" + "Situ\u00e9 dans le comt\u00e9 de Labette" + ] } ], + "pid": "279335512", "type": "bf:Place", + "md5": "307343fc3b50bfe44c757250b1b6b4e9" + }, + { + "authorized_access_point": "Oswego (Kan.)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/27933558X", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/185110363", + "value": "http://www.idref.fr/27933558X", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb160481737", - "source": "BNF" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/131144648658835357814", - "source": "VIAF" - }, - { - "type": "uri", - "value": "http://d-nb.info/gnd/4275006-4", - "source": "GND" - }, - { - "type": "bf:Nbn", - "value": "(DE-101)042750067", - "source": "GND" - }, - { - "type": "bf:Nbn", - "value": "Q70186", - "source": "WIKIDATA" } ], - "relation_pid": { - "type": "redirect_from", - "value": "250838443" - }, - "authorized_access_point": "Montana (Valais, Suisse)" - }, - { - "md5": "5de5e5b97b3a1877b436203b7f326f56", - "pid": "198231288", "note": [ { + "noteType": "dataSource", "label": [ - "Note sur la G\u00e9ologie des environs de Lou\u00e8che-les-Bains / par le Dr Phil. de La Harpe, 1877" - ], - "noteType": "dataSource" + "http://www.geonames.org/, 2024-07-11" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Labette" + ] } ], + "pid": "27933558X", "type": "bf:Place", + "md5": "029bf6f6515b85e85fa4b03aec1e87b8" + }, + { + "authorized_access_point": "Thayer (Kan.)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279347642", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/198231288", + "value": "http://www.idref.fr/279347642", "source": "IDREF" - }, - { - "type": "bf:Nbn", - "value": "(DE-101)040995623", - "source": "GND" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/144250507", - "source": "VIAF" - }, - { - "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Lo\u00e8che-les-Bains", - "source": "WIKIPEDIA" } ], - "variant_access_point": [ - "Lou\u00e8che-les-Bains (Valais, Suisse)", - "Leukerbad (Valais, Suisse)" - ], - "authorized_access_point": "Lo\u00e8che-les-Bains (Valais, Suisse)" - }, - { - "md5": "e23cf57c69aa4106febfd3e5a19b6e7f", - "pid": "237279614", "note": [ { + "noteType": "dataSource", "label": [ - "Source manuscrite\u00a0: Journal de voyage / par MM. Regnault et Sauvage, \u00c9l\u00e8ves ing\u00e9nieurs, 1835 (manuscrit conserv\u00e9 \u00e0 la biblioth\u00e8que de l\u2019\u00c9cole des mines de Paris MINES ParisTech sous la cote J 1835 (43) )", - "GeoNames (2019-07-26)" - ], - "noteType": "dataSource" + "http://www.geonames.org/, 2024-07-11" + ] }, { + "noteType": "general", "label": [ - "Commune du canton du Valais (Suisse).", - "N 46\u00b019\u203202\u2033 / E 7\u00b038\u203203\u2033" - ], - "noteType": "general" + "Situ\u00e9 dans le comt\u00e9 de Neosho" + ] } ], + "pid": "279347642", "type": "bf:Place", + "md5": "66dba25833d064403fef66634f484953" + }, + { + "authorized_access_point": "Mindenmines (Mo.)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279348304", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/237279614", + "value": "http://www.idref.fr/279348304", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/241846356", - "source": "VIAF" - }, + } + ], + "note": [ { - "type": "uri", - "value": "http://d-nb.info/gnd/4393124-8", - "source": "GND" + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-11" + ] }, { - "type": "bf:Nbn", - "value": "(DE-101)946153248", - "source": "GND" + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Barton" + ] } ], - "variant_access_point": [ - "Leuk (Valais, Suisse)", - "Lou\u00e8che (Valais, Suisse)", - "Lo\u00e8che-Ville (Valais, Suisse)" - ], - "authorized_access_point": "Lo\u00e8che (Valais, Suisse)" + "pid": "279348304", + "type": "bf:Place", + "md5": "ba89673fa8ec80275bf40fe2f0ca7f58" }, { - "md5": "5eef1e9c914c82ba5d0a269b1dbfe737", - "pid": "25887421X", + "authorized_access_point": "Asbury (Mo.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279348363", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279348363", + "source": "IDREF" + } + ], "note": [ { + "noteType": "dataSource", "label": [ - "https://fr.wikipedia.org/wiki/District_des_Franches-Montagnes" - ], - "noteType": "dataSource" + "http://www.geonames.org/, 2024-07-11" + ] }, { + "noteType": "general", "label": [ - "Suisse, canton de Jura" - ], - "noteType": "general" + "Situ\u00e9 dans le comt\u00e9 de Jasper" + ] } ], + "pid": "279348363", "type": "bf:Place", + "md5": "c60b6a9fc7f34425709320317b3ad880" + }, + { + "authorized_access_point": "Bouchets, Bois des (Gen\u00e8ve, Suisse)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279349807", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/25887421X", + "value": "http://www.idref.fr/279349807", "source": "IDREF" - }, - { - "type": "bf:Nbn", - "value": "(DE-101)04259634", - "source": "GND" } ], - "authorized_access_point": "Franches-Montagnes (Suisse)" - }, - { - "md5": "e1e6ca6b5cbb5e7f08632744bf00341b", - "pid": "260966401", "note": [ { + "noteType": "dataSource", "label": [ - "L'int\u00e9rieur du temple de La Sagne apr\u00e8s r\u00e9novation / Galley, Christian,, photographe (cr\u00e9ateur), 2001", - "Visualisation sur SITN- G\u00e9oportail du syst\u00e8me d'information du territoire neuch\u00e2telois https://sitn.ne.ch, 2022-03-14" - ], - "noteType": "dataSource" + "Les balades botaniques de la Soci\u00e9t\u00e9 botanique de Gen\u00e8ve : Le Bois des Bouchets : balade n\u00b0 3 / [texte et photographies:] Catherine Lambelet-Haueter, 2023" + ] } ], + "pid": "279349807", "type": "bf:Place", + "md5": "583355bfae128d10a995c5aa47530e71" + }, + { + "authorized_access_point": "Shallow Water (Kan.)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279351747", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/260966401", + "value": "http://www.idref.fr/279351747", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/93164959497624020651", - "source": "VIAF" - }, - { - "type": "bf:Nbn", - "value": "(DE-101)964991500", - "source": "GND" } ], - "relation_pid": { - "type": "redirect_from", - "value": "261065416" - }, - "authorized_access_point": "La Sagne (Neuch\u00e2tel, Suisse)" - }, - { - "md5": "edcef52c2207c2ed8c03e812344aee65", - "pid": "261121162", "note": [ { + "noteType": "dataSource", "label": [ - "Saint-L\u00e9onard de jadis et de nagu\u00e8re / Barth\u00e9l\u00e9my Gillioz, 2021", - "https://www.st-leonard.ch/index.php/en-bref, 2022-03-22" - ], - "noteType": "dataSource" + "http://www.geonames.org/, 2024-07-11" + ] }, { + "noteType": "general", "label": [ - "Commune situ\u00e9e dans le canton du Valais" - ], - "noteType": "general" + "Situ\u00e9 dans le comt\u00e9 de Scott" + ] } ], + "pid": "279351747", "type": "bf:Place", + "md5": "510b936360f3c3546f1b9a83fe936408" + }, + { + "authorized_access_point": "Friend (Kan.)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279351879", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/261121162", + "value": "http://www.idref.fr/279351879", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/102164959931224022033", - "source": "VIAF" - }, - { - "type": "bf:Nbn", - "value": "(DE-101)954696867", - "source": "GND" } ], - "authorized_access_point": "Saint-L\u00e9onard (Valais, Suisse)" - }, - { - "md5": "7ab33eca31f1736c6447842791142a4d", - "pid": "26144722X", "note": [ { + "noteType": "dataSource", "label": [ - "L'or de Mund / Rolf Jeitziner, Barbara Seiler, 2021", - "https://fr.wikipedia.org/wiki/Mund_(Valais), 2022-03-31" - ], - "noteType": "dataSource" + "http://www.geonames.org/, 2024-07-11" + ] }, { + "noteType": "general", "label": [ - "Village situ\u00e9 dans le Haut-Valais" - ], - "noteType": "general" + "Situ\u00e9 dans le comt\u00e9 de Finney" + ] } ], + "pid": "279351879", "type": "bf:Place", + "md5": "ec342846e3989b2d818791f92e21dd62" + }, + { + "authorized_access_point": "Bluff creek (Kan. ; cours d'eau)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279353162", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/26144722X", + "value": "http://www.idref.fr/279353162", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/340164960096024022192", - "source": "VIAF" - }, - { - "type": "bf:Nbn", - "value": "(DE-101)941147797", - "source": "GND" } ], - "authorized_access_point": "Mund (Valais, Suisse)" - }, - { - "md5": "0c834e3106967e9a84fbe5ba0e59e3c9", - "pid": "263259935", "note": [ { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-11" + ] + }, + { + "noteType": "general", "label": [ - "Bettmeralp : das Wimmelbuch / Gabriel Giger, 2022", - "https://hls-dhs-dss.ch/fr/articles/050027/2016-10-27/" - ], - "noteType": "dataSource" + "Situ\u00e9 dans le comt\u00e9 de Comanche" + ] } ], + "pid": "279353162", "type": "bf:Place", + "md5": "23e53149bb34386733015be5a2e2dc70" + }, + { + "authorized_access_point": "Sitka (Kan.)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279353308", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263259935", + "value": "http://www.idref.fr/279353308", "source": "IDREF" } ], - "authorized_access_point": "Bettmeralp (Suisse)" - }, - { - "md5": "83596dd4aa3a366606041cce503e0593", - "pid": "263837920", "note": [ { + "noteType": "dataSource", "label": [ - "Souvenirs d'un glacier / Corinne Vionnet, 2019", - "https://www.larousse.fr/encyclopedie/divers/glacier_du_Rh%C3%B4ne/140851, 2022-08-10" - ], - "noteType": "dataSource" + "http://www.geonames.org/, 2024-07-11" + ] }, { + "noteType": "general", "label": [ - "Glacier d'o\u00f9 le Rh\u00f4ne prend sa source ; situ\u00e9 dans le Haut-Valais" - ], - "noteType": "general" + "Situ\u00e9 dans le comt\u00e9 de Clark" + ] } ], + "pid": "279353308", "type": "bf:Place", + "md5": "16360aa4bb19946678c67001fe994963" + }, + { + "authorized_access_point": "Wallace (Kan.)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279353928", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263837920", + "value": "http://www.idref.fr/279353928", "source": "IDREF" - }, - { - "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Glacier_du_Rh\u00f4ne", - "source": "WIKIPEDIA" - }, + } + ], + "note": [ { - "type": "bf:Nbn", - "value": "(DE-101)041170008", - "source": "GND" + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-11" + ] }, { - "type": "uri", - "value": "http://viaf.org/viaf/315125827", - "source": "VIAF" + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Wallace" + ] } ], - "variant_access_point": [ - "Rh\u00f4ne (Suisse ; glacier)", - "Glacier du Rh\u00f4ne (Suisse)", - "Rottengletscher (Suisse)", - "Rhonegletscher (Suisse)" - ], - "authorized_access_point": "Rh\u00f4ne, Glacier du (Suisse)" + "pid": "279353928", + "type": "bf:Place", + "md5": "5e8d9690fe05407e346c89cc12b8a14c" }, { - "md5": "d941b2e21e2253e859999b84ba58ebab", - "pid": "264287010", + "authorized_access_point": "Weskan (Kan.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279354118", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279354118", + "source": "IDREF" + } + ], "note": [ { + "noteType": "dataSource", "label": [ - "Sierre et la Noble Contr\u00e9e / par Fran\u00e7ois de Preux ; photogr. M.-F. Chiffelle ; [couv. dessin\u00e9e par Andr\u00e9 Rosselet], 1951", - "https://fr.wikipedia.org/wiki/Sierre, 2022-09-09" - ], - "noteType": "dataSource" + "http://www.geonames.org/, 2024-07-11" + ] }, { + "noteType": "general", "label": [ - "Ville et commune du canton du Valais" - ], - "noteType": "general" + "Situ\u00e9 dans le comt\u00e9 de Wallace" + ] } ], + "pid": "279354118", "type": "bf:Place", + "md5": "c6ab3d7e2c088a4c56b5f68fb59a4486" + }, + { + "authorized_access_point": "Cangnan Xian (Chine)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279354223", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/264287010", + "value": "http://www.idref.fr/279354223", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb169098180", - "source": "BNF" - }, - { - "type": "bf:Nbn", - "value": "(DE-101)040774244", - "source": "GND" - }, + } + ], + "note": [ { - "type": "bf:Nbn", - "value": "(DE-588)4077424-7", - "source": "GND" + "noteType": "dataSource", + "label": [ + "Wikip\u00e9dia, https://zh.wikipedia.org/wiki/%E8%8B%8D%E5%8D%97%E5%8E%BF, 2024-07-11", + "\u4e2d\u56fd\u8bed\u8a00\u6587\u5316\u5178\u85cf . \u82cd\u5357 / \u66f9\u5fd7\u8018, \u738b\u8389\u5b81, \u674e\u9526\u82b3\u4e3b\u7f16, \u5f90\u4e3d\u4e3d\u8457, 2022", + "Zhongguo yu yan wen hua dian cang . Cang'nan / Cao Zhiyun, Wang Lining, Li Jinfang zhu bian, Xu Lili zhu, 2022" + ] }, { - "type": "uri", - "value": "http://d-nb.info/gnd/4077424-7", - "source": "GND" - }, + "noteType": "general", + "label": [ + "District de la province du Zhejiang, Chine" + ] + } + ], + "pid": "279354223", + "type": "bf:Place", + "broader": [ { - "type": "uri", - "value": "http://viaf.org/viaf/612169442775025340005", - "source": "VIAF" + "authorized_access_point": "Zhejiang (Chine)" } ], - "relation_pid": { - "type": "redirect_from", - "value": "271323337" - }, "variant_access_point": [ - "Siders (Valais, Suisse)" + "\u84bc\u5357\u7e23", + "\u82cd\u5357\u53bf", + "Cangnan Xian" ], - "authorized_access_point": "Sierre (Valais, Suisse)" + "md5": "dc06a379e5a44879e4545cf5b4ac1655" }, { - "md5": "92e54d5303cd7fab20b65171186faf5b", - "pid": "264406095", + "authorized_access_point": "Binyang Xian (Chine)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279355173", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279355173", + "source": "IDREF" + } + ], "note": [ { + "noteType": "dataSource", "label": [ - "Passage de la T\u00eate Noire, Vall\u00e9e du Trient, 1863", - "https://fr.wikipedia.org/wiki/Vall%C3%A9e_du_Trient, 2022-09-15" - ], - "noteType": "dataSource" + "Wikip\u00e9dia, https://zh.wikipedia.org/wiki/%E5%AE%BE%E9%98%B3%E5%8E%BF, 2024-07-11", + "\u4e2d\u56fd\u8bed\u8a00\u6587\u5316\u5178\u85cf . \u5bbe\u9633 / \u535e\u6210\u6797, \u97e6\u94b0\u7487, \u82cf\u4e39\u8457, \u66f9\u5fd7\u8018, \u738b\u8389\u5b81, \u674e\u9526\u82b3\u4e3b\u7f16, 2022", + "Zhongguo yu yan wen hua dian cang . Binyang / Bian Chenglin, Wei Yuxuan, Su Dan zhu, Cao Zhiyun, Wang Lining, Li Jinfang zhu bian, 2022" + ] }, { + "noteType": "general", "label": [ - "Vall\u00e9e situ\u00e9e dans le Bas-Valais" - ], - "noteType": "general" + "District de la province du Guangxi, Chine" + ] } ], + "pid": "279355173", "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Guangxi (Chine ; province)" + } + ], + "variant_access_point": [ + "\u8cd3\u967d\u7e23", + "\u5bbe\u9633\u53bf", + "Binyang Xian" + ], + "md5": "9bad28d91e67a14aaf6506ce368c1261" + }, + { + "authorized_access_point": "Boulogne-sur-Mer (Pas-de-Calais)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279357206", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/264406095", + "value": "http://www.idref.fr/279357206", "source": "IDREF" }, { "type": "uri", - "value": "http://viaf.org/viaf/247827636", - "source": "VIAF" - }, - { - "type": "bf:Nbn", - "value": "(DE-101)955884152", - "source": "GND" - }, + "value": "http://catalogue.bnf.fr/ark:/12148/cb119424128", + "source": "BNF" + } + ], + "note": [ { - "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Vall\u00e9e_du_Trient", - "source": "WIKIPEDIA" + "noteType": "dataSource", + "label": [ + "Moreau", + "Dict. communes, 1984", + "GDEL" + ] } ], + "pid": "279357206", + "type": "bf:Place", "variant_access_point": [ - "Vall\u00e9e du Trient (Valais, Suisse)" + "Bononia (ville ancienne)", + "Gesoriacum (ville ancienne)" ], - "authorized_access_point": "Trient, Vall\u00e9e du (Valais, Suisse)" + "md5": "30ad178ea1daae279849a40f8a0021fb" }, { - "md5": "11e76bb19f4aeedecb94fd76a9b2d007", - "pid": "264644093", + "authorized_access_point": "Licking river (Ky. ; cours d'eau)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279368429", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279368429", + "source": "IDREF" + } + ], "note": [ { + "noteType": "dataSource", "label": [ - "Agrisculptures / Maximilien Urfer ; essais : Rapha\u00ebl Brunner et Eric Felley ; direction de publication : St\u00e9phane Fretz, 2019", - "https://www.vs.ch/web/communes/-/valais-central, 2022-09-27" - ], - "noteType": "dataSource" + "http://www.geonames.org/, 2024-07-12", + "https://en.wikipedia.org/wiki/Licking_River_%28Kentucky%29/, 2024-07-12" + ] }, { + "noteType": "general", "label": [ - "R\u00e9gion du Canton du Valais comprenant les districts de Conthey, Sion, Sierre et d'H\u00e9rens" - ], - "noteType": "general" + "La Licking est une rivi\u00e8re des \u00c9tats-Unis affluent de la rivi\u00e8re Ohio, donc un sous-affluent du fleuve le Mississippi" + ] } ], + "pid": "279368429", "type": "bf:Place", + "md5": "7ad0dbece1653a2da0416ca5ce31205b" + }, + { + "authorized_access_point": "Trinationaler Eurodistrict Basel", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279369867", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/264644093", + "value": "http://www.idref.fr/279369867", "source": "IDREF" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/2685166600430118000000", - "source": "VIAF" - }, - { - "type": "bf:Nbn", - "value": "(DE-101)952816407", - "source": "GND" + "value": "https://viaf.org/viaf/192145858084323021995" } ], - "authorized_access_point": "Valais central (Suisse)" - }, - { - "md5": "d4b26032294e41b3008f51d0fbd9b688", - "pid": "264645081", "note": [ { + "noteType": "dataSource", "label": [ - "Les sobriquets des localit\u00e9s du Valais romand ; Articles historiques sur le Valais ; Histoire du Vieux Chablais / Raphy Rappaz, 1976", - "https://www.valais4you.ch/fr/le-valais-en-quelques-mots/habitat, 2022-09-27" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Partie francophone du canton du Valais" - ], - "noteType": "general" + "Die Eurodistrikte, eine neue Form der grenz\u00fcberschreitenden Kooperation?, 2014:" + ] } ], + "pid": "279369867", "type": "bf:Place", + "md5": "75f9bc5369d88e1e6dd713141dd68093" + }, + { + "authorized_access_point": "Gutian Xian (Chine)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/27937027X", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/264645081", + "value": "http://www.idref.fr/27937027X", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/75166600409218000002", - "source": "VIAF" - }, + } + ], + "note": [ { - "type": "bf:Nbn", - "value": "(DE-101)993248810", - "source": "GND" + "noteType": "dataSource", + "label": [ + "Wikip\u00e9dia, https://zh.wikipedia.org/wiki/%E5%8F%A4%E7%94%B0%E5%8E%BF, 2024-07-12", + "\u4e2d\u56fd\u8bed\u8a00\u6587\u5316\u5178\u85cf . \u53e4\u7530 / \u674e\u6ee8 \u8457, \u66f9\u5fd7\u8018, \u738b\u8389\u5b81, \u674e\u9526\u82b3 \u4e3b\u7f16, 2022", + "Zhongguo yu yan wen hua dian cang . Gutian / Li Bin zhu, Cao Zhiyun, Wang Lining, Li Jinfang zhu bian, 2022" + ] }, { - "type": "bf:Nbn", - "value": "Valais romand", - "source": "GND" + "noteType": "general", + "label": [ + "District de la province du Fujian, Chine" + ] + } + ], + "pid": "27937027X", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Fujian (Chine ; province)" } ], "variant_access_point": [ - "Valais francophone (Suisse)" + "\u53e4\u7530\u7e23", + "\u53e4\u7530\u53bf", + "Gutian Xian" ], - "authorized_access_point": "Valais romand (Suisse)" + "md5": "32a7c3a772557166bbc5dd3eaec7eac2" }, { - "md5": "c0b78a6facbce91ddba7bedfe156ccca", - "pid": "271321628", + "authorized_access_point": "Barren river (Ky. ; cours d'eau)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279371322", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279371322", + "source": "IDREF" + } + ], "note": [ { + "noteType": "dataSource", "label": [ - "Sowjetischer Pavillon : Substanz oder Erscheinung / Peter Zirkel (Hg.) ; [mit Fotografien von] Till Schuster, M Books, 2021", - "https://peterzirkel.de/sowjetischer-pavillon/, 2023-08-02" - ], - "noteType": "dataSource" + "http://www.geonames.org/, 2024-07-12" + ] }, { + "noteType": "general", "label": [ - "Construit en 1924 comme hall d'exposition par les architectes Oskar Pusch et Carl Kr\u00e4mer. Le b\u00e2timent a servi de pavillon d'exposition pour l'URSS. Depuis le d\u00e9but des ann\u00e9es 1990, il est utilis\u00e9 comme archives municipales" - ], - "noteType": "general" + "La rivi\u00e8re Barren prend sa source pr\u00e8s de la fronti\u00e8re du Tennessee dans le comt\u00e9 de Monroe et se jette dans la rivi\u00e8re Green au nord-est du comt\u00e9 de Warren" + ] } ], + "pid": "279371322", "type": "bf:Place", + "md5": "9c34f433821173a05c64eb2fb32e2b34" + }, + { + "authorized_access_point": "Hongdong Xian (Chine)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279372280", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271321628", + "value": "http://www.idref.fr/279372280", "source": "IDREF" } ], - "variant_access_point": [ - "Sowjetischer Pavillon (Leipzig, Allemagne)", - "Achilleion (Leipzig, Allemagne)", - "Pavillon sovi\u00e9tique (Leipzig, Allemagne)" - ], - "authorized_access_point": "Leipzig (Allemagne)" - }, - { - "md5": "fb4b44bbfa5c9600c4cca5ed11b72bb0", - "pid": "271323337", "note": [ { + "noteType": "dataSource", "label": [ - "Atlas universel / \"Le Monde\", S\u00e9lection du \"Reader's digest\", 1993", - "Ville de Sierre - http://www.sierre.ch (2014-09-12)" - ], - "noteType": "dataSource" + "Wikip\u00e9dia, https://zh.wikipedia.org/wiki/%E6%B4%AA%E6%B4%9E%E5%8E%BF, 2024-07-12", + "\u4e2d\u56fd\u8bed\u8a00\u6587\u5316\u5178\u85cf . \u6d2a\u6d1e / \u4e54\u5168\u751f, \u738b\u6653\u5a77, \u8d75\u6d77\u82f1 \u8457, \u66f9\u5fd7\u8018, \u738b\u8389\u5b81, \u674e\u9526\u82b3 \u4e3b\u7f16, 2022", + "Zhongguo yu yan wen hua dian cang . Hongdong / Qiao Quansheng, Wang Xiaoting, Zhao Haiying zhu, Cao Zhiyun, Wang Lining, Li Jinfang zhu bian, 2022" + ] }, { + "noteType": "general", "label": [ - "Ville du canton du Valais, district de Sierre" - ], - "noteType": "general" + "District de la province du Shanxi, Chine" + ] } ], + "pid": "279372280", "type": "bf:Place", - "bnf_type": "sujet Rameau", - "closeMatch": [ + "broader": [ { - "source": "LCA", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/names/n85344685", - "source": "LCA" - }, - "authorized_access_point": "Sierre (Switzerland)" + "authorized_access_point": "Shanxi (Chine ; province)" } ], + "variant_access_point": [ + "\u6d2a\u6d1e\u7e23", + "\u6d2a\u6d1e\u53bf", + "Hongdong Xian" + ], + "md5": "d099a62bf3a8a130f1731e85427a39eb" + }, + { + "authorized_access_point": "Middle Fork Kentucky river (Ky. ; cours d'eau)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279372906", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271323337", + "value": "http://www.idref.fr/279372906", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb169098180", - "source": "BNF" } ], - "classification": [ + "note": [ { - "type": "bf:ClassificationDdc", - "classificationPortion": "914" + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-12" + ] } ], - "variant_access_point": [ - "Siders (Suisse)" - ], - "authorized_access_point": "Sierre (Suisse)" + "pid": "279372906", + "type": "bf:Place", + "md5": "d07e1cdc84ab45107142ddedb0260971" }, { - "md5": "90c31e33485c8af3a47b2f88f11d214a", - "pid": "271323353", + "authorized_access_point": "North Fork Kentucky river (Ky. ; cours d'eau)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279373139", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279373139", + "source": "IDREF" + } + ], "note": [ { + "noteType": "dataSource", "label": [ - "Site officiel de la commune - http://www.kippel.ch (2010-07-16)" - ], - "noteType": "dataSource" + "https://en.wikipedia.org/wiki/North_Fork_Kentucky_River/, 2024-07-12" + ] } ], + "pid": "279373139", "type": "bf:Place", + "md5": "ab839157adb79b44ba90867823a36f30" + }, + { + "authorized_access_point": "Huaiji Xian (Chine)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279373171", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271323353", + "value": "http://www.idref.fr/279373171", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15189407c", - "source": "BNF" } ], - "variant_access_point": [ - "Kypil (Valais, Suisse)" - ], - "authorized_access_point": "Kippel (Valais, Suisse)" - }, - { - "md5": "528fe09670e33aa44d7d5d95eb48653d", - "pid": "271323426", "note": [ { + "noteType": "dataSource", "label": [ - "Wikip\u00e9dia - http://fr.wikipedia.org (2014-04-24)", - "Guides bleus : Suisse, 1991", - "Dict. historique de la Suisse - http://www.hls-dhs-dss.ch (2014-04-24)" - ], - "noteType": "dataSource" + "Wikip\u00e9dia, https://zh.wikipedia.org/wiki/%E6%80%80%E9%9B%86%E5%8E%BF, 2021-03-03", + "\u4e2d\u56fd\u8bed\u8a00\u6587\u5316\u5178\u85cf . \u6000\u96c6 / \u6768\u74a7\u83c0 \u8457, \u66f9\u5fd7\u8018, \u738b\u8389\u5b81, \u674e\u9526\u82b3 \u4e3b\u7f16, 2022", + "Zhongguo yu yan wen hua dian cang . Huaiji / Yang Biwan zhu, Cao Zhiyun, Wang Lining, Li Jinfang zhu bian, 2022" + ] }, { + "noteType": "general", "label": [ - "Ancienne commune du Valais, qui a fusionn\u00e9 le 1er janvier 2009 avec les 5 autres communes du val d'Anniviers pour former la commune d'Anniviers" - ], - "noteType": "general" + "District de la province du Guangdong, Chine" + ] } ], + "pid": "279373171", "type": "bf:Place", - "bnf_type": "sujet Rameau", - "closeMatch": [ + "broader": [ { - "source": "LCA", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/names/n83221461", - "source": "LCA" - }, - "authorized_access_point": "Grimentz (Switzerland)" + "authorized_access_point": "Guangdong (Chine ; province)" } ], + "variant_access_point": [ + "\u61f7\u96c6\u7e23", + "\u6000\u96c6\u53bf", + "Huaiji Xian" + ], + "md5": "3d2d4dc3faffb112acb88308cbe6d283" + }, + { + "authorized_access_point": "Yerkes (Ky.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279373198", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271323426", + "value": "http://www.idref.fr/279373198", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12068132h", - "source": "BNF" - } - ], - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "914" } ], - "variant_access_point": [ - "Anniviers (Suisse)" - ], - "authorized_access_point": "Grimentz (Suisse)" - }, - { - "md5": "e6de4217e2eb56fe8a5e953e2e1c6b4b", - "pid": "271323485", "note": [ { + "noteType": "dataSource", "label": [ - "GDEL" - ], - "noteType": "dataSource" + "http://www.geonames.org/, 2024-07-12" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Perry" + ] } ], + "pid": "279373198", "type": "bf:Place", + "md5": "ba93861c4b28ec524ac7df9a954b77e6" + }, + { + "authorized_access_point": "Shoal (Ky.)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279373287", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271323485", + "value": "http://www.idref.fr/279373287", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12131962h", - "source": "BNF" } ], - "authorized_access_point": "Collombey-Muraz (Suisse)" - }, - { - "md5": "b8427f972bfa30177dc67087529f6964", - "pid": "271323515", "note": [ { + "noteType": "dataSource", "label": [ - "Wikip\u00e9dia - http://fr.wikipedia.org (2015-04-30)", - "Dict. historique de la Suisse (art. : Port-Valais) - http://www.hls-dhs-dss.ch (2015-05-18)" - ], - "noteType": "dataSource" + "http://www.geonames.org/, 2024-07-12" + ] }, { + "noteType": "general", "label": [ - "Localit\u00e9 de la commune de Port-Valais dans le canton du Valais, situ\u00e9e au sud du lac L\u00e9man et proche de la fronti\u00e8re fran\u00e7aise" - ], - "noteType": "general" + "Situ\u00e9 dans le comt\u00e9 de Leslie" + ] } ], + "pid": "279373287", "type": "bf:Place", + "md5": "31b9a38be7469c0e5ee485c6eac08f4e" + }, + { + "authorized_access_point": "Slavans (Ky.)", "bnf_type": "sujet Rameau", - "closeMatch": [ - { - "source": "LCA", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/names/n83224886", - "source": "LCA" - }, - "authorized_access_point": "Bouveret (Switzerland)" - } - ], + "identifier": "http://www.idref.fr/279375387", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271323515", + "value": "http://www.idref.fr/279375387", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb169627006", - "source": "BNF" - }, - { - "type": "bf:Nbn", - "value": "(DE-588)4697744-2", - "source": "GND" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/113144647637759345491", - "source": "VIAF" } ], - "classification": [ + "note": [ { - "type": "bf:ClassificationDdc", - "classificationPortion": "914" + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-12" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de McCreary" + ] } ], - "variant_access_point": [ - "Bouveret, Le (Valais, Suisse)", - "Bouveret (Valais, Suisse)", - "Port-Valais (Valais, Suisse) - Village du Bouveret" - ], - "authorized_access_point": "Le Bouveret (Valais, Suisse)" + "pid": "279375387", + "type": "bf:Place", + "md5": "c0469d9836f30a9f2bc538eddd29cfe3" }, { - "md5": "8c7e59deb2c8d41a5e8252a60a75da50", - "pid": "271323523", - "type": "bf:Place", + "authorized_access_point": "Byrdstown (Tenn.)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279375794", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271323523", + "value": "http://www.idref.fr/279375794", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb17010914h", - "source": "BNF" } ], - "variant_access_point": [ - "Val d'Illiez (Valais, Suisse ; vall\u00e9e)" - ], - "authorized_access_point": "Illiez, Val d' (Valais, Suisse ; vall\u00e9e)" - }, - { - "md5": "2db810daa89f34f9a8a89efbfc700021", - "pid": "271323566", "note": [ { + "noteType": "dataSource", "label": [ - "Wikip\u00e9dia : Pays des Trois-Lacs - https://fr.wikipedia.org (2016-01-15)", - "Wikipedia : Drei-Seen-Land - https://de.wikipedia.org (2016-01-15)", - "Drei-Seen-Land / Pays des Trois-Lacs - http://www.bielersee.ch (2016-01-15)", - "Jura & Trois-Lacs - http://www.paysdestroislacs.ch (2016-01-15)" - ], - "noteType": "dataSource" + "http://www.geonames.org/, 2024-07-12" + ] }, { + "noteType": "general", "label": [ - "R\u00e9gion (notamment viticole) du nord-ouest de la Suisse, autour des trois lacs de Bienne, Morat et Neuch\u00e2tel (ainsi qu'une partie du bassin moyen de l'Aar), recouvrant pour partie 3 cantons de la Suisse romande (Fribourg, Neuch\u00e2tel, Vaud) et 1 de la Suisse al\u00e9manique (Berne)" - ], - "noteType": "general" + "Situ\u00e9 dans le comt\u00e9 de Pickett" + ] } ], + "pid": "279375794", "type": "bf:Place", + "md5": "bf09491ce501107a3466dd9f4b7c313b" + }, + { + "authorized_access_point": "Obey river (Tenn. ; cours d'eau)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279375867", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271323566", + "value": "http://www.idref.fr/279375867", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb170172206", - "source": "BNF" - } - ], - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "914" } ], - "variant_access_point": [ - "Drei-Seen-Land (Suisse)", - "Pays des Trois-Lacs (Suisse)", - "R\u00e9gion des Trois-Lacs (Suisse)", - "Trois-Lacs (Suisse ; r\u00e9gion)" - ], - "authorized_access_point": "Trois-Lacs, Pays des (Suisse)" - }, - { - "md5": "ea5330b04fb1837acea41d85b002ba4c", - "pid": "271323590", "note": [ { + "noteType": "dataSource", "label": [ - "Coordonn\u00e9es g\u00e9ographiques : E 7\u00b036' / N 47\u00b033'" - ], - "noteType": "general" + "https://en.wikipedia.org/wiki/Obey_River/, 2024-07-12" + ] + }, + { + "noteType": "general", + "label": [ + "La rivi\u00e8re Obey est un affluent de la rivi\u00e8re Cumberland dans l'\u00c9tat am\u00e9ricain du Tennessee" + ] } ], + "pid": "279375867", "type": "bf:Place", + "md5": "802efe0fe99107bb4e07d9da0a4bd3f9" + }, + { + "authorized_access_point": "Huan Xian (Chine)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279376405", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271323590", + "value": "http://www.idref.fr/279376405", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb152399861", - "source": "BNF" - }, - { - "type": "bf:Nbn", - "value": "(DE-101)040046176", - "source": "GND" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/3925169442785525340002", - "source": "VIAF" } ], - "variant_access_point": [ - "B\u00e2le-Ville (Suisse)", - "Basel-Stadt (Suisse)", - "Basilea Citta (Suisse)", - "Basilea", - "Basilia", - "Basilea Rauracorum", - "Colonia Munatiana", - "Athenae Rauracae", - "Bazela", - "Baesula", - "Basula", - "Baille", - "Baalle", - "Basle" - ], - "authorized_access_point": "B\u00e2le (B\u00e2le-Ville, Suisse)" - }, - { - "md5": "10c57f8501c022e40c13a450cb672948", - "pid": "271323663", "note": [ { + "noteType": "dataSource", "label": [ - "Geonames - http://www.geonames.org (2014-09-12)", - "Atlas universel / \"Le Monde\", S\u00e9lection du \"Reader's digest\", 1993" - ], - "noteType": "dataSource" + "Wikip\u00e9dia, https://zh.wikipedia.org/zh-cn/%E7%8E%AF%E5%8E%BF, 2024-07-12", + "\u4e2d\u56fd\u8bed\u8a00\u6587\u5316\u5178\u85cf . \u73af\u53bf / \u8c2d\u6cbb\u742a \u8457, \u66f9\u5fd7\u8018, \u738b\u8389\u5b81, \u674e\u9526\u82b3 \u4e3b\u7f16, 2022", + "Zhongguo yu yan wen hua dian cang . Huan xian / Tan Zhiqi zhu, Cao Zhiyun, Wang Lining, Li Jinfang zhu bian, 2022" + ] }, { + "noteType": "general", "label": [ - "Commune du canton du Valais" - ], - "noteType": "general" + "District de la province du Gansu, Chine" + ] } ], + "pid": "279376405", "type": "bf:Place", - "bnf_type": "sujet Rameau", - "closeMatch": [ + "broader": [ { - "source": "LCA", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/names/n83239447", - "source": "LCA" - }, - "authorized_access_point": "Vouvry (Switzerland)" + "authorized_access_point": "Gansu (Chine ; province)" } ], + "variant_access_point": [ + "\u74b0\u7e23", + "\u73af\u53bf", + "Huan Xian" + ], + "md5": "86ffeebad7664df542464e5883201ece" + }, + { + "authorized_access_point": "Stephensport (Ky.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/27937660X", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271323663", + "value": "http://www.idref.fr/27937660X", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb16909821w", - "source": "BNF" } ], - "classification": [ + "note": [ { - "type": "bf:ClassificationDdc", - "classificationPortion": "914" + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-12" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Breckenridge" + ] } ], - "authorized_access_point": "Vouvry (Suisse)" + "pid": "27937660X", + "type": "bf:Place", + "md5": "697e1431dbc556202cd36a0a079257f3" }, { - "md5": "daf5485db2ea0beba624a685a79844b5", - "pid": "27132368X", - "type": "bf:Place", + "authorized_access_point": "Patesville (Ky.)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279376693", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/27132368X", + "value": "http://www.idref.fr/279376693", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb169778199", - "source": "BNF" } ], - "authorized_access_point": "Gr\u00e4chen (Valais, Suisse)" - }, - { - "md5": "4e4b604b1ec26ac068d307d8ca30964e", - "pid": "271323698", "note": [ { + "noteType": "dataSource", "label": [ - "Coordonn\u00e9es g\u00e9ographiques : E 7\u00b048' / N 46\u00b011'" - ], - "noteType": "general" + "http://www.geonames.org/, 2024-" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Hancock" + ] } ], + "pid": "279376693", "type": "bf:Place", + "md5": "c9a1cfbec8a2039a27d06f5165937e8e" + }, + { + "authorized_access_point": "Jian'ou Shi (Chine)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279376804", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271323698", + "value": "http://www.idref.fr/279376804", "source": "IDREF" - }, + } + ], + "note": [ { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15301322r", - "source": "BNF" + "noteType": "dataSource", + "label": [ + "Wikip\u00e9dia, https://zh.wikipedia.org/wiki/%E5%BB%BA%E7%93%AF%E5%B8%82, 2024-07-12", + "\u4e2d\u56fd\u8bed\u8a00\u6587\u5316\u5178\u85cf . \u5efa\u74ef / \u9093\u4eab\u748b, \u5434\u96ea\u704f, \u5f90\u6587\u4eae \u8457, \u66f9\u5fd7\u8018, \u738b\u8389\u5b81, \u674e\u9526\u82b3 \u4e3b\u7f16, 2022", + "Zhongguo yu yan wen hua dian cang . Jian'ou / Deng Xiangzhang, Wu Xuehao, Xu Wenliang zhu, Cao Zhiyun, Wang Lining, Li Jinfang zhu bian, 2022" + ] }, { - "type": "bf:Nbn", - "value": "(DE-101)952907682", - "source": "GND" - }, + "noteType": "general", + "label": [ + "Ville de la province du Fujian, Chine" + ] + } + ], + "pid": "279376804", + "type": "bf:Place", + "broader": [ { - "type": "uri", - "value": "http://viaf.org/viaf/5819169442791125340000", - "source": "VIAF" + "authorized_access_point": "Fujian (Chine ; province)" } ], "variant_access_point": [ - "Zaniglas", - "Saniglaas" + "\u5efa\u750c\u5e02", + "\u5efa\u750c\u5e02", + "Jianou", + "Jian ou" ], - "authorized_access_point": "Saint Nicolas (Valais, Suisse)" + "md5": "334251b43baf01031901e67553aad445" }, { - "md5": "2646327eb078c75fa4466625a6f24280", - "pid": "271323728", - "type": "bf:Place", + "authorized_access_point": "Cave in Rock (Ill.)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279377266", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271323728", + "value": "http://www.idref.fr/279377266", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb170109286", - "source": "BNF" } ], - "authorized_access_point": "Troistorrents (Valais, Suisse)" - }, - { - "md5": "ee42f3e7c54b5e6ae44747e3cc551352", - "pid": "271323752", "note": [ { + "noteType": "dataSource", "label": [ - "Dictionnaire historique de la Suisse - http://www.hls-dhs-dss.ch/textes/f/F2757.php (2010-07-16)" - ], - "noteType": "dataSource" + "http://www.geonames.org/, 2024-07-12" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Hardin" + ] } ], + "pid": "279377266", "type": "bf:Place", + "md5": "829c7bb92f82b2f8b0587a8234942a43" + }, + { + "authorized_access_point": "Jiangshan Shi (Chine)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279377452", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271323752", + "value": "http://www.idref.fr/279377452", "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikip\u00e9dia, https://zh.wikipedia.org/wiki/%E6%B1%9F%E5%B1%B1%E5%B8%82, 2024-07-12", + "\u4e2d\u56fd\u8bed\u8a00\u6587\u5316\u5178\u85cf . \u6c5f\u5c71 / \u738b\u6d2a\u949f, \u8d75\u666e\u4e49 \u8457, \u66f9\u5fd7\u8018 \u4e3b\u7f16, 2022", + "Zhongguo yu yan wen hua dian cang . Jiangshan / Wang Hongzhong, Zhao Puyi zhu, Cao Zhiyun zhu bian, 2022" + ] }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15171340s", - "source": "BNF" + "noteType": "general", + "label": [ + "Ville de la province du Zhejiang, Chine" + ] } ], - "variant_access_point": [ - "Uffen der Blattun (Valais, Suisse)", - "Eisten (Valais, Suisse)", - "Ried (Valais, Suisse)", - "Weissenried (Valais, Suisse)", - "Fafleralp (Valais, Suisse)", - "K\u00fchmatt (Valais, Suisse)" + "pid": "279377452", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Zhejiang (Chine ; province)" + } ], - "authorized_access_point": "Blatten (Valais, Suisse)" + "md5": "5c2bb2ee9a896675cad0f7cbf89c8328" }, { - "md5": "0b75ba28e5ecb83e276f6ac529886c46", - "pid": "271323957", - "type": "bf:Place", + "authorized_access_point": "Jiangyong Xian (Chine)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279378173", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271323957", + "value": "http://www.idref.fr/279378173", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb170137616", - "source": "BNF" } ], - "authorized_access_point": "Leysin (Vaud, Suisse)" - }, - { - "md5": "1e2a3bc8ebc1159a505cf80551927955", - "pid": "271323973", "note": [ { + "noteType": "dataSource", "label": [ - "L'atlas National geographic, 2007", - "Petit Robert des noms propres 2015 (art. : Morat [ville])", - "Grand Larousse universel (art. : Morat [ville])", - "Guides Voir : Suisse, 2006" - ], - "noteType": "dataSource" + "Wikip\u00e9dia, https://zh.wikipedia.org/wiki/%E6%B1%9F%E6%B0%B8%E5%8E%BF, 2024-07-12", + "\u4e2d\u56fd\u8bed\u8a00\u6587\u5316\u5178\u85cf . \u6c5f\u6c38 / \u6768\u6167\u541b \u8457, \u66f9\u5fd7\u8018, \u738b\u8389\u5b81, \u674e\u9526\u82b3 \u4e3b\u7f16, 2022", + "Zhongguo yu yan wen hua dian cang . Jiangyong / Yang Huijun zhu, Cao Zhiyun, Wang Lining, Li Jinfang zhu bian, 2022" + ] }, { + "noteType": "general", "label": [ - "Lac de Suisse romande (canton de Fribourg), proche de celui de Neuch\u00e2tel" - ], - "noteType": "general" + "Ville de la province du Hunan, Chine" + ] } ], + "pid": "279378173", "type": "bf:Place", - "bnf_type": "sujet Rameau", - "closeMatch": [ + "broader": [ { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85087214", - "source": "LCSH" - }, - "authorized_access_point": "Morat, Lake of (Switzerland)" + "authorized_access_point": "Hunan (Chine)" } ], + "variant_access_point": [ + "\u6c5f\u6c38\u7e23" + ], + "md5": "19a02dd54e227c7ec0eaaa985e0fd312" + }, + { + "authorized_access_point": "San Juan Teotihuac\u00e1n (Mexico)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279380925", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271323973", + "value": "http://www.idref.fr/279380925", "source": "IDREF" }, { + "source": "VIAF", "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb170195106", - "source": "BNF" + "value": "https://viaf.org/viaf/140422932" } ], - "classification": [ + "note": [ { - "type": "bf:ClassificationDdc", - "classificationPortion": "914" + "noteType": "dataSource", + "label": [ + "Phone call to BGN 4/27/83", + "Apuntes hist\u00f3ricos del Valle de Teotihuac\u00e1n en la \u00e9poca colonial / por Ignacio B. del Castillo,... ; Secretar\u00eda de Agricultura y Fomento, Direcci\u00f3n de Antropolog\u00eda" + ] } ], - "variant_access_point": [ - "Murtensee (Suisse)" - ], - "authorized_access_point": "Morat, Lac de (Suisse)" + "pid": "279380925", + "type": "bf:Place", + "md5": "3ac9915559163475136a7cbc3f6f6b75" }, { - "md5": "2021cb4a2bf67d4b37d77322b097296d", - "pid": "271324015", - "type": "bf:Place", + "authorized_access_point": "Cornettsville (Ky.)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279385544", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271324015", + "value": "http://www.idref.fr/279385544", "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-15" + ] }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb153071261", - "source": "BNF" + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Perry" + ] } ], - "authorized_access_point": "Moutier (Berne, Suisse)" + "pid": "279385544", + "type": "bf:Place", + "md5": "01759c90a6b7ecf4c094c0350393813a" }, { - "md5": "51a109a94d96fbdad1b01f4740998ccb", - "pid": "271324031", - "type": "bf:Place", + "authorized_access_point": "Delphia (Ky.)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279385625", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271324031", + "value": "http://www.idref.fr/279385625", "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-15" + ] }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15170908q", - "source": "BNF" + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Perry" + ] } ], - "authorized_access_point": "Bex (Vaud, Suisse)" + "pid": "279385625", + "type": "bf:Place", + "md5": "70d640aeeee0a5a36bca0d13ab8a3a32" }, { - "md5": "259dcb7e8c9441dd436351a9d0f6602f", - "pid": "271324058", - "type": "bf:Place", + "authorized_access_point": "Nolin river (Ky. ; cours d'eau)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/27938646X", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271324058", + "value": "http://www.idref.fr/27938646X", "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-15" + ] }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15292722s", - "source": "BNF" + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 d'Edmonson" + ] } ], - "variant_access_point": [ - "Hauderes, Les (Valais, Suisse)" - ], - "authorized_access_point": "Les Hauderes (Valais, Suisse)" + "pid": "27938646X", + "type": "bf:Place", + "md5": "c3e1f64b4ce0275644f4d61375e166ab" }, { - "md5": "f4e58ef90fee591b3056b8978661938c", - "pid": "271324074", - "type": "bf:Place", + "authorized_access_point": "South Fork Licking river (Ky. ; cours d'eau)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279387199", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271324074", + "value": "http://www.idref.fr/279387199", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15286338t", - "source": "BNF" } ], - "authorized_access_point": "Saas Grund (Valais, Suisse)" - }, - { - "md5": "be627bc82578b05cb24254460bfc269a", - "pid": "271324562", "note": [ { + "noteType": "dataSource", "label": [ - "L'apothicairerie de l'h\u00f4pital de Dax / Xavier Petitcol, 2023" - ], - "noteType": "dataSource" + "http://www.geonames.org/, 2024-07-15" + ] } ], + "pid": "279387199", "type": "bf:Place", + "md5": "c2a08f87c2ad5b87ea64e49a0e543911" + }, + { + "authorized_access_point": "Creux, Tunnel du (Neuch\u00e2tel, Suisse)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279388810", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271324562", + "value": "http://www.idref.fr/279388810", "source": "IDREF" } ], - "authorized_access_point": "Dax (Landes)" - }, - { - "md5": "d43e35c11f9a16ed068d502e3e090c93", - "pid": "271326441", "note": [ { + "noteType": "dataSource", "label": [ - "Atlas universalis (Val di Gressoney)", - "Valle d'Aosta-Vall\u00e9e d'Aoste - http://www.regione.vda.it (2006-04-20)" - ], - "noteType": "dataSource" + "Tunnel du Creux : Action de d\u00e9pollution et petit historique de ce tunnel \u00e9ph\u00e9m\u00e8re (La Chaux-de-Fonds, NE) / Kesselring, Thomas auteur Blant, Denis, 1964-....auteur. Publi\u00e9 dans: Cavernes : bulletin des Sections neuch\u00e2teloises de la Soci\u00e9t\u00e9 suisse de sp\u00e9l\u00e9ologie ; 2023, n\u00ba. 1, p. 16-19" + ] }, { + "noteType": "general", "label": [ - "Vall\u00e9e du nord-est du Val d'Aoste au pied du Mont Rose, drain\u00e9e par le Lys. Elle est habit\u00e9e depuis le 13e si\u00e8cle par des Valaisiens (Walser) germanophones" - ], - "noteType": "general" + "Ancienne ligne ferrovi\u00e8re Les Convers-Renan, 1874-1888." + ] } ], + "pid": "279388810", "type": "bf:Place", + "md5": "e9b0e27e89a80eae8d58b4afeda94f0c" + }, + { + "authorized_access_point": "Brusque (Br\u00e9sil)", "bnf_type": "sujet Rameau", - "closeMatch": [ - { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85057315", - "source": "LCSH" - }, - "authorized_access_point": "Gressoney Valley (Italy)" - } - ], + "identifier": "http://www.idref.fr/279390351", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271326441", + "value": "http://www.idref.fr/279390351", "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Brusque : subs\u00eddios para a hist\u00f3ria de uma col\u00f4nia nos tempos de Imp\u00e9rio / Oswaldo R. Cabral, 1958", + "https://www.geonames.org, 2024-07-15" + ] }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12725205j", - "source": "BNF" + "noteType": "general", + "label": [ + "Ville br\u00e9silienne de l'\u00c9tat de Santa Catarina.", + "S 27\u00b005\u203253\u2033 W 48\u00b054\u203246\u2033" + ] } ], - "classification": [ + "pid": "279390351", + "type": "bf:Place", + "broader": [ { - "type": "bf:ClassificationDdc", - "classificationPortion": "914" + "authorized_access_point": "Santa Catarina (Br\u00e9sil, \u00c9tat)" } ], - "variant_access_point": [ - "Gressoney, Val di (Italie)", - "Gressoney, Valle di (Italie)", - "Gressoneytal (Italie)", - "Lys, Vall\u00e9e du (Italie)", - "Val de Gressoney (Italie)" - ], - "authorized_access_point": "Gressoney, Val de (Italie)" + "md5": "6914fc6ed008ee470621ba7a91d8ed97" }, { - "md5": "2f570620f8f7ce96a69e3a52d9f29e75", - "pid": "271326476", - "type": "bf:Place", + "authorized_access_point": "Pinghe Xian (Chine)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279391544", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271326476", + "value": "http://www.idref.fr/279391544", "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikip\u00e9dia, https://zh.wikipedia.org/zh-hans/%E5%B9%B3%E5%92%8C%E5%8E%BF, 2024-07-15", + "\u5e73\u548c\u4f20\u7edf\u5efa\u7b51 / \u9ec4\u6c49\u6c11, \u8303\u6587\u6600 \u8457, 2023", + "Pinghe chuan tong jian zhu / Huang Hanmin,Fan Wenyun zhu, 2023" + ] }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15312266j", - "source": "BNF" + "noteType": "general", + "label": [ + "District de la province du Fujian, Chine" + ] + } + ], + "pid": "279391544", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Fujian (Chine ; province)" } ], - "authorized_access_point": "Randa (Valais, Suisse)" + "variant_access_point": [ + "\u5e73\u548c\u7e23", + "\u5e73\u548c\u53bf", + "Pinghe Xian" + ], + "md5": "6852e2f02c5e2230f77132b533249696" }, { - "md5": "038450104d2161ce3dff42a03912a8fe", - "pid": "271326484", - "type": "bf:Place", + "authorized_access_point": "Nanjing Xian (Chine)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279391609", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271326484", + "value": "http://www.idref.fr/279391609", "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikip\u00e9dia, https://zh.wikipedia.org/wiki/%E5%8D%97%E9%9D%96%E5%8E%BF, 2024-07-15", + "\u5357\u9756\u4f20\u7edf\u5efa\u7b51 / \u9ec4\u6c49\u6c11, \u8303\u6587\u6600 \u8457, 2022", + "Nanjing chuan tong jian zhu / Huang Hanmin,Fan Wenyun zhu, 2022" + ] }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15288490p", - "source": "BNF" + "noteType": "general", + "label": [ + "District de la province du Fujian, Chine" + ] + } + ], + "pid": "279391609", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Fujian (Chine ; province)" } ], "variant_access_point": [ - "Engadin (Grisons, Suisse ; vall\u00e9e)", - "Caput Oeni" + "\u5357\u9756\u7e23", + "\u5357\u9756\u53bf", + "Nanjing Xian" ], - "authorized_access_point": "Engadine (Grisons, Suisse ; vall\u00e9e)" + "md5": "e98a8d6bbba499bbcf42610e2f7bd8fa" }, { - "md5": "a2f78ce1651db1de4f9d2c2d1c60f3fd", - "pid": "271326506", - "type": "bf:Place", + "authorized_access_point": "Jinhua Xian (Chine)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279392400", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271326506", + "value": "http://www.idref.fr/279392400", "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "\u4e2d\u56fd\u8bed\u8a00\u6587\u5316\u5178\u85cf . \u91d1\u534e / \u9ec4\u6653\u4e1c, \u66f9\u6587\u8fdb \u8457, \u66f9\u5fd7\u8018 \u4e3b\u7f16, 2017", + "Zhongguo yu yan wen hua dian cang . Jinhua / Huang Xiaodong, Cao Wenjin zhu, Cao Zhiyun zhu bian, 2017" + ] }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb152863395", - "source": "BNF" + "noteType": "general", + "label": [ + "District de la province du Zhejiang, Chine" + ] + } + ], + "pid": "279392400", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Zhejiang (Chine ; province)" } ], - "authorized_access_point": "Saas Almagell (Valais, Suisse)" + "variant_access_point": [ + "\u91d1\u83ef\u7e23", + "\u91d1\u534e\u53bf", + "Jinhua Xian" + ], + "md5": "fddfa6fc05eee88ad49c3b5553e0609a" }, { - "md5": "8b1fb2bc02b04bb0a4d7aa9f9f6b74b4", - "pid": "271326514", - "type": "bf:Place", + "authorized_access_point": "Jingxing Xian (Chine)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279394381", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271326514", + "value": "http://www.idref.fr/279394381", "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikip\u00e9dia, https://zh.wikipedia.org/wiki/%E4%BA%95%E9%99%89%E5%8E%BF, 2024-07-15", + "\u4e2d\u56fd\u8bed\u8a00\u6587\u5316\u5178\u85cf . \u4e95\u9649 / \u6851\u5b87\u7ea2, \u8bb8\u6167\u654f, \u5218\u6676 \u8457, \u66f9\u5fd7\u8018 \u4e3b\u7f16, 2017", + "Zhongguo yu yan wen hua dian cang . Jingxing / Sang Yuhong, Xu Huimin, Liu Jing zhu, Cao Zhiyun zhu bian, 2017" + ] }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb170155227", - "source": "BNF" + "noteType": "general", + "label": [ + "District de la province du Hebei, Chine" + ] + } + ], + "pid": "279394381", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Hebei (Chine ; province)" } ], - "authorized_access_point": "Grand Combin (Valais, Suisse ; mont)" + "variant_access_point": [ + "\u4e95\u9649\u7e23", + "\u4e95\u9649\u53bf", + "Jingxing Xian" + ], + "md5": "1a76c4fe6cca5e61cd710882c7ab3a23" }, { - "md5": "6cf76fe72d44f50fdd37bdb86488cd5e", - "pid": "271326522", - "type": "bf:Place", + "authorized_access_point": "Leye Xian (Chine)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279396155", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271326522", + "value": "http://www.idref.fr/279396155", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb170113472", - "source": "BNF" } ], - "authorized_access_point": "Trient (Valais, Suisse)" - }, - { - "md5": "3e1fc12e6dfe9f39c2be05a512766caa", - "pid": "271326530", "note": [ { + "noteType": "dataSource", + "label": [ + "Wikip\u00e9dia, https://zh.wikipedia.org/wiki/%E4%B9%90%E4%B8%9A%E5%8E%BF, 2024-07-15", + "\u4e2d\u56fd\u8bed\u8a00\u6587\u5316\u5178\u85cf . \u4e50\u4e1a / \u5415\u5d69\u5d27, \u674e\u56fd\u4fca, \u6ed5\u97e7, \u90d1\u656c\u6587 \u8457, \u66f9\u5fd7\u8018, \u738b\u8389\u5b81, \u674e\u9526\u82b3 \u4e3b\u7f16, 2022", + "Zhongguo yu yan wen hua dian cang . Leye / L\u00fc Songsong, Li Guojun, Teng Ren, Zheng Jingwen zhu, Cao Zhiyun, Wang Lining, Li Jinfang zhu bian, 2022" + ] + }, + { + "noteType": "general", "label": [ - "Dictionnaire historique de la Suisse - http://www.hls-dhs-dss.ch/index.php (2010-07-17)" - ], - "noteType": "dataSource" + "District de la province du Guangxi, Chine" + ] } ], + "pid": "279396155", "type": "bf:Place", - "bnf_type": "sujet Rameau", - "identifiedBy": [ - { - "type": "uri", - "value": "http://www.idref.fr/271326530", - "source": "IDREF" - }, + "broader": [ { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15285465r", - "source": "BNF" + "authorized_access_point": "Guangxi (Chine ; province)" } ], "variant_access_point": [ - "Binn (Wallis, Suisse)", - "Buen (Valais, Suisse)", - "Buyn (Valais, Suisse)", - "Bun (Valais, Suisse)", - "Schmidigehischere (Valais, Suisse)", - "Ze Binne (Valais, Suisse)", - "Wilere (Valais, Suisse)", - "Giesse (Valais, Suisse)", - "Heiligkreuz (Valais, Suisse)" + "\u6a02\u696d\u7e23", + "\u4e50\u4e1a\u53bf", + "Leye Xian" ], - "authorized_access_point": "Binn (Valais, Suisse)" + "md5": "8f7d4ca6f30b8a1b625c3e318fcb4b72" }, { - "md5": "17b03f7f2fc10ce546261142583e1bbd", - "pid": "271326557", + "authorized_access_point": "Florence (Italie) - Chiesa di San Gaggio", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279401639", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279401639", + "source": "IDREF" + } + ], "note": [ { + "noteType": "dataSource", "label": [ - "GeoNames : glacier du Gi\u00e9tro - http://www.geonames.org (2020-06-17)", - "Wikip\u00e9dia : Glacier du Gi\u00e9tro - https://fr.wikipedia.org (2020-06-10)", - "Les risques naturels en montagnes / F. Naaim-Bouvet, D. Richard, 2015 (p. 220", - "Dict. historique de la Suisse (art. : Bagnes, Val de ; B\u00e2traz, La ; Glaciers ; Inondations ; Venetz, Ignace) - https://hls-dhs-dss.ch (2020-06-17)", - "Examen de l'apologie des travaux du glacier du Gi\u00e9troz / J.-J. Blanc, 1825", - "Glacier-Climat.com : glacier du Gi\u00e9tro/Gi\u00e9troz - https://www.glaciers-climat.com (2020-06-17)" - ], - "noteType": "dataSource" + "Il Monastero di San Gaggio a Firenze : la storia, il piano di recupero / Osanna Fantozzi Micali, Franco Lombardi, Piero Roselli ; a cura di Franco Lombardi, 1996", + "Internet : Wikipedia : https://en.wikipedia.org/wiki/San_Gaggio,_Florence (15-07-2024)" + ] }, { + "noteType": "general", "label": [ - "Glacier du sud-ouest des Alpes valaisanes, descendant du Mont Blanc de Cheilon, \u00e0 hauteur du barrage de Mauvoisin. Souvent en mouvement, ses d\u00e9b\u00e2cles caus\u00e8rent des d\u00e9sagr\u00e9ments en aval, notamment en juin 1818, lorsque la digue du barrage c\u00e9da soudainement, provoquant une inondation importante du val de Bagnes en contrebas, causant la mort de 44 personnes. Il porte le nom d'un village de la commune de Finhaut" - ], - "noteType": "general" + "L'\u00e9glise de San Gaggio \u00e9tait autrefois associ\u00e9e \u00e0 un grand couvent. L'int\u00e9rieur abrite une chapelle de Saint- Andr\u00e9 Corsini (1603), d\u00e9cor\u00e9e de fresques par l'atelier de Bernardino Poccetti et abritant une Annonciation avec des saints par l'atelier de Francesco Brina" + ] } ], + "pid": "279401639", "type": "bf:Place", + "md5": "fa400e98fcef329c358cc0b2bc7f47e1" + }, + { + "authorized_access_point": "Kormak\u00edtis (Chypre)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279403984", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271326557", + "value": "http://www.idref.fr/279403984", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb17873174h", - "source": "BNF" } ], - "classification": [ + "note": [ { - "name": "Sciences de la Terre", - "type": "bf:ClassificationDdc", - "classificationPortion": "550" + "noteType": "dataSource", + "label": [ + "GeoNames (2024-07-16)" + ] }, { - "type": "bf:ClassificationDdc", - "classificationPortion": "914" + "noteType": "general", + "label": [ + "Kormak\u00edtis est un petit village sur la c\u00f4te septentrionale de Chypre - dans la zone occup\u00e9e par l'arm\u00e9e Turque - aussi appel\u00e9e R\u00e9publique turque de Chypre du Nord. Ce village est le centre historique de l'\u00c9glise maronite chypriote.", + "Coordonn\u00e9es en degr\u00e9s s\u00e9xag\u00e9simaux : N 35\u00b020\u203235\u2033 / E 33\u00b000\u203236\u2033" + ] + } + ], + "pid": "279403984", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Chypre" } ], "variant_access_point": [ - "Ghiacciaio del Gi\u00e9troz (Suisse)", - "Gi\u00e9tro, Glacier du (Suisse)", - "Gietrozgletscher (Suisse)", - "Glacier de Gi\u00e9tro (Suisse)", - "Glacier de Gi\u00e9troz (Suisse)", - "Glacier du Gi\u00e9tro (Suisse)", - "Glacier du Gi\u00e9troz (Suisse)" + "\u039a\u03bf\u03c1\u03bc\u03b1\u03ba\u03af\u03c4\u03b7\u03c2", + "Korucam" ], - "authorized_access_point": "Gi\u00e9troz, Glacier de (Suisse)" + "md5": "110b658b4df5889d60f923a450d95380" }, { - "md5": "8eeef5e50103b876b3641b2e3258678c", - "pid": "271326603", + "authorized_access_point": "Daniel Boone (Ky.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279414145", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279414145", + "source": "IDREF" + } + ], "note": [ { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-16" + ] + }, + { + "noteType": "general", "label": [ - "https://www.beaumontenveron.fr" - ], - "noteType": "dataSource" + "Situ\u00e9 dans le comt\u00e9 de Hopkins" + ] } ], + "pid": "279414145", "type": "bf:Place", + "md5": "85c3725218f881b0a99f1d9543497ecd" + }, + { + "authorized_access_point": "Heinola (Finlande)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279416679", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271326603", + "value": "http://www.idref.fr/279416679", "source": "IDREF" } ], - "authorized_access_point": "Beaumont-en-V\u00e9ron" - }, - { - "md5": "ae1ab489aa4d93bb05af2b76e6f435f7", - "pid": "271326670", "note": [ { + "noteType": "dataSource", "label": [ - "https://www.saint-germain-sur-vienne.com/" - ], - "noteType": "dataSource" + "Suomen geologinen kartta Lehti 3112 = =Geological map of Finland : kallioper\u00e4kartta / Geologisen tutkimuslaitoksen julkaisema ; Tehnyt by Mauno Lehij\u00e4rvi, 1970.", + "http://www.geonames.org/658288, 2024-07-16" + ] + }, + { + "noteType": "general", + "label": [ + "Ville de Finlande, r\u00e9gion du P\u00e4ij\u00e4t-H\u00e4me" + ] } ], + "pid": "279416679", "type": "bf:Place", + "md5": "9e96881f5d3a7aa33d4c7ce4cd821409" + }, + { + "authorized_access_point": "Montalto di Castro (Italie)", "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "914" + } + ], + "identifier": "http://www.idref.fr/27941806X", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271326670", + "value": "http://www.idref.fr/27941806X", "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18133134c", + "source": "BNF" } ], - "authorized_access_point": "Saint-Germain-sur-Vienne (Indre-et-Loire)" - }, - { - "md5": "3008d11c7a98543768496691079e62e2", - "pid": "271326700", "note": [ { + "noteType": "dataSource", + "label": [ + "Regisvilla : scavi e ricerche (1968-1983) / Carlo Regoli, 2021", + "Comuni Italiani - http://www.comuni-italiani.it (2024-02-27)", + "LCNA (en ligne), 2024-02-24 : Montalto di Castro (Italy)" + ] + }, + { + "noteType": "general", "label": [ - "https://www.annuaire-mairie.fr/mairie-pommiers-30.html" - ], - "noteType": "dataSource" + "Commune de la province de Viterbe, dans le Latium" + ] } ], + "pid": "27941806X", "type": "bf:Place", + "md5": "ec2f438143b695337621a55c5974084e" + }, + { + "authorized_access_point": "Earlington (Ky.)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279418728", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271326700", + "value": "http://www.idref.fr/279418728", "source": "IDREF" } ], - "authorized_access_point": "Pommiers (Gard)" - }, - { - "md5": "72a54d2b0573f85cc2a0ea5df023b5c0", - "pid": "271326727", "note": [ { + "noteType": "dataSource", "label": [ - "https://www.annuaire-mairie.fr/mairie-couziers.html" - ], - "noteType": "dataSource" + "http://www.geonames.org/, 2024-07-16" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Hopkins" + ] } ], + "pid": "279418728", "type": "bf:Place", + "md5": "7c037de87176afc19f4c3b00dee6d1d1" + }, + { + "authorized_access_point": "Despotik\u00f2 (Gr\u00e8ce ; \u00eele)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279421427", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271326727", + "value": "http://www.idref.fr/279421427", "source": "IDREF" } ], - "authorized_access_point": "Couziers (Indre-et-Loire)." - }, - { - "md5": "32f0f99c66cb112b827bc1afef4ee28c", - "pid": "271326751", "note": [ { + "noteType": "dataSource", + "label": [ + "Despotiko, the site of Mandra : the \"temple\" complex and its deposits / edited by Alexandra Alexandridou, Yannos Kourayos and Ilia Daifa, 2023", + "DNB - https://d-nb.info/gnd/1043474439, 2024-07-16" + ] + }, + { + "noteType": "general", "label": [ - "https://cizay-la-madeleine.fr" - ], - "noteType": "dataSource" + "Petite \u00eele des Cyclades au sud-ouest d'Antiparos" + ] } ], + "pid": "279421427", "type": "bf:Place", + "md5": "393ae23d7e9041a5f981151da9167578" + }, + { + "authorized_access_point": "Le Locle (Neuch\u00e2tel, Suisse) - Rue de l'Industrie", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279426739", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271326751", + "value": "http://www.idref.fr/279426739", "source": "IDREF" } ], - "authorized_access_point": "Cizay-la-Madeleine (Maine-et-Loire)" - }, - { - "md5": "09929c4b42d8faeb7238f29ece031bfc", - "pid": "27132676X", "note": [ { + "noteType": "dataSource", + "label": [ + "[Fontaine et carrefour Rue du Raisin / Rue de l'Industrie, Le Locle], [1980-1990 ?] / Adequa (La Chaux-de-Fonds, Neuch\u00e2tel, Suisse) photographe", + "https://bib.rero.ch/global/documents/2239783, 2024-07-17" + ] + }, + { + "noteType": "general", "label": [ - "Les Incas fondent un empire autour de Cuzco, en 1532 Pizzaro s'empare de Cuzco et fait ex\u00e9cuter Atahualpa" - ], - "noteType": "general" + "Visualisation sur SITN- G\u00e9oportail du syst\u00e8me d'information du territoire neuch\u00e2telois https://sitn.ne.ch, 2024-07-17" + ] } ], + "pid": "279426739", "type": "bf:Place", + "md5": "56ed7ac751c39fc3be99077315955b7b" + }, + { + "authorized_access_point": "Egandawal (Niger)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279461429", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/27132676X", + "value": "http://www.idref.fr/279461429", "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Calames-202406121584443535" + ] }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15366294s", - "source": "BNF" + "noteType": "general", + "label": [ + "VIllage nig\u00e9rien montagnard de l'A\u00efr. Zone de production agricole." + ] } ], - "variant_access_point": [ - "Incas, Empire des" - ], - "authorized_access_point": "P\u00e9rou, Empire Inca du (11..-1532)" + "pid": "279461429", + "type": "bf:Place", + "md5": "6c98dcb0654e7529cd32ef06bc6e2546" }, { - "md5": "953fb1d993f4a1543e446e656769b715", - "pid": "271326778", - "type": "bf:Place", + "authorized_access_point": "Thessalonique (Gr\u00e8ce) - Cath\u00e9drale Saint Gr\u00e9goire Palamas", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279466293", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271326778", + "value": "http://www.idref.fr/279466293", "source": "IDREF" - }, + } + ], + "note": [ { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb120482807", - "source": "BNF" + "noteType": "dataSource", + "label": [ + "\u03a4\u03bf \u03ba\u03c4\u03b9\u03c1\u03b9\u03b1\u03ba\u03cc \u03c3\u03c5\u03b3\u03ba\u03c1\u03cc\u03c4\u03b7\u03bc\u03b1 \u03c4\u03b7\u03c2 \u03bc\u03b7\u03c4\u03c1\u03cc\u03c0\u03bf\u03bb\u03b7\u03c2 \u0398\u03b5\u03c3\u03c3\u03b1\u03bb\u03bf\u03bd\u03af\u03ba\u03b7\u03c2 / \u0398\u03ac\u03bb\u03b5\u03b9\u03b1 \u03a3. \u039c\u03b1\u03bd\u03c4\u03bf\u03c0\u03bf\u03cd\u03bb\u03bf\u03c5-\u03a0\u03b1\u03bd\u03b1\u03b3\u03b9\u03c9\u03c4\u03bf\u03c0\u03bf\u03cd\u03bb\u03bf\u03c5, 1985" + ] } ], - "authorized_access_point": "Monthey (Suisse ; r\u00e9gion)" + "pid": "279466293", + "type": "bf:Place", + "md5": "92887a74945d3745303ceaa5a7784585" }, { - "md5": "4612fb997297fa1b39941851ac704c6c", - "pid": "271326786", - "type": "bf:Place", + "authorized_access_point": "La Bourgonce", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279467850", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271326786", + "value": "http://www.idref.fr/279467850", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15291163g", - "source": "BNF" } ], - "authorized_access_point": "Fionnay (Valais, Suisse)" - }, - { - "md5": "1d2c333e6182f4926619966f42fde0df", - "pid": "271326794", "note": [ { + "noteType": "dataSource", "label": [ - "Les sp\u00e9ciales de l'IGN / Europe : Suisse, 1994", - "Dict. historique de la Suisse - http://www.hls-dhs-dss.ch (2016-01-16)", - "Stadtgemeide Brig-Glis - http://www.brig-glis.ch (2016-01-11)" - ], - "noteType": "dataSource" + "Carte de France - 1:25 000 XXXV-17, 7-8 / dessin\u00e9 et publi\u00e9 par l'Institut g\u00e9ographique national, [195.].", + "http://www.geonames.org/6457174" + ] }, { + "noteType": "general", "label": [ - "Village du Valais, dans le Haut-Valais sur le Rh\u00f4ne, juste avant Glis, (ancienne) commune \u00e0 laquelle il \u00e9tait attach\u00e9, aujourd'hui composante de la commune de Brigue-Glis" - ], - "noteType": "general" + "Village des Vosges" + ] } ], + "pid": "279467850", "type": "bf:Place", + "md5": "0e9652778be4006d5cf71827549db49a" + }, + { + "authorized_access_point": "Porciano (Latium, Italie)", "bnf_type": "sujet Rameau", - "closeMatch": [ - { - "source": "LCA", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/names/nb2015012569", - "source": "LCA" - }, - "authorized_access_point": "Gamsen (Switzerland)" - } - ], + "identifier": "http://www.idref.fr/279469632", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271326794", + "value": "http://www.idref.fr/279469632", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb170165930", - "source": "BNF" } ], - "classification": [ + "note": [ { - "type": "bf:ClassificationDdc", - "classificationPortion": "914" + "noteType": "dataSource", + "label": [ + "La Panarda di Porciano : una ricerca storico antropologica/ Gioacchino Giammaria, Laura Gatti, 2017", + "https://it.wikipedia.org/wiki/Porciano_(Ferentino), 2024-07-18." + ] } ], - "variant_access_point": [ - "Brigue-Glis (Suisse)" - ], - "authorized_access_point": "Gamsen (Suisse)" + "pid": "279469632", + "type": "bf:Place", + "md5": "5728292e23f81b0d7d7582ffd1683feb" }, { - "md5": "f641e4e732da482d91d70722a46460ea", - "pid": "271326808", - "type": "bf:Place", + "authorized_access_point": "Xing'an (Chine)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279471467", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271326808", + "value": "http://www.idref.fr/279471467", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb16981690w", - "source": "BNF" } ], - "authorized_access_point": "Martigny (Valais, Suisse). Ch\u00e2teau de la B\u00e2tiaz" - }, - { - "md5": "60f765323a605bacb4a828eb8a76b9cd", - "pid": "271326824", - "type": "bf:Place", - "bnf_type": "sujet Rameau", - "identifiedBy": [ - { - "type": "uri", - "value": "http://www.idref.fr/271326824", - "source": "IDREF" - }, + "note": [ { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15331899b", - "source": "BNF" + "noteType": "dataSource", + "label": [ + "Daxing'anling zhi wu zhi = Flora of the greater Xing'an mountains / Daxing'anling zhi wu zhi bian wei hui bian" + ] } ], - "authorized_access_point": "Issime (Val d'Aoste, Italie)" + "pid": "279471467", + "type": "bf:Place", + "md5": "89f3c2e18178889d308f573e4bf3cc3e" }, { - "md5": "da2a7da38069a326ab6fb6e713c66fdc", - "pid": "271326832", - "type": "bf:Place", + "authorized_access_point": "Montagne de Xang'an (Chine)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279471734", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271326832", + "value": "http://www.idref.fr/279471734", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb17015586g", - "source": "BNF" } ], - "variant_access_point": [ - "Lac de Champex (Valais, Suisse)" + "note": [ + { + "noteType": "dataSource", + "label": [ + "Daxing'anling zhi wu zhi = Flora of the greater Xing'an mountains / Daxing'anling zhi wu zhi bian wei hui bian" + ] + } ], - "authorized_access_point": "Champex, Lac de (Valais, Suisse)" + "pid": "279471734", + "type": "bf:Place", + "md5": "bb53f13945b5383073e55e7b205123a7" }, { - "md5": "820b141d4c8478d915a1a7b2c1665341", - "pid": "271326840", - "type": "bf:Place", + "authorized_access_point": "Frassinoro (Italie)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279478208", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271326840", + "value": "http://www.idref.fr/279478208", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb162621083", - "source": "BNF" } ], - "authorized_access_point": "Anatolie (Turquie ; r\u00e9gion)" - }, - { - "md5": "79c0d48764d6ff3ef674e5fe8720205e", - "pid": "271327383", "note": [ { + "noteType": "general", "label": [ - "Le centre aquatique des Bertisettes / Atelier Po&Po, GCC, Opalia / [auteur Karine Dana], Archibooks + Sautereau \u00c9diteur, 2022" - ], - "noteType": "dataSource" + "Commune italienne de la r\u00e9gion Emilie-Romagne" + ] } ], + "pid": "279478208", "type": "bf:Place", + "md5": "9fe4fd5f242203b411c8ce1ca0a5937d" + }, + { + "authorized_access_point": "D\u00edstomo (Gr\u00e8ce)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279487606", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271327383", + "value": "http://www.idref.fr/279487606", "source": "IDREF" } ], - "variant_access_point": [ - "Centre aquatique des Bertisettes (Viroflay, France)", - "CAB (Viroflay, France)" - ], - "authorized_access_point": "Viroflay (France)" - }, - { - "md5": "77c753c884702436190a883926ebde25", - "pid": "271328762", "note": [ { + "noteType": "dataSource", "label": [ - "Dict. des communes, 2001" - ], - "noteType": "dataSource" + "GeoNames (2024-07-18)" + ] + }, + { + "noteType": "general", + "label": [ + "D\u00edstomo est un village et une ancienne municipalit\u00e9 grecque dans le district r\u00e9gional de B\u00e9otie. Elle comptait 4 368 habitants en 2001", + "Coordonn\u00e9es en degr\u00e9s s\u00e9xag\u00e9simaux : N 38\u00b025\u203244\u2033 / E 22\u00b040\u203202\u2033" + ] } ], + "pid": "279487606", "type": "bf:Place", - "bnf_type": "sujet Rameau", - "closeMatch": [ + "broader": [ { - "source": "LCA", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/names/no2011036870", - "source": "LCA" - }, - "authorized_access_point": "Saint-Gingolph (France)" + "authorized_access_point": "Gr\u00e8ce" } ], + "variant_access_point": [ + "\u0394\u03af\u03c3\u03c4\u03bf\u03bc\u03bf", + "\u0394\u03af\u03c3\u03c4\u03bf\u03bc\u03bf\u03bd" + ], + "md5": "41734b7ef00fd62e2a07282d6325562d" + }, + { + "authorized_access_point": "Rough river (Ky. ; cours d'eau)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279488076", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271328762", + "value": "http://www.idref.fr/279488076", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb162289872", - "source": "BNF" } ], - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "912" - } - ], - "authorized_access_point": "Saint-Gingolph (Haute-Savoie, France)" - }, - { - "md5": "142cae8fef9fb0e4ddf5f712ec3430d7", - "pid": "271329017", "note": [ { + "noteType": "dataSource", "label": [ - "Quand la grotte Cosquer sort de l'eau : la Villa M\u00e9diterran\u00e9e en porte \u00e0 faux / Pierre Fiastre, \u00c9ditions de l'Aube, 2022" - ], - "noteType": "dataSource" + "http://www.geonames.org/, 2024-07-18" + ] }, { + "noteType": "general", "label": [ - "B\u00e2timent public construit par Stefano Boeri. Abrite le mus\u00e9e Cosquer M\u00e9diterran\u00e9e depuis 2022", - "Adresse : Esplanade du J4, Promenade Robert Laffont, 13002 Marseille" - ], - "noteType": "general" + "La Rough River est un affluent de la Green River dans le centre-ouest du Kentucky aux \u00c9tats-Unis" + ] } ], + "pid": "279488076", "type": "bf:Place", + "md5": "c35caf1cc075b4d9422ff509a5c18dfc" + }, + { + "authorized_access_point": "Paris (France) - H\u00f4tel Moreau", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279492820", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271329017", + "value": "http://www.idref.fr/279492820", "source": "IDREF" } ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Souvenir du g\u00e9n\u00e9ral Moreau en son h\u00f4tel de la Chauss\u00e9e-d'Antin / Simone Saint-Girons, 1961" + ] + }, + { + "noteType": "general", + "label": [ + "H\u00f4tel particulier situ\u00e9 au 20 rue de la Chauss\u00e9e-d'Antin, Paris 9e." + ] + } + ], + "pid": "279492820", + "type": "bf:Place", "variant_access_point": [ - "Villa M\u00e9diterran\u00e9e (Marseille, France)" + "H\u00f4tel Lakanal" ], - "authorized_access_point": "Marseille (France)" + "md5": "cc77617f1072fb370e5b4198dabbdc5b" }, { - "md5": "5dbb2dd52a1de892e183643fb665e805", - "pid": "271329335", - "type": "bf:Place", + "authorized_access_point": "Alto da Serra (Br\u00e9sil)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279493584", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271329335", + "value": "http://www.idref.fr/279493584", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15331888p", - "source": "BNF" } ], - "authorized_access_point": "Ayas (Val d'Aoste, Italie)" - }, - { - "md5": "9de54104659eda780aadee4349bfb736", - "pid": "271329696", - "type": "bf:Place", - "broader": [ + "note": [ { - "authorized_access_point": "Canaries, \u00celes (Espagne)" + "noteType": "dataSource", + "label": [ + "Orquideas do Alto da Serra : Da Mata Atlantica Pluvial do Sudeste do Brasil $$c David Miller, With 40 colour plates by Izabel Moura Miller and Richard Warren" + ] } ], + "pid": "279493584", + "type": "bf:Place", + "md5": "8bf2072de962ff71daf113640f0e6827" + }, + { + "authorized_access_point": "Saulges (Mayenne) - N\u00e9cropole m\u00e9rovingienne", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279494602", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271329696", + "value": "http://www.idref.fr/279494602", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15292962k", - "source": "BNF" } ], - "variant_access_point": [ - "Teneriffe, \u00cele de (Canaries, Espagne)" - ], - "authorized_access_point": "Tenerife, \u00cele de (Canaries, Espagne)" - }, - { - "md5": "e9114375c51210143aa41c2b6f0b8f41", - "pid": "271329734", "note": [ { + "noteType": "dataSource", "label": [ - "Atlas Le Monde" - ], - "noteType": "dataSource" + "Crania armoricana... Corpus des cr\u00e2nes armoricains et bretons / Pierre-Roland Giot, 1961" + ] } ], + "pid": "279494602", "type": "bf:Place", + "md5": "67e2109e570462b8f1a36ebf40cc2945" + }, + { + "authorized_access_point": "Carnac (Morbihan) - N\u00e9cropole m\u00e9rovingienne", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279494637", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271329734", + "value": "http://www.idref.fr/279494637", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11963639h", - "source": "BNF" } ], - "variant_access_point": [ - "Edinburgh (GB)" + "note": [ + { + "noteType": "dataSource", + "label": [ + "Crania armoricana... Corpus des cr\u00e2nes armoricains et bretons / Pierre-Roland Giot, 1961" + ] + } ], - "authorized_access_point": "\u00c9dimbourg (GB)" + "pid": "279494637", + "type": "bf:Place", + "md5": "2114e86c32a87cf44a546d5b51ad831a" }, { - "md5": "4312e979f358970e942f8f3209f8c105", - "pid": "271329831", - "type": "bf:Place", + "authorized_access_point": "Plouy\u00e9 (Finist\u00e8re) - N\u00e9cropole m\u00e9rovingienne", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279494653", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271329831", + "value": "http://www.idref.fr/279494653", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb152884911", - "source": "BNF" } ], - "authorized_access_point": "Basse-Engadine (Grisons, Suisse ; vall\u00e9e)" - }, - { - "md5": "3277ed358eabd2292845e1ee6093e286", - "pid": "271329912", "note": [ { + "noteType": "dataSource", "label": [ - "Atlas Le Monde" - ], - "noteType": "dataSource" + "Crania armoricana... Corpus des cr\u00e2nes armoricains et bretons / Pierre-Roland Giot, 1961" + ] } ], + "pid": "279494653", "type": "bf:Place", + "md5": "a0eea5e0663bef18c8552e7a94ad1c2f" + }, + { + "authorized_access_point": "Plufur (C\u00f4tes-d'Armor) - N\u00e9cropole m\u00e9rovingienne", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279494688", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271329912", + "value": "http://www.idref.fr/279494688", "source": "IDREF" - }, + } + ], + "note": [ { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb121679559", - "source": "BNF" + "noteType": "dataSource", + "label": [ + "Crania armoricana... Corpus des cr\u00e2nes armoricains et bretons / Pierre-Roland Giot, 1961" + ] } ], - "authorized_access_point": "Alagna Valsesia (Italie)" + "pid": "279494688", + "type": "bf:Place", + "md5": "ccaf0b90e1597ba9b368bba8ae73f59c" }, { - "md5": "25447334e143de92d877617d80b78b46", - "pid": "271329998", - "type": "bf:Place", + "authorized_access_point": "Le Locle (Neuch\u00e2tel, Suisse) - Place du 29 F\u00e9vrier", "bnf_type": "sujet Rameau", - "narrower": [ - { - "authorized_access_point": "Tremezzina (Italie)" - } - ], + "identifier": "http://www.idref.fr/279501080", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271329998", + "value": "http://www.idref.fr/279501080", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb120937181", - "source": "BNF" } ], - "classification": [ + "note": [ { - "type": "bf:ClassificationDdc", - "classificationPortion": "914" + "noteType": "dataSource", + "label": [ + "Place du 29 F\u00e9vrier, Le Locle / Adequa (La Chaux-de-Fonds, Neuch\u00e2tel, Suisse) photographe, [1980-1990 ?]", + "Visualisation sur SITN- G\u00e9oportail du syst\u00e8me d'information du territoire neuch\u00e2telois https://sitn.ne.ch, 2024-07-19" + ] + }, + { + "noteType": "general", + "label": [ + "Carrefour routier et place situ\u00e9e entre la Grande-Rue et la Rue Marie-Anne-Calame \u00e0 hauteur du temple du Locle." + ] } ], - "authorized_access_point": "C\u00f4me, Lac de (Italie ; r\u00e9gion)" + "pid": "279501080", + "type": "bf:Place", + "md5": "e7fe3ce86f2e1d98ebfa2cca98c67f5b" }, { - "md5": "de2d02ceffb7fdf00951b1f34db2dcfb", - "pid": "271330031", + "authorized_access_point": "Long Point (Colo.)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/27950277X", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/27950277X", + "source": "IDREF" + } + ], "note": [ { + "noteType": "dataSource", "label": [ - "Wikipedia - http://de.wikipedia.org (2015-06-05)", - "Les sp\u00e9ciales de l'IGN / Europe : Suisse, 1994", - "Dict. historique de la Suisse - http://www.hls-dhs-dss.ch (2015-06-05)", - "Kaiseraugst - http://www.kaiseraugst.ch (2015-06-05)" - ], - "noteType": "dataSource" + "http://www.geonames.org/, 2024-07-19" + ] }, { + "noteType": "general", "label": [ - "Commune d'Argovie (district de Rheinfelden), \u00e0 la fronti\u00e8re germano-suisse sur le Rhin, face \u00e0 Augst (canton de B\u00e2le-Campagne). Elle est fond\u00e9e par l'arm\u00e9e romaine comme 'castrum' dans un secteur de la ville basse d'Augusta Raurica (vestiges). Apr\u00e8s avoir fait partie d'Augst (sous le premier nom d'Augst-im-Dorf, avant son appellation actuelle), elle s'en d\u00e9tache en 1442" - ], - "noteType": "general" + "Situ\u00e9 dans le comt\u00e9 de Garfield. Ne pas confondre avec d'autres montagnes du m\u00eame nom dans le m\u00eame comt\u00e9. Se r\u00e9f\u00e9rer aux coordonn\u00e9es" + ] } ], + "pid": "27950277X", "type": "bf:Place", + "md5": "93102ee73fc519e626b599f0eedfb008" + }, + { + "authorized_access_point": "Sens (Yonne) - Cath\u00e9drale Saint-\u00c9tienne - Tr\u00e9sor", "bnf_type": "sujet Rameau", - "closeMatch": [ - { - "source": "LCA", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/names/n85279520", - "source": "LCA" - }, - "authorized_access_point": "Kaiseraugst (Switzerland)" - } - ], + "identifier": "http://www.idref.fr/279503288", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271330031", + "value": "http://www.idref.fr/279503288", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb121618876", - "source": "BNF" - } - ], - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "914" } ], - "variant_access_point": [ - "Augst-im-Dorf (Suisse)", - "Augusta Raurica (Suisse ; ville ancienne)", - "Castrum Rauracense (Suisse ; ville ancienne)" - ], - "authorized_access_point": "Kaiseraugst (Suisse)" - }, - { - "md5": "d448ddbf5885fd7d8d9e7cb350031c18", - "pid": "271330163", "note": [ { + "noteType": "dataSource", "label": [ - "Port-Valais - http://www.port-valais.ch (2015-05-18)", - "Dict. historique de la Suisse - http://www.hls-dhs-dss.ch (2015-05-18)" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Commune du canton du Valais, district de Monthey, comprenant les villages du Bouveret et des Evouettes" - ], - "noteType": "general" + "aLes Tissus anciens du tr\u00e9sor de la cath\u00e9drale de Sens / Chanoine Eug\u00e8ne Chartraire, 1911" + ] } ], + "pid": "279503288", "type": "bf:Place", + "md5": "8ad4449a094f2cefd3afb0875f897b0b" + }, + { + "authorized_access_point": "Twin Peaks (Colo. ; mont)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279505264", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271330163", + "value": "http://www.idref.fr/279505264", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb16965305j", - "source": "BNF" } ], - "classification": [ + "note": [ { - "type": "bf:ClassificationDdc", - "classificationPortion": "914" + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-19" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Mesa" + ] } ], - "authorized_access_point": "Port-Valais (Suisse)" + "pid": "279505264", + "type": "bf:Place", + "md5": "1593fd9a381262e0d5ad71a15a230ef1" }, { - "md5": "d6b4979bc25ce4b11c55c651f3ff8027", - "pid": "271331658", - "type": "bf:Place", + "authorized_access_point": "Grenadier range (Colo. ; mont)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279507097", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271331658", + "value": "http://www.idref.fr/279507097", "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-19" + ] }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb152915042", - "source": "BNF" + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de San Juan" + ] } ], - "authorized_access_point": "Mauvoisin (Valais, Suisse)" + "pid": "279507097", + "type": "bf:Place", + "md5": "c00dfbb08c2dd00c555dad517c23dd39" }, { - "md5": "a572340ecc2df763bc1452e09d648602", - "pid": "271331712", - "type": "bf:Place", + "authorized_access_point": "Needle mountains (Colo. ; mont)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279507208", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271331712", + "value": "http://www.idref.fr/279507208", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15218260r", - "source": "BNF" } ], - "variant_access_point": [ - "Trient, Glacier du (Valais, Suisse)", - "Trient, Plateau du (Valais, Suisse)" - ], - "authorized_access_point": "Trient, Glacier plateau du (Valais, Suisse)" - }, - { - "md5": "698e19088dda25364160dadee9b9e871", - "pid": "27133181X", "note": [ { + "noteType": "dataSource", "label": [ - "Dictionnaire historique de la Suisse - http://www.hls-dhs-dss.ch/index.php (2010-07-17)" - ], - "noteType": "dataSource" - } - ], - "type": "bf:Place", - "broader": [ + "http://www.geonames.org/, 2024-07-19" + ] + }, { - "authorized_access_point": "Alpes L\u00e9pontines, Massif des" + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de San Juan et La Plata" + ] } ], + "pid": "279507208", + "type": "bf:Place", + "md5": "4543fb2b345b9d86877391f5e7c0bbb5" + }, + { + "authorized_access_point": "Le Locle (Neuch\u00e2tel, Suisse) - Piscine du Communal", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279516932", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/27133181X", + "value": "http://www.idref.fr/279516932", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15201346k", - "source": "BNF" } ], - "variant_access_point": [ - "Col de Nufenen (Valais / Tessin, Suisse)", - "Nufenenpass, Col de (Wallis / Tessin, Suisse)", - "Novena, passo della (Vallese / Ticino, Suisse ; Col)", - "Passo della Novena (Vallese / Ticino, Suisse ; Col)" - ], - "authorized_access_point": "Nufenen, Col de (Valais / Tessin, Suisse)" - }, - { - "md5": "49efe810d008874b3f3005a2d72a231c", - "pid": "271332352", "note": [ { + "noteType": "dataSource", "label": [ - "GeoNames - http://www.geonames.org (2018-10-10)", - "Wikipedia - https://de.wikipedia.org (2018-10-10)", - "Grand Larousse universel : Kleiner Walsertal", - "Cartes IGN / Pays, d\u00e9couverte du Monde : Autriche, 2016 : Kl. Walsertal", - "\u00d6sterreich Lex., 1966 : Kleines Walsertal" - ], - "noteType": "dataSource" + "[Piscine du Communal, Le Locle] / Adequa (La Chaux-de-Fonds, Neuch\u00e2tel, Suisse) photographe, [1980-1990 ?]", + "Visualisation sur SITN- G\u00e9oportail du syst\u00e8me d'information du territoire neuch\u00e2telois https://sitn.ne.ch, 2024-07-22", + "Site de la ville du Locle - Piscine du Communal : https://www.lelocle.ch/loisirs-manifestations/loisirs-et-sports/piscine-du-communal/, 2024-07-22" + ] }, { + "noteType": "general", "label": [ - "Vall\u00e9e des Alpes autrichiennes (Vorarlberg, district de Bregenz), contig\u00fce \u00e0 la Bavi\u00e8re (Allemagne). Elle englobe le territoire communal de Mittelberg et doit son nom aux Walser, peuple germanophone du Moyen \u00e2ge venu du Valais (Suisse)" - ], - "noteType": "general" + "Piscine en plein air situ\u00e9e dans le quartier du Communal au sud de la ville du Locle." + ] } ], + "pid": "279516932", "type": "bf:Place", + "md5": "cbc9156246a7957b5a0ee563a0f7a355" + }, + { + "authorized_access_point": "Morat (Fribourg, Suisse) - Ch\u00e2teau", "bnf_type": "sujet Rameau", - "closeMatch": [ - { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh92003686", - "source": "LCSH" - }, - "authorized_access_point": "Kleinwalsertal (Austria)" - } - ], + "identifier": "http://www.idref.fr/279522053", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271332352", + "value": "http://www.idref.fr/279522053", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb17764284z", - "source": "BNF" } ], - "classification": [ + "note": [ { - "type": "bf:ClassificationDdc", - "classificationPortion": "914" + "noteType": "dataSource", + "label": [ + "Das Schloss Murten : vom Schultheissen zum Oberamtmann = Le ch\u00e2teau de Morat : de l'avoyer au pr\u00e9fet , 2023" + ] } ], + "pid": "279522053", + "type": "bf:Place", "variant_access_point": [ - "Kleiner Walsertal (Autriche)", - "Kleines Walsertal (Autriche)" + "Fribourg, Suisse - Ch\u00e2teau de Morat", + "Schloss Murten (Freiburg, Schweiz)" ], - "authorized_access_point": "Kleinwalsertal (Autriche)" + "md5": "90c4c79722484d33112eabaf4e3302ba" }, { - "md5": "31d31894cc19716f0ac3f512237ea5c0", - "pid": "271332778", - "type": "bf:Place", + "authorized_access_point": "Kamrup (district, Indes)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279523505", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271332778", + "value": "http://www.idref.fr/279523505", "source": "IDREF" - }, + } + ], + "note": [ { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15766361s", - "source": "BNF" + "noteType": "dataSource", + "label": [ + "Fern flora of Madan Kamdev Hill Region : Kamrup District of Assam, India / Paresh Ch. Kalita and Dipak Konwar" + ] } ], - "authorized_access_point": "Arpille, Mont de l' (Valais, Suisse)" + "pid": "279523505", + "type": "bf:Place", + "md5": "beb7d409f287ed463526a70e013a72c8" }, { - "md5": "6bed3d2cfbd6d16bd036f4eb819a0e84", - "pid": "271332824", - "type": "bf:Place", + "authorized_access_point": "Maison de la Chimie, Paris", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279523858", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271332824", + "value": "http://www.idref.fr/279523858", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15288492c", - "source": "BNF" } ], - "authorized_access_point": "Haute-Engadine (Grisons, Suisse ; vall\u00e9e)" - }, - { - "md5": "bd9f6814578cf76d4ebecf36172bedab", - "pid": "271333081", "note": [ { + "noteType": "dataSource", + "label": [ + "Danielle Fauque, \u00ab Introduction : Aux origines de la Maison de la Chimie \u00bb, Revue d'histoire des sciences,\u200e 2016, p. 8-10" + ] + }, + { + "noteType": "general", "label": [ - "https://culture.gouv.fr/Espace-documentation/Repertoire-des-ressources-documentaires/Monuments-nationaux/Monastere-de-Saorge" - ], - "noteType": "dataSource" + "La maison de la Chimie est un centre de congr\u00e8s et de conf\u00e9rences." + ] } ], + "pid": "279523858", "type": "bf:Place", + "md5": "d089e42d8de89c290b07129739c2015c" + }, + { + "authorized_access_point": "Le Puy-en-Velay (Haute-Loire) - \u00c9glise Saint-Laurent", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279524072", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271333081", + "value": "http://www.idref.fr/279524072", "source": "IDREF" } ], - "authorized_access_point": "Saorge (Alpes-Maritimes) -- Monast\u00e8re" + "note": [ + { + "noteType": "dataSource", + "label": [ + "Application de la Photogramm\u00e9trie \u00e0 la restauration de l'\u00e9glise Saint-Laurent du Puy-en-Velay (Haute-Loire) / Minist\u00e8re des Travaux Publics et des Transports, Institut G\u00e9ographique National, 1963" + ] + }, + { + "noteType": "general", + "label": [ + "\u00c9glise class\u00e9e en 1906, contenant les entrailles du conn\u00e9table Bertrand du Guesclin" + ] + } + ], + "pid": "279524072", + "type": "bf:Place", + "md5": "3007111d95b18b7ad9fdc10f0fdd77b2" }, { - "md5": "108e51f237bc1cdeac314cb4fef20162", - "pid": "271333197", - "type": "bf:Place", + "authorized_access_point": "Festival dei Due Mondi, Spolete", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279524080", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271333197", + "value": "http://www.idref.fr/279524080", "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "A.C. Manni - R. Mencarelli (a cura di), Spoleto 1958, alle radici della storia. Il primo Festival dei Due Mondi, Spoleto 2017." + ] }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb170154986", - "source": "BNF" + "noteType": "general", + "label": [ + "Festival de musique classique et pluri-disciplinaire fond\u00e9 en 1958 par le compositeur Gian Carlo Menotti." + ] } ], - "authorized_access_point": "Orsieres (Valais, Suisse). Praz-de-Fort" + "pid": "279524080", + "type": "bf:Place", + "md5": "9eee25a586d46868530a57aed7b718f4" }, { - "md5": "fd94496f6f297bdbcf95da48e06a5d70", - "pid": "271333243", - "type": "bf:Place", + "authorized_access_point": "Kouvola (Finlande)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279532881", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271333243", + "value": "http://www.idref.fr/279532881", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb152817737", - "source": "BNF" } ], - "variant_access_point": [ - "Urserental, Vall\u00e9e (Uri, Suisse ; Vall\u00e9e)", - "Ursernthal, Vall\u00e9e (Uri, Suisse ; Vall\u00e9e)" - ], - "authorized_access_point": "Urseren, Vall\u00e9e d' (Uri, Suisse)" - }, - { - "md5": "cf6b32604ac5a558fc78a95726b0b060", - "pid": "271337214", "note": [ { + "noteType": "dataSource", "label": [ - "Bridge Orange : Issy-les-Moulineaux : VIGUIER architecture urbanisme paysage / texte de Christine Desmoulins, Archibooks + Sautereau \u00c9diteur, 2023", - "https://www.archistorm.com/realisation-bridge-orange-viguier/, 2023-08-04" - ], - "noteType": "dataSource" + "Suomen geologinen kartta 3113 = = Geological map of Finland : Maaper\u00e4kartta / Geologian tutkimuskeskus ; Laatinut Risto Tynni, 1970.", + "http://www.geonames.org/650861 2024-07-23" + ] }, { + "noteType": "general", "label": [ - "Si\u00e8ge social de l'entreprise Orange construit en 2021 par l'agence \"Viguier architecture urbanisme paysage\"" - ], - "noteType": "general" + "Ville finlandaise, r\u00e9gion de la Kymenlaakso (vall\u00e9e de la Kymi)" + ] } ], + "pid": "279532881", "type": "bf:Place", + "md5": "c4cbb3dcccdc8d349c65392892c1dba4" + }, + { + "authorized_access_point": "Le Locle (Neuch\u00e2tel, Suisse) - Patinoire du Communal", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279533497", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271337214", + "value": "http://www.idref.fr/279533497", "source": "IDREF" } ], - "variant_access_point": [ - "Bridge Orange (Issy-les-Moulineaux, France)", - "Si\u00e8ge social Orange (Issy-les-Moulineaux, France)" - ], - "authorized_access_point": "Issy-les-Moulineaux (France)" - }, - { - "md5": "60eef5d9179b256e1c265e31a3cd41b8", - "pid": "271438436", "note": [ { + "noteType": "dataSource", "label": [ - "Les vitraux de la cath\u00e9drale de Sion : une cat\u00e9ch\u00e8se en couleurs / Chapitre de la Cath\u00e9drale de Sion, [2020]", - "https://fr.wikipedia.org/wiki/Cath%C3%A9drale_Notre-Dame_de_Sion, 2023-08-21" - ], - "noteType": "dataSource" + "[Patinoire du Communal, Le Locle] / Adequa (La Chaux-de-Fonds, Neuch\u00e2tel, Suisse) photographe, [1980-1990 ?]", + "Site NotreHistoire.ch : https://notrehistoire.ch/entries/LJYMJJPVB5R, 2024-07-23", + "Site de la Ville du Locle - Patinoire du Communal : https://www.lelocle.ch/loisirs-manifestations/loisirs-et-sports/patinoire-du-communal/, 2024-07-23" + ] }, { + "noteType": "general", "label": [ - "La cath\u00e9drale Notre-Dame de Sion (parfois appel\u00e9e Notre-Dame du Glarier) est l\u2019\u00e9glise principale du dioc\u00e8se de Sion" - ], - "noteType": "general" + "Patinoire situ\u00e9e dans le quartier du Communal au sud de la ville du Locle. En plein air jusqu'en 2004, date de sa couverture." + ] } ], + "pid": "279533497", "type": "bf:Place", + "md5": "e7dfd3363d7976055c67394ff552d47d" + }, + { + "authorized_access_point": "Mont Chemin", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279535783", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271438436", + "value": "http://www.idref.fr/279535783", "source": "IDREF" - }, - { - "type": "bf:Nbn", - "value": "(DE-101)042499909", - "source": "GND" } ], - "variant_access_point": [ - "Cath\u00e9drale Notre-Dame du Glarier (Sion, Valais, Suisse)", - "Cath\u00e9drale de Sion (Sion, Valais, Suisse)", - "Liebfrauenkathedrale (Sion, Valais, Suisse)", - "Cath\u00e9drale Notre-Dame de Sion (Sion, Valais, Suisse)" - ], - "authorized_access_point": "Sion (Valais, Suisse) - Cath\u00e9drale Notre-Dame du Glarier" - }, - { - "md5": "e89cc872e9b97e80d99e49464ca4fe74", - "pid": "275775569", "note": [ { + "noteType": "dataSource", "label": [ - "Tr\u00e9sors naturels du bois de Finges / Ren\u00e9-Pierre Bille, Philippe Werner, 1986", - "https://www.pfyn-finges.ch/fr/experience/carte-du-parc/offer-detail/site-protege-du-bois-de-finges-1991, 2024-02-14", - "https://hls-dhs-dss.ch/fr/articles/008553/2010-09-28/, 2024-02-14" - ], - "noteType": "dataSource" + "https://fr.wikipedia.org/wiki/Mont_Chemin, 2024-07-23" + ] }, { + "noteType": "general", "label": [ - "R\u00e9serve naturelle" - ], - "noteType": "general" + "Le mont Chemin est une montagne situ\u00e9e dans le canton du Valais en Suisse." + ] } ], + "pid": "279535783", "type": "bf:Place", + "md5": "648ff965dcf0d524ab3435074e769da6" + }, + { + "authorized_access_point": "Nice (Alpes-Maritimes) - Quartier Carabacel", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279536011", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/275775569", + "value": "http://www.idref.fr/279536011", "source": "IDREF" - }, - { - "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Bois_de_Finges", - "source": "WIKIPEDIA" - }, + } + ], + "note": [ { - "type": "bf:Nbn", - "value": "(DE-101)043187048", - "source": "GND" + "noteType": "dataSource", + "label": [ + "L'architecture dans le quartier Carabacel / Michel Steve, 2001 ?" + ] } ], + "pid": "279536011", + "type": "bf:Place", "variant_access_point": [ - "Bois de Finges (Valais, Suisse)", - "Pfynwald (Valais, Suisse)", - "For\u00eat de Finges (Valais, Suisse)" + "Quartier Carabacel" ], - "authorized_access_point": "Finges, Bois de (Valais, Suisse)" + "md5": "5ea86f265e19a9a55c3108feba36fce9" }, { - "md5": "863166d01c2ec93663e377eefb07e6aa", - "pid": "276510216", + "authorized_access_point": "Sutz-Lattrigen (Berne, Suisse)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279537719", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279537719", + "source": "IDREF" + } + ], "note": [ { + "noteType": "dataSource", "label": [ - "111 lieux des Alpes vaudoises \u00e0 ne pas manquer / Benjamin Amiguet, Marc Voltenauer, 2022", - "https://fr.wikipedia.org/wiki/Alpes_vaudoises, 2024-03-20", - "https://search.ortsnamen.ch/fr/record/803319560/, 2024-03-20" - ], - "noteType": "dataSource" + "D'un lac \u00e0 l'autre : architecture compar\u00e9e de deux villages lacustres du milieu du IVe mill\u00e9naire avant J.-C. dans la r\u00e9gion des Trois-Lacs (Suisse) / Michel Mauvilly, Fabien Langenegger. In : Habitations et habitat du N\u00e9olithique \u00e0 l'\u00c2ge du bronze en France et ses marges, 2018, pages 261-267", + "Dictionnaire historique de la Suisse, https://hls-dhs-dss.ch/fr/articles/000453/2019-04-03, 2024-07-23" + ] }, { + "noteType": "general", "label": [ - "Les Alpes vaudoises sont un ensemble montagneux des Alpes suisses situ\u00e9 principalement dans les cantons de Vaud et du Valais" - ], - "noteType": "general" + "Commune du canton de Berne, arrondissement administratif de Bienne, sur la rive sud du lac de Bienne, comprenant les villages de Sutz et de Lattrigen" + ] } ], + "pid": "279537719", "type": "bf:Place", + "md5": "2d5def5828b332a5ea3296ea679965c6" + }, + { + "authorized_access_point": "Cerro Colorado (Argentine ; parc naturel)", "bnf_type": "sujet Rameau", - "narrower": [ - { - "authorized_access_point": "Grand Muveran (Suisse ; mont)" - }, + "identifier": "http://www.idref.fr/279539363", + "identifiedBy": [ { - "authorized_access_point": "Les Diablerets (Suisse ; massif)" + "type": "uri", + "value": "http://www.idref.fr/279539363", + "source": "IDREF" } ], + "pid": "279539363", + "type": "bf:Place", + "md5": "2a5dfb34f3d5963418d6c81fc5ed3002" + }, + { + "authorized_access_point": "Quartier du Panier (Marseille)", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279562098", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/276510216", + "value": "http://www.idref.fr/279562098", "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "https://fr.wikipedia.org/wiki/Le_Panier" + ] }, { - "type": "bf:Nbn", - "value": "(DE-101)944449360", - "source": "GND" + "noteType": "general", + "label": [ + "2e Arrondissement" + ] } ], + "pid": "279562098", + "type": "bf:Place", "variant_access_point": [ - "Waadtl\u00e4nder Alpen (Suisse)", - "Alpi Valdesi (Suisse)" + "Le Panier (2e arrondissement de Marseille)" ], - "authorized_access_point": "Alpes vaudoises (Suisse)" + "md5": "edbb4044063c3042ac908b563208b1f2" }, { - "md5": "dfc583a3a820e4874eaf2e436aab62b5", - "pid": "276534921", - "note": [ + "authorized_access_point": "Le Locle (Neuch\u00e2tel, Suisse) - Rue Jehan-Droz", + "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279571550", + "identifiedBy": [ { - "label": [ - "Coordonn\u00e9es g\u00e9ographiques : E 43\u00b020' - E 50\u00b015' / S 12\u00b0 - S 25\u00b030'" - ], - "noteType": "general" + "type": "uri", + "value": "http://www.idref.fr/279571550", + "source": "IDREF" } ], - "type": "bf:Place", - "broader": [ + "note": [ { - "authorized_access_point": "Afrique" + "noteType": "dataSource", + "label": [ + "[Ancienne usine \u00e9lectrique, Le Locle] / Adequa (La Chaux-de-Fonds, Neuch\u00e2tel, Suisse) photographe, [1980-1990 ?]", + "Visualisation sur SITN- G\u00e9oportail du syst\u00e8me d'information du territoire neuch\u00e2telois https://sitn.ne.ch, 2024-07-24" + ] + }, + { + "noteType": "general", + "label": [ + "1\u00e8re rue orient\u00e9e nord-sud \u00e0 l'ouest de l'H\u00f4tel-de-Ville du Locle." + ] } ], + "pid": "279571550", + "type": "bf:Place", + "md5": "7538ca3d41ab610fa8905ba5ecdf0cb6" + }, + { + "authorized_access_point": "Le Locle (Neuch\u00e2tel, Suisse)", "bnf_type": "sujet Rameau", + "identifier": "http://www.idref.fr/279571658", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/276534921", + "value": "http://www.idref.fr/279571658", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15325769w", - "source": "BNF" - }, + } + ], + "note": [ { - "type": "bf:Nbn", - "value": "(DE-101)040744256", - "source": "GND" + "noteType": "dataSource", + "label": [ + "[Ancienne usine \u00e9lectrique, Le Locle] / Adequa (La Chaux-de-Fonds, Neuch\u00e2tel, Suisse) photographe, [1980-1990 ?]", + "Visualisation sur SITN- G\u00e9oportail du syst\u00e8me d'information du territoire neuch\u00e2telois https://sitn.ne.ch, 2024-07-24" + ] }, { - "type": "uri", - "value": "http://viaf.org/viaf/146036991", - "source": "VIAF" + "noteType": "general", + "label": [ + "Rue des Jeanneret" + ] } ], - "relation_pid": { - "type": "redirect_from", - "value": "027238180" - }, - "variant_access_point": [ - "R\u00e9publique Malgache (1960-)", - "Malgache, R\u00e9publique (1960-)", - "Madagascar (1960-)" - ], - "authorized_access_point": "Madagascar" + "pid": "279571658", + "type": "bf:Place", + "md5": "c5be134fb333acfc4f354be6825adba8" } ] \ No newline at end of file diff --git a/data/pidref_metadata.csv b/data/pidref_metadata.csv index 68237c2a..5b2e26ac 100644 --- a/data/pidref_metadata.csv +++ b/data/pidref_metadata.csv @@ -1,268 +1,861 @@ -2024-07-16 19:07:13.114461 2024-07-16 19:07:13.11447 c6442462-17ed-42ff-aa7d-283c154f1eff {"md5": "b5ec02204d01ac2897dc3044c9406f8f", "pid": "027227812", "note": [{"label": ["Atlas universalis. GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027227812", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11931552b", "source": "BNF"}], "variant_access_point": ["Dantzig (Pologne)", "Gedania", "Gedani", "Danzig (Pologne)"], "authorized_access_point": "Gdańsk (Pologne)"} 1 -2024-07-16 19:07:13.224633 2024-07-16 19:07:13.224636 49096416-cf21-43ac-a77b-325402f05b43 {"md5": "c0ace3f9408f195aa3ceb8c5d0d180bc", "pid": "027250504", "note": [{"label": ["Dict. communes, 1984 - Saint-Sauveur, également appelée Saint-Sauveur-de-Givre-en-Mai, est une ancienne commune française située dans le département des Deux-Sèvres et la région Poitou-Charentes. Elle est associée à la commune de Bressuire depuis 1973."], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027250504", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11854138n", "source": "BNF"}], "variant_access_point": ["Saint-Sauveur-de-Givre-en-Mai"], "authorized_access_point": "Bressuire (Deux-Sèvres)"} 1 -2024-07-16 19:07:13.273119 2024-07-16 19:07:13.273123 c22fd9c5-c6a7-4939-817a-f053a11fd3ae {"md5": "0c834e3106967e9a84fbe5ba0e59e3c9", "pid": "263259935", "note": [{"label": ["Bettmeralp : das Wimmelbuch / Gabriel Giger, 2022", "https://hls-dhs-dss.ch/fr/articles/050027/2016-10-27/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263259935", "source": "IDREF"}], "authorized_access_point": "Bettmeralp (Suisse)"} 1 -2024-07-16 19:07:13.318598 2024-07-16 19:07:13.318601 567c537f-8448-4148-b556-7c6f02bd717d {"md5": "c0b78a6facbce91ddba7bedfe156ccca", "pid": "271321628", "note": [{"label": ["Sowjetischer Pavillon : Substanz oder Erscheinung / Peter Zirkel (Hg.) ; [mit Fotografien von] Till Schuster, M Books, 2021", "https://peterzirkel.de/sowjetischer-pavillon/, 2023-08-02"], "noteType": "dataSource"}, {"label": ["Construit en 1924 comme hall d'exposition par les architectes Oskar Pusch et Carl Krämer. Le bâtiment a servi de pavillon d'exposition pour l'URSS. Depuis le début des années 1990, il est utilisé comme archives municipales"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271321628", "source": "IDREF"}], "variant_access_point": ["Sowjetischer Pavillon (Leipzig, Allemagne)", "Achilleion (Leipzig, Allemagne)", "Pavillon soviétique (Leipzig, Allemagne)"], "authorized_access_point": "Leipzig (Allemagne)"} 1 -2024-07-16 19:07:13.365432 2024-07-16 19:07:13.365435 d7e1a9a8-9cda-4426-a419-8bd02954bc35 {"md5": "fb4b44bbfa5c9600c4cca5ed11b72bb0", "pid": "271323337", "note": [{"label": ["Atlas universel / \\"Le Monde\\", Sélection du \\"Reader's digest\\", 1993", "Ville de Sierre - http://www.sierre.ch (2014-09-12)"], "noteType": "dataSource"}, {"label": ["Ville du canton du Valais, district de Sierre"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCA", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/names/n85344685", "source": "LCA"}, "authorized_access_point": "Sierre (Switzerland)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271323337", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb169098180", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "914"}], "variant_access_point": ["Siders (Suisse)"], "authorized_access_point": "Sierre (Suisse)"} 1 -2024-07-16 19:07:13.450165 2024-07-16 19:07:13.450177 b31c595a-d2b2-488c-b272-342e37ec7d9b {"md5": "90c31e33485c8af3a47b2f88f11d214a", "pid": "271323353", "note": [{"label": ["Site officiel de la commune - http://www.kippel.ch (2010-07-16)"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271323353", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15189407c", "source": "BNF"}], "variant_access_point": ["Kypil (Valais, Suisse)"], "authorized_access_point": "Kippel (Valais, Suisse)"} 1 -2024-07-16 19:07:13.528189 2024-07-16 19:07:13.528204 65d6b2de-654f-4531-a681-85b99d144d4c {"md5": "528fe09670e33aa44d7d5d95eb48653d", "pid": "271323426", "note": [{"label": ["Wikipédia - http://fr.wikipedia.org (2014-04-24)", "Guides bleus : Suisse, 1991", "Dict. historique de la Suisse - http://www.hls-dhs-dss.ch (2014-04-24)"], "noteType": "dataSource"}, {"label": ["Ancienne commune du Valais, qui a fusionné le 1er janvier 2009 avec les 5 autres communes du val d'Anniviers pour former la commune d'Anniviers"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCA", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/names/n83221461", "source": "LCA"}, "authorized_access_point": "Grimentz (Switzerland)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271323426", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12068132h", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "914"}], "variant_access_point": ["Anniviers (Suisse)"], "authorized_access_point": "Grimentz (Suisse)"} 1 -2024-07-16 19:07:13.607293 2024-07-16 19:07:13.607307 d99915f8-08d9-4013-a07b-325b33eec46a {"md5": "e6de4217e2eb56fe8a5e953e2e1c6b4b", "pid": "271323485", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271323485", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12131962h", "source": "BNF"}], "authorized_access_point": "Collombey-Muraz (Suisse)"} 1 -2024-07-16 19:07:14.328011 2024-07-16 19:07:14.328025 d4c68518-7984-4b7c-bf4f-ab5517254407 {"md5": "0b75ba28e5ecb83e276f6ac529886c46", "pid": "271323957", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271323957", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb170137616", "source": "BNF"}], "authorized_access_point": "Leysin (Vaud, Suisse)"} 1 -2024-07-16 19:07:13.780607 2024-07-16 19:07:13.780619 97960b8f-bbea-4353-8d90-4d1c6735f660 {"md5": "8c7e59deb2c8d41a5e8252a60a75da50", "pid": "271323523", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271323523", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb17010914h", "source": "BNF"}], "variant_access_point": ["Val d'Illiez (Valais, Suisse ; vallée)"], "authorized_access_point": "Illiez, Val d' (Valais, Suisse ; vallée)"} 1 -2024-07-16 19:07:13.866205 2024-07-16 19:07:13.866225 a2008dd5-a197-4174-bd22-80740243fb8f {"md5": "2db810daa89f34f9a8a89efbfc700021", "pid": "271323566", "note": [{"label": ["Wikipédia : Pays des Trois-Lacs - https://fr.wikipedia.org (2016-01-15)", "Wikipedia : Drei-Seen-Land - https://de.wikipedia.org (2016-01-15)", "Drei-Seen-Land / Pays des Trois-Lacs - http://www.bielersee.ch (2016-01-15)", "Jura & Trois-Lacs - http://www.paysdestroislacs.ch (2016-01-15)"], "noteType": "dataSource"}, {"label": ["Région (notamment viticole) du nord-ouest de la Suisse, autour des trois lacs de Bienne, Morat et Neuchâtel (ainsi qu'une partie du bassin moyen de l'Aar), recouvrant pour partie 3 cantons de la Suisse romande (Fribourg, Neuchâtel, Vaud) et 1 de la Suisse alémanique (Berne)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271323566", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb170172206", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "914"}], "variant_access_point": ["Drei-Seen-Land (Suisse)", "Pays des Trois-Lacs (Suisse)", "Région des Trois-Lacs (Suisse)", "Trois-Lacs (Suisse ; région)"], "authorized_access_point": "Trois-Lacs, Pays des (Suisse)"} 1 -2024-07-16 19:07:14.018754 2024-07-16 19:07:14.018769 260f80c3-cde7-4203-9b79-a38d9c3d0792 {"md5": "10c57f8501c022e40c13a450cb672948", "pid": "271323663", "note": [{"label": ["Geonames - http://www.geonames.org (2014-09-12)", "Atlas universel / \\"Le Monde\\", Sélection du \\"Reader's digest\\", 1993"], "noteType": "dataSource"}, {"label": ["Commune du canton du Valais"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCA", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/names/n83239447", "source": "LCA"}, "authorized_access_point": "Vouvry (Switzerland)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271323663", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16909821w", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "914"}], "authorized_access_point": "Vouvry (Suisse)"} 1 -2024-07-16 19:07:14.073101 2024-07-16 19:07:14.073103 8f81982d-b7e3-45bb-9bdd-f4eedd974a40 {"md5": "daf5485db2ea0beba624a685a79844b5", "pid": "27132368X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/27132368X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb169778199", "source": "BNF"}], "authorized_access_point": "Grächen (Valais, Suisse)"} 1 -2024-07-16 19:07:14.176176 2024-07-16 19:07:14.176188 8f6e1c98-024e-4143-b5ec-2c3dceb68f72 {"md5": "2646327eb078c75fa4466625a6f24280", "pid": "271323728", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271323728", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb170109286", "source": "BNF"}], "authorized_access_point": "Troistorrents (Valais, Suisse)"} 1 -2024-07-16 19:07:14.251785 2024-07-16 19:07:14.251794 66b73efd-194e-4935-8a6e-d3b99ab6bda1 {"md5": "ee42f3e7c54b5e6ae44747e3cc551352", "pid": "271323752", "note": [{"label": ["Dictionnaire historique de la Suisse - http://www.hls-dhs-dss.ch/textes/f/F2757.php (2010-07-16)"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271323752", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15171340s", "source": "BNF"}], "variant_access_point": ["Uffen der Blattun (Valais, Suisse)", "Eisten (Valais, Suisse)", "Ried (Valais, Suisse)", "Weissenried (Valais, Suisse)", "Fafleralp (Valais, Suisse)", "Kühmatt (Valais, Suisse)"], "authorized_access_point": "Blatten (Valais, Suisse)"} 1 -2024-07-16 19:07:14.118144 2024-07-16 19:52:14.094964 bf17885b-aa8c-4e43-8e52-bb56e1dcfd3d {"md5": "4e4b604b1ec26ac068d307d8ca30964e", "pid": "271323698", "note": [{"label": ["Coordonnées géographiques : E 7°48' / N 46°11'"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271323698", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15301322r", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)952907682", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/5819169442791125340000", "source": "VIAF"}], "variant_access_point": ["Zaniglas", "Saniglaas"], "authorized_access_point": "Saint Nicolas (Valais, Suisse)"} 2 -2024-07-16 19:07:14.419728 2024-07-16 19:07:14.419741 45fb2325-cdc1-48b7-838a-764734799844 {"md5": "1e2a3bc8ebc1159a505cf80551927955", "pid": "271323973", "note": [{"label": ["L'atlas National geographic, 2007", "Petit Robert des noms propres 2015 (art. : Morat [ville])", "Grand Larousse universel (art. : Morat [ville])", "Guides Voir : Suisse, 2006"], "noteType": "dataSource"}, {"label": ["Lac de Suisse romande (canton de Fribourg), proche de celui de Neuchâtel"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85087214", "source": "LCSH"}, "authorized_access_point": "Morat, Lake of (Switzerland)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271323973", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb170195106", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "914"}], "variant_access_point": ["Murtensee (Suisse)"], "authorized_access_point": "Morat, Lac de (Suisse)"} 1 -2024-07-16 19:07:14.490674 2024-07-16 19:07:14.490683 b6910b2c-383e-4cab-86dc-6438657a1fb5 {"md5": "2021cb4a2bf67d4b37d77322b097296d", "pid": "271324015", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271324015", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb153071261", "source": "BNF"}], "authorized_access_point": "Moutier (Berne, Suisse)"} 1 -2024-07-16 19:07:14.569993 2024-07-16 19:07:14.570001 de5b0b53-70a4-45f1-bbbf-32266e01b856 {"md5": "51a109a94d96fbdad1b01f4740998ccb", "pid": "271324031", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271324031", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15170908q", "source": "BNF"}], "authorized_access_point": "Bex (Vaud, Suisse)"} 1 -2024-07-16 19:07:14.657505 2024-07-16 19:07:14.657516 0e2777bb-1e1c-47d8-81c5-e8bace0ee77e {"md5": "259dcb7e8c9441dd436351a9d0f6602f", "pid": "271324058", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271324058", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15292722s", "source": "BNF"}], "variant_access_point": ["Hauderes, Les (Valais, Suisse)"], "authorized_access_point": "Les Hauderes (Valais, Suisse)"} 1 -2024-07-16 19:07:14.733272 2024-07-16 19:07:14.733281 44ff028b-8c98-493a-b5c2-a8eb75fa24e5 {"md5": "f4e58ef90fee591b3056b8978661938c", "pid": "271324074", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271324074", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15286338t", "source": "BNF"}], "authorized_access_point": "Saas Grund (Valais, Suisse)"} 1 -2024-07-16 19:07:14.812282 2024-07-16 19:07:14.812298 a7f25165-f11e-4b5d-8cf4-c782161771cf {"md5": "be627bc82578b05cb24254460bfc269a", "pid": "271324562", "note": [{"label": ["L'apothicairerie de l'hôpital de Dax / Xavier Petitcol, 2023"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271324562", "source": "IDREF"}], "authorized_access_point": "Dax (Landes)"} 1 -2024-07-16 19:07:14.899815 2024-07-16 19:07:14.899827 2d430cbd-5f14-4d32-ae76-1bf6086b572c {"md5": "d43e35c11f9a16ed068d502e3e090c93", "pid": "271326441", "note": [{"label": ["Atlas universalis (Val di Gressoney)", "Valle d'Aosta-Vallée d'Aoste - http://www.regione.vda.it (2006-04-20)"], "noteType": "dataSource"}, {"label": ["Vallée du nord-est du Val d'Aoste au pied du Mont Rose, drainée par le Lys. Elle est habitée depuis le 13e siècle par des Valaisiens (Walser) germanophones"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85057315", "source": "LCSH"}, "authorized_access_point": "Gressoney Valley (Italy)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271326441", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12725205j", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "914"}], "variant_access_point": ["Gressoney, Val di (Italie)", "Gressoney, Valle di (Italie)", "Gressoneytal (Italie)", "Lys, Vallée du (Italie)", "Val de Gressoney (Italie)"], "authorized_access_point": "Gressoney, Val de (Italie)"} 1 -2024-07-16 19:07:14.99392 2024-07-16 19:07:14.99393 6b5447cb-8db4-437f-93a9-52c98d19e5b6 {"md5": "2f570620f8f7ce96a69e3a52d9f29e75", "pid": "271326476", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271326476", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15312266j", "source": "BNF"}], "authorized_access_point": "Randa (Valais, Suisse)"} 1 -2024-07-16 19:07:15.079435 2024-07-16 19:07:15.079444 ff1c3a27-75a3-47d8-9416-a7659715a08f {"md5": "038450104d2161ce3dff42a03912a8fe", "pid": "271326484", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271326484", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15288490p", "source": "BNF"}], "variant_access_point": ["Engadin (Grisons, Suisse ; vallée)", "Caput Oeni"], "authorized_access_point": "Engadine (Grisons, Suisse ; vallée)"} 1 -2024-07-16 19:07:15.130343 2024-07-16 19:07:15.130347 535b307a-bdff-4e3d-bc6d-26d30f664bc2 {"md5": "a2f78ce1651db1de4f9d2c2d1c60f3fd", "pid": "271326506", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271326506", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb152863395", "source": "BNF"}], "authorized_access_point": "Saas Almagell (Valais, Suisse)"} 1 -2024-07-16 19:07:15.173962 2024-07-16 19:07:15.173966 cdf07be2-b578-4b3a-95d1-1f76972be4ff {"md5": "8b1fb2bc02b04bb0a4d7aa9f9f6b74b4", "pid": "271326514", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271326514", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb170155227", "source": "BNF"}], "authorized_access_point": "Grand Combin (Valais, Suisse ; mont)"} 1 -2024-07-16 19:07:15.239582 2024-07-16 19:07:15.239595 fdf264ee-be7f-4eb0-af6b-f0ecbb498d3c {"md5": "6cf76fe72d44f50fdd37bdb86488cd5e", "pid": "271326522", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271326522", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb170113472", "source": "BNF"}], "authorized_access_point": "Trient (Valais, Suisse)"} 1 -2024-07-16 19:07:15.322051 2024-07-16 19:07:15.322063 0fcea29f-08b5-469e-a2a9-4dde023155fa {"md5": "3e1fc12e6dfe9f39c2be05a512766caa", "pid": "271326530", "note": [{"label": ["Dictionnaire historique de la Suisse - http://www.hls-dhs-dss.ch/index.php (2010-07-17)"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271326530", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15285465r", "source": "BNF"}], "variant_access_point": ["Binn (Wallis, Suisse)", "Buen (Valais, Suisse)", "Buyn (Valais, Suisse)", "Bun (Valais, Suisse)", "Schmidigehischere (Valais, Suisse)", "Ze Binne (Valais, Suisse)", "Wilere (Valais, Suisse)", "Giesse (Valais, Suisse)", "Heiligkreuz (Valais, Suisse)"], "authorized_access_point": "Binn (Valais, Suisse)"} 1 -2024-07-16 19:07:15.395979 2024-07-16 19:07:15.395994 36cac329-b31b-4476-bd24-36ca93898d0c {"md5": "17b03f7f2fc10ce546261142583e1bbd", "pid": "271326557", "note": [{"label": ["GeoNames : glacier du Giétro - http://www.geonames.org (2020-06-17)", "Wikipédia : Glacier du Giétro - https://fr.wikipedia.org (2020-06-10)", "Les risques naturels en montagnes / F. Naaim-Bouvet, D. Richard, 2015 (p. 220", "Dict. historique de la Suisse (art. : Bagnes, Val de ; Bâtraz, La ; Glaciers ; Inondations ; Venetz, Ignace) - https://hls-dhs-dss.ch (2020-06-17)", "Examen de l'apologie des travaux du glacier du Giétroz / J.-J. Blanc, 1825", "Glacier-Climat.com : glacier du Giétro/Giétroz - https://www.glaciers-climat.com (2020-06-17)"], "noteType": "dataSource"}, {"label": ["Glacier du sud-ouest des Alpes valaisanes, descendant du Mont Blanc de Cheilon, à hauteur du barrage de Mauvoisin. Souvent en mouvement, ses débâcles causèrent des désagréments en aval, notamment en juin 1818, lorsque la digue du barrage céda soudainement, provoquant une inondation importante du val de Bagnes en contrebas, causant la mort de 44 personnes. Il porte le nom d'un village de la commune de Finhaut"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271326557", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb17873174h", "source": "BNF"}], "classification": [{"name": "Sciences de la Terre", "type": "bf:ClassificationDdc", "classificationPortion": "550"}, {"type": "bf:ClassificationDdc", "classificationPortion": "914"}], "variant_access_point": ["Ghiacciaio del Giétroz (Suisse)", "Giétro, Glacier du (Suisse)", "Gietrozgletscher (Suisse)", "Glacier de Giétro (Suisse)", "Glacier de Giétroz (Suisse)", "Glacier du Giétro (Suisse)", "Glacier du Giétroz (Suisse)"], "authorized_access_point": "Giétroz, Glacier de (Suisse)"} 1 -2024-07-16 19:07:15.488345 2024-07-16 19:07:15.488354 da5dfc6f-0190-43ae-afdf-f4a15087f640 {"md5": "8eeef5e50103b876b3641b2e3258678c", "pid": "271326603", "note": [{"label": ["https://www.beaumontenveron.fr"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271326603", "source": "IDREF"}], "authorized_access_point": "Beaumont-en-Véron"} 1 -2024-07-16 19:07:15.565144 2024-07-16 19:07:15.565151 6a441b34-d15b-43d7-bd23-817c9527af10 {"md5": "ae1ab489aa4d93bb05af2b76e6f435f7", "pid": "271326670", "note": [{"label": ["https://www.saint-germain-sur-vienne.com/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271326670", "source": "IDREF"}], "authorized_access_point": "Saint-Germain-sur-Vienne (Indre-et-Loire)"} 1 -2024-07-16 19:07:15.64833 2024-07-16 19:07:15.648344 ddba7d1e-46d5-4daa-a5c1-f79067857f87 {"md5": "3008d11c7a98543768496691079e62e2", "pid": "271326700", "note": [{"label": ["https://www.annuaire-mairie.fr/mairie-pommiers-30.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271326700", "source": "IDREF"}], "authorized_access_point": "Pommiers (Gard)"} 1 -2024-07-16 19:07:15.73033 2024-07-16 19:07:15.730345 603c305d-aaf7-4e58-af8e-70f0404a22e7 {"md5": "72a54d2b0573f85cc2a0ea5df023b5c0", "pid": "271326727", "note": [{"label": ["https://www.annuaire-mairie.fr/mairie-couziers.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271326727", "source": "IDREF"}], "authorized_access_point": "Couziers (Indre-et-Loire)."} 1 -2024-07-16 19:07:15.807606 2024-07-16 19:07:15.807619 c3cd0227-5267-42c5-9e6e-8e081170447e {"md5": "32f0f99c66cb112b827bc1afef4ee28c", "pid": "271326751", "note": [{"label": ["https://cizay-la-madeleine.fr"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271326751", "source": "IDREF"}], "authorized_access_point": "Cizay-la-Madeleine (Maine-et-Loire)"} 1 -2024-07-16 19:07:15.881157 2024-07-16 19:07:15.881165 65b312bf-bea0-4764-a551-b9222cbc0e10 {"md5": "09929c4b42d8faeb7238f29ece031bfc", "pid": "27132676X", "note": [{"label": ["Les Incas fondent un empire autour de Cuzco, en 1532 Pizzaro s'empare de Cuzco et fait exécuter Atahualpa"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/27132676X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15366294s", "source": "BNF"}], "variant_access_point": ["Incas, Empire des"], "authorized_access_point": "Pérou, Empire Inca du (11..-1532)"} 1 -2024-07-16 19:07:15.95287 2024-07-16 19:07:15.952882 3f6cdd5b-c891-4816-891c-09a6b15a49d2 {"md5": "953fb1d993f4a1543e446e656769b715", "pid": "271326778", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271326778", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb120482807", "source": "BNF"}], "authorized_access_point": "Monthey (Suisse ; région)"} 1 -2024-07-16 19:07:16.032021 2024-07-16 19:07:16.032033 6c6e13f7-a048-4b6d-a6e1-5055cbcc41cf {"md5": "4612fb997297fa1b39941851ac704c6c", "pid": "271326786", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271326786", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15291163g", "source": "BNF"}], "authorized_access_point": "Fionnay (Valais, Suisse)"} 1 -2024-07-16 19:07:16.1115 2024-07-16 19:07:16.111511 a470a2f1-0d97-49dc-a0a1-165b6a8df8f0 {"md5": "1d2c333e6182f4926619966f42fde0df", "pid": "271326794", "note": [{"label": ["Les spéciales de l'IGN / Europe : Suisse, 1994", "Dict. historique de la Suisse - http://www.hls-dhs-dss.ch (2016-01-16)", "Stadtgemeide Brig-Glis - http://www.brig-glis.ch (2016-01-11)"], "noteType": "dataSource"}, {"label": ["Village du Valais, dans le Haut-Valais sur le Rhône, juste avant Glis, (ancienne) commune à laquelle il était attaché, aujourd'hui composante de la commune de Brigue-Glis"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCA", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/names/nb2015012569", "source": "LCA"}, "authorized_access_point": "Gamsen (Switzerland)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271326794", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb170165930", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "914"}], "variant_access_point": ["Brigue-Glis (Suisse)"], "authorized_access_point": "Gamsen (Suisse)"} 1 -2024-07-16 19:07:16.166887 2024-07-16 19:07:16.16689 20b8743f-2d30-439c-9729-411455590c46 {"md5": "f641e4e732da482d91d70722a46460ea", "pid": "271326808", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271326808", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16981690w", "source": "BNF"}], "authorized_access_point": "Martigny (Valais, Suisse). Château de la Bâtiaz"} 1 -2024-07-16 19:07:16.215381 2024-07-16 19:07:16.215384 f58a2048-5c78-4d3f-8e7a-ac99e0db0a7c {"md5": "60f765323a605bacb4a828eb8a76b9cd", "pid": "271326824", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271326824", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15331899b", "source": "BNF"}], "authorized_access_point": "Issime (Val d'Aoste, Italie)"} 1 -2024-07-16 19:07:16.272506 2024-07-16 19:07:16.272516 2836ca5e-f1d1-4568-a630-e833df5d9587 {"md5": "da2a7da38069a326ab6fb6e713c66fdc", "pid": "271326832", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271326832", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb17015586g", "source": "BNF"}], "variant_access_point": ["Lac de Champex (Valais, Suisse)"], "authorized_access_point": "Champex, Lac de (Valais, Suisse)"} 1 -2024-07-16 19:07:16.351467 2024-07-16 19:07:16.351479 31cad28d-ba8d-4482-b255-040fa2e01891 {"md5": "820b141d4c8478d915a1a7b2c1665341", "pid": "271326840", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271326840", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb162621083", "source": "BNF"}], "authorized_access_point": "Anatolie (Turquie ; région)"} 1 -2024-07-16 19:07:16.425641 2024-07-16 19:07:16.425648 bec461c9-25b3-4d04-91a8-9a51ab53e24a {"md5": "79c0d48764d6ff3ef674e5fe8720205e", "pid": "271327383", "note": [{"label": ["Le centre aquatique des Bertisettes / Atelier Po&Po, GCC, Opalia / [auteur Karine Dana], Archibooks + Sautereau Éditeur, 2022"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271327383", "source": "IDREF"}], "variant_access_point": ["Centre aquatique des Bertisettes (Viroflay, France)", "CAB (Viroflay, France)"], "authorized_access_point": "Viroflay (France)"} 1 -2024-07-16 19:07:16.50658 2024-07-16 19:07:16.506593 640db1a7-ed1e-45cd-8599-47ec8cf79cce {"md5": "77c753c884702436190a883926ebde25", "pid": "271328762", "note": [{"label": ["Dict. des communes, 2001"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCA", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/names/no2011036870", "source": "LCA"}, "authorized_access_point": "Saint-Gingolph (France)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271328762", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb162289872", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "912"}], "authorized_access_point": "Saint-Gingolph (Haute-Savoie, France)"} 1 -2024-07-16 19:07:16.59152 2024-07-16 19:07:16.59153 48b15594-89bd-4e61-b8cb-226b3923fd59 {"md5": "142cae8fef9fb0e4ddf5f712ec3430d7", "pid": "271329017", "note": [{"label": ["Quand la grotte Cosquer sort de l'eau : la Villa Méditerranée en porte à faux / Pierre Fiastre, Éditions de l'Aube, 2022"], "noteType": "dataSource"}, {"label": ["Bâtiment public construit par Stefano Boeri. Abrite le musée Cosquer Méditerranée depuis 2022", "Adresse : Esplanade du J4, Promenade Robert Laffont, 13002 Marseille"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271329017", "source": "IDREF"}], "variant_access_point": ["Villa Méditerranée (Marseille, France)"], "authorized_access_point": "Marseille (France)"} 1 -2024-07-16 19:07:16.674004 2024-07-16 19:07:16.674015 4263505f-5529-4e90-9b93-abe323570586 {"md5": "5dbb2dd52a1de892e183643fb665e805", "pid": "271329335", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271329335", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15331888p", "source": "BNF"}], "authorized_access_point": "Ayas (Val d'Aoste, Italie)"} 1 -2024-07-16 19:07:16.74821 2024-07-16 19:07:16.748224 650fa7ff-20d9-4673-a12e-1ae185050408 {"md5": "9de54104659eda780aadee4349bfb736", "pid": "271329696", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Canaries, Îles (Espagne)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271329696", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15292962k", "source": "BNF"}], "variant_access_point": ["Teneriffe, Île de (Canaries, Espagne)"], "authorized_access_point": "Tenerife, Île de (Canaries, Espagne)"} 1 -2024-07-16 19:07:16.830128 2024-07-16 19:07:16.830141 47233e7b-dcec-4ad0-b1e1-928c5be63e45 {"md5": "e9114375c51210143aa41c2b6f0b8f41", "pid": "271329734", "note": [{"label": ["Atlas Le Monde"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271329734", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11963639h", "source": "BNF"}], "variant_access_point": ["Edinburgh (GB)"], "authorized_access_point": "Édimbourg (GB)"} 1 -2024-07-16 19:07:16.912843 2024-07-16 19:07:16.912856 ba267968-9d21-43a9-98b8-6396f3b262f3 {"md5": "4312e979f358970e942f8f3209f8c105", "pid": "271329831", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271329831", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb152884911", "source": "BNF"}], "authorized_access_point": "Basse-Engadine (Grisons, Suisse ; vallée)"} 1 -2024-07-16 19:07:17.008047 2024-07-16 19:07:17.008058 7b0e5d93-a410-457a-b798-747dace160e4 {"md5": "3277ed358eabd2292845e1ee6093e286", "pid": "271329912", "note": [{"label": ["Atlas Le Monde"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271329912", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb121679559", "source": "BNF"}], "authorized_access_point": "Alagna Valsesia (Italie)"} 1 -2024-07-16 19:07:17.09627 2024-07-16 19:07:17.096285 bda14ccd-d286-4bae-a186-2f61cad1c324 {"md5": "25447334e143de92d877617d80b78b46", "pid": "271329998", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Tremezzina (Italie)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271329998", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb120937181", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "914"}], "authorized_access_point": "Côme, Lac de (Italie ; région)"} 1 -2024-07-16 19:07:17.177769 2024-07-16 19:07:17.177775 0d367724-cce8-4e80-97e3-c7f76d782d31 {"md5": "de2d02ceffb7fdf00951b1f34db2dcfb", "pid": "271330031", "note": [{"label": ["Wikipedia - http://de.wikipedia.org (2015-06-05)", "Les spéciales de l'IGN / Europe : Suisse, 1994", "Dict. historique de la Suisse - http://www.hls-dhs-dss.ch (2015-06-05)", "Kaiseraugst - http://www.kaiseraugst.ch (2015-06-05)"], "noteType": "dataSource"}, {"label": ["Commune d'Argovie (district de Rheinfelden), à la frontière germano-suisse sur le Rhin, face à Augst (canton de Bâle-Campagne). Elle est fondée par l'armée romaine comme 'castrum' dans un secteur de la ville basse d'Augusta Raurica (vestiges). Après avoir fait partie d'Augst (sous le premier nom d'Augst-im-Dorf, avant son appellation actuelle), elle s'en détache en 1442"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCA", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/names/n85279520", "source": "LCA"}, "authorized_access_point": "Kaiseraugst (Switzerland)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271330031", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb121618876", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "914"}], "variant_access_point": ["Augst-im-Dorf (Suisse)", "Augusta Raurica (Suisse ; ville ancienne)", "Castrum Rauracense (Suisse ; ville ancienne)"], "authorized_access_point": "Kaiseraugst (Suisse)"} 1 -2024-07-16 19:07:17.224901 2024-07-16 19:07:17.224904 d8077455-a705-4f7d-828b-ece47aaf8356 {"md5": "d448ddbf5885fd7d8d9e7cb350031c18", "pid": "271330163", "note": [{"label": ["Port-Valais - http://www.port-valais.ch (2015-05-18)", "Dict. historique de la Suisse - http://www.hls-dhs-dss.ch (2015-05-18)"], "noteType": "dataSource"}, {"label": ["Commune du canton du Valais, district de Monthey, comprenant les villages du Bouveret et des Evouettes"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271330163", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16965305j", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "914"}], "authorized_access_point": "Port-Valais (Suisse)"} 1 -2024-07-16 19:07:17.285622 2024-07-16 19:07:17.28564 32a60077-36ae-486a-919a-e5f6375bf481 {"md5": "d6b4979bc25ce4b11c55c651f3ff8027", "pid": "271331658", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271331658", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb152915042", "source": "BNF"}], "authorized_access_point": "Mauvoisin (Valais, Suisse)"} 1 -2024-07-16 19:07:17.366581 2024-07-16 19:07:17.366594 4f546dfd-d947-49f4-ac99-05004a09c315 {"md5": "a572340ecc2df763bc1452e09d648602", "pid": "271331712", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271331712", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15218260r", "source": "BNF"}], "variant_access_point": ["Trient, Glacier du (Valais, Suisse)", "Trient, Plateau du (Valais, Suisse)"], "authorized_access_point": "Trient, Glacier plateau du (Valais, Suisse)"} 1 -2024-07-16 19:07:17.447705 2024-07-16 19:07:17.447721 68ce01e2-b29b-49e5-aa19-3b968eae3fe0 {"md5": "698e19088dda25364160dadee9b9e871", "pid": "27133181X", "note": [{"label": ["Dictionnaire historique de la Suisse - http://www.hls-dhs-dss.ch/index.php (2010-07-17)"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Alpes Lépontines, Massif des"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/27133181X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15201346k", "source": "BNF"}], "variant_access_point": ["Col de Nufenen (Valais / Tessin, Suisse)", "Nufenenpass, Col de (Wallis / Tessin, Suisse)", "Novena, passo della (Vallese / Ticino, Suisse ; Col)", "Passo della Novena (Vallese / Ticino, Suisse ; Col)"], "authorized_access_point": "Nufenen, Col de (Valais / Tessin, Suisse)"} 1 -2024-07-16 19:44:37.611562 2024-07-16 19:50:11.719668 79686cae-9b97-456a-90c5-6fa9821905d5 {"md5": "651a35bc68b19d47ff803adec18625eb", "pid": "027228428", "note": [{"label": ["IFLA, Names of states, 1981. GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Balkans"}, {"authorized_access_point": "Méditerranée (région ; est)"}, {"authorized_access_point": "Pays de l'Union européenne"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Thrace (Grèce)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027228428", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11931600c", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040220478", "source": "GND"}, {"type": "uri", "value": "http://d-nb.info/gnd/4022047-3", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172224968", "source": "VIAF"}], "variant_access_point": ["Ellás", "Hellade", "Hellas", "اليونان"], "authorized_access_point": "Grèce"} 2 -2024-07-16 19:07:17.528662 2024-07-16 19:07:17.528672 35315db2-5be9-4f5a-9ee7-ef66af20e329 {"md5": "49efe810d008874b3f3005a2d72a231c", "pid": "271332352", "note": [{"label": ["GeoNames - http://www.geonames.org (2018-10-10)", "Wikipedia - https://de.wikipedia.org (2018-10-10)", "Grand Larousse universel : Kleiner Walsertal", "Cartes IGN / Pays, découverte du Monde : Autriche, 2016 : Kl. Walsertal", "Österreich Lex., 1966 : Kleines Walsertal"], "noteType": "dataSource"}, {"label": ["Vallée des Alpes autrichiennes (Vorarlberg, district de Bregenz), contigüe à la Bavière (Allemagne). Elle englobe le territoire communal de Mittelberg et doit son nom aux Walser, peuple germanophone du Moyen âge venu du Valais (Suisse)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh92003686", "source": "LCSH"}, "authorized_access_point": "Kleinwalsertal (Austria)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271332352", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb17764284z", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "914"}], "variant_access_point": ["Kleiner Walsertal (Autriche)", "Kleines Walsertal (Autriche)"], "authorized_access_point": "Kleinwalsertal (Autriche)"} 1 -2024-07-16 19:07:17.606509 2024-07-16 19:07:17.606525 e505c82a-3b57-43f3-ad30-0f9e60eaa4bd {"md5": "31d31894cc19716f0ac3f512237ea5c0", "pid": "271332778", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271332778", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15766361s", "source": "BNF"}], "authorized_access_point": "Arpille, Mont de l' (Valais, Suisse)"} 1 -2024-07-16 19:07:17.688314 2024-07-16 19:07:17.688329 0af44eda-4ba2-4398-b132-546f7ed7dbb2 {"md5": "6bed3d2cfbd6d16bd036f4eb819a0e84", "pid": "271332824", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271332824", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15288492c", "source": "BNF"}], "authorized_access_point": "Haute-Engadine (Grisons, Suisse ; vallée)"} 1 -2024-07-16 19:07:17.769547 2024-07-16 19:07:17.769554 91ae9500-e748-4796-8857-b29c0a9551e1 {"md5": "bd9f6814578cf76d4ebecf36172bedab", "pid": "271333081", "note": [{"label": ["https://culture.gouv.fr/Espace-documentation/Repertoire-des-ressources-documentaires/Monuments-nationaux/Monastere-de-Saorge"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271333081", "source": "IDREF"}], "authorized_access_point": "Saorge (Alpes-Maritimes) -- Monastère"} 1 -2024-07-16 19:07:17.852892 2024-07-16 19:07:17.852905 778098a0-4a5d-4668-8b46-83caf35ee9b3 {"md5": "108e51f237bc1cdeac314cb4fef20162", "pid": "271333197", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271333197", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb170154986", "source": "BNF"}], "authorized_access_point": "Orsieres (Valais, Suisse). Praz-de-Fort"} 1 -2024-07-16 19:07:17.942676 2024-07-16 19:07:17.942687 9e694b23-873b-4f6f-8e18-32f54da0cb43 {"md5": "fd94496f6f297bdbcf95da48e06a5d70", "pid": "271333243", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271333243", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb152817737", "source": "BNF"}], "variant_access_point": ["Urserental, Vallée (Uri, Suisse ; Vallée)", "Ursernthal, Vallée (Uri, Suisse ; Vallée)"], "authorized_access_point": "Urseren, Vallée d' (Uri, Suisse)"} 1 -2024-07-16 19:07:18.028097 2024-07-16 19:07:18.028107 3384149b-9026-4432-99cf-9af2319bedd9 {"md5": "cf6b32604ac5a558fc78a95726b0b060", "pid": "271337214", "note": [{"label": ["Bridge Orange : Issy-les-Moulineaux : VIGUIER architecture urbanisme paysage / texte de Christine Desmoulins, Archibooks + Sautereau Éditeur, 2023", "https://www.archistorm.com/realisation-bridge-orange-viguier/, 2023-08-04"], "noteType": "dataSource"}, {"label": ["Siège social de l'entreprise Orange construit en 2021 par l'agence \\"Viguier architecture urbanisme paysage\\""], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271337214", "source": "IDREF"}], "variant_access_point": ["Bridge Orange (Issy-les-Moulineaux, France)", "Siège social Orange (Issy-les-Moulineaux, France)"], "authorized_access_point": "Issy-les-Moulineaux (France)"} 1 -2024-07-16 19:42:05.575428 2024-07-16 19:42:05.575437 e901c324-6d28-49b6-be4d-4d51972af28b {"md5": "651a35bc68b19d47ff803adec18625eb", "pid": "027228428", "note": [{"label": ["IFLA, Names of states, 1981. GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Balkans"}, {"authorized_access_point": "Méditerranée (région ; est)"}, {"authorized_access_point": "Pays de l'Union européenne"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Thrace (Grèce)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027228428", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11931600c", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040220478", "source": "GND"}, {"type": "uri", "value": "http://d-nb.info/gnd/4022047-3", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172224968", "source": "VIAF"}], "variant_access_point": ["Ellás", "Hellade", "Hellas", "اليونان"], "authorized_access_point": "Grèce"} 1 -2024-07-16 19:50:12.041718 2024-07-16 19:50:12.041745 fde86a53-f276-4b27-b2e9-86bf8eb9b8c5 {"md5": "05632639cd0c7e46e70f928c3a9f1fe4", "pid": "027228959", "note": [{"label": ["Grand Larousse universel (art. : Arabe)", "Encycl. universalis : Arabe (Monde) - http://www.universalis-edu.com (2011-11-24)", "Wikipédia : Monde arabe - http://fr.wikipedia.org (2011-11-24)", "L'économie des pays arabes / A. Martens, 1983"], "noteType": "dataSource"}, {"label": ["Voir aussi la subdivision Et les pays arabes [sans subd. géogr.] aux collectivités et aux personnes"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "related": [{"authorized_access_point": "Moyen-Orient"}, {"authorized_access_point": "Pays arabes - Histoire"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Afrique du Nord"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027228959", "source": "IDREF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4068789-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040687899", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172492075", "source": "VIAF"}], "relation_pid": {"type": "redirect_from", "value": "164701583"}, "classification": [{"name": "Géographie du reste du monde", "type": "bf:ClassificationDdc", "classificationPortion": "915"}], "variant_access_point": ["Arabes, Pays", "États arabes", "Monde arabe", "Pays de langue arabe"], "authorized_access_point": "Pays arabes"} 1 -2024-07-16 19:50:12.383571 2024-07-16 19:50:12.383603 df7470a3-4a4c-4764-a736-13ff99ec85bb {"md5": "4d85ab7f707fb93cd4009f8108496b13", "pid": "097857300", "note": [{"label": ["Grand Larousse universel", "Dict. de géopolitique / dir. Y. Lacoste, 1993", "Laval RVM (en ligne), 2006-01-23"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les documents qui traitent de l'Occident selon les différents sens du mot au cours de l'histoire, par opposition à différents Orients : par ex. Occident latin / Orient grec, Occident catholique / Orient orthodoxe, Chrétienté / Islam et Asie, pays occidentaux / pays socialistes, etc"], "noteType": "general"}, {"label": ["Voir aussi la subdivision Et l'Occident aux collectivités (à l'exception des types de collectivités) et aux personnes"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/097857300", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb150357447", "source": "BNF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4079237-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040792374", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/66145602566901361640", "source": "VIAF"}], "classification": [{"name": "Histoire", "type": "bf:ClassificationDdc", "classificationPortion": "900"}], "variant_access_point": ["Occidentaux, Pays", "Ouest, Pays de l'", "Pays de l'Ouest", "Pays occidentaux"], "authorized_access_point": "Occident"} 1 -2024-07-16 19:50:13.711804 2024-07-16 19:50:13.711824 c61651bf-fe1d-489f-914d-2ed5a5b41356 {"md5": "9381fc04fe5a70e395a12dc8381c35f2", "pid": "027262162", "note": [{"label": ["IFLA, Names of states, 1981. GDEL. SY 1990/91"], "noteType": "dataSource"}, {"label": ["Le Japon est divisé en 9 régions, dont 5 sont sur Honshū ; les 4 autres sont Hokkaidō, Shikoku, Kyūshū et Okinawa"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Asie du Nord-Est"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027262162", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040284956", "source": "GND"}, {"type": "uri", "value": "https://d-nb.info/gnd/4028495-5", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/1165148574381824430006", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Japon_(homonymie)", "source": "WIKIPEDIA"}], "variant_access_point": ["Nihon", "Nippon", "Япония"], "authorized_access_point": "Japon"} 1 -2024-07-16 19:50:14.000159 2024-07-16 19:50:14.000194 cfc173ce-a487-4c48-8037-fba41401180b {"md5": "31e634102abcd01b55344db7c7707f35", "pid": "027244520", "note": [{"label": ["GLU"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Île-de-France (France)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027244520", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb152821567", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040446603", "source": "GND"}, {"type": "uri", "value": "http://d-nb.info/gnd/4044660-8", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/260846891", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Paris-France", "source": "WIKIPEDIA"}], "variant_access_point": ["Lutèce (ville ancienne)", "Lutetia Parisiorum (ville ancienne)", "Paris", "Paname"], "authorized_access_point": "Paris (France)"} 1 -2024-07-16 19:50:14.306655 2024-07-16 19:50:14.306661 fc5d899d-21a0-49e9-9917-8a231d9ae24c {"md5": "158ec07faa8a1ffd8801596da865c2a5", "pid": "029036690", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029036690", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040772756", "source": "GND"}, {"type": "uri", "value": "http://d-nb.info/gnd/4077275-5<", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/2253148574262324430007", "source": "VIAF"}], "variant_access_point": ["Alpes suisses"], "authorized_access_point": "Alpes (Suisse)"} 1 -2024-07-16 19:50:14.551989 2024-07-16 19:50:14.552008 22ccf69f-23ae-49e3-8f7b-1af6b5dba4f1 {"md5": "2a34e24a150951537d9edb3213007aed", "pid": "027242005", "note": [{"label": ["IFLA, Names of states, 1981. GLU. BN ACO (en ligne), 1995-07-07. Laval RVM, 1995-02", "https://www.insee.fr/fr/metadonnees/cog/, 2017-04-28", "http://www.geonames.org/, 2017-04-28"], "noteType": "dataSource"}, {"label": ["Emploi direct en subdivision : [Sujet] -- La Réunion", "Département d'outre-mer de la France"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Indien, Îles de l'océan"}, {"authorized_access_point": "Mascareignes (îles)"}, {"authorized_access_point": "France - Départements et régions d'outre-mer"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027242005", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15326035w", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040496392", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/129722462", "source": "VIAF"}], "relation_pid": {"type": "redirect_from", "value": "089774507"}, "variant_access_point": ["Bonaparte, Île (France)", "Bourbon, Île (France)", "Île Bourbon (France)", "Réunion, Île de la (France)", "Île de La Réunion (France)", "Réunion (France ; île)", "La Réunion", "La Réunion (île)", "Réunion"], "authorized_access_point": "La Réunion (France ; île)"} 1 -2024-07-16 19:50:14.848271 2024-07-16 19:50:14.848289 62cc25eb-6078-4a3e-9bf2-88a050c3fab2 {"md5": "eddb75bcaab01aaa08c99c85b6cedb30", "pid": "027286703", "note": [{"label": ["GDEL"], "noteType": "dataSource"}, {"label": ["Région d'Italie centrale comprenant 9 provinces (capitale : Florence)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Italie (centre)"}, {"authorized_access_point": "Italie - Régions"}], "related": [{"authorized_access_point": "Étrurie"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027286703", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040604853‏ ", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/128956370", "source": "VIAF"}], "relation_pid": {"type": "redirect_from", "value": "123793696"}, "variant_access_point": ["Toscana (Italie)", "Toscane (Grand-duché)"], "authorized_access_point": "Toscane (Italie)"} 1 -2024-07-16 19:50:15.132058 2024-07-16 19:50:15.132084 900dc97f-e1ee-41db-8896-cef2ef1e45e8 {"md5": "87b941879ceea47081a257691f25af96", "pid": "027230430", "note": [{"label": ["IFLA, Names of states, 1981. GLU. BN ACO. Laval RVM, 1995-02"], "noteType": "dataSource"}, {"label": ["Après l'éclatement de la Grande-Colombie, l'actuelle République de Colombie a porté successivement les noms de \\"République de Nouvelle-Grenade\\" (República de Nueva Granada) (1830-1858), \\"Confédération grenadine\\" (Confederación granadina) (1858-1861), et \\"États-Unis de Colombie\\" (Estados Unidos de Colombia) (1861-1880)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Andes (région)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027230430", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040318125", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/127757650", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Colombie", "source": "WIKIPEDIA"}], "variant_access_point": ["Colombia", "Confederación granadina", "Estados Unidos de Colombia", "Nouvelle-Grenade", "Nueva Granada"], "authorized_access_point": "Colombie"} 1 -2024-07-16 19:50:18.44047 2024-07-16 19:50:18.440497 2e97864c-1e45-4a73-827b-db52b480a462 {"md5": "d43fc13934a81dc617d332584a3728a8", "pid": "027417298", "note": [{"label": ["GLU. Laval RVM, 2000-01"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les documents sur le département de la Savoie. Les documents sur la région historique de la Savoie avant 1860 sont sous la vedette Savoie", "Département français (73) ; chef-lieu : Chambéry"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Rhône-Alpes (France)"}, {"authorized_access_point": "Savoie (France ; région)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027417298", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11946312z", "source": "BNF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4051850-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040518507", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/139289471", "source": "VIAF"}], "variant_access_point": ["Savoie (département)", "Savoie (France ; département)"], "authorized_access_point": "Savoie (France)"} 1 -2024-07-16 19:50:18.689061 2024-07-16 19:50:18.689075 eafa5534-e77a-45a6-8096-b2ffbc35f340 {"md5": "b42dccaef0835a9cf9a9de044f9b6b26", "pid": "028146239", "note": [{"label": ["GDEL. Atlas universalis"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Saint-Pierre (Suisse ; île)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028146239", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb120038758", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040065146", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/315149407", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Lac_de_Bienne", "source": "WIKIPEDIA"}], "variant_access_point": ["Biel, Lac de (Suisse)", "Bielersee (Suisse ; lac)"], "authorized_access_point": "Bienne, Lac de (Suisse)"} 1 -2024-07-16 19:50:18.977279 2024-07-16 19:50:18.977304 37da39bd-fa32-4dea-bf05-192501b77fa7 {"md5": "756f37840633fab8d989c9325fa92be2", "pid": "027234002", "note": [{"label": ["IFLA, Names of states, 1981"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Europe centrale"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027234002", "source": "IDREF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4078541-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040785416", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/4031148574352124430001", "source": "VIAF"}], "variant_access_point": ["Magyarország"], "authorized_access_point": "Hongrie"} 1 -2024-07-16 19:50:19.262467 2024-07-16 19:50:19.262486 9cb5002f-6530-4a15-9e9c-591f87efce54 {"md5": "633d7b2a486c35a64a9868ac8dce10b8", "pid": "028992318", "note": [{"label": ["GDEL. SY 1990/91"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Suisse - Cantons"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028992318", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040680649", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/20144647636134910488", "source": "VIAF"}], "authorized_access_point": "Zoug (Suisse ; canton)"} 1 -2024-07-16 19:50:20.548744 2024-07-16 19:50:20.548774 9236b8a0-0021-4158-9e42-01e0b9e473e9 {"md5": "1d04da0252db2de8b1f65027d9f82363", "pid": "027266060", "note": [{"label": ["Laval RVM, 1983"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Arctique"}, {"authorized_access_point": "Régions polaires"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027266060", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)041179145", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/316891260", "source": "VIAF"}], "authorized_access_point": "Pôle Nord"} 1 -2024-07-16 19:50:21.801476 2024-07-16 19:50:21.801484 892906af-dfc5-4cf0-b1a5-1fb750814498 {"md5": "504f3de5f62d5a2efc9d4eb2a78be0c9", "pid": "027239365", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027239365", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040387887", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173636243", "source": "VIAF"}], "authorized_access_point": "Mésopotamie"} 1 -2024-07-16 19:50:22.056381 2024-07-16 19:50:22.056531 d6beffb6-b9bd-47cf-b272-8251670d80dc {"md5": "a893e9b2d5dc6c79077b8c9c14300686", "pid": "144820072", "note": [{"label": ["Uebersichstkarte zum Relief der Monterosa-Gruppe / von X. Imfeld, 1880", "GLU"], "noteType": "dataSource"}, {"label": ["Massif des Alpes Pennines partagé entre la Suisse (canton du Valais) et l'Italie."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/144820072", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/136148570652124311276", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)041152077", "source": "GND"}], "variant_access_point": ["Monte Rosa, Massif du"], "authorized_access_point": "Mont-Rose, Massif du"} 1 -2024-07-16 19:50:23.368314 2024-07-16 19:50:23.368342 8d852b11-8e77-4f27-9415-9d77dfd03250 {"md5": "5199e9499e2664255a30c0ae1c672d9a", "pid": "031211097", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031211097", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12246994q", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040658236", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/621144783051845602289", "source": "VIAF"}], "variant_access_point": ["Suisse occidentale"], "authorized_access_point": "Suisse (ouest)"} 1 -2024-07-16 19:50:24.705546 2024-07-16 19:50:24.705577 19e3fd61-0131-461a-bc41-61fb7f8e5e7e {"md5": "7c07b2713b88aad30b805feb49909f67", "pid": "027633179", "note": [{"label": ["IFLA, Names of states, 1981. GLU, 1991", "Laval RVM, 1996-08"], "noteType": "dataSource"}, {"label": ["Voir aussi la subdivision Et la Chine aux personnes et collectivités"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Asie du Nord-Est"}, {"authorized_access_point": "Asie orientale"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027633179", "source": "IDREF"}, {"type": "uri", "value": "https://catalogue.bnf.fr/ark:/12148/cb11963283w", "source": "BNF"}, {"type": "uri", "value": "https://d-nb.info/gnd/4009937-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040099377", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/5951158188189220260002", "source": "VIAF"}], "variant_access_point": ["Cathay", "Céleste empire", "Chine (République populaire)", "Chine populaire", "Empire céleste", "Empire du Milieu", "Milieu, Empire du", "中國", "中華人民共和國", "Zhonghua Ren min Gong he guo", "Zhonghua Renmin Gong he guo", "中国", "Zhongguo", "中华人民共和国", "Zhonghua Renmin Gongheguo"], "authorized_access_point": "Chine"} 1 -2024-07-16 19:50:24.956173 2024-07-16 19:50:24.956179 7a973b44-b9a4-4254-80f7-33d486477530 {"md5": "12bdf65dfd197b5f7abbbdf48dc68baa", "pid": "027224694", "note": [{"label": ["Sous cette vedette on trouve les ouvrages qui traitent de la partie de l'Europe située à l'ouest de la ligne Lübeck-Trieste, et/ou, pour la période 1945-1990, de l'ensemble des pays non socialistes d'Europe, de la Finlande à la Grèce et à la Turquie"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Pays de l'Union européenne"}, {"authorized_access_point": "Benelux"}, {"authorized_access_point": "Pays de l'Union européenne (centre)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027224694", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119313058", "source": "BNF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4079215-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040792153", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/245653394", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Europe_de_l'Ouest", "source": "WIKIPEDIA"}], "variant_access_point": ["Europe (ouest)", "Europe atlantique", "Europe occidentale"], "authorized_access_point": "Europe de l'Ouest"} 1 -2024-07-16 19:50:25.220482 2024-07-16 19:50:25.220496 eaea8879-3f3c-4586-b789-b6fd3155f77d {"md5": "8258a0f3164682b45ff98e6e8724ce30", "pid": "027218562", "note": [{"label": ["Sous cette vedette on trouve les ouvrages qui traitent de la partie de l'Afrique s'étendant du nord du Tchad au sud du Zai͏̈re et du Cameroun au Rwanda et au Burundi"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Burundi"}, {"authorized_access_point": "Cameroun"}, {"authorized_access_point": "Congo (République)"}, {"authorized_access_point": "Gabon"}, {"authorized_access_point": "Guinée équatoriale"}, {"authorized_access_point": "République centrafricaine"}, {"authorized_access_point": "Rwanda"}, {"authorized_access_point": "Sao Tomé-et-Principe"}, {"authorized_access_point": "Tchad"}, {"authorized_access_point": "Congo (République démocratique)"}, {"authorized_access_point": "Guinée (région)"}, {"authorized_access_point": "Grands lacs africains (région)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027218562", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16272632j", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040794857", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/169969170", "source": "VIAF"}], "variant_access_point": ["Afrique (centre)", "Afrique équatoriale", "Afrique équatoriale francophone"], "authorized_access_point": "Afrique centrale"} 1 -2024-07-16 19:50:25.492255 2024-07-16 19:50:25.492285 3188f865-a454-4fcd-8e61-394e7171335b {"md5": "ca7a4ee839028061404adbaa633d349b", "pid": "02721897X", "note": [{"label": ["GLU. Laval RVM, 1995-02"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les ouvrages qui traitent de l'ensemble des pays d'Amérique qui furent colonisés par les Espagnols et par les Portugais"], "noteType": "general"}, {"label": ["Voir aussi la subdivision Et l'Amérique latine aux personnes et collectivités"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Amérique"}, {"authorized_access_point": "Pays de langue espagnole"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02721897X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11930876x", "source": "BNF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4074032-8 ", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040740323", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172711055", "source": "VIAF"}], "variant_access_point": ["Amérique espagnole"], "authorized_access_point": "Amérique latine"} 1 -2024-07-16 19:50:25.777672 2024-07-16 19:50:25.777697 bdf87b10-4dc2-4151-a156-4a818200a7a1 {"md5": "4fd18544f4eb7a726755fa05584b802e", "pid": "027416925", "note": [{"label": ["GLU. BN ACO"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent de la vallée d'Aoste ou de la Région autonome du Val d'Aoste"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Italie (nord)"}, {"authorized_access_point": "Italie - Régions"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027416925", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11946285w", "source": "BNF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4002386-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040023869", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172872962", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Vallée_d'Aoste_(coalition)", "source": "WIKIPEDIA"}], "variant_access_point": ["Aoste, Val d' (Italie)", "Aoste, Vallée d' (Italie)", "Val d'Aoste", "Valle d'Aosta (Italie)"], "authorized_access_point": "Val d'Aoste (Italie)"} 1 -2024-07-16 19:50:26.031981 2024-07-16 19:50:26.031989 98020e4e-4083-4cca-ae49-e3d43100866b {"md5": "c56919d9f26d355a3f6d312afad0ca28", "pid": "02735895X", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Grande-Bretagne"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02735895X", "source": "IDREF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4014770-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040147703", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173636420", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Angleterre", "source": "WIKIPEDIA"}], "variant_access_point": ["England", "Angleterre"], "authorized_access_point": "Angleterre (GB)"} 1 -2024-07-16 19:50:29.402224 2024-07-16 19:50:29.402257 056d0e08-3369-4ee4-9c4e-c53de7806e70 {"md5": "52a1cdfd866dcc68baab7b914d5227e8", "pid": "157143422", "note": [{"label": ["Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgenössische Stabsbüreau unter der direktion von Oberst Siegfried veröffentlicht"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/157143422", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/8682148574329724430000", "source": "VIAF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4119238-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041192389", "source": "GND"}], "authorized_access_point": "Zermatt (Valais, Suisse ; région)"} 1 -2024-07-16 19:50:29.681928 2024-07-16 19:50:29.681964 176e63e8-91a5-4641-a07f-664b47731d94 {"md5": "8eea9641cf3a845b1c8637b928d71410", "pid": "027250911", "note": [{"label": ["Corée du Sud ; Laval RVM, 1994-08. Han'guk (Min'guk) ; GKD, 1980"], "noteType": "dataSource"}, {"label": ["En précision géographique, employer Corée S., par ex. Séoul (Corée S.)", "Le Royaume de Corée fut colonisé par le Japon de 1905 à la fin de la Seconde guerre mondiale. La partition, en 1945, en 2 zones d'occupation (USA et URSS) aboutit le 15 août 1948 à la proclamation de la République de Corée. Capitale Séoul, langue officielle coréen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Corée"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027250911", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb152988753", "source": "BNF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119334338", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040780295", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/139094665", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Gouvernement_militaire_de_l'armée_des_États-Unis_en_Corée", "source": "WIKIPEDIA"}], "variant_access_point": ["Han Kook", "Corée du Sud", "République de Corée", "Corée, République de", "Corée, République de (1948-....)"], "authorized_access_point": "Corée (République)"} 1 -2024-07-16 19:50:29.942227 2024-07-16 19:50:29.94226 ad5e07bc-f0ab-479b-8a1b-956a24fa705a {"md5": "d979077b0b5819460d543162e416f8bf", "pid": "027316696", "note": [{"label": ["IFLA, Names of states, 1981", "Corée du Nord ; Laval RVM, 1994-08. Chosǒn ; GKD, 1980"], "noteType": "dataSource"}, {"label": ["En précision géographique, employer Corée N., par ex. Pyongyang (Corée N.)", "Le Royaume de Corée fut colonisé par le Japon de 1905 à la fin de la Seconde guerre mondiale. La partition, en 1945, en 2 zones d'occupation (USA et URSS) aboutit le 9 septembre 1948 à la proclamation de la République populaire démocratique de Corée par l'Assemblée populaire suprême. Capitale Pyongyang, langue officielle coréen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Corée"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027316696", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11938542q", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040754685", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/6097150325542010090000", "source": "VIAF"}], "variant_access_point": ["Chosǒn", "Corée du Nord", "République populaire démocratique de Corée", "Corée, République populaire démocratique de", "Corée, République populaire démocratique de (1948-....)"], "authorized_access_point": "Corée (République populaire démocratique)"} 1 -2024-07-16 19:50:30.192415 2024-07-16 19:50:30.192421 4717ac1b-c664-4252-8666-c50af420d500 {"md5": "889960ebf20d8883ce5e9134ff37bdd7", "pid": "027321940", "note": [{"label": ["Laval RVM, 1992-08"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent de la partie de l'Afrique située au sud du Sahara et à l'ouest du Tchad et du Cameroun"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Afrique occidentale anglophone"}, {"authorized_access_point": "Afrique occidentale francophone"}, {"authorized_access_point": "Bénin"}, {"authorized_access_point": "Burkina Faso"}, {"authorized_access_point": "Cap-Vert"}, {"authorized_access_point": "Côte d'Ivoire"}, {"authorized_access_point": "Gambie"}, {"authorized_access_point": "Ghana"}, {"authorized_access_point": "Guinée"}, {"authorized_access_point": "Guinée-Bissau"}, {"authorized_access_point": "Liberia"}, {"authorized_access_point": "Mali"}, {"authorized_access_point": "Mauritanie"}, {"authorized_access_point": "Niger"}, {"authorized_access_point": "Nigeria"}, {"authorized_access_point": "Sénégal"}, {"authorized_access_point": "Sierra Leone"}, {"authorized_access_point": "Togo"}, {"authorized_access_point": "Guinée (région)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027321940", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb162726289", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)04079203X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/315124800", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Afrique_de_l'Ouest", "source": "WIKIPEDIA"}], "variant_access_point": ["Afrique (ouest)", "Afrique de l'Ouest"], "authorized_access_point": "Afrique occidentale"} 1 -2024-07-16 19:50:30.433713 2024-07-16 19:50:30.433739 4bbedbc5-733a-44e8-a6c2-24950982ab65 {"md5": "00007ac1b6b514973c6a1b41cb57f5f3", "pid": "027443876", "note": [{"label": ["GLU. Brockhaus, 19. Aufl.", "Laval RVM, 2000-01. Bayern ; GKD, 1994-05. SWD, 1995-04"], "noteType": "dataSource"}, {"label": ["Duché puis électorat (1623), royaume (1806), et l'un des dix cercles du Saint Empire. L'État libre de Bavière (capitale : Munich) comprend 7 Regierungsbezirke"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Allemagne - Länder"}, {"authorized_access_point": "Allemagne (sud)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027443876", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040050440", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/125426357", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Bavière", "source": "WIKIPEDIA"}], "variant_access_point": ["Bavaria", "Bavière", "Bavière (Duché)", "Bavière (Électorat)", "Bavière (Royaume)", "Bayerischer Kreis (Saint Empire romain germanique)", "Bayern (Allemagne)", "Freistaat Bayern", "Bayerischer Reichskreis"], "authorized_access_point": "Bavière (Allemagne)"} 1 -2024-07-16 19:50:30.696478 2024-07-16 19:50:30.696511 69075d9a-5881-4bce-9a69-6455da15db1c {"md5": "0aa4634bc2b2cbde1f9e52f566e3e693", "pid": "027375412", "note": [{"label": ["GLU. Laval RVM, 1993-02"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent de l'archipel qui sépare l'Atlantique de la mer des Antilles et qui comprend les Bahamas, les Grandes et les Petites Antilles"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Région caraïbe"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027375412", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119430639", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040022935", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/155553957", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Antilles", "source": "WIKIPEDIA"}], "variant_access_point": ["Antillas", "Antillen", "Caraïbes (îles)", "Indes occidentales", "West Indies"], "authorized_access_point": "Antilles"} 1 -2024-07-16 19:50:38.135382 2024-07-16 19:50:38.135396 13eb69f4-8734-4be7-8c97-6125372ea0f0 {"md5": "b4820952728f10d594b7e1a15a6a05b8", "pid": "027220443", "note": [{"label": ["IFLA, Names of states, 1981. GLU, 1991", "Laval RVM, 1996-02"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Australasie"}, {"authorized_access_point": "Océanie"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027220443", "source": "IDREF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4003900-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040039005", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/9948148574334924430009", "source": "VIAF"}], "variant_access_point": ["Australia", "Commonwealth d'Australie", "Commonwealth of Australia"], "authorized_access_point": "Australie"} 1 -2024-07-16 19:50:39.457401 2024-07-16 19:50:39.457411 c4631823-b376-458d-80c2-65b167fe2ff2 {"md5": "ffb9fd46ed565d0cac1defbe67d08b0f", "pid": "027259641", "note": [{"label": ["GDEL. SY, 1990-91"], "noteType": "dataSource"}, {"label": ["Canton suisse"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Suisse - Cantons"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027259641", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040000222", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/57148570704724312118", "source": "VIAF"}], "variant_access_point": ["Aargau (Suisse)"], "authorized_access_point": "Argovie (Suisse)"} 1 -2024-07-16 19:50:39.685306 2024-07-16 19:50:39.685332 baf1cc3e-d892-44db-a685-6dc82603716b {"md5": "9fe264e567bda6aaa2b3966f771bfe3d", "pid": "027407012", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027407012", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11864772p", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040367339", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040367339", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/140255133", "source": "VIAF"}], "variant_access_point": ["Luzern (Suisse)"], "authorized_access_point": "Lucerne (Suisse)"} 1 -2024-07-16 19:50:39.916258 2024-07-16 19:50:39.916483 45228aa8-75bb-4b82-9051-d8b746da55b4 {"md5": "4fd1594003d219070a026b8a1f7131ed", "pid": "027804151", "note": [{"label": ["Laval RVM, 1997-02"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les ouvrages sur la partie de l'Europe comprenant les bassins du Danube (jusqu'aux Portes de Fer), de l'Elbe, de l'Oder et du Rhin. Les ouvrages qui traitent de la partie de l'Europe située à l'est de l'Allemagne et de l'Autriche jusqu'à l'Oural, ou des anciennes démocraties populaires d'Europe (URSS non comprise), se trouvent sous la vedette Europe de l'Est"], "noteType": "general"}, {"label": ["Voir aussi la subdivision Et l'Europe centrale aux personnes et collectivités"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027804151", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15180937h", "source": "BNF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4039677-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040396770", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/171699483", "source": "VIAF"}], "variant_access_point": ["Europe (centre)", "Mitteleuropa"], "authorized_access_point": "Europe centrale"} 1 -2024-07-16 19:50:57.304304 2024-07-16 19:50:57.304321 d9f269e5-a9ad-4f8e-a2bd-1f05930a5313 {"md5": "fb702a2ecb8ea17b2821141f32270285", "pid": "027377768", "note": [{"label": ["Names of states / IFLA, 1981. GDEL. SY, 1986/1987"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent du territoire qui fut placé sous protectorat allemand, puis sous mandats français et britannique, et qui constitue aujourd'hui la République du Cameroun"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Afrique centrale"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027377768", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040294137", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/147664051", "source": "VIAF"}], "variant_access_point": ["Cameroon", "Kamerun"], "authorized_access_point": "Cameroun"} 1 -2024-07-16 19:50:40.206155 2024-07-16 19:50:40.206185 45551c4e-df0b-482f-a3bc-c11a596bb8c1 {"md5": "1a937806599c65b13cd9d7efec2139b4", "pid": "02847158X", "note": [{"label": ["Alps, Western ; LCSH, 1988-12. Alpes occidentales ; Laval RVM, 1988-12"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Alpes cottiennes"}, {"authorized_access_point": "Mont Blanc, Massif du"}, {"authorized_access_point": "Alpes maritimes (massif)"}, {"authorized_access_point": "La Lauzière, massif de (France)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02847158X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb120300409", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040792048", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/315530690", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Alpes_occidentales", "source": "WIKIPEDIA"}], "variant_access_point": ["Alpes occidentales"], "authorized_access_point": "Alpes (ouest)"} 1 -2024-07-16 19:50:40.534438 2024-07-16 19:50:40.534473 65f6f39b-724f-44eb-9b66-64fcfdc164ba {"md5": "60eef5d9179b256e1c265e31a3cd41b8", "pid": "271438436", "note": [{"label": ["Les vitraux de la cathédrale de Sion : une catéchèse en couleurs / Chapitre de la Cathédrale de Sion, [2020]", "https://fr.wikipedia.org/wiki/Cath%C3%A9drale_Notre-Dame_de_Sion, 2023-08-21"], "noteType": "dataSource"}, {"label": ["La cathédrale Notre-Dame de Sion (parfois appelée Notre-Dame du Glarier) est l’église principale du diocèse de Sion"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271438436", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)042499909", "source": "GND"}], "variant_access_point": ["Cathédrale Notre-Dame du Glarier (Sion, Valais, Suisse)", "Cathédrale de Sion (Sion, Valais, Suisse)", "Liebfrauenkathedrale (Sion, Valais, Suisse)", "Cathédrale Notre-Dame de Sion (Sion, Valais, Suisse)"], "authorized_access_point": "Sion (Valais, Suisse) - Cathédrale Notre-Dame du Glarier"} 1 -2024-07-16 19:50:48.112724 2024-07-16 19:50:48.112731 580fffec-7dc8-4339-9bb0-c61526207827 {"md5": "d8bf58b68f1fa33c75f617d62ba3c26f", "pid": "14704233X", "note": [{"label": ["Le 5/10/ 2010 : http://fr.wikipedia.org/wiki/Val_de_Bagnes"], "noteType": "dataSource"}, {"label": ["Vallée de Suisse dans le district d'Entremont en Valais"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/14704233X", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/241474357", "source": "VIAF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4107510-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041075102", "source": "GND"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Val_de_Bagnes", "source": "WIKIPEDIA"}], "variant_access_point": ["Val de Bagnes (Suisse ; vallée)", "Baniental", "Bangital", "Vallée de Bagnes (Valais, Suisse)"], "authorized_access_point": "Bagnes, Vallée de (Valais, Suisse)"} 1 -2024-07-16 19:50:49.329541 2024-07-16 19:50:49.329547 9788cf24-132d-4f7c-9565-7ec9dd469a37 {"md5": "5de5e5b97b3a1877b436203b7f326f56", "pid": "198231288", "note": [{"label": ["Note sur la Géologie des environs de Louèche-les-Bains / par le Dr Phil. de La Harpe, 1877"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/198231288", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040995623", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/144250507", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Loèche-les-Bains", "source": "WIKIPEDIA"}], "variant_access_point": ["Louèche-les-Bains (Valais, Suisse)", "Leukerbad (Valais, Suisse)"], "authorized_access_point": "Loèche-les-Bains (Valais, Suisse)"} 1 -2024-07-16 19:50:49.569182 2024-07-16 19:50:49.5692 4b0a8ff2-70c4-414b-af29-bbf35c5c4173 {"md5": "bc1c76ecaeac3f4d3ebb7b0269278ffe", "pid": "028931491", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028931491", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)949642762", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173637213", "source": "VIAF"}], "authorized_access_point": "Léman, Lac (région)"} 1 -2024-07-16 19:50:52.956103 2024-07-16 19:50:52.956143 cdb320db-6adc-4102-8d41-6249b41b76dc {"md5": "573af1b964e87fc62ce0175c823f57ea", "pid": "029201098", "note": [{"label": ["GDEL. Grand-Saint-Bernard (Italie et Suisse) ; Laval RVM, 1990-08", "GeoNames (2017-07-06)"], "noteType": "dataSource"}, {"label": ["Le col du Grand-Saint-Bernard, anciennement appelé col du Mont-Joux, est un col de montagne routier des Alpes pennines, situé à 2 469 mètres d'altitude en Valais sur la commune de Bourg-Saint-Pierre en Suisse. La frontière avec l'Italie (commune de Saint-Rhémy-en-Bosses) passe quelques centaines de mètres au sud-ouest du col. Il sépare la vallée du même nom, en Vallée d'Aoste au sud, du val d'Entremont, situé en Valais au nord et constitue un passage entre le mont Mort et la pointe de Drône, tous deux situés sur la frontière italio-suisse. C'est le troisième plus haut col routier des Alpes suisses et le septième plus haut d'Italie"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029201098", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12087709t", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040940888", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4094088-3", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/5670150567623106370006", "source": "VIAF"}, {"type": "uri", "value": "http://viaf.org/viaf/240823931", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Col_du_Grand-Saint-Bernard", "source": "WIKIPEDIA"}], "relation_pid": {"type": "redirect_from", "value": "202981762"}, "variant_access_point": ["Saint-Bernard, Grand- (col)", "Grosser Sankt Bernhard", "Gran San Bernardo", "Great Saint Bernard Pass", "Colle del Gran San Bernardo", "Grand-Saint-Bernard, Col du (Valais, Suisse)"], "authorized_access_point": "Grand-Saint-Bernard (col)"} 1 -2024-07-16 19:50:57.050384 2024-07-16 19:50:57.050401 9cb546ec-227f-4699-81c4-327cb57ecb3c {"md5": "673228933377fd4f5099bebe10fcaebb", "pid": "027437213", "note": [{"label": ["GDEL. Laval RVM suppl., 1988-03"], "noteType": "dataSource"}, {"label": ["Emploi direct en subdivision : [Sujet] -- Suisse alémanique"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Pays de langue allemande"}, {"authorized_access_point": "Suisse"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027437213", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11947885s", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040703525", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/315160381", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Suisse_alémanique", "source": "WIKIPEDIA"}], "variant_access_point": ["Suisse de langue allemande"], "authorized_access_point": "Suisse alémanique"} 1 -2024-07-16 19:50:53.226153 2024-07-16 19:50:53.226183 e225850d-7f87-4923-be1b-395afcfd9417 {"md5": "ed775c568d6c89cd199c94e7cdcd58e7", "pid": "027218619", "note": [{"label": ["GLU. Pays et capitales du monde / IGN, 1986. SY 2000", "Laval RVM, 2000-01"], "noteType": "dataSource"}, {"label": ["1910 : Union sud-africaine ; 1961 : République d'Afrique du Sud. En 1994 les 4 provinces historiques (Le Cap, Natal, Orange et Transvaal) ont été remplacées par 9 nouvelles provinces"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Afrique australe"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027218619", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13969835d", "source": "BNF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4078012-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040780120", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/159069376", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Afrique_du_Sud", "source": "WIKIPEDIA"}], "variant_access_point": ["Azanie", "South Africa", "Suid-Afrika", "Union sud-africaine"], "authorized_access_point": "Afrique du Sud"} 1 -2024-07-16 19:50:53.463132 2024-07-16 19:50:53.463136 29209b51-4c32-4fd0-841f-e01401e025c5 {"md5": "43b1daf8f7c51a18b4a119d11ff29e63", "pid": "027228517", "note": [{"label": ["GDEL. SY 1990/91. Laval RVM, 1990-08"], "noteType": "dataSource"}, {"label": ["Canton suisse"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Suisse - Cantons"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027228517", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb153220844", "source": "BNF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4021881-8 ", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040218813", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/170357195", "source": "VIAF"}], "variant_access_point": ["Graubünden (Suisse)", "Grigioni (Suisse)", "Grishun (Suisse)"], "authorized_access_point": "Grisons (Suisse)"} 1 -2024-07-16 19:50:54.720265 2024-07-16 19:50:54.720283 98811de7-6a02-4c01-8457-a8b7f932b93e {"md5": "c34d8ed6a07ab6449908bc87e50bd02e", "pid": "027401448", "note": [{"label": ["GDEL. SY 1990/91"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Suisse - Cantons"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027401448", "source": "IDREF"}, {"type": "uri", "value": "https://d-nb.info/gnd/4041745-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04041745X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/122584639", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Principauté_de_Neuchâtel", "source": "WIKIPEDIA"}], "variant_access_point": ["Neuchâtel (canton)", "Neuchâtel (Principauté)"], "authorized_access_point": "Neuchâtel (Suisse ; canton)"} 1 -2024-07-16 19:50:54.980082 2024-07-16 19:50:54.980118 b4395e3b-33c6-45eb-826e-8cd684b899ef {"md5": "65b7ea2f0753df6b4d8216be3205a079", "pid": "027250938", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Méditerranée, Îles de la"}, {"authorized_access_point": "France - Régions"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027250938", "source": "IDREF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4032527-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04032527X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/266664107", "source": "VIAF"}], "variant_access_point": ["Corse", "Corse, île de (France)", "Corsica (France)"], "authorized_access_point": "Corse (France)"} 1 -2024-07-16 19:50:55.251504 2024-07-16 19:50:55.251524 12d7b06b-baff-4339-814a-c1d34c0ac191 {"md5": "0da090fd03de8b86de24f5da9b4c4e57", "pid": "027849414", "note": [{"label": ["GDEL. SY 1990/91"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Suisse - Cantons"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027849414", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040057658", "source": "GND"}, {"type": "uri", "value": "http://d-nb.info/gnd/4005765-3 ", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172118589", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Canton_de_Berne", "source": "WIKIPEDIA"}], "authorized_access_point": "Berne (Suisse ; canton)"} 1 -2024-07-16 19:50:55.50052 2024-07-16 19:50:55.500529 0af8f324-b21d-4727-99d5-9d68162bfec1 {"md5": "8d535ec4fc50acccbf71b2b651d68fe9", "pid": "027226042", "note": [{"label": ["GLU"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027226042", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11931414h", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040175812", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/158387156", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Florence", "source": "WIKIPEDIA"}], "variant_access_point": ["Firenze (Italie)", "Florence"], "authorized_access_point": "Florence (Italie)"} 1 -2024-07-16 19:50:55.726988 2024-07-16 19:50:55.72702 93a26f6d-2cb8-41eb-8d02-43d8ff4a317b {"md5": "001207f0e1bd5b6a2ff9e43b853ffeec", "pid": "027264580", "note": [{"label": ["Encycl. universalis, 1989, 19, 154-159", "Prusse (Allemagne) ; Laval RVM, 1996-02", "Preussen , puis Preussen , puis Preussen ; SWD, 1995-04"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent de la Prusse depuis ses origines (les anciens Prussiens ou Borusses) jusqu'à sa disparition en tant qu'État en 1947"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "related": [{"authorized_access_point": "Prusse - Histoire"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Prusse-Occidentale (Pologne)"}, {"authorized_access_point": "Prusse-Orientale"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027264580", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119344356", "source": "BNF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4047194-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040471942", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/266665986", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Prusse", "source": "WIKIPEDIA"}], "variant_access_point": ["Preussen", "Prusse (Duché)", "Prusse (Royaume)"], "authorized_access_point": "Prusse"} 1 -2024-07-16 19:50:57.57745 2024-07-16 19:50:57.577481 1cf18ee8-bbe2-45ed-b643-05ce92c43e0a {"md5": "69d69836df8ab4accbab7cf1ce291f9b", "pid": "027622444", "note": [{"label": ["IFLA, Names of states, 1981", "Laval RVM, 1996-02. Sverige ; GKD, 1994-05"], "noteType": "dataSource"}, {"label": ["Voir aussi la subdivision Et la Suède aux personnes et collectivités"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Scandinavie"}, {"authorized_access_point": "Pays de l'Union européenne"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027622444", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13953240p", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040772586", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/178302678", "source": "VIAF"}], "variant_access_point": ["Sverige"], "authorized_access_point": "Suède"} 1 -2024-07-16 19:50:58.893084 2024-07-16 19:50:58.8931 20900220-747e-4f3b-b98f-6654b45756d7 {"md5": "e6474f3582d2a2f395d8b32138005d91", "pid": "027252272", "note": [{"label": ["GLU"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent de l'ensemble de l'empire turc osmanli. Les ouvrages sur la République turque ou sur la seule Anatolie se trouvent sous la vedette Turquie"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Orient"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027252272", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)04075720X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/5493148574275724430005", "source": "VIAF"}], "variant_access_point": ["Empire turc", "Ottoman, Empire"], "authorized_access_point": "Empire ottoman"} 1 -2024-07-16 19:50:59.17417 2024-07-16 19:50:59.174205 10afd762-5896-43e0-ab35-a41bf5217c41 {"md5": "4af3da21a61f3529718995ca318d8c43", "pid": "027263495", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Hispanie ultérieure"}, {"authorized_access_point": "Espagne - Communautés autonomes"}], "related": [{"authorized_access_point": "Al-Andalus"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027263495", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040019098", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/132461455", "source": "VIAF"}], "variant_access_point": ["Andalucía (Espagne)", "Baetica", "Bétique", "Tarsis"], "authorized_access_point": "Andalousie (Espagne)"} 1 -2024-07-16 19:51:00.493967 2024-07-16 19:51:00.49397 6bc99c0f-4168-4f70-92bf-dd3db889d696 {"md5": "f75dd2952d14665687cc9f0c17b830bd", "pid": "02754785X", "note": [{"label": ["GDEL. SY 1990/91"], "noteType": "dataSource"}, {"label": ["Canton suisse"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Suisse - Cantons"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02754785X", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)041196058", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/117148570735124312537", "source": "VIAF"}], "variant_access_point": ["Thurgau (Suisse)"], "authorized_access_point": "Thurgovie (Suisse)"} 1 -2024-07-16 19:51:00.677454 2024-07-16 19:51:00.677457 99863177-b77d-4b12-93c2-5edf466071e4 {"md5": "06ae55c19ac6e366222f9f7677e762ce", "pid": "027614697", "note": [{"label": ["Names of states / IFLA, 1981"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Proche-Orient"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027614697", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040287505", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/204148574377724430003", "source": "VIAF"}], "variant_access_point": ["Transjordanie", "الأردن", "Al-Urdun"], "authorized_access_point": "Jordanie"} 1 -2024-07-16 19:51:00.861649 2024-07-16 19:51:00.861652 fd179e5d-9721-4945-aa09-720ed13802e6 {"md5": "b6e93cecf91107f7889b67c3b2f3f6f9", "pid": "027369714", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027369714", "source": "IDREF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4005762-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040057623", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/237298336", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Berne", "source": "WIKIPEDIA"}], "variant_access_point": ["Bern (Suisse)"], "authorized_access_point": "Berne (Suisse)"} 1 -2024-07-16 19:51:01.055189 2024-07-16 19:51:01.055194 ec1fc548-f70f-4bf5-a04d-0f83dcef879c {"md5": "f9658358a32810397df757570d432357", "pid": "030519799", "note": [{"label": ["Wikipédia : château de Valère - https://fr.wikipedia.org (2021-08-10)", "Wikipedia : Basilica di Valère, castello di Valère - https:/:it.wikipedia.org (2021-08-10)", "Wikipedia : Basilique de Valère (oder Basilika von Valeria, Schloss Valeria) - https://de.wikipedia.org (2021-08-10)", "Petit Robert des noms propres, 2015 (art. : Sion) : église Notre-Dame de Valère", "Grand Larousse universel (art. : Sion) : église Notre-Dame de Valère", "Guides Voir : Suisse, 2012", "Sion Tourisme : château de Valère (interface en français), Schloss Valeria (interface en allemand) - https://siontourisme.ch (2021-08-10)"], "noteType": "dataSource"}, {"label": ["Le \\"château de Valère\\", qui couronne la colline du même nom dominant Sion, est en réalité une église fortifiée des 12e-13e siècles, église entourée de maisons qui furent résidence des chanoines de la cathédrale de la ville, le tout protégé par une enceinte (remparts et tours), le clocher de l'église étant en quelque sorte le donjon de ce véritable petit bourg médiéval. L'église Notre-Dame de Valère fut élevée au rang de basilique (mineure) sous le pontificat de Jean-Paul II, en 1987. Ses chapiteaux sont romans, ses fresques, gothiques ; son orgue de la fin du 14e siècle est le plus ancien du monde sur lequel on peut encore jouer. Le complexe abrite le Musée d'histoire du Valais"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCA", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/names/n91123541", "source": "LCA"}, "authorized_access_point": "Notre-Dame de Valère (Church : Sion, Switzerland)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030519799", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12191796h", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)042499909", "source": "GND"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}, {"name": "Art et science militaires", "type": "bf:ClassificationDdc", "classificationPortion": "355"}, {"name": "Architecture", "type": "bf:ClassificationDdc", "classificationPortion": "720"}, {"type": "bf:ClassificationDdc", "classificationPortion": "914"}], "variant_access_point": ["Basilica di Valère (Sion, Valais, Suisse)", "Basilika von Valeria (Sion, Valais, Suisse)", "Basilique de Valère (Sion, Valais, Suisse)", "Basilique Notre-Dame de Valère (Sion, Valais, Suisse)", "Castello di Valère (Sion, Valais, Suisse)", "Château de Valère (Sion, Valais, Suisse)", "Église Notre-Dame de Valère (Sion, Valais, Suisse)", "Kirche von Valeria (Sion, Valais, Suisse)", "Notre-Dame de Valère, Basilique (Sion, Valais, Suisse)", "Schloss Valeria (Sion, Valais, Suisse)", "Valère, Château de (Sion, Valais, Suisse)", "Valeria, Schloss (Sion, Valais, Suisse)"], "authorized_access_point": "Sion (Valais, Suisse) - Château de Valère"} 1 -2024-07-16 19:51:01.240027 2024-07-16 19:51:01.240031 a4390555-79f6-408a-8b74-7f4f3c5d82c7 {"md5": "d7312c3254f0c2d94178edbebd7069f0", "pid": "071586709", "note": [{"label": ["Grand Larousse universel", "Robert encyclopédique des noms propres 2008", "Encycl. universalis - http://www.universalis-edu.com (2011-10-24)", "Wikipédia - http://fr.wikipedia.org (2011-10-24)"], "noteType": "dataSource"}, {"label": ["Capitale de la Lombardie"], "noteType": "general"}, {"label": ["Voir aussi la subdivision Et Milan [sans subd. géogr.] aux collectivités et aux personnes"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/071586709", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11936471j", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)04037100X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/112144814525470906849", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Mediolanum", "source": "WIKIPEDIA"}], "relation_pid": {"type": "redirect_from", "value": "181631121"}, "classification": [{"name": "Géographie de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "914"}], "variant_access_point": ["Mediolanum (ville ancienne)", "Milan", "Milano (Italie)"], "authorized_access_point": "Milan (Italie)"} 1 -2024-07-16 19:51:01.428082 2024-07-16 19:51:01.428086 76f5971c-a4ee-459f-a399-96c710bd0948 {"md5": "4fadf276ff24607f762da7526fb4d0c9", "pid": "02788743X", "note": [{"label": ["GLU, 1991", "Laval RVM, 1996-08. Elsass ; SWD, 1995-04"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent de l'Alsace historique, ou de l'actuelle région d'Alsace qui ne comprend pas le Territoire-de-Belfort"], "noteType": "general"}, {"label": ["Voir aussi la subdivision Et l'Alsace aux personnes et collectivités"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "France (est)"}, {"authorized_access_point": "France (nord-est)"}, {"authorized_access_point": "Rhénans, Pays (sud)"}, {"authorized_access_point": "France - Régions"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02788743X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119832719", "source": "BNF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4014500-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04014500X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/153554472", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Alsace", "source": "WIKIPEDIA"}], "variant_access_point": ["Alsace", "Elsass (France)"], "authorized_access_point": "Alsace (France)"} 1 -2024-07-16 19:51:01.610488 2024-07-16 19:51:01.610492 ca12913a-b36d-443d-8bf5-99cda1da80f0 {"md5": "d8b5efb2ae63476558d2ada82880438b", "pid": "029805287", "note": [{"label": ["Atlas Le Monde", "https://hls-dhs-dss.ch/fr/articles/002802/2017-11-16/, 2024-02-20", "Sion et Mayens-de-Sion / Louis Courthion, 1910"], "noteType": "dataSource"}, {"label": ["Ville située dans le canton du Valais ; chef-lieu du canton"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029805287", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12135301m", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040774678", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040774678", "source": "GND"}, {"type": "uri", "value": "http://d-nb.info/gnd/4077467-3", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/316751302", "source": "VIAF"}], "variant_access_point": ["Sitten (Suisse)"], "authorized_access_point": "Sion (Valais, Suisse)"} 1 -2024-07-16 19:51:02.825645 2024-07-16 19:51:02.825651 c1c3ffe7-43b2-4e0e-84d5-57af26a4a4e8 {"md5": "aa412770544a6e7d8576109efb942e4b", "pid": "161911846", "note": [{"label": ["Aesch. ein frühmittelelterliches Gräberfeld / Chantal Hartmann ; mit Beiträgen von Andreas Cueni und Antoinette Rast-Eicher, 2009"], "noteType": "dataSource"}, {"label": ["Commune du canton de Lucerne au bord du Hallwiler See"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/161911846", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/238806520", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)968963935", "source": "GND"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Eich_(Lucerne)", "source": "WIKIPEDIA"}], "variant_access_point": ["Aesch (Canton de Lucerne, Suisse)", "Aesch (Kanton Luzern, Schweiz)"], "authorized_access_point": "Aesch (Lucerne, Suisse)"} 1 -2024-07-16 19:51:03.05262 2024-07-16 19:51:03.052641 b7384880-d017-4d0f-b70b-54cddf1b3f6f {"md5": "d32fe8280c4844f0ffcb5c67553d3e82", "pid": "02775751X", "note": [{"label": ["Alps, Italian (Italy) ; LCSH, 1988-12"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Grappa (Italie ; massif)"}, {"authorized_access_point": "Cadore (Italie)"}, {"authorized_access_point": "Dolomites (Italie ; massif)"}, {"authorized_access_point": "Alpes juliennes"}, {"authorized_access_point": "Alpes cottiennes"}, {"authorized_access_point": "Alpes maritimes (massif)"}, {"authorized_access_point": "Adamello (Italie ; massif)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02775751X", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040278395", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/316431852", "source": "VIAF"}], "variant_access_point": ["Alpes italiennes"], "authorized_access_point": "Alpes (Italie)"} 1 -2024-07-16 19:51:03.327851 2024-07-16 19:51:03.327886 6bf18d02-ed41-4944-a43c-ba7edc149521 {"md5": "30d7b3938fed5f84d44126446e016203", "pid": "028724208", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028724208", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12050127s", "source": "BNF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4118667-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041186672", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/316747146", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Tunnel_du_Simplon", "source": "WIKIPEDIA"}], "authorized_access_point": "Simplon, Tunnel du"} 1 -2024-07-16 19:51:04.614482 2024-07-16 19:51:04.614517 d824fd89-0f08-474d-bd96-431b379529eb {"md5": "e1e6ca6b5cbb5e7f08632744bf00341b", "pid": "260966401", "note": [{"label": ["L'intérieur du temple de La Sagne après rénovation / Galley, Christian,, photographe (créateur), 2001", "Visualisation sur SITN- Géoportail du système d'information du territoire neuchâtelois https://sitn.ne.ch, 2022-03-14"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/260966401", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/93164959497624020651", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)964991500", "source": "GND"}], "relation_pid": {"type": "redirect_from", "value": "261065416"}, "authorized_access_point": "La Sagne (Neuchâtel, Suisse)"} 1 -2024-07-16 19:51:04.882125 2024-07-16 19:51:04.882161 b51fdd1f-cd67-4ef2-a700-2d00909f4944 {"md5": "7ab33eca31f1736c6447842791142a4d", "pid": "26144722X", "note": [{"label": ["L'or de Mund / Rolf Jeitziner, Barbara Seiler, 2021", "https://fr.wikipedia.org/wiki/Mund_(Valais), 2022-03-31"], "noteType": "dataSource"}, {"label": ["Village situé dans le Haut-Valais"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/26144722X", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/340164960096024022192", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)941147797", "source": "GND"}], "authorized_access_point": "Mund (Valais, Suisse)"} 1 -2024-07-16 19:51:05.111283 2024-07-16 19:51:05.111321 4b75d431-f9ec-4301-80f2-e38718dc2f4c {"md5": "ba6ca6d6e83aba4a80c37ce03d34e610", "pid": "027218546", "note": [{"label": ["GLU"], "noteType": "dataSource"}, {"label": ["Voir aussi aux vedettes commençant par Afrique, par ex. : Afrique anglophone ; Afrique australe", "Voir aussi la subdivision Et l'Afrique aux collectivités (à l'exception des types de collectivités) et aux personnes"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Sahel"}, {"authorized_access_point": "Afrique du Nord"}, {"authorized_access_point": "Afrique subsaharienne"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027218546", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119308418", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040006956", "source": "GND"}, {"type": "uri", "value": "https://d-nb.info/gnd/4000695-5", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/123310773", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Afrique", "source": "WIKIPEDIA"}], "authorized_access_point": "Afrique"} 1 -2024-07-16 19:51:05.351636 2024-07-16 19:51:05.35167 369512dc-5322-4ff9-a374-6fc1cfd9aa32 {"md5": "618583fb790e3bd6a11c27d22bc9486c", "pid": "027229246", "note": [{"label": ["IFLA, Names of states, 1981. Österreich ; GKD, 1994-05 ; SWD, 1995-04", "Laval RVM, 1997-02"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les ouvrages qui traitent de l'Autriche, des origines à nos jours, quelles qu'aient été son étendue territoriale et son régime politique. Cependant les ouvrages relatifs à l'Autriche-Hongrie (1867-1918) se trouvent sous la vedette Autriche-Hongrie ; et ceux qui, pour la même période, se limitent à la partie autrichienne de l'empire (Cisleithanie) se trouvent sous la vedette Autriche, suivie des subdivisions de sujet et chronologiques appropriées"], "noteType": "general"}, {"label": ["Voir aussi la subdivision Et l'Autriche aux personnes et collectivités", "Voir aussi la subdivision Réclamations contre l'Autriche aux lieux"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Europe centrale"}, {"authorized_access_point": "Pays de l'Union européenne"}, {"authorized_access_point": "Pays de langue allemande"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027229246", "source": "IDREF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4043271-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040432718", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/422148574296124430006", "source": "VIAF"}], "variant_access_point": ["Cisleithanie", "Empire d'Autriche", "Ostmark", "Zisleithanien", "Austria"], "authorized_access_point": "Autriche"} 1 -2024-07-16 19:51:05.611277 2024-07-16 19:51:05.611289 9bf8d02f-e84b-4b91-9f30-9d99d9242a6b {"md5": "0c4cafbf21716abfa4638a9fbbe4335f", "pid": "027401421", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027401421", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040753034", "source": "GND"}, {"type": "uri", "value": "http://d-nb.info/gnd/4075303-7", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173035857", "source": "VIAF"}, {"type": "uri", "value": "http://viaf.org/viaf/83148570667224311413", "source": "VIAF"}], "relation_pid": {"type": "redirect_from", "value": "088761398"}, "variant_access_point": ["Neuenburg (Suisse)", "Neocomi Helvetorum", "Neufchâtel", "Neufchastel", "Novum Castrum", "Novi Castri", "Neocomum", "Neocomi"], "authorized_access_point": "Neuchâtel (Neuchâtel, Suisse)"} 1 -2024-07-16 19:51:06.883537 2024-07-16 19:51:06.883571 d4df63b1-6205-4fbc-bb51-6e4300336121 {"md5": "9bf64b25a5d46f3276162fe2a05281e7", "pid": "027356302", "note": [{"label": ["GLU"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent des pays riverains de la Méditerranée orientale (Chypre, Égypte, Palestine, Israe͏̈l, Liban, Syrie) et de la Jordanie. Les ouvrages qui traitent de l'ensemble de l'Asie occidentale, et éventuellement de l'Égypte et du Soudan, se trouvent sous la vedette Moyen-Orient"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Méditerranée (région ; est)"}, {"authorized_access_point": "Moyen-Orient"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027356302", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15365915b", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)04068878X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/170319740", "source": "VIAF"}], "variant_access_point": ["Levant", "Orient, Proche-"], "authorized_access_point": "Proche-Orient"} 1 -2024-07-16 19:51:10.235766 2024-07-16 19:51:10.235773 c9830725-e60d-4c83-a558-6d6536c932de {"md5": "3d0c030aa8ff22acc8cdf5b6f71b2fb4", "pid": "027243222", "note": [{"label": ["IFLA, Names of states, 1981. GLU, 1991", "Laval RVM, 1996-02"], "noteType": "dataSource"}, {"label": ["Voir aussi la subdivision Et la Pologne aux personnes et collectivités"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Europe centrale"}, {"authorized_access_point": "Pays slaves"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027243222", "source": "IDREF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4046496-9 ", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040464962", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173581060", "source": "VIAF"}], "variant_access_point": ["Polska"], "authorized_access_point": "Pologne"} 1 -2024-07-16 19:51:11.510849 2024-07-16 19:51:11.510882 2c562227-1bb9-466d-b93c-f659ce3021ad {"md5": "b1a0f1cd5bd7661335f72dcfcbab294d", "pid": "027222950", "note": [{"label": ["IFLA, Names of states, 1981"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Andes (région)"}, {"authorized_access_point": "Cône Sud de l'Amérique du Sud"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027222950", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15238523s", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040099296", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/233665742", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Chili", "source": "WIKIPEDIA"}], "variant_access_point": ["Chile"], "authorized_access_point": "Chili"} 1 -2024-07-16 19:51:12.803544 2024-07-16 19:51:12.803561 549f5233-c741-4091-a150-2419531acba2 {"md5": "b1e2591463c0f2fdacba7131c1602289", "pid": "027251411", "note": [{"label": ["GLU, 1991. Mourre, 1986", "Laval RVM, 1997-02"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027251411", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11933474v", "source": "BNF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4062501-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04062501X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/136651400", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Venise", "source": "WIKIPEDIA"}], "variant_access_point": ["Venezia (Italie)", "Venise (République)"], "authorized_access_point": "Venise (Italie)"} 1 -2024-07-16 19:51:13.078626 2024-07-16 19:51:13.078663 4ecb0303-0852-4182-85ad-f1b3b65d19a8 {"md5": "84ff30a18d2a063afd3b1f34cb10e01c", "pid": "027318494", "note": [{"label": ["GDEL. SY 1991/92"], "noteType": "dataSource"}, {"label": ["Canton suisse"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Suisse - Cantons"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027318494", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040789829", "source": "GND"}, {"type": "uri", "value": "http://d-nb.info/gnd/4078982-2", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172278245", "source": "VIAF"}], "variant_access_point": ["Léman (Suisse)", "Vaud", "Waadt (Suisse)"], "authorized_access_point": "Vaud (Suisse)"} 1 -2024-07-16 19:51:16.390751 2024-07-16 19:51:16.390771 40cceb15-26c6-438a-85bf-34c86fdf1061 {"md5": "2fe5880f2070a12371d54b09bf406c73", "pid": "027303063", "note": [{"label": ["GDEL. SY 1990/91"], "noteType": "dataSource"}, {"label": ["Canton suisse"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Suisse - Cantons"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCA", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/names/n80104828", "source": "LCA"}, "authorized_access_point": "Valais (Switzerland)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027303063", "source": "IDREF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4064466-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040644669", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/316909073", "source": "VIAF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "914"}], "variant_access_point": ["Vallese (Suisse)", "Wallis (Suisse)"], "authorized_access_point": "Valais (Suisse)"} 1 -2024-07-16 19:51:17.635265 2024-07-16 19:51:17.635269 68b2f0a1-8422-4d1c-9f56-87c68ea8d82d {"md5": "380ec045975ff1d84979cb81ac6399ac", "pid": "027296946", "note": [{"label": ["GDEL"], "noteType": "dataSource"}, {"label": ["Département français (39)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Franche-Comté (France)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027296946", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11936964n", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040932087", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/234191213", "source": "VIAF"}, {"type": "uri", "value": "http://viaf.org/viaf/168693353", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Jura_(département)", "source": "WIKIPEDIA"}], "relation_pid": {"type": "redirect_from", "value": "127958827"}, "variant_access_point": ["Jura", "Jura (département)", "Jura, Département du (France)"], "authorized_access_point": "Jura (France)"} 1 -2024-07-16 19:51:17.830116 2024-07-16 19:51:17.830119 89ca059f-fba1-4bca-90fe-e51bf740fc3e {"md5": "0fcf9c94ae9f97da0c9bd90bfc5e6744", "pid": "027250644", "note": [{"label": ["Pays et capitales du monde / IGN, 1986 ; GLU ; Encycl. universalis, 1984, t.4, p.69 sq. Cambodia ; SY, 1992/1993"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Indochine"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027250644", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)04029400", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/134861112", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Cambodge", "source": "WIKIPEDIA"}], "relation_pid": {"type": "redirect_from", "value": "094318433"}, "variant_access_point": ["Kambūjā", "Kampuchea", "Kampuchea démocratique", "Khmère, République", "République khmère"], "authorized_access_point": "Cambodge"} 1 -2024-07-16 19:51:18.01304 2024-07-16 19:51:18.013044 cda59b99-d01f-4662-a928-f4856958375a {"md5": "88e39cf171715175857435682a1c859c", "pid": "027267873", "note": [{"label": ["BA, 1989"], "noteType": "dataSource"}, {"label": ["Emploi direct en subdivision : [sujet] -- Guyane"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Guyanes"}, {"authorized_access_point": "France - Départements et régions d'outre-mer"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027267873", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040181847", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173457961", "source": "VIAF"}], "relation_pid": {"type": "redirect_from", "value": "087992019"}, "variant_access_point": ["Guyane française"], "authorized_access_point": "Guyane"} 1 -2024-07-16 19:51:18.198246 2024-07-16 19:51:18.198249 7f4f8505-7534-46e9-a7a6-bb341aa7fe1a {"md5": "4106fa410577d0648c2c532ff13f53f9", "pid": "027252620", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027252620", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)04051658X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/9662148705732037080009", "source": "VIAF"}, {"type": "uri", "value": "http://viaf.org/viaf/122531297", "source": "VIAF"}], "relation_pid": {"type": "redirect_from", "value": "169986365"}, "variant_access_point": ["Santiago de Compostela (Espagne)"], "authorized_access_point": "Saint-Jacques-de-Compostelle (Espagne)"} 1 -2024-07-16 19:51:18.390761 2024-07-16 19:51:18.390767 a7e0e5bb-ff9c-4290-bc7d-82076edf052e {"md5": "c012d167b01dbb8d24fd910d09e1d6f2", "pid": "027263762", "note": [{"label": ["GLU. Laval RVM, 2000-01"], "noteType": "dataSource"}, {"label": ["Voir aussi la subdivision Et la Norvège aux collectivités et aux personnes"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Scandinavie"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027263762", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040754715", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/727148574256024430009", "source": "VIAF"}], "variant_access_point": ["Norge", "Noreg"], "authorized_access_point": "Norvège"} 1 -2024-07-16 19:51:18.569982 2024-07-16 19:51:18.569985 1b0440b4-9b65-48de-874f-c99c54121c9a {"md5": "3f12e1a0c6da8d8ace6e38ba0ccc3d5c", "pid": "027239497", "note": [{"label": ["IFLA, Names of states, 1981. GLU, 1991", "Laval RVM, 1997-02"], "noteType": "dataSource"}, {"label": ["Voir aussi la subdivision Et le Mexique aux personnes et collectivités"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027239497", "source": "IDREF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4039058-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040390586", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173636258", "source": "VIAF"}], "variant_access_point": ["Estados unidos mexicanos", "Méjico", "México"], "authorized_access_point": "Mexique"} 1 -2024-07-16 19:51:19.876585 2024-07-16 19:51:19.876601 0b8d5e40-1535-4883-a9c2-b30b56c87f42 {"md5": "00e62591406c96c53539dc9d06979082", "pid": "02725349X", "note": [{"label": ["IFLA, Names of states, 1981"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Afrique du Nord"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02725349X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119336345", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040612066", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/134783062", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Tayara.tn", "source": "WIKIPEDIA"}], "authorized_access_point": "Tunisie"} 1 -2024-07-16 19:51:20.172896 2024-07-16 19:51:20.172923 d1d4dbdb-f1b3-4e43-b727-d33e787ac735 {"md5": "390f864064efe7fc593523d265ad0c08", "pid": "027290530", "note": [{"label": ["GDEL. Laval RVM, 1989-06."], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027290530", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11936474k", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)04003366X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/131280462", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Athènes", "source": "WIKIPEDIA"}], "variant_access_point": ["Athènes", "Athinai (Grèce)"], "authorized_access_point": "Athènes (Grèce)"} 1 -2024-07-16 19:51:23.459023 2024-07-16 19:51:23.459048 6f3946fb-83dd-4781-b711-131f67355d43 {"md5": "ee6d223a97236cdebbd28fc0b033da7d", "pid": "02725108X", "note": [{"label": ["IFLA, Names of states, 1981"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Antilles hispaniques"}, {"authorized_access_point": "Grandes Antilles"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02725108X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119334489", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)04033340X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/162884679", "source": "VIAF"}], "authorized_access_point": "Cuba"} 1 -2024-07-16 19:51:23.698125 2024-07-16 19:51:23.698166 7a4067ca-3c4e-4d24-861a-1d6083b46f5a {"md5": "d1cb8503972c4aca53b75f4578b48205", "pid": "027945774", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027945774", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11987945n", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040554589", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/128144648648649371618", "source": "VIAF"}], "relation_pid": {"type": "redirect_from", "value": "276094255"}, "variant_access_point": ["Solothurn (Suisse)"], "authorized_access_point": "Soleure (Soleure, Suisse)"} 1 -2024-07-16 19:51:23.956173 2024-07-16 19:51:23.9562 d85da3af-257e-4a82-ae3f-26370f30f05c {"md5": "16d4783cf7f4683c88ac580df1b1581a", "pid": "027311430", "note": [{"label": ["Names of states / IFLA, 1981. Pays et capitales du monde / IGN, 1985. Manuel de l'Unesco, 1985. Le Grand atlas de géographie, 1984. GDEL"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages sur la République populaire de Mongolie et/ou sur l'ensemble de la Mongolie"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Asie centrale"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027311430", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040400565", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/155144648525066137570", "source": "VIAF"}], "variant_access_point": ["Mongol Ard Uls", "Mongolie (République populaire)", "Mongolie-extérieure"], "authorized_access_point": "Mongolie"} 1 -2024-07-16 19:51:24.221767 2024-07-16 19:51:24.221839 ee529ba3-168e-4b46-b5e1-96252bff3f4f {"md5": "ae5c3e27c2ba9e8462652b53ec7436c6", "pid": "027405621", "note": [{"label": ["Names of states / IFLA, 1981"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Atlantique, Îles de l'"}, {"authorized_access_point": "Scandinavie"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027405621", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040277542", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/2599148574346024430006", "source": "VIAF"}], "variant_access_point": ["Ísland"], "authorized_access_point": "Islande"} 1 -2024-07-16 19:51:24.48524 2024-07-16 19:51:24.485273 46e857b9-6498-48c5-9145-c6c7a4a04baa {"md5": "86f849fc2b060f97c60510e5d670c11c", "pid": "027768678", "note": [{"label": ["France (Sud) ; Laval RVM, 1996-02"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027768678", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11974022k", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040714039", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172332341", "source": "VIAF"}], "variant_access_point": ["France du sud", "France méridionale", "Midi (France)", "Sud de la France"], "authorized_access_point": "France (sud)"} 1 -2024-07-16 19:51:24.742957 2024-07-16 19:51:24.74299 ec9819bf-c9b7-4567-8918-b6f46e6e8027 {"md5": "edcef52c2207c2ed8c03e812344aee65", "pid": "261121162", "note": [{"label": ["Saint-Léonard de jadis et de naguère / Barthélémy Gillioz, 2021", "https://www.st-leonard.ch/index.php/en-bref, 2022-03-22"], "noteType": "dataSource"}, {"label": ["Commune située dans le canton du Valais"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/261121162", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/102164959931224022033", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)954696867", "source": "GND"}], "authorized_access_point": "Saint-Léonard (Valais, Suisse)"} 1 -2024-07-16 19:51:28.04759 2024-07-16 19:51:28.047598 468f7afb-0feb-4ea0-8cf5-eb8cd89f2052 {"md5": "5eef1e9c914c82ba5d0a269b1dbfe737", "pid": "25887421X", "note": [{"label": ["https://fr.wikipedia.org/wiki/District_des_Franches-Montagnes"], "noteType": "dataSource"}, {"label": ["Suisse, canton de Jura"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/25887421X", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)04259634", "source": "GND"}], "authorized_access_point": "Franches-Montagnes (Suisse)"} 1 -2024-07-16 19:51:28.292719 2024-07-16 19:51:28.292746 875fc8bf-9e05-4591-871a-bcc5e2dcfc12 {"md5": "64aea29bb1ee34ad68ec960f56b698dd", "pid": "027705781", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Rhodanien, Sillon (France)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027705781", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119691089", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)041037766", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041037766", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173745158", "source": "VIAF"}], "authorized_access_point": "Rhône, Vallée du"} 1 -2024-07-16 19:51:29.623794 2024-07-16 19:51:29.623819 f9475d7e-bdad-417a-a1eb-1eb77cfe7bcb {"md5": "280155536c821eac8382978909f0ec8b", "pid": "027524329", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027524329", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119546266", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040713326", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173309353", "source": "VIAF"}], "variant_access_point": ["Carolingien (empire)"], "authorized_access_point": "Empire carolingien"} 1 -2024-07-16 19:51:29.884625 2024-07-16 19:51:29.884649 d5c66526-b63e-4868-90c7-2754d678d425 {"md5": "83596dd4aa3a366606041cce503e0593", "pid": "263837920", "note": [{"label": ["Souvenirs d'un glacier / Corinne Vionnet, 2019", "https://www.larousse.fr/encyclopedie/divers/glacier_du_Rh%C3%B4ne/140851, 2022-08-10"], "noteType": "dataSource"}, {"label": ["Glacier d'où le Rhône prend sa source ; situé dans le Haut-Valais"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263837920", "source": "IDREF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Glacier_du_Rhône", "source": "WIKIPEDIA"}, {"type": "bf:Nbn", "value": "(DE-101)041170008", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/315125827", "source": "VIAF"}], "variant_access_point": ["Rhône (Suisse ; glacier)", "Glacier du Rhône (Suisse)", "Rottengletscher (Suisse)", "Rhonegletscher (Suisse)"], "authorized_access_point": "Rhône, Glacier du (Suisse)"} 1 -2024-07-16 19:51:30.12176 2024-07-16 19:51:30.121767 a13d527f-f870-429b-8a12-1b7aed3ce198 {"md5": "92e54d5303cd7fab20b65171186faf5b", "pid": "264406095", "note": [{"label": ["Passage de la Tête Noire, Vallée du Trient, 1863", "https://fr.wikipedia.org/wiki/Vall%C3%A9e_du_Trient, 2022-09-15"], "noteType": "dataSource"}, {"label": ["Vallée située dans le Bas-Valais"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/264406095", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/247827636", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)955884152", "source": "GND"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Vallée_du_Trient", "source": "WIKIPEDIA"}], "variant_access_point": ["Vallée du Trient (Valais, Suisse)"], "authorized_access_point": "Trient, Vallée du (Valais, Suisse)"} 1 -2024-07-16 19:51:31.669409 2024-07-16 19:51:31.669433 fcb3810f-64a7-4ec9-acc0-f8d4cd0d06f3 {"md5": "6a1ac1ea5b195a2e89bc9bcf0810e5ec", "pid": "027224406", "note": [{"label": ["IFLA, Names of states, 1981. GLU, 1991", "Laval RVM, 1996-02"], "noteType": "dataSource"}, {"label": ["Voir aussi la subdivision Et l'Espagne aux personnes et collectivités"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Ibérique, Péninsule"}, {"authorized_access_point": "Pays de l'Union européenne"}, {"authorized_access_point": "Pays de langue espagnole"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027224406", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040559645", "source": "GND"}, {"type": "uri", "value": "http://d-nb.info/gnd/4055964-6", "source": "GND"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Spain_(groupe)", "source": "WIKIPEDIA"}, {"type": "uri", "value": "http://viaf.org/viaf/147947476", "source": "VIAF"}], "variant_access_point": ["España"], "authorized_access_point": "Espagne"} 1 -2024-07-16 19:51:30.383163 2024-07-16 19:51:30.38319 cb40b83e-3f9f-4742-abce-7493715353f9 {"md5": "49bd031ced726c54530fdb5dbed8effe", "pid": "027237664", "note": [{"label": ["Méditerranée, Région de la ; Laval RVM, 1993-02", "Ecology, biogeography and management of Pinus halepensis and P. brutia forest ecosystems in the Mediterranean Basin ; ISBN9057820552"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les ouvrages qui traitent des îles et des régions riveraines de la Méditerranée"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Afrique du Nord"}, {"authorized_access_point": "Europe du Sud"}, {"authorized_access_point": "Méditerranée, Îles de la"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027237664", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11932344d", "source": "BNF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4074900-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040749002", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173035680", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Bassin_méditerranéen", "source": "WIKIPEDIA"}], "relation_pid": {"type": "redirect_from", "value": "059863188"}, "variant_access_point": ["Bassin méditerranéen", "Méditerranée (mer ; région)", "Méditerranée, Pays de la", "Méditerranéens, Pays", "Pays de la Méditerranée", "Pays méditerranéens", "Régions méditerranéennes", "Région méditerranéenne"], "authorized_access_point": "Méditerranée (région)"} 1 -2024-07-16 19:51:30.63052 2024-07-16 19:51:30.630559 d38ffdbc-3f1f-4056-8afd-75403bf3ecb5 {"md5": "a60b0cb6270e8050729f73551948ee51", "pid": "027225488", "note": [{"label": ["Names of states / IFLA, 1981. Laval RVM, 1983"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Amérique du Nord"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027225488", "source": "IDREF"}, {"type": "uri", "value": "https://catalogue.bnf.fr/ark:/12148/cb119313712", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)000339784", "source": "GND"}, {"type": "uri", "value": "http://d-nb.info/gnd/33978-7", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/421148574296124430003", "source": "VIAF"}], "relation_pid": {"type": "redirect_from", "value": "155744879"}, "variant_access_point": ["États-Unis d'Amérique", "Etats Unis", "United States", "United States of America", "US", "USA"], "authorized_access_point": "États-Unis"} 1 -2024-07-16 19:51:30.891419 2024-07-16 19:51:30.891435 0f4c6a08-e636-48ae-b5e9-df9faa161a00 {"md5": "0be74c406b2b5e243d0c730dcb7bb680", "pid": "027224678", "note": [{"label": ["Europe de l'Est ; Laval RVM, 1995-02"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les ouvrages qui traitent de la partie de l'Europe située à l'est de l'Allemagne et de l'Autriche jusqu'à l'Oural, ou des anciennes démocraties populaires de l'Europe orientale (y compris la RDA). Les ouvrages qui traitent de la région formée par les bassins du Rhin, de l'Elbe, de l'Oder et du Danube jusqu'aux Portes de Fer se trouvent sous la vedette Europe centrale"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "related": [{"authorized_access_point": "Pays slaves"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027224678", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11931303k", "source": "BNF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4075739-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040757390", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/248539062", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Europe_de_l'Est", "source": "WIKIPEDIA"}], "variant_access_point": ["Europe (est)", "Europe centrale et orientale", "Europe orientale", "Pays d'Europe centrale et orientale", "PECO"], "authorized_access_point": "Europe de l'Est"} 1 -2024-07-16 19:51:31.120597 2024-07-16 19:51:31.120602 5b5eb7d6-9db3-437a-a7e6-12cf321b8b28 {"md5": "14c72f6bff502f85b9b4986f864b0ef1", "pid": "027254755", "note": [{"label": ["IFLA, Names of states, 1981. GLU"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les documents qui traitent de la Turquie dans ses frontières actuelles, ou de la seule Anatolie (terme qui pour les Turcs désigne toute la Turquie d'Asie). Les documents sur l'ensemble de la Turquie avant 1922 sont sous la vedette Empire ottoman ; ceux sur l'Anatolie antique et byzantine sont sous la vedette Asie mineure"], "noteType": "general"}, {"label": ["Voir aussi la subdivision Et la Turquie aux collectivités, familles et personnes"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Moyen-Orient"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027254755", "source": "IDREF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4061163-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040611639", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/175126574", "source": "VIAF"}], "variant_access_point": ["Anadolu (Turquie)", "Anatolie (Turquie)", "Türkiye"], "authorized_access_point": "Turquie"} 1 -2024-07-16 19:51:31.378106 2024-07-16 19:51:31.378143 370958b0-7e2f-4c16-901d-ff2fde15039e {"md5": "1c6b7130b66849b21f1fed106c597327", "pid": "027263711", "note": [{"label": ["IFLA, Names of states, 1981. GLU, 1991", "Laval RVM, 1997-02. Marrākuš ; GKD, 1994-05"], "noteType": "dataSource"}, {"label": ["Voir aussi la subdivision Et le Maroc aux personnes et collectivités"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Afrique du Nord"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027263711", "source": "IDREF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4037680-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04037680X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/6606148574280324430001", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Maróc", "source": "WIKIPEDIA"}], "variant_access_point": ["Al-Maghrib al- Aqṣā", "Al Maghreb Al Aqsa", "Chérifien, Empire", "Empire chérifien", "Marruecos", "Марокко", "Marokko"], "authorized_access_point": "Maroc"} 1 -2024-07-16 19:51:35.058878 2024-07-16 19:51:35.058898 1f2ad8bb-eeaf-4a0b-85cc-c3327f3ece4f {"md5": "25dfb2efd760f151c22517bd63973b21", "pid": "02725030X", "note": [{"label": ["IFLA, Names of states, 1981. SY, 1990/1991"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Benelux"}, {"authorized_access_point": "Pays de l'Union européenne"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02725030X", "source": "IDREF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4005406-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040054063", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/7718148574367424430004", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Belgium_(village_du_Wisconsin)", "source": "WIKIPEDIA"}], "variant_access_point": ["Belgie͏̈", "Belgien", "Pays-Bas méridionaux", "Pays-Bas autrichiens", "Pays-Bas espagnols", "Südliche Niederlande", "Zuidelijke Nederlanden"], "authorized_access_point": "Belgique"} 1 -2024-07-16 19:51:42.578297 2024-07-16 19:51:42.578308 ce94e997-c47a-4173-ba64-ea91114f5c85 {"md5": "aadc4f6bb0da6d1325e76fb6c0bde95a", "pid": "027429261", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "related": [{"authorized_access_point": "Saint Point, Lac de (France)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027429261", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11947260s", "source": "BNF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4091200-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040912000", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/3231148574348624430008", "source": "VIAF"}], "authorized_access_point": "Doubs (cours d'eau)"} 1 -2024-07-16 19:51:42.850361 2024-07-16 19:51:42.850378 2b90f5ee-e626-4663-b048-cb41e1f2ffa2 {"md5": "5a5f0ff2dc0d3fbaa5a667067e73b447", "pid": "027223736", "note": [{"label": ["Autorité matière / BPI, 1980. BN ACO"], "noteType": "dataSource"}, {"label": ["Les ouvrages qui traitent de la partie orientale de l'Allemagne (dans les frontières de la période considérée) avant 1949 ou depuis 1990 se trouvent sous la vedette Allemagne (est)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027223736", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11931234k", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040118908", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/268607483", "source": "VIAF"}], "variant_access_point": ["Allemagne (RDA)", "Allemagne de l'Est", "Allemande, République démocratique", "DDR", "Deutsche Demokratische Republik", "Deutschland (DDR)", "RDA", "République démocratique allemande"], "authorized_access_point": "Allemagne (République démocratique)"} 1 -2024-07-16 19:51:43.061002 2024-07-16 19:51:43.061014 3c63e695-531b-44ab-b12f-a6a00e857d07 {"md5": "8b5f28d47a4a6edfbc29adbd0111b078", "pid": "027251551", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Italie (sud)"}, {"authorized_access_point": "Méditerranée, Îles de la"}, {"authorized_access_point": "Italie - Régions"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027251551", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11933486v", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040551938", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/128149106013968490737", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Sicile", "source": "WIKIPEDIA"}], "variant_access_point": ["Sicile", "Sicile (Royaume)", "Sicilia (Italie)", "Trinacrie", "Trinacria"], "authorized_access_point": "Sicile (Italie)"} 1 -2024-07-16 19:51:43.280714 2024-07-16 19:51:43.280725 3e5040f1-d4eb-4a28-805e-b7d2b6bcd032 {"md5": "6504d4ff2db6728c95ecc3472b973ac5", "pid": "027230309", "note": [{"label": ["Names of states / IFLA, 1981. Pays et capitales du monde / IGN, 1985. Manuel de l'Unesco, 1985"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Afrique occidentale"}], "related": [{"authorized_access_point": "Moronou (Royaume)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027230309", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040144267", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/164154015337309310002", "source": "VIAF"}], "variant_access_point": ["Côte-d'Ivoire"], "authorized_access_point": "Côte d'Ivoire"} 1 -2024-07-16 19:51:43.494758 2024-07-16 19:51:43.494772 bd4bddca-b223-498b-a4e4-96241d6edbf0 {"md5": "b7876c3257c100ec68d4dc1237343654", "pid": "027236668", "note": [{"label": ["GLU"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027236668", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11932254f", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040359190<", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/124321959", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Lisbonne", "source": "WIKIPEDIA"}], "variant_access_point": ["Al-Uchbūna (Portugal)", "Felicitas Julia (ville ancienne)", "Lisboa (Portugal)", "Olisipo (ville ancienne)"], "authorized_access_point": "Lisbonne (Portugal)"} 1 -2024-07-16 19:51:43.69129 2024-07-16 19:51:43.691295 04fa09c5-aaeb-4f20-86aa-8b8c7556eaa6 {"md5": "b40f19f491375095c03a6112eed148b5", "pid": "028179420", "note": [{"label": ["GDEL. SY 1990/91"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Suisse - Cantons"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028179420", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb120066503", "source": "BNF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4068041-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04068041X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/140174177", "source": "VIAF"}], "authorized_access_point": "Zurich (Suisse ; canton)"} 1 -2024-07-16 19:51:43.892063 2024-07-16 19:51:43.892073 bc4d09b0-ecb2-4827-9716-8bdeb88159ca {"md5": "1d4e35afa607c819d598a7e763213972", "pid": "027259285", "note": [{"label": ["GLU", "Laval RVM, 1995-08. Alpen ; SWD, 1995-04"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les ouvrages qui traitent du massif des Alpes ou de l'ensemble de la région alpine (massif et régions périphériques)"], "noteType": "general"}, {"label": ["Voir aussi aux différentes parties des Alpes, par ex. Alpes (Autriche), Alpes (ouest)"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Alpes (Allemagne)"}, {"authorized_access_point": "Alpes (Autriche)"}, {"authorized_access_point": "Alpes (Italie)"}, {"authorized_access_point": "Alpes (France)"}, {"authorized_access_point": "Alpes (Slovénie)"}, {"authorized_access_point": "Alpes (Suisse)"}, {"authorized_access_point": "Alpes (Liechtenstein)"}, {"authorized_access_point": "Alpes (Monaco)"}, {"authorized_access_point": "Alpes (Nord)"}, {"authorized_access_point": "Alpes (centre)"}, {"authorized_access_point": "Alpes (est)"}, {"authorized_access_point": "Alpes (ouest)"}, {"authorized_access_point": "Alpes (Sud)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027259285", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11934036f", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040013286", "source": "GND"}, {"type": "uri", "value": "http://d-nb.info/gnd/4001328-5", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/148144928888154441142", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Alpes", "source": "WIKIPEDIA"}], "variant_access_point": ["Alpen", "Alpes (chaîne)", "Alpes (massif)", "Alpes (région)", "Alpi", "Alpok", "Alpin, Arc", "Arc alpin", "Europe alpine"], "authorized_access_point": "Alpes"} 1 -2024-07-16 19:51:45.185805 2024-07-16 19:51:45.18583 4826e8d6-a14f-467d-a743-d9fa67f54597 {"md5": "68ae9405a6c82333df0cce16f7a09c25", "pid": "027266257", "note": [{"label": ["Moreau", "Laval RVM, 2001-01"], "noteType": "dataSource"}, {"label": ["Ancienne province de France, la Provence historique a formé en 1790 les trois départements des Bouches-du-Rhône, du Var et des Basses-Alpes (Alpes-de-Haute-Provence), auxquels s'est rajouté le département du Vaucluse, formé en 1793 par Avignon et le Comtat Venaissin. La Provence géographique, plus vaste que l'ancienne province, est une région naturelle délimitée par le Rhône, la Drôme, la vallée de l'Ubaye, les Alpes maritimes et la mer"], "noteType": "general"}, {"label": ["Voir aussi la subdivision Et la Provence aux collectivités, familles et personnes"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027266257", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11934548t", "source": "BNF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4047564-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040475646", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/147742069", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Provence", "source": "WIKIPEDIA"}], "variant_access_point": ["Provence", "Provence (Comté)"], "authorized_access_point": "Provence (France)"} 1 -2024-07-16 19:51:45.468967 2024-07-16 19:51:45.468985 6df48dc4-0816-4e55-84d8-49b1244e0a4e {"md5": "2026bfc1f21983e82f2749f2f9300e8b", "pid": "027350789", "note": [{"label": ["GLU. Encycl. universalis, 1989, 20, 642-661", "Laval RVM, 1997-02"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les ouvrages sur la région formée par le Danemark, la Norvège et la Suède, éventuellement étendue à la Finlande et à l'Islande"], "noteType": "general"}, {"label": ["Voir aussi la subdivision Et la Scandinavie aux personnes et collectivités"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Europe du Nord"}, {"authorized_access_point": "Pays de langues germaniques"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027350789", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15238529v", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040552098", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172765142", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Scandinavie", "source": "WIKIPEDIA"}], "variant_access_point": ["Conseil nordique, Pays du", "États scandinaves", "Fennoscandie", "Nordiques, Pays", "Pays du Conseil nordique", "Pays nordiques", "Pays scandinaves", "Scandinaves, Pays"], "authorized_access_point": "Scandinavie"} 1 -2024-07-16 19:51:45.709121 2024-07-16 19:51:45.70913 e37de233-0fcd-41e4-9dbb-96fdc6fdea60 {"md5": "62a171741b815ad55ed0c3934ffb3228", "pid": "027401901", "note": [{"label": ["GDEL"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent du continent océanien, constitué par l'Australie, la Nouvelle-Zélande et les archipels de Mélanésie (y compris la Nouvelle-Guinée), Micronésie et Polynésie. Les ouvrages sur l'ensemble des îles de l'océan Pacifique se trouvent sous la vedette Pacifique, Îles du"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Pacifique (région)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027401901", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15364628m", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040442578", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/312565208", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Océanie", "source": "WIKIPEDIA"}], "authorized_access_point": "Océanie"} 1 -2024-07-16 19:51:53.068792 2024-07-16 19:51:53.068802 3d4658b3-6037-4e43-b52a-7db7bf25c943 {"md5": "2716c5701adfcb5763c00877aacdd1a6", "pid": "02726369X", "note": [{"label": ["IFLA, Names of states, 1981 ; Pays et capitales du monde / IGN, 1986"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent de l'île d'Irlande et/ou de la République d'Irlande. Les ouvrages qui traitent de la partie de l'Ulster demeurée britannique en 1921 se trouvent sous Irlande du Nord"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Britanniques, Îles"}, {"authorized_access_point": "Pays de l'Union européenne"}, {"authorized_access_point": "Pays celtiques"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02726369X", "source": "IDREF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4027667-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040276678", "source": "GND"}], "variant_access_point": ["Éire", "Ireland"], "authorized_access_point": "Irlande"} 1 -2024-07-16 19:52:37.230993 2024-07-16 19:52:37.231003 734dff6e-f0d6-4117-bd7d-0c4e10f5e7cf {"md5": "99ab64574732f58131461a1198b4f22f", "pid": "030575257", "note": [{"label": ["GDEL. SY 1990/91"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Genevois"}, {"authorized_access_point": "Suisse - Cantons"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030575257", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040201384", "source": "GND"}, {"type": "uri", "value": "http://d-nb.info/gnd/4020138-7", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/159388627", "source": "VIAF"}], "authorized_access_point": "Genève (Suisse ; canton)"} 1 -2024-07-16 19:51:53.307969 2024-07-16 19:51:53.307989 8aad575f-ed2b-4045-8d0d-cdf4e6c7f32c {"md5": "e93db978958b0789659e18b9813a40f1", "pid": "027356949", "note": [{"label": ["IFLA, Names of states, 1981. BN Service arabe", "Laval RVM, 1997-02. Sūrīyā ; GKD, 1994-05"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Proche-Orient"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027356949", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040587940", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/154701530", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Syrie", "source": "WIKIPEDIA"}], "variant_access_point": ["سوريا", "Sūriyā", "سورية", "Sūriyaẗ", "سوريه", "Sūrīyah"], "authorized_access_point": "Syrie"} 1 -2024-07-16 19:51:54.548651 2024-07-16 19:51:54.548663 6e1f48f6-d601-4229-86b4-609f67e82edb {"md5": "0a5471118ebedb167ca1b6979e940270", "pid": "027263487", "note": [{"label": ["GLU"], "noteType": "dataSource"}, {"label": ["L'Amazonie correspond aux bassins moyen et inférieur de l'Amazone"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Amérique du Sud"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027263487", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040016269", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173418487", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Amazonie_(Ngong)", "source": "WIKIPEDIA"}], "authorized_access_point": "Amazonie"} 1 -2024-07-16 19:51:54.799248 2024-07-16 19:51:54.799268 7dd5c95c-945f-4e96-a52c-4f9ffdffe737 {"md5": "238c76ca91fddb9d484106ad2a9ff519", "pid": "027408647", "note": [{"label": ["GLU"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027408647", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15239961p", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040763102", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/153543031", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Prague", "source": "WIKIPEDIA"}], "variant_access_point": ["Prague", "Praha (République tchèque)"], "authorized_access_point": "Prague (République tchèque)"} 1 -2024-07-16 19:51:55.096452 2024-07-16 19:51:55.096473 33e92444-c036-48ac-8555-78b027a103a0 {"md5": "57b08ae67e61c49ed024539a506baa8e", "pid": "027322998", "note": [{"label": ["Names of states / IFLA, 1981. LCSH, 1985"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Afrique orientale anglophone"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027322998", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040302369", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/869148574256524430002", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Kenya_(Lubumbashi)", "source": "WIKIPEDIA"}], "authorized_access_point": "Kenya"} 1 -2024-07-16 19:51:55.367124 2024-07-16 19:51:55.367134 343baec4-e452-4a2a-a60c-7aadfcb29876 {"md5": "4dbf7608bb4207e46fc899dce7473146", "pid": "031649424", "note": [{"label": ["GeoNames (2018-06-27)"], "noteType": "dataSource"}, {"label": ["Aix-la-Chapelle est une ville d'Allemagne située dans le Land de Rhénanie-du-Nord-Westphalie. Elle se situe à 5 km de la jonction des frontières de l'Allemagne, des Pays-Bas et de la Belgique. C'est la ville la plus à l'ouest de l'Allemagne", "Coordonnées en degrés séxagésimaux : N 50°46′36″ / E 6°05′00″"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Rhénanie du Nord-Westphalie (Allemagne)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031649424", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12282480h", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040000079", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/124330404", "source": "VIAF"}], "relation_pid": {"type": "redirect_from", "value": "228265843"}, "variant_access_point": ["Aachen", "Aken", "Akwizgran", "Aquisgrán", "Aquisgrano"], "authorized_access_point": "Aix-la-Chapelle (Allemagne ; région)"} 1 -2024-07-16 19:51:55.590559 2024-07-16 19:51:55.590573 22a9a59c-1b85-435d-a976-ce4cc0884705 {"md5": "f176e3296f3dad69c215812dc0844b91", "pid": "185110363", "note": [{"label": ["Carte nationale de la Suisse 1:50 000. 273 : Montana / Service topographique fédéral, 1974", "https://fr.wikipedia.org/, 2020-11-30"], "noteType": "dataSource"}, {"label": ["Ancienne commune du canton du Valais, située dans le district de Sierre. Elle fusionna le 1er janvier 2017 avec Mollens, Chermignon et Randogne pour former Crans-Montana."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/185110363", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb160481737", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/131144648658835357814", "source": "VIAF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4275006-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042750067", "source": "GND"}, {"type": "bf:Nbn", "value": "Q70186", "source": "WIKIDATA"}], "relation_pid": {"type": "redirect_from", "value": "250838443"}, "authorized_access_point": "Montana (Valais, Suisse)"} 1 -2024-07-16 19:51:56.892571 2024-07-16 19:51:56.892582 049f5003-95a1-429f-ace2-ac448b07cff7 {"md5": "0eddcb032da4278d7bbf6b80a381b719", "pid": "027502368", "note": [{"label": ["GLU", "Laval RVM, 2001-01"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les documents qui traitent de la partie de l'Asie située à l'est de l'Inde et au sud de la Chine, comprenant l'Indochine (Birmanie, Cambodge, Laos, Malaisie, Thaïlande et Viet-Nam) et l'Insulinde (Brunéi, Indonésie, Malaisie orientale, Philippines et Singapour)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Asie orientale"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027502368", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040584488", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/255510483", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Asie_du_Sud-Est", "source": "WIKIPEDIA"}], "variant_access_point": ["ASEAN, Pays de l'", "Asie (sud-est)", "Asie sud-orientale", "Association des nations de l'Asie du Sud-Est, Pays de l'", "Pays de l'ASEAN", "Pays de l'Association des nations de l'Asie du Sud-Est", "Sud-Est asiatique"], "authorized_access_point": "Asie du Sud-Est"} 1 -2024-07-16 19:51:57.102829 2024-07-16 19:51:57.10284 a53354b0-12d2-4227-ab5c-5c4e93123e56 {"md5": "3b235193ed1de3a125dae22d380760e5", "pid": "032861621", "note": [{"label": ["GLU. Österreich-Ungarn ; SWD, 1991"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les ouvrages qui traitent de l'ensemble de l'Autriche-Hongrie (1867-1918). Les ouvrages qui traitent plus particulièrement des parties autrichienne et hongroise de l'empire se trouvent sous les vedettes Autriche et Hongrie (suivies des subdivisions appropriées)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Europe du Centre-Est"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032861621", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb123809301", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040756130", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/38146285364515371330", "source": "VIAF"}], "variant_access_point": ["Austro-hongroise, Monarchie", "Double Monarchie", "Empire austro-hongrois", "Monarchie austro-hongroise", "österreich-Ungarn", "Osztrák-Magyar Monárchia"], "authorized_access_point": "Autriche-Hongrie"} 1 -2024-07-16 19:51:57.365152 2024-07-16 19:51:57.365166 16461aec-6e61-4fa7-8633-be273097592d {"md5": "42eb923bc72cf150dc09cd103ef08313", "pid": "027442128", "note": [{"label": ["IFLA, Names of states, 1981. Pays et capitales du monde / IGN, 1986. Laval RVM, 1995-02"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent du territoire du Rwanda, avant ou depuis son indépendance en 1962. Les ouvrages sur le Ruanda-Urundi, qui comprenait à l'époque coloniale le territoire des actuels Rwanda et Burundi, se trouvent sous la vedette Ruanda-Urundi"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Afrique centrale"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027442128", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040769100", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/3125148574307124430008", "source": "VIAF"}], "variant_access_point": ["Ruanda"], "authorized_access_point": "Rwanda"} 1 -2024-07-16 19:51:57.574716 2024-07-16 19:51:57.57473 79a8978a-e516-425a-9c69-982516131576 {"md5": "9284327d57ff34837b40a5cc50d64536", "pid": "027472906", "note": [{"label": ["GDEL. Laval RVM, 1991-02"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent de l'empire byzantin, de 395 à 1453. Les ouvrages qui traitent de la ville de Byzance avant 330 se trouvent sous la vedette Byzance"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Orient"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027472906", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040092569", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/149804778", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Empire_byzantin", "source": "WIKIPEDIA"}], "variant_access_point": ["Byzantin, Empire", "Empire d'Orient", "Empire romain d'Orient", "Orient, Empire d'"], "authorized_access_point": "Empire byzantin"} 1 -2024-07-16 19:52:13.348431 2024-07-16 19:52:13.348439 68f52192-43e4-4914-a484-1218e12b3927 {"md5": "168456b1c3f70d88e62cb7825e56ba8a", "pid": "027585190", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "related": [{"authorized_access_point": "Pompéi (ville ancienne)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027585190", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119593586", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040467554", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/316884438", "source": "VIAF"}], "authorized_access_point": "Pompéi (Italie)"} 1 -2024-07-16 19:52:13.564246 2024-07-16 19:52:13.564253 996df500-f99d-4da4-ade6-17f5c4d1ccf1 {"md5": "e23cf57c69aa4106febfd3e5a19b6e7f", "pid": "237279614", "note": [{"label": ["Source manuscrite : Journal de voyage / par MM. Regnault et Sauvage, Élèves ingénieurs, 1835 (manuscrit conservé à la bibliothèque de l’École des mines de Paris MINES ParisTech sous la cote J 1835 (43) )", "GeoNames (2019-07-26)"], "noteType": "dataSource"}, {"label": ["Commune du canton du Valais (Suisse).", "N 46°19′02″ / E 7°38′03″"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/237279614", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/241846356", "source": "VIAF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4393124-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)946153248", "source": "GND"}], "variant_access_point": ["Leuk (Valais, Suisse)", "Louèche (Valais, Suisse)", "Loèche-Ville (Valais, Suisse)"], "authorized_access_point": "Loèche (Valais, Suisse)"} 1 -2024-07-16 19:07:13.940804 2024-07-16 19:52:13.801164 a4d7b873-414f-4945-b059-36604815955b {"md5": "ea5330b04fb1837acea41d85b002ba4c", "pid": "271323590", "note": [{"label": ["Coordonnées géographiques : E 7°36' / N 47°33'"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271323590", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb152399861", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040046176", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/3925169442785525340002", "source": "VIAF"}], "variant_access_point": ["Bâle-Ville (Suisse)", "Basel-Stadt (Suisse)", "Basilea Citta (Suisse)", "Basilea", "Basilia", "Basilea Rauracorum", "Colonia Munatiana", "Athenae Rauracae", "Bazela", "Baesula", "Basula", "Baille", "Baalle", "Basle"], "authorized_access_point": "Bâle (Bâle-Ville, Suisse)"} 2 -2024-07-16 19:52:15.383367 2024-07-16 19:52:15.383382 176166c6-3938-4fbd-a8c4-0614a3ee0556 {"md5": "dfc583a3a820e4874eaf2e436aab62b5", "pid": "276534921", "note": [{"label": ["Coordonnées géographiques : E 43°20' - E 50°15' / S 12° - S 25°30'"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Afrique"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/276534921", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15325769w", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040744256", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/146036991", "source": "VIAF"}], "relation_pid": {"type": "redirect_from", "value": "027238180"}, "variant_access_point": ["République Malgache (1960-)", "Malgache, République (1960-)", "Madagascar (1960-)"], "authorized_access_point": "Madagascar"} 1 -2024-07-16 19:52:15.631305 2024-07-16 19:52:15.631326 2e234a90-8297-4dac-b8bf-7829c0281965 {"md5": "9169be1795b476a90d867f8ce3c61603", "pid": "027342395", "note": [{"label": ["GLU. SY 1994-95"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent de la Russie jusqu'en 1917, ou de la République socialiste fédérative soviétique de Russie (1918-1991), ou de l'actuelle Fédération de Russie. Les ouvrages qui traitent de l'ensemble des républiques socialistes soviétiques de 1917 à 1991 (bien que l'URSS n'ait été fondée officiellement que le 30-12-1922) se trouvent sous la vedette URSS"], "noteType": "general"}, {"label": ["Voir aussi la subdivision Et la Russie aux personnes et aux collectivités"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Pays de la CEI"}, {"authorized_access_point": "Pays slaves"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027342395", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119405184", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040768996", "source": "GND"}, {"type": "uri", "value": "https://d-nb.info/gnd/4076899-5", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/3147270312635700007", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Empire_russe", "source": "WIKIPEDIA"}], "variant_access_point": ["Empire russe", "Fédération de Russie", "Moscovie", "Rossia", "RSFSR", "Russie (Empire)", "Russie (Fédération)", "Russie (République socialiste fédérative soviétique)"], "authorized_access_point": "Russie"} 1 -2024-07-16 19:52:15.922752 2024-07-16 19:52:15.922773 3d4f273c-7477-4993-b73e-5ffe8d743f98 {"md5": "0c79969cec313b5063fa3275a09517e4", "pid": "027244482", "note": [{"label": ["Laval RVM, 1992-02"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les ouvrages qui traitent de la région du Proche-Orient comprise entre le Liban, la Mer Morte, la Méditerranée et le désert de Syrie, correspondant à l'ancien pays de Canaan, puis aux royaumes d'Israe͏̈l et de Juda et actuellement à l'État d'Israe͏̈l ainsi qu'aux divers territoires à juridiction contestée. Les ouvrages sur un territoire en particulier se trouvent à son nom propre"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Proche-Orient"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027244482", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11932928t", "source": "BNF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4044381-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040443817", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/138926424", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Palestine_(Arkansas)", "source": "WIKIPEDIA"}], "variant_access_point": ["Terre sainte", "فلسطين", "Filasṭīn"], "authorized_access_point": "Palestine"} 1 -2024-07-16 19:52:16.170454 2024-07-16 19:52:16.170476 9b15923f-a207-4731-b40c-6a9264059299 {"md5": "3f374de115c2e23964659484009a8e65", "pid": "027249654", "note": [{"label": ["IFLA, Names of states, 1981. GLU, 1991", "Laval RVM, 1997-02"], "noteType": "dataSource"}, {"label": ["Voir aussi la subdivision Et la Suisse aux personnes et collectivités"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Europe centrale"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027249654", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15241146v", "source": "BNF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11933332n", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040538818", "source": "GND"}, {"type": "uri", "value": "https://d-nb.info/gnd/4053881-3", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/3896148574351624430005", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Suisse_(Moselle)", "source": "WIKIPEDIA"}], "variant_access_point": ["Confédération helvétique", "Confederazione svizzera", "Helvetia", "Helvétie", "Schweiz", "Schweizerische Eidgenossenschaft", "Svizra", "Svizzera"], "authorized_access_point": "Suisse"} 1 -2024-07-16 19:52:16.399905 2024-07-16 19:52:16.399914 47764638-d38e-480e-a6f3-699a96d0c6c2 {"md5": "84214c81ce63e5101f07b69a5d37ab0e", "pid": "027250679", "note": [{"label": ["IFLA, Names of states, 1981. GLU, 1991", "Laval RVM, 1997-02"], "noteType": "dataSource"}, {"label": ["Bas- et Haut-Canada : 1791-1840 ; Province du Canada ou Canada-Uni (1840-1867) ; Dominion du Canada (depuis le 01-07-1867)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Amérique du Nord"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Région frontalière canado-américaine"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027250679", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb120149708", "source": "BNF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4029456-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040294560", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/259064546", "source": "VIAF"}], "variant_access_point": ["Amérique du Nord britannique", "British North America", "Canada (Dominion)", "Canada (Province)", "Canada-Uni"], "authorized_access_point": "Canada"} 1 -2024-07-16 19:52:16.644736 2024-07-16 19:52:16.644773 3e4d05d5-dffe-4f0e-87c7-c7c8d9a2bb90 {"md5": "39362e8dd413050ce08478a90e123fbf", "pid": "027437221", "note": [{"label": ["GDEL. Laval RVM suppl., 1988-03"], "noteType": "dataSource"}, {"label": ["Emploi direct en subdivision : [Sujet] -- Suisse romande"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Suisse"}, {"authorized_access_point": "Europe francophone"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027437221", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119478864", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)041940458", "source": "GND"}, {"type": "uri", "value": "http://d-nb.info/gnd/4194045-3", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172982288", "source": "VIAF"}], "variant_access_point": ["Suisse de langue francaise", "Romandie"], "authorized_access_point": "Suisse romande"} 1 -2024-07-16 19:52:17.952314 2024-07-16 19:52:17.952331 59ffe23d-b35f-4c9e-9985-70996dda152d {"md5": "c72befb94c45c521892539e15c2ebccc", "pid": "027434141", "note": [{"label": ["GDEL. SY 1990/91"], "noteType": "dataSource"}, {"label": ["Canton suisse"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Suisse - Cantons"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027434141", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040290433", "source": "GND"}, {"type": "uri", "value": "https://d-nb.info/gnd/4029043-8", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/155481782", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Jūra", "source": "WIKIPEDIA"}], "variant_access_point": ["Jura (canton)"], "authorized_access_point": "Jura (Suisse ; canton)"} 1 -2024-07-16 19:52:19.265138 2024-07-16 19:52:19.265145 7841dc91-397e-4586-95b6-a44f83b58421 {"md5": "86390248ebbd80dcef9d19eff6023c68", "pid": "027801101", "note": [{"label": ["GLU. Laval RVM, 1995-02"], "noteType": "dataSource"}, {"label": ["Voir aussi aux différentes parties de l'Asie, par ex. Asie du Sud-Est", "Voir aussi la subdivision Et l'Asie aux personnes et collectivités"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Eurasie"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027801101", "source": "IDREF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4003217-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040032175", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/4444148574353824430005", "source": "VIAF"}], "authorized_access_point": "Asie"} 1 -2024-07-16 19:52:19.490761 2024-07-16 19:52:19.490771 84646520-0d09-42b3-9d81-1587f59da556 {"md5": "058dc7028c5bd75d355ad2e04a8be0e7", "pid": "027256308", "note": [{"label": ["IFLA, Names of states, 1981. SY 1996-97. Quid, 1989. Le Monde, 13-05-1992", "Laval RVM, 1997-02"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent de la Yougoslavie de 1918 à 1992, ou de la République fédérale de Yougoslavie réduite à la Serbie et au Monténégro de 1992 à 2003", "Le Royaume des Serbes, Croates et des Slovènes, constitué le 01-12-1918, prend le nom de Yougoslavie le 03-10-1929 et devient une République le 29-11-1945. Après la sécession de la Croatie, de la Slovénie, de la Bosnie-Herzégovine et de la Macédoine, est proclamée le 27-04-1992 la République fédérale de Yougoslavie comprenant la Serbie et le Monténégro, qui devient le 04-02-2003 la Serbie-et-Monténégro"], "noteType": "general"}, {"label": ["Voir aussi la subdivision Et la Yougoslavie aux personnes et collectivités"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Balkans - 20e siècle"}], "related": [{"authorized_access_point": "Serbie-et-Monténégro"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027256308", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040289664", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/138974509", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/République_fédérative_socialiste_de_Yougoslavie", "source": "WIKIPEDIA"}], "variant_access_point": ["Jugoslavija", "Royaume des Serbes, Croates et Slovènes", "Serbes, Croates et Slovènes, Royaume des", "Yougoslavie (République fédérale)"], "authorized_access_point": "Yougoslavie"} 1 -2024-07-16 19:52:20.740582 2024-07-16 19:52:20.740598 a815e30a-be70-4d08-b64d-c45777ed0f96 {"md5": "74df160ee8b49d85dd243fd2973b35cd", "pid": "027283518", "note": [{"label": ["GLU, 1991", "Laval RVM, 1997-02"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent : de la région qui s'étend de la mer Caspienne à la Mongolie et la Chine du nord-ouest (inclusivement), et du sud de la Sibérie à l'Afghanistan et au nord de l'Iran (inclusivement) ; ou bien des seules 5 républiques ex-soviétiques considérées collectivement"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Afghanistan"}, {"authorized_access_point": "Kazakhstan"}, {"authorized_access_point": "Kirghizistan"}, {"authorized_access_point": "Mongolie"}, {"authorized_access_point": "Ouzbékistan"}, {"authorized_access_point": "Tadjikistan"}, {"authorized_access_point": "Tibet (Chine)"}, {"authorized_access_point": "Turkménistan"}, {"authorized_access_point": "Xinjiang (Chine)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027283518", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11935913h", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040794873", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/170431196", "source": "VIAF"}], "variant_access_point": ["Asie (centre)", "Asie centrale (CEI)", "Asie centrale russe", "Asie centrale soviétique", "Turkestan", "Turkestan occidental", "Turkestan russe", "Turkestan chinois", "Tartarie", "Grande Tartarie"], "authorized_access_point": "Asie centrale"} 1 -2024-07-16 19:52:21.006756 2024-07-16 19:52:21.006785 3bb903e3-2daa-482c-b5a5-138ba1d152c7 {"md5": "06f31bfc233ad2600fc2ddf41549062a", "pid": "027316211", "note": [{"label": ["GDEL. Le Monde, 9-10-1991"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent de l'ensemble de l'Arménie et/ou de sa seule partie orientale annexée par la Russie en 1828, qui constitue aujourd'hui une république indépendante (référendum du 21-09-1991)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Transcaucasie"}, {"authorized_access_point": "Pays de la CEI"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027316211", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb123844340", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040859312", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/136032216", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Arménie", "source": "WIKIPEDIA"}], "variant_access_point": ["Arménie (République socialiste soviétique)", "Hai͏̈k", "Hayastan"], "authorized_access_point": "Arménie"} 1 -2024-07-16 19:52:22.353142 2024-07-16 19:52:22.353149 94303d1e-b64b-4b7d-ab70-01a6317fcfa6 {"md5": "35c1089c3e81bf17c11760848dcd59bc", "pid": "027267830", "note": [{"label": ["Names of states / IFLA, 1981. SY, 1986/1987. GDEL"], "noteType": "dataSource"}, {"label": ["Cette vedette s'emploie directement en subdivision de lieu", "Région autonome du Danemark depuis le 1-5-1979"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Amérique du Nord"}, {"authorized_access_point": "Arctique"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027267830", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)04022113X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/4459148574312624430000", "source": "VIAF"}], "variant_access_point": ["Groenland (Danemark ; île)", "Greenland", "Grønland", "Kalaallit Nunaat"], "authorized_access_point": "Groenland"} 1 -2024-07-16 19:52:22.597387 2024-07-16 19:52:22.597405 e9d708b5-fee3-4477-8f50-6452949e2878 {"md5": "d4b26032294e41b3008f51d0fbd9b688", "pid": "264645081", "note": [{"label": ["Les sobriquets des localités du Valais romand ; Articles historiques sur le Valais ; Histoire du Vieux Chablais / Raphy Rappaz, 1976", "https://www.valais4you.ch/fr/le-valais-en-quelques-mots/habitat, 2022-09-27"], "noteType": "dataSource"}, {"label": ["Partie francophone du canton du Valais"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/264645081", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/75166600409218000002", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)993248810", "source": "GND"}, {"type": "bf:Nbn", "value": "Valais romand", "source": "GND"}], "variant_access_point": ["Valais francophone (Suisse)"], "authorized_access_point": "Valais romand (Suisse)"} 1 -2024-07-16 19:52:22.878327 2024-07-16 19:52:22.878345 724be9c9-9019-4c46-a752-9f4352e30364 {"md5": "956dfc25b132d05af33d8d3b80dabd40", "pid": "027236536", "note": [{"label": ["IFLA, Names of states, 1981. GLU"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Proche-Orient"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027236536", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)0403556", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/4134148574352624430002", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Liban_(chanson)", "source": "WIKIPEDIA"}], "variant_access_point": ["Lubnān"], "authorized_access_point": "Liban"} 1 -2024-07-16 19:52:23.138314 2024-07-16 19:52:23.138338 6733dc8e-b802-4235-b0e1-9075f6ed0526 {"md5": "0b49dfaff1531150b0fc3f8bbeb7049d", "pid": "027252388", "note": [{"label": ["IFLA, Names of states, 1981", "Laval RVM, 1996-02"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Amazonie (Pérou)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027252388", "source": "IDREF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4045312-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04045312X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/175126463", "source": "VIAF"}], "variant_access_point": ["Perú"], "authorized_access_point": "Pérou"} 1 -2024-07-16 19:52:26.454299 2024-07-16 19:52:26.454311 7a10349e-fe87-42c0-a966-edde3ff23357 {"md5": "2568896ba3cfb0803dc0a5f599d7f826", "pid": "02724606X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Pays de langues germaniques"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02724606X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11933043g", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040703703", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173145199", "source": "VIAF"}], "variant_access_point": ["Pays germanophones", "Régions de langue allemande", "Germanophonie", "Europe germanophone"], "authorized_access_point": "Pays de langue allemande"} 1 -2024-07-16 19:52:26.689471 2024-07-16 19:52:26.689478 0a360d10-628d-4f89-be6f-155cea5da51c {"md5": "d9fc1e611df3488716a376e848a6fd3a", "pid": "114526591", "note": [{"label": ["GDEL", "https://www.vs.ch/web/communes/-/bas-valais, 2022-09-27", "À la découverte de trois régions alpines, une culture : Bas-Valais, vallée d'Aoste, Haute-Savoie - Savoie, 2000"], "noteType": "dataSource"}, {"label": ["Région du Canton du Valais comprenant les districts de Monthey, St-Maurice, Entremont et Martigny"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Valais (Suisse)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/114526591", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb144160064", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040786528", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/51144647641031129112", "source": "VIAF"}], "classification": [{"name": "Géographie de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "914"}], "variant_access_point": ["Valais, Bas- (Suisse)"], "authorized_access_point": "Bas-Valais (Suisse)"} 1 -2024-07-16 19:52:26.949275 2024-07-16 19:52:26.949296 73bd362d-d096-4428-8d8e-bf41daf21c6d {"md5": "72ecc8b6a0ad0092ed2068eb45fd53ef", "pid": "02899275X", "note": [{"label": ["GDEL. SY 1990/91"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Suisse - Cantons"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02899275X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12071302n", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040519937", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/144820199", "source": "VIAF"}, {"type": "uri", "value": "http://viaf.org/viaf/152454816", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Schaffhouse", "source": "WIKIPEDIA"}], "relation_pid": {"type": "redirect_from", "value": "197672701"}, "variant_access_point": ["Schaffhausen (Suisse ; canton)"], "authorized_access_point": "Schaffhouse (Suisse ; canton)"} 1 -2024-07-16 19:52:27.210348 2024-07-16 19:52:27.210363 88b6c326-69de-4ad1-b855-057de368bfa9 {"md5": "939117550222b3d77f28b6f1c9a731f0", "pid": "027367428", "note": [{"label": ["GDEL"], "noteType": "dataSource"}, {"label": ["Fief constitué au 12e siècle par Thierry, de la maison de Bar-le-Duc, le comté passe ensuite à celle de Montfaucon puis au Wurtemberg (1397) et devient la principauté de Montbéliard. Annexée par la Convention (10 oct. 1793), elle est définitivement réunie à la France par le traité de Lunéville (1801). On l'appelait usuellement Pays de Montbéliard, expression qui est toujours en usage"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Doubs (France)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027367428", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11942447x", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040401499", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/155890847", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Montbéliard", "source": "WIKIPEDIA"}], "variant_access_point": ["Montbéliard (comté)", "Montbéliard (Doubs ; région)", "Montbéliard (principauté)", "Pays de Montbéliard (France)"], "authorized_access_point": "Montbéliard, Pays de (France)"} 1 -2024-07-16 19:52:28.489659 2024-07-16 19:52:28.489663 c3e24077-580c-4bce-be99-b2c0ccb3b05e {"md5": "1113a5baacbd21bd3be2a559ef57c92f", "pid": "027597334", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Etats du Pacifique (Etats-Unis)"}, {"authorized_access_point": "États-Unis (nord-ouest)"}, {"authorized_access_point": "États-Unis (sud-ouest)"}, {"authorized_access_point": "Grand Bassin (États-Unis)"}, {"authorized_access_point": "Grandes Plaines (États-Unis)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027597334", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11960312x", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)041355350", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172385909", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Ouest_américain", "source": "WIKIPEDIA"}], "relation_pid": {"type": "redirect_from", "value": "027597377"}, "variant_access_point": ["États de l'Ouest (États-Unis)", "Far West", "Far Ouest", "Ouest américain"], "authorized_access_point": "États-Unis (ouest)"} 1 -2024-07-16 19:52:28.720668 2024-07-16 19:52:28.720672 2daea254-8acc-43b5-8f96-cf35f6af501e {"md5": "50350d093bcfadfc7d72d8b054419a8c", "pid": "027218856", "note": [{"label": ["GLU, 1991", "BN ACO (en ligne), 1997-05-26. Laval RVM, 1997-02. Deutschland ; SWD, 1995-04 ; GKD, 1994-05"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les ouvrages qui traitent de l'Allemagne dans son ensemble : pays de langue allemande du Saint-Empire, pays de la Confédération germanique, Empire allemand et République fédérale d'Allemagne depuis l'unification du 3 octobre 1990. Les ouvrages sur la RFA de 1949 à 1990 se trouvent sous la vedette Allemagne (République fédérale)", "Attention : seules les collectivités depuis 1990 sont sous la vedette Allemagne ; les collectivités de la période 1871 à 1945 sont sous la vedette Allemagne (1871-1945) ; celles de la période 1945-1949, sous la vedette Allemagne (Zone sous occupation alliée)"], "noteType": "general"}, {"label": ["Voir aussi la subdivision Et l'Allemagne aux personnes et collectivités", "Voir aussi la subdivision Réclamations contre l'Allemagne aux lieux"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Europe centrale"}, {"authorized_access_point": "Pays de l'Union européenne"}, {"authorized_access_point": "Pays de langue allemande"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027218856", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11930867z", "source": "BNF"}, {"type": "uri", "value": "http://d-nb.info/gnd/2008993-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)00468687X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173418378", "source": "VIAF"}], "variant_access_point": ["BRD", "Bundesrepublik Deutschland (1990-)", "Deutsches Reich", "Deutschland", "Empire allemand", "Reich allemand", "République fédérale d'Allemagne (1990-)"], "authorized_access_point": "Allemagne"} 1 -2024-07-16 19:52:28.943549 2024-07-16 19:52:28.943562 417af791-ab9a-4626-8449-de300f73bcbe {"md5": "1b37f32cf5e62aafb681f7e333c14080", "pid": "157143392", "note": [{"label": ["Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgenössische Stabsbüreau unter der direktion von Oberst Siegfried veröffentlicht", "https://hls-dhs-dss.ch/fr/articles/008388/2012-01-06, 2022-07-27"], "noteType": "dataSource"}, {"label": ["Partie orientale de la vallée de Viège dans le canton du Valais (Suisse) qui, en amont de Stalden, se subdivise en deux vallées en direction du sud, celles de Saint-Nicolas et de Saas"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/157143392", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/125148570562224311120", "source": "VIAF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4105151-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041051513", "source": "GND"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Vallée_de_Saas", "source": "WIKIPEDIA"}], "variant_access_point": ["Saas (Valais, Suisse ; région)", "Saastal (Valais, Suisse)", "Vallée de Saas (Valais, Suisse)"], "authorized_access_point": "Saas, Vallée de (Valais, Suisse)"} 1 -2024-07-16 19:52:29.184372 2024-07-16 19:52:29.184392 aa866d00-dd5f-4ca5-bfbd-967f7dd63dbc {"md5": "d7e13769b5002c0dbc19cfeb1a0647cd", "pid": "027226794", "note": [{"label": ["IFLA, Names of states, 1981. GLU, 1991", "Laval RVM, 1997-02"], "noteType": "dataSource"}, {"label": ["Voir aussi la subdivision Et la France aux personnes et collectivités"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Europe francophone"}, {"authorized_access_point": "Pays de l'Union européenne"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027226794", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119314762", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040181456", "source": "GND"}, {"type": "bf:Nbn", "value": "040181456", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/7487148574366524430008", "source": "VIAF"}], "relation_pid": {"type": "redirect_from", "value": "078010705"}, "variant_access_point": ["France occidentale"], "authorized_access_point": "France"} 1 -2024-07-16 19:52:29.472813 2024-07-16 19:52:29.472842 916fc359-854b-4dbb-a575-3cf986461b17 {"md5": "9aded22e21b9e41baf1174e7610eeca2", "pid": "085703419", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/085703419", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb14475513s", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040201392", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/55144647634843459675", "source": "VIAF"}], "classification": [{"name": "Géographie de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "914"}], "authorized_access_point": "Genève (Suisse ; région)"} 1 -2024-07-16 19:52:30.828399 2024-07-16 19:52:30.828405 c52100c3-8266-4b39-a814-91226ce70f55 {"md5": "efad1ba39f48169cea18f6dcdce1dbbc", "pid": "027218767", "note": [{"label": ["Pays et capitales du monde / IGN, 1986. IFLA, Names of states, 1981"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Afrique du Nord"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027218767", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15238304z", "source": "BNF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4001179-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040011798", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/8536148574370824430009", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Algérie", "source": "WIKIPEDIA"}], "relation_pid": {"type": "redirect_from", "value": "256370915"}, "variant_access_point": ["Algérie (République)", "el Djazâir", "République algérienne démocratique"], "authorized_access_point": "Algérie"} 1 -2024-07-16 19:52:32.114405 2024-07-16 19:52:32.114419 c50d7635-6fc6-4b59-8165-a389ac369a43 {"md5": "9dce3b98f74ebae8f59278dc17a1b8c2", "pid": "028567005", "note": [{"label": ["DHGE. Mourre, 1996"], "noteType": "dataSource"}, {"label": ["L'introduction de la Réforme à Bâle en 1529 amena la scission entre la ville réformée et l'évêque catholique, préfiguration de la scission du canton en deux demi-cantons en 1833"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028567005", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb120377073", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040802752", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/599144783181696879819", "source": "VIAF"}], "variant_access_point": ["Ancien évêché de Bâle (Suisse)"], "authorized_access_point": "Bâle (Principauté ecclésiastique)"} 1 -2024-07-16 19:52:33.372818 2024-07-16 19:52:33.372845 864a3656-d82d-49ff-9a0a-3d5a68e3e000 {"md5": "e97c9bca0239ced4b53491e7c92f80fc", "pid": "027584763", "note": [{"label": ["Laval RVM, 1996-08"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Afrique francophone"}, {"authorized_access_point": "Amérique francophone"}, {"authorized_access_point": "Europe francophone"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027584763", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11959324w", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040181413", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/13144647641039724008", "source": "VIAF"}], "variant_access_point": ["Pays francophones", "Régions de langue française"], "authorized_access_point": "Pays de langue française"} 1 -2024-07-16 19:52:33.646786 2024-07-16 19:52:33.646806 3f203b54-7879-41bc-8d4e-b2b3f974f107 {"md5": "56fbf8ca890840637cca0e582d2e9e58", "pid": "027468909", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Berne (Suisse ; canton)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027468909", "source": "IDREF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4005783-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04005783", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/5974148574360224430000", "source": "VIAF"}], "authorized_access_point": "Oberland bernois (Suisse)"} 1 -2024-07-16 19:52:33.900292 2024-07-16 19:52:33.9003 fcd5ebca-3740-43d2-bd6a-cc1e38a2638b {"md5": "8ab6b40f1c868b1ddacebe503add0350", "pid": "027218961", "note": [{"label": ["GDEL. Laval RVM, 1991-02"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent de l'Amérique du Nord, incluant ou non le Mexique"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Amérique"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027218961", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15238493p", "source": "BNF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4042483-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040424839", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/315126791", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Amérique_du_Nord", "source": "WIKIPEDIA"}], "variant_access_point": ["Amérique (nord)"], "authorized_access_point": "Amérique du Nord"} 1 -2024-07-16 19:52:34.135623 2024-07-16 19:52:34.13564 370dd453-897b-488a-ad3d-9474f124c83e {"md5": "11e76bb19f4aeedecb94fd76a9b2d007", "pid": "264644093", "note": [{"label": ["Agrisculptures / Maximilien Urfer ; essais : Raphaël Brunner et Eric Felley ; direction de publication : Stéphane Fretz, 2019", "https://www.vs.ch/web/communes/-/valais-central, 2022-09-27"], "noteType": "dataSource"}, {"label": ["Région du Canton du Valais comprenant les districts de Conthey, Sion, Sierre et d'Hérens"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/264644093", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/2685166600430118000000", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)952816407", "source": "GND"}], "authorized_access_point": "Valais central (Suisse)"} 1 -2024-07-16 19:52:34.401184 2024-07-16 19:52:34.401198 ba680d93-932e-4832-852f-60c416a50de9 {"md5": "ad8327ffc6a38f6abf9f1c7a907751be", "pid": "027237249", "note": [{"label": ["GDEL", "Encycl. Britannica", "Paris-Londres, premières métropoles européennes / INSEE-DRIF, 1991", "Londres (Angleterre) ; Laval RVM, 1998-07"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les ouvrages qui traitent de la ville de Londres dans ses définitions administratives successives (comté de Londres en 1888, Greater London depuis 1965). Le Grand Londres comprend 33 boroughs, largement autonomes depuis la dissolution du Greater London Council en 1986 : 14 pour les Inner boroughs (dont la Cité), 19 pour les Outer boroughs. Les ouvrages qui ne traitent que des Outer boroughs se trouvent sous la vedette Londres (GB ; banlieue)", "Par convention, les Inner boroughs sont considérés comme des \\"quartiers\\" de Londres, les Outer boroughs comme des villes distinctes (LCNA et Laval RVM les prennent à leur nom, localisé à Londres)"], "noteType": "general"}, {"label": ["Voir aussi la subdivision Et Londres aux personnes et collectivités"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Londres (GB ; agglomération)"}, {"authorized_access_point": "Angleterre (GB ; sud-est)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027237249", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119323045", "source": "BNF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4074335-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040743357", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172278143", "source": "VIAF"}], "relation_pid": {"type": "redirect_from", "value": "058632123"}, "variant_access_point": ["Augusta Tribonantum (ville ancienne)", "Grand Londres (GB)", "Greater London (GB)", "Llyn Din (ville ancienne)", "Londinium (ville ancienne)", "Londres (GB) - Inner boroughs", "Londres (GB ; comté)", "Londres (G.B.)", "Londres (G. B.)"], "authorized_access_point": "Londres (GB)"} 1 -2024-07-16 19:52:35.769104 2024-07-16 19:52:35.769126 13e78910-fd64-4e6d-a34f-a5249f3f3c42 {"md5": "caf22148beff6868e64cd0fbb639df93", "pid": "027407918", "note": [{"label": ["Laval RVM, 1995-08"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les ouvrages qui traitent des pays dont le revenu par capital est relativement bas comparativement à celui des pays nord-américains et européens. Cette vedette peut se subdiviser par toutes les subdivisions de sujet applicables aux noms de lieux, par ex. Pays en voie de développement -- Conditions économiques. Elle peut aussi être utilisée comme subdivision géographique sous les vedettes qui peuvent être localisées, par ex. Technologie -- Pays en voie de développement"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Nouveaux pays industrialisés"}, {"authorized_access_point": "Pays ACP"}, {"authorized_access_point": "Pays les moins avancés"}, {"authorized_access_point": "Pays insulaires en voie de développement"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027407918", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119456356", "source": "BNF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4014954-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040149544", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173200037", "source": "VIAF"}, {"type": "uri", "value": "http://viaf.org/viaf/259366441", "source": "VIAF"}], "relation_pid": {"type": "redirect_from", "value": "27352111X"}, "variant_access_point": ["Pays du tiers-monde", "Sud global", "Pays du Sud", "Pays en développement", "Pays sous-développés", "PVD", "Régions sous-développées", "Tiers-monde"], "authorized_access_point": "Pays en voie de développement"} 1 -2024-07-16 19:52:36.022722 2024-07-16 19:52:36.022729 48d5cf11-714e-4c1c-bd46-e364b8c69da1 {"md5": "8565e9a95bd5a93637431392f17ed15c", "pid": "027218597", "note": [{"label": ["GLU", "Laval RVM, 1999-01"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les documents qui traitent du territoire comprenant le Maroc, la Mauritanie, l'Algérie, la Tunisie et la Libye"], "noteType": "general"}, {"label": ["Voir aussi la subdivision Et l'Afrique du Nord aux personnes et collectivités"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Méditerranée (région)"}, {"authorized_access_point": "Pays arabes"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027218597", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119308460", "source": "BNF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4042482-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040424820", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/315124797", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Afrique_du_Nord", "source": "WIKIPEDIA"}], "variant_access_point": ["Afrique (nord)", "Afrique blanche", "Afrique méditerranéenne", "Afrique septentrionale", "Barbaresques, États", "Barbarie (région)", "États Barbaresques", "Maghreb", "Maghrib", "Marhrib", "Moghreb"], "authorized_access_point": "Afrique du Nord"} 1 -2024-07-16 19:52:36.250218 2024-07-16 19:52:36.250226 9d40f415-7a1a-4579-a19e-6ed148794b76 {"md5": "5a2a1d07cfb488a5d52920b47560c160", "pid": "027238180", "note": [{"label": ["IFLA, Names of states, 1981. GLU"], "noteType": "dataSource"}, {"label": ["De 1958 à 1976 : République malgache"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Indien, Îles de l'océan"}], "deleted": "2024-07-16T19:52:36.233702+00:00", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027238180", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040744256", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/146036991", "source": "VIAF"}], "variant_access_point": ["Madagaskar", "Madagascar (île)", "Repóblika Malagasy", "République malgache", "Madagascar"], "authorized_access_point": "Madagascar"} 1 -2024-07-16 19:52:36.529907 2024-07-16 19:52:36.529937 20afeb77-12f9-418f-a227-38ef91ca5605 {"md5": "c2cdfacbbc6ce22a31270d262fd50764", "pid": "027224651", "note": [{"label": ["GLU"], "noteType": "dataSource"}, {"label": ["Voir aussi aux différentes parties de l'Europe, par ex. Europe de l'Ouest"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Eurasie"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027224651", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11931301w", "source": "BNF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4015701-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040157016", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/124144648501726049254", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Europe", "source": "WIKIPEDIA"}], "variant_access_point": ["Conseil de l'Europe, Pays du", "Pays du Conseil de l'Europe"], "authorized_access_point": "Europe"} 1 -2024-07-16 19:52:36.768265 2024-07-16 19:52:36.768282 d4c3c98c-8cb1-43ff-8bee-5d18ab9bef8c {"md5": "14ad4d2f53be2abfbfd06f6515cd2389", "pid": "027250636", "note": [{"label": ["GLU"], "noteType": "dataSource"}, {"label": ["En précision de lieu, employer Calif., par ex. Los Angeles (Calif.)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "États-Unis (Nouveau Sud-Ouest)"}, {"authorized_access_point": "États-Unis - États"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027250636", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11933409d", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040293076", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172438990", "source": "VIAF"}], "variant_access_point": ["California (États-Unis)", "Californie"], "authorized_access_point": "Californie (États-Unis)"} 1 -2024-07-16 19:52:36.996876 2024-07-16 19:52:36.9969 b016b38c-f1aa-476a-adaf-72caaf60d12c {"md5": "2fe3d5f7f01ab0d90093ad45bb31c3e4", "pid": "055302149", "note": [{"label": ["Cervin (mont) ; GLU", "Cervin (Suisse et Italie) ; Laval RVM, 2000-01"], "noteType": "dataSource"}, {"label": ["Sommet des Alpes Pennines, à la frontière italo-suisse (4478 m.)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/055302149", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb152909205", "source": "BNF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4037992-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040379922", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/170262409", "source": "VIAF"}], "variant_access_point": ["Cervino, Monte", "Matterhorn (mont)"], "authorized_access_point": "Cervin, Mont"} 1 -2024-07-16 19:52:38.51364 2024-07-16 19:52:38.513654 82b045c1-2f60-4a0d-8261-2758d1ac3626 {"md5": "0c45eacf669606f578e0d0846fa785cb", "pid": "027275922", "note": [{"label": ["GDEL. SY 1990/91"], "noteType": "dataSource"}, {"label": ["Canton issu de la scission (1833) de l'ancien canton de Bâle en Bâle-Campagne et Bâle-Ville"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bâle (Suisse ; canton)"}, {"authorized_access_point": "Suisse - Cantons"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027275922", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)1077172354", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/132058475", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Canton_de_Bâle-Ville", "source": "WIKIPEDIA"}], "relation_pid": {"type": "redirect_from", "value": "060557001"}, "variant_access_point": ["Basel Stadt (Suisse)"], "authorized_access_point": "Bâle-Ville (Suisse)"} 1 -2024-07-16 19:52:41.766354 2024-07-16 19:52:41.766357 1eac1f76-2822-4d2c-9b36-cd7e019dfd06 {"md5": "2a528378bce56fd20fe605c4a921c0fd", "pid": "027360199", "note": [{"label": ["GDEL", "Balkans ; Laval RVM, 1992-02"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Europe du Sud"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Albanie"}, {"authorized_access_point": "Bosnie-Herzégovine"}, {"authorized_access_point": "Bulgarie"}, {"authorized_access_point": "Ex-Yougoslavie"}, {"authorized_access_point": "Grèce"}, {"authorized_access_point": "Macédoine"}, {"authorized_access_point": "Macédoine du Nord (République)"}, {"authorized_access_point": "Mésie"}, {"authorized_access_point": "Monténégro"}, {"authorized_access_point": "Roumanie"}, {"authorized_access_point": "Serbie"}, {"authorized_access_point": "Thrace"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027360199", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11941903f", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040690997", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/60144648482279885458", "source": "VIAF"}], "variant_access_point": ["Balkanique, Péninsule", "Europe (sud-est)", "Europe du Sud-Est", "Pays balkaniques"], "authorized_access_point": "Balkans"} 1 -2024-07-16 19:52:41.959172 2024-07-16 19:52:41.959178 e091fb1d-0340-45bf-a1ab-fcdf790c138d {"md5": "44a5ba54c4c821021d4a203daaaced4b", "pid": "027377067", "note": [{"label": ["IFLA, Names of states, 1981. GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Amazonie (Bolivie)"}, {"authorized_access_point": "Beni (Bolivie)"}, {"authorized_access_point": "Cochabamba (Bolivie ; département)"}, {"authorized_access_point": "La Paz (Bolivie ; département)"}, {"authorized_access_point": "Potosí (Bolivie ; département)"}, {"authorized_access_point": "Santa Cruz (Bolivie ; département)"}, {"authorized_access_point": "Chuquisaca (Bolivie ; département)"}, {"authorized_access_point": "Moxos (Bolivie)"}, {"authorized_access_point": "Oriente (Bolivie)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027377067", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040076075", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/130756130", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Bolivie", "source": "WIKIPEDIA"}], "variant_access_point": ["Alto Perú", "Bolivia", "Haut-Pérou", "Pérou, Haut-"], "authorized_access_point": "Bolivie"} 1 -2024-07-16 19:52:42.148412 2024-07-16 19:52:42.148414 03aac9cd-04c1-4018-a474-6e82f9024181 {"md5": "7b7f3e6118ee674a00fd17bb3b65dc3d", "pid": "027501418", "note": [{"label": ["GDEL"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent de la Ciscaucasie (versant nord du Grand Caucase) et de la Transcaucasie (versant sud du Grand Caucase, dépression Rion-Koura et Petit Caucase)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Grand Caucase (monts)"}, {"authorized_access_point": "Petit Caucase (monts)"}, {"authorized_access_point": "Transcaucasie"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027501418", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040300900", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172982363", "source": "VIAF"}], "variant_access_point": ["Caucasie", "Kavkaz"], "authorized_access_point": "Caucase"} 1 -2024-07-16 19:52:42.337806 2024-07-16 19:52:42.337808 7e9f2040-ac84-45d7-94b4-88b40786702b {"md5": "00ffe89cc4693f3c847a9d5709cd6f3e", "pid": "027252361", "note": [{"label": ["IFLA, Names of states, 1981"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Benelux"}, {"authorized_access_point": "Pays de l'Union européenne"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027252361", "source": "IDREF"}, {"type": "uri", "value": "https://catalogue.bnf.fr/ark:/12148/cb11933554h", "source": "BNF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4042203-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040422038", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/1557150033026211180005", "source": "VIAF"}], "variant_access_point": ["Nederland", "Provinces-Unies"], "authorized_access_point": "Pays-Bas"} 1 -2024-07-16 19:52:42.524895 2024-07-16 19:52:42.524897 fa8cf78a-e57e-4148-b3d4-ba3284961c33 {"md5": "1ca8b275185aa0489230935cdb50c420", "pid": "027251659", "note": [{"label": ["Names of states / IFLA, 1981. SY, 1986/1987"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Indochine"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027251659", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11933494g", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)04078228X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/138308059", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Thaïlande", "source": "WIKIPEDIA"}], "variant_access_point": ["Muang-Thai", "Prathet Thai", "Siam"], "authorized_access_point": "Thaïlande"} 1 -2024-07-16 19:52:42.716997 2024-07-16 19:52:42.717 ddab4828-8a62-468a-95e5-8c8368f6c437 {"md5": "fc7debc086b369e2fab675cb6b9d5492", "pid": "027252124", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "related": [{"authorized_access_point": "Moscou (Russie) - Histoire"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027252124", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11933531v", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040749878", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/142519565", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Moscou", "source": "WIKIPEDIA"}], "variant_access_point": ["Moscou", "Moskva (Russie)"], "authorized_access_point": "Moscou (Russie)"} 1 -2024-07-16 19:52:42.91027 2024-07-16 19:52:42.910282 05e8d4d9-2568-4962-a3b6-dca5f9ba90ff {"md5": "149b850a12a3ca4eea613c54453da991", "pid": "027375080", "note": [{"label": ["Laval RVM, 1991-02"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Amérique"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027375080", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15238498d", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040794865", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/170225739", "source": "VIAF"}], "variant_access_point": ["Amérique (centre)", "Guatemala (Royaume)"], "authorized_access_point": "Amérique centrale"} 1 -2024-07-16 19:52:43.130278 2024-07-16 19:52:43.130293 f3797483-51ee-4d1e-a455-e903de2f8340 {"md5": "470242430d551967cefc05a735eaf8df", "pid": "027526836", "note": [{"label": ["BN ACO"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027526836", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040714446", "source": "GND"}, {"type": "bf:Nbn", "value": " https://d-nb.info/gnd/4071444-5", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/124901897", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Fribourg_(ville_suisse)", "source": "WIKIPEDIA"}], "variant_access_point": ["Freiburg im Üchtland (Freiburg, Schweiz)"], "authorized_access_point": "Fribourg (Fribourg, Suisse)"} 1 -2024-07-16 19:52:43.338304 2024-07-16 19:52:43.338312 bb622110-06f1-4d3f-b554-175b45595aac {"md5": "ca5bec865c9e0097d289f0a1f3e31b79", "pid": "028988310", "note": [{"label": ["Petit Robert des noms propres 2016", "Grand Larousse universel", "L'atlas National geographic, 2007 : Schwytz", "Wikipédia : canton de Schwytz [ou Schwyz] - https://fr.wikipedia.org (2017-10-21)", "Statoids - http://www.statoids.com (2017-10-21)", "Kanton Schwyz - https://www.sz.ch (2017-10-21)", "Dict. historique de la Suisse : Schwytz (canton) - http://www.hls-dhs-dss.ch (2017-10-21)"], "noteType": "dataSource"}, {"label": ["Canton germanophone du centre-est ; capitale : Schwyz. Il est un des 4 cantons historiques ayant donné naissance à la Confédération helvétique au 19e siècle, après avoir souvent lutté contre les Habsbourg. Son nom a donné naissance à celui du pays tout entier - dans sa version allemande 'Schweiz'. Pour la ville comme pour le canton, on peut dire aussi \\"Schwytz\\", qui est une graphie romande, mais dans sa version française, la Constitution suisse emploie le terme \\"Schwyz"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Suisse - Cantons"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028988310", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb120709591", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040540197", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/134271490", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Catégorie:Canton_de_Schwytz", "source": "WIKIPEDIA"}], "classification": [{"name": "Géographie de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "914"}], "variant_access_point": ["Kanton Schwyz (Suisse)", "Pays de Schwyz (Suisse)", "Schweitz (Suisse ; canton)", "Schwytz (Suisse ; canton)", "Svitto (Suisse ; canton)", "Sviz (Suisse ; canton)"], "authorized_access_point": "Schwyz (Suisse ; canton)"} 1 -2024-07-16 19:52:46.62295 2024-07-16 19:52:46.622967 49199b87-60fc-42e1-9739-b05d7a730dd8 {"md5": "863166d01c2ec93663e377eefb07e6aa", "pid": "276510216", "note": [{"label": ["111 lieux des Alpes vaudoises à ne pas manquer / Benjamin Amiguet, Marc Voltenauer, 2022", "https://fr.wikipedia.org/wiki/Alpes_vaudoises, 2024-03-20", "https://search.ortsnamen.ch/fr/record/803319560/, 2024-03-20"], "noteType": "dataSource"}, {"label": ["Les Alpes vaudoises sont un ensemble montagneux des Alpes suisses situé principalement dans les cantons de Vaud et du Valais"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Grand Muveran (Suisse ; mont)"}, {"authorized_access_point": "Les Diablerets (Suisse ; massif)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/276510216", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)944449360", "source": "GND"}], "variant_access_point": ["Waadtländer Alpen (Suisse)", "Alpi Valdesi (Suisse)"], "authorized_access_point": "Alpes vaudoises (Suisse)"} 1 -2024-07-16 19:52:46.839236 2024-07-16 19:52:46.839241 deea4ba8-c68a-486e-bcc6-4a77208812de {"md5": "2873168fa16dbe41a9c5203b5fe1cd87", "pid": "02722953X", "note": [{"label": ["IFLA, Names of states, 1981. SY, 1990/1991"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Amérique du Sud"}, {"authorized_access_point": "Pays de langue portugaise"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02722953X", "source": "IDREF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4008003-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04008003X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/1732148574301324430003", "source": "VIAF"}], "variant_access_point": ["Brasil", "Brazil"], "authorized_access_point": "Brésil"} 1 -2024-07-16 19:52:47.106534 2024-07-16 19:52:47.106567 6efe17bf-fc69-42c8-ad32-137f11c91be0 {"md5": "6e3c3bb57c6a15022b6bf76eeaaf2656", "pid": "027331180", "note": [{"label": ["Atlas Le Monde", "Grand Larousse universel", "Laval RVM (en ligne) et LC Authorities (en ligne), 2006-04-18"], "noteType": "dataSource"}, {"label": ["Province du Canada (capitale : Québec)"], "noteType": "general"}, {"label": ["Voir aussi la subdivision Et le Québec aux collectivités (à l'exception des types de collectivités) et aux personnes"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Canada (est)"}, {"authorized_access_point": "Canada - Provinces"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Montérégie (Canada)"}, {"authorized_access_point": "Abitibi-Témiscamingue (Canada)"}, {"authorized_access_point": "Beauce (Canada)"}, {"authorized_access_point": "Bois-Francs (Canada)"}, {"authorized_access_point": "Estrie (Canada)"}, {"authorized_access_point": "Etchemin (Canada ; région)"}, {"authorized_access_point": "Gaspésie (Canada ; péninsule)"}, {"authorized_access_point": "Haut-Richelieu (Canada)"}, {"authorized_access_point": "James, Baie (Canada ; région)"}, {"authorized_access_point": "Lanaudière (Canada)"}, {"authorized_access_point": "Laurentides (Canada)"}, {"authorized_access_point": "Mauricie-Bois-Francs (Canada)"}, {"authorized_access_point": "Nord-du-Québec (Canada)"}, {"authorized_access_point": "Outaouais (Canada ; région administrative)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027331180", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040480305", "source": "GND"}, {"type": "bf:Nbn", "value": " https://d-nb.info/gnd/4048030-6", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/1454149296307780670001", "source": "VIAF"}], "relation_pid": {"type": "redirect_from", "value": "027241831"}, "variant_access_point": ["Bas-Canada", "Canada, Bas-", "Québec", "Québec (Province)"], "authorized_access_point": "Québec (Canada ; province)"} 1 -2024-07-16 19:52:48.462429 2024-07-16 19:52:48.462444 54f8b542-2fa5-433e-9657-a8e5b189bb69 {"md5": "d7c6d1055abb7b2fe453901904bac72e", "pid": "027259234", "note": [{"label": ["IFLA, Names of states, 1981. BN ACO (en ligne), 1995-07-06. Deutschland ; GKD, 1993-05 ; SWD, 1994-10"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les ouvrages qui traitent de la République fédérale d'Allemagne de 1949 à 1990. Les ouvrages qui se limitent à la partie occidentale de l'Allemagne avant 1949 ou depuis 1990 se trouvent sous la vedette Allemagne (ouest) ; ceux qui traitent de l'Allemagne d'avant 1949, ou de l'Allemagne depuis l'unification (3 octobre 1990), dont le nom officiel est République fédérale d'Allemagne, se trouvent sous la vedette Allemagne"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027259234", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11934033d", "source": "BNF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4011889-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040118894", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/3765159035196701380009", "source": "VIAF"}], "variant_access_point": ["Allemagne (RFA)", "Allemagne de l'Ouest (1949-1990)", "Allemagne fédérale (1949-1990)", "BRD", "Bundesrepublik Deutschland (1949-1990)", "Deutschland (Bundesrepublik ; 1949-1990)", "République fédérale d'Allemagne (1949-1990)", "RFA"], "authorized_access_point": "Allemagne (République fédérale)"} 1 -2024-07-16 19:52:48.685929 2024-07-16 19:52:48.685939 cc572724-77bf-4852-a397-8cc99f4f40b5 {"md5": "4ffc2763dad6b5cd0821e6471d814e55", "pid": "02724301X", "note": [{"label": ["Rome (Italy) ; LCSH, 1988-12. Laval RVM, 1988-12"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les ouvrages sur la ville de Rome, ancienne et moderne. Les ouvrages sur l'État romain antique se trouvent sous la vedette Rome"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02724301X", "source": "IDREF"}, {"type": "uri", "value": "https://catalogue.bnf.fr/ark:/12148/cb11932804j", "source": "BNF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4050471-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040504719", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040504719", "source": "GND"}, {"type": "uri", "value": "https://d-nb.info/gnd/4050471-2", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/159835544", "source": "VIAF"}, {"type": "uri", "value": "https://ark.frantiq.fr/ark:/26678/pcrtW9ctTWwSAK", "source": "PACTOLS"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Rome", "source": "WIKIPEDIA"}], "variant_access_point": ["Roma (Italie)"], "authorized_access_point": "Rome (Italie)"} 1 -2024-07-16 19:52:48.904183 2024-07-16 19:52:48.904187 6f941ab5-77c6-4d69-beaa-aa747fed2c70 {"md5": "abad9fe269ba0e350ec9ac48792c37cd", "pid": "027234592", "note": [{"label": ["Sous cette vedette on trouve les ouvrages qui traitent des pays où la majorité de la population est musulmane, ou dont l'islam est la religion reconnue"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027234592", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11932087v", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040731723", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173581056", "source": "VIAF"}], "variant_access_point": ["États islamiques", "Islamiques, Pays", "Musulmans, Pays", "Pays musulmans"], "authorized_access_point": "Pays islamiques"} 1 -2024-07-16 19:52:49.123531 2024-07-16 19:52:49.123544 9da3d4c5-b09c-4a6b-888b-c36eaa252043 {"md5": "e312048136c7178bd24bd7c2eafd3c02", "pid": "02726453X", "note": [{"label": ["Laval RVM, 1983. GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02726453X", "source": "IDREF"}, {"type": "uri", "value": "https://d-nb.info/gnd/4020137-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040201376", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/157214194", "source": "VIAF"}], "variant_access_point": ["Genève", "Genf (Suisse)", "Ginevra (Suisse)", "Geneva"], "authorized_access_point": "Genève (Genève, Suisse)"} 1 -2024-07-16 19:52:49.402869 2024-07-16 19:52:49.402887 ab37e8a0-b297-4698-a829-778f51583f91 {"md5": "cc9b74106a6c6c690a96fdbc6e6e7eb3", "pid": "027223779", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Écrins, Massif des (France)"}, {"authorized_access_point": "Préalpes (France)"}, {"authorized_access_point": "Vanoise, Massif de la (France)"}, {"authorized_access_point": "Vercors (France ; massif)"}, {"authorized_access_point": "Alpes cottiennes"}, {"authorized_access_point": "Alpes maritimes (massif)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027223779", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119312368", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040932052", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173145181", "source": "VIAF"}], "variant_access_point": ["Alpes françaises"], "authorized_access_point": "Alpes (France)"} 1 -2024-07-16 19:52:49.674371 2024-07-16 19:52:49.674384 31357796-3334-49a9-a92c-875d022d44b4 {"md5": "0d4946993015ef868846a3275ede7411", "pid": "027259978", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "France (centre)"}, {"authorized_access_point": "France (centre-est)"}, {"authorized_access_point": "France (est)"}, {"authorized_access_point": "France - Régions"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027259978", "source": "IDREF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4129468-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041294688", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/149443835", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Bourgogne_(ancienne_région_administrative)", "source": "WIKIPEDIA"}], "relation_pid": {"type": "redirect_from", "value": "110360524"}, "variant_access_point": ["Bourgogne", "Bourgogne (duché)"], "authorized_access_point": "Bourgogne (France)"} 1 -2024-07-16 19:52:51.011198 2024-07-16 19:52:51.011213 0dc36102-238a-4572-b0a4-9b72aa3d5efc {"md5": "5ab83fd2bad768829d255b4b56978332", "pid": "027241912", "note": [{"label": ["GLU, 1991. Encycl. universalis, 1989", "Laval RVM, 1996-08"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages sur le continent antarctique ainsi que sur les terres situées au sud du 60e parallèle, concernées par le Traité sur l'Antarctique (1959)", "Les lieux situés dans l'Antarctique sont localisés à Antarctique (sauf le pôle sud) ; ils s'utilisent en subdivision indirectement, par l'intermédiaire d'Antarctique"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Régions polaires"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027241912", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15238492b", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040022080", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/113150032973411180002", "source": "VIAF"}], "variant_access_point": ["Antarctide", "Antarctiques, Régions", "Continent antarctique", "Régions antarctiques", "Terres antarctiques"], "authorized_access_point": "Antarctique"} 1 -2024-07-16 19:52:51.245836 2024-07-16 19:52:51.245861 9efd2e17-fc5f-4444-8469-fedd41accd1e {"md5": "c0fd98e83f917a58a5852d1939aa4888", "pid": "027255123", "note": [{"label": ["Names of states / IFLA, 1981. GDEL. Encicl. italiana. LAVAL RVM, 1989-06"], "noteType": "dataSource"}, {"label": ["Cette vedette s'emploie directement en subdivision de lieu", "Partie de Rome constituant depuis le traité du Latran (11-02-1929) le territoire souverain du Saint-Siège"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027255123", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119337484", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040624048", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/136038551", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Vatican", "source": "WIKIPEDIA"}], "variant_access_point": ["Cité du Vatican", "Rome (Italie) - Cité du Vatican", "Vaticano", "Vaticano - Stato della Città del"], "authorized_access_point": "Vatican"} 1 -2024-07-16 19:52:51.514812 2024-07-16 19:52:51.514838 31040aee-4ef1-4f81-a327-2677eed0652c {"md5": "8862cebefa0c1315c6287b4dc79905e3", "pid": "027333752", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Asie du Nord"}, {"authorized_access_point": "Russie"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027333752", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11939827w", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040547809", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/251794742", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Sibérie", "source": "WIKIPEDIA"}], "variant_access_point": ["Russie d'Asie", "Sibir (Russie)"], "authorized_access_point": "Sibérie (Russie)"} 1 -2024-07-16 19:52:51.77249 2024-07-16 19:52:51.772504 0905c478-1047-4914-931b-4af7b0f82cb7 {"md5": "7e435b8a780c3364d23832330ff0a1df", "pid": "027262952", "note": [{"label": ["IFLA, Names of states, 1981"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Balkans"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027262952", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11934311x", "source": "BNF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4050939-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040509397", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/153149185", "source": "VIAF"}], "variant_access_point": ["România", "Румыния", "Румунія"], "authorized_access_point": "Roumanie"} 1 -2024-07-16 19:52:52.010228 2024-07-16 19:52:52.010263 fe9922c3-2755-477e-8d6a-dd0818bb93ba {"md5": "8678b83bbe152292a185a5f9d09d28f8", "pid": "027263061", "note": [{"label": ["GLU. Mourre. Brockhaus, 19. Aufl.", "Laval RVM, 1996-02"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027263061", "source": "IDREF"}, {"type": "uri", "value": "http://d-nb.info/gnd/2035457-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)004911474", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/5228148574274624430002", "source": "VIAF"}], "variant_access_point": ["Empire romain germanique, Saint", "Heiliges Römisches Reich Deutscher Nation", "Sacrum Romanum Imperium Nationis Germanicae"], "authorized_access_point": "Saint Empire romain germanique"} 1 -2024-07-16 19:52:53.278619 2024-07-16 19:52:53.278648 3360e2fb-074a-42db-980f-7ee9a2d34072 {"md5": "2ce7fd3d99962e8bb1aa3808dca5fbd2", "pid": "027323072", "note": [{"label": ["Names of states / IFLA, 1981. Pays et capitales du monde / IGN, 1985"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Australasie"}, {"authorized_access_point": "Océanie"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027323072", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040419150", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/3232154260428024480001", "source": "VIAF"}], "variant_access_point": ["New Zealand", "Nouvelle Zélande"], "authorized_access_point": "Nouvelle-Zélande"} 1 -2024-07-16 19:52:53.537683 2024-07-16 19:52:53.537696 24b49249-da59-4433-ac69-2280870fbdc1 {"md5": "9ffd4d8c13639394b87264e58eab3bab", "pid": "027465012", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027465012", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)04051594X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04051594X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/9591148574375024430008", "source": "VIAF"}], "variant_access_point": ["Sankt Gallen (Suisse)", "St. Gallen (Suisse)", "St.Gallen (Suisse)", "St Gall (Suisse)", "Saint Gall (Suisse)", "Saint-Gall (Suisse)", "Sankt-Gallen (Suisse)"], "authorized_access_point": "Saint-Gall (Suisse)"} 1 -2024-07-16 19:52:53.803895 2024-07-16 19:52:53.803913 749d3a8c-261a-4816-b60d-b2535fa68890 {"md5": "7ab3ab13cecd468591a1053d06417efd", "pid": "027810674", "note": [{"label": ["IFLA, Names of states, 1981. Pays et capitales du monde / IGN, 1990. Mourre, 1986", "Laval RVM, 1996-08. Luxemburg ; SWD, 1995-04"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent de l'ensemble du Luxembourg (comté, duché en 1354, grand-duché en 1815) ou du seul grand-duché depuis 1831 (privé de sa partie occidentale, wallonne, annexée par la Belgique)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Benelux"}, {"authorized_access_point": "Pays de l'Union européenne"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027810674", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119772596", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040367282", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/14145003656661341083", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Luxembourg", "source": "WIKIPEDIA"}], "variant_access_point": ["Letzeburg", "Luxembourg (comté)", "Luxembourg (duché)", "Luxembourg (Grand-duché)", "Luxemburg"], "authorized_access_point": "Luxembourg"} 1 -2024-07-16 19:52:54.072973 2024-07-16 19:52:54.072996 45bff10e-be4a-45b9-b8c4-bd367f83acda {"md5": "d1877545b0f2135c8669a54206768cfa", "pid": "027502333", "note": [{"label": ["GLU (art. Extrême-Orient)", "Extrême-Orient ; Laval RVM, 1998-07"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent de la partie de l'Asie comprenant la Chine, la Corée, le Japon, la Sibérie orientale, l'Indochine et l'Insulinde"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Asie du Nord-Est"}, {"authorized_access_point": "Asie du Sud-Est"}, {"authorized_access_point": "Chine"}, {"authorized_access_point": "Corée"}, {"authorized_access_point": "Japon"}, {"authorized_access_point": "Pacifique, Côte du (Asie)"}, {"authorized_access_point": "Sibérie (Russie ; est)"}, {"authorized_access_point": "Taïwan"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027502333", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119528028", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040757277", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172332114", "source": "VIAF"}], "variant_access_point": ["Asie (est)", "Asie de l'Est", "Asie-Pacifique, Région", "Extrême-Orient", "Orient, Extrême-"], "authorized_access_point": "Asie orientale"} 1 -2024-07-16 19:52:54.34723 2024-07-16 19:52:54.347267 0cf0c17f-5961-4182-9489-be8a85c9d264 {"md5": "7c391f369510f13eadb16bc74dd59390", "pid": "028706536", "note": [{"label": ["Trirhena : une région sans frontières ?, 2002"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent de la région bâloise, s'étendant sur le canton de Bâle, le sud-est de l'Alsace et le sud du pays de Bade. Les ouvrages qui traitent des pays rhénans depuis Bâle jusqu'à Mayence se trouvent sous la vedette Rhénans, Pays (sud)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Rhénans, Pays (sud)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028706536", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040046206", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/158939441", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Regio_Basiliensis", "source": "WIKIPEDIA"}], "variant_access_point": ["Basiliensis, Regio", "Regio Basiliensis", "TriRhena, Regio"], "authorized_access_point": "Bâle (Suisse ; région)"} 1 -2024-07-16 19:52:54.622642 2024-07-16 19:52:54.622666 ffc8896e-2119-454f-b4a7-fab00fa773cb {"md5": "fcd039c6ffdcc01d9db55fec393bdda8", "pid": "027501302", "note": [{"label": ["Names of states / IFLA, 1981", "wikipedia.org, 2019-07-25"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Balkans"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027501302", "source": "IDREF"}, {"type": "uri", "value": "https://catalogue.bnf.fr/ark:/12148/cb11952716p", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040010287", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/8663159248210104870006", "source": "VIAF"}], "variant_access_point": ["Shqipe͏̈ri", "Shqipëria", "Arbri", "Arbëria", "Republika e Shqipërisë"], "authorized_access_point": "Albanie"} 1 -2024-07-16 19:52:54.883608 2024-07-16 19:52:54.883623 0508a40d-4225-4b75-9af0-5759d4dd9d46 {"md5": "67f897d5271f5daa9e5b9446f23c9c0c", "pid": "033640874", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/033640874", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12448796p", "source": "BNF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4041747-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040417476", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/304911054", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Lac_de_Neuchâtel", "source": "WIKIPEDIA"}], "variant_access_point": ["Neuchâtel, Lac (Neuchâtel, Suisse)", "Neuenburg, Lac (Neuchâtel, Suisse)"], "authorized_access_point": "Neuchâtel, Lac de (Neuchâtel, Suisse)"} 1 -2024-07-16 19:52:55.130581 2024-07-16 19:52:55.13061 5b07b128-f993-4894-b86c-de5b5a230658 {"md5": "85db08d809c37be49e2161f50fb65cdc", "pid": "02763857X", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Himalaya"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02763857X", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)04040417X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/247168735", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Everest", "source": "WIKIPEDIA"}], "variant_access_point": ["Chomolungma (mont)"], "authorized_access_point": "Everest, Mont"} 1 -2024-07-16 19:52:55.405841 2024-07-16 19:52:55.405866 8f6907e3-0d41-4ddf-bebc-30d573017f01 {"md5": "68e6966c7614c941c9c3350997d3c586", "pid": "02773417X", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02773417X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15294892q", "source": "BNF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4020144-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040201449", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/237685109", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Léman", "source": "WIKIPEDIA"}], "variant_access_point": ["Genève, Lac de"], "authorized_access_point": "Léman, Lac"} 1 -2024-07-16 19:52:55.688854 2024-07-16 19:52:55.688878 c6d1416a-dfe3-474b-9edb-a61414a76d7b {"md5": "f8745fdc6e028d1500b72f23ca92dd02", "pid": "027483304", "note": [{"label": ["GLU"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Europe centrale"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027483304", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040738418", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/8072148574327224430003", "source": "VIAF"}], "variant_access_point": ["Hrvatska", "Хрватска", "Hrvatska"], "authorized_access_point": "Croatie"} 1 -2024-07-16 19:52:56.948464 2024-07-16 19:52:56.948474 a13bbee0-9525-481c-95c5-1af156cfcf1f {"md5": "2eb5d1f6dfc499429a1f2c6822c6bc02", "pid": "085560839", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/085560839", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb121645931", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040804003", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/30144647638547014341", "source": "VIAF"}], "variant_access_point": ["Biel (Suisse)"], "authorized_access_point": "Bienne (Suisse)"} 1 -2024-07-16 19:07:13.690141 2024-07-16 19:52:57.180333 5502917f-4fac-4245-8ebf-aeed6e844cb2 {"md5": "b8427f972bfa30177dc67087529f6964", "pid": "271323515", "note": [{"label": ["Wikipédia - http://fr.wikipedia.org (2015-04-30)", "Dict. historique de la Suisse (art. : Port-Valais) - http://www.hls-dhs-dss.ch (2015-05-18)"], "noteType": "dataSource"}, {"label": ["Localité de la commune de Port-Valais dans le canton du Valais, située au sud du lac Léman et proche de la frontière française"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCA", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/names/n83224886", "source": "LCA"}, "authorized_access_point": "Bouveret (Switzerland)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271323515", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb169627006", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-588)4697744-2", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/113144647637759345491", "source": "VIAF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "914"}], "variant_access_point": ["Bouveret, Le (Valais, Suisse)", "Bouveret (Valais, Suisse)", "Port-Valais (Valais, Suisse) - Village du Bouveret"], "authorized_access_point": "Le Bouveret (Valais, Suisse)"} 2 -2024-07-16 19:52:57.453844 2024-07-16 19:52:57.453854 b799a179-6616-4e58-88fc-d68ff5b03897 {"md5": "d941b2e21e2253e859999b84ba58ebab", "pid": "264287010", "note": [{"label": ["Sierre et la Noble Contrée / par François de Preux ; photogr. M.-F. Chiffelle ; [couv. dessinée par André Rosselet], 1951", "https://fr.wikipedia.org/wiki/Sierre, 2022-09-09"], "noteType": "dataSource"}, {"label": ["Ville et commune du canton du Valais"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/264287010", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb169098180", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040774244", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4077424-7", "source": "GND"}, {"type": "uri", "value": "http://d-nb.info/gnd/4077424-7", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/612169442775025340005", "source": "VIAF"}], "relation_pid": {"type": "redirect_from", "value": "271323337"}, "variant_access_point": ["Siders (Valais, Suisse)"], "authorized_access_point": "Sierre (Valais, Suisse)"} 1 -2024-07-16 19:52:57.68122 2024-07-16 19:52:57.68123 3f571b32-6b4d-47ab-9ecb-01dc5f4a4d26 {"md5": "0546f48c4dd787755884de6ea344eae1", "pid": "110868056", "note": [{"label": ["Raron : Burg und Kirche / Redaktion: Alfred A. Schmid ; mit einem Vorwort von Nello Celio und Beiträgen von Christoph Bernouli, Carl J. Burckhardt, Amédée Cachin... [et al.]. - Basel : Birkhäuser, cop. 1972"], "noteType": "dataSource"}, {"label": ["Village suisse situé dans le canton du Valais. Tombe du poète Rainer Maria Rilke"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/110868056", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/149281369", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)041048989", "source": "GND"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Rarogne", "source": "WIKIPEDIA"}], "variant_access_point": ["Raron (Valais, Suisse)"], "authorized_access_point": "Rarogne (Valais, Suisse)"} 1 -2024-07-16 19:52:57.926541 2024-07-16 19:52:57.926573 1c163d59-d641-449f-87f8-f6cca41b4dfa {"md5": "e89cc872e9b97e80d99e49464ca4fe74", "pid": "275775569", "note": [{"label": ["Trésors naturels du bois de Finges / René-Pierre Bille, Philippe Werner, 1986", "https://www.pfyn-finges.ch/fr/experience/carte-du-parc/offer-detail/site-protege-du-bois-de-finges-1991, 2024-02-14", "https://hls-dhs-dss.ch/fr/articles/008553/2010-09-28/, 2024-02-14"], "noteType": "dataSource"}, {"label": ["Réserve naturelle"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/275775569", "source": "IDREF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Bois_de_Finges", "source": "WIKIPEDIA"}, {"type": "bf:Nbn", "value": "(DE-101)043187048", "source": "GND"}], "variant_access_point": ["Bois de Finges (Valais, Suisse)", "Pfynwald (Valais, Suisse)", "Forêt de Finges (Valais, Suisse)"], "authorized_access_point": "Finges, Bois de (Valais, Suisse)"} 1 -2024-07-16 19:52:58.192655 2024-07-16 19:52:58.192665 25d467d4-29b8-4910-b61c-74cacd2fdabc {"md5": "efdab2ef904bf4fa2ec446f9b66e1b2e", "pid": "127372547", "note": [{"label": ["Tunnel de base du Lötschberg : de la roche au chemin de fer / Felix freank, 2008", "https://fr.wikipedia.org/wiki/Tunnel_de_base_du_L%C3%B6tschberg, 2022-09-13"], "noteType": "dataSource"}, {"label": ["Tunnel ferroviaire qui relie le canton du Valais à celui de Berne. Inauguré en 2007."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/127372547", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/139148570539024310972", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)96475455X", "source": "GND"}], "variant_access_point": ["Tunnel de base du Lötschberg (Suisse)", "Lötschberg Basistunnel (Suisse)"], "authorized_access_point": "Lötschberg, Tunnel de base du (Suisse)"} 1 -2024-07-16 19:52:58.461174 2024-07-16 19:52:58.461207 25f6c7d4-fae7-461e-b16e-c72be43a19ca {"md5": "7ff8a470ffcad120e6ff4e0fda04ae73", "pid": "116317825", "note": [{"label": ["Le glacier de l'Aletsch et le lac de Märjelen / Roland Bonaparte. Paris : 1889."], "noteType": "dataSource"}, {"label": ["E 8°4' / N 46°26'"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/116317825", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15240705p", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040721000", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/170096434", "source": "VIAF"}], "variant_access_point": ["Aletschgletscher (Suisse)", "Grosser Aletschgletscher (Valais, Suisse)", "Glacier d'Aletsch (Valais, Suisse)", "Aletsch, Glacier d' (Valais, Suisse)", "Grand Glacier d'Aletsch (Valais, Suisse)"], "authorized_access_point": "Aletsch, Grand Glacier d' (Valais, Suisse)"} 1 -2024-07-16 19:52:58.729851 2024-07-16 19:52:58.729888 bd9cb1b0-258b-4222-95bb-943949f787f1 {"md5": "a3479ba5c5f14e316e29ffe233ebe6e0", "pid": "150220200", "note": [{"label": ["http://catalogue.bnf.fr/ark:/12148/cb152923816/UNIMARC 2011-02-21", "20 Jahre Furggentälti: Permafrostuntersuchungen auf der Gemmi / Bernhard Krummenacher .... - Bern : Geogr. Inst. d. Univ., 2008"], "noteType": "dataSource"}, {"label": ["Coordonnées géographiques : E 7°37' / N 46°24'"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/150220200", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/118148570517524310836", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)040717003", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040717003", "source": "GND"}], "authorized_access_point": "Gemmi, Col de la (Valais, Suisse)"} 1 -2024-07-16 19:52:58.976182 2024-07-16 19:52:58.976195 cc5d3479-1c43-4ddc-8137-1471dd0b55ad {"md5": "d4a659f9fee059c7afd1e3af983b147f", "pid": "116459425", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/116459425", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/55148570478224310503", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)947297987", "source": "GND"}], "authorized_access_point": "Albanie (nord)"} 1 +2024-09-10 15:46:48.112041 2024-09-10 15:46:48.112046 58576f86-a6af-4b78-b4f4-005b6a8a27fc {"md5": "97dd76099c66b973536b627a8d9162de", "pid": "027218562", "note": [{"label": ["Sous cette vedette on trouve les ouvrages qui traitent de la partie de l'Afrique s'étendant du nord du Tchad au sud du Zai͏̈re et du Cameroun au Rwanda et au Burundi"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Burundi"}, {"authorized_access_point": "Cameroun"}, {"authorized_access_point": "Congo (République)"}, {"authorized_access_point": "Gabon"}, {"authorized_access_point": "Guinée équatoriale"}, {"authorized_access_point": "République centrafricaine"}, {"authorized_access_point": "Rwanda"}, {"authorized_access_point": "Sao Tomé-et-Principe"}, {"authorized_access_point": "Tchad"}, {"authorized_access_point": "Congo (République démocratique)"}, {"authorized_access_point": "Guinée (région)"}, {"authorized_access_point": "Grands lacs africains (région)"}], "identifier": "http://www.idref.fr/027218562", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027218562", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16272632j", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040794857", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/169969170", "source": "VIAF"}], "variant_access_point": ["Afrique (centre)", "Afrique équatoriale", "Afrique équatoriale francophone"], "authorized_access_point": "Afrique centrale"} 1 +2024-09-10 15:46:48.235485 2024-09-10 15:46:48.235488 0398b75c-5366-4980-810a-6654ccd956f3 {"md5": "c47fd72199b3522d71acec7340de9500", "pid": "027218856", "note": [{"label": ["GLU, 1991", "BN ACO (en ligne), 1997-05-26. Laval RVM, 1997-02. Deutschland ; SWD, 1995-04 ; GKD, 1994-05"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les ouvrages qui traitent de l'Allemagne dans son ensemble : pays de langue allemande du Saint-Empire, pays de la Confédération germanique, Empire allemand et République fédérale d'Allemagne depuis l'unification du 3 octobre 1990. Les ouvrages sur la RFA de 1949 à 1990 se trouvent sous la vedette Allemagne (République fédérale)", "Attention : seules les collectivités depuis 1990 sont sous la vedette Allemagne ; les collectivités de la période 1871 à 1945 sont sous la vedette Allemagne (1871-1945) ; celles de la période 1945-1949, sous la vedette Allemagne (Zone sous occupation alliée)"], "noteType": "general"}, {"label": ["Voir aussi la subdivision Et l'Allemagne aux personnes et collectivités", "Voir aussi la subdivision Réclamations contre l'Allemagne aux lieux"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Europe centrale"}, {"authorized_access_point": "Pays de l'Union européenne"}, {"authorized_access_point": "Pays de langue allemande"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027218856", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027218856", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11930867z", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040118827", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173418378", "source": "VIAF"}], "variant_access_point": ["BRD", "Bundesrepublik Deutschland (1990-)", "Deutsches Reich", "Deutschland", "Empire allemand", "Reich allemand", "République fédérale d'Allemagne (1990-)"], "authorized_access_point": "Allemagne"} 1 +2024-09-10 15:46:48.299176 2024-09-10 15:46:48.29918 ee719a2f-ad39-4d32-9cb1-98547fff89b0 {"md5": "f4539c26411f374d51c00c353eb9d32b", "pid": "027219224", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027219224", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027219224", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11930897w", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040020347", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173744543", "source": "VIAF"}, {"type": "uri", "value": "https://ark.frantiq.fr/ark:/26678/pcrtJ3hUIUrZZ3", "source": "PACTOLS"}], "variant_access_point": ["Angkor (Cambodge)"], "authorized_access_point": "Angkor (ville ancienne)"} 1 +2024-09-10 15:46:48.353305 2024-09-10 15:46:48.353309 bee534aa-193e-4521-896a-0578fd086405 {"md5": "6f8b334f2ea77bdf5494f870139c3848", "pid": "027219631", "note": [{"label": ["Names of states / IFLA, 1981. Pays et capitales du monde / IGN, 1985"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Arabie"}, {"authorized_access_point": "Persique, Golfe (région)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027219631", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027219631", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11930929p", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040517888", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/164965477", "source": "VIAF"}], "variant_access_point": ["Arabie séoudite", "Al-Sa' udiya", "السعودية", "السعودية", "المملكة العربية السعودية", "المملكة العربية السعودية", "Saudi Arabia", "Kingdom of Saudi Arabia"], "authorized_access_point": "Arabie saoudite"} 1 +2024-09-10 15:46:48.406979 2024-09-10 15:46:48.406987 38fe4f46-0f1c-4c56-9390-3ffd0e6bfe4d {"md5": "07a20cce21e15ac2818fe38e8793467d", "pid": "027220389", "note": [{"label": ["Atlantique, Océan ; Laval RVM, 1995-02"], "noteType": "dataSource"}, {"label": ["Voir aussi aux différentes parties de l'Atlantique, par ex. Atlantique (océan ; nord)"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Atlantique (océan ; sud)"}], "identifier": "http://www.idref.fr/027220389", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027220389", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb152874072", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040033880", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/152295726", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Océan_Atlantique", "source": "WIKIPEDIA"}], "variant_access_point": ["Atlantique", "Océan Atlantique"], "authorized_access_point": "Atlantique (océan)"} 1 +2024-09-10 15:46:48.464415 2024-09-10 15:46:48.46442 2c71c7ce-784c-48c9-9502-e9b7b85fcfef {"md5": "e6339b4cad97918393ed8fc40474383f", "pid": "027222608", "note": [{"label": ["Guides bleus : France, 1974", "Patrimoine mondial de l'Unesco - http://whc.unesco.org/fr (2015-08-19)"], "noteType": "dataSource"}, {"label": ["Cathédrale considérée comme la plus représentative de l'art gothique français, dont la construction débuta en 1145. Inscrite au patrimoine mondial de l'Unesco depuis 1979"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Chartres (Eure-et-Loir) - Cathédrale Notre-Dame - Portail nord"}, {"authorized_access_point": "Chartres (Eure-et-Loir) - Cathédrale Notre-Dame - Portail sud"}, {"authorized_access_point": "Chartres (Eure-et-Loir) - Cathédrale Notre-Dame - Puits des Saints-Forts"}], "closeMatch": [{"source": "LCA", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/names/n50052168", "source": "LCA"}], "authorized_access_point": "Cathédrale de Chartres"}], "identifier": "http://www.idref.fr/027222608", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027222608", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11931157z", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040699307", "source": "GND"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}, {"name": "Architecture", "type": "bf:ClassificationDdc", "classificationPortion": "720"}, {"type": "bf:ClassificationDdc", "classificationPortion": "912"}], "variant_access_point": ["Cathédrale de Chartres", "Cathédrale Notre-Dame (Chartres, Eure-et-Loire)", "Notre-Dame, Cathédrale (Chartres, Eure-et-Loire)"], "authorized_access_point": "Chartres (Eure-et-Loir, France) - Cathédrale Notre-Dame"} 1 +2024-09-10 15:46:48.537293 2024-09-10 15:46:48.537297 b6fcc039-91ed-4270-a472-d2af5fa68e9e {"md5": "3d68e927997f2b9c343cd424548adbd9", "pid": "027222950", "note": [{"label": ["IFLA, Names of states, 1981"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Andes (région)"}, {"authorized_access_point": "Cône Sud de l'Amérique du Sud"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027222950", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027222950", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15238523s", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040099296", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/233665742", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Chili", "source": "WIKIPEDIA"}], "variant_access_point": ["Chile"], "authorized_access_point": "Chili"} 1 +2024-09-10 15:46:48.596394 2024-09-10 15:46:48.596398 66be8ce5-598f-4542-bd41-e1c3fe0e45c1 {"md5": "bfbffed842f1489e148acb182f90978f", "pid": "027223736", "note": [{"label": ["Autorité matière / BPI, 1980. BN ACO"], "noteType": "dataSource"}, {"label": ["Les ouvrages qui traitent de la partie orientale de l'Allemagne (dans les frontières de la période considérée) avant 1949 ou depuis 1990 se trouvent sous la vedette Allemagne (est)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027223736", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027223736", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11931234k", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040118908", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/268607483", "source": "VIAF"}], "variant_access_point": ["Allemagne (RDA)", "Allemagne de l'Est", "Allemande, République démocratique", "DDR", "Deutsche Demokratische Republik", "Deutschland (DDR)", "RDA", "République démocratique allemande"], "authorized_access_point": "Allemagne (République démocratique)"} 1 +2024-09-10 15:46:48.64949 2024-09-10 15:46:48.649494 0fb4130f-2af4-4e6a-871b-18c092b259d7 {"md5": "5f78499278b572dbde2d8caa8bb73fbd", "pid": "027223760", "note": [{"label": ["Alps, Austrian (Austria) ; LCSH, 1988-12"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Alpes"}], "related": [{"authorized_access_point": "Alpes (est)"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Dachstein (Autriche ; massif)"}, {"authorized_access_point": "Götschenberg (Autriche ; mont)"}, {"authorized_access_point": "Hohe Tauern (Autriche ; massif)"}, {"authorized_access_point": "Raxalpe (Autriche ; mont)"}, {"authorized_access_point": "Schneeberg (Autriche ; mont)"}, {"authorized_access_point": "Stub-Alpe (Autriche)"}], "identifier": "http://www.idref.fr/027223760", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027223760", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11931235x", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040432742", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/484144783099466463271", "source": "VIAF"}], "variant_access_point": ["Alpes autrichiennes"], "authorized_access_point": "Alpes (Autriche)"} 1 +2024-09-10 15:46:48.711495 2024-09-10 15:46:48.711499 10b1b275-be74-4f29-93a2-65a2c233465d {"md5": "34c3592a114c585094c642b45bc23d52", "pid": "027223779", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Écrins, Massif des (France)"}, {"authorized_access_point": "Préalpes (France)"}, {"authorized_access_point": "Vanoise, Massif de la (France)"}, {"authorized_access_point": "Vercors (France ; massif)"}, {"authorized_access_point": "Alpes cottiennes"}, {"authorized_access_point": "Alpes maritimes (massif)"}], "identifier": "http://www.idref.fr/027223779", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027223779", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119312368", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040932052", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173145181", "source": "VIAF"}], "variant_access_point": ["Alpes françaises"], "authorized_access_point": "Alpes (France)"} 1 +2024-09-10 15:46:48.768257 2024-09-10 15:46:48.768261 a281a707-16f6-4c93-8fbf-db05e805e71d {"md5": "13d2cf0d6e681c578c6ed3ecc3112f02", "pid": "027224570", "note": [{"label": ["IFLA, Names of states, 1981"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Afrique du Nord-Est"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027224570", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027224570", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040006395", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172818811", "source": "VIAF"}], "variant_access_point": ["Abyssinie", "Ityopya"], "authorized_access_point": "Éthiopie"} 1 +2024-09-10 15:46:48.824062 2024-09-10 15:46:48.824066 fd64ad04-7c6e-4dd8-9682-70efd4ed5ba9 {"md5": "b0f5b84003d88411a63f8b2cfb1d603f", "pid": "027225399", "note": [{"label": ["IFLA, Names of states, 1981. Laval RVM, 1995-02"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Amazonie (Équateur)"}], "identifier": "http://www.idref.fr/027225399", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027225399", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)041293215", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/150084159", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Équateur_(pays)", "source": "WIKIPEDIA"}], "variant_access_point": ["Ecuador"], "authorized_access_point": "Équateur"} 1 +2024-09-10 15:46:48.880469 2024-09-10 15:46:48.880473 e05005b0-080f-4cd9-ac85-308a5c8d1145 {"md5": "adafb5a6d04c48944b854df82cfa33e4", "pid": "027225984", "note": [{"label": ["IFLA, Names of states, 1981. SY 1996-97"], "noteType": "dataSource"}, {"label": ["Voir aussi la subdivision Et la Finlande aux personnes et collectivités"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Pays de l'Union européenne"}, {"authorized_access_point": "Scandinavie"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027225984", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027225984", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15238532r", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040172430", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/2759153532459148820002", "source": "VIAF"}], "variant_access_point": ["Finland", "Suomi"], "authorized_access_point": "Finlande"} 1 +2024-09-10 15:46:48.936477 2024-09-10 15:46:48.93648 a0f499ff-cbf3-4689-b60b-c38ac5d1ee68 {"md5": "84d5f2fae58c2945c4223a855a67d67c", "pid": "027227472", "note": [{"label": ["France (Nord) ; Laval RVM, 1996-02"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les ouvrages qui traitent de la moitié nord de la France"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "France (nord-est)"}], "identifier": "http://www.idref.fr/027227472", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027227472", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119315243", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)041100867", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172655931", "source": "VIAF"}], "variant_access_point": ["France du nord", "France septentrionale", "Nord de la France"], "authorized_access_point": "France (nord)"} 1 +2024-09-10 15:46:48.992972 2024-09-10 15:46:48.992977 ee1116eb-1044-4057-8c95-a7f43a82325b {"md5": "f46cf81e2dc4acfce4a354d997648870", "pid": "027227871", "note": [{"label": ["BN ACO. GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027227871", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027227871", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040201856", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/125409416", "source": "VIAF"}], "variant_access_point": ["Gênes (République)", "Genova (Italie)"], "authorized_access_point": "Gênes (Italie)"} 1 +2024-09-10 15:46:49.048036 2024-09-10 15:46:49.048045 a831b6d2-5f26-446d-8a1c-18efb97f3c52 {"md5": "a3a0045a596081b3de7b85758eba29f5", "pid": "027228878", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Antilles"}, {"authorized_access_point": "Petites Antilles"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027228878", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027228878", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11931628r", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)041379225", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172385538", "source": "VIAF"}], "authorized_access_point": "Antilles françaises"} 1 +2024-09-10 15:46:49.102014 2024-09-10 15:46:49.102017 02011aec-ea80-4e43-b3d8-bf2d87061363 {"md5": "cdca0e5f8b54cbe64f9cb4095d85f715", "pid": "027229211", "note": [{"label": ["GDEL"], "noteType": "dataSource"}, {"label": ["Département français (10)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Champagne-Ardenne (France)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027229211", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027229211", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11931650x", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/312788193", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Aube_(département)", "source": "WIKIPEDIA"}], "variant_access_point": ["Aube"], "authorized_access_point": "Aube (France)"} 1 +2024-09-10 15:46:49.155305 2024-09-10 15:46:49.155314 6915a76f-0fdc-49b1-b898-48c0c0724e82 {"md5": "540f87c3c6d909e48f40b4e5085a9cae", "pid": "027230309", "note": [{"label": ["Names of states / IFLA, 1981. Pays et capitales du monde / IGN, 1985. Manuel de l'Unesco, 1985"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Afrique occidentale"}], "related": [{"authorized_access_point": "Moronou (Royaume)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027230309", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027230309", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040144267", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/164154015337309310002", "source": "VIAF"}], "variant_access_point": ["Côte-d'Ivoire"], "authorized_access_point": "Côte d'Ivoire"} 1 +2024-09-10 15:46:49.211677 2024-09-10 15:46:49.21168 0b6c3d2f-668a-4232-81b7-af85958351da {"md5": "27a08a13b2e7c0eb45a849d882b924f4", "pid": "027230422", "note": [{"label": ["GDEL. GKD, 1980", "Colonia Agrippinensis : Festschrift der 43. Versammlung deutscher Philologen und Schulmänner, 1895"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Cologne (Allemagne ; est)"}], "identifier": "http://www.idref.fr/027230422", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027230422", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11931745m", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/6135148574319424430006", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)040314839", "source": "GND"}], "variant_access_point": ["Köln (Allemagne)", "Koeln (Allemagne)", "Colonia Agrippinensis (ville ancienne)"], "authorized_access_point": "Cologne (Allemagne)"} 1 +2024-09-10 15:46:49.265761 2024-09-10 15:46:49.265765 2a0c4d2e-e99e-44de-a4d8-0949c82d3dfd {"md5": "a6ca31bfd8b25bcdaf36c3bb5971196f", "pid": "027230430", "note": [{"label": ["IFLA, Names of states, 1981. GLU. BN ACO. Laval RVM, 1995-02"], "noteType": "dataSource"}, {"label": ["Après l'éclatement de la Grande-Colombie, l'actuelle République de Colombie a porté successivement les noms de \\"République de Nouvelle-Grenade\\" (República de Nueva Granada) (1830-1858), \\"Confédération grenadine\\" (Confederación granadina) (1858-1861), et \\"États-Unis de Colombie\\" (Estados Unidos de Colombia) (1861-1880)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Andes (région)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027230430", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027230430", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040318125", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/127757650", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Colombie", "source": "WIKIPEDIA"}], "variant_access_point": ["Colombia", "Confederación granadina", "Estados Unidos de Colombia", "Nouvelle-Grenade", "Nueva Granada"], "authorized_access_point": "Colombie"} 1 +2024-09-10 15:47:28.036417 2024-09-10 15:47:28.03642 ae6e5901-95dc-4b71-a0f9-2283edc87b88 {"md5": "c4058a8d8911b283bb2b2857806fdab3", "pid": "276183762", "note": [{"label": ["Hauenstein : Oberdorf - Diegten - Olten, 2023 (Landeskarte der Schweiz; 1088)"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/276183762", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/276183762", "source": "IDREF"}], "authorized_access_point": "Diegten (Bâle-Campagne, Suisse)"} 1 +2024-09-10 15:46:49.32957 2024-09-10 15:46:49.329574 c70a0ab5-c279-4172-a436-2ae2644f82d4 {"md5": "ff50a790208907beef32b340dcc8abaa", "pid": "027231585", "note": [{"label": ["IFLA, Names of states, 1981"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Pays de l'Union européenne"}, {"authorized_access_point": "Scandinavie"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027231585", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027231585", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11931839z", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040108775", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/150081023", "source": "VIAF"}], "variant_access_point": ["Danmark"], "authorized_access_point": "Danemark"} 1 +2024-09-10 15:46:49.395811 2024-09-10 15:46:49.395818 4ce13979-adda-48ce-b4fc-4fb8eb3f4a66 {"md5": "1d7adcbada0041ab627ed5bcbac81104", "pid": "027234274", "note": [{"label": ["GLU. Laval RVM, 1993-02"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Europe du Sud"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Espagne"}, {"authorized_access_point": "Portugal"}, {"authorized_access_point": "Hispanie ultérieure"}, {"authorized_access_point": "Hispanie citérieure"}], "identifier": "http://www.idref.fr/027234274", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027234274", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119320646", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040479129", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172655949", "source": "VIAF"}], "variant_access_point": ["Hispanie", "Ibérie", "Péninsule ibérique", "Péninsule ibérique (Espagne)", "Péninsule ibérique (Portugal)"], "authorized_access_point": "Ibérique, Péninsule"} 1 +2024-09-10 15:46:49.454244 2024-09-10 15:46:49.454249 59f57ec5-621b-4688-979c-18548c03dd5e {"md5": "86d55890c6af791ccb38f3f82b5c28ed", "pid": "027234592", "note": [{"label": ["Sous cette vedette on trouve les ouvrages qui traitent des pays où la majorité de la population est musulmane, ou dont l'islam est la religion reconnue"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027234592", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027234592", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11932087v", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040731723", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173581056", "source": "VIAF"}], "variant_access_point": ["États islamiques", "Islamiques, Pays", "Musulmans, Pays", "Pays musulmans"], "authorized_access_point": "Pays islamiques"} 1 +2024-09-10 15:46:49.510152 2024-09-10 15:46:49.510155 3ffa8ef0-bcc4-4670-85a6-a50ab179c93d {"md5": "9591a143c5417612848b26eb172f76c3", "pid": "027235769", "note": [{"label": ["GDEL. Atlas universalis. LCSH, 1987"], "noteType": "dataSource"}, {"label": ["Emploi direct en subdivision : [Sujet] -- Jérusalem"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Jérusalem - Katamon"}, {"authorized_access_point": "Jérusalem - Talbiyeh"}], "identifier": "http://www.idref.fr/027235769", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027235769", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119321723", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040285863", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/23147121724526391653", "source": "VIAF"}], "variant_access_point": ["al Quds", "القدس", "al-Quds", "أورشليم", "Ūršalīm", "Yerushalayim", "Yrẇšalayim"], "authorized_access_point": "Jérusalem"} 1 +2024-09-10 15:46:49.566641 2024-09-10 15:46:49.566648 05d501aa-0346-4f3a-9057-1dfc392e4d0b {"md5": "882cb04d456bfed64a4294c08df8d8b0", "pid": "027236153", "note": [{"label": ["GDEL"], "noteType": "dataSource"}, {"label": ["Département français (46)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Midi-Pyrénées (France)"}, {"authorized_access_point": "Quercy (France)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027236153", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027236153", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119322088", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/125492314", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Lot_(département)", "source": "WIKIPEDIA"}], "variant_access_point": ["Lot"], "authorized_access_point": "Lot (France)"} 1 +2024-09-10 15:46:49.619811 2024-09-10 15:46:49.619814 1f42b7b3-67b3-42d6-b673-e254514173ce {"md5": "fd38bc2e66a93690f0164d5a482d796d", "pid": "027236668", "note": [{"label": ["GLU"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027236668", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027236668", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11932254f", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040359190<", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/124321959", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Lisbonne", "source": "WIKIPEDIA"}], "variant_access_point": ["Al-Uchbūna (Portugal)", "Felicitas Julia (ville ancienne)", "Lisboa (Portugal)", "Olisipo (ville ancienne)"], "authorized_access_point": "Lisbonne (Portugal)"} 1 +2024-09-10 15:46:49.67623 2024-09-10 15:46:49.676234 ccf0b6f9-2a1f-4eb8-ba25-4c6d1410d478 {"md5": "69b88f92b4407d3c8551026852db5952", "pid": "027237257", "note": [{"label": ["GDEL"], "noteType": "dataSource"}, {"label": ["En précision de lieu employer La., par ex. Baton Rouge (La.)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "États-Unis (Vieux Sud-Ouest)"}, {"authorized_access_point": "États-Unis - États"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027237257", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027237257", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040363945", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172764975", "source": "VIAF"}], "variant_access_point": ["Louisiana (États-Unis)"], "authorized_access_point": "Louisiane (États-Unis)"} 1 +2024-09-10 15:46:49.732703 2024-09-10 15:46:49.732709 dd715df4-a7c2-4805-92ed-c60ac844abc6 {"md5": "53d55126cdee771020378a419d8020cb", "pid": "027238423", "note": [{"label": ["Names of states / IFLA, 1981. LCSH, 1985"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Rhodésie et du Nyassaland, Fédération de (1953-1963)"}, {"authorized_access_point": "Afrique australe"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027238423", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027238423", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/8609148574329424430004", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Malawi", "source": "WIKIPEDIA"}], "variant_access_point": ["Afrique centrale britannique", "Nyasaland", "Nyassaland"], "authorized_access_point": "Malawi"} 1 +2024-09-10 15:46:49.784709 2024-09-10 15:46:49.784715 b79d94f8-d89d-4467-b497-28f1582e8ad1 {"md5": "3a112ca2e8d9967ab8ae39f42006c2ba", "pid": "027239365", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027239365", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027239365", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040387887", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173636243", "source": "VIAF"}], "authorized_access_point": "Mésopotamie"} 1 +2024-09-10 15:46:49.843365 2024-09-10 15:46:49.843368 d30341a4-9ab3-42e5-9129-da0f657f2a74 {"md5": "efd0e54384af9c0a497d55861b072d08", "pid": "027240525", "note": [{"label": ["GLU. SWD, 1991"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Afrique australe"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027240525", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027240525", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb122216301", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)04075202X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/2945152988203912790008", "source": "VIAF"}], "variant_access_point": ["Deutsch-Südwestafrika", "Namibia", "South West Africa", "Sud-Ouest africain", "Südwestafrika"], "authorized_access_point": "Namibie"} 1 +2024-09-10 15:46:49.90082 2024-09-10 15:46:49.900824 39eba221-bf8c-4fd2-b0d6-9b7eb280efac {"md5": "b8e0e3b1b9aa403a5b2244ef5889a33f", "pid": "027241912", "note": [{"label": ["GLU, 1991. Encycl. universalis, 1989", "Laval RVM, 1996-08"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages sur le continent antarctique ainsi que sur les terres situées au sud du 60e parallèle, concernées par le Traité sur l'Antarctique (1959)", "Les lieux situés dans l'Antarctique sont localisés à Antarctique (sauf le pôle sud) ; ils s'utilisent en subdivision indirectement, par l'intermédiaire d'Antarctique"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Régions polaires"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027241912", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027241912", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15238492b", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040022080", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/113150032973411180002", "source": "VIAF"}], "variant_access_point": ["Antarctide", "Antarctiques, Régions", "Continent antarctique", "Régions antarctiques", "Terres antarctiques"], "authorized_access_point": "Antarctique"} 1 +2024-09-10 15:46:49.96259 2024-09-10 15:46:49.962595 d9633309-b314-4940-951c-3ba6a9a1ba4a {"md5": "fe113a29d7d189b6166354e441406bae", "pid": "027242005", "note": [{"label": ["IFLA, Names of states, 1981. GLU. BN ACO (en ligne), 1995-07-07. Laval RVM, 1995-02", "https://www.insee.fr/fr/metadonnees/cog/, 2017-04-28", "http://www.geonames.org/, 2017-04-28"], "noteType": "dataSource"}, {"label": ["Emploi direct en subdivision : [Sujet] -- La Réunion", "Département d'outre-mer de la France"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Indien, Îles de l'océan"}, {"authorized_access_point": "Mascareignes (îles)"}, {"authorized_access_point": "France - Départements et régions d'outre-mer"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027242005", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027242005", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15326035w", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040496392", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/129722462", "source": "VIAF"}], "relation_pid": {"type": "redirect_from", "value": "089774507"}, "variant_access_point": ["Bonaparte, Île (France)", "Bourbon, Île (France)", "Île Bourbon (France)", "Réunion, Île de la (France)", "Île de La Réunion (France)", "Réunion (France ; île)", "La Réunion", "La Réunion (île)", "Réunion"], "authorized_access_point": "La Réunion (France ; île)"} 1 +2024-09-10 15:46:50.049653 2024-09-10 15:46:50.049659 4ebcda68-2262-4657-8f6b-2775bf3c45ab {"md5": "c8f8c1ce6e8fa94044078fbcb0e370b5", "pid": "027242676", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027242676", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027242676", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)041240626", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172385555", "source": "VIAF"}], "variant_access_point": ["Vallée du Rhin"], "authorized_access_point": "Rhin, Vallée du"} 1 +2024-09-10 15:46:50.106619 2024-09-10 15:46:50.106622 5f8cdcb5-e20e-4591-9234-b9f225e10ddc {"md5": "e1ae43b1f40f0b3767ad72ef540a0c00", "pid": "027243265", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Océanie"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027243265", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027243265", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040467090", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173418425", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Polynésie", "source": "WIKIPEDIA"}], "authorized_access_point": "Polynésie"} 1 +2024-09-10 15:47:31.235406 2024-09-10 15:47:31.23541 3ee42eeb-4715-4253-81c2-6a1c9cb33746 {"md5": "87b84221caf6a866ebf54e5acd7fac89", "pid": "279135289", "note": [{"label": ["http://www.geonames.org/, 2024-07-01"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de DeKalb"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279135289", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279135289", "source": "IDREF"}], "authorized_access_point": "Hinckley (Ill.)"} 1 +2024-09-10 15:46:50.163537 2024-09-10 15:46:50.163541 06afe6b8-0fc7-4458-8319-38bd0a5908d1 {"md5": "bf6fb94d428a76fb9f84405461bb1bf6", "pid": "02724606X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Pays de langues germaniques"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/02724606X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02724606X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11933043g", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040703703", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173145199", "source": "VIAF"}], "variant_access_point": ["Pays germanophones", "Régions de langue allemande", "Germanophonie", "Europe germanophone"], "authorized_access_point": "Pays de langue allemande"} 1 +2024-09-10 15:46:50.218621 2024-09-10 15:46:50.218625 75999ef3-006a-477e-94ca-41b7660c4c46 {"md5": "d6189628ad88eae7bf2606599aee884d", "pid": "027247740", "note": [{"label": ["GLU. Laval RVM, 2000-01"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les documents sur la région qui forme aujourd'hui les deux départements français de Savoie et de Haute-Savoie. Les documents sur le département de la Savoie sont sous la vedette Savoie (France). Les documents sur la Savoie historique avant 1860 sont sous la vedette Savoie"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Rhône-Alpes (France)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027247740", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027247740", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11933188q", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/172331909", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Savoie", "source": "WIKIPEDIA"}], "authorized_access_point": "Savoie (France ; région)"} 1 +2024-09-10 15:46:50.272604 2024-09-10 15:46:50.272611 d911e8d4-88ed-4f24-bbac-e02e396ee8b4 {"md5": "fd80994177f4c18616de134cc9645135", "pid": "027248704", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027248704", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027248704", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)04054671", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/142678783", "source": "VIAF"}], "variant_access_point": ["Sevilla (Espagne)"], "authorized_access_point": "Séville (Espagne)"} 1 +2024-09-10 15:46:50.329989 2024-09-10 15:46:50.329994 bb853d69-85f9-461f-afbc-b9e836ab8125 {"md5": "da2a669fd9fc67cdb59b5fc278a63033", "pid": "027248933", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "related": [{"authorized_access_point": "Anciens pays socialistes"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027248933", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027248933", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119332807", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040558134", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/315125192", "source": "VIAF"}], "variant_access_point": ["Bloc soviétique", "Communistes, États", "Démocraties populaires", "États communistes", "États socialistes", "Pays communistes", "Pays du rideau de fer", "Pays satellites soviétiques", "Satellites soviétiques (Pays)", "Socialistes, États", "Socialistes, Pays"], "authorized_access_point": "Pays socialistes"} 1 +2024-09-10 15:46:50.384137 2024-09-10 15:46:50.384141 959e5179-a039-457a-90f4-aecc38a93443 {"md5": "21390f9b24b0a6a61d5b8865b8f16508", "pid": "027250199", "note": [{"label": ["GLU. SY 1993/94"], "noteType": "dataSource"}, {"label": ["Communauté autonome de l'Espagne depuis 1983"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Méditerranée, Îles de la"}, {"authorized_access_point": "Pays catalans"}, {"authorized_access_point": "Espagne - Communautés autonomes"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027250199", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027250199", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11933372w", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040690989", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/130205220", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Îles_Baléares", "source": "WIKIPEDIA"}], "variant_access_point": ["Balears (Espagne)", "Illes Balears (Espagne)", "Islas Baleares (Espagne)"], "authorized_access_point": "Baléares (Espagne)"} 1 +2024-09-10 15:46:50.444225 2024-09-10 15:46:50.444229 17a30188-7c51-4347-87ec-450a2ca8ff6a {"md5": "3dc79b1cb80d0a2eca0d936597d5f573", "pid": "027250210", "note": [{"label": ["GLU. Guide bleu, Epagne, 1992"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Barcelone (Espagne ; province)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027250210", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027250210", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)04004503X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173418460", "source": "VIAF"}], "variant_access_point": ["Barcelona (Espagne)", "Barcino (ville ancienne)", "Barcinona (ville ancienne)"], "authorized_access_point": "Barcelone (Espagne)"} 1 +2024-09-10 15:46:50.500135 2024-09-10 15:46:50.50014 1b94476d-4e77-4d31-bbf4-d0d57f210053 {"md5": "c59d414b92bc18801a9df299e9e2c6bb", "pid": "027250245", "note": [{"label": ["Atlas Le Monde"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027250245", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027250245", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119333768", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/172547104", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Bari", "source": "WIKIPEDIA"}], "authorized_access_point": "Bari (Italie)"} 1 +2024-09-10 15:46:51.361343 2024-09-10 15:46:51.361348 4adf6fea-026f-417f-9c82-0adb1c69762c {"md5": "43f950b070d303984e7ab75d9e1d0f63", "pid": "027251861", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Méditerranée (mer ; sud-ouest)"}, {"authorized_access_point": "Méditerranée (mer ; est)"}], "identifier": "http://www.idref.fr/027251861", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027251861", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/307211045", "source": "VIAF"}], "variant_access_point": ["Méditerranée"], "authorized_access_point": "Méditerranée (mer)"} 1 +2024-09-10 15:46:50.555716 2024-09-10 15:46:50.55572 64e53139-8d48-490a-a904-c3c7ef7f5621 {"md5": "02c87c356b9d38893f531815817c748c", "pid": "027250393", "note": [{"label": ["GLU"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les ouvrages qui traitent de la Bohême au sens strict, ou, pour la période allant jusqu'à 1918, de l'ensemble des pays relevant de la couronne de Bohême, incluant notemment le margraviat de Moravie"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "République tchèque"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027250393", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027250393", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11933389m", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040074676", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172547115", "source": "VIAF"}], "variant_access_point": ["Bohême", "Bohême (Royaume)", "Böhmen (République tchèque)", "Čechy (République tchèque)", "Couronne de Bohême, Pays de la", "Pays tchèques"], "authorized_access_point": "Bohême (République tchèque)"} 1 +2024-09-10 15:46:50.644695 2024-09-10 15:46:50.644699 af66a3a5-1f3b-4e87-a51c-04f4a7d42323 {"md5": "b185908b60c2f4a856939d684191b646", "pid": "027250407", "note": [{"label": ["Atlas Le Monde. GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027250407", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027250407", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040076164", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/242997663", "source": "VIAF"}, {"type": "uri", "value": "https://ark.frantiq.fr/ark:/26678/pcrtxAvrNy1ySE", "source": "PACTOLS"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Bologne", "source": "WIKIPEDIA"}], "variant_access_point": ["Bologna (Italie)"], "authorized_access_point": "Bologne (Italie)"} 1 +2024-09-10 15:46:50.704119 2024-09-10 15:46:50.704122 129d01ea-37ca-4825-939f-dd0ae5efebfd {"md5": "643f45f209a91c058b6f461d92d4e47b", "pid": "027250547", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027250547", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027250547", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040084604", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/8187154983561567860004", "source": "VIAF"}], "variant_access_point": ["Bruxelles", "Brussel (Belgique)"], "authorized_access_point": "Bruxelles (Belgique)"} 1 +2024-09-10 15:46:50.763047 2024-09-10 15:46:50.763051 514318d8-a6f1-4312-9f94-8751ae2d926e {"md5": "1bc0dbd39772041056e5965c8e5eb6d4", "pid": "027250636", "note": [{"label": ["GLU"], "noteType": "dataSource"}, {"label": ["En précision de lieu, employer Calif., par ex. Los Angeles (Calif.)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "États-Unis (Nouveau Sud-Ouest)"}, {"authorized_access_point": "États-Unis - États"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027250636", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027250636", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11933409d", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040293076", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172438990", "source": "VIAF"}], "variant_access_point": ["California (États-Unis)", "Californie"], "authorized_access_point": "Californie (États-Unis)"} 1 +2024-09-10 15:46:50.817927 2024-09-10 15:46:50.817932 06f18400-786c-4d27-b4fa-0d01d10835a9 {"md5": "111b05da47ae72935113012054dcf3ff", "pid": "027250695", "note": [{"label": ["SY, 1987/1988. GDEL. Laval RVM suppl., 1987"], "noteType": "dataSource"}, {"label": ["Cette vedette s'emploie directement en subdivision de lieu : [Sujet] -- Canaries. Les lieux situés aux Canaries sont localisés à (Canaries)", "Communauté autonome de l'Espagne. La capitale régionale est alternativement Las Palmas et Santa Cruz de Tenerife"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Atlantique, Îles de l'"}, {"authorized_access_point": "Espagne - Communautés autonomes"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027250695", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027250695", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12263408m", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)04073188X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/148386330", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Îles_Canaries", "source": "WIKIPEDIA"}], "variant_access_point": ["Canaries (îles)", "Îles Fortunées", "Fortunées (îles)", "Canarias"], "authorized_access_point": "Canaries"} 1 +2024-09-10 15:46:50.880263 2024-09-10 15:46:50.880269 9dd6ebe4-aec4-48b0-b256-c691af0b6ae4 {"md5": "a4fc78ad04f0b6b139456f4beb63f831", "pid": "027250857", "note": [{"label": ["GLU, 1991"], "noteType": "dataSource"}, {"label": ["Département français (18)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Berry (France)"}, {"authorized_access_point": "Centre (France)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027250857", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027250857", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11933428p", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/137228189", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Cher_(département)", "source": "WIKIPEDIA"}], "variant_access_point": ["Cher", "Haut Berry (France)"], "authorized_access_point": "Cher (France)"} 1 +2024-09-10 15:46:53.347146 2024-09-10 15:46:53.347153 e78c46bc-c672-4790-94ae-1eb5a520d46f {"md5": "10d09e5809a1bb6e24adcb45fa22f28f", "pid": "027263789", "note": [{"label": ["GDEL. Quid, 1989. SY, 1990/1991"], "noteType": "dataSource"}, {"label": ["Communauté autonome (statut du 9-6-1982 ; chef-lieu : Logroño), comprenant la province de Logroño auparavant en Vieille-Castille"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Espagne - Communautés autonomes"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027263789", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027263789", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/173199850", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/La_Rioja", "source": "WIKIPEDIA"}], "variant_access_point": ["Logroño (Espagne ; province)", "Rioja, La (Espagne)"], "authorized_access_point": "La Rioja (Espagne ; Communauté autonome)"} 1 +2024-09-10 15:46:50.934121 2024-09-10 15:46:50.934129 4aacb07f-5062-497d-9d4c-aac457fd9236 {"md5": "d5925c67171b3d7248fc6d8e911674af", "pid": "027250873", "note": [{"label": ["IFLA, Names of states, 1981. GDEL. SY, 1987/1988. Laval RVM suppl., 1987"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les ouvrages qui traitent de l'île de Chypre et/ou de la République de Chypre, au territoire réduit à la suite de l'intervention turque de 1974. Les ouvrages qui traitent exclusivement de la République turque de Chypre du Nord se trouvent sous la vedette : Chypre du Nord (République turque)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Méditerranée, Îles de la"}, {"authorized_access_point": "Proche-Orient"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027250873", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027250873", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040795969", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/174324116", "source": "VIAF"}], "relation_pid": {"type": "redirect_from", "value": "059675527"}, "variant_access_point": ["Cyprus", "Kibris", "Kypros"], "authorized_access_point": "Chypre"} 1 +2024-09-10 15:46:50.991196 2024-09-10 15:46:50.991199 d8e4edbe-fc80-44cc-a904-6865f367ee2f {"md5": "8a9eae490542508335708af34c8110ff", "pid": "02725089X", "note": [{"label": ["BN ACO"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Copenhague (Danemark) - Quartier de Frederiksstaden"}], "identifier": "http://www.idref.fr/02725089X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02725089X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb152399621", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040323994", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/300998144", "source": "VIAF"}], "variant_access_point": ["København (Danemark)", "Hauniae (Danemark)", "Hafniae (Danemark)"], "authorized_access_point": "Copenhague (Danemark)"} 1 +2024-09-10 15:46:51.054853 2024-09-10 15:46:51.054857 1333e804-084f-454d-a009-1ddaa7a805f8 {"md5": "53cd15e7b7e46bd7c367be97d5a26a97", "pid": "02725108X", "note": [{"label": ["IFLA, Names of states, 1981"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Antilles hispaniques"}, {"authorized_access_point": "Grandes Antilles"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/02725108X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02725108X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119334489", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)04033340X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/162884679", "source": "VIAF"}], "authorized_access_point": "Cuba"} 1 +2024-09-10 15:46:51.113906 2024-09-10 15:46:51.113911 f2ed088d-7be9-4aac-a7d4-8b81692b43db {"md5": "7aef2ff06c738b210a61f7b3d7be98f2", "pid": "027251160", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Rhône-Alpes (France)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027251160", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027251160", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040909255", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/141826527", "source": "VIAF"}], "variant_access_point": ["Dauphiné de Viennois"], "authorized_access_point": "Dauphiné (France)"} 1 +2024-09-10 15:46:51.174144 2024-09-10 15:46:51.174147 3434976c-50a4-4cd0-bcbc-b268cba2c66a {"md5": "d7a15ca0a7c68344826c265e23c2f097", "pid": "027251594", "note": [{"label": ["IFLA, Names of states, 1981. GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Afrique du Nord-Est"}, {"authorized_access_point": "Moyen-Orient"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027251594", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027251594", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040583783", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/150756275", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Soudan", "source": "WIKIPEDIA"}], "variant_access_point": ["Soudan anglo-égyptien", "Sudan", "السودان", "Al-Sūdān"], "authorized_access_point": "Soudan"} 1 +2024-09-10 15:46:51.242067 2024-09-10 15:46:51.242072 b77664a2-f046-4793-a2b3-78c8669689d3 {"md5": "ea19525e9bee11dba7834bb2f050b4e8", "pid": "027251659", "note": [{"label": ["Names of states / IFLA, 1981. SY, 1986/1987"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Indochine"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027251659", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027251659", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11933494g", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)04078228X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/138308059", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Thaïlande", "source": "WIKIPEDIA"}], "variant_access_point": ["Muang-Thai", "Prathet Thai", "Siam"], "authorized_access_point": "Thaïlande"} 1 +2024-09-10 15:46:51.300225 2024-09-10 15:46:51.300228 a3d28faf-bd95-4ed9-9105-b52f8b377cef {"md5": "0b763791d48d28ee0555a82f72fe1a4f", "pid": "027251810", "note": [{"label": ["GDEL. BN Service arabe"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027251810", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027251810", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12570735b", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040376842", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/138361991", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Marrakech", "source": "WIKIPEDIA"}], "variant_access_point": ["Marrākuš (Maroc)"], "authorized_access_point": "Marrakech (Maroc)"} 1 +2024-09-10 15:46:53.409617 2024-09-10 15:46:53.409622 30507923-f775-43a6-a71a-072b15a2d77a {"md5": "abb9345e627a268d122cd2c282b7026a", "pid": "027263878", "note": [{"label": ["Atlas Le Monde"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027263878", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027263878", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040798828", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/17148570434724310085", "source": "VIAF"}], "authorized_access_point": "Auvernier (Neuchâtel, Suisse)"} 1 +2024-09-10 15:46:51.41791 2024-09-10 15:46:51.417914 1ebe9e02-5663-4940-a60a-893c4f0bbd2d {"md5": "bc23ab983c7fcca9e3d97fb641f12d85", "pid": "027252132", "note": [{"label": ["Names of states / IFLA, 1981. LCSH, 1985"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Afrique australe"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Inhambane (Mozambique ; province)"}, {"authorized_access_point": "Nampula (Mozambique ; province)"}, {"authorized_access_point": "Zambézie (Mozambique)"}], "identifier": "http://www.idref.fr/027252132", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027252132", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12246813m", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040397866", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/130895295", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/République_populaire_du_Mozambique", "source": "WIKIPEDIA"}], "relation_pid": {"type": "redirect_from", "value": "031209068"}, "variant_access_point": ["Moçambique"], "authorized_access_point": "Mozambique"} 1 +2024-09-10 15:46:51.484161 2024-09-10 15:46:51.484166 bd7d4cae-c009-498b-9031-a83f502370be {"md5": "a36e26eceef827713f6c876793938d4a", "pid": "027252175", "note": [{"label": ["Names of states / IFLA, 1981"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Asie du Sud"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027252175", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027252175", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040416127", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/5689148574317624430000", "source": "VIAF"}], "authorized_access_point": "Népal"} 1 +2024-09-10 15:46:51.542305 2024-09-10 15:46:51.542308 2713dbf3-b8cf-4bd0-9cea-a528dccd7fdc {"md5": "5c011c04d54ecd6163551beb7b01b038", "pid": "027252272", "note": [{"label": ["GLU"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent de l'ensemble de l'empire turc osmanli. Les ouvrages sur la République turque ou sur la seule Anatolie se trouvent sous la vedette Turquie"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Orient"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027252272", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027252272", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)04075720X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/5493148574275724430005", "source": "VIAF"}], "variant_access_point": ["Empire turc", "Ottoman, Empire"], "authorized_access_point": "Empire ottoman"} 1 +2024-09-10 15:46:51.600608 2024-09-10 15:46:51.600614 59dca4db-1559-4926-9c8c-fbdbbdaee03d {"md5": "8a871296a91273a916f365c245de3f54", "pid": "027252485", "note": [{"label": ["GDEL. Nordrhein-Westfalen ; GKD, 1980 ; BN ACO"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Rhénanie (Allemagne)"}, {"authorized_access_point": "Allemagne - Länder"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027252485", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027252485", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040425703", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173527834", "source": "VIAF"}], "variant_access_point": ["Nordrhein-Westfalen"], "authorized_access_point": "Rhénanie du Nord-Westphalie (Allemagne)"} 1 +2024-09-10 15:46:51.659172 2024-09-10 15:46:51.659178 093f0c72-cb6a-4907-bf2a-bb6b24613c6e {"md5": "05463f04b0a0b2b0c34ac51e3f561397", "pid": "027252620", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027252620", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027252620", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)04051658X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/9662148705732037080009", "source": "VIAF"}, {"type": "uri", "value": "http://viaf.org/viaf/122531297", "source": "VIAF"}], "relation_pid": {"type": "redirect_from", "value": "169986365"}, "variant_access_point": ["Santiago de Compostela (Espagne)"], "authorized_access_point": "Saint-Jacques-de-Compostelle (Espagne)"} 1 +2024-09-10 15:46:51.718926 2024-09-10 15:46:51.718935 0355ce84-79dc-4a32-8cc6-8b0f617ba926 {"md5": "62a55e5bea0fe8219b24d0b594b64a14", "pid": "027252728", "note": [{"label": ["Dict. communes, 1992. GDEL. Rachet. Dict. archéol. de France"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027252728", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027252728", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119335833", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/236092358", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Saint-Romain-en-Gal", "source": "WIKIPEDIA"}], "authorized_access_point": "Saint-Romain-en-Gal (Rhône)"} 1 +2024-09-10 15:46:51.798367 2024-09-10 15:46:51.798372 0e9280ac-3e03-4a06-bc0c-0a3254b0d5e6 {"md5": "314680915ec3ebdf53d4cf9a1f730ad3", "pid": "027255697", "note": [{"label": ["Viet-Nam : BN ACO ; IFLA, Names of states, 1981. Viêt Nam : Pays et capitales du monde / IGN, 1992. Vietnam : LCNA, 1977-1986 ; Encycl. universalis, 1984, t.18, p.820 sq. Viet Nam : Manuel de l'Unesco, 1985. Viêt-nam : GLU ; Laval RVM, 1995-08 ; GKD, 1994-05. Việt Nam : GKD, 1980"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Indochine"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027255697", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027255697", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119337871", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/155871049", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Viêt_Nam", "source": "WIKIPEDIA"}], "variant_access_point": ["Viet-Nam", "Viet-Nam (République socialiste)"], "authorized_access_point": "Vietnam"} 1 +2024-09-10 15:46:51.875796 2024-09-10 15:46:51.875802 ad2a20a2-73cc-4ad0-9dbe-a232be123cf1 {"md5": "9d7030933d78115043b2d59968a4fe38", "pid": "027256693", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027256693", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027256693", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040639444", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/8161148574369124430000", "source": "VIAF"}], "authorized_access_point": "Vorarlberg (Autriche)"} 1 +2024-09-10 15:46:51.939725 2024-09-10 15:46:51.939729 48e7ee41-558b-4c21-b45d-5479cc8385fc {"md5": "7f6d187aab8442bfd52613d71ed1544d", "pid": "027257525", "note": [{"label": ["GDEL", "BNF"], "noteType": "dataSource"}, {"label": ["Le Pays basque, du côté français, se limite aux arrondissements de Bayonne, et pour une faible part, d'Oloron-Sainte-Marie (pays de Soule)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Pays basque"}, {"authorized_access_point": "Pyrénées-Atlantiques (France)"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Labourd (France)"}, {"authorized_access_point": "Navarre (France)"}, {"authorized_access_point": "Soule, Pays de (France)"}], "identifier": "http://www.idref.fr/027257525", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027257525", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119339131", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040802809", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/130232465", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Pays_basque_français", "source": "WIKIPEDIA"}], "variant_access_point": ["Basque, Pays (Pyrénées-Atlantiques)", "Euzkadi (nord)", "Ipar Euskal Herria", "Iparraldea", "Pays basque (France)", "Pays basque (nord)"], "authorized_access_point": "Pays basque (Pyrénées-Atlantiques)"} 1 +2024-09-10 15:46:52.009392 2024-09-10 15:46:52.0094 5db057c7-31a1-4776-b9c0-e28694040e0f {"md5": "a4ada79d6c81590a7ac00007dbefb92c", "pid": "027259641", "note": [{"label": ["GDEL. SY, 1990-91"], "noteType": "dataSource"}, {"label": ["Canton suisse"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Suisse - Cantons"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027259641", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027259641", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040000222", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/57148570704724312118", "source": "VIAF"}], "variant_access_point": ["Aargau (Suisse)"], "authorized_access_point": "Argovie (Suisse)"} 1 +2024-09-10 15:46:52.072378 2024-09-10 15:46:52.072381 29914ef0-0e54-4d0a-a1ff-34148aea8c6f {"md5": "6257537d6cbe39abf3eb0cab72bc5b11", "pid": "027259811", "note": [{"label": ["Basque-English dict. / G. Aulestia, 1989"], "noteType": "dataSource"}, {"label": ["Les termes Euskalerri, Euskal herri, designent le Pays basque dans son ensemble, en tant qu'entité historico-culturelle (littéralement :\\"pays de la langue basque\\"). Le terme Euzkadi s'applique soit au Pays basque, entité politique autonome espagnole, soit à l'ensemble du Pays basque (supposé réuni)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Pays basque (Espagne)"}, {"authorized_access_point": "Pays basque (Pyrénées-Atlantiques)"}], "identifier": "http://www.idref.fr/027259811", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027259811", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11934078c", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)042569087", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173145229", "source": "VIAF"}], "variant_access_point": ["Basque, Pays", "Euskal herri", "Euskalerri", "Euzkadi"], "authorized_access_point": "Pays basque"} 1 +2024-09-10 15:46:52.130058 2024-09-10 15:46:52.130063 305809fb-c617-4d25-9418-21eba2e6a7b1 {"md5": "bbea2b114628b4d372b8d5b1ff6e1505", "pid": "027260011", "note": [{"label": ["GDEL", "Brandenburg (Havel, Staat) ; GKD, 1980", "Brandenburg (Germany and Poland) ; LCSH, 1990-06"], "noteType": "dataSource"}, {"label": ["Margraviat, puis Électorat du Saint-Empire, province prussienne à partir de 1701, le Brandebourg est aujourd'hui un Land allemand. - Une partie de l'ancien Brandebourg, située à l'est de l'Oder, est aujourd'hui en Pologne"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Allemagne - Länder"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Nowa Marchia (Pologne)"}, {"authorized_access_point": "Basse-Lusace (Allemagne)"}, {"authorized_access_point": "Templin (Allemagne)"}], "identifier": "http://www.idref.fr/027260011", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027260011", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119340938", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040079554", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/246066379", "source": "VIAF"}], "relation_pid": {"type": "redirect_from", "value": "144260069"}, "variant_access_point": ["Brandebourg (Allemagne ; Land)", "Brandebourg (Allemagne ; province)", "Brandebourg (Électorat)", "Brandebourg (Margraviat)", "Brandenburg (Allemagne ; État)"], "authorized_access_point": "Brandebourg (Allemagne ; État)"} 1 +2024-09-10 15:46:52.190021 2024-09-10 15:46:52.190025 b2b44207-03b9-4779-adbc-3ce44ccc10ae {"md5": "2c7165f6ee3c600d494345a237231757", "pid": "02726002X", "note": [{"label": ["Nordeste ; GLU", "Nordeste (Brésil) ; Laval RVM, 1996-02"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Brésil"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/02726002X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02726002X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11934094m", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040899535", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/155483347", "source": "VIAF"}], "variant_access_point": ["Nordeste (Brésil)", "Brésil (Nordeste)", "Nordeste (Brasil)", "Brasil (Nordeste)"], "authorized_access_point": "Brésil (nord-est)"} 1 +2024-09-10 15:46:53.473405 2024-09-10 15:46:53.473411 931638b9-999b-4031-abf5-32cedfd61403 {"md5": "06cadd88302adc6250a4356e8fd49d82", "pid": "027264602", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Europe centrale"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027264602", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027264602", "source": "IDREF"}, {"type": "bf:Nbn", "value": "ark:/12148/cb11934437w", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040553027", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/6399148574320624430003", "source": "VIAF"}], "variant_access_point": ["Slovenija"], "authorized_access_point": "Slovénie"} 1 +2024-09-10 15:46:52.249773 2024-09-10 15:46:52.249777 edfc585b-89de-4b2c-b378-2688b9ddd372 {"md5": "e14eac4f7fa85924712cc46a91532284", "pid": "027260461", "note": [{"label": ["Sous cette vedette, on trouve les ouvrages sur les pays membres de la Communauté (avant fin 1993) comme de l'Union européenne, considérés comme une entité géographique. De ce fait, cette vedette peut être employée en subdivision, ou être suivie des subdivisions propres aux noms de lieu. Les ouvrages sur l'Union européenne en tant qu'organisation internationale se trouvent sous la vedette Union européenne, ou sous la vedette de collectivité appropriée, notamment Communauté européenne pour les ouvrages portant sur la période antérieure à novembre 1993", "1-1-1958 : Allemagne (RFA), Belgique, France, Italie, Luxembourg, Pays-Bas. 1-1-1973 : Danemark, Grande-Bretagne, Irlande. 1-1-1981 : Grèce. 1-1-1986 : Espagne, Portugal. 1-1-1995 : Autriche, Finlande, Suède. 1-5-2004 : Malte, Chypre, Slovénie, Estonie, Lettonie, Lituanie, Pologne, République tchèque, Slovaquie, Hongrie. 1-1-2007 : Bulgarie, Roumanie. Le Groenland (pays associé au Danemark) s'est retiré en 1982 (référendum du 23-02) ; la Norvège a refusé son adhésion en 1972, puis en 1994 (référendum du 28-11)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Europe"}, {"authorized_access_point": "Europe de l'Ouest"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027260461", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027260461", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11934129f", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040583929", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/170452307", "source": "VIAF"}], "variant_access_point": ["CEE, Pays de la", "Communauté européenne, Pays de la", "États de l'Union européenne", "Europe de Maastricht", "Pays de l'UE", "Pays de la CEE", "Pays de la Communauté économique européenne", "Pays de la Communauté européenne", "Pays des Communautés européennes", "Pays du Marché commun européen", "Union européenne, Pays de l'"], "authorized_access_point": "Pays de l'Union européenne"} 1 +2024-09-10 15:46:52.331398 2024-09-10 15:46:52.331403 154bca6b-9dde-4004-bc67-fb9356273b23 {"md5": "2ff9621678e711f91f7bf79855673925", "pid": "027260607", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027260607", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027260607", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040322157", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/4526148574271724430007", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Constance_(Allemagne)", "source": "WIKIPEDIA"}], "variant_access_point": ["Konstanz (Allemagne)"], "authorized_access_point": "Constance (Allemagne)"} 1 +2024-09-10 15:46:52.409555 2024-09-10 15:46:52.40956 da7a19e2-0972-4e14-9411-9e1ca8b424c2 {"md5": "348e646c23a82d32317d564cd8dfc640", "pid": "027261050", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Grande-Bretagne"}, {"authorized_access_point": "Pays celtiques"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Lowlands (GB)"}, {"authorized_access_point": "Strathclyde (GB ; région)"}], "identifier": "http://www.idref.fr/027261050", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027261050", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119341659", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)04053233X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/148914377", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Écosse", "source": "WIKIPEDIA"}], "variant_access_point": ["Scotland", "Écosse", "Grande-Bretagne (nord)"], "authorized_access_point": "Écosse (GB)"} 1 +2024-09-10 15:46:52.491549 2024-09-10 15:46:52.491553 facee372-8a8e-462d-83d3-0cb575ae8648 {"md5": "d130faf5472d6091c578b4786a9ac167", "pid": "027261204", "note": [{"label": ["États-Unis (Sud) ; Laval RVM, 1994-02"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent des 11 anciens États confédérés (Alabama, Arkansas, Caroline du N., Caroline du S., Floride, Géorgie, Louisiane, Mississippi, Tennessee, Texas et Virginie), ou des seuls États situés à l'est du Mississippi"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "États du Sun Belt (États-Unis)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027261204", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027261204", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11934175m", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040786749", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172385572", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Sud_des_États-Unis", "source": "WIKIPEDIA"}], "variant_access_point": ["États du Sud (États-Unis)", "États-Unis (sud-est)", "Southern States (États-Unis)", "Sud, États du (États-Unis)", "Vieux Sud (États-Unis)"], "authorized_access_point": "États-Unis (sud)"} 1 +2024-09-10 15:46:52.553161 2024-09-10 15:46:52.553165 4fe2342b-819e-4029-bddf-42ebb38fd7c2 {"md5": "e7717359245f2bc055e757b700ac1ce1", "pid": "027261336", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027261336", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027261336", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/153634112", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Comté_de_Foix", "source": "WIKIPEDIA"}], "authorized_access_point": "Foix (Comté)"} 1 +2024-09-10 15:46:52.613594 2024-09-10 15:46:52.6136 01725b4e-c3db-4325-a262-ca341c9aae7b {"md5": "d6d437690d19dd1f01bd9ed59dc226a4", "pid": "027261417", "note": [{"label": ["Names of states / IFLA, 1981. LCSH, 1985"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Afrique centrale"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027261417", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027261417", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119341957", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040190528", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/6762148574322124430000", "source": "VIAF"}], "authorized_access_point": "Gabon"} 1 +2024-09-10 15:46:53.538047 2024-09-10 15:46:53.538053 1a82a1e8-dbd9-41e1-b32c-855d2c729511 {"md5": "52a064cc49b3d8b15857dfa6807b4e12", "pid": "027265013", "note": [{"label": ["GDEL. Rachet", "Eretria (Ancient city) ; LCSH, 1991-03", "Internet, www.catalogue.bnf.fr, 20070417"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027265013", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027265013", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11934464s", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040855902", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/171148570526024311115", "source": "VIAF"}], "variant_access_point": ["Érétria (ville ancienne)", "Érétria (Grèce)", "Érétrie (ville ancienne)", "Nea Psara (Grèce)"], "authorized_access_point": "Érétrie (Grèce)"} 1 +2024-09-10 15:46:52.6752 2024-09-10 15:46:52.675204 2a4923f9-8cc5-4480-bb51-24b79e01d5f6 {"md5": "ad63eb1a996043dcfa6135742d967e07", "pid": "027261530", "note": [{"label": ["Dict. communes, 1992. GLU"], "noteType": "dataSource"}, {"label": ["Coordonnées géographiques : E 5°43' / N 45°11", "Gentilé : Grenoblois"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Grenoble (Isère ; région)"}], "related": [{"authorized_access_point": "Grenoble (Isère ; agglomération)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027261530", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027261530", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15238650z", "source": "BNF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119342062", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/170334907", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Grenoble", "source": "WIKIPEDIA"}], "classification": [{"name": "Géographie de la France", "type": "bf:ClassificationDdc", "classificationPortion": "912"}], "variant_access_point": ["Cularo (ville ancienne, 43 av. JC)", "Gratianopolis (ville ancienne, 377)", "Grelibre (1793)", "Grenoble"], "authorized_access_point": "Grenoble (Isère)"} 1 +2024-09-10 15:46:52.729186 2024-09-10 15:46:52.72919 bcddd639-ff42-4f55-ab2b-ff026bf6aa11 {"md5": "22ef0cbfaef2f8bb371944cbeab62b30", "pid": "027262111", "note": [{"label": ["Names of states / IFLA, 1981. LCNA, 1985", "Grand Larousse universel", "Robert encyclopédique des noms propres 2008", "Encycl. universalis - http://www.universalis-edu.com (2013-01-11)", "L'État d'Israël / A. Chouraqui, 1998"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les documents sur l'État d'Israël proclamé le 14 mai 1948 et/ou sur Israël et les territoires occupés. Les documents sur l'ancien royaume d'Israël se trouvent sous Israël (Royaume)", "Pour la période antérieure à 1948, ne pas employer \\"Israël\\", mais \\"Palestine\\", sauf pour la construction indirecte, par ex. : Architecture -- Palestine -- 1900-1945 ; Architecture -- Israël -- Haïfa (Israël) -- 1900-1945"], "noteType": "general"}, {"label": ["Voir aussi la subdivision Et Israël [sans subd. géogr.] aux collectivités et aux personnes", "Voir aussi la subdivision Opinion publique israélienne [sans subd. géogr.] aux guerres et aux lieux"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "related": [{"authorized_access_point": "Proche-Orient"}, {"authorized_access_point": "Palestine"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027262111", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027262111", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040278085", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/5668155226761984490000", "source": "VIAF"}], "classification": [{"name": "Géographie du reste du monde", "type": "bf:ClassificationDdc", "classificationPortion": "915"}], "variant_access_point": ["Yiśra'el"], "authorized_access_point": "Israël"} 1 +2024-09-10 15:46:52.785979 2024-09-10 15:46:52.785985 06728372-9f89-431a-ad2f-ccd3bce7935d {"md5": "b4a0956b358057f3406cf9c8a0ed7370", "pid": "027262464", "note": [{"label": ["GDEL. Le Monde, 8/9 sept. 1991"], "noteType": "dataSource"}, {"label": ["Fondée en 1703, Saint-Pétersbourg devient Pétrograd en 1914, puis Léningrad en 1924 et redevient Saint-Pétersbourg en 1991 (referendum du 12-6, décision du Soviet suprême de Russie du 6-9)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027262464", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027262464", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119342736", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)042670268", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/139487820", "source": "VIAF"}], "variant_access_point": ["Saint Pétersbourg (Russie)", "Léningrad (URSS)", "Pétrograd (Russie)", "Saint Petersburg", "St Petersburg", "Санкт-Петербу́рг"], "authorized_access_point": "Saint-Pétersbourg (Russie)"} 1 +2024-09-10 15:46:52.849787 2024-09-10 15:46:52.84979 efcb76d6-398b-455a-add6-b6e77354d241 {"md5": "07f72eabe9ea3a484248d7194c152514", "pid": "027262545", "note": [{"label": ["IFLA, Names of states, 1981. GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Afrique du Nord"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027262545", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027262545", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15323238r", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040355896", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/2704148574305224430002", "source": "VIAF"}], "variant_access_point": ["Jamahiriya arabe libyenne", "Lībiyā"], "authorized_access_point": "Libye"} 1 +2024-09-10 15:46:52.917547 2024-09-10 15:46:52.917551 fbf3e582-7aa8-4c13-8e94-4fea7f4d98a9 {"md5": "8b4a7d3f6fc2e9440a84c2a55628cdea", "pid": "027262685", "note": [{"label": ["GDEL"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent du duché puis province de Lorraine et/ou de l'actuelle région de Lorraine"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "France (est)"}, {"authorized_access_point": "France (nord-est)"}, {"authorized_access_point": "Lotharingie"}, {"authorized_access_point": "France - Régions"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027262685", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027262685", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119342914", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040363775", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/144260070", "source": "VIAF"}], "variant_access_point": ["Lorraine", "Lorraine (Duché)", "Lothringen (France)"], "authorized_access_point": "Lorraine (France)"} 1 +2024-09-10 15:46:53.609211 2024-09-10 15:46:53.609214 1fe2ca04-757e-4a6c-87a0-f9753c9cae38 {"md5": "cadc7920ac5c4333748580f71c4c07d5", "pid": "027266060", "note": [{"label": ["Laval RVM, 1983"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Arctique"}, {"authorized_access_point": "Régions polaires"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027266060", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027266060", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)041179145", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/316891260", "source": "VIAF"}], "authorized_access_point": "Pôle Nord"} 1 +2024-09-10 15:46:52.977579 2024-09-10 15:46:52.977583 9f6f692c-16de-4e60-851d-975bc04ba8f7 {"md5": "250068b2fbe31c0efe6542a38522ab47", "pid": "027263053", "note": [{"label": ["GLU, 1991. Mourre, 1986", "Zai͏̈re ; Laval RVM, 1997-02"], "noteType": "dataSource"}, {"label": ["La République démocratique du Congo, indépendante le 30 juin 1960, a pris le nom de Zaïre d'octobre 1971 à mai 1997"], "noteType": "general"}, {"label": ["Voir aussi la subdivision Et le Congo (République démocratique) aux personnes et collectivités"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Afrique centrale"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027263053", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027263053", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11934318b", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)04067357X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/5843158188242320260008", "source": "VIAF"}], "variant_access_point": ["Congo", "Congo (État indépendant ; 1885-1908)", "Congo belge", "Congo-Kinshasa", "Congo-Léopoldville", "État indépendant du Congo (1885-1908)", "Zaïre"], "authorized_access_point": "Congo (République démocratique)"} 1 +2024-09-10 15:46:53.046718 2024-09-10 15:46:53.046724 70880647-7ba9-4fa8-b486-76bdb1cc8643 {"md5": "2f54094d63e2e0bfc030327c441d2821", "pid": "027263118", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Allemagne - Länder"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027263118", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027263118", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12031086v", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040422267", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/4086154387419430970003", "source": "VIAF"}, {"type": "uri", "value": "http://viaf.org/viaf/14144647646568895784", "source": "VIAF"}], "relation_pid": {"type": "redirect_from", "value": "028483960"}, "variant_access_point": ["Basse-Saxe", "Niedersachsen (Allemagne)", "Saxe, Basse- (Allemagne)"], "authorized_access_point": "Basse-Saxe (Allemagne)"} 1 +2024-09-10 15:46:53.106289 2024-09-10 15:46:53.106293 4a516d7b-a843-4f42-88d8-24f46d53f21e {"md5": "96fd08dcf6c6d4a42945859d84eb246c", "pid": "027263193", "note": [{"label": ["Grand Larousse universel", "Dict. univ. d'histoire / M. Mourre, 1996", "Le Monde, 2006-06-15"], "noteType": "dataSource"}, {"label": ["Royaume incorporé à la Yougoslavie en 1918, la Serbie constitue l'une des républiques fédérées de la Yougoslavie (1946), puis de la Serbie-et-Monténégro (2003) ; elle est indépendante depuis le 5 juin 2006"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Balkans"}], "related": [{"authorized_access_point": "Serbie-et-Monténégro"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Kosovo (Serbie)"}, {"authorized_access_point": "Sandžak (Serbie, Monténégro ; région)"}, {"authorized_access_point": "Voïvodine (Serbie)"}], "identifier": "http://www.idref.fr/027263193", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027263193", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040545989", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/1427148574258824430000", "source": "VIAF"}], "variant_access_point": ["Serbie (Serbie-et-Monténégro)", "Србија", "Srbija"], "authorized_access_point": "Serbie"} 1 +2024-09-10 15:46:53.164964 2024-09-10 15:46:53.164968 97186025-f972-4b3d-887c-26b559640002 {"md5": "6e4323d21536a718f33e24c8d7c8ba17", "pid": "027263495", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Hispanie ultérieure"}, {"authorized_access_point": "Espagne - Communautés autonomes"}], "related": [{"authorized_access_point": "Al-Andalus"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027263495", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027263495", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040019098", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/132461455", "source": "VIAF"}], "variant_access_point": ["Andalucía (Espagne)", "Baetica", "Bétique", "Tarsis"], "authorized_access_point": "Andalousie (Espagne)"} 1 +2024-09-10 15:46:53.224153 2024-09-10 15:46:53.224157 ae5642bf-625e-4397-8181-39169a49d8a2 {"md5": "d8cd136027605adfddc3d7fb54315664", "pid": "027263746", "note": [{"label": ["GDEL"], "noteType": "dataSource"}, {"label": ["Département français (59)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Nord-Pas-de-Calais (France)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027263746", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027263746", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/1075148574257424430006", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Nord_(département_français)", "source": "WIKIPEDIA"}], "variant_access_point": ["Nord"], "authorized_access_point": "Nord (France)"} 1 +2024-09-10 15:46:53.288835 2024-09-10 15:46:53.288839 e6713ada-49f1-4171-9703-879f7e8a0c14 {"md5": "5257ae1d9c69743c93466d3fca2a0db3", "pid": "027263762", "note": [{"label": ["GLU. Laval RVM, 2000-01"], "noteType": "dataSource"}, {"label": ["Voir aussi la subdivision Et la Norvège aux collectivités et aux personnes"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Scandinavie"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027263762", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027263762", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040754715", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/727148574256024430009", "source": "VIAF"}], "variant_access_point": ["Norge", "Noreg"], "authorized_access_point": "Norvège"} 1 +2024-09-10 15:46:54.97984 2024-09-10 15:46:54.979843 8263de2f-ca7a-40d1-8877-9a3a150bbbf5 {"md5": "09a56ff0c38056ef744c2cad494c842d", "pid": "027311694", "note": [{"label": ["Atlas Le Monde"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027311694", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027311694", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119381418", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/7267148574365324430001", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Toronto", "source": "WIKIPEDIA"}], "authorized_access_point": "Toronto (Canada)"} 1 +2024-09-10 15:46:53.665421 2024-09-10 15:46:53.665426 0d1e2ae5-ea66-4178-820a-754352f78a36 {"md5": "50d93c51a56deaac0816caacc2acb661", "pid": "027267873", "note": [{"label": ["BA, 1989"], "noteType": "dataSource"}, {"label": ["Emploi direct en subdivision : [sujet] -- Guyane"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Guyanes"}, {"authorized_access_point": "France - Départements et régions d'outre-mer"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027267873", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027267873", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040181847", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173457961", "source": "VIAF"}], "relation_pid": {"type": "redirect_from", "value": "087992019"}, "variant_access_point": ["Guyane française"], "authorized_access_point": "Guyane"} 1 +2024-09-10 15:46:53.724183 2024-09-10 15:46:53.724187 3fc7370f-a5cc-449b-80d0-fece18291b54 {"md5": "44d6e7da64fb84f4b8aa958987aec360", "pid": "027274241", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Italie (nord)"}, {"authorized_access_point": "Italie - Régions"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027274241", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027274241", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040362949", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/134876348", "source": "VIAF"}], "variant_access_point": ["Lombardia (Italie)", "Lombardy (Italie)"], "authorized_access_point": "Lombardie (Italie)"} 1 +2024-09-10 15:46:53.784889 2024-09-10 15:46:53.784893 921ee797-ae78-4e9c-9041-71099333e81d {"md5": "096992bec7b6dd432753696175a11268", "pid": "027274365", "note": [{"label": ["Laval RVM, 1992-02"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent de la partie de l'Afrique qui s'étend du Soudan au Mozambique"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Afrique du Nord-Est"}, {"authorized_access_point": "Afrique orientale anglophone"}, {"authorized_access_point": "Grands lacs africains (région)"}], "identifier": "http://www.idref.fr/027274365", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027274365", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16272629n", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040757226", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/170530065", "source": "VIAF"}], "variant_access_point": ["Afrique (est)", "Afrique de l'Est"], "authorized_access_point": "Afrique orientale"} 1 +2024-09-10 15:46:53.853312 2024-09-10 15:46:53.853317 f0709664-1427-4253-81eb-7c7a741b6b00 {"md5": "bcfe2b631247b610012f924648ad226b", "pid": "027274985", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Italie (nord)"}, {"authorized_access_point": "Italie - Régions"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027274985", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027274985", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040460398", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/132508744", "source": "VIAF"}], "variant_access_point": ["Piémont", "Piemonte (Italie)"], "authorized_access_point": "Piémont (Italie)"} 1 +2024-09-10 15:46:53.920423 2024-09-10 15:46:53.920427 d923290a-61b1-4e69-87d4-7cb33bc335ec {"md5": "1da43470a95a0ea7337c2caa173568f2", "pid": "027275191", "note": [{"label": ["Names of states / IFLA, 1981. LCNA, 1985"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Indien, Îles de l'océan"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027275191", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027275191", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040546942", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/31148574294324430007", "source": "VIAF"}], "authorized_access_point": "Seychelles"} 1 +2024-09-10 15:46:53.985032 2024-09-10 15:46:53.985036 22eac44c-ef0f-4e52-b935-de00724db322 {"md5": "727837a51f0ca3ba6db4ec8ce12c1507", "pid": "027283496", "note": [{"label": ["Atlas universalis. GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Souabe (Allemagne)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027283496", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027283496", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040536866", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/2083148574385624430003", "source": "VIAF"}], "variant_access_point": ["Schwäbische Alb (Allemagne ; massif)"], "authorized_access_point": "Jura souabe (Allemagne ; massif)"} 1 +2024-09-10 15:46:54.05136 2024-09-10 15:46:54.051364 c47f6d76-ea3d-4fcc-9f1a-6e4cab8c903a {"md5": "527402c2a4e297773fd18d88e81ac68e", "pid": "027283518", "note": [{"label": ["GLU, 1991", "Laval RVM, 1997-02"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent : de la région qui s'étend de la mer Caspienne à la Mongolie et la Chine du nord-ouest (inclusivement), et du sud de la Sibérie à l'Afghanistan et au nord de l'Iran (inclusivement) ; ou bien des seules 5 républiques ex-soviétiques considérées collectivement"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Afghanistan"}, {"authorized_access_point": "Kazakhstan"}, {"authorized_access_point": "Kirghizistan"}, {"authorized_access_point": "Mongolie"}, {"authorized_access_point": "Ouzbékistan"}, {"authorized_access_point": "Tadjikistan"}, {"authorized_access_point": "Tibet (Chine)"}, {"authorized_access_point": "Turkménistan"}, {"authorized_access_point": "Xinjiang (Chine)"}], "identifier": "http://www.idref.fr/027283518", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027283518", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11935913h", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040794873", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/170431196", "source": "VIAF"}], "variant_access_point": ["Asie (centre)", "Asie centrale (CEI)", "Asie centrale russe", "Asie centrale soviétique", "Turkestan", "Turkestan occidental", "Turkestan russe", "Turkestan chinois", "Tartarie", "Grande Tartarie"], "authorized_access_point": "Asie centrale"} 1 +2024-09-10 15:46:54.112703 2024-09-10 15:46:54.112707 968d83e7-8b8c-40cb-8334-e2d78afa75a7 {"md5": "56ad80ab391e89c1783688a7304d41ed", "pid": "027286703", "note": [{"label": ["GDEL"], "noteType": "dataSource"}, {"label": ["Région d'Italie centrale comprenant 9 provinces (capitale : Florence)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Italie (centre)"}, {"authorized_access_point": "Italie - Régions"}], "related": [{"authorized_access_point": "Étrurie"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027286703", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027286703", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040604853‏ ", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/128956370", "source": "VIAF"}], "relation_pid": {"type": "redirect_from", "value": "123793696"}, "variant_access_point": ["Toscana (Italie)", "Toscane (Grand-duché)"], "authorized_access_point": "Toscane (Italie)"} 1 +2024-09-10 15:46:54.171552 2024-09-10 15:46:54.171556 7b56d47c-417b-4417-b738-843a667ad895 {"md5": "a210dbf85f21e836bcb3fbf5406c16d1", "pid": "027286835", "note": [{"label": ["GDEL. Cape Town (South Africa) ; LCNA, 1977-1986"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027286835", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027286835", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119361931", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/125475857", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Le_Cap", "source": "WIKIPEDIA"}], "variant_access_point": ["Cap, Le (Afrique du Sud)", "Cape Town (Afrique du Sud)", "Kaapstad (Afrique du Sud)"], "authorized_access_point": "Le Cap (Afrique du Sud)"} 1 +2024-09-10 15:46:54.225843 2024-09-10 15:46:54.225846 6fd70599-9397-4b5c-9779-5c886ba4256e {"md5": "fc01c2134a948fa1d0dda4e977c11730", "pid": "027288951", "note": [{"label": ["Grand Larousse universel : Espagne (guerre civile d')", "Encycl. universalis (art. : Espagne (Le territoire et les hommes) - De l'unité politique à la guerre civile) - http://www.universalis-edu.com (2015-03-17)", "Dict. encyclopédique d'histoire / M. Mourre, 1996 (art. : Espagne)", "La guerre d'Espagne / A. Beevor, 2006", "La Guerre d'Espagne : juillet 1936-mars 1939 / H. Thomas, 1985", "La révolution et la guerre d'Espagne / P. Broué, É. Témime, 1979", "Historical dict. of the Spanish civil war, 1936-1939 / J. W. Cortada, 1982"], "noteType": "dataSource"}, {"label": ["17-18 juillet 1936 : soulèvement militaire. 30 mars 1939 : entrée des troupes nationalistes à Valence"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Espagne - 1931-1939 (2e République)"}], "related": [{"authorized_access_point": "Espagne - 1936-1939 (Guerre civile) - Cinéma et guerre"}, {"authorized_access_point": "Espagne - 1936-1939 (Guerre civile) - Littérature et guerre"}, {"authorized_access_point": "Espagne - 1936-1939 (Guerre civile) - Origines"}, {"authorized_access_point": "Espagne - 1936-1939 (Guerre civile) - Réfugiés"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Andalousie (Espagne) - 1936-1939 (Guerre civile)"}, {"authorized_access_point": "Aragon (Espagne) - 1936-1939 (Guerre civile)"}, {"authorized_access_point": "Asturies (Espagne) - 1936-1939 (Guerre civile)"}, {"authorized_access_point": "Baléares (Espagne) - 1936-1939 (Guerre civile)"}, {"authorized_access_point": "Canaries - 1936-1939 (Guerre civile)"}, {"authorized_access_point": "Cantabrie (Espagne) - 1936-1939 (Guerre civile)"}, {"authorized_access_point": "Castille-La Manche (Espagne) - 1936-1939 (Guerre civile)"}, {"authorized_access_point": "Castille-León (Espagne) - 1936-1939 (Guerre civile)"}, {"authorized_access_point": "Catalogne (Espagne) - 1936-1939 (Guerre civile)"}, {"authorized_access_point": "Espagne - 1936-1937 (Révolution)"}, {"authorized_access_point": "Espagne - 1936-1939 (Guerre civile) - Opérations militaires"}, {"authorized_access_point": "Espagne - 1936-1939 (Guerre civile) - Participation étrangère"}, {"authorized_access_point": "Espagne - 1936 (Soulèvement du 18 juillet 1936)"}, {"authorized_access_point": "Estrémadure (Espagne) - 1936-1939 (Guerre civile)"}, {"authorized_access_point": "Galice (Espagne) - 1936-1939 (Guerre civile)"}, {"authorized_access_point": "La Rioja (Espagne) - 1936-1939 (Guerre civile)"}, {"authorized_access_point": "Pays basque (Espagne) - 1936-1939 (Guerre civile)"}, {"authorized_access_point": "Valence (Espagne ; région) - 1936-1939 (Guerre civile)"}], "identifier": "http://www.idref.fr/027288951", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027288951", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11936368c", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)04055970X", "source": "GND"}], "classification": [{"name": "Histoire de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "940"}], "authorized_access_point": "Espagne - 1936-1939 (Guerre civile)"} 1 +2024-09-10 15:46:54.283998 2024-09-10 15:46:54.284001 5494c09e-1fbd-49a4-9fea-2d2765b6a853 {"md5": "1e6e8ded3b3fa22297628d8037789cf7", "pid": "027290530", "note": [{"label": ["GDEL. Laval RVM, 1989-06."], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027290530", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027290530", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11936474k", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)04003366X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/131280462", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Athènes", "source": "WIKIPEDIA"}], "variant_access_point": ["Athènes", "Athinai (Grèce)"], "authorized_access_point": "Athènes (Grèce)"} 1 +2024-09-10 15:46:54.342807 2024-09-10 15:46:54.342811 5af41e7a-0db9-46e3-81e8-bf7eb7453107 {"md5": "aa3e683188ff8627090c89b0ed383803", "pid": "027291499", "note": [{"label": ["GLU. BN Service vietnamien"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Cư Chinh (Viet Nam ; région)"}], "identifier": "http://www.idref.fr/027291499", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027291499", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/164772349", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Hô_Chi_Minh-Ville", "source": "WIKIPEDIA"}], "variant_access_point": ["Sài gòn (Viet-Nam)", "Saigon (Viet-Nam)", "Thành phố Hồ Chí Minh (Viet-Nam)"], "authorized_access_point": "Hồ Chí Minh-Ville (Viet-Nam ; province)"} 1 +2024-09-10 15:46:54.495428 2024-09-10 15:46:54.495433 5d3598f4-4805-460d-b9c1-757bbd269156 {"md5": "992d837c8d59562e7a7f51c357eed876", "pid": "027296946", "note": [{"label": ["GDEL"], "noteType": "dataSource"}, {"label": ["Département français (39)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Franche-Comté (France)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027296946", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027296946", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11936964n", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040932087", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/234191213", "source": "VIAF"}, {"type": "uri", "value": "http://viaf.org/viaf/168693353", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Jura_(département)", "source": "WIKIPEDIA"}], "relation_pid": {"type": "redirect_from", "value": "127958827"}, "variant_access_point": ["Jura", "Jura (département)", "Jura, Département du (France)"], "authorized_access_point": "Jura (France)"} 1 +2024-09-10 15:46:57.049142 2024-09-10 15:46:57.049146 3de757f8-42f2-454e-b5d4-bd82a9869482 {"md5": "d08fbb412516c82ee37d440be9b88d95", "pid": "027368785", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027368785", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027368785", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040608778", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/8916148574372424430008", "source": "VIAF"}], "variant_access_point": ["Augusta Treverorum (ville ancienne)", "Trier (Allemagne)"], "authorized_access_point": "Trèves (Allemagne)"} 1 +2024-09-10 15:46:54.559097 2024-09-10 15:46:54.559104 af3e752d-0cc1-407d-98ad-5b0540650867 {"md5": "0280d709471fc2cbbe1e93938f13cbff", "pid": "027296970", "note": [{"label": ["Moreau. GLU"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Ain (France)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027296970", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027296970", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11936967p", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)953732320", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173309018", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Pays_de_Gex", "source": "WIKIPEDIA"}], "variant_access_point": ["Pays de Gex (Ain)", "Gex (Ain ; région)"], "authorized_access_point": "Gex, Pays de (Ain)"} 1 +2024-09-10 15:46:54.61358 2024-09-10 15:46:54.613584 fe314929-f238-4ec5-a966-9c3b73974317 {"md5": "e107c5d64335c683c28cd60b55eec3bc", "pid": "027297810", "note": [{"label": ["GDEL. SY 1990/91"], "noteType": "dataSource"}, {"label": ["île et région de la Grèce"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Grèce"}, {"authorized_access_point": "Méditerranée, Îles de la"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027297810", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027297810", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040737918", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/151226384", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Crète", "source": "WIKIPEDIA"}], "variant_access_point": ["Candie (Grèce ; île)", "Candia (Grèce ; île)", "Krêtê (Grèce)", "Kríti (Grèce)", "Île de Crête"], "authorized_access_point": "Crète (Grèce)"} 1 +2024-09-10 15:46:54.676129 2024-09-10 15:46:54.676133 2c21c0df-d14d-4dfc-8507-45ceffd81e1d {"md5": "6cb2cb4e434e71eec2f1ea12df4ad1fc", "pid": "027298531", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Val de Loire (France)"}], "identifier": "http://www.idref.fr/027298531", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027298531", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11937097c", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040997758", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172765072", "source": "VIAF"}], "authorized_access_point": "Loire, Vallée de la (France)"} 1 +2024-09-10 15:46:54.732627 2024-09-10 15:46:54.73263 b90c47e8-7060-4107-b589-8c002d1898a1 {"md5": "2f5b17cad04d9a451c0df41a570783ee", "pid": "027298728", "note": [{"label": ["GDEL", "http://ark.bnf.fr/ark:/12148/cb119371144, 2024-07-23"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "related": [{"authorized_access_point": "Naples (Italie) - Histoire"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027298728", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027298728", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040414760", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/1991155648121518330006", "source": "VIAF"}], "relation_pid": {"type": "redirect_from", "value": "119626551"}, "variant_access_point": ["Napoli (Italie)", "Parthénope (ville ancienne)", "Neapolis (ville ancienne)", "Naples (Campanie, Italie)"], "authorized_access_point": "Naples (Italie)"} 1 +2024-09-10 15:46:54.791844 2024-09-10 15:46:54.791848 2bcdc79f-581a-479d-a844-36ec9bd0e84b {"md5": "5a379e65bc389f41d09ee453377518da", "pid": "027308561", "note": [{"label": ["GLU. Mourre", "Laval RVM, 1995-08. Sachsen ; SWD, 1994-10"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent de la Saxe : duché, puis électorat, puis royaume, puis Land"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Allemagne - Länder"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027308561", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027308561", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119379010", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040511766", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/201974690", "source": "VIAF"}], "variant_access_point": ["Kursachsen (Allemagne)", "Sachsen", "Sachsen (Allemagne)", "Saxe", "Saxe (Allemagne ; Land)", "Saxe (Duché)", "Saxe (Électorat)", "Saxe (Royaume)", "Saxe électorale"], "authorized_access_point": "Saxe (Allemagne)"} 1 +2024-09-10 15:46:54.867067 2024-09-10 15:46:54.86707 dcbcb568-aa96-47bd-9113-9b7e9615e307 {"md5": "72451a2a46e7886b73d08a17b09b145c", "pid": "027311058", "note": [{"label": ["GLU. Laval RVM, 1994-08"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Europe de l'Ouest"}], "related": [{"authorized_access_point": "Belgique"}, {"authorized_access_point": "Pays-Bas"}, {"authorized_access_point": "Luxembourg"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027311058", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027311058", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15238537g", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/171985634", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Benelux", "source": "WIKIPEDIA"}], "variant_access_point": ["Pays du Benelux"], "authorized_access_point": "Benelux"} 1 +2024-09-10 15:46:54.921175 2024-09-10 15:46:54.921182 bd7c335c-e109-4570-bbaa-a19dc8275b48 {"md5": "0f68c4e63b3b73448820df559bab5ed7", "pid": "027311430", "note": [{"label": ["Names of states / IFLA, 1981. Pays et capitales du monde / IGN, 1985. Manuel de l'Unesco, 1985. Le Grand atlas de géographie, 1984. GDEL"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages sur la République populaire de Mongolie et/ou sur l'ensemble de la Mongolie"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Asie centrale"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027311430", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027311430", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040400565", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/155144648525066137570", "source": "VIAF"}], "variant_access_point": ["Mongol Ard Uls", "Mongolie (République populaire)", "Mongolie-extérieure"], "authorized_access_point": "Mongolie"} 1 +2024-09-10 15:46:55.034785 2024-09-10 15:46:55.034789 1d718ba8-145f-4582-9d73-d223d0aef483 {"md5": "e1905f10c0950fc805baf9a174818ca5", "pid": "027314049", "note": [{"label": ["Laval RVM, 1992-08"], "noteType": "dataSource"}, {"label": ["S'emploie également en subdivision géographique aux sujets noms communs appropriés, par ex. Agriculture -- Régions tropicales"], "noteType": "general"}, {"label": ["Voir aussi la subdivision Conditions tropicales aux sujets noms communs appropriés lorsque l'emploi de la subdivision géographique Régions tropicales n'est pas possible, par ex. Livres -- Conservation et restauration -- Conditions tropicales", "Voir aussi les vedettes du type : Cultures tropicales ; Poissons tropicaux"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Régions tropicales humides"}, {"authorized_access_point": "Régions tropicales sèches"}], "identifier": "http://www.idref.fr/027314049", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027314049", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11938331h", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040609979", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/316897266", "source": "VIAF"}], "authorized_access_point": "Régions tropicales"} 1 +2024-09-10 15:46:55.098747 2024-09-10 15:46:55.098752 7809d12f-a9da-4154-a1c9-2dab6ff50555 {"md5": "df995129264e2c0e7f4c07c8c7282a38", "pid": "027316696", "note": [{"label": ["IFLA, Names of states, 1981", "Corée du Nord ; Laval RVM, 1994-08. Chosǒn ; GKD, 1980"], "noteType": "dataSource"}, {"label": ["En précision géographique, employer Corée N., par ex. Pyongyang (Corée N.)", "Le Royaume de Corée fut colonisé par le Japon de 1905 à la fin de la Seconde guerre mondiale. La partition, en 1945, en 2 zones d'occupation (USA et URSS) aboutit le 9 septembre 1948 à la proclamation de la République populaire démocratique de Corée par l'Assemblée populaire suprême. Capitale Pyongyang, langue officielle coréen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Corée"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027316696", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027316696", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11938542q", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040754685", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/6097150325542010090000", "source": "VIAF"}], "variant_access_point": ["Chosǒn", "Corée du Nord", "République populaire démocratique de Corée", "Corée, République populaire démocratique de", "Corée, République populaire démocratique de (1948-....)"], "authorized_access_point": "Corée (République populaire démocratique)"} 1 +2024-09-10 15:46:55.164564 2024-09-10 15:46:55.164568 7b77c0c7-db06-401b-a7de-c52894c80302 {"md5": "ed0a531ce25489b9c94cbbf3f1c5a86e", "pid": "027316866", "note": [{"label": ["IFLA, Names of states, 1981", "https://fr.wikipedia.org/wiki/%C3%89gypte"], "noteType": "dataSource"}, {"label": ["Voir aussi la subdivision Et l'Égypte aux personnes et collectivités"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Proche-Orient"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027316866", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027316866", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040005569", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/128459794", "source": "VIAF"}], "relation_pid": {"type": "redirect_from", "value": "197265855"}, "variant_access_point": ["Miṣr", "جمهورية مصر العربية", "مصر", "Arab Republic of Egypt", "RAE (République Arabe d'Égypte)", "République arabe d'Égypte", "United Arab Republic", "République arabe unie"], "authorized_access_point": "Égypte"} 1 +2024-09-10 15:46:55.222127 2024-09-10 15:46:55.222133 dfb3efb6-3aeb-4841-afe1-14cf03df8343 {"md5": "2058990252f4d7044a8130a8080cebb0", "pid": "027321940", "note": [{"label": ["Laval RVM, 1992-08"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent de la partie de l'Afrique située au sud du Sahara et à l'ouest du Tchad et du Cameroun"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Afrique occidentale anglophone"}, {"authorized_access_point": "Afrique occidentale francophone"}, {"authorized_access_point": "Bénin"}, {"authorized_access_point": "Burkina Faso"}, {"authorized_access_point": "Cap-Vert"}, {"authorized_access_point": "Côte d'Ivoire"}, {"authorized_access_point": "Gambie"}, {"authorized_access_point": "Ghana"}, {"authorized_access_point": "Guinée"}, {"authorized_access_point": "Guinée-Bissau"}, {"authorized_access_point": "Liberia"}, {"authorized_access_point": "Mali"}, {"authorized_access_point": "Mauritanie"}, {"authorized_access_point": "Niger"}, {"authorized_access_point": "Nigeria"}, {"authorized_access_point": "Sénégal"}, {"authorized_access_point": "Sierra Leone"}, {"authorized_access_point": "Togo"}, {"authorized_access_point": "Guinée (région)"}], "identifier": "http://www.idref.fr/027321940", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027321940", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb162726289", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)04079203X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/315124800", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Afrique_de_l'Ouest", "source": "WIKIPEDIA"}], "variant_access_point": ["Afrique (ouest)", "Afrique de l'Ouest"], "authorized_access_point": "Afrique occidentale"} 1 +2024-09-10 15:46:55.283582 2024-09-10 15:46:55.283585 32f77094-fe0c-4a41-8a34-6f7f93a402b5 {"md5": "7bca6f17af231bc4fa989655e74b3b96", "pid": "027323072", "note": [{"label": ["Names of states / IFLA, 1981. Pays et capitales du monde / IGN, 1985"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Australasie"}, {"authorized_access_point": "Océanie"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027323072", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027323072", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040419150", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/3232154260428024480001", "source": "VIAF"}], "variant_access_point": ["New Zealand", "Nouvelle Zélande"], "authorized_access_point": "Nouvelle-Zélande"} 1 +2024-09-10 15:46:55.341119 2024-09-10 15:46:55.341123 fc8a1af5-9e4d-4e78-a116-22cd138bac23 {"md5": "22e6f045ec7f2675ee7b6c2d5b129c48", "pid": "027326977", "note": [{"label": ["GDEL. Rheinland-Pfalz ; GKD ; BN ACO"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Rhénanie (Allemagne)"}, {"authorized_access_point": "Allemagne - Länder"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027326977", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027326977", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)04049795X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173418537", "source": "VIAF"}], "variant_access_point": ["Rheinland-Pfalz"], "authorized_access_point": "Rhénanie-Palatinat (Allemagne)"} 1 +2024-09-10 15:46:55.404129 2024-09-10 15:46:55.404133 5798d668-38ec-433e-922b-1746bde29664 {"md5": "fff7914395c199a902229a5ee1737406", "pid": "027333752", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Asie du Nord"}, {"authorized_access_point": "Russie"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027333752", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027333752", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11939827w", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040547809", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/251794742", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Sibérie", "source": "WIKIPEDIA"}], "variant_access_point": ["Russie d'Asie", "Sibir (Russie)"], "authorized_access_point": "Sibérie (Russie)"} 1 +2024-09-10 15:46:55.475036 2024-09-10 15:46:55.475039 04b76ac0-491b-41d8-a17d-67eb14a07659 {"md5": "372a200ba442bae55da04d7c6c258665", "pid": "027334279", "note": [{"label": ["Dict. communes, 1984"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027334279", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027334279", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040631427", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173254969", "source": "VIAF"}], "variant_access_point": ["Versailles"], "authorized_access_point": "Versailles (Yvelines)"} 1 +2024-09-10 15:46:55.541262 2024-09-10 15:46:55.541265 e9f3c66e-8b17-43ce-aad6-939d63697032 {"md5": "21fda27674aaf6a793263b3a42612523", "pid": "027340880", "note": [{"label": ["GLU, 1991 (Hongkong ou Hong Kong). Atlas Le Monde, 1993. Monde, 1997-07-02", "Hong-Kong ; IFLA, Names of states, 1981. Hongkong ; Laval RVM, 1997-02. Hong Kong ; GKD, 1994-05"], "noteType": "dataSource"}, {"label": ["Ville de Chine. Devenue colonie britannique en 1842, agrandie de Kowloon (1860) et des Nouveaux territoires (1898, pour un bail de 99 ans), elle est rétrocédée par la Grande-Bretagne à la Chine le 01-07-1997"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027340880", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027340880", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11940411f", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)04025822X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/261062131", "source": "VIAF"}], "relation_pid": {"type": "redirect_from", "value": "152490701"}, "variant_access_point": ["Hong Kong (colonie)", "Hongkong (Chine)", "Hsiang-kang (Chine)", "Xianggang (Chine)", "Hong Kong Special Administrative Region (Chine)", "Xiang gang", "Xianggang", "Xiang gang te bie xing zheng qu (Chine)", "Chung-hua jen min kung ho kuo Hsiang-kang tʻe pieh hsing cheng chʻü", "Zhonghua Renmin Gongheguo Xianggang Tebie Xingzhengqu", "Zhong hua Ren min Gong he guo Xianggang Te bie Xing zheng qu", "HKSAR", "Hsiang-kang tʻe pieh hsing cheng chʻü (Chine)", "Hongkong S. A. R. (Chine)", "Hongkong"], "authorized_access_point": "Hong Kong (Chine)"} 1 +2024-09-10 15:46:55.604151 2024-09-10 15:46:55.604155 a82e29bf-dc72-4cbd-99ae-c3ffd0cd922b {"md5": "f1d63e37fa9d33491ddc488d8e2e2fed", "pid": "027341046", "note": [{"label": ["GLU, 1991"], "noteType": "dataSource"}, {"label": ["Département français (36)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Berry (France)"}, {"authorized_access_point": "Centre (France)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027341046", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027341046", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11940421r", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/167743789", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Indre_(département)", "source": "WIKIPEDIA"}], "variant_access_point": ["Bas Berry (France)", "Indre"], "authorized_access_point": "Indre (France)"} 1 +2024-09-10 15:46:55.658946 2024-09-10 15:46:55.658951 e14852fd-bed8-4e4d-a304-03bc76c545be {"md5": "b4835bbc5f5131d4ced69a7099537a6c", "pid": "027341879", "note": [{"label": ["GLU, 1991", "Laval RVM, 1996-08"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Régions polaires"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027341879", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027341879", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15289876g", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040029247", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173636386", "source": "VIAF"}], "variant_access_point": ["Arctique, Océan (région)", "Arctiques, Régions", "Grand Nord", "Régions arctiques", "Terres arctiques"], "authorized_access_point": "Arctique"} 1 +2024-09-10 15:46:55.718674 2024-09-10 15:46:55.71868 ab9977ad-512c-4aa4-a8d8-fdf9393e4545 {"md5": "4038f28cba605ac80f48a6b0bd3edb3e", "pid": "027345483", "note": [{"label": ["GDEL"], "noteType": "dataSource"}, {"label": ["Département français (61)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Basse-Normandie (France)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027345483", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027345483", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11940746x", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/5608148574276124430001", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Orne_(département)", "source": "WIKIPEDIA"}], "variant_access_point": ["Orne"], "authorized_access_point": "Orne (France)"} 1 +2024-09-10 15:46:55.774065 2024-09-10 15:46:55.774071 91cb0c7c-8164-4059-ae9f-86cffb0b8480 {"md5": "7e0328ce0ed3c5d398776e33f425315d", "pid": "027348695", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Jura (massif)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027348695", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027348695", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)04071330X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/980148574339324430007", "source": "VIAF"}], "authorized_access_point": "Jura (France ; massif)"} 1 +2024-09-10 15:46:55.836313 2024-09-10 15:46:55.836316 85b4c5af-2513-45ee-87a7-0e5795459f0b {"md5": "8dd2e30fe79a65491cae284d6a24961f", "pid": "027349004", "note": [{"label": ["Wikipédia : https://fr.wikipedia.org/wiki/Shanxi, 37° 52′ 24″ N, 112° 33′ 52″ E", "GDEL. Atlas Le Monde", "山西森林 /《山西森林》编辑委员会编著,中华人民共和国林业部组织编写, 1992", "Shanxi sen lin / \\"Shanxi sen lin\\" bian ji wei yuan hui bian zhu,Zhonghua Renmin Gongheguo lin ye bu zu zhi bian xie,1992"], "noteType": "dataSource"}, {"label": ["Province du Nord-Est, située à l'ouest des monts Taihang (太行山 pinyin : Tàihangshān) et dont le nom signifie « à l'ouest de la montagne » ; capitale Taiyuan (太原, pinyin : tàiyuán)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Chine (nord)"}, {"authorized_access_point": "Chine - Provinces"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027349004", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027349004", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/172439138", "source": "VIAF"}], "variant_access_point": ["Chan-si", "Shan-hsi", "Shansi", "山西省", "Shanxi Sheng"], "authorized_access_point": "Shanxi (Chine ; province)"} 1 +2024-09-10 15:46:55.904398 2024-09-10 15:46:55.904401 5a15cab4-9386-498d-9bbb-88257a4b0e48 {"md5": "c0f80d1322451a7b87c4178b880dde97", "pid": "027350169", "note": [{"label": ["Navarre française (France) ; Laval RVM suppl., 1989-06"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Pays basque (Pyrénées-Atlantiques)"}, {"authorized_access_point": "Navarre (Royaume)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027350169", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027350169", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11941113j", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/316733006", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Basse-Navarre", "source": "WIKIPEDIA"}], "variant_access_point": ["Basse-Navarre (France)"], "authorized_access_point": "Navarre (France)"} 1 +2024-09-10 15:46:55.961487 2024-09-10 15:46:55.961491 a385f719-46f9-45df-ae31-dea3db7ed50e {"md5": "a4129e2c325e588ddced8b932c85ba0e", "pid": "027350843", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027350843", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027350843", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)04066009", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/313001781", "source": "VIAF"}], "variant_access_point": ["Vindobona (ville ancienne)", "Vienna"], "authorized_access_point": "Vienne (Autriche)"} 1 +2024-09-10 15:46:56.030125 2024-09-10 15:46:56.030129 bc01ab75-091d-4491-b373-2be64df896df {"md5": "080c6e7fe826903c33335992f6bf4a70", "pid": "027350991", "note": [{"label": ["IFLA, Names of states, 1981. SY 2000. GLU"], "noteType": "dataSource"}, {"label": ["La Papouasie-Nouvelle-Guinée, indépendante depuis le 16-09-1975, comprend l'ancienne Nouvelle-Guinée allemande, placée en 1921 sous mandat australien, et la Papouasie, britannique depuis 1884"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Mélanésie"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027350991", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027350991", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11941180p", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040445690", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/151781392", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Papouasie-Nouvelle-Guinée", "source": "WIKIPEDIA"}], "variant_access_point": ["Papua New Guinea"], "authorized_access_point": "Papouasie-Nouvelle-Guinée"} 1 +2024-09-10 15:46:56.089432 2024-09-10 15:46:56.089437 d9b617e9-20b7-4cdf-9831-63b224f4fd1c {"md5": "8535b5750466c539e8c43172097073e0", "pid": "027351076", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Asie centrale"}, {"authorized_access_point": "Pays de la CEI"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Kazakhstan (Sud-Est)"}], "identifier": "http://www.idref.fr/027351076", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027351076", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040298396", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/153440315", "source": "VIAF"}], "variant_access_point": ["Kazakhie", "Kazahstan", "Qazaqstan"], "authorized_access_point": "Kazakhstan"} 1 +2024-09-10 15:46:56.173779 2024-09-10 15:46:56.173783 639e21bf-80d4-42ed-a1b4-e6c1dca58edf {"md5": "d5e41f55bdd8c18f75422ceddeac318c", "pid": "027353990", "note": [{"label": ["Freiburger Münster ; LCNA, 1977-1986"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027353990", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027353990", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119414094", "source": "BNF"}], "relation_pid": {"type": "redirect_from", "value": "11077471X"}, "authorized_access_point": "Fribourg-en-Brisgau (Allemagne) - Münster"} 1 +2024-09-10 15:46:56.240733 2024-09-10 15:46:56.240736 57c54a32-13a8-4755-8330-377b660b5ac7 {"md5": "0933c61d20a8573007fc8c0bd961d2dd", "pid": "027356388", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Italie (sud)"}, {"authorized_access_point": "Méditerranée, Îles de la"}, {"authorized_access_point": "Italie - Régions"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027356388", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027356388", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11941615m", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040516865", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172601866", "source": "VIAF"}], "variant_access_point": ["Sardaigne", "Sardegna (Italie)"], "authorized_access_point": "Sardaigne (Italie)"} 1 +2024-09-10 15:47:42.569263 2024-09-10 15:47:42.569266 63f6343e-755e-4cf3-ab92-83a83cf84459 {"md5": "9fe4fd5f242203b411c8ce1ca0a5937d", "pid": "279478208", "note": [{"label": ["Commune italienne de la région Emilie-Romagne"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279478208", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279478208", "source": "IDREF"}], "authorized_access_point": "Frassinoro (Italie)"} 1 +2024-09-10 15:46:56.301501 2024-09-10 15:46:56.301504 8b9f3da4-793e-41b3-b949-52cd760519d9 {"md5": "55c469c787b153ddc0171245b2e827e6", "pid": "027358100", "note": [{"label": ["GDEL"], "noteType": "dataSource"}, {"label": ["En précision de lieu, employer Fla., par ex. Tallahassee (Fla.)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "États du Golfe (États-Unis)"}, {"authorized_access_point": "États du Sud-Atlantique (États-Unis)"}, {"authorized_access_point": "États-Unis - États"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027358100", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027358100", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040175855", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/157185686", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Floride", "source": "WIKIPEDIA"}], "variant_access_point": ["Florida (États-Unis)"], "authorized_access_point": "Floride (États-Unis)"} 1 +2024-09-10 15:46:56.374144 2024-09-10 15:46:56.374149 1e8e303a-b4bd-439b-a1bf-e08f1d5a807d {"md5": "dbe39253685c78e915da050d923a213c", "pid": "027358232", "note": [{"label": ["GDEL. Atlas Le Monde", "GeoNames (2019-11-28)"], "noteType": "dataSource"}, {"label": ["Le Gansu est une province du nord-ouest de la République populaire de Chine. Longue province étroite, coincée entre le plateau de Mongolie au nord et les contreforts du plateau Tibétain au sud, épousant le tracé principal de l'ancienne route de la soie, le Gansu est habité par environ 26 millions d'habitants (en 2004), dont une minorité importante de Hui. La capitale, Lanzhou, est située dans le sud-est de la province.", "Coordonnées en degrés séxagésimaux : N 37°45′00″ / E 102°45′00″"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Chine (ouest)"}, {"authorized_access_point": "Chine - Provinces"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027358232", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027358232", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/173309143", "source": "VIAF"}], "variant_access_point": ["甘肅省", "Kan-sou (Chine)", "Kansu (Chine)", "甘肃省", "Gansu Sheng"], "authorized_access_point": "Gansu (Chine ; province)"} 1 +2024-09-10 15:46:56.43585 2024-09-10 15:46:56.435853 dff53b78-b91e-449a-b7f5-1dc831d14ad1 {"md5": "7ddefd735ad3a12fb1fa9c204aa48a0d", "pid": "027358305", "note": [{"label": ["IFLA, Names of states, 1981. GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Insulinde"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027358305", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027358305", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)04026761X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/4708148574313724430000", "source": "VIAF"}], "variant_access_point": ["Indes néerlandaises", "Indes orientales", "Indonesia"], "authorized_access_point": "Indonésie"} 1 +2024-09-10 15:46:56.496157 2024-09-10 15:46:56.496162 55eb5778-dc54-4872-a496-8c15b414f73a {"md5": "95bee8b5381f0651fa9f04c2f1701c08", "pid": "027358321", "note": [{"label": ["GDEL"], "noteType": "dataSource"}, {"label": ["Département français (38)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Dauphiné (France)"}, {"authorized_access_point": "Rhône-Alpes (France)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027358321", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027358321", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119417674", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/263181452", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Isère_(rivière)", "source": "WIKIPEDIA"}], "variant_access_point": ["Isère", "Isère - Département"], "authorized_access_point": "Isère (France)"} 1 +2024-09-10 15:46:56.555569 2024-09-10 15:46:56.555573 d59e74ab-d819-4adb-970d-bde526187efc {"md5": "5fffb24bb88c0ea35cd77c15ad53dc32", "pid": "027358399", "note": [{"label": ["Names of states / IFLA, 1981"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Afrique occidentale"}, {"authorized_access_point": "Afrique du Nord"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027358399", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027358399", "source": "IDREF"}, {"type": "uri", "value": "https://catalogue.bnf.fr/ark:/12148/cb119417732", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040380513", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/152430470", "source": "VIAF"}], "variant_access_point": ["Mauritanie (République)", "Mūritanīā"], "authorized_access_point": "Mauritanie"} 1 +2024-09-10 15:46:56.617798 2024-09-10 15:46:56.617802 1a8ef252-8880-475c-af45-56b3b7c25a78 {"md5": "0b564da424c3ebf4a2987d3bf4d30e68", "pid": "027359336", "note": [{"label": ["Grand Larousse universel : Religion (guerres de)", "Robert encyclopédique des noms propres 2008 : Religion (guerres de)", "Dict. encyclopédique d'histoire / M. Mourre, 1996 : Religion (guerres de)", "Les guerres de religion / G. Livet, 2002", "Les guerres de religion / P. Miquel, 1980"], "noteType": "dataSource"}, {"label": ["1er mars 1562 : massacre de Wassy. 13 avril 1598 : édit de Nantes ; 2 mai 1598 : traité de Vervins"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "France - 16e siècle"}], "related": [{"authorized_access_point": "France - 1560-1574 (Charles IX)"}, {"authorized_access_point": "France - 1574-1589 (Henri III)"}, {"authorized_access_point": "France - 1589-1610 (Henri IV)"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "France - 1562-1598 (Guerres de religion) - Opérations militaires"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85051298", "source": "LCSH"}], "authorized_access_point": "France--History--Wars of the Huguenots, 1562-1598"}, {"source": "RVMLaval", "authorized_access_point": "France -- Histoire -- 1562-1598 (Guerres de religion)"}], "identifier": "http://www.idref.fr/027359336", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027359336", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119418453", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)041607686", "source": "GND"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}, {"name": "Histoire de la France (depuis 486)", "type": "bf:ClassificationDdc", "classificationPortion": "944"}], "authorized_access_point": "France - 1562-1598 (Guerres de religion)"} 1 +2024-09-10 15:46:59.85601 2024-09-10 15:46:59.856013 0030cf18-347e-40d7-aba9-eed1932084f5 {"md5": "952658a9c0aec444340350f2d50596a6", "pid": "02744628X", "note": [{"label": ["Dict. communes, 1992. GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/02744628X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02744628X", "source": "IDREF"}, {"type": "uri", "value": "http://ark.bnf.fr/ark:/12148/cb11948590s", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/8409148574328624430005", "source": "VIAF"}], "authorized_access_point": "Haguenau (Bas-Rhin)"} 1 +2024-09-10 15:46:56.68967 2024-09-10 15:46:56.689674 d9e3d495-ca53-4c56-89ff-2e71e0846a44 {"md5": "42e33009acb406d9cbe45aa5c7605d23", "pid": "027360199", "note": [{"label": ["GDEL", "Balkans ; Laval RVM, 1992-02"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Europe du Sud"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Albanie"}, {"authorized_access_point": "Bosnie-Herzégovine"}, {"authorized_access_point": "Bulgarie"}, {"authorized_access_point": "Ex-Yougoslavie"}, {"authorized_access_point": "Grèce"}, {"authorized_access_point": "Macédoine"}, {"authorized_access_point": "Macédoine du Nord (République)"}, {"authorized_access_point": "Mésie"}, {"authorized_access_point": "Monténégro"}, {"authorized_access_point": "Roumanie"}, {"authorized_access_point": "Serbie"}, {"authorized_access_point": "Thrace"}], "identifier": "http://www.idref.fr/027360199", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027360199", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11941903f", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040690997", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/60144648482279885458", "source": "VIAF"}], "variant_access_point": ["Balkanique, Péninsule", "Europe (sud-est)", "Europe du Sud-Est", "Pays balkaniques"], "authorized_access_point": "Balkans"} 1 +2024-09-10 15:46:56.74936 2024-09-10 15:46:56.749364 2bc391bd-1626-4fd1-aa74-274e3c7933ad {"md5": "300693e3987cf8041e16b058aaee86b2", "pid": "027360881", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027360881", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027360881", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12363185d", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040538079", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/248969460", "source": "VIAF"}], "variant_access_point": ["Schwarzwald (Allemagne ; massif)", "Forêt Noire"], "authorized_access_point": "Forêt-Noire (Allemagne ; massif)"} 1 +2024-09-10 15:46:56.808415 2024-09-10 15:46:56.808419 c8e6f182-d407-4582-b07c-8ab450f0bd7a {"md5": "c01f0e40795bc118e7b2275778284b83", "pid": "027366456", "note": [{"label": ["Dict. communes, 1984"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027366456", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027366456", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11942363w", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/141163407", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Ars-sur-Formans", "source": "WIKIPEDIA"}], "authorized_access_point": "Ars-sur-Formans (Ain)"} 1 +2024-09-10 15:46:56.869081 2024-09-10 15:46:56.869085 94583457-818d-4103-88f0-2c65941df4a3 {"md5": "c479073b8f5232cbe2a879c810924010", "pid": "027366936", "note": [{"label": ["Sous cette vedette on trouve les ouvrages qui traitent de l'Inde et des pays voisins : Pakistan, Népal, Bhoutan, Bangladesh, Sri Lanka et Maldives"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Bangladesh"}, {"authorized_access_point": "Bhoutan"}, {"authorized_access_point": "Inde"}, {"authorized_access_point": "Maldives"}, {"authorized_access_point": "Népal"}, {"authorized_access_point": "Pakistan"}, {"authorized_access_point": "Sri Lanka"}], "identifier": "http://www.idref.fr/027366936", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027366936", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119424039", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040584062", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/254470885", "source": "VIAF"}], "variant_access_point": ["Asie (sud)", "Asie méridionale", "Indien, Sous-continent", "Sous continent indien"], "authorized_access_point": "Asie du Sud"} 1 +2024-09-10 15:46:56.92816 2024-09-10 15:46:56.928164 6e498e75-38bd-4d0d-b841-3e979a9b6fdf {"md5": "ac666ad9c00bc9c60972db6645be5fe8", "pid": "02736819X", "note": [{"label": ["Grand Larousse universel", "Robert encyclopédique des noms propres 2008", "Dict. encyclopédique d'histoire / M. Mourre, 1996"], "noteType": "dataSource"}, {"label": ["Le sud de la péninsule italienne (Pouille, Calabre) uni à la Sicile forme le royaume de Sicile en 1130. En 1282 la Sicile devient aragonaise, mais Charles d'Anjou, roi depuis 1266, se maintient dans la partie péninsulaire du royaume, qui devient le royaume de Naples ou de Terre ferme. Royaume de Naples et Sicile sont à nouveau unis sous un même roi en 1442-1458, sous la domination espagnole (1504-1707), autrichienne (1707-1713, 1720-1734), puis sous les Bourbons de Naples (1734-1799, 1799-1806, 1815-1816). Naples et Sicile forment de 1816 à 1861 le royaume des Deux-Siciles", "Sous cette vedette, on trouve les documents sur le royaume de Naples de 1268à 1816, seul ou uni au royaume de Sicile. Les documents sur le sud de la péninsule italienne avant 1268 se trouvent sous Italie (sud). Les documents sur le royaume de Sicile se trouvent sous Sicile (Italie). Les documents sur le royaume unitaire des Deux-Siciles (1816-1861) se trouvent sous Royaume des Deux-Siciles"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCA", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/names/n79063272", "source": "LCA"}], "authorized_access_point": "Naples (Kingdom)"}, {"source": "RVMLaval", "authorized_access_point": "Naples (Royaume)"}], "identifier": "http://www.idref.fr/02736819X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02736819X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11942515k", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040414787", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/9120164963977824300002", "source": "VIAF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "914"}, {"name": "Histoire médiévale, moderne et contemporaine (sauf la France)", "type": "bf:ClassificationDdc", "classificationPortion": "940"}], "variant_access_point": ["Napoli, Regno di", "Regno di Napoli", "Royaume de Naples", "Royaume de Terre ferme", "Terre ferme, Royaume de"], "authorized_access_point": "Naples (Italie ; Royaume)"} 1 +2024-09-10 15:46:56.991627 2024-09-10 15:46:56.99163 a01ab7af-10a0-4518-9117-c74e162a969b {"md5": "a76f61150f31a815019a003fc5bc4bbb", "pid": "027368343", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Lyon (Rhône ; région)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027368343", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027368343", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/173364079", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Lyon", "source": "WIKIPEDIA"}], "relation_pid": {"type": "redirect_from", "value": "184304202"}, "variant_access_point": ["Lyon, Aire métropolitaine"], "authorized_access_point": "Lyon (Rhône ; agglomération)"} 1 +2024-09-10 15:46:57.110125 2024-09-10 15:46:57.110131 0c638d5c-b1b4-424f-a887-5e40189c1175 {"md5": "d2917c48b0b57e3d0d3684e51b22928e", "pid": "027370763", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Fustat (Égypte ; ville ancienne)"}], "identifier": "http://www.idref.fr/027370763", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027370763", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040292363", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/125715126", "source": "VIAF"}], "variant_access_point": ["Caire, Le (Égypte)", "Cairo", "(القاهرة (مصر", "Al-Qāhiraẗ (Miṣr)"], "authorized_access_point": "Le Caire (Égypte)"} 1 +2024-09-10 15:46:57.189153 2024-09-10 15:46:57.189158 ca5b569b-e7a2-4568-bdaa-c7903b245a48 {"md5": "0116b45a4d2e7ce42e99267fa5afede6", "pid": "027372618", "note": [{"label": ["GLU. Atlas Le Monde"], "noteType": "dataSource"}, {"label": ["Rio Solimões est le nom portugais de l'Amazone en amont de Manaus"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027372618", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027372618", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040016269", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173309158", "source": "VIAF"}], "variant_access_point": ["Amazonas, Río", "Solimões, Rio"], "authorized_access_point": "Amazone (cours d'eau)"} 1 +2024-09-10 15:46:57.270683 2024-09-10 15:46:57.270688 2c94420a-67e7-4042-b4b3-06401c92d2ef {"md5": "ae4648147c244f19605a0f8be55c9875", "pid": "027374750", "note": [{"label": ["Laval RVM, 1992-02"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les ouvrages qui traitent de la partie de l'Afrique située au sud du Zai͏̈re et de la Tanzanie. Les ouvrages sur la République d'Afrique du Sud se trouvent sous la vedette Afrique du Sud"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Afrique du Sud"}, {"authorized_access_point": "Angola"}, {"authorized_access_point": "Botswana"}, {"authorized_access_point": "Lesotho"}, {"authorized_access_point": "Malawi"}, {"authorized_access_point": "Mozambique"}, {"authorized_access_point": "Namibie"}, {"authorized_access_point": "Swaziland"}, {"authorized_access_point": "Zambie"}, {"authorized_access_point": "Zimbabwe"}], "identifier": "http://www.idref.fr/027374750", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027374750", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb162726316", "source": "BNF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11943016s", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040583937", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/152394654", "source": "VIAF"}], "variant_access_point": ["Afrique (sud)", "Afrique méridionale"], "authorized_access_point": "Afrique australe"} 1 +2024-09-10 15:46:57.334741 2024-09-10 15:46:57.334745 8de1d9f5-72f1-423a-a329-ada5cadb97a6 {"md5": "f45348df1b61a0d3c1dce95db5d298fe", "pid": "027374831", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "related": [{"authorized_access_point": "Combe d'Ain, Bassin de la (France)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027374831", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027374831", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11943022q", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/8281148574369624430004", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Ain_(rivière)", "source": "WIKIPEDIA"}], "authorized_access_point": "Ain (France ; cours d'eau)"} 1 +2024-09-10 15:46:57.395254 2024-09-10 15:46:57.395257 79639c02-673b-454b-a905-dad190577f03 {"md5": "a3c63d90a39224a522b0f8a9042411f2", "pid": "027375080", "note": [{"label": ["Laval RVM, 1991-02"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Amérique"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027375080", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027375080", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15238498d", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040794865", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/170225739", "source": "VIAF"}], "variant_access_point": ["Amérique (centre)", "Guatemala (Royaume)"], "authorized_access_point": "Amérique centrale"} 1 +2024-09-10 15:46:57.468727 2024-09-10 15:46:57.46873 94376246-07d4-4de5-bc64-d99240da4f8b {"md5": "239366508f05075f191e49e6bd5fa502", "pid": "027375099", "note": [{"label": ["Laval RVM, 1994-08"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Amérique"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027375099", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027375099", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040780147", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/577145424560886831330", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Amérique_du_Sud", "source": "WIKIPEDIA"}], "variant_access_point": ["Amérique (sud)"], "authorized_access_point": "Amérique du Sud"} 1 +2024-09-10 15:46:57.530364 2024-09-10 15:46:57.530368 735d4cbc-ff1e-4679-a3c3-f117b2aa7ddf {"md5": "ff33b0f0bccf812e9e97b2b6a97d1fd9", "pid": "027375188", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027375188", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027375188", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119430472", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040017834", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/152912999", "source": "VIAF"}, {"type": "bf:Nbn", "value": "i205236", "source": "GEOVISTORY"}], "relation_pid": {"type": "redirect_from", "value": "253217083"}, "authorized_access_point": "Amsterdam (Pays-Bas)"} 1 +2024-09-10 15:47:05.095157 2024-09-10 15:47:05.095162 12fda13b-236f-4369-8492-cc6681fe276a {"md5": "7c0ec46a82f23143482aa8314070dd2f", "pid": "027853128", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027853128", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027853128", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040676110", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173364430", "source": "VIAF"}], "variant_access_point": ["Alpes centrales"], "authorized_access_point": "Alpes (centre)"} 1 +2024-09-10 15:46:57.591827 2024-09-10 15:46:57.591831 12f11eb0-7ffe-46de-8002-cd3c9d3ff95c {"md5": "ffed70073f629aad7a66ff5f1ee7b4b6", "pid": "027375412", "note": [{"label": ["GLU. Laval RVM, 1993-02"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent de l'archipel qui sépare l'Atlantique de la mer des Antilles et qui comprend les Bahamas, les Grandes et les Petites Antilles"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Région caraïbe"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027375412", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027375412", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119430639", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040022935", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/155553957", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Antilles", "source": "WIKIPEDIA"}], "variant_access_point": ["Antillas", "Antillen", "Caraïbes (îles)", "Indes occidentales", "West Indies"], "authorized_access_point": "Antilles"} 1 +2024-09-10 15:46:57.648709 2024-09-10 15:46:57.648713 5139a256-01c2-4efe-998c-390a83192f36 {"md5": "2d4b71d160dfc1c1517c46b68938edaa", "pid": "027375463", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027375463", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027375463", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040023648", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/135575206", "source": "VIAF"}], "variant_access_point": ["Antwerpen (Belgique)"], "authorized_access_point": "Anvers (Belgique)"} 1 +2024-09-10 15:46:57.702275 2024-09-10 15:46:57.702278 e2adf8d2-69f5-4952-a62e-44b85a4991f6 {"md5": "57c598ab3da0070d1f06c61808a776a4", "pid": "02737601X", "note": [{"label": ["GDEL. LCSH, 1989-03"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/02737601X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02737601X", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040041018", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172711277", "source": "VIAF"}], "authorized_access_point": "Babylone (Iraq ; ville ancienne)"} 1 +2024-09-10 15:46:57.762214 2024-09-10 15:46:57.762218 6ece2e9a-3703-4013-bb55-b9b1a32a1974 {"md5": "d24194be366d118646191ac61d9e7f47", "pid": "027377067", "note": [{"label": ["IFLA, Names of states, 1981. GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Amazonie (Bolivie)"}, {"authorized_access_point": "Beni (Bolivie)"}, {"authorized_access_point": "Cochabamba (Bolivie ; département)"}, {"authorized_access_point": "La Paz (Bolivie ; département)"}, {"authorized_access_point": "Potosí (Bolivie ; département)"}, {"authorized_access_point": "Santa Cruz (Bolivie ; département)"}, {"authorized_access_point": "Chuquisaca (Bolivie ; département)"}, {"authorized_access_point": "Moxos (Bolivie)"}, {"authorized_access_point": "Oriente (Bolivie)"}], "identifier": "http://www.idref.fr/027377067", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027377067", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040076075", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/130756130", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Bolivie", "source": "WIKIPEDIA"}], "variant_access_point": ["Alto Perú", "Bolivia", "Haut-Pérou", "Pérou, Haut-"], "authorized_access_point": "Bolivie"} 1 +2024-09-10 15:46:57.824405 2024-09-10 15:46:57.824408 af786719-20ac-4374-b02e-50e507d0bad0 {"md5": "3598178b30bbe776a55d716b14796c5f", "pid": "027377660", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Italie (sud)"}, {"authorized_access_point": "Italie - Régions"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027377660", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027377660", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb121177322", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040292789", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/155870508", "source": "VIAF"}], "variant_access_point": ["Bruttium", "Calabria (Italie)"], "authorized_access_point": "Calabre (Italie)"} 1 +2024-09-10 15:46:57.881946 2024-09-10 15:46:57.88195 6812e62a-a15d-4238-b89b-229be0c6859c {"md5": "295e3b61e43ab3be2f7557b99b49dc29", "pid": "027377768", "note": [{"label": ["Names of states / IFLA, 1981. GDEL. SY, 1986/1987"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent du territoire qui fut placé sous protectorat allemand, puis sous mandats français et britannique, et qui constitue aujourd'hui la République du Cameroun"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Afrique centrale"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027377768", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027377768", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040294137", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/147664051", "source": "VIAF"}], "variant_access_point": ["Cameroon", "Kamerun"], "authorized_access_point": "Cameroun"} 1 +2024-09-10 15:46:57.946591 2024-09-10 15:46:57.946598 da54746d-3ae1-4d47-bf49-f4a3fffeaf70 {"md5": "d799b84e562b1f1b71099460b548dcb3", "pid": "027379647", "note": [{"label": ["Names of states / IFLA, 1981. Pays et capitales du monde / IGN, 1985. Laval RVM, 1983"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Haïti (île)"}, {"authorized_access_point": "Antilles hispaniques"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027379647", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027379647", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13162779p", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040126943", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/849148574256524430004", "source": "VIAF"}], "variant_access_point": ["Dominicaine (République)", "República Dominicana"], "authorized_access_point": "République dominicaine"} 1 +2024-09-10 15:46:58.0183 2024-09-10 15:46:58.018304 f603056f-ecd9-43db-ad12-61d6c481a257 {"md5": "642bd20681c4b8ab3fe76077b824761a", "pid": "027381323", "note": [{"label": ["GLU, 1991", "Pays de Galles ; Laval RVM, 1997-02"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Grande-Bretagne"}, {"authorized_access_point": "Pays celtiques"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027381323", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027381323", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11943541c", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040644359", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/12144647638200048242", "source": "VIAF"}], "variant_access_point": ["Cambria", "Cambrie", "Cymru (GB)", "Galles, Pays de (GB)", "Wales (GB)"], "authorized_access_point": "Pays de Galles (GB)"} 1 +2024-09-10 15:46:58.083312 2024-09-10 15:46:58.083317 3fe02772-c036-4af2-8c89-17a3ad1ba833 {"md5": "9e0f059c38859e00faa3c9e5d4d7f363", "pid": "027400212", "note": [{"label": ["Malaisie ; IFLA, Names of states, 1981 ; Pays et capitales du monde / IGN, 1986 ; BN ACO. Malaysia ; GLU ; Laval RVM, 1995-02 ; Atlas Le Monde"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent de la Fédération de Malaisie (ou Malaysia), comprenant depuis 1963 la Malaisie péninsulaire, Sabah et Sarawak (et Singapour de 1963 à 1965). Les ouvrages qui traitent de la Malaisie péninsulaire, avant ou depuis 1963, se trouvent sous la vedette Malaisie occidentale"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Malaisie occidentale"}, {"authorized_access_point": "Malaisie orientale"}], "identifier": "http://www.idref.fr/027400212", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027400212", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11945050f", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040372030", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/145332698", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Malaisie", "source": "WIKIPEDIA"}], "variant_access_point": ["Malaysia"], "authorized_access_point": "Malaisie"} 1 +2024-09-10 15:46:58.142364 2024-09-10 15:46:58.142367 86bd1321-46f3-4084-a146-9f33eb628c15 {"md5": "4f46da08803b646737e13f28c4721c38", "pid": "027402193", "note": [{"label": ["Names of states / IFLA, 1981"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Afrique orientale anglophone"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027402193", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027402193", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040614573", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/134866435", "source": "VIAF"}], "variant_access_point": ["Uganda"], "authorized_access_point": "Ouganda"} 1 +2024-09-10 15:46:58.203804 2024-09-10 15:46:58.203808 49b786ba-4bc6-4cc8-8de0-9d73444d0cd7 {"md5": "6398204215397ce7c81da045e5c68bf7", "pid": "027405478", "note": [{"label": ["GDEL. Laval RVM, 1991-08"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Persique, Golfe"}, {"authorized_access_point": "Oman, Mer d'"}], "identifier": "http://www.idref.fr/027405478", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027405478", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040267377", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/145299573", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Océan_Indien", "source": "WIKIPEDIA"}], "variant_access_point": ["Érythrée, Mer", "Indes, Mer des", "Indicus, Oceanus", "Océan Indien"], "authorized_access_point": "Indien, Océan"} 1 +2024-09-10 15:46:58.266418 2024-09-10 15:46:58.266423 4499b3db-49a1-4bf9-b7a3-75dd4572c368 {"md5": "2a7ae383a711d21a5ecefaa547fa0df1", "pid": "027405621", "note": [{"label": ["Names of states / IFLA, 1981"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Atlantique, Îles de l'"}, {"authorized_access_point": "Scandinavie"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027405621", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027405621", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040277542", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/2599148574346024430006", "source": "VIAF"}], "variant_access_point": ["Ísland"], "authorized_access_point": "Islande"} 1 +2024-09-10 15:46:58.359367 2024-09-10 15:46:58.359371 64e45e1f-f3b6-44e7-8fb2-92d0310ab80b {"md5": "d0b2e4828163dffc551ef46ed3f6d2e1", "pid": "027405753", "note": [{"label": ["Names of states / IFLA, 1981"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Grandes Antilles"}, {"authorized_access_point": "Antilles anglophones"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027405753", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027405753", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040284565", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/398148574254724430000", "source": "VIAF"}], "variant_access_point": ["Jamaica"], "authorized_access_point": "Jamaïque"} 1 +2024-09-10 15:46:58.427148 2024-09-10 15:46:58.427152 451eaf07-f0ee-419a-9388-aebd38fb9b1c {"md5": "b2a55bc3653d9060ab51876e2d0f4632", "pid": "027406415", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Pays basque (Pyrénées-Atlantiques)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027406415", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027406415", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/130274539", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Labourd", "source": "WIKIPEDIA"}], "authorized_access_point": "Labourd (France)"} 1 +2024-09-10 15:46:58.499285 2024-09-10 15:46:58.499289 0d9d14f3-8de9-4d07-b069-28858075d3d4 {"md5": "aff9cdf5b59a71d15aa1b24728c32b21", "pid": "027406733", "note": [{"label": ["GLU. Laval RVM, 1994-08"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Pays baltes"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027406733", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027406733", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040741877", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/4704148574272524430009", "source": "VIAF"}], "variant_access_point": ["Latvija"], "authorized_access_point": "Lettonie"} 1 +2024-09-10 15:46:58.558251 2024-09-10 15:46:58.558255 de19c3d1-895e-4de3-b23b-1557b798c506 {"md5": "5b7ddb04767f992b5486849a78933eae", "pid": "027407012", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027407012", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027407012", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11864772p", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040367339", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040367339", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/140255133", "source": "VIAF"}], "variant_access_point": ["Luzern (Suisse)"], "authorized_access_point": "Lucerne (Suisse)"} 1 +2024-09-10 15:46:58.617484 2024-09-10 15:46:58.617488 679e7ec5-8511-490e-9a74-a725530e24a8 {"md5": "d8f176cd00c880c065a920a201ff4fbb", "pid": "027407632", "note": [{"label": ["Grand Larousse universel", "Encycl. universalis - http://www.universalis-edu.com (2014-03-13)", "Dict. encyclopédique d'histoire / M. Mourre, 1996", "La Commune de 1871 / J. Rougerie, 1992", "Dict. de la Commune / B. Noël, 1971"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les documents sur la Commune de Paris de 1871. Les documents dont la Commune est l'auteur se trouvent sous Commune de Paris (1871)", "18 mars-28 mai 1871 : gouvernement insurrectionnel de la Commune à Paris, écrasé par le gouvernement d'Adolphe Thiers siégeant à Versailles"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "France - 1871-1873 (A. Thiers)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027407632", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027407632", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119456147", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040446689", "source": "GND"}], "classification": [{"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Histoire de la France", "type": "bf:ClassificationDdc", "classificationPortion": "944"}], "variant_access_point": ["France - 1871 (Commune)"], "authorized_access_point": "Paris (France) - 1871 (Commune)"} 1 +2024-09-10 15:46:58.685664 2024-09-10 15:46:58.685668 6130c6ee-3f5d-44f1-995d-a57ebf1d1414 {"md5": "8d22cf32b8f4b3106441462deb75e53a", "pid": "027408310", "note": [{"label": ["Laval RVM, 1983"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Antarctique"}, {"authorized_access_point": "Régions polaires"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027408310", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027408310", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11945666g", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)955497434", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173709059", "source": "VIAF"}], "authorized_access_point": "Pôle Sud"} 1 +2024-09-10 15:46:58.747641 2024-09-10 15:46:58.747645 bef9b307-060e-4e02-acd5-062243a71ba9 {"md5": "62db27f069d5d315f4f335cdce3b1c36", "pid": "027408450", "note": [{"label": ["GLU. BN ACO (2 vedettes). Laval RVM, 1994-08"], "noteType": "dataSource"}, {"label": ["Emploi direct en subdivision : [sujet] -- Polynésie française", "Territoire d'outre-mer français, comprenant 5 circonscriptions administratives (Îles Australes, îles-du-Vent, Îles-Sous-le-Vent, Marquises, Tuamotu) ; Clipperton y est officiellement rattaché. De 1885 à 1957 : Établissements français de l'Océanie"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Polynésie"}, {"authorized_access_point": "France - Collectivités d'outre-mer"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027408450", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027408450", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)04018191X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/148353190", "source": "VIAF"}], "variant_access_point": ["Établissements français de l'Océanie", "Océanie française"], "authorized_access_point": "Polynésie française"} 1 +2024-09-10 15:46:58.810436 2024-09-10 15:46:58.81044 3a5a1245-639e-4acc-b45e-a506862e5733 {"md5": "5a0946be08cf0ba67c09811fb05d9056", "pid": "027409317", "note": [{"label": ["Venezuela ; BN Cartes et plans ; BN ACO ; Pays et capitales du monde / IGN, 1986 ; Laval RVM, 1995-02 ; Manuel de l'Unesco, 1985 ; GLU ; Encycl. universalis ; Atlas Le Monde"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Amazonie (Venezuela)"}], "identifier": "http://www.idref.fr/027409317", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027409317", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119457375", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/1897158188178220260005", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Venezuela", "source": "WIKIPEDIA"}], "authorized_access_point": "Venezuela"} 1 +2024-09-10 15:46:58.874246 2024-09-10 15:46:58.87425 ccf1b262-bd49-4ae0-b06a-b5e6e5af54f7 {"md5": "0a50639a07d2d6dffa3c177e71664aaf", "pid": "027418499", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027418499", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027418499", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)04066337X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/676148574297124430002", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Winterthour", "source": "WIKIPEDIA"}], "variant_access_point": ["Winterthur (Suisse)", "Vitudurum (ville ancienne)"], "authorized_access_point": "Winterthour (Suisse)"} 1 +2024-09-10 15:46:58.934059 2024-09-10 15:46:58.934066 668d78f4-9517-4766-83e0-184e8a815c23 {"md5": "f85358eb39c4bbaf60800ddf66040f92", "pid": "027427374", "note": [{"label": ["Dict. communes, 1971"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027427374", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027427374", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/152886958", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Beaufort_(Savoie)", "source": "WIKIPEDIA"}], "variant_access_point": ["Beaufort-sur-Doron (Savoie)"], "authorized_access_point": "Beaufort (Savoie)"} 1 +2024-09-10 15:46:58.993465 2024-09-10 15:46:58.993471 9b7fc3ff-7b1c-492b-bc33-73016617fb40 {"md5": "0ea9274dc223fa88b9c239b38c2b4b21", "pid": "027428095", "note": [{"label": ["GLU. Laval RVM, 1994-02"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Atlantique (océan ; nord)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027428095", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027428095", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11947172h", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040296679", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/1967148574385124430009", "source": "VIAF"}], "variant_access_point": ["Caraïbe, Mer", "Caraïbes, Mer des"], "authorized_access_point": "Antilles, Mer des"} 1 +2024-09-10 15:46:59.055851 2024-09-10 15:46:59.055854 049eee9e-da88-42e2-a8f1-628332a5f5ce {"md5": "e02280189fec02cb019190bd88a55153", "pid": "027428672", "note": [{"label": ["Grand Larousse universel", "Robert encyclopédique des noms propres, 2008", "Dict. de géographie historique de la Gaule et de la France / J. Moreau, 1972", "Dict. encyclopédique d'histoire / M. Mourre, 1996", "Trésor des régions de France - http://tresordesregions.mgm.fr (2008-12-19)", "Robert encyclopédique des noms propres, 2008"], "noteType": "dataSource"}, {"label": ["Comté qui appartint à la Papauté (1274-1790), couvrant l'actuel Vaucluse (sauf la partie sud-orientale de celui-ci). Capitale : Carpentras"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Vaucluse (France)"}], "related": [{"authorized_access_point": "Mur de la peste (France)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027428672", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027428672", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119472180", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/133732676", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Comtat_Venaissin", "source": "WIKIPEDIA"}], "classification": [{"name": "Géographie de la France", "type": "bf:ClassificationDdc", "classificationPortion": "912"}], "variant_access_point": ["Comtat Venaissin", "Comtat-Venaissin", "Venaissin (comtat)", "Comtat (Vaucluse)", "Coumtat (Vaucluse)", "Venaissin, Comtat (Vaucluse)"], "authorized_access_point": "Comtat Venaissin (Vaucluse)"} 1 +2024-09-10 15:46:59.114583 2024-09-10 15:46:59.114588 ffd7e028-2950-4ede-a0cf-ef17429fc99b {"md5": "877b3c46c4e3ccf8a06c1d8481ed2d79", "pid": "027429393", "note": [{"label": ["GLU. Berthelot (Ehstonie ou Esthonie)", "Laval RVM, 1994-08"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Pays baltes"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027429393", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027429393", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040155870", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/2916148574347324430000", "source": "VIAF"}], "variant_access_point": ["Eesti", "Ehstonie", "Esthonie"], "authorized_access_point": "Estonie"} 1 +2024-09-10 15:46:59.180007 2024-09-10 15:46:59.180011 a49a2390-4246-4f75-80b0-54a032fe7ff3 {"md5": "c1ed917ae263868572f954376df019f2", "pid": "027434125", "note": [{"label": ["GDEL. Jura Mountains (France and Switzerland) ; LCSH, 1989-09. Jura ; Laval RVM, 1989-06"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Jura (France ; massif)"}, {"authorized_access_point": "Jura (Suisse ; massif)"}], "identifier": "http://www.idref.fr/027434125", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027434125", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119476392", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040731294", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/198144782989882286451", "source": "VIAF"}], "variant_access_point": ["Jura", "Jura (chaîne)"], "authorized_access_point": "Jura (massif)"} 1 +2024-09-10 15:46:59.240612 2024-09-10 15:46:59.240616 e51968da-d040-4748-a71b-72772506132d {"md5": "79998087f8a11ca93fc5f508c7b281b1", "pid": "027434648", "note": [{"label": ["GLU. Laval RVM, 1994-08"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Pays baltes"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027434648", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027434648", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11947680h", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040742660", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/888148574256624430002", "source": "VIAF"}], "variant_access_point": ["Lietuva", "Lithuanie"], "authorized_access_point": "Lituanie"} 1 +2024-09-10 15:46:59.303921 2024-09-10 15:46:59.303924 4870863b-d724-4696-99fb-4508a33be10b {"md5": "59b5758965dd6641788fc5a53479fe7c", "pid": "027436810", "note": [{"label": ["Names of states / IFLA, 1981"], "noteType": "dataSource"}, {"label": ["Vedette commune à la ville et à l'État"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027436810", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027436810", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040550893", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/15145376341283720567", "source": "VIAF"}], "variant_access_point": ["Singapore", "Singapura"], "authorized_access_point": "Singapour"} 1 +2024-09-10 15:46:59.365491 2024-09-10 15:46:59.365496 a8f3a74b-1b98-4c2e-a224-82e38f8dcde6 {"md5": "3b015b938916bd4ff4ed15023376fc15", "pid": "027436837", "note": [{"label": ["GLU. Le Monde, 1-1-1993", "SY, 1987-88, 1993-94"], "noteType": "dataSource"}, {"label": ["République fédérée de Tchécoslovaquie de 1968 à 1992, Etat indépendant depuis le 1er janvier 1993 ; capitale Bratislava"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Europe centrale"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027436837", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027436837", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11947852t", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040552977", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/154427228", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Slovaquie", "source": "WIKIPEDIA"}], "relation_pid": {"type": "redirect_from", "value": "066869196"}, "variant_access_point": ["République socialiste slovaque", "Slovensko", "Szlovákia", "République slovaque", "Slovenská Republika"], "authorized_access_point": "Slovaquie"} 1 +2024-09-10 15:46:59.435664 2024-09-10 15:46:59.435667 0d478178-cfd2-4dde-b36e-f4e61ab330b3 {"md5": "77dbaaf2d3d94c011f0d86627c3b2b8e", "pid": "027439658", "note": [{"label": ["GLU"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Pays de la CEI"}, {"authorized_access_point": "Transcaucasie"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027439658", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027439658", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb116643727", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040224066", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/316601102", "source": "VIAF"}], "variant_access_point": ["Géorgie (République)", "Géorgie (Transcaucasie)", "Grouzia", "Sakartvélo", "Gruzja", "Грузия", "Gruziâ", "Грузинская Советская Социалистическая Республика", "Gruzinskaâ Sovetskaâ Socialističeskaâ Respublika", "Грузинская ССР", "Gruzinskaâ SSR"], "authorized_access_point": "Géorgie"} 1 +2024-09-10 15:46:59.534301 2024-09-10 15:46:59.534306 6229ba19-48aa-411c-8bb3-4f399b734cd6 {"md5": "388c80fa7229f04a8883159e39e95556", "pid": "027442128", "note": [{"label": ["IFLA, Names of states, 1981. Pays et capitales du monde / IGN, 1986. Laval RVM, 1995-02"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent du territoire du Rwanda, avant ou depuis son indépendance en 1962. Les ouvrages sur le Ruanda-Urundi, qui comprenait à l'époque coloniale le territoire des actuels Rwanda et Burundi, se trouvent sous la vedette Ruanda-Urundi"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Afrique centrale"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027442128", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027442128", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040769100", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/3125148574307124430008", "source": "VIAF"}], "variant_access_point": ["Ruanda"], "authorized_access_point": "Rwanda"} 1 +2024-09-10 15:46:59.599288 2024-09-10 15:46:59.599292 bceceb37-75ac-429f-8439-d5de662f2e96 {"md5": "f3b15aa4d9dc848b97a053be2eb2d477", "pid": "027442381", "note": [{"label": ["IFLA, Names of states, 1981. SY, 1990/19991"], "noteType": "dataSource"}, {"label": ["Protectorat allemand en 1891, territoire sous mandat britannique en 1920, État indépendant le 09-12-1961, le Tanganyika s'unit à Zanzibar et Pemba le 26-4-1964 pour former la République unie du Tanganyika et de Zanzibar qui prend le nom de Tanzanie le 29-10-1964. Capitale Dodoma"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Afrique orientale anglophone"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027442381", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027442381", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11948282b", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040781496", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/1972148574302324430007", "source": "VIAF"}], "variant_access_point": ["République-Unie de Tanzanie", "Tanganyika", "Tanzania", "Tanzanie continentale"], "authorized_access_point": "Tanzanie"} 1 +2024-09-10 15:46:59.661513 2024-09-10 15:46:59.661517 eaa3dbd6-ea34-4fde-975b-719e422153b9 {"md5": "ddfc8b2a4998a523dbbe68a746b9bfb0", "pid": "027442454", "note": [{"label": ["IFLA, Names of states, 1981"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Afrique centrale"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027442454", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027442454", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040610748", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/2941148574389024430003", "source": "VIAF"}], "authorized_access_point": "Tchad"} 1 +2024-09-10 15:46:59.734888 2024-09-10 15:46:59.734891 d7696b12-1d20-4efb-8630-7a8c324305fd {"md5": "dbc4fc88fc4e4254cadefad512cd1093", "pid": "027442462", "note": [{"label": ["IFLA, Names of states, 1981. Monde, 1-1-1993. Laval RVM, 1995-02"], "noteType": "dataSource"}, {"label": ["Fondée le 14 novembre 1918, la Tchécoslovaquie se scinde le 1er janvier 1993 en République tchèque et Slovaquie"], "noteType": "general"}, {"label": ["Voir aussi la subdivision Et la Tchécoslovaquie aux personnes et collectivités"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027442462", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027442462", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11948289r", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040784355", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173418642", "source": "VIAF"}], "variant_access_point": ["Československo"], "authorized_access_point": "Tchécoslovaquie"} 1 +2024-09-10 15:46:59.794965 2024-09-10 15:46:59.794969 c32f5f33-9876-4038-aa2c-eca333b114df {"md5": "e971545eccdfecc5648af5d4a6a6fd6c", "pid": "027443876", "note": [{"label": ["GLU. Brockhaus, 19. Aufl.", "Laval RVM, 2000-01. Bayern ; GKD, 1994-05. SWD, 1995-04"], "noteType": "dataSource"}, {"label": ["Duché puis électorat (1623), royaume (1806), et l'un des dix cercles du Saint Empire. L'État libre de Bavière (capitale : Munich) comprend 7 Regierungsbezirke"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Allemagne - Länder"}, {"authorized_access_point": "Allemagne (sud)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027443876", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027443876", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040050440", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/125426357", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Bavière", "source": "WIKIPEDIA"}], "variant_access_point": ["Bavaria", "Bavière", "Bavière (Duché)", "Bavière (Électorat)", "Bavière (Royaume)", "Bayerischer Kreis (Saint Empire romain germanique)", "Bayern (Allemagne)", "Freistaat Bayern", "Bayerischer Reichskreis"], "authorized_access_point": "Bavière (Allemagne)"} 1 +2024-09-10 15:47:31.297414 2024-09-10 15:47:31.297419 05edb895-1c38-4ea1-86fd-1cedfd63f07c {"md5": "593cae1125c3e00cbf28441e83c19ca7", "pid": "279135777", "note": [{"label": ["http://www.geonames.org/, 2024-07-01"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Sangamon"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279135777", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279135777", "source": "IDREF"}], "authorized_access_point": "Buckhart (Ill.)"} 1 +2024-09-10 15:46:59.912937 2024-09-10 15:46:59.912941 13ce8a37-d7b8-4bf4-81de-eb2ea9d09e5c {"md5": "e57531b7bcc236787fd3ae4705be90be", "pid": "027448177", "note": [{"label": ["Grand Larousse universel", "Robert encyclopédique des noms propres 2008", "Wikipédia - http://fr.wikipedia.org (2011-10-19)", "Encycl. universalis - http://www.universalis.fr (2011-10-19)", "Versailles : château de la France et orgueil des rois / C. Constans, 1989", "Château de Versailles - http://www.chateauversailles.fr (2011-10-19)"], "noteType": "dataSource"}, {"label": ["Château construit pour Louis XIII, puis agrandi à partir de 1661 par Louis Le Vau puis Jules-Hardouin Mansart. Le roi et la cour y résidèrent de 1682 à 1789"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "related": [{"authorized_access_point": "France - Journées des 5 et 6 octobre 1789"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Versailles (Yvelines) - Château - Aile du Midi"}, {"authorized_access_point": "Versailles (Yvelines) - Château - Aile du Nord"}, {"authorized_access_point": "Versailles (Yvelines) - Château - Ailes des Ministres"}, {"authorized_access_point": "Versailles (Yvelines) - Château - Corps central"}, {"authorized_access_point": "Versailles (Yvelines) - Château - Écuries royales"}, {"authorized_access_point": "Versailles (Yvelines) - Château - Galerie des Glaces"}, {"authorized_access_point": "Versailles (Yvelines) - Château - Réservoirs"}, {"authorized_access_point": "Versailles (Yvelines) - Château - Salle du Conseil privé"}, {"authorized_access_point": "Versailles (Yvelines) - Château - Salon de Mercure"}], "identifier": "http://www.idref.fr/027448177", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027448177", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119487267", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)041944313", "source": "GND"}], "classification": [{"name": "Architecture", "type": "bf:ClassificationDdc", "classificationPortion": "720"}, {"name": "Géographie de la France", "type": "bf:ClassificationDdc", "classificationPortion": "912"}], "variant_access_point": ["Château de Versailles (Versailles, Yvelines)"], "authorized_access_point": "Versailles (Yvelines) - Château"} 1 +2024-09-10 15:46:59.973304 2024-09-10 15:46:59.973308 e9361223-3c73-4cf4-9ee8-6b554db16e69 {"md5": "aba7a79a200fe2da5fb91e78086af08d", "pid": "02745228X", "note": [{"label": ["GLU. Laval RVM, 1995-02"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Méditerranée (mer ; est)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/02745228X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02745228X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11949030s", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040684253", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/255146259", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Mer_Égée", "source": "WIKIPEDIA"}], "variant_access_point": ["Aigaion Pelagos", "Aiyaion Pelagos", "Ege Denizi"], "authorized_access_point": "Égée, Mer"} 1 +2024-09-10 15:47:00.041309 2024-09-10 15:47:00.041314 153c8272-cfca-400e-894a-5a99a8170b10 {"md5": "8d441cc3c2aa2c2d8a45d8e16d14c50a", "pid": "027452816", "note": [{"label": ["GLU"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027452816", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027452816", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11949068g", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040497399", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/259663544", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Rhin", "source": "WIKIPEDIA"}], "variant_access_point": ["Rhein (cours d'eau)", "Rhenus (cours d'eau)", "Rhin", "Rijn (cours d'eau)"], "authorized_access_point": "Rhin (cours d'eau)"} 1 +2024-09-10 15:47:00.102745 2024-09-10 15:47:00.102749 a11fc133-28a4-4435-b68e-95cbae109455 {"md5": "e104ae04968b9a160410996295bf4b05", "pid": "027463613", "note": [{"label": ["Taiwan ; LCSH, 1987-09 et LCSCM : H 925 ; Laval RVM suppl., 1987-09 ; Pays et capitales du Monde / IGN, 1986 ; GDEL ; Encycl. universalis, t.17 p.650 ; Atlas Le Monde ; BN Cartes et plans. Chine (République) ; BN ACO ; China (Republic, 1949- ) ; LCNA, 1985"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent de l'île de Taiwan et/ou de la République de Chine ; en précision géographique, employer la forme (Taiwan), par ex. Gaoxiong (Taiwan). Les ouvrages sur les organismes administratifs centraux de la République et du Gouvernement provincial se trouvent respectivement sous les vedettes Chine (République) et Taiwan (Province) suivies de la sous-vedette appropriée, par ex. Chine (République). Overseas Chinese Affairs Commission ; Taiwan (Province). Department of Information"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Asie orientale"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027463613", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027463613", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/207148632961830630000", "source": "VIAF"}], "variant_access_point": ["Chine (République)", "Chine nationaliste", "Formose", "T'aiwan", "台湾", "台灣", "臺灣", "Taiwan"], "authorized_access_point": "Taïwan"} 1 +2024-09-10 15:47:00.167839 2024-09-10 15:47:00.167847 14b83a20-6e97-4bc3-ac85-f5436763f21a {"md5": "79e7eb61e64f6fc222d94dbcf581caa5", "pid": "027464180", "note": [{"label": ["GDEL"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les ouvrages qui traitent de l'ancienne province et/ou de l'actuelle région d'Île-de-France"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "France (centre)"}, {"authorized_access_point": "France - Régions"}], "related": [{"authorized_access_point": "Seine, Vallée moyenne de la (France)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027464180", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027464180", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11949941x", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040265382", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/150105086", "source": "VIAF"}], "variant_access_point": ["Île-de-France", "Île de France", "Paris (France ; région)", "Parisienne, Région (France)", "Région parisienne (France)"], "authorized_access_point": "Île-de-France (France)"} 1 +2024-09-10 15:47:00.228611 2024-09-10 15:47:00.228615 befc35b5-0d5f-4095-a956-296b7caacbf4 {"md5": "43390788ca85252e4046411737e44aa1", "pid": "027464512", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027464512", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027464512", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11949964k", "source": "BNF"}, {"type": "bf:Nbn", "value": "Italie (nord)", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173636567", "source": "VIAF"}], "variant_access_point": ["Italie du Nord"], "authorized_access_point": "Italie (nord)"} 1 +2024-09-10 15:47:31.365587 2024-09-10 15:47:31.365591 3d1a9121-3749-4518-8bf5-3a244b498826 {"md5": "7fa919b68373e2afd2869fd921689721", "pid": "279135890", "note": [{"label": ["http://www.geonames.org/, 2024-07-01"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Christian"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279135890", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279135890", "source": "IDREF"}], "authorized_access_point": "Edinburg (Ill.)"} 1 +2024-09-10 15:47:00.290254 2024-09-10 15:47:00.290258 258df3af-edb3-4cc2-a77e-ef15e8fea8c3 {"md5": "cc4bfa2fb7d8e7653927ce19dbe160a1", "pid": "027465012", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027465012", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027465012", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)04051594X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04051594X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/9591148574375024430008", "source": "VIAF"}], "variant_access_point": ["Sankt Gallen (Suisse)", "St. Gallen (Suisse)", "St.Gallen (Suisse)", "St Gall (Suisse)", "Saint Gall (Suisse)", "Saint-Gall (Suisse)", "Sankt-Gallen (Suisse)"], "authorized_access_point": "Saint-Gall (Suisse)"} 1 +2024-09-10 15:47:00.3654 2024-09-10 15:47:00.365404 aec401a8-3ea2-492f-9335-b07bb9b10bb9 {"md5": "46bf3626d7e4962daa31bb002f1f8172", "pid": "027472906", "note": [{"label": ["GDEL. Laval RVM, 1991-02"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent de l'empire byzantin, de 395 à 1453. Les ouvrages qui traitent de la ville de Byzance avant 330 se trouvent sous la vedette Byzance"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Orient"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027472906", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027472906", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040092569", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/149804778", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Empire_byzantin", "source": "WIKIPEDIA"}], "variant_access_point": ["Byzantin, Empire", "Empire d'Orient", "Empire romain d'Orient", "Orient, Empire d'"], "authorized_access_point": "Empire byzantin"} 1 +2024-09-10 15:47:00.436855 2024-09-10 15:47:00.436859 8d4a95d3-91aa-4dd5-a4fd-a370b72a1bd2 {"md5": "ea56b712faa702fdd72ffa5619000428", "pid": "027479056", "note": [{"label": ["Eurovoc thesaurus, 1987", "Lexique d'économie Dalloz, 2002"], "noteType": "dataSource"}, {"label": ["Cette expression désigne les pays particulièrement avancés dans les domaines des capacités industrielles, de la productivité économique et de la sophistication technologique"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "related": [{"authorized_access_point": "Occident"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Nouveaux pays industrialisés"}, {"authorized_access_point": "Pays de l'OCDE"}], "identifier": "http://www.idref.fr/027479056", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027479056", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119510302", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)04026840", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172385834", "source": "VIAF"}], "classification": [{"name": "Économie politique", "type": "bf:ClassificationDdc", "classificationPortion": "330"}, {"name": "Géographie", "type": "bf:ClassificationDdc", "classificationPortion": "910"}], "variant_access_point": ["Pays développés", "Pays économiquement développés", "Pays industriels", "Pays riches"], "authorized_access_point": "Pays industrialisés"} 1 +2024-09-10 15:47:00.504634 2024-09-10 15:47:00.504637 022d0ec7-7fab-468b-881b-740b798f4989 {"md5": "c60f301f36962e6a23bde50498857a74", "pid": "027482928", "note": [{"label": ["GDEL. West Bank ; LCSH, 1985"], "noteType": "dataSource"}, {"label": ["Cette vedette s'emploie directement en subdivision de lieu. Les localités de Cisjordanie sont localisées à (Cisjordanie), et en subdivision suivent la construction indirecte : -- Cisjordanie -- Nom de lieu", "Partie de la Palestine annexée par la Jordanie (24-04-1950) et occupée par Israe͏̈l depuis juin 1967"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Palestine"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027482928", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027482928", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040657418", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/155352830", "source": "VIAF"}], "variant_access_point": ["Judée et Samarie"], "authorized_access_point": "Cisjordanie"} 1 +2024-09-10 15:47:00.60803 2024-09-10 15:47:00.608034 54c81919-f169-4851-9779-c04797f7a80c {"md5": "8041beddaf8fe3ef62b16052b0336370", "pid": "027483169", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027483169", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027483169", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb152986119", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)04007403X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/8145602486301362470", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Lac_de_Constance", "source": "WIKIPEDIA"}], "variant_access_point": ["Bodensee (lac)", "Lac de Constance"], "authorized_access_point": "Constance, Lac de"} 1 +2024-09-10 15:47:00.677773 2024-09-10 15:47:00.677777 366663cc-a7eb-4309-97ab-32f875daf4a2 {"md5": "6a8eecd5ef17607cd502e17636bcc731", "pid": "027483304", "note": [{"label": ["GLU"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Europe centrale"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027483304", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027483304", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040738418", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/8072148574327224430003", "source": "VIAF"}], "variant_access_point": ["Hrvatska", "Хрватска", "Hrvatska"], "authorized_access_point": "Croatie"} 1 +2024-09-10 15:47:00.753278 2024-09-10 15:47:00.753285 ca41d6db-5684-4891-90b1-245fc65ba33d {"md5": "af927d2307827772303c55f71888690d", "pid": "02748355X", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/02748355X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02748355X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12503056n", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/109144648552106101862", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Dombes", "source": "WIKIPEDIA"}], "variant_access_point": ["Côtière de Dombes"], "authorized_access_point": "Dombes (France ; sud)"} 1 +2024-09-10 15:47:00.818507 2024-09-10 15:47:00.818511 4dfc4df4-5828-4024-be26-60f50bf8c4ba {"md5": "55bf00e18a3e1db4ccf0c07edbd79916", "pid": "027484319", "note": [{"label": ["Names of states / IFLA, 1981"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Haïti (île)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027484319", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027484319", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040229742", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/462154387165030970008", "source": "VIAF"}], "authorized_access_point": "Haïti"} 1 +2024-09-10 15:47:00.888549 2024-09-10 15:47:00.888554 c423072d-8d72-4e10-94b7-c81e3bc54131 {"md5": "8a30413000f2d5981824b7c01eb1faf2", "pid": "02748498X", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Italie (nord)"}, {"authorized_access_point": "Italie - Régions"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/02748498X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02748498X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb14643876r", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040357198", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/164861616", "source": "VIAF"}], "variant_access_point": ["Liguria (Italie)"], "authorized_access_point": "Ligurie (Italie ; région)"} 1 +2024-09-10 15:47:00.96247 2024-09-10 15:47:00.962473 fc8b7ebe-a5d5-4a13-8f17-1fa02baa41d9 {"md5": "74848f02327e6f13f31d38f50024c2bb", "pid": "027485552", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Italie (centre)"}, {"authorized_access_point": "Italie - Régions"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027485552", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027485552", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040615812", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/154755801", "source": "VIAF"}], "variant_access_point": ["Umbria (Italie)"], "authorized_access_point": "Ombrie (Italie)"} 1 +2024-09-10 15:47:01.033189 2024-09-10 15:47:01.033193 e8973722-a774-4048-8ca6-b74666e2ecf4 {"md5": "59f0c292a65754a04fe2efa5037bd8b3", "pid": "027486354", "note": [{"label": ["GLU, 1991", "Laval RVM, 1996-08"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Antarctique"}, {"authorized_access_point": "Terres australes et antarctiques françaises"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027486354", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027486354", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11951563d", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)042596270", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/2863147270504335700004", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Terre_Adélie", "source": "WIKIPEDIA"}], "variant_access_point": ["Terre Adélie (Antarctique)"], "authorized_access_point": "Adélie, Terre (Antarctique)"} 1 +2024-09-10 15:47:01.094561 2024-09-10 15:47:01.094564 a7806c18-97cc-4787-b51d-ce99d7242c3a {"md5": "cdda416d62d20ce4ef93a621634d0d36", "pid": "027491099", "note": [{"label": ["GLU", "\\"Le bois ancêtre\\" : arbres, forêts et occupation kanak précoloniale sur la Grande Terre de Nouvelle-Calédonie : étude de cas et approche anthracologique dans la vallée de la Tiwaka (Nord Est) / Émilie Dotte-Sarout, 2010", "Les rapports des 9 ateliers du diagnostic : Nouvelle-Calédonie 2025, schéma d'aménagement et de développement de la Nouvelle-Calédonie / Haut-commissariat de la République en Nouvelle-Calédonie ; Gouvernement de la Nouvelle-Calédonie. - Nouméa : Gouvernement de la Nouvelle-Calédonie, 2009"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent de l'archipel de la Nouvelle-Calédonie (Grande Terre, Loyauté, Belep, Île des Pins, etc) ou de la seule Grande-Terre", "Emploi direct en subdivision : [Sujet] -- Nouvelle-Calédonie"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "France - Collectivités d'outre-mer"}, {"authorized_access_point": "Mélanésie"}, {"authorized_access_point": "Pacifique, Îles du"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027491099", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027491099", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)041024982", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/2506148574304424430002", "source": "VIAF"}], "relation_pid": {"type": "redirect_from", "value": "163936250"}, "variant_access_point": ["Grande-Terre (Nouvelle-Calédonie)", "Kanaky", "Nouvelle-Calédonie et Dépendances"], "authorized_access_point": "Nouvelle-Calédonie"} 1 +2024-09-10 15:47:01.155115 2024-09-10 15:47:01.155118 727e9d4b-ad4d-43ff-b932-a7328423ff4b {"md5": "b38be6f7e0ec587194976b9c8e6d799b", "pid": "027492753", "note": [{"label": ["GDEL. LCSH, 1985"], "noteType": "dataSource"}, {"label": ["Cette vedette s'emploie directement en subdivision de lieu"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027492753", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027492753", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb14011467j", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/125501644", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Gibraltar", "source": "WIKIPEDIA"}], "authorized_access_point": "Gibraltar"} 1 +2024-09-10 15:47:01.212093 2024-09-10 15:47:01.212097 4c7b1e7d-e3a3-4f7b-8b86-45e801a655a3 {"md5": "65ed7e698d80e0d6d24c8ffc755ce852", "pid": "027501302", "note": [{"label": ["Names of states / IFLA, 1981", "wikipedia.org, 2019-07-25"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Balkans"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027501302", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027501302", "source": "IDREF"}, {"type": "uri", "value": "https://catalogue.bnf.fr/ark:/12148/cb11952716p", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040010287", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/8663159248210104870006", "source": "VIAF"}], "variant_access_point": ["Shqipe͏̈ri", "Shqipëria", "Arbri", "Arbëria", "Republika e Shqipërisë"], "authorized_access_point": "Albanie"} 1 +2024-09-10 15:47:01.269274 2024-09-10 15:47:01.269278 c32e2c4e-3984-4fc0-9257-4605ee7b859f {"md5": "1ab065708601c70d2bc7833f4073823b", "pid": "027501418", "note": [{"label": ["GDEL"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent de la Ciscaucasie (versant nord du Grand Caucase) et de la Transcaucasie (versant sud du Grand Caucase, dépression Rion-Koura et Petit Caucase)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Grand Caucase (monts)"}, {"authorized_access_point": "Petit Caucase (monts)"}, {"authorized_access_point": "Transcaucasie"}], "identifier": "http://www.idref.fr/027501418", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027501418", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040300900", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172982363", "source": "VIAF"}], "variant_access_point": ["Caucasie", "Kavkaz"], "authorized_access_point": "Caucase"} 1 +2024-09-10 15:47:01.331993 2024-09-10 15:47:01.331995 0b3cda81-1fc8-441a-a850-d51013fa0a9e {"md5": "ca87cd42cd4cf474996fc049877519ee", "pid": "027502333", "note": [{"label": ["GLU (art. Extrême-Orient)", "Extrême-Orient ; Laval RVM, 1998-07"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent de la partie de l'Asie comprenant la Chine, la Corée, le Japon, la Sibérie orientale, l'Indochine et l'Insulinde"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Asie du Nord-Est"}, {"authorized_access_point": "Asie du Sud-Est"}, {"authorized_access_point": "Chine"}, {"authorized_access_point": "Corée"}, {"authorized_access_point": "Japon"}, {"authorized_access_point": "Pacifique, Côte du (Asie)"}, {"authorized_access_point": "Sibérie (Russie ; est)"}, {"authorized_access_point": "Taïwan"}], "identifier": "http://www.idref.fr/027502333", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027502333", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119528028", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040757277", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172332114", "source": "VIAF"}], "variant_access_point": ["Asie (est)", "Asie de l'Est", "Asie-Pacifique, Région", "Extrême-Orient", "Orient, Extrême-"], "authorized_access_point": "Asie orientale"} 1 +2024-09-10 15:47:01.397622 2024-09-10 15:47:01.397626 c6ed2b2b-2126-4102-abff-6e53dc3f7cf4 {"md5": "7a91398a69ff88bb591e36e20002dbb1", "pid": "027502368", "note": [{"label": ["GLU", "Laval RVM, 2001-01"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les documents qui traitent de la partie de l'Asie située à l'est de l'Inde et au sud de la Chine, comprenant l'Indochine (Birmanie, Cambodge, Laos, Malaisie, Thaïlande et Viet-Nam) et l'Insulinde (Brunéi, Indonésie, Malaisie orientale, Philippines et Singapour)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Asie orientale"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027502368", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027502368", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040584488", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/255510483", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Asie_du_Sud-Est", "source": "WIKIPEDIA"}], "variant_access_point": ["ASEAN, Pays de l'", "Asie (sud-est)", "Asie sud-orientale", "Association des nations de l'Asie du Sud-Est, Pays de l'", "Pays de l'ASEAN", "Pays de l'Association des nations de l'Asie du Sud-Est", "Sud-Est asiatique"], "authorized_access_point": "Asie du Sud-Est"} 1 +2024-09-10 15:47:01.459783 2024-09-10 15:47:01.459789 60a24524-76a4-408d-92a9-790f8960962b {"md5": "f455d6b2f2a7605b32e0d080015415ae", "pid": "027502775", "note": [{"label": ["Pacifique, Océan ; Laval RVM, 1995-02"], "noteType": "dataSource"}, {"label": ["Voir aussi aux différentes parties du Pacifique, par ex. Pacifique (océan ; sud)"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Chine, Mer de"}, {"authorized_access_point": "Japon, Mer du"}], "identifier": "http://www.idref.fr/027502775", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027502775", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15287406q", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040449815", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/170040002", "source": "VIAF"}], "variant_access_point": ["Océan Pacifique", "Pacifique"], "authorized_access_point": "Pacifique (océan)"} 1 +2024-09-10 15:47:01.519615 2024-09-10 15:47:01.51962 d2504c49-997a-4a1c-9c98-836653ae02a2 {"md5": "25538ee9a0a6d93e6c9fd5f7b60a53fe", "pid": "027504271", "note": [{"label": ["GDEL. Atlas Le Monde"], "noteType": "dataSource"}, {"label": ["Province chinoise"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Chine (sud)"}, {"authorized_access_point": "Chine - Provinces"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027504271", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027504271", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/134813396", "source": "VIAF"}], "variant_access_point": ["Sseu-tch'ouan", "Szechwan", "四川省", "Sichuan Sheng"], "authorized_access_point": "Sichuan (Chine ; province)"} 1 +2024-09-10 15:47:01.578143 2024-09-10 15:47:01.578147 6f343f74-3eb3-4a14-a81d-3c723aa8f1c1 {"md5": "4d4377360babe693f1b2464391b82760", "pid": "027504379", "note": [{"label": ["Names of states / IFLA, 1981"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Afrique du Nord-Est"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027504379", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027504379", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040775097", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/5310148574275024430005", "source": "VIAF"}], "variant_access_point": ["Somalia"], "authorized_access_point": "Somalie"} 1 +2024-09-10 15:47:21.18906 2024-09-10 15:47:21.189063 2dd09ab6-2e8a-4323-9a4e-77e0ce9ba027 {"md5": "52d4b49a92e09d88b5f8228f6b006a41", "pid": "25527999X", "note": [{"label": ["Grange-Canal et Jean Jacques Rousseau / Louis Thomas, 1901", "Commune de Chêne-Bougeries - https://chene-bougeries.ch/, 2021-05-11", "DHS - https://hls-dhs-dss.ch/fr/articles/002894/2005-07-14/, 2021-05-10"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/25527999X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/25527999X", "source": "IDREF"}], "authorized_access_point": "Chêne-Bougeries (Suisse) - Grange-Canal"} 1 +2024-09-10 15:47:01.644944 2024-09-10 15:47:01.644949 402dd78a-b0db-4800-a3e2-d347b6d2648e {"md5": "370b78fc8775fcfe684f7b1884d375dd", "pid": "027522296", "note": [{"label": ["GLU", "Laval RVM, 1996-02"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent de la Macédoine historique, partagée en 1913 entre la Bulgarie, la Grèce et la Serbie. Les ouvrages sur la Macédoine serbe, puis yougoslave, qui est devenue une République indépendante le 20-11-1992, se trouvent sous la vedette Macédoine (République) et Macédoine du Nord"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Macédoine (Grèce)"}, {"authorized_access_point": "Balkans"}], "related": [{"authorized_access_point": "Macédoine du Nord (République)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027522296", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027522296", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)041149378", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/135978180", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Macédoine_(région)", "source": "WIKIPEDIA"}], "variant_access_point": ["Makedonija", "Μακεδονία", "Makhedonia"], "authorized_access_point": "Macédoine"} 1 +2024-09-10 15:47:01.715524 2024-09-10 15:47:01.715531 6a4f2e9b-d768-484d-9dfd-4e536f5fc1e6 {"md5": "de35fc735059a0ab5d7d64d3d0b217b7", "pid": "027528359", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027528359", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027528359", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040345815", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173744995", "source": "VIAF"}], "authorized_access_point": "Laponie"} 1 +2024-09-10 15:47:01.778605 2024-09-10 15:47:01.778609 b7ead053-1767-4dfb-a6d2-ad1909852baa {"md5": "75c0cc10b6fe7bb834fe9f409bc97383", "pid": "027544931", "note": [{"label": ["SY 1994-95", "Congo ; Laval RVM, 1997-02"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Afrique centrale"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027544931", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027544931", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119562586", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040320979", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173167475", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/République_du_Congo", "source": "WIKIPEDIA"}], "variant_access_point": ["Congo", "Congo (Brazzaville)", "Congo (République populaire)", "Congo-Brazzaville", "Congo français"], "authorized_access_point": "Congo (République)"} 1 +2024-09-10 15:47:01.841377 2024-09-10 15:47:01.841381 a5df0b6e-50cb-4edd-b4b4-715743c9075a {"md5": "af5e20e03fdd66cd7f292695816cba46", "pid": "02754785X", "note": [{"label": ["GDEL. SY 1990/91"], "noteType": "dataSource"}, {"label": ["Canton suisse"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Suisse - Cantons"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/02754785X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02754785X", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)041196058", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/117148570735124312537", "source": "VIAF"}], "variant_access_point": ["Thurgau (Suisse)"], "authorized_access_point": "Thurgovie (Suisse)"} 1 +2024-09-10 15:47:01.916515 2024-09-10 15:47:01.91652 c7956bd5-9319-4970-84ab-1f270aabb0ed {"md5": "35f272eb34c315afe3d15cf4fb732c4d", "pid": "027552543", "note": [{"label": ["Dict. communes, 1984"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027552543", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027552543", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11956863f", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/237008510", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Berzé-la-Ville", "source": "WIKIPEDIA"}], "authorized_access_point": "Berzé-la-Ville (Saône-et-Loire)"} 1 +2024-09-10 15:47:01.975448 2024-09-10 15:47:01.975452 648f2f9f-3b02-43ec-8a27-956976e14ca1 {"md5": "c3b9e0f0d90e198d1e988d643f84bf2b", "pid": "027557758", "note": [{"label": ["GDEL. Laval RVM, 1991-08. BN Service chinois", "wikipedia.org, 2018-04-04"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027557758", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027557758", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15238685m", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040759717", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/312565158", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Pékin", "source": "WIKIPEDIA"}], "variant_access_point": ["Bei-jing (Chine)", "Bei-ping (Chine)", "Beijing (Chine)", "Beiping (Chine)", "Pei-ching (Chine)", "Pei-king (Chine)", "Pei-p'ing (Chine)", "Pei-ping (Chine)", "Peiping (Chine)", "Peking (Chine)", "北京", "北京市", "北平", "Běipíng", "大都", "Dàdū", "汗八里", "Hànbālǐ", "Khanbalik", "Cambaluc"], "authorized_access_point": "Pékin (Chine)"} 1 +2024-09-10 15:47:02.052327 2024-09-10 15:47:02.052331 8d6b57db-126f-4eac-b442-3f3aaeeda041 {"md5": "0eb875bbf602a140dbfcc5300e76bc27", "pid": "027563278", "note": [{"label": ["GDEL. Atlas Le Monde"], "noteType": "dataSource"}, {"label": ["Province chinoise"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Chine (nord)"}, {"authorized_access_point": "Chine - Provinces"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027563278", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027563278", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119576874", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/173472735", "source": "VIAF"}], "variant_access_point": ["陝西", "Chen-si", "Shen-hsi", "Shensi", "陕西省", "Shaanxi Sheng"], "authorized_access_point": "Shaanxi (Chine ; province)"} 1 +2024-09-10 15:47:02.111848 2024-09-10 15:47:02.111852 6b8ded3a-6f93-4fb6-88a6-c6dfa8aa3d58 {"md5": "24c2211d691cb09ce18f6a450b02e302", "pid": "027564053", "note": [{"label": ["Dict. communes, 1984"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027564053", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027564053", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13121289j", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/246262792", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Villars-les-Dombes", "source": "WIKIPEDIA"}], "authorized_access_point": "Villars-les-Dombes (Ain)"} 1 +2024-09-10 15:47:02.169721 2024-09-10 15:47:02.169725 81213ab9-6c05-463e-8c06-ebcd7077fe1d {"md5": "37effa31260d123f4da997388a77151f", "pid": "027564223", "note": [{"label": ["GDEL. Atlas Le Monde", "Wikipédia, https://fr.wikipedia.org/wiki/Zhejiang, 2020-11-05"], "noteType": "dataSource"}, {"label": ["Province chinoise"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Chine (sud)"}, {"authorized_access_point": "Chine - Provinces"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027564223", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027564223", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/123524226", "source": "VIAF"}], "variant_access_point": ["Che-kiang", "Chekiang", "Chö-kiang", "Tchö-kiang", "Tché-Kiang", "浙江省", "Zhejiang Sheng"], "authorized_access_point": "Zhejiang (Chine ; province)"} 1 +2024-09-10 15:47:02.234885 2024-09-10 15:47:02.234888 cbe9f730-d1df-4688-9ea1-63667e8bf49e {"md5": "4287f889553136466a9f714b63b0de0b", "pid": "027579425", "note": [{"label": ["GDEL. Dict. communes, 1984"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Les Karellis (Savoie)"}], "identifier": "http://www.idref.fr/027579425", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027579425", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/241581656", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Montricher-Albanne", "source": "WIKIPEDIA"}], "variant_access_point": ["Albanne (Savoie)"], "authorized_access_point": "Montricher-Albanne (Savoie)"} 1 +2024-09-10 15:47:02.330136 2024-09-10 15:47:02.330141 88076f66-5979-4443-a1b3-a3953a8028cd {"md5": "f59ed97d201174417c1ff9800d481982", "pid": "027584763", "note": [{"label": ["Laval RVM, 1996-08"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Afrique francophone"}, {"authorized_access_point": "Amérique francophone"}, {"authorized_access_point": "Europe francophone"}], "identifier": "http://www.idref.fr/027584763", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027584763", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11959324w", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040181413", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/13144647641039724008", "source": "VIAF"}], "variant_access_point": ["Pays francophones", "Régions de langue française"], "authorized_access_point": "Pays de langue française"} 1 +2024-09-10 15:47:02.443143 2024-09-10 15:47:02.443148 78feb537-2b50-4780-8326-979d1af21777 {"md5": "5f31abf1fba20ed87670b53eac62573f", "pid": "027585190", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "related": [{"authorized_access_point": "Pompéi (ville ancienne)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027585190", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027585190", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119593586", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040467554", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/316884438", "source": "VIAF"}], "authorized_access_point": "Pompéi (Italie)"} 1 +2024-09-10 15:47:02.529668 2024-09-10 15:47:02.529673 f583f9cc-f665-48fb-8503-76c4608a13ab {"md5": "79247b0d1de9e9effd206e33fb88c848", "pid": "027596591", "note": [{"label": ["Names of states / IFLA, 1981"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Afrique occidentale"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027596591", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027596591", "source": "IDREF"}, {"type": "uri", "value": "https://catalogue.bnf.fr/ark:/12148/cb11960248n", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040225208", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/3649148574267924430008", "source": "VIAF"}], "variant_access_point": ["Guinée française"], "authorized_access_point": "Guinée"} 1 +2024-09-10 15:47:02.590963 2024-09-10 15:47:02.590966 c20003e9-253f-4156-8a8e-29574ea41bae {"md5": "2782553070dd774c82d6588253e1cfa6", "pid": "027603504", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027603504", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027603504", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11960787x", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/147280021", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Allevard", "source": "WIKIPEDIA"}], "variant_access_point": ["Bréda (France ; cours d'eau ; vallée haute)", "Pays d'Allevard (France)"], "authorized_access_point": "Allevard (Isère ; région)"} 1 +2024-09-10 15:47:02.658405 2024-09-10 15:47:02.658408 21c4392c-57fc-48a4-8be6-350649943490 {"md5": "6da5c13e3f07f0901ff877f3e531a1b1", "pid": "027603784", "note": [{"label": ["GDEL. Atlas Le Monde"], "noteType": "dataSource"}, {"label": ["Province chinoise"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Chine (sud)"}, {"authorized_access_point": "Chine - Provinces"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027603784", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027603784", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11960807q", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/316144783067243628506", "source": "VIAF"}], "variant_access_point": ["Anhwei (Chine)", "Ngan-houei (Chine)", "安徽省", "Anhui Sheng"], "authorized_access_point": "Anhui (Chine ; province)"} 1 +2024-09-10 15:47:02.728555 2024-09-10 15:47:02.728559 7fe8dd7b-be01-4caa-bd18-9d1e276cad80 {"md5": "0c80b548d7d0fedbd88cd3b8ad88ebe9", "pid": "027606996", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027606996", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027606996", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11961068z", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)04060702X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/304926548", "source": "VIAF"}], "variant_access_point": ["Moscou-Vladivostok, Chemin de fer (Russie)", "Vladivostok-Moscou, Chemin de fer (Russie)"], "authorized_access_point": "Transsibérien, Chemin de fer (Russie)"} 1 +2024-09-10 15:47:02.792783 2024-09-10 15:47:02.792788 45a64360-7487-4151-ac13-994dccc2b7e5 {"md5": "dc237affec7cb18ef7934e219688eea6", "pid": "02761803X", "note": [{"label": ["GDEL"], "noteType": "dataSource"}, {"label": ["Capitale de pays"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/02761803X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02761803X", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/1544158188257920260000", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Luanda", "source": "WIKIPEDIA"}], "variant_access_point": ["São Paulo de Loanda (Angola)"], "authorized_access_point": "Luanda (Angola)"} 1 +2024-09-10 15:47:02.908596 2024-09-10 15:47:02.9086 2e41eef8-1cc4-43fd-b8e4-bdd4a2066121 {"md5": "dc8a8486d29f57fa59f30a223c7f2f10", "pid": "027621952", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Silésie"}, {"authorized_access_point": "Pologne (sud)"}, {"authorized_access_point": "Pologne (ouest)"}, {"authorized_access_point": "Territoires anciennement allemands de l'est"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027621952", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027621952", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11962295n", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)04052678X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/137152383", "source": "VIAF"}], "authorized_access_point": "Silésie (Pologne)"} 1 +2024-09-10 15:47:02.994957 2024-09-10 15:47:02.994961 e692abf9-64b9-4ae4-bcd3-8b8d0cd5deeb {"md5": "6a626aaeae6f11349168be562d90d90d", "pid": "027622444", "note": [{"label": ["IFLA, Names of states, 1981", "Laval RVM, 1996-02. Sverige ; GKD, 1994-05"], "noteType": "dataSource"}, {"label": ["Voir aussi la subdivision Et la Suède aux personnes et collectivités"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Scandinavie"}, {"authorized_access_point": "Pays de l'Union européenne"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027622444", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027622444", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13953240p", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040772586", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/178302678", "source": "VIAF"}], "variant_access_point": ["Sverige"], "authorized_access_point": "Suède"} 1 +2024-09-10 15:47:03.071031 2024-09-10 15:47:03.071035 0469bfec-7907-4218-b241-cdfad9cee095 {"md5": "b5fcaeee23313ea7ffc6d65060b364a3", "pid": "02763065X", "note": [{"label": ["Le Monde, 1990-05-23", "Yémen ; Pays et capitales du monde / IGN, 1986. Yémen (République arabe) ; IFLA, Names of states, 1981 ; BN ACO ; GDEL. Laval RVM, 1991-08 distingue les vedettes Yémen et Yémen du Nord"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent du Yémen jusqu'en 1962 et/ou de la République arabe du Yémen (1962-1990) et/ou du Yémen unifié depuis 1990", "Le 26-09-1962, l'imam Mansour est déposé, et le Yémen devient la République arabe du Yémen. Le 22-05-1990, proclamation de la République du Yémen, résultant de la fusion entre le Nord et le Sud-Yémen (Capitale : Ṣan ̦ā)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Arabie"}, {"authorized_access_point": "Arabie (sud)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/02763065X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02763065X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11963045s", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040730093", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/158182311", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Yémen", "source": "WIKIPEDIA"}], "variant_access_point": ["Nord-Yémen", "Yémen (République arabe)", "Yémen du Nord", "اليمن", "Al-Yaman", "يمن", "Yaman"], "authorized_access_point": "Yémen"} 1 +2024-09-10 15:47:03.133139 2024-09-10 15:47:03.133144 4ab33469-a261-4c33-a3f8-4d9f772d3420 {"md5": "ba18131f63e2e025a23f89dbcd61e2f3", "pid": "027632571", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Mont-Cenis (France ; massif)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027632571", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027632571", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119632320", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/173636676", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Col_du_Mont-Cenis", "source": "WIKIPEDIA"}], "variant_access_point": ["Cenis, Col du Mont- (France)", "Mont Cenis, Col du (France)"], "authorized_access_point": "Mont-Cenis, Col du (France)"} 1 +2024-09-10 15:47:03.194788 2024-09-10 15:47:03.194792 ad8795bd-7524-49df-a167-2589b6bd8848 {"md5": "cd5ffd90c570edfa3e753e63430b1365", "pid": "02763857X", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Himalaya"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/02763857X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02763857X", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)04040417X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/247168735", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Everest", "source": "WIKIPEDIA"}], "variant_access_point": ["Chomolungma (mont)"], "authorized_access_point": "Everest, Mont"} 1 +2024-09-10 15:47:03.26089 2024-09-10 15:47:03.260895 af0c9c57-137c-4a7c-9291-65255b1c38a4 {"md5": "7c270e7faae634a68d753f797640acf5", "pid": "027645649", "note": [{"label": ["Pacific Area ; LCSH, 1988-06. Pacifique, Région du ; Laval RVM suppl., 1988-03"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent de l'ensemble formé par les îles et les pays riverains du Pacifique"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Pacifique, Îles du"}, {"authorized_access_point": "Océanie"}], "identifier": "http://www.idref.fr/027645649", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027645649", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119643079", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040449823", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172439456", "source": "VIAF"}], "variant_access_point": ["Pacifique (océan ; région)"], "authorized_access_point": "Pacifique (région)"} 1 +2024-09-10 15:47:03.323078 2024-09-10 15:47:03.323082 9bb61160-d826-4322-a3ca-4a71e287f551 {"md5": "14846c12b155c9e48299865d090d6f23", "pid": "027656438", "note": [{"label": ["Grand Larousse universel (art. : Révolution russe de 1917)", "Dict. encyclopédique d'histoire / M. Mourre (art. : Russie)"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les documents qui traitent des événements survenus du 12 au 15 mars 1917 (27 février-2 mars du calendrier julien), jusqu'aux 6 et 7 novembre 1917 (24-25 octobre du calendrier julien). Les documents sur l'ensemble de la période révolutionnaire de 1917 à 1921 sont sous la vedette : URSS -- 1917-1921 (Révolution)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "URSS - 1917-1921 (Révolution)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027656438", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027656438", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11965185s", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)04043429X", "source": "GND"}], "classification": [{"name": "Histoire de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "940"}], "variant_access_point": ["URSS - 1917 (Révolution)"], "authorized_access_point": "Russie - 1917 (Révolution)"} 1 +2024-09-10 15:47:03.381465 2024-09-10 15:47:03.381469 bc3d1a13-f20d-4e40-9683-9b336012bb0a {"md5": "89b1f91462e271f042508e079c400469", "pid": "027668479", "note": [{"label": ["Dict. communes, 1984"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027668479", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027668479", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/3155148574307224430007", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Châteauneuf-de-Galaure", "source": "WIKIPEDIA"}], "authorized_access_point": "Châteauneuf-de-Galaure (Drôme)"} 1 +2024-09-10 15:47:03.441155 2024-09-10 15:47:03.441159 67811c3c-9660-4bae-8394-322262f26e94 {"md5": "1aaf18f233393879a66f0cac5c25e16e", "pid": "027680231", "note": [{"label": ["GDEL. SY 1990/91. Îles Anglo-Normandes ; Laval RVM, 1990-08"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Grande-Bretagne"}, {"authorized_access_point": "Manche, Îles de la"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027680231", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027680231", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119671393", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040731863", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/316732616", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Îles_Anglo-Normandes", "source": "WIKIPEDIA"}], "variant_access_point": ["Channel Islands (GB)", "Îles Anglo-Normandes (GB)"], "authorized_access_point": "Anglo-Normandes, Îles (GB)"} 1 +2024-09-10 15:47:03.504266 2024-09-10 15:47:03.50427 2ee9c288-b0e2-4d96-a626-d2496bd836bf {"md5": "da4b3f8e72594a127b20f210eb9356a9", "pid": "027693007", "note": [{"label": ["Petit Robert des noms propres 2013 (art. : Genève)", "Grand Larousse universel (art. : Genève)", "Wikipédia : Cathédrale Saint-Pierre de Genève - https://fr.wikipédia.org (2016-01-22)", "Guides Voir : Suisse, 2012", "Cathédrale Saint-Pierre - Ville de Genève - http://www.ville-geneve.ch (2016-01-22)", "Cathédrale Saint-Pierre - Genève - http://www.cathedrale-geneve.ch (2016-01-22)"], "noteType": "dataSource"}, {"label": ["Cathédrale sise dans la cour du même nom, construite de 1160 à 1230, avec une flèche entre ses deux tours ; un portail néoclassique à colonnes est ajouté au 18e siècle. A l'endroit de plusieurs édifices cultuels antérieurs - un temple romain, un palais épiscopal (en témoigne son pavement mosaïqué), une église romane (on trouve des chapiteaux romans et gothiques) - la cathédrale est d'abord vouée au culte catholique, avant de devenir cathédrale protestante à partir de la Réforme (1535), avec les prêches de Guillaume Farel et surtout de Jean Calvin"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027693007", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027693007", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11968062k", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)042384516", "source": "GND"}], "classification": [{"name": "Religion", "type": "bf:ClassificationDdc", "classificationPortion": "200"}, {"name": "Construction", "type": "bf:ClassificationDdc", "classificationPortion": "690"}, {"name": "Architecture", "type": "bf:ClassificationDdc", "classificationPortion": "720"}, {"name": "Géographie de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "914"}], "variant_access_point": ["Cathédrale Saint-Pierre (Genève, Suisse)", "Saint-Pierre, Cathédrale (Genève, Suisse)"], "authorized_access_point": "Genève (Suisse) - Cathédrale Saint-Pierre"} 1 +2024-09-10 15:47:03.572901 2024-09-10 15:47:03.572905 a8a941c8-3e2f-4401-a200-9c1728373ea9 {"md5": "bf52e7bd5eef5a9024459fc77e2cd3ed", "pid": "027693805", "note": [{"label": ["GDEL. Atlas Le Monde"], "noteType": "dataSource"}, {"label": ["Province de Chine"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Chine (sud)"}, {"authorized_access_point": "Chine - Provinces"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027693805", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027693805", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/123100736", "source": "VIAF"}], "variant_access_point": ["廣東省", "Canton (Chine ; province)", "Kouang-tong (Chine)", "Kuang-tung (Chine)", "Kwangtung (Chine)", "广东省", "Guangdong Sheng"], "authorized_access_point": "Guangdong (Chine ; province)"} 1 +2024-09-10 15:47:32.209887 2024-09-10 15:47:32.20989 87a0214f-2be2-4a55-aaa2-8d7ee3f38301 {"md5": "1e8e1fa8d47d5212113bf81395a178f4", "pid": "279150350", "note": [{"label": ["http://www.geonames.org/, 2024-07-02"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279150350", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279150350", "source": "IDREF"}], "authorized_access_point": "Embarrass river (Ill. ; cours d'eau)"} 1 +2024-09-10 15:47:03.630161 2024-09-10 15:47:03.630166 ea72fa7a-a751-4578-82c1-92f33ea30d56 {"md5": "15d43252c3c4f162be7f96d5e57c370e", "pid": "027693821", "note": [{"label": ["GDEL. Atlas Le Monde"], "noteType": "dataSource"}, {"label": ["Région autonome en partie peuplée de Zhuang, Chine"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Chine - Provinces"}, {"authorized_access_point": "Chine (sud)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027693821", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027693821", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb153562085", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/263760018", "source": "VIAF"}], "variant_access_point": ["Kouang-si (Chine)", "Kuang-hsi (Chine)", "Kwangsi (Chine)", "廣西省", "广西壮族自治区", "廣西壯族自治區", "guǎngxī zhuàngzú zìzhìqū", "广西省", "Guangxi Sheng"], "authorized_access_point": "Guangxi (Chine ; province)"} 1 +2024-09-10 15:47:03.690421 2024-09-10 15:47:03.690425 47863481-8680-4918-93ed-13853e0c9302 {"md5": "edd18dc318fd56b186ab1949754ab2f7", "pid": "027694658", "note": [{"label": ["GDEL"], "noteType": "dataSource"}, {"label": ["Capitale du Koweït"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027694658", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027694658", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/127853965", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Koweït_(ville)", "source": "WIKIPEDIA"}], "authorized_access_point": "Koweït (Koweït)"} 1 +2024-09-10 15:47:03.752724 2024-09-10 15:47:03.752728 8cf688a1-1749-4edc-bd7b-8367439bf4a8 {"md5": "d573c5bf79b2612914c166c0fd56aaf3", "pid": "027705781", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Rhodanien, Sillon (France)"}], "identifier": "http://www.idref.fr/027705781", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027705781", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119691089", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)041037766", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041037766", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173745158", "source": "VIAF"}], "authorized_access_point": "Rhône, Vallée du"} 1 +2024-09-10 15:47:03.812185 2024-09-10 15:47:03.812189 91d1fbdf-f2c0-4607-bfbd-6fe6ef8136be {"md5": "3b20eae7ddc70089c7a06b87837226ab", "pid": "027722996", "note": [{"label": ["Dict. communes, 1984"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027722996", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027722996", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119704817", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/295782321", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Claix_(Isère)", "source": "WIKIPEDIA"}], "authorized_access_point": "Claix (Isère)"} 1 +2024-09-10 15:47:03.872851 2024-09-10 15:47:03.872855 0e6a064c-f745-4223-b35d-e03fc72452e0 {"md5": "e64318facf37ac85767be3326f602c4a", "pid": "027744795", "note": [{"label": ["Mourre, 1986. GLU, 1991", "Laval RVM, 1996-02. Rheinland ; Rheinprovinz ; SWD, 1995-04"], "noteType": "dataSource"}, {"label": ["Partie de l'Allemagne située de part et d'autre du Rhin, de la frontière française à la frontière néerlandaise"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Allemagne (ouest)"}, {"authorized_access_point": "Rhin, Bassin du"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027744795", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027744795", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119721889", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040497887", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173036235", "source": "VIAF"}], "variant_access_point": ["Prusse rhénane", "Rheinland (Allemagne)", "Rheinprovinz"], "authorized_access_point": "Rhénanie (Allemagne)"} 1 +2024-09-10 15:47:03.945567 2024-09-10 15:47:03.94557 c822eba7-8281-4ed1-af85-7113749358a3 {"md5": "27a1700c28a39fe81f0c084bc3b6d824", "pid": "02775751X", "note": [{"label": ["Alps, Italian (Italy) ; LCSH, 1988-12"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Grappa (Italie ; massif)"}, {"authorized_access_point": "Cadore (Italie)"}, {"authorized_access_point": "Dolomites (Italie ; massif)"}, {"authorized_access_point": "Alpes juliennes"}, {"authorized_access_point": "Alpes cottiennes"}, {"authorized_access_point": "Alpes maritimes (massif)"}, {"authorized_access_point": "Adamello (Italie ; massif)"}], "identifier": "http://www.idref.fr/02775751X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02775751X", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040278395", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/316431852", "source": "VIAF"}], "variant_access_point": ["Alpes italiennes"], "authorized_access_point": "Alpes (Italie)"} 1 +2024-09-10 15:47:04.010917 2024-09-10 15:47:04.010928 a23e2722-0735-4ba9-9fc7-1e80ca29780d {"md5": "47e55bec6a4ab81f93f8542e47dee6b2", "pid": "027764842", "note": [{"label": ["GLU. Atlas universalis, 1984. LCNA (CD), 1995-09"], "noteType": "dataSource"}, {"label": ["Ville de Chine, capitale de la province de Zhejiang"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Zhejiang (Chine ; province)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027764842", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027764842", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/172602288", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Hangzhou", "source": "WIKIPEDIA"}], "relation_pid": {"type": "redirect_from", "value": "075553589"}, "variant_access_point": ["Hang-tcheou (Chine)", "Hangchow (Chine)", "Hang-chou Shih (Chine)", "杭州市", "Hangzhou Shi"], "authorized_access_point": "Hangzhou (Chine)"} 1 +2024-09-10 15:47:32.26883 2024-09-10 15:47:32.268833 99aaf5ed-b83d-41e7-af86-780a50b21bfe {"md5": "abafb935a61c3fc874f2737bdd93e028", "pid": "279150504", "note": [{"label": ["http://www.geonames.org/, 2024-07-02"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Cumberland"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279150504", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279150504", "source": "IDREF"}], "authorized_access_point": "Toledo (Ill.)"} 1 +2024-09-10 15:47:04.073444 2024-09-10 15:47:04.073448 2fdca7cf-a86b-4bd7-8b85-c053289a5be6 {"md5": "61d6df6f1e38b7d3b0f94c2b0f6df85e", "pid": "027768627", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Alsace (France)"}, {"authorized_access_point": "Bourgogne (France)"}, {"authorized_access_point": "Champagne-Ardenne (France)"}, {"authorized_access_point": "Franche-Comté (France)"}, {"authorized_access_point": "Lorraine (France)"}, {"authorized_access_point": "Rhône-Alpes (France)"}], "identifier": "http://www.idref.fr/027768627", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027768627", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119740170", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)04044063X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173255369", "source": "VIAF"}], "authorized_access_point": "France (est)"} 1 +2024-09-10 15:47:04.13477 2024-09-10 15:47:04.134773 7efab5bf-4e51-42eb-b0d4-b9ce95d4b153 {"md5": "2d8349fabb5f614221360c6eef11d6ac", "pid": "02776866X", "note": [{"label": ["France (Ouest) ; Laval RVM, 1994-02"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent de la partie de la France située entre l'estuaire de la Seine et la Gironde"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Armoricain, Massif (France)"}, {"authorized_access_point": "Basse-Normandie (France)"}, {"authorized_access_point": "Bretagne (France)"}, {"authorized_access_point": "Pays de la Loire (France)"}, {"authorized_access_point": "Poitou-Charentes (France)"}, {"authorized_access_point": "Longueville (Calvados, Basse-Normandie)"}], "identifier": "http://www.idref.fr/02776866X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02776866X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119740217", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)042449510", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172492580", "source": "VIAF"}], "authorized_access_point": "France (ouest)"} 1 +2024-09-10 15:47:04.205565 2024-09-10 15:47:04.205569 627aa230-9eba-4527-8de9-0af56d719615 {"md5": "2868da55aeffeab25470878698e3f344", "pid": "027768678", "note": [{"label": ["France (Sud) ; Laval RVM, 1996-02"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027768678", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027768678", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11974022k", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040714039", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172332341", "source": "VIAF"}], "variant_access_point": ["France du sud", "France méridionale", "Midi (France)", "Sud de la France"], "authorized_access_point": "France (sud)"} 1 +2024-09-10 15:47:04.285045 2024-09-10 15:47:04.285049 bfb0fb98-d07e-4230-99e9-a52e92f58609 {"md5": "bfd19b3a8781b33fee3281a4b08e170f", "pid": "027768686", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Languedoc-Roussillon (France)"}, {"authorized_access_point": "Provence-Alpes-Côte d'Azur (France)"}, {"authorized_access_point": "Rhône-Alpes (France)"}, {"authorized_access_point": "Alpes maritimes (province romaine)"}, {"authorized_access_point": "Viennoise (province romaine)"}], "identifier": "http://www.idref.fr/027768686", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027768686", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11974023x", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)041330986", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/315160421", "source": "VIAF"}], "variant_access_point": ["Méditerranée (région ; France)"], "authorized_access_point": "France (sud-est)"} 1 +2024-09-10 15:47:04.351209 2024-09-10 15:47:04.351212 111c7c6e-8951-47a3-a56f-3e025ef48936 {"md5": "1a9aea5dd5efa32287945729f1a15601", "pid": "027768694", "note": [{"label": ["France (Sud-Ouest) ; Laval RVM, 1996-02"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Aquitaine (France)"}, {"authorized_access_point": "Aquitaine, Bassin (France)"}, {"authorized_access_point": "Gascogne (France)"}, {"authorized_access_point": "Guyenne (France)"}, {"authorized_access_point": "Limousin (France)"}, {"authorized_access_point": "Midi-Pyrénées (France)"}, {"authorized_access_point": "Poitou-Charentes (France)"}, {"authorized_access_point": "Septimanie"}], "identifier": "http://www.idref.fr/027768694", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027768694", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119740248", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040584755", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/315160386", "source": "VIAF"}], "variant_access_point": ["Sud-Ouest (France)"], "authorized_access_point": "France (sud-ouest)"} 1 +2024-09-10 15:47:04.426864 2024-09-10 15:47:04.426867 24d3b160-f031-4266-a46b-cfea0c7e7e98 {"md5": "e825928795e34d0324ad2fded6e1eaae", "pid": "027775348", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Gironde (France)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027775348", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027775348", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11974560h", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040804690", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173418908", "source": "VIAF"}], "variant_access_point": ["Bordeaux (Gironde ; région)"], "authorized_access_point": "Bordelais (Gironde)"} 1 +2024-09-10 15:47:04.500547 2024-09-10 15:47:04.500553 e5b61ae4-4b9c-49e5-b5de-0faf20d82880 {"md5": "b302f722830ebe9607de12e60315d341", "pid": "027777456", "note": [{"label": ["Dict. communes, 1984"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027777456", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027777456", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/242735625", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/La_Roche-Vineuse", "source": "WIKIPEDIA"}], "variant_access_point": ["Roche-Vineuse, La (Saône-et-Loire)"], "authorized_access_point": "La Roche-Vineuse (Saône-et-Loire)"} 1 +2024-09-10 15:47:04.560778 2024-09-10 15:47:04.560781 13bdd9cb-8443-4314-ba5c-4d3c2723fbe8 {"md5": "1a3b560d0395cc78ccf3136a2b078d47", "pid": "027785718", "note": [{"label": ["GDEL. Laval RVM suppl., 1988-03"], "noteType": "dataSource"}, {"label": ["Emploi direct en subdivision : [Sujet] -- Suisse italienne"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Suisse"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027785718", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027785718", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11975348b", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)041972147", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/171144783017780015328", "source": "VIAF"}], "variant_access_point": ["Suisse de langue italienne"], "authorized_access_point": "Suisse italienne"} 1 +2024-09-10 15:47:04.625222 2024-09-10 15:47:04.625224 4a9b054a-43e8-4e4b-824d-d5d1af500828 {"md5": "f8f29ff4fc55b60d655cde16e8e5b1b0", "pid": "027806626", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Allemagne"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Allemagne (nord-est)"}, {"authorized_access_point": "Allemagne (nord-ouest)"}], "identifier": "http://www.idref.fr/027806626", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027806626", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11976943h", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040754863", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040754545", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173036261", "source": "VIAF"}], "authorized_access_point": "Allemagne (nord)"} 1 +2024-09-10 15:47:04.685492 2024-09-10 15:47:04.685497 22f14f8a-d50e-45b2-bb7d-edb74c2a985a {"md5": "08cd75080060ddd809c4c61566d7e0e0", "pid": "027812723", "note": [{"label": ["Dict. communes, 1984. GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027812723", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027812723", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040880729", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173309588", "source": "VIAF"}], "variant_access_point": ["Bordeaux", "Bordelh (Gironde, France)", "Bordèu (Gironde, France)", "Burdigala (ville ancienne)"], "authorized_access_point": "Bordeaux (Gironde)"} 1 +2024-09-10 15:47:04.771092 2024-09-10 15:47:04.771097 90b64246-b726-4d28-a8fa-60b1407c423d {"md5": "7644115adbe54c1839a5ba8f499e1e4c", "pid": "027825558", "note": [{"label": ["GLU, 1991", "Laval RVM, 1996-08"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Massif central (France)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027825558", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027825558", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/242739698", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Monts_du_Lyonnais", "source": "WIKIPEDIA"}], "authorized_access_point": "Lyonnais, Monts du (France)"} 1 +2024-09-10 15:47:04.828561 2024-09-10 15:47:04.828565 f65d567a-6018-48a6-af75-ffc17139cfd6 {"md5": "ae6031724a7a17a4958fffe2a78f5025", "pid": "027838935", "note": [{"label": ["Names of states / IFLA, 1981. Pays et capitales du monde / IGN, 1985"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Pays du golfe Persique"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027838935", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027838935", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119794070", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)04062742X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/3379148574308124430003", "source": "VIAF"}], "variant_access_point": ["Al-Imārāt", "United Arab Emirates", "UAE"], "authorized_access_point": "Émirats arabes unis"} 1 +2024-09-10 15:47:04.890876 2024-09-10 15:47:04.89088 f2f4aae7-d098-4d2e-b4ee-bfe86b8f66e7 {"md5": "b2e90262316c455ee32b07ddb14c5d1a", "pid": "027840883", "note": [{"label": ["GLU. Mourre, 1996", "Laval RVM, 1999-01"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Asie centrale"}, {"authorized_access_point": "Pays de la CEI"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027840883", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027840883", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13507963h", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040308480", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/148476223", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Kirghizistan", "source": "WIKIPEDIA"}], "variant_access_point": ["Kirghizie", "Kirghizstan", "Kyrgyzstan"], "authorized_access_point": "Kirghizistan"} 1 +2024-09-10 15:47:04.954832 2024-09-10 15:47:04.954836 9e4b2d14-b329-43d7-8913-97d1bca2e398 {"md5": "be14343c73e0ba924b0847cd1377ef1a", "pid": "027842959", "note": [{"label": ["BN ACO. Le Monde, 1-1-1993"], "noteType": "dataSource"}, {"label": ["La République socialiste tchèque, créée le 1-1-1969, comprenait la partie tchèque de la Tchécoslovaquie (Bohême, Moravie et Silésie, cette dernière étant rattachée à la Moravie-Septentrionale) ; elle devient la République tchèque en 1990 et accède à l'indépendance le 1-1-1993"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Europe centrale"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027842959", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027842959", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)04303381", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/953148574339124430001", "source": "VIAF"}], "variant_access_point": ["Bohême-Moravie", "Česká republika", "Česká socialistická republika", "République socialiste tchèque", "Tchèque, République", "Tchéquie"], "authorized_access_point": "République tchèque"} 1 +2024-09-10 15:47:05.020746 2024-09-10 15:47:05.020751 a28e7bef-020a-4206-9e06-2ea537ae0dea {"md5": "c5700e2056e00d6ac2ba88bbab43a8ac", "pid": "027848213", "note": [{"label": ["Names of states / IFLA, 1981. Pays et capitales du monde / IGN, 1985"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bornéo"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027848213", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027848213", "source": "IDREF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Brunei", "source": "WIKIPEDIA"}], "authorized_access_point": "Brunéi"} 1 +2024-09-10 15:47:05.159076 2024-09-10 15:47:05.159079 806bafa8-9450-4cbd-8bdb-0fd4ce5ce832 {"md5": "0f0226e9895eba8616c97f4209014afb", "pid": "027853136", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Rhétie (province romaine)"}], "identifier": "http://www.idref.fr/027853136", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027853136", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040441067", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/1391148574382824430000", "source": "VIAF"}], "variant_access_point": ["Suisse orientale"], "authorized_access_point": "Suisse (est)"} 1 +2024-09-10 15:47:05.222954 2024-09-10 15:47:05.222957 2f1f4770-4bd5-43eb-9723-7ef0f09e92f1 {"md5": "541e494f4f46baea18d937dd566ef0a4", "pid": "027860787", "note": [{"label": ["GDEL. SY 1990/91", "DNB - https://d-nb.info/gnd/4051594-1, 2023-12-01", "DHS - https://hls-dhs-dss.ch/de/articles/007390/2017-05-11/, 2023-12-01"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Suisse - Cantons"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027860787", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027860787", "source": "IDREF"}, {"type": "uri", "value": "https://catalogue.bnf.fr/ark:/12148/cb11981215b", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040515958", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/5207153126238624750006", "source": "VIAF"}, {"type": "uri", "value": "http://viaf.org/viaf/124913894", "source": "VIAF"}], "relation_pid": {"type": "redirect_from", "value": "227521803"}, "variant_access_point": ["Sankt Gallen (Suisse ; canton)", "St. Gallen (Suisse ; canton)"], "authorized_access_point": "Saint-Gall (Suisse ; canton)"} 1 +2024-09-10 15:47:05.285478 2024-09-10 15:47:05.285482 7afdf284-d902-4f6a-8706-64c8455295b5 {"md5": "fdf3a241b34f803c18da9ce76c47b9df", "pid": "027875695", "note": [{"label": ["GDEL. Atlas Le Monde"], "noteType": "dataSource"}, {"label": ["Province chinoise"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Mandchourie (Chine)"}, {"authorized_access_point": "Chine (nord)"}, {"authorized_access_point": "Chine - Provinces"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027875695", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027875695", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/173036300", "source": "VIAF"}], "variant_access_point": ["Hei-long-kiang (Chine)", "Heilungkiang (Chine)", "黑龍江省", "黑龙江省", "Heilongjiang Sheng"], "authorized_access_point": "Heilongjiang (Chine; province)"} 1 +2024-09-10 15:47:05.356166 2024-09-10 15:47:05.35617 4832aa1b-adc2-4b15-8009-2ef3b4edf44a {"md5": "94b6e84bce6875a7d360b774b075a343", "pid": "027875717", "note": [{"label": ["GDEL. Atlas Le Monde"], "noteType": "dataSource"}, {"label": ["Province chinoise"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Mandchourie (Chine)"}, {"authorized_access_point": "Chine (nord)"}, {"authorized_access_point": "Chine - Provinces"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027875717", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027875717", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/147752871", "source": "VIAF"}], "variant_access_point": ["Chi-lin", "Ki-lin", "Kirin", "吉林省", "Jilin Sheng"], "authorized_access_point": "Jilin (Chine ; province)"} 1 +2024-09-10 15:47:05.434215 2024-09-10 15:47:05.434218 c372ad67-fcf8-47f3-b1f9-0524fafa01c2 {"md5": "d5ee7629cdf556075aa394d538f07fb9", "pid": "027875725", "note": [{"label": ["GDEL. Atlas Le Monde. BN Service chinois"], "noteType": "dataSource"}, {"label": ["Province chinoise formée par la réunion du Liaodong et du Liaoxi en 1954"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Mandchourie (Chine)"}, {"authorized_access_point": "Chine (nord)"}, {"authorized_access_point": "Chine - Provinces"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027875725", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027875725", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/8421148574328624430007", "source": "VIAF"}], "variant_access_point": ["Leao-ning", "Liao-ning", "遼寧省", "辽宁省", "Liaoning Sheng"], "authorized_access_point": "Liaoning (Chine ; province)"} 1 +2024-09-10 15:47:05.493401 2024-09-10 15:47:05.493404 e81a5051-ae53-4a43-8a85-ffc33dcdda7c {"md5": "18040075ca1ed50994e82a90e2c3a362", "pid": "027883000", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Jura (massif)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027883000", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027883000", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040538885", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/9759148574375724430007", "source": "VIAF"}], "authorized_access_point": "Jura (Suisse ; massif)"} 1 +2024-09-10 15:47:05.568053 2024-09-10 15:47:05.568056 06fb6980-7260-4b77-aa2f-fb8fcc426667 {"md5": "25b99e23bcb506aa0bf603cc763f628f", "pid": "027935280", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Haute-Savoie (France)"}, {"authorized_access_point": "Préalpes (France)"}, {"authorized_access_point": "Savoie"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027935280", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027935280", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11987107w", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/151274210", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Faucigny_(Haute-Savoie)", "source": "WIKIPEDIA"}], "variant_access_point": ["Bonneville (Haute-Savoie ; région)"], "authorized_access_point": "Faucigny (France)"} 1 +2024-09-10 15:47:05.628305 2024-09-10 15:47:05.628309 c19c5ee7-9043-4668-b108-c37a0ae6121c {"md5": "72b4a0484eed713037416abf9618b882", "pid": "027945774", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027945774", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027945774", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11987945n", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040554589", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/128144648648649371618", "source": "VIAF"}], "relation_pid": {"type": "redirect_from", "value": "276094255"}, "variant_access_point": ["Solothurn (Suisse)"], "authorized_access_point": "Soleure (Soleure, Suisse)"} 1 +2024-09-10 15:47:05.693989 2024-09-10 15:47:05.693992 1a43ba02-ec52-4f22-afc7-e6e00973fe28 {"md5": "2433c15f621c53e21ee8d0db15bfd962", "pid": "027949117", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Île-de-France (France)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027949117", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027949117", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11988194w", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)04044662X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/315153457", "source": "VIAF"}], "variant_access_point": ["Paris (France ; région)", "Grand Paris (France)"], "authorized_access_point": "Paris (France ; agglomération)"} 1 +2024-09-10 15:47:05.757685 2024-09-10 15:47:05.757689 e5d22747-231f-45c7-b8c8-fd4fac5a2adb {"md5": "b5c554a3d903ac06c64e38eb9313b195", "pid": "027952800", "note": [{"label": ["GDEL. SY 1990/91"], "noteType": "dataSource"}, {"label": ["Canton suisse"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Suisse - Cantons"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/027952800", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027952800", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119884863", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040554597", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/132527094", "source": "VIAF"}], "variant_access_point": ["Solothurn (Suisse ; canton)"], "authorized_access_point": "Soleure (Suisse ; canton)"} 1 +2024-09-10 15:47:05.821609 2024-09-10 15:47:05.821612 c1070fa5-8e66-4f10-9b93-0645c9f3c083 {"md5": "e219eeaf31975d9f6b0bc25ff014a86b", "pid": "028036336", "note": [{"label": ["GDEL. SY, 1990/1991"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Madagascar"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/028036336", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028036336", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/123282613", "source": "VIAF"}], "authorized_access_point": "Fianarantsoa (Madagascar ; province)"} 1 +2024-09-10 15:47:05.897812 2024-09-10 15:47:05.897817 e491d3f7-97b4-47d0-b420-39332ab8be4d {"md5": "ca503662f9b4af1a8f43c7b3fc1a17d9", "pid": "028097505", "note": [{"label": ["Sous cette vedette on touve les ouvrages qui traitent des États africains dont la langue officielle est le portugais (Angola, Cap-Vert, Guinée-Bissau, Mozambique, São Tomé-et-Principe) depuis leur accession à l'indépendance. Les ouvrages qui traitent de ces territoires durant la période coloniale se trouvent sous la vedette : Portugal -- Colonies -- Afrique"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Pays de langue portugaise"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/028097505", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028097505", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)043270158", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172982699", "source": "VIAF"}], "variant_access_point": ["Afrique d'expression portugaise"], "authorized_access_point": "Afrique lusophone"} 1 +2024-09-10 15:47:05.964773 2024-09-10 15:47:05.964778 e47aca96-8d79-4519-829a-4193aa54cc8e {"md5": "a0a4e469a334c6eed8ff23d3179ba129", "pid": "028135903", "note": [{"label": ["Laval RVM, 1992-08"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "France - 1789-1799 (Révolution) - Républiques soeurs"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/028135903", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028135903", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)954767330", "source": "GND"}], "variant_access_point": ["Helvétique, République (1798-1803)", "République helvétique (1798-1803)"], "authorized_access_point": "Suisse - 1798-1803 (République helvétique)"} 1 +2024-09-10 15:47:06.024546 2024-09-10 15:47:06.024549 ed5344b8-7109-4e4f-8df7-fd8a2cd9c11a {"md5": "51bd9b7526f3ed89483e6af7bb50744e", "pid": "028141814", "note": [{"label": ["Guide bleu Suisse, 1977"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/028141814", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028141814", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12003515k", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040740528", "source": "GND"}], "authorized_access_point": "Lausanne (Suisse) - Cathédrale Notre-Dame"} 1 +2024-09-10 15:47:06.087806 2024-09-10 15:47:06.087814 c2bdf7d8-eb24-4e5e-9c2a-6b4c949b5506 {"md5": "50c034be4e670ec37edc187ce01ef0d6", "pid": "028146212", "note": [{"label": ["Guide bleu, Suisse, 1977"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bienne, Lac de (Suisse)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/028146212", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028146212", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12003873k", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040516385", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/878144783180710992014", "source": "VIAF"}], "authorized_access_point": "Saint-Pierre (Suisse ; île)"} 1 +2024-09-10 15:47:06.162104 2024-09-10 15:47:06.162108 cc209ccf-deb3-45a3-8e19-e7920eb6f3b5 {"md5": "6112633e143e92cadb682ac948374e7f", "pid": "028172825", "note": [{"label": ["Atlas Le Monde. BN service Asie"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/028172825", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028172825", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/81148570732224312626", "source": "VIAF"}], "variant_access_point": ["Larestan (Iran)"], "authorized_access_point": "Lāristān (Iran)"} 1 +2024-09-10 15:47:06.23446 2024-09-10 15:47:06.234467 37d0c993-9170-4bcf-9eeb-ec47f9ba7483 {"md5": "569af49b1c0af4703262bfd75e09c8f7", "pid": "02817450X", "note": [{"label": ["Dict. communes, 1984"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/02817450X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02817450X", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/134507635", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Divonne-les-Bains", "source": "WIKIPEDIA"}], "authorized_access_point": "Divonne-les-Bains (Ain)"} 1 +2024-09-10 15:47:06.295002 2024-09-10 15:47:06.295006 98a8d94f-c58e-46ce-99b3-2dec9f1f92c1 {"md5": "d65669b857c1092e801c1ea5ff166aff", "pid": "028180135", "note": [{"label": ["Atlas Le Monde. GLE"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/028180135", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028180135", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb120067197", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)964919958", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/240551570", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Gorges_de_l'Areuse", "source": "WIKIPEDIA"}], "authorized_access_point": "Areuse, Gorges de l' (Neuchâtel, Suisse)"} 1 +2024-09-10 15:47:06.355978 2024-09-10 15:47:06.355981 abebe2c8-c5f8-43aa-ba5d-447b143bb4d8 {"md5": "5718205b7289a391522535764adab328", "pid": "028201922", "note": [{"label": ["Alsace-Lorraine (Allemagne) ; Laval RVM, 1997-02", "GLU, 1991. Mourre, 1996"], "noteType": "dataSource"}, {"label": ["Par convention cette vedette, qui peut s'utiliser pour la période allemande comme la période française, s'emploie directement en subdivision : [sujet] -- Alsace-Lorraine", "Partie de l'Alsace et de la Lorraine annexée par l'Allemagne (1871-1918 et 1940-1944), comprenant les départements actuels du Bas-Rhin, du Haut-Rhin et de la Moselle"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/028201922", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028201922", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040145026", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/137798315", "source": "VIAF"}], "variant_access_point": ["Alsace-Moselle", "Elsass-Lothringen"], "authorized_access_point": "Alsace-Lorraine"} 1 +2024-09-10 15:47:06.421759 2024-09-10 15:47:06.421762 b7d0ada5-435b-40f7-9d02-272d8b91d96e {"md5": "7bc06da873fc50adef2226f66c1a5d00", "pid": "028212967", "note": [{"label": ["GDEL. Atlas Le Monde"], "noteType": "dataSource"}, {"label": ["Province chinoise"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Chine (sud)"}, {"authorized_access_point": "Chine - Provinces"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/028212967", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028212967", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12009405f", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/124144928850254441195", "source": "VIAF"}], "variant_access_point": ["Hou-nan", "湖南省", "Hunan Sheng"], "authorized_access_point": "Hunan (Chine ; province)"} 1 +2024-09-10 15:47:06.485932 2024-09-10 15:47:06.485938 80c5084a-9653-4956-8368-3b1db3d7e507 {"md5": "25bbf22903f9e438f57f98115c130fb2", "pid": "028212991", "note": [{"label": ["GDEL. Atlas Le Monde"], "noteType": "dataSource"}, {"label": ["Province du nord-ouest de la Chine qui tire son nom du lac du même nom et correspond à peu près à l'ancienne région tibétaine de l'Amdo"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Chine (ouest)"}, {"authorized_access_point": "Chine - Provinces"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/028212991", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028212991", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/173581638", "source": "VIAF"}], "variant_access_point": ["Ts'ing-hai (Chine)", "Tsinghai (Chine)", "青海省", "Qinghai Sheng", "མཚོ་སྔོན་", "mTsho sngon"], "authorized_access_point": "Qinghai (Chine)"} 1 +2024-09-10 15:47:06.555983 2024-09-10 15:47:06.555989 d359817c-b02d-4c79-a801-61dc04ab979f {"md5": "16492f4efe12c37106e97be2c307b2a7", "pid": "028213017", "note": [{"label": ["GDEL. Atlas Le Monde. Laval RVM, 1990-02"], "noteType": "dataSource"}, {"label": ["Province chinoise"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Chine (sud)"}, {"authorized_access_point": "Chine - Provinces"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/028213017", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028213017", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/172172257", "source": "VIAF"}], "variant_access_point": ["Hou-pei", "Hupeh", "湖北省", "Hubei Sheng"], "authorized_access_point": "Hubei (Chine ; province)"} 1 +2024-09-10 15:47:06.613734 2024-09-10 15:47:06.61374 c2ea6efe-4922-4f5c-8af7-d13aec5ab00f {"md5": "c38fb5ad0dc0312f73bb7fd3d0618a10", "pid": "028215346", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/028215346", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028215346", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040727688", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172765671", "source": "VIAF"}], "authorized_access_point": "Inde (nord)"} 1 +2024-09-10 15:47:06.675885 2024-09-10 15:47:06.675889 7c1243df-fd99-4dc0-a47f-b02e0b6bee5c {"md5": "67212c563eff2f3d38091d7f0aa11848", "pid": "028217160", "note": [{"label": ["GDEL. Dict. communes, 1984"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/028217160", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028217160", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/147742263", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Rougemont_(Doubs)", "source": "WIKIPEDIA"}], "authorized_access_point": "Rougemont (Doubs)"} 1 +2024-09-10 15:47:06.737664 2024-09-10 15:47:06.737667 f0157ef6-8537-4cc5-9003-eb28474b9520 {"md5": "3ea2b467f55a5b9d3768b47913b1d11f", "pid": "028245431", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Andhra Pradesh (Inde)"}, {"authorized_access_point": "Karnātaka (Inde)"}, {"authorized_access_point": "Kerala (Inde)"}, {"authorized_access_point": "Tamil Nadu (Inde)"}], "identifier": "http://www.idref.fr/028245431", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028245431", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040267547", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172928236", "source": "VIAF"}], "variant_access_point": ["Inde du sud", "Inde méridionale"], "authorized_access_point": "Inde (sud)"} 1 +2024-09-10 15:47:06.816686 2024-09-10 15:47:06.816691 9e72da93-a72c-49c2-b76a-526abe20ebd2 {"md5": "d1c0775962ddbdbf05821e39044781e7", "pid": "028289129", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/028289129", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028289129", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12015519n", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/133532530", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Châtillon-sur-Chalaronne", "source": "WIKIPEDIA"}], "authorized_access_point": "Châtillon-sur-Chalaronne (Ain ; région)"} 1 +2024-09-10 15:47:06.880417 2024-09-10 15:47:06.880422 39731448-7ec6-4852-a1b1-cd3dc6696c7e {"md5": "b6ab22c969671cea9ac5109b204b4053", "pid": "028355431", "note": [{"label": ["Allemagne (Est) ; Laval RVM, 2001-01", "SWD, 1995-04 distingue : Ostdeutschland ; Deutschland <Östliche Länder>"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les documents qui traitent de la partie orientale de l'Allemagne (à l'est de l'Elbe et dans les limites orientales de la période considérée) jusqu'en 1949 ou depuis 1990. Les documents sur la RDA de 1949 à 1990 sont sous la vedette Allemagne (République démocratique). Les documents sur les territoires autrefois allemands situés à l'est de la ligne Oder-Neisse sont sous la vedette : Territoires anciennement allemands de l'est"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/028355431", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028355431", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12020781m", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)042252997", "source": "GND"}], "variant_access_point": ["Allemagne - Länder orientaux", "Allemagne - Nouveaux Länder", "Allemagne (Nouveaux Länder)", "Allemagne de l'Est", "Allemagne orientale", "Deutschland (Östliche Länder)", "Deutschland (Ost)", "Länder orientaux (Allemagne)", "Neue Bundesländer", "Nouveaux Länder (Allemagne)", "Östliche Bundesländer", "Ostdeutschland"], "authorized_access_point": "Allemagne (est)"} 1 +2024-09-10 15:47:06.952421 2024-09-10 15:47:06.952424 ae24c335-cfd9-4029-8e9f-4caece17642e {"md5": "a2f0f80a8b30215166ec5ef7116f8b37", "pid": "028366360", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Bavière (Allemagne)"}, {"authorized_access_point": "Souabe (Allemagne)"}, {"authorized_access_point": "Bade-Wurtemberg (Allemagne)"}], "identifier": "http://www.idref.fr/028366360", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028366360", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040780228", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172711766", "source": "VIAF"}], "authorized_access_point": "Allemagne (sud)"} 1 +2024-09-10 15:47:07.017643 2024-09-10 15:47:07.017647 09617d38-de2e-4ca7-9e35-ce6ee5854323 {"md5": "c81752c88ef3b52cc1b6f53f7cf9acdc", "pid": "028388569", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/028388569", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028388569", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12023403q", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040780538", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/18144647635337368856", "source": "VIAF"}], "authorized_access_point": "Allemagne (sud-ouest)"} 1 +2024-09-10 15:47:07.078873 2024-09-10 15:47:07.078876 965954af-c996-4aac-aa2c-8b30b0abbdb3 {"md5": "09b859c2b6fe8389fd36bc10a078b68c", "pid": "028411773", "note": [{"label": ["GDEL. Atlas Le Monde", "http://www.geonames.org/, 2020-06-22"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/028411773", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028411773", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb120251877", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/14144647634406825410", "source": "VIAF"}], "variant_access_point": ["Rio Colorado", "Colorado River", "Grand River (cours d'eau)"], "authorized_access_point": "Colorado (cours d'eau)"} 1 +2024-09-10 15:47:07.151366 2024-09-10 15:47:07.151372 a6f1b632-988c-496f-9750-61a36343dad6 {"md5": "232673803a6ede7a1fd7d423a6937451", "pid": "028554108", "note": [{"label": ["GDEL. SY 1990/91"], "noteType": "dataSource"}, {"label": ["Demi-canton issu de la scission du canton de Bâle en Bâle-Ville et Bâle-Campagne (1833)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Suisse - Cantons"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/028554108", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028554108", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040046192", "source": "DNB"}, {"type": "uri", "value": "http://viaf.org/viaf/2975148574389124430005", "source": "VIAF"}], "variant_access_point": ["Basel-Landschaft (Suisse)"], "authorized_access_point": "Bâle-Campagne (Suisse)"} 1 +2024-09-10 15:47:07.236024 2024-09-10 15:47:07.236029 b79e28a8-5651-4990-b169-581896bb9194 {"md5": "1cb5790b6e2891d582f1e75b03d56c20", "pid": "028565924", "note": [{"label": ["GDEL. Pouilles ; Atlas Le Monde"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Italie (sud)"}, {"authorized_access_point": "Italie - Régions"}, {"authorized_access_point": "Daunie"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/028565924", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028565924", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12037604s", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)04002508X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/151256943", "source": "VIAF"}], "relation_pid": {"type": "redirect_from", "value": "255615825"}, "variant_access_point": ["Apulia", "Apulie", "Pouille (Italie)", "Pouilles", "Puglia (Italie)"], "authorized_access_point": "Pouilles (Italie)"} 1 +2024-09-10 15:47:08.41296 2024-09-10 15:47:08.412965 eef861fd-a0c3-4d37-83aa-af6565a68dec {"md5": "942731cc102d3d9bdb5b452559c37297", "pid": "028992318", "note": [{"label": ["GDEL. SY 1990/91"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Suisse - Cantons"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/028992318", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028992318", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040680649", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/20144647636134910488", "source": "VIAF"}], "authorized_access_point": "Zoug (Suisse ; canton)"} 1 +2024-09-10 15:47:07.301038 2024-09-10 15:47:07.301045 4becfabb-1e24-4747-8865-747eb28ea6c2 {"md5": "844ca011d556d3a0e75d32193b195bca", "pid": "028567005", "note": [{"label": ["DHGE. Mourre, 1996"], "noteType": "dataSource"}, {"label": ["L'introduction de la Réforme à Bâle en 1529 amena la scission entre la ville réformée et l'évêque catholique, préfiguration de la scission du canton en deux demi-cantons en 1833"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/028567005", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028567005", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb120377073", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040802752", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/599144783181696879819", "source": "VIAF"}], "variant_access_point": ["Ancien évêché de Bâle (Suisse)"], "authorized_access_point": "Bâle (Principauté ecclésiastique)"} 1 +2024-09-10 15:47:07.365724 2024-09-10 15:47:07.365728 f9e751b6-8eb0-436a-b673-3b032c47cf7b {"md5": "0dbbddcf3a217e05bb6a76b4cc8cf8af", "pid": "028601475", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/028601475", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028601475", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040932079", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172656768", "source": "VIAF"}], "variant_access_point": ["Alpes du Sud (France)"], "authorized_access_point": "Alpes (France ; sud)"} 1 +2024-09-10 15:47:07.441764 2024-09-10 15:47:07.441767 2b3ba7a3-ba05-4bb6-b0d6-dc5514acc8cf {"md5": "68fd93fe317d43ab0548009dbd7d9f24", "pid": "028654706", "note": [{"label": ["GDEL. BN Service Asie"], "noteType": "dataSource"}, {"label": ["Province de Chine"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Chine (sud)"}, {"authorized_access_point": "Chine - Provinces"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/028654706", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028654706", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb120445389", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/172172578", "source": "VIAF"}], "variant_access_point": ["Kouei-tcheou (Chine)", "Koueitcheou (Chine)", "Kui-chou (Chine)", "Kweichow (Chine)", "貴州省", "贵州省", "Guizhou Sheng"], "authorized_access_point": "Guizhou (Chine ; province)"} 1 +2024-09-10 15:47:07.500735 2024-09-10 15:47:07.500739 3288b897-8b25-4387-9b24-faf0bf71d15b {"md5": "36819aaff74dc479378fc2c6aaabc3bf", "pid": "028695984", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/028695984", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028695984", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/136075732", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Béarn", "source": "WIKIPEDIA"}], "authorized_access_point": "Béarn (France ; sud)"} 1 +2024-09-10 15:47:07.560432 2024-09-10 15:47:07.560436 4010740c-f5e9-4dab-b49b-4d2251b8b173 {"md5": "3db0be0ef9d8ee6814d4ce74b20a5364", "pid": "028700570", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/028700570", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028700570", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)042142016", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173148574253724430006", "source": "VIAF"}], "authorized_access_point": "Suisse (nord-ouest)"} 1 +2024-09-10 15:47:07.627111 2024-09-10 15:47:07.627116 1dcd9f8b-308d-4398-a233-d07956c83f1e {"md5": "d6ada17142f2329fc949a5f5b616b612", "pid": "02870097X", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Piémont (Italie)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/02870097X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02870097X", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/123794615", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Ville_métropolitaine_de_Turin", "source": "WIKIPEDIA"}], "variant_access_point": ["Turin (Italie ; région)", "Torino (Italie ; province)"], "authorized_access_point": "Turin (Italie ; province)"} 1 +2024-09-10 15:47:07.68623 2024-09-10 15:47:07.686239 36295697-e6cf-4f98-ae2e-d4c68056d6a4 {"md5": "1ad607ddd21d266842e14c33c79a7d8e", "pid": "028706137", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/028706137", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028706137", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/684148574379924430005", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Saint-Symphorien-de-Lay", "source": "WIKIPEDIA"}], "authorized_access_point": "Saint-Symphorien-de-Lay (Loire ; région)"} 1 +2024-09-10 15:47:07.747383 2024-09-10 15:47:07.747388 1b3becb0-5dbf-4580-ae76-d9fb5be5944c {"md5": "46c7b2158740e66ca893f73785afef53", "pid": "028727444", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/028727444", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028727444", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040216934", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/1458148574258924430003", "source": "VIAF"}], "authorized_access_point": "Saint-Gothard, Tunnel ferroviaire du (Suisse)"} 1 +2024-09-10 15:47:07.820063 2024-09-10 15:47:07.820067 b9542f15-1f0d-42c0-8e24-a496dcab1666 {"md5": "cf45aa58d56ee438810f5a18bd5d8289", "pid": "028877764", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/028877764", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028877764", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12062211c", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)04000019", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/21144647635437368856", "source": "VIAF"}], "authorized_access_point": "Aar (Suisse ; cours d'eau)"} 1 +2024-09-10 15:47:07.879114 2024-09-10 15:47:07.879118 e54e35c7-de4b-40a4-bc24-26133ed17765 {"md5": "d4a652fe2ff83d76e437420b591f8f17", "pid": "028889460", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/028889460", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028889460", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/148577329", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Tunnel_du_Mont-Blanc", "source": "WIKIPEDIA"}], "variant_access_point": ["Tunnel du Mont Blanc"], "authorized_access_point": "Mont Blanc, Tunnel du"} 1 +2024-09-10 15:47:07.939067 2024-09-10 15:47:07.939071 3c412a7e-5587-4905-8e43-40eca3c497c7 {"md5": "2b00b5b02622f8cb464578beebd0fece", "pid": "028913663", "note": [{"label": ["GLU"], "noteType": "dataSource"}, {"label": ["Partie jurassienne de la Suisse frontalière, autour de Porrentruy"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Porrentruy (Suisse ; région)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/028913663", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028913663", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb120651067", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040008657", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/25144647637959901293", "source": "VIAF"}], "authorized_access_point": "Ajoie (Suisse)"} 1 +2024-09-10 15:47:08.001403 2024-09-10 15:47:08.001406 b5f77a65-9867-4dce-a437-47902bc7ffeb {"md5": "6a7f11bd9b87e3af976ab27f1fb58692", "pid": "028928709", "note": [{"label": ["GDEL. Atlas Le Monde. BN Service Asie"], "noteType": "dataSource"}, {"label": ["Province chinoise"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Chine (sud)"}, {"authorized_access_point": "Chine - Provinces"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/028928709", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028928709", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12066284j", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/172332872", "source": "VIAF"}], "variant_access_point": ["Chiang-hsi (Chine)", "Kiang-si (Chine)", "Kiangsi (Chine)", "江西省", "Jiangxi Sheng"], "authorized_access_point": "Jiangxi (Chine ; province)"} 1 +2024-09-10 15:47:08.057791 2024-09-10 15:47:08.057794 ad88cff9-5947-4574-ace9-96e1b5dc5458 {"md5": "8e8a0b78ef7d480a5fb4daad9316c9ef", "pid": "028931491", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/028931491", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028931491", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)949642762", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173637213", "source": "VIAF"}], "authorized_access_point": "Léman, Lac (région)"} 1 +2024-09-10 15:47:08.12209 2024-09-10 15:47:08.122093 695d7ada-390c-40cf-a90c-6334232c7e50 {"md5": "eb03c816740d15e65d5ee14ebf4b20f5", "pid": "028979885", "note": [{"label": ["Dict. communes, 1984"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/028979885", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028979885", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12070283z", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/245870249", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Saint-Bonnet-le-Courreau", "source": "WIKIPEDIA"}], "authorized_access_point": "Saint-Bonnet-le-Courreau (Loire)"} 1 +2024-09-10 15:47:08.186861 2024-09-10 15:47:08.186865 3082e658-a204-4557-a263-ee5a9d820309 {"md5": "0eca779636984d825bfd223ae95010c1", "pid": "028988310", "note": [{"label": ["Petit Robert des noms propres 2016", "Grand Larousse universel", "L'atlas National geographic, 2007 : Schwytz", "Wikipédia : canton de Schwytz [ou Schwyz] - https://fr.wikipedia.org (2017-10-21)", "Statoids - http://www.statoids.com (2017-10-21)", "Kanton Schwyz - https://www.sz.ch (2017-10-21)", "Dict. historique de la Suisse : Schwytz (canton) - http://www.hls-dhs-dss.ch (2017-10-21)"], "noteType": "dataSource"}, {"label": ["Canton germanophone du centre-est ; capitale : Schwyz. Il est un des 4 cantons historiques ayant donné naissance à la Confédération helvétique au 19e siècle, après avoir souvent lutté contre les Habsbourg. Son nom a donné naissance à celui du pays tout entier - dans sa version allemande 'Schweiz'. Pour la ville comme pour le canton, on peut dire aussi \\"Schwytz\\", qui est une graphie romande, mais dans sa version française, la Constitution suisse emploie le terme \\"Schwyz"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Suisse - Cantons"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/028988310", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028988310", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb120709591", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040540197", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/134271490", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Catégorie:Canton_de_Schwytz", "source": "WIKIPEDIA"}], "classification": [{"name": "Géographie de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "914"}], "variant_access_point": ["Kanton Schwyz (Suisse)", "Pays de Schwyz (Suisse)", "Schweitz (Suisse ; canton)", "Schwytz (Suisse ; canton)", "Svitto (Suisse ; canton)", "Sviz (Suisse ; canton)"], "authorized_access_point": "Schwyz (Suisse ; canton)"} 1 +2024-09-10 15:47:08.286283 2024-09-10 15:47:08.286287 afdcb256-a0ca-4ae1-81eb-45b421ab0596 {"md5": "666b248aedca84d0baa599fad41379fb", "pid": "028991575", "note": [{"label": ["GDEL"], "noteType": "dataSource"}, {"label": ["Ancien canton suisse qui s'est scindé en 1597 en 2 demi-cantons : Appenzell Rhodes-Extérieures et Appenzell Rhodes-Intérieures ; chef-lieu : Appenzell"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Appenzell Rhodes-Extérieures (Suisse)"}, {"authorized_access_point": "Appenzell Rhodes-Intérieures (Suisse)"}], "identifier": "http://www.idref.fr/028991575", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028991575", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb120712100", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040024873", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/127860862", "source": "VIAF"}], "authorized_access_point": "Appenzell (Suisse ; canton)"} 1 +2024-09-10 15:47:08.351105 2024-09-10 15:47:08.351109 9ba20bd4-4ce1-4974-9dd2-5a3f09a1810f {"md5": "4714f1a00b893106ceab521e62188526", "pid": "028992105", "note": [{"label": ["Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgenössische Stabsbüreau unter der direktion von Oberst Siegfried veröffentlicht", "GDEL. SY 1990/91"], "noteType": "dataSource"}, {"label": ["Canton suisse"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Suisse - Cantons"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/028992105", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028992105", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12071251k", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/152492599", "source": "VIAF"}, {"type": "uri", "value": "http://viaf.org/viaf/170356636", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Catégorie:Canton_de_Glaris", "source": "WIKIPEDIA"}], "relation_pid": {"type": "redirect_from", "value": "157134822"}, "variant_access_point": ["Glarus (Suisse ; canton)"], "authorized_access_point": "Glaris (Suisse ; canton)"} 1 +2024-09-10 15:47:08.477605 2024-09-10 15:47:08.477609 a638db12-6137-460f-8cae-7e70743f41f0 {"md5": "bb9edda7349c3fe5072983ff5654d50f", "pid": "028996593", "note": [{"label": ["GDEL. Atlas Le Monde. BN Service chinois"], "noteType": "dataSource"}, {"label": ["Province chinoise"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Chine (nord)"}, {"authorized_access_point": "Chine - Provinces"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/028996593", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028996593", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12071578f", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/142766112", "source": "VIAF"}], "variant_access_point": ["Chan-tong", "Chan-toung", "Shan-tung", "Shangdong", "Shantung", "山東省", "山东省", "Shandong Sheng"], "authorized_access_point": "Shandong (Chine ; province)"} 1 +2024-09-10 15:47:08.548328 2024-09-10 15:47:08.548332 473e08c6-4fb1-42ea-a860-46f8f212c262 {"md5": "5bdb578e267f81ef05796c7319a7dad9", "pid": "028996690", "note": [{"label": ["GDEL. BN Service chinois"], "noteType": "dataSource"}, {"label": ["Province chinoise"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Chine (nord)"}, {"authorized_access_point": "Chine - Provinces"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/028996690", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028996690", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12071585q", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/172144783025014766925", "source": "VIAF"}], "variant_access_point": ["Hê-pei (Chine)", "Ho-pei (Chine)", "Hopeh (Chine)", "河北省", "Hebei Sheng"], "authorized_access_point": "Hebei (Chine ; province)"} 1 +2024-09-10 15:47:08.608119 2024-09-10 15:47:08.608123 0536ea80-e71a-4eb0-ba02-6e529841520f {"md5": "232ba439f76a51f3faa3cfcbe51e3f8a", "pid": "029152887", "note": [{"label": ["Laval RVM, 1992-08"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/029152887", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029152887", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12083794x", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)950025607", "source": "GND"}], "authorized_access_point": "Suisse - 1845-1847 (Sonderbund)"} 1 +2024-09-10 15:47:08.670158 2024-09-10 15:47:08.670161 fca50e80-b317-4bdb-a1f5-7b4277be54d1 {"md5": "556da92030ff491b0e95663e2d8f503e", "pid": "029183340", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/029183340", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029183340", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb120863320", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040040070", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/131328802", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Avenches", "source": "WIKIPEDIA"}], "variant_access_point": ["Aventicum (ville ancienne)"], "authorized_access_point": "Avenches (Suisse)"} 1 +2024-09-10 15:47:08.731712 2024-09-10 15:47:08.731717 fec61e29-d2e2-46b0-9513-6a7e17c5ffa3 {"md5": "46986a42fa65df645e7320486d6b5c05", "pid": "029216540", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "If (France ; île)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/029216540", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029216540", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12088946t", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/249396875", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Château_d'If", "source": "WIKIPEDIA"}], "variant_access_point": ["Marseille (Bouches-du-Rhône) - Château d'If"], "authorized_access_point": "If, Château d' (Bouches-du-Rhône)"} 1 +2024-09-10 15:47:08.795168 2024-09-10 15:47:08.795172 8d34b06b-2718-4d5a-b772-319b53f1218e {"md5": "b108336a7f71ae237fecd106559c1825", "pid": "029220661", "note": [{"label": ["Dict. communes, 1984"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/029220661", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029220661", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12089241d", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/132623678", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/La_Motte-Servolex", "source": "WIKIPEDIA"}], "variant_access_point": ["Motte-Servolex, La (Savoie)"], "authorized_access_point": "La Motte-Servolex (Savoie)"} 1 +2024-09-10 15:47:08.855169 2024-09-10 15:47:08.855173 5764417b-8e36-48fb-9caa-5a00bc80799b {"md5": "2ddee88e26ee7648d4a4d54580e95fc6", "pid": "029345529", "note": [{"label": ["GDEL. Atlas Le Monde"], "noteType": "dataSource"}, {"label": ["Province chinoise"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Chine (sud)"}, {"authorized_access_point": "Chine - Provinces"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/029345529", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029345529", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/172766187", "source": "VIAF"}], "variant_access_point": ["Yun-nan", "雲南省", "云南省", "Yunnan Sheng"], "authorized_access_point": "Yunnan (Chine ; province)"} 1 +2024-09-10 15:47:08.918376 2024-09-10 15:47:08.91838 245c80cf-6c72-4bb4-aa1c-7a3b8f6b760b {"md5": "1bd71ff92067630fba0d407783b0003f", "pid": "029368707", "note": [{"label": ["Atlas universalis"], "noteType": "dataSource"}, {"label": ["Capitale de la province du Chimborazo"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/029368707", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029368707", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12101014j", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/127968369", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Riobamba", "source": "WIKIPEDIA"}], "authorized_access_point": "Ríobamba (Équateur)"} 1 +2024-09-10 15:47:08.975782 2024-09-10 15:47:08.975786 a0658b99-eac6-4d81-aa59-e3646921a813 {"md5": "f0dd4a7dabe2e454f983c5b7bd914b9e", "pid": "029453208", "note": [{"label": ["GDEL. SY 1990/91"], "noteType": "dataSource"}, {"label": ["Canton suisse"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Suisse - Cantons"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/029453208", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029453208", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12107734j", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040621294", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/486145858125123022135", "source": "VIAF"}, {"type": "uri", "value": "http://viaf.org/viaf/124361741", "source": "VIAF"}], "relation_pid": {"type": "redirect_from", "value": "225674920"}, "authorized_access_point": "Uri (Suisse)"} 1 +2024-09-10 15:47:09.042927 2024-09-10 15:47:09.04293 7f3db211-3d1d-42d4-a327-4ec82aa83003 {"md5": "2eef14f668f40bd254303cdad0b73ace", "pid": "029459060", "note": [{"label": ["GLU"], "noteType": "dataSource"}, {"label": ["Commune du Valais"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/029459060", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029459060", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)04118257X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/249012358", "source": "VIAF"}], "variant_access_point": ["Acaunum (ville ancienne)", "Agaunum (ville ancienne)", "Saint-Maurice d'Agaune (Valais, Suisse)"], "authorized_access_point": "Saint-Maurice (Valais, Suisse)"} 1 +2024-09-10 15:47:09.101844 2024-09-10 15:47:09.101847 59768389-e2c3-4d8e-9573-2becd725b9ee {"md5": "7b34ae2e00240623c28645b855b0e2a7", "pid": "029502764", "note": [{"label": ["Alps, Eastern ; LCSH, 1988-12. Alpes orientales ; Laval RVM, 1988-12"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Alpes dinariques"}, {"authorized_access_point": "Alpes juliennes"}, {"authorized_access_point": "Dolomites (Italie ; massif)"}, {"authorized_access_point": "Alpes carniques"}], "identifier": "http://www.idref.fr/029502764", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029502764", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12111693j", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040757242", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173146304", "source": "VIAF"}], "variant_access_point": ["Alpes orientales"], "authorized_access_point": "Alpes (est)"} 1 +2024-09-10 15:47:09.163632 2024-09-10 15:47:09.163636 114a0aa1-c81f-4b4c-83e9-01ff33f68f87 {"md5": "0454e7cdffedb81ace7899de33a51a4e", "pid": "029508347", "note": [{"label": ["GDEL. Dict. communes, 1984"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/029508347", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029508347", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12112125x", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/170363823", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/La_Turbie", "source": "WIKIPEDIA"}], "variant_access_point": ["Turbie, La (Alpes-Maritimes)"], "authorized_access_point": "La Turbie (Alpes-Maritimes)"} 1 +2024-09-10 15:47:09.224773 2024-09-10 15:47:09.224776 e7f6598a-6628-4c0e-85e2-d92abd370bf5 {"md5": "34cdda9131bed78cb147ee9d0d4c9c1b", "pid": "029571219", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Charolais (France)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/029571219", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029571219", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11956257v", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/357144783127363163101", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Charolais_(pays)", "source": "WIKIPEDIA"}], "authorized_access_point": "Charolles (Saône-et-Loire ; région)"} 1 +2024-09-10 15:47:09.280776 2024-09-10 15:47:09.28078 849b2b36-777f-487d-aaac-ce64f6341dc0 {"md5": "1e5c41e1b450f3310769223cd529f1ec", "pid": "029592259", "note": [{"label": ["Dict. communes, 1984"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/029592259", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029592259", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb121185395", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/143067429", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Pont-d'Ain", "source": "WIKIPEDIA"}], "authorized_access_point": "Pont-d'Ain (Ain)"} 1 +2024-09-10 15:47:09.343092 2024-09-10 15:47:09.343095 ae22643e-c65b-4c48-9ea0-61883e631e35 {"md5": "2746b80c386b3a1e3f63f3b6d47c9a34", "pid": "029680344", "note": [{"label": ["Dict. communes, 1984"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/029680344", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029680344", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/245116875", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Aoste_(Isère)", "source": "WIKIPEDIA"}], "authorized_access_point": "Aoste (Isère)"} 1 +2024-09-10 15:47:09.405071 2024-09-10 15:47:09.405075 defd7671-c72f-48aa-a3ec-5d05be74f9bc {"md5": "0948ab5c7dd5252555249c0875bb3e45", "pid": "029693756", "note": [{"label": ["Atlas Le Monde"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/029693756", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029693756", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)041193458", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/42148570488424310649", "source": "VIAF"}], "authorized_access_point": "Valangin (Neuchâtel, Suisse)"} 1 +2024-09-10 15:47:09.480428 2024-09-10 15:47:09.480433 1ca3f7e2-e8e7-40f6-bfda-00a0b99bac7a {"md5": "9686febc13709c1a1f285996cce3faed", "pid": "029693772", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/029693772", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029693772", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb121262977", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)946532389", "source": "GND"}], "variant_access_point": ["Valangin (Neuchâtel, Suisse) - Château de Valangin"], "authorized_access_point": "Valangin (Neuchâtel, Suisse) - Château"} 1 +2024-09-10 15:47:09.547052 2024-09-10 15:47:09.547056 be148b9b-1f98-451b-bc28-c0db31ee0439 {"md5": "1ae1eb3a664809e6b84b52069448574f", "pid": "02976436X", "note": [{"label": ["GDEL"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent de l'Aquitaine historique et/ou de l'actuelle région d'Aquitaine"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "France (sud-ouest)"}, {"authorized_access_point": "France - Régions"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/02976436X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02976436X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12131785m", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)04002525X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/127778483", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Aquitaine_(ancienne_région_administrative)", "source": "WIKIPEDIA"}], "variant_access_point": ["Aquitaine"], "authorized_access_point": "Aquitaine (France)"} 1 +2024-09-10 15:47:09.619086 2024-09-10 15:47:09.619091 3982601d-c389-4894-8039-08bdf84a00ac {"md5": "d924369aa280d61f2732d0a4ef098162", "pid": "029805279", "note": [{"label": ["La préhistoire / D. Vialou, 2004 : Petit-Chasseur", "Dict. historique de la Suisse (art. : Sion) - http://www.hls-dhs-dss.ch (2015-06-25)", "Le néolithique en Europe, 2007 : Sion (Petit-Chasseur)", "Dict. de la préhistoire / A. Leroi-Gourhan, 2005 : Sion-Petit-Chasseur"], "noteType": "dataSource"}, {"label": ["Site préhistorique (néolithique et âge du bronze) du quartier de Saint-Guérin à Sion (Valais), autour de l'avenue du Petit-Chasseur et des rues adjacentes (habitats cortaillod et nécropole mégalithique (dolmens) avec stèles anthropomorphes)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/029805279", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029805279", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb121353008", "source": "BNF"}], "classification": [{"name": "Géographie de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "914"}, {"name": "Archéologie. Histoire ancienne", "type": "bf:ClassificationDdc", "classificationPortion": "930"}], "variant_access_point": ["Petit-Chasseur (Suisse ; site archéologique)", "Sion-Petit-Chasseur (Suisse ; site archéologique)"], "authorized_access_point": "Sion (Valais, Suisse) - Site archéologique du Petit-Chasseur"} 1 +2024-09-10 15:47:09.682489 2024-09-10 15:47:09.682493 be7fa1d9-4838-4545-8a08-b24193b3afd8 {"md5": "dd04c38d5bbcf450af315d578f946016", "pid": "029857678", "note": [{"label": ["GDEL. Atlas Le Monde"], "noteType": "dataSource"}, {"label": ["Province chinoise"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Chine (sud)"}, {"authorized_access_point": "Chine - Provinces"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/029857678", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029857678", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12139611q", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/173310302", "source": "VIAF"}], "variant_access_point": ["Fou-kien (Chine)", "Fukien (Chine)", "福建省", "Fujian Sheng"], "authorized_access_point": "Fujian (Chine ; province)"} 1 +2024-09-10 15:47:09.755039 2024-09-10 15:47:09.755043 c97f233c-ceee-44d6-85e3-276a223b6e8b {"md5": "12d91eb7bf636046bc40517535ef5189", "pid": "02985850X", "note": [{"label": ["GDEL. Dict. communes, 1984"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/02985850X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02985850X", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/148067721", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Virieu-le-Grand", "source": "WIKIPEDIA"}], "authorized_access_point": "Virieu-le-Grand (Ain)"} 1 +2024-09-10 15:47:09.814863 2024-09-10 15:47:09.814867 d116d9aa-b834-4c28-b6e5-71d215302052 {"md5": "2855be5ab8016bf697e48b61bb40b666", "pid": "030398614", "note": [{"label": ["GDEL. Laval RVM, 1990-08"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Jungfrau (Suisse ; mont)"}], "identifier": "http://www.idref.fr/030398614", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030398614", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12182069q", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040000206", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/30144647639575548307", "source": "VIAF"}], "variant_access_point": ["Aar-Gothard, Massif de l' (Suisse)", "Gothard, Massif du (Suisse)", "Jungfrau, Massif de la (Suisse)", "Saint-Gothard, Massif du (Suisse)"], "authorized_access_point": "Aar, Massif de l' (Suisse)"} 1 +2024-09-10 15:47:09.87909 2024-09-10 15:47:09.879095 c2b53ba6-1d7a-4d19-ba99-687585d3d196 {"md5": "2b911897820e1a9f0272f7dd18a0d4b6", "pid": "030512425", "note": [{"label": ["Dict. communes, 1984"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/030512425", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030512425", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb133247112", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/168033061", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Beaujeu_(Rhône)", "source": "WIKIPEDIA"}], "authorized_access_point": "Beaujeu (Rhône)"} 1 +2024-09-10 15:47:09.940384 2024-09-10 15:47:09.940388 6f6fd7a2-fcfd-4c35-a519-2bd8a6639b86 {"md5": "23999c3d90343b8ab0e4ce60d7c3e24f", "pid": "030519799", "note": [{"label": ["Wikipédia : château de Valère - https://fr.wikipedia.org (2021-08-10)", "Wikipedia : Basilica di Valère, castello di Valère - https:/:it.wikipedia.org (2021-08-10)", "Wikipedia : Basilique de Valère (oder Basilika von Valeria, Schloss Valeria) - https://de.wikipedia.org (2021-08-10)", "Petit Robert des noms propres, 2015 (art. : Sion) : église Notre-Dame de Valère", "Grand Larousse universel (art. : Sion) : église Notre-Dame de Valère", "Guides Voir : Suisse, 2012", "Sion Tourisme : château de Valère (interface en français), Schloss Valeria (interface en allemand) - https://siontourisme.ch (2021-08-10)"], "noteType": "dataSource"}, {"label": ["Le \\"château de Valère\\", qui couronne la colline du même nom dominant Sion, est en réalité une église fortifiée des 12e-13e siècles, église entourée de maisons qui furent résidence des chanoines de la cathédrale de la ville, le tout protégé par une enceinte (remparts et tours), le clocher de l'église étant en quelque sorte le donjon de ce véritable petit bourg médiéval. L'église Notre-Dame de Valère fut élevée au rang de basilique (mineure) sous le pontificat de Jean-Paul II, en 1987. Ses chapiteaux sont romans, ses fresques, gothiques ; son orgue de la fin du 14e siècle est le plus ancien du monde sur lequel on peut encore jouer. Le complexe abrite le Musée d'histoire du Valais"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCA", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/names/n91123541", "source": "LCA"}], "authorized_access_point": "Notre-Dame de Valère (Church : Sion, Switzerland)"}], "identifier": "http://www.idref.fr/030519799", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030519799", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12191796h", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)042499909", "source": "GND"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}, {"name": "Art et science militaires", "type": "bf:ClassificationDdc", "classificationPortion": "355"}, {"name": "Architecture", "type": "bf:ClassificationDdc", "classificationPortion": "720"}, {"type": "bf:ClassificationDdc", "classificationPortion": "914"}], "variant_access_point": ["Basilica di Valère (Sion, Valais, Suisse)", "Basilika von Valeria (Sion, Valais, Suisse)", "Basilique de Valère (Sion, Valais, Suisse)", "Basilique Notre-Dame de Valère (Sion, Valais, Suisse)", "Castello di Valère (Sion, Valais, Suisse)", "Château de Valère (Sion, Valais, Suisse)", "Église Notre-Dame de Valère (Sion, Valais, Suisse)", "Kirche von Valeria (Sion, Valais, Suisse)", "Notre-Dame de Valère, Basilique (Sion, Valais, Suisse)", "Schloss Valeria (Sion, Valais, Suisse)", "Valère, Château de (Sion, Valais, Suisse)", "Valeria, Schloss (Sion, Valais, Suisse)"], "authorized_access_point": "Sion (Valais, Suisse) - Château de Valère"} 1 +2024-09-10 15:47:10.002599 2024-09-10 15:47:10.002603 1510bdc2-06c4-4500-b522-7024f896f794 {"md5": "b0e3798a2a9b803b4c9375717db034eb", "pid": "03055537X", "note": [{"label": ["GLU"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Sondrio (Italie ; province)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/03055537X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03055537X", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)041081757", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/8711148574329824430003", "source": "VIAF"}], "variant_access_point": ["Valtellina (Italie)"], "authorized_access_point": "Valteline (Italie)"} 1 +2024-09-10 15:47:10.063737 2024-09-10 15:47:10.063745 86ecf974-b197-42c2-977e-549f8fa0437b {"md5": "b64e148d0593ac4861c9322daf6c3d38", "pid": "030628156", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/030628156", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030628156", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12200597c", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040050114", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/639144783049465966845", "source": "VIAF"}], "variant_access_point": ["Alpes bavaroises"], "authorized_access_point": "Alpes (Allemagne)"} 1 +2024-09-10 15:47:10.128567 2024-09-10 15:47:10.12857 6f895c96-edd7-4c76-88a5-662484bbec5d {"md5": "aa2e6b954fa641fd282a261ed62dd813", "pid": "030640091", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Aravis, Chaîne des (France)"}], "identifier": "http://www.idref.fr/030640091", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030640091", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12201582k", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040932060", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172820298", "source": "VIAF"}], "variant_access_point": ["Alpes du Nord (France)"], "authorized_access_point": "Alpes (France ; nord)"} 1 +2024-09-10 15:47:10.237424 2024-09-10 15:47:10.237426 def402c6-dd98-48e7-9a66-19785e7479a2 {"md5": "87e179b3fdde9c47509d94af8581f6e6", "pid": "031139876", "note": [{"label": ["GDEL"], "noteType": "dataSource"}, {"label": ["Commune du canton de Fribourg (Suisse), chef-lieu du district du Lac. Elle est officiellement bilingue français-allemand. Nom allemand : Murten"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Fribourg (Suisse ; canton)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/031139876", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031139876", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040751058", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/124377145", "source": "VIAF"}, {"type": "uri", "value": "http://hls-dhs-dss.ch/articles/001014/", "source": "DHS"}], "authorized_access_point": "Morat (Fribourg, Suisse)"} 1 +2024-09-10 15:47:10.298218 2024-09-10 15:47:10.298222 97e21a8c-e84e-4218-8951-a171c0a97570 {"md5": "02b2062410b47cd35f6fa634f29ae508", "pid": "031211097", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/031211097", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031211097", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12246994q", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040658236", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/621144783051845602289", "source": "VIAF"}], "variant_access_point": ["Suisse occidentale"], "authorized_access_point": "Suisse (ouest)"} 1 +2024-09-10 15:47:10.355101 2024-09-10 15:47:10.355104 3ccf34c9-5713-4a2a-a43d-0cd47023683b {"md5": "06cd698c8d9609680315aa9042c6015e", "pid": "031649424", "note": [{"label": ["GeoNames (2018-06-27)"], "noteType": "dataSource"}, {"label": ["Aix-la-Chapelle est une ville d'Allemagne située dans le Land de Rhénanie-du-Nord-Westphalie. Elle se situe à 5 km de la jonction des frontières de l'Allemagne, des Pays-Bas et de la Belgique. C'est la ville la plus à l'ouest de l'Allemagne", "Coordonnées en degrés séxagésimaux : N 50°46′36″ / E 6°05′00″"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Rhénanie du Nord-Westphalie (Allemagne)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/031649424", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031649424", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12282480h", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040000079", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/124330404", "source": "VIAF"}], "relation_pid": {"type": "redirect_from", "value": "228265843"}, "variant_access_point": ["Aachen", "Aken", "Akwizgran", "Aquisgrán", "Aquisgrano"], "authorized_access_point": "Aix-la-Chapelle (Allemagne ; région)"} 1 +2024-09-10 15:47:10.414306 2024-09-10 15:47:10.414311 8bc41874-3c68-447e-9118-fedd2623aa06 {"md5": "0c4da5774060196625afc9592bfa7e37", "pid": "03168520X", "note": [{"label": ["Dict. communes, 1992"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/03168520X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03168520X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12285327h", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/135027706", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Meillonnas", "source": "WIKIPEDIA"}], "authorized_access_point": "Meillonnas (Ain)"} 1 +2024-09-10 15:47:10.471602 2024-09-10 15:47:10.471605 61ab9af9-6f18-402c-ae92-4be7811ac0c2 {"md5": "bdb8e962cf151f40f03a03aa4c4c0a7b", "pid": "031702473", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Madagascar"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Betsiboka (Madagascar ; région)"}], "identifier": "http://www.idref.fr/031702473", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031702473", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb122867940", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/131443013", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Mahajanga", "source": "WIKIPEDIA"}], "variant_access_point": ["Majunga (Madagascar)", "Massali"], "authorized_access_point": "Mahajanga (Madagascar)"} 1 +2024-09-10 15:47:10.528435 2024-09-10 15:47:10.52844 749899ab-2684-44f5-9610-36ac0f4b9f4c {"md5": "f7f6143258c4536cb70030f51284c530", "pid": "031977561", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/031977561", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031977561", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb123094336", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/233850704", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Bourg-Saint-Maurice", "source": "WIKIPEDIA"}], "authorized_access_point": "Bourg-Saint-Maurice (Savoie ; région)"} 1 +2024-09-10 15:47:10.589083 2024-09-10 15:47:10.589087 cb325cdc-66a3-4478-976d-0e6c7529b2b1 {"md5": "b667d21c75fae791bc83d961f4609c1c", "pid": "032028555", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/032028555", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032028555", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12313654g", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040583988", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/430144783136365031650", "source": "VIAF"}], "variant_access_point": ["Alpes du Sud", "Alpes méridionales"], "authorized_access_point": "Alpes (Sud)"} 1 +2024-09-10 15:47:10.649508 2024-09-10 15:47:10.649511 bc444a7e-4c50-461d-9acd-0ca976f2056a {"md5": "b097ce355394c0423a87d4d0edfb4fa0", "pid": "032029667", "note": [{"label": ["Dict. communes, 1992"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/032029667", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032029667", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12313753d", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/142064160", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Virieu-le-Petit", "source": "WIKIPEDIA"}], "authorized_access_point": "Virieu-le-Petit (Ain)"} 1 +2024-09-10 15:47:10.71051 2024-09-10 15:47:10.710513 bf323342-e5be-4859-95f3-ea2391dfd93e {"md5": "a4c9669f44acf1811f19aa023cb52b7e", "pid": "03210572X", "note": [{"label": ["Hauterive-Champréveyres, les plantes de l'âge du Bronze / C. Jacquat, 1988"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/03210572X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03210572X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12320021b", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)043212646", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/1147309939037850707", "source": "VIAF"}], "variant_access_point": ["Hauterive-Champréveyres (Suisse ; site archéologique)"], "authorized_access_point": "Champréveyres (Suisse ; site archéologique)"} 1 +2024-09-10 15:47:10.778231 2024-09-10 15:47:10.778235 a1c3aafb-91e2-4a64-8b10-5c36f877b1ce {"md5": "82532410c9764db60bfb9475e4b096cb", "pid": "03261991X", "note": [{"label": ["Dict. géol., 1988"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Rhin, Vallée moyenne du"}, {"authorized_access_point": "Rhénans, Pays (sud)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/03261991X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03261991X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb123615286", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040755614", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/39144647639299173338", "source": "VIAF"}], "variant_access_point": ["Fossé Rhénan"], "authorized_access_point": "Rhénan, Fossé"} 1 +2024-09-10 15:47:10.844061 2024-09-10 15:47:10.844064 9eff36b4-d16e-45b4-a3e9-331519463844 {"md5": "93f0ca86ffb79a7153de34db970e090d", "pid": "032861621", "note": [{"label": ["GLU. Österreich-Ungarn ; SWD, 1991"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les ouvrages qui traitent de l'ensemble de l'Autriche-Hongrie (1867-1918). Les ouvrages qui traitent plus particulièrement des parties autrichienne et hongroise de l'empire se trouvent sous les vedettes Autriche et Hongrie (suivies des subdivisions appropriées)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Europe du Centre-Est"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/032861621", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032861621", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb123809301", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040756130", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/38146285364515371330", "source": "VIAF"}], "variant_access_point": ["Austro-hongroise, Monarchie", "Double Monarchie", "Empire austro-hongrois", "Monarchie austro-hongroise", "österreich-Ungarn", "Osztrák-Magyar Monárchia"], "authorized_access_point": "Autriche-Hongrie"} 1 +2024-09-10 15:47:10.91351 2024-09-10 15:47:10.913514 2618b276-acf2-4ca3-9964-afd6b5b43b6d {"md5": "4bb6094d9ae6ef1ffcb8a1b76f53392e", "pid": "032972997", "note": [{"label": ["https://fr.wikipedia.org/wiki/Cath%C3%A9drale_Saint-Nicolas_de_Fribourg"], "noteType": "dataSource"}, {"label": ["Cathédrale depuis 1924"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/032972997", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032972997", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12389271v", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)945514727", "source": "GND"}], "relation_pid": {"type": "redirect_from", "value": "060550279"}, "variant_access_point": ["Eglise Saint-Nicolas (Fribourg, Fribourg, Suisse)"], "authorized_access_point": "Fribourg (Fribourg, Suisse) - Cathédrale Saint-Nicolas"} 1 +2024-09-10 15:47:10.990838 2024-09-10 15:47:10.990842 d6ef6a35-35b3-4b9b-8155-9f863aee9c02 {"md5": "5dc96f29158c4182bf91415f2f66aa82", "pid": "033023808", "note": [{"label": ["Dict. des communes, 1992"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/033023808", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/033023808", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb123932781", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/1144648107425911473", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Saint-Bonnet-les-Oules", "source": "WIKIPEDIA"}], "authorized_access_point": "Saint-Bonnet-les-Oules (Loire)"} 1 +2024-09-10 15:47:12.015691 2024-09-10 15:47:12.015695 d2b37142-52c6-41ee-bd0e-19e6c9d635f8 {"md5": "114913b389f9cd7d6aa3cb3d421262cb", "pid": "050438417", "note": [{"label": ["Dict. communes, 1992"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/050438417", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050438417", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13513437t", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/173306971", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Moras-en-Valloire", "source": "WIKIPEDIA"}], "authorized_access_point": "Moras-en-Valloire (Drôme)"} 1 +2024-09-10 15:47:11.049775 2024-09-10 15:47:11.049779 5ccedb4d-3570-4994-a175-904771efcfb9 {"md5": "a595d3de4dcc964734d59061c165ea6b", "pid": "033459118", "note": [{"label": ["LAVAL RVM, 1994-08", "GDEL. Atlas \\"Le Monde\\""], "noteType": "dataSource"}, {"label": ["Petit archipel polynésien composé de trois atolls (Atafu, Nukunonu, Fakaofo)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Polynésie"}, {"authorized_access_point": "Pacifique, Îles du"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/033459118", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/033459118", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12432262b", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/156083443", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Tokelau", "source": "WIKIPEDIA"}], "variant_access_point": ["Union, Îles de l'", "Tokelau Islands", "Tokelau, Îles de"], "authorized_access_point": "Tokelau"} 1 +2024-09-10 15:47:11.111908 2024-09-10 15:47:11.111913 f652494d-7b92-4c52-862a-c2ea5ae35182 {"md5": "071049d15e0a0575b4f17ba35ee81826", "pid": "034580506", "note": [{"label": ["Dict. communes, 1992"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/034580506", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034580506", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12532193h", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/244300953", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Félines_(Ardèche)", "source": "WIKIPEDIA"}], "authorized_access_point": "Félines (Ardèche)"} 1 +2024-09-10 15:47:11.172543 2024-09-10 15:47:11.172546 10a608ac-2815-4b22-81c7-d5770e505c3b {"md5": "699123a007643be6840c612b249b13ff", "pid": "034800964", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Doubs, Vallée basse du"}, {"authorized_access_point": "Doubs, Vallée haute du"}], "identifier": "http://www.idref.fr/034800964", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034800964", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12551685f", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)963626132", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/236125833", "source": "VIAF"}], "authorized_access_point": "Doubs, Vallée du"} 1 +2024-09-10 15:47:11.233888 2024-09-10 15:47:11.233892 97bc46f1-eab9-4e7e-88c8-8e9d2b3020e8 {"md5": "6408664a1c1cacc353927bb89367570f", "pid": "034910190", "note": [{"label": ["Thamusida : fouilles du Service des Antiquités du Maroc.1, Texte / Jean-Pierre Callu, Jean-Paul Morel, René Rebuffat... [et al.], 1965", "Rachet. Brockhaus, 19. Aufl."], "noteType": "dataSource"}, {"label": ["Située sur la rive de l'oued Sebou, près de Kenitra, Thamusida était une ancienne colonie berbère, conquise par les Romains au 1er siècle avant J.C. Sous l'Empire, elle devint essentiellement une ville de garnison, reconstruite et agrandie au IIème siècle après J.C. après une inondation. Semble avoir été abandonnée entre 274 et 280. Ruines d'un grand camp militaire du temps de Marc Aurèle, d'un temple, d'un praetorium et de grandes thermes, situées à l'emplacement de l'actuel marabout de Sidi Ali ben Ahmed"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/034910190", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034910190", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb125612110", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/46144647641939898059", "source": "VIAF"}], "variant_access_point": ["Tamusida (ville ancienne)"], "authorized_access_point": "Thamusida (ville ancienne)"} 1 +2024-09-10 15:47:11.293663 2024-09-10 15:47:11.293666 e929880a-3ff5-44d1-9b95-024ec417bc05 {"md5": "9cde0e150cda8fea95bd4b04b9638b75", "pid": "03512802X", "note": [{"label": ["Les Républiques soeurs / J.-L. Harouel"], "noteType": "dataSource"}, {"label": ["LCSH, 1996-09"], "noteType": "dataNotFound"}, {"label": ["États satellites mis en place par la République française dès 1792 (République rauracienne), puis surtout à partir de 1795 (R. batave). Ces républiques furent renversées en 1799 (R. parthénopéenne, R. romaine), annexées à la France (R. ligurienne, 1805), ou transformées en royaumes (Italie, 1805 ; Hollande, 1806), tandis que la République helvétique redevenait Confédération helvétique en 1803"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "République cispadane (1796-1797)"}, {"authorized_access_point": "Gênes (Italie) - 1789-1815"}, {"authorized_access_point": "Naples (Royaume) - 1799 (Révolution)"}, {"authorized_access_point": "Pays-Bas - 1795-1806 (République batave)"}, {"authorized_access_point": "République cisalpine"}, {"authorized_access_point": "Rome (Italie) - 1798-1799 (République romaine)"}, {"authorized_access_point": "Suisse - 1798-1803 (République helvétique)"}], "identifier": "http://www.idref.fr/03512802X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03512802X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13169029w", "source": "BNF"}], "classification": [{"name": "Histoire de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "940"}], "variant_access_point": ["Républiques soeurs (1792-1806)"], "authorized_access_point": "France - 1789-1799 (Révolution) - Républiques soeurs"} 1 +2024-09-10 15:47:11.363237 2024-09-10 15:47:11.363241 34c6298d-5794-40f1-9c1e-cbe9f3f2a4eb {"md5": "591a2e90dbda232c0f0419d288949344", "pid": "035220287", "note": [{"label": ["Atlas universalis, 1984", "Alpes Maritimes (France et Italie) ; Laval RVM, 1997-02"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Alpes (France)"}, {"authorized_access_point": "Alpes (Italie)"}, {"authorized_access_point": "Alpes (ouest)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/035220287", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035220287", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13174970t", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040746798", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/70146462766027772779", "source": "VIAF"}], "variant_access_point": ["Alpi Marittime", "Maritimes, Alpes (massif)"], "authorized_access_point": "Alpes maritimes (massif)"} 1 +2024-09-10 15:47:11.471023 2024-09-10 15:47:11.471026 526c65bd-d828-400a-b3ff-3fa7bda8f00a {"md5": "9f80069ec0e89f9c172700f8a4fb7343", "pid": "03530183X", "note": [{"label": ["Dict. communes, 1992"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Hurtières, Pays des (France)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/03530183X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03530183X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13180196j", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/244298214", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Saint-Georges-d'Hurtières", "source": "WIKIPEDIA"}], "authorized_access_point": "Saint-Georges-des-Hurtières (Savoie)"} 1 +2024-09-10 15:47:11.553772 2024-09-10 15:47:11.553775 a066635e-e37d-4539-a6e6-737c4bc796a9 {"md5": "f1f5d637bb26ae0da138cdfff73d8b87", "pid": "035301872", "note": [{"label": ["Dict. communes, 1992"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Hurtières, Pays des (France)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/035301872", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035301872", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13180199k", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/5144648144682560894", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Saint-Pierre-de-Belleville", "source": "WIKIPEDIA"}], "authorized_access_point": "Saint-Pierre-de-Belleville (Savoie)"} 1 +2024-09-10 15:47:11.612421 2024-09-10 15:47:11.612425 7f30c2ef-6ccc-4a46-8646-2c29a765a92a {"md5": "eecde9a362e6d3921b12f4e54dd093f0", "pid": "035321318", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/035321318", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035321318", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13181517r", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/268148574378024430004", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Le_Caire", "source": "WIKIPEDIA"}], "authorized_access_point": "Le Caire (Égypte ; région)"} 1 +2024-09-10 15:47:11.684795 2024-09-10 15:47:11.6848 b66e5ec7-53bc-4851-9c1a-26c5460ba751 {"md5": "36c215b035b5c456ba4bd82523d05277", "pid": "035444193", "note": [{"label": ["GLU, 1991"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/035444193", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035444193", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13189770p", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040635112", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/243437017", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Lac_des_Quatre-Cantons", "source": "WIKIPEDIA"}], "variant_access_point": ["Lucerne, Lac de (Suisse)", "Lac des Quatre-Cantons (Suisse)", "Vierwaldstätter See (Suisse)"], "authorized_access_point": "Quatre-Cantons, Lac des (Suisse)"} 1 +2024-09-10 15:47:11.745604 2024-09-10 15:47:11.745608 31098694-c4b6-4490-8eb3-b5ceccb8f50c {"md5": "ca951aeba3129fe5337eb2fbf9338545", "pid": "050211250", "note": [{"label": ["GLU. Guide bleu Franche-Comté, Monts du Jura, 1955", "Laval RVM, 1998-07"], "noteType": "dataSource"}, {"label": ["Rebord occidental du Jura à l'ouest de l'Ain, le Revermont comporte deux chaînons, de part et d'autre du Suran"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Jura (France ; massif)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/050211250", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050211250", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/315125754", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Val-Revermont", "source": "WIKIPEDIA"}], "authorized_access_point": "Revermont (France)"} 1 +2024-09-10 15:47:11.80733 2024-09-10 15:47:11.807333 38dcf841-005d-467e-9b7e-478461886876 {"md5": "ca6a481fb06750fa354c55d881d8b0c9", "pid": "05021778X", "note": [{"label": ["Robert 2", "Operai alla Cogne / Stefano Peirano, 1997"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/05021778X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/05021778X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb135067940", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/127919056", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Cogne", "source": "WIKIPEDIA"}], "authorized_access_point": "Cogne (Italie)"} 1 +2024-09-10 15:47:11.879752 2024-09-10 15:47:11.879757 a4202b7c-7d4c-4c39-88ba-f34975bcc8ca {"md5": "68b8520a179acb8dd09901106f0eca17", "pid": "050300334", "note": [{"label": ["GLU. SY 1996-97", "Laval RVM, 1999-01"], "noteType": "dataSource"}, {"label": ["République soviétique en 1921, République autonome de la Géorgie en 1930"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/050300334", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050300334", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/137166785", "source": "VIAF"}], "authorized_access_point": "Abkhazie (Géorgie)"} 1 +2024-09-10 15:47:11.941382 2024-09-10 15:47:11.941388 5d70f008-892e-44da-a9d1-a7e1fedb667a {"md5": "3d24c7a9e3e4fcc7994b92df70cd1756", "pid": "050311530", "note": [{"label": ["Dict. communes, 1997"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/050311530", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050311530", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13114324r", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/159424557", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Chasse-sur-Rhône", "source": "WIKIPEDIA"}], "authorized_access_point": "Chasse-sur-Rhône (Isère)"} 1 +2024-09-10 15:47:28.15481 2024-09-10 15:47:28.154814 7bf14194-dd23-4c5e-8121-0fb64ace3a89 {"md5": "b01ab9de6d7e37a2322fb7f3eaf76643", "pid": "276213939", "note": [{"label": ["Schloss Neuenburg / Kristine Glatzel und Reinhard Schmitt. - München ; Berlin : Deutscher Kunstverlag, 1993."], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/276213939", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/276213939", "source": "IDREF"}], "variant_access_point": ["Schloss Neuenburg", "Freyburg (Unstrut) - Château de Neuenburg"], "authorized_access_point": "Neuenburg, Château de (Allemagne)"} 1 +2024-09-10 15:47:12.078153 2024-09-10 15:47:12.078158 1f257cab-f576-498f-96cd-4d1936b46c6a {"md5": "b14790b8022f23e9fc3d0fba716167e2", "pid": "050556789", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Mélanésie"}, {"authorized_access_point": "Australasie"}, {"authorized_access_point": "Pacifique, Îles du"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/050556789", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050556789", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb126484470", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040753190", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/316924037", "source": "VIAF"}], "variant_access_point": ["Irian", "Nouvelle Guinée (île)"], "authorized_access_point": "Nouvelle-Guinée (île)"} 1 +2024-09-10 15:47:12.139756 2024-09-10 15:47:12.139759 5fa412dd-7c99-4ccb-953e-c019541fddd1 {"md5": "d295e5b8b6c7bd4c65effa9c73eeca43", "pid": "050557556", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/050557556", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050557556", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)04003285X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172875652", "source": "VIAF"}], "relation_pid": {"type": "redirect_from", "value": "027491870"}, "authorized_access_point": "Assyrie"} 1 +2024-09-10 15:47:12.20165 2024-09-10 15:47:12.201655 650b14f6-2eb6-4f87-bb53-95d8b8317346 {"md5": "47a4dbe6c722ec6e0f3285a58fbb0ab1", "pid": "050578480", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/050578480", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050578480", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12650280j", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/124351558", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Samnaun", "source": "WIKIPEDIA"}], "variant_access_point": ["Val samnaun (suisse)"], "authorized_access_point": "Samnaun (suisse) (val)"} 1 +2024-09-10 15:47:12.261466 2024-09-10 15:47:12.261471 92f49483-95ec-41ea-9e3c-e52c25580f1d {"md5": "bbad35163ee3b6ed8a57f3459a3a7ab6", "pid": "052490157", "note": [{"label": ["Internet (en ligne), 2000-05-23 : www.baden.ch/"], "noteType": "dataSource"}, {"label": ["Ville et station thermale du canton d'Argovie"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/052490157", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/052490157", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13557976w", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040041646", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/49144647636482974054", "source": "VIAF"}], "variant_access_point": ["Aquae Helveticae (ville ancienne)"], "authorized_access_point": "Baden (Suisse)"} 1 +2024-09-10 15:47:12.327941 2024-09-10 15:47:12.327945 5a2fa1e1-f8ec-42e9-96c9-d085ed2af864 {"md5": "d9b1ed65dd63722eb2c1b4c09727e6bd", "pid": "053443586", "note": [{"label": ["GLU. Mirot"], "noteType": "dataSource"}, {"label": ["Emploi direct en subdivision : [sujet] -- Léman (département)", "Le département du Léman a été créé le 26-04-1798 (chef-lieu : Genève ; sous-préfectures : Bonneville, Thonon) ; il s'étendait sur Genève, le nord de la Savoie et le pays de Gex"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Savoie - 1792-1815 (Occupation française)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/053443586", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/053443586", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/7503148574325124430009", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Léman_(département)", "source": "WIKIPEDIA"}], "authorized_access_point": "Léman (département)"} 1 +2024-09-10 15:47:12.388854 2024-09-10 15:47:12.388857 ec3b3320-fd98-4053-a27c-fd5ff33e6fd8 {"md5": "fe2b603c1f8fa2646f63416ddef9ba32", "pid": "053500539", "note": [{"label": ["Dict. communes, 1997"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/053500539", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/053500539", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb136008673", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/242304355", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Copponex", "source": "WIKIPEDIA"}], "authorized_access_point": "Copponex (Haute-Savoie)"} 1 +2024-09-10 15:47:12.44873 2024-09-10 15:47:12.448733 f6a2675e-78df-4eef-bc16-626369764e3d {"md5": "e73b9b7dafd21fdc385d06d9c2434639", "pid": "053504755", "note": [{"label": ["Ma vie : enfance en Sibérie, jeunesse à Harbin de 1914 à 1932 / Nina Mokrinskaia ; trad. du russe par Valérie Morichon-Kolesnikov, 2000", "Cihai, 1999", "Gd Robert 2. GDEL"], "noteType": "dataSource"}, {"label": ["Chef-lieu de la province du Heilongjiang, Chine"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Heilongjiang (Chine)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/053504755", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/053504755", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/55144647638065498121", "source": "VIAF"}], "variant_access_point": ["Haerbin (Chine)", "Harbin (Chine)", "Ha-eul-pin (Chine)", "Kharbin (Chine)", "哈爾濱市", "哈尔滨市", "Ha'erbin Shi"], "authorized_access_point": "Harbin (Chine)"} 1 +2024-09-10 15:47:12.516579 2024-09-10 15:47:12.516583 db3295d5-7ba7-4b78-a341-cd16b36446a8 {"md5": "707e3179c341dc8f56020a4819cecece", "pid": "055832024", "note": [{"label": ["Dict. communes, 1997"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/055832024", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/055832024", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb136127080", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/245852500", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Saint-Cyr-sur-le-Rhône", "source": "WIKIPEDIA"}], "variant_access_point": ["Saint-Cyr-sur-Rhône (Rhône)"], "authorized_access_point": "Saint-Cyr-sur-le-Rhône (Rhône)"} 1 +2024-09-10 15:47:12.59849 2024-09-10 15:47:12.598495 0bb8f067-a1bf-4b51-b80a-19dd42ecde10 {"md5": "4b6dc9fc8618c5caf09208e4d980f7c4", "pid": "061566284", "note": [{"label": ["GDEL", "Web, http://www.geonames.org/maps/google_29.933_71.386.html (2016-03-18)", "Internet, http://authorities.loc.gov, 2016-04-06"], "noteType": "dataSource"}, {"label": ["E 71°23'10\\" - N 29°55'59\\""], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/061566284", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/061566284", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/974158070665608780008", "source": "VIAF"}], "variant_access_point": ["ملتان (Pakistan ; district)"], "authorized_access_point": "Multan (Pakistan ; district)"} 1 +2024-09-10 15:47:12.660135 2024-09-10 15:47:12.660139 457961c8-f716-4b71-843f-c905c8354599 {"md5": "05f74e2f0502e884f7771d320cf4c73b", "pid": "066838339", "note": [{"label": ["Le petit Larousse, 2001", "Étude sur la fabrication des arcs et des flèches à Chengtu en Chine / T'an Tan-Chiung / 2001"], "noteType": "dataSource"}, {"label": ["Capitale de Sichuan"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Sichuan (Chine)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/066838339", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/066838339", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13745600g", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/265184140", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Chengdu", "source": "WIKIPEDIA"}], "variant_access_point": ["Ch'eng-tu (Chine)", "Tch'eng-tou (Chine)", "Chengtu (Chine)", "成都"], "authorized_access_point": "Chengdu (Chine)"} 1 +2024-09-10 15:47:12.7551 2024-09-10 15:47:12.755103 d7c4b99f-92fb-45b1-9708-38ca22acbdf4 {"md5": "3537ee775b99cd58ba5bd8aee611947b", "pid": "068861974", "note": [{"label": ["Dictionnaire des communes de France, 1992"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/068861974", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/068861974", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/4369148574353524430000", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Boisset-lès-Montrond", "source": "WIKIPEDIA"}], "authorized_access_point": "Boisset-lès-Montrond (Loire)"} 1 +2024-09-10 15:47:12.822515 2024-09-10 15:47:12.822519 1e1e3fdf-7001-42de-b895-ad3cf34ae98f {"md5": "11609df2f4b5942bbc8a887a0557d92b", "pid": "068954174", "note": [{"label": ["Dict. des communes, 2001", "Série bleue 1:250000. 3528 est, Abondance. Châtel, 1986"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/068954174", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/068954174", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb167056033", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/308188277", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Châtel", "source": "WIKIPEDIA"}], "classification": [{"name": "Géographie de la France", "type": "bf:ClassificationDdc", "classificationPortion": "912"}], "authorized_access_point": "Châtel (Haute-Savoie)"} 1 +2024-09-10 15:47:12.882869 2024-09-10 15:47:12.882874 f45ee664-dcd6-4155-977c-5fd44b450035 {"md5": "6c6f4f153ad09d7b7ea18895e851e6aa", "pid": "069367027", "note": [{"label": ["Derborence et la vallée de la Lizerne / Théodore Kuonen, 2000"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/069367027", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/069367027", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/237457712", "source": "VIAF"}], "authorized_access_point": "Lizerne, Vallée de la (Valais, Suisse)"} 1 +2024-09-10 15:47:12.952332 2024-09-10 15:47:12.952337 fb85cc2b-22a8-4e20-abee-a761c0efb6fc {"md5": "bd4b9306182a7defeb604d3b17f1cee9", "pid": "070388830", "note": [{"label": ["Efestia : scavi Adriani 1928-1930, 2001"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Égée, Mer (région ; nord)"}, {"authorized_access_point": "Lemnos (Grèce ; île)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/070388830", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/070388830", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/70148570552324310847", "source": "VIAF"}], "variant_access_point": ["Efestia (Grèce ; site archéologique)", "Héphaistias (Grèce ; site archéologique)"], "authorized_access_point": "Héphaistia (Grèce ; site archéologique)"} 1 +2024-09-10 15:47:13.012427 2024-09-10 15:47:13.012431 7069d8c1-02de-44d4-9e36-504c01436c9e {"md5": "734682d7c87e929eb53b9c39b55dddcb", "pid": "072290455", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/072290455", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/072290455", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/31148570657424311634", "source": "VIAF"}], "authorized_access_point": "Tire (Turquie)"} 1 +2024-09-10 15:47:13.077802 2024-09-10 15:47:13.077808 bb433954-eb64-4549-996e-887d66bbd224 {"md5": "b7f0b753725391b1d179074d03883bff", "pid": "072616652", "note": [{"label": ["Saillon / Pascal Thurre, 2002"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/072616652", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/072616652", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/35148570661324311641", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)956137008", "source": "GND"}], "authorized_access_point": "Saillon (Valais, Suisse)"} 1 +2024-09-10 15:47:13.140511 2024-09-10 15:47:13.140515 d61b6dac-326d-4676-8a34-1c2fc39974ec {"md5": "26b75c2feaa60c6395a93e277504a432", "pid": "073387576", "note": [{"label": ["Bottin des communes, 2001"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/073387576", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/073387576", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb146042604", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/1312145424714286830500", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Saint-Georges-en-Couzan", "source": "WIKIPEDIA"}], "variant_access_point": ["St Georges-en-Couzan (Loire)"], "authorized_access_point": "Saint-Georges-en-Couzan (Loire)"} 1 +2024-09-10 15:47:13.196193 2024-09-10 15:47:13.196197 cbed1a8d-db3d-4a35-b520-0031a088fe05 {"md5": "3ee4fa606c156e5a5cbf11403941b9e3", "pid": "073444073", "note": [{"label": ["Dict. communes, 1984"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/073444073", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/073444073", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11970308w", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/149197662", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Boën-sur-Lignon", "source": "WIKIPEDIA"}], "authorized_access_point": "Boën (Loire)"} 1 +2024-09-10 15:47:13.255669 2024-09-10 15:47:13.255672 e6200fa8-cd31-4423-a977-bf1112877189 {"md5": "b6f33e595f9aa760af7b39ae8c1db596", "pid": "074436805", "note": [{"label": ["Bottin des communes, 2001"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/074436805", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/074436805", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb14522148r", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/172123723", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Serrières_(Ardèche)", "source": "WIKIPEDIA"}], "authorized_access_point": "Serrières (Ardèche)"} 1 +2024-09-10 15:47:13.314458 2024-09-10 15:47:13.314462 f7c2103a-b5d5-4155-8d3b-876c62cebb78 {"md5": "2a8add0edeac7b6eb113b5107bdabd23", "pid": "074578022", "note": [{"label": ["Le petit Robert : dictionnaire universel des noms propres. - Le Robert, 1995"], "noteType": "dataSource"}, {"label": ["Commune du Val d'Aoste"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/074578022", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/074578022", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/144380489", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Châtillon_(Italie)", "source": "WIKIPEDIA"}], "authorized_access_point": "Châtillon (Italie)"} 1 +2024-09-10 15:47:13.39015 2024-09-10 15:47:13.390154 c3ab6994-f94b-4142-9857-26341364bee1 {"md5": "249e642ac49c033fe79885c3b5ef0c30", "pid": "077271041", "note": [{"label": ["Dict. des communes, 1992"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/077271041", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/077271041", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12374893d", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/234758907", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Saint-Symphorien-d'Ozon", "source": "WIKIPEDIA"}], "authorized_access_point": "Saint-Symphorien-d'Ozon (Rhône)"} 1 +2024-09-10 15:47:13.461991 2024-09-10 15:47:13.461995 503e5917-56fa-4440-803d-ddd79e6fc60b {"md5": "081578cca7862e4908836e4ed723a4a7", "pid": "077437160", "note": [{"label": ["Dict. communes, 1997"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/077437160", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/077437160", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/4748148574355124430004", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Brié-et-Angonnes", "source": "WIKIPEDIA"}], "classification": [{"name": "Géographie de la France", "type": "bf:ClassificationDdc", "classificationPortion": "912"}], "authorized_access_point": "Brié-et-Angonnes (Isère)"} 1 +2024-09-10 15:47:13.634182 2024-09-10 15:47:13.634194 77d47462-a0b5-4dfd-b93e-15da545ceeb4 {"md5": "fbec93596453e75ea9a437fae21d390e", "pid": "078613655", "note": [{"label": ["GLU", "Guide bleu Suisse, 1991", "Représentations du rique d'avalanches et comportements sociaux dans deux communes valaisannes : Salvan et Évolène, 1998"], "noteType": "dataSource"}, {"label": ["Commune du Valais, dans la vallée du Trient"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Les Marécottes (Valais, Suisse)"}], "identifier": "http://www.idref.fr/078613655", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/078613655", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)041980409", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/81148570735924312360", "source": "VIAF"}], "classification": [{"name": "Géographie de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "914"}], "authorized_access_point": "Salvan (Valais, Suisse)"} 1 +2024-09-10 15:47:13.745194 2024-09-10 15:47:13.745198 dd46a9ee-ad50-4433-a978-19e2cb3c7485 {"md5": "db50471fb29b5ac9732c32f3e28f6f6b", "pid": "084272996", "note": [{"label": ["Dict. communes, 1984"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/084272996", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/084272996", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12351512m", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/245387195", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Vonnas", "source": "WIKIPEDIA"}], "authorized_access_point": "Vonnas (Ain)"} 1 +2024-09-10 15:47:13.798998 2024-09-10 15:47:13.799002 80c7d84b-c66d-47ac-9c2d-f66e30de6604 {"md5": "1f740469443f1a616a8d1e5e5d58ecf6", "pid": "085703419", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/085703419", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/085703419", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb14475513s", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040201392", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/55144647634843459675", "source": "VIAF"}], "classification": [{"name": "Géographie de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "914"}], "authorized_access_point": "Genève (Suisse ; région)"} 1 +2024-09-10 15:47:28.218755 2024-09-10 15:47:28.21876 aaec1404-4797-4e51-95bd-7b10c429edc3 {"md5": "7f1dbefca1614ed24ffec5b8b0356124", "pid": "276214129", "note": [{"label": ["Passwang : Laufen - Scheltenpass - Reigoldswil, 2023. (Landeskarte der Schweiz; 1087)"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/276214129", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/276214129", "source": "IDREF"}], "authorized_access_point": "Passwang (Soleure, Suisse)"} 1 +2024-09-10 15:47:13.865565 2024-09-10 15:47:13.86557 77ca474b-89ae-43e9-ae61-a4483eaccd27 {"md5": "43119b5ad6b09ead1d85ba33cd7117f5", "pid": "092146430", "note": [{"label": ["GLU", "https://fr.wikipedia.org/wiki/Ohio_(rivière)"], "noteType": "dataSource"}, {"label": ["Rivière des Etats-Unis qui part de Pennsylvanie, forme la frontière entre les États de la Virginie-Occidentale et l'Ohio, et traverse les États du Kentucky, de l'Ohio, de l'Indiana et de l'Illinois, avant de se jeter dans le Mississippi à Cairo, dans l'Illinois. 1570 km."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/092146430", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/092146430", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11968106c", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/24144647633045786856", "source": "VIAF"}], "variant_access_point": ["Ohio", "Ohio River (États-Unis ; cours d'eau)"], "authorized_access_point": "Ohio (États-Unis ; cours d'eau)"} 1 +2024-09-10 15:47:13.947274 2024-09-10 15:47:13.947279 9adac7ca-812c-4810-899e-86ad96685c75 {"md5": "b430553cdd3cbb872a3101b2a5dfc9d4", "pid": "09445423X", "note": [{"label": ["Guida d'Italia, Torino e valle d'Aosta, Touring club italiano, Milan, 1959"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/09445423X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/09445423X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15551512c", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/149005556", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Rivoli", "source": "WIKIPEDIA"}], "classification": [{"name": "Géographie de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "914"}], "authorized_access_point": "Rivoli (Italie)"} 1 +2024-09-10 15:47:14.007177 2024-09-10 15:47:14.00718 fc03069e-cb5b-44e5-b7e2-bde0b7cf0a3b {"md5": "aa354f71c22e9971708e0a4e3d9fa36b", "pid": "095140484", "note": [{"label": ["\\"La soie, c'est notre muse\\" : le tissage de la soie à Bussières, du second Empire au Front populaire / Mireille Grivot ; [publié par l'] Institut des études régionales et des patrimoines, 2005"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/095140484", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/095140484", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15060567r", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/126846977", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Bussières_(Saône-et-Loire)", "source": "WIKIPEDIA"}], "authorized_access_point": "Bussières (Loire)"} 1 +2024-09-10 15:47:14.060681 2024-09-10 15:47:14.060684 3e68afa0-575d-4515-94b2-a857fb5cf08d {"md5": "fae66a1ba4d25226326f8a632088149f", "pid": "102120935", "note": [{"label": ["Dict. communes, 2001"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/102120935", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/102120935", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb150472227", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/139948506", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/La_Chapelle-Blanche_(Savoie)", "source": "WIKIPEDIA"}], "classification": [{"name": "Géographie de la France", "type": "bf:ClassificationDdc", "classificationPortion": "912"}], "variant_access_point": ["Chapelle-Blanche, La (Savoie)"], "authorized_access_point": "La Chapelle-Blanche (Savoie)"} 1 +2024-09-10 15:47:14.152246 2024-09-10 15:47:14.152252 8f33b130-d4b7-4ca8-a0ed-de7dad02cce7 {"md5": "8e7943fd7ae2b139537d3a23f816ef8e", "pid": "102147817", "note": [{"label": ["https://fr.wikipedia.org/wiki/Kentucky_(rivière)/, 2024-07-18"], "noteType": "dataSource"}, {"label": ["La Kentucky est une rivière du Kentucky aux États-Unis, affluent rive gauche de la rivière Ohio, donc un sous-affluent du Mississippi"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/102147817", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/102147817", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/88148570693824312469", "source": "VIAF"}], "variant_access_point": ["Kentucky river (Ky. ; cours d'eau)"], "authorized_access_point": "Kentucky (États-Unis ; cours d'eau)"} 1 +2024-09-10 15:47:14.234495 2024-09-10 15:47:14.234499 dc9e2804-eb07-4b03-a15a-42fefab70135 {"md5": "7761d8141aabfb063456786f2a04ee17", "pid": "113070926", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/113070926", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/113070926", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb151948916", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/151258315", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Lusaka", "source": "WIKIPEDIA"}], "authorized_access_point": "Lusaka (Zambie)"} 1 +2024-09-10 15:47:14.297187 2024-09-10 15:47:14.297199 eee21cf4-fceb-43be-8b7f-9d819dd68790 {"md5": "1c5c1f8f2c2040adc6e4e34b05f3062b", "pid": "114526591", "note": [{"label": ["GDEL", "https://www.vs.ch/web/communes/-/bas-valais, 2022-09-27", "À la découverte de trois régions alpines, une culture : Bas-Valais, vallée d'Aoste, Haute-Savoie - Savoie, 2000"], "noteType": "dataSource"}, {"label": ["Région du Canton du Valais comprenant les districts de Monthey, St-Maurice, Entremont et Martigny"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Valais (Suisse)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/114526591", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/114526591", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb144160064", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040786528", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/51144647641031129112", "source": "VIAF"}], "classification": [{"name": "Géographie de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "914"}], "variant_access_point": ["Valais, Bas- (Suisse)"], "authorized_access_point": "Bas-Valais (Suisse)"} 1 +2024-09-10 15:47:14.361863 2024-09-10 15:47:14.361869 05d801d5-6a8c-47bd-b95e-d2f93ac9a73f {"md5": "f11cd3845ac6f413a7f5407c6f388d44", "pid": "116317825", "note": [{"label": ["Le glacier de l'Aletsch et le lac de Märjelen / Roland Bonaparte. Paris : 1889."], "noteType": "dataSource"}, {"label": ["E 8°4' / N 46°26'"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/116317825", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/116317825", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15240705p", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040721000", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/170096434", "source": "VIAF"}], "variant_access_point": ["Aletschgletscher (Suisse)", "Grosser Aletschgletscher (Valais, Suisse)", "Glacier d'Aletsch (Valais, Suisse)", "Aletsch, Glacier d' (Valais, Suisse)", "Grand Glacier d'Aletsch (Valais, Suisse)"], "authorized_access_point": "Aletsch, Grand Glacier d' (Valais, Suisse)"} 1 +2024-09-10 15:47:14.428536 2024-09-10 15:47:14.42854 d1048d73-244b-4f7b-af89-3731920aeb4c {"md5": "0a87dfd9b7c84d1802a4714a86973ab1", "pid": "116459425", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/116459425", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/116459425", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/55148570478224310503", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)947297987", "source": "GND"}], "authorized_access_point": "Albanie (nord)"} 1 +2024-09-10 15:47:14.500501 2024-09-10 15:47:14.500504 486629f4-c19a-40ce-8f93-f702a83f3fbc {"md5": "cb1e64e2ce5e3e5f61ba47b546148937", "pid": "119411016", "note": [{"label": ["Étude de la transformation des paysages aux limites des agglomérations. Les exemples de Caen et Dalian. / Xiao Wang, 2007"], "noteType": "dataSource"}, {"label": ["Ville de la province du Liaoning"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Liaoning (Chine)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/119411016", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/119411016", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/23145243768374441278", "source": "VIAF"}], "variant_access_point": ["大連市", "大连市", "Dalian Shi"], "authorized_access_point": "Dalian (Chine)"} 1 +2024-09-10 15:47:14.557672 2024-09-10 15:47:14.557675 4996f53a-e695-489b-872f-c0680e067345 {"md5": "b40166a2b21ed98e1cfd3a089856edd7", "pid": "123048338", "note": [{"label": ["Lutte de clans, lutte de classes : Chermignon, la politique au village / Uli Windisch, 1986.", "https://www.commune-cransmontana.ch/pages/la-commune-de-crans-montana-3352", "Internet, http://www.chermignon.ch, 2008-04-09"], "noteType": "dataSource"}, {"label": ["Village du canton du Valais. Ancienne commune. Rattaché à la commune de Crans-Montana en 2017"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/123048338", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/123048338", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/73148570504824310991", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)04201459X", "source": "GND"}], "authorized_access_point": "Chermignon (Valais, Suisse)"} 1 +2024-09-10 15:47:14.619562 2024-09-10 15:47:14.619568 ee744cf1-a177-46d1-9d2a-5826df915704 {"md5": "ce97fd22ed441387e8d73e2e341dad6c", "pid": "124441092", "note": [{"label": ["http://fr.wikipedia.org/wiki/Saint-Martin-de-la-Porte"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/124441092", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/124441092", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/241869154", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Saint-Martin-de-la-Porte", "source": "WIKIPEDIA"}], "authorized_access_point": "Saint Martin de la Porte (Savoie)"} 1 +2024-09-10 15:47:14.678773 2024-09-10 15:47:14.678777 9e526d10-0650-450b-89c1-55d3f5d2e725 {"md5": "c064ed095d71d1f45c58836ae98eb5d3", "pid": "127372547", "note": [{"label": ["Tunnel de base du Lötschberg : de la roche au chemin de fer / Felix freank, 2008", "https://fr.wikipedia.org/wiki/Tunnel_de_base_du_L%C3%B6tschberg, 2022-09-13"], "noteType": "dataSource"}, {"label": ["Tunnel ferroviaire qui relie le canton du Valais à celui de Berne. Inauguré en 2007."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/127372547", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/127372547", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/139148570539024310972", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)96475455X", "source": "GND"}], "variant_access_point": ["Tunnel de base du Lötschberg (Suisse)", "Lötschberg Basistunnel (Suisse)"], "authorized_access_point": "Lötschberg, Tunnel de base du (Suisse)"} 1 +2024-09-10 15:47:14.746807 2024-09-10 15:47:14.746812 1b0799d5-e692-4624-8f92-1209ad03a07a {"md5": "ac5e366bc38a887b751174cb0272378d", "pid": "131577166", "note": [{"label": ["Dictionnaire des communes, 2002"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/131577166", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/131577166", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb10755012m", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/299563798", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Saint-Barthélemy-de-Vals", "source": "WIKIPEDIA"}], "authorized_access_point": "Saint-Barthélemy-de-Vals (Drôme)"} 1 +2024-09-10 15:47:14.810403 2024-09-10 15:47:14.810406 3a902395-d55b-401b-9de7-237bcc3c0c20 {"md5": "f881776c340c16f39b06e429b5b4b977", "pid": "133653951", "note": [{"label": ["L'appropriation des habitants de Saint-Martin-le-Vinoux aux territoires / Mémoire de master 2ème année : Politiques publiques et changement social, spécialité \\"Villes, Territoires, Solidarités\\" / Grenoble : IEP, 2008"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/133653951", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/133653951", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12539212n", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/95144648445080947459", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Saint-Martin-le-Vinoux", "source": "WIKIPEDIA"}], "authorized_access_point": "Saint-Martin-le-Vinoux (Isère)"} 1 +2024-09-10 15:47:14.885449 2024-09-10 15:47:14.885453 8c51d843-6de3-462b-868f-c1723176275a {"md5": "665ab4306114ff8c5073f31c0af26e95", "pid": "140829520", "note": [{"label": ["Carte de la province de Majunga. 1:1 000 000 / Service géographique de Madagascar, [s.d.]"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Madagascar"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/140829520", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/140829520", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/154785947", "source": "VIAF"}], "variant_access_point": ["Mahajanga (Madagascar ; province)"], "authorized_access_point": "Majunga (Madagascar ; province)"} 1 +2024-09-10 15:47:14.944622 2024-09-10 15:47:14.944626 d3f2d0fc-c562-46df-a226-9c9ecf78aa26 {"md5": "36542c957dd56c80c30bfbd14239df9c", "pid": "140834087", "note": [{"label": ["Carte de la province de Mananjary. 1:1 000 000 / Service géographique de Madagascar, 1925"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Madagascar"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/140834087", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/140834087", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/143237247", "source": "VIAF"}], "authorized_access_point": "Mananjary (Madagascar ; province)"} 1 +2024-09-10 15:47:15.00251 2024-09-10 15:47:15.002514 e2c23494-fc2b-4f89-b546-e1a68f401d3b {"md5": "05e9200121abda0129b224452d70f44e", "pid": "144820072", "note": [{"label": ["Uebersichstkarte zum Relief der Monterosa-Gruppe / von X. Imfeld, 1880", "GLU"], "noteType": "dataSource"}, {"label": ["Massif des Alpes Pennines partagé entre la Suisse (canton du Valais) et l'Italie."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/144820072", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/144820072", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/136148570652124311276", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)041152077", "source": "GND"}], "variant_access_point": ["Monte Rosa, Massif du"], "authorized_access_point": "Mont-Rose, Massif du"} 1 +2024-09-10 15:47:15.065413 2024-09-10 15:47:15.065418 b2d42bad-e868-4923-8615-afacebd00ee6 {"md5": "b2f9a92bdff59597928ee6a8f42c749d", "pid": "145818713", "note": [{"label": ["Dictionnaire des Communes, 2002"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/145818713", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/145818713", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/49148570720624312579", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Chasselas_(Saône-et-Loire)", "source": "WIKIPEDIA"}], "authorized_access_point": "Chasselas (Saône-et-Loire)"} 1 +2024-09-10 15:47:15.12541 2024-09-10 15:47:15.125414 5c03fdfd-92d0-4b1e-bc4f-d87a8e1f2f8f {"md5": "3ce0e673af4048d9025d12c2b1013990", "pid": "148119778", "note": [{"label": ["Dictionnaire des communes, 2002"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/148119778", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/148119778", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16241764k", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/93144647642602560697", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Habère-Lullin", "source": "WIKIPEDIA"}], "authorized_access_point": "Habère-Lullin (Haute-Savoie)"} 1 +2024-09-10 15:47:15.183567 2024-09-10 15:47:15.183572 782bb135-6bcf-489d-a567-546efd40abe4 {"md5": "7bead4365a13357b1cbb6408930c3109", "pid": "148833829", "note": [{"label": ["Un grand rêve d'avenir : [Val-de-Travers, histoire d'une fusion / Kaeslin, Jacques, 19..-2019 (contributeur - collaborateur);Kleiner, Claude-Alain, 1951-.... (contributeur - collaborateur);Charrière, François, 19..-...., photographe (contributeur - collaborateur);Lycée Denis de Rougemont (Fleurier) (contributeur - collaborateur), 2013"], "noteType": "dataSource"}, {"label": ["Val-de-Travers est une commune suisse du canton de Neuchâtel, située dans la région Val-de-Travers. Val-de-Travers a été créée le 1er janvier 2009 à la suite de la fusion de neuf anciennes communes : Boveresse, Buttes, Couvet, Fleurier, Les Bayards, Môtiers, Noiraigue, Saint-Sulpice et Travers."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/148833829", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/148833829", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/173812545", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)1038431506", "source": "GND"}], "authorized_access_point": "Val-de-Travers (Neuchâtel, Suisse)"} 1 +2024-09-10 15:47:15.249759 2024-09-10 15:47:15.249763 89c47a9e-4185-4705-9f3f-27e6fa754382 {"md5": "df46870a3793950da2008f7f0b90fcf2", "pid": "150220200", "note": [{"label": ["http://catalogue.bnf.fr/ark:/12148/cb152923816/UNIMARC 2011-02-21", "20 Jahre Furggentälti: Permafrostuntersuchungen auf der Gemmi / Bernhard Krummenacher .... - Bern : Geogr. Inst. d. Univ., 2008"], "noteType": "dataSource"}, {"label": ["Coordonnées géographiques : E 7°37' / N 46°24'"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/150220200", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/150220200", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/118148570517524310836", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)040717003", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040717003", "source": "GND"}], "authorized_access_point": "Gemmi, Col de la (Valais, Suisse)"} 1 +2024-09-10 15:47:15.314344 2024-09-10 15:47:15.314348 6e6022dd-e211-4cb9-ae22-cfe09d7e3d63 {"md5": "1aa83ff306c3eca2f16282f528303db3", "pid": "151572429", "note": [{"label": ["Richesses touristiques et archéologiques du canton de Treffort : Treffort, Cuisiat, Chavannes-sur-Suran, Corveissiat, Arnans, Courmangoux, Germagnat, Meillonnas, Pouillas, Pressit, Saint-Etienne-du-Bois / Département de l'Ain, Pré-inventaire, impr. 1982"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/151572429", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/151572429", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/225148570700124311979", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Treffort_(Ain)", "source": "WIKIPEDIA"}], "variant_access_point": ["Treffort (Ain)"], "authorized_access_point": "Treffort-Cuisiat (Ain)"} 1 +2024-09-10 15:47:15.375308 2024-09-10 15:47:15.375312 2071b14f-1bf8-4404-8091-446c24250b75 {"md5": "03059a8080ec055aedba45f8e186285c", "pid": "152219005", "note": [{"label": ["Qasr r al-Buleida : a late Roman-Byzantine fortified settlement on the Dead Sea Plain, Jordan / Alexandra Ariotti, 2009"], "noteType": "dataSource"}, {"label": ["Hameau situé à 6 km du village Ghor al-Mazra'a"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/152219005", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/152219005", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb166008514", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/243233070", "source": "VIAF"}], "authorized_access_point": "Qasr al-Buleida (Jordanie ; site archéologique)"} 1 +2024-09-10 15:47:15.454196 2024-09-10 15:47:15.4542 db19a427-6abd-4704-9818-169ad777b467 {"md5": "7914a133190a1710d45cf2b73f08d478", "pid": "153092815", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/153092815", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/153092815", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/37148570468224310076", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)040689794", "source": "GND"}], "authorized_access_point": "Auschwitz (Pologne)"} 1 +2024-09-10 15:47:15.535109 2024-09-10 15:47:15.535112 82230fc9-3fe9-4c2f-9fd0-ff094a06dfc6 {"md5": "5c47603b31dbf3ddc7a0ad723d90b5b4", "pid": "153807989", "note": [{"label": ["Zur Geschichte des Gornergletschers: ein Puzzle aus historischen Dokumenten und fossilen Hölzern aus dem Gletschervorfeld / Hanspeter Holzhauser. - Bern : Geographisches Institut der Universität Bern, 2010"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/153807989", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/153807989", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16679045m", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/300148461", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)961576073", "source": "GND"}], "classification": [{"name": "Sciences de la Terre", "type": "bf:ClassificationDdc", "classificationPortion": "550"}, {"name": "Géographie de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "914"}], "variant_access_point": ["Gorner Gletscher (Valais, Suisse)", "Gornergletscher (Valais, Suisse)", "Glacier de Gorner (Valais, Suisse)", "Zermatt, Glacier de (Valais, Suisse)", "Glacier de Zermatt (Valais, Suisse)", "Görnergletscher (Valais, Suisse)", "Nördlischer Monte Rosa Gletscher (Valais, Suisse)"], "authorized_access_point": "Gorner, Glacier de (Valais, Suisse)"} 1 +2024-09-10 15:47:15.598588 2024-09-10 15:47:15.598593 9f432012-184a-4ba2-a32b-3b91ff6a5a57 {"md5": "341de3e4a1bf1952a0ad716d1eed4947", "pid": "154297550", "note": [{"label": ["Église paroissiale de Martigny-Ville - http://www.paroissemartigny.ch (2011-08-10)", "Ville de Martigny - http://www.martigny.ch (2011-08-10)", "Dict. historique de la Suisse : église Notre-Dame des champs - http://www.hls-dhs-dss.ch (2011-08-10)"], "noteType": "dataSource"}, {"label": ["Guides Voir : Suisse, 2006"], "noteType": "dataNotFound"}, {"label": ["Église paroissiale de Martigny, qui a succédé à plusieurs lieux de culte, d'un sanctuaire romain à l'église baroque. Longtemps utilisé, le vocable \\"Notre-Dame des Champs\\" est aujourd'hui affecté au bâtiment paroissial voisin"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/154297550", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/154297550", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16530054d", "source": "BNF"}], "classification": [{"name": "Religion", "type": "bf:ClassificationDdc", "classificationPortion": "200"}, {"name": "Architecture", "type": "bf:ClassificationDdc", "classificationPortion": "720"}, {"name": "Géographie de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "914"}], "variant_access_point": ["Église Notre-Dame de la Visitation (Martigny, Valais, Suisse)", "Église Notre-Dame des Champs (Martigny, Valais, Suisse)", "Notre-Dame de la Visitation, Église (Martigny, Valais, Suisse)", "Notre-Dame des Champs, Église (Martigny, Valais, Suisse)"], "authorized_access_point": "Martigny (Valais, Suisse) - Église Notre-Dame de la Visitation"} 1 +2024-09-10 15:47:15.662899 2024-09-10 15:47:15.662903 a24cdd8a-6fa9-4119-8d5e-bbb498bd335e {"md5": "c2aaf4c76689a1d16719e0b5987efeb3", "pid": "154762393", "note": [{"label": ["BDIC Nanterre. Archives des Collectivités. La Guerre 1914-1918 dans le ressort de l'Académie de Lille. Cote : F delta 1126//01a/A1.212"], "noteType": "dataSource"}, {"label": ["Camp d'internement pendant la guerre de 1914-1918. Situé au canton Valais. Ony trouvait notamment des internés militaires français."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/154762393", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/154762393", "source": "IDREF"}], "variant_access_point": ["Loèche-les-Bains (Valais, Suisse) - Camp d'internement"], "authorized_access_point": "Leukerbad (Valais, Suisse) - Camp d'internement"} 1 +2024-09-10 15:47:15.736491 2024-09-10 15:47:15.736495 f88f719d-c80c-48a1-aac9-c228c578957e {"md5": "66b853bb2cbc44346ddfcc26c23242d6", "pid": "156994151", "note": [{"label": ["Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgenössische Stabsbüreau unter der direktion von Oberst Siegfried veröffentlicht"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/156994151", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/156994151", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/53148570484424310365", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)04005764X", "source": "GND"}], "variant_access_point": ["Bern (Suisse)"], "authorized_access_point": "Berne (Suisse ; région)"} 1 +2024-09-10 15:47:16.315474 2024-09-10 15:47:16.315479 ea952fbf-6b09-49f8-a2cd-b3471eee59ae {"md5": "205aa27319b268f8af092efca53d92c7", "pid": "157135675", "note": [{"label": ["Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgenössische Stabsbüreau unter der direktion von Oberst Siegfried veröffentlicht"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/157135675", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/157135675", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/121148570787624312975", "source": "VIAF"}], "authorized_access_point": "Finhaut (Valais, Suisse ; région)"} 1 +2024-09-10 15:47:15.813585 2024-09-10 15:47:15.81359 3d3d06b9-cf14-40cc-8d6a-f312514551f3 {"md5": "ed3b2d5693d7e2451508f40b95691ddf", "pid": "157032469", "note": [{"label": ["Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgenössische Stabsbüreau unter der direktion von Oberst Siegfried veröffentlicht"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/157032469", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/157032469", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16200295d", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/239656292", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Cheseaux-sur-Lausanne", "source": "WIKIPEDIA"}], "authorized_access_point": "Cheseaux (Suisse ; région)"} 1 +2024-09-10 15:47:15.872508 2024-09-10 15:47:15.872511 0b1b7801-fc05-4d0a-8954-019707feb0bc {"md5": "d3f7ec6b494e6822cb70d9cc9b410085", "pid": "157043819", "note": [{"label": ["Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgenössische Stabsbüreau unter der direktion von Oberst Siegfried veröffentlicht"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/157043819", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/157043819", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/137148570485524310256", "source": "VIAF"}], "authorized_access_point": "Belfaux (Fribourg, Suisse ; région)"} 1 +2024-09-10 15:47:15.930662 2024-09-10 15:47:15.930667 649771fb-e95e-450e-bd74-78398a75b1a8 {"md5": "7898cf6c323dd5468f89675ffd1f99cd", "pid": "157043908", "note": [{"label": ["Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgenössische Stabsbüreau unter der direktion von Oberst Siegfried veröffentlicht"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/157043908", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/157043908", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/136148570491024310547", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)041965299", "source": "GND"}], "authorized_access_point": "Fribourg (Fribourg, Suisse ; région)"} 1 +2024-09-10 15:47:15.993403 2024-09-10 15:47:15.993407 79c5fcd6-a22d-4c0a-9eb3-2da9838336ae {"md5": "027cc35179b2aa96b33c757744a43c54", "pid": "157046125", "note": [{"label": ["Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgenössische Stabsbüreau unter der direktion von Oberst Siegfried veröffentlicht"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/157046125", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/157046125", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb155788903", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/27144648222762151333", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)949680915", "source": "GND"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Saint-Blaise_(Neuchâtel)", "source": "WIKIPEDIA"}], "variant_access_point": ["St-Blaise (Suisse)"], "authorized_access_point": "Saint-Blaise (Neuchâtel, Suisse)"} 1 +2024-09-10 15:47:16.053184 2024-09-10 15:47:16.053188 9912e072-8c5a-4b9f-84ed-618fd93abf61 {"md5": "3bdd7db74d7e188a46a15da629662dce", "pid": "157046486", "note": [{"label": ["Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgenössische Stabsbüreau unter der direktion von Oberst Siegfried veröffentlicht"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/157046486", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/157046486", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/8605148574371124430002", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)040804003", "source": "GND"}], "variant_access_point": ["Biel (Suisse)"], "authorized_access_point": "Bienne (Suisse ; région)"} 1 +2024-09-10 15:47:16.123595 2024-09-10 15:47:16.123598 330282a0-9370-4a3a-9455-1f78756a295d {"md5": "3dafcd42f4379c0648bf06a5dc88da17", "pid": "157070093", "note": [{"label": ["Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgenössische Stabsbüreau unter der direktion von Oberst Siegfried veröffentlicht"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/157070093", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/157070093", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/6822148574363524430000", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)953273733", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)953273733", "source": "GND"}], "authorized_access_point": "Sion (Valais, Suisse ; région)"} 1 +2024-09-10 15:47:16.183674 2024-09-10 15:47:16.183678 f8c5fe75-9cf4-4837-b94f-a46e208439ab {"md5": "cb6b3a07b03ecaac5e392396826e103f", "pid": "157075109", "note": [{"label": ["Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgenössische Stabsbüreau unter der direktion von Oberst Siegfried veröffentlicht"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/157075109", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/157075109", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13332495t", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/157272680", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Villmergen", "source": "WIKIPEDIA"}], "authorized_access_point": "Villmergen (Suisse ; région)"} 1 +2024-09-10 15:47:16.253834 2024-09-10 15:47:16.253837 bdd6bb18-e06b-4e3e-9e05-9b855037f267 {"md5": "5005de9d980db1098d88cb674e3fb0cc", "pid": "157110184", "note": [{"label": ["Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgenössische Stabsbüreau unter der direktion von Oberst Siegfried veröffentlicht"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/157110184", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/157110184", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/237444110", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/La_Côte-aux-Fées", "source": "WIKIPEDIA"}], "authorized_access_point": "Côte aux fées (Suisse ; région)"} 1 +2024-09-10 15:47:16.387027 2024-09-10 15:47:16.387033 ba7bd13f-e12a-4b40-bbdf-676b6a6c989d {"md5": "a143f5a97b788df28c7a987bbb0e4598", "pid": "157135756", "note": [{"label": ["Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgenössische Stabsbüreau unter der direktion von Oberst Siegfried veröffentlicht"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/157135756", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/157135756", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/7324148574283224430000", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)953387615", "source": "GND"}], "authorized_access_point": "Martigny (Valais, Suisse ; région)"} 1 +2024-09-10 15:47:16.450037 2024-09-10 15:47:16.450042 1d7cf797-959f-48b4-9cbc-6ccc41612d6e {"md5": "af34cad6efda5b005faa9dcaa764a792", "pid": "157143791", "note": [{"label": ["Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgenössische Stabsbüreau unter der direktion von Oberst Siegfried veröffentlicht"], "noteType": "dataSource"}, {"label": ["Ne pas confondre avec: Colombier (Vaud, Suisse)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/157143791", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/157143791", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/86148570501924310556", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)959239235", "source": "GND"}], "authorized_access_point": "Colombier (Neuchâtel, Suisse)"} 1 +2024-09-10 15:47:16.518508 2024-09-10 15:47:16.518511 15ff9fde-e730-4de3-8c8b-91f48d243b0a {"md5": "283cba437dcf10760bd2b645d4761656", "pid": "157164764", "note": [{"label": ["Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgenössische Stabsbüreau unter der direktion von Oberst Siegfried veröffentlicht"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/157164764", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/157164764", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/97148570783424312980", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)953427730", "source": "GND"}], "variant_access_point": ["Neuenburg (Neuchâtel, Suisse)"], "authorized_access_point": "Neuchâtel (Neuchâtel, Suisse ; région)"} 1 +2024-09-10 15:47:16.611498 2024-09-10 15:47:16.611503 0d22a884-44e8-4d10-a692-7d9e44508251 {"md5": "8956c75142456313af70443097d2ee23", "pid": "157165892", "note": [{"label": ["Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgenössische Stabsbüreau unter der direktion von Oberst Siegfried veröffentlicht"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/157165892", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/157165892", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/102148570725424312417", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)959192743", "source": "GND"}], "authorized_access_point": "Saint-Maurice (Valais, Suisse ; région)"} 1 +2024-09-10 15:47:16.70033 2024-09-10 15:47:16.700335 0f932943-1b4f-4f1f-af03-ae0abb904220 {"md5": "0b99ea5f49e2ed08010842db2259d86b", "pid": "157260275", "note": [{"label": ["Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgenössische Stabsbüreau unter der direktion von Oberst Siegfried veröffentlicht"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/157260275", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/157260275", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/144290317", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Vouvry", "source": "WIKIPEDIA"}], "authorized_access_point": "Vouvry (Valais, Suisse ; région)"} 1 +2024-09-10 15:47:16.758141 2024-09-10 15:47:16.758144 78e647c3-af0f-4a6a-9ee1-dc88cdb356cf {"md5": "eef272cbdb9e3a47dd15396941a11ede", "pid": "157265927", "note": [{"label": ["Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgenössische Stabsbüreau unter der direktion von Oberst Siegfried veröffentlicht"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/157265927", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/157265927", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/105148570725524312416", "source": "VIAF"}], "authorized_access_point": "Gryon (Vaud, Suisse ; région)"} 1 +2024-09-10 15:47:16.814387 2024-09-10 15:47:16.814391 b4a970f7-ed01-4769-9fce-ce2e54fba0de {"md5": "b0c19af31dc1ed2288f1411a1280ed55", "pid": "158185102", "note": [{"label": ["Kommunalpolitik in Penzberg und Saint-Fons / Gilbert Casasus, 1985"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/158185102", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/158185102", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/173407949", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Saint-Fons", "source": "WIKIPEDIA"}], "authorized_access_point": "Saint-Fons (France)"} 1 +2024-09-10 15:47:16.881235 2024-09-10 15:47:16.881238 f6a4ff2e-8dce-4cb1-a463-34faa0b1add2 {"md5": "0ec00735e29e66e496ea52657481e878", "pid": "158634624", "note": [{"label": ["Eine katholische Glaubenswelt : das Lötschental des 19. Jahrhunderts / herausgegeben vom Lötschentaler Museum in Kippel anlässlich der Ausstellung \\"Katholische Bildwelten\\" vom 29. Mai 2010 bis zum 31. März 2011 ; [Herausgeber, Thomas Antonietti und Rita Kalbermatten-Ebener ; Texte, Thomas Antonietti], cop. 2010"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/158634624", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/158634624", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/2769148574264424430001", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)040361640", "source": "GND"}], "variant_access_point": ["Lötschen, Vallée de (Valais, Suisse)", "Lötschen, Vallée du (Valais, Suisse)", "Loetschen, Vallée de (Valais, Suisse)", "Loetschen, Vallée du (Valais, Suisse)"], "authorized_access_point": "Lötschental (Valais, Suisse)"} 1 +2024-09-10 15:47:16.945296 2024-09-10 15:47:16.9453 b8a80f11-6286-4be4-8ce7-caa1e897ab64 {"md5": "ef86ffd194e86c63949fd8443e00388d", "pid": "15903194X", "note": [{"label": ["GDEL", "Brockhaus, 17e ed"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/15903194X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/15903194X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12002988n", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040220419", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/88148570483324310216", "source": "VIAF"}], "variant_access_point": ["Greyerz (Freiburg, Schweiz)"], "authorized_access_point": "Gruyères (Fribourg, Suisse)"} 1 +2024-09-10 15:47:17.022732 2024-09-10 15:47:17.022736 4b974775-ee57-4d6a-b315-963030667190 {"md5": "1b5fcca1a30fa22696c2670cc6024246", "pid": "159667518", "note": [{"label": ["Robert encyclopédique des noms propres, 2008"], "noteType": "dataSource"}, {"label": ["L'une des sept provinces historiques du Pays basque, comprise entre la Navarre et le Béarn"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Pays basque (Pyrénées-Atlantiques)"}, {"authorized_access_point": "Pyrénées-Atlantiques (France)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/159667518", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/159667518", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11987681p", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/166144783024238212729", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Soule_(province)", "source": "WIKIPEDIA"}], "variant_access_point": ["Soule, Pays de (Pyrénées-Atlantiques)"], "authorized_access_point": "Soule (Pyrénées-Atlantiques)"} 1 +2024-09-10 15:47:17.083117 2024-09-10 15:47:17.083122 d7da1eec-c8e3-4224-9c79-6db3b8262f1e {"md5": "f086529ebb2a45b5af26d2733af91f64", "pid": "16152270X", "note": [{"label": ["\\"Gebilde von hoher Zwecklosigkeit\\" : Walter Maria Förderers Gratwanderung zwischen Architektur und Skulptur am Beispiel St-Nicolas in Hérémence / Zara Reckermann, cop. 2009", "Internet, http://d-nb.info/gnd/7672770-1, 2012-06-06"], "noteType": "dataSource"}, {"label": ["Eglise néo-expressionniste construite par Walter Maria Förderer (1928-2006) en 1971"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/16152270X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/16152270X", "source": "IDREF"}], "variant_access_point": ["Hérémence (Valais, Suisse) - St-Nicolas", "Hérémence (Valais, Suisse) - Katholische Pfarrkirche", "Hérémence (Valais, Suisse) - Sankt Nicolas"], "authorized_access_point": "Hérémence (Valais, Suisse) - Église Saint-Nicolas"} 1 +2024-09-10 15:47:17.142626 2024-09-10 15:47:17.14263 881ac6a1-7d96-4755-8e27-00e7d05202f8 {"md5": "fceec4f791eacc2e3c6655f0193f49b3", "pid": "161522718", "note": [{"label": ["\\"Gebilde von hoher Zwecklosigkeit\\" : Walter Maria Förderers Gratwanderung zwischen Architektur und Skulptur am Beispiel St-Nicolas in Hérémence / Zara Reckermann, cop. 2009"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/161522718", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/161522718", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)043082572", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/112144647650953000031", "source": "VIAF"}], "variant_access_point": ["Armensi (Valais, Suisse)", "Ermenz (Valais, Suisse)"], "authorized_access_point": "Hérémence (Valais, Suisse)"} 1 +2024-09-10 15:47:17.210888 2024-09-10 15:47:17.210893 109d2529-4a34-4f70-a0aa-9f806402d94d {"md5": "378662f2f52de413fd085d39a0b22aa4", "pid": "161930069", "note": [{"label": ["Dictionnaire des communes, 2002"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/161930069", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/161930069", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb131958679", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/159189091", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Veyrier-du-Lac", "source": "WIKIPEDIA"}], "authorized_access_point": "Veyrier-du-Lac (Haute-Savoie)"} 1 +2024-09-10 15:47:17.286298 2024-09-10 15:47:17.286302 553c52fa-5505-4a78-b448-c75450d1d8cc {"md5": "e3709feacd7b1dcc74e0db0cb30d5f20", "pid": "162029667", "note": [{"label": ["Site officiel de la commune"], "noteType": "dataSource"}, {"label": ["Commune du canton du Valais"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/162029667", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/162029667", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/40148570706524311869", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)041021746", "source": "GND"}], "authorized_access_point": "Monthey (Valais, Suisse)"} 1 +2024-09-10 15:47:17.348869 2024-09-10 15:47:17.348874 637a99ef-c827-4114-9839-5621be56c335 {"md5": "06ae1ea5dc5d04fbe893dd93e73074e7", "pid": "162144342", "note": [{"label": ["Dict. communes, 2002"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/162144342", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/162144342", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15591531g", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/14144648150835336147", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Saint-Jean-d'Arves", "source": "WIKIPEDIA"}], "authorized_access_point": "Saint-Jean-d'Arves (Savoie)"} 1 +2024-09-10 15:47:17.408591 2024-09-10 15:47:17.408594 54332957-6273-4943-ac1c-1aa364c1b575 {"md5": "d4f3d6907f336c0925e09a147e5e992a", "pid": "163687536", "note": [{"label": ["BDIC Nanterre, Archives. Bureau d'études de la presse étrangère.- Suisse 1915-1922 (cote F delta 788/22)", "Dictionnaire Historique de la Suisse (URL: http://www.hls-dhs-dss.ch/textes/f/F2782.php)"], "noteType": "dataSource"}, {"label": ["Commune du canton Valais. On y trouve depuis 1905 une usine de Aluminium Industrie AG (depuis Alusuisse), théâtre d'une grève insurrectionnelle en mai-juin 1917."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/163687536", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/163687536", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/66148570719924312145", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)1004355866", "source": "GND"}], "authorized_access_point": "Chippis (Valais, Suisse)"} 1 +2024-09-10 15:47:17.472631 2024-09-10 15:47:17.472635 85cc79cd-f6a0-44cf-8d0a-55137ab482ee {"md5": "e855b6a2a8eb65715e91908d2fc2b5bc", "pid": "165827157", "note": [{"label": ["Aménagements fluviaux de la Thielle au Moyen Age : pêcherie et moulin de Pré de la Mottaz / Nicole Plumettaz, Daniel Pillonel et Nigel Thew; avec des contributions de Stéphane Böhringer, Patrick Gassmann, Philippe Hadorn...[et al.]; avec un texte orginal d'Hanni Schwab; et un document de Bernard Vauthier, 2011"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/165827157", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/165827157", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/91148570456824310233", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)1025748506", "source": "GND"}], "variant_access_point": ["Thielle (Neuchâtel, Suisse ; cours d'eau)", "Thielle (Berne, Suisse ; cours d'eau)"], "authorized_access_point": "Thielle (Suisse ; cours d'eau)"} 1 +2024-09-10 15:47:17.543126 2024-09-10 15:47:17.54313 ad35256b-2f9d-44e7-a094-6ad5c495dbce {"md5": "4d9b442c9d4378fe9dc7dec3f0e9e3a9", "pid": "169621820", "note": [{"label": ["The history of Bahawalpur / Shahamet Ali, 2012", "Internet, http://wikipedia.org, 2013-05-29", "Bernard Desnous. BULAC. Tél. 01 81 69 18 24. Courriel : bernard.desnouesbulac.fr"], "noteType": "dataSource"}, {"label": ["Ville située dans le district de Bahawalpur dans la Province du Pendjab au Pakistan"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/169621820", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/169621820", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16026376x", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/123164765", "source": "VIAF"}], "variant_access_point": ["Bahāvalpūr (Pakistan)", "بھاولپور (Pakistan)"], "authorized_access_point": "Bahāwalpur (Pakistan)"} 1 +2024-09-10 15:47:17.605121 2024-09-10 15:47:17.605125 1482eb48-ec2d-40ec-9dd4-5f372a53490e {"md5": "a8fff6186c8d8a909607a28a8b9e4287", "pid": "171128362", "note": [{"label": ["Dictionnaire des communes, 2002"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/171128362", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/171128362", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16529740m", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/254854254", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Nonglard", "source": "WIKIPEDIA"}], "authorized_access_point": "Nonglard (Haute-Savoie)"} 1 +2024-09-10 15:47:17.667295 2024-09-10 15:47:17.667301 a48404dd-96ad-4b0f-9ca7-2eee689a34ee {"md5": "1e9890221a1a2502acffe369309f75c5", "pid": "175270147", "note": [{"label": ["Ci hai, 1999"], "noteType": "dataSource"}, {"label": ["Ville située à l'extrémité occidentale de la province du Guangdong. Concession française sous le nom de Fort-Bayard de 1899 à 1945", "N 21°16′53″ / E 110°20′34″"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Guangdong (Chine ; province)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/175270147", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/175270147", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb167267480", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/113144647643872637671", "source": "VIAF"}, {"type": "uri", "value": "http://viaf.org/viaf/4147150749007416420001", "source": "VIAF"}], "relation_pid": {"type": "redirect_from", "value": "203905040"}, "classification": [{"name": "Géographie du reste du monde", "type": "bf:ClassificationDdc", "classificationPortion": "915"}], "variant_access_point": ["Chan kiang (Chine)", "Fort Bayard (Chine)", "Kwang chou wan (Chine)", "Tsan kiang (Chine)", "Zhan jiang (Chine)", "Zhan jiang shi (Chine)", "Kwangchowwan", "湛江市", "Zhanjiang shi"], "authorized_access_point": "Zhanjiang (Chine)"} 1 +2024-09-10 15:47:17.726157 2024-09-10 15:47:17.726162 527edb79-0ab6-44ee-8b34-07666fa6cbab {"md5": "9178416ab70790efbed8a36f3fb5cda5", "pid": "176470875", "note": [{"label": ["Bahāvalpūr : ḵẖvushḥāl riyāsat se pasmāndah ḍivīzhan tak / Mujāhid Ḥusain, 2011", "Bernard Desnous. BULAC. Tél. 01 81 69 18 24. Courriel : bernard.desnouesbulac.fr"], "noteType": "dataSource"}, {"label": ["Chef-lieu de l'administration territoriale du même nom"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/176470875", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/176470875", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/156004112", "source": "VIAF"}], "variant_access_point": ["Bahāvalpūr (Pakistan ; Division)", "بھاولپور (Pakistan ; Division)"], "authorized_access_point": "Bahāwalpur (Pakistan ; Division)"} 1 +2024-09-10 15:47:17.78416 2024-09-10 15:47:17.784163 773f8b5a-edae-4a28-bb5b-ce87576a71eb {"md5": "47b7f16f5882c0b0211b44b9f5aaf8ac", "pid": "177159855", "note": [{"label": ["Carte nationale de la Suisse 1:50 000. feuille 283. Arolla. Grand Combin - Lac des Dix - Matterhorn [Document cartographique] / Office fédéral de topographie swisstopo, 2013"], "noteType": "dataSource"}, {"label": ["Village de montagne du canton du Valais", "Coordonnées géographiques : E 7°29' / N 46°1'31\\""], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/177159855", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/177159855", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15284200c", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/169947327", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)962615161", "source": "GND"}], "authorized_access_point": "Arolla (Valais, Suisse)"} 1 +2024-09-10 15:47:17.846614 2024-09-10 15:47:17.846619 6767ec12-87f3-4264-ba93-30ddff844547 {"md5": "ab7ab609c44d06795a0cb7542c4b608e", "pid": "177517506", "note": [{"label": ["Résistance entre Voirons et frontière : Machilly 1938-1947 / Simone et Robert Amoudruz, impr. 2013"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/177517506", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/177517506", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/316739960", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Machilly", "source": "WIKIPEDIA"}], "authorized_access_point": "Machilly (Haute-Savoie)"} 1 +2024-09-10 15:47:17.909736 2024-09-10 15:47:17.90974 4ac8d8d6-789c-4689-ad17-125bfed4fdb4 {"md5": "ceab94a213a808349a0e8e25af4cd92c", "pid": "177835893", "note": [{"label": ["Dict. communes, 1992"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/177835893", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/177835893", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13167493m", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/238768969", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Sancé_(Saône-et-Loire)", "source": "WIKIPEDIA"}], "authorized_access_point": "Sancé (Saône-et-Loire)"} 1 +2024-09-10 15:47:17.976847 2024-09-10 15:47:17.976852 3db7db7c-7b4a-4920-b49e-d33217374b3e {"md5": "e75c42e040e52d51f1782d925c4425dc", "pid": "178091219", "note": [{"label": ["Grand Larousse universel : Dawḥa (al-) ou Doha (al-)", "Atlas Le Monde : Ad Dawḥa"], "noteType": "dataSource"}, {"label": ["Capitale du Qatar"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/178091219", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/178091219", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11962996x", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/136649381", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Doha", "source": "WIKIPEDIA"}], "classification": [{"name": "Géographie du reste du monde", "type": "bf:ClassificationDdc", "classificationPortion": "915"}], "variant_access_point": ["Ad Dawḥa (Qatar)", "Al-Doha (Qatar)", "Dawḥa, Al (Qatar)", "Doha (Qatar)"], "authorized_access_point": "Al-Dawḥa (Qatar)"} 1 +2024-09-10 15:47:18.049304 2024-09-10 15:47:18.049307 6d8420d0-9ce1-46e6-9e60-4aaee53bf9e0 {"md5": "a2013eb1788971339f54c8d41d246806", "pid": "178635863", "note": [{"label": ["Dictionnaire des communes, 2002"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/178635863", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/178635863", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/146557727", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Vaux-en-Bugey", "source": "WIKIPEDIA"}], "authorized_access_point": "Vaux-en-Bugey (Ain)"} 1 +2024-09-10 15:47:18.120832 2024-09-10 15:47:18.120836 1786ba7f-2c99-4dda-bedd-9539a949cbc7 {"md5": "295397123acd7681eae57a685a4c6d12", "pid": "18055686X", "note": [{"label": ["Atlas universel Le Monde, 1989"], "noteType": "dataSource"}, {"label": ["Commune du canton de Vaud, sur la rive nord du lac Léman, toute proche de Lausanne"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/18055686X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/18055686X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15858450v", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/157246276", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Pully", "source": "WIKIPEDIA"}], "classification": [{"name": "Géographie de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "914"}], "authorized_access_point": "Pully (Suisse)"} 1 +2024-09-10 15:47:18.183501 2024-09-10 15:47:18.183507 60cd08e0-3088-486a-9a51-3fdcf03b48b0 {"md5": "884443aedc90820fc685e845a455b8ab", "pid": "183926943", "note": [{"label": ["Notice n° : FRBNF15274480. Adresse:http://catalogue.bnf.fr/ark:/12148/cb152744806/PUBLIC", "La Roche-sur-Foron: 74800: voies de communication / [réalisé et publié par]Editions P.P.P., 1982"], "noteType": "dataSource"}, {"label": ["Coordonnées géographiques : E 6°18'40\\" / N 46°3'56\\""], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/183926943", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/183926943", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15868881f", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/133728351", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/La_Roche-sur-Foron", "source": "WIKIPEDIA"}], "authorized_access_point": "La Roche-sur-Foron (Haute-Savoie)"} 1 +2024-09-10 15:47:18.247055 2024-09-10 15:47:18.24706 5c5c7f1b-ceca-4c7a-9916-6fdb58b00690 {"md5": "035eb50c9bb35386f9e1235a1146be11", "pid": "184504872", "note": [{"label": ["Wikipedia (2015-03-24)"], "noteType": "dataSource"}, {"label": ["Podgorica est la capitale du Monténégro ainsi que sa plus grande ville", "N 42° 26′ 28″ / E 19° 15′ 49″"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/184504872", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/184504872", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15205350s", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/127589542", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Podgorica", "source": "WIKIPEDIA"}], "variant_access_point": ["Подгорица", "Titograd"], "authorized_access_point": "Podgorica (Monténégro)"} 1 +2024-09-10 15:47:18.30721 2024-09-10 15:47:18.307213 5b7158ef-0264-458b-bd5a-f5018ece303f {"md5": "3807ec0aacfcd90de97a7d839dc2e30f", "pid": "185130348", "note": [{"label": ["Dict. communes, 2001"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/185130348", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/185130348", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15049047h", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/236148481", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Neuville-les-Dames", "source": "WIKIPEDIA"}], "classification": [{"name": "Géographie de la France", "type": "bf:ClassificationDdc", "classificationPortion": "912"}], "authorized_access_point": "Neuville-les-Dames (Ain)"} 1 +2024-09-10 15:47:18.369535 2024-09-10 15:47:18.369539 3d97ac42-8e8e-45cd-b33f-b193b5b46ff0 {"md5": "9b5ad74290f2ef02a85bf26f2e01aa64", "pid": "185838235", "note": [{"label": ["Dict. communes, 1984"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/185838235", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/185838235", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12016494c", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/244320617", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Régny", "source": "WIKIPEDIA"}], "authorized_access_point": "Régny (Loire)"} 1 +2024-09-10 15:47:18.435756 2024-09-10 15:47:18.43576 2c105270-9da0-4957-8e36-c598eb145bf4 {"md5": "e9f989ddcb1921ac43288c77596cbc32", "pid": "186257287", "note": [{"label": ["Historic Nassau / Gail Saunders and Donald Cartwright, 1979"], "noteType": "dataSource"}, {"label": ["Capitale des Bahamas"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/186257287", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/186257287", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/148911449", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Nassau_(Bahamas)", "source": "WIKIPEDIA"}], "authorized_access_point": "Nassau (Bahamas)"} 1 +2024-09-10 15:47:18.498142 2024-09-10 15:47:18.498147 699c78c2-4ccb-4a13-a7d4-7b00fb0acfe3 {"md5": "84059c39b22a9bd927556548dddabf8f", "pid": "188234837", "note": [{"label": ["GeoNames (2015-09-15)"], "noteType": "dataSource"}, {"label": ["Province chinoise", "N 33°00′00″ / E 119°50′00″"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Chine - Provinces"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/188234837", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/188234837", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/3997148574310724430001", "source": "VIAF"}], "variant_access_point": ["江蘇省", "江苏省", "Jiangsu Sheng"], "authorized_access_point": "Jiangsu (Chine ; province)"} 1 +2024-09-10 15:47:18.560876 2024-09-10 15:47:18.560883 0a01de52-090f-4e37-b5a0-7a4936dffaa7 {"md5": "fdcf6ed2dc347afb06394a84bf288f39", "pid": "190533889", "note": [{"label": ["Grand Larousse universel", "Robert encyclopédique des noms propres, 2008", "Dict. de géographie historique de la Gaule et de la France / J. Moreau, 1972", "Trésor des régions - http://tresordesregions.mgm.fr (2008-12-16)"], "noteType": "dataSource"}, {"label": ["Vallée haute de l'Isère (en amont d'Albertville), et région de Savoie autour de cette vallée, qui a constitué une province de l'ancienne Savoie"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/190533889", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/190533889", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119334934", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/278144783073895221354", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Vallée_de_la_Tarentaise", "source": "WIKIPEDIA"}], "classification": [{"name": "Géographie de la France", "type": "bf:ClassificationDdc", "classificationPortion": "912"}], "variant_access_point": ["Isère, Vallée haute de l' (Savoie)"], "authorized_access_point": "Tarentaise (Savoie)"} 1 +2024-09-10 15:47:18.622786 2024-09-10 15:47:18.622789 975b63cc-dff0-40e6-aef9-2651e9946734 {"md5": "b2f09f62b8218510d853ad9b370eb372", "pid": "192765531", "note": [{"label": ["S. Bernardo alle Terme e le distrutte chiese di S. Ciriaco e S. Caterina in Thermis / Sergio Ortolani, vers 1923"], "noteType": "dataSource"}, {"label": ["Adresse : Via Giulia. L'édifice appartient à l'archiconfrérie de Sienne depuis sa fondation en 1526. L'édifice fut entièrement reconstruit entre 1766 et 1775"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/192765531", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/192765531", "source": "IDREF"}], "classification": [{"name": "Religion", "type": "bf:ClassificationDdc", "classificationPortion": "200"}, {"name": "Architecture", "type": "bf:ClassificationDdc", "classificationPortion": "720"}, {"name": "Géographie de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "914"}], "variant_access_point": ["Chiesa di Santa Caterina (Rome, Italie)", "Chiesa di Santa Caterina in Thermis (Rome, Italie)", "Rome (Italie) - Église Sainte-Catherine", "Église Sainte-Catherine (Rome, Italie)", "Santa Caterina (Rome, Italie)"], "authorized_access_point": "Rome (Italie) - Chiesa di Santa Caterina"} 1 +2024-09-10 15:47:18.683428 2024-09-10 15:47:18.683432 89e46251-a785-45c0-a22d-389579225f5b {"md5": "601912494d1b291508ff4be49d669855", "pid": "193304767", "note": [{"label": ["LC online cat., 2023-10-05 : Tutankhamen, King of Egypt -- Tomb", "Guides bleus : Égypte, 1990", "Chronique de l'Égypte ancienne / M. Dessoudeix, 2008", "Encycl. of the archaeology of ancient Egypt / K. A. Bard, 1999 (art. : Thebes, Valley of the Kings)", "The complete Valley of the Kings / N. Reeves, R. H. Wilkinson, 1997", "Antikforever : les nécropoles : la vallée des Rois - http://antikforever.com/Egypte/Tombes/vallees_rois.htm (2016-05-13)", "Topographical bibliography of ancient Egyptian hieroglyphic texts, reliefs, and paintings, 1.2 The Theban necropolis : Royal tombs and smaller cemeteries / B. Porter, R. L. B. Moss, 1964 (p. 569-586) : Tutʿankhamūn' - http://www.griffith.ox.ac.uk/topbib/pdf/pm1-2.pdf (2016-05-13)"], "noteType": "dataSource"}, {"label": ["Tombeau découvert le 4 novembre 1922 par Howard Carter, contenant, inviolés, le trésor et la momie du pharaon"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Vallée des Rois (Égypte ; site archéologique)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/193304767", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/193304767", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb17046157n", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)1165082802", "source": "GND"}], "classification": [{"name": "Architecture", "type": "bf:ClassificationDdc", "classificationPortion": "720"}, {"type": "bf:ClassificationDdc", "classificationPortion": "915"}, {"name": "Préhistoire et histoire ancienne", "type": "bf:ClassificationDdc", "classificationPortion": "930"}], "variant_access_point": ["Thèbes (ville ancienne) - Tombe KV62", "Tombe de Toutankhamon (Vallée des Rois, Égypte)", "Tombe KV62 (Vallée des Rois, Égypte)", "Tombeau de Toutankhamon (Vallée des Rois, Égypte)", "Vallée des Rois (Égypte ; site archéologique) - Tombe KV62"], "authorized_access_point": "Vallée des Rois (Égypte ; site archéologique) - Tombe de Toutankhamon"} 1 +2024-09-10 15:47:18.749529 2024-09-10 15:47:18.749533 25f9f9de-e73e-4361-9898-41771f5437c9 {"md5": "aea64a4507801855ba1d3a05a69bf17b", "pid": "193589370", "note": [{"label": ["Web, https://fr.wikipedia.org/wiki/Saint-Just-la-Pendue (2016-06-07)"], "noteType": "dataSource"}, {"label": ["E 4°14'38\\" / N 45°53'42\\""], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/193589370", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/193589370", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11987537x", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/141509173", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Saint-Just-la-Pendue", "source": "WIKIPEDIA"}], "authorized_access_point": "Saint-Just-la-Pendue (Loire)"} 1 +2024-09-10 15:47:28.278965 2024-09-10 15:47:28.278968 edf0ebce-c0fb-47a4-bfc5-2e3a640edd8c {"md5": "9982179e88b8aebb7fe76c27713df555", "pid": "276214463", "note": [{"label": ["Passwang : Laufen - Scheltenpass - Reigoldswil, 2023. (Landeskarte der Schweiz; 1087)"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/276214463", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/276214463", "source": "IDREF"}], "authorized_access_point": "Reigoldswil (Bâle-Campagne, Suisse)"} 1 +2024-09-10 15:47:18.809929 2024-09-10 15:47:18.809932 4d7fd011-aa04-471b-bcaf-078e7e48f94f {"md5": "34a498307c7c5e968457f81445ecf5be", "pid": "194382206", "note": [{"label": ["http://www.insee.fr/fr/methodes/nomenclatures/cog/, 2016-07-19", "http://www.geonames.org/, 2016-07-19"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/194382206", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/194382206", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb161556451", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/25144648229821282355", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Saint-Sorlin-en-Bugey", "source": "WIKIPEDIA"}], "authorized_access_point": "Saint-Sorlin-en-Bugey (Ain)"} 1 +2024-09-10 15:47:18.872277 2024-09-10 15:47:18.872282 4daa1ca5-226b-445b-9686-e59833884b17 {"md5": "25f9da156eb6a23614d3d93acdd1fc87", "pid": "196449103", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/196449103", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/196449103", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/3060148574347924430005", "source": "VIAF"}], "variant_access_point": ["Argentoratum (ville ancienne ; région)", "Strasbourg", "Strassburg (Bas-Rhin ; région)"], "authorized_access_point": "Strasbourg (Bas-Rhin ; région)"} 1 +2024-09-10 15:47:18.934426 2024-09-10 15:47:18.934429 1094833b-9517-4e0c-9a7d-34e346348749 {"md5": "3360e0e59425a4fe6cfac0879873f4ed", "pid": "197647235", "note": [{"label": ["Das St. Gotthardgebirge mit einer geologischen Karte und 4 tafeln / von Karl von Fritsch, J. Dalp, 1873", "https://fr.wikipedia.org/wiki/Massif_du_Saint-Gothard, 2024-06-27", "http://www.geonames.org/search.html?q=Gotthard&country=CH, 2017-01-16"], "noteType": "dataSource"}, {"label": ["Le massif du Saint-Gothard est une région montagneuse située dans la chaîne des Alpes, en Suisse, à la frontière de quatre cantons suisses : le Valais, le Tessin, Uri et les Grisons"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/197647235", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/197647235", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/287148570783524312836", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)040938174", "source": "GND"}], "variant_access_point": ["Sankt Gotthardgebirge (Suisse)", "Gotthardmassiv (Suisse)", "San Gottardo, massiccio del (Suisse)"], "authorized_access_point": "Saint-Gothard, massif du (Suisse)"} 1 +2024-09-10 15:47:19.00699 2024-09-10 15:47:19.006996 30d086ff-0b36-4010-b7db-48b2c2c6442d {"md5": "0335a8570872b7f7cc3a81adf927fa5d", "pid": "197699855", "note": [{"label": ["Description géologique des préalpes du canton de Vaud et du Chablais jusqu'à la Dranse et de la chaîne des dents du Midi / par Ernest Favre et Hans Schardt, 1887", "https://fr.wikipedia.org/wiki/Chablais,2017-01-18"], "noteType": "dataSource"}, {"label": ["Région située à l’extrémité vaudoise et valaisanne du Léman, en aval de la haute vallée du Rhône"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/197699855", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/197699855", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/124148570784924312981", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)950051233", "source": "GND"}], "authorized_access_point": "Chablais (Suisse)"} 1 +2024-09-10 15:47:19.068757 2024-09-10 15:47:19.06876 55c77355-fd99-4d97-ba4d-6089869f2986 {"md5": "622a0acad5f687deb6f449e663d42702", "pid": "19787133X", "note": [{"label": ["Dict. communes, 1984"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/19787133X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/19787133X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11933489w", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/134869146", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Soucieu-en-Jarrest", "source": "WIKIPEDIA"}], "variant_access_point": ["Soucieu-en-Jarez (Rhône)"], "authorized_access_point": "Soucieu-en-Jarrest (Rhône)"} 1 +2024-09-10 15:47:19.128606 2024-09-10 15:47:19.12861 b45c7552-9f08-48f1-8f89-a3e7833ae676 {"md5": "6598e7e90556b7c92fe758e5fe36538f", "pid": "198026072", "note": [{"label": ["La Région Auvergne-Rhône-Alpes - http://www.auvergnerhonealpes.fr (2016-11-14)", "Décret n° 2016-1266 du 28 septembre 2016 portant fixation du nom et du chef-lieu de la région Auvergne-Rhône-Alpes (JO du 29) - https://www.legifrance.gouv.fr (2016-11-14)"], "noteType": "dataSource"}, {"label": ["Région administrative de la France comprenant 12 départements : Ain, Allier, Ardèche, Cantal, Drôme, Haute-Loire, Haute-Savoie, Isère, Loire, Puy-de-Dôme, Rhône et Savoie (chef-lieu : Lyon), créée le 1er janvier 2016 par la fusion des régions Auvergne et Rhône-Alpes (le nom est adopté par le Conseil régional le 23 juin 2016)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/198026072", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/198026072", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb17023163f", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/729145857886323020755", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Auvergne-Rhône-Alpes", "source": "WIKIPEDIA"}], "classification": [{"name": "Géographie de la France", "type": "bf:ClassificationDdc", "classificationPortion": "912"}], "variant_access_point": ["Auvergne-Rhône-Alpes", "Région Auvergne-Rhône-Alpes (France)"], "authorized_access_point": "Auvergne-Rhône-Alpes (France)"} 1 +2024-09-10 15:47:19.19394 2024-09-10 15:47:19.193945 9389f06a-6610-4837-94d6-f31f38fa6ac2 {"md5": "7131417f6d704874413934fd32825307", "pid": "198231288", "note": [{"label": ["Note sur la Géologie des environs de Louèche-les-Bains / par le Dr Phil. de La Harpe, 1877"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/198231288", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/198231288", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040995623", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/144250507", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Loèche-les-Bains", "source": "WIKIPEDIA"}], "variant_access_point": ["Louèche-les-Bains (Valais, Suisse)", "Leukerbad (Valais, Suisse)"], "authorized_access_point": "Loèche-les-Bains (Valais, Suisse)"} 1 +2024-09-10 15:47:19.266624 2024-09-10 15:47:19.266629 54d16d2f-1347-41b1-85d8-c115e273151f {"md5": "119c55c1578d2cdc7351505d8cc1e81b", "pid": "198239386", "note": [{"label": ["Mourre", "Brockhaus, 19. Aufl", "Berliner Mauer ; SWD, 1995-04", "Mur de Berlin ; Laval RVM, 2001-07"], "noteType": "dataSource"}, {"label": ["Mur de 45 km séparant Berlin-Ouest du territoire de la RDA, érigé par les autorités est-allemandes dans la nuit du 13 août 1961. - Son ouverture le 9 novembre 1989 préluda à l'unification des deux Allemagne"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Rideau de fer (frontière)"}, {"authorized_access_point": "Berlin (Allemagne) - 1945-1990"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Berlin (Allemagne) - 1989 (Chute du Mur)"}], "identifier": "http://www.idref.fr/198239386", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/198239386", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119380937", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040948374", "source": "GND"}], "relation_pid": {"type": "redirect_from", "value": "084361409"}, "classification": [{"name": "Construction", "type": "bf:ClassificationDdc", "classificationPortion": "690"}, {"name": "Histoire de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "940"}], "variant_access_point": ["Berlin (Allemagne) - Mauer", "Berlin (Allemagne) - Berliner Mauer", "Berlin, Mur de (1961-1989)", "Berliner Mauer (1961-1989)", "Mur de Berlin"], "authorized_access_point": "Berlin (Allemagne) - Mur de Berlin"} 1 +2024-09-10 15:47:19.333207 2024-09-10 15:47:19.333211 d8ff4ba9-034c-4fa9-b8df-7d658b0122f4 {"md5": "942750209221e0cb92d5c79d8fd3fbf1", "pid": "201852845", "note": [{"label": ["Tourisme, mobilité et développement régional dans les Alpes suisses / Delphine Gueux. 2016", "wikipedia.org, 2017-06-17"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/201852845", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/201852845", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/219150565656806251127", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)942312023", "source": "GND"}], "authorized_access_point": "Finhaut (Valais, Suisse)"} 1 +2024-09-10 15:47:19.403833 2024-09-10 15:47:19.403836 32077bc4-2ef3-4d1a-9fd2-c652c755c9f0 {"md5": "ed05ef6cf83c7075a9dff44a1665af97", "pid": "203060571", "note": [{"label": ["Dictionnaire des communes, 2002"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/203060571", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/203060571", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb131210592", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/304890312", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Montrond-les-Bains", "source": "WIKIPEDIA"}], "authorized_access_point": "Montrond-les-Bains (Loire)"} 1 +2024-09-10 15:47:19.462427 2024-09-10 15:47:19.462431 b8e82d11-f115-441e-8b4a-14089b773a31 {"md5": "3661e9cb16e1069e51179aec0483b4b3", "pid": "203376552", "note": [{"label": ["GeoNames (2017-07-26)"], "noteType": "dataSource"}, {"label": ["Les Houches sont une commune française située dans le département de la Haute-Savoie, en région Auvergne-Rhône-Alpes. La commune des Houches est située dans la vallée de l'Arve, non loin de la commune de Chamonix, au pied du mont Blanc. Étendue sur près de 5 000 hectares, de 850 m à 4 304 m (sommet du dôme du Goûter), la commune comprend de nombreux hameaux.", "N 45°53′24″ / E 6°47′46″"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Haute-Savoie (France)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/203376552", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/203376552", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12509599r", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/147176499", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Les_Houches", "source": "WIKIPEDIA"}], "variant_access_point": ["Houches"], "authorized_access_point": "Les Houches (Haute-Savoie ; région)"} 1 +2024-09-10 15:47:19.522317 2024-09-10 15:47:19.522321 a049efc4-4ceb-469d-a1e3-0e4f17a9b1ca {"md5": "80f631dbbf7dd4d74709f2004a1f05a4", "pid": "204299276", "note": [{"label": ["Atlas universel / \\"Le Monde\\", Sélection du \\"Reader's digest\\", 1989", "Dict. historique de la Suisse - http://www.hls-dhs-hss.ch (2014-02-20)", "Heremence.ch - http://www.heremence.ch (2014-02-20)", "Office national suisse du tourisme - https://www.myswitzerland.com/fr-fr/pyramides-d-euseigne.html (2017-09-13)"], "noteType": "dataSource"}, {"label": ["Curiosité géologique, dite aussi hoodoo, demoiselles coiffées, colonne de roche friable surmontée, coiffée d'un socle en roche résistant, située à l'entrée du village d'Euseigne située sur la commune d'Hérémence, Canton du Valais"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/204299276", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/204299276", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb17150260r", "source": "BNF"}], "classification": [{"name": "Géographie de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "914"}], "variant_access_point": ["Cheminées de fées (Hérémence, Valais, Suisse)", "Pyramides d'Euseigne (Hérémence, Valais, Suisse)"], "authorized_access_point": "Hérémence (Valais, Suisse) - Pyramides d'Euseigne"} 1 +2024-09-10 15:47:19.583575 2024-09-10 15:47:19.583578 ca0a8747-2834-4aa4-af55-55edfa4e4f70 {"md5": "556f1075a1c84f09cced3a060957c046", "pid": "219922608", "note": [{"label": ["Wikipedia (2011-11-03)"], "noteType": "dataSource"}, {"label": ["Betsiboka est l'une des vingt-deux régions de Madagascar. Elle est située dans la province de Majunga, dans l'ouest de l'île", "S 16°57′00″ / E 46°49′48″"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Madagascar"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/219922608", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/219922608", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/2245152865647904940008", "source": "VIAF"}], "authorized_access_point": "Betsiboka (Madagascar, région)"} 1 +2024-09-10 15:47:19.655766 2024-09-10 15:47:19.65577 dafa8c00-08a8-4a52-80e5-8d2e5e867f69 {"md5": "9fa3627c10af7c26e9c09d55e10ac1ab", "pid": "219924074", "note": [{"label": ["Wikipedia (2011-11-03)"], "noteType": "dataSource"}, {"label": ["Boeny est l'une des vingt-deux régions de Madagascar. Elle est située dans la province de Mahajanga, dans l'ouest de l'île.", "S 15°43′12″ / E 46°19′12″"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Madagascar"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/219924074", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/219924074", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb171412498", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/5150202060003111021", "source": "VIAF"}], "authorized_access_point": "Boeny (Madagascar)"} 1 +2024-09-10 15:47:19.725636 2024-09-10 15:47:19.72564 47fa19ab-6093-49c0-b975-7342780dcda5 {"md5": "c017c22eb1fa177b552fe6f249d83882", "pid": "219925283", "note": [{"label": ["Wikipedia (2011-11-03)"], "noteType": "dataSource"}, {"label": ["La Sava est l'une des vingt-deux régions de Madagascar, dont le nom est un acronyme formé à partir de ceux de ses quatre districts : Sambava, Antalaha, Vohemar et Andapa. Située dans la partie du nord-est de l'île, elle appartient à la province de Diego-Suarez. Sa capitale est Sambava", "S 14°16′12″ / E 50°10′12″"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Madagascar"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/219925283", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/219925283", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/6233151304668549460009", "source": "VIAF"}], "authorized_access_point": "Sava (Madagascar, région)"} 1 +2024-09-10 15:47:19.786716 2024-09-10 15:47:19.78672 ea44f0cd-794e-4f42-bee2-aba789471353 {"md5": "ffc58164362384296da7671c0bfc997a", "pid": "22395294X", "note": [{"label": ["GeoNames (2018-02-01)"], "noteType": "dataSource"}, {"label": ["Analamanga est l'une des vingt-deux régions de Madagascar. Elle est située dans la Province d'Antananarivo, dans le centre de l'île.", "S 18°56′24″ / E 47°31′12″"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Madagascar"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/22395294X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/22395294X", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/905152080581907230007", "source": "VIAF"}], "authorized_access_point": "Analamanga (Madagascar ; région administrative)"} 1 +2024-09-10 15:47:19.857193 2024-09-10 15:47:19.857197 a7e56828-53cd-45f1-9718-98e12401f0e0 {"md5": "1ab8cbf61e396f2514d448f37a9b6563", "pid": "223976369", "note": [{"label": ["GeoNames (2018-02-01)"], "noteType": "dataSource"}, {"label": ["Diana (de Diego I & II - Ambilobe - Nosy Be - Ambanja qui sont les districts constituant la région) est l'une des vingt-deux régions de Madagascar, située dans la province de Diego-Suarez, dans le nord de l'île.", "S 13°30′00″ / E 49°00′00″"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Madagascar"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/223976369", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/223976369", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/345149196398874790984", "source": "VIAF"}], "variant_access_point": ["Région Diana"], "authorized_access_point": "Diana (Madagascar ; région administrative)"} 1 +2024-09-10 15:47:19.918884 2024-09-10 15:47:19.918889 7628d027-596d-427a-b9be-96555275adec {"md5": "8e97b0d14cc29bfd55b969ed302c4b0d", "pid": "223979171", "note": [{"label": ["GeoNames (2018-02-02)"], "noteType": "dataSource"}, {"label": ["L'Atsinanana (Est) est une des vingt-deux régions de Madagascar. Elle est située dans la province de Tamatave, dans l'Est de l'île", "S 19°00′00″ / E 48°54′00″"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Madagascar"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/223979171", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/223979171", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/6215152080604607230004", "source": "VIAF"}], "authorized_access_point": "Atsinanana (Madagascar ; région administrative)"} 1 +2024-09-10 15:47:19.978051 2024-09-10 15:47:19.978056 240c9f3a-e2fc-4c5d-bc60-be1bff74e642 {"md5": "5e3737c813f0e7ec9036c319107c5622", "pid": "224235893", "note": [{"label": ["GeoNames (2018-02-13)"], "noteType": "dataSource"}, {"label": ["Sofia est l'une des vingt-deux régions de Madagascar, nommée d'après le nom d'un fleuve. Elle est située dans la province de Majunga (ou Mahajanga) et son chef-lieu est Antsohihy", "S 14°52′47″ / E 47°59′15″"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Madagascar"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/224235893", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/224235893", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/3351152080592507230005", "source": "VIAF"}], "variant_access_point": ["Sofia (région)"], "authorized_access_point": "Sofia (Madagascar ; région administrative)"} 1 +2024-09-10 15:47:20.042196 2024-09-10 15:47:20.042201 2c6a73b6-ce6d-4d9f-bc2f-89fbaa3093e6 {"md5": "cd22324daf49b9c92b2cd190ccea7470", "pid": "225651289", "note": [{"label": ["GeoNames (2018-03-13)", "wikipedia.org, 2018-04-04"], "noteType": "dataSource"}, {"label": ["Moundou est la seconde ville du Tchad et la capitale économique du sud tchadien. Chef-lieu de la région du Logone Occidental et du département du Lac Wey"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/225651289", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/225651289", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/126787513", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Moundou", "source": "WIKIPEDIA"}], "variant_access_point": ["Mundu"], "authorized_access_point": "Moundou (Tchad )"} 1 +2024-09-10 15:47:20.113149 2024-09-10 15:47:20.113154 827e0243-c637-4a8d-b2a9-235b721558d4 {"md5": "5135ade3ee5903608a2ab829156c3938", "pid": "226539962", "note": [{"label": ["http://www.geonames.org/, 2018-05-02"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/226539962", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/226539962", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/148991886", "source": "VIAF"}], "variant_access_point": ["Ft Branch"], "authorized_access_point": "Fort Branch (Ind.)"} 1 +2024-09-10 15:47:20.171307 2024-09-10 15:47:20.171311 69fb8671-c856-417a-bdb8-4fe41ffaefec {"md5": "9625ff0cc2cfb745ed8456522ab63d51", "pid": "226556425", "note": [{"label": ["https://fr.wikipedia.org/wiki/Kansas_(rivière)/, 2024-07-10"], "noteType": "dataSource"}, {"label": ["La rivière Kansas (connue localement sous le nom de Kaw), ou Kansas River, est une rivière du nord-est de l'État du Kansas, aux États-Unis"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/226556425", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/226556425", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/69152864114304821008", "source": "VIAF"}], "authorized_access_point": "Kansas River (Kan. ; cours d'eau)"} 1 +2024-09-10 15:47:20.229717 2024-09-10 15:47:20.229721 f1ebb4a0-5c9e-4d0a-8e88-7e2392a73917 {"md5": "b7973488828bff5c99047dd00ca984ae", "pid": "226664414", "note": [{"label": ["http://www.geonames.org/, 2018-05-03"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Bourbon"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/226664414", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/226664414", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/99152864133904821583", "source": "VIAF"}], "authorized_access_point": "Garland (Kan.)"} 1 +2024-09-10 15:47:20.295206 2024-09-10 15:47:20.295211 aaadd9fe-e257-46c4-a114-1571a34c28d5 {"md5": "5fcb18e8f3805022f3bef99b48f4b707", "pid": "226835391", "note": [{"label": ["http://www.geonames.org/, 2018-05-09"], "noteType": "dataSource"}, {"label": ["La Neosho est un cours d'eau et affluent de la rivière Arkansas dans les États américains du Kansas et de l'Oklahoma"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/226835391", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/226835391", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/126152864098304820720", "source": "VIAF"}], "authorized_access_point": "Neosho River (États-Unis. ; cours d'eau)"} 1 +2024-09-10 15:47:20.370206 2024-09-10 15:47:20.37021 0364eaa2-2cb8-44de-9b94-aa75e23a091e {"md5": "0ee0ebae8761ddf29301ea02cd62631e", "pid": "226964558", "note": [{"label": ["https://en.wikipedia.org/wiki/Cimarron_River_(Arkansas_River_tributary)/, 2018-05-16"], "noteType": "dataSource"}, {"label": ["La rivière Cimarron est un affluent de l'Arkansas dans le sud-ouest des États-Unis, donc un sous-affluent du Mississippi. Long de 1 123 km, elle coule à travers quatre États : le Nouveau-Mexique, l'Oklahoma, le Colorado, et le Kansas"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/226964558", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/226964558", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/145152864188104822007", "source": "VIAF"}], "authorized_access_point": "Cimarron River (États-Unis ; cours d'eau)"} 1 +2024-09-10 15:47:20.434345 2024-09-10 15:47:20.434349 b20d9839-c0d7-4c1f-91c9-00dd54812746 {"md5": "01a8dcc56fbc6b182150feb9099ae297", "pid": "230294707", "note": [{"label": ["Dict. communes, 1984"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/230294707", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/230294707", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/89153953219005560177", "source": "VIAF"}], "authorized_access_point": "Sérilhac (Corrèze)"} 1 +2024-09-10 15:47:20.493409 2024-09-10 15:47:20.493416 b8ade632-7a1d-4029-8a65-15ef2110f77c {"md5": "06464119ea5037b9111d405e97751d9b", "pid": "231217161", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/231217161", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/231217161", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/1371151172692439210005", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)040011380", "source": "GND"}], "authorized_access_point": "Alexandrie (Égypte)"} 1 +2024-09-10 15:47:20.565701 2024-09-10 15:47:20.565706 3e92c54f-d953-4072-ab1d-a668a4e82ce5 {"md5": "7eb6c59dae29268611e965eafa1fa563", "pid": "231498829", "note": [{"label": ["Pommiers-en-Forez / Denys Buenner, 1947"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/231498829", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/231498829", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/278471593", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Pommiers-en-Forez", "source": "WIKIPEDIA"}], "variant_access_point": ["Pommiers-en-Forez"], "authorized_access_point": "Pommiers (Loire)"} 1 +2024-09-10 15:47:20.625949 2024-09-10 15:47:20.625953 4303423a-28c9-43d6-9804-e050682e86b0 {"md5": "191e3fcaafb056751405a41b12fe913d", "pid": "233055045", "note": [{"label": ["Chalain-le-Comtal : un village de la Plaine, il y a 100 ans / d'après les notes de l'abbé Noël Valendru ; présentation et notes: Marie Grange, Joseph Barou, 1995"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/233055045", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/233055045", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/1106154983527467860006", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Chalain-le-Comtal", "source": "WIKIPEDIA"}], "authorized_access_point": "Chalain-le-Comtal (Loire)"} 1 +2024-09-10 15:47:20.686272 2024-09-10 15:47:20.686278 3c387f92-0d8a-425c-957e-cb057e1ed2d2 {"md5": "5c1ded802540b15ca4734fc0c8cfd77f", "pid": "237826763", "note": [{"label": ["Dict. communes, 1984"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/237826763", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/237826763", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb121238030", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/243846589", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Pont-de-Veyle", "source": "WIKIPEDIA"}], "authorized_access_point": "Pont-de-Veyle (Ain)"} 1 +2024-09-10 15:47:28.339017 2024-09-10 15:47:28.339021 ecc887c3-735c-4c8f-be7d-5585502dba8d {"md5": "b6b16f3a705c164f2c37d60a2d111137", "pid": "27621675X", "note": [{"label": ["Liestal : Rheinfelden - Sissach - Fricktal, 2023. (Landeskarte der Schweiz ; 214)"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/27621675X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/27621675X", "source": "IDREF"}], "authorized_access_point": "Sissach (Bâle-Campagne, Suisse)"} 1 +2024-09-10 15:47:20.742803 2024-09-10 15:47:20.742806 9239d7f3-071f-4895-a537-0f79181285f8 {"md5": "0c0d0bce5d44d258683d1c6d7efcb9ec", "pid": "242868851", "note": [{"label": ["Dict. communes, 1984"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/242868851", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/242868851", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/4735159248350804870000", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Saint-Jean-de-Sixt", "source": "WIKIPEDIA"}], "authorized_access_point": "Saint-Jean-de-Sixt (Haute-Savoie)"} 1 +2024-09-10 15:47:20.808138 2024-09-10 15:47:20.808141 2e11635c-b9dd-4a03-8c1c-e7fe80e01a12 {"md5": "afdd1add6d0f0a017cb33d40f93751e4", "pid": "250173565", "note": [{"label": ["https://fr.wikipedia.org/wiki/Zhejiang, 2020-11-05"], "noteType": "dataSource"}, {"label": ["Province sud de Shanghai (Chine)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/250173565", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/250173565", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15040156k", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/239458535", "source": "VIAF"}], "variant_access_point": ["Tché-Kiang", "浙", "浙江", "Tchékiang"], "authorized_access_point": "Zhejiang"} 1 +2024-09-10 15:47:20.874149 2024-09-10 15:47:20.874153 a7d0af44-c61a-41d7-af4a-a859d7493771 {"md5": "04db2c2363c7162f3bbc176b6fc8c5e0", "pid": "250748533", "note": [{"label": ["Karton : Architektur im Alltag der Zentralschweiz / Redaktion Gerold Kunz, 2004-"], "noteType": "dataSource"}, {"label": ["Correspond aux cantons de Lucerne, Nidwald, Obwald, Schwytz, Uri et Zoug"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/250748533", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/250748533", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/131160789752202681728", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)040794903", "source": "GND"}], "variant_access_point": ["Zentralschweiz", "Suisse centrale"], "authorized_access_point": "Suisse (centre)"} 1 +2024-09-10 15:47:20.949045 2024-09-10 15:47:20.949049 4950168b-7dd5-4c4f-bb18-be7dd5e03c70 {"md5": "5a10ab48f9d9b49fe45d691d87f508e0", "pid": "253709520", "note": [{"label": ["Procès de sorcellerie dans la vallée de Conches (1466-1467) et chasses aux sorciers et sorcières en Valais au XVe siècle = Hexenprozesse im Goms (166-1467) und Hexenverfolgungen im Wallis im 15 Jahrhundert : Kurzfassung / Chantal Amman-Doubliez ; übersetzt von Curdin Ebneter ; mit einer Übersetzung der lateinischen Hexenprozessakten von Biel VS (1466-167) von Hans-Robert Ammann und Josef Sarbach, 2020.", "https://fr.wikipedia.org/wiki/Vall%C3%A9e_de_Conches, 2021-02-22"], "noteType": "dataSource"}, {"label": ["La vallée de Conches (Goms ou Gommertal en allemand) est une vallée suisse située à cheval sur le demi-district de Rarogne oriental et le district de Conches en Valais."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/253709520", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/253709520", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/82161511999070560407", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)04021592X", "source": "GND"}], "variant_access_point": ["Goms, Vallée de (Valais, Suisse)", "Gommertal (Valais, Suisse)"], "authorized_access_point": "Conches, Vallée de (Valais, Suisse)"} 1 +2024-09-10 15:47:21.012717 2024-09-10 15:47:21.012724 87452b3a-5393-4a92-ad0b-189a1684523d {"md5": "f686915fcd64b1c01102ed1df1471a2d", "pid": "253865727", "note": [{"label": ["Dachziegel der freiburgischen Ziegeleien Düdingen, Le Mouret und Corbières : chemische, geologische und historische Aspekte / Marino Maggetti und Giulio Galetti. In: Bulletin de la Société fribourgeoise des sciences naturelles = Bulletin der Naturforschenden Gesellschaft Freiburg, 2020", "Confédération suisse, Office fédéral de la statistiques, page 'Noms de communes dont la traduction est usuelle', https://www.bfs.admin.ch/bfs/fr/home/bases-statistiques/repertoire-officiel-communes-suisse/noms-communes-traduction-usuelle.html, 2024-03-06", "https://hls-dhs-dss.ch/fr/articles/046549, 2021-03-01"], "noteType": "dataSource"}, {"label": ["Commune du canton de Fribourg (Suisse). Nom allemand : Düdingen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/253865727", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/253865727", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/141295369", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Guin", "source": "WIKIPEDIA"}], "authorized_access_point": "Guin (Fribourg, Suisse)"} 1 +2024-09-10 15:47:21.071384 2024-09-10 15:47:21.071387 16986705-8be3-4a61-b4a8-ba596cf605ec {"md5": "f734484734464a9b442e7b0c811e0cb9", "pid": "254939422", "note": [{"label": ["Dict. communes, 1984"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/254939422", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/254939422", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12125106k", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/131548127", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/La_Balme-de-Sillingy", "source": "WIKIPEDIA"}], "variant_access_point": ["Balme-de-Sillingy, La (Haute-Savoie)"], "authorized_access_point": "La Balme-de-Sillingy (Haute-Savoie)"} 1 +2024-09-10 15:47:21.130855 2024-09-10 15:47:21.130861 640e5e5e-1057-450b-9b1b-6463be3d40bb {"md5": "874ab0c509222b8eb8705c79dfec809c", "pid": "255076592", "note": [{"label": ["Dictionnaire historique de la Suisse (DHS) - https://hls-dhs-dss.ch/fr/articles/002887/2014-06-24/, 2021-04-29", "Compesières, Landecy, Charrot, Bardonnex, Croix-de-Rozon : histoire et vécu d'une commune : Commune de Bardonnex / Eric Golay, Dominique Zumkeller ; Commune de Bardonnex, 2007"], "noteType": "dataSource"}, {"label": ["Commune du canton de Genève issue de la division, en 1851, de la commune de Compesières en deux entités, Bardonnex et Plan-les-Ouates"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/255076592", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/255076592", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/234694698", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Bardonnex", "source": "WIKIPEDIA"}], "authorized_access_point": "Bardonnex (Suisse)"} 1 +2024-09-10 15:47:21.249014 2024-09-10 15:47:21.249018 bef22ab4-b0c4-40ba-a5ae-941f78914350 {"md5": "0787eced143168e9ce8373f79855d251", "pid": "256800375", "note": [{"label": ["Les Brenets et sa vieille Eglise : \\"500 ans d'une histoire commune\\" / [réd., conception David Favre, Pierre Deléglise], 2011", "http://viaf.org/processed/SZ%7C959239103, 2021-08-09", "https://hls-dhs-dss.ch/fr/articles/002840/2004-10-14, 2021-08-09", "https://www.lelocle.ch/accueil-les-brenets, 2021-08-09"], "noteType": "dataSource"}, {"label": ["Village de la commune du Locle dans le canton de Neuchâtel. Sur les bord du Doubs. Fusion de l'ancienne commune avec celle du Locle en janvier 2021."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/256800375", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/256800375", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/133675509", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)959239103", "source": "GND"}], "authorized_access_point": "Les Brenets (Neuchâtel, Suisse)"} 1 +2024-09-10 15:47:21.324832 2024-09-10 15:47:21.324837 074c1016-d998-45cb-956c-d03ccc289e4f {"md5": "42ee7d35fc3b2ae2a0c8eacae5b75b9e", "pid": "257056378", "note": [{"label": ["Dict. historique de la Suisse - http://www.hls-dhs-dss.ch (2020-07-03)", "SCD de Poitiers, Fonds ancien, Manuscrits isolés, MS 86, Herbier peint à la gouache par Marie Corneille Saint-Marc, Calames http://www.calames.abes.fr/pub/ms/Calames-202171516757929351"], "noteType": "dataSource"}, {"label": ["Ville du canton du Valais"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/257056378", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/257056378", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb17879678q", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)94231199X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/9159697710603312385", "source": "VIAF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "914"}], "authorized_access_point": "Vernayaz (Valais, Suisse)"} 1 +2024-09-10 15:47:21.385743 2024-09-10 15:47:21.385747 e21a09a4-e109-43d2-ab8f-64166ac3c4cf {"md5": "9bb637f36d0dad8cfa4b3c349e4d3988", "pid": "257143025", "note": [{"label": ["Parc national suisse, sauvage et fascinant / Hans Lozza, 2021", "https://www.nationalpark.ch/fr/about/a-propos-de-nous/particularites/, 2021-09-07"], "noteType": "dataSource"}, {"label": ["Parc national de 170 km2 situé dans le canton des Grisons (Engadine et val Müstair) ; fondé en 1914 ; unique parc national de Suisse"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/257143025", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/257143025", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/148583304", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)040539164", "source": "GND"}], "variant_access_point": ["Parc natiunal svizzer (Suisse)", "Parco nazionale svizzero (Suisse)", "Schweizerische Nationalpark (Suisse)"], "authorized_access_point": "Parc national suisse (Suisse)"} 1 +2024-09-10 15:47:21.449554 2024-09-10 15:47:21.449558 bbfe5145-236e-4788-8254-67773684e5dc {"md5": "f91b19a42fc80355ce540b96c5901de0", "pid": "257162895", "note": [{"label": ["Môtiers 2021 : art en plein air, 2021"], "noteType": "dataSource"}, {"label": ["Localité suisse de la commune de Val-de-Travers. - Ancienne commune suisse du canton de Neuchâtel, située dans la région Val-de-Travers, qui a fusionné le 1er janvier 2009"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/257162895", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/257162895", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/109163408932100091569", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)941396754", "source": "GND"}], "authorized_access_point": "Môtiers (Neuchâtel, Suisse)"} 1 +2024-09-10 15:47:21.511842 2024-09-10 15:47:21.511847 42d6e8ad-675f-4d76-ae2e-a988ac53c769 {"md5": "a150675b1d742d86a92f10c6cde8698b", "pid": "257475117", "note": [{"label": ["Stage de biogéographie alpine, à Champex, du 15 au 19 juillet 2000 / Beth Zaniewski, Cyrille Faure, [2000]"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/257475117", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/257475117", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/179163408660000090306", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)960746404", "source": "GND"}], "variant_access_point": ["Champex-Lac (Valais, Suisse)"], "authorized_access_point": "Champex (Valais, Suisse)"} 1 +2024-09-10 15:47:21.583621 2024-09-10 15:47:21.583625 8618df2b-de90-42b3-981e-30623388a8f6 {"md5": "30ce38b8f0f62dd63f3693979745ed81", "pid": "258360976", "note": [{"label": ["La question sociale à Fully / perception, définition et analyse de l'action sociale fuilléraine / Dominique Rast, 1995", "DHS - https://hls-dhs-dss.ch/fr/articles/002729/2007-06-14/, 2021-11-09"], "noteType": "dataSource"}, {"label": ["Commune du canton du Valais"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/258360976", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/258360976", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/1377159474070127660711", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)942463633", "source": "GND"}], "authorized_access_point": "Fully (Valais, Suisse)"} 1 +2024-09-10 15:47:21.648059 2024-09-10 15:47:21.648062 6d67752e-aad8-4673-a9cb-af2467043a6a {"md5": "12510e656ac15b380b0ba55b4c329375", "pid": "25887421X", "note": [{"label": ["https://fr.wikipedia.org/wiki/District_des_Franches-Montagnes"], "noteType": "dataSource"}, {"label": ["Suisse, canton de Jura"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/25887421X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/25887421X", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)04259634", "source": "GND"}], "authorized_access_point": "Franches-Montagnes (Suisse)"} 1 +2024-09-10 15:47:28.092324 2024-09-10 15:47:28.092327 f5f675d3-af31-41b8-8c2d-4e362bcfa4ed {"md5": "f082fb24f561ed5f5cb1d535cbccf397", "pid": "276185986", "note": [{"label": ["Burg Schnellenberg / Karl E. Mummenhoff. - München ; Berlin : Deutscher Kunstverlag, 1987."], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/276185986", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/276185986", "source": "IDREF"}], "variant_access_point": ["Burg Schnellenberg", "Attendorn, Rhénanie du Nord-Westphalie (Allemagne)) - Château de Schnellenberg"], "authorized_access_point": "Schnellenberg, Château de (Allemagne)"} 1 +2024-09-10 15:47:21.720499 2024-09-10 15:47:21.720502 73a968aa-4d01-48f4-9940-3eb7ab003a20 {"md5": "6016f218ce8307e70daed5896b0ccf1f", "pid": "260281395", "note": [{"label": ["Un patrimoine religieux (d)étonnant : les \\"mortiers\\" de la paroisse de Vuisternens-devant-Romont / par Aloys Lauper. In : Annales fribourgeoises, vol. 83 (2021)", "Dictionnaire historique de la Suisse, https://hls-dhs-dss.ch/fr/articles/000890/2016-09-27, 2022-02-10"], "noteType": "dataSource"}, {"label": ["Commune du canton de Fribourg (Suisse), ayant fusionné en 2003 avec Estévenens, La Joux, La Magne, Les Ecasseys, Lieffrens, Sommentier et Villariaz, ainsi qu'avec La Neirigue en 2004"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/260281395", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/260281395", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/305971955", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Vuisternens-devant-Romont", "source": "WIKIPEDIA"}], "authorized_access_point": "Vuisternens-devant-Romont (Fribourg, Suisse)"} 1 +2024-09-10 15:47:21.781267 2024-09-10 15:47:21.781271 f4fc38fc-e90a-4cc5-ade0-9647b56f76dd {"md5": "cb1e38d6699a3f08bad0b01bfa893442", "pid": "260555088", "note": [{"label": ["Savièse / Delphine Debons ; avec des contributions de Emmanuel Reynard [et 5 autres], 2021", "https://www.saviese.ch/fr/villages-hameaux-1644.html, 2022-02-23"], "noteType": "dataSource"}, {"label": ["Commune située dans le canton du Valais ; composée de 6 villages et de nombreux hameaux."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/260555088", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/260555088", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/1325159233919803370377", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)041184556", "source": "GND"}], "authorized_access_point": "Savièse (Valais, Suisse)"} 1 +2024-09-10 15:47:21.844319 2024-09-10 15:47:21.844322 b9ff2404-311f-4d80-aac8-90a176d18d18 {"md5": "d27a9d24255b5076249a5e2cdc38993e", "pid": "260905585", "note": [{"label": ["Skieuses et skieurs près de Chasseral / Amez-Droz, Arthur, 1883-1962 (créateur), 14 janvier 1917", "Visualisation sur SITN- Géoportail du système d'information du territoire neuchâtelois https://sitn.ne.ch, 2022-03-10"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/260905585", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/260905585", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/167164959833424021618", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)040903435", "source": "GND"}], "authorized_access_point": "Chasseral (Berne, Suisse ; mont)"} 1 +2024-09-10 15:47:21.903316 2024-09-10 15:47:21.903319 b09674b2-0127-41c8-b67b-4459a0933783 {"md5": "23fec1c5f491ec6cbe11cc06bdb3a79d", "pid": "260966401", "note": [{"label": ["L'intérieur du temple de La Sagne après rénovation / Galley, Christian,, photographe (créateur), 2001", "Visualisation sur SITN- Géoportail du système d'information du territoire neuchâtelois https://sitn.ne.ch, 2022-03-14"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/260966401", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/260966401", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/93164959497624020651", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)964991500", "source": "GND"}], "relation_pid": {"type": "redirect_from", "value": "261065416"}, "authorized_access_point": "La Sagne (Neuchâtel, Suisse)"} 1 +2024-09-10 15:47:21.966126 2024-09-10 15:47:21.96613 2bf07bbb-b172-47f5-bb80-1ef3f2bb5f0f {"md5": "aa18cf35371968d840faec5870a7c05e", "pid": "260996440", "note": [{"label": ["Georges Schneider lors de l'inauguration de son \\"Imier labourant\\" à Saint-Imier / Buhler, Jean, 1919-2017 (créateur), 1959"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/260996440", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/260996440", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/48144647641235584390", "source": "VIAF"}, {"type": "bf:Nbn", "value": " (DE-101)949296880", "source": "GND"}], "authorized_access_point": "Saint-Imier (Berne, Suisse)"} 1 +2024-09-10 15:47:22.025463 2024-09-10 15:47:22.025468 591f5dbc-8133-4afd-87aa-f75f4f1ec485 {"md5": "52c89b35706e1d98b3ae5550621b272f", "pid": "261121162", "note": [{"label": ["Saint-Léonard de jadis et de naguère / Barthélémy Gillioz, 2021", "https://www.st-leonard.ch/index.php/en-bref, 2022-03-22"], "noteType": "dataSource"}, {"label": ["Commune située dans le canton du Valais"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/261121162", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/261121162", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/102164959931224022033", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)954696867", "source": "GND"}], "authorized_access_point": "Saint-Léonard (Valais, Suisse)"} 1 +2024-09-10 15:47:22.090475 2024-09-10 15:47:22.090479 31ca1382-8e3b-4fb8-a5f4-270741571627 {"md5": "4760346bfea72964355aaa6072a566d9", "pid": "26138449X", "note": [{"label": ["La Grand-Rue au Locle / Amez-Droz, Arthur, 1883-1962 (créateur), 1920", "Visualisation sur SITN- Géoportail du système d'information du territoire neuchâtelois https://sitn.ne.ch, 2022-03-29"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/26138449X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/26138449X", "source": "IDREF"}], "variant_access_point": ["Le Locle (Neuchâtel, Suisse) - Grand-Rue"], "authorized_access_point": "Le Locle (Neuchâtel, Suisse) - Grande-Rue"} 1 +2024-09-10 15:47:22.149177 2024-09-10 15:47:22.149181 0ad2c745-7bf8-4424-8ead-3f6ce1c2e39c {"md5": "176ed92fffbad5edbc3ae9b0b0dc1d25", "pid": "26144722X", "note": [{"label": ["L'or de Mund / Rolf Jeitziner, Barbara Seiler, 2021", "https://fr.wikipedia.org/wiki/Mund_(Valais), 2022-03-31"], "noteType": "dataSource"}, {"label": ["Village situé dans le Haut-Valais"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/26144722X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/26144722X", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/340164960096024022192", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)941147797", "source": "GND"}], "authorized_access_point": "Mund (Valais, Suisse)"} 1 +2024-09-10 15:47:22.220827 2024-09-10 15:47:22.220831 1faffc71-5940-4787-814f-7a51d0aa7a9b {"md5": "704d93e59004fda8b9e6c14148e04a9b", "pid": "261527452", "note": [{"label": ["Hameau du Verger et Combe des Enfers à l'extrémité est du Locle / Amez-Droz, Arthur, 1883-1962 (créateur), Entre 1916 et 1919", "Visualisation sur SITN- Géoportail du système d'information du territoire neuchâtelois https://sitn.ne.ch, 2022-04-01"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/261527452", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/261527452", "source": "IDREF"}], "authorized_access_point": "Combe des Enfers (Neuchâtel, Suisse ; combe)"} 1 +2024-09-10 15:47:22.282876 2024-09-10 15:47:22.282883 ce8dda98-b920-45ee-845c-078992e19f3f {"md5": "6ef3ea73b6a2e254b577c414e1b7fa9a", "pid": "261762311", "note": [{"label": ["Gazetteer of the Montgomery District (Sahiwal) 1883-84, 2012", "Internet, https://authorities.loc.gov, 2022-04-12", "Internet, https://wikipedia.org, 2022-04-12", "Marine Defosse. BULAC. TEL. 01.81.69.18.81 Mèl. marine.defossebulac.fr"], "noteType": "dataSource"}, {"label": ["Le district de Sahiwal est une subdivision administrative de la province du Pendjab au Pakistan"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/261762311", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/261762311", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/839165264609810191507", "source": "VIAF"}], "variant_access_point": ["ساھیوال (Pakistan ; district)", "Sahīvāl (Pakistan ; district)", "Montgomery (Pakistan ; district)"], "authorized_access_point": "Sahiwal (Pakistan ; district)"} 1 +2024-09-10 15:47:22.362141 2024-09-10 15:47:22.362147 0bd9dbf2-4dd8-4d25-9db2-d29ce4234321 {"md5": "d0f7d9b7add5dd08bf3ef5b9ff16bc08", "pid": "261933841", "note": [{"label": ["Bourg-Saint-Pierre : souvenirs d'autrefois et images d'aujourd'hui / Louis Moret-Rausis, 1996", "https://www.bourg-saint-pierre.ch/, 2022-04-21"], "noteType": "dataSource"}, {"label": ["Commune du canton du Valais et localité la plus élevée du district de l’Entremont."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/261933841", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/261933841", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/158595722", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)958192014", "source": "GND"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Bourg-Saint-Pierre", "source": "WIKIPEDIA"}], "variant_access_point": ["Sankt Petersburg (Valais, Suisse)"], "authorized_access_point": "Bourg-Saint-Pierre (Valais, Suisse)"} 1 +2024-09-10 15:47:22.426968 2024-09-10 15:47:22.426972 8cfac6b1-8384-4317-918a-67659aa01f81 {"md5": "2fd5db96c4165ebf0ea4d307a0ba7afc", "pid": "262216744", "note": [{"label": ["Wünnewil-Flamatt - zwei Dörfer, eine Gemeinde : ein Porträt, 2014", "Dictionnaire historique de la Suisse, https://hls-dhs-dss.ch/fr/articles/001040/2013-11-26, 2022-05-05"], "noteType": "dataSource"}, {"label": ["Commune du canton de Fribourg (Suisse), district de la Singine, comprenant les villages de Wünnewil et Flamatt, ainsi que de nombreux hameaux"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/262216744", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262216744", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/93166001566975020277", "source": "VIAF"}], "authorized_access_point": "Wünnewil-Flamatt (Fribourg, Suisse)"} 1 +2024-09-10 15:47:22.498541 2024-09-10 15:47:22.498545 dd4a4cd3-4d02-4362-9bf3-5370d865065b {"md5": "f33239d88cfb4573b57af687ef65d57b", "pid": "262555697", "note": [{"label": ["Vue panoramique de Fleurier et du Val-de-Travers / Chiffelle, Max-F., 19..-.... (créateur), 1949", "Visualisation sur SITN- Géoportail du système d'information du territoire neuchâtelois https://sitn.ne.ch, 2022-05-23"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/262555697", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262555697", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)941214095", "source": "GND"}], "authorized_access_point": "Fleurier (Neuchâtel, Suisse)"} 1 +2024-09-10 15:47:22.630265 2024-09-10 15:47:22.63027 c14cb1d7-7355-4bc9-a065-1732a7707d58 {"md5": "acc72c2a91b21893cdbac8f94741ec5f", "pid": "262557215", "note": [{"label": ["Temple et maison rue du Temple 1 à Fleurier / Charrère, Jean-Jacques,, 1951 (créateur), 1984", "Visualisation sur SITN- Géoportail du système d'information du territoire neuchâtelois https://sitn.ne.ch, 2022-05-23"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/262557215", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262557215", "source": "IDREF"}], "authorized_access_point": "Fleurier (Neuchâtel, Suisse) - Rue du Temple"} 1 +2024-09-10 15:47:22.689897 2024-09-10 15:47:22.6899 75a16397-2393-467f-b352-305d58ad1c22 {"md5": "2537444e49f98fe63abda2f5e5a75181", "pid": "262767619", "note": [{"label": ["https://hls-dhs-dss.ch/fr/articles/002848/2017-12-18/"], "noteType": "dataSource"}, {"label": ["Commune du canton de Neuchâtel (Suisse)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/262767619", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262767619", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/64165747035353931293", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)954064593", "source": "GND"}], "authorized_access_point": "Cressier (Neuchâtel, Suisse)"} 1 +2024-09-10 15:47:22.754043 2024-09-10 15:47:22.754047 23c721c3-fdd0-4685-8a9c-57d6fd154a7b {"md5": "9edee3d222f8d2ef4c6b65672439f8cc", "pid": "262834162", "note": [{"label": ["Le p'tit Chapelois, no 1(déc. 1998)", "Dictionnaire historique de la Suisse, https://hls-dhs-dss.ch/fr/articles/000850/2003-11-11, 2022-06-08"], "noteType": "dataSource"}, {"label": ["Commune du canton de Fribourg (Suisse), district de la Glâne. À ne pas confondre avec l'ancienne commune fribourgeoise homonyme, dans le district de la Broye, partie de la commune de Cheiry de 2005 à 2020, puis de celle de Surpierre dès 2021"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/262834162", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262834162", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/6626155286653687180005", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Chapelle_(Glâne)", "source": "WIKIPEDIA"}], "authorized_access_point": "Chapelle (Glâne, Suisse)"} 1 +2024-09-10 15:47:22.834336 2024-09-10 15:47:22.83434 067e78ba-dd5d-4df2-b4dc-72602c46ea9d {"md5": "657691dbc79fbf3dac4bf2d68a9f5b73", "pid": "26298606X", "note": [{"label": ["https://fr.wikipedia.org/wiki/Temple_de_M%C3%B4tiers, 2022-06-15", "Le temple de Môtiers-Boveresse : historique édité à l'occasion de la restauration / Courvoisier, Jean, 1922-2010 (créateur);Bovet, Jacques,, 1921 (contributeur - collaborateur), 1961"], "noteType": "dataSource"}, {"label": ["Instaurée à Neuchâtel en 1530, la Réforme va conduire à la sécularisation du prieuré en 1537 et à la transformation de l’église Notre-Dame en temple protestant."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/26298606X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/26298606X", "source": "IDREF"}], "variant_access_point": ["Môtiers (Neuchâtel, Suisse) - Temple de Môtiers", "Notre-Dame (Môtiers, Neuchâtel, Suisse)"], "authorized_access_point": "Môtiers (Neuchâtel, Suisse) - Temple"} 1 +2024-09-10 15:47:22.931528 2024-09-10 15:47:22.931534 3f83aedd-8d17-4acb-9a5a-31f9149e6f1a {"md5": "b6ef9a165518accf055b7dd7dfa9e2f6", "pid": "263043231", "note": [{"label": ["Vignes et village de Corcelles-Cormondrèche / Perret, Henri,, pharmacien (créateur), Entre 1890 et 1900", "Canton de Neuchâtel, Suisse. Visualisation sur SITN- Géoportail du système d'information du territoire neuchâtelois https://sitn.ne.ch, 2022-06-18"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/263043231", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263043231", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/766170011248884810003", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)973555181", "source": "GND"}], "authorized_access_point": "Corcelles-Cormondrèche (Neuchâtel, Suisse)"} 1 +2024-09-10 15:47:22.990936 2024-09-10 15:47:22.990939 67337dd3-ab50-4490-82aa-62471e1bb02c {"md5": "2d59a180192ef2dd2eed7fc6fa6ef400", "pid": "26304324X", "note": [{"label": ["Viaduc ferroviaire enjambant l'Areuse à Boudry / Amez-Droz, Arthur, 1883-1962 (créateur), Mai 1916", "Visualisation sur SITN- Géoportail du système d'information du territoire neuchâtelois https://sitn.ne.ch, 2022-06-18"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/26304324X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/26304324X", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/64165746780053930276", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)945475136", "source": "GND"}], "authorized_access_point": "Boudry (Neuchâtel, Suisse)"} 1 +2024-09-10 15:47:23.049752 2024-09-10 15:47:23.049757 72903d19-b24e-4d7a-bbfe-db0bf07108b9 {"md5": "0e2346153e16813dfac731c41bb3b08a", "pid": "26304338X", "note": [{"label": ["https://hls-dhs-dss.ch/fr/articles/007624/2014-03-05, 2022-06-18", "Déclaration des droits et des revenus de la Seigneurie de Valangin : 1531, janvier / Scheurer, Rémy, 1934-.... (contributeur - collaborateur), 1988"], "noteType": "dataSource"}, {"label": ["La seigneurie de Valangin est une seigneurie du Canton de Neuchâtel en Suisse. En 1707, elle devient un comté."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/26304338X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/26304338X", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/1788159234878203372988", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)987073028", "source": "GND"}], "authorized_access_point": "Valangin (Neuchâtel, Suisse ; seigneurie)"} 1 +2024-09-10 15:47:23.118779 2024-09-10 15:47:23.118784 96a396eb-3306-4c2f-ad33-1c3b5ad6bfef {"md5": "f7c1603286e3fb788c2e1c1d09917e5f", "pid": "263197794", "note": [{"label": ["Schwarzenburg : Schmitten - Flamatt - Rüeggisberg, 2022", "Dictionnaire historique de la Suisse, https://hls-dhs-dss.ch/fr/articles/001040/2013-11-26, 2022-06-27"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/263197794", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263197794", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/130165746668753930715", "source": "VIAF"}], "authorized_access_point": "Wünnewil-Flamatt (Fribourg, Suisse ; région)"} 1 +2024-09-10 15:47:23.187668 2024-09-10 15:47:23.187673 e71c9b0a-ffd6-497e-a5be-bda857fdb8c8 {"md5": "3fbcf2b2518506e2cd08457aebdf2cc0", "pid": "263222985", "note": [{"label": ["Écublens, une commune qui veut garder son âme et sa physionomie / Gérard Bourquenoud. In : Fribourg illustré, no 19 (1988)", "Dictionnaire historique de la Suisse, https://hls-dhs-dss.ch/fr/articles/000856/2006-03-06, 2022-06-28"], "noteType": "dataSource"}, {"label": ["Commune du canton de Fribourg (Suisse), district de la Glâne, comprenant le village-rue d'Écublens, les hameaux d'Eschiens et de Villangeaux"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/263222985", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263222985", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/128440319", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Écublens_(Fribourg)", "source": "WIKIPEDIA"}], "authorized_access_point": "Écublens (Fribourg, Suisse)"} 1 +2024-09-10 15:47:23.244529 2024-09-10 15:47:23.244533 910a1723-9bbc-4315-87e2-cdedfe1429fe {"md5": "a804b94e5e5f1aeed17b14ad12d5c76c", "pid": "263256790", "note": [{"label": ["L'histoire de Grône et des communes environnantes / Michel Métral"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/263256790", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263256790", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/237165747430953932437", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)949921300", "source": "GND"}], "authorized_access_point": "Grône (Valais, Suisse)"} 1 +2024-09-10 15:47:23.3333 2024-09-10 15:47:23.333304 77664ccb-ea45-4fad-ac5b-3e094a564932 {"md5": "8c193bee01fd5652c21dabb4d7ac5444", "pid": "26369514X", "note": [{"label": ["Arboueytoeu dij'oratoué de Ninde / Germaine du Blanc, 2021", "https://www.nendaz.org/"], "noteType": "dataSource"}, {"label": ["Commune située dans le canton du Valais. Composée d'une quinzaine de villages et de hameaux"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/26369514X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/26369514X", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/3234166063377880560006", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)041178068", "source": "GND"}], "authorized_access_point": "Nendaz (Valais, Suisse)"} 1 +2024-09-10 15:47:23.388244 2024-09-10 15:47:23.388247 8bf140e3-bab0-4014-a92e-05d49a13bf27 {"md5": "16420b7809c0b1ee4505918244ed51ce", "pid": "263838250", "note": [{"label": ["Les Mayens de Sion : la montagne des Sédunois / sous la dir. de Pierre Dallèves, Gaëtan Cassina, Françoise Vannotti ; photogr. Alain de Kalbermatten, 2009", "https://sd-mayensdesion.ch/, 2022-08-10"], "noteType": "dataSource"}, {"label": ["Lieu de villégiature situé en Valais, à cheval entre les communes de Vex et de Sion."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/263838250", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263838250", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/236561087", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)958901333", "source": "GND"}], "authorized_access_point": "Les Mayens-de-Sion (Valais, Suisse)"} 1 +2024-09-10 15:47:23.455611 2024-09-10 15:47:23.455615 a322b825-d39a-4e6c-a375-e798307f8fca {"md5": "72f203384a8cfab218e668ca6bbb22f4", "pid": "264073258", "note": [{"label": ["Famille dans un pré, Stalden, 1880-1900", "https://www.valais4you.ch/fr/le-valais-en-quelques-mots/habitat/abecedaire-des-communes/viege/stalden-94, 2022-08-30"], "noteType": "dataSource"}, {"label": ["Commune située dans le district de Viège dans le Haut-Valais"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/264073258", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/264073258", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/241211327", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)95731910X", "source": "GND"}], "authorized_access_point": "Stalden (Valais, Suisse)"} 1 +2024-09-10 15:47:23.525282 2024-09-10 15:47:23.525285 ce727415-f282-44f2-bf31-596d4542976a {"md5": "cc48ede9388948c758b2f7d4e275e807", "pid": "264087313", "note": [{"label": ["Répétition musicale, Grimisuat / Tibor Varga, 1973", "https://www.grimisuat.ch/commune/situation-acces-3759.html, 2022-08-30"], "noteType": "dataSource"}, {"label": ["Commune située en Valais"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/264087313", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/264087313", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/46166596464417590876", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)106040219X", "source": "GND"}], "authorized_access_point": "Grimisuat (Valais, Suisse)"} 1 +2024-09-10 15:47:23.592372 2024-09-10 15:47:23.592376 5afe80e7-c7dc-41e1-99c8-e88b503c0418 {"md5": "4b07adf22b9ead6852b6660c4960709b", "pid": "264145046", "note": [{"label": ["Milvignes et région : La Grande Béroche : plan de région / Brandmark Services (Bichwil) (cartographe), 2019"], "noteType": "dataSource"}, {"label": ["Canton de Neuchâtel, Suisse. Visualisation sur SITN- Géoportail du système d'information du territoire neuchâtelois https://sitn.ne.ch, 2022-09-01"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/264145046", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/264145046", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/34153288315232652105", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/La_Grande_Béroche", "source": "WIKIPEDIA"}], "authorized_access_point": "La Grande Béroche (Suisse)"} 1 +2024-09-10 15:47:23.653487 2024-09-10 15:47:23.653491 9435abb0-7f2d-41ac-8069-772e440c4af2 {"md5": "2224c31fce194083e408842feea9b7ef", "pid": "264271831", "note": [{"label": ["Vue sur les châteaux de Valère et Tourbillon, Sion, 1880-1910", "https://siontourisme.ch/fr/tourbillon, 2022-09-08"], "noteType": "dataSource"}, {"label": ["Château situé sur la colline de Tourbillon, à Sion dans le canton du Valais"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/264271831", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/264271831", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)958593663", "source": "GND"}], "variant_access_point": ["Château de Tourbillon (Valais, Sion, Suisse)", "Tourbillon, Château de (Valais, Sion, Suisse)"], "authorized_access_point": "Sion (Valais, Suisse) - Château de Tourbillon"} 1 +2024-09-10 15:47:23.717245 2024-09-10 15:47:23.71725 cdf08c58-5d82-4831-a9fb-52bc38b36dcd {"md5": "56dff563c80eadb0b34f15cda0713ce4", "pid": "264406095", "note": [{"label": ["Passage de la Tête Noire, Vallée du Trient, 1863", "https://fr.wikipedia.org/wiki/Vall%C3%A9e_du_Trient, 2022-09-15"], "noteType": "dataSource"}, {"label": ["Vallée située dans le Bas-Valais"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/264406095", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/264406095", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/247827636", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)955884152", "source": "GND"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Vallée_du_Trient", "source": "WIKIPEDIA"}], "variant_access_point": ["Vallée du Trient (Valais, Suisse)"], "authorized_access_point": "Trient, Vallée du (Valais, Suisse)"} 1 +2024-09-10 15:47:23.780222 2024-09-10 15:47:23.780227 a92a5054-527f-4fc1-b727-d72a505129fa {"md5": "16555bcd5ee0a7db8dfeb6dd99eccd71", "pid": "264435583", "note": [{"label": ["https://fr.wikipedia.org/wiki/Lac_Kentucky/, 2022-09-16"], "noteType": "dataSource"}, {"label": ["Le lac Kentucky est un important lac de barrage navigable le long de la rivière Tennessee au Kentucky et au Tennessee"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/264435583", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/264435583", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/55166597435217592956", "source": "VIAF"}], "authorized_access_point": "Kentucky Lake (Etats-Unis. ; lac)"} 1 +2024-09-10 15:47:24.91175 2024-09-10 15:47:24.911754 a4adaaab-8a2f-4410-a9fc-b035c8d2e46b {"md5": "6ed5b29f2f1577a180568a13f34276cb", "pid": "267446713", "note": [{"label": ["Mont-Noble en fusion : commune de Mont-Noble : Nax, Vernamiège, Mase / Interface (Sion), Mont-Noble (commune), 2010", "https://hls-dhs-dss.ch/fr/articles/049539/2016-09-28/, 2023-02-02"], "noteType": "dataSource"}, {"label": ["Commune du canton du Valais, district d'Hérens, née en 2011 de la fusion de Mase, Nax et Vernamiège."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/267446713", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/267446713", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/1701155286584187180009", "source": "VIAF"}], "authorized_access_point": "Mont-Noble (Suisse)"} 1 +2024-09-10 15:47:23.837836 2024-09-10 15:47:23.837841 a96369af-4595-4951-a0cb-b26fd2c6ff0b {"md5": "be4b020c108bc70a0b5ef54aef2ae42c", "pid": "264538943", "note": [{"label": ["Histoire du golf de Crans, 1906-2006 / Pierre Ducrey ; avec le collab. de Delphine Rivier et Sylvie Fournier ; [publ. par le Golf-Club Crans-sur-Sierre à l'occasion du 100e anniversaire de l'ouverture du premier parcours de golf à Crans], 2006", "https://hls-dhs-dss.ch/fr/articles/008215/2017-01-12/, 2022-09-22"], "noteType": "dataSource"}, {"label": ["Station touristique du canton du Valais"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/264538943", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/264538943", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/5522166600446918000000", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)041974352", "source": "GND"}], "authorized_access_point": "Crans-sur-Sierre (Valais, Suisse)"} 1 +2024-09-10 15:47:23.90549 2024-09-10 15:47:23.905492 d6f95c44-a83e-4e8f-9b92-d66840fcd1cf {"md5": "8fd5a0663a33a8a31e9681f14559a817", "pid": "264540670", "note": [{"label": ["Alpages du Grand Lens : [Là haut sur la montagne: la vie sur nos alpages hier et aujourd'hui] / [par Joseph Lamon] ; [éd. Les amis du patrimoine de Lens], 2015", "https://hls-dhs-dss.ch/fr/articles/002786/2017-03-13/, 2022-09-22 ; https://de.wikipedia.org/wiki/Lens_VS, 2024-07-03"], "noteType": "dataSource"}, {"label": ["Commune du canton du Valais, district de Sierre"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/264540670", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/264540670", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/1277159474348527662803", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)042072816", "source": "GND"}], "variant_access_point": ["Leis (Valais, Suisse)"], "authorized_access_point": "Lens (Valais, Suisse)"} 1 +2024-09-10 15:47:23.970667 2024-09-10 15:47:23.970671 4cb3033a-9b55-4e31-8572-4d30ff1d69d6 {"md5": "d81f2456d8d193b576b7563b7b1a4faa", "pid": "264600886", "note": [{"label": ["Châtellenie de Granges, Lens, Grône, St-Léonard avec Chalais-Chippis / Jean-Emile Tamini, Lucien Quaglia ; choix et présentation Joseph Lamon, 2009", "https://hls-dhs-dss.ch/fr/articles/003303/2007-07-17/, 2022-09-23"], "noteType": "dataSource"}, {"label": ["Localité du canton du Valais. Ancienne commune, réunie à Sierre en 1972"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/264600886", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/264600886", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/58166597389417592658", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)042816688", "source": "GND"}], "authorized_access_point": "Granges (Valais, Suisse)"} 1 +2024-09-10 15:47:24.038839 2024-09-10 15:47:24.038843 f5c7b180-8fda-4660-9ecc-82d91a49ffdd {"md5": "5fd78a8f1d728be50624d31ec8d4a334", "pid": "264644093", "note": [{"label": ["Agrisculptures / Maximilien Urfer ; essais : Raphaël Brunner et Eric Felley ; direction de publication : Stéphane Fretz, 2019", "https://www.vs.ch/web/communes/-/valais-central, 2022-09-27"], "noteType": "dataSource"}, {"label": ["Région du Canton du Valais comprenant les districts de Conthey, Sion, Sierre et d'Hérens"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/264644093", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/264644093", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/2685166600430118000000", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)952816407", "source": "GND"}], "authorized_access_point": "Valais central (Suisse)"} 1 +2024-09-10 15:47:24.094947 2024-09-10 15:47:24.094952 6529df71-56e4-4887-8fdb-ab3f79ce959c {"md5": "9129b201be0658f3f70e8377f0ac6866", "pid": "264645081", "note": [{"label": ["Les sobriquets des localités du Valais romand ; Articles historiques sur le Valais ; Histoire du Vieux Chablais / Raphy Rappaz, 1976", "https://www.valais4you.ch/fr/le-valais-en-quelques-mots/habitat, 2022-09-27"], "noteType": "dataSource"}, {"label": ["Partie francophone du canton du Valais"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/264645081", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/264645081", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/75166600409218000002", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)993248810", "source": "GND"}, {"type": "bf:Nbn", "value": "Valais romand", "source": "GND"}], "variant_access_point": ["Valais francophone (Suisse)"], "authorized_access_point": "Valais romand (Suisse)"} 1 +2024-09-10 15:47:24.198943 2024-09-10 15:47:24.198947 ce20305f-d41f-4f76-94bc-e62537100383 {"md5": "21dcc3e4c814572df12310515e17b16c", "pid": "264836251", "note": [{"label": ["https://en.wikipedia.org/wiki/Wolf_River_Tennessee/, 2022-10-07"], "noteType": "dataSource"}, {"label": ["La rivière Wolf est un cours d'eau qui coule dans l'État du Tennessee aux États-Unis et qui se jette dans le Mississippi, rive gauche, à la hauteur de la ville de Memphis"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/264836251", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/264836251", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/74166835480035941126", "source": "VIAF"}], "authorized_access_point": "Wolf River ( Tenn. ; cours d'eau)"} 1 +2024-09-10 15:47:24.258414 2024-09-10 15:47:24.258417 2050eaaf-b6f6-4aea-9907-11b2e1743e4f {"md5": "b4449fb354054456f111fdcda898a570", "pid": "265364957", "note": [{"label": ["La réponse des CFF à la suite du retard dans les travaux de la gare de Lausanne : interview de Vincent Ducrot / journaliste Mehmet Gultas. Émission Forum de la Radio télévision suisse, 2022-10-12", "https://fr.wikipedia.org/wiki/Gare_de_Lausanne, 2022-11-02"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/265364957", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/265364957", "source": "IDREF"}], "variant_access_point": ["Vaud, Suisse - Gare de Lausanne"], "authorized_access_point": "Lausanne (Vaud, Suisse) - Gare"} 1 +2024-09-10 15:47:30.507854 2024-09-10 15:47:30.507858 b49775a5-a0b3-4b0e-82bd-5097c3a02dd6 {"md5": "4e766d6cad006f1f3b33694c252e17a0", "pid": "279130252", "note": [{"label": ["http://www.geonames.org/, 2024-07-01"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Whiteside"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279130252", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279130252", "source": "IDREF"}], "authorized_access_point": "Rock Falls (Ill.)"} 1 +2024-09-10 15:47:24.31884 2024-09-10 15:47:24.318844 cb1635a9-4996-4863-9956-4732cf58d0af {"md5": "3403671a4b087a590621114fd6400197", "pid": "26588912X", "note": [{"label": ["Bulletin communal / commune de Villaz, no 1 (juin 2020)", "Dictionnaire historique de la Suisse, https://hls-dhs-dss.ch/fr/articles/059026/2020-04-21, 2022-11-28"], "noteType": "dataSource"}, {"label": ["Commune du canton de Fribourg (Suisse), district de la Glâne, née en 2020 de la fusion de Villaz-Saint-Pierre et La Folliaz (issue en 2005 de la fusion de Lussy et Villarimboud)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/26588912X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/26588912X", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/6760159400300219620005", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Villaz_(Fribourg)", "source": "WIKIPEDIA"}], "authorized_access_point": "Villaz (Fribourg, Suisse)"} 1 +2024-09-10 15:47:24.37951 2024-09-10 15:47:24.379514 7bc3cdbf-bec6-4586-b1b6-03095935f861 {"md5": "02aae57b6ff46e46f424d0d642e1f354", "pid": "266633668", "note": [{"label": ["Histoire de Thônex, 1989"], "noteType": "dataSource"}, {"label": ["Commune du canton de Genève"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/266633668", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/266633668", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12217770s", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/155967389", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Thônex", "source": "WIKIPEDIA"}], "authorized_access_point": "Thônex (Suisse)"} 1 +2024-09-10 15:47:24.442301 2024-09-10 15:47:24.442304 f790b1f5-2009-4a13-96d8-0a0271090bd1 {"md5": "eb2f5fff21ec01055b3e922aea69d9a5", "pid": "26663415X", "note": [{"label": ["100 Jahre Wasserversorgung Naters AG, 1920-2020. Naters : Wasserversorgung Naters AG, [2020]"], "noteType": "dataSource"}, {"label": ["Ville située dans le Haut-Valais"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/26663415X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/26663415X", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/380167864514022742683", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)041023838", "source": "GND"}], "authorized_access_point": "Naters (Valais, Suisse)"} 1 +2024-09-10 15:47:24.501033 2024-09-10 15:47:24.501038 b21fadcc-148d-447f-9088-c125e19455ea {"md5": "59b3d2ebfd47afd11809d8c8186c6641", "pid": "266656595", "note": [{"label": ["Pasodoble, 1213 Petit-Lancy (GE), paru dans AS. Krafft ; 223/27", "DHS - https://hls-dhs-dss.ch/fr/articles/002910/2009-03-10/, 2024-06-17"], "noteType": "dataSource"}, {"label": ["Localité de la commune de Lancy (canton de Genève)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/266656595", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/266656595", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/38167622079903341253", "source": "VIAF"}], "variant_access_point": ["Lancy (Suisse) - Petit-Lancy"], "authorized_access_point": "Petit-Lancy (Suisse)"} 1 +2024-09-10 15:47:24.644556 2024-09-10 15:47:24.64456 55ed974a-355a-4340-8a52-69c7ab9bce6e {"md5": "1b19babdc1a7e3bd32ad81d5a974d260", "pid": "26665715X", "note": [{"label": ["Ayent / Argnou / Les Frisses : un plateau où il fait bon vivre / Office cantonal d'archéologie, 2021", "https://www.ayent.ch/commune/situation-villages.html, 2022-12-29"], "noteType": "dataSource"}, {"label": ["Commune située dans le canton du Valais. Elle est composée de 12 villages dont aucun ne porte le nom d'Ayent"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/26665715X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/26665715X", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/1375159233947303370245", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)958198667", "source": "GND"}], "authorized_access_point": "Ayent (Valais, Suisse)"} 1 +2024-09-10 15:47:24.70804 2024-09-10 15:47:24.708044 da0b78d8-22d9-45c5-aa75-7d609f0c10d3 {"md5": "22a73f9a40973e73eae6f5b2fa591f58", "pid": "267209568", "note": [{"label": ["Salgesch in Bildern / Burgergemeinde Salgesch, 2016", "https://hls-dhs-dss.ch/fr/articles/002723/2012-06-20/, 2023-01-23"], "noteType": "dataSource"}, {"label": ["Commune du Haut-Valais, dans le district de Loèche, en français \\"Salquenen\\"."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/267209568", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/267209568", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/3577169829219637320009", "source": "VIAF"}], "variant_access_point": ["Salquenen (Valais, Suisse)"], "authorized_access_point": "Salgesch (Valais, Suisse)"} 1 +2024-09-10 15:47:24.771818 2024-09-10 15:47:24.771822 68c6c804-7963-4011-aad0-83cf6d0d0785 {"md5": "42ca93964a686d47c171c291b9077e51", "pid": "26722138X", "note": [{"label": ["Château de Fenin / Adequa (photographe), 1971", "Visualisation sur SITN- Géoportail du système d'information du territoire neuchâtelois https://sitn.ne.ch, 2023-01-24"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/26722138X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/26722138X", "source": "IDREF"}], "variant_access_point": ["Fenin (Neuchâtel, Suisse) - Château de Fenin"], "authorized_access_point": "Fenin (Neuchâtel, Suisse) - Château"} 1 +2024-09-10 15:47:24.840978 2024-09-10 15:47:24.840982 b2bead93-c147-4781-84a1-05401fe9e2a3 {"md5": "4ad403f19070234220f60e6f740f45af", "pid": "267421214", "note": [{"label": ["Nax, vers 1910 [photographie]", "https://hls-dhs-dss.ch/fr/articles/002707/2016-12-23, 2023-02-01"], "noteType": "dataSource"}, {"label": ["Ancienne commune du canton du Valais, district d'Hérens, ayant fusionné en 2011 avec Mase et Vernamiège pour former la commune de Mont-Noble"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/267421214", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/267421214", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/49167867534523060006", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)964988283", "source": "GND"}], "authorized_access_point": "Nax (Valais, Suisse)"} 1 +2024-09-10 15:47:24.974032 2024-09-10 15:47:24.974036 600b1da8-beba-46f4-ae15-5f2ab400747e {"md5": "2836a761c7c29754cc2be4f46493ae59", "pid": "267488092", "note": [{"label": ["Gazetteer of the Gujrat district, 1892-93, 1893", "Internet, https://authorities.loc.gov, 2023-02-03"], "noteType": "dataSource"}, {"label": ["Le district de Gujrat est une subdivision administrative du nord de la province du Pendjab au Pakistan. Coordonnées géographiques : E 74° 3' 16'' / N 32° 42' 1''"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/267488092", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/267488092", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/110167864550222742932", "source": "VIAF"}], "variant_access_point": ["گجرات (Pakistan ; district)"], "authorized_access_point": "Gujrat (Pakistan ; district)"} 1 +2024-09-10 15:47:25.032053 2024-09-10 15:47:25.032058 755cf44d-3579-4147-bf4d-0a4240a7cb47 {"md5": "a68e724edd1c709a14d08a2ab168be67", "pid": "267506589", "note": [{"label": ["Gazetteer of the Lahore district, 1893-94 / by G. C. Walker ; compiled and published under the authority of the Punjab Government, 1894", "Internet, https://authorities.loc.gov, 2023-02-06"], "noteType": "dataSource"}, {"label": ["Le district de Lahore est une subdivision administrative de la province du Pendjab au Pakistan. Coordonnées géographiques : E 74° 23' 52'' / N 31° 29' 10''"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/267506589", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/267506589", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/136739196", "source": "VIAF"}], "variant_access_point": ["لاھور (Pakistan ; district)", "Lāhaur (Pakistan ; district)"], "authorized_access_point": "Lahore (Pakistan ; district)"} 1 +2024-09-10 15:47:25.092904 2024-09-10 15:47:25.092908 0c622822-17fa-4775-8a47-10653cf7d3ad {"md5": "e491f96d295ad15c4cfdb4ecb3638b55", "pid": "267678584", "note": [{"label": ["Als Flamatt überfahren wurde : 50 Jahre Autobahn N12 / von Imelda Ruffieux. In : Freiburger Volkskalender, 114. Jahrgang, 2023, pages 47-50", "Dictionnaire historique de la Suisse, https://hls-dhs-dss.ch/fr/articles/011357/2015-07-23, 2023-02-14"], "noteType": "dataSource"}, {"label": ["Village de la commune de Wünnewil-Flamatt dans le canton de Fribourg (Suisse), district de la Singine"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/267678584", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/267678584", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/113167864081422741509", "source": "VIAF"}], "authorized_access_point": "Flamatt (Fribourg, Suisse)"} 1 +2024-09-10 15:47:25.168728 2024-09-10 15:47:25.168732 f7411147-2f2a-422b-8127-60a8e81e1ac6 {"md5": "1c5e528ae861359b8cec60d9393d60e8", "pid": "267860048", "note": [{"label": ["Comptes de la bourgeoisie d'Evionnaz. - Evionnaz : administration communale, 2013"], "noteType": "dataSource"}, {"label": ["Commune du canton du Valais (Suisse)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/267860048", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/267860048", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/151289873", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)961803010", "source": "GND"}], "authorized_access_point": "Evionnaz (Valais, Suisse)"} 1 +2024-09-10 15:47:25.2316 2024-09-10 15:47:25.231604 ca95d7d2-6d25-4953-89ac-fb7703f977bd {"md5": "f5ccdb8c7fc3a5fc81cd3cd3b6e256a9", "pid": "26792237X", "note": [{"label": ["Accident entre une fourgonnette et une voiture, Ardon / Philippe Schmid, 1962 [photographie]", "https://fr.wikipedia.org/wiki/Ardon_(Valais) /,2023-02-22"], "noteType": "dataSource"}, {"label": ["Commune du canton du Valais, située dans le district de Conthey."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/26792237X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/26792237X", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/1272167867538823060002", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)959192603", "source": "GND"}], "authorized_access_point": "Ardon (Valais, Suisse)"} 1 +2024-09-10 15:47:25.300068 2024-09-10 15:47:25.300072 132c5e93-0d1a-49e3-adf3-9516a83198a3 {"md5": "fd9147e636847f5c2df84cc07c8e07ae", "pid": "267928262", "note": [{"label": ["Avant détruit d'un bus VW de l'Usine des Eaux minérales, Aproz / Philippe Schmid, 1962 [photographie]", "https://www.nendaz.ch/fr/P75016/aproz/, 2023-02-22,"], "noteType": "dataSource"}, {"label": ["Village du canton du Valais faisant partie de la commune de Nendaz"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/267928262", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/267928262", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/285167863719022740515", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)1046852981", "source": "GND"}], "authorized_access_point": "Aproz (Valais, Suisse)"} 1 +2024-09-10 15:47:25.357843 2024-09-10 15:47:25.357846 bbec9b3d-5c29-41d6-bf5d-bf05abee936b {"md5": "f2bb74da6c244c228cef8c0e11f4b774", "pid": "268500460", "note": [{"label": ["Sortie de route d'un camion / Philippe Schmid, 1971 [photographies]", "https://hls-dhs-dss.ch/fr/articles/002734/2012-05-11/, 2023-03-15"], "noteType": "dataSource"}, {"label": ["Commune du canton du Valais, district de Martigny"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/268500460", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/268500460", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/1278159474198227661307", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)956715753", "source": "GND"}], "authorized_access_point": "Riddes (Valais, Suisse)"} 1 +2024-09-10 15:47:25.43346 2024-09-10 15:47:25.433464 b7baca61-2444-4f32-823e-6bef451f2850 {"md5": "faaa0db30f281b87aeef8d5b939f0615", "pid": "268649472", "note": [{"label": ["Fastentücher im Untergoms / Alex Agten. - In: Walliser Jahrbuch. - Visp. - [92. Jahrgang] (2023), Seiten 24-27"], "noteType": "dataSource"}, {"label": ["Commune du canton du Valais (Suisse)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/268649472", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/268649472", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/126168169046348042654", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)042350964", "source": "GND"}], "authorized_access_point": "Ernen (Valais, Suisse)"} 1 +2024-09-10 15:47:25.525345 2024-09-10 15:47:25.525348 61bfd97a-2d60-4f7a-aeae-b373ef1fc1cc {"md5": "5eb87289859a76f40e842eec14266d04", "pid": "268664110", "note": [{"label": ["Fanfare la Fraternité, Liddes [photographie]", "https://www.liddes.ch/decouvrir/presentation, 2023-03-23"], "noteType": "dataSource"}, {"label": ["Commune du canton du Valais, district d'Entremont. Elle se compose de 13 villages et hameaux répartis sur les deux versants de la Dranse d’Entremont qui s’écoule au fond de la vallée : Liddes, Chandonne, Fontaine-Dessus, Rive-Haute, Fontaine-Dessous, Pallazuit et Combe se situent sur la rive droite; Dranse, Chez-Petit, Fornex, Les Moulins, Montatuay et Vichères sur la rive gauche."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/268664110", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/268664110", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/5153168172581848620008", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)042072344", "source": "GND"}], "authorized_access_point": "Liddes (Valais, Suisse)"} 1 +2024-09-10 15:47:25.588615 2024-09-10 15:47:25.588619 302b5cac-24ee-420d-b781-8137c2e57631 {"md5": "9caffdb4e45e2a8e90ec54049682d63a", "pid": "268664447", "note": [{"label": ["Clocher, Orsières [photographie]", "https://fr.wikipedia.org/wiki/Orsières, 2023-03-23"], "noteType": "dataSource"}, {"label": ["Commune du canton du Valais, district d'Entremont. Elle se compose principalement de deux grandes vallées, le val Ferret et la vallée de Champex, le bourg d'Orsières, situé sur la Drance d'Entremont, et douze villages, dont Champex, Ferret, Issert, La Fouly et Praz-de-Fort"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/268664447", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/268664447", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/5405168172582848620007", "source": "VIAF"}], "authorized_access_point": "Orsières (Valais, Suisse)"} 1 +2024-09-10 15:47:25.660663 2024-09-10 15:47:25.660668 34045acf-ddb6-4db4-8e0f-b8cd01f315eb {"md5": "dce5048d23ebe30f5b443d02f456599c", "pid": "268666938", "note": [{"label": ["Usine électrique, Chamoson [photographie]", "https://fr.wikipedia.org/wiki/Chamoson, 2023-03-23"], "noteType": "dataSource"}, {"label": ["Commune du canton du Valais, située dans le district de Conthey."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/268666938", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/268666938", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/170378445", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)959192352", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)959192352", "source": "GND"}], "relation_pid": {"type": "redirect_from", "value": "268729328"}, "authorized_access_point": "Chamoson (Valais, Suisse)"} 1 +2024-09-10 15:47:25.723205 2024-09-10 15:47:25.723211 4d992187-c79d-4a03-b13e-0ebc67b5e439 {"md5": "1c4433eb6c38e40090f8eba03955063d", "pid": "268735190", "note": [{"label": ["Medizinische Versorgung vor 75 Jahren im Raum Turtmann / Josef Jäger . - In: Walliser Jahrbuch. - Visp. - [92. Jahrgang] (2023), Seiten 55-56"], "noteType": "dataSource"}, {"label": ["Village et commune située dans le Haut-Valais"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/268735190", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/268735190", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/166168168491948041084", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)042975735", "source": "GND"}], "variant_access_point": ["Tourtemagne (Valais, Suisse)"], "authorized_access_point": "Turtmann (Valais, Suisse)"} 1 +2024-09-10 15:47:25.790054 2024-09-10 15:47:25.790058 b94c7019-e8f6-4d47-8879-e39c36f5ed9a {"md5": "0fae09bd483e3043e62b1d334d65517b", "pid": "268791694", "note": [{"label": ["Camion happé par un train, Châteauneuf / Philippe Schmid, 1962 [photographie]", "https://www.chateauneufsion.ch/, 2023-03-29"], "noteType": "dataSource"}, {"label": ["Quartier de la ville de Sion dans le canton du Valais"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/268791694", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/268791694", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)95887638X", "source": "GND"}], "authorized_access_point": "Sion (Valais, Suisse) - Châteauneuf"} 1 +2024-09-10 15:47:25.854566 2024-09-10 15:47:25.85457 07fb8b41-b50f-430d-b4ee-1f30aa2db09c {"md5": "d00f95502a66e2c1b71e3d2a5993fffc", "pid": "268793948", "note": [{"label": ["Voiture tombée dans la Borgne, Bramois / Philippe Schmid, 1964 [photographie]", "https://fr.wikipedia.org/wiki/Bramois, 2023-03-29"], "noteType": "dataSource"}, {"label": ["Village situé dans le canton du Valais. Ancienne commune suisse et localité de la commune de Sion"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/268793948", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/268793948", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/5167621890903341945", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)956042651", "source": "GND"}], "variant_access_point": ["Brämis (Valais, Suisse)"], "authorized_access_point": "Bramois (Valais, Suisse)"} 1 +2024-09-10 15:47:25.919082 2024-09-10 15:47:25.919087 c8bd0c52-8040-4ddb-93e2-d6afaccc645b {"md5": "d170bf685ccce52de78250ab848090be", "pid": "269784136", "note": [{"label": ["https://www.confederationcentre.ch/en/le-centre, 2023-05-09", "Confédération Centre à Genève : un souffle de modernité rajeunit le Palais des Glaces, 2022"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/269784136", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/269784136", "source": "IDREF"}], "authorized_access_point": "Genève (Suisse) - Confédération Centre"} 1 +2024-09-10 15:47:25.97993 2024-09-10 15:47:25.979935 2adf93d9-5819-422c-ae9b-3c73769fb1a5 {"md5": "71c21655cd5644668f4c3851994fb6e5", "pid": "270059482", "note": [{"label": ["Saint Michael's Abbey : Silverado Orange County, California / Jean-Louis Pagès, 2020"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/270059482", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/270059482", "source": "IDREF"}], "variant_access_point": ["Saint Michael's Abbey (Silverado, Calif.)", "St. Michael's Abbey (Silverado, Calif.)"], "authorized_access_point": "Silverado (Calif.) - Saint Michael's Abbey"} 1 +2024-09-10 15:47:26.048797 2024-09-10 15:47:26.0488 680b1d9a-e8e1-4561-8bb6-f6fa2d597123 {"md5": "1418b02ca0e02f302bfac309d68c4249", "pid": "270977848", "note": [{"label": ["Union Instrumentale, Leytron / Michel Darbellay, 18 avril 1976 [photographie]", "https://hls-dhs-dss.ch/fr/articles/002731/2008-01-24/, 2023-07-07"], "noteType": "dataSource"}, {"label": ["Commune du canton du Valais, située dans le district de Martigny."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/270977848", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/270977848", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/2029159474075927660481", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)959192387", "source": "GND"}], "authorized_access_point": "Leytron (Valais, Suisse)"} 1 +2024-09-10 15:47:26.111432 2024-09-10 15:47:26.111436 16aefbeb-e288-4510-ac3d-d7f3a55a9854 {"md5": "6fc95e0712fbad69d2a0b8f144dd687f", "pid": "271120738", "note": [{"label": ["Radiometrische Anomalien in der Umgebung von Törbel, nahe Visp im Wallis / Ruedi Stucki. - In: Mitteilungen der Naturforschenden Gesellschaft in Bern. - Bern. - N.F., Bd 80(2023), Seiten 40-63", "https://de.wikipedia.org/wiki/T%C3%B6rbel (2023-07-18)"], "noteType": "dataSource"}, {"label": ["Törbel est une commune suisse du canton du Valais, située dans le district de Viège"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/271120738", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271120738", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/3850169261908109510008", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)041196392", "source": "GND"}], "authorized_access_point": "Törbel (Valais, Suisse)"} 1 +2024-09-10 15:47:26.171265 2024-09-10 15:47:26.171271 fdc6d7bd-4035-4e1a-a715-b48d0d0dee1c {"md5": "b9660b38e6ad82f584db436662b4dbd7", "pid": "271160926", "note": [{"label": ["Collision entre un camion semi-remorque et un train, Vétroz / Philippe Schmid, 1982 [photographie]", "https://fr.wikipedia.org/wiki/V%C3%A9troz7, 2023-07-19"], "noteType": "dataSource"}, {"label": ["Commune de canton du Valais, située dans le district de Conthey"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/271160926", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271160926", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/97169253683692700516", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)947204954", "source": "GND"}], "authorized_access_point": "Vétroz (Valais, Suisse)"} 1 +2024-09-10 15:47:26.246035 2024-09-10 15:47:26.246041 f94e4216-6e4c-423a-a2f7-fce8674edfc5 {"md5": "6114e1be6e9bb6820c2332b49862fec5", "pid": "271161957", "note": [{"label": ["Voiture dévalant de 50 mètres sur un talus, Vex / Philippe Schmid, 1962 [photographie]", "https://fr.wikipedia.org/wiki/Vex/, 2023-07-19"], "noteType": "dataSource"}, {"label": ["Commune du canton du Valais, chef-lieu du district d'Hérens. Le village est situé à l'entrée du Val d'Hérens. La commune comprend les hameaux des Prasses, d'Ypresse et de l'Argilly ainsi que Les Collons et Thyon 2000"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/271161957", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271161957", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/81169254481492702368", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)956137954", "source": "GND"}], "authorized_access_point": "Vex (Valais, Suisse)"} 1 +2024-09-10 15:47:26.319916 2024-09-10 15:47:26.31992 9198abfe-7275-4349-9d4c-784a7e6c3557 {"md5": "c315151fd43c8acfc682a946df707971", "pid": "271166118", "note": [{"label": ["Inauguration du téléski, Anzère / Philippe Schmid, 1961", "https://www.myswitzerland.com/fr-ch/destinations/anzere/, 2023-07-24"], "noteType": "dataSource"}, {"label": ["Station touristique sur la commune d'Ayent en Valais"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/271166118", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271166118", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/108169253837092700807", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)1019951494", "source": "GND"}], "authorized_access_point": "Anzère (Valais, Suisse)"} 1 +2024-09-10 15:47:26.384855 2024-09-10 15:47:26.384859 03418458-d8d2-4a31-9b09-b2844bb90835 {"md5": "87c94aa4f5a1ec67ed1b2b3073180a2a", "pid": "271323485", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/271323485", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271323485", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12131962h", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)042424003", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/1992159474343127662579", "source": "VIAF"}], "authorized_access_point": "Collombey-Muraz (Valais, Suisse)"} 1 +2024-09-10 15:47:26.46537 2024-09-10 15:47:26.465376 6315d26f-fefd-45c6-affa-b499bf321257 {"md5": "a279fb34c3336bfc2758cee4d7830ed7", "pid": "271323515", "note": [{"label": ["Wikipédia - http://fr.wikipedia.org (2015-04-30)", "Dict. historique de la Suisse (art. : Port-Valais) - http://www.hls-dhs-dss.ch (2015-05-18)"], "noteType": "dataSource"}, {"label": ["Localité de la commune de Port-Valais dans le canton du Valais, située au sud du lac Léman et proche de la frontière française"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCA", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/names/n83224886", "source": "LCA"}], "authorized_access_point": "Bouveret (Switzerland)"}], "identifier": "http://www.idref.fr/271323515", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271323515", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb169627006", "source": "BNF"}, {"type": "bf:Nbn", "value": " (DE-101)959682708", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/113144647637759345491", "source": "VIAF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "914"}], "variant_access_point": ["Bouveret, Le (Valais, Suisse)", "Bouveret (Valais, Suisse)", "Port-Valais (Valais, Suisse) - Village du Bouveret"], "authorized_access_point": "Le Bouveret (Valais, Suisse)"} 1 +2024-09-10 15:47:26.528835 2024-09-10 15:47:26.528839 a0b3e448-c704-4201-8fe7-12ad1e3eecf7 {"md5": "20daa5f54affbc451eda52347c9d1d4c", "pid": "271323590", "note": [{"label": ["Coordonnées géographiques : E 7°36' / N 47°33'"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/271323590", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271323590", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb152399861", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040046176", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/3925169442785525340002", "source": "VIAF"}], "variant_access_point": ["Bâle-Ville (Suisse)", "Basel-Stadt (Suisse)", "Basilea Citta (Suisse)", "Basilea", "Basilia", "Basilea Rauracorum", "Colonia Munatiana", "Athenae Rauracae", "Bazela", "Baesula", "Basula", "Baille", "Baalle", "Basle"], "authorized_access_point": "Bâle (Bâle-Ville, Suisse)"} 1 +2024-09-10 15:47:26.604106 2024-09-10 15:47:26.604109 0278977c-d81c-44c1-ab6f-e55fe97be342 {"md5": "8cddeb50e69ec4a1f294f21c6765c773", "pid": "271323663", "note": [{"label": ["Geonames - http://www.geonames.org (2014-09-12)", "Atlas universel / \\"Le Monde\\", Sélection du \\"Reader's digest\\", 1993"], "noteType": "dataSource"}, {"label": ["Commune du canton du Valais"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCA", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/names/n83239447", "source": "LCA"}], "authorized_access_point": "Vouvry (Switzerland)"}], "identifier": "http://www.idref.fr/271323663", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271323663", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16909821w", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)976443899", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/110144647635667511245", "source": "VIAF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "914"}], "authorized_access_point": "Vouvry (Valais, Suisse)"} 1 +2024-09-10 15:47:26.688988 2024-09-10 15:47:26.688992 b93bcfce-7fe4-44d3-b2bc-44953e2f346a {"md5": "de8cb21c22b6fb422e5be4a6c552b9e2", "pid": "271323698", "note": [{"label": ["Coordonnées géographiques : E 7°48' / N 46°11'"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/271323698", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271323698", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15301322r", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)952907682", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/5819169442791125340000", "source": "VIAF"}], "variant_access_point": ["Zaniglas", "Saniglaas"], "authorized_access_point": "Saint Nicolas (Valais, Suisse)"} 1 +2024-09-10 15:47:26.75781 2024-09-10 15:47:26.757813 5d63fb45-8091-4fe6-a3dd-f9a969ff1b1d {"md5": "d4798d17647ed3f2555eac3fb7810c6e", "pid": "271323752", "note": [{"label": ["Dictionnaire historique de la Suisse - http://www.hls-dhs-dss.ch/textes/f/F2757.php (2010-07-16)"], "noteType": "dataSource"}, {"label": ["Coordonnées géographiques : E 7°49' / N 46°25'"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/271323752", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271323752", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15171340s", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040884422", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/170502802", "source": "VIAF"}], "variant_access_point": ["Uffen der Blattun (Valais, Suisse)", "Uf der Blattun (Valais, Suiss)", "Eisten (Valais, Suisse)", "Ried (Valais, Suisse)", "Weissenried (Valais, Suisse)", "Fafleralp (Valais, Suisse)", "Kühmatt (Valais, Suisse)"], "authorized_access_point": "Blatten (Valais, Suisse)"} 1 +2024-09-10 15:47:26.822616 2024-09-10 15:47:26.82262 63d0b7cc-0686-44a4-b902-c36776af8493 {"md5": "377a421c23e28385417e1c79e2fbb493", "pid": "271326441", "note": [{"label": ["Atlas universalis (Val di Gressoney)", "Valle d'Aosta-Vallée d'Aoste - http://www.regione.vda.it (2006-04-20)"], "noteType": "dataSource"}, {"label": ["Vallée du nord-est du Val d'Aoste au pied du Mont Rose, drainée par le Lys. Elle est habitée depuis le 13e siècle par des Valaisiens (Walser) germanophones"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85057315", "source": "LCSH"}], "authorized_access_point": "Gressoney Valley (Italy)"}], "identifier": "http://www.idref.fr/271326441", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271326441", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12725205j", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040787249", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/4151594428405352226", "source": "VIAF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "914"}], "variant_access_point": ["Gressoney, Val di (Italie)", "Gressoney, Valle di (Italie)", "Gressoneytal (Italie)", "Lys, Vallée du (Italie)", "Val de Gressoney (Italie)"], "authorized_access_point": "Gressoney, Val de (Italie)"} 1 +2024-09-10 15:47:26.897418 2024-09-10 15:47:26.897423 6e883024-ec29-451c-8e11-b56a74c0786b {"md5": "ee7bcd874bb7b2b710db7bfecfdba249", "pid": "271326840", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/271326840", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271326840", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb162621083", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040856852", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/170339943", "source": "VIAF"}], "authorized_access_point": "Anatolie (Turquie ; région)"} 1 +2024-09-10 15:47:27.979629 2024-09-10 15:47:27.979633 e9fa4bf2-41ce-44f6-a08b-fff4d8015772 {"md5": "8f0fc41d9c343c4dbd84e2c32e24c690", "pid": "276180232", "note": [{"label": ["Die Eckartsburg / Reinhard Schmitt. - München ; Berlin : Deutscher Kunstverlag, 1993."], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/276180232", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/276180232", "source": "IDREF"}], "variant_access_point": ["Eckartsberga (Saxe-Anhalt) - Château d’Eckartsburg"], "authorized_access_point": "Eckartsburg, Château d’ (Allemagne)"} 1 +2024-09-10 15:47:26.972975 2024-09-10 15:47:26.972979 465960ed-6be3-4e91-a99f-6e75fee434cc {"md5": "6b4004dc8a96ddaef07bacedc48e6c2d", "pid": "271328762", "note": [{"label": ["Dict. des communes, 2001"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCA", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/names/no2011036870", "source": "LCA"}], "authorized_access_point": "Saint-Gingolph (France)"}], "identifier": "http://www.idref.fr/271328762", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271328762", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb162289872", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/80144647643792852617", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Saint-Gingolph_(Haute-Savoie)", "source": "WIKIPEDIA"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "912"}], "authorized_access_point": "Saint-Gingolph (Haute-Savoie, France)"} 1 +2024-09-10 15:47:27.037862 2024-09-10 15:47:27.037865 2c133b1e-5a47-455b-a283-a7c0b03fd2cc {"md5": "17f01af8ef464d799f66b443a65b05ac", "pid": "271342889", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Alpes (Allemagne)"}], "identifier": "http://www.idref.fr/271342889", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271342889", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb178332023", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)973450509", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/1189169442776925340005", "source": "VIAF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "914"}], "variant_access_point": ["Alpes du Nord", "Alpes septentrionales"], "authorized_access_point": "Alpes (nord)"} 1 +2024-09-10 15:47:27.117034 2024-09-10 15:47:27.117038 cc2a8c39-3ca0-4f03-ae0a-3f9b6e15bc03 {"md5": "123932e029b0576ccf98c6c52db4254f", "pid": "271347821", "note": [{"label": ["Atlas universel Le Monde, 1989", "https://fr.wikipedia.org/wiki/Ollon, 2024-06-26"], "noteType": "dataSource"}, {"label": ["Commune du canton de Vaud, district d'Aigle"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/271347821", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271347821", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb161099642", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/9402165326398616290004", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Ollon", "source": "WIKIPEDIA"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "914"}], "authorized_access_point": "Ollon (Vaud, Suisse)"} 1 +2024-09-10 15:47:27.181525 2024-09-10 15:47:27.181529 85522a5a-669a-4c6d-8ae1-f39bac3d4ee0 {"md5": "9e5b5abfdff143b4dac986710866bf6d", "pid": "271377445", "note": [{"label": ["https://fr.wikipedia.org/wiki/Grand_Muveran, 2024-06-25"], "noteType": "dataSource"}, {"label": ["Coordonnées géographiques : E 7°8'29\\" / N 46°14'17\\"", "Sommet situé entre les cantons du Valais et de Vaud"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Alpes vaudoises (Suisse)"}, {"authorized_access_point": "Muverans, Massif des (Suisse)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/271377445", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271377445", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb17014374p", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/41169436117514272671", "source": "VIAF"}], "authorized_access_point": "Grand Muveran (Suisse ; mont)"} 1 +2024-09-10 15:47:27.240248 2024-09-10 15:47:27.240251 ba037b03-7321-4f77-92a2-377b3dafdad0 {"md5": "6cd5b9ae08641d665b283ed7fea7b66d", "pid": "271529172", "note": [{"label": ["Zinal : parcours historique / Adriana Tenda Claude, 2016", "https://fr.wikipedia.org/wiki/Zinal, 2023-08-25"], "noteType": "dataSource"}, {"label": ["Village et station touristique situé dans sur la commune d'Anniviers"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/271529172", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271529172", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/86169435151714270533", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)043141668", "source": "GND"}], "authorized_access_point": "Zinal (Valais, Suisse)"} 1 +2024-09-10 15:47:27.30597 2024-09-10 15:47:27.305974 c940b9ec-09a3-4e2e-bffa-22bf3ef160ff {"md5": "f29b7f2e53550c6eaea990ca40fc1aaa", "pid": "271733764", "note": [{"label": ["Bernard Marrey, La Naissance du théâtre des Champs-Elysées 1910-1922, éd. Picard, 2007."], "noteType": "dataSource"}, {"label": ["Le Théâtre, la Comédie et le Studio des Champs-Elysées font partie du même ensemble architectural. Inaugurée en 1913 sous la direction de Léon Poirier, la Comédie Léon-Poirier prend en 1919 le nom de Comédie-Montaigne. Louis Jouvet en prend la direction de 1923 à 1934. La Comédie devient un théâtre d'art et d'essai en 1937, et abrite de nombreuses troupes. A partir de 1944, elle est dirigée par C. Sainval et R. Pietri, puis par Sainval seul.", "Paris (France)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/271733764", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271733764", "source": "IDREF"}], "variant_access_point": ["Comédie Léon-Poirier (Paris)", "Théâtre Louis Jouvet (Paris)", "Comédie-Montaigne (Paris)"], "authorized_access_point": "Comédie des Champs-Elysées"} 1 +2024-09-10 15:47:27.377103 2024-09-10 15:47:27.377108 11f9e77f-77a0-46c5-9861-16695df5c371 {"md5": "bcd9bd9ec9693f0da06cf17627b40b8a", "pid": "271786574", "note": [{"label": ["Bernard Marrey, La Naissance du théâtre des Champs-Elysées 1910-1922, éd. Picard, 2007."], "noteType": "dataSource"}, {"label": ["Paris, France"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/271786574", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271786574", "source": "IDREF"}], "variant_access_point": ["Théâtre des Champs Élysées, Paris"], "authorized_access_point": "Théâtre des Champs-Élysées, Paris"} 1 +2024-09-10 15:47:27.43572 2024-09-10 15:47:27.435723 8bec8820-6199-4750-ba5f-948a5cb30f5f {"md5": "112e65688651d2c1fd181a4437e5c93b", "pid": "272053430", "note": [{"label": ["Merā Ḵẖaddoḵẖel : 326 Qāf. Mīm. tā 2000 : ʿalāqah Ḵẖaddoḵẖel kā muḵẖtaṣr tārīḵẖī, tahẕībī va s̱aqāfatī mut̤ālaʿah / Shirīnzādah Ḵẖadoḵẖel, 2000", "Internet, https://authorities.loc.gov, 2023-09-18"], "noteType": "dataSource"}, {"label": ["Le district de Buner est une subdivision administrative de la province Khyber Pakhtunkhwa au Pakistan. Coordonnées géographiques : E 72° 29′ 02'' / N 34° 30′ 41''"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/272053430", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/272053430", "source": "IDREF"}], "variant_access_point": ["بونیر (Pakistan ; district)"], "authorized_access_point": "Buner (Pakistan ; district)"} 1 +2024-09-10 15:47:27.504175 2024-09-10 15:47:27.504177 ddf16d7a-b191-4cde-a096-147f68aa5d2e {"md5": "a4d0ec641759ac05193c8b3396c4bdf8", "pid": "272179213", "note": [{"label": ["Louis-François Delisle de la Drevetière, Le théâtre des Champs-Élysées, 1912."], "noteType": "dataSource"}, {"label": ["De 1960 à 1965, Antoine Bourseiller assure la direction artistique. Depuis 1966, la direction est assurée par les directeurs de la Comédie des Champs-Élysées : Claude Sainval, Guy Descaux, Jacqueline Cormier, Michel Fagadau (assisté par Viviane Elbaz de 1997 à 2005) et Stéphanie Fagadau-Mercier.", "Paris, France"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/272179213", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/272179213", "source": "IDREF"}], "authorized_access_point": "Studio des Champs-Elysées, Paris"} 1 +2024-09-10 15:47:27.56212 2024-09-10 15:47:27.562124 0b86b817-46ee-4397-b4d5-2e4830800342 {"md5": "9a8cf9bd2a0eaf4fd7f80826e577b34a", "pid": "272823627", "note": [{"label": ["https://fr.wikipedia.org/wiki/Jardin_du_Pr%C3%A9-Catelan, 2023-10-25"], "noteType": "dataSource"}, {"label": ["Parc botanique du bois de Boulogne à Paris qui se trouve dans la zone du Pré Catelan. En 1911, un nouvel espace consacré au spectacle vivant est inauguré dans le parc, à proximité de La Villa Bengali, le théâtre de Verdure du Pré-Catelan, un théâtre d'été, en plein air, dirigé par Francis Robin9, ancien directeur du théâtre de la Tour Eiffel et fondateur du théâtre Le Tréteau Royal, et où sont notamment présentées les premières pièces de Louis Delluc. En 1953 est inauguré le Théâtre de verdure du jardin Shakespeare, à la place de l'ancien Théâtre des fleurs. Il est constitué de petits jardins thématiques faisant référence à cinq pièces du dramaturge anglais, notamment via un choix de végétaux liés à son œuvre (roses, ifs, etc.). Chaque été, des pièces y sont jouées en plein air."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/272823627", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/272823627", "source": "IDREF"}], "variant_access_point": ["Théâtre de verdure du Jardin Shakespeare"], "authorized_access_point": "Théâtre du Pré Catelan, Bois de Boulogne, Paris"} 1 +2024-09-10 15:47:27.623634 2024-09-10 15:47:27.623637 61b048af-c6eb-4ce0-8053-5f61d1525895 {"md5": "067de4fe1620fc0f05ec2a0e6fa43de5", "pid": "273580728", "note": [{"label": ["Ovronnaz à pied / Société de développement (Ovronnaz), 1973", "https://www.ovronnaz.ch/ovronnaz-ses-alentours/, 2023-12-01"], "noteType": "dataSource"}, {"label": ["Station touristique de montagne, sur le territoire de la commune de Leytron"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/273580728", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/273580728", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/53170520280403302918", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)960113355", "source": "GND"}], "authorized_access_point": "Ovronnaz (Valais, Suisse)"} 1 +2024-09-10 15:47:27.694214 2024-09-10 15:47:27.694217 d7d41c3a-348d-409e-b446-3ecf9807497f {"md5": "57f9b6d3fc52badb650c550cb7a9dc85", "pid": "275775569", "note": [{"label": ["Trésors naturels du bois de Finges / René-Pierre Bille, Philippe Werner, 1986", "https://www.pfyn-finges.ch/fr/experience/carte-du-parc/offer-detail/site-protege-du-bois-de-finges-1991, 2024-02-14", "https://hls-dhs-dss.ch/fr/articles/008553/2010-09-28/, 2024-02-14"], "noteType": "dataSource"}, {"label": ["Réserve naturelle"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/275775569", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/275775569", "source": "IDREF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Bois_de_Finges", "source": "WIKIPEDIA"}, {"type": "bf:Nbn", "value": "(DE-101)043187048", "source": "GND"}], "variant_access_point": ["Bois de Finges (Valais, Suisse)", "Pfynwald (Valais, Suisse)", "Forêt de Finges (Valais, Suisse)"], "authorized_access_point": "Finges, Bois de (Valais, Suisse)"} 1 +2024-09-10 15:47:27.774392 2024-09-10 15:47:27.7744 d1514588-4764-44b5-8574-32ea2308351a {"md5": "0499032fffced6b1725401bcfe1d0a37", "pid": "276090829", "note": [{"label": ["Arlesheim : Biel-Benken - Reinach - Pratteln, 2023. (Landeskarte der Schweiz; 1067)"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/276090829", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/276090829", "source": "IDREF"}], "authorized_access_point": "Biel-Benken (Bâle-Campagne, Suisse)"} 1 +2024-09-10 15:47:27.857149 2024-09-10 15:47:27.857152 0689e1ba-6a8f-4314-97f1-c0babe84c681 {"md5": "d089675c5c64e5a3dd823d83ff610a92", "pid": "27609266X", "note": [{"label": ["Arlesheim : Biel-Benken - Reinach - Pratteln, 2023. (Landeskarte der Schweiz; 1067)"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/27609266X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/27609266X", "source": "IDREF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Reinach_(Bâle-Campagne)", "source": "WIKIPEDIA"}], "authorized_access_point": "Reinach (Bâle-Campagne, Suisse)"} 1 +2024-09-10 15:47:27.918807 2024-09-10 15:47:27.918812 01c55829-e295-4bbf-be87-4808a62fecca {"md5": "f99477416f48275a57d532a493459fab", "pid": "276092945", "note": [{"label": ["Arlesheim : Biel-Benken - Reinach - Pratteln, 2023. (Landeskarte der Schweiz; 1067)"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/276092945", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/276092945", "source": "IDREF"}], "authorized_access_point": "Pratteln (Bâle-Campagne, Suisse)"} 1 +2024-09-10 15:47:28.398527 2024-09-10 15:47:28.398531 0aa7b523-336d-4d42-86bf-98faf046f5a6 {"md5": "44f578d93b8807e6e18521b3af9d9f8b", "pid": "276271890", "note": [{"label": ["Die Baugeschichte der Burg Kyffhausen / Hermann Wäscher. - Halle (Saale) : Kreuz Verlag (VOB), 1959."], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/276271890", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/276271890", "source": "IDREF"}], "variant_access_point": ["Burg Kyffhausen", "Kyffhäuserland, Land de Thuringe (Allemagne) - Château de Kyffhausen"], "authorized_access_point": "Kyffhausen, Château de (Allemagne)"} 1 +2024-09-10 15:47:28.453444 2024-09-10 15:47:28.453447 72f05a75-d846-45f9-8657-ea460bcfdeb3 {"md5": "4e5c3185658829957c5c9eff1b2aa40a", "pid": "276300882", "note": [{"label": ["Burg Gemen / Eberhard G. Neumann. - 4. Auflage. - München ; Berlin : Deutscher Kunstverlag, 1987."], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/276300882", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/276300882", "source": "IDREF"}], "variant_access_point": ["Burg Gemen", "Borken (Westphalie) - Château de Gemen"], "authorized_access_point": "Gemen, Château de (Allemagne)"} 1 +2024-09-10 15:47:28.51918 2024-09-10 15:47:28.519184 3c7bd679-45e4-4121-bd67-aa7a8d69b71f {"md5": "172f1169269699d3303288b29c346a88", "pid": "276306651", "note": [{"label": ["Otzberg : Burg - Festung – Kaserne / Dr. Axel Gleue. - Otzberg : A.W.Gleue, © 2003"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/276306651", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/276306651", "source": "IDREF"}], "variant_access_point": ["Veste Otzberg", "Otzberg (Hesse, Allemagne) - Château d’Otzberg"], "authorized_access_point": "Otzberg, Château d’ (Allemagne)"} 1 +2024-09-10 15:47:28.577451 2024-09-10 15:47:28.577454 b2cb1da3-bdbf-4ff0-945e-2a943a7c8314 {"md5": "1f4f840a731b7a28763ad29394298e84", "pid": "276398157", "note": [{"label": ["Alpes bernoises : sélection d'itinéraires / Maurice Brandt, 1982", "Guide des Alpes bernoises : du Sanetsch au Grimsel : sélection d'itinéraires / Ueli Mosimann, 2002", "https://fr.wikipedia.org/wiki/Subdivision_orographique_internationale_unifi%C3%A9e_du_syst%C3%A8me_alpin, 2024-03-20"], "noteType": "dataSource"}, {"label": ["Les Alpes bernoises couvrent un territoire allant du col du Sanetsch au col du Grimsel, sur les cantons de Berne (Oberland bernois) et du Valais (rive droite du Rhône). Dans un sens plus large, elles touchent également les cantons de Vaud, d'Uri et d'Obwald"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Alpes, Chaîne des"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Jungfrau-Alestch, Site Unesco (Berne / Valais, Suisse)"}, {"authorized_access_point": "Aletsch, Grand Glacier d' (Valais, Suisse)"}, {"authorized_access_point": "Jungfrau (Berne, Suisse ; Mont)"}], "identifier": "http://www.idref.fr/276398157", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/276398157", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15331629m", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)04005781X", "source": "GND"}], "variant_access_point": ["Alpi Bernesi (Suisse)", "Berner Alpen (Suisse)"], "authorized_access_point": "Alpes Bernoises (Suisse)"} 1 +2024-09-10 15:47:28.642119 2024-09-10 15:47:28.642123 545c02b8-0f19-4e16-8635-3b706293df3a {"md5": "8d178bc04c6fbb630ce249b2ba547e5a", "pid": "276510216", "note": [{"label": ["111 lieux des Alpes vaudoises à ne pas manquer / Benjamin Amiguet, Marc Voltenauer, 2022", "https://fr.wikipedia.org/wiki/Alpes_vaudoises, 2024-03-20", "https://search.ortsnamen.ch/fr/record/803319560/, 2024-03-20"], "noteType": "dataSource"}, {"label": ["Les Alpes vaudoises sont un ensemble montagneux des Alpes suisses situé principalement dans les cantons de Vaud et du Valais"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Grand Muveran (Suisse ; mont)"}, {"authorized_access_point": "Les Diablerets (Suisse ; massif)"}], "identifier": "http://www.idref.fr/276510216", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/276510216", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)944449360", "source": "GND"}], "variant_access_point": ["Waadtländer Alpen (Suisse)", "Alpi Valdesi (Suisse)"], "authorized_access_point": "Alpes vaudoises (Suisse)"} 1 +2024-09-10 15:47:28.705193 2024-09-10 15:47:28.705196 41f6f21a-b2cc-41b9-834f-019aa6d43650 {"md5": "fc3b9c5f18410bed41ee3c387965a4b3", "pid": "276534921", "note": [{"label": ["Coordonnées géographiques : E 43°20' - E 50°15' / S 12° - S 25°30'"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Afrique"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/276534921", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/276534921", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15325769w", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040744256", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/146036991", "source": "VIAF"}], "relation_pid": {"type": "redirect_from", "value": "027238180"}, "variant_access_point": ["République Malgache (1960-)", "Malgache, République (1960-)", "Madagascar (1960-)"], "authorized_access_point": "Madagascar"} 1 +2024-09-10 15:47:28.769184 2024-09-10 15:47:28.769188 871251d1-419c-45d1-8fa3-bb328507fa6e {"md5": "a1481849e03c971258dbedd0f2f6a53f", "pid": "276626370", "note": [{"label": ["Wasserburg Anholt / Eberhard G. Neumann. - München ; Berlin : Deutscher Kunstverlag, 1976"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/276626370", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/276626370", "source": "IDREF"}], "variant_access_point": ["Wasserburg Anholt", "Isselburg (Westphalie) - Château d’Anholt"], "authorized_access_point": "Anholt, Château de (Allemagne)"} 1 +2024-09-10 15:47:28.828376 2024-09-10 15:47:28.82838 6ed163b6-13a0-4012-8fc3-d7555c39b2cc {"md5": "d06a3188cb11c9ba19d2f5bfe3b6f2e3", "pid": "276637674", "note": [{"label": ["Gelnhausen : Kaiserpfalz : amtlicher Führer / Wolfgang Einsingbach. - Bad Homburg vor der Höhe : Verwaltung der Staatlichen Schlösser und Gärten Hessen, 1980"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/276637674", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/276637674", "source": "IDREF"}], "variant_access_point": ["Château de Gelnhausen (Gelnhausen, Allemagne)", "Kaiserpfalz Gelnhausen (Gelnhausen, Allemagne)", "Pfalz Gelnhausen (Gelnhausen, Allemagne)", "Barbarossaburg (Gelnhausen, Allemagne)"], "authorized_access_point": "Gelnhausen (Hesse, Allemagne) - Kaiserpfalz"} 1 +2024-09-10 15:47:28.885711 2024-09-10 15:47:28.885715 74265d3e-63d2-4ac1-a3a4-61589d2107e3 {"md5": "e20aabf09441c1655d23745c9962338e", "pid": "276708083", "note": [{"label": ["Pietro Coleberti e il ciclo pittorico di Santa Caterina a Roccantica / Giuseppe Cassio, 2023"], "noteType": "dataSource"}, {"label": ["Via della Torre, 25, 02040 Roccantica RI, Italie"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/276708083", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/276708083", "source": "IDREF"}], "classification": [{"name": "Religion", "type": "bf:ClassificationDdc", "classificationPortion": "200"}, {"name": "Architecture", "type": "bf:ClassificationDdc", "classificationPortion": "720"}, {"name": "Géographie de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "914"}], "variant_access_point": ["Chiesa Santa Caterina d'Alessandria (Roccantica, Italie)", "Roccantica (Italie) - Église Sainte Catherine d'Alexandrie", "Église Sainte Catherine d'Alexandrie (Roccantica, Italie)", "Sainte Catherine (Roccantica, Italie)"], "authorized_access_point": "Roccantica (Italie) - Chiesa Santa Caterina d'Alessandria"} 1 +2024-09-10 15:47:28.954898 2024-09-10 15:47:28.954904 7b3d4ea3-7049-4d58-ad34-15253ba212f4 {"md5": "8e204e2168e1d8bad82c47c7da1bc748", "pid": "276783743", "note": [{"label": ["Burg Eltz / Dieter Ritzenhofen. - 17. Auflage. - München ; Berlin : Deutscher Kunstverlag, 1989"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/276783743", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/276783743", "source": "IDREF"}], "variant_access_point": ["Burg Eltz", "Wierschem, Rhénanie-Palatinat (Allemagne) - Château d’Eltz"], "authorized_access_point": "Eltz, Château d’(Allemagne)"} 1 +2024-09-10 15:47:29.026021 2024-09-10 15:47:29.026025 b9461ca4-8f16-4cfa-81f0-4b4a7cdaf385 {"md5": "a3d428436ec1ad04d7192accb4ac6d5e", "pid": "27678832X", "note": [{"label": ["Der Desenberg bei Warburg, Kreis Höxter / [Cornelia Kneppe, Hans-Werner Peine]. - Münster : Altertumskommission für Westfalen, 2000"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/27678832X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/27678832X", "source": "IDREF"}], "variant_access_point": ["Der Desenberg", "Der Daseburg", "Warburg, Westphalie (Allemagne) - Château de Desenberg"], "authorized_access_point": "Desenberg, Château de (Allemagne)"} 1 +2024-09-10 15:47:29.094516 2024-09-10 15:47:29.094521 9b3bf4e5-9b7c-4672-b8ce-2236eea505da {"md5": "cd0b6be4baa4f9b59074b0218d23ea56", "pid": "276828984", "note": [{"label": ["Campus, HES-SO Studiengang Physiotherapie Leukerbad : Umbau : Schulgebäude = HES-SO, Campus Études de physiothérapie Loèche-les-Bains : transformation : bâtiment scolaire / Département des finances et de l’énergie. Service immobilier et patrimoine. Section Investissement. - Canton du Valais, 2023"], "noteType": "dataSource"}, {"label": ["Campus HES-SO des Etudes de physiothérapie situé au Rathausstrasse 25 à Loèche-les-Bains. Ancienne clinique/hôpital pour la réadaptation neurologique réadaptée en 2018 par l'Etat du Valais pour les besoins de la HES-SO"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/276828984", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/276828984", "source": "IDREF"}], "variant_access_point": ["Loèche-les-Bains (Valais, Suisse) - Campus Etudes de physiothérapie HES-SO"], "authorized_access_point": "Leukerbad (Valais, Suisse) - Campus Studiengang Physiotherapie HES-SO"} 1 +2024-09-10 15:47:29.160217 2024-09-10 15:47:29.16022 f5a1d39b-f9bf-4e30-bc4c-6e806ecfa598 {"md5": "a7c4236ba1d97c6c374a135be20423ab", "pid": "276944135", "note": [{"label": ["Erfgoed op de vlucht. Duitse bezetters, Vlaamse meesterwerken, een Waals kasteel / Bert Govaerts, 2024", "2024/04/09 https://fr.wikipedia.org/wiki/Ch%C3%A2teau_de_Lavaux-Sainte-Anne"], "noteType": "dataSource"}, {"label": ["Le château de Lavaux-Sainte-Anne est situé en Wallonie à Lavaux-Sainte-Anne (5580) en Belgique près de Rochefort, dans la province de Namur. Ne doit pas être confondu avec Lavault-Sainte-Anne. La construction ayant commencé au 15e siècle et terminée au 16e siècle, il s'agit d'une forteresse médiévale transformée par des influences Renaissance. Lavaux-Sainte-Anne (en wallon Li Vå-Sinte-Ane) est une section de la ville belge de Rochefort. C'était une commune à part entière avant la fusion des communes de 1977."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/276944135", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/276944135", "source": "IDREF"}], "authorized_access_point": "Lavaux-Saint-Anne (Belgique) - Château"} 1 +2024-09-10 15:47:29.234362 2024-09-10 15:47:29.234369 581c26d4-7849-4443-b3a4-abb2ecdf5e08 {"md5": "3a494c6beac84926efd23e94f709773b", "pid": "276970950", "note": [{"label": ["Gehn wir mal auf den Honstein / Hansjoachim Stenzhorn. - 3. Aufflage. - Nordhausen : Eigenverlag, 2001"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/276970950", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/276970950", "source": "IDREF"}], "variant_access_point": ["Burg Honstein", "Burg Hohnstein", "Burg Hohenstein", "Nordhausen, Thuringe (Allemagne) - Château de Honstein"], "authorized_access_point": "Honstein, Château de (Allemagne)"} 1 +2024-09-10 15:47:29.303837 2024-09-10 15:47:29.303841 e7d11f9e-f4f0-4ad9-a8fe-f25bc6fcf513 {"md5": "c467b4ba36c6b50cf6c181e1c8aecad6", "pid": "277221307", "note": [{"label": ["Die institutionelle Förderung des nachbarschaftlichen Miteinanders im Genfer Ökoviertel «Les Vergers» : eine Untersuchung über ihre Gestaltung und ihre Resonanz bei den örtlichen Bewohner:innen / von Marc-Aurèle Dubois-Pelerin, 2023"], "noteType": "dataSource"}, {"label": ["L'écoquartier Les Vergers comprend 1350 logements répartis dans 30 bâtiments. Bâti sur un terrain d'une superficie d'environ 16 hectares, il accueille environ 3'000 habitants et 10'000 m2 de surfaces commerciales. Ce quartier exemplaire est basé sur les trois piliers du développement durable : solidarité sociale, responsabilité environnementale et efficience économique. Il a été finalisé en 2023"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/277221307", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/277221307", "source": "IDREF"}], "authorized_access_point": "Meyrin (Genève, Suisse) - Les Vergers"} 1 +2024-09-10 15:47:29.379627 2024-09-10 15:47:29.379631 f14fa93d-98a9-49db-ae10-eb979a6c77ee {"md5": "a0c1cf24fafc7aa35fa5fb329ab734ed", "pid": "27727382X", "note": [{"label": ["Die Ruine Flossenbürg : Auferstehung einer Burg des hohen und späten Mittelalters / von Andreas Boos. - Flossenbürg : Gemeinde Flossenbürg, 1993."], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/27727382X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/27727382X", "source": "IDREF"}], "variant_access_point": ["château de Flossenbürg (Flossenbürg, Allemagne)", "Burgruine Flossenbürg (Flossenbürg, Allemagne)", "Ruine Flossenbürg (Flossenbürg, Allemagne)"], "authorized_access_point": "Flossenbürg (Allemagne) - Burgruine"} 1 +2024-09-10 15:47:29.458167 2024-09-10 15:47:29.45817 9006ad55-be0b-45af-bcef-4087e3040fc7 {"md5": "0ac58f0d9375e4e039de3367246ddfda", "pid": "277473284", "note": [{"label": ["Les richesses naturelles du Vallon de Réchy : en vue de sa mise sous protection / René-Pierre Bille... et al., 1986", "https://www.vs.ch/web/sites-naturels-proteges/val-de-rechy, 2024-05-01"], "noteType": "dataSource"}, {"label": ["Vallon situé entre le val d'Hérens et le val d'Anniviers"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/277473284", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/277473284", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)1019952792", "source": "GND"}], "variant_access_point": ["Réchy, Vallon de (Valais, Suisse)"], "authorized_access_point": "Réchy, Val de (Valais, Suisse)"} 1 +2024-09-10 15:47:29.52278 2024-09-10 15:47:29.522784 16e48429-8f63-4bd8-89f3-9523c22a6f53 {"md5": "56a7bb93c479080375061ece59ef19e9", "pid": "278628117", "note": [{"label": ["Historical archives of Kasur / Amjad Zafar Ali, 2023", "Internet, https://authorities.loc.gov, 2024-06-04"], "noteType": "dataSource"}, {"label": ["Kasur est une ville pakistanaise, et capitale du district de Kasur, dans la province du Pendjab. Coordonnées géographiques : E 74° 26'' 48'' / N 31° 6' 56''"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/278628117", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278628117", "source": "IDREF"}], "variant_access_point": ["قصور (Pakistan)", "Qasūr (Pakistan)"], "authorized_access_point": "Kasur (Pakistan)"} 1 +2024-09-10 15:47:29.58174 2024-09-10 15:47:29.581744 c11cc857-fc2b-4a09-ac34-4c959ba75b37 {"md5": "b79cabc651f8493c8c827e3105ceaff9", "pid": "278728596", "note": [{"label": ["http://www.geonames.org/, 2024-06-10"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Livingston"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/278728596", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278728596", "source": "IDREF"}], "authorized_access_point": "Forrest (Ill.)"} 1 +2024-09-10 15:47:29.643667 2024-09-10 15:47:29.643671 be7917c4-0935-42a6-9441-070ec25ed0f9 {"md5": "343fb36e44c238fc673bf70760a31195", "pid": "278738230", "note": [{"label": ["https://fr.wikipedia.org/wiki/Azarori"], "noteType": "dataSource"}, {"label": ["Azarori est une localité et une commune rurale du Niger, du département de Madaoua, région de Tahoua. Elle s'étend sur 166 localités."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/278738230", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278738230", "source": "IDREF"}], "variant_access_point": ["Azérori (Niger)", "Arzerori (Niger)"], "authorized_access_point": "Azarori (Niger)"} 1 +2024-09-10 15:47:29.71387 2024-09-10 15:47:29.713874 020bddf8-f321-40e5-bd71-a4dfd7bfc355 {"md5": "6afa8b6092cb11dc39912d62df7786eb", "pid": "278747310", "note": [{"label": ["Endzeiten : Wie G.W.F. Hegel, Dietrich Bonhoeffer, Heinrich Mann, Bertolt Brecht, Herbert Marcuse, Heiner Müller und Christa Wolf ihr nahes Ende lebten : Was der Tod mit ihrem Werk machte und wie er mit der Geschichte zusammenhing / Karl Heinz Götze, 2023", "Bibliothèque nationale, autorités, Allemagne : Dorotheenstädtischer Friedhof (Berlin) - https://d-nb.info/gnd/4333021-6 (2024-06-05)"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "authorized_access_point": "Dorotheenstädtischer Friedhof (Berlin, Germany)"}], "identifier": "http://www.idref.fr/278747310", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278747310", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18150875k", "source": "BNF"}], "classification": [{"name": "Ethnologie, anthropologie, folklore", "type": "bf:ClassificationDdc", "classificationPortion": "390"}, {"name": "Urbanisme", "type": "bf:ClassificationDdc", "classificationPortion": "710"}, {"type": "bf:ClassificationDdc", "classificationPortion": "914"}], "variant_access_point": ["Dorotheenstädtischer Friedhof (Berlin, Allemagne)"], "authorized_access_point": "Berlin (Allemagne) - Dorotheenstädtischer Friedhof"} 1 +2024-09-10 15:47:29.797831 2024-09-10 15:47:29.797835 111d9981-2bf0-48d7-b3dd-0a89ae0b19a2 {"md5": "dcf9f768bea5fdf5ee47c8d2b9e289e4", "pid": "278850650", "note": [{"label": ["Hadrianeum : il progetto architettonico e le fasi costruttive / Claudio Parisi Presicce, Massimo Baldi, [2024]", "https://fr.wikipedia.org/wiki/Temple_d%27Hadrien, 2024-06-13"], "noteType": "dataSource"}, {"label": ["Ancien temple romain situé sur la piazza di Pietra, au Champ de Mars, à Rome, érigé en l'honneur de l'empereur Hadrien par son successeur Antonin le Pieux, en 145 apr. J.-C."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/278850650", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278850650", "source": "IDREF"}], "variant_access_point": ["Hadrianeum (Rome, Italie)", "Hadrien, temple d' (Rome, Italie)", "Rome (Italie) - Hadrianeum"], "authorized_access_point": "Temple d'Hadrien (Rome, Italie)"} 1 +2024-09-10 15:47:29.862 2024-09-10 15:47:29.862004 66d718d3-f47b-4bc1-b688-af101df420a3 {"md5": "aad49f31f40bde0547e3d238f0155596", "pid": "278893899", "note": [{"label": ["Monte Alverno : an Irish private collection : auction in London, 16 May 2022 / Sotheby's, 2022"], "noteType": "dataSource"}, {"label": ["Manoir construit vers 1835, agrandi et restauré en 1895"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/278893899", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278893899", "source": "IDREF"}], "variant_access_point": ["Monte Alverno (Dalkey, Comté de Dublin, Irlande)"], "authorized_access_point": "Dalkey (Comté de Dublin, Irlande) - Monte Alverno"} 1 +2024-09-10 15:47:29.925259 2024-09-10 15:47:29.925262 76c3d375-4147-4a4b-9c7d-7bcdd6885da1 {"md5": "b7e82d8d041adf9c490a474426f19061", "pid": "278918964", "note": [{"label": ["Palazzo dei Diamanti : contributi per il restauro / a cura di Carla Di Francesco, 1991", "https://www.palazzodiamanti.it/en/about-us/, 2024-06-18", "https://www.comune.fe.it/it/z/384/view?modelClass=open20%5Cagid%5Corganizationalunit%5Cmodels%5CAgidOrganizationalUnit&view=detailAgidOrgUnit, 2024-05-03", "https://viaf.org/processed/RERO%7CA006071632, 2024-05-30"], "noteType": "dataSource"}, {"label": ["Le palais, conçu par Biagio Rossetti, fut construit à partir de 1493 pour le compte de Sigismondo d’Este, frère du duc Hercule Ier d’Este. Le bâtiment fut acheté par la municipalité de Ferrare en 1832. Devenu espace d'exposition, il dépendait de la Galleria civica d'arte moderna - comprise désormais dans les Gallerie d'Arte Moderna e Contemporanea - et dépend actuellement (2024) de la Fondazione Ferrara Arte."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/278918964", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278918964", "source": "IDREF"}], "variant_access_point": ["Palazzo dei Diamanti (Ferrare, Italie)", "Ferrare (Italie) - Palais des diamants", "Palais des diamants (Ferrare, Italie)"], "authorized_access_point": "Ferrare (Italie) - Palazzo dei Diamanti"} 1 +2024-09-10 15:47:29.987128 2024-09-10 15:47:29.987133 57c1a639-74ef-46a5-b5e7-d34faa8a9371 {"md5": "9ed9ccea91d062affa9d0f192eb9760e", "pid": "279034989", "note": [{"label": ["Ville de Lardy - https://www.ville-lardy.fr/tourisme/parcs-et-jardins/le-parc-boussard (2024-06-14)", "Le parc Boussard / A-S. Godot, 2024"], "noteType": "dataSource"}, {"label": ["Ancien parc privé de style Art déco créé entre 1927 et 1930 par l'architecte Joseph Marrast pour le négociant Henri Boussard"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279034989", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279034989", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18152832s", "source": "BNF"}], "relation_pid": {"type": "redirect_from", "value": "27949002X"}, "classification": [{"name": "Urbanisme", "type": "bf:ClassificationDdc", "classificationPortion": "710"}, {"type": "bf:ClassificationDdc", "classificationPortion": "912"}], "variant_access_point": ["Boussard, Parc (Lardy, Essonne)", "Parc Boussard (Lardy, Essonne)"], "authorized_access_point": "Lardy (Essonne, France) - Parc Boussard"} 1 +2024-09-10 15:47:30.051073 2024-09-10 15:47:30.051077 b661c297-4b45-4907-ac1a-9649c3c4930c {"md5": "9757fb07a0e8870ef0631ff0561b0046", "pid": "279121369", "note": [{"label": ["Seismic-refraction studies of Eniwetok Atoll / by Russell W. Raitt, 1957."], "noteType": "dataSource"}, {"label": ["Atoll des iles Marshall"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279121369", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279121369", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/315128069", "source": "VIAF"}], "variant_access_point": ["Eniwetok (Atoll)"], "authorized_access_point": "Enewetak (Atoll)"} 1 +2024-09-10 15:47:30.112156 2024-09-10 15:47:30.11216 7126fdbc-e096-4ea2-8902-3b80fa8c05c7 {"md5": "b057072c01f90823dbd1a43f8d9957ae", "pid": "279128800", "note": [{"label": ["http://www.geonames.org/, 2024-07-01"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Livingston"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279128800", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279128800", "source": "IDREF"}], "authorized_access_point": "Strawn (Ill.)"} 1 +2024-09-10 15:47:30.176841 2024-09-10 15:47:30.176844 4b6c107d-37b9-46fb-925b-4ef875a0bd0a {"md5": "aeaf29a660adbc283c4f2503fea438a8", "pid": "27912886X", "note": [{"label": ["http://www.geonames.org/, 2024-07-01"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Ford"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/27912886X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/27912886X", "source": "IDREF"}], "authorized_access_point": "Sibley (Ill.)"} 1 +2024-09-10 15:47:30.236014 2024-09-10 15:47:30.236017 6af4868a-9a67-4673-81f2-44c893fca441 {"md5": "57ef7ecd555fe58c7b46dd346e498bbf", "pid": "279128959", "note": [{"label": ["http://www.geonames.org/, 2024-07-01"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Ford"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279128959", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279128959", "source": "IDREF"}], "authorized_access_point": "Guthrie (Ill.)"} 1 +2024-09-10 15:47:30.309873 2024-09-10 15:47:30.309877 6b2f346f-228b-4dcc-9ca9-02cbbbb28972 {"md5": "72b38eb170a5469f62ee7d61ff97afeb", "pid": "279129467", "note": [{"label": ["Suomen geologinen kartta Lehti 2542+2524 = =Geological map of Finland : kallioperäkartta / Geologisen tutkimuslaitoksen julkaisema ; Tehnyt Vesa Perttunen, 1972.", "http://www.geonames.org/653831/karunki.html , 2024-07-01"], "noteType": "dataSource"}, {"label": ["Ville de Finlande, Laponie"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279129467", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279129467", "source": "IDREF"}], "authorized_access_point": "Karunki (Finlande)"} 1 +2024-09-10 15:47:30.373708 2024-09-10 15:47:30.373712 6f364058-fa2b-43e4-8404-b43a912d4b29 {"md5": "6424c65d9e66ebee4d47caebd5bc59ff", "pid": "279129912", "note": [{"label": ["http://www.geonames.org/, 2024-07-01"], "noteType": "dataSource"}, {"label": ["Situé dans le comté d'Ogle"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279129912", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279129912", "source": "IDREF"}], "authorized_access_point": "Polo (Ill.)"} 1 +2024-09-10 15:47:30.445033 2024-09-10 15:47:30.445038 5d3e385f-e1f6-417b-9711-d191010b9b1d {"md5": "ca74cf67685ce489aedd3d25f6266ba9", "pid": "279129920", "note": [{"label": ["Suomen geologinen kartta Lehti 3041 = =Geological map of Finland : kallioperäkartta / Geologisen tutkimuslaitoksen julkaisema ; Tehnyt Matti Laitala & Ahti Simonen, 1972."], "noteType": "dataSource"}, {"label": ["Commune de Finlande, région Vallée de la Kymi; Absorbe le comté de Haapasaari en 1974"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279129920", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279129920", "source": "IDREF"}], "authorized_access_point": "Kotka (Finlande)"} 1 +2024-09-10 15:47:30.569657 2024-09-10 15:47:30.56966 975300ee-464b-46c0-b81f-b20b64773893 {"md5": "8cbfc3fc64ea8f0e52c33c4897fe7c41", "pid": "279131321", "note": [{"label": ["El retablo mayor de Cicero : historia y restauración / Julio J. Polo Sánchez, Rocio Espejo-Saavedra, 1996", "Blog : https://iglesiasdecantabria-blogspot-com.translate.goog/2009/05/cicero.html?_x_tr_sl=es&_x_tr_tl=fr&_x_tr_hl=fr&_x_tr_pto=sc (01-07-2024)"], "noteType": "dataSource"}, {"label": ["Eglise du milieu du XVIe siècle. Son retable principal est l'un des exemples les plus remarquables de Cantabrie. Daté de 1633, il a été assemblé par Rodrigo de los Corrales et possède des sculptures de Juan de Palacio"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279131321", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279131321", "source": "IDREF"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}, {"name": "Bâtiment", "type": "bf:ClassificationDdc", "classificationPortion": "690"}, {"name": "Architecture", "type": "bf:ClassificationDdc", "classificationPortion": "720"}, {"type": "bf:ClassificationDdc", "classificationPortion": "914"}], "variant_access_point": ["Église de San Pelayo de Cicero (Barcena de Cicero, Espagne)", "Iglesia de San Pelayo de Cicero (Barcena de Cicero, Espagne)"], "authorized_access_point": "Barcena de Cicero (Espagne) - Iglisia San Pelayo de Cicero"} 1 +2024-09-10 15:47:30.62818 2024-09-10 15:47:30.628184 e54f3e2e-f4ac-48cb-a864-549da98b9a34 {"md5": "3b3d675e5c1487c50b25acdcbc38dbd2", "pid": "279131356", "note": [{"label": ["http://www.geonames.org/, 2024-07-01"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Shelby"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279131356", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279131356", "source": "IDREF"}], "authorized_access_point": "Windsor (Ill.)"} 1 +2024-09-10 15:47:30.689683 2024-09-10 15:47:30.689687 9a271a8d-63be-469b-8aaf-c88526f10158 {"md5": "3ec702510fa45cb4812e29f3fbd44996", "pid": "27913150X", "note": [{"label": ["http://www.geonames.org/, 2024-07-01"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Shelby"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/27913150X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/27913150X", "source": "IDREF"}], "authorized_access_point": "Strasburg (Ill.)"} 1 +2024-09-10 15:47:30.750782 2024-09-10 15:47:30.750786 3f6a7e3e-5c0b-48db-b95b-4820f6b2523b {"md5": "b8fa23bd85e02dc9a3a6699a832a3a31", "pid": "279131593", "note": [{"label": ["http://www.geonames.org/, 2024-07-01"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Shelby"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279131593", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279131593", "source": "IDREF"}], "authorized_access_point": "Stewardson (Ill.)"} 1 +2024-09-10 15:47:30.823072 2024-09-10 15:47:30.823076 6fc020ef-78b8-45fc-8fa1-d967459996a6 {"md5": "9772882274157a874b5fa6feb18a070f", "pid": "279132409", "note": [{"label": ["http://www.geonames.org/, 2024-07-01"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Livingston"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279132409", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279132409", "source": "IDREF"}], "authorized_access_point": "Long Point (Ill.)"} 1 +2024-09-10 15:47:30.892843 2024-09-10 15:47:30.892846 1315b829-94da-439a-bbe4-b4d66d7cbfb9 {"md5": "ff6dad013bcc4872077c9386fba86a5d", "pid": "279132581", "note": [{"label": ["https://fr.wikipedia.org/wiki/Ayd%C4%B1n"], "noteType": "dataSource"}, {"label": ["ville de Turquie"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279132581", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279132581", "source": "IDREF"}], "variant_access_point": ["Tralles", "Aïdini"], "authorized_access_point": "Aydin"} 1 +2024-09-10 15:47:30.958822 2024-09-10 15:47:30.958827 4e39882a-9987-4672-9568-692a49ee6c7d {"md5": "2e5d16fce1338e386547eb5f7dfd3004", "pid": "279133782", "note": [{"label": ["https://fr.wikipedia.org/wiki/Roum%C3%A9lie"], "noteType": "dataSource"}, {"label": ["partie de la péninsule balkanique sous domination ottomane"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279133782", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279133782", "source": "IDREF"}], "variant_access_point": ["Rumeli", "Rumelia"], "authorized_access_point": "Roumélie"} 1 +2024-09-10 15:47:31.040389 2024-09-10 15:47:31.040393 cebd8160-7ea4-4197-911d-0c360efa8045 {"md5": "ca3e10e5e2bb95615909f70ca7392ea9", "pid": "27913438X", "note": [{"label": ["Jacona y Zamora : datos históricos, útiles y curiosos / Arturo Rodriguez Zetina, 1956", "Nuestra Señora de la Esperanza, 1997:", "GEOnet, Dec. 7, 1999"], "noteType": "dataSource"}, {"label": ["Ville de Jacona de Plancarte (Jacona), dans l'état de Michoacán"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/27913438X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/27913438X", "source": "IDREF"}, {"type": "uri", "value": "https://viaf.org/viaf/134019187", "source": "VIAF"}], "authorized_access_point": "Jacona de Plancarte (Mexico)"} 1 +2024-09-10 15:47:31.102217 2024-09-10 15:47:31.102221 7c699022-4713-4362-90a6-67d199660e88 {"md5": "ca478dec04f28509575741ba28ad4850", "pid": "27913469X", "note": [{"label": ["http://www.geonames.org/, 2024-07-01"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Lawrence"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/27913469X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/27913469X", "source": "IDREF"}], "authorized_access_point": "Sumner (Ill.)"} 1 +2024-09-10 15:47:31.17719 2024-09-10 15:47:31.177193 2ee161a5-e37e-4daa-8317-63a8b213303a {"md5": "5ee7bd8a2871cff66c245f5b18c4fcd2", "pid": "279135130", "note": [{"label": ["http://www.geonames.org/, 2024-07-01"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Kane"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279135130", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279135130", "source": "IDREF"}], "authorized_access_point": "Maple Park (Ill.)"} 1 +2024-09-10 15:47:31.444272 2024-09-10 15:47:31.444275 57dffb38-a440-4d24-85a8-8b42e6cd0656 {"md5": "01239b3c6f3b03cb972de9ff07ba16d0", "pid": "279136730", "note": [{"label": ["https://fr.wikipedia.org/wiki/Bursa"], "noteType": "dataSource"}, {"label": ["ville de Turquie"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279136730", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279136730", "source": "IDREF"}], "variant_access_point": ["Brousse", "Prousa", "Προῦσα", "Pruse"], "authorized_access_point": "Bursa"} 1 +2024-09-10 15:47:31.519538 2024-09-10 15:47:31.519542 222f9934-cb64-4a3d-928d-9062f20e56e0 {"md5": "6e0b7b87236a06bd2a2d02d1441399dc", "pid": "279136900", "note": [{"label": ["https://fr.wikipedia.org/wiki/Susurluk"], "noteType": "dataSource"}, {"label": ["Ville de Turquie"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279136900", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279136900", "source": "IDREF"}], "authorized_access_point": "Susurluk"} 1 +2024-09-10 15:47:31.616157 2024-09-10 15:47:31.616162 9a725f63-a87b-448c-b759-623e6d99a30b {"md5": "c2eec8028abd641fdf819c803e955068", "pid": "279146884", "note": [{"label": ["Konstanz / copied in 1951 from Central Europe, 1:250,000, GSGS, sheet L48, 1943 ; prepared by the Army map service (AMS), corps of engineers, U.S. army, Washington D.C. ; main communications revised from intelligence data, 1951, universal transverse Mercator grid added and marginal data revised by AMS ; printed by Army map service, corps of engineers, 10-1951, 1951"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279146884", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279146884", "source": "IDREF"}], "authorized_access_point": "Bade-Wurtemberg (Allemagne ; sud)"} 1 +2024-09-10 15:47:31.681284 2024-09-10 15:47:31.681288 e6eb1a35-d756-4ed3-8a6b-7bac9eb7a781 {"md5": "36f85182961b4d1bd345dc4570a45586", "pid": "279147546", "note": [{"label": ["http://www.geonames.org/, 2024-07-02"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Shelby"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279147546", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279147546", "source": "IDREF"}], "authorized_access_point": "Sigel (Ill.)"} 1 +2024-09-10 15:47:31.744345 2024-09-10 15:47:31.744349 3208929e-320f-4b76-a45e-e2643394e9c4 {"md5": "e0d4b0e002ca839f4fec19de5e1bc0ab", "pid": "279147708", "note": [{"label": ["http://www.geonames.org/, 2024-07-02"], "noteType": "dataSource"}, {"label": ["Situé dans le comté d'Effingham"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279147708", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279147708", "source": "IDREF"}], "authorized_access_point": "Teutopolis (Ill.)"} 1 +2024-09-10 15:47:31.826705 2024-09-10 15:47:31.826708 2f359a42-1a1c-45c2-8a73-195dc38193a6 {"md5": "d28710a21ad9a15b9b1960dc3715e021", "pid": "27914783X", "note": [{"label": ["http://www.geonames.org/, 2024-07-02"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Jasper"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/27914783X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/27914783X", "source": "IDREF"}], "authorized_access_point": "Wheeler (Ill.)"} 1 +2024-09-10 15:47:31.884367 2024-09-10 15:47:31.884372 a7eab61b-3828-46c9-84f3-6f1458f1cc10 {"md5": "33c800440874e2471747a8fc95adadda", "pid": "279148232", "note": [{"label": ["http://www.geonames.org/, 2024-07-02"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Scott"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279148232", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279148232", "source": "IDREF"}], "authorized_access_point": "Illmo (Mo.)"} 1 +2024-09-10 15:47:31.942782 2024-09-10 15:47:31.942785 a80c2f80-bd88-47f4-87ea-300caaf68d69 {"md5": "fb2550902fd40fd1bde57ea9d7f2ff84", "pid": "279148658", "note": [{"label": ["http://www.geonames.org/, 2024-07-02"], "noteType": "dataSource"}, {"label": ["Situé dans le comté d'Alexander"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279148658", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279148658", "source": "IDREF"}], "authorized_access_point": "Thebes (Ill.)"} 1 +2024-09-10 15:47:32.005252 2024-09-10 15:47:32.005255 afe286b2-4f0f-400f-ae39-9970b2117270 {"md5": "c4f185941c75b4949e7a0fc1ab6f5b12", "pid": "279148739", "note": [{"label": ["http://www.geonames.org/, 2024-07-02"], "noteType": "dataSource"}, {"label": ["Situé dans le comté d'Alexander"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279148739", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279148739", "source": "IDREF"}], "authorized_access_point": "Miller City (Ill.)"} 1 +2024-09-10 15:47:32.070152 2024-09-10 15:47:32.070155 d9779016-53b7-4934-ba97-659b7f7ca7ad {"md5": "7117e887358386c5ae78986fabee1efe", "pid": "279149492", "note": [{"label": ["Isso / Hergestellt im Auftrage Gen St d H Abt f Kr Kart u Verm Wes (II), 1941", "http://www.geonames.org, 2024-07-02"], "noteType": "dataSource"}, {"label": ["N 38°29′27″ W 1°44′34″"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Castille-La Manche (Espagne)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279149492", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279149492", "source": "IDREF"}], "authorized_access_point": "Isso (Espagne)"} 1 +2024-09-10 15:47:32.143118 2024-09-10 15:47:32.143122 aa57ee8c-ac44-4753-a09c-36f9cd2d0242 {"md5": "f94a1344b7e39eec0870b92607caead9", "pid": "279149522", "note": [{"label": ["Atlas geografico de la republica argentina / Instituto geográfico militar, 2001", "L'Atlas national geographic, 2007"], "noteType": "dataSource"}, {"label": ["LCSH, 2024-06-27"], "noteType": "dataNotFound"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279149522", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279149522", "source": "IDREF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "915"}], "authorized_access_point": "Tandil, Sierra del (Argentine)"} 1 +2024-09-10 15:47:32.330615 2024-09-10 15:47:32.33062 b01b3d71-7b42-48bf-a27e-6c89cc689198 {"md5": "40a8d41b29477a3d6af176bec60a9419", "pid": "279150911", "note": [{"label": ["http://www.geonames.org/, 2024-07-02"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Douglas et Platt"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279150911", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279150911", "source": "IDREF"}], "authorized_access_point": "Atwood (Ill.)"} 1 +2024-09-10 15:47:32.389102 2024-09-10 15:47:32.389105 7e6fce40-1e8b-4f64-bd67-e9876c291d39 {"md5": "8f0c1690a79f94d030483a9499e54053", "pid": "279150989", "note": [{"label": ["http://www.geonames.org/, 2024-07-02"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Douglas"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279150989", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279150989", "source": "IDREF"}], "authorized_access_point": "Tuscola (Ill.)"} 1 +2024-09-10 15:47:32.462789 2024-09-10 15:47:32.462793 5e7a15fa-8398-4548-9893-e8c4c2bd89c4 {"md5": "200c27f2be53981a2e26f54f2457d1f2", "pid": "279152426", "note": [{"label": ["Mapa geológico de España E. 1:50 000 351 / Instituto geológico y minero de España ; M. Martín Fernández, J.M. Esnaola Gómez, 1972, DL 1973.", "https://www.geonames.org/3115088/olvega.html, 2024-07-02"], "noteType": "dataSource"}, {"label": ["Vile, province de Soria"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279152426", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279152426", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/238431643", "source": "VIAF"}], "authorized_access_point": "Olvega (Espagne)"} 1 +2024-09-10 15:47:32.525159 2024-09-10 15:47:32.525166 e62592da-3a38-43a9-8aa9-bca048f30757 {"md5": "ffce17c0debf7487d0a1ff953850204b", "pid": "27915397X", "note": [{"label": ["http://www.geonames.org/, 2024-07-02"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Johnson"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/27915397X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/27915397X", "source": "IDREF"}], "authorized_access_point": "Vienna (Ill.)"} 1 +2024-09-10 15:47:32.586463 2024-09-10 15:47:32.586468 52b32090-4c48-4af6-8925-d07555db03b2 {"md5": "8558aea92d60b1b6f64d8746f0e01cb1", "pid": "279154097", "note": [{"label": ["http://www.geonames.org/, 2024-07-02"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Pulaski"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279154097", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279154097", "source": "IDREF"}], "authorized_access_point": "Karnak (Ill.)"} 1 +2024-09-10 15:47:32.659697 2024-09-10 15:47:32.659701 8e56facb-0e3e-4ca0-a740-57c9aa7b3198 {"md5": "90fa8f60ebd98723518d549b1690aee8", "pid": "279154437", "note": [{"label": ["http://www.geonames.org/, 2024-07-02"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Champaign"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279154437", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279154437", "source": "IDREF"}], "authorized_access_point": "Philo (Ill.)"} 1 +2024-09-10 15:47:32.723064 2024-09-10 15:47:32.723067 960ab6dd-1bea-4651-9370-f03d00c15c29 {"md5": "989e34655e484bd3522b17db285af646", "pid": "279154488", "note": [{"label": ["http://www.geonames.org/, 2024-07-02"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Douglas"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279154488", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279154488", "source": "IDREF"}], "authorized_access_point": "Villa Grove (Ill.)"} 1 +2024-09-10 15:47:32.801254 2024-09-10 15:47:32.801258 8a2f533e-7355-4c2b-85b0-bdda8a9fd98a {"md5": "18057d1859e68c613044140e09dec668", "pid": "279154542", "note": [{"label": ["http://calames.abes.fr/pub/ms/Calames-202405241694556323"], "noteType": "dataSource"}, {"label": ["ville de la province d'İzmir, rquie"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279154542", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279154542", "source": "IDREF"}], "variant_access_point": ["Kordelió"], "authorized_access_point": "Karşiaka"} 1 +2024-09-10 15:47:32.876019 2024-09-10 15:47:32.876022 c5c01059-f1d2-4104-868b-54f4be71104c {"md5": "3437e2496ac1ecfea6767fe20d159182", "pid": "279154593", "note": [{"label": ["https://en.wikipedia.org/wiki/Hugo,_Illinois/, 2024-07-02"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Douglas"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279154593", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279154593", "source": "IDREF"}], "authorized_access_point": "Hugo (Ill.)"} 1 +2024-09-10 15:47:33.001063 2024-09-10 15:47:33.001068 7f268899-e952-4838-bc9e-bd01692868b6 {"md5": "ccb3c584c67322b2364f2efba7069665", "pid": "279156766", "note": [{"label": ["Lower Eocene phosphatized Globigerina ooze from Sylvania Guyot / by Edwin L. Hamilton and Robert W. Rex, 1959."], "noteType": "dataSource"}, {"label": ["Guyot ou Tablemount, mont sous-marin volcanique"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279156766", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279156766", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/315167742", "source": "VIAF"}], "variant_access_point": ["Wōdejebato (iles Marshall)"], "authorized_access_point": "Sylvania Tablemount (iles Marshall)"} 1 +2024-09-10 15:47:33.064587 2024-09-10 15:47:33.064593 46ccef1d-779a-4dd7-9d54-2558610cd13d {"md5": "02a8319bf25fafff860481196645362f", "pid": "279158475", "note": [{"label": ["http://www.geonames.org/, 2024-07-02"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Cass"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279158475", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279158475", "source": "IDREF"}], "authorized_access_point": "Virginia (Ill.)"} 1 +2024-09-10 15:47:33.12586 2024-09-10 15:47:33.125864 1b27a32e-f840-4496-ba63-fd5ddb27efef {"md5": "edb754410ec97784914b7a2a472ceba1", "pid": "279158599", "note": [{"label": ["http://www.geonames.org/, 2024-07-02"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Morgan"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279158599", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279158599", "source": "IDREF"}], "authorized_access_point": "Portuguese Hill (Ill.)"} 1 +2024-09-10 15:47:33.18509 2024-09-10 15:47:33.185094 0b326778-2e55-4524-8aeb-3da7472a3c7a {"md5": "c56c9c5b0b867a69fa773296d063f0dd", "pid": "27915948X", "note": [{"label": ["http://www.geonames.org/, 2024-07-02"], "noteType": "dataSource"}, {"label": ["Situé dans le comté d'Effingham"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/27915948X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/27915948X", "source": "IDREF"}], "authorized_access_point": "Elliottstown (Ill.)"} 1 +2024-09-10 15:47:33.244275 2024-09-10 15:47:33.244278 7fefeee4-511e-4ffe-babf-b9ea45fb4bad {"md5": "79c3beb264cd6fc1d10482c096ec5606", "pid": "279166303", "note": [{"label": ["https://web.archive.org/web/20240127115300/https://www.slate.fr/story/221376/grecs-empire-ottoman-revolution-independance-guerre"], "noteType": "dataSource"}, {"label": ["village grec d'Asie Mineure face à l'île de Farmakonisi"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279166303", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279166303", "source": "IDREF"}], "authorized_access_point": "Gérontas"} 1 +2024-09-10 15:47:33.307368 2024-09-10 15:47:33.307371 36d03239-028f-44fb-8c17-e4bebe31649a {"md5": "6de7db978df3664cb09732ed86493b62", "pid": "279167334", "note": [{"label": ["https://fr.wikipedia.org/wiki/Kayak%C3%B6y"], "noteType": "dataSource"}, {"label": ["quartier du district de Fethiye dans la province de Muğla - Turquie"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279167334", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279167334", "source": "IDREF"}], "variant_access_point": ["Λιβίσσι", "Livissi"], "authorized_access_point": "Kayaköy"} 1 +2024-09-10 15:47:33.368426 2024-09-10 15:47:33.36843 8ec6625c-2e7e-4f8f-a039-fc18dbd363d2 {"md5": "4248ecc50dac11be42f1e281180af156", "pid": "27918669X", "note": [{"label": ["Venta de Cárdenas / Hergestellt im Auftrage Gen St d H Abt f Kr Kart u Verm Wes (II), 1941", "http://www.geonames.org, 2024-07-03"], "noteType": "dataSource"}, {"label": ["N 38°25′00″ W 3°29′49″"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Castille-La Manche (Espagne)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/27918669X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/27918669X", "source": "IDREF"}], "authorized_access_point": "Venta de Cárdenas (Espagne)"} 1 +2024-09-10 15:47:33.43784 2024-09-10 15:47:33.437843 10ba26d7-2e45-47df-8f6f-2cdde4a6f185 {"md5": "4dff642b1377be66d0a3e957ed887055", "pid": "279187610", "note": [{"label": ["From Wilderness to Paradise. A Sixth-Century Mosaic Pavement at Qasr el-Lebia in Cyrenaica, Libya / Jane Chick"], "noteType": "dataSource"}, {"label": ["Ville située à 66 km au nord-ouest de Bayda. Site archéologique remarquable pour ses mosaïques byzantines"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279187610", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279187610", "source": "IDREF"}], "variant_access_point": ["Qasr Libya", "Qasr Lebia"], "authorized_access_point": "Qasr al-Lebia (Lybie ; site archéologique)"} 1 +2024-09-10 15:47:33.500215 2024-09-10 15:47:33.50022 4286a303-28a3-4ad6-b578-936af1b5d62c {"md5": "6ef3acbf90c2880c1a13b8d6f6e453dd", "pid": "279188994", "note": [{"label": ["http://www.geonames.org/, 2024-07-03"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Lee"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279188994", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279188994", "source": "IDREF"}], "authorized_access_point": "Harmon (Ill.)"} 1 +2024-09-10 15:47:33.571229 2024-09-10 15:47:33.571232 efef42c8-a1bd-4d34-9a4c-1a571cf8e7b6 {"md5": "aff764d6ec8af84ef224bd07700ca64b", "pid": "279189087", "note": [{"label": ["http://www.geonames.org/, 2024-07-03"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Bureau"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279189087", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279189087", "source": "IDREF"}], "authorized_access_point": "Walnut (Ill.)"} 1 +2024-09-10 15:47:33.626273 2024-09-10 15:47:33.626276 c581c4f7-a508-4d53-87d1-bc35fd55bee4 {"md5": "68edd13ff89e9af0eaa16f197ec50a83", "pid": "279189249", "note": [{"label": ["http://www.geonames.org/, 2024-07-03"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Bureau"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279189249", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279189249", "source": "IDREF"}], "authorized_access_point": "New Bedford (Ill.)"} 1 +2024-09-10 15:47:33.68273 2024-09-10 15:47:33.682735 4fce5c81-43f5-4a52-9f3e-9abd2c555235 {"md5": "f7da4bd5b4f4ea76d4717f7c27bc6d94", "pid": "279192576", "note": [{"label": ["El exconvento y templo de San Pablo Huitzo, 1995:", "BGN gaz. of Mexico", "Historia del corregimiento de Guaxolotitlan (Huitzo) durante la colonia, siglos XVI al XIX, 2000:", "GEOnet, Mar. 1, 2004"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279192576", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279192576", "source": "IDREF"}, {"type": "uri", "value": "https://viaf.org/viaf/157285506", "source": "VIAF"}], "variant_access_point": ["Huitzo (Mexique)"], "authorized_access_point": "San Pablo Huitzo (Mexique)"} 1 +2024-09-10 15:47:33.740017 2024-09-10 15:47:33.740021 f245f212-2aeb-45b5-9b8b-ae43f9369e2c {"md5": "607b3d897515bd0e835ed5637587e79a", "pid": "27919269X", "note": [{"label": ["http://www.geonames.org/, 2024-07-02"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Sangamon"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/27919269X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/27919269X", "source": "IDREF"}], "authorized_access_point": "Curran (Ill.)"} 1 +2024-09-10 15:47:33.798815 2024-09-10 15:47:33.798819 54cbd903-3a43-499f-a684-3b3ffa4223ab {"md5": "a8fac4604fa20218fb3260d661188ff9", "pid": "279192800", "note": [{"label": ["http://www.geonames.org/, 2024-07-03"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Morgan"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279192800", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279192800", "source": "IDREF"}], "authorized_access_point": "Waverly (Ill.)"} 1 +2024-09-10 15:47:33.857216 2024-09-10 15:47:33.857219 ff41d0ad-88a4-4c4c-8e6d-276f3b48f11d {"md5": "92c2a26147788191436e4671b7a575a4", "pid": "27919305X", "note": [{"label": ["http://www.geonames.org/, 2024-07-03"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Jefferson"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/27919305X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/27919305X", "source": "IDREF"}], "authorized_access_point": "Bluford (Ill.)"} 1 +2024-09-10 15:47:33.91553 2024-09-10 15:47:33.915534 94d0d2f1-5ada-4ff5-bf9f-38af62d9a655 {"md5": "35df04de5fc8cbc620a79ec23953dc11", "pid": "279193092", "note": [{"label": ["http://www.geonames.org/, 2024-07-03"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Wayne"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279193092", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279193092", "source": "IDREF"}], "authorized_access_point": "Wayne City (Ill.)"} 1 +2024-09-10 15:47:33.974779 2024-09-10 15:47:33.974784 6943bfc9-17f1-4083-b700-9b8ce8b4f6ac {"md5": "4dcd63c1f0cf5dc37f98f601e5e8b0af", "pid": "279193181", "note": [{"label": ["http://www.geonames.org/, 2024-07-03"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Wayne"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279193181", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279193181", "source": "IDREF"}], "authorized_access_point": "Sims (Ill.)"} 1 +2024-09-10 15:47:34.034734 2024-09-10 15:47:34.034738 cd36a086-8ea3-49b9-87e0-c4a3f1a5cfdc {"md5": "c632b9b7d13fd873c445557afd0e1d40", "pid": "27919336X", "note": [{"label": ["https://fr.wikipedia.org/wiki/Johnston_City/, 2024-07-03"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Williamson"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/27919336X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/27919336X", "source": "IDREF"}], "authorized_access_point": "Johnson City (Ill.)"} 1 +2024-09-10 15:47:34.102445 2024-09-10 15:47:34.10245 adbb80c0-d141-4f6c-bdd1-fcc38eb5480b {"md5": "0b81a7d93bcb3dca04afc98eb6594310", "pid": "279193750", "note": [{"label": ["http://www.geonames.org/, 2024-07-03"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de DuPage"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279193750", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279193750", "source": "IDREF"}], "authorized_access_point": "Itasca (Ill.)"} 1 +2024-09-10 15:47:34.17041 2024-09-10 15:47:34.170416 8ac49544-a1e6-4872-be6f-9fa249b6316d {"md5": "cdd35bf4fb728de12548b448843d2b92", "pid": "279199929", "note": [{"label": ["GeoNames (2024-07-03)"], "noteType": "dataSource"}, {"label": ["Shabeellaha Dhexe est une région du sud est de la Somalie, avec façade orientale sur l'Océan Indien, limitrophe des provinces somalies de Galguduud au nord-est, de Hiiraan au nord, et de Shabeellaha Hoose et de Banaadir au sud-ouest.", "Coordonnées en degrés séxagésimaux : N 3°00′00″ / E 46°00′00″"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Somalie"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279199929", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279199929", "source": "IDREF"}], "variant_access_point": ["Middle Shebelle"], "authorized_access_point": "Shabeellaha Dhexe (Somalie ; région)"} 1 +2024-09-10 15:47:34.239229 2024-09-10 15:47:34.239233 1a21d768-ace3-452c-848c-5db12d5cbf1e {"md5": "88eaa12f0a0987e2998eb5ad78c4104d", "pid": "279200471", "note": [{"label": ["Beas de Segura / Hergestellt im Auftrage Gen St d H Abt f Kr Kart u Verm Wes (II), 1941", "http://www.geonames.org, 2024-07-03"], "noteType": "dataSource"}, {"label": ["N 38°15′09″ W 2°53′20″"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Andalousie (Espagne)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279200471", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279200471", "source": "IDREF"}], "authorized_access_point": "Beas de Segura (Espagne)"} 1 +2024-09-10 15:47:34.298364 2024-09-10 15:47:34.298368 f1c23449-addc-42e0-9e3f-e33a08a5b2e7 {"md5": "1d6414559170c7d5adb2073c05210111", "pid": "279207646", "note": [{"label": ["Rattachement du Dauphiné à la France, 1349-1949 : exposition organisée pour le VIe centenaire au Château de Versailles, 28 septembre-15 novembre 1949 / [catalogue rédigé par Mademoiselle Marguerite Jallut] ; [avant-propos de Maurichau-Beaupré], 1949"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279207646", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279207646", "source": "IDREF"}], "authorized_access_point": "Dauphiné (France) - 1349 (Annexion à la France)"} 1 +2024-09-10 15:47:35.62002 2024-09-10 15:47:35.620025 9c47a8a6-f83c-4520-8f59-56a31265ca76 {"md5": "fb00933b49c48d3b7c09fac50ab96291", "pid": "279236611", "note": [{"label": ["http://www.geonames.org/, 2024-07-05"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Hamilton"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279236611", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279236611", "source": "IDREF"}], "authorized_access_point": "Elizabethtown (Ohio)"} 1 +2024-09-10 15:47:34.358898 2024-09-10 15:47:34.358901 ed317c80-5e25-4359-a723-8f67598bdd5e {"md5": "9394142ae14379e7b4e0f05d0dac6907", "pid": "279209592", "note": [{"label": ["Wikipédia, https://zh.wikipedia.org/wiki/%E5%8F%A5%E5%AE%B9%E5%B8%82, 2024-07-04", "試辦句容縣人口農業總調查報告 : 民國二十三年 / 吳相湘 主編, 1971", "Shi ban Jurong xian ren kou nong ye zong diao cha bao gao : min guo er shi san nian / Wu Xiangxiang zhu bian, 1971"], "noteType": "dataSource"}, {"label": ["Ville-district de la province du Jiangsu"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Jiangsu Sheng (Chine ; province)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279209592", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279209592", "source": "IDREF"}], "variant_access_point": ["句容县", "句容縣", "Jurong Xian", "句容市", "Jurong Shi"], "authorized_access_point": "Jurong Shi (Chine)"} 1 +2024-09-10 15:47:34.419596 2024-09-10 15:47:34.419599 655cb9b0-ce33-4f57-8a7e-b11d0b0dbcd2 {"md5": "658a59b8e80bc980096dd365b8544843", "pid": "279209754", "note": [{"label": ["http://www.geonames.org/, 2024-07-04"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Will"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279209754", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279209754", "source": "IDREF"}], "authorized_access_point": "Wilmington (Ill.)"} 1 +2024-09-10 15:47:34.478606 2024-09-10 15:47:34.47861 944767f0-11b1-4f50-aa5a-aca20a8b49e5 {"md5": "f33a09f456d0269f742019f00ada6446", "pid": "279209886", "note": [{"label": ["http://www.geonames.org/, 2024-07-04"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Will"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279209886", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279209886", "source": "IDREF"}], "authorized_access_point": "Braidwood (Ill.)"} 1 +2024-09-10 15:47:34.536035 2024-09-10 15:47:34.536038 1f45b499-53ea-41b7-9e27-7e203ffa6644 {"md5": "e1027ccda160f07ee330a64807bf5c3c", "pid": "279210809", "note": [{"label": ["Yetas de Abajo / Hergestellt im Auftrage Gen St d H Abt f Kr Kart u Verm Wes (II), 1941", "http://www.geonames.org, 2024-07-04"], "noteType": "dataSource"}, {"label": ["N 38°14′07″ W 2°19′37″"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Castille-La Manche (Espagne)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279210809", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279210809", "source": "IDREF"}], "authorized_access_point": "Yetas de Abajo (Espagne)"} 1 +2024-09-10 15:47:34.600417 2024-09-10 15:47:34.600421 8991a76e-2d56-4250-9379-6af1d2d236bf {"md5": "8f85b59dc425916e660374bbb28c7109", "pid": "279211066", "note": [{"label": ["http://www.geonames.org/, 2024-07-04"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Scott"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279211066", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279211066", "source": "IDREF"}], "authorized_access_point": "Winchester (Ill.)"} 1 +2024-09-10 15:47:34.668777 2024-09-10 15:47:34.66878 11e056a9-442f-4d32-9319-8079dae892d8 {"md5": "3f57dde4c2ca55880fb04fb71c95200f", "pid": "279211147", "note": [{"label": ["http://www.geonames.org/, 2024-07-04"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Greene"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279211147", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279211147", "source": "IDREF"}], "authorized_access_point": "Barrow (Ill.)"} 1 +2024-09-10 15:47:34.724429 2024-09-10 15:47:34.724432 dda207ef-d6f1-4532-85cd-5cb793e5335a {"md5": "bb77e781b3461c0117846a49883543b5", "pid": "279214944", "note": [{"label": ["http://www.geonames.org/, 2024-07-04"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Knox"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279214944", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279214944", "source": "IDREF"}], "authorized_access_point": "Rio (Ill.)"} 1 +2024-09-10 15:47:34.780577 2024-09-10 15:47:34.780581 748416c4-cb34-4dc9-b7aa-f301cc910c5a {"md5": "23a0b54f8538d799309ff993cf4bcef0", "pid": "279214960", "note": [{"label": ["http://www.geonames.org/, 2024-07-04"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Knox"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279214960", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279214960", "source": "IDREF"}], "authorized_access_point": "Wataga (Ill.)"} 1 +2024-09-10 15:47:34.841811 2024-09-10 15:47:34.841814 5f1b2b11-dbb1-4fc1-97e4-9e20cc85ee04 {"md5": "64e75fd6da311718953505b290d3c161", "pid": "279215142", "note": [{"label": ["http://www.geonames.org/, 2024-07-04"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Clay"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279215142", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279215142", "source": "IDREF"}], "authorized_access_point": "Xenia (Ill.)"} 1 +2024-09-10 15:47:34.897647 2024-09-10 15:47:34.897651 f5f32c98-3751-4bff-8951-b3b33db03a9c {"md5": "9a02247b775029a4930ef0b8e30cf811", "pid": "279215258", "note": [{"label": ["http://www.geonames.org/, 2024-04-07"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Wayne"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279215258", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279215258", "source": "IDREF"}], "authorized_access_point": "Johnsonville (Ill.)"} 1 +2024-09-10 15:47:34.950432 2024-09-10 15:47:34.950437 cc543d71-79ec-4f68-ab1b-a1fae798a4d5 {"md5": "5582904fb702a051eb2d6c1b9e41ec05", "pid": "279215347", "note": [{"label": ["http://www.geonames.org/, 2024-07-04"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Wayne"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279215347", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279215347", "source": "IDREF"}], "authorized_access_point": "Orchardville (Ill.)"} 1 +2024-09-10 15:47:35.015587 2024-09-10 15:47:35.015591 0b17d6e7-2482-4758-a6c5-0845b0d627f9 {"md5": "00d0b51bb0e6d428ce20485aaeb5abaf", "pid": "279219717", "note": [{"label": ["http://www.geonames.org/, 2024-07-04"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Warrick"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279219717", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279219717", "source": "IDREF"}], "variant_access_point": ["Degonia Springs"], "authorized_access_point": "De Gonia Springs (Ind.)"} 1 +2024-09-10 15:47:35.082038 2024-09-10 15:47:35.082042 13f2f1b3-8143-4e50-84b4-f588607fb238 {"md5": "b77b47f0ae4b9069683f18e289495865", "pid": "279221487", "note": [{"label": ["Wikipédia, https://zh.wikipedia.org/wiki/%E9%AB%98%E9%9D%92%E5%8E%BF, 2024-07-04", "高青县志 / 高青县地方史志编纂委员会编, 1991", "Gaoqing xian zhi / Gaoqing xian di fang shi zhi bian zuan wei yuan hui bian, 1991"], "noteType": "dataSource"}, {"label": ["District de la province du shandong"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Shandong (Chine)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279221487", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279221487", "source": "IDREF"}], "variant_access_point": ["高青縣", "高青县", "Gaoqing Xian"], "authorized_access_point": "Gaoqing Xian (Chine)"} 1 +2024-09-10 15:47:35.156908 2024-09-10 15:47:35.156911 340d88ee-e0e6-4284-950d-68184c0072ad {"md5": "439f98e6a04077d2e4f8828786549c25", "pid": "279230087", "note": [{"label": ["L'antica chiesa di San Costanzo sul monte in Villar San Costanzo (Cuneo) / Eugenio Olivero, 1929"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279230087", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279230087", "source": "IDREF"}], "authorized_access_point": "Villar San Costanzo (Italie) - Chiesa di San Costanzo sul Monte"} 1 +2024-09-10 15:47:35.217164 2024-09-10 15:47:35.217168 33329bbf-a878-4799-b2da-a2b19a2cbca7 {"md5": "55f9a749176fa518b797765bd2868f8a", "pid": "279231547", "note": [{"label": ["http://www.geonames.org/, 2024-07-05", "https://en.wikipedia.org/wiki/Big_Blue_River_(Indiana), 2024-07-05"], "noteType": "dataSource"}, {"label": ["La Big Blue River est un affluent de la Driftwood River d'une longueur dans le centre-est de l'Indiana aux États-Unis. Par l'intermédiaire des rivières Driftwood, White, Wabash et Ohio, elle fait partie du bassin versant du fleuve Mississippi. La rivière prend sa source dans le nord-est du comté de Henry et s'écoule généralement vers le sud-ouest à travers les comtés de Rush, Hancock, Shelby et Johnson, en passant par les villes de New Castle, Knightstown, Carthage, Morristown, Shelbyville et Edinburgh"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279231547", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279231547", "source": "IDREF"}], "variant_access_point": ["Blue river"], "authorized_access_point": "Big Blue river (Ind.)"} 1 +2024-09-10 15:47:35.280173 2024-09-10 15:47:35.280177 eab9a61c-7d23-4b00-9ab0-33a3cfe8af88 {"md5": "b783594d699fa5cf1fad407ad80fd83c", "pid": "279231679", "note": [{"label": ["http://www.geonames.org/, 2024-07-05", "https://en.wikipedia.org/wiki/Driftwood_River/, 2024-07-05"], "noteType": "dataSource"}, {"label": ["La Driftwood River se forme dans le sud-est du comté de Johnson à l'ouest d'Edinburgh, au confluent de la Sugar Creek et de la Big Blue River. Elle s'écoule généralement vers le sud à travers le nord-ouest du comté de Bartholomew jusqu'à Columbus, où elle rejoint la rivière Flatrock pour former l'East Fork of the White River"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279231679", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279231679", "source": "IDREF"}], "authorized_access_point": "Driftwood river (Ind.)"} 1 +2024-09-10 15:47:35.338529 2024-09-10 15:47:35.338531 f041f808-4767-490a-beb8-a0ac2896f992 {"md5": "f16c91710875c8c0c5e2548b92b65999", "pid": "279233493", "note": [{"label": ["http://www.geonames.org/, 2024-07-05"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Clark"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279233493", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279233493", "source": "IDREF"}], "authorized_access_point": "West Union (Ill.)"} 1 +2024-09-10 15:47:35.401503 2024-09-10 15:47:35.401506 ec999d59-a36b-421e-8127-01d58d652a6b {"md5": "34d0fb64d8d21e1927be8fa559ee5dc3", "pid": "279233639", "note": [{"label": ["http://www.geonames.org/, 2024-04-05"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Crawford"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279233639", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279233639", "source": "IDREF"}], "authorized_access_point": "Hutsonville (Ill.)"} 1 +2024-09-10 15:47:35.458566 2024-09-10 15:47:35.458571 42d4ba24-c6bd-496e-8726-f7c4ab208b76 {"md5": "db9b9a44821db7c8b92677d9d8a5d529", "pid": "279233752", "note": [{"label": ["http://www.geonames.org/, 2024-07-05"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Crawford"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279233752", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279233752", "source": "IDREF"}], "authorized_access_point": "Robinson (Ill.)"} 1 +2024-09-10 15:47:35.558363 2024-09-10 15:47:35.558366 1b5970dd-03dc-4fcc-9adf-e19fd82a703a {"md5": "72c37ebbe9e4af60504a12988caec574", "pid": "279236417", "note": [{"label": ["http://www.geonames.org/, 2024-07-05", "https://en.wikipedia.org/wiki/Whitewater_River_(Great_Miami_River_tributary)/, 2024-07-05"], "noteType": "dataSource"}, {"label": ["La rivière Whitewater est un affluent droit de la rivière Great Miami, qui coule vers le sud, dans le sud-est de l'Indiana et le sud-ouest de l'Ohio, aux États-Unis"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279236417", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279236417", "source": "IDREF"}], "authorized_access_point": "Whitewater river (Ohio ; cours d'eau )"} 1 +2024-09-10 15:47:35.697399 2024-09-10 15:47:35.697402 5a556a31-0a65-4378-b2be-700de41a922e {"md5": "6cdda810a8b8f83a40372d411e4dfc2c", "pid": "279236697", "note": [{"label": ["http://www.geonames.org/, 2024-07-05"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Boone"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279236697", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279236697", "source": "IDREF"}], "authorized_access_point": "Petersburg (Ky.)"} 1 +2024-09-10 15:47:35.758622 2024-09-10 15:47:35.758626 bb7a702e-11e7-41f4-9be4-d9375205ec1d {"md5": "0c109951ac5a8f4b984fe0a156d7aa56", "pid": "279238037", "note": [{"label": ["http://www.geonames.org/, 2024-07-04"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Gibson"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279238037", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279238037", "source": "IDREF"}], "authorized_access_point": "Somerville (Ind.)"} 1 +2024-09-10 15:47:35.82181 2024-09-10 15:47:35.821814 056e22c0-aed3-4440-a94f-bea4704e2465 {"md5": "29e51d5fcb1d14e8e9f36cc7bd0f4bd1", "pid": "279245947", "note": [{"label": ["Wikipédia, https://zh.wikipedia.org/wiki/%E5%B7%B4%E5%8D%97%E5%8C%BA, 2024-07-08", "清代下层女性研究 : 以南部县、巴县档案为中心 / 毛立平著, 2023", "Qing dai xia ceng nü xing yan jiu : yi Nanbu Xian, Ba Xian dang an wei zhong xin / Mao Liping zhu, 2023"], "noteType": "dataSource"}, {"label": ["Quartier de Chongqing depuis 1994, autrefois district Ba"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Chongqing (Chine)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279245947", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279245947", "source": "IDREF"}], "variant_access_point": ["巴南区", "巴县", "巴南區", "Banan Qu", "巴縣", "Ba Xian"], "authorized_access_point": "Banan Qu (Chongqing, Chine)"} 1 +2024-09-10 15:47:35.883177 2024-09-10 15:47:35.883181 2f9b60cf-ad0b-44c4-a9c9-5be18c702170 {"md5": "0746afc2e4decc87bbadf2a109e1b163", "pid": "279246358", "note": [{"label": ["Wikipédia, https://zh.wikipedia.org/wiki/%E5%8D%97%E9%83%A8%E5%8E%BF, 2024-07-08", "清代下层女性研究 : 以南部县、巴县档案为中心 / 毛立平著, 2023", "Qing dai xia ceng nü xing yan jiu : yi Nanbu Xian, Ba Xian dang an wei zhong xin / Mao Liping zhu, 2023"], "noteType": "dataSource"}, {"label": ["District de la province du Sichuan appartenant à la préfecture de Nanchong Shi"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Sichuan (Chine)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279246358", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279246358", "source": "IDREF"}], "variant_access_point": ["南部縣", "南部县", "Nanbu Xian"], "authorized_access_point": "Nanbu Xian (Chine)"} 1 +2024-09-10 15:47:35.946183 2024-09-10 15:47:35.946187 1c2abcdb-b3ee-4871-b0da-21a5cad8c1a9 {"md5": "efb5b35fd1e10af7e7bd26ba33bba24c", "pid": "279247060", "note": [{"label": ["http://www.geonames.org/, 2024-07-08"], "noteType": "dataSource"}, {"label": ["La White River est une rivière au double cours irriguant le centre et le sud de l'Indiana, affluent de la Wabash River, donc un sous-affluent du fleuve le Mississippi, par l'Ohio"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279247060", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279247060", "source": "IDREF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/White_River_(Indiana)", "source": "WIKIPEDIA"}], "authorized_access_point": "White river (Ind. ; cours d'eau)"} 1 +2024-09-10 15:47:36.007913 2024-09-10 15:47:36.007919 b125054e-f9e7-4ced-be28-d5b6eabd7451 {"md5": "d8a01269d09da2a4e815fa1b33c1239b", "pid": "279247087", "note": [{"label": ["Regards de peintres en Cotentin : XIXe-XXe siècles : [exposition], Château de Saint-Pierre-Eglise, 24 juillet-15 août 1993 / [organisé par le festival du Cotentin ; catalogue par Monique Barbier, Brigitte Scart, Jean Fouace], 1993"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279247087", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279247087", "source": "IDREF"}], "classification": [{"name": "Architecture", "type": "bf:ClassificationDdc", "classificationPortion": "720"}], "authorized_access_point": "Saint-Pierre-Église (Manche) - château"} 1 +2024-09-10 15:47:36.068246 2024-09-10 15:47:36.068249 70061883-e1b6-48fa-af8c-cfe7062e3172 {"md5": "18e074a9edc62f55dc5e213f7f78f1a8", "pid": "279247184", "note": [{"label": ["https://en.wikipedia.org/wiki/Patoka_River/, 2024-07-08"], "noteType": "dataSource"}, {"label": ["La rivière Patoka est un affluent de la rivière Wabash dans le sud-ouest de l'Indiana aux États-Unis"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279247184", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279247184", "source": "IDREF"}], "authorized_access_point": "Patoka river (Ind. ; cours d'eau)"} 1 +2024-09-10 15:47:36.129998 2024-09-10 15:47:36.130003 531244e7-9edd-4fa9-96a9-7d0c8397c67c {"md5": "4fbcd32a231f7ec8da3524a35114baa6", "pid": "279248180", "note": [{"label": ["http://www.geonames.org/, 2024-07-08"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Lake"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279248180", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279248180", "source": "IDREF"}], "authorized_access_point": "Whiting (Ind.)"} 1 +2024-09-10 15:47:36.198205 2024-09-10 15:47:36.19821 fd83a4e3-0452-45e2-a8b7-f3c21561b336 {"md5": "c86ae70681a9090638eb93d37113bcd8", "pid": "279248288", "note": [{"label": ["http://www.geonames.org/, 2024-07-08"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Lake"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279248288", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279248288", "source": "IDREF"}], "authorized_access_point": "East Chicago (Ind.)"} 1 +2024-09-10 15:47:36.270568 2024-09-10 15:47:36.270571 a21041c8-685d-47c7-bdcc-e8ebf1bfe895 {"md5": "6c443c983d42172ecb4c2442da149efc", "pid": "279248482", "note": [{"label": ["http://www.geonames.org/, 2024-07-08"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Lake"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279248482", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279248482", "source": "IDREF"}], "authorized_access_point": "Grand Calumet river (Ind. ; cours d'eau)"} 1 +2024-09-10 15:47:36.341942 2024-09-10 15:47:36.341945 b3d0631f-bd46-4997-af19-535cbe403411 {"md5": "b6224f16d2a1f4833f6c623a29261dce", "pid": "279248598", "note": [{"label": ["http://www.geonames.org/, 2024-07-08"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Lake"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279248598", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279248598", "source": "IDREF"}], "authorized_access_point": "Toleston (Ind.)"} 1 +2024-09-10 15:47:36.402213 2024-09-10 15:47:36.402217 bd647a8a-3b47-4629-9076-a5462551e967 {"md5": "a9eeac8d6f6340b6f78a057f50b7fc65", "pid": "279248792", "note": [{"label": ["http://www.geonames.org/, 2024-07-08"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Lake"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279248792", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279248792", "source": "IDREF"}], "authorized_access_point": "Griffith (Ind.)"} 1 +2024-09-10 15:47:36.465841 2024-09-10 15:47:36.465846 a58ea4fe-786c-4918-aa08-582e86764fd6 {"md5": "730ca52cca82f4c1569a86be3c6d5eb0", "pid": "279249535", "note": [{"label": ["http://www.geonames.org/, 2024-07-08"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Lawrence"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279249535", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279249535", "source": "IDREF"}], "authorized_access_point": "Lawrenceville (Ill.)"} 1 +2024-09-10 15:47:36.541939 2024-09-10 15:47:36.541941 c7257187-d328-4c78-9797-96ee442c663f {"md5": "3d92367c38166d2da05acbd352b6b541", "pid": "279250002", "note": [{"label": ["http://www.geonames.org/, 2024-07-08"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Dubois"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279250002", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279250002", "source": "IDREF"}], "authorized_access_point": "Ireland (Ind.)"} 1 +2024-09-10 15:47:36.602159 2024-09-10 15:47:36.602163 b719c7ca-433c-4548-8807-795397f70da2 {"md5": "e5a8ff1575735e8264f32a4f6298a265", "pid": "279250142", "note": [{"label": ["http://www.geonames.org/, 2024-07-08"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Pike"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279250142", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279250142", "source": "IDREF"}], "authorized_access_point": "Pikeville (Ind.)"} 1 +2024-09-10 15:47:36.667348 2024-09-10 15:47:36.667353 d5670410-450f-425a-9b60-0e60f33d5fa2 {"md5": "5646dbc7dd673c79206c288f06834fac", "pid": "279253001", "note": [{"label": ["Dict. communes, 2001"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279253001", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279253001", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb17851893t", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "912"}], "authorized_access_point": "Fontgombault (Indre)"} 1 +2024-09-10 15:47:36.738951 2024-09-10 15:47:36.738954 54afcf56-e56e-4e7e-b944-2ec3ee3fe87b {"md5": "0f02cd2d8da5c0b9858778044d88db93", "pid": "279255381", "note": [{"label": ["http://www.geonames.org/, 2024-07-08"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Rawlins"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279255381", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279255381", "source": "IDREF"}], "authorized_access_point": "Little Beaver creek (Kan. ; cours d'eau)"} 1 +2024-09-10 15:47:36.796045 2024-09-10 15:47:36.79605 76dc1d38-b54e-4ff3-bd4b-b2ce16ba2174 {"md5": "9a344c2a64420c8c78cb744765409650", "pid": "279255519", "note": [{"label": ["http://www.geonames.org/, 2024-07-08"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Rawlins"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279255519", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279255519", "source": "IDREF"}], "authorized_access_point": "Atwood lake (Kan. ; lac)"} 1 +2024-09-10 15:47:36.863406 2024-09-10 15:47:36.863411 f969357a-b616-46b9-8878-32316859b743 {"md5": "0797f338bc411614c6f62f5b156b17b2", "pid": "279256337", "note": [{"label": ["https://en.wikipedia.org/wiki/South_Fork_Republican_River/, 2024-07-08"], "noteType": "dataSource"}, {"label": ["La South Fork Republican est une rivière qui prend sa source dans le comté de Lincoln, Colorado, États-Unis, et s'écoule vers l'est-nord-est à travers les comtés de Kit Carson et de Yuma, Colorado, et le comté de Cheyenne, Kansas, jusqu'à un confluent avec la Republican River dans le comté de Dundy, Nebraska"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279256337", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279256337", "source": "IDREF"}], "authorized_access_point": "South Fork Republican river (Etats-Unis. ; cours d'eau)"} 1 +2024-09-10 15:47:36.927911 2024-09-10 15:47:36.927916 453155a9-3f62-43f9-b4bb-fc95d0c15033 {"md5": "edc017af42d99dc15bfafd36c6c4aa12", "pid": "279256434", "note": [{"label": ["http://www.geonames.org/, 2024-07-08"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Cheyenne"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279256434", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279256434", "source": "IDREF"}], "authorized_access_point": "Cole Pond (Kan. ; lac)"} 1 +2024-09-10 15:47:37.002039 2024-09-10 15:47:37.002043 6f60939f-5fa9-49f3-9a1b-7e228a0a44a1 {"md5": "c2d01d03371172286ec7971eded6eef8", "pid": "279256574", "note": [{"label": ["http://www.geonames.org/, 2024-07-08"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Cheyenne"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279256574", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279256574", "source": "IDREF"}], "authorized_access_point": "Bird City (Kan.)"} 1 +2024-09-10 15:47:37.086814 2024-09-10 15:47:37.086819 ada779a6-61a8-46b4-8274-71fd3d973080 {"md5": "1fa66c261d04f7b807c5cb145f300848", "pid": "279256647", "note": [{"label": ["http://www.geonames.org/, 2024-07-08"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Wheeler"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279256647", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279256647", "source": "IDREF"}], "authorized_access_point": "Wheeler (Kan.)"} 1 +2024-09-10 15:47:37.152165 2024-09-10 15:47:37.152169 c247e8dd-14c7-4e2c-a2a0-36c00acd078f {"md5": "fb60b7760940af2532fac936ad918abc", "pid": "279257120", "note": [{"label": ["https://en.wikipedia.org/wiki/Beaver_Creek_(Sappa_Creek_tributary)/, 2024-07-08"], "noteType": "dataSource"}, {"label": ["Beaver Creek est une rivière située dans les États du Kansas et du Nebraska. Elle prend naissance au nord-nord-est de Goodland (Kansas) et se jette dans Sappa Creek à l'ouest d'Orleans (Nebraska)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279257120", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279257120", "source": "IDREF"}], "authorized_access_point": "Beaver creek (Kan., Neb. ; cours d'eau)"} 1 +2024-09-10 15:47:37.223779 2024-09-10 15:47:37.223782 8465e65a-26bf-442f-be00-8022a7eaf613 {"md5": "a4dda7ff2c308d12167b8338d8ca47c3", "pid": "279263864", "note": [{"label": ["Nava Rodríguez, L. Hist. de Huamantla, 1974.", "Lippincott", "BGN gaz., Mexico, 1992"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279263864", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279263864", "source": "IDREF"}, {"type": "uri", "value": "https://viaf.org/viaf/127845608", "source": "VIAF"}], "authorized_access_point": "Huamantla (Mexico)"} 1 +2024-09-10 15:47:37.29228 2024-09-10 15:47:37.292283 9905f9d2-2388-4e41-96bf-411fc7010737 {"md5": "a2e6ab1f3354fcc81d7602edfd21608b", "pid": "279264410", "note": [{"label": ["Das frühmittelalterliche Gräberfeld bei Weingarten (Kr. Ravensburg) / Helmut Roth, Claudia Theune, 1995"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279264410", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279264410", "source": "IDREF"}], "authorized_access_point": "Ravensburg (Allemagne ; région)"} 1 +2024-09-10 15:47:37.353274 2024-09-10 15:47:37.353279 fad0c743-d710-4ad2-ab4b-29acf7283d0a {"md5": "528839d3d91fef42cca015cb8c6f240d", "pid": "279288743", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279288743", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279288743", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16247820p", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/315529013", "source": "VIAF"}], "variant_access_point": ["Pic d'Adam", "Adam's Peak (Sri Lanka)", "Sri Pada", "Samanala", "Sivanolipatha Malai", "Al-Rohun"], "authorized_access_point": "Adam, Pic d' (Sri Lanka)"} 1 +2024-09-10 15:47:37.409639 2024-09-10 15:47:37.409642 380fcdd6-2f36-416a-b646-44840c759f7b {"md5": "f856c03c4c5a57f1e03f304476bbc314", "pid": "279307500", "note": [{"label": ["Wikipédia - https://fr.wikipedia.org/wiki/Rue_de_Madagascar (2024-06-26)"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Paris (France) - Arrondissement (12e)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279307500", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307500", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18154746p", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "912"}], "variant_access_point": ["Madagascar, Rue de (Paris, France)", "Rue de Madagascar (Paris, France)"], "authorized_access_point": "Paris (France) - Rue de Madagascar"} 1 +2024-09-10 15:47:37.470402 2024-09-10 15:47:37.470406 78a32811-3e28-490e-8689-3438dbca7f19 {"md5": "6b1a294f759b6e7a008af043c81b0124", "pid": "279307772", "note": [{"label": ["Wikipedia : Liste d'amphithéâtres romains en Italie - http://it.wikipedia.org (2024-07-02)"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279307772", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307772", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181557040", "source": "BNF"}], "classification": [{"name": "Architecture", "type": "bf:ClassificationDdc", "classificationPortion": "720"}, {"type": "bf:ClassificationDdc", "classificationPortion": "914"}, {"name": "Préhistoire et histoire ancienne", "type": "bf:ClassificationDdc", "classificationPortion": "930"}], "variant_access_point": ["Amphithéâtre romain (Cuma, Italie)"], "authorized_access_point": "Cuma (Italie) - Anfiteatro romano"} 1 +2024-09-10 15:47:37.527949 2024-09-10 15:47:37.527953 5b27a28b-f084-4d72-b499-d46e54ef5245 {"md5": "8fa622e6f9ed5f10e429584319a82ffe", "pid": "279307829", "note": [{"label": ["Kloster und Festung - Beiträge zur Geschichte des Erfurter Petersbergs : Vorträge anlässlich der Bundesgartenschau 2021 in Erfurt / Stiftung Thüringer Schlösser und Garten, 2022"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279307829", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307829", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18155980n", "source": "BNF"}], "classification": [{"name": "Histoire médiévale, moderne et contemporaine (sauf la France)", "type": "bf:ClassificationDdc", "classificationPortion": "940"}], "variant_access_point": ["Festung Petersberg (Petersberg, Allemagne)", "Festung Petersberg (Erfurt, Allemagne)"], "authorized_access_point": "Petersberg (Allemagne) - Festung"} 1 +2024-09-10 15:47:37.587764 2024-09-10 15:47:37.587768 3af337c0-b752-40c5-8493-ae4602224186 {"md5": "99fe622c839846e16ca2c1be56eb3587", "pid": "279307845", "note": [{"label": ["Wikipédia - https://fr.wikipedia.org/wiki/Les_Planches_(Deauville) (2024-07-04)", "Les Planches, Deauville : 100 ans d'histoires / P. Normand, 2024"], "noteType": "dataSource"}, {"label": ["Promenade longeant la plage de Deauville sur toute sa longueur"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279307845", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307845", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18156072s", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "912"}], "variant_access_point": ["Planches, Les (Deauville, Calvados, France)", "Promenade des Planches (Deauville, Calvados, France)"], "authorized_access_point": "Deauville (Calvados, France) - Les Planches"} 1 +2024-09-10 15:47:37.656264 2024-09-10 15:47:37.656267 2abc5d88-f498-4201-89a0-50071aaa1144 {"md5": "f54076c75f2bacc7af72144e610691c3", "pid": "279311044", "note": [{"label": ["http://www.geonames.org/, 2024-07-10"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Platte"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279311044", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279311044", "source": "IDREF"}], "authorized_access_point": "Iatan (Mo.)"} 1 +2024-09-10 15:47:37.710337 2024-09-10 15:47:37.710341 8084551e-8b16-478e-bdfb-81b192b6d737 {"md5": "b7c0cc685ad052526dfa228c77ac5018", "pid": "279311443", "note": [{"label": ["http://www.geonames.org/, 2024-07-10"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Johnson"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279311443", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279311443", "source": "IDREF"}], "authorized_access_point": "Merriam (Kan.)"} 1 +2024-09-10 15:47:37.775474 2024-09-10 15:47:37.775478 381f884b-058e-453f-a098-18996332ba4f {"md5": "8fdff2b77e37470f42bdb73540f7cca2", "pid": "279312415", "note": [{"label": ["Une Jérusalem céleste à Bruges : le Domaine Adornes et la chapelle de Jérusalem / Jan Dumolyn et Noël Geirnaert (éd.), 2024"], "noteType": "dataSource"}, {"label": ["Domaine familial privé remontant au 15e siècle et comprenant essentiellement la chapelle de Jérusalem, des maisons-dieu et un hôtel particulier bordé d’un vaste jardin"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279312415", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279312415", "source": "IDREF"}], "variant_access_point": ["Bruges (Belgique) - Domaine Adornes", "Bruges (Belgique) - Domaine des Adornes"], "authorized_access_point": "Bruges (Belgique) - Adornesdomein"} 1 +2024-09-10 15:47:37.837355 2024-09-10 15:47:37.837358 713e1d5c-85de-4ad4-9074-fd6cfdc81d0a {"md5": "a82c1161416149e2fb2f20ad4010ac64", "pid": "279313543", "note": [{"label": ["http://www.geonames.org/, 2024-07-10"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Riley"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279313543", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279313543", "source": "IDREF"}], "authorized_access_point": "Ogden (Kan.)"} 1 +2024-09-10 15:47:37.892845 2024-09-10 15:47:37.892849 34bdbf7a-a32f-414b-a9d5-84987ae544fc {"md5": "9189b993e784b58e5f9db9f096604479", "pid": "279313853", "note": [{"label": ["Die Urkunden des Pfarrarchivs von St. Ignaz in Mainz : Regesten / von Elisabeth Darapsky und Richard Dertsch, 1974"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279313853", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279313853", "source": "IDREF"}], "variant_access_point": ["St. Ignaz zu Mainz", "Sankt Ignaz zu Mainz"], "authorized_access_point": "Mayence (Allemagne) - Pfarrkirche St. Ignaz"} 1 +2024-09-10 15:47:37.951639 2024-09-10 15:47:37.951644 3b06d7ac-ed46-400c-b94a-b04a65b0dbaa {"md5": "a18be70be16e88589974a7d5bafdd681", "pid": "279314833", "note": [{"label": ["http://www.geonames.org/, 2024-07-10"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Rawlins"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279314833", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279314833", "source": "IDREF"}], "variant_access_point": ["Mc Donald"], "authorized_access_point": "McDonald (Kan.)"} 1 +2024-09-10 15:47:38.010602 2024-09-10 15:47:38.010604 051ff428-3f7c-4d83-8af3-feae5724ba1e {"md5": "710cc64b0004469d87217e1cd1dad12c", "pid": "279315287", "note": [{"label": ["http://www.geonames.org/, 2024-07-10"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Wichita"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279315287", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279315287", "source": "IDREF"}], "authorized_access_point": "Marienthal (Kan.)"} 1 +2024-09-10 15:47:38.064933 2024-09-10 15:47:38.064938 f2e6b126-98fe-4bfc-9823-7af8e9a7130d {"md5": "7f855a58c2f2788e553e3defd90a77ff", "pid": "279315368", "note": [{"label": ["http://www.geonames.org/, 2024-07-10"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Scott"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279315368", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279315368", "source": "IDREF"}], "authorized_access_point": "Whitewoman creek (Kan.)"} 1 +2024-09-10 15:47:38.119306 2024-09-10 15:47:38.119309 3176a14c-453d-4f74-a192-8269fe14b731 {"md5": "7b4509563382710908486825c7286bbc", "pid": "279315597", "note": [{"label": ["http://www.geonames.org/, 2024-07-10"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Labette"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279315597", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279315597", "source": "IDREF"}], "authorized_access_point": "Mound Valley (Kan.)"} 1 +2024-09-10 15:47:38.181005 2024-09-10 15:47:38.181009 b99cea9b-2616-416e-b96c-d224610a07db {"md5": "fd8e229f7caf9ed19eff8a62aa48ee70", "pid": "279315678", "note": [{"label": ["http://www.geonames.org/, 2024-07-10"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Labette"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279315678", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279315678", "source": "IDREF"}], "authorized_access_point": "Altamont (Kan.)"} 1 +2024-09-10 15:47:38.237667 2024-09-10 15:47:38.23767 2f0e692b-1357-4db5-977f-d7429ed61b4b {"md5": "211139b1b9cc43081708434d2735552c", "pid": "279315759", "note": [{"label": ["http://www.geonames.org/, 2024-07-10"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Labette"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279315759", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279315759", "source": "IDREF"}], "authorized_access_point": "Edna (Kan.)"} 1 +2024-09-10 15:47:38.300075 2024-09-10 15:47:38.30008 c4d8f6af-ddaa-48fc-bf42-25b923f21869 {"md5": "ccbb9ff265fff02e33360e8ae3df958c", "pid": "279316232", "note": [{"label": ["http://www.geonames.org/, 2024-07-10"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Dacartur"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279316232", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279316232", "source": "IDREF"}], "authorized_access_point": "Norcatur (Kan.)"} 1 +2024-09-10 15:47:38.358957 2024-09-10 15:47:38.358961 270b6eac-9d1b-4982-ac23-27da0332a7ac {"md5": "5eadfd5c1730143ff153ae093a1be1e6", "pid": "279316291", "note": [{"label": ["http://www.geonames.org/, 2024-07-10"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Norton"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279316291", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279316291", "source": "IDREF"}], "authorized_access_point": "Dellvale (Kan.)"} 1 +2024-09-10 15:47:38.41785 2024-09-10 15:47:38.417855 a92fe2ab-74cf-4636-868b-e86bd5835bac {"md5": "8ea7a749749a4ff7826083693adcfb8a", "pid": "279333013", "note": [{"label": ["Coordonnées géographiques : E 1°7'13\\" / N 49°40'30\\"", "Coordonnées Lambert : 05120 25204 +5121 12201 -1351 55194", "Feuille IGN 1:50 000 : 2010. Feuille IGN 1:25 000 : W", "Code INSEE : 76656"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279333013", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279333013", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb152752410", "source": "BNF"}], "authorized_access_point": "Saint-Victor-l'Abbaye (Seine-Maritime, France)"} 1 +2024-09-10 15:47:38.477085 2024-09-10 15:47:38.477088 9e2f4eac-ef6f-4460-9e2d-bcb9983e836a {"md5": "521f2209e21d4bf79e75c86c7c7b46e1", "pid": "279334699", "note": [{"label": ["http://www.geonames.org/, 2024-07-11"], "noteType": "dataSource"}, {"label": ["Prairie Dog Creek est un cours d'eau situé dans le centre des Grandes Plaines d'Amérique du Nord. Affluent de la rivière Republican, il s'écoule sur 396 km à travers les États américains du Kansas et du Nebraska"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279334699", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279334699", "source": "IDREF"}], "authorized_access_point": "Prairie Dog creek (Kan. ; cours d'eau)"} 1 +2024-09-10 15:47:38.54242 2024-09-10 15:47:38.542424 fd1ef473-52e1-4ab3-98ed-57a3551c7a1e {"md5": "4dca7f9d838edcaef0867c73bc4e11d0", "pid": "279334982", "note": [{"label": ["http://www.geonames.org/, 2024-07-11"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Decatur"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279334982", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279334982", "source": "IDREF"}], "authorized_access_point": "Traer (Kan.)"} 1 +2024-09-10 15:47:38.603753 2024-09-10 15:47:38.603756 e9ac6177-e4dc-4938-b5ac-8f228ea32671 {"md5": "019706f4adf22994655f8897db6714c4", "pid": "279335156", "note": [{"label": ["http://www.geonames.org/, 2024-07-11"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Decartur"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279335156", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279335156", "source": "IDREF"}], "authorized_access_point": "Cedar Bluffs (Kan.)"} 1 +2024-09-10 15:47:38.668279 2024-09-10 15:47:38.668287 e3898315-4c5c-4efe-9186-b7ec63cce70e {"md5": "307343fc3b50bfe44c757250b1b6b4e9", "pid": "279335512", "note": [{"label": ["http://www.geonames.org/, 2024-07-11"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Labette"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279335512", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279335512", "source": "IDREF"}], "authorized_access_point": "Labette (Kan.)"} 1 +2024-09-10 15:47:38.73243 2024-09-10 15:47:38.732434 e2ccd2a4-eb5b-4562-9055-83681b2b31ac {"md5": "029bf6f6515b85e85fa4b03aec1e87b8", "pid": "27933558X", "note": [{"label": ["http://www.geonames.org/, 2024-07-11"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Labette"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/27933558X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/27933558X", "source": "IDREF"}], "authorized_access_point": "Oswego (Kan.)"} 1 +2024-09-10 15:47:38.805038 2024-09-10 15:47:38.805042 399b3166-67d8-49b1-9e32-71810f43962b {"md5": "66dba25833d064403fef66634f484953", "pid": "279347642", "note": [{"label": ["http://www.geonames.org/, 2024-07-11"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Neosho"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279347642", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279347642", "source": "IDREF"}], "authorized_access_point": "Thayer (Kan.)"} 1 +2024-09-10 15:47:38.868491 2024-09-10 15:47:38.868494 cb8db430-72c9-4acb-bc67-ed1a92924ef6 {"md5": "ba89673fa8ec80275bf40fe2f0ca7f58", "pid": "279348304", "note": [{"label": ["http://www.geonames.org/, 2024-07-11"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Barton"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279348304", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279348304", "source": "IDREF"}], "authorized_access_point": "Mindenmines (Mo.)"} 1 +2024-09-10 15:47:38.931029 2024-09-10 15:47:38.931033 34f90086-dbf0-438d-a2f6-913f1794995c {"md5": "c60b6a9fc7f34425709320317b3ad880", "pid": "279348363", "note": [{"label": ["http://www.geonames.org/, 2024-07-11"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Jasper"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279348363", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279348363", "source": "IDREF"}], "authorized_access_point": "Asbury (Mo.)"} 1 +2024-09-10 15:47:39.002185 2024-09-10 15:47:39.002188 62524fcb-40ec-4302-889d-923f195b8387 {"md5": "583355bfae128d10a995c5aa47530e71", "pid": "279349807", "note": [{"label": ["Les balades botaniques de la Société botanique de Genève : Le Bois des Bouchets : balade n° 3 / [texte et photographies:] Catherine Lambelet-Haueter, 2023"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279349807", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279349807", "source": "IDREF"}], "authorized_access_point": "Bouchets, Bois des (Genève, Suisse)"} 1 +2024-09-10 15:47:39.079086 2024-09-10 15:47:39.079091 4b2b42eb-9b20-4d4f-a3f4-45aee4373906 {"md5": "510b936360f3c3546f1b9a83fe936408", "pid": "279351747", "note": [{"label": ["http://www.geonames.org/, 2024-07-11"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Scott"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279351747", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279351747", "source": "IDREF"}], "authorized_access_point": "Shallow Water (Kan.)"} 1 +2024-09-10 15:47:39.14924 2024-09-10 15:47:39.149243 911af6eb-7564-41ba-bef5-b730a8d550b1 {"md5": "ec342846e3989b2d818791f92e21dd62", "pid": "279351879", "note": [{"label": ["http://www.geonames.org/, 2024-07-11"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Finney"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279351879", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279351879", "source": "IDREF"}], "authorized_access_point": "Friend (Kan.)"} 1 +2024-09-10 15:47:39.204497 2024-09-10 15:47:39.204499 163be4b9-9193-4151-bd85-fa8db562aac6 {"md5": "23e53149bb34386733015be5a2e2dc70", "pid": "279353162", "note": [{"label": ["http://www.geonames.org/, 2024-07-11"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Comanche"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279353162", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279353162", "source": "IDREF"}], "authorized_access_point": "Bluff creek (Kan. ; cours d'eau)"} 1 +2024-09-10 15:47:39.271271 2024-09-10 15:47:39.271275 859f6915-88db-4ceb-aa3e-72426e86cf80 {"md5": "16360aa4bb19946678c67001fe994963", "pid": "279353308", "note": [{"label": ["http://www.geonames.org/, 2024-07-11"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Clark"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279353308", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279353308", "source": "IDREF"}], "authorized_access_point": "Sitka (Kan.)"} 1 +2024-09-10 15:47:39.323847 2024-09-10 15:47:39.32385 a251359c-1a51-4511-b51b-3f123be0ac16 {"md5": "5e8d9690fe05407e346c89cc12b8a14c", "pid": "279353928", "note": [{"label": ["http://www.geonames.org/, 2024-07-11"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Wallace"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279353928", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279353928", "source": "IDREF"}], "authorized_access_point": "Wallace (Kan.)"} 1 +2024-09-10 15:47:39.376769 2024-09-10 15:47:39.376773 991f328b-1a85-43d1-9d3e-f93d4cd79a21 {"md5": "c6ab3d7e2c088a4c56b5f68fb59a4486", "pid": "279354118", "note": [{"label": ["http://www.geonames.org/, 2024-07-11"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Wallace"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279354118", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279354118", "source": "IDREF"}], "authorized_access_point": "Weskan (Kan.)"} 1 +2024-09-10 15:47:39.43875 2024-09-10 15:47:39.438754 3c410e93-cfae-432b-8b11-917552850d9f {"md5": "dc06a379e5a44879e4545cf5b4ac1655", "pid": "279354223", "note": [{"label": ["Wikipédia, https://zh.wikipedia.org/wiki/%E8%8B%8D%E5%8D%97%E5%8E%BF, 2024-07-11", "中国语言文化典藏 . 苍南 / 曹志耘, 王莉宁, 李锦芳主编, 徐丽丽著, 2022", "Zhongguo yu yan wen hua dian cang . Cang'nan / Cao Zhiyun, Wang Lining, Li Jinfang zhu bian, Xu Lili zhu, 2022"], "noteType": "dataSource"}, {"label": ["District de la province du Zhejiang, Chine"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Zhejiang (Chine)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279354223", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279354223", "source": "IDREF"}], "variant_access_point": ["蒼南縣", "苍南县", "Cangnan Xian"], "authorized_access_point": "Cangnan Xian (Chine)"} 1 +2024-09-10 15:47:40.682833 2024-09-10 15:47:40.682837 8bf9d52b-5984-431f-a6e8-602acb8c1508 {"md5": "829c7bb92f82b2f8b0587a8234942a43", "pid": "279377266", "note": [{"label": ["http://www.geonames.org/, 2024-07-12"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Hardin"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279377266", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279377266", "source": "IDREF"}], "authorized_access_point": "Cave in Rock (Ill.)"} 1 +2024-09-10 15:47:39.509454 2024-09-10 15:47:39.509457 ba9fda5b-3a60-466f-97d7-cca7835df120 {"md5": "9bad28d91e67a14aaf6506ce368c1261", "pid": "279355173", "note": [{"label": ["Wikipédia, https://zh.wikipedia.org/wiki/%E5%AE%BE%E9%98%B3%E5%8E%BF, 2024-07-11", "中国语言文化典藏 . 宾阳 / 卞成林, 韦钰璇, 苏丹著, 曹志耘, 王莉宁, 李锦芳主编, 2022", "Zhongguo yu yan wen hua dian cang . Binyang / Bian Chenglin, Wei Yuxuan, Su Dan zhu, Cao Zhiyun, Wang Lining, Li Jinfang zhu bian, 2022"], "noteType": "dataSource"}, {"label": ["District de la province du Guangxi, Chine"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Guangxi (Chine ; province)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279355173", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279355173", "source": "IDREF"}], "variant_access_point": ["賓陽縣", "宾阳县", "Binyang Xian"], "authorized_access_point": "Binyang Xian (Chine)"} 1 +2024-09-10 15:47:39.571498 2024-09-10 15:47:39.571503 27b808fd-312d-4f94-bcd6-ea3c63df1bde {"md5": "30ad178ea1daae279849a40f8a0021fb", "pid": "279357206", "note": [{"label": ["Moreau", "Dict. communes, 1984", "GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279357206", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279357206", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119424128", "source": "BNF"}], "variant_access_point": ["Bononia (ville ancienne)", "Gesoriacum (ville ancienne)"], "authorized_access_point": "Boulogne-sur-Mer (Pas-de-Calais)"} 1 +2024-09-10 15:47:39.633399 2024-09-10 15:47:39.633404 456a2653-9192-4701-95e5-216289ad9fd0 {"md5": "7ad0dbece1653a2da0416ca5ce31205b", "pid": "279368429", "note": [{"label": ["http://www.geonames.org/, 2024-07-12", "https://en.wikipedia.org/wiki/Licking_River_%28Kentucky%29/, 2024-07-12"], "noteType": "dataSource"}, {"label": ["La Licking est une rivière des États-Unis affluent de la rivière Ohio, donc un sous-affluent du fleuve le Mississippi"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279368429", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279368429", "source": "IDREF"}], "authorized_access_point": "Licking river (Ky. ; cours d'eau)"} 1 +2024-09-10 15:47:39.689485 2024-09-10 15:47:39.689488 a62727c5-ecd8-4660-baad-92b9ba596c7d {"md5": "75f9bc5369d88e1e6dd713141dd68093", "pid": "279369867", "note": [{"label": ["Die Eurodistrikte, eine neue Form der grenzüberschreitenden Kooperation?, 2014:"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279369867", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279369867", "source": "IDREF"}, {"type": "uri", "value": "https://viaf.org/viaf/192145858084323021995", "source": "VIAF"}], "authorized_access_point": "Trinationaler Eurodistrict Basel"} 1 +2024-09-10 15:47:39.749124 2024-09-10 15:47:39.749127 d480f7b7-e228-413e-b727-2941be7fd9f8 {"md5": "32a7c3a772557166bbc5dd3eaec7eac2", "pid": "27937027X", "note": [{"label": ["Wikipédia, https://zh.wikipedia.org/wiki/%E5%8F%A4%E7%94%B0%E5%8E%BF, 2024-07-12", "中国语言文化典藏 . 古田 / 李滨 著, 曹志耘, 王莉宁, 李锦芳 主编, 2022", "Zhongguo yu yan wen hua dian cang . Gutian / Li Bin zhu, Cao Zhiyun, Wang Lining, Li Jinfang zhu bian, 2022"], "noteType": "dataSource"}, {"label": ["District de la province du Fujian, Chine"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Fujian (Chine ; province)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/27937027X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/27937027X", "source": "IDREF"}], "variant_access_point": ["古田縣", "古田县", "Gutian Xian"], "authorized_access_point": "Gutian Xian (Chine)"} 1 +2024-09-10 15:47:39.81786 2024-09-10 15:47:39.817865 4ddf7a3f-884f-4c3a-be7a-edbfd61450c7 {"md5": "9c34f433821173a05c64eb2fb32e2b34", "pid": "279371322", "note": [{"label": ["http://www.geonames.org/, 2024-07-12"], "noteType": "dataSource"}, {"label": ["La rivière Barren prend sa source près de la frontière du Tennessee dans le comté de Monroe et se jette dans la rivière Green au nord-est du comté de Warren"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279371322", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279371322", "source": "IDREF"}], "authorized_access_point": "Barren river (Ky. ; cours d'eau)"} 1 +2024-09-10 15:47:39.878279 2024-09-10 15:47:39.878283 4204216a-1434-4107-9932-3a6e774a09f1 {"md5": "d099a62bf3a8a130f1731e85427a39eb", "pid": "279372280", "note": [{"label": ["Wikipédia, https://zh.wikipedia.org/wiki/%E6%B4%AA%E6%B4%9E%E5%8E%BF, 2024-07-12", "中国语言文化典藏 . 洪洞 / 乔全生, 王晓婷, 赵海英 著, 曹志耘, 王莉宁, 李锦芳 主编, 2022", "Zhongguo yu yan wen hua dian cang . Hongdong / Qiao Quansheng, Wang Xiaoting, Zhao Haiying zhu, Cao Zhiyun, Wang Lining, Li Jinfang zhu bian, 2022"], "noteType": "dataSource"}, {"label": ["District de la province du Shanxi, Chine"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Shanxi (Chine ; province)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279372280", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279372280", "source": "IDREF"}], "variant_access_point": ["洪洞縣", "洪洞县", "Hongdong Xian"], "authorized_access_point": "Hongdong Xian (Chine)"} 1 +2024-09-10 15:47:39.93872 2024-09-10 15:47:39.938723 33b845c4-a96c-4292-bf6c-0b58f278de63 {"md5": "d07e1cdc84ab45107142ddedb0260971", "pid": "279372906", "note": [{"label": ["http://www.geonames.org/, 2024-07-12"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279372906", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279372906", "source": "IDREF"}], "authorized_access_point": "Middle Fork Kentucky river (Ky. ; cours d'eau)"} 1 +2024-09-10 15:47:39.995054 2024-09-10 15:47:39.995058 d50aa2bb-ff77-4aa3-a9e2-d941aa3b7ca9 {"md5": "ab839157adb79b44ba90867823a36f30", "pid": "279373139", "note": [{"label": ["https://en.wikipedia.org/wiki/North_Fork_Kentucky_River/, 2024-07-12"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279373139", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279373139", "source": "IDREF"}], "authorized_access_point": "North Fork Kentucky river (Ky. ; cours d'eau)"} 1 +2024-09-10 15:47:40.055977 2024-09-10 15:47:40.05598 e9ead850-857a-461a-bae2-b1530617e85e {"md5": "3d2d4dc3faffb112acb88308cbe6d283", "pid": "279373171", "note": [{"label": ["Wikipédia, https://zh.wikipedia.org/wiki/%E6%80%80%E9%9B%86%E5%8E%BF, 2021-03-03", "中国语言文化典藏 . 怀集 / 杨璧菀 著, 曹志耘, 王莉宁, 李锦芳 主编, 2022", "Zhongguo yu yan wen hua dian cang . Huaiji / Yang Biwan zhu, Cao Zhiyun, Wang Lining, Li Jinfang zhu bian, 2022"], "noteType": "dataSource"}, {"label": ["District de la province du Guangdong, Chine"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Guangdong (Chine ; province)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279373171", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279373171", "source": "IDREF"}], "variant_access_point": ["懷集縣", "怀集县", "Huaiji Xian"], "authorized_access_point": "Huaiji Xian (Chine)"} 1 +2024-09-10 15:47:40.118733 2024-09-10 15:47:40.118737 3e57ae48-b12e-40ef-9a17-8af9a647519e {"md5": "ba93861c4b28ec524ac7df9a954b77e6", "pid": "279373198", "note": [{"label": ["http://www.geonames.org/, 2024-07-12"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Perry"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279373198", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279373198", "source": "IDREF"}], "authorized_access_point": "Yerkes (Ky.)"} 1 +2024-09-10 15:47:40.18617 2024-09-10 15:47:40.186174 f7b3775e-cd63-49ea-8e4f-0c4a43825e8f {"md5": "31b9a38be7469c0e5ee485c6eac08f4e", "pid": "279373287", "note": [{"label": ["http://www.geonames.org/, 2024-07-12"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Leslie"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279373287", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279373287", "source": "IDREF"}], "authorized_access_point": "Shoal (Ky.)"} 1 +2024-09-10 15:47:40.255368 2024-09-10 15:47:40.255371 244dc3b5-c93b-47a5-93c6-fd40ec20eda7 {"md5": "c0469d9836f30a9f2bc538eddd29cfe3", "pid": "279375387", "note": [{"label": ["http://www.geonames.org/, 2024-07-12"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de McCreary"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279375387", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279375387", "source": "IDREF"}], "authorized_access_point": "Slavans (Ky.)"} 1 +2024-09-10 15:47:40.317615 2024-09-10 15:47:40.317619 de6a7fec-07b6-4bdc-95e5-28eb73343c1d {"md5": "bf09491ce501107a3466dd9f4b7c313b", "pid": "279375794", "note": [{"label": ["http://www.geonames.org/, 2024-07-12"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Pickett"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279375794", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279375794", "source": "IDREF"}], "authorized_access_point": "Byrdstown (Tenn.)"} 1 +2024-09-10 15:47:40.377324 2024-09-10 15:47:40.377329 374273fa-2d55-464e-9b23-07357dafab3f {"md5": "802efe0fe99107bb4e07d9da0a4bd3f9", "pid": "279375867", "note": [{"label": ["https://en.wikipedia.org/wiki/Obey_River/, 2024-07-12"], "noteType": "dataSource"}, {"label": ["La rivière Obey est un affluent de la rivière Cumberland dans l'État américain du Tennessee"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279375867", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279375867", "source": "IDREF"}], "authorized_access_point": "Obey river (Tenn. ; cours d'eau)"} 1 +2024-09-10 15:47:40.437209 2024-09-10 15:47:40.437213 b41971fc-f445-477b-9f22-e4b3512a65ec {"md5": "86ffeebad7664df542464e5883201ece", "pid": "279376405", "note": [{"label": ["Wikipédia, https://zh.wikipedia.org/zh-cn/%E7%8E%AF%E5%8E%BF, 2024-07-12", "中国语言文化典藏 . 环县 / 谭治琪 著, 曹志耘, 王莉宁, 李锦芳 主编, 2022", "Zhongguo yu yan wen hua dian cang . Huan xian / Tan Zhiqi zhu, Cao Zhiyun, Wang Lining, Li Jinfang zhu bian, 2022"], "noteType": "dataSource"}, {"label": ["District de la province du Gansu, Chine"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Gansu (Chine ; province)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279376405", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279376405", "source": "IDREF"}], "variant_access_point": ["環縣", "环县", "Huan Xian"], "authorized_access_point": "Huan Xian (Chine)"} 1 +2024-09-10 15:47:40.499986 2024-09-10 15:47:40.499991 9d78026e-e3ca-4172-a8ae-d528b4427ca4 {"md5": "697e1431dbc556202cd36a0a079257f3", "pid": "27937660X", "note": [{"label": ["http://www.geonames.org/, 2024-07-12"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Breckenridge"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/27937660X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/27937660X", "source": "IDREF"}], "authorized_access_point": "Stephensport (Ky.)"} 1 +2024-09-10 15:47:40.560611 2024-09-10 15:47:40.560614 d6aca6c9-1482-4d5b-a57e-63f3757bc190 {"md5": "c9a1cfbec8a2039a27d06f5165937e8e", "pid": "279376693", "note": [{"label": ["http://www.geonames.org/, 2024-"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Hancock"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279376693", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279376693", "source": "IDREF"}], "authorized_access_point": "Patesville (Ky.)"} 1 +2024-09-10 15:47:40.624212 2024-09-10 15:47:40.624215 2c5434aa-edb9-42c4-abe2-d9f39527d57a {"md5": "334251b43baf01031901e67553aad445", "pid": "279376804", "note": [{"label": ["Wikipédia, https://zh.wikipedia.org/wiki/%E5%BB%BA%E7%93%AF%E5%B8%82, 2024-07-12", "中国语言文化典藏 . 建瓯 / 邓享璋, 吴雪灏, 徐文亮 著, 曹志耘, 王莉宁, 李锦芳 主编, 2022", "Zhongguo yu yan wen hua dian cang . Jian'ou / Deng Xiangzhang, Wu Xuehao, Xu Wenliang zhu, Cao Zhiyun, Wang Lining, Li Jinfang zhu bian, 2022"], "noteType": "dataSource"}, {"label": ["Ville de la province du Fujian, Chine"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Fujian (Chine ; province)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279376804", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279376804", "source": "IDREF"}], "variant_access_point": ["建甌市", "建甌市", "Jianou", "Jian ou"], "authorized_access_point": "Jian'ou Shi (Chine)"} 1 +2024-09-10 15:47:40.743138 2024-09-10 15:47:40.743141 7cf49c02-4c5b-491a-885d-069ab6079e39 {"md5": "5c2bb2ee9a896675cad0f7cbf89c8328", "pid": "279377452", "note": [{"label": ["Wikipédia, https://zh.wikipedia.org/wiki/%E6%B1%9F%E5%B1%B1%E5%B8%82, 2024-07-12", "中国语言文化典藏 . 江山 / 王洪钟, 赵普义 著, 曹志耘 主编, 2022", "Zhongguo yu yan wen hua dian cang . Jiangshan / Wang Hongzhong, Zhao Puyi zhu, Cao Zhiyun zhu bian, 2022"], "noteType": "dataSource"}, {"label": ["Ville de la province du Zhejiang, Chine"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Zhejiang (Chine ; province)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279377452", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279377452", "source": "IDREF"}], "authorized_access_point": "Jiangshan Shi (Chine)"} 1 +2024-09-10 15:47:40.803026 2024-09-10 15:47:40.803029 5b6bb42a-ab46-46c8-8c2f-b9a000f64717 {"md5": "19a02dd54e227c7ec0eaaa985e0fd312", "pid": "279378173", "note": [{"label": ["Wikipédia, https://zh.wikipedia.org/wiki/%E6%B1%9F%E6%B0%B8%E5%8E%BF, 2024-07-12", "中国语言文化典藏 . 江永 / 杨慧君 著, 曹志耘, 王莉宁, 李锦芳 主编, 2022", "Zhongguo yu yan wen hua dian cang . Jiangyong / Yang Huijun zhu, Cao Zhiyun, Wang Lining, Li Jinfang zhu bian, 2022"], "noteType": "dataSource"}, {"label": ["Ville de la province du Hunan, Chine"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Hunan (Chine)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279378173", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279378173", "source": "IDREF"}], "variant_access_point": ["江永縣"], "authorized_access_point": "Jiangyong Xian (Chine)"} 1 +2024-09-10 15:47:40.869572 2024-09-10 15:47:40.869575 b5f2f168-9d6d-4970-bd2f-d7faf1b11905 {"md5": "3ac9915559163475136a7cbc3f6f6b75", "pid": "279380925", "note": [{"label": ["Phone call to BGN 4/27/83", "Apuntes históricos del Valle de Teotihuacán en la época colonial / por Ignacio B. del Castillo,... ; Secretaría de Agricultura y Fomento, Dirección de Antropología"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279380925", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279380925", "source": "IDREF"}, {"type": "uri", "value": "https://viaf.org/viaf/140422932", "source": "VIAF"}], "authorized_access_point": "San Juan Teotihuacán (Mexico)"} 1 +2024-09-10 15:47:40.941308 2024-09-10 15:47:40.941314 014f893f-4fb6-4c44-bed9-13ca954d6d32 {"md5": "01759c90a6b7ecf4c094c0350393813a", "pid": "279385544", "note": [{"label": ["http://www.geonames.org/, 2024-07-15"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Perry"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279385544", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279385544", "source": "IDREF"}], "authorized_access_point": "Cornettsville (Ky.)"} 1 +2024-09-10 15:47:41.019701 2024-09-10 15:47:41.019705 4ce50468-e74a-4029-8211-543955bb78b8 {"md5": "70d640aeeee0a5a36bca0d13ab8a3a32", "pid": "279385625", "note": [{"label": ["http://www.geonames.org/, 2024-07-15"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Perry"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279385625", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279385625", "source": "IDREF"}], "authorized_access_point": "Delphia (Ky.)"} 1 +2024-09-10 15:47:41.09529 2024-09-10 15:47:41.095294 45189f24-3e87-4237-97ca-c974809c85d3 {"md5": "c3e1f64b4ce0275644f4d61375e166ab", "pid": "27938646X", "note": [{"label": ["http://www.geonames.org/, 2024-07-15"], "noteType": "dataSource"}, {"label": ["Situé dans le comté d'Edmonson"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/27938646X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/27938646X", "source": "IDREF"}], "authorized_access_point": "Nolin river (Ky. ; cours d'eau)"} 1 +2024-09-10 15:47:41.164526 2024-09-10 15:47:41.16453 04ef5b5e-c54a-4a4c-93d2-77557a75c8e6 {"md5": "c2a08f87c2ad5b87ea64e49a0e543911", "pid": "279387199", "note": [{"label": ["http://www.geonames.org/, 2024-07-15"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279387199", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279387199", "source": "IDREF"}], "authorized_access_point": "South Fork Licking river (Ky. ; cours d'eau)"} 1 +2024-09-10 15:47:41.23664 2024-09-10 15:47:41.236644 529e9845-47d1-463d-ad49-ee76e0933610 {"md5": "e9b0e27e89a80eae8d58b4afeda94f0c", "pid": "279388810", "note": [{"label": ["Tunnel du Creux : Action de dépollution et petit historique de ce tunnel éphémère (La Chaux-de-Fonds, NE) / Kesselring, Thomas auteur Blant, Denis, 1964-....auteur. Publié dans: Cavernes : bulletin des Sections neuchâteloises de la Société suisse de spéléologie ; 2023, nº. 1, p. 16-19"], "noteType": "dataSource"}, {"label": ["Ancienne ligne ferrovière Les Convers-Renan, 1874-1888."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279388810", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279388810", "source": "IDREF"}], "authorized_access_point": "Creux, Tunnel du (Neuchâtel, Suisse)"} 1 +2024-09-10 15:47:41.29665 2024-09-10 15:47:41.296655 624f581d-2111-420a-b585-f31fc5d7b339 {"md5": "6914fc6ed008ee470621ba7a91d8ed97", "pid": "279390351", "note": [{"label": ["Brusque : subsídios para a história de uma colônia nos tempos de Império / Oswaldo R. Cabral, 1958", "https://www.geonames.org, 2024-07-15"], "noteType": "dataSource"}, {"label": ["Ville brésilienne de l'État de Santa Catarina.", "S 27°05′53″ W 48°54′46″"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Santa Catarina (Brésil, État)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279390351", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279390351", "source": "IDREF"}], "authorized_access_point": "Brusque (Brésil)"} 1 +2024-09-10 15:47:42.509146 2024-09-10 15:47:42.509149 31215077-4a13-49d0-80b4-f5acebe2bd60 {"md5": "bb53f13945b5383073e55e7b205123a7", "pid": "279471734", "note": [{"label": ["Daxing'anling zhi wu zhi = Flora of the greater Xing'an mountains / Daxing'anling zhi wu zhi bian wei hui bian"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279471734", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279471734", "source": "IDREF"}], "authorized_access_point": "Montagne de Xang'an (Chine)"} 1 +2024-09-10 15:47:41.35491 2024-09-10 15:47:41.354914 6e1dbb47-5e33-4e56-86ba-da117ad92420 {"md5": "6852e2f02c5e2230f77132b533249696", "pid": "279391544", "note": [{"label": ["Wikipédia, https://zh.wikipedia.org/zh-hans/%E5%B9%B3%E5%92%8C%E5%8E%BF, 2024-07-15", "平和传统建筑 / 黄汉民, 范文昀 著, 2023", "Pinghe chuan tong jian zhu / Huang Hanmin,Fan Wenyun zhu, 2023"], "noteType": "dataSource"}, {"label": ["District de la province du Fujian, Chine"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Fujian (Chine ; province)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279391544", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279391544", "source": "IDREF"}], "variant_access_point": ["平和縣", "平和县", "Pinghe Xian"], "authorized_access_point": "Pinghe Xian (Chine)"} 1 +2024-09-10 15:47:41.427156 2024-09-10 15:47:41.427159 9b4a75dc-8f8f-4552-974b-c7860ac37a98 {"md5": "e98a8d6bbba499bbcf42610e2f7bd8fa", "pid": "279391609", "note": [{"label": ["Wikipédia, https://zh.wikipedia.org/wiki/%E5%8D%97%E9%9D%96%E5%8E%BF, 2024-07-15", "南靖传统建筑 / 黄汉民, 范文昀 著, 2022", "Nanjing chuan tong jian zhu / Huang Hanmin,Fan Wenyun zhu, 2022"], "noteType": "dataSource"}, {"label": ["District de la province du Fujian, Chine"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Fujian (Chine ; province)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279391609", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279391609", "source": "IDREF"}], "variant_access_point": ["南靖縣", "南靖县", "Nanjing Xian"], "authorized_access_point": "Nanjing Xian (Chine)"} 1 +2024-09-10 15:47:41.512833 2024-09-10 15:47:41.512838 ce548dc9-a136-4af7-aa5a-84d0b1934872 {"md5": "fddfa6fc05eee88ad49c3b5553e0609a", "pid": "279392400", "note": [{"label": ["中国语言文化典藏 . 金华 / 黄晓东, 曹文进 著, 曹志耘 主编, 2017", "Zhongguo yu yan wen hua dian cang . Jinhua / Huang Xiaodong, Cao Wenjin zhu, Cao Zhiyun zhu bian, 2017"], "noteType": "dataSource"}, {"label": ["District de la province du Zhejiang, Chine"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Zhejiang (Chine ; province)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279392400", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279392400", "source": "IDREF"}], "variant_access_point": ["金華縣", "金华县", "Jinhua Xian"], "authorized_access_point": "Jinhua Xian (Chine)"} 1 +2024-09-10 15:47:41.574664 2024-09-10 15:47:41.574667 9010b562-00ee-48cc-ad28-55d1dd7db5e0 {"md5": "1a76c4fe6cca5e61cd710882c7ab3a23", "pid": "279394381", "note": [{"label": ["Wikipédia, https://zh.wikipedia.org/wiki/%E4%BA%95%E9%99%89%E5%8E%BF, 2024-07-15", "中国语言文化典藏 . 井陉 / 桑宇红, 许慧敏, 刘晶 著, 曹志耘 主编, 2017", "Zhongguo yu yan wen hua dian cang . Jingxing / Sang Yuhong, Xu Huimin, Liu Jing zhu, Cao Zhiyun zhu bian, 2017"], "noteType": "dataSource"}, {"label": ["District de la province du Hebei, Chine"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Hebei (Chine ; province)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279394381", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279394381", "source": "IDREF"}], "variant_access_point": ["井陉縣", "井陉县", "Jingxing Xian"], "authorized_access_point": "Jingxing Xian (Chine)"} 1 +2024-09-10 15:47:41.63403 2024-09-10 15:47:41.634035 8488c52c-24a5-4626-af06-c495e7ddc062 {"md5": "8f7d4ca6f30b8a1b625c3e318fcb4b72", "pid": "279396155", "note": [{"label": ["Wikipédia, https://zh.wikipedia.org/wiki/%E4%B9%90%E4%B8%9A%E5%8E%BF, 2024-07-15", "中国语言文化典藏 . 乐业 / 吕嵩崧, 李国俊, 滕韧, 郑敬文 著, 曹志耘, 王莉宁, 李锦芳 主编, 2022", "Zhongguo yu yan wen hua dian cang . Leye / Lü Songsong, Li Guojun, Teng Ren, Zheng Jingwen zhu, Cao Zhiyun, Wang Lining, Li Jinfang zhu bian, 2022"], "noteType": "dataSource"}, {"label": ["District de la province du Guangxi, Chine"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Guangxi (Chine ; province)"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279396155", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279396155", "source": "IDREF"}], "variant_access_point": ["樂業縣", "乐业县", "Leye Xian"], "authorized_access_point": "Leye Xian (Chine)"} 1 +2024-09-10 15:47:41.70496 2024-09-10 15:47:41.704962 04569884-835b-4d97-b454-6fa8095b2dd0 {"md5": "fa400e98fcef329c358cc0b2bc7f47e1", "pid": "279401639", "note": [{"label": ["Il Monastero di San Gaggio a Firenze : la storia, il piano di recupero / Osanna Fantozzi Micali, Franco Lombardi, Piero Roselli ; a cura di Franco Lombardi, 1996", "Internet : Wikipedia : https://en.wikipedia.org/wiki/San_Gaggio,_Florence (15-07-2024)"], "noteType": "dataSource"}, {"label": ["L'église de San Gaggio était autrefois associée à un grand couvent. L'intérieur abrite une chapelle de Saint- André Corsini (1603), décorée de fresques par l'atelier de Bernardino Poccetti et abritant une Annonciation avec des saints par l'atelier de Francesco Brina"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279401639", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279401639", "source": "IDREF"}], "authorized_access_point": "Florence (Italie) - Chiesa di San Gaggio"} 1 +2024-09-10 15:47:41.763436 2024-09-10 15:47:41.763443 b6f4b2bd-50bb-41bd-a85d-f2f08f5b5b82 {"md5": "110b658b4df5889d60f923a450d95380", "pid": "279403984", "note": [{"label": ["GeoNames (2024-07-16)"], "noteType": "dataSource"}, {"label": ["Kormakítis est un petit village sur la côte septentrionale de Chypre - dans la zone occupée par l'armée Turque - aussi appelée République turque de Chypre du Nord. Ce village est le centre historique de l'Église maronite chypriote.", "Coordonnées en degrés séxagésimaux : N 35°20′35″ / E 33°00′36″"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Chypre"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279403984", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279403984", "source": "IDREF"}], "variant_access_point": ["Κορμακίτης", "Korucam"], "authorized_access_point": "Kormakítis (Chypre)"} 1 +2024-09-10 15:47:41.827024 2024-09-10 15:47:41.827028 1f6065b6-46da-470c-a4df-bccf436809ad {"md5": "85c3725218f881b0a99f1d9543497ecd", "pid": "279414145", "note": [{"label": ["http://www.geonames.org/, 2024-07-16"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Hopkins"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279414145", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279414145", "source": "IDREF"}], "authorized_access_point": "Daniel Boone (Ky.)"} 1 +2024-09-10 15:47:41.886453 2024-09-10 15:47:41.886456 ffbc52f6-c9a0-4e62-afe9-7f6e3536c5c3 {"md5": "9e96881f5d3a7aa33d4c7ce4cd821409", "pid": "279416679", "note": [{"label": ["Suomen geologinen kartta Lehti 3112 = =Geological map of Finland : kallioperäkartta / Geologisen tutkimuslaitoksen julkaisema ; Tehnyt by Mauno Lehijärvi, 1970.", "http://www.geonames.org/658288, 2024-07-16"], "noteType": "dataSource"}, {"label": ["Ville de Finlande, région du Päijät-Häme"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279416679", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279416679", "source": "IDREF"}], "authorized_access_point": "Heinola (Finlande)"} 1 +2024-09-10 15:47:41.946499 2024-09-10 15:47:41.946503 8ca0d909-d84b-49fb-944a-25db5f9c751e {"md5": "ec2f438143b695337621a55c5974084e", "pid": "27941806X", "note": [{"label": ["Regisvilla : scavi e ricerche (1968-1983) / Carlo Regoli, 2021", "Comuni Italiani - http://www.comuni-italiani.it (2024-02-27)", "LCNA (en ligne), 2024-02-24 : Montalto di Castro (Italy)"], "noteType": "dataSource"}, {"label": ["Commune de la province de Viterbe, dans le Latium"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/27941806X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/27941806X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18133134c", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "914"}], "authorized_access_point": "Montalto di Castro (Italie)"} 1 +2024-09-10 15:47:42.009596 2024-09-10 15:47:42.009599 8329357c-fce8-46df-b289-a50f9783215e {"md5": "7c037de87176afc19f4c3b00dee6d1d1", "pid": "279418728", "note": [{"label": ["http://www.geonames.org/, 2024-07-16"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Hopkins"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279418728", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279418728", "source": "IDREF"}], "authorized_access_point": "Earlington (Ky.)"} 1 +2024-09-10 15:47:42.081456 2024-09-10 15:47:42.081459 0dd7d746-95b3-4d18-adf1-3024b85cf80f {"md5": "393ae23d7e9041a5f981151da9167578", "pid": "279421427", "note": [{"label": ["Despotiko, the site of Mandra : the \\"temple\\" complex and its deposits / edited by Alexandra Alexandridou, Yannos Kourayos and Ilia Daifa, 2023", "DNB - https://d-nb.info/gnd/1043474439, 2024-07-16"], "noteType": "dataSource"}, {"label": ["Petite île des Cyclades au sud-ouest d'Antiparos"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279421427", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279421427", "source": "IDREF"}], "authorized_access_point": "Despotikò (Grèce ; île)"} 1 +2024-09-10 15:47:42.138524 2024-09-10 15:47:42.138527 d3623d48-5558-40ad-8c4b-77f8a00c262e {"md5": "56ed7ac751c39fc3be99077315955b7b", "pid": "279426739", "note": [{"label": ["[Fontaine et carrefour Rue du Raisin / Rue de l'Industrie, Le Locle], [1980-1990 ?] / Adequa (La Chaux-de-Fonds, Neuchâtel, Suisse) photographe", "https://bib.rero.ch/global/documents/2239783, 2024-07-17"], "noteType": "dataSource"}, {"label": ["Visualisation sur SITN- Géoportail du système d'information du territoire neuchâtelois https://sitn.ne.ch, 2024-07-17"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279426739", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279426739", "source": "IDREF"}], "authorized_access_point": "Le Locle (Neuchâtel, Suisse) - Rue de l'Industrie"} 1 +2024-09-10 15:47:42.200441 2024-09-10 15:47:42.200446 491a05b5-6ae8-48ac-8aa3-b274de9c4a3c {"md5": "6c98dcb0654e7529cd32ef06bc6e2546", "pid": "279461429", "note": [{"label": ["Calames-202406121584443535"], "noteType": "dataSource"}, {"label": ["VIllage nigérien montagnard de l'Aïr. Zone de production agricole."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279461429", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279461429", "source": "IDREF"}], "authorized_access_point": "Egandawal (Niger)"} 1 +2024-09-10 15:47:42.259638 2024-09-10 15:47:42.259642 0e1647a1-7498-498d-a854-7b53b360be76 {"md5": "92887a74945d3745303ceaa5a7784585", "pid": "279466293", "note": [{"label": ["Το κτιριακό συγκρότημα της μητρόπολης Θεσσαλονίκης / Θάλεια Σ. Μαντοπούλου-Παναγιωτοπούλου, 1985"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279466293", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279466293", "source": "IDREF"}], "authorized_access_point": "Thessalonique (Grèce) - Cathédrale Saint Grégoire Palamas"} 1 +2024-09-10 15:47:42.319128 2024-09-10 15:47:42.319132 1114d20c-8fec-46c9-8201-0ec450b88fce {"md5": "0e9652778be4006d5cf71827549db49a", "pid": "279467850", "note": [{"label": ["Carte de France - 1:25 000 XXXV-17, 7-8 / dessiné et publié par l'Institut géographique national, [195.].", "http://www.geonames.org/6457174"], "noteType": "dataSource"}, {"label": ["Village des Vosges"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279467850", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279467850", "source": "IDREF"}], "authorized_access_point": "La Bourgonce"} 1 +2024-09-10 15:47:42.389896 2024-09-10 15:47:42.3899 d809358b-5b7f-4026-9faa-5073fa4caa97 {"md5": "5728292e23f81b0d7d7582ffd1683feb", "pid": "279469632", "note": [{"label": ["La Panarda di Porciano : una ricerca storico antropologica/ Gioacchino Giammaria, Laura Gatti, 2017", "https://it.wikipedia.org/wiki/Porciano_(Ferentino), 2024-07-18."], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279469632", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279469632", "source": "IDREF"}], "authorized_access_point": "Porciano (Latium, Italie)"} 1 +2024-09-10 15:47:42.448371 2024-09-10 15:47:42.448376 085b09fd-8e1b-4716-a6aa-d04eace84380 {"md5": "89f3c2e18178889d308f573e4bf3cc3e", "pid": "279471467", "note": [{"label": ["Daxing'anling zhi wu zhi = Flora of the greater Xing'an mountains / Daxing'anling zhi wu zhi bian wei hui bian"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279471467", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279471467", "source": "IDREF"}], "authorized_access_point": "Xing'an (Chine)"} 1 +2024-09-10 15:47:42.629525 2024-09-10 15:47:42.629528 39509405-a9e9-4d17-af6e-9bf69e9497ad {"md5": "41734b7ef00fd62e2a07282d6325562d", "pid": "279487606", "note": [{"label": ["GeoNames (2024-07-18)"], "noteType": "dataSource"}, {"label": ["Dístomo est un village et une ancienne municipalité grecque dans le district régional de Béotie. Elle comptait 4 368 habitants en 2001", "Coordonnées en degrés séxagésimaux : N 38°25′44″ / E 22°40′02″"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Grèce"}], "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279487606", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279487606", "source": "IDREF"}], "variant_access_point": ["Δίστομο", "Δίστομον"], "authorized_access_point": "Dístomo (Grèce)"} 1 +2024-09-10 15:47:42.703284 2024-09-10 15:47:42.703287 a13de4c3-b980-4f63-942a-b52f1b31ba21 {"md5": "c35caf1cc075b4d9422ff509a5c18dfc", "pid": "279488076", "note": [{"label": ["http://www.geonames.org/, 2024-07-18"], "noteType": "dataSource"}, {"label": ["La Rough River est un affluent de la Green River dans le centre-ouest du Kentucky aux États-Unis"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279488076", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279488076", "source": "IDREF"}], "authorized_access_point": "Rough river (Ky. ; cours d'eau)"} 1 +2024-09-10 15:47:42.773055 2024-09-10 15:47:42.773058 2576ad9b-bff6-453d-bb3c-72ccfc6e2e20 {"md5": "cc77617f1072fb370e5b4198dabbdc5b", "pid": "279492820", "note": [{"label": ["Souvenir du général Moreau en son hôtel de la Chaussée-d'Antin / Simone Saint-Girons, 1961"], "noteType": "dataSource"}, {"label": ["Hôtel particulier situé au 20 rue de la Chaussée-d'Antin, Paris 9e."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279492820", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279492820", "source": "IDREF"}], "variant_access_point": ["Hôtel Lakanal"], "authorized_access_point": "Paris (France) - Hôtel Moreau"} 1 +2024-09-10 15:47:42.829488 2024-09-10 15:47:42.829492 9f01a56f-b7af-4728-bd0b-f5f0b2fc8add {"md5": "8bf2072de962ff71daf113640f0e6827", "pid": "279493584", "note": [{"label": ["Orquideas do Alto da Serra : Da Mata Atlantica Pluvial do Sudeste do Brasil $$c David Miller, With 40 colour plates by Izabel Moura Miller and Richard Warren"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279493584", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279493584", "source": "IDREF"}], "authorized_access_point": "Alto da Serra (Brésil)"} 1 +2024-09-10 15:47:42.888917 2024-09-10 15:47:42.88892 01bfc7b0-0997-4e94-9347-6045462b35b4 {"md5": "67e2109e570462b8f1a36ebf40cc2945", "pid": "279494602", "note": [{"label": ["Crania armoricana... Corpus des crânes armoricains et bretons / Pierre-Roland Giot, 1961"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279494602", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279494602", "source": "IDREF"}], "authorized_access_point": "Saulges (Mayenne) - Nécropole mérovingienne"} 1 +2024-09-10 15:47:42.948959 2024-09-10 15:47:42.948964 2bc44d2b-d191-49bd-93c1-fd83ce541d9d {"md5": "2114e86c32a87cf44a546d5b51ad831a", "pid": "279494637", "note": [{"label": ["Crania armoricana... Corpus des crânes armoricains et bretons / Pierre-Roland Giot, 1961"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279494637", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279494637", "source": "IDREF"}], "authorized_access_point": "Carnac (Morbihan) - Nécropole mérovingienne"} 1 +2024-09-10 15:47:43.021786 2024-09-10 15:47:43.021791 212abd8e-49b7-4779-9984-db515dd34fc4 {"md5": "a0eea5e0663bef18c8552e7a94ad1c2f", "pid": "279494653", "note": [{"label": ["Crania armoricana... Corpus des crânes armoricains et bretons / Pierre-Roland Giot, 1961"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279494653", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279494653", "source": "IDREF"}], "authorized_access_point": "Plouyé (Finistère) - Nécropole mérovingienne"} 1 +2024-09-10 15:47:43.091013 2024-09-10 15:47:43.091019 2720d82a-2f87-43b1-b42c-7d9230f6fc6a {"md5": "ccaf0b90e1597ba9b368bba8ae73f59c", "pid": "279494688", "note": [{"label": ["Crania armoricana... Corpus des crânes armoricains et bretons / Pierre-Roland Giot, 1961"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279494688", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279494688", "source": "IDREF"}], "authorized_access_point": "Plufur (Côtes-d'Armor) - Nécropole mérovingienne"} 1 +2024-09-10 15:47:43.166278 2024-09-10 15:47:43.166283 7ae98f16-56df-42fe-8e1f-8888f942368c {"md5": "e7fe3ce86f2e1d98ebfa2cca98c67f5b", "pid": "279501080", "note": [{"label": ["Place du 29 Février, Le Locle / Adequa (La Chaux-de-Fonds, Neuchâtel, Suisse) photographe, [1980-1990 ?]", "Visualisation sur SITN- Géoportail du système d'information du territoire neuchâtelois https://sitn.ne.ch, 2024-07-19"], "noteType": "dataSource"}, {"label": ["Carrefour routier et place située entre la Grande-Rue et la Rue Marie-Anne-Calame à hauteur du temple du Locle."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279501080", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279501080", "source": "IDREF"}], "authorized_access_point": "Le Locle (Neuchâtel, Suisse) - Place du 29 Février"} 1 +2024-09-10 15:47:43.23701 2024-09-10 15:47:43.237013 167e7b8f-f988-43c4-98e1-0a621f1e18bc {"md5": "93102ee73fc519e626b599f0eedfb008", "pid": "27950277X", "note": [{"label": ["http://www.geonames.org/, 2024-07-19"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Garfield. Ne pas confondre avec d'autres montagnes du même nom dans le même comté. Se référer aux coordonnées"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/27950277X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/27950277X", "source": "IDREF"}], "authorized_access_point": "Long Point (Colo.)"} 1 +2024-09-10 15:47:43.292246 2024-09-10 15:47:43.292249 a30fe57b-0eb5-4455-98f2-37c7f43cff15 {"md5": "8ad4449a094f2cefd3afb0875f897b0b", "pid": "279503288", "note": [{"label": ["aLes Tissus anciens du trésor de la cathédrale de Sens / Chanoine Eugène Chartraire, 1911"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279503288", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279503288", "source": "IDREF"}], "authorized_access_point": "Sens (Yonne) - Cathédrale Saint-Étienne - Trésor"} 1 +2024-09-10 15:47:43.345425 2024-09-10 15:47:43.345429 fbd36d63-0177-49b9-9ae7-a8c1047e2010 {"md5": "1593fd9a381262e0d5ad71a15a230ef1", "pid": "279505264", "note": [{"label": ["http://www.geonames.org/, 2024-07-19"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Mesa"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279505264", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279505264", "source": "IDREF"}], "authorized_access_point": "Twin Peaks (Colo. ; mont)"} 1 +2024-09-10 15:47:43.403204 2024-09-10 15:47:43.403207 6e4317e2-1032-4ef5-9ba2-4c3ea90efbfb {"md5": "c00dfbb08c2dd00c555dad517c23dd39", "pid": "279507097", "note": [{"label": ["http://www.geonames.org/, 2024-07-19"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de San Juan"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279507097", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279507097", "source": "IDREF"}], "authorized_access_point": "Grenadier range (Colo. ; mont)"} 1 +2024-09-10 15:47:43.461209 2024-09-10 15:47:43.461213 0207edfb-0eb6-4236-a0c0-60e40ec3f69e {"md5": "4543fb2b345b9d86877391f5e7c0bbb5", "pid": "279507208", "note": [{"label": ["http://www.geonames.org/, 2024-07-19"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de San Juan et La Plata"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279507208", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279507208", "source": "IDREF"}], "authorized_access_point": "Needle mountains (Colo. ; mont)"} 1 +2024-09-10 15:47:43.519182 2024-09-10 15:47:43.519186 ebae6a52-d3e7-442b-a0b4-d5dbd47c035d {"md5": "cbc9156246a7957b5a0ee563a0f7a355", "pid": "279516932", "note": [{"label": ["[Piscine du Communal, Le Locle] / Adequa (La Chaux-de-Fonds, Neuchâtel, Suisse) photographe, [1980-1990 ?]", "Visualisation sur SITN- Géoportail du système d'information du territoire neuchâtelois https://sitn.ne.ch, 2024-07-22", "Site de la ville du Locle - Piscine du Communal : https://www.lelocle.ch/loisirs-manifestations/loisirs-et-sports/piscine-du-communal/, 2024-07-22"], "noteType": "dataSource"}, {"label": ["Piscine en plein air située dans le quartier du Communal au sud de la ville du Locle."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279516932", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279516932", "source": "IDREF"}], "authorized_access_point": "Le Locle (Neuchâtel, Suisse) - Piscine du Communal"} 1 +2024-09-10 15:47:43.5878 2024-09-10 15:47:43.587805 beeb3c89-4fb2-4ec5-8020-218bef42a0b1 {"md5": "90c4c79722484d33112eabaf4e3302ba", "pid": "279522053", "note": [{"label": ["Das Schloss Murten : vom Schultheissen zum Oberamtmann = Le château de Morat : de l'avoyer au préfet , 2023"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279522053", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279522053", "source": "IDREF"}], "variant_access_point": ["Fribourg, Suisse - Château de Morat", "Schloss Murten (Freiburg, Schweiz)"], "authorized_access_point": "Morat (Fribourg, Suisse) - Château"} 1 +2024-09-10 15:47:43.672315 2024-09-10 15:47:43.672318 65c20e1e-2234-44d7-ab99-284071813c4c {"md5": "beb7d409f287ed463526a70e013a72c8", "pid": "279523505", "note": [{"label": ["Fern flora of Madan Kamdev Hill Region : Kamrup District of Assam, India / Paresh Ch. Kalita and Dipak Konwar"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279523505", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279523505", "source": "IDREF"}], "authorized_access_point": "Kamrup (district, Indes)"} 1 +2024-09-10 15:47:43.731843 2024-09-10 15:47:43.731847 701e09d4-c09b-466e-b8ed-bad0454784b5 {"md5": "d089e42d8de89c290b07129739c2015c", "pid": "279523858", "note": [{"label": ["Danielle Fauque, « Introduction : Aux origines de la Maison de la Chimie », Revue d'histoire des sciences,‎ 2016, p. 8-10"], "noteType": "dataSource"}, {"label": ["La maison de la Chimie est un centre de congrès et de conférences."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279523858", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279523858", "source": "IDREF"}], "authorized_access_point": "Maison de la Chimie, Paris"} 1 +2024-09-10 15:47:43.800581 2024-09-10 15:47:43.800587 3b9c2973-f455-4037-8961-c9cae713aa7e {"md5": "3007111d95b18b7ad9fdc10f0fdd77b2", "pid": "279524072", "note": [{"label": ["Application de la Photogrammétrie à la restauration de l'église Saint-Laurent du Puy-en-Velay (Haute-Loire) / Ministère des Travaux Publics et des Transports, Institut Géographique National, 1963"], "noteType": "dataSource"}, {"label": ["Église classée en 1906, contenant les entrailles du connétable Bertrand du Guesclin"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279524072", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279524072", "source": "IDREF"}], "authorized_access_point": "Le Puy-en-Velay (Haute-Loire) - Église Saint-Laurent"} 1 +2024-09-10 15:47:43.861931 2024-09-10 15:47:43.861936 d0b1b51a-8f48-4276-8ab8-b968139118d2 {"md5": "9eee25a586d46868530a57aed7b718f4", "pid": "279524080", "note": [{"label": ["A.C. Manni - R. Mencarelli (a cura di), Spoleto 1958, alle radici della storia. Il primo Festival dei Due Mondi, Spoleto 2017."], "noteType": "dataSource"}, {"label": ["Festival de musique classique et pluri-disciplinaire fondé en 1958 par le compositeur Gian Carlo Menotti."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279524080", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279524080", "source": "IDREF"}], "authorized_access_point": "Festival dei Due Mondi, Spolete"} 1 +2024-09-10 15:47:43.919068 2024-09-10 15:47:43.919073 d6523907-359d-4411-b42e-6c6d686e43c1 {"md5": "c4cbb3dcccdc8d349c65392892c1dba4", "pid": "279532881", "note": [{"label": ["Suomen geologinen kartta 3113 = = Geological map of Finland : Maaperäkartta / Geologian tutkimuskeskus ; Laatinut Risto Tynni, 1970.", "http://www.geonames.org/650861 2024-07-23"], "noteType": "dataSource"}, {"label": ["Ville finlandaise, région de la Kymenlaakso (vallée de la Kymi)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279532881", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279532881", "source": "IDREF"}], "authorized_access_point": "Kouvola (Finlande)"} 1 +2024-09-10 15:47:43.976128 2024-09-10 15:47:43.976132 3369cc1b-aa35-465b-b61d-797a1669805d {"md5": "e7dfd3363d7976055c67394ff552d47d", "pid": "279533497", "note": [{"label": ["[Patinoire du Communal, Le Locle] / Adequa (La Chaux-de-Fonds, Neuchâtel, Suisse) photographe, [1980-1990 ?]", "Site NotreHistoire.ch : https://notrehistoire.ch/entries/LJYMJJPVB5R, 2024-07-23", "Site de la Ville du Locle - Patinoire du Communal : https://www.lelocle.ch/loisirs-manifestations/loisirs-et-sports/patinoire-du-communal/, 2024-07-23"], "noteType": "dataSource"}, {"label": ["Patinoire située dans le quartier du Communal au sud de la ville du Locle. En plein air jusqu'en 2004, date de sa couverture."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279533497", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279533497", "source": "IDREF"}], "authorized_access_point": "Le Locle (Neuchâtel, Suisse) - Patinoire du Communal"} 1 +2024-09-10 15:47:44.031985 2024-09-10 15:47:44.031989 02495f7e-4493-4562-92f7-120d53e2e39b {"md5": "648ff965dcf0d524ab3435074e769da6", "pid": "279535783", "note": [{"label": ["https://fr.wikipedia.org/wiki/Mont_Chemin, 2024-07-23"], "noteType": "dataSource"}, {"label": ["Le mont Chemin est une montagne située dans le canton du Valais en Suisse."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279535783", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279535783", "source": "IDREF"}], "authorized_access_point": "Mont Chemin"} 1 +2024-09-10 15:47:44.089804 2024-09-10 15:47:44.089807 a570d550-3581-451f-8bd8-92806c81bb70 {"md5": "5ea86f265e19a9a55c3108feba36fce9", "pid": "279536011", "note": [{"label": ["L'architecture dans le quartier Carabacel / Michel Steve, 2001 ?"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279536011", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279536011", "source": "IDREF"}], "variant_access_point": ["Quartier Carabacel"], "authorized_access_point": "Nice (Alpes-Maritimes) - Quartier Carabacel"} 1 +2024-09-10 15:47:44.151303 2024-09-10 15:47:44.151308 bf654e2a-4489-4ef9-b4e3-e4b7cf3a024f {"md5": "2d5def5828b332a5ea3296ea679965c6", "pid": "279537719", "note": [{"label": ["D'un lac à l'autre : architecture comparée de deux villages lacustres du milieu du IVe millénaire avant J.-C. dans la région des Trois-Lacs (Suisse) / Michel Mauvilly, Fabien Langenegger. In : Habitations et habitat du Néolithique à l'Âge du bronze en France et ses marges, 2018, pages 261-267", "Dictionnaire historique de la Suisse, https://hls-dhs-dss.ch/fr/articles/000453/2019-04-03, 2024-07-23"], "noteType": "dataSource"}, {"label": ["Commune du canton de Berne, arrondissement administratif de Bienne, sur la rive sud du lac de Bienne, comprenant les villages de Sutz et de Lattrigen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279537719", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279537719", "source": "IDREF"}], "authorized_access_point": "Sutz-Lattrigen (Berne, Suisse)"} 1 +2024-09-10 15:47:44.209571 2024-09-10 15:47:44.209575 6a37911f-4632-43f1-9d2f-836e31a2df9a {"md5": "2a5dfb34f3d5963418d6c81fc5ed3002", "pid": "279539363", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279539363", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279539363", "source": "IDREF"}], "authorized_access_point": "Cerro Colorado (Argentine ; parc naturel)"} 1 +2024-09-10 15:47:44.267587 2024-09-10 15:47:44.267591 8b24d008-a0e6-4410-b9cc-90be08dccc31 {"md5": "edbb4044063c3042ac908b563208b1f2", "pid": "279562098", "note": [{"label": ["https://fr.wikipedia.org/wiki/Le_Panier"], "noteType": "dataSource"}, {"label": ["2e Arrondissement"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279562098", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279562098", "source": "IDREF"}], "variant_access_point": ["Le Panier (2e arrondissement de Marseille)"], "authorized_access_point": "Quartier du Panier (Marseille)"} 1 +2024-09-10 15:47:44.325797 2024-09-10 15:47:44.325801 eb563466-160f-4c4a-9f1e-58b5856b2341 {"md5": "7538ca3d41ab610fa8905ba5ecdf0cb6", "pid": "279571550", "note": [{"label": ["[Ancienne usine électrique, Le Locle] / Adequa (La Chaux-de-Fonds, Neuchâtel, Suisse) photographe, [1980-1990 ?]", "Visualisation sur SITN- Géoportail du système d'information du territoire neuchâtelois https://sitn.ne.ch, 2024-07-24"], "noteType": "dataSource"}, {"label": ["1ère rue orientée nord-sud à l'ouest de l'Hôtel-de-Ville du Locle."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279571550", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279571550", "source": "IDREF"}], "authorized_access_point": "Le Locle (Neuchâtel, Suisse) - Rue Jehan-Droz"} 1 +2024-09-10 15:47:44.383677 2024-09-10 15:47:44.383681 11e7b08a-766a-47b7-9cdb-966f938c3f43 {"md5": "c5be134fb333acfc4f354be6825adba8", "pid": "279571658", "note": [{"label": ["[Ancienne usine électrique, Le Locle] / Adequa (La Chaux-de-Fonds, Neuchâtel, Suisse) photographe, [1980-1990 ?]", "Visualisation sur SITN- Géoportail du système d'information du territoire neuchâtelois https://sitn.ne.ch, 2024-07-24"], "noteType": "dataSource"}, {"label": ["Rue des Jeanneret"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifier": "http://www.idref.fr/279571658", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279571658", "source": "IDREF"}], "authorized_access_point": "Le Locle (Neuchâtel, Suisse)"} 1 diff --git a/data/pidref_pidstore.csv b/data/pidref_pidstore.csv index 1c3e2ea9..885707c1 100644 --- a/data/pidref_pidstore.csv +++ b/data/pidref_pidstore.csv @@ -1,267 +1,861 @@ -2024-07-16 19:07:13.103964 2024-07-16 19:07:13.10397 pidref 027227812 R rec c6442462-17ed-42ff-aa7d-283c154f1eff -2024-07-16 19:07:13.222134 2024-07-16 19:07:13.222138 pidref 027250504 R rec 49096416-cf21-43ac-a77b-325402f05b43 -2024-07-16 19:07:13.270614 2024-07-16 19:07:13.270619 pidref 263259935 R rec c22fd9c5-c6a7-4939-817a-f053a11fd3ae -2024-07-16 19:07:13.316247 2024-07-16 19:07:13.316256 pidref 271321628 R rec 567c537f-8448-4148-b556-7c6f02bd717d -2024-07-16 19:07:13.363028 2024-07-16 19:07:13.363034 pidref 271323337 R rec d7e1a9a8-9cda-4426-a419-8bd02954bc35 -2024-07-16 19:07:13.43768 2024-07-16 19:07:13.437692 pidref 271323353 R rec b31c595a-d2b2-488c-b272-342e37ec7d9b -2024-07-16 19:07:13.518828 2024-07-16 19:07:13.518843 pidref 271323426 R rec 65d6b2de-654f-4531-a681-85b99d144d4c -2024-07-16 19:07:13.599246 2024-07-16 19:07:13.599262 pidref 271323485 R rec d99915f8-08d9-4013-a07b-325b33eec46a -2024-07-16 19:07:13.682615 2024-07-16 19:07:13.682626 pidref 271323515 R rec 5502917f-4fac-4245-8ebf-aeed6e844cb2 -2024-07-16 19:07:13.774474 2024-07-16 19:07:13.774487 pidref 271323523 R rec 97960b8f-bbea-4353-8d90-4d1c6735f660 -2024-07-16 19:07:13.855717 2024-07-16 19:07:13.855732 pidref 271323566 R rec a2008dd5-a197-4174-bd22-80740243fb8f -2024-07-16 19:07:13.936378 2024-07-16 19:07:13.936388 pidref 271323590 R rec a4d7b873-414f-4945-b059-36604815955b -2024-07-16 19:07:14.012336 2024-07-16 19:07:14.012352 pidref 271323663 R rec 260f80c3-cde7-4203-9b79-a38d9c3d0792 -2024-07-16 19:07:14.070419 2024-07-16 19:07:14.070424 pidref 27132368X R rec 8f81982d-b7e3-45bb-9bdd-f4eedd974a40 -2024-07-16 19:07:14.115683 2024-07-16 19:07:14.115695 pidref 271323698 R rec bf17885b-aa8c-4e43-8e52-bb56e1dcfd3d -2024-07-16 19:07:14.169669 2024-07-16 19:07:14.169681 pidref 271323728 R rec 8f6e1c98-024e-4143-b5ec-2c3dceb68f72 -2024-07-16 19:07:14.246206 2024-07-16 19:07:14.246221 pidref 271323752 R rec 66b73efd-194e-4935-8a6e-d3b99ab6bda1 -2024-07-16 19:07:14.322139 2024-07-16 19:07:14.322155 pidref 271323957 R rec d4c68518-7984-4b7c-bf4f-ab5517254407 -2024-07-16 19:07:14.411356 2024-07-16 19:07:14.411373 pidref 271323973 R rec 45fb2325-cdc1-48b7-838a-764734799844 -2024-07-16 19:07:14.485957 2024-07-16 19:07:14.485967 pidref 271324015 R rec b6910b2c-383e-4cab-86dc-6438657a1fb5 -2024-07-16 19:07:14.563445 2024-07-16 19:07:14.563463 pidref 271324031 R rec de5b0b53-70a4-45f1-bbbf-32266e01b856 -2024-07-16 19:07:14.648335 2024-07-16 19:07:14.648349 pidref 271324058 R rec 0e2777bb-1e1c-47d8-81c5-e8bace0ee77e -2024-07-16 19:07:14.728565 2024-07-16 19:07:14.728581 pidref 271324074 R rec 44ff028b-8c98-493a-b5c2-a8eb75fa24e5 -2024-07-16 19:07:14.804443 2024-07-16 19:07:14.804453 pidref 271324562 R rec a7f25165-f11e-4b5d-8cf4-c782161771cf -2024-07-16 19:07:14.888361 2024-07-16 19:07:14.888376 pidref 271326441 R rec 2d430cbd-5f14-4d32-ae76-1bf6086b572c -2024-07-16 19:07:14.986633 2024-07-16 19:07:14.986648 pidref 271326476 R rec 6b5447cb-8db4-437f-93a9-52c98d19e5b6 -2024-07-16 19:07:15.073833 2024-07-16 19:07:15.073845 pidref 271326484 R rec ff1c3a27-75a3-47d8-9416-a7659715a08f -2024-07-16 19:07:15.128158 2024-07-16 19:07:15.128163 pidref 271326506 R rec 535b307a-bdff-4e3d-bc6d-26d30f664bc2 -2024-07-16 19:07:15.171506 2024-07-16 19:07:15.171515 pidref 271326514 R rec cdf07be2-b578-4b3a-95d1-1f76972be4ff -2024-07-16 19:07:15.234255 2024-07-16 19:07:15.234266 pidref 271326522 R rec fdf264ee-be7f-4eb0-af6b-f0ecbb498d3c -2024-07-16 19:07:15.315816 2024-07-16 19:07:15.315831 pidref 271326530 R rec 0fcea29f-08b5-469e-a2a9-4dde023155fa -2024-07-16 19:07:15.388982 2024-07-16 19:07:15.388994 pidref 271326557 R rec 36cac329-b31b-4476-bd24-36ca93898d0c -2024-07-16 19:07:15.480658 2024-07-16 19:07:15.480669 pidref 271326603 R rec da5dfc6f-0190-43ae-afdf-f4a15087f640 -2024-07-16 19:07:15.559161 2024-07-16 19:07:15.559172 pidref 271326670 R rec 6a441b34-d15b-43d7-bd23-817c9527af10 -2024-07-16 19:07:15.64077 2024-07-16 19:07:15.640786 pidref 271326700 R rec ddba7d1e-46d5-4daa-a5c1-f79067857f87 -2024-07-16 19:07:15.722321 2024-07-16 19:07:15.722336 pidref 271326727 R rec 603c305d-aaf7-4e58-af8e-70f0404a22e7 -2024-07-16 19:07:15.798895 2024-07-16 19:07:15.798905 pidref 271326751 R rec c3cd0227-5267-42c5-9e6e-8e081170447e -2024-07-16 19:07:15.874331 2024-07-16 19:07:15.874341 pidref 27132676X R rec 65b312bf-bea0-4764-a551-b9222cbc0e10 -2024-07-16 19:07:15.945708 2024-07-16 19:07:15.945724 pidref 271326778 R rec 3f6cdd5b-c891-4816-891c-09a6b15a49d2 -2024-07-16 19:07:16.027482 2024-07-16 19:07:16.027495 pidref 271326786 R rec 6c6e13f7-a048-4b6d-a6e1-5055cbcc41cf -2024-07-16 19:07:16.105407 2024-07-16 19:07:16.105421 pidref 271326794 R rec a470a2f1-0d97-49dc-a0a1-165b6a8df8f0 -2024-07-16 19:07:16.164573 2024-07-16 19:07:16.164578 pidref 271326808 R rec 20b8743f-2d30-439c-9729-411455590c46 -2024-07-16 19:07:16.212658 2024-07-16 19:07:16.212667 pidref 271326824 R rec f58a2048-5c78-4d3f-8e7a-ac99e0db0a7c -2024-07-16 19:07:16.267678 2024-07-16 19:07:16.26769 pidref 271326832 R rec 2836ca5e-f1d1-4568-a630-e833df5d9587 -2024-07-16 19:07:16.346969 2024-07-16 19:07:16.346979 pidref 271326840 R rec 31cad28d-ba8d-4482-b255-040fa2e01891 -2024-07-16 19:07:16.421139 2024-07-16 19:07:16.421157 pidref 271327383 R rec bec461c9-25b3-4d04-91a8-9a51ab53e24a -2024-07-16 19:07:16.498848 2024-07-16 19:07:16.498863 pidref 271328762 R rec 640db1a7-ed1e-45cd-8599-47ec8cf79cce -2024-07-16 19:07:16.583815 2024-07-16 19:07:16.58383 pidref 271329017 R rec 48b15594-89bd-4e61-b8cb-226b3923fd59 -2024-07-16 19:07:16.668692 2024-07-16 19:07:16.668702 pidref 271329335 R rec 4263505f-5529-4e90-9b93-abe323570586 -2024-07-16 19:07:16.740981 2024-07-16 19:07:16.740994 pidref 271329696 R rec 650fa7ff-20d9-4673-a12e-1ae185050408 -2024-07-16 19:07:16.824067 2024-07-16 19:07:16.824083 pidref 271329734 R rec 47233e7b-dcec-4ad0-b1e1-928c5be63e45 -2024-07-16 19:07:16.905513 2024-07-16 19:07:16.905525 pidref 271329831 R rec ba267968-9d21-43a9-98b8-6396f3b262f3 -2024-07-16 19:07:17.0025 2024-07-16 19:07:17.002517 pidref 271329912 R rec 7b0e5d93-a410-457a-b798-747dace160e4 -2024-07-16 19:07:17.088949 2024-07-16 19:07:17.08896 pidref 271329998 R rec bda14ccd-d286-4bae-a186-2f61cad1c324 -2024-07-16 19:07:17.175193 2024-07-16 19:07:17.175199 pidref 271330031 R rec 0d367724-cce8-4e80-97e3-c7f76d782d31 -2024-07-16 19:07:17.222497 2024-07-16 19:07:17.222502 pidref 271330163 R rec d8077455-a705-4f7d-828b-ece47aaf8356 -2024-07-16 19:07:17.280373 2024-07-16 19:07:17.280385 pidref 271331658 R rec 32a60077-36ae-486a-919a-e5f6375bf481 -2024-07-16 19:07:17.357933 2024-07-16 19:07:17.357949 pidref 271331712 R rec 4f546dfd-d947-49f4-ac99-05004a09c315 -2024-07-16 19:07:17.442187 2024-07-16 19:07:17.4422 pidref 27133181X R rec 68ce01e2-b29b-49e5-aa19-3b968eae3fe0 -2024-07-16 19:07:17.522082 2024-07-16 19:07:17.522097 pidref 271332352 R rec 35315db2-5be9-4f5a-9ee7-ef66af20e329 -2024-07-16 19:07:17.599812 2024-07-16 19:07:17.599828 pidref 271332778 R rec e505c82a-3b57-43f3-ad30-0f9e60eaa4bd -2024-07-16 19:07:17.681614 2024-07-16 19:07:17.681629 pidref 271332824 R rec 0af44eda-4ba2-4398-b132-546f7ed7dbb2 -2024-07-16 19:07:17.76258 2024-07-16 19:07:17.762596 pidref 271333081 R rec 91ae9500-e748-4796-8857-b29c0a9551e1 -2024-07-16 19:07:17.847946 2024-07-16 19:07:17.847956 pidref 271333197 R rec 778098a0-4a5d-4668-8b46-83caf35ee9b3 -2024-07-16 19:07:17.937613 2024-07-16 19:07:17.937623 pidref 271333243 R rec 9e694b23-873b-4f6f-8e18-32f54da0cb43 -2024-07-16 19:07:18.02187 2024-07-16 19:07:18.021884 pidref 271337214 R rec 3384149b-9026-4432-99cf-9af2319bedd9 -2024-07-16 19:44:37.60224 2024-07-16 19:44:37.602291 pidref 027228428 R rec 79686cae-9b97-456a-90c5-6fa9821905d5 -2024-07-16 19:50:12.027823 2024-07-16 19:50:12.027849 pidref 027228959 R rec fde86a53-f276-4b27-b2e9-86bf8eb9b8c5 -2024-07-16 19:50:12.372974 2024-07-16 19:50:12.373078 pidref 097857300 R rec df7470a3-4a4c-4764-a736-13ff99ec85bb -2024-07-16 19:50:13.696167 2024-07-16 19:50:13.696204 pidref 027262162 R rec c61651bf-fe1d-489f-914d-2ed5a5b41356 -2024-07-16 19:50:13.986943 2024-07-16 19:50:13.986965 pidref 027244520 R rec cfc173ce-a487-4c48-8037-fba41401180b -2024-07-16 19:50:14.301128 2024-07-16 19:50:14.301133 pidref 029036690 R rec fc5d899d-21a0-49e9-9917-8a231d9ae24c -2024-07-16 19:50:14.539169 2024-07-16 19:50:14.539187 pidref 027242005 R rec 22ccf69f-23ae-49e3-8f7b-1af6b5dba4f1 -2024-07-16 19:50:14.828423 2024-07-16 19:50:14.828454 pidref 027286703 R rec 62cc25eb-6078-4a3e-9bf2-88a050c3fab2 -2024-07-16 19:50:15.111679 2024-07-16 19:50:15.111706 pidref 027230430 R rec 900dc97f-e1ee-41db-8896-cef2ef1e45e8 -2024-07-16 19:50:18.428724 2024-07-16 19:50:18.428755 pidref 027417298 R rec 2e97864c-1e45-4a73-827b-db52b480a462 -2024-07-16 19:50:18.682219 2024-07-16 19:50:18.682231 pidref 028146239 R rec eafa5534-e77a-45a6-8096-b2ffbc35f340 -2024-07-16 19:50:18.963137 2024-07-16 19:50:18.963158 pidref 027234002 R rec 37da39bd-fa32-4dea-bf05-192501b77fa7 -2024-07-16 19:50:19.251951 2024-07-16 19:50:19.25198 pidref 028992318 R rec 9cb5002f-6530-4a15-9e9c-591f87efce54 -2024-07-16 19:50:20.535467 2024-07-16 19:50:20.535493 pidref 027266060 R rec 9236b8a0-0021-4158-9e42-01e0b9e473e9 -2024-07-16 19:50:21.795222 2024-07-16 19:50:21.795232 pidref 027239365 R rec 892906af-dfc5-4cf0-b1a5-1fb750814498 -2024-07-16 19:50:22.042808 2024-07-16 19:50:22.042843 pidref 144820072 R rec d6beffb6-b9bd-47cf-b272-8251670d80dc -2024-07-16 19:50:23.346915 2024-07-16 19:50:23.346944 pidref 031211097 R rec 8d852b11-8e77-4f27-9415-9d77dfd03250 -2024-07-16 19:50:24.695232 2024-07-16 19:50:24.695265 pidref 027633179 R rec 19e3fd61-0131-461a-bc41-61fb7f8e5e7e -2024-07-16 19:50:24.950318 2024-07-16 19:50:24.950328 pidref 027224694 R rec 7a973b44-b9a4-4254-80f7-33d486477530 -2024-07-16 19:50:25.2007 2024-07-16 19:50:25.200719 pidref 027218562 R rec eaea8879-3f3c-4586-b789-b6fd3155f77d -2024-07-16 19:50:25.482595 2024-07-16 19:50:25.48262 pidref 02721897X R rec 3188f865-a454-4fcd-8e61-394e7171335b -2024-07-16 19:50:25.760285 2024-07-16 19:50:25.760309 pidref 027416925 R rec bdf87b10-4dc2-4151-a156-4a818200a7a1 -2024-07-16 19:50:26.02508 2024-07-16 19:50:26.025091 pidref 02735895X R rec 98020e4e-4083-4cca-ae49-e3d43100866b -2024-07-16 19:50:29.388994 2024-07-16 19:50:29.389027 pidref 157143422 R rec 056d0e08-3369-4ee4-9c4e-c53de7806e70 -2024-07-16 19:50:29.6646 2024-07-16 19:50:29.664618 pidref 027250911 R rec 176e63e8-91a5-4641-a07f-664b47731d94 -2024-07-16 19:50:29.928131 2024-07-16 19:50:29.928151 pidref 027316696 R rec ad5e07bc-f0ab-479b-8a1b-956a24fa705a -2024-07-16 19:50:30.18722 2024-07-16 19:50:30.187227 pidref 027321940 R rec 4717ac1b-c664-4252-8666-c50af420d500 -2024-07-16 19:50:30.420149 2024-07-16 19:50:30.420177 pidref 027443876 R rec 4bbedbc5-733a-44e8-a6c2-24950982ab65 -2024-07-16 19:50:30.679506 2024-07-16 19:50:30.679528 pidref 027375412 R rec 69075d9a-5881-4bce-9a69-6455da15db1c -2024-07-16 19:50:38.101599 2024-07-16 19:50:38.101621 pidref 027220443 R rec 13eb69f4-8734-4be7-8c97-6125372ea0f0 -2024-07-16 19:50:39.451187 2024-07-16 19:50:39.4512 pidref 027259641 R rec c4631823-b376-458d-80c2-65b167fe2ff2 -2024-07-16 19:50:39.680882 2024-07-16 19:50:39.68089 pidref 027407012 R rec baf1cc3e-d892-44db-a685-6dc82603716b -2024-07-16 19:50:39.906785 2024-07-16 19:50:39.906798 pidref 027804151 R rec 45228aa8-75bb-4b82-9051-d8b746da55b4 -2024-07-16 19:50:40.178502 2024-07-16 19:50:40.178529 pidref 02847158X R rec 45551c4e-df0b-482f-a3bc-c11a596bb8c1 -2024-07-16 19:50:40.511632 2024-07-16 19:50:40.511669 pidref 271438436 R rec 65f6f39b-724f-44eb-9b66-64fcfdc164ba -2024-07-16 19:50:48.106108 2024-07-16 19:50:48.106121 pidref 14704233X R rec 580fffec-7dc8-4339-9bb0-c61526207827 -2024-07-16 19:50:49.323966 2024-07-16 19:50:49.323984 pidref 198231288 R rec 9788cf24-132d-4f7c-9565-7ec9dd469a37 -2024-07-16 19:50:49.554741 2024-07-16 19:50:49.554772 pidref 028931491 R rec 4b0a8ff2-70c4-414b-af29-bbf35c5c4173 -2024-07-16 19:50:52.942435 2024-07-16 19:50:52.942469 pidref 029201098 R rec cdb320db-6adc-4102-8d41-6249b41b76dc -2024-07-16 19:50:53.206028 2024-07-16 19:50:53.20605 pidref 027218619 R rec e225850d-7f87-4923-be1b-395afcfd9417 -2024-07-16 19:50:53.459702 2024-07-16 19:50:53.459708 pidref 027228517 R rec 29209b51-4c32-4fd0-841f-e01401e025c5 -2024-07-16 19:50:54.70879 2024-07-16 19:50:54.708825 pidref 027401448 R rec 98811de7-6a02-4c01-8457-a8b7f932b93e -2024-07-16 19:50:54.965051 2024-07-16 19:50:54.965089 pidref 027250938 R rec b4395e3b-33c6-45eb-826e-8cd684b899ef -2024-07-16 19:50:55.238717 2024-07-16 19:50:55.23874 pidref 027849414 R rec 12d7b06b-baff-4339-814a-c1d34c0ac191 -2024-07-16 19:50:55.49383 2024-07-16 19:50:55.493844 pidref 027226042 R rec 0af8f324-b21d-4727-99d5-9d68162bfec1 -2024-07-16 19:50:55.712896 2024-07-16 19:50:55.712934 pidref 027264580 R rec 93a26f6d-2cb8-41eb-8d02-43d8ff4a317b -2024-07-16 19:50:57.039773 2024-07-16 19:50:57.039866 pidref 027437213 R rec 9cb546ec-227f-4699-81c4-327cb57ecb3c -2024-07-16 19:50:57.294228 2024-07-16 19:50:57.294245 pidref 027377768 R rec d9f269e5-a9ad-4f8e-a2bd-1f05930a5313 -2024-07-16 19:50:57.566662 2024-07-16 19:50:57.566719 pidref 027622444 R rec 1cf18ee8-bbe2-45ed-b643-05ce92c43e0a -2024-07-16 19:50:58.879155 2024-07-16 19:50:58.87918 pidref 027252272 R rec 20900220-747e-4f3b-b98f-6654b45756d7 -2024-07-16 19:50:59.159127 2024-07-16 19:50:59.159165 pidref 027263495 R rec 10afd762-5896-43e0-ab35-a41bf5217c41 -2024-07-16 19:51:00.490775 2024-07-16 19:51:00.490781 pidref 02754785X R rec 6bc99c0f-4168-4f70-92bf-dd3db889d696 -2024-07-16 19:51:00.673731 2024-07-16 19:51:00.673736 pidref 027614697 R rec 99863177-b77d-4b12-93c2-5edf466071e4 -2024-07-16 19:51:00.858496 2024-07-16 19:51:00.8585 pidref 027369714 R rec fd179e5d-9721-4945-aa09-720ed13802e6 -2024-07-16 19:51:01.051299 2024-07-16 19:51:01.051302 pidref 030519799 R rec ec1fc548-f70f-4bf5-a04d-0f83dcef879c -2024-07-16 19:51:01.2371 2024-07-16 19:51:01.237106 pidref 071586709 R rec a4390555-79f6-408a-8b74-7f4f3c5d82c7 -2024-07-16 19:51:01.423853 2024-07-16 19:51:01.423858 pidref 02788743X R rec 76f5971c-a4ee-459f-a399-96c710bd0948 -2024-07-16 19:51:01.607763 2024-07-16 19:51:01.607767 pidref 029805287 R rec ca12913a-b36d-443d-8bf5-99cda1da80f0 -2024-07-16 19:51:02.821372 2024-07-16 19:51:02.82138 pidref 161911846 R rec c1c3ffe7-43b2-4e0e-84d5-57af26a4a4e8 -2024-07-16 19:51:03.040837 2024-07-16 19:51:03.040858 pidref 02775751X R rec b7384880-d017-4d0f-b70b-54cddf1b3f6f -2024-07-16 19:51:03.311833 2024-07-16 19:51:03.311867 pidref 028724208 R rec 6bf18d02-ed41-4944-a43c-ba7edc149521 -2024-07-16 19:51:04.59806 2024-07-16 19:51:04.598082 pidref 260966401 R rec d824fd89-0f08-474d-bd96-431b379529eb -2024-07-16 19:51:04.861055 2024-07-16 19:51:04.861087 pidref 26144722X R rec b51fdd1f-cd67-4ef2-a700-2d00909f4944 -2024-07-16 19:51:05.097965 2024-07-16 19:51:05.097997 pidref 027218546 R rec 4b75d431-f9ec-4301-80f2-e38718dc2f4c -2024-07-16 19:51:05.336349 2024-07-16 19:51:05.336375 pidref 027229246 R rec 369512dc-5322-4ff9-a374-6fc1cfd9aa32 -2024-07-16 19:51:05.602839 2024-07-16 19:51:05.602851 pidref 027401421 R rec 9bf8d02f-e84b-4b91-9f30-9d99d9242a6b -2024-07-16 19:51:06.870793 2024-07-16 19:51:06.870811 pidref 027356302 R rec d4df63b1-6205-4fbc-bb51-6e4300336121 -2024-07-16 19:51:10.228852 2024-07-16 19:51:10.22886 pidref 027243222 R rec c9830725-e60d-4c83-a558-6d6536c932de -2024-07-16 19:51:11.491742 2024-07-16 19:51:11.49177 pidref 027222950 R rec 2c562227-1bb9-466d-b93c-f659ce3021ad -2024-07-16 19:51:12.791067 2024-07-16 19:51:12.791103 pidref 027251411 R rec 549f5233-c741-4091-a150-2419531acba2 -2024-07-16 19:51:13.063598 2024-07-16 19:51:13.063622 pidref 027318494 R rec 4ecb0303-0852-4182-85ad-f1b3b65d19a8 -2024-07-16 19:51:16.379232 2024-07-16 19:51:16.379265 pidref 027303063 R rec 40cceb15-26c6-438a-85bf-34c86fdf1061 -2024-07-16 19:51:17.630986 2024-07-16 19:51:17.630991 pidref 027296946 R rec 68b2f0a1-8422-4d1c-9f56-87c68ea8d82d -2024-07-16 19:51:17.826968 2024-07-16 19:51:17.82698 pidref 027250644 R rec 89ca059f-fba1-4bca-90fe-e51bf740fc3e -2024-07-16 19:51:18.009315 2024-07-16 19:51:18.009321 pidref 027267873 R rec cda59b99-d01f-4662-a928-f4856958375a -2024-07-16 19:51:18.194439 2024-07-16 19:51:18.194444 pidref 027252620 R rec 7f4f8505-7534-46e9-a7a6-bb341aa7fe1a -2024-07-16 19:51:18.382139 2024-07-16 19:51:18.382144 pidref 027263762 R rec a7e0e5bb-ff9c-4290-bc7d-82076edf052e -2024-07-16 19:51:18.566821 2024-07-16 19:51:18.566828 pidref 027239497 R rec 1b0440b4-9b65-48de-874f-c99c54121c9a -2024-07-16 19:51:19.866664 2024-07-16 19:51:19.866679 pidref 02725349X R rec 0b8d5e40-1535-4883-a9c2-b30b56c87f42 -2024-07-16 19:51:20.152307 2024-07-16 19:51:20.152334 pidref 027290530 R rec d1d4dbdb-f1b3-4e43-b727-d33e787ac735 -2024-07-16 19:51:23.446859 2024-07-16 19:51:23.448699 pidref 02725108X R rec 6f3946fb-83dd-4781-b711-131f67355d43 -2024-07-16 19:51:23.682758 2024-07-16 19:51:23.682795 pidref 027945774 R rec 7a4067ca-3c4e-4d24-861a-1d6083b46f5a -2024-07-16 19:51:23.944557 2024-07-16 19:51:23.944591 pidref 027311430 R rec d85da3af-257e-4a82-ae3f-26370f30f05c -2024-07-16 19:51:24.209043 2024-07-16 19:51:24.209063 pidref 027405621 R rec ee529ba3-168e-4b46-b5e1-96252bff3f4f -2024-07-16 19:51:24.470888 2024-07-16 19:51:24.470919 pidref 027768678 R rec 46e857b9-6498-48c5-9145-c6c7a4a04baa -2024-07-16 19:51:24.730089 2024-07-16 19:51:24.730122 pidref 261121162 R rec ec9819bf-c9b7-4567-8918-b6f46e6e8027 -2024-07-16 19:51:28.040213 2024-07-16 19:51:28.040231 pidref 25887421X R rec 468f7afb-0feb-4ea0-8cf5-eb8cd89f2052 -2024-07-16 19:51:28.281395 2024-07-16 19:51:28.281426 pidref 027705781 R rec 875fc8bf-9e05-4591-871a-bcc5e2dcfc12 -2024-07-16 19:51:29.605444 2024-07-16 19:51:29.605475 pidref 027524329 R rec f9475d7e-bdad-417a-a1eb-1eb77cfe7bcb -2024-07-16 19:51:29.871272 2024-07-16 19:51:29.871293 pidref 263837920 R rec d5c66526-b63e-4868-90c7-2754d678d425 -2024-07-16 19:51:30.117353 2024-07-16 19:51:30.117361 pidref 264406095 R rec a13d527f-f870-429b-8a12-1b7aed3ce198 -2024-07-16 19:51:30.367736 2024-07-16 19:51:30.367761 pidref 027237664 R rec cb40b83e-3f9f-4742-abce-7493715353f9 -2024-07-16 19:51:30.618426 2024-07-16 19:51:30.618452 pidref 027225488 R rec d38ffdbc-3f1f-4056-8afd-75403bf3ecb5 -2024-07-16 19:51:30.881646 2024-07-16 19:51:30.881672 pidref 027224678 R rec 0f4c6a08-e636-48ae-b5e9-df9faa161a00 -2024-07-16 19:51:31.11726 2024-07-16 19:51:31.117266 pidref 027254755 R rec 5b5eb7d6-9db3-437a-a7e6-12cf321b8b28 -2024-07-16 19:51:31.363069 2024-07-16 19:51:31.363088 pidref 027263711 R rec 370958b0-7e2f-4c16-901d-ff2fde15039e -2024-07-16 19:51:31.655391 2024-07-16 19:51:31.655439 pidref 027224406 R rec fcb3810f-64a7-4ec9-acc0-f8d4cd0d06f3 -2024-07-16 19:51:35.037838 2024-07-16 19:51:35.037866 pidref 02725030X R rec 1f2ad8bb-eeaf-4a0b-85cc-c3327f3ece4f -2024-07-16 19:51:42.558793 2024-07-16 19:51:42.558812 pidref 027429261 R rec ce94e997-c47a-4173-ba64-ea91114f5c85 -2024-07-16 19:51:42.839868 2024-07-16 19:51:42.839879 pidref 027223736 R rec 2b90f5ee-e626-4663-b048-cb41e1f2ffa2 -2024-07-16 19:51:43.054717 2024-07-16 19:51:43.054728 pidref 027251551 R rec 3c63e695-531b-44ab-b12f-a6a00e857d07 -2024-07-16 19:51:43.273536 2024-07-16 19:51:43.273548 pidref 027230309 R rec 3e5040f1-d4eb-4a28-805e-b7d2b6bcd032 -2024-07-16 19:51:43.485119 2024-07-16 19:51:43.485131 pidref 027236668 R rec bd4bddca-b223-498b-a4e4-96241d6edbf0 -2024-07-16 19:51:43.688542 2024-07-16 19:51:43.688549 pidref 028179420 R rec 04fa09c5-aaeb-4f20-86aa-8b8c7556eaa6 -2024-07-16 19:51:43.885179 2024-07-16 19:51:43.885196 pidref 027259285 R rec bc4d09b0-ecb2-4827-9716-8bdeb88159ca -2024-07-16 19:51:45.17317 2024-07-16 19:51:45.17319 pidref 027266257 R rec 4826e8d6-a14f-467d-a743-d9fa67f54597 -2024-07-16 19:51:45.454117 2024-07-16 19:51:45.454141 pidref 027350789 R rec 6df48dc4-0816-4e55-84d8-49b1244e0a4e -2024-07-16 19:51:45.703708 2024-07-16 19:51:45.703721 pidref 027401901 R rec e37de233-0fcd-41e4-9dbb-96fdc6fdea60 -2024-07-16 19:51:53.062434 2024-07-16 19:51:53.062449 pidref 02726369X R rec 3d4658b3-6037-4e43-b52a-7db7bf25c943 -2024-07-16 19:51:53.299341 2024-07-16 19:51:53.299352 pidref 027356949 R rec 8aad575f-ed2b-4045-8d0d-cdf4e6c7f32c -2024-07-16 19:51:54.537029 2024-07-16 19:51:54.53704 pidref 027263487 R rec 6e1f48f6-d601-4229-86b4-609f67e82edb -2024-07-16 19:51:54.786025 2024-07-16 19:51:54.786052 pidref 027408647 R rec 7dd5c95c-945f-4e96-a52c-4f9ffdffe737 -2024-07-16 19:51:55.081838 2024-07-16 19:51:55.081871 pidref 027322998 R rec 33e92444-c036-48ac-8555-78b027a103a0 -2024-07-16 19:51:55.35909 2024-07-16 19:51:55.359105 pidref 031649424 R rec 343baec4-e452-4a2a-a60c-7aadfcb29876 -2024-07-16 19:51:55.581436 2024-07-16 19:51:55.581451 pidref 185110363 R rec 22a9a59c-1b85-435d-a976-ce4cc0884705 -2024-07-16 19:51:56.883833 2024-07-16 19:51:56.883847 pidref 027502368 R rec 049f5003-95a1-429f-ace2-ac448b07cff7 -2024-07-16 19:51:57.097717 2024-07-16 19:51:57.097729 pidref 032861621 R rec a53354b0-12d2-4227-ab5c-5c4e93123e56 -2024-07-16 19:51:57.358562 2024-07-16 19:51:57.358572 pidref 027442128 R rec 16461aec-6e61-4fa7-8633-be273097592d -2024-07-16 19:51:57.567478 2024-07-16 19:51:57.567497 pidref 027472906 R rec 79a8978a-e516-425a-9c69-982516131576 -2024-07-16 19:52:13.342101 2024-07-16 19:52:13.342116 pidref 027585190 R rec 68f52192-43e4-4914-a484-1218e12b3927 -2024-07-16 19:52:13.559214 2024-07-16 19:52:13.559235 pidref 237279614 R rec 996df500-f99d-4da4-ade6-17f5c4d1ccf1 -2024-07-16 19:52:15.367191 2024-07-16 19:52:15.367207 pidref 276534921 R rec 176166c6-3938-4fbd-a8c4-0614a3ee0556 -2024-07-16 19:52:15.61701 2024-07-16 19:52:15.617037 pidref 027342395 R rec 2e234a90-8297-4dac-b8bf-7829c0281965 -2024-07-16 19:52:15.904615 2024-07-16 19:52:15.904635 pidref 027244482 R rec 3d4f273c-7477-4993-b73e-5ffe8d743f98 -2024-07-16 19:52:16.16138 2024-07-16 19:52:16.161394 pidref 027249654 R rec 9b15923f-a207-4731-b40c-6a9264059299 -2024-07-16 19:52:16.394081 2024-07-16 19:52:16.394092 pidref 027250679 R rec 47764638-d38e-480e-a6f3-699a96d0c6c2 -2024-07-16 19:52:16.627261 2024-07-16 19:52:16.62729 pidref 027437221 R rec 3e4d05d5-dffe-4f0e-87c7-c7c8d9a2bb90 -2024-07-16 19:52:17.941231 2024-07-16 19:52:17.94126 pidref 027434141 R rec 59ffe23d-b35f-4c9e-9985-70996dda152d -2024-07-16 19:52:19.259957 2024-07-16 19:52:19.259961 pidref 027801101 R rec 7841dc91-397e-4586-95b6-a44f83b58421 -2024-07-16 19:52:19.485653 2024-07-16 19:52:19.485664 pidref 027256308 R rec 84646520-0d09-42b3-9d81-1587f59da556 -2024-07-16 19:52:20.72878 2024-07-16 19:52:20.728813 pidref 027283518 R rec a815e30a-be70-4d08-b64d-c45777ed0f96 -2024-07-16 19:52:20.991747 2024-07-16 19:52:20.991777 pidref 027316211 R rec 3bb903e3-2daa-482c-b5a5-138ba1d152c7 -2024-07-16 19:52:22.346013 2024-07-16 19:52:22.346021 pidref 027267830 R rec 94303d1e-b64b-4b7d-ab70-01a6317fcfa6 -2024-07-16 19:52:22.585423 2024-07-16 19:52:22.585446 pidref 264645081 R rec e9d708b5-fee3-4477-8f50-6452949e2878 -2024-07-16 19:52:22.864992 2024-07-16 19:52:22.86502 pidref 027236536 R rec 724be9c9-9019-4c46-a752-9f4352e30364 -2024-07-16 19:52:23.125317 2024-07-16 19:52:23.125337 pidref 027252388 R rec 6733dc8e-b802-4235-b0e1-9075f6ed0526 -2024-07-16 19:52:26.435753 2024-07-16 19:52:26.435785 pidref 02724606X R rec 7a10349e-fe87-42c0-a966-edde3ff23357 -2024-07-16 19:52:26.684914 2024-07-16 19:52:26.684931 pidref 114526591 R rec 0a360d10-628d-4f89-be6f-155cea5da51c -2024-07-16 19:52:26.936151 2024-07-16 19:52:26.936193 pidref 02899275X R rec 73bd362d-d096-4428-8d8e-bf41daf21c6d -2024-07-16 19:52:27.200363 2024-07-16 19:52:27.20038 pidref 027367428 R rec 88b6c326-69de-4ad1-b855-057de368bfa9 -2024-07-16 19:52:28.484853 2024-07-16 19:52:28.484864 pidref 027597334 R rec c3e24077-580c-4bce-be99-b2c0ccb3b05e -2024-07-16 19:52:28.717224 2024-07-16 19:52:28.717231 pidref 027218856 R rec 2daea254-8acc-43b5-8f96-cf35f6af501e -2024-07-16 19:52:28.933713 2024-07-16 19:52:28.933735 pidref 157143392 R rec 417af791-ab9a-4626-8449-de300f73bcbe -2024-07-16 19:52:29.173695 2024-07-16 19:52:29.173715 pidref 027226794 R rec aa866d00-dd5f-4ca5-bfbd-967f7dd63dbc -2024-07-16 19:52:29.458688 2024-07-16 19:52:29.45871 pidref 085703419 R rec 916fc359-854b-4dbb-a575-3cf986461b17 -2024-07-16 19:52:30.82027 2024-07-16 19:52:30.82028 pidref 027218767 R rec c52100c3-8266-4b39-a814-91226ce70f55 -2024-07-16 19:52:32.106516 2024-07-16 19:52:32.106533 pidref 028567005 R rec c50d7635-6fc6-4b59-8165-a389ac369a43 -2024-07-16 19:52:33.361161 2024-07-16 19:52:33.361187 pidref 027584763 R rec 864a3656-d82d-49ff-9a0a-3d5a68e3e000 -2024-07-16 19:52:33.633454 2024-07-16 19:52:33.633476 pidref 027468909 R rec 3f203b54-7879-41bc-8d4e-b2b3f974f107 -2024-07-16 19:52:33.892938 2024-07-16 19:52:33.892952 pidref 027218961 R rec fcd5ebca-3740-43d2-bd6a-cc1e38a2638b -2024-07-16 19:52:34.124783 2024-07-16 19:52:34.124816 pidref 264644093 R rec 370dd453-897b-488a-ad3d-9474f124c83e -2024-07-16 19:52:34.391324 2024-07-16 19:52:34.391358 pidref 027237249 R rec ba680d93-932e-4832-852f-60c416a50de9 -2024-07-16 19:52:35.754877 2024-07-16 19:52:35.754897 pidref 027407918 R rec 13e78910-fd64-4e6d-a34f-a5249f3f3c42 -2024-07-16 19:52:36.017931 2024-07-16 19:52:36.017938 pidref 027218597 R rec 48d5cf11-714e-4c1c-bd46-e364b8c69da1 -2024-07-16 19:52:36.244133 2024-07-16 19:52:36.244143 pidref 027238180 R rec 9d40f415-7a1a-4579-a19e-6ed148794b76 -2024-07-16 19:52:36.51361 2024-07-16 19:52:36.513634 pidref 027224651 R rec 20afeb77-12f9-418f-a227-38ef91ca5605 -2024-07-16 19:52:36.759906 2024-07-16 19:52:36.759919 pidref 027250636 R rec d4c3c98c-8cb1-43ff-8bee-5d18ab9bef8c -2024-07-16 19:52:36.984399 2024-07-16 19:52:36.984418 pidref 055302149 R rec b016b38c-f1aa-476a-adaf-72caaf60d12c -2024-07-16 19:52:37.225999 2024-07-16 19:52:37.226018 pidref 030575257 R rec 734dff6e-f0d6-4117-bd7d-0c4e10f5e7cf -2024-07-16 19:52:38.5056 2024-07-16 19:52:38.505638 pidref 027275922 R rec 82b045c1-2f60-4a0d-8261-2758d1ac3626 -2024-07-16 19:52:41.762747 2024-07-16 19:52:41.762752 pidref 027360199 R rec 1eac1f76-2822-4d2c-9b36-cd7e019dfd06 -2024-07-16 19:52:41.95569 2024-07-16 19:52:41.955697 pidref 027377067 R rec e091fb1d-0340-45bf-a1ab-fcdf790c138d -2024-07-16 19:52:42.145412 2024-07-16 19:52:42.145417 pidref 027501418 R rec 03aac9cd-04c1-4018-a474-6e82f9024181 -2024-07-16 19:52:42.33458 2024-07-16 19:52:42.334589 pidref 027252361 R rec 7e9f2040-ac84-45d7-94b4-88b40786702b -2024-07-16 19:52:42.521805 2024-07-16 19:52:42.521811 pidref 027251659 R rec fa8cf78a-e57e-4148-b3d4-ba3284961c33 -2024-07-16 19:52:42.713151 2024-07-16 19:52:42.713158 pidref 027252124 R rec ddab4828-8a62-468a-95e5-8c8368f6c437 -2024-07-16 19:52:42.901855 2024-07-16 19:52:42.90187 pidref 027375080 R rec 05e8d4d9-2568-4962-a3b6-dca5f9ba90ff -2024-07-16 19:52:43.123308 2024-07-16 19:52:43.123319 pidref 027526836 R rec f3797483-51ee-4d1e-a455-e903de2f8340 -2024-07-16 19:52:43.333336 2024-07-16 19:52:43.333348 pidref 028988310 R rec bb622110-06f1-4d3f-b554-175b45595aac -2024-07-16 19:52:46.609621 2024-07-16 19:52:46.609643 pidref 276510216 R rec 49199b87-60fc-42e1-9739-b05d7a730dd8 -2024-07-16 19:52:46.834606 2024-07-16 19:52:46.834614 pidref 02722953X R rec deea4ba8-c68a-486e-bcc6-4a77208812de -2024-07-16 19:52:47.087862 2024-07-16 19:52:47.087882 pidref 027331180 R rec 6efe17bf-fc69-42c8-ad32-137f11c91be0 -2024-07-16 19:52:48.454435 2024-07-16 19:52:48.454447 pidref 027259234 R rec 54f8b542-2fa5-433e-9657-a8e5b189bb69 -2024-07-16 19:52:48.674404 2024-07-16 19:52:48.674422 pidref 02724301X R rec cc572724-77bf-4852-a397-8cc99f4f40b5 -2024-07-16 19:52:48.900365 2024-07-16 19:52:48.900375 pidref 027234592 R rec 6f941ab5-77c6-4d69-beaa-aa747fed2c70 -2024-07-16 19:52:49.112366 2024-07-16 19:52:49.112391 pidref 02726453X R rec 9da3d4c5-b09c-4a6b-888b-c36eaa252043 -2024-07-16 19:52:49.390331 2024-07-16 19:52:49.390369 pidref 027223779 R rec ab37e8a0-b297-4698-a829-778f51583f91 -2024-07-16 19:52:49.662936 2024-07-16 19:52:49.66295 pidref 027259978 R rec 31357796-3334-49a9-a92c-875d022d44b4 -2024-07-16 19:52:51.002544 2024-07-16 19:52:51.002556 pidref 027241912 R rec 0dc36102-238a-4572-b0a4-9b72aa3d5efc -2024-07-16 19:52:51.234492 2024-07-16 19:52:51.234514 pidref 027255123 R rec 9efd2e17-fc5f-4444-8469-fedd41accd1e -2024-07-16 19:52:51.501444 2024-07-16 19:52:51.501468 pidref 027333752 R rec 31040aee-4ef1-4f81-a327-2677eed0652c -2024-07-16 19:52:51.765547 2024-07-16 19:52:51.765568 pidref 027262952 R rec 0905c478-1047-4914-931b-4af7b0f82cb7 -2024-07-16 19:52:51.994269 2024-07-16 19:52:51.994296 pidref 027263061 R rec fe9922c3-2755-477e-8d6a-dd0818bb93ba -2024-07-16 19:52:53.264836 2024-07-16 19:52:53.264866 pidref 027323072 R rec 3360e2fb-074a-42db-980f-7ee9a2d34072 -2024-07-16 19:52:53.529016 2024-07-16 19:52:53.529051 pidref 027465012 R rec 24b49249-da59-4433-ac69-2280870fbdc1 -2024-07-16 19:52:53.790855 2024-07-16 19:52:53.790873 pidref 027810674 R rec 749d3a8c-261a-4816-b60d-b2535fa68890 -2024-07-16 19:52:54.058867 2024-07-16 19:52:54.058902 pidref 027502333 R rec 45bff10e-be4a-45b9-b8c4-bd367f83acda -2024-07-16 19:52:54.333148 2024-07-16 19:52:54.333183 pidref 028706536 R rec 0cf0c17f-5961-4182-9489-be8a85c9d264 -2024-07-16 19:52:54.605906 2024-07-16 19:52:54.60594 pidref 027501302 R rec ffc8896e-2119-454f-b4a7-fab00fa773cb -2024-07-16 19:52:54.873329 2024-07-16 19:52:54.873354 pidref 033640874 R rec 0508a40d-4225-4b75-9af0-5759d4dd9d46 -2024-07-16 19:52:55.116585 2024-07-16 19:52:55.116613 pidref 02763857X R rec 5b07b128-f993-4894-b86c-de5b5a230658 -2024-07-16 19:52:55.390747 2024-07-16 19:52:55.390777 pidref 02773417X R rec 8f6907e3-0d41-4ddf-bebc-30d573017f01 -2024-07-16 19:52:55.674254 2024-07-16 19:52:55.674281 pidref 027483304 R rec c6d1416a-dfe3-474b-9edb-a61414a76d7b -2024-07-16 19:52:56.942152 2024-07-16 19:52:56.942166 pidref 085560839 R rec a13bbee0-9525-481c-95c5-1af156cfcf1f -2024-07-16 19:52:57.444955 2024-07-16 19:52:57.444967 pidref 264287010 R rec b799a179-6616-4e58-88fc-d68ff5b03897 -2024-07-16 19:52:57.673175 2024-07-16 19:52:57.673187 pidref 110868056 R rec 3f571b32-6b4d-47ab-9ecb-01dc5f4a4d26 -2024-07-16 19:52:57.914366 2024-07-16 19:52:57.914392 pidref 275775569 R rec 1c163d59-d641-449f-87f8-f6cca41b4dfa -2024-07-16 19:52:58.185379 2024-07-16 19:52:58.185394 pidref 127372547 R rec 25d467d4-29b8-4910-b61c-74cacd2fdabc -2024-07-16 19:52:58.449713 2024-07-16 19:52:58.449744 pidref 116317825 R rec 25f6c7d4-fae7-461e-b16e-c72be43a19ca -2024-07-16 19:52:58.71336 2024-07-16 19:52:58.713389 pidref 150220200 R rec bd9cb1b0-258b-4222-95bb-943949f787f1 -2024-07-16 19:52:58.968508 2024-07-16 19:52:58.968522 pidref 116459425 R rec cc5d3479-1c43-4ddc-8137-1471dd0b55ad +2024-09-10 15:46:48.101446 2024-09-10 15:46:48.101453 pidref 027218562 R rec 58576f86-a6af-4b78-b4f4-005b6a8a27fc +2024-09-10 15:46:48.232785 2024-09-10 15:46:48.232791 pidref 027218856 R rec 0398b75c-5366-4980-810a-6654ccd956f3 +2024-09-10 15:46:48.296345 2024-09-10 15:46:48.29635 pidref 027219224 R rec ee719a2f-ad39-4d32-9cb1-98547fff89b0 +2024-09-10 15:46:48.350525 2024-09-10 15:46:48.350531 pidref 027219631 R rec bee534aa-193e-4521-896a-0578fd086405 +2024-09-10 15:46:48.404332 2024-09-10 15:46:48.404337 pidref 027220389 R rec 38fe4f46-0f1c-4c56-9390-3ffd0e6bfe4d +2024-09-10 15:46:48.461567 2024-09-10 15:46:48.461572 pidref 027222608 R rec 2c71c7ce-784c-48c9-9502-e9b7b85fcfef +2024-09-10 15:46:48.534708 2024-09-10 15:46:48.534716 pidref 027222950 R rec b6fcc039-91ed-4270-a472-d2af5fa68e9e +2024-09-10 15:46:48.593633 2024-09-10 15:46:48.593638 pidref 027223736 R rec 66be8ce5-598f-4542-bd41-e1c3fe0e45c1 +2024-09-10 15:46:48.646671 2024-09-10 15:46:48.646678 pidref 027223760 R rec 0fb4130f-2af4-4e6a-871b-18c092b259d7 +2024-09-10 15:46:48.709033 2024-09-10 15:46:48.709041 pidref 027223779 R rec 10b1b275-be74-4f29-93a2-65a2c233465d +2024-09-10 15:46:48.765621 2024-09-10 15:46:48.765626 pidref 027224570 R rec a281a707-16f6-4c93-8fbf-db05e805e71d +2024-09-10 15:46:48.821417 2024-09-10 15:46:48.821422 pidref 027225399 R rec fd64ad04-7c6e-4dd8-9682-70efd4ed5ba9 +2024-09-10 15:46:48.877761 2024-09-10 15:46:48.877766 pidref 027225984 R rec e05005b0-080f-4cd9-ac85-308a5c8d1145 +2024-09-10 15:46:48.933797 2024-09-10 15:46:48.933802 pidref 027227472 R rec a0f499ff-cbf3-4689-b60b-c38ac5d1ee68 +2024-09-10 15:46:48.990448 2024-09-10 15:46:48.990454 pidref 027227871 R rec ee1116eb-1044-4057-8c95-a7f43a82325b +2024-09-10 15:46:49.045339 2024-09-10 15:46:49.045344 pidref 027228878 R rec a831b6d2-5f26-446d-8a1c-18efb97f3c52 +2024-09-10 15:46:49.099551 2024-09-10 15:46:49.099554 pidref 027229211 R rec 02011aec-ea80-4e43-b3d8-bf2d87061363 +2024-09-10 15:46:49.15267 2024-09-10 15:46:49.152674 pidref 027230309 R rec 6915a76f-0fdc-49b1-b898-48c0c0724e82 +2024-09-10 15:46:49.209201 2024-09-10 15:46:49.209206 pidref 027230422 R rec 0b6c3d2f-668a-4232-81b7-af85958351da +2024-09-10 15:46:49.262964 2024-09-10 15:46:49.262972 pidref 027230430 R rec 2a0c4d2e-e99e-44de-a4d8-0949c82d3dfd +2024-09-10 15:46:49.327131 2024-09-10 15:46:49.327136 pidref 027231585 R rec c70a0ab5-c279-4172-a436-2ae2644f82d4 +2024-09-10 15:46:49.392914 2024-09-10 15:46:49.39292 pidref 027234274 R rec 4ce13979-adda-48ce-b4fc-4fb8eb3f4a66 +2024-09-10 15:46:49.451373 2024-09-10 15:46:49.451379 pidref 027234592 R rec 59f57ec5-621b-4688-979c-18548c03dd5e +2024-09-10 15:46:49.507653 2024-09-10 15:46:49.507658 pidref 027235769 R rec 3ffa8ef0-bcc4-4670-85a6-a50ab179c93d +2024-09-10 15:46:49.563689 2024-09-10 15:46:49.563694 pidref 027236153 R rec 05d501aa-0346-4f3a-9057-1dfc392e4d0b +2024-09-10 15:46:49.617021 2024-09-10 15:46:49.617027 pidref 027236668 R rec 1f42b7b3-67b3-42d6-b673-e254514173ce +2024-09-10 15:46:49.673426 2024-09-10 15:46:49.673429 pidref 027237257 R rec ccf0b6f9-2a1f-4eb8-ba25-4c6d1410d478 +2024-09-10 15:46:49.729633 2024-09-10 15:46:49.729639 pidref 027238423 R rec dd715df4-a7c2-4805-92ed-c60ac844abc6 +2024-09-10 15:46:49.782129 2024-09-10 15:46:49.782135 pidref 027239365 R rec b79d94f8-d89d-4467-b497-28f1582e8ad1 +2024-09-10 15:46:49.840917 2024-09-10 15:46:49.840922 pidref 027240525 R rec d30341a4-9ab3-42e5-9129-da0f657f2a74 +2024-09-10 15:46:49.898233 2024-09-10 15:46:49.89824 pidref 027241912 R rec 39eba221-bf8c-4fd2-b0d6-9b7eb280efac +2024-09-10 15:46:49.95957 2024-09-10 15:46:49.959576 pidref 027242005 R rec d9633309-b314-4940-951c-3ba6a9a1ba4a +2024-09-10 15:46:50.047132 2024-09-10 15:46:50.047144 pidref 027242676 R rec 4ebcda68-2262-4657-8f6b-2775bf3c45ab +2024-09-10 15:46:50.104052 2024-09-10 15:46:50.104057 pidref 027243265 R rec 5f8cdcb5-e20e-4591-9234-b9f225e10ddc +2024-09-10 15:46:50.160819 2024-09-10 15:46:50.160824 pidref 02724606X R rec 06afe6b8-0fc7-4458-8319-38bd0a5908d1 +2024-09-10 15:46:50.215741 2024-09-10 15:46:50.215747 pidref 027247740 R rec 75999ef3-006a-477e-94ca-41b7660c4c46 +2024-09-10 15:46:50.270091 2024-09-10 15:46:50.270097 pidref 027248704 R rec d911e8d4-88ed-4f24-bbac-e02e396ee8b4 +2024-09-10 15:46:50.327139 2024-09-10 15:46:50.327144 pidref 027248933 R rec bb853d69-85f9-461f-afbc-b9e836ab8125 +2024-09-10 15:46:50.381343 2024-09-10 15:46:50.381348 pidref 027250199 R rec 959e5179-a039-457a-90f4-aecc38a93443 +2024-09-10 15:46:50.44168 2024-09-10 15:46:50.441686 pidref 027250210 R rec 17a30188-7c51-4347-87ec-450a2ca8ff6a +2024-09-10 15:46:50.497327 2024-09-10 15:46:50.497337 pidref 027250245 R rec 1b94476d-4e77-4d31-bbf4-d0d57f210053 +2024-09-10 15:46:50.552683 2024-09-10 15:46:50.552689 pidref 027250393 R rec 64e53139-8d48-490a-a904-c3c7ef7f5621 +2024-09-10 15:46:50.642157 2024-09-10 15:46:50.642163 pidref 027250407 R rec af66a3a5-1f3b-4e87-a51c-04f4a7d42323 +2024-09-10 15:46:50.70167 2024-09-10 15:46:50.701676 pidref 027250547 R rec 129d01ea-37ca-4825-939f-dd0ae5efebfd +2024-09-10 15:46:50.760207 2024-09-10 15:46:50.760213 pidref 027250636 R rec 514318d8-a6f1-4312-9f94-8751ae2d926e +2024-09-10 15:46:50.815103 2024-09-10 15:46:50.815108 pidref 027250695 R rec 06f18400-786c-4d27-b4fa-0d01d10835a9 +2024-09-10 15:46:50.877108 2024-09-10 15:46:50.877113 pidref 027250857 R rec 9dd6ebe4-aec4-48b0-b256-c691af0b6ae4 +2024-09-10 15:46:50.931552 2024-09-10 15:46:50.931557 pidref 027250873 R rec 4aacb07f-5062-497d-9d4c-aac457fd9236 +2024-09-10 15:46:50.988632 2024-09-10 15:46:50.988637 pidref 02725089X R rec d8e4edbe-fc80-44cc-a904-6865f367ee2f +2024-09-10 15:46:51.052173 2024-09-10 15:46:51.052177 pidref 02725108X R rec 1333e804-084f-454d-a009-1ddaa7a805f8 +2024-09-10 15:46:51.111049 2024-09-10 15:46:51.111054 pidref 027251160 R rec f2ed088d-7be9-4aac-a7d4-8b81692b43db +2024-09-10 15:46:51.171677 2024-09-10 15:46:51.171682 pidref 027251594 R rec 3434976c-50a4-4cd0-bcbc-b268cba2c66a +2024-09-10 15:46:51.239804 2024-09-10 15:46:51.239808 pidref 027251659 R rec b77664a2-f046-4793-a2b3-78c8669689d3 +2024-09-10 15:46:51.297592 2024-09-10 15:46:51.297598 pidref 027251810 R rec a3d28faf-bd95-4ed9-9105-b52f8b377cef +2024-09-10 15:46:51.358669 2024-09-10 15:46:51.358674 pidref 027251861 R rec 4adf6fea-026f-417f-9c82-0adb1c69762c +2024-09-10 15:46:51.415124 2024-09-10 15:46:51.41513 pidref 027252132 R rec 1ebe9e02-5663-4940-a60a-893c4f0bbd2d +2024-09-10 15:46:51.48148 2024-09-10 15:46:51.481485 pidref 027252175 R rec bd7d4cae-c009-498b-9031-a83f502370be +2024-09-10 15:46:51.539748 2024-09-10 15:46:51.539756 pidref 027252272 R rec 2713dbf3-b8cf-4bd0-9cea-a528dccd7fdc +2024-09-10 15:46:51.597969 2024-09-10 15:46:51.597975 pidref 027252485 R rec 59dca4db-1559-4926-9c8c-fbdbbdaee03d +2024-09-10 15:46:51.656835 2024-09-10 15:46:51.65684 pidref 027252620 R rec 093f0c72-cb6a-4907-bf2a-bb6b24613c6e +2024-09-10 15:46:51.716083 2024-09-10 15:46:51.716091 pidref 027252728 R rec 0355ce84-79dc-4a32-8cc6-8b0f617ba926 +2024-09-10 15:46:51.795622 2024-09-10 15:46:51.795628 pidref 027255697 R rec 0e9280ac-3e03-4a06-bc0c-0a3254b0d5e6 +2024-09-10 15:46:51.873008 2024-09-10 15:46:51.873013 pidref 027256693 R rec ad2a20a2-73cc-4ad0-9dbe-a232be123cf1 +2024-09-10 15:46:51.936906 2024-09-10 15:46:51.936912 pidref 027257525 R rec 48e7ee41-558b-4c21-b45d-5479cc8385fc +2024-09-10 15:46:52.006386 2024-09-10 15:46:52.006392 pidref 027259641 R rec 5db057c7-31a1-4776-b9c0-e28694040e0f +2024-09-10 15:46:52.069836 2024-09-10 15:46:52.069841 pidref 027259811 R rec 29914ef0-0e54-4d0a-a1ff-34148aea8c6f +2024-09-10 15:46:52.127286 2024-09-10 15:46:52.127292 pidref 027260011 R rec 305809fb-c617-4d25-9418-21eba2e6a7b1 +2024-09-10 15:46:52.187448 2024-09-10 15:46:52.187453 pidref 02726002X R rec b2b44207-03b9-4779-adbc-3ce44ccc10ae +2024-09-10 15:46:52.2472 2024-09-10 15:46:52.247206 pidref 027260461 R rec edfc585b-89de-4b2c-b378-2688b9ddd372 +2024-09-10 15:46:52.328016 2024-09-10 15:46:52.328021 pidref 027260607 R rec 154bca6b-9dde-4004-bc67-fb9356273b23 +2024-09-10 15:46:52.406847 2024-09-10 15:46:52.406851 pidref 027261050 R rec da7a19e2-0972-4e14-9411-9e1ca8b424c2 +2024-09-10 15:46:52.488755 2024-09-10 15:46:52.48876 pidref 027261204 R rec facee372-8a8e-462d-83d3-0cb575ae8648 +2024-09-10 15:46:52.550617 2024-09-10 15:46:52.550628 pidref 027261336 R rec 4fe2342b-819e-4029-bddf-42ebb38fd7c2 +2024-09-10 15:46:52.610016 2024-09-10 15:46:52.610022 pidref 027261417 R rec 01725b4e-c3db-4325-a262-ca341c9aae7b +2024-09-10 15:46:52.672709 2024-09-10 15:46:52.672714 pidref 027261530 R rec 2a4923f9-8cc5-4480-bb51-24b79e01d5f6 +2024-09-10 15:46:52.726519 2024-09-10 15:46:52.726524 pidref 027262111 R rec bcddd639-ff42-4f55-ab2b-ff026bf6aa11 +2024-09-10 15:46:52.782765 2024-09-10 15:46:52.782771 pidref 027262464 R rec 06728372-9f89-431a-ad2f-ccd3bce7935d +2024-09-10 15:46:52.847378 2024-09-10 15:46:52.847384 pidref 027262545 R rec efcb76d6-398b-455a-add6-b6e77354d241 +2024-09-10 15:46:52.914645 2024-09-10 15:46:52.914652 pidref 027262685 R rec fbf3e582-7aa8-4c13-8e94-4fea7f4d98a9 +2024-09-10 15:46:52.974914 2024-09-10 15:46:52.974919 pidref 027263053 R rec 9f6f692c-16de-4e60-851d-975bc04ba8f7 +2024-09-10 15:46:53.043921 2024-09-10 15:46:53.043926 pidref 027263118 R rec 70880647-7ba9-4fa8-b486-76bdb1cc8643 +2024-09-10 15:46:53.103662 2024-09-10 15:46:53.103668 pidref 027263193 R rec 4a516d7b-a843-4f42-88d8-24f46d53f21e +2024-09-10 15:46:53.162293 2024-09-10 15:46:53.162298 pidref 027263495 R rec 97186025-f972-4b3d-887c-26b559640002 +2024-09-10 15:46:53.221551 2024-09-10 15:46:53.221557 pidref 027263746 R rec ae5642bf-625e-4397-8181-39169a49d8a2 +2024-09-10 15:46:53.28623 2024-09-10 15:46:53.286235 pidref 027263762 R rec e6713ada-49f1-4171-9703-879f7e8a0c14 +2024-09-10 15:46:53.344513 2024-09-10 15:46:53.344519 pidref 027263789 R rec e78c46bc-c672-4790-94ae-1eb5a520d46f +2024-09-10 15:46:53.406641 2024-09-10 15:46:53.406647 pidref 027263878 R rec 30507923-f775-43a6-a71a-072b15a2d77a +2024-09-10 15:46:53.470875 2024-09-10 15:46:53.470883 pidref 027264602 R rec 931638b9-999b-4031-abf5-32cedfd61403 +2024-09-10 15:46:53.535469 2024-09-10 15:46:53.535475 pidref 027265013 R rec 1a82a1e8-dbd9-41e1-b32c-855d2c729511 +2024-09-10 15:46:53.606905 2024-09-10 15:46:53.60691 pidref 027266060 R rec 1fe2ca04-757e-4a6c-87a0-f9753c9cae38 +2024-09-10 15:46:53.662601 2024-09-10 15:46:53.662607 pidref 027267873 R rec 0d1e2ae5-ea66-4178-820a-754352f78a36 +2024-09-10 15:46:53.721648 2024-09-10 15:46:53.721654 pidref 027274241 R rec 3fc7370f-a5cc-449b-80d0-fece18291b54 +2024-09-10 15:46:53.78221 2024-09-10 15:46:53.782216 pidref 027274365 R rec 921ee797-ae78-4e9c-9041-71099333e81d +2024-09-10 15:46:53.85068 2024-09-10 15:46:53.850686 pidref 027274985 R rec f0709664-1427-4253-81eb-7c7a741b6b00 +2024-09-10 15:46:53.917934 2024-09-10 15:46:53.91794 pidref 027275191 R rec d923290a-61b1-4e69-87d4-7cb33bc335ec +2024-09-10 15:46:53.982452 2024-09-10 15:46:53.982457 pidref 027283496 R rec 22eac44c-ef0f-4e52-b935-de00724db322 +2024-09-10 15:46:54.048391 2024-09-10 15:46:54.048397 pidref 027283518 R rec c47f6d76-ea3d-4fcc-9f1a-6e4cab8c903a +2024-09-10 15:46:54.109942 2024-09-10 15:46:54.109947 pidref 027286703 R rec 968d83e7-8b8c-40cb-8334-e2d78afa75a7 +2024-09-10 15:46:54.169013 2024-09-10 15:46:54.169018 pidref 027286835 R rec 7b56d47c-417b-4417-b738-843a667ad895 +2024-09-10 15:46:54.223281 2024-09-10 15:46:54.223286 pidref 027288951 R rec 6fd70599-9397-4b5c-9779-5c886ba4256e +2024-09-10 15:46:54.281367 2024-09-10 15:46:54.281375 pidref 027290530 R rec 5494c09e-1fbd-49a4-9fea-2d2765b6a853 +2024-09-10 15:46:54.340254 2024-09-10 15:46:54.34026 pidref 027291499 R rec 5af41e7a-0db9-46e3-81e8-bf7eb7453107 +2024-09-10 15:46:54.492633 2024-09-10 15:46:54.492637 pidref 027296946 R rec 5d3598f4-4805-460d-b9c1-757bbd269156 +2024-09-10 15:46:54.556825 2024-09-10 15:46:54.55683 pidref 027296970 R rec af3e752d-0cc1-407d-98ad-5b0540650867 +2024-09-10 15:46:54.610938 2024-09-10 15:46:54.610944 pidref 027297810 R rec fe314929-f238-4ec5-a966-9c3b73974317 +2024-09-10 15:46:54.673841 2024-09-10 15:46:54.673846 pidref 027298531 R rec 2c21c0df-d14d-4dfc-8507-45ceffd81e1d +2024-09-10 15:46:54.729994 2024-09-10 15:46:54.73 pidref 027298728 R rec b90c47e8-7060-4107-b589-8c002d1898a1 +2024-09-10 15:46:54.789324 2024-09-10 15:46:54.789333 pidref 027308561 R rec 2bcdc79f-581a-479d-a844-36ec9bd0e84b +2024-09-10 15:46:54.864527 2024-09-10 15:46:54.864533 pidref 027311058 R rec dcbcb568-aa96-47bd-9113-9b7e9615e307 +2024-09-10 15:46:54.917781 2024-09-10 15:46:54.917787 pidref 027311430 R rec bd7c335c-e109-4570-bbaa-a19dc8275b48 +2024-09-10 15:46:54.97729 2024-09-10 15:46:54.977296 pidref 027311694 R rec 8263de2f-ca7a-40d1-8877-9a3a150bbbf5 +2024-09-10 15:46:55.032092 2024-09-10 15:46:55.032098 pidref 027314049 R rec 1d718ba8-145f-4582-9d73-d223d0aef483 +2024-09-10 15:46:55.095753 2024-09-10 15:46:55.095759 pidref 027316696 R rec 7809d12f-a9da-4154-a1c9-2dab6ff50555 +2024-09-10 15:46:55.161798 2024-09-10 15:46:55.161804 pidref 027316866 R rec 7b77c0c7-db06-401b-a7de-c52894c80302 +2024-09-10 15:46:55.219141 2024-09-10 15:46:55.219147 pidref 027321940 R rec dfb3efb6-3aeb-4841-afe1-14cf03df8343 +2024-09-10 15:46:55.280992 2024-09-10 15:46:55.280998 pidref 027323072 R rec 32f77094-fe0c-4a41-8a34-6f7f93a402b5 +2024-09-10 15:46:55.338715 2024-09-10 15:46:55.33872 pidref 027326977 R rec fc8a1af5-9e4d-4e78-a116-22cd138bac23 +2024-09-10 15:46:55.401709 2024-09-10 15:46:55.401715 pidref 027333752 R rec 5798d668-38ec-433e-922b-1746bde29664 +2024-09-10 15:46:55.472651 2024-09-10 15:46:55.472656 pidref 027334279 R rec 04b76ac0-491b-41d8-a17d-67eb14a07659 +2024-09-10 15:46:55.538723 2024-09-10 15:46:55.538729 pidref 027340880 R rec e9f3c66e-8b17-43ce-aad6-939d63697032 +2024-09-10 15:46:55.60159 2024-09-10 15:46:55.601596 pidref 027341046 R rec a82e29bf-dc72-4cbd-99ae-c3ffd0cd922b +2024-09-10 15:46:55.655981 2024-09-10 15:46:55.655986 pidref 027341879 R rec e14852fd-bed8-4e4d-a304-03bc76c545be +2024-09-10 15:46:55.715985 2024-09-10 15:46:55.715991 pidref 027345483 R rec ab9977ad-512c-4aa4-a8d8-fdf9393e4545 +2024-09-10 15:46:55.771528 2024-09-10 15:46:55.771532 pidref 027348695 R rec 91cb0c7c-8164-4059-ae9f-86cffb0b8480 +2024-09-10 15:46:55.83371 2024-09-10 15:46:55.833716 pidref 027349004 R rec 85b4c5af-2513-45ee-87a7-0e5795459f0b +2024-09-10 15:46:55.901957 2024-09-10 15:46:55.901963 pidref 027350169 R rec 5a15cab4-9386-498d-9bbb-88257a4b0e48 +2024-09-10 15:46:55.958915 2024-09-10 15:46:55.958921 pidref 027350843 R rec a385f719-46f9-45df-ae31-dea3db7ed50e +2024-09-10 15:46:56.027426 2024-09-10 15:46:56.027431 pidref 027350991 R rec bc01ab75-091d-4491-b373-2be64df896df +2024-09-10 15:46:56.08666 2024-09-10 15:46:56.086666 pidref 027351076 R rec d9b617e9-20b7-4cdf-9831-63b224f4fd1c +2024-09-10 15:46:56.171024 2024-09-10 15:46:56.17103 pidref 027353990 R rec 639e21bf-80d4-42ed-a1b4-e6c1dca58edf +2024-09-10 15:46:56.238285 2024-09-10 15:46:56.238291 pidref 027356388 R rec 57c54a32-13a8-4755-8330-377b660b5ac7 +2024-09-10 15:46:56.298887 2024-09-10 15:46:56.298893 pidref 027358100 R rec 8b9f3da4-793e-41b3-b949-52cd760519d9 +2024-09-10 15:46:56.371339 2024-09-10 15:46:56.371344 pidref 027358232 R rec 1e8e303a-b4bd-439b-a1bf-e08f1d5a807d +2024-09-10 15:46:56.433399 2024-09-10 15:46:56.433406 pidref 027358305 R rec dff53b78-b91e-449a-b7f5-1dc831d14ad1 +2024-09-10 15:46:56.493388 2024-09-10 15:46:56.493394 pidref 027358321 R rec 55eb5778-dc54-4872-a496-8c15b414f73a +2024-09-10 15:46:56.552694 2024-09-10 15:46:56.5527 pidref 027358399 R rec d59e74ab-d819-4adb-970d-bde526187efc +2024-09-10 15:46:56.61496 2024-09-10 15:46:56.614966 pidref 027359336 R rec 1a8ef252-8880-475c-af45-56b3b7c25a78 +2024-09-10 15:46:56.686974 2024-09-10 15:46:56.68698 pidref 027360199 R rec d9e3d495-ca53-4c56-89ff-2e71e0846a44 +2024-09-10 15:46:56.746574 2024-09-10 15:46:56.74658 pidref 027360881 R rec 2bc391bd-1626-4fd1-aa74-274e3c7933ad +2024-09-10 15:46:56.805973 2024-09-10 15:46:56.805979 pidref 027366456 R rec c8e6f182-d407-4582-b07c-8ab450f0bd7a +2024-09-10 15:46:56.866544 2024-09-10 15:46:56.866549 pidref 027366936 R rec 94583457-818d-4103-88f0-2c65941df4a3 +2024-09-10 15:46:56.925501 2024-09-10 15:46:56.925509 pidref 02736819X R rec 6e498e75-38bd-4d0d-b841-3e979a9b6fdf +2024-09-10 15:46:56.98923 2024-09-10 15:46:56.989239 pidref 027368343 R rec a01ab7af-10a0-4518-9117-c74e162a969b +2024-09-10 15:46:57.046614 2024-09-10 15:46:57.046619 pidref 027368785 R rec 3de757f8-42f2-454e-b5d4-bd82a9869482 +2024-09-10 15:46:57.107177 2024-09-10 15:46:57.107181 pidref 027370763 R rec 0c638d5c-b1b4-424f-a887-5e40189c1175 +2024-09-10 15:46:57.186326 2024-09-10 15:46:57.186332 pidref 027372618 R rec ca5b569b-e7a2-4568-bdaa-c7903b245a48 +2024-09-10 15:46:57.267736 2024-09-10 15:46:57.267743 pidref 027374750 R rec 2c94420a-67e7-4042-b4b3-06401c92d2ef +2024-09-10 15:46:57.332259 2024-09-10 15:46:57.332265 pidref 027374831 R rec 8de1d9f5-72f1-423a-a329-ada5cadb97a6 +2024-09-10 15:46:57.392534 2024-09-10 15:46:57.392539 pidref 027375080 R rec 79639c02-673b-454b-a905-dad190577f03 +2024-09-10 15:46:57.466312 2024-09-10 15:46:57.466318 pidref 027375099 R rec 94376246-07d4-4de5-bc64-d99240da4f8b +2024-09-10 15:46:57.527689 2024-09-10 15:46:57.527694 pidref 027375188 R rec 735d4cbc-ff1e-4679-a3c3-f117b2aa7ddf +2024-09-10 15:46:57.589189 2024-09-10 15:46:57.589195 pidref 027375412 R rec 12f11eb0-7ffe-46de-8002-cd3c9d3ff95c +2024-09-10 15:46:57.646274 2024-09-10 15:46:57.646282 pidref 027375463 R rec 5139a256-01c2-4efe-998c-390a83192f36 +2024-09-10 15:46:57.699952 2024-09-10 15:46:57.699957 pidref 02737601X R rec e2adf8d2-69f5-4952-a62e-44b85a4991f6 +2024-09-10 15:46:57.759633 2024-09-10 15:46:57.759637 pidref 027377067 R rec 6ece2e9a-3703-4013-bb55-b9b1a32a1974 +2024-09-10 15:46:57.82203 2024-09-10 15:46:57.822036 pidref 027377660 R rec af786719-20ac-4374-b02e-50e507d0bad0 +2024-09-10 15:46:57.879336 2024-09-10 15:46:57.879343 pidref 027377768 R rec 6812e62a-a15d-4238-b89b-229be0c6859c +2024-09-10 15:46:57.943946 2024-09-10 15:46:57.943952 pidref 027379647 R rec da54746d-3ae1-4d47-bf49-f4a3fffeaf70 +2024-09-10 15:46:58.015588 2024-09-10 15:46:58.015594 pidref 027381323 R rec f603056f-ecd9-43db-ad12-61d6c481a257 +2024-09-10 15:46:58.080556 2024-09-10 15:46:58.080562 pidref 027400212 R rec 3fe02772-c036-4af2-8c89-17a3ad1ba833 +2024-09-10 15:46:58.139925 2024-09-10 15:46:58.13993 pidref 027402193 R rec 86bd1321-46f3-4084-a146-9f33eb628c15 +2024-09-10 15:46:58.201187 2024-09-10 15:46:58.201192 pidref 027405478 R rec 49b786ba-4bc6-4cc8-8de0-9d73444d0cd7 +2024-09-10 15:46:58.263592 2024-09-10 15:46:58.263598 pidref 027405621 R rec 4499b3db-49a1-4bf9-b7a3-75dd4572c368 +2024-09-10 15:46:58.357041 2024-09-10 15:46:58.357047 pidref 027405753 R rec 64e45e1f-f3b6-44e7-8fb2-92d0310ab80b +2024-09-10 15:46:58.424729 2024-09-10 15:46:58.424738 pidref 027406415 R rec 451eaf07-f0ee-419a-9388-aebd38fb9b1c +2024-09-10 15:46:58.496767 2024-09-10 15:46:58.496773 pidref 027406733 R rec 0d9d14f3-8de9-4d07-b069-28858075d3d4 +2024-09-10 15:46:58.555746 2024-09-10 15:46:58.555754 pidref 027407012 R rec de19c3d1-895e-4de3-b23b-1557b798c506 +2024-09-10 15:46:58.614675 2024-09-10 15:46:58.614681 pidref 027407632 R rec 679e7ec5-8511-490e-9a74-a725530e24a8 +2024-09-10 15:46:58.682681 2024-09-10 15:46:58.682687 pidref 027408310 R rec 6130c6ee-3f5d-44f1-995d-a57ebf1d1414 +2024-09-10 15:46:58.74497 2024-09-10 15:46:58.744976 pidref 027408450 R rec bef9b307-060e-4e02-acd5-062243a71ba9 +2024-09-10 15:46:58.807829 2024-09-10 15:46:58.807836 pidref 027409317 R rec 3a5a1245-639e-4acc-b45e-a506862e5733 +2024-09-10 15:46:58.871711 2024-09-10 15:46:58.871717 pidref 027418499 R rec ccf1b262-bd49-4ae0-b06a-b5e6e5af54f7 +2024-09-10 15:46:58.931304 2024-09-10 15:46:58.931309 pidref 027427374 R rec 668d78f4-9517-4766-83e0-184e8a815c23 +2024-09-10 15:46:58.990465 2024-09-10 15:46:58.99047 pidref 027428095 R rec 9b7fc3ff-7b1c-492b-bc33-73016617fb40 +2024-09-10 15:46:59.053326 2024-09-10 15:46:59.053331 pidref 027428672 R rec 049eee9e-da88-42e2-a8f1-628332a5f5ce +2024-09-10 15:46:59.111782 2024-09-10 15:46:59.111787 pidref 027429393 R rec ffd7e028-2950-4ede-a0cf-ef17429fc99b +2024-09-10 15:46:59.177085 2024-09-10 15:46:59.17709 pidref 027434125 R rec a49a2390-4246-4f75-80b0-54a032fe7ff3 +2024-09-10 15:46:59.238216 2024-09-10 15:46:59.238225 pidref 027434648 R rec e51968da-d040-4748-a71b-72772506132d +2024-09-10 15:46:59.301367 2024-09-10 15:46:59.301373 pidref 027436810 R rec 4870863b-d724-4696-99fb-4508a33be10b +2024-09-10 15:46:59.362557 2024-09-10 15:46:59.362563 pidref 027436837 R rec a8f3a74b-1b98-4c2e-a224-82e38f8dcde6 +2024-09-10 15:46:59.433274 2024-09-10 15:46:59.433279 pidref 027439658 R rec 0d478178-cfd2-4dde-b36e-f4e61ab330b3 +2024-09-10 15:46:59.531612 2024-09-10 15:46:59.531618 pidref 027442128 R rec 6229ba19-48aa-411c-8bb3-4f399b734cd6 +2024-09-10 15:46:59.596548 2024-09-10 15:46:59.596554 pidref 027442381 R rec bceceb37-75ac-429f-8439-d5de662f2e96 +2024-09-10 15:46:59.659182 2024-09-10 15:46:59.659193 pidref 027442454 R rec eaa3dbd6-ea34-4fde-975b-719e422153b9 +2024-09-10 15:46:59.732503 2024-09-10 15:46:59.732511 pidref 027442462 R rec d7696b12-1d20-4efb-8630-7a8c324305fd +2024-09-10 15:46:59.792489 2024-09-10 15:46:59.792497 pidref 027443876 R rec c32f5f33-9876-4038-aa2c-eca333b114df +2024-09-10 15:46:59.853442 2024-09-10 15:46:59.853449 pidref 02744628X R rec 0030cf18-347e-40d7-aba9-eed1932084f5 +2024-09-10 15:46:59.910149 2024-09-10 15:46:59.910154 pidref 027448177 R rec 13ce8a37-d7b8-4bf4-81de-eb2ea9d09e5c +2024-09-10 15:46:59.970667 2024-09-10 15:46:59.970673 pidref 02745228X R rec e9361223-3c73-4cf4-9ee8-6b554db16e69 +2024-09-10 15:47:00.038671 2024-09-10 15:47:00.038676 pidref 027452816 R rec 153c8272-cfca-400e-894a-5a99a8170b10 +2024-09-10 15:47:00.100209 2024-09-10 15:47:00.100215 pidref 027463613 R rec a11fc133-28a4-4435-b68e-95cbae109455 +2024-09-10 15:47:00.164995 2024-09-10 15:47:00.165003 pidref 027464180 R rec 14b83a20-6e97-4bc3-ac85-f5436763f21a +2024-09-10 15:47:00.226338 2024-09-10 15:47:00.226343 pidref 027464512 R rec befc35b5-0d5f-4095-a956-296b7caacbf4 +2024-09-10 15:47:00.287573 2024-09-10 15:47:00.287579 pidref 027465012 R rec 258df3af-edb3-4cc2-a77e-ef15e8fea8c3 +2024-09-10 15:47:00.36258 2024-09-10 15:47:00.362586 pidref 027472906 R rec aec401a8-3ea2-492f-9335-b07bb9b10bb9 +2024-09-10 15:47:00.434269 2024-09-10 15:47:00.434275 pidref 027479056 R rec 8d4a95d3-91aa-4dd5-a4fd-a370b72a1bd2 +2024-09-10 15:47:00.50225 2024-09-10 15:47:00.502258 pidref 027482928 R rec 022d0ec7-7fab-468b-881b-740b798f4989 +2024-09-10 15:47:00.605413 2024-09-10 15:47:00.605417 pidref 027483169 R rec 54c81919-f169-4851-9779-c04797f7a80c +2024-09-10 15:47:00.675369 2024-09-10 15:47:00.675374 pidref 027483304 R rec 366663cc-a7eb-4309-97ab-32f875daf4a2 +2024-09-10 15:47:00.750113 2024-09-10 15:47:00.750118 pidref 02748355X R rec ca41d6db-5684-4891-90b1-245fc65ba33d +2024-09-10 15:47:00.816078 2024-09-10 15:47:00.816084 pidref 027484319 R rec 4dfc4df4-5828-4024-be26-60f50bf8c4ba +2024-09-10 15:47:00.885493 2024-09-10 15:47:00.885499 pidref 02748498X R rec c423072d-8d72-4e10-94b7-c81e3bc54131 +2024-09-10 15:47:00.960052 2024-09-10 15:47:00.960057 pidref 027485552 R rec fc8b7ebe-a5d5-4a13-8f17-1fa02baa41d9 +2024-09-10 15:47:01.030305 2024-09-10 15:47:01.030311 pidref 027486354 R rec e8973722-a774-4048-8ca6-b74666e2ecf4 +2024-09-10 15:47:01.092192 2024-09-10 15:47:01.092197 pidref 027491099 R rec a7806c18-97cc-4787-b51d-ce99d7242c3a +2024-09-10 15:47:01.152824 2024-09-10 15:47:01.152829 pidref 027492753 R rec 727e9d4b-ad4d-43ff-b932-a7328423ff4b +2024-09-10 15:47:01.209583 2024-09-10 15:47:01.209588 pidref 027501302 R rec 4c7b1e7d-e3a3-4f7b-8b86-45e801a655a3 +2024-09-10 15:47:01.266865 2024-09-10 15:47:01.266874 pidref 027501418 R rec c32e2c4e-3984-4fc0-9257-4605ee7b859f +2024-09-10 15:47:01.329128 2024-09-10 15:47:01.329133 pidref 027502333 R rec 0b3cda81-1fc8-441a-a850-d51013fa0a9e +2024-09-10 15:47:01.394965 2024-09-10 15:47:01.394971 pidref 027502368 R rec c6ed2b2b-2126-4102-abff-6e53dc3f7cf4 +2024-09-10 15:47:01.456782 2024-09-10 15:47:01.456787 pidref 027502775 R rec 60a24524-76a4-408d-92a9-790f8960962b +2024-09-10 15:47:01.516826 2024-09-10 15:47:01.51683 pidref 027504271 R rec d2504c49-997a-4a1c-9c98-836653ae02a2 +2024-09-10 15:47:01.57553 2024-09-10 15:47:01.575535 pidref 027504379 R rec 6f343f74-3eb3-4a14-a81d-3c723aa8f1c1 +2024-09-10 15:47:01.642115 2024-09-10 15:47:01.642121 pidref 027522296 R rec 402dd78a-b0db-4800-a3e2-d347b6d2648e +2024-09-10 15:47:01.712855 2024-09-10 15:47:01.712861 pidref 027528359 R rec 6a4f2e9b-d768-484d-9dfd-4e536f5fc1e6 +2024-09-10 15:47:01.776072 2024-09-10 15:47:01.776078 pidref 027544931 R rec b7ead053-1767-4dfb-a6d2-ad1909852baa +2024-09-10 15:47:01.83888 2024-09-10 15:47:01.838893 pidref 02754785X R rec a5df0b6e-50cb-4edd-b4b4-715743c9075a +2024-09-10 15:47:01.913824 2024-09-10 15:47:01.913831 pidref 027552543 R rec c7956bd5-9319-4970-84ab-1f270aabb0ed +2024-09-10 15:47:01.972828 2024-09-10 15:47:01.972833 pidref 027557758 R rec 648f2f9f-3b02-43ec-8a27-956976e14ca1 +2024-09-10 15:47:02.049521 2024-09-10 15:47:02.049527 pidref 027563278 R rec 8d6b57db-126f-4eac-b442-3f3aaeeda041 +2024-09-10 15:47:02.109212 2024-09-10 15:47:02.109218 pidref 027564053 R rec 6b8ded3a-6f93-4fb6-88a6-c6dfa8aa3d58 +2024-09-10 15:47:02.167163 2024-09-10 15:47:02.167169 pidref 027564223 R rec 81213ab9-6c05-463e-8c06-ebcd7077fe1d +2024-09-10 15:47:02.232467 2024-09-10 15:47:02.232474 pidref 027579425 R rec cbe9f730-d1df-4688-9ea1-63667e8bf49e +2024-09-10 15:47:02.326954 2024-09-10 15:47:02.32696 pidref 027584763 R rec 88076f66-5979-4443-a1b3-a3953a8028cd +2024-09-10 15:47:02.439562 2024-09-10 15:47:02.439568 pidref 027585190 R rec 78feb537-2b50-4780-8326-979d1af21777 +2024-09-10 15:47:02.526987 2024-09-10 15:47:02.526992 pidref 027596591 R rec f583f9cc-f665-48fb-8503-76c4608a13ab +2024-09-10 15:47:02.58847 2024-09-10 15:47:02.588478 pidref 027603504 R rec c20003e9-253f-4156-8a8e-29574ea41bae +2024-09-10 15:47:02.65568 2024-09-10 15:47:02.655685 pidref 027603784 R rec 21c4392c-57fc-48a4-8be6-350649943490 +2024-09-10 15:47:02.726081 2024-09-10 15:47:02.726087 pidref 027606996 R rec 7fe8dd7b-be01-4caa-bd18-9d1e276cad80 +2024-09-10 15:47:02.790139 2024-09-10 15:47:02.790145 pidref 02761803X R rec 45a64360-7487-4151-ac13-994dccc2b7e5 +2024-09-10 15:47:02.906255 2024-09-10 15:47:02.90626 pidref 027621952 R rec 2e41eef8-1cc4-43fd-b8e4-bdd4a2066121 +2024-09-10 15:47:02.992306 2024-09-10 15:47:02.992312 pidref 027622444 R rec e692abf9-64b9-4ae4-bcd3-8b8d0cd5deeb +2024-09-10 15:47:03.06856 2024-09-10 15:47:03.068569 pidref 02763065X R rec 0469bfec-7907-4218-b241-cdfad9cee095 +2024-09-10 15:47:03.130238 2024-09-10 15:47:03.130245 pidref 027632571 R rec 4ab33469-a261-4c33-a3f8-4d9f772d3420 +2024-09-10 15:47:03.192376 2024-09-10 15:47:03.192381 pidref 02763857X R rec ad8795bd-7524-49df-a167-2589b6bd8848 +2024-09-10 15:47:03.258144 2024-09-10 15:47:03.258148 pidref 027645649 R rec af0c9c57-137c-4a7c-9291-65255b1c38a4 +2024-09-10 15:47:03.320712 2024-09-10 15:47:03.320717 pidref 027656438 R rec 9bb61160-d826-4322-a3ca-4a71e287f551 +2024-09-10 15:47:03.378891 2024-09-10 15:47:03.378896 pidref 027668479 R rec bc3d1a13-f20d-4e40-9683-9b336012bb0a +2024-09-10 15:47:03.438591 2024-09-10 15:47:03.438599 pidref 027680231 R rec 67811c3c-9660-4bae-8394-322262f26e94 +2024-09-10 15:47:03.501348 2024-09-10 15:47:03.501354 pidref 027693007 R rec 2ee9c288-b0e2-4d96-a626-d2496bd836bf +2024-09-10 15:47:03.570251 2024-09-10 15:47:03.570256 pidref 027693805 R rec a8a941c8-3e2f-4401-a200-9c1728373ea9 +2024-09-10 15:47:03.627406 2024-09-10 15:47:03.627412 pidref 027693821 R rec ea72fa7a-a751-4578-82c1-92f33ea30d56 +2024-09-10 15:47:03.687892 2024-09-10 15:47:03.687897 pidref 027694658 R rec 47863481-8680-4918-93ed-13853e0c9302 +2024-09-10 15:47:03.749991 2024-09-10 15:47:03.749998 pidref 027705781 R rec 8cf688a1-1749-4edc-bd7b-8367439bf4a8 +2024-09-10 15:47:03.809717 2024-09-10 15:47:03.809722 pidref 027722996 R rec 91d1fbdf-f2c0-4607-bfbd-6fe6ef8136be +2024-09-10 15:47:03.870341 2024-09-10 15:47:03.870346 pidref 027744795 R rec 0e6a064c-f745-4223-b35d-e03fc72452e0 +2024-09-10 15:47:03.94295 2024-09-10 15:47:03.942959 pidref 02775751X R rec c822eba7-8281-4ed1-af85-7113749358a3 +2024-09-10 15:47:04.008308 2024-09-10 15:47:04.008313 pidref 027764842 R rec a23e2722-0735-4ba9-9fc7-1e80ca29780d +2024-09-10 15:47:04.070957 2024-09-10 15:47:04.070966 pidref 027768627 R rec 2fdca7cf-a86b-4bd7-8b85-c053289a5be6 +2024-09-10 15:47:04.132176 2024-09-10 15:47:04.132182 pidref 02776866X R rec 7efab5bf-4e51-42eb-b0d4-b9ce95d4b153 +2024-09-10 15:47:04.20276 2024-09-10 15:47:04.202765 pidref 027768678 R rec 627aa230-9eba-4527-8de9-0af56d719615 +2024-09-10 15:47:04.28233 2024-09-10 15:47:04.282336 pidref 027768686 R rec bfb0fb98-d07e-4230-99e9-a52e92f58609 +2024-09-10 15:47:04.34803 2024-09-10 15:47:04.348036 pidref 027768694 R rec 111c7c6e-8951-47a3-a56f-3e025ef48936 +2024-09-10 15:47:04.424594 2024-09-10 15:47:04.424599 pidref 027775348 R rec 24d3b160-f031-4266-a46b-cfea0c7e7e98 +2024-09-10 15:47:04.497807 2024-09-10 15:47:04.497813 pidref 027777456 R rec e5b61ae4-4b9c-49e5-b5de-0faf20d82880 +2024-09-10 15:47:04.558362 2024-09-10 15:47:04.558371 pidref 027785718 R rec 13bdd9cb-8443-4314-ba5c-4d3c2723fbe8 +2024-09-10 15:47:04.622781 2024-09-10 15:47:04.622786 pidref 027806626 R rec 4a9b054a-43e8-4e4b-824d-d5d1af500828 +2024-09-10 15:47:04.682819 2024-09-10 15:47:04.682825 pidref 027812723 R rec 22f14f8a-d50e-45b2-bb7d-edb74c2a985a +2024-09-10 15:47:04.768301 2024-09-10 15:47:04.768307 pidref 027825558 R rec 90b64246-b726-4d28-a8fa-60b1407c423d +2024-09-10 15:47:04.826113 2024-09-10 15:47:04.826119 pidref 027838935 R rec f65d567a-6018-48a6-af75-ffc17139cfd6 +2024-09-10 15:47:04.888231 2024-09-10 15:47:04.888237 pidref 027840883 R rec f2f4aae7-d098-4d2e-b4ee-bfe86b8f66e7 +2024-09-10 15:47:04.952277 2024-09-10 15:47:04.952283 pidref 027842959 R rec 9e4b2d14-b329-43d7-8913-97d1bca2e398 +2024-09-10 15:47:05.017985 2024-09-10 15:47:05.017991 pidref 027848213 R rec a28e7bef-020a-4206-9e06-2ea537ae0dea +2024-09-10 15:47:05.09239 2024-09-10 15:47:05.092396 pidref 027853128 R rec 12fda13b-236f-4369-8492-cc6681fe276a +2024-09-10 15:47:05.156726 2024-09-10 15:47:05.156731 pidref 027853136 R rec 806bafa8-9450-4cbd-8bdb-0fd4ce5ce832 +2024-09-10 15:47:05.22045 2024-09-10 15:47:05.220456 pidref 027860787 R rec 2f1f4770-4bd5-43eb-9723-7ef0f09e92f1 +2024-09-10 15:47:05.28265 2024-09-10 15:47:05.282655 pidref 027875695 R rec 7afdf284-d902-4f6a-8706-64c8455295b5 +2024-09-10 15:47:05.353646 2024-09-10 15:47:05.353652 pidref 027875717 R rec 4832aa1b-adc2-4b15-8009-2ef3b4edf44a +2024-09-10 15:47:05.431687 2024-09-10 15:47:05.431693 pidref 027875725 R rec c372ad67-fcf8-47f3-b1f9-0524fafa01c2 +2024-09-10 15:47:05.490903 2024-09-10 15:47:05.490908 pidref 027883000 R rec e81a5051-ae53-4a43-8a85-ffc33dcdda7c +2024-09-10 15:47:05.565644 2024-09-10 15:47:05.56565 pidref 027935280 R rec 06fb6980-7260-4b77-aa2f-fb8fcc426667 +2024-09-10 15:47:05.625722 2024-09-10 15:47:05.625728 pidref 027945774 R rec c19c5ee7-9043-4668-b108-c37a0ae6121c +2024-09-10 15:47:05.691602 2024-09-10 15:47:05.691607 pidref 027949117 R rec 1a43ba02-ec52-4f22-afc7-e6e00973fe28 +2024-09-10 15:47:05.755249 2024-09-10 15:47:05.755254 pidref 027952800 R rec e5d22747-231f-45c7-b8c8-fd4fac5a2adb +2024-09-10 15:47:05.819001 2024-09-10 15:47:05.819007 pidref 028036336 R rec c1070fa5-8e66-4f10-9b93-0645c9f3c083 +2024-09-10 15:47:05.894879 2024-09-10 15:47:05.894885 pidref 028097505 R rec e491d3f7-97b4-47d0-b420-39332ab8be4d +2024-09-10 15:47:05.962071 2024-09-10 15:47:05.962077 pidref 028135903 R rec e47aca96-8d79-4519-829a-4193aa54cc8e +2024-09-10 15:47:06.022145 2024-09-10 15:47:06.02215 pidref 028141814 R rec ed5344b8-7109-4e4f-8df7-fd8a2cd9c11a +2024-09-10 15:47:06.084507 2024-09-10 15:47:06.084513 pidref 028146212 R rec c2bdf7d8-eb24-4e5e-9c2a-6b4c949b5506 +2024-09-10 15:47:06.159522 2024-09-10 15:47:06.159528 pidref 028172825 R rec cc209ccf-deb3-45a3-8e19-e7920eb6f3b5 +2024-09-10 15:47:06.231646 2024-09-10 15:47:06.231653 pidref 02817450X R rec 37d0c993-9170-4bcf-9eeb-ec47f9ba7483 +2024-09-10 15:47:06.292533 2024-09-10 15:47:06.292539 pidref 028180135 R rec 98a8d94f-c58e-46ce-99b3-2dec9f1f92c1 +2024-09-10 15:47:06.353461 2024-09-10 15:47:06.353466 pidref 028201922 R rec abebe2c8-c5f8-43aa-ba5d-447b143bb4d8 +2024-09-10 15:47:06.41939 2024-09-10 15:47:06.419395 pidref 028212967 R rec b7d0ada5-435b-40f7-9d02-272d8b91d96e +2024-09-10 15:47:06.482804 2024-09-10 15:47:06.48281 pidref 028212991 R rec 80c5084a-9653-4956-8368-3b1db3d7e507 +2024-09-10 15:47:06.553488 2024-09-10 15:47:06.553494 pidref 028213017 R rec d359817c-b02d-4c79-a801-61dc04ab979f +2024-09-10 15:47:06.610988 2024-09-10 15:47:06.610992 pidref 028215346 R rec c2ea6efe-4922-4f5c-8af7-d13aec5ab00f +2024-09-10 15:47:06.673477 2024-09-10 15:47:06.673482 pidref 028217160 R rec 7c1243df-fd99-4dc0-a47f-b02e0b6bee5c +2024-09-10 15:47:06.734925 2024-09-10 15:47:06.73493 pidref 028245431 R rec f0157ef6-8537-4cc5-9003-eb28474b9520 +2024-09-10 15:47:06.81406 2024-09-10 15:47:06.814065 pidref 028289129 R rec 9e72da93-a72c-49c2-b76a-526abe20ebd2 +2024-09-10 15:47:06.877608 2024-09-10 15:47:06.877613 pidref 028355431 R rec 39731448-7ec6-4852-a1b1-cd3dc6696c7e +2024-09-10 15:47:06.949807 2024-09-10 15:47:06.949813 pidref 028366360 R rec ae24c335-cfd9-4029-8e9f-4caece17642e +2024-09-10 15:47:07.015162 2024-09-10 15:47:07.015166 pidref 028388569 R rec 09617d38-de2e-4ca7-9e35-ce6ee5854323 +2024-09-10 15:47:07.076496 2024-09-10 15:47:07.076501 pidref 028411773 R rec 965954af-c996-4aac-aa2c-8b30b0abbdb3 +2024-09-10 15:47:07.148427 2024-09-10 15:47:07.148433 pidref 028554108 R rec a6f1b632-988c-496f-9750-61a36343dad6 +2024-09-10 15:47:07.233448 2024-09-10 15:47:07.233454 pidref 028565924 R rec b79e28a8-5651-4990-b169-581896bb9194 +2024-09-10 15:47:07.298231 2024-09-10 15:47:07.298236 pidref 028567005 R rec 4becfabb-1e24-4747-8865-747eb28ea6c2 +2024-09-10 15:47:07.363194 2024-09-10 15:47:07.3632 pidref 028601475 R rec f9e751b6-8eb0-436a-b673-3b032c47cf7b +2024-09-10 15:47:07.439288 2024-09-10 15:47:07.439293 pidref 028654706 R rec 2b3ba7a3-ba05-4bb6-b0d6-dc5514acc8cf +2024-09-10 15:47:07.498264 2024-09-10 15:47:07.498272 pidref 028695984 R rec 3288b897-8b25-4387-9b24-faf0bf71d15b +2024-09-10 15:47:07.558022 2024-09-10 15:47:07.558027 pidref 028700570 R rec 4010740c-f5e9-4dab-b49b-4d2251b8b173 +2024-09-10 15:47:07.624474 2024-09-10 15:47:07.62448 pidref 02870097X R rec 1dcd9f8b-308d-4398-a233-d07956c83f1e +2024-09-10 15:47:07.683769 2024-09-10 15:47:07.683775 pidref 028706137 R rec 36295697-e6cf-4f98-ae2e-d4c68056d6a4 +2024-09-10 15:47:07.744515 2024-09-10 15:47:07.744521 pidref 028727444 R rec 1b3becb0-5dbf-4580-ae76-d9fb5be5944c +2024-09-10 15:47:07.817276 2024-09-10 15:47:07.817283 pidref 028877764 R rec b9542f15-1f0d-42c0-8e24-a496dcab1666 +2024-09-10 15:47:07.876729 2024-09-10 15:47:07.876734 pidref 028889460 R rec e54e35c7-de4b-40a4-bc24-26133ed17765 +2024-09-10 15:47:07.936794 2024-09-10 15:47:07.936802 pidref 028913663 R rec 3c412a7e-5587-4905-8e43-40eca3c497c7 +2024-09-10 15:47:07.999044 2024-09-10 15:47:07.999047 pidref 028928709 R rec b5f77a65-9867-4dce-a437-47902bc7ffeb +2024-09-10 15:47:08.055438 2024-09-10 15:47:08.055445 pidref 028931491 R rec ad88cff9-5947-4574-ace9-96e1b5dc5458 +2024-09-10 15:47:08.119569 2024-09-10 15:47:08.119574 pidref 028979885 R rec 695d7ada-390c-40cf-a90c-6334232c7e50 +2024-09-10 15:47:08.183626 2024-09-10 15:47:08.183631 pidref 028988310 R rec 3082e658-a204-4557-a263-ee5a9d820309 +2024-09-10 15:47:08.283557 2024-09-10 15:47:08.283565 pidref 028991575 R rec afdcb256-a0ca-4ae1-81eb-45b421ab0596 +2024-09-10 15:47:08.348246 2024-09-10 15:47:08.348254 pidref 028992105 R rec 9ba20bd4-4ce1-4974-9dd2-5a3f09a1810f +2024-09-10 15:47:08.410069 2024-09-10 15:47:08.410075 pidref 028992318 R rec eef861fd-a0c3-4d37-83aa-af6565a68dec +2024-09-10 15:47:08.475064 2024-09-10 15:47:08.475069 pidref 028996593 R rec a638db12-6137-460f-8cae-7e70743f41f0 +2024-09-10 15:47:08.545694 2024-09-10 15:47:08.545699 pidref 028996690 R rec 473e08c6-4fb1-42ea-a860-46f8f212c262 +2024-09-10 15:47:08.605575 2024-09-10 15:47:08.60558 pidref 029152887 R rec 0536ea80-e71a-4eb0-ba02-6e529841520f +2024-09-10 15:47:08.667648 2024-09-10 15:47:08.667653 pidref 029183340 R rec fca50e80-b317-4bdb-a1f5-7b4277be54d1 +2024-09-10 15:47:08.728905 2024-09-10 15:47:08.728911 pidref 029216540 R rec fec61e29-d2e2-46b0-9513-6a7e17c5ffa3 +2024-09-10 15:47:08.792693 2024-09-10 15:47:08.792698 pidref 029220661 R rec 8d34b06b-2718-4d5a-b772-319b53f1218e +2024-09-10 15:47:08.85257 2024-09-10 15:47:08.852575 pidref 029345529 R rec 5764417b-8e36-48fb-9caa-5a00bc80799b +2024-09-10 15:47:08.915626 2024-09-10 15:47:08.915632 pidref 029368707 R rec 245c80cf-6c72-4bb4-aa1c-7a3b8f6b760b +2024-09-10 15:47:08.973364 2024-09-10 15:47:08.973369 pidref 029453208 R rec a0658b99-eac6-4d81-aa59-e3646921a813 +2024-09-10 15:47:09.040485 2024-09-10 15:47:09.04049 pidref 029459060 R rec 7f3db211-3d1d-42d4-a327-4ec82aa83003 +2024-09-10 15:47:09.099308 2024-09-10 15:47:09.099317 pidref 029502764 R rec 59768389-e2c3-4d8e-9573-2becd725b9ee +2024-09-10 15:47:09.160731 2024-09-10 15:47:09.160736 pidref 029508347 R rec 114a0aa1-c81f-4b4c-83e9-01ff33f68f87 +2024-09-10 15:47:09.222427 2024-09-10 15:47:09.222432 pidref 029571219 R rec e7f6598a-6628-4c0e-85e2-d92abd370bf5 +2024-09-10 15:47:09.278209 2024-09-10 15:47:09.278215 pidref 029592259 R rec 849b2b36-777f-487d-aaac-ce64f6341dc0 +2024-09-10 15:47:09.340385 2024-09-10 15:47:09.340391 pidref 029680344 R rec ae22643e-c65b-4c48-9ea0-61883e631e35 +2024-09-10 15:47:09.40264 2024-09-10 15:47:09.402646 pidref 029693756 R rec defd7671-c72f-48aa-a3ec-5d05be74f9bc +2024-09-10 15:47:09.477591 2024-09-10 15:47:09.477597 pidref 029693772 R rec 1ca3f7e2-e8e7-40f6-bfda-00a0b99bac7a +2024-09-10 15:47:09.544259 2024-09-10 15:47:09.544265 pidref 02976436X R rec be148b9b-1f98-451b-bc28-c0db31ee0439 +2024-09-10 15:47:09.61607 2024-09-10 15:47:09.616075 pidref 029805279 R rec 3982601d-c389-4894-8039-08bdf84a00ac +2024-09-10 15:47:09.679918 2024-09-10 15:47:09.679924 pidref 029857678 R rec be7fa1d9-4838-4545-8a08-b24193b3afd8 +2024-09-10 15:47:09.752318 2024-09-10 15:47:09.752328 pidref 02985850X R rec c97f233c-ceee-44d6-85e3-276a223b6e8b +2024-09-10 15:47:09.812176 2024-09-10 15:47:09.812182 pidref 030398614 R rec d116d9aa-b834-4c28-b6e5-71d215302052 +2024-09-10 15:47:09.876379 2024-09-10 15:47:09.876384 pidref 030512425 R rec c2b53ba6-1d7a-4d19-ba99-687585d3d196 +2024-09-10 15:47:09.937574 2024-09-10 15:47:09.93758 pidref 030519799 R rec 6f6fd7a2-fcfd-4c35-a519-2bd8a6639b86 +2024-09-10 15:47:10.000134 2024-09-10 15:47:10.00014 pidref 03055537X R rec 1510bdc2-06c4-4500-b522-7024f896f794 +2024-09-10 15:47:10.06079 2024-09-10 15:47:10.060798 pidref 030628156 R rec 86ecf974-b197-42c2-977e-549f8fa0437b +2024-09-10 15:47:10.126037 2024-09-10 15:47:10.126043 pidref 030640091 R rec 6f895c96-edd7-4c76-88a5-662484bbec5d +2024-09-10 15:47:10.234929 2024-09-10 15:47:10.234934 pidref 031139876 R rec def402c6-dd98-48e7-9a66-19785e7479a2 +2024-09-10 15:47:10.295565 2024-09-10 15:47:10.295574 pidref 031211097 R rec 97e21a8c-e84e-4218-8951-a171c0a97570 +2024-09-10 15:47:10.352585 2024-09-10 15:47:10.35259 pidref 031649424 R rec 3ccf34c9-5713-4a2a-a43d-0cd47023683b +2024-09-10 15:47:10.411591 2024-09-10 15:47:10.411597 pidref 03168520X R rec 8bc41874-3c68-447e-9118-fedd2623aa06 +2024-09-10 15:47:10.469134 2024-09-10 15:47:10.46914 pidref 031702473 R rec 61ab9af9-6f18-402c-ae92-4be7811ac0c2 +2024-09-10 15:47:10.525932 2024-09-10 15:47:10.525937 pidref 031977561 R rec 749899ab-2684-44f5-9610-36ac0f4b9f4c +2024-09-10 15:47:10.586555 2024-09-10 15:47:10.586565 pidref 032028555 R rec cb325cdc-66a3-4478-976d-0e6c7529b2b1 +2024-09-10 15:47:10.646917 2024-09-10 15:47:10.646923 pidref 032029667 R rec bc444a7e-4c50-461d-9acd-0ca976f2056a +2024-09-10 15:47:10.708149 2024-09-10 15:47:10.708159 pidref 03210572X R rec bf323342-e5be-4859-95f3-ea2391dfd93e +2024-09-10 15:47:10.775573 2024-09-10 15:47:10.775578 pidref 03261991X R rec a1c3aafb-91e2-4a64-8b10-5c36f877b1ce +2024-09-10 15:47:10.841537 2024-09-10 15:47:10.841544 pidref 032861621 R rec 9eff36b4-d16e-45b4-a3e9-331519463844 +2024-09-10 15:47:10.910745 2024-09-10 15:47:10.910751 pidref 032972997 R rec 2618b276-acf2-4ca3-9964-afd6b5b43b6d +2024-09-10 15:47:10.988511 2024-09-10 15:47:10.988516 pidref 033023808 R rec d6ef6a35-35b3-4b9b-8155-9f863aee9c02 +2024-09-10 15:47:11.047115 2024-09-10 15:47:11.047121 pidref 033459118 R rec 5ccedb4d-3570-4994-a175-904771efcfb9 +2024-09-10 15:47:11.109139 2024-09-10 15:47:11.109145 pidref 034580506 R rec f652494d-7b92-4c52-862a-c2ea5ae35182 +2024-09-10 15:47:11.170202 2024-09-10 15:47:11.170207 pidref 034800964 R rec 10a608ac-2815-4b22-81c7-d5770e505c3b +2024-09-10 15:47:11.231227 2024-09-10 15:47:11.231233 pidref 034910190 R rec 97bc46f1-eab9-4e7e-88c8-8e9d2b3020e8 +2024-09-10 15:47:11.291273 2024-09-10 15:47:11.291279 pidref 03512802X R rec e929880a-3ff5-44d1-9b95-024ec417bc05 +2024-09-10 15:47:11.360858 2024-09-10 15:47:11.360863 pidref 035220287 R rec 34c6298d-5794-40f1-9c1e-cbe9f3f2a4eb +2024-09-10 15:47:11.468742 2024-09-10 15:47:11.468747 pidref 03530183X R rec 526c65bd-d828-400a-b3ff-3fa7bda8f00a +2024-09-10 15:47:11.551135 2024-09-10 15:47:11.551141 pidref 035301872 R rec a066635e-e37d-4539-a6e6-737c4bc796a9 +2024-09-10 15:47:11.609939 2024-09-10 15:47:11.609944 pidref 035321318 R rec 7f30c2ef-6ccc-4a46-8646-2c29a765a92a +2024-09-10 15:47:11.68199 2024-09-10 15:47:11.681996 pidref 035444193 R rec b66e5ec7-53bc-4851-9c1a-26c5460ba751 +2024-09-10 15:47:11.743069 2024-09-10 15:47:11.743075 pidref 050211250 R rec 31098694-c4b6-4490-8eb3-b5ceccb8f50c +2024-09-10 15:47:11.804912 2024-09-10 15:47:11.804917 pidref 05021778X R rec 38dcf841-005d-467e-9b7e-478461886876 +2024-09-10 15:47:11.877196 2024-09-10 15:47:11.877202 pidref 050300334 R rec a4202b7c-7d4c-4c39-88ba-f34975bcc8ca +2024-09-10 15:47:11.938789 2024-09-10 15:47:11.938795 pidref 050311530 R rec 5d70f008-892e-44da-a9d1-a7e1fedb667a +2024-09-10 15:47:12.013206 2024-09-10 15:47:12.013213 pidref 050438417 R rec d2b37142-52c6-41ee-bd0e-19e6c9d635f8 +2024-09-10 15:47:12.075662 2024-09-10 15:47:12.075667 pidref 050556789 R rec 1f257cab-f576-498f-96cd-4d1936b46c6a +2024-09-10 15:47:12.137518 2024-09-10 15:47:12.137524 pidref 050557556 R rec 5fa412dd-7c99-4ccb-953e-c019541fddd1 +2024-09-10 15:47:12.199085 2024-09-10 15:47:12.199093 pidref 050578480 R rec 650b14f6-2eb6-4f87-bb53-95d8b8317346 +2024-09-10 15:47:12.258776 2024-09-10 15:47:12.258781 pidref 052490157 R rec 92f49483-95ec-41ea-9e3c-e52c25580f1d +2024-09-10 15:47:12.325376 2024-09-10 15:47:12.325382 pidref 053443586 R rec 5a2fa1e1-f8ec-42e9-96c9-d085ed2af864 +2024-09-10 15:47:12.386412 2024-09-10 15:47:12.386417 pidref 053500539 R rec ec3b3320-fd98-4053-a27c-fd5ff33e6fd8 +2024-09-10 15:47:12.446131 2024-09-10 15:47:12.446137 pidref 053504755 R rec f6a2675e-78df-4eef-bc16-626369764e3d +2024-09-10 15:47:12.513743 2024-09-10 15:47:12.513751 pidref 055832024 R rec db3295d5-7ba7-4b78-a341-cd16b36446a8 +2024-09-10 15:47:12.595618 2024-09-10 15:47:12.595624 pidref 061566284 R rec 0bb8f067-a1bf-4b51-b80a-19dd42ecde10 +2024-09-10 15:47:12.657485 2024-09-10 15:47:12.657491 pidref 066838339 R rec 457961c8-f716-4b71-843f-c905c8354599 +2024-09-10 15:47:12.752632 2024-09-10 15:47:12.752637 pidref 068861974 R rec d7c4b99f-92fb-45b1-9708-38ca22acbdf4 +2024-09-10 15:47:12.820115 2024-09-10 15:47:12.82012 pidref 068954174 R rec 1e1e3fdf-7001-42de-b895-ad3cf34ae98f +2024-09-10 15:47:12.880171 2024-09-10 15:47:12.880177 pidref 069367027 R rec f45ee664-dcd6-4155-977c-5fd44b450035 +2024-09-10 15:47:12.949529 2024-09-10 15:47:12.949535 pidref 070388830 R rec fb85cc2b-22a8-4e20-abee-a761c0efb6fc +2024-09-10 15:47:13.009805 2024-09-10 15:47:13.00981 pidref 072290455 R rec 7069d8c1-02de-44d4-9e36-504c01436c9e +2024-09-10 15:47:13.074666 2024-09-10 15:47:13.074671 pidref 072616652 R rec bb433954-eb64-4549-996e-887d66bbd224 +2024-09-10 15:47:13.138141 2024-09-10 15:47:13.138146 pidref 073387576 R rec d61b6dac-326d-4676-8a34-1c2fc39974ec +2024-09-10 15:47:13.193607 2024-09-10 15:47:13.193612 pidref 073444073 R rec cbed1a8d-db3d-4a35-b520-0031a088fe05 +2024-09-10 15:47:13.253224 2024-09-10 15:47:13.253229 pidref 074436805 R rec e6200fa8-cd31-4423-a977-bf1112877189 +2024-09-10 15:47:13.31174 2024-09-10 15:47:13.311746 pidref 074578022 R rec f7c2103a-b5d5-4155-8d3b-876c62cebb78 +2024-09-10 15:47:13.387517 2024-09-10 15:47:13.387523 pidref 077271041 R rec c3ab6994-f94b-4142-9857-26341364bee1 +2024-09-10 15:47:13.459441 2024-09-10 15:47:13.459447 pidref 077437160 R rec 503e5917-56fa-4440-803d-ddd79e6fc60b +2024-09-10 15:47:13.624223 2024-09-10 15:47:13.62425 pidref 078613655 R rec 77d47462-a0b5-4dfd-b93e-15da545ceeb4 +2024-09-10 15:47:13.742755 2024-09-10 15:47:13.742761 pidref 084272996 R rec dd46a9ee-ad50-4433-a978-19e2cb3c7485 +2024-09-10 15:47:13.796392 2024-09-10 15:47:13.796398 pidref 085703419 R rec 80c7d84b-c66d-47ac-9c2d-f66e30de6604 +2024-09-10 15:47:13.862812 2024-09-10 15:47:13.862817 pidref 092146430 R rec 77ca474b-89ae-43e9-ae61-a4483eaccd27 +2024-09-10 15:47:13.944373 2024-09-10 15:47:13.944379 pidref 09445423X R rec 9adac7ca-812c-4810-899e-86ad96685c75 +2024-09-10 15:47:14.004871 2024-09-10 15:47:14.004877 pidref 095140484 R rec fc03069e-cb5b-44e5-b7e2-bde0b7cf0a3b +2024-09-10 15:47:14.058296 2024-09-10 15:47:14.058302 pidref 102120935 R rec 3e68afa0-575d-4515-94b2-a857fb5cf08d +2024-09-10 15:47:14.149445 2024-09-10 15:47:14.149452 pidref 102147817 R rec 8f33b130-d4b7-4ca8-a0ed-de7dad02cce7 +2024-09-10 15:47:14.232053 2024-09-10 15:47:14.232065 pidref 113070926 R rec dc9e2804-eb07-4b03-a15a-42fefab70135 +2024-09-10 15:47:14.293899 2024-09-10 15:47:14.293903 pidref 114526591 R rec eee21cf4-fceb-43be-8b7f-9d819dd68790 +2024-09-10 15:47:14.359378 2024-09-10 15:47:14.359383 pidref 116317825 R rec 05d801d5-6a8c-47bd-b95e-d2f93ac9a73f +2024-09-10 15:47:14.425918 2024-09-10 15:47:14.425925 pidref 116459425 R rec d1048d73-244b-4f7b-af89-3731920aeb4c +2024-09-10 15:47:14.49784 2024-09-10 15:47:14.497846 pidref 119411016 R rec 486629f4-c19a-40ce-8f93-f702a83f3fbc +2024-09-10 15:47:14.555271 2024-09-10 15:47:14.555276 pidref 123048338 R rec 4996f53a-e695-489b-872f-c0680e067345 +2024-09-10 15:47:14.616799 2024-09-10 15:47:14.616804 pidref 124441092 R rec ee744cf1-a177-46d1-9d2a-5826df915704 +2024-09-10 15:47:14.676144 2024-09-10 15:47:14.676149 pidref 127372547 R rec 9e526d10-0650-450b-89c1-55d3f5d2e725 +2024-09-10 15:47:14.743946 2024-09-10 15:47:14.743951 pidref 131577166 R rec 1b0799d5-e692-4624-8f92-1209ad03a07a +2024-09-10 15:47:14.807963 2024-09-10 15:47:14.807968 pidref 133653951 R rec 3a902395-d55b-401b-9de7-237bcc3c0c20 +2024-09-10 15:47:14.882719 2024-09-10 15:47:14.882725 pidref 140829520 R rec 8c51d843-6de3-462b-868f-c1723176275a +2024-09-10 15:47:14.942077 2024-09-10 15:47:14.942086 pidref 140834087 R rec d3f2d0fc-c562-46df-a226-9c9ecf78aa26 +2024-09-10 15:47:15.000093 2024-09-10 15:47:15.000099 pidref 144820072 R rec e2c23494-fc2b-4f89-b546-e1a68f401d3b +2024-09-10 15:47:15.062677 2024-09-10 15:47:15.062683 pidref 145818713 R rec b2d42bad-e868-4923-8615-afacebd00ee6 +2024-09-10 15:47:15.122876 2024-09-10 15:47:15.122882 pidref 148119778 R rec 5c03fdfd-92d0-4b1e-bc4f-d87a8e1f2f8f +2024-09-10 15:47:15.18084 2024-09-10 15:47:15.180846 pidref 148833829 R rec 782bb135-6bcf-489d-a567-546efd40abe4 +2024-09-10 15:47:15.247241 2024-09-10 15:47:15.247247 pidref 150220200 R rec 89c47a9e-4185-4705-9f3f-27e6fa754382 +2024-09-10 15:47:15.311643 2024-09-10 15:47:15.311649 pidref 151572429 R rec 6e6022dd-e211-4cb9-ae22-cfe09d7e3d63 +2024-09-10 15:47:15.372875 2024-09-10 15:47:15.372882 pidref 152219005 R rec 2071b14f-1bf8-4404-8091-446c24250b75 +2024-09-10 15:47:15.451795 2024-09-10 15:47:15.451801 pidref 153092815 R rec db19a427-6abd-4704-9818-169ad777b467 +2024-09-10 15:47:15.532521 2024-09-10 15:47:15.532528 pidref 153807989 R rec 82230fc9-3fe9-4c2f-9fd0-ff094a06dfc6 +2024-09-10 15:47:15.595721 2024-09-10 15:47:15.595727 pidref 154297550 R rec 9f432012-184a-4ba2-a32b-3b91ff6a5a57 +2024-09-10 15:47:15.660339 2024-09-10 15:47:15.660344 pidref 154762393 R rec a24cdd8a-6fa9-4119-8d5e-bbb498bd335e +2024-09-10 15:47:15.734159 2024-09-10 15:47:15.734165 pidref 156994151 R rec f88f719d-c80c-48a1-aac9-c228c578957e +2024-09-10 15:47:15.810932 2024-09-10 15:47:15.810937 pidref 157032469 R rec 3d3d06b9-cf14-40cc-8d6a-f312514551f3 +2024-09-10 15:47:15.870272 2024-09-10 15:47:15.870278 pidref 157043819 R rec 0b1b7801-fc05-4d0a-8954-019707feb0bc +2024-09-10 15:47:15.927914 2024-09-10 15:47:15.927921 pidref 157043908 R rec 649771fb-e95e-450e-bd74-78398a75b1a8 +2024-09-10 15:47:15.99106 2024-09-10 15:47:15.991066 pidref 157046125 R rec 79c5fcd6-a22d-4c0a-9eb3-2da9838336ae +2024-09-10 15:47:16.050545 2024-09-10 15:47:16.050551 pidref 157046486 R rec 9912e072-8c5a-4b9f-84ed-618fd93abf61 +2024-09-10 15:47:16.121302 2024-09-10 15:47:16.121307 pidref 157070093 R rec 330282a0-9370-4a3a-9455-1f78756a295d +2024-09-10 15:47:16.180797 2024-09-10 15:47:16.180803 pidref 157075109 R rec f8c5fe75-9cf4-4837-b94f-a46e208439ab +2024-09-10 15:47:16.251377 2024-09-10 15:47:16.251382 pidref 157110184 R rec bdd6bb18-e06b-4e3e-9e05-9b855037f267 +2024-09-10 15:47:16.312821 2024-09-10 15:47:16.312828 pidref 157135675 R rec ea952fbf-6b09-49f8-a2cd-b3471eee59ae +2024-09-10 15:47:16.384652 2024-09-10 15:47:16.384658 pidref 157135756 R rec ba7bd13f-e12a-4b40-bbdf-676b6a6c989d +2024-09-10 15:47:16.447576 2024-09-10 15:47:16.447581 pidref 157143791 R rec 1d7cf797-959f-48b4-9cbc-6ccc41612d6e +2024-09-10 15:47:16.515807 2024-09-10 15:47:16.515813 pidref 157164764 R rec 15ff9fde-e730-4de3-8c8b-91f48d243b0a +2024-09-10 15:47:16.608801 2024-09-10 15:47:16.608807 pidref 157165892 R rec 0d22a884-44e8-4d10-a692-7d9e44508251 +2024-09-10 15:47:16.697583 2024-09-10 15:47:16.697589 pidref 157260275 R rec 0f932943-1b4f-4f1f-af03-ae0abb904220 +2024-09-10 15:47:16.755575 2024-09-10 15:47:16.75558 pidref 157265927 R rec 78e647c3-af0f-4a6a-9ee1-dc88cdb356cf +2024-09-10 15:47:16.811729 2024-09-10 15:47:16.811734 pidref 158185102 R rec b4a970f7-ed01-4769-9fce-ce2e54fba0de +2024-09-10 15:47:16.878378 2024-09-10 15:47:16.878384 pidref 158634624 R rec f6a4ff2e-8dce-4cb1-a463-34faa0b1add2 +2024-09-10 15:47:16.94279 2024-09-10 15:47:16.942795 pidref 15903194X R rec b8a80f11-6286-4be4-8ce7-caa1e897ab64 +2024-09-10 15:47:17.019954 2024-09-10 15:47:17.019962 pidref 159667518 R rec 4b974775-ee57-4d6a-b315-963030667190 +2024-09-10 15:47:17.080468 2024-09-10 15:47:17.080474 pidref 16152270X R rec d7da1eec-c8e3-4224-9c79-6db3b8262f1e +2024-09-10 15:47:17.140062 2024-09-10 15:47:17.140067 pidref 161522718 R rec 881ac6a1-7d96-4755-8e27-00e7d05202f8 +2024-09-10 15:47:17.208372 2024-09-10 15:47:17.208377 pidref 161930069 R rec 109d2529-4a34-4f70-a0aa-9f806402d94d +2024-09-10 15:47:17.283668 2024-09-10 15:47:17.283675 pidref 162029667 R rec 553c52fa-5505-4a78-b448-c75450d1d8cc +2024-09-10 15:47:17.346301 2024-09-10 15:47:17.346306 pidref 162144342 R rec 637a99ef-c827-4114-9839-5621be56c335 +2024-09-10 15:47:17.406119 2024-09-10 15:47:17.406124 pidref 163687536 R rec 54332957-6273-4943-ac1c-1aa364c1b575 +2024-09-10 15:47:17.470068 2024-09-10 15:47:17.470074 pidref 165827157 R rec 85cc79cd-f6a0-44cf-8d0a-55137ab482ee +2024-09-10 15:47:17.540618 2024-09-10 15:47:17.540624 pidref 169621820 R rec ad35256b-2f9d-44e7-a094-6ad5c495dbce +2024-09-10 15:47:17.602702 2024-09-10 15:47:17.602707 pidref 171128362 R rec 1482eb48-ec2d-40ec-9dd4-5f372a53490e +2024-09-10 15:47:17.664167 2024-09-10 15:47:17.664173 pidref 175270147 R rec a48404dd-96ad-4b0f-9ca7-2eee689a34ee +2024-09-10 15:47:17.723784 2024-09-10 15:47:17.723789 pidref 176470875 R rec 527edb79-0ab6-44ee-8b34-07666fa6cbab +2024-09-10 15:47:17.781227 2024-09-10 15:47:17.781232 pidref 177159855 R rec 773f8b5a-edae-4a28-bb5b-ce87576a71eb +2024-09-10 15:47:17.843851 2024-09-10 15:47:17.843856 pidref 177517506 R rec 6767ec12-87f3-4264-ba93-30ddff844547 +2024-09-10 15:47:17.907186 2024-09-10 15:47:17.907191 pidref 177835893 R rec 4ac8d8d6-789c-4689-ad17-125bfed4fdb4 +2024-09-10 15:47:17.97395 2024-09-10 15:47:17.973956 pidref 178091219 R rec 3db7db7c-7b4a-4920-b49e-d33217374b3e +2024-09-10 15:47:18.046477 2024-09-10 15:47:18.046483 pidref 178635863 R rec 6d8420d0-9ce1-46e6-9e60-4aaee53bf9e0 +2024-09-10 15:47:18.118266 2024-09-10 15:47:18.118272 pidref 18055686X R rec 1786ba7f-2c99-4dda-bedd-9539a949cbc7 +2024-09-10 15:47:18.180616 2024-09-10 15:47:18.180622 pidref 183926943 R rec 60cd08e0-3088-486a-9a51-3fdcf03b48b0 +2024-09-10 15:47:18.244232 2024-09-10 15:47:18.244238 pidref 184504872 R rec 5c5c7f1b-ceca-4c7a-9916-6fdb58b00690 +2024-09-10 15:47:18.304282 2024-09-10 15:47:18.304286 pidref 185130348 R rec 5b7158ef-0264-458b-bd5a-f5018ece303f +2024-09-10 15:47:18.367019 2024-09-10 15:47:18.367024 pidref 185838235 R rec 3d97ac42-8e8e-45cd-b33f-b193b5b46ff0 +2024-09-10 15:47:18.433229 2024-09-10 15:47:18.433238 pidref 186257287 R rec 2c105270-9da0-4957-8e36-c598eb145bf4 +2024-09-10 15:47:18.4953 2024-09-10 15:47:18.495306 pidref 188234837 R rec 699c78c2-4ccb-4a13-a7d4-7b00fb0acfe3 +2024-09-10 15:47:18.558138 2024-09-10 15:47:18.558143 pidref 190533889 R rec 0a01de52-090f-4e37-b5a0-7a4936dffaa7 +2024-09-10 15:47:18.620193 2024-09-10 15:47:18.620202 pidref 192765531 R rec 975b63cc-dff0-40e6-aef9-2651e9946734 +2024-09-10 15:47:18.680733 2024-09-10 15:47:18.680741 pidref 193304767 R rec 89e46251-a785-45c0-a22d-389579225f5b +2024-09-10 15:47:18.746976 2024-09-10 15:47:18.746982 pidref 193589370 R rec 25f9f9de-e73e-4361-9898-41771f5437c9 +2024-09-10 15:47:18.80745 2024-09-10 15:47:18.807455 pidref 194382206 R rec 4d7fd011-aa04-471b-bcaf-078e7e48f94f +2024-09-10 15:47:18.869809 2024-09-10 15:47:18.869815 pidref 196449103 R rec 4daa1ca5-226b-445b-9686-e59833884b17 +2024-09-10 15:47:18.931705 2024-09-10 15:47:18.931712 pidref 197647235 R rec 1094833b-9517-4e0c-9a7d-34e346348749 +2024-09-10 15:47:19.004598 2024-09-10 15:47:19.004603 pidref 197699855 R rec 30d086ff-0b36-4010-b7db-48b2c2c6442d +2024-09-10 15:47:19.066371 2024-09-10 15:47:19.066376 pidref 19787133X R rec 55c77355-fd99-4d97-ba4d-6089869f2986 +2024-09-10 15:47:19.125967 2024-09-10 15:47:19.125972 pidref 198026072 R rec b45c7552-9f08-48f1-8f89-a3e7833ae676 +2024-09-10 15:47:19.191237 2024-09-10 15:47:19.191243 pidref 198231288 R rec 9389f06a-6610-4837-94d6-f31f38fa6ac2 +2024-09-10 15:47:19.263699 2024-09-10 15:47:19.263705 pidref 198239386 R rec 54d16d2f-1347-41b1-85d8-c115e273151f +2024-09-10 15:47:19.330227 2024-09-10 15:47:19.330233 pidref 201852845 R rec d8ff4ba9-034c-4fa9-b8df-7d658b0122f4 +2024-09-10 15:47:19.401522 2024-09-10 15:47:19.401528 pidref 203060571 R rec 32077bc4-2ef3-4d1a-9fd2-c652c755c9f0 +2024-09-10 15:47:19.459816 2024-09-10 15:47:19.459825 pidref 203376552 R rec b8e82d11-f115-441e-8b4a-14089b773a31 +2024-09-10 15:47:19.519852 2024-09-10 15:47:19.519857 pidref 204299276 R rec a049efc4-4ceb-469d-a1e3-0e4f17a9b1ca +2024-09-10 15:47:19.580939 2024-09-10 15:47:19.580944 pidref 219922608 R rec ca0a8747-2834-4aa4-af55-55edfa4e4f70 +2024-09-10 15:47:19.653327 2024-09-10 15:47:19.653332 pidref 219924074 R rec dafa8c00-08a8-4a52-80e5-8d2e5e867f69 +2024-09-10 15:47:19.723001 2024-09-10 15:47:19.723009 pidref 219925283 R rec 47fa19ab-6093-49c0-b975-7342780dcda5 +2024-09-10 15:47:19.784193 2024-09-10 15:47:19.7842 pidref 22395294X R rec ea44f0cd-794e-4f42-bee2-aba789471353 +2024-09-10 15:47:19.854614 2024-09-10 15:47:19.85462 pidref 223976369 R rec a7e56828-53cd-45f1-9718-98e12401f0e0 +2024-09-10 15:47:19.916173 2024-09-10 15:47:19.916179 pidref 223979171 R rec 7628d027-596d-427a-b9be-96555275adec +2024-09-10 15:47:19.975434 2024-09-10 15:47:19.975439 pidref 224235893 R rec 240c9f3a-e2fc-4c5d-bc60-be1bff74e642 +2024-09-10 15:47:20.039768 2024-09-10 15:47:20.039771 pidref 225651289 R rec 2c6a73b6-ce6d-4d9f-bc2f-89fbaa3093e6 +2024-09-10 15:47:20.110564 2024-09-10 15:47:20.11057 pidref 226539962 R rec 827e0243-c637-4a8d-b2a9-235b721558d4 +2024-09-10 15:47:20.168779 2024-09-10 15:47:20.168785 pidref 226556425 R rec 69fb8671-c856-417a-bdb8-4fe41ffaefec +2024-09-10 15:47:20.227185 2024-09-10 15:47:20.227191 pidref 226664414 R rec f1ebb4a0-5c9e-4d0a-8e88-7e2392a73917 +2024-09-10 15:47:20.29249 2024-09-10 15:47:20.292496 pidref 226835391 R rec aaadd9fe-e257-46c4-a114-1571a34c28d5 +2024-09-10 15:47:20.367447 2024-09-10 15:47:20.367452 pidref 226964558 R rec 0364eaa2-2cb8-44de-9b94-aa75e23a091e +2024-09-10 15:47:20.431648 2024-09-10 15:47:20.431655 pidref 230294707 R rec b20d9839-c0d7-4c1f-91c9-00dd54812746 +2024-09-10 15:47:20.490939 2024-09-10 15:47:20.490945 pidref 231217161 R rec b8ade632-7a1d-4029-8a65-15ef2110f77c +2024-09-10 15:47:20.562823 2024-09-10 15:47:20.562827 pidref 231498829 R rec 3e92c54f-d953-4072-ab1d-a668a4e82ce5 +2024-09-10 15:47:20.623575 2024-09-10 15:47:20.62358 pidref 233055045 R rec 4303423a-28c9-43d6-9804-e050682e86b0 +2024-09-10 15:47:20.683482 2024-09-10 15:47:20.683488 pidref 237826763 R rec 3c387f92-0d8a-425c-957e-cb057e1ed2d2 +2024-09-10 15:47:20.74066 2024-09-10 15:47:20.740666 pidref 242868851 R rec 9239d7f3-071f-4895-a537-0f79181285f8 +2024-09-10 15:47:20.805908 2024-09-10 15:47:20.805913 pidref 250173565 R rec 2e11635c-b9dd-4a03-8c1c-e7fe80e01a12 +2024-09-10 15:47:20.871616 2024-09-10 15:47:20.871624 pidref 250748533 R rec a7d0af44-c61a-41d7-af4a-a859d7493771 +2024-09-10 15:47:20.946546 2024-09-10 15:47:20.946552 pidref 253709520 R rec 4950168b-7dd5-4c4f-bb18-be7dd5e03c70 +2024-09-10 15:47:21.009818 2024-09-10 15:47:21.009823 pidref 253865727 R rec 87452b3a-5393-4a92-ad0b-189a1684523d +2024-09-10 15:47:21.068995 2024-09-10 15:47:21.069001 pidref 254939422 R rec 16986705-8be3-4a61-b4a8-ba596cf605ec +2024-09-10 15:47:21.12817 2024-09-10 15:47:21.128176 pidref 255076592 R rec 640e5e5e-1057-450b-9b1b-6463be3d40bb +2024-09-10 15:47:21.186736 2024-09-10 15:47:21.186741 pidref 25527999X R rec 2dd09ab6-2e8a-4323-9a4e-77e0ce9ba027 +2024-09-10 15:47:21.246169 2024-09-10 15:47:21.246175 pidref 256800375 R rec bef22ab4-b0c4-40ba-a5ae-941f78914350 +2024-09-10 15:47:21.322271 2024-09-10 15:47:21.322276 pidref 257056378 R rec 074c1016-d998-45cb-956c-d03ccc289e4f +2024-09-10 15:47:21.382855 2024-09-10 15:47:21.382861 pidref 257143025 R rec e21a09a4-e109-43d2-ab8f-64166ac3c4cf +2024-09-10 15:47:21.447058 2024-09-10 15:47:21.447066 pidref 257162895 R rec bbfe5145-236e-4788-8254-67773684e5dc +2024-09-10 15:47:21.509164 2024-09-10 15:47:21.509169 pidref 257475117 R rec 42d6e8ad-675f-4d76-ae2e-a988ac53c769 +2024-09-10 15:47:21.581063 2024-09-10 15:47:21.581069 pidref 258360976 R rec 8618df2b-de90-42b3-981e-30623388a8f6 +2024-09-10 15:47:21.645261 2024-09-10 15:47:21.645267 pidref 25887421X R rec 6d67752e-aad8-4673-a9cb-af2467043a6a +2024-09-10 15:47:21.717941 2024-09-10 15:47:21.717947 pidref 260281395 R rec 73a968aa-4d01-48f4-9940-3eb7ab003a20 +2024-09-10 15:47:21.778597 2024-09-10 15:47:21.778603 pidref 260555088 R rec f4fc38fc-e90a-4cc5-ade0-9647b56f76dd +2024-09-10 15:47:21.841985 2024-09-10 15:47:21.841989 pidref 260905585 R rec b9ff2404-311f-4d80-aac8-90a176d18d18 +2024-09-10 15:47:21.900838 2024-09-10 15:47:21.900844 pidref 260966401 R rec b09674b2-0127-41c8-b67b-4459a0933783 +2024-09-10 15:47:21.963218 2024-09-10 15:47:21.963226 pidref 260996440 R rec 2bf07bbb-b172-47f5-bb80-1ef3f2bb5f0f +2024-09-10 15:47:22.022987 2024-09-10 15:47:22.022992 pidref 261121162 R rec 591f5dbc-8133-4afd-87aa-f75f4f1ec485 +2024-09-10 15:47:22.088073 2024-09-10 15:47:22.088079 pidref 26138449X R rec 31ca1382-8e3b-4fb8-a5f4-270741571627 +2024-09-10 15:47:22.14673 2024-09-10 15:47:22.146735 pidref 26144722X R rec 0ad2c745-7bf8-4424-8ead-3f6ce1c2e39c +2024-09-10 15:47:22.218173 2024-09-10 15:47:22.218179 pidref 261527452 R rec 1faffc71-5940-4787-814f-7a51d0aa7a9b +2024-09-10 15:47:22.280354 2024-09-10 15:47:22.28036 pidref 261762311 R rec ce8dda98-b920-45ee-845c-078992e19f3f +2024-09-10 15:47:22.359317 2024-09-10 15:47:22.359324 pidref 261933841 R rec 0bd9dbf2-4dd8-4d25-9db2-d29ce4234321 +2024-09-10 15:47:22.424429 2024-09-10 15:47:22.424435 pidref 262216744 R rec 8cfac6b1-8384-4317-918a-67659aa01f81 +2024-09-10 15:47:22.495877 2024-09-10 15:47:22.495883 pidref 262555697 R rec dd4a4cd3-4d02-4362-9bf3-5370d865065b +2024-09-10 15:47:22.627428 2024-09-10 15:47:22.627433 pidref 262557215 R rec c14cb1d7-7355-4bc9-a065-1732a7707d58 +2024-09-10 15:47:22.687451 2024-09-10 15:47:22.687456 pidref 262767619 R rec 75a16397-2393-467f-b352-305d58ad1c22 +2024-09-10 15:47:22.751441 2024-09-10 15:47:22.75145 pidref 262834162 R rec 23c721c3-fdd0-4685-8a9c-57d6fd154a7b +2024-09-10 15:47:22.831897 2024-09-10 15:47:22.831902 pidref 26298606X R rec 067e78ba-dd5d-4df2-b4dc-72602c46ea9d +2024-09-10 15:47:22.928877 2024-09-10 15:47:22.928882 pidref 263043231 R rec 3f83aedd-8d17-4acb-9a5a-31f9149e6f1a +2024-09-10 15:47:22.988673 2024-09-10 15:47:22.988678 pidref 26304324X R rec 67337dd3-ab50-4490-82aa-62471e1bb02c +2024-09-10 15:47:23.047094 2024-09-10 15:47:23.047099 pidref 26304338X R rec 72903d19-b24e-4d7a-bbfe-db0bf07108b9 +2024-09-10 15:47:23.116136 2024-09-10 15:47:23.116142 pidref 263197794 R rec 96a396eb-3306-4c2f-ad33-1c3b5ad6bfef +2024-09-10 15:47:23.185271 2024-09-10 15:47:23.185276 pidref 263222985 R rec e71c9b0a-ffd6-497e-a5be-bda857fdb8c8 +2024-09-10 15:47:23.242242 2024-09-10 15:47:23.242247 pidref 263256790 R rec 910a1723-9bbc-4315-87e2-cdedfe1429fe +2024-09-10 15:47:23.330423 2024-09-10 15:47:23.330429 pidref 26369514X R rec 77664ccb-ea45-4fad-ac5b-3e094a564932 +2024-09-10 15:47:23.385876 2024-09-10 15:47:23.385882 pidref 263838250 R rec 8bf140e3-bab0-4014-a92e-05d49a13bf27 +2024-09-10 15:47:23.452688 2024-09-10 15:47:23.452695 pidref 264073258 R rec a322b825-d39a-4e6c-a375-e798307f8fca +2024-09-10 15:47:23.523092 2024-09-10 15:47:23.523097 pidref 264087313 R rec ce727415-f282-44f2-bf31-596d4542976a +2024-09-10 15:47:23.590039 2024-09-10 15:47:23.590045 pidref 264145046 R rec 5afe80e7-c7dc-41e1-99c8-e88b503c0418 +2024-09-10 15:47:23.650743 2024-09-10 15:47:23.650749 pidref 264271831 R rec 9435abb0-7f2d-41ac-8069-772e440c4af2 +2024-09-10 15:47:23.714513 2024-09-10 15:47:23.714519 pidref 264406095 R rec cdf08c58-5d82-4831-a9fb-52bc38b36dcd +2024-09-10 15:47:23.777469 2024-09-10 15:47:23.777475 pidref 264435583 R rec a92a5054-527f-4fc1-b727-d72a505129fa +2024-09-10 15:47:23.835036 2024-09-10 15:47:23.835042 pidref 264538943 R rec a96369af-4595-4951-a0cb-b26fd2c6ff0b +2024-09-10 15:47:23.90314 2024-09-10 15:47:23.903147 pidref 264540670 R rec d6f95c44-a83e-4e8f-9b92-d66840fcd1cf +2024-09-10 15:47:23.96791 2024-09-10 15:47:23.967915 pidref 264600886 R rec 4cb3033a-9b55-4e31-8572-4d30ff1d69d6 +2024-09-10 15:47:24.036464 2024-09-10 15:47:24.036468 pidref 264644093 R rec f5c7b180-8fda-4660-9ecc-82d91a49ffdd +2024-09-10 15:47:24.092227 2024-09-10 15:47:24.092236 pidref 264645081 R rec 6529df71-56e4-4887-8fdb-ab3f79ce959c +2024-09-10 15:47:24.196306 2024-09-10 15:47:24.196313 pidref 264836251 R rec ce20305f-d41f-4f76-94bc-e62537100383 +2024-09-10 15:47:24.255915 2024-09-10 15:47:24.25592 pidref 265364957 R rec 2050eaaf-b6f6-4aea-9907-11b2e1743e4f +2024-09-10 15:47:24.316169 2024-09-10 15:47:24.316175 pidref 26588912X R rec cb1635a9-4996-4863-9956-4732cf58d0af +2024-09-10 15:47:24.377017 2024-09-10 15:47:24.377023 pidref 266633668 R rec 7bc3cdbf-bec6-4586-b1b6-03095935f861 +2024-09-10 15:47:24.439979 2024-09-10 15:47:24.439984 pidref 26663415X R rec f790b1f5-2009-4a13-96d8-0a0271090bd1 +2024-09-10 15:47:24.497877 2024-09-10 15:47:24.497883 pidref 266656595 R rec b21fadcc-148d-447f-9088-c125e19455ea +2024-09-10 15:47:24.641926 2024-09-10 15:47:24.641934 pidref 26665715X R rec 55ed974a-355a-4340-8a52-69c7ab9bce6e +2024-09-10 15:47:24.705816 2024-09-10 15:47:24.705821 pidref 267209568 R rec da0b78d8-22d9-45c5-aa75-7d609f0c10d3 +2024-09-10 15:47:24.769367 2024-09-10 15:47:24.769373 pidref 26722138X R rec 68c6c804-7963-4011-aad0-83cf6d0d0785 +2024-09-10 15:47:24.838549 2024-09-10 15:47:24.838555 pidref 267421214 R rec b2bead93-c147-4781-84a1-05401fe9e2a3 +2024-09-10 15:47:24.909257 2024-09-10 15:47:24.909262 pidref 267446713 R rec a4adaaab-8a2f-4410-a9fc-b035c8d2e46b +2024-09-10 15:47:24.971495 2024-09-10 15:47:24.9715 pidref 267488092 R rec 600b1da8-beba-46f4-ae15-5f2ab400747e +2024-09-10 15:47:25.029189 2024-09-10 15:47:25.029195 pidref 267506589 R rec 755cf44d-3579-4147-bf4d-0a4240a7cb47 +2024-09-10 15:47:25.090377 2024-09-10 15:47:25.090382 pidref 267678584 R rec 0c622822-17fa-4775-8a47-10653cf7d3ad +2024-09-10 15:47:25.166185 2024-09-10 15:47:25.166194 pidref 267860048 R rec f7411147-2f2a-422b-8127-60a8e81e1ac6 +2024-09-10 15:47:25.228852 2024-09-10 15:47:25.228857 pidref 26792237X R rec ca95d7d2-6d25-4953-89ac-fb7703f977bd +2024-09-10 15:47:25.297529 2024-09-10 15:47:25.297534 pidref 267928262 R rec 132c5e93-0d1a-49e3-adf3-9516a83198a3 +2024-09-10 15:47:25.355471 2024-09-10 15:47:25.355476 pidref 268500460 R rec bbec9b3d-5c29-41d6-bf5d-bf05abee936b +2024-09-10 15:47:25.430938 2024-09-10 15:47:25.430944 pidref 268649472 R rec b7baca61-2444-4f32-823e-6bef451f2850 +2024-09-10 15:47:25.522744 2024-09-10 15:47:25.522749 pidref 268664110 R rec 61bfd97a-2d60-4f7a-aeae-b373ef1fc1cc +2024-09-10 15:47:25.585971 2024-09-10 15:47:25.585977 pidref 268664447 R rec 302b5cac-24ee-420d-b781-8137c2e57631 +2024-09-10 15:47:25.657822 2024-09-10 15:47:25.657827 pidref 268666938 R rec 34045acf-ddb6-4db4-8e0f-b8cd01f315eb +2024-09-10 15:47:25.72068 2024-09-10 15:47:25.720685 pidref 268735190 R rec 4d992187-c79d-4a03-b13e-0ebc67b5e439 +2024-09-10 15:47:25.787403 2024-09-10 15:47:25.787408 pidref 268791694 R rec b94c7019-e8f6-4d47-8879-e39c36f5ed9a +2024-09-10 15:47:25.852025 2024-09-10 15:47:25.85203 pidref 268793948 R rec 07fb8b41-b50f-430d-b4ee-1f30aa2db09c +2024-09-10 15:47:25.916283 2024-09-10 15:47:25.916291 pidref 269784136 R rec c8bd0c52-8040-4ddb-93e2-d6afaccc645b +2024-09-10 15:47:25.97703 2024-09-10 15:47:25.977036 pidref 270059482 R rec 2adf93d9-5819-422c-ae9b-3c73769fb1a5 +2024-09-10 15:47:26.046381 2024-09-10 15:47:26.046386 pidref 270977848 R rec 680b1d9a-e8e1-4561-8bb6-f6fa2d597123 +2024-09-10 15:47:26.10895 2024-09-10 15:47:26.108955 pidref 271120738 R rec 16aefbeb-e288-4510-ac3d-d7f3a55a9854 +2024-09-10 15:47:26.168806 2024-09-10 15:47:26.168812 pidref 271160926 R rec fdc6d7bd-4035-4e1a-a715-b48d0d0dee1c +2024-09-10 15:47:26.243276 2024-09-10 15:47:26.243281 pidref 271161957 R rec f94e4216-6e4c-423a-a2f7-fce8674edfc5 +2024-09-10 15:47:26.317152 2024-09-10 15:47:26.317158 pidref 271166118 R rec 9198abfe-7275-4349-9d4c-784a7e6c3557 +2024-09-10 15:47:26.382177 2024-09-10 15:47:26.382182 pidref 271323485 R rec 03418458-d8d2-4a31-9b09-b2844bb90835 +2024-09-10 15:47:26.462277 2024-09-10 15:47:26.46228 pidref 271323515 R rec 6315d26f-fefd-45c6-affa-b499bf321257 +2024-09-10 15:47:26.52623 2024-09-10 15:47:26.526236 pidref 271323590 R rec a0b3e448-c704-4201-8fe7-12ad1e3eecf7 +2024-09-10 15:47:26.601624 2024-09-10 15:47:26.601629 pidref 271323663 R rec 0278977c-d81c-44c1-ab6f-e55fe97be342 +2024-09-10 15:47:26.686338 2024-09-10 15:47:26.686343 pidref 271323698 R rec b93bcfce-7fe4-44d3-b2bc-44953e2f346a +2024-09-10 15:47:26.755351 2024-09-10 15:47:26.755357 pidref 271323752 R rec 5d63fb45-8091-4fe6-a3dd-f9a969ff1b1d +2024-09-10 15:47:26.820081 2024-09-10 15:47:26.820087 pidref 271326441 R rec 63d0b7cc-0686-44a4-b902-c36776af8493 +2024-09-10 15:47:26.894705 2024-09-10 15:47:26.894711 pidref 271326840 R rec 6e883024-ec29-451c-8e11-b56a74c0786b +2024-09-10 15:47:26.970271 2024-09-10 15:47:26.970276 pidref 271328762 R rec 465960ed-6be3-4e91-a99f-6e75fee434cc +2024-09-10 15:47:27.03519 2024-09-10 15:47:27.035195 pidref 271342889 R rec 2c133b1e-5a47-455b-a283-a7c0b03fd2cc +2024-09-10 15:47:27.114306 2024-09-10 15:47:27.114311 pidref 271347821 R rec cc2a8c39-3ca0-4f03-ae0a-3f9b6e15bc03 +2024-09-10 15:47:27.178732 2024-09-10 15:47:27.178738 pidref 271377445 R rec 85522a5a-669a-4c6d-8ae1-f39bac3d4ee0 +2024-09-10 15:47:27.237851 2024-09-10 15:47:27.237857 pidref 271529172 R rec ba037b03-7321-4f77-92a2-377b3dafdad0 +2024-09-10 15:47:27.303489 2024-09-10 15:47:27.303495 pidref 271733764 R rec c940b9ec-09a3-4e2e-bffa-22bf3ef160ff +2024-09-10 15:47:27.374579 2024-09-10 15:47:27.374585 pidref 271786574 R rec 11f9e77f-77a0-46c5-9861-16695df5c371 +2024-09-10 15:47:27.433355 2024-09-10 15:47:27.43336 pidref 272053430 R rec 8bec8820-6199-4750-ba5f-948a5cb30f5f +2024-09-10 15:47:27.501776 2024-09-10 15:47:27.501782 pidref 272179213 R rec ddf16d7a-b191-4cde-a096-147f68aa5d2e +2024-09-10 15:47:27.559539 2024-09-10 15:47:27.559548 pidref 272823627 R rec 0b86b817-46ee-4397-b4d5-2e4830800342 +2024-09-10 15:47:27.621091 2024-09-10 15:47:27.621096 pidref 273580728 R rec 61b048af-c6eb-4ce0-8053-5f61d1525895 +2024-09-10 15:47:27.691785 2024-09-10 15:47:27.691791 pidref 275775569 R rec d7d41c3a-348d-409e-b446-3ecf9807497f +2024-09-10 15:47:27.771907 2024-09-10 15:47:27.771913 pidref 276090829 R rec d1514588-4764-44b5-8574-32ea2308351a +2024-09-10 15:47:27.854682 2024-09-10 15:47:27.854687 pidref 27609266X R rec 0689e1ba-6a8f-4314-97f1-c0babe84c681 +2024-09-10 15:47:27.915904 2024-09-10 15:47:27.915912 pidref 276092945 R rec 01c55829-e295-4bbf-be87-4808a62fecca +2024-09-10 15:47:27.977086 2024-09-10 15:47:27.977091 pidref 276180232 R rec e9fa4bf2-41ce-44f6-a08b-fff4d8015772 +2024-09-10 15:47:28.034164 2024-09-10 15:47:28.03417 pidref 276183762 R rec ae6e5901-95dc-4b71-a0f9-2283edc87b88 +2024-09-10 15:47:28.089908 2024-09-10 15:47:28.089914 pidref 276185986 R rec f5f675d3-af31-41b8-8c2d-4e362bcfa4ed +2024-09-10 15:47:28.152313 2024-09-10 15:47:28.152319 pidref 276213939 R rec 7bf14194-dd23-4c5e-8121-0fb64ace3a89 +2024-09-10 15:47:28.215846 2024-09-10 15:47:28.215852 pidref 276214129 R rec aaec1404-4797-4e51-95bd-7b10c429edc3 +2024-09-10 15:47:28.276461 2024-09-10 15:47:28.276468 pidref 276214463 R rec edf0ebce-c0fb-47a4-bfc5-2e3a640edd8c +2024-09-10 15:47:28.336423 2024-09-10 15:47:28.336428 pidref 27621675X R rec ecc887c3-735c-4c8f-be7d-5585502dba8d +2024-09-10 15:47:28.395974 2024-09-10 15:47:28.395979 pidref 276271890 R rec 0aa7b523-336d-4d42-86bf-98faf046f5a6 +2024-09-10 15:47:28.45112 2024-09-10 15:47:28.451125 pidref 276300882 R rec 72f05a75-d846-45f9-8657-ea460bcfdeb3 +2024-09-10 15:47:28.516418 2024-09-10 15:47:28.516423 pidref 276306651 R rec 3c7bd679-45e4-4121-bd67-aa7a8d69b71f +2024-09-10 15:47:28.574824 2024-09-10 15:47:28.57483 pidref 276398157 R rec b2cb1da3-bdbf-4ff0-945e-2a943a7c8314 +2024-09-10 15:47:28.63962 2024-09-10 15:47:28.639626 pidref 276510216 R rec 545c02b8-0f19-4e16-8635-3b706293df3a +2024-09-10 15:47:28.702748 2024-09-10 15:47:28.702754 pidref 276534921 R rec 41f6f21a-b2cc-41b9-834f-019aa6d43650 +2024-09-10 15:47:28.766633 2024-09-10 15:47:28.766642 pidref 276626370 R rec 871251d1-419c-45d1-8fa3-bb328507fa6e +2024-09-10 15:47:28.825872 2024-09-10 15:47:28.825877 pidref 276637674 R rec 6ed163b6-13a0-4012-8fc3-d7555c39b2cc +2024-09-10 15:47:28.882829 2024-09-10 15:47:28.882835 pidref 276708083 R rec 74265d3e-63d2-4ac1-a3a4-61589d2107e3 +2024-09-10 15:47:28.95169 2024-09-10 15:47:28.951695 pidref 276783743 R rec 7b3d4ea3-7049-4d58-ad34-15253ba212f4 +2024-09-10 15:47:29.023374 2024-09-10 15:47:29.02338 pidref 27678832X R rec b9461ca4-8f16-4cfa-81f0-4b4a7cdaf385 +2024-09-10 15:47:29.091738 2024-09-10 15:47:29.091744 pidref 276828984 R rec 9b3bf4e5-9b7c-4672-b8ce-2236eea505da +2024-09-10 15:47:29.157665 2024-09-10 15:47:29.15767 pidref 276944135 R rec f5a1d39b-f9bf-4e30-bc4c-6e806ecfa598 +2024-09-10 15:47:29.228439 2024-09-10 15:47:29.228445 pidref 276970950 R rec 581c26d4-7849-4443-b3a4-abb2ecdf5e08 +2024-09-10 15:47:29.301351 2024-09-10 15:47:29.301358 pidref 277221307 R rec e7d11f9e-f4f0-4ad9-a8fe-f25bc6fcf513 +2024-09-10 15:47:29.377052 2024-09-10 15:47:29.377057 pidref 27727382X R rec f14fa93d-98a9-49db-ae10-eb979a6c77ee +2024-09-10 15:47:29.455881 2024-09-10 15:47:29.455886 pidref 277473284 R rec 9006ad55-be0b-45af-bcef-4087e3040fc7 +2024-09-10 15:47:29.520344 2024-09-10 15:47:29.52035 pidref 278628117 R rec 16e48429-8f63-4bd8-89f3-9523c22a6f53 +2024-09-10 15:47:29.579426 2024-09-10 15:47:29.579432 pidref 278728596 R rec c11cc857-fc2b-4a09-ac34-4c959ba75b37 +2024-09-10 15:47:29.641098 2024-09-10 15:47:29.641103 pidref 278738230 R rec be7917c4-0935-42a6-9441-070ec25ed0f9 +2024-09-10 15:47:29.710759 2024-09-10 15:47:29.710766 pidref 278747310 R rec 020bddf8-f321-40e5-bd71-a4dfd7bfc355 +2024-09-10 15:47:29.795097 2024-09-10 15:47:29.795102 pidref 278850650 R rec 111d9981-2bf0-48d7-b3dd-0a89ae0b19a2 +2024-09-10 15:47:29.859326 2024-09-10 15:47:29.859332 pidref 278893899 R rec 66d718d3-f47b-4bc1-b688-af101df420a3 +2024-09-10 15:47:29.922816 2024-09-10 15:47:29.922822 pidref 278918964 R rec 76c3d375-4147-4a4b-9c7d-7bcdd6885da1 +2024-09-10 15:47:29.984295 2024-09-10 15:47:29.984301 pidref 279034989 R rec 57c1a639-74ef-46a5-b5e7-d34faa8a9371 +2024-09-10 15:47:30.048221 2024-09-10 15:47:30.048227 pidref 279121369 R rec b661c297-4b45-4907-ac1a-9649c3c4930c +2024-09-10 15:47:30.109627 2024-09-10 15:47:30.109632 pidref 279128800 R rec 7126fdbc-e096-4ea2-8902-3b80fa8c05c7 +2024-09-10 15:47:30.174402 2024-09-10 15:47:30.174407 pidref 27912886X R rec 4b6c107d-37b9-46fb-925b-4ef875a0bd0a +2024-09-10 15:47:30.233609 2024-09-10 15:47:30.233614 pidref 279128959 R rec 6af4868a-9a67-4673-81f2-44c893fca441 +2024-09-10 15:47:30.307534 2024-09-10 15:47:30.30754 pidref 279129467 R rec 6b2f346f-228b-4dcc-9ca9-02cbbbb28972 +2024-09-10 15:47:30.371355 2024-09-10 15:47:30.37136 pidref 279129912 R rec 6f364058-fa2b-43e4-8404-b43a912d4b29 +2024-09-10 15:47:30.442381 2024-09-10 15:47:30.442386 pidref 279129920 R rec 5d3e385f-e1f6-417b-9711-d191010b9b1d +2024-09-10 15:47:30.505451 2024-09-10 15:47:30.505457 pidref 279130252 R rec b49775a5-a0b3-4b0e-82bd-5097c3a02dd6 +2024-09-10 15:47:30.567014 2024-09-10 15:47:30.567023 pidref 279131321 R rec 975300ee-464b-46c0-b81f-b20b64773893 +2024-09-10 15:47:30.625815 2024-09-10 15:47:30.625821 pidref 279131356 R rec e54f3e2e-f4ac-48cb-a864-549da98b9a34 +2024-09-10 15:47:30.687016 2024-09-10 15:47:30.687021 pidref 27913150X R rec 9a271a8d-63be-469b-8aaf-c88526f10158 +2024-09-10 15:47:30.748213 2024-09-10 15:47:30.748219 pidref 279131593 R rec 3f6a7e3e-5c0b-48db-b95b-4820f6b2523b +2024-09-10 15:47:30.820594 2024-09-10 15:47:30.8206 pidref 279132409 R rec 6fc020ef-78b8-45fc-8fa1-d967459996a6 +2024-09-10 15:47:30.890435 2024-09-10 15:47:30.89044 pidref 279132581 R rec 1315b829-94da-439a-bbe4-b4d66d7cbfb9 +2024-09-10 15:47:30.956248 2024-09-10 15:47:30.956253 pidref 279133782 R rec 4e39882a-9987-4672-9568-692a49ee6c7d +2024-09-10 15:47:31.03803 2024-09-10 15:47:31.038035 pidref 27913438X R rec cebd8160-7ea4-4197-911d-0c360efa8045 +2024-09-10 15:47:31.099294 2024-09-10 15:47:31.099301 pidref 27913469X R rec 7c699022-4713-4362-90a6-67d199660e88 +2024-09-10 15:47:31.174868 2024-09-10 15:47:31.174873 pidref 279135130 R rec 2ee161a5-e37e-4daa-8317-63a8b213303a +2024-09-10 15:47:31.232855 2024-09-10 15:47:31.23286 pidref 279135289 R rec 3ee42eeb-4715-4253-81c2-6a1c9cb33746 +2024-09-10 15:47:31.294868 2024-09-10 15:47:31.294874 pidref 279135777 R rec 05edb895-1c38-4ea1-86fd-1cedfd63f07c +2024-09-10 15:47:31.362514 2024-09-10 15:47:31.36252 pidref 279135890 R rec 3d1a9121-3749-4518-8bf5-3a244b498826 +2024-09-10 15:47:31.441988 2024-09-10 15:47:31.441994 pidref 279136730 R rec 57dffb38-a440-4d24-85a8-8b42e6cd0656 +2024-09-10 15:47:31.51672 2024-09-10 15:47:31.516726 pidref 279136900 R rec 222f9934-cb64-4a3d-928d-9062f20e56e0 +2024-09-10 15:47:31.613558 2024-09-10 15:47:31.613564 pidref 279146884 R rec 9a725f63-a87b-448c-b759-623e6d99a30b +2024-09-10 15:47:31.678719 2024-09-10 15:47:31.678725 pidref 279147546 R rec e6eb1a35-d756-4ed3-8a6b-7bac9eb7a781 +2024-09-10 15:47:31.741548 2024-09-10 15:47:31.741554 pidref 279147708 R rec 3208929e-320f-4b76-a45e-e2643394e9c4 +2024-09-10 15:47:31.824378 2024-09-10 15:47:31.824383 pidref 27914783X R rec 2f359a42-1a1c-45c2-8a73-195dc38193a6 +2024-09-10 15:47:31.881855 2024-09-10 15:47:31.88186 pidref 279148232 R rec a7eab61b-3828-46c9-84f3-6f1458f1cc10 +2024-09-10 15:47:31.940083 2024-09-10 15:47:31.940092 pidref 279148658 R rec a80c2f80-bd88-47f4-87ea-300caaf68d69 +2024-09-10 15:47:32.002857 2024-09-10 15:47:32.002862 pidref 279148739 R rec afe286b2-4f0f-400f-ae39-9970b2117270 +2024-09-10 15:47:32.067515 2024-09-10 15:47:32.06752 pidref 279149492 R rec d9779016-53b7-4934-ba97-659b7f7ca7ad +2024-09-10 15:47:32.140709 2024-09-10 15:47:32.140714 pidref 279149522 R rec aa57ee8c-ac44-4753-a09c-36f9cd2d0242 +2024-09-10 15:47:32.207554 2024-09-10 15:47:32.207559 pidref 279150350 R rec 87a0214f-2be2-4a55-aaa2-8d7ee3f38301 +2024-09-10 15:47:32.266349 2024-09-10 15:47:32.266355 pidref 279150504 R rec 99aaf5ed-b83d-41e7-af86-780a50b21bfe +2024-09-10 15:47:32.327693 2024-09-10 15:47:32.327702 pidref 279150911 R rec b01b3d71-7b42-48bf-a27e-6c89cc689198 +2024-09-10 15:47:32.38671 2024-09-10 15:47:32.386715 pidref 279150989 R rec 7e6fce40-1e8b-4f64-bd67-e9876c291d39 +2024-09-10 15:47:32.459956 2024-09-10 15:47:32.459962 pidref 279152426 R rec 5e7a15fa-8398-4548-9893-e8c4c2bd89c4 +2024-09-10 15:47:32.522649 2024-09-10 15:47:32.522654 pidref 27915397X R rec e62592da-3a38-43a9-8aa9-bca048f30757 +2024-09-10 15:47:32.583548 2024-09-10 15:47:32.583554 pidref 279154097 R rec 52b32090-4c48-4af6-8925-d07555db03b2 +2024-09-10 15:47:32.657356 2024-09-10 15:47:32.657361 pidref 279154437 R rec 8e56facb-0e3e-4ca0-a740-57c9aa7b3198 +2024-09-10 15:47:32.720856 2024-09-10 15:47:32.720861 pidref 279154488 R rec 960ab6dd-1bea-4651-9370-f03d00c15c29 +2024-09-10 15:47:32.798735 2024-09-10 15:47:32.798741 pidref 279154542 R rec 8a2f533e-7355-4c2b-85b0-bdda8a9fd98a +2024-09-10 15:47:32.873793 2024-09-10 15:47:32.873799 pidref 279154593 R rec c5c01059-f1d2-4104-868b-54f4be71104c +2024-09-10 15:47:32.997891 2024-09-10 15:47:32.997897 pidref 279156766 R rec 7f268899-e952-4838-bc9e-bd01692868b6 +2024-09-10 15:47:33.061928 2024-09-10 15:47:33.061935 pidref 279158475 R rec 46ccef1d-779a-4dd7-9d54-2558610cd13d +2024-09-10 15:47:33.12337 2024-09-10 15:47:33.123379 pidref 279158599 R rec 1b27a32e-f840-4496-ba63-fd5ddb27efef +2024-09-10 15:47:33.182397 2024-09-10 15:47:33.182401 pidref 27915948X R rec 0b326778-2e55-4524-8aeb-3da7472a3c7a +2024-09-10 15:47:33.241749 2024-09-10 15:47:33.241755 pidref 279166303 R rec 7fefeee4-511e-4ffe-babf-b9ea45fb4bad +2024-09-10 15:47:33.30504 2024-09-10 15:47:33.305045 pidref 279167334 R rec 36d03239-028f-44fb-8c17-e4bebe31649a +2024-09-10 15:47:33.365893 2024-09-10 15:47:33.365899 pidref 27918669X R rec 8ec6625c-2e7e-4f8f-a039-fc18dbd363d2 +2024-09-10 15:47:33.435604 2024-09-10 15:47:33.43561 pidref 279187610 R rec 10ba26d7-2e45-47df-8f6f-2cdde4a6f185 +2024-09-10 15:47:33.497407 2024-09-10 15:47:33.497413 pidref 279188994 R rec 4286a303-28a3-4ad6-b578-936af1b5d62c +2024-09-10 15:47:33.56905 2024-09-10 15:47:33.569055 pidref 279189087 R rec efef42c8-a1bd-4d34-9a4c-1a571cf8e7b6 +2024-09-10 15:47:33.624158 2024-09-10 15:47:33.624163 pidref 279189249 R rec c581c4f7-a508-4d53-87d1-bc35fd55bee4 +2024-09-10 15:47:33.680097 2024-09-10 15:47:33.680103 pidref 279192576 R rec 4fce5c81-43f5-4a52-9f3e-9abd2c555235 +2024-09-10 15:47:33.737531 2024-09-10 15:47:33.737537 pidref 27919269X R rec f245f212-2aeb-45b5-9b8b-ae43f9369e2c +2024-09-10 15:47:33.796091 2024-09-10 15:47:33.796097 pidref 279192800 R rec 54cbd903-3a43-499f-a684-3b3ffa4223ab +2024-09-10 15:47:33.854864 2024-09-10 15:47:33.854869 pidref 27919305X R rec ff41d0ad-88a4-4c4c-8e6d-276f3b48f11d +2024-09-10 15:47:33.912983 2024-09-10 15:47:33.912988 pidref 279193092 R rec 94d0d2f1-5ada-4ff5-bf9f-38af62d9a655 +2024-09-10 15:47:33.972279 2024-09-10 15:47:33.972284 pidref 279193181 R rec 6943bfc9-17f1-4083-b700-9b8ce8b4f6ac +2024-09-10 15:47:34.032222 2024-09-10 15:47:34.032228 pidref 27919336X R rec cd36a086-8ea3-49b9-87e0-c4a3f1a5cfdc +2024-09-10 15:47:34.100073 2024-09-10 15:47:34.100079 pidref 279193750 R rec adbb80c0-d141-4f6c-bdd1-fcc38eb5480b +2024-09-10 15:47:34.167707 2024-09-10 15:47:34.167713 pidref 279199929 R rec 8ac49544-a1e6-4872-be6f-9fa249b6316d +2024-09-10 15:47:34.236593 2024-09-10 15:47:34.236598 pidref 279200471 R rec 1a21d768-ace3-452c-848c-5db12d5cbf1e +2024-09-10 15:47:34.295625 2024-09-10 15:47:34.29563 pidref 279207646 R rec f1c23449-addc-42e0-9e3f-e33a08a5b2e7 +2024-09-10 15:47:34.35652 2024-09-10 15:47:34.356529 pidref 279209592 R rec ed317c80-5e25-4359-a723-8f67598bdd5e +2024-09-10 15:47:34.416988 2024-09-10 15:47:34.416994 pidref 279209754 R rec 655cb9b0-ce33-4f57-8a7e-b11d0b0dbcd2 +2024-09-10 15:47:34.475997 2024-09-10 15:47:34.476003 pidref 279209886 R rec 944767f0-11b1-4f50-aa5a-aca20a8b49e5 +2024-09-10 15:47:34.533633 2024-09-10 15:47:34.533638 pidref 279210809 R rec 1f45b499-53ea-41b7-9e27-7e203ffa6644 +2024-09-10 15:47:34.597944 2024-09-10 15:47:34.59795 pidref 279211066 R rec 8991a76e-2d56-4250-9379-6af1d2d236bf +2024-09-10 15:47:34.66649 2024-09-10 15:47:34.666495 pidref 279211147 R rec 11e056a9-442f-4d32-9319-8079dae892d8 +2024-09-10 15:47:34.722143 2024-09-10 15:47:34.722151 pidref 279214944 R rec dda207ef-d6f1-4532-85cd-5cb793e5335a +2024-09-10 15:47:34.777957 2024-09-10 15:47:34.777963 pidref 279214960 R rec 748416c4-cb34-4dc9-b7aa-f301cc910c5a +2024-09-10 15:47:34.839575 2024-09-10 15:47:34.839583 pidref 279215142 R rec 5f1b2b11-dbb1-4fc1-97e4-9e20cc85ee04 +2024-09-10 15:47:34.895086 2024-09-10 15:47:34.895091 pidref 279215258 R rec f5f32c98-3751-4bff-8951-b3b33db03a9c +2024-09-10 15:47:34.948032 2024-09-10 15:47:34.948038 pidref 279215347 R rec cc543d71-79ec-4f68-ab1b-a1fae798a4d5 +2024-09-10 15:47:35.012797 2024-09-10 15:47:35.012802 pidref 279219717 R rec 0b17d6e7-2482-4758-a6c5-0845b0d627f9 +2024-09-10 15:47:35.079129 2024-09-10 15:47:35.079135 pidref 279221487 R rec 13f2f1b3-8143-4e50-84b4-f588607fb238 +2024-09-10 15:47:35.154593 2024-09-10 15:47:35.154599 pidref 279230087 R rec 340d88ee-e0e6-4284-950d-68184c0072ad +2024-09-10 15:47:35.214498 2024-09-10 15:47:35.214504 pidref 279231547 R rec 33329bbf-a878-4799-b2da-a2b19a2cbca7 +2024-09-10 15:47:35.277605 2024-09-10 15:47:35.27761 pidref 279231679 R rec eab9a61c-7d23-4b00-9ab0-33a3cfe8af88 +2024-09-10 15:47:35.336266 2024-09-10 15:47:35.336271 pidref 279233493 R rec f041f808-4767-490a-beb8-a0ac2896f992 +2024-09-10 15:47:35.399012 2024-09-10 15:47:35.399018 pidref 279233639 R rec ec999d59-a36b-421e-8127-01d58d652a6b +2024-09-10 15:47:35.456083 2024-09-10 15:47:35.456088 pidref 279233752 R rec 42d4ba24-c6bd-496e-8726-f7c4ab208b76 +2024-09-10 15:47:35.555543 2024-09-10 15:47:35.555548 pidref 279236417 R rec 1b5970dd-03dc-4fcc-9adf-e19fd82a703a +2024-09-10 15:47:35.617381 2024-09-10 15:47:35.617386 pidref 279236611 R rec 9c47a8a6-f83c-4520-8f59-56a31265ca76 +2024-09-10 15:47:35.694716 2024-09-10 15:47:35.694721 pidref 279236697 R rec 5a556a31-0a65-4378-b2be-700de41a922e +2024-09-10 15:47:35.755876 2024-09-10 15:47:35.755881 pidref 279238037 R rec bb7a702e-11e7-41f4-9be4-d9375205ec1d +2024-09-10 15:47:35.819276 2024-09-10 15:47:35.819282 pidref 279245947 R rec 056e22c0-aed3-4440-a94f-bea4704e2465 +2024-09-10 15:47:35.880527 2024-09-10 15:47:35.880532 pidref 279246358 R rec 2f9b60cf-ad0b-44c4-a9c9-5be18c702170 +2024-09-10 15:47:35.943438 2024-09-10 15:47:35.943443 pidref 279247060 R rec 1c2abcdb-b3ee-4871-b0da-21a5cad8c1a9 +2024-09-10 15:47:36.005481 2024-09-10 15:47:36.005492 pidref 279247087 R rec b125054e-f9e7-4ced-be28-d5b6eabd7451 +2024-09-10 15:47:36.065906 2024-09-10 15:47:36.065911 pidref 279247184 R rec 70061883-e1b6-48fa-af8c-cfe7062e3172 +2024-09-10 15:47:36.127442 2024-09-10 15:47:36.127447 pidref 279248180 R rec 531244e7-9edd-4fa9-96a9-7d0c8397c67c +2024-09-10 15:47:36.195506 2024-09-10 15:47:36.195512 pidref 279248288 R rec fd83a4e3-0452-45e2-a8b7-f3c21561b336 +2024-09-10 15:47:36.268285 2024-09-10 15:47:36.26829 pidref 279248482 R rec a21041c8-685d-47c7-bdcc-e8ebf1bfe895 +2024-09-10 15:47:36.339531 2024-09-10 15:47:36.339536 pidref 279248598 R rec b3d0631f-bd46-4997-af19-535cbe403411 +2024-09-10 15:47:36.399773 2024-09-10 15:47:36.399779 pidref 279248792 R rec bd647a8a-3b47-4629-9076-a5462551e967 +2024-09-10 15:47:36.463071 2024-09-10 15:47:36.463076 pidref 279249535 R rec a58ea4fe-786c-4918-aa08-582e86764fd6 +2024-09-10 15:47:36.539682 2024-09-10 15:47:36.539687 pidref 279250002 R rec c7257187-d328-4c78-9797-96ee442c663f +2024-09-10 15:47:36.599688 2024-09-10 15:47:36.599693 pidref 279250142 R rec b719c7ca-433c-4548-8807-795397f70da2 +2024-09-10 15:47:36.664823 2024-09-10 15:47:36.664828 pidref 279253001 R rec d5670410-450f-425a-9b60-0e60f33d5fa2 +2024-09-10 15:47:36.736717 2024-09-10 15:47:36.736722 pidref 279255381 R rec 54afcf56-e56e-4e7e-b944-2ec3ee3fe87b +2024-09-10 15:47:36.793527 2024-09-10 15:47:36.793532 pidref 279255519 R rec 76dc1d38-b54e-4ff3-bd4b-b2ce16ba2174 +2024-09-10 15:47:36.860794 2024-09-10 15:47:36.860799 pidref 279256337 R rec f969357a-b616-46b9-8878-32316859b743 +2024-09-10 15:47:36.925483 2024-09-10 15:47:36.925488 pidref 279256434 R rec 453155a9-3f62-43f9-b4bb-fc95d0c15033 +2024-09-10 15:47:36.999577 2024-09-10 15:47:36.999583 pidref 279256574 R rec 6f60939f-5fa9-49f3-9a1b-7e228a0a44a1 +2024-09-10 15:47:37.083824 2024-09-10 15:47:37.083829 pidref 279256647 R rec ada779a6-61a8-46b4-8274-71fd3d973080 +2024-09-10 15:47:37.149535 2024-09-10 15:47:37.149541 pidref 279257120 R rec c247e8dd-14c7-4e2c-a2a0-36c00acd078f +2024-09-10 15:47:37.22137 2024-09-10 15:47:37.221376 pidref 279263864 R rec 8465e65a-26bf-442f-be00-8022a7eaf613 +2024-09-10 15:47:37.289953 2024-09-10 15:47:37.289956 pidref 279264410 R rec 9905f9d2-2388-4e41-96bf-411fc7010737 +2024-09-10 15:47:37.350505 2024-09-10 15:47:37.350511 pidref 279288743 R rec fad0c743-d710-4ad2-ab4b-29acf7283d0a +2024-09-10 15:47:37.40706 2024-09-10 15:47:37.407066 pidref 279307500 R rec 380fcdd6-2f36-416a-b646-44840c759f7b +2024-09-10 15:47:37.467978 2024-09-10 15:47:37.467984 pidref 279307772 R rec 78a32811-3e28-490e-8689-3438dbca7f19 +2024-09-10 15:47:37.525551 2024-09-10 15:47:37.525556 pidref 279307829 R rec 5b27a28b-f084-4d72-b499-d46e54ef5245 +2024-09-10 15:47:37.585232 2024-09-10 15:47:37.585237 pidref 279307845 R rec 3af337c0-b752-40c5-8493-ae4602224186 +2024-09-10 15:47:37.653977 2024-09-10 15:47:37.653982 pidref 279311044 R rec 2abc5d88-f498-4201-89a0-50071aaa1144 +2024-09-10 15:47:37.707934 2024-09-10 15:47:37.707939 pidref 279311443 R rec 8084551e-8b16-478e-bdfb-81b192b6d737 +2024-09-10 15:47:37.773025 2024-09-10 15:47:37.773031 pidref 279312415 R rec 381f884b-058e-453f-a098-18996332ba4f +2024-09-10 15:47:37.835234 2024-09-10 15:47:37.835239 pidref 279313543 R rec 713e1d5c-85de-4ad4-9074-fd6cfdc81d0a +2024-09-10 15:47:37.890506 2024-09-10 15:47:37.890512 pidref 279313853 R rec 34bdbf7a-a32f-414b-a9d5-84987ae544fc +2024-09-10 15:47:37.94876 2024-09-10 15:47:37.948766 pidref 279314833 R rec 3b06d7ac-ed46-400c-b94a-b04a65b0dbaa +2024-09-10 15:47:38.007812 2024-09-10 15:47:38.007818 pidref 279315287 R rec 051ff428-3f7c-4d83-8af3-feae5724ba1e +2024-09-10 15:47:38.0623 2024-09-10 15:47:38.062306 pidref 279315368 R rec f2e6b126-98fe-4bfc-9823-7af8e9a7130d +2024-09-10 15:47:38.116841 2024-09-10 15:47:38.116847 pidref 279315597 R rec 3176a14c-453d-4f74-a192-8269fe14b731 +2024-09-10 15:47:38.17838 2024-09-10 15:47:38.178388 pidref 279315678 R rec b99cea9b-2616-416e-b96c-d224610a07db +2024-09-10 15:47:38.23534 2024-09-10 15:47:38.235346 pidref 279315759 R rec 2f0e692b-1357-4db5-977f-d7429ed61b4b +2024-09-10 15:47:38.296913 2024-09-10 15:47:38.296919 pidref 279316232 R rec c4d8f6af-ddaa-48fc-bf42-25b923f21869 +2024-09-10 15:47:38.356603 2024-09-10 15:47:38.356609 pidref 279316291 R rec 270b6eac-9d1b-4982-ac23-27da0332a7ac +2024-09-10 15:47:38.414557 2024-09-10 15:47:38.414564 pidref 279333013 R rec a92fe2ab-74cf-4636-868b-e86bd5835bac +2024-09-10 15:47:38.474632 2024-09-10 15:47:38.474641 pidref 279334699 R rec 9e2f4eac-ef6f-4460-9e2d-bcb9983e836a +2024-09-10 15:47:38.53987 2024-09-10 15:47:38.539878 pidref 279334982 R rec fd1ef473-52e1-4ab3-98ed-57a3551c7a1e +2024-09-10 15:47:38.601423 2024-09-10 15:47:38.601428 pidref 279335156 R rec e9ac6177-e4dc-4938-b5ac-8f228ea32671 +2024-09-10 15:47:38.665587 2024-09-10 15:47:38.665591 pidref 279335512 R rec e3898315-4c5c-4efe-9186-b7ec63cce70e +2024-09-10 15:47:38.72954 2024-09-10 15:47:38.729546 pidref 27933558X R rec e2ccd2a4-eb5b-4562-9055-83681b2b31ac +2024-09-10 15:47:38.80258 2024-09-10 15:47:38.802586 pidref 279347642 R rec 399b3166-67d8-49b1-9e32-71810f43962b +2024-09-10 15:47:38.866118 2024-09-10 15:47:38.866123 pidref 279348304 R rec cb8db430-72c9-4acb-bc67-ed1a92924ef6 +2024-09-10 15:47:38.928478 2024-09-10 15:47:38.928484 pidref 279348363 R rec 34f90086-dbf0-438d-a2f6-913f1794995c +2024-09-10 15:47:38.999873 2024-09-10 15:47:38.999879 pidref 279349807 R rec 62524fcb-40ec-4302-889d-923f195b8387 +2024-09-10 15:47:39.076553 2024-09-10 15:47:39.076559 pidref 279351747 R rec 4b2b42eb-9b20-4d4f-a3f4-45aee4373906 +2024-09-10 15:47:39.146369 2024-09-10 15:47:39.146374 pidref 279351879 R rec 911af6eb-7564-41ba-bef5-b730a8d550b1 +2024-09-10 15:47:39.202399 2024-09-10 15:47:39.202407 pidref 279353162 R rec 163be4b9-9193-4151-bd85-fa8db562aac6 +2024-09-10 15:47:39.268874 2024-09-10 15:47:39.268879 pidref 279353308 R rec 859f6915-88db-4ceb-aa3e-72426e86cf80 +2024-09-10 15:47:39.321598 2024-09-10 15:47:39.321603 pidref 279353928 R rec a251359c-1a51-4511-b51b-3f123be0ac16 +2024-09-10 15:47:39.374284 2024-09-10 15:47:39.374289 pidref 279354118 R rec 991f328b-1a85-43d1-9d3e-f93d4cd79a21 +2024-09-10 15:47:39.436088 2024-09-10 15:47:39.436094 pidref 279354223 R rec 3c410e93-cfae-432b-8b11-917552850d9f +2024-09-10 15:47:39.507007 2024-09-10 15:47:39.507013 pidref 279355173 R rec ba9fda5b-3a60-466f-97d7-cca7835df120 +2024-09-10 15:47:39.569014 2024-09-10 15:47:39.569019 pidref 279357206 R rec 27b808fd-312d-4f94-bcd6-ea3c63df1bde +2024-09-10 15:47:39.630592 2024-09-10 15:47:39.630598 pidref 279368429 R rec 456a2653-9192-4701-95e5-216289ad9fd0 +2024-09-10 15:47:39.68709 2024-09-10 15:47:39.687095 pidref 279369867 R rec a62727c5-ecd8-4660-baad-92b9ba596c7d +2024-09-10 15:47:39.746466 2024-09-10 15:47:39.746472 pidref 27937027X R rec d480f7b7-e228-413e-b727-2941be7fd9f8 +2024-09-10 15:47:39.815306 2024-09-10 15:47:39.815311 pidref 279371322 R rec 4ddf7a3f-884f-4c3a-be7a-edbfd61450c7 +2024-09-10 15:47:39.875742 2024-09-10 15:47:39.87575 pidref 279372280 R rec 4204216a-1434-4107-9932-3a6e774a09f1 +2024-09-10 15:47:39.936402 2024-09-10 15:47:39.936407 pidref 279372906 R rec 33b845c4-a96c-4292-bf6c-0b58f278de63 +2024-09-10 15:47:39.992756 2024-09-10 15:47:39.992761 pidref 279373139 R rec d50aa2bb-ff77-4aa3-a9e2-d941aa3b7ca9 +2024-09-10 15:47:40.053439 2024-09-10 15:47:40.053445 pidref 279373171 R rec e9ead850-857a-461a-bae2-b1530617e85e +2024-09-10 15:47:40.116093 2024-09-10 15:47:40.116099 pidref 279373198 R rec 3e57ae48-b12e-40ef-9a17-8af9a647519e +2024-09-10 15:47:40.183377 2024-09-10 15:47:40.183384 pidref 279373287 R rec f7b3775e-cd63-49ea-8e4f-0c4a43825e8f +2024-09-10 15:47:40.252876 2024-09-10 15:47:40.252881 pidref 279375387 R rec 244dc3b5-c93b-47a5-93c6-fd40ec20eda7 +2024-09-10 15:47:40.315023 2024-09-10 15:47:40.315028 pidref 279375794 R rec de6a7fec-07b6-4bdc-95e5-28eb73343c1d +2024-09-10 15:47:40.374875 2024-09-10 15:47:40.37488 pidref 279375867 R rec 374273fa-2d55-464e-9b23-07357dafab3f +2024-09-10 15:47:40.434653 2024-09-10 15:47:40.434659 pidref 279376405 R rec b41971fc-f445-477b-9f22-e4b3512a65ec +2024-09-10 15:47:40.497217 2024-09-10 15:47:40.497223 pidref 27937660X R rec 9d78026e-e3ca-4172-a8ae-d528b4427ca4 +2024-09-10 15:47:40.558174 2024-09-10 15:47:40.55818 pidref 279376693 R rec d6aca6c9-1482-4d5b-a57e-63f3757bc190 +2024-09-10 15:47:40.621794 2024-09-10 15:47:40.621799 pidref 279376804 R rec 2c5434aa-edb9-42c4-abe2-d9f39527d57a +2024-09-10 15:47:40.680246 2024-09-10 15:47:40.680252 pidref 279377266 R rec 8bf9d52b-5984-431f-a6e8-602acb8c1508 +2024-09-10 15:47:40.740607 2024-09-10 15:47:40.740613 pidref 279377452 R rec 7cf49c02-4c5b-491a-885d-069ab6079e39 +2024-09-10 15:47:40.800394 2024-09-10 15:47:40.8004 pidref 279378173 R rec 5b6bb42a-ab46-46c8-8c2f-b9a000f64717 +2024-09-10 15:47:40.867077 2024-09-10 15:47:40.867086 pidref 279380925 R rec b5f2f168-9d6d-4970-bd2f-d7faf1b11905 +2024-09-10 15:47:40.938849 2024-09-10 15:47:40.938855 pidref 279385544 R rec 014f893f-4fb6-4c44-bed9-13ca954d6d32 +2024-09-10 15:47:41.016927 2024-09-10 15:47:41.016934 pidref 279385625 R rec 4ce50468-e74a-4029-8211-543955bb78b8 +2024-09-10 15:47:41.092706 2024-09-10 15:47:41.092711 pidref 27938646X R rec 45189f24-3e87-4237-97ca-c974809c85d3 +2024-09-10 15:47:41.16197 2024-09-10 15:47:41.161976 pidref 279387199 R rec 04ef5b5e-c54a-4a4c-93d2-77557a75c8e6 +2024-09-10 15:47:41.233984 2024-09-10 15:47:41.23399 pidref 279388810 R rec 529e9845-47d1-463d-ad49-ee76e0933610 +2024-09-10 15:47:41.294202 2024-09-10 15:47:41.294207 pidref 279390351 R rec 624f581d-2111-420a-b585-f31fc5d7b339 +2024-09-10 15:47:41.352403 2024-09-10 15:47:41.352409 pidref 279391544 R rec 6e1dbb47-5e33-4e56-86ba-da117ad92420 +2024-09-10 15:47:41.424313 2024-09-10 15:47:41.424319 pidref 279391609 R rec 9b4a75dc-8f8f-4552-974b-c7860ac37a98 +2024-09-10 15:47:41.510029 2024-09-10 15:47:41.510034 pidref 279392400 R rec ce548dc9-a136-4af7-aa5a-84d0b1934872 +2024-09-10 15:47:41.572204 2024-09-10 15:47:41.572209 pidref 279394381 R rec 9010b562-00ee-48cc-ad28-55d1dd7db5e0 +2024-09-10 15:47:41.631313 2024-09-10 15:47:41.631319 pidref 279396155 R rec 8488c52c-24a5-4626-af06-c495e7ddc062 +2024-09-10 15:47:41.702714 2024-09-10 15:47:41.70272 pidref 279401639 R rec 04569884-835b-4d97-b454-6fa8095b2dd0 +2024-09-10 15:47:41.760621 2024-09-10 15:47:41.760627 pidref 279403984 R rec b6f4b2bd-50bb-41bd-a85d-f2f08f5b5b82 +2024-09-10 15:47:41.82464 2024-09-10 15:47:41.824644 pidref 279414145 R rec 1f6065b6-46da-470c-a4df-bccf436809ad +2024-09-10 15:47:41.884007 2024-09-10 15:47:41.884012 pidref 279416679 R rec ffbc52f6-c9a0-4e62-afe9-7f6e3536c5c3 +2024-09-10 15:47:41.943674 2024-09-10 15:47:41.943681 pidref 27941806X R rec 8ca0d909-d84b-49fb-944a-25db5f9c751e +2024-09-10 15:47:42.007253 2024-09-10 15:47:42.007258 pidref 279418728 R rec 8329357c-fce8-46df-b289-a50f9783215e +2024-09-10 15:47:42.078992 2024-09-10 15:47:42.078997 pidref 279421427 R rec 0dd7d746-95b3-4d18-adf1-3024b85cf80f +2024-09-10 15:47:42.136225 2024-09-10 15:47:42.13623 pidref 279426739 R rec d3623d48-5558-40ad-8c4b-77f8a00c262e +2024-09-10 15:47:42.197644 2024-09-10 15:47:42.19765 pidref 279461429 R rec 491a05b5-6ae8-48ac-8aa3-b274de9c4a3c +2024-09-10 15:47:42.257319 2024-09-10 15:47:42.257327 pidref 279466293 R rec 0e1647a1-7498-498d-a854-7b53b360be76 +2024-09-10 15:47:42.316359 2024-09-10 15:47:42.316365 pidref 279467850 R rec 1114d20c-8fec-46c9-8201-0ec450b88fce +2024-09-10 15:47:42.387444 2024-09-10 15:47:42.387449 pidref 279469632 R rec d809358b-5b7f-4026-9faa-5073fa4caa97 +2024-09-10 15:47:42.445779 2024-09-10 15:47:42.445784 pidref 279471467 R rec 085b09fd-8e1b-4716-a6aa-d04eace84380 +2024-09-10 15:47:42.506864 2024-09-10 15:47:42.506869 pidref 279471734 R rec 31215077-4a13-49d0-80b4-f5acebe2bd60 +2024-09-10 15:47:42.566714 2024-09-10 15:47:42.566719 pidref 279478208 R rec 63f6343e-755e-4cf3-ab92-83a83cf84459 +2024-09-10 15:47:42.627052 2024-09-10 15:47:42.627058 pidref 279487606 R rec 39509405-a9e9-4d17-af6e-9bf69e9497ad +2024-09-10 15:47:42.700632 2024-09-10 15:47:42.700638 pidref 279488076 R rec a13de4c3-b980-4f63-942a-b52f1b31ba21 +2024-09-10 15:47:42.770793 2024-09-10 15:47:42.770798 pidref 279492820 R rec 2576ad9b-bff6-453d-bb3c-72ccfc6e2e20 +2024-09-10 15:47:42.826934 2024-09-10 15:47:42.826939 pidref 279493584 R rec 9f01a56f-b7af-4728-bd0b-f5f0b2fc8add +2024-09-10 15:47:42.886649 2024-09-10 15:47:42.886654 pidref 279494602 R rec 01bfc7b0-0997-4e94-9347-6045462b35b4 +2024-09-10 15:47:42.946266 2024-09-10 15:47:42.946272 pidref 279494637 R rec 2bc44d2b-d191-49bd-93c1-fd83ce541d9d +2024-09-10 15:47:43.018843 2024-09-10 15:47:43.018849 pidref 279494653 R rec 212abd8e-49b7-4779-9984-db515dd34fc4 +2024-09-10 15:47:43.088115 2024-09-10 15:47:43.088122 pidref 279494688 R rec 2720d82a-2f87-43b1-b42c-7d9230f6fc6a +2024-09-10 15:47:43.163574 2024-09-10 15:47:43.16358 pidref 279501080 R rec 7ae98f16-56df-42fe-8e1f-8888f942368c +2024-09-10 15:47:43.234333 2024-09-10 15:47:43.234338 pidref 27950277X R rec 167e7b8f-f988-43c4-98e1-0a621f1e18bc +2024-09-10 15:47:43.290022 2024-09-10 15:47:43.290029 pidref 279503288 R rec a30fe57b-0eb5-4455-98f2-37c7f43cff15 +2024-09-10 15:47:43.342998 2024-09-10 15:47:43.343003 pidref 279505264 R rec fbd36d63-0177-49b9-9ae7-a8c1047e2010 +2024-09-10 15:47:43.400797 2024-09-10 15:47:43.400802 pidref 279507097 R rec 6e4317e2-1032-4ef5-9ba2-4c3ea90efbfb +2024-09-10 15:47:43.458712 2024-09-10 15:47:43.458718 pidref 279507208 R rec 0207edfb-0eb6-4236-a0c0-60e40ec3f69e +2024-09-10 15:47:43.516479 2024-09-10 15:47:43.516485 pidref 279516932 R rec ebae6a52-d3e7-442b-a0b4-d5dbd47c035d +2024-09-10 15:47:43.585212 2024-09-10 15:47:43.585217 pidref 279522053 R rec beeb3c89-4fb2-4ec5-8020-218bef42a0b1 +2024-09-10 15:47:43.669856 2024-09-10 15:47:43.669862 pidref 279523505 R rec 65c20e1e-2234-44d7-ab99-284071813c4c +2024-09-10 15:47:43.729074 2024-09-10 15:47:43.72908 pidref 279523858 R rec 701e09d4-c09b-466e-b8ed-bad0454784b5 +2024-09-10 15:47:43.797886 2024-09-10 15:47:43.797892 pidref 279524072 R rec 3b9c2973-f455-4037-8961-c9cae713aa7e +2024-09-10 15:47:43.859472 2024-09-10 15:47:43.859477 pidref 279524080 R rec d0b1b51a-8f48-4276-8ab8-b968139118d2 +2024-09-10 15:47:43.916419 2024-09-10 15:47:43.916426 pidref 279532881 R rec d6523907-359d-4411-b42e-6c6d686e43c1 +2024-09-10 15:47:43.973705 2024-09-10 15:47:43.97371 pidref 279533497 R rec 3369cc1b-aa35-465b-b61d-797a1669805d +2024-09-10 15:47:44.02965 2024-09-10 15:47:44.029655 pidref 279535783 R rec 02495f7e-4493-4562-92f7-120d53e2e39b +2024-09-10 15:47:44.087253 2024-09-10 15:47:44.087259 pidref 279536011 R rec a570d550-3581-451f-8bd8-92806c81bb70 +2024-09-10 15:47:44.148391 2024-09-10 15:47:44.148399 pidref 279537719 R rec bf654e2a-4489-4ef9-b4e3-e4b7cf3a024f +2024-09-10 15:47:44.206959 2024-09-10 15:47:44.206965 pidref 279539363 R rec 6a37911f-4632-43f1-9d2f-836e31a2df9a +2024-09-10 15:47:44.265063 2024-09-10 15:47:44.265069 pidref 279562098 R rec 8b24d008-a0e6-4410-b9cc-90be08dccc31 +2024-09-10 15:47:44.323318 2024-09-10 15:47:44.323324 pidref 279571550 R rec eb563466-160f-4c4a-9f1e-58b5856b2341 +2024-09-10 15:47:44.381203 2024-09-10 15:47:44.381212 pidref 279571658 R rec 11e7b08a-766a-47b7-9cdb-966f938c3f43 diff --git a/data/plgnd.json b/data/plgnd.json index 7f265f44..a0b9fbee 100644 --- a/data/plgnd.json +++ b/data/plgnd.json @@ -1,13 +1,6 @@ [ { "authorized_access_point": "Burgwall Katovice", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Burgwall" - } - ], "identifiedBy": [ { "source": "GND", @@ -25,6 +18,7 @@ "value": "(DE-588)1335257845" } ], + "identifier": "http://d-nb.info/gnd/1335257845", "pid": "1335257845", "type": "bf:Place", "broader": [ @@ -39,7 +33,7 @@ "Katowice", "Katowitz" ], - "md5": "94179a3a9fb9e72053f299534acfbeb8" + "md5": "40205680c9a1f2ca9bacadedfbc96d28" }, { "authorized_access_point": "Katovice", @@ -60,12 +54,19 @@ "value": "(DE-588)1335257101" } ], + "identifier": "http://d-nb.info/gnd/1335257101", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Katovice&oldid=242019016" ] + }, + { + "noteType": "general", + "label": [ + "Minderstadt im Okres Strakonnice" + ] } ], "pid": "1335257101", @@ -73,7 +74,7 @@ "variant_access_point": [ "Katowitz" ], - "md5": "1957d4f38b442be11cb057eaaf7e9880" + "md5": "370e0b93363ce55d7c5166b444b8826d" }, { "authorized_access_point": "Malbork-Wielbark", @@ -94,6 +95,7 @@ "value": "(DE-588)133525675X" } ], + "identifier": "http://d-nb.info/gnd/133525675X", "note": [ { "noteType": "dataSource", @@ -104,7 +106,8 @@ { "noteType": "general", "label": [ - "Ort in der Wojewodschaft Pommern, Powiat malborski; der gro\u0308\u00dfere Teil geho\u0308rt zur Stadt Malbork" + "Ort in der Wojewodschaft Pommern, Powiat malborski; der gro\u0308\u00dfere Teil geho\u0308rt zur Stadt Malbork", + "Fu\u0308r die Sacherschlie\u00dfung wird bei Splits nur diese (das ist die neueste/ju\u0308ngste) Namensform verwendet" ] } ], @@ -114,7 +117,7 @@ "Wielbark", "Willenberg" ], - "md5": "87b304ecb151a650c9367d93c40ff32d" + "md5": "d7a86b34d986a931b36805c6f2b7a0a2" }, { "authorized_access_point": "Kwiatko\u0301w", @@ -135,27 +138,28 @@ "value": "(DE-588)133525207X" } ], + "identifier": "http://d-nb.info/gnd/133525207X", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://pl.wikipedia.org/w/index.php?title=Kwiatk%C3%B3w_(powiat_turecki)&oldid=72550113" ] + }, + { + "noteType": "general", + "label": [ + "Ort in der Gmina Brudzew, Powiat turecki, Wojewodschaft Gro\u00dfpolen", + "Fu\u0308r die Sacherschlie\u00dfung wird bei Splits nur diese (das ist die neueste/ju\u0308ngste) Namensform verwendet" + ] } ], "pid": "133525207X", "type": "bf:Place", - "md5": "b1ee337f5077380a09d68066d99f29e1" + "md5": "792b70c854a060c168a8f716217821f1" }, { "authorized_access_point": "Steinburg (Su\u0308derau)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Tiefenburg" - } - ], "identifiedBy": [ { "source": "GND", @@ -173,12 +177,19 @@ "value": "(DE-588)1335249966" } ], + "identifier": "http://d-nb.info/gnd/1335249966", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/wiki/Steinburg_(Holstein)" ] + }, + { + "noteType": "general", + "label": [ + "Abgebrochen ab 1641, seither wu\u0308st" + ] } ], "pid": "1335249966", @@ -188,17 +199,10 @@ "authorized_access_point": "Su\u0308derau" } ], - "md5": "a5325d2bbb62afe52cb7ebbcb815ca5c" + "md5": "acbf23211a125fa05b002dab9f4b41f6" }, { "authorized_access_point": "San Pietro Apostolo (San Basilio, Sardinien)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kirchenbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -216,6 +220,15 @@ "value": "(DE-588)1335243240" } ], + "identifier": "http://d-nb.info/gnd/1335243240", + "note": [ + { + "noteType": "general", + "label": [ + "Pfarrkirche, der Kirchenbau stammt aus der Zeit 1593 bis 1723" + ] + } + ], "pid": "1335243240", "type": "bf:Place", "broader": [ @@ -223,17 +236,10 @@ "authorized_access_point": "San Basilio (Sardinien)" } ], - "md5": "937cf0248f6d4da93792064e35dcedd6" + "md5": "b6554a2c351a38ed99774757903595f0" }, { "authorized_access_point": "Klosteranlage des Monastero di Santa Croce alla Giudecca (Venedig)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Klosteranlage" - } - ], "identifiedBy": [ { "source": "GND", @@ -251,6 +257,15 @@ "value": "(DE-588)133523909X" } ], + "identifier": "http://d-nb.info/gnd/133523909X", + "note": [ + { + "noteType": "general", + "label": [ + "nach Aufgabe des Klosters 1810 als Arbeitshaus und Gefa\u0308ngnis genutzt" + ] + } + ], "pid": "133523909X", "type": "bf:Place", "broader": [ @@ -258,7 +273,7 @@ "authorized_access_point": "Venedig" } ], - "md5": "1a4877fe79fc01dacd70b37352479599" + "md5": "c64f44f307cf8aa2dfade21dd2b78098" }, { "authorized_access_point": "Gunzenhausen-Bu\u0308chelberg", @@ -279,6 +294,7 @@ "value": "(DE-588)1335217711" } ], + "identifier": "http://d-nb.info/gnd/1335217711", "pid": "1335217711", "type": "bf:Place", "related": [ @@ -289,7 +305,7 @@ "variant_access_point": [ "Bu\u0308chelberg (Gunzenhausen)" ], - "md5": "e00f859c0020ce7c33fda090bc62842f" + "md5": "f4d1fb3b3de96d0db96069655309c771" }, { "authorized_access_point": "Skillman, NJ", @@ -310,6 +326,7 @@ "value": "(DE-588)1335201653" } ], + "identifier": "http://d-nb.info/gnd/1335201653", "pid": "1335201653", "type": "bf:Place", "broader": [ @@ -320,7 +337,7 @@ "variant_access_point": [ "Skillman, New Jersey" ], - "md5": "e1c64024aa0576dfe4b4c9df1d6cf3d5" + "md5": "68cfdc6f7144d7eab3c5ec71e23368d7" }, { "authorized_access_point": "Caicara de Maturi\u0301n", @@ -341,27 +358,27 @@ "value": "(DE-588)1335141790" } ], + "identifier": "http://d-nb.info/gnd/1335141790", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia (spanisch) - https://es.wikipedia.org/wiki/Caicara_de_Matur%C3%ADn" ] + }, + { + "noteType": "general", + "label": [ + "Kleinstadt im venezolanischen Bundesstaat Monagas" + ] } ], "pid": "1335141790", "type": "bf:Place", - "md5": "288e6d783cf8aa5fa5a0b42dd891e07c" + "md5": "63ddaee5a91963d705696f335fe48161" }, { "authorized_access_point": "Hokuriku", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Region" - } - ], "identifiedBy": [ { "source": "GND", @@ -379,6 +396,15 @@ "value": "(DE-588)1335107711" } ], + "identifier": "http://d-nb.info/gnd/1335107711", + "note": [ + { + "noteType": "general", + "label": [ + "Teilregion der japanischen Region Chu\u0304bu" + ] + } + ], "pid": "1335107711", "type": "bf:Place", "broader": [ @@ -390,7 +416,7 @@ "Hokuriku Chiho\u0304", "\u5317\u9678\u5730\u65b9" ], - "md5": "d80ee3c9ce81f4f91547769bee01fb28" + "md5": "b966251d2bd0fbac2f406bdabb864a81" }, { "authorized_access_point": "Alt-Albenreuth", @@ -411,12 +437,19 @@ "value": "(DE-588)1335104917" } ], + "identifier": "http://d-nb.info/gnd/1335104917", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=M%C3%BDtina&oldid=240251478" ] + }, + { + "noteType": "general", + "label": [ + "In der Sacherschlie\u00dfung nicht zu verwenden; fu\u0308r die Sacherschlie\u00dfung wird bei Splits nur die neueste/ju\u0308ngste Namensform verwendet." + ] } ], "pid": "1335104917", @@ -431,7 +464,7 @@ "Altalbenreuth", "Stary\u0301 Albenreuth" ], - "md5": "83042e35d08f362226a9d447b8c872bf" + "md5": "dd46f92a4e77173e592256002f69ed0b" }, { "authorized_access_point": "Portsmouth (Dominica)", @@ -452,27 +485,27 @@ "value": "(DE-588)1335098399" } ], + "identifier": "http://d-nb.info/gnd/1335098399", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/wiki/Portsmouth_(Dominica)" ] + }, + { + "noteType": "general", + "label": [ + "Kleinstadt im Norden des Inselstaates Dominica" + ] } ], "pid": "1335098399", "type": "bf:Place", - "md5": "61bb294f92844e87999c8208c6c90d32" + "md5": "d53c277eca6d0f91014e4b8063b35cb9" }, { "authorized_access_point": "Villa Wente\u0301 (Bad Breisig)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Villa" - } - ], "identifiedBy": [ { "source": "GND", @@ -490,12 +523,19 @@ "value": "(DE-588)1335092390" } ], + "identifier": "http://d-nb.info/gnd/1335092390", "note": [ { "noteType": "dataSource", "label": [ "AW-Wiki - https://www.aw-wiki.de/index.php/Villa_Wente_(Niederbreisig)" ] + }, + { + "noteType": "general", + "label": [ + "1970 abgerissen" + ] } ], "pid": "1335092390", @@ -515,7 +555,7 @@ "Villa Wente\u0301 (Bad Niederbreisig)", "Villa Wente\u0301 (Bad Breisig- Niederbreisig)" ], - "md5": "9871042c3dcdb867a88ed1f6e6d37c1a" + "md5": "f9b85c791cca5a5155b9a3140a8863c6" }, { "authorized_access_point": "Mu\u0308nchen-Neufreimann", @@ -536,12 +576,19 @@ "value": "(DE-588)1335092196" } ], + "identifier": "http://d-nb.info/gnd/1335092196", "note": [ { "noteType": "dataSource", "label": [ "Homepage - https://www.neufreimann.de/" ] + }, + { + "noteType": "general", + "label": [ + "Das Areal der fu\u0308heren Bayernkaserne wird zum neuen Wohnquartier" + ] } ], "pid": "1335092196", @@ -554,7 +601,7 @@ "variant_access_point": [ "Neufreimann (Mu\u0308nchen-Neufreimann)" ], - "md5": "92c77e0dc91babe1e42a3d7377974d79" + "md5": "1a2f1ccbe4add5ac9359ddb13b051731" }, { "authorized_access_point": "Podsuliszka", @@ -575,6 +622,7 @@ "value": "(DE-588)1335086005" } ], + "identifier": "http://d-nb.info/gnd/1335086005", "note": [ { "noteType": "dataSource", @@ -591,7 +639,7 @@ "authorized_access_point": "Powiat radomski" } ], - "md5": "552b212cb3b66f3c3e640ff921c7604d" + "md5": "b8b63a6efaf40a9082105cd424127b04" }, { "authorized_access_point": "Torre Archirafi", @@ -612,12 +660,19 @@ "value": "(DE-588)1335058036" } ], + "identifier": "http://d-nb.info/gnd/1335058036", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://it.wikipedia.org/w/index.php?title=Torre_Archirafi&oldid=140074551" ] + }, + { + "noteType": "general", + "label": [ + "Ortsteil von Riposto in der Metropolitanstadt Catania, Sizilien" + ] } ], "pid": "1335058036", @@ -630,7 +685,7 @@ "variant_access_point": [ "Riposto- Torre Archirafi" ], - "md5": "5120f843913fcc8a36c9a790cd4ede39" + "md5": "f9363ee409d3172c667e5d15b290317a" }, { "authorized_access_point": "Jusepi\u0301n", @@ -651,27 +706,27 @@ "value": "(DE-588)1334938016" } ], + "identifier": "http://d-nb.info/gnd/1334938016", "note": [ { "noteType": "dataSource", "label": [ "Internet - https://www.mindat.org/feature-3639055.html" ] + }, + { + "noteType": "general", + "label": [ + "Ortschaft im venezolanischen Bundesstaat Monagas" + ] } ], "pid": "1334938016", "type": "bf:Place", - "md5": "1361004eb7b229137163e8783373561d" + "md5": "6e93f4d48abe974c5e70fde7f9e5f246" }, { "authorized_access_point": "Villa Stefaneo (San Vito al Torre)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Landhaus" - } - ], "identifiedBy": [ { "source": "GND", @@ -689,6 +744,7 @@ "value": "(DE-588)1334917981" } ], + "identifier": "http://d-nb.info/gnd/1334917981", "pid": "1334917981", "type": "bf:Place", "broader": [ @@ -703,17 +759,10 @@ "Palazzo Steffaneo (San Vito al Torre)", "Palazzo Steffaneo Roncato (San Vito al Torre)" ], - "md5": "6e2a3f8de22c437fd123d907d8ce9835" + "md5": "875e4271a609de9f164dbf9149a1c930" }, { - "authorized_access_point": "Sankt-Veits-Dom (Prag)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Portal" - } - ], + "authorized_access_point": "Sankt-Veits-Dom (Prag) - Goldene Pforte", "identifiedBy": [ { "source": "GND", @@ -731,6 +780,15 @@ "value": "(DE-588)1334916292" } ], + "identifier": "http://d-nb.info/gnd/1334916292", + "note": [ + { + "noteType": "general", + "label": [ + "1367 als Festeingang errichtet, das Portal schmu\u0308ckt ein Glasmosaik" + ] + } + ], "pid": "1334916292", "type": "bf:Place", "broader": [ @@ -738,17 +796,10 @@ "authorized_access_point": "Sankt-Veits-Dom (Prag)" } ], - "md5": "2e1a42e7d88632f19de8f66ad6cbc4cf" + "md5": "1df2b6e5b7c5433d9d4a1797377fb03b" }, { "authorized_access_point": "Burg Hohenschelklingen (Schelklingen)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Burg" - } - ], "identifiedBy": [ { "source": "GND", @@ -766,6 +817,15 @@ "value": "(DE-588)1334913498" } ], + "identifier": "http://d-nb.info/gnd/1334913498", + "note": [ + { + "noteType": "general", + "label": [ + "errichtet um 1127, zersto\u0308rt 1633, 1650 bis 1653 abgerissen; die Steine zum Bau des Franziskanerklosters in Ehingen verwendet; Reste u\u0308berlie\u00df man dem Verfall" + ] + } + ], "pid": "1334913498", "type": "bf:Place", "broader": [ @@ -777,17 +837,10 @@ "Schloss Hohenschelklingen (Schelklingen)", "Burg Hohen Schelklingen (Schelklingen)" ], - "md5": "c68e98c9801783ba57fcf34eab33ad14" + "md5": "2869c2f49802d1513b3eec655dbeedc3" }, { "authorized_access_point": "Terc\u030cino u\u0301doli\u0301 (Zlate\u0301 Hory, Jeseni\u0301k)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Landschaftspark" - } - ], "identifiedBy": [ { "source": "GND", @@ -805,6 +858,7 @@ "value": "(DE-588)1334907684" } ], + "identifier": "http://d-nb.info/gnd/1334907684", "note": [ { "noteType": "dataSource", @@ -828,17 +882,10 @@ "Terezino u\u0301doli\u0301 (Zlate\u0301 Hory, Jeseni\u0301k)", "Theresiental (Zlate\u0301 Hory, Jeseni\u0301k)" ], - "md5": "ef5870f8141de7279b5fa857b56a238a" + "md5": "256828aa629d876a9a3445031fef7304" }, { "authorized_access_point": "SPO\u0308-Parteihaus (Innsbruck)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Bu\u0308rohaus" - } - ], "identifiedBy": [ { "source": "GND", @@ -856,6 +903,15 @@ "value": "(DE-588)1334907048" } ], + "identifier": "http://d-nb.info/gnd/1334907048", + "note": [ + { + "noteType": "general", + "label": [ + "Sitz der SPO\u0308 Tirol." + ] + } + ], "pid": "1334907048", "type": "bf:Place", "broader": [ @@ -866,7 +922,7 @@ "variant_access_point": [ "Salurner Stra\u00dfe 2 (Innsbruck)" ], - "md5": "3eecc7ab0092c308a65eea2a04019df8" + "md5": "8b38600b1a3816ba93a6b804234c2c89" }, { "authorized_access_point": "Wyszko\u0301w S\u0301la\u0328ski", @@ -887,6 +943,7 @@ "value": "(DE-588)1334904251" } ], + "identifier": "http://d-nb.info/gnd/1334904251", "note": [ { "noteType": "dataSource", @@ -903,17 +960,10 @@ "Wieschke", "Lindendorf O.S." ], - "md5": "8bfb823cdf023d72ec78e5c32f68c312" + "md5": "ca15762fcb1908a377eda1e7fe67a1a9" }, { "authorized_access_point": "Schloss Weissenegg (Fernitz-Mellach)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Schloss" - } - ], "identifiedBy": [ { "source": "GND", @@ -931,6 +981,7 @@ "value": "(DE-588)133490281X" } ], + "identifier": "http://d-nb.info/gnd/133490281X", "note": [ { "noteType": "dataSource", @@ -946,17 +997,10 @@ "authorized_access_point": "Fernitz-Mellach" } ], - "md5": "7c49a6cffedfe0f5095dcb9091d86531" + "md5": "dee3de85ff4163388ab3aa9d418c39ef" }, { "authorized_access_point": "Schloss Grub (Obertraun)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Schloss" - } - ], "identifiedBy": [ { "source": "GND", @@ -974,6 +1018,7 @@ "value": "(DE-588)1334900256" } ], + "identifier": "http://d-nb.info/gnd/1334900256", "note": [ { "noteType": "dataSource", @@ -989,17 +1034,10 @@ "authorized_access_point": "Obertraun" } ], - "md5": "fbafd9ee61e7c145304eda646b97d4ab" + "md5": "3b9a70b5e4a6ec88061b6ad674a74fed" }, { "authorized_access_point": "Spiemont", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Berg" - } - ], "identifiedBy": [ { "source": "GND", @@ -1017,24 +1055,21 @@ "value": "(DE-588)133489874X" } ], + "identifier": "http://d-nb.info/gnd/133489874X", + "note": [ + { + "noteType": "general", + "label": [ + "Berg zwischen Oberlinxweiler und Niederlinxweiler, beides Ortsteile von St. Wendel im Landkreis St. Wendel, Saarland; auf dem Spiemont sich befand eine vor- oder fru\u0308hgeschichtliche Befestigungsanlage" + ] + } + ], "pid": "133489874X", "type": "bf:Place", - "md5": "52eab6ad38bcb8f425aef41f99c3b4c6" + "md5": "208a0192f6be02993f478a870bca2e49" }, { "authorized_access_point": "Platz der Republik (Hamburg)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Platz" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Park" - } - ], "identifiedBy": [ { "source": "GND", @@ -1052,6 +1087,7 @@ "value": "(DE-588)1334896755" } ], + "identifier": "http://d-nb.info/gnd/1334896755", "note": [ { "noteType": "dataSource", @@ -1073,17 +1109,10 @@ "variant_access_point": [ "Kaiserplatz (Hamburg)" ], - "md5": "e329684aa17692f8b54399a3ff6040fa" + "md5": "7f0af5d7c781216d92066c3435aa7f2b" }, { "authorized_access_point": "Phoenixhof (Hamburg)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Gewerbehof" - } - ], "identifiedBy": [ { "source": "GND", @@ -1101,6 +1130,7 @@ "value": "(DE-588)1334893594" } ], + "identifier": "http://d-nb.info/gnd/1334893594", "note": [ { "noteType": "dataSource", @@ -1116,17 +1146,10 @@ "authorized_access_point": "Hamburg-Bahrenfeld" } ], - "md5": "e24b9606efe72a56b20c78623b052fa9" + "md5": "50dc1a7bc395be0b7f7f498c49feecf3" }, { "authorized_access_point": "Neues Amt Altona (Hamburg-Altona)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Gewerbegeba\u0308ude" - } - ], "identifiedBy": [ { "source": "GND", @@ -1144,6 +1167,7 @@ "value": "(DE-588)133489129X" } ], + "identifier": "http://d-nb.info/gnd/133489129X", "note": [ { "noteType": "dataSource", @@ -1162,7 +1186,7 @@ "variant_access_point": [ "NAA" ], - "md5": "8fbec11784de7b45207836bb0d9e3f96" + "md5": "aef73bab6c6f6766f0b918e25c201cc8" }, { "authorized_access_point": "Holowaniwsk", @@ -1183,12 +1207,19 @@ "value": "(DE-588)1334878234" } ], + "identifier": "http://d-nb.info/gnd/1334878234", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Holowaniwsk&oldid=246179368" ] + }, + { + "noteType": "general", + "label": [ + "Siedlung sta\u0308dtischen Typs im zentralukrainischen Oblast Kirowohrad" + ] } ], "pid": "1334878234", @@ -1199,7 +1230,7 @@ "\u0413\u043e\u043b\u043e\u0432\u0430\u043d\u0456\u0432\u0441\u044c\u043a", "\u0413\u043e\u043b\u043e\u0432\u0430\u043d\u0435\u0432\u0441\u043a" ], - "md5": "26c49e2e7e19344f0fa00298cbee07b1" + "md5": "8f2362696d29c2819271cb33b1490a6c" }, { "authorized_access_point": "Mattituck, NY", @@ -1220,6 +1251,7 @@ "value": "(DE-588)1334875707" } ], + "identifier": "http://d-nb.info/gnd/1334875707", "note": [ { "noteType": "dataSource", @@ -1231,17 +1263,10 @@ ], "pid": "1334875707", "type": "bf:Place", - "md5": "33429a245bc534bab93abf612d1e1f86" + "md5": "659ba9a627a94f51aaf7eb00a1759f41" }, { "authorized_access_point": "Sankt Georg (Hainersdorf)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kirchenbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -1259,6 +1284,7 @@ "value": "(DE-588)1334874387" } ], + "identifier": "http://d-nb.info/gnd/1334874387", "pid": "1334874387", "type": "bf:Place", "broader": [ @@ -1270,17 +1296,10 @@ "Pfarrkirche Heiliger Georg (Hainersdorf)", "Pfarrkirche Hl. Georg (Hainersdorf)" ], - "md5": "04367a688edcae98b6084ec91eef7490" + "md5": "ee39af0ca9e6a6086e0cfb1b31f74f01" }, { "authorized_access_point": "Sankt Donatus (Altenmarkt bei Fu\u0308rstenfeld)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kirchenbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -1298,6 +1317,7 @@ "value": "(DE-588)1334867097" } ], + "identifier": "http://d-nb.info/gnd/1334867097", "pid": "1334867097", "type": "bf:Place", "broader": [ @@ -1309,17 +1329,10 @@ "Pfarrkirche Heiliger Donatus (Altenmarkt bei Fu\u0308rstenfeld)", "Pfarrkirche Hl. Donatus (Altenmarkt bei Fu\u0308rstenfeld)" ], - "md5": "0c184fb5f3adb9fdfd5abbbadc707307" + "md5": "80bb227beecdf65dd1d21655b8c748e0" }, { "authorized_access_point": "Schloss Birkenstein (Birkfeld)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Schloss" - } - ], "identifiedBy": [ { "source": "GND", @@ -1337,6 +1350,7 @@ "value": "(DE-588)1334866473" } ], + "identifier": "http://d-nb.info/gnd/1334866473", "pid": "1334866473", "type": "bf:Place", "broader": [ @@ -1344,7 +1358,7 @@ "authorized_access_point": "Birkfeld" } ], - "md5": "13f6279b1b5a731c35538538d28f9b0c" + "md5": "07ef276183a376dd14745bdb411bdd8b" }, { "authorized_access_point": "Comunita\u0300 Montana delle Prealpi Trevigiane", @@ -1365,6 +1379,7 @@ "value": "(DE-588)1334866082" } ], + "identifier": "http://d-nb.info/gnd/1334866082", "note": [ { "noteType": "dataSource", @@ -1383,17 +1398,10 @@ "authorized_access_point": "Venetien" } ], - "md5": "1469c78dcf93b9a18b17248496adcc13" + "md5": "d982f77895d3544ba792229823506300" }, { "authorized_access_point": "Schloss Neudau (Neudau)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Schloss" - } - ], "identifiedBy": [ { "source": "GND", @@ -1411,6 +1419,7 @@ "value": "(DE-588)1334865981" } ], + "identifier": "http://d-nb.info/gnd/1334865981", "pid": "1334865981", "type": "bf:Place", "broader": [ @@ -1418,17 +1427,10 @@ "authorized_access_point": "Neudau" } ], - "md5": "03fa849ab5ad4b50fd9376d37adb1870" + "md5": "8670e6341fc8c1f294def7b266db14cd" }, { "authorized_access_point": "Kreuzkapelle (Trier)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kapelle" - } - ], "identifiedBy": [ { "source": "GND", @@ -1446,6 +1448,15 @@ "value": "(DE-588)1334804621" } ], + "identifier": "http://d-nb.info/gnd/1334804621", + "note": [ + { + "noteType": "general", + "label": [ + "Kapelle auf dem Petrisberg" + ] + } + ], "pid": "1334804621", "type": "bf:Place", "broader": [ @@ -1461,17 +1472,10 @@ "Kreuzchen (Trier)", "Kreuzchen (Trier-Ku\u0308renz)" ], - "md5": "f98852feaa7f1114b7e8fd1bc5fd8994" + "md5": "b364a9f8405583e85f0a1c047a2895ca" }, { "authorized_access_point": "Sankt Cornelius-Kapelle (Trier)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kapelle" - } - ], "identifiedBy": [ { "source": "GND", @@ -1489,6 +1493,15 @@ "value": "(DE-588)1334804141" } ], + "identifier": "http://d-nb.info/gnd/1334804141", + "note": [ + { + "noteType": "general", + "label": [ + "Kapelle im Ortsteil Ku\u0308renz; wurde 1960 abgerissen; der Bau wurde fru\u0308her Peter Benz zugeschrieben" + ] + } + ], "pid": "1334804141", "type": "bf:Place", "broader": [ @@ -1505,17 +1518,10 @@ "St. Cornelius-Kapelle (Trier-Ku\u0308renz)", "Ju\u0308ngere Ku\u0308renzer Kapelle (Trier)" ], - "md5": "d86fe5ce9f50b4310ed335acc13ef18b" + "md5": "a54f07a85c55c70292096ef3f82b92f4" }, { "authorized_access_point": "Naturschutzgebiet Gradberg", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Naturschutzgebiet" - } - ], "identifiedBy": [ { "source": "GND", @@ -1533,6 +1539,7 @@ "value": "(DE-588)1334801304" } ], + "identifier": "http://d-nb.info/gnd/1334801304", "note": [ { "noteType": "dataSource", @@ -1555,7 +1562,7 @@ "NSG Gradberg", "Gradberg" ], - "md5": "0d61925c469a05b0f6bbedef3065e823" + "md5": "9a9b82a13a655a3c6b93211e27e9904b" }, { "authorized_access_point": "Ostentrop", @@ -1576,12 +1583,19 @@ "value": "(DE-588)1334789134" } ], + "identifier": "http://d-nb.info/gnd/1334789134", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Ostentrop&oldid=243213300" ] + }, + { + "noteType": "general", + "label": [ + "Bis 30.06.1969 selbststa\u0308ndig, dann Ortsteil von Finnentrop (Kreis Olpe)" + ] } ], "pid": "1334789134", @@ -1591,7 +1605,7 @@ "authorized_access_point": "Finnentrop-Ostentrop" } ], - "md5": "2f5b81c86421c2b6ec079cbb0756e485" + "md5": "1c6a3c391c8ae6f4f615b6f725d0a41e" }, { "authorized_access_point": "Egloffstein-Bieberbach", @@ -1612,6 +1626,7 @@ "value": "(DE-588)1334785422" } ], + "identifier": "http://d-nb.info/gnd/1334785422", "pid": "1334785422", "type": "bf:Place", "related": [ @@ -1625,7 +1640,7 @@ "variant_access_point": [ "Bieberbach (Egloffstein-Bieberbach)" ], - "md5": "571bf23923f46f6a1f58e61e24620639" + "md5": "b8bdaed7880f667d6fea8753cbccbb19" }, { "authorized_access_point": "S\u00f8r-Aurdal", @@ -1646,32 +1661,27 @@ "value": "(DE-588)1334784493" } ], + "identifier": "http://d-nb.info/gnd/1334784493", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=S%C3%B8r-Aurdal&oldid=240707152" ] + }, + { + "noteType": "general", + "label": [ + "Kommune im norwegischen Fylke Innlandet" + ] } ], "pid": "1334784493", "type": "bf:Place", - "md5": "d3b8a4aab5f0fd0e22e4194431fd5189" + "md5": "7f779b2c464349ea5d1b84297fbade74" }, { "authorized_access_point": "Gerricusplatz 26-27 (Du\u0308sseldorf)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Ensemble" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fachwerkbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -1689,12 +1699,19 @@ "value": "(DE-588)1334779015" } ], + "identifier": "http://d-nb.info/gnd/1334779015", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Liste_der_Baudenkm%C3%A4ler_in_Gerresheim&oldid=242490329" ] + }, + { + "noteType": "general", + "label": [ + "Wurde bereits 1335 in einem Schenkungsvertrag urkundlich erwa\u0308hnt; Teile der urspru\u0308nglichen Holzbalken wurden nach Teilabbruch 1978 in dem Neubau wiedergenutzt" + ] } ], "pid": "1334779015", @@ -1710,7 +1727,7 @@ "variant_access_point": [ "Geba\u0308udeensemble Gerricusplatz 26-27 (Du\u0308sseldorf)" ], - "md5": "ba39b0c9f27122b96d37a20056d3975a" + "md5": "7887fabd2c965d41840654784b1eb079" }, { "authorized_access_point": "Rusdorf (Ostritz)", @@ -1731,12 +1748,19 @@ "value": "(DE-588)1334766363" } ], + "identifier": "http://d-nb.info/gnd/1334766363", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Posada_(Bogatynia)&oldid=244888515" ] + }, + { + "noteType": "general", + "label": [ + "Ortschaft in der Amtshauptmannschaft Zittau; seit 1945 Posada in der polnischen Woiwodschaft Niederschlesien" + ] } ], "pid": "1334766363", @@ -1749,7 +1773,7 @@ "variant_access_point": [ "Ru\u00dfdorf" ], - "md5": "e42bca8c0514775c39fe714827074b4e" + "md5": "8b2ba3835ddaa3383217fb4cca620bd4" }, { "authorized_access_point": "Czerwona Woda", @@ -1770,12 +1794,19 @@ "value": "(DE-588)1334756465" } ], + "identifier": "http://d-nb.info/gnd/1334756465", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://pl.wikipedia.org/w/index.php?title=Czerwona_Woda_(wojew%C3%B3dztwo_dolno%C5%9Bl%C4%85skie)&oldid=72559107" ] + }, + { + "noteType": "general", + "label": [ + "Dorf im Kreis Zgorzelec der polnischen Woiwodschaft Niederschlesien" + ] } ], "pid": "1334756465", @@ -1783,17 +1814,10 @@ "variant_access_point": [ "Rothwasser" ], - "md5": "d3c3b53852795dda707236f6d067b74f" + "md5": "69bc10f7bb2d8fde9c2eeb2d84f16750" }, { "authorized_access_point": "Theaterbau des The\u0301a\u0302tre des Champs-E\u0301lyse\u0301es (Paris)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Theaterbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -1811,6 +1835,7 @@ "value": "(DE-588)1334736340" } ], + "identifier": "http://d-nb.info/gnd/1334736340", "note": [ { "noteType": "dataSource", @@ -1827,7 +1852,7 @@ "authorized_access_point": "Paris" } ], - "md5": "af6e5f96acb06b0a5570b522cb6e8d89" + "md5": "3ab8134bda407e9c03ea6091967ba530" }, { "authorized_access_point": "Stanowitz", @@ -1848,12 +1873,19 @@ "value": "(DE-588)1334729824" } ], + "identifier": "http://d-nb.info/gnd/1334729824", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/wiki/Stanowice_(Strzegom)" ] + }, + { + "noteType": "general", + "label": [ + "1307 wurde der Ort in einem Dokument als \"Stanewicz\" erwa\u0308hnt und geho\u0308rte damals zum Herzogtum Schweidnitz. ... Stonwitz geho\u0308rte bis 1932 zum Landkreis Striegau..." + ] } ], "pid": "1334729824", @@ -1862,17 +1894,10 @@ "Stannowitz", "Stonwitz" ], - "md5": "0b2eb52f3ed0d3188408fac8c11efcea" + "md5": "a8a41fb6edd00861b7025286d0109d88" }, { "authorized_access_point": "Hung Yen", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stadt" - } - ], "identifiedBy": [ { "source": "GND", @@ -1890,6 +1915,15 @@ "value": "(DE-588)1334725756" } ], + "identifier": "http://d-nb.info/gnd/1334725756", + "note": [ + { + "noteType": "general", + "label": [ + "Hauptstadt der gleichnamigen Provinz in Nordvietnam" + ] + } + ], "pid": "1334725756", "type": "bf:Place", "broader": [ @@ -1900,17 +1934,10 @@ "variant_access_point": [ "Hu\u031bng Ye\u0302n" ], - "md5": "6f82b88b844ebddf1daa2d89d4f56903" + "md5": "eebee1460a8e212234041ab8da6660a7" }, { "authorized_access_point": "Provinz Hung Yen", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Provinz" - } - ], "identifiedBy": [ { "source": "GND", @@ -1928,12 +1955,19 @@ "value": "(DE-588)1334725691" } ], + "identifier": "http://d-nb.info/gnd/1334725691", "note": [ { "noteType": "dataSource", "label": [ "Homepage - https://hungyen.gov.vn/portal/Pages/default.aspx" ] + }, + { + "noteType": "general", + "label": [ + "Provinz in Nordvietnam" + ] } ], "pid": "1334725691", @@ -1942,22 +1976,10 @@ "Provinz Hu\u031bng Ye\u0302n", "Ti\u0309nh Hu\u031bng Ye\u0302n" ], - "md5": "b25a5e37290a4c37b7bb937325f14b9e" + "md5": "c2d56f9b39dcae925dc616b20989c7a7" }, { "authorized_access_point": "Monumento al marque\u0301s de Campo (Valencia)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Brunnen" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Denkmal" - } - ], "identifiedBy": [ { "source": "GND", @@ -1975,6 +1997,7 @@ "value": "(DE-588)1334671486" } ], + "identifier": "http://d-nb.info/gnd/1334671486", "pid": "1334671486", "type": "bf:Place", "broader": [ @@ -1982,17 +2005,10 @@ "authorized_access_point": "Valencia" } ], - "md5": "eafb7740dffa7cb26ce4d877f09ae82a" + "md5": "1c2691af3376dc62304b085d4b6291ad" }, { "authorized_access_point": "Kornmarkt (Luzern)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Marktplatz" - } - ], "identifiedBy": [ { "source": "GND", @@ -2010,6 +2026,7 @@ "value": "(DE-588)1334670560" } ], + "identifier": "http://d-nb.info/gnd/1334670560", "note": [ { "noteType": "dataSource", @@ -2017,6 +2034,12 @@ "Kanton Luzern, Kantonales Denkmalverzeichnis und Bauinventar - https://www.geo.lu.ch/map/kulturdenkmal/?FOCUS=2665895:1211586:250&BASEMAP=G", "Search.ch - https://map.search.ch/Luzern,Kornmarkt?pos=665856,211604&zoom=18" ] + }, + { + "noteType": "general", + "label": [ + "6004 Luzern. Platz in der Altstadt, davon abgehend der Rathaussteg (S), Brandga\u0308ssli und Kornmarktgasse (W), Kapellgasse und Furrengasse (O), sowie Werchlaubenga\u0308ssli (NO)" + ] } ], "pid": "1334670560", @@ -2029,7 +2052,7 @@ "authorized_access_point": "Altstadt (Luzern)" } ], - "md5": "01c4f403fd973f0b22b06cf043aa3423" + "md5": "74102840256cd860b107886bbb912ddb" }, { "authorized_access_point": "Friedrichshain (Felixsee)", @@ -2050,6 +2073,7 @@ "value": "(DE-588)1334670390" } ], + "identifier": "http://d-nb.info/gnd/1334670390", "note": [ { "noteType": "general", @@ -2068,17 +2092,10 @@ "variant_access_point": [ "Frycowy Gaj" ], - "md5": "ae69592e422f3577803aa741611fcee5" + "md5": "db663e852b84dabc49802614e6ba3db3" }, { "authorized_access_point": "El pintor Ribera (Valencia)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Denkmal" - } - ], "identifiedBy": [ { "source": "GND", @@ -2096,6 +2113,15 @@ "value": "(DE-588)1334670323" } ], + "identifier": "http://d-nb.info/gnd/1334670323", + "note": [ + { + "noteType": "general", + "label": [ + "Ehrendenkmal fu\u0308r den Maler Jose\u0301 de Ribera" + ] + } + ], "pid": "1334670323", "type": "bf:Place", "broader": [ @@ -2107,7 +2133,7 @@ "Monument al pintor Josep de Ribera (Valencia)", "Monumento al pintor Jose\u0301 de Ribera (Valencia)" ], - "md5": "e64631a69abeff3d15acfde5b8336639" + "md5": "de719c714679c4cc0112b45733860cf0" }, { "authorized_access_point": "Friedrichshof", @@ -2128,6 +2154,7 @@ "value": "(DE-588)1334670048" } ], + "identifier": "http://d-nb.info/gnd/1334670048", "note": [ { "noteType": "general", @@ -2146,17 +2173,10 @@ "variant_access_point": [ "Frycowy Dwor" ], - "md5": "160bc6f71a1510175ddd36f18d1bd3a7" + "md5": "66c7260a02d0ce5c4b0c3af0444ce94c" }, { "authorized_access_point": "Heiligenha\u0308uschen (Weibern, Landkreis Ahrweiler)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Bildstock" - } - ], "identifiedBy": [ { "source": "GND", @@ -2174,6 +2194,7 @@ "value": "(DE-588)1334666474" } ], + "identifier": "http://d-nb.info/gnd/1334666474", "pid": "1334666474", "type": "bf:Place", "broader": [ @@ -2181,17 +2202,10 @@ "authorized_access_point": "Weibern (Landkreis Ahrweiler)" } ], - "md5": "e3c54fe0e3e9d0674a63087ca082f4a9" + "md5": "8f645c988466d3ceb8a4b55d4211dc56" }, { "authorized_access_point": "Mariensa\u0308ule Weibern (Weibern, Landkreis Ahrweiler)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Mariensa\u0308ule" - } - ], "identifiedBy": [ { "source": "GND", @@ -2209,6 +2223,7 @@ "value": "(DE-588)1334665036" } ], + "identifier": "http://d-nb.info/gnd/1334665036", "pid": "1334665036", "type": "bf:Place", "broader": [ @@ -2216,7 +2231,7 @@ "authorized_access_point": "Weibern (Landkreis Ahrweiler)" } ], - "md5": "a7092cd0b87c3adb701b0d2861563b45" + "md5": "fd0ebd3a60ac1309a0fccc4a055b3ce8" }, { "authorized_access_point": "Neuhausen/Spree", @@ -2237,6 +2252,7 @@ "value": "(DE-588)1334665028" } ], + "identifier": "http://d-nb.info/gnd/1334665028", "note": [ { "noteType": "general", @@ -2250,7 +2266,7 @@ "variant_access_point": [ "Kopan\u0301ce/Sprjewja" ], - "md5": "cd0904041baf17e2761b58e3839ffd73" + "md5": "da808d47d92c3e2d2fcf353fff0e59f9" }, { "authorized_access_point": "Frauendorf (Neuhausen/Spree)", @@ -2271,6 +2287,7 @@ "value": "(DE-588)1334664242" } ], + "identifier": "http://d-nb.info/gnd/1334664242", "note": [ { "noteType": "general", @@ -2289,7 +2306,7 @@ "variant_access_point": [ "Dubrawka" ], - "md5": "94467162754199ed3bb4a36a9f8da992" + "md5": "db712476d13dd5f0a8c05f315652ec0a" }, { "authorized_access_point": "Eichow", @@ -2310,6 +2327,7 @@ "value": "(DE-588)1334661073" } ], + "identifier": "http://d-nb.info/gnd/1334661073", "note": [ { "noteType": "general", @@ -2328,10 +2346,10 @@ "variant_access_point": [ "Dubje" ], - "md5": "a82d17359ed667f4ebd99faecfaf0cd3" + "md5": "e2c64307b07e756fc97ab2b1435f9f06" }, { - "authorized_access_point": "Pontelungo (Bologna)", + "authorized_access_point": "Pontelungo (Bologna) - Sfingi", "identifiedBy": [ { "source": "GND", @@ -2349,6 +2367,15 @@ "value": "(DE-588)1334658196" } ], + "identifier": "http://d-nb.info/gnd/1334658196", + "note": [ + { + "noteType": "general", + "label": [ + "Sirenen-Statuen auf der Bru\u0308cke Pontelungo in Bologna" + ] + } + ], "pid": "1334658196", "type": "bf:Place", "broader": [ @@ -2362,7 +2389,7 @@ "variant_access_point": [ "Pontelungo (Bologna)" ], - "md5": "242564ed5cab96feb7187650a6c5399e" + "md5": "242421d6766515190cd79faf38dedae2" }, { "authorized_access_point": "E\u0301causseville", @@ -2383,6 +2410,7 @@ "value": "(DE-588)1334657726" } ], + "identifier": "http://d-nb.info/gnd/1334657726", "pid": "1334657726", "type": "bf:Place", "broader": [ @@ -2390,17 +2418,10 @@ "authorized_access_point": "Departement Manche" } ], - "md5": "a49da34e5198768fa7ded31524b5587f" + "md5": "9c949785120f2a0b518527ba7c5fee86" }, { "authorized_access_point": "Marienkirche (Wardenburg)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kirchenbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -2418,6 +2439,15 @@ "value": "(DE-588)133465641X" } ], + "identifier": "http://d-nb.info/gnd/133465641X", + "note": [ + { + "noteType": "general", + "label": [ + "1268 erstmals urkundlich erwa\u0308hnt, heutiger Kirchenbau stammt aus dem Jahr 1578 mit Erga\u0308nzungen im 18. und 19. Jh." + ] + } + ], "pid": "133465641X", "type": "bf:Place", "broader": [ @@ -2425,7 +2455,7 @@ "authorized_access_point": "Wardenburg" } ], - "md5": "31bcecd5402fd7ae25a3abc60197698d" + "md5": "d031807816d791016892d8b7d42c6cbd" }, { "authorized_access_point": "Rieflinghausen", @@ -2446,12 +2476,19 @@ "value": "(DE-588)1334632707" } ], + "identifier": "http://d-nb.info/gnd/1334632707", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Rieflinghausen&oldid=243763184" ] + }, + { + "noteType": "general", + "label": [ + "1317 als \"Rylinchusen\" erstmals erwa\u0308hnt" + ] } ], "pid": "1334632707", @@ -2466,7 +2503,7 @@ "Rifelinchusen", "Burschafft Ryffelinghau\u00dfen" ], - "md5": "1f870dc472a6189cf6e7bbab8a55e0d6" + "md5": "86b8f827ab668ef21093b7a8952ea453" }, { "authorized_access_point": "Helden-Rieflinghausen", @@ -2487,12 +2524,19 @@ "value": "(DE-588)133463209X" } ], + "identifier": "http://d-nb.info/gnd/133463209X", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Rieflinghausen&oldid=243763184" ] + }, + { + "noteType": "general", + "label": [ + "Zum 1. Juli 1969 als Teil der Gemeinde Helden in die Stadt Attendorn eingegliedert" + ] } ], "pid": "133463209X", @@ -2507,17 +2551,10 @@ "authorized_access_point": "Attendorn-Rieflinghausen" } ], - "md5": "624813f800b88098094a5ecc1b7ab133" + "md5": "56a8141246c373c81978c90018e1e092" }, { "authorized_access_point": "Sankt-Karli-Strasse (Luzern)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stra\u00dfe" - } - ], "identifiedBy": [ { "source": "GND", @@ -2535,6 +2572,7 @@ "value": "(DE-588)133456325X" } ], + "identifier": "http://d-nb.info/gnd/133456325X", "note": [ { "noteType": "dataSource", @@ -2542,6 +2580,12 @@ "Search.ch - https://search.ch/map/6004-Luzern,St.Karli-Str.?pos=664859,212246&zoom=17", "Kanton Luzern, Kantonales Denkmalverzeichnis und Bauinventar - https://www.geo.lu.ch/map/kulturdenkmal/?FOCUS=2664987:1212278:2000&BASEMAP=G" ] + }, + { + "noteType": "general", + "label": [ + "6004 Luzern. Langgezogene Strasse, teilweise parallel zum rechtsseitigen Reussufer, (gegabelt) von Geissmattstrasse in die Friedentalstrasse fu\u0308hrend. Nicht zu verwechseln mit Fortsetzung von St.-Karlibru\u0308cke zur linken Seite der Reuss (dieser Teil 6003 Luzern: https://map.search.ch/6003-Luzern,St.Karli-Str.?pos=664806,211904&zoom)" + ] } ], "pid": "133456325X", @@ -2555,22 +2599,10 @@ "St.-Karli-Strasse (Luzern)", "St. Karlistrasse (Luzern)" ], - "md5": "91cb2bab6def2cef79804c1d6674bb4c" + "md5": "8a4aaf7d317386721bc177af8c3c2215" }, { "authorized_access_point": "Pfistergasse (Luzern)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stra\u00dfe" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Gasse" - } - ], "identifiedBy": [ { "source": "GND", @@ -2588,6 +2620,7 @@ "value": "(DE-588)1334560994" } ], + "identifier": "http://d-nb.info/gnd/1334560994", "note": [ { "noteType": "dataSource", @@ -2595,6 +2628,12 @@ "Search.ch - https://map.search.ch/Luzern,Pfistergasse?pos=665610,211417&zoom=17", "Kanton Luzern, Kantonales Denkmalverzeichnis und Bauinventar - https://www.geo.lu.ch/map/kulturdenkmal/?FOCUS=2665615:1211443:1000&BASEMAP=G" ] + }, + { + "noteType": "general", + "label": [ + "6003 Luzern. Gasse in der Altstadt, Verbindung von Milita\u0308rstrasse zu Philipp-Anton-von-Segesser-Platz (Burgerstrasse)" + ] } ], "pid": "1334560994", @@ -2607,17 +2646,10 @@ "authorized_access_point": "Altstadt (Luzern)" } ], - "md5": "fa83934e09f0acb453f35e059df0f227" + "md5": "a2edea97b2b870ad7ccca3af39fb7e22" }, { "authorized_access_point": "Neustadtstrasse (Luzern)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stra\u00dfe" - } - ], "identifiedBy": [ { "source": "GND", @@ -2635,6 +2667,7 @@ "value": "(DE-588)1334559805" } ], + "identifier": "http://d-nb.info/gnd/1334559805", "note": [ { "noteType": "dataSource", @@ -2642,6 +2675,12 @@ "Search.ch - https://map.search.ch/Luzern,Neustadtstr.?pos=666097,210474&zoom=16", "Kanton Luzern, Kantonales Denkmalverzeichnis und Bauinventar - https://www.geo.lu.ch/map/kulturdenkmal/?FOCUS=2665987:1210348:1000&BASEMAP=G" ] + }, + { + "noteType": "general", + "label": [ + "6003 Luzern. Vom Bundesplatz aus in su\u0308d(westliche) Richtung laufende Strasse bis zur Bireggstrasse." + ] } ], "pid": "1334559805", @@ -2651,17 +2690,10 @@ "authorized_access_point": "Luzern" } ], - "md5": "51719a3ebc31845d711e6450e5a250d8" + "md5": "5f87243d6071ff59f9b3ab223760221f" }, { "authorized_access_point": "Murbacherstrasse (Luzern)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stra\u00dfe" - } - ], "identifiedBy": [ { "source": "GND", @@ -2679,6 +2711,7 @@ "value": "(DE-588)1334558590" } ], + "identifier": "http://d-nb.info/gnd/1334558590", "note": [ { "noteType": "dataSource", @@ -2686,6 +2719,12 @@ "Search.ch - https://map.search.ch/Luzern,Murbacherstr.?pos=666071,211129&zoom=16", "Kanton Luzern, Kantonales Denkmalverzeichnis und Bauinventar - https://www.geo.lu.ch/map/kulturdenkmal/?FOCUS=2665999:1211098:1000&BASEMAP=G" ] + }, + { + "noteType": "general", + "label": [ + "6003 Luzern. Mit Unterbrechungen von SW (Obergrundstrasse) nach NO (Zentralstrasse) verlaufende Strasse in Luzerns Hirschmattquartier (Neustadt)." + ] } ], "pid": "1334558590", @@ -2698,17 +2737,10 @@ "authorized_access_point": "Luzern" } ], - "md5": "509664709826cad65f2251217f1f9031" + "md5": "00ed93460df4e86c60f599d6d8b65ce5" }, { "authorized_access_point": "Sankt-Leodegar-Strasse (Luzern)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stra\u00dfe" - } - ], "identifiedBy": [ { "source": "GND", @@ -2726,6 +2758,7 @@ "value": "(DE-588)1334556687" } ], + "identifier": "http://d-nb.info/gnd/1334556687", "note": [ { "noteType": "dataSource", @@ -2733,6 +2766,12 @@ "Kanton Luzern, Kantonales Denkmalverzeichnis und Bauinventar - https://www.geo.lu.ch/map/kulturdenkmal/?FOCUS=2665615:1211443:1000&BASEMAP=G", "Search.ch - https://map.search.ch/Luzern,St.Leodegar-Str.?pos=666448,211966&zoom=18" ] + }, + { + "noteType": "general", + "label": [ + "6006 Luzern. Kurze West-Ost-Verbindungsstrasse zwischen Lo\u0308wenstrasse (W) und Stiftsstrasse (O), im Hofquartier Luzern" + ] } ], "pid": "1334556687", @@ -2746,17 +2785,10 @@ "St.-Leodegar-Strasse (Luzern)", "St. Leodegar-Str. (Luzern)" ], - "md5": "ffd9df76c568c600a30386f9cd620a65" + "md5": "5ece88944182b63a19dbe34384ec123b" }, { "authorized_access_point": "Santuario della Madonna del Bosco (Ozegna)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kirchenbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -2774,6 +2806,7 @@ "value": "(DE-588)1334554471" } ], + "identifier": "http://d-nb.info/gnd/1334554471", "note": [ { "noteType": "dataSource", @@ -2792,22 +2825,10 @@ "variant_access_point": [ "Madonna del Bosco (Ozegna)" ], - "md5": "745f54d03302ea46ce566641935d8d02" + "md5": "03ded0fe32efbe3174e3d2e1e79c6c95" }, { "authorized_access_point": "Weggisgasse (Luzern)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Gasse" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stra\u00dfe" - } - ], "identifiedBy": [ { "source": "GND", @@ -2825,12 +2846,19 @@ "value": "(DE-588)1334554218" } ], + "identifier": "http://d-nb.info/gnd/1334554218", "note": [ { "noteType": "dataSource", "label": [ "Kanton Luzern, Kantonales Denkmalverzeichnis und Bauinventar - https://map.search.ch/Luzern,Weggisgasse?pos=665870,211719&zoom=17; https://www.geo.lu.ch/map/kulturdenkmal/?FOCUS=2665900:1211665:1000&BASEMAP=G" ] + }, + { + "noteType": "general", + "label": [ + "6004 Luzern. Vom Hirschenplatz (SW) zum Falkenplatz (NO) fu\u0308hrende Gasse in der Altstadt Luzerns" + ] } ], "pid": "1334554218", @@ -2843,17 +2871,10 @@ "authorized_access_point": "Altstadt (Luzern)" } ], - "md5": "968276153d5a9002b9154c4022b3bd58" + "md5": "8463a807e6fe47a2ddf097238849dca5" }, { "authorized_access_point": "Gewerbegeba\u0308ude (Luzern)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Gewerbegeba\u0308ude" - } - ], "identifiedBy": [ { "source": "GND", @@ -2871,12 +2892,19 @@ "value": "(DE-588)1334552940" } ], + "identifier": "http://d-nb.info/gnd/1334552940", "note": [ { "noteType": "dataSource", "label": [ "Kanton Luzern, Kantonales Denkmalverzeichnis und Bauinventar - https://map.geo.lu.ch/kulturgueter/denkmaeler/?FOCUS=2666644:1210607:560" ] + }, + { + "noteType": "general", + "label": [ + "Adresse: Tribschenstrasse 51, 6005 Luzern" + ] } ], "pid": "1334552940", @@ -2889,7 +2917,7 @@ "variant_access_point": [ "Das Gewerbegeba\u0308ude in Luzern" ], - "md5": "dda3f998b1754dbc808c191b1fa8a1c7" + "md5": "f7be10f6c8f70228c828ae87fc8ee0f4" }, { "authorized_access_point": "Le\u0301signy (Departement Seine-et-Marne)", @@ -2910,6 +2938,7 @@ "value": "(DE-588)1334552908" } ], + "identifier": "http://d-nb.info/gnd/1334552908", "pid": "1334552908", "type": "bf:Place", "broader": [ @@ -2917,17 +2946,10 @@ "authorized_access_point": "Departement Seine-et-Marne" } ], - "md5": "e499638d4dc585343ef4589fceb45b2e" + "md5": "5c8364565c4cab06506002d1e4710074" }, { "authorized_access_point": "Junkerhaus (Weggis)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Herrenhaus" - } - ], "identifiedBy": [ { "source": "GND", @@ -2945,12 +2967,19 @@ "value": "(DE-588)1334552606" } ], + "identifier": "http://d-nb.info/gnd/1334552606", "note": [ { "noteType": "dataSource", "label": [ "Kanton Luzern, Kantonales Denkmalverzeichnis und Bauinventar - https://map.geo.lu.ch/kulturgueter/denkmaeler/?FOCUS=2674446:1209133:560; https://www.archiv-weggis.ch/2022/03/07/der-gl%C3%BCcksfall-junkerhaus/" ] + }, + { + "noteType": "general", + "label": [ + "Adresse: Hertensteinstrasse 51, 6353 Weggis." + ] } ], "pid": "1334552606", @@ -2960,17 +2989,10 @@ "authorized_access_point": "Weggis" } ], - "md5": "adb6d5feb74a6f69c432a3ad864a9012" + "md5": "1f9f409f9af9076e5453940d6db9d718" }, { "authorized_access_point": "Schloss Stockau (Reichertshofen)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Schloss" - } - ], "identifiedBy": [ { "source": "GND", @@ -2988,6 +3010,7 @@ "value": "(DE-588)1334538085" } ], + "identifier": "http://d-nb.info/gnd/1334538085", "note": [ { "noteType": "dataSource", @@ -3006,17 +3029,10 @@ "variant_access_point": [ "Hofmarktschloss Stockau (Reichertshofen)" ], - "md5": "17a47547c1c87fb2311654ebd1c16d12" + "md5": "e9c9b3e9d1293c06a67e51fa3343214e" }, { "authorized_access_point": "Marienkirche (Ehningen)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kirchenbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -3034,12 +3050,19 @@ "value": "(DE-588)133453666X" } ], + "identifier": "http://d-nb.info/gnd/133453666X", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Marienkirche_(Ehningen)&oldid=241971385" ] + }, + { + "noteType": "general", + "label": [ + "Anfang des 17. Jhs nach einem Entwurf von Heinrich Schickhardt umgebaut; Glasmalereien im Chor stammen von Rudolf Yelin Anfang des 20. Jh." + ] } ], "pid": "133453666X", @@ -3054,17 +3077,10 @@ "St. Marien (Ehningen)", "Sankt Marien (Ehningen)" ], - "md5": "4192bf31530634fbcfdb67fd668f42c3" + "md5": "851b06084bfb9a800ddfbcc5a4fbdcf3" }, { "authorized_access_point": "Villenkolonie Buchschlag (Dreieich)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Villenviertel" - } - ], "identifiedBy": [ { "source": "GND", @@ -3082,12 +3098,19 @@ "value": "(DE-588)1334531153" } ], + "identifier": "http://d-nb.info/gnd/1334531153", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Villenkolonie_Buchschlag&oldid=235425024" ] + }, + { + "noteType": "general", + "label": [ + "Erbaut von 1905 bis ca. 1910." + ] } ], "pid": "1334531153", @@ -3103,7 +3126,7 @@ "authorized_access_point": "Dreieich" } ], - "md5": "1c78726288afa8ce3b48b039aeb1e088" + "md5": "70c3aa61c6fff91de7c7f539aa219557" }, { "authorized_access_point": "Oakhurst, Calif.", @@ -3124,12 +3147,19 @@ "value": "(DE-588)1334516766" } ], + "identifier": "http://d-nb.info/gnd/1334516766", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://en.wikipedia.org/w/index.php?title=Oakhurst,_California&oldid=1225176061" ] + }, + { + "noteType": "general", + "label": [ + "Fu\u0308r die Sacherschlie\u00dfung wird bei Splits nur diese (das ist die neueste/ju\u0308ngste) Namensform verwendet." + ] } ], "pid": "1334516766", @@ -3137,17 +3167,10 @@ "variant_access_point": [ "Fresno Flats, Calif." ], - "md5": "4bfffe586026b0cf91ea7da807455eb2" + "md5": "27a2696bf72e47244589628949da313f" }, { "authorized_access_point": "Burg Lauenstein (Ludwigsstadt)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Burg" - } - ], "identifiedBy": [ { "source": "GND", @@ -3165,12 +3188,19 @@ "value": "(DE-588)1334502854" } ], + "identifier": "http://d-nb.info/gnd/1334502854", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Burg_Lauenstein_(Frankenwald)&oldid=243193355" ] + }, + { + "noteType": "general", + "label": [ + "Mittelalterliche Ho\u0308henburg in Oberfranken" + ] } ], "pid": "1334502854", @@ -3188,17 +3218,10 @@ "Burg (Lauenstein)", "Burg und Renaissanceschloss Lauenstein (Ludwigsstadt)" ], - "md5": "b8e162acbf1c8b5fa93e54e415d155e9" + "md5": "0cb09945153707a4f82ddb8f97a7ef7a" }, { "authorized_access_point": "Pac\u0327o de Alca\u0301c\u0327ova (Lissabon)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Palast" - } - ], "identifiedBy": [ { "source": "GND", @@ -3216,6 +3239,7 @@ "value": "(DE-588)1334486573" } ], + "identifier": "http://d-nb.info/gnd/1334486573", "pid": "1334486573", "type": "bf:Place", "broader": [ @@ -3226,17 +3250,10 @@ "variant_access_point": [ "Pac\u0327o Real (Lissabon)" ], - "md5": "5794bf79da5477e5e90c4b1f66ef4765" + "md5": "a4bbb1c3da653f3a50f8b04689dadb7d" }, { "authorized_access_point": "Vallesina", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Tal" - } - ], "identifiedBy": [ { "source": "GND", @@ -3254,6 +3271,7 @@ "value": "(DE-588)1334485763" } ], + "identifier": "http://d-nb.info/gnd/1334485763", "pid": "1334485763", "type": "bf:Place", "broader": [ @@ -3264,17 +3282,10 @@ "variant_access_point": [ "Vallesina" ], - "md5": "49ecb3832851a4a6e40b016d407eed60" + "md5": "c84eeecc258edcb7e11232213c1aba7b" }, { "authorized_access_point": "Rathaus Barsbu\u0308ttel (Barsbu\u0308ttel)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Rathaus" - } - ], "identifiedBy": [ { "source": "GND", @@ -3292,6 +3303,7 @@ "value": "(DE-588)1334319561" } ], + "identifier": "http://d-nb.info/gnd/1334319561", "note": [ { "noteType": "dataSource", @@ -3311,7 +3323,7 @@ "variant_access_point": [ "Barsbu\u0308tteler Rathaus (Barsbu\u0308ttel)" ], - "md5": "b1c33956e274ad10d03031c0fef4cd3a" + "md5": "03547272d185738c7b2791a82e7d864a" }, { "authorized_access_point": "Stockhausen (Landkreis Gie\u00dfen)", @@ -3332,6 +3344,15 @@ "value": "(DE-588)1334318492" } ], + "identifier": "http://d-nb.info/gnd/1334318492", + "note": [ + { + "noteType": "general", + "label": [ + "Ort im Landkreis Gie\u00dfen, Hessen; Ende 1970 nach Gru\u0308nberg eingemeindet" + ] + } + ], "pid": "1334318492", "type": "bf:Place", "broader": [ @@ -3342,17 +3363,10 @@ "authorized_access_point": "Landkreis Gie\u00dfen" } ], - "md5": "f456088145be57f5a9f3ef5ebebc249f" + "md5": "9d40e3ffb7057d8876bd616b5a4e3570" }, { "authorized_access_point": "Rathaus Gro\u00dfhansdorf (Gro\u00dfhansdorf)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Rathaus" - } - ], "identifiedBy": [ { "source": "GND", @@ -3370,6 +3384,7 @@ "value": "(DE-588)1334318069" } ], + "identifier": "http://d-nb.info/gnd/1334318069", "note": [ { "noteType": "dataSource", @@ -3389,7 +3404,7 @@ "variant_access_point": [ "Gro\u00dfhansdorfer Rathaus (Gro\u00dfhansdorf)" ], - "md5": "1fc6cdb81f88d22c13945f22c85ec2bb" + "md5": "1038fb6462bd5e402cbee4ec61c7d6dd" }, { "authorized_access_point": "Queckborn", @@ -3410,6 +3425,15 @@ "value": "(DE-588)1334313776" } ], + "identifier": "http://d-nb.info/gnd/1334313776", + "note": [ + { + "noteType": "general", + "label": [ + "Ort im Landkreis Gie\u00dfen, Hessen; Ende 1970 nach Gru\u0308nberg eingemeindet" + ] + } + ], "pid": "1334313776", "type": "bf:Place", "broader": [ @@ -3417,17 +3441,10 @@ "authorized_access_point": "Gru\u0308nberg-Queckborn" } ], - "md5": "2585221e53ef5ed91aa9ae5bc639c309" + "md5": "a1cc04598aab19401caca56df9562c90" }, { "authorized_access_point": "Rathaus Glinde (Glinde)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Rathaus" - } - ], "identifiedBy": [ { "source": "GND", @@ -3445,6 +3462,7 @@ "value": "(DE-588)1334312974" } ], + "identifier": "http://d-nb.info/gnd/1334312974", "note": [ { "noteType": "dataSource", @@ -3463,7 +3481,7 @@ "variant_access_point": [ "Glinder Rathaus (Glinde)" ], - "md5": "a451bf470ebab0d98344cfd60c8a43be" + "md5": "2cd0237689c7c6fd37f978f209e70155" }, { "authorized_access_point": "Lumda", @@ -3484,6 +3502,15 @@ "value": "(DE-588)1334310661" } ], + "identifier": "http://d-nb.info/gnd/1334310661", + "note": [ + { + "noteType": "general", + "label": [ + "Ort im Landkreis Gie\u00dfen, Hessen; Ende 1970 nach Gru\u0308nberg eingemeindet" + ] + } + ], "pid": "1334310661", "type": "bf:Place", "broader": [ @@ -3491,17 +3518,10 @@ "authorized_access_point": "Gru\u0308nberg-Lumda" } ], - "md5": "b53d35fd6514b00c1f48e5ff163274ba" + "md5": "8b3943572ee0faf55237c4e980fae65e" }, { "authorized_access_point": "Rathaus Reinbek (Reinbek)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Rathaus" - } - ], "identifiedBy": [ { "source": "GND", @@ -3519,6 +3539,7 @@ "value": "(DE-588)1334302111" } ], + "identifier": "http://d-nb.info/gnd/1334302111", "note": [ { "noteType": "dataSource", @@ -3538,7 +3559,7 @@ "variant_access_point": [ "Reinbeker Rathaus (Reinbek)" ], - "md5": "281e34304a1fd347ab60c89959c9f398" + "md5": "64d17e088b6c616571b3e412162cc676" }, { "authorized_access_point": "Lehnheim", @@ -3559,6 +3580,15 @@ "value": "(DE-588)1334300054" } ], + "identifier": "http://d-nb.info/gnd/1334300054", + "note": [ + { + "noteType": "general", + "label": [ + "Ort im Landkreis Gie\u00dfen, Hessen; Ende 1971 nach Gru\u0308nberg eingemeindet" + ] + } + ], "pid": "1334300054", "type": "bf:Place", "broader": [ @@ -3566,17 +3596,10 @@ "authorized_access_point": "Gru\u0308nberg-Lehnheim" } ], - "md5": "fa5d3a9093322a7bb89ba9ea4506833a" + "md5": "2e95fb8400afa24d6cc1d97f40061ad3" }, { "authorized_access_point": "Mo\u0308hnefriedhof (Arnsberg)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Friedhof" - } - ], "identifiedBy": [ { "source": "GND", @@ -3594,6 +3617,15 @@ "value": "(DE-588)133422725X" } ], + "identifier": "http://d-nb.info/gnd/133422725X", + "note": [ + { + "noteType": "general", + "label": [ + "1970 Schlie\u00dfung und seitdem allma\u0308hliche Umgestaltung des historischen Friedhofs zu einem naturnah gestalteten Park" + ] + } + ], "pid": "133422725X", "type": "bf:Place", "broader": [ @@ -3604,7 +3636,7 @@ "authorized_access_point": "Arnsberg-Neheim" } ], - "md5": "d71f572971c71627cbcad8ee5b7adbec" + "md5": "d869d013148fb543a64a5d3386ae4e73" }, { "authorized_access_point": "Furth-Arth", @@ -3625,6 +3657,7 @@ "value": "(DE-588)1334221979" } ], + "identifier": "http://d-nb.info/gnd/1334221979", "pid": "1334221979", "type": "bf:Place", "related": [ @@ -3635,17 +3668,10 @@ "variant_access_point": [ "Arth (Furth-Arth)" ], - "md5": "b52231f72090b105c129345b0e055fc5" + "md5": "e170aa7eb70aef604763d03bf6e2d5ca" }, { "authorized_access_point": "Holy Trinity Church (Schanghai)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kirchenbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -3663,12 +3689,19 @@ "value": "(DE-588)1334198845" } ], + "identifier": "http://d-nb.info/gnd/1334198845", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://en.wikipedia.org/w/index.php?title=Holy_Trinity_Church,_Shanghai&oldid=1177032584" ] + }, + { + "noteType": "general", + "label": [ + "Protestantische Kirche im Stadtteil Huangpu von Schanghai" + ] } ], "pid": "1334198845", @@ -3685,22 +3718,10 @@ "\u4e0a\u6d77\u5723\u4e09\u4e00\u5802", "Sha\u0300ngha\u030ci she\u0300ng sa\u0304nyi\u0304 ta\u0301ng" ], - "md5": "4a3ab3b53def7d72564b816982acdbde" + "md5": "2861f4fa1c7eb2fe991157f101bca4bb" }, { "authorized_access_point": "Stadtgarten Bad Driburg (Bad Driburg)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stadtpark" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Spielplatz" - } - ], "identifiedBy": [ { "source": "GND", @@ -3718,6 +3739,7 @@ "value": "(DE-588)1334117918" } ], + "identifier": "http://d-nb.info/gnd/1334117918", "pid": "1334117918", "type": "bf:Place", "broader": [ @@ -3728,17 +3750,10 @@ "variant_access_point": [ "Mu\u0308hlenpforte (Bad Driburg)" ], - "md5": "1aef493e64f8bc3f7b3c222604abb549" + "md5": "27a3a8d8ca97a28c11f2bfc435051200" }, { "authorized_access_point": "Santuario della Madonna della Neve (Casto)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kirchenbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -3756,6 +3771,7 @@ "value": "(DE-588)1334101221" } ], + "identifier": "http://d-nb.info/gnd/1334101221", "note": [ { "noteType": "dataSource", @@ -3777,7 +3793,7 @@ "variant_access_point": [ "Madonna della Neve (Casto)" ], - "md5": "ce8188f645218d55c19afa9cd9d247ca" + "md5": "7ea2ddde83b20bfafd16c1bd2d380669" }, { "authorized_access_point": "Ostrov (Constant\u0323a)", @@ -3798,12 +3814,19 @@ "value": "(DE-588)1334086826" } ], + "identifier": "http://d-nb.info/gnd/1334086826", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Ostrov&oldid=239139996" ] + }, + { + "noteType": "general", + "label": [ + "Gemeinde im Kreis Constant\u0327a" + ] } ], "pid": "1334086826", @@ -3813,7 +3836,7 @@ "authorized_access_point": "Constant\u0323a" } ], - "md5": "9178fcbe64427c58cea704e4528cc0bc" + "md5": "bb1868951774314cd67cf7a73cf0296f" }, { "authorized_access_point": "S\u0327oimos\u0327", @@ -3834,12 +3857,19 @@ "value": "(DE-588)1334027250" } ], + "identifier": "http://d-nb.info/gnd/1334027250", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=%C8%98oimo%C8%99&oldid=243040757" ] + }, + { + "noteType": "general", + "label": [ + "Ort im Westen Ruma\u0308niens und geho\u0308rt zur Kleinstadt Lipova (Lippa) im Kreis Arad im Banat" + ] } ], "pid": "1334027250", @@ -3849,7 +3879,7 @@ "Schojmosch", "Schoimosch" ], - "md5": "b9b943c5900b8542359b1617e58a7712" + "md5": "7dbe54c06524ffb23fcbf0debb9cd8b3" }, { "authorized_access_point": "Brunnelaite (Donau)", @@ -3870,6 +3900,7 @@ "value": "(DE-588)1334024804" } ], + "identifier": "http://d-nb.info/gnd/1334024804", "note": [ { "noteType": "dataSource", @@ -3877,6 +3908,12 @@ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Liste_von_Pl%C3%A4tzen_und_Alleen_in_der_Altstadt_von_Regensburg&oldid=246052949", "RI II,4 n. 1657, in: Regesta Imperii Online - http://www.regesta-imperii.de/id/1007-11-01_7_0_2_4_1_343_1657" ] + }, + { + "noteType": "general", + "label": [ + "Nachgewiesen bereits 1007, Standort von 2 Geho\u0308ften, beschreibt eine Wasserquelle oder einen Wasserstau-Schwall in der Donau und das zur Donau hin abfallende Gela\u0308nde." + ] } ], "pid": "1334024804", @@ -3889,7 +3926,7 @@ "variant_access_point": [ "Brunnleite (Donau)" ], - "md5": "2649c150792f0dd2ccc82886e2c031f2" + "md5": "481efd70a5717680cd4ea946985f8d45" }, { "authorized_access_point": "Radziejewo", @@ -3910,6 +3947,16 @@ "value": "(DE-588)1334011753" } ], + "identifier": "http://d-nb.info/gnd/1334011753", + "note": [ + { + "noteType": "general", + "label": [ + "Dorf in Polen", + "Fu\u0308r die Sacherschlie\u00dfung wird bei Splits nur diese (das ist die neueste/ju\u0308ngste) Namensform verwendet." + ] + } + ], "pid": "1334011753", "type": "bf:Place", "related": [ @@ -3920,7 +3967,7 @@ "variant_access_point": [ "Sonnwalde" ], - "md5": "2ea56fad3356f1d23f9881020374bbea" + "md5": "9fb783272ac0be16cb1e378249155a0c" }, { "authorized_access_point": "Sonnwalde", @@ -3941,6 +3988,16 @@ "value": "(DE-588)1334011079" } ], + "identifier": "http://d-nb.info/gnd/1334011079", + "note": [ + { + "noteType": "general", + "label": [ + "Ehemalige Gemeinde im Landkreis Braunsberg; seit 1945 zu Polen geho\u0308rend (Radziejewo)", + "In der Sacherschlie\u00dfung nicht zu verwenden; fu\u0308r die Sacherschlie\u00dfung wird bei Splits nur die neueste/ju\u0308ngste Namensform verwendet." + ] + } + ], "pid": "1334011079", "type": "bf:Place", "broader": [ @@ -3948,7 +4005,7 @@ "authorized_access_point": "Radziejewo" } ], - "md5": "c197f39af5ce4e1a800031980242f8cf" + "md5": "ba70f270704d1b733d8d4d1ea1bfacb0" }, { "authorized_access_point": "Reimerswalde", @@ -3969,22 +4026,29 @@ "value": "(DE-588)1334001529" } ], + "identifier": "http://d-nb.info/gnd/1334001529", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Ignalin_(Lidzbark_Warmi%C5%84ski)&oldid=203537377" ] - } - ], - "pid": "1334001529", - "type": "bf:Place", + }, + { + "noteType": "general", + "label": [ + "In der Sacherschlie\u00dfung nicht zu verwenden; fu\u0308r die Sacherschlie\u00dfung wird bei Splits nur die neueste/ju\u0308ngste Namensform verwendet." + ] + } + ], + "pid": "1334001529", + "type": "bf:Place", "broader": [ { "authorized_access_point": "Ignalin" } ], - "md5": "53094192c2a133ec03c520cd543e6535" + "md5": "a3227bf3270c14662bb0686acbd9e41b" }, { "authorized_access_point": "Ignalin", @@ -4005,12 +4069,19 @@ "value": "(DE-588)1333989954" } ], + "identifier": "http://d-nb.info/gnd/1333989954", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Ignalin_(Lidzbark_Warmi%C5%84ski)&oldid=203537377" ] + }, + { + "noteType": "general", + "label": [ + "Fu\u0308r die Sacherschlie\u00dfung wird bei Splits nur diese (das ist die neueste/ju\u0308ngste) Namensform verwendet." + ] } ], "pid": "1333989954", @@ -4025,7 +4096,7 @@ "Ignalin (Lidzbark Warmin\u0301ski)", "Reimerswalde" ], - "md5": "22db906d622745022d339a39484414ea" + "md5": "70594e576c877cb7c04e247baf0aa514" }, { "authorized_access_point": "Meschede-Frielinghausen", @@ -4046,6 +4117,7 @@ "value": "(DE-588)1333660758" } ], + "identifier": "http://d-nb.info/gnd/1333660758", "note": [ { "noteType": "dataSource", @@ -4064,7 +4136,7 @@ "variant_access_point": [ "Frielinghausen (Meschede)" ], - "md5": "14ab70c5914175d95a1b9adc8dcc13ca" + "md5": "a7823461786093a073943cba1313a1db" }, { "authorized_access_point": "Tolla", @@ -4085,12 +4157,19 @@ "value": "(DE-588)1333582501" } ], + "identifier": "http://d-nb.info/gnd/1333582501", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Tolla&oldid=239496022" ] + }, + { + "noteType": "general", + "label": [ + "Gemeinde im franzo\u0308sischen De\u0301partement Corse-du-Sud in der Region Korsika" + ] } ], "pid": "1333582501", @@ -4098,7 +4177,7 @@ "variant_access_point": [ "Todda" ], - "md5": "7ab27b6c97d94ede6db740741684cc81" + "md5": "05f1b8df069ec8915b4c82ffdf4e1bc3" }, { "authorized_access_point": "Bystrez", @@ -4119,6 +4198,7 @@ "value": "(DE-588)1333570511" } ], + "identifier": "http://d-nb.info/gnd/1333570511", "note": [ { "noteType": "dataSource", @@ -4126,6 +4206,12 @@ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Bystrez_(Werchowyna)&oldid=223341029", "Geonames - https://www.geonames.org/711003/bystrets.html" ] + }, + { + "noteType": "general", + "label": [ + "Dorf in der ukrainischen Oblast Iwano-Frankiwsk, westlich vom Rajonzentrum Werchowyna" + ] } ], "pid": "1333570511", @@ -4134,17 +4220,10 @@ "Bystrec\u02b9", "Bystrets" ], - "md5": "4d8be98fa1c1d2934e9438bafe46ba16" + "md5": "d0f01d003904c89767b63945c2924483" }, { "authorized_access_point": "Holzheim (Horevun, Wu\u0308stung)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Wu\u0308stung" - } - ], "identifiedBy": [ { "source": "GND", @@ -4162,6 +4241,7 @@ "value": "(DE-588)133355513X" } ], + "identifier": "http://d-nb.info/gnd/133355513X", "pid": "133355513X", "type": "bf:Place", "broader": [ @@ -4172,17 +4252,10 @@ "variant_access_point": [ "Wu\u0308stung Holzheim" ], - "md5": "2d2015dca53e90fc08c886fd6ca4cdc7" + "md5": "3ad25accbcee91d0a118a6f98cfb3b16" }, { "authorized_access_point": "Teubnitz", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Wu\u0308stung" - } - ], "identifiedBy": [ { "source": "GND", @@ -4200,6 +4273,7 @@ "value": "(DE-588)1333333668" } ], + "identifier": "http://d-nb.info/gnd/1333333668", "pid": "1333333668", "type": "bf:Place", "variant_access_point": [ @@ -4208,17 +4282,10 @@ "Wu\u0308stung Teubentz", "Teubnitz (Ahornthal)" ], - "md5": "8fdc58464e622759f96573cf7802e7ac" + "md5": "903b071ea5f2639514479ea450b38bc9" }, { "authorized_access_point": "Siedlung Bornheimer Hang (Frankfurt am Main)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Wohnsiedlung" - } - ], "identifiedBy": [ { "source": "GND", @@ -4236,6 +4303,7 @@ "value": "(DE-588)1333321090" } ], + "identifier": "http://d-nb.info/gnd/1333321090", "note": [ { "noteType": "dataSource", @@ -4259,7 +4327,7 @@ "Siedlung Bornheimer Hang (Frankfurt-Bornheim)", "Ernst-May-Siedlung (Frankfurt-Bornheim)" ], - "md5": "1e9aeec4c83824784b8a4cabd8dfc9b4" + "md5": "1abff8e635094c3e5b221c6b3fdd6d23" }, { "authorized_access_point": "Burla\u0306nes\u0327ti", @@ -4280,6 +4348,7 @@ "value": "(DE-588)1333315902" } ], + "identifier": "http://d-nb.info/gnd/1333315902", "note": [ { "noteType": "dataSource", @@ -4287,6 +4356,12 @@ "GeoNames - https://www.geonames.org/618476/burlanesti.html", "Wikipedia - https://ro.wikipedia.org/w/index.php?title=Burl%C4%83ne%C8%99ti,_Edine%C8%9B&oldid=16192546" ] + }, + { + "noteType": "general", + "label": [ + "Dorf, raion Edinet\u0326" + ] } ], "pid": "1333315902", @@ -4295,7 +4370,7 @@ "Burlaneshti", "Burlaneshty" ], - "md5": "b59a49600cf4c5f325d85ef779412518" + "md5": "2ed110e0bc2bb562cc327d0070fb7d11" }, { "authorized_access_point": "Altenkunstadt-Trebitzmu\u0308hle", @@ -4316,6 +4391,7 @@ "value": "(DE-588)1333263465" } ], + "identifier": "http://d-nb.info/gnd/1333263465", "pid": "1333263465", "type": "bf:Place", "related": [ @@ -4326,7 +4402,7 @@ "variant_access_point": [ "Trebitzmu\u0308hle (Altenkunstadt-Trebitzmu\u0308hle)" ], - "md5": "85424583480f933cc75641a103afe443" + "md5": "2acb7aabed948ddf29f89c166f5a5f7a" }, { "authorized_access_point": "Bravicea", @@ -4347,27 +4423,27 @@ "value": "(DE-588)1333255853" } ], + "identifier": "http://d-nb.info/gnd/1333255853", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Bravicea&oldid=242048890" ] + }, + { + "noteType": "general", + "label": [ + "Gemeinde im Rajon Ca\u0306la\u0306ras\u0326i, Republik Moldau" + ] } ], "pid": "1333255853", "type": "bf:Place", - "md5": "090c1c5235babc944fd9ac895c6a05ad" + "md5": "b423de9ab2c560d67fea72766768fe6f" }, { "authorized_access_point": "Evangelische Reformationsgeda\u0308chtniskirche (Egloffstein)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kirchenbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -4385,6 +4461,7 @@ "value": "(DE-588)1333228880" } ], + "identifier": "http://d-nb.info/gnd/1333228880", "note": [ { "noteType": "dataSource", @@ -4409,17 +4486,10 @@ "Reformationsgeda\u0308chtniskirche (Egloffstein)", "Reformationsgeda\u0308chtniskirche (Egloffstein-Bieberbach)" ], - "md5": "853b8afe3a09d4e039f1ba6bef878244" + "md5": "bc0b4168916671bf5a2ec4c71ac51713" }, { "authorized_access_point": "Sankt Georg (Wolfersgru\u0308n)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kirchenbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -4437,6 +4507,7 @@ "value": "(DE-588)1333113943" } ], + "identifier": "http://d-nb.info/gnd/1333113943", "note": [ { "noteType": "dataSource", @@ -4457,7 +4528,7 @@ "Filialkirche Sankt Georg (Wolfersgru\u0308n)", "Katholische Filialkirche Sankt Georg (Wolfersgru\u0308n)" ], - "md5": "2ed191412af8520bb56d89e4b5ba0034" + "md5": "010294df352c30c147213fa8ef688a16" }, { "authorized_access_point": "Thala", @@ -4478,6 +4549,7 @@ "value": "(DE-588)1332874568" } ], + "identifier": "http://d-nb.info/gnd/1332874568", "note": [ { "noteType": "dataSource", @@ -4491,7 +4563,7 @@ "variant_access_point": [ "Talah" ], - "md5": "62c63579ff76d5da0a35e65236f682ac" + "md5": "2f3e11a9e1ceb0757d2ec975b023f81e" }, { "authorized_access_point": "Beaumont (Departement Yonne)", @@ -4512,6 +4584,7 @@ "value": "(DE-588)1332858198" } ], + "identifier": "http://d-nb.info/gnd/1332858198", "note": [ { "noteType": "dataSource", @@ -4527,7 +4600,7 @@ "authorized_access_point": "Departement Yonne" } ], - "md5": "d3e7906d7c4e3577f445d72b51ac234b" + "md5": "3e0958e9f241c6096469361f51f3b9d9" }, { "authorized_access_point": "Krylos", @@ -4548,6 +4621,7 @@ "value": "(DE-588)1332769349" } ], + "identifier": "http://d-nb.info/gnd/1332769349", "note": [ { "noteType": "dataSource", @@ -4555,6 +4629,12 @@ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Krylos&oldid=244798100", "Geonames - http://www.geonames.org/703893/krylos.html" ] + }, + { + "noteType": "general", + "label": [ + "Ort in der Ukraine (Oblast Ivano-Frankivs\u02b9k, Ivano-Frankivs\u02b9kyj rajon)" + ] } ], "pid": "1332769349", @@ -4563,17 +4643,10 @@ "Krilos", "Kry\u0142os" ], - "md5": "6f226e6b7dc429639a6d536b50880ab7" + "md5": "a77095263ac672f8ee983c62184c7b69" }, { "authorized_access_point": "Slierbach (Wu\u0308stung)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Wu\u0308stung" - } - ], "identifiedBy": [ { "source": "GND", @@ -4591,12 +4664,19 @@ "value": "(DE-588)1332757375" } ], + "identifier": "http://d-nb.info/gnd/1332757375", "note": [ { "noteType": "dataSource", "label": [ "RIplus Regg. Bamberg n. 39, in: Regesta Imperii Online - http://www.regesta-imperii.de/id/fffc7ec3-2a09-4f7b-a1c6-b0b415fe26b2" ] + }, + { + "noteType": "general", + "label": [ + "Wu\u0308stung bei Forchheim-Burk" + ] } ], "pid": "1332757375", @@ -4609,7 +4689,7 @@ "variant_access_point": [ "Wu\u0308stung Slierbach" ], - "md5": "b92ce5f375562b025697f95ae9840bcf" + "md5": "9c694f114d8b9eaffbdbe04283923d6e" }, { "authorized_access_point": "Durihin", @@ -4630,17 +4710,24 @@ "value": "(DE-588)1332755666" } ], + "identifier": "http://d-nb.info/gnd/1332755666", "note": [ { "noteType": "dataSource", "label": [ "RI II,4 n. 1653, in: Regesta Imperii Online - http://www.regesta-imperii.de/id/1007-11-01_3_0_2_4_1_339_1653" ] + }, + { + "noteType": "general", + "label": [ + "Mittelalterlicher Gau" + ] } ], "pid": "1332755666", "type": "bf:Place", - "md5": "9c09af1d515fe9d79e6afe86701b2496" + "md5": "01d42b3d4a4dcf34012ada9813ab8985" }, { "authorized_access_point": "Su\u0308lchgau", @@ -4661,12 +4748,19 @@ "value": "(DE-588)1332749054" } ], + "identifier": "http://d-nb.info/gnd/1332749054", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=S%C3%BClchgau&oldid=208578053" ] + }, + { + "noteType": "general", + "label": [ + "Mittelalterlicher Gau" + ] } ], "pid": "1332749054", @@ -4677,7 +4771,7 @@ "Sulichkewe", "Su\u0308lichgau" ], - "md5": "a81b60275126d56a112f85fe8becedf2" + "md5": "540ffebfb4588095134435ae3fec3a14" }, { "authorized_access_point": "Nagoldgau", @@ -4698,12 +4792,19 @@ "value": "(DE-588)1332747108" } ], + "identifier": "http://d-nb.info/gnd/1332747108", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Nagoldgau&oldid=215319373" ] + }, + { + "noteType": "general", + "label": [ + "Fru\u0308hmittelalterlicher Gau im Herzogtum Schwaben" + ] } ], "pid": "1332747108", @@ -4712,7 +4813,7 @@ "Nagoldgouw", "Nagaltgouwe" ], - "md5": "0b637672c570fc3e58b9dba5d3489b62" + "md5": "f0a8d5d4a96550033e1f4a1bae8bcf66" }, { "authorized_access_point": "Glehuntra", @@ -4733,17 +4834,24 @@ "value": "(DE-588)1332742351" } ], + "identifier": "http://d-nb.info/gnd/1332742351", "note": [ { "noteType": "dataSource", "label": [ "RIplus Regg. Bamberg n. 51, in: Regesta Imperii Online - http://www.regesta-imperii.de/id/f8a73e64-64db-4c07-8d84-284a227be527" ] + }, + { + "noteType": "general", + "label": [ + "Mittelalterlicher Gau" + ] } ], "pid": "1332742351", "type": "bf:Place", - "md5": "5e5edae349e97fcf8e73ba5e185328d0" + "md5": "dba33238fd4c3fe9da41453b20e3b4f0" }, { "authorized_access_point": "Riesgau", @@ -4764,12 +4872,19 @@ "value": "(DE-588)1332735002" } ], + "identifier": "http://d-nb.info/gnd/1332735002", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Riesgau&oldid=226471032" ] + }, + { + "noteType": "general", + "label": [ + "Gau im Nordosten des mittelalterlichen Stammesherzogtums Schwaben" + ] } ], "pid": "1332735002", @@ -4777,7 +4892,7 @@ "variant_access_point": [ "Rezia" ], - "md5": "186196cc90624949c43ce59d1c7370b5" + "md5": "4134b1e171f80a9624fd729c318f832c" }, { "authorized_access_point": "Salzburggau", @@ -4798,17 +4913,24 @@ "value": "(DE-588)1332734863" } ], + "identifier": "http://d-nb.info/gnd/1332734863", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Salzburggau&oldid=225169888" ] + }, + { + "noteType": "general", + "label": [ + "Mittelalterlicher Gau, ab dem 6. Jahrhundert nachgewiesen" + ] } ], "pid": "1332734863", "type": "bf:Place", - "md5": "6bdec602bb6281c152de101f14933b17" + "md5": "3e5f829cb0c83ff9a4f84f33020a8191" }, { "authorized_access_point": "Mattiggau", @@ -4829,17 +4951,24 @@ "value": "(DE-588)133273457X" } ], + "identifier": "http://d-nb.info/gnd/133273457X", "note": [ { "noteType": "dataSource", "label": [ "RI II,4 n. 1841, in: Regesta Imperii Online - http://www.regesta-imperii.de/id/1014-06-21_1_0_2_4_1_622_1841" ] + }, + { + "noteType": "general", + "label": [ + "Mittelalterliches Gau" + ] } ], "pid": "133273457X", "type": "bf:Place", - "md5": "7b72f70a14e2dc30ceff0fdccbd731d3" + "md5": "e591f29ce2f73db16c3720e1a6893198" }, { "authorized_access_point": "Donaugau", @@ -4860,17 +4989,24 @@ "value": "(DE-588)1332733751" } ], + "identifier": "http://d-nb.info/gnd/1332733751", "note": [ { "noteType": "dataSource", "label": [ "RI In. 598, in: Regesta Imperii Online - http://www.regesta-imperii.de/id/0815-12-03_1_0_1_1_0_1483_598" ] + }, + { + "noteType": "general", + "label": [ + "Mittelalterlicher Gau" + ] } ], "pid": "1332733751", "type": "bf:Place", - "md5": "5ccd484acfa55fe5f40f96f64daf042a" + "md5": "37cb6f6ee246866d9a2a4dd998472db5" }, { "authorized_access_point": "Kelsgau", @@ -4891,12 +5027,19 @@ "value": "(DE-588)1332732577" } ], + "identifier": "http://d-nb.info/gnd/1332732577", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Kelsgau&oldid=241651452" ] + }, + { + "noteType": "general", + "label": [ + "Erstmalige Erwa\u0308hnung 844; Gau im Fru\u0308hmittelalter" + ] } ], "pid": "1332732577", @@ -4904,17 +5047,10 @@ "variant_access_point": [ "Chelesgau" ], - "md5": "eb3454ac083a84966b303db7115fe82b" + "md5": "672ffe2cb24c5039146e3f894df36979" }, { "authorized_access_point": "Monte San Primo", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Berg" - } - ], "identifiedBy": [ { "source": "GND", @@ -4932,12 +5068,19 @@ "value": "(DE-588)1332731430" } ], + "identifier": "http://d-nb.info/gnd/1332731430", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Monte_San_Primo&oldid=229134400" ] + }, + { + "noteType": "general", + "label": [ + "Berg in der Lombardei, Provinz Como" + ] } ], "pid": "1332731430", @@ -4950,7 +5093,7 @@ "variant_access_point": [ "San Primo (Berg)" ], - "md5": "cad2266fe4ca451ac816425ca3644bdc" + "md5": "e08f42c759643e65828b5ee532fb3863" }, { "authorized_access_point": "Brackmills", @@ -4971,6 +5114,7 @@ "value": "(DE-588)1332670482" } ], + "identifier": "http://d-nb.info/gnd/1332670482", "note": [ { "noteType": "dataSource", @@ -4989,7 +5133,7 @@ "variant_access_point": [ "Northampton-Brackmills" ], - "md5": "242142aae08ff0c92c14d6cc537c35fe" + "md5": "47d099e5946173825c281db59e2ec620" }, { "authorized_access_point": "Adwick le Street", @@ -5010,12 +5154,19 @@ "value": "(DE-588)1332669689" } ], + "identifier": "http://d-nb.info/gnd/1332669689", "note": [ { "noteType": "dataSource", "label": [ "GeoNames - https://www.geonames.org/2657658/adwick-le-street.html" ] + }, + { + "noteType": "general", + "label": [ + "Dorf in der Metropolitanstadt Doncaster" + ] } ], "pid": "1332669689", @@ -5028,7 +5179,7 @@ "variant_access_point": [ "Doncaster- Adwick le Street" ], - "md5": "6e8b47dfacd661122b4773ab6e60b5ce" + "md5": "abf952bde3c0bd790f7fc9a5256e3d6f" }, { "authorized_access_point": "My\u0301tina", @@ -5049,12 +5200,20 @@ "value": "(DE-588)1332451578" } ], + "identifier": "http://d-nb.info/gnd/1332451578", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=M%C3%BDtina&oldid=240251478" ] + }, + { + "noteType": "general", + "label": [ + "Ortsteil von Lipova\u0301 (Lindenhau) im Okres Cheb (Bezirk Eger) in Tschechien.", + "Fu\u0308r die Sacherschlie\u00dfung wird bei Splits nur diese (das ist die neueste/ju\u0308ngste) Namensform verwendet." + ] } ], "pid": "1332451578", @@ -5067,7 +5226,7 @@ "variant_access_point": [ "Alt-Albenreuth" ], - "md5": "cdb1dde18755b13050f3ed648461c565" + "md5": "cd0d053e14974c07f97d3e8bbec1fcd0" }, { "authorized_access_point": "Borrello", @@ -5088,17 +5247,24 @@ "value": "(DE-588)1332353436" } ], + "identifier": "http://d-nb.info/gnd/1332353436", "note": [ { "noteType": "dataSource", "label": [ "GeoNames - https://www.geonames.org/3181856/borello.html" ] + }, + { + "noteType": "general", + "label": [ + "Ort in den Abruzzen, Provinz Chieti" + ] } ], "pid": "1332353436", "type": "bf:Place", - "md5": "5feb7b91cf1dd3213443e1db1a421cb3" + "md5": "14ac4f87aa9469862f43b656c4d8691b" }, { "authorized_access_point": "Olmeda de la Cuesta", @@ -5119,6 +5285,7 @@ "value": "(DE-588)1332057209" } ], + "identifier": "http://d-nb.info/gnd/1332057209", "note": [ { "noteType": "dataSource", @@ -5126,11 +5293,17 @@ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Olmeda_de_la_Cuesta&oldid=226226107", "GeoNames - https://www.geonames.org/6357483/olmeda-de-la-cuesta.html" ] + }, + { + "noteType": "general", + "label": [ + "Ort in der Provinz Cuenca, Kastilien- La Mancha" + ] } ], "pid": "1332057209", "type": "bf:Place", - "md5": "ddfaa5275f4662c24d47fcd1032f96fe" + "md5": "b7820619c6e3d5bb559d305d0aa30c58" }, { "authorized_access_point": "Bluc\u030cina", @@ -5151,6 +5324,7 @@ "value": "(DE-588)1332055729" } ], + "identifier": "http://d-nb.info/gnd/1332055729", "pid": "1332055729", "type": "bf:Place", "variant_access_point": [ @@ -5158,17 +5332,10 @@ "Lautschu\u0308tz", "Lanteschitz" ], - "md5": "996a7ff22437aa57a2754b336061cd2a" + "md5": "c6f603253e16545c74d49cad5b3a57ac" }, { "authorized_access_point": "Amt S\u00f8nderjylland", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Amt" - } - ], "identifiedBy": [ { "source": "GND", @@ -5186,12 +5353,19 @@ "value": "(DE-588)1332031374" } ], + "identifier": "http://d-nb.info/gnd/1332031374", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?oldid=195150922" ] + }, + { + "noteType": "general", + "label": [ + "S\u00f8nderjyllands Amt war eine da\u0308nische Amtskommune." + ] } ], "pid": "1332031374", @@ -5224,17 +5398,10 @@ "S\u00f8nderjyllands Amtskommune", "Amtskommune S\u00f8nderjylland" ], - "md5": "45b056d7cce11c620c58e200463b0f04" + "md5": "ead4d53eacc793f97d684ea8fc70cd9a" }, { "authorized_access_point": "Europa-Viertel am Waldhu\u0308gel (Rheine)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Wohngebiet" - } - ], "identifiedBy": [ { "source": "GND", @@ -5252,12 +5419,19 @@ "value": "(DE-588)1331729661" } ], + "identifier": "http://d-nb.info/gnd/1331729661", "note": [ { "noteType": "dataSource", "label": [ "Homepage - https://europa-viertel-rheine.de/" ] + }, + { + "noteType": "general", + "label": [ + "Wohngebiet auf dem Gela\u0308nde der ehemaligen Damloup-Kaserne in Rheine, dessen Vermarktung 2024 abgeschlossen ist" + ] } ], "pid": "1331729661", @@ -5272,17 +5446,10 @@ "Europaviertel (Rheine)", "EuVie (Rheine)" ], - "md5": "676cfbe467c17e74b951e73946954a6e" + "md5": "bb4fbb1e88083a60c240137b02419e32" }, { "authorized_access_point": "Bas\u030cc\u030cars\u030cija (Sarajevo)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Platz" - } - ], "identifiedBy": [ { "source": "GND", @@ -5300,6 +5467,7 @@ "value": "(DE-588)1331609186" } ], + "identifier": "http://d-nb.info/gnd/1331609186", "note": [ { "noteType": "dataSource", @@ -5318,17 +5486,10 @@ "variant_access_point": [ "Hauptmarkt (Sarajevo)" ], - "md5": "2eeb253d743d2d16bad5b5ade7f6e5ce" + "md5": "a1ff5a6f104b0a075e87fdb59697dd47" }, { "authorized_access_point": "Crkva Svetog Nikole (Borci, Kotor Varos\u030c)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kirchenbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -5346,6 +5507,7 @@ "value": "(DE-588)1331604346" } ], + "identifier": "http://d-nb.info/gnd/1331604346", "pid": "1331604346", "type": "bf:Place", "broader": [ @@ -5356,7 +5518,7 @@ "variant_access_point": [ "Nikolauskirche (Borci, Kotor Varos\u030c)" ], - "md5": "7bb8d6b00d05923fefb5ac90e458401e" + "md5": "2b790a09c09d2ec9249a37d516f911b3" }, { "authorized_access_point": "Borci (Kotor Varos\u030c)", @@ -5377,6 +5539,7 @@ "value": "(DE-588)1331602718" } ], + "identifier": "http://d-nb.info/gnd/1331602718", "note": [ { "noteType": "dataSource", @@ -5392,7 +5555,7 @@ "authorized_access_point": "Kotor Varos\u030c" } ], - "md5": "5e41ecffadf62773f4430525ed15df07" + "md5": "1665952a750df31bebfcebdc0eeb0ccc" }, { "authorized_access_point": "Nowogro\u0301d", @@ -5413,6 +5576,7 @@ "value": "(DE-588)1331601630" } ], + "identifier": "http://d-nb.info/gnd/1331601630", "note": [ { "noteType": "dataSource", @@ -5420,6 +5584,12 @@ "GeoNames - https://www.geonames.org/763600/nowogrod.html", "Wikipedia - https://pl.wikipedia.org/w/index.php?title=Nowogr%C3%B3d&oldid=72647619" ] + }, + { + "noteType": "general", + "label": [ + "Stadt in Polen" + ] } ], "pid": "1331601630", @@ -5429,7 +5599,7 @@ "authorized_access_point": "\u0141omz\u0307a (Powiat)" } ], - "md5": "cdb110e283439e9856ad881100f43af4" + "md5": "ddeb2ba845964f79758205a720d28653" }, { "authorized_access_point": "Attel-Gabersee", @@ -5450,12 +5620,19 @@ "value": "(DE-588)1331514282" } ], + "identifier": "http://d-nb.info/gnd/1331514282", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Gabersee&oldid=202232396" ] + }, + { + "noteType": "general", + "label": [ + "Ehemals selbststa\u0308ndige Gemeinde; durch die Eingemeindung von Attel in die Stadt Wasserburg am 01.05.1978 Ortsteil von Wasserburg" + ] } ], "pid": "1331514282", @@ -5476,7 +5653,7 @@ "variant_access_point": [ "Gabersee (Attel-Gabersee)" ], - "md5": "0b8122d006d2b11fc2ad93bd1bb56eb9" + "md5": "aa77f4673cfbd6d1019f7f42cea4fc2d" }, { "authorized_access_point": "Attel", @@ -5497,6 +5674,15 @@ "value": "(DE-588)1331513952" } ], + "identifier": "http://d-nb.info/gnd/1331513952", + "note": [ + { + "noteType": "general", + "label": [ + "Ehemals selbststa\u0308ndige Gemeinde; seit 01.05.1978 Ortsteil von Wasserburg" + ] + } + ], "pid": "1331513952", "type": "bf:Place", "broader": [ @@ -5504,7 +5690,7 @@ "authorized_access_point": "Wasserburg-Attel" } ], - "md5": "604b7e054d7728796a242180610065cd" + "md5": "ab9a02ccec1699a87879ba5dfcd3da64" }, { "authorized_access_point": "Trogen-Ullitz", @@ -5525,6 +5711,7 @@ "value": "(DE-588)1331379539" } ], + "identifier": "http://d-nb.info/gnd/1331379539", "pid": "1331379539", "type": "bf:Place", "related": [ @@ -5535,17 +5722,10 @@ "variant_access_point": [ "Ullitz (Trogen-Ullitz)" ], - "md5": "c46e5b75026014d47025bc529e02f135" + "md5": "0dfdc98352808201332676de11bb85b5" }, { "authorized_access_point": "Fetislam", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Festung" - } - ], "identifiedBy": [ { "source": "GND", @@ -5563,6 +5743,7 @@ "value": "(DE-588)1331109191" } ], + "identifier": "http://d-nb.info/gnd/1331109191", "note": [ { "noteType": "dataSource", @@ -5582,7 +5763,7 @@ "variant_access_point": [ "Tvr\u0111ava Fetislam" ], - "md5": "88836b79e9b936777a83d56a0d16f2f4" + "md5": "2e8202cbccc41e50df09ada0449f5d6a" }, { "authorized_access_point": "Opato\u0301wek", @@ -5603,6 +5784,7 @@ "value": "(DE-588)1331089271" } ], + "identifier": "http://d-nb.info/gnd/1331089271", "note": [ { "noteType": "dataSource", @@ -5621,7 +5803,7 @@ "variant_access_point": [ "Opatowek" ], - "md5": "aabd44e8cbfd9d0a9518ba1f7e37404b" + "md5": "58d7c08a4705d4d291b92987008f9714" }, { "authorized_access_point": "Forstern-Preisendorf", @@ -5642,6 +5824,7 @@ "value": "(DE-588)1330982746" } ], + "identifier": "http://d-nb.info/gnd/1330982746", "pid": "1330982746", "type": "bf:Place", "related": [ @@ -5652,7 +5835,7 @@ "variant_access_point": [ "Preisendorf (Forstern-Preisendorf)" ], - "md5": "591a410a29ad2ad03e01e8e6292d20af" + "md5": "5694a82b55d6aec8fa795e3399a272e2" }, { "authorized_access_point": "Zinjaki", @@ -5673,6 +5856,7 @@ "value": "(DE-588)1330866738" } ], + "identifier": "http://d-nb.info/gnd/1330866738", "note": [ { "noteType": "dataSource", @@ -5692,7 +5876,7 @@ "variant_access_point": [ "Zinyaki" ], - "md5": "cc845d165f6e83377eaaf7a29441bb2e" + "md5": "aa84149a22aae05f6593037ab09057a5" }, { "authorized_access_point": "Gana (Praszka)", @@ -5713,6 +5897,7 @@ "value": "(DE-588)1330847199" } ], + "identifier": "http://d-nb.info/gnd/1330847199", "note": [ { "noteType": "dataSource", @@ -5732,7 +5917,7 @@ "authorized_access_point": "Woiwodschaft Oppeln" } ], - "md5": "fd2d119be56a826dcd7c22a2f38dc667" + "md5": "8911cd77e9b722d689d9b927a3a88b18" }, { "authorized_access_point": "Helmbrechts-Hampelhof", @@ -5753,6 +5938,7 @@ "value": "(DE-588)1330436237" } ], + "identifier": "http://d-nb.info/gnd/1330436237", "pid": "1330436237", "type": "bf:Place", "related": [ @@ -5763,17 +5949,10 @@ "variant_access_point": [ "Hampelhof (Helmbrechts-Hampelhof)" ], - "md5": "2b4656440bc36b1c7fe615467fc73877" + "md5": "65a2242d28983dca642f753a618176a1" }, { "authorized_access_point": "Denkmal der Helden des Ghettos (Warschau)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Denkmal" - } - ], "identifiedBy": [ { "source": "GND", @@ -5791,12 +5970,19 @@ "value": "(DE-588)1330428420" } ], + "identifier": "http://d-nb.info/gnd/1330428420", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Warschauer_Ghetto-Ehrenmal&oldid=211224290" ] + }, + { + "noteType": "general", + "label": [ + "Errichtet zum Gedenken des Aufstands im Warschauer Ghetto" + ] } ], "pid": "1330428420", @@ -5810,17 +5996,10 @@ "Warschauer Ghetto-Ehrenmal (Warschau)", "Pomnik Bohatero\u0301w Getta (Warschau)" ], - "md5": "d5490254082cc8cd0c5fff0bb7925b7b" + "md5": "43290b022ac80be47976e43dc18ac0ac" }, { "authorized_access_point": "Wassermu\u0308hle Nu\u0308tschau (Travenbru\u0308ck)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Wassermu\u0308hle" - } - ], "identifiedBy": [ { "source": "GND", @@ -5838,12 +6017,19 @@ "value": "(DE-588)1330324463" } ], + "identifier": "http://d-nb.info/gnd/1330324463", "note": [ { "noteType": "dataSource", "label": [ "Kreis Stormarn (Kreisarchiv Stormarn) - https://www.stormarnlexikon.de/wassermuehlenuetschau/" ] + }, + { + "noteType": "general", + "label": [ + "Ehemalige Wassermu\u0308hle in Nu\u0308tschau, einem Ortsteil von Travenbru\u0308ck im Kreis Stornmarn, Schlewsig-Holstein; Kauf und Nutzung durch den Fotografen Matthias Heitmann im Jahre 1992; Restauration und Umbau zum Wohnhaus." + ] } ], "pid": "1330324463", @@ -5859,17 +6045,10 @@ "variant_access_point": [ "Wassermu\u0308hle Nu\u0308tschau (Travenbru\u0308ck-Nu\u0308tschau)" ], - "md5": "e91d4e7a96e470e54624c475b4770e03" + "md5": "5bebbdac5e1ae3a3dcf2f5be4f74b11c" }, { "authorized_access_point": "Drahtmu\u0308hle Gro\u0308nwohld (Gro\u0308nwohld)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Papiermu\u0308hle" - } - ], "identifiedBy": [ { "source": "GND", @@ -5887,6 +6066,7 @@ "value": "(DE-588)1330302877" } ], + "identifier": "http://d-nb.info/gnd/1330302877", "note": [ { "noteType": "dataSource", @@ -5903,22 +6083,10 @@ "authorized_access_point": "Gro\u0308nwohld" } ], - "md5": "dbcf29c8c89fe37754c88ec20391b83e" + "md5": "452d59264d657db6aafb6a0294a7f18d" }, { "authorized_access_point": "Fasanenhof (Jersbek)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Gaststa\u0308tte" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Beherbergungsbetrieb" - } - ], "identifiedBy": [ { "source": "GND", @@ -5936,6 +6104,7 @@ "value": "(DE-588)1330290887" } ], + "identifier": "http://d-nb.info/gnd/1330290887", "note": [ { "noteType": "dataSource", @@ -5956,22 +6125,10 @@ "Landgasthaus Zum Fasanenhof (Jersbek)", "Landgasthof Zum Fasanenhof (Jersbek)" ], - "md5": "401502d75c9aef12dfa30c1df0bb4334" + "md5": "f47090749dc79f1da30f4358738257cd" }, { "authorized_access_point": "TOP-Grenzwanderweg Schifflersgrund", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Rundwanderweg" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Grenzwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -5989,6 +6146,7 @@ "value": "(DE-588)1330177274" } ], + "identifier": "http://d-nb.info/gnd/1330177274", "note": [ { "noteType": "dataSource", @@ -5996,6 +6154,12 @@ "Naturparkzentrum und Verwaltung - https://www.naturpark-ehw.de/weg/top-grenzwanderweg-schifflersgrund", "Grenzmuseum Schifflersgrund - https://www.grenzmuseum.de/lernen/bildungsort/grenzwanderweg" ] + }, + { + "noteType": "general", + "label": [ + "Rundwanderweg entlang der innerdeutschen Grenze zwischen Asbach-Sickendorf und Bad Sooden-Allendorf; ca. 10,9 km" + ] } ], "pid": "1330177274", @@ -6012,17 +6176,10 @@ "Grenzwanderweg Schifflersgrund", "Rundwanderweg Schifflersgrund" ], - "md5": "06b748c011c45a523593e168466f68bd" + "md5": "21a700fa395c4339a9b89db32642bb86" }, { "authorized_access_point": "Orchideenbrunnen (Jena)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Brunnen" - } - ], "identifiedBy": [ { "source": "GND", @@ -6040,12 +6197,19 @@ "value": "(DE-588)1329890205" } ], + "identifier": "http://d-nb.info/gnd/1329890205", "note": [ { "noteType": "dataSource", "label": [ "Stadtverwaltung Jena - https://beteiligung.jena.de/sites/default/files/2024-02/Aufarbeitung_Geschichte%20des%20Orchideenbrunnen_B%C3%BCrgerbudget%20Jena_0.pdf" ] + }, + { + "noteType": "general", + "label": [ + "Brunnen und Metallplastik auf dem Eichplatz in Jena; Demontage im Jahr 2000." + ] } ], "pid": "1329890205", @@ -6058,7 +6222,7 @@ "variant_access_point": [ "Jenaer Orchideenbrunnen (Jena)" ], - "md5": "bb755e3e55cfdaf6bc070221f3481421" + "md5": "dfaef0cfbed4d44dce19328a0c2be581" }, { "authorized_access_point": "Merville (Departement Nord)", @@ -6079,6 +6243,7 @@ "value": "(DE-588)1329430875" } ], + "identifier": "http://d-nb.info/gnd/1329430875", "note": [ { "noteType": "dataSource", @@ -6086,6 +6251,12 @@ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Merville_(Nord)&oldid=246093496", "GeoNames - https://www.geonames.org/6438365/merville.html" ] + }, + { + "noteType": "general", + "label": [ + "Gemeinde im De\u0301partement Nord, Frankreich" + ] } ], "pid": "1329430875", @@ -6095,7 +6266,7 @@ "authorized_access_point": "Departement Nord" } ], - "md5": "66eda11c5443a102146a33078dd28a2a" + "md5": "137806da8cba11e4cddfb5fdbaf7057e" }, { "authorized_access_point": "Smolotely", @@ -6116,22 +6287,16 @@ "value": "(DE-588)1316359042" } ], + "identifier": "http://d-nb.info/gnd/1316359042", "pid": "1316359042", "type": "bf:Place", "variant_access_point": [ "Smolotel" ], - "md5": "e01dc1cc1a65433a11e8ca0b1b4a19e9" + "md5": "da2d82da4916f0846d0b892086beb8df" }, { "authorized_access_point": "Oberes Schloss (Mitwitz)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Schloss" - } - ], "identifiedBy": [ { "source": "GND", @@ -6149,6 +6314,7 @@ "value": "(DE-588)1314596373" } ], + "identifier": "http://d-nb.info/gnd/1314596373", "pid": "1314596373", "type": "bf:Place", "broader": [ @@ -6156,17 +6322,10 @@ "authorized_access_point": "Mitwitz" } ], - "md5": "616f3f9d464e32e89c6b90ceebcdcc59" + "md5": "d64c942967802b1639bb26611da24664" }, { "authorized_access_point": "Straubelstra\u00dfe (Po\u0308\u00dfneck)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stra\u00dfe" - } - ], "identifiedBy": [ { "source": "GND", @@ -6184,6 +6343,15 @@ "value": "(DE-588)1302571524" } ], + "identifier": "http://d-nb.info/gnd/1302571524", + "note": [ + { + "noteType": "general", + "label": [ + "Stra\u00dfe in der Innenstadt von Po\u0308\u00dfneck im Saale-Orla-Kreis, Thu\u0308ringen" + ] + } + ], "pid": "1302571524", "type": "bf:Place", "broader": [ @@ -6194,7 +6362,7 @@ "variant_access_point": [ "Schulstra\u00dfe (Po\u0308\u00dfneck)" ], - "md5": "7d4035e63e8a60fb7db46cedc2cfd4e9" + "md5": "e2d1bcb3050a517a7984353c5438b8ff" }, { "authorized_access_point": "Lindow (Kreis Oststernberg)", @@ -6215,12 +6383,19 @@ "value": "(DE-588)1300397128" } ], + "identifier": "http://d-nb.info/gnd/1300397128", "note": [ { "noteType": "dataSource", "label": [ "Heimatkreis Oststernberg e.V. (Hrsg.): Oststernberger Heimatbrief 2/2013 - https://oststernberg.de/wp-content/uploads/2016/02/Heimatbrief-2-2013.pdf" ] + }, + { + "noteType": "general", + "label": [ + "Das Dorf Lindow im ehemaligen Kreis Ost-Sternberg wurde im Jahre 1939 gemeinsam mit den umliegenden Orten Wandern und Gro\u00df Kirschbaum zum Truppenu\u0308bungsplatz bestimmt und sa\u0308mtliche Einwohner*innen umgesiedelt." + ] } ], "pid": "1300397128", @@ -6230,7 +6405,7 @@ "authorized_access_point": "Kreis Oststernberg" } ], - "md5": "f6aec753d4484e8a89b208fd6f092d22" + "md5": "c7688f7a51310b6dc8e7181ab434bbe8" }, { "authorized_access_point": "Leipzig-Mockau-Su\u0308d", @@ -6251,12 +6426,19 @@ "value": "(DE-588)1299383890" } ], + "identifier": "http://d-nb.info/gnd/1299383890", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?oldid=230671556" ] + }, + { + "noteType": "general", + "label": [ + "Ortsteil des Leipziger Stadtteils Mockau im Stadtbezirk Nordost" + ] } ], "pid": "1299383890", @@ -6272,7 +6454,7 @@ "variant_access_point": [ "Mockau-Su\u0308d (Leipzig)" ], - "md5": "be5cfb151f26783eeb1cf32dd58b032e" + "md5": "aa90a462fa8013cbe2bd3943944a761f" }, { "authorized_access_point": "Turza Wielka", @@ -6293,12 +6475,19 @@ "value": "(DE-588)129673143X" } ], + "identifier": "http://d-nb.info/gnd/129673143X", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?oldid=217307184" ] + }, + { + "noteType": "general", + "label": [ + "Dorf in der polnischen Woiwodschaft Ermland-Masuren" + ] } ], "pid": "129673143X", @@ -6308,17 +6497,10 @@ "authorized_access_point": "Gro\u00df Tauersee" } ], - "md5": "31f5b8017dd770aa865d532c0f1fe86c" + "md5": "fe264bda7119c96dc81587f214e1eab0" }, { "authorized_access_point": "Goethe-Erlebnisweg", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Wanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -6336,6 +6518,7 @@ "value": "(DE-588)1295131781" } ], + "identifier": "http://d-nb.info/gnd/1295131781", "note": [ { "noteType": "dataSource", @@ -6343,7 +6526,13 @@ "Verbandsbu\u0308ro in Apolda - https://www.weimarer-land.travel/zukunft/goethe-erlebnisweg/", "Wikipedia - https://de.wikipedia.org/w/index.php?title=Goethe-Erlebnisweg&oldid=234912759" ] - } + }, + { + "noteType": "general", + "label": [ + "Wanderweg zwischen Weimar und Gro\u00dfkochberg auf den Spuren Goethes; 29 km lang" + ] + } ], "pid": "1295131781", "type": "bf:Place", @@ -6355,7 +6544,7 @@ "authorized_access_point": "Uhlsta\u0308dt-Kirchhasel- Gro\u00dfkochberg" } ], - "md5": "3a8fe015fa46c04a301ff4ab4a109bda" + "md5": "ba913ca3ea27c7155f6ed7acb00e2a47" }, { "authorized_access_point": "Bollingstedt-Gammellund", @@ -6376,12 +6565,19 @@ "value": "(DE-588)1287837611" } ], + "identifier": "http://d-nb.info/gnd/1287837611", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?oldid=229557818" ] + }, + { + "noteType": "general", + "label": [ + "Ehemals selbststa\u0308ndige Gemeinde; seit 1. August 1976 Eingemeindung nach Bollingstedt im Kreis Schleswig-Flensburg, Schleswig-Holstein." + ] } ], "pid": "1287837611", @@ -6394,7 +6590,7 @@ "authorized_access_point": "Gammellund" } ], - "md5": "190249772f56f085481c52864e4543f3" + "md5": "6f70b319b2013ac7b0b7eda5c4e494d8" }, { "authorized_access_point": "Leipzig-Stu\u0308nz", @@ -6415,6 +6611,7 @@ "value": "(DE-588)1286132703" } ], + "identifier": "http://d-nb.info/gnd/1286132703", "note": [ { "noteType": "dataSource", @@ -6441,22 +6638,10 @@ "variant_access_point": [ "Stu\u0308nz (Leipzig)" ], - "md5": "7f7c9a8643dea2c7d2e006a4692ff358" + "md5": "176be9204b3edaa1974b2144bcc7bfdf" }, { "authorized_access_point": "Alte Sust (Horgen)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Museumsbau" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Verkehrsbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -6474,6 +6659,15 @@ "value": "(DE-588)1284341119" } ], + "identifier": "http://d-nb.info/gnd/1284341119", + "note": [ + { + "noteType": "general", + "label": [ + "erbaut 1552, Umbau mit steilem Walmdach um 1780; Einrichtung als ortsgeschichtliches Museum 1956-1966" + ] + } + ], "pid": "1284341119", "type": "bf:Place", "broader": [ @@ -6484,7 +6678,7 @@ "variant_access_point": [ "Sust (Horgen)" ], - "md5": "7b4e3172f1c0fba13f4e5f1c42ab4949" + "md5": "d56eac8cbfd11e9623c0e484b973417a" }, { "authorized_access_point": "Fehmarn-Gahlendorf", @@ -6505,12 +6699,19 @@ "value": "(DE-588)1282328816" } ], + "identifier": "http://d-nb.info/gnd/1282328816", "note": [ { "noteType": "dataSource", "label": [ "GOV - http://gov.genealogy.net/item/show/GAHORFJO54PK" ] + }, + { + "noteType": "general", + "label": [ + "Ehemals selbststa\u0308ndiges Dorf; seit 1. Januar 2003 Stadtteil der Stadt Fehmarn im Kreis Ostholstein, Schleswig-Holstein." + ] } ], "pid": "1282328816", @@ -6523,17 +6724,10 @@ "authorized_access_point": "Gahlendorf" } ], - "md5": "713704a0fea2512485777fdb506760bf" + "md5": "0f6c98431fe7ab6ef9142a975375c4a7" }, { "authorized_access_point": "E\u0307glis\u030ckiai-Anduliai", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Gra\u0308berfeld" - } - ], "identifiedBy": [ { "source": "GND", @@ -6551,6 +6745,7 @@ "value": "(DE-588)1275159915" } ], + "identifier": "http://d-nb.info/gnd/1275159915", "pid": "1275159915", "type": "bf:Place", "broader": [ @@ -6561,17 +6756,10 @@ "variant_access_point": [ "Anduln" ], - "md5": "506a6a108734be4e534ed05f3653c6ec" + "md5": "c8592061724b1090c5fb4d08819c47d8" }, { "authorized_access_point": "N\u00f8rre Herred (Amt Bornholm)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Bezirk" - } - ], "identifiedBy": [ { "source": "GND", @@ -6589,12 +6777,19 @@ "value": "(DE-588)1271173751" } ], + "identifier": "http://d-nb.info/gnd/1271173751", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://da.wikipedia.org/w/index.php?title=N%C3%B8rre_Herred_(Bornholm)&oldid=9783302" ] + }, + { + "noteType": "general", + "label": [ + "Ehemaliger Verwaltungsbezirk in Amt Bornholm" + ] } ], "pid": "1271173751", @@ -6604,17 +6799,10 @@ "authorized_access_point": "Amt Bornholm" } ], - "md5": "f258957c96b6bca72c9c39bbb294052e" + "md5": "0c08c61d586406910a1904d5aa11c6e9" }, { "authorized_access_point": "Beskid Makowski", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Gebirgszug" - } - ], "identifiedBy": [ { "source": "GND", @@ -6632,6 +6820,7 @@ "value": "(DE-588)1267606541" } ], + "identifier": "http://d-nb.info/gnd/1267606541", "note": [ { "noteType": "dataSource", @@ -6639,6 +6828,12 @@ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Beskid_Makowski&oldid=211779153", "Wikipedia - https://www.wikidata.org/wiki/Q6740528" ] + }, + { + "noteType": "general", + "label": [ + "Gebirgszug der Westbeskiden in Polen in der Woiwodschaft Kleinpolen, nach der Stadt Mako\u0301w Podhalan\u0301ski benannt" + ] } ], "pid": "1267606541", @@ -6654,17 +6849,10 @@ "Beskid S\u0301redni", "Mittelbeskiden" ], - "md5": "3b20f436e5d22b18f586fc1513431f20" + "md5": "e6c677b76aaf3aa53121b48366adbdb3" }, { "authorized_access_point": "Altenburg (Stadtlauringen, Berg)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Berg" - } - ], "identifiedBy": [ { "source": "GND", @@ -6682,6 +6870,15 @@ "value": "(DE-588)1262419808" } ], + "identifier": "http://d-nb.info/gnd/1262419808", + "note": [ + { + "noteType": "general", + "label": [ + "Bergsporn zwischen Stadtlauringen und Oberlauringen im Landkreis Schweinfurt" + ] + } + ], "pid": "1262419808", "type": "bf:Place", "broader": [ @@ -6689,10 +6886,10 @@ "authorized_access_point": "Stadtlauringen" } ], - "md5": "d3d3b05d6898abb1f4f88c5028fb1d7e" + "md5": "40538812a5c10ef32ae410701c4be73b" }, { - "authorized_access_point": "Wodzis\u0142aw S\u0301la\u0328ski", + "authorized_access_point": "Wodzis\u0142aw S\u0301la\u0328ski - Region", "identifiedBy": [ { "source": "GND", @@ -6710,6 +6907,7 @@ "value": "(DE-588)1240912943" } ], + "identifier": "http://d-nb.info/gnd/1240912943", "pid": "1240912943", "type": "bf:Place", "variant_access_point": [ @@ -6718,17 +6916,10 @@ "Wodzis\u0142aw S\u0301la\u0328ski", "Loslau" ], - "md5": "7d1ee5c293bd24814ffafe5dbdfa2fc7" + "md5": "68c3fac03c0abb883afa765347122803" }, { "authorized_access_point": "Mount Ferguson, Nev.", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Berg" - } - ], "identifiedBy": [ { "source": "GND", @@ -6746,24 +6937,21 @@ "value": "(DE-588)1239866968" } ], + "identifier": "http://d-nb.info/gnd/1239866968", + "note": [ + { + "noteType": "general", + "label": [ + "Berg im US-Bundesstaat Nevada" + ] + } + ], "pid": "1239866968", "type": "bf:Place", - "md5": "93b7cb909c80abb690bf04357045f357" + "md5": "5e25b5a19d9663cdfda2853559f98273" }, { "authorized_access_point": "Carte de Tendre", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Imagina\u0308rer Schauplatz" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Motiv" - } - ], "identifiedBy": [ { "source": "GND", @@ -6781,16 +6969,26 @@ "value": "(DE-588)1239463502" } ], + "identifier": "http://d-nb.info/gnd/1239463502", + "note": [ + { + "noteType": "general", + "label": [ + "Psycholog. Schema u. allegor. Landkarte (1653/54); 1654/60 in M. Scuderys Roman \"Cle\u0301lie, histoire romaine\" vero\u0308ffentlicht", + "Ohne iZ Motiv" + ] + } + ], "pid": "1239463502", "type": "bf:Place", "variant_access_point": [ "Carte du Tendre", "Carte du pays de Tendre" ], - "md5": "197ce59d47c428b1c9d9e737370e815d" + "md5": "bf4eada24f55f310ac7af18ad24dee02" }, { - "authorized_access_point": "Kolbuszowa", + "authorized_access_point": "Kolbuszowa - Region", "identifiedBy": [ { "source": "GND", @@ -6808,6 +7006,7 @@ "value": "(DE-588)1237860342" } ], + "identifier": "http://d-nb.info/gnd/1237860342", "pid": "1237860342", "type": "bf:Place", "broader": [ @@ -6820,7 +7019,7 @@ "Kolbuszowa", "Ziemia kolbuszowska" ], - "md5": "4b19622a359b339b6fd5c3a3e4bb63b8" + "md5": "256b23e0d36ade88ac21cfffd96249d1" }, { "authorized_access_point": "Ziemia Ostrzeszowska", @@ -6841,6 +7040,7 @@ "value": "(DE-588)1237828171" } ], + "identifier": "http://d-nb.info/gnd/1237828171", "pid": "1237828171", "type": "bf:Place", "broader": [ @@ -6855,10 +7055,10 @@ "Schildberger Land", "Schildberg" ], - "md5": "fa4fdc577385bf5553e62b2d239a7876" + "md5": "aa57d75d0aa774447d720a8bf9e1ae8d" }, { - "authorized_access_point": "Szprotawa", + "authorized_access_point": "Szprotawa - Region", "identifiedBy": [ { "source": "GND", @@ -6876,6 +7076,7 @@ "value": "(DE-588)1237774101" } ], + "identifier": "http://d-nb.info/gnd/1237774101", "pid": "1237774101", "type": "bf:Place", "broader": [ @@ -6892,10 +7093,10 @@ "Sprottauer Land", "Sprottau" ], - "md5": "cad35ae81ab080dd6ef6bc04dfde763c" + "md5": "96db321d06a408c7f4d5304bb168747b" }, { - "authorized_access_point": "We\u0328gro\u0301w", + "authorized_access_point": "We\u0328gro\u0301w - Region", "identifiedBy": [ { "source": "GND", @@ -6913,6 +7114,7 @@ "value": "(DE-588)1237279453" } ], + "identifier": "http://d-nb.info/gnd/1237279453", "pid": "1237279453", "type": "bf:Place", "broader": [ @@ -6924,17 +7126,10 @@ "We\u0328gro\u0301w", "Ziemia we\u0328growska" ], - "md5": "712e2174b51ca269adfd6198696e42cd" + "md5": "2a12e00846cd63316c2ca4fd48a1ab5b" }, { "authorized_access_point": "Lublin-Synklinale", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Synklinale" - } - ], "identifiedBy": [ { "source": "GND", @@ -6952,6 +7147,7 @@ "value": "(DE-588)1236792211" } ], + "identifier": "http://d-nb.info/gnd/1236792211", "pid": "1236792211", "type": "bf:Place", "broader": [ @@ -6959,10 +7155,10 @@ "authorized_access_point": "Polen" } ], - "md5": "11ba3c3c783e50706a2d0ed3ad1884e9" + "md5": "e40c9505f3ddcbe1703c330ac9aed97d" }, { - "authorized_access_point": "Zwolen\u0301", + "authorized_access_point": "Zwolen\u0301 - Region", "identifiedBy": [ { "source": "GND", @@ -6980,6 +7176,7 @@ "value": "(DE-588)123657754X" } ], + "identifier": "http://d-nb.info/gnd/123657754X", "note": [ { "noteType": "dataSource", @@ -6999,17 +7196,10 @@ "Zwolen\u0301", "Ziemia zwolen\u0301ska" ], - "md5": "5147f033a05d214b32f0e29cf2c115b5" + "md5": "f8717ec90090c86f356ad0cec916c028" }, { "authorized_access_point": "Croker Island", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Insel" - } - ], "identifiedBy": [ { "source": "GND", @@ -7027,6 +7217,15 @@ "value": "(DE-588)1235360709" } ], + "identifier": "http://d-nb.info/gnd/1235360709", + "note": [ + { + "noteType": "general", + "label": [ + "Insel in der Arafurasee vor der Ku\u0308ste des Northern Territory in Australien" + ] + } + ], "pid": "1235360709", "type": "bf:Place", "broader": [ @@ -7034,7 +7233,7 @@ "authorized_access_point": "Arafurasee" } ], - "md5": "8e07b30946443951da1f6ec76db2d7f0" + "md5": "5003aa16512a3646f1f5f397e39249e8" }, { "authorized_access_point": "Dubring", @@ -7055,12 +7254,19 @@ "value": "(DE-588)1233310046" } ], + "identifier": "http://d-nb.info/gnd/1233310046", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Dubring&oldid=197367017" ] + }, + { + "noteType": "general", + "label": [ + "Dubring (sorbisch: Dubrjenk) ist eine ehemals selbsta\u0308ndige Gemeinde; seit 1.1.1994 nach Wittichenau eingemeindet. Im Landkreis Bautzen in Sachsen. 1815-1945 zu Preu\u00dfen (Regierungsbezirk Liegnitz) geho\u0308rend" + ] } ], "pid": "1233310046", @@ -7074,17 +7280,10 @@ "Dubrjenk", "Eichhain" ], - "md5": "976ed55f2d9ba3734df0ec6342aaa85b" + "md5": "4275f601df0b6da7910298b6a41b781c" }, { "authorized_access_point": "Ehrenberg (Berg)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Berg" - } - ], "identifiedBy": [ { "source": "GND", @@ -7102,6 +7301,7 @@ "value": "(DE-588)1232243698" } ], + "identifier": "http://d-nb.info/gnd/1232243698", "note": [ { "noteType": "dataSource", @@ -7117,17 +7317,10 @@ "authorized_access_point": "Ilmenau" } ], - "md5": "ce71c6bc1345c7da1e731559884d0b21" + "md5": "e6828e7f1b62cece4e486baa911bc428" }, { "authorized_access_point": "Schiller-Denkmal (Marbach am Neckar)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Denkmal" - } - ], "identifiedBy": [ { "source": "GND", @@ -7145,12 +7338,19 @@ "value": "(DE-588)1225876354" } ], + "identifier": "http://d-nb.info/gnd/1225876354", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Liste_von_Schillerdenkm%C3%A4lern&oldid=201898785" ] + }, + { + "noteType": "general", + "label": [ + "Schiller-Denkmal in der Parkanlage Schillerho\u0308he, gegenu\u0308ber dem Schiller-Nationalmuseum. - Standbild gestaltet nach Entwu\u0308rfen des Bildhauers Ernst Friedrich Rau, in der Werkstatt Pelargus in Erz gegossen" + ] } ], "pid": "1225876354", @@ -7160,17 +7360,10 @@ "authorized_access_point": "Marbach am Neckar" } ], - "md5": "1631d08665b41dddcdb90b2f1b835898" + "md5": "653a691cda67a439d79874311e1902cf" }, { "authorized_access_point": "Akademietheater Wien (Wien)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Theaterbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -7188,6 +7381,7 @@ "value": "(DE-588)1224278054" } ], + "identifier": "http://d-nb.info/gnd/1224278054", "note": [ { "noteType": "dataSource", @@ -7196,6 +7390,12 @@ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Akademietheater_(Wien)&oldid=204362083", "Homepage - https://www.burgtheater.at/akademietheater" ] + }, + { + "noteType": "general", + "label": [ + "Wird seit 1922 vom Burgtheater Wien als Kammerspielbu\u0308hne genutzt." + ] } ], "pid": "1224278054", @@ -7212,22 +7412,10 @@ "Akademie-Theater Wien (Wien)", "Akademie Theater Wien (Wien)" ], - "md5": "de967b6c062a458c4fd38ecaf273bd23" + "md5": "97afd6efab5a627e7c398a6745c74041" }, { "authorized_access_point": "Turmhu\u0308gelburg Woja (Rehau-Woja)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Burg" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Motte" - } - ], "identifiedBy": [ { "source": "GND", @@ -7245,6 +7433,7 @@ "value": "(DE-588)122413754X" } ], + "identifier": "http://d-nb.info/gnd/122413754X", "note": [ { "noteType": "dataSource", @@ -7264,7 +7453,7 @@ "Turmhu\u0308gel Woja (Rehau-Woja)", "Burg Woja (Rehau-Woja)" ], - "md5": "b73a01e1cc93e22aae01c72564e5a10a" + "md5": "50895ca7e2578242e809138340ffa932" }, { "authorized_access_point": "Balninkai", @@ -7285,6 +7474,15 @@ "value": "(DE-588)122219953X" } ], + "identifier": "http://d-nb.info/gnd/122219953X", + "note": [ + { + "noteType": "general", + "label": [ + "Stadt im Bezirk Utena, Litauen" + ] + } + ], "pid": "122219953X", "type": "bf:Place", "related": [ @@ -7300,7 +7498,7 @@ "Bal\u02b9ninkaj", "\u0411\u0430\u043b\u044c\u043d\u0438\u043d\u043a\u0430\u0438\u0306" ], - "md5": "c0fdf9edc3d55d42e4ce3e2642be4b03" + "md5": "59a2d73960ad8c1e2762e71a4bb0c82b" }, { "authorized_access_point": "Kamajai", @@ -7321,6 +7519,15 @@ "value": "(DE-588)1222199440" } ], + "identifier": "http://d-nb.info/gnd/1222199440", + "note": [ + { + "noteType": "general", + "label": [ + "Stadt in der Gemeinde Rokis\u030ckis in Litauen" + ] + } + ], "pid": "1222199440", "type": "bf:Place", "variant_access_point": [ @@ -7330,22 +7537,10 @@ "Kamajaj", "\u041a\u0430\u043c\u0430\u044f\u0438\u0306" ], - "md5": "f1e86709fa43abd1ed33abd107013380" + "md5": "3352dc92c9313d3564fd2235b48da697" }, { "authorized_access_point": "Braffy (Saint-Ouen-le-Pin)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Landhaus" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Bauernhof" - } - ], "identifiedBy": [ { "source": "GND", @@ -7363,6 +7558,15 @@ "value": "(DE-588)1219234621" } ], + "identifier": "http://d-nb.info/gnd/1219234621", + "note": [ + { + "noteType": "general", + "label": [ + "Landhaus des Bauernhofs, welcher urspru\u0308nglich zur Zisterzienserabtei Val-Richer (jetzt Gemeinde Saint-Ouen-le-Pin im De\u0301partement Calvados der Region Normandie) geho\u0308rte. Ende des 19. Jahrhunderts von Conrad de Witt erworben. Nach dessen Tod waren Haus und Pressoir zuna\u0308chst im Besitz des Enkels Jean Schlumberger, der ab 1954 (nach dem Verkauf an Louise Schlumberger) im Pressoir wohnte. Bis 1968 war Braffy dem Postamt La Boissie\u0300re, danach Saint-Ouen-le-Pin zugewiesen." + ] + } + ], "pid": "1219234621", "type": "bf:Place", "broader": [ @@ -7373,7 +7577,7 @@ "authorized_access_point": "La Boissie\u0300re" } ], - "md5": "b845ae7738756612970b2fb3ed316af3" + "md5": "506d98e793120b15cfa18c6e55f50c09" }, { "authorized_access_point": "Kirs\u030cai", @@ -7394,17 +7598,24 @@ "value": "(DE-588)1215862520" } ], + "identifier": "http://d-nb.info/gnd/1215862520", "note": [ { "noteType": "dataSource", "label": [ "GeoNames - http://geotree.geonames.org/11303211/" ] + }, + { + "noteType": "general", + "label": [ + "Dorf in der Gemeinde Alvitas, Rajon Vilkavis\u030ckis, Litauen" + ] } ], "pid": "1215862520", "type": "bf:Place", - "md5": "a31110d2e9ceb302957383ff20aa37ca" + "md5": "ed79140e8c1ff505fa2b6533009b9199" }, { "authorized_access_point": "Dirz\u030ciai (Pakruojis)", @@ -7425,6 +7636,7 @@ "value": "(DE-588)1208649175" } ], + "identifier": "http://d-nb.info/gnd/1208649175", "note": [ { "noteType": "dataSource", @@ -7444,7 +7656,7 @@ "Dirzhyay (Pakruojis)", "Dirz\u030ciu\u0328 (Pakruojis)" ], - "md5": "df8ec0b489e8dbba757e9080623944fd" + "md5": "0e423d6a4c84ae200d9d63ca44d2799e" }, { "authorized_access_point": "Wagram-Gebiet", @@ -7465,12 +7677,13 @@ "value": "(DE-588)1206005505" } ], + "identifier": "http://d-nb.info/gnd/1206005505", "pid": "1206005505", "type": "bf:Place", "variant_access_point": [ "Wagram" ], - "md5": "cf58a6602f92c6d9c5d0a9d4214c908c" + "md5": "69f0141c43474fb9639c1b8c2bde186d" }, { "authorized_access_point": "Is\u030clauz\u030cai", @@ -7491,12 +7704,19 @@ "value": "(DE-588)1203261837" } ], + "identifier": "http://d-nb.info/gnd/1203261837", "note": [ { "noteType": "dataSource", "label": [ "GeoNames - http://geotree.geonames.org/598959/" ] + }, + { + "noteType": "general", + "label": [ + "Dorf in Litauen" + ] } ], "pid": "1203261837", @@ -7506,7 +7726,7 @@ "authorized_access_point": "Kreis Paneve\u0307z\u030cys" } ], - "md5": "84e257911751c505d92d05afa8fe40a3" + "md5": "0422a0444c77e924d8e1fb7ad074bb5b" }, { "authorized_access_point": "Ziemia Jarocinska", @@ -7527,6 +7747,7 @@ "value": "(DE-588)1197938001" } ], + "identifier": "http://d-nb.info/gnd/1197938001", "pid": "1197938001", "type": "bf:Place", "broader": [ @@ -7539,10 +7760,10 @@ "Jarocin", "Jarocin" ], - "md5": "e56885817c63666231464c1e5bcab60a" + "md5": "9b4d5a86ff676af46727f64c3f10496d" }, { - "authorized_access_point": "Rupea", + "authorized_access_point": "Rupea - Region", "identifiedBy": [ { "source": "GND", @@ -7560,32 +7781,16 @@ "value": "(DE-588)1192399013" } ], + "identifier": "http://d-nb.info/gnd/1192399013", "pid": "1192399013", "type": "bf:Place", "variant_access_point": [ "Repser La\u0308ndchen" ], - "md5": "2ae84dd7d7ad9eebb10af329235f4722" + "md5": "10a3da5989b561961dc299cb42ffde6e" }, { "authorized_access_point": "Stadthalle Chemnitz (Chemnitz)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Veranstaltungshalle" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kulturgeba\u0308ude" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Mehrzweckhalle" - } - ], "identifiedBy": [ { "source": "GND", @@ -7603,6 +7808,7 @@ "value": "(DE-588)1191133729" } ], + "identifier": "http://d-nb.info/gnd/1191133729", "pid": "1191133729", "type": "bf:Place", "broader": [ @@ -7613,7 +7819,7 @@ "variant_access_point": [ "Stadthalle (Chemnitz)" ], - "md5": "909098c53c9ae4475505a70c92eb1715" + "md5": "492ab294c3fbee2d134f6eed559cef93" }, { "authorized_access_point": "Kleine-Spree-Gebiet", @@ -7634,22 +7840,16 @@ "value": "(DE-588)1190333392" } ], + "identifier": "http://d-nb.info/gnd/1190333392", "pid": "1190333392", "type": "bf:Place", "variant_access_point": [ "Kleine Spree (Fluss)" ], - "md5": "36d82b2969ce3248fe8eab2d9c872392" + "md5": "9ed604696ba70c4620c4d3f0ee0ddb7d" }, { "authorized_access_point": "Kleine Spree", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -7667,12 +7867,19 @@ "value": "(DE-588)1190333082" } ], + "identifier": "http://d-nb.info/gnd/1190333082", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia:Stand:11.07.2019 - https://de.wikipedia.org/wiki/Kleine_Spree" ] + }, + { + "noteType": "general", + "label": [ + "40 km langer linker Nebenarm der Spree im Landkreis Bautzen in Sachsen" + ] } ], "pid": "1190333082", @@ -7680,17 +7887,10 @@ "variant_access_point": [ "Ma\u0142a Sprjewja" ], - "md5": "6708cb6c741ee709f2d174aaf3b87edf" + "md5": "5cb536f36f9770cb8e801d8bbb457d7e" }, { "authorized_access_point": "Swine", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -7708,16 +7908,25 @@ "value": "(DE-588)1190328259" } ], + "identifier": "http://d-nb.info/gnd/1190328259", + "note": [ + { + "noteType": "general", + "label": [ + "Mu\u0308ndungsarm der Oder zwischen den Inseln Usedom und Wollin, 16 km lang, Woiwodschaft Westpommern" + ] + } + ], "pid": "1190328259", "type": "bf:Place", "variant_access_point": [ "S\u0301wina", "Swine (Fluss)" ], - "md5": "c6f363bdcb9e5597110657b894a83486" + "md5": "5c0d1b00df0a7a1390f902c33508f320" }, { - "authorized_access_point": "Wa\u0142cz", + "authorized_access_point": "Wa\u0142cz - Region", "identifiedBy": [ { "source": "GND", @@ -7735,6 +7944,7 @@ "value": "(DE-588)1189443015" } ], + "identifier": "http://d-nb.info/gnd/1189443015", "note": [ { "noteType": "dataSource", @@ -7751,27 +7961,10 @@ "Deutsch Kroner Land", "Deutsch Krone (Land)" ], - "md5": "dc46ff79243be9194cbde2a4dde0e42e" + "md5": "85099b3b30f0f3a762c1364290ead7fe" }, { "authorized_access_point": "Schwedenheim (Cloppenburg)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Mehrzweckbau" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kindergartenbau" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Gemeindezentrum" - } - ], "identifiedBy": [ { "source": "GND", @@ -7789,6 +7982,7 @@ "value": "(DE-588)1188738658" } ], + "identifier": "http://d-nb.info/gnd/1188738658", "note": [ { "noteType": "dataSource", @@ -7796,6 +7990,12 @@ "Gemeindebrief der Evangelisch-Lutherischen Kirchengemeinde [Cloppenburg], Nr. 2/08 \u00b7 Juni bis September 2008, S. 4-7 - http://evangelisch-in-cloppenburg.de/wp-content/uploads/2017/04/08-2-ohne-Kasu.pdf", "Homepage - http://evangelisch-in-cloppenburg.de/schwedenheim-2" ] + }, + { + "noteType": "general", + "label": [ + "Vom schwedisches Hilfswerk I.M. (Innereuropa\u0308ische Mission) fu\u0308r karitative Zwecke gestiftetes Haus (u.a. Flu\u0308chtlingshilfe), ca. 1965 in die Tra\u0308gerschaft des Diakonischen Werks Oldenburg u\u0308bergangen; nach Umbauten, Erweiterungen und Renovierungen Nutzung als Gemeindezentrum, Kindergarten und Schule" + ] } ], "pid": "1188738658", @@ -7808,17 +8008,10 @@ "variant_access_point": [ "Gemeindezentrum Schwedenheim (Cloppenburg)" ], - "md5": "6e3f09f530796cf475090a756c4c7a8e" + "md5": "d6c0b6140ff7f5e5593c3ce61ae9107d" }, { "authorized_access_point": "Geopark Bayern-Bo\u0308hmen", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Geopark" - } - ], "identifiedBy": [ { "source": "GND", @@ -7836,12 +8029,19 @@ "value": "(DE-588)1184832803" } ], + "identifier": "http://d-nb.info/gnd/1184832803", "note": [ { "noteType": "dataSource", "label": [ "Homepage - https://www.geopark-bayern.de/de/" ] + }, + { + "noteType": "general", + "label": [ + "Tra\u0308ger ist der Verein GEOPARK Bayern-Bo\u0308hmen e.V." + ] } ], "pid": "1184832803", @@ -7857,17 +8057,10 @@ "variant_access_point": [ "C\u030cesko-Bavorsky\u0301 Geopark" ], - "md5": "bcf4453d0f8b18b914276f84fb4873e9" + "md5": "3678c12a7efffd9f55924a8d124a63b1" }, { "authorized_access_point": "Halbinsel Dwang", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Halbinsel" - } - ], "identifiedBy": [ { "source": "GND", @@ -7885,6 +8078,15 @@ "value": "(DE-588)1184428727" } ], + "identifier": "http://d-nb.info/gnd/1184428727", + "note": [ + { + "noteType": "general", + "label": [ + "Im Ostorfer See in Schwerin gelegene Halbinsel, erst im 20. Jh. als Wohnort genutzt" + ] + } + ], "pid": "1184428727", "type": "bf:Place", "broader": [ @@ -7896,7 +8098,7 @@ "Halbinsel Zwang", "Dwang, Halbinsel" ], - "md5": "2a6d2a173baa75b80e987cef2ff9fa11" + "md5": "e4b5c241bb43adcc7a5462e4c5d08948" }, { "authorized_access_point": "Trattendorf", @@ -7917,12 +8119,19 @@ "value": "(DE-588)1182916759" } ], + "identifier": "http://d-nb.info/gnd/1182916759", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/wiki/Trattendorf" ] + }, + { + "noteType": "general", + "label": [ + "Trattendorf (niedersorbisch Dubrawa) ist eine ehemals selbsta\u0308ndige Gemeinde; seit 1.1.1946 nach Spremberg eingemeindet. Im Landkreis Spree-Nei\u00dfe in Brandenburg" + ] } ], "pid": "1182916759", @@ -7935,7 +8144,7 @@ "variant_access_point": [ "Dubrawa" ], - "md5": "93371d31e0ebf99a7d358e7c974af7a2" + "md5": "bfb072e06a8f8ecbc46a7d8bdfb195de" }, { "authorized_access_point": "Neu Sallenthin", @@ -7956,6 +8165,7 @@ "value": "(DE-588)1182704948" } ], + "identifier": "http://d-nb.info/gnd/1182704948", "note": [ { "noteType": "dataSource", @@ -7963,6 +8173,12 @@ "unter - https://de.wikipedia.org/wiki/Heringsdorf", "unter - https://de.wikipedia.org/wiki/Bansin" ] + }, + { + "noteType": "general", + "label": [ + "Ort im Landkreis Usedom; 1818-1945: Kreis Usedom-Wollin), 1818 angelegt, 1826 Kolonie Neu Sallenthin, 1.7.1950 nach Basin eingemeindet, mit diesem 1.1.2005 nach Dreikaiserba\u0308der" + ] } ], "pid": "1182704948", @@ -7972,17 +8188,10 @@ "authorized_access_point": "Heringsdorf-Neu Sallenthin" } ], - "md5": "fd26780c7d5a56e21d1327ced9ecd631" + "md5": "22c0a526e1360e415cf365866722e41f" }, { "authorized_access_point": "Belgier-Kaserne (Graz)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kaserne" - } - ], "identifiedBy": [ { "source": "GND", @@ -8000,6 +8209,7 @@ "value": "(DE-588)1180664485" } ], + "identifier": "http://d-nb.info/gnd/1180664485", "note": [ { "noteType": "dataSource", @@ -8022,7 +8232,7 @@ "Belgierkaserne (Graz)", "SS-Kaserne Wetzelsdorf" ], - "md5": "a19b6580598402d73afc49625bb54bfb" + "md5": "8a03962d114139bfb2d81154687f99b3" }, { "authorized_access_point": "Heringsdorf-Neu Sallenthin", @@ -8043,6 +8253,7 @@ "value": "(DE-588)1180620623" } ], + "identifier": "http://d-nb.info/gnd/1180620623", "note": [ { "noteType": "dataSource", @@ -8050,6 +8261,12 @@ "unter - https://de.wikipedia.org/wiki/Heringsdorf", "unter - https://de.wikipedia.org/wiki/Bansin" ] + }, + { + "noteType": "general", + "label": [ + "Ortsteil von Heringsdorf seit 1.1.2006, 1818 angelegt, 1826 Kolonie Neu Sallenthin, 1.7.1950 nach Basin eingemeindet, mit diesem 1.1.2005 nach Dreikaiserba\u0308der" + ] } ], "pid": "1180620623", @@ -8066,10 +8283,10 @@ "Heringsdorf- Neu Sallenthin", "Neu Sallenthin (Heringsdorf, Seebad)" ], - "md5": "e5447bfb35c33369045359ed9e3b2569" + "md5": "ab90b44045db66576a38e5f9be41b030" }, { - "authorized_access_point": "Krotoszyn", + "authorized_access_point": "Krotoszyn - Region", "identifiedBy": [ { "source": "GND", @@ -8087,6 +8304,7 @@ "value": "(DE-588)1179502884" } ], + "identifier": "http://d-nb.info/gnd/1179502884", "pid": "1179502884", "type": "bf:Place", "variant_access_point": [ @@ -8095,17 +8313,10 @@ "Krotoschin", "Ziemia Krotoszyn\u0301ska" ], - "md5": "a2265d9837e0c00f17f2c4503ccb1d98" + "md5": "68f851c203d358e3033350bac891923e" }, { "authorized_access_point": "Ijsselmeer-Radweg", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Radwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -8123,12 +8334,19 @@ "value": "(DE-588)1177183811" } ], + "identifier": "http://d-nb.info/gnd/1177183811", "note": [ { "noteType": "dataSource", "label": [ "Internet - https://www.fietsplatform.nl/uploads/folder_NLFL_DE_2017_download.pdf" ] + }, + { + "noteType": "general", + "label": [ + "Ca. 400 km langer Rundkurs um das Ijsselmeer" + ] } ], "pid": "1177183811", @@ -8139,17 +8357,10 @@ "Zuiderzeeroute", "Ijsselmeer Radroute" ], - "md5": "215496db4e2d5b02fc24714ddbbd084d" + "md5": "41f3d2a3d588a4592f2eea1210ae7bfc" }, { "authorized_access_point": "Elsterstausee (Leipzig)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stausee" - } - ], "identifiedBy": [ { "source": "GND", @@ -8167,12 +8378,19 @@ "value": "(DE-588)1177087480" } ], + "identifier": "http://d-nb.info/gnd/1177087480", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia: - https://de.wikipedia.org/wiki/Elsterstausee_B%C3%B6sdorf" ] + }, + { + "noteType": "general", + "label": [ + "1933-1935 angelegt, 2017 wurde der Status des Elsterstausees als Gewa\u0308sser/Stauanlage aufgegeben" + ] } ], "pid": "1177087480", @@ -8182,17 +8400,10 @@ "Elsterstausee Leipzig-Knauthain", "Stausee Bo\u0308sdorf" ], - "md5": "c463af5e3b560fa49ba57b3077904120" + "md5": "c843d005d01dda9a289606c8e4adcb6c" }, { "authorized_access_point": "Ru\u030az\u030covsky\u0301 vrch", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Berg" - } - ], "identifiedBy": [ { "source": "GND", @@ -8210,12 +8421,19 @@ "value": "(DE-588)1171383401" } ], + "identifier": "http://d-nb.info/gnd/1171383401", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia: - https://de.wikipedia.org/wiki/R%C5%AF%C5%BEovsk%C3%BD_vrch" ] + }, + { + "noteType": "general", + "label": [ + "Berg in der rechtselbischen Bo\u0308hmischen Schweiz (619 m) in Tschechien" + ] } ], "pid": "1171383401", @@ -8229,10 +8447,10 @@ "Rosenberg (Bo\u0308hmische Schweiz : Berg)", "Ru\u030az\u030ca\u0301k" ], - "md5": "5a67d78a7e4eaf06ab90572d8bd270b9" + "md5": "b374a88c79f7cf049ed80087eb08d838" }, { - "authorized_access_point": "Kaunas", + "authorized_access_point": "Kaunas - Region, Ost", "identifiedBy": [ { "source": "GND", @@ -8250,6 +8468,7 @@ "value": "(DE-588)1169806708" } ], + "identifier": "http://d-nb.info/gnd/1169806708", "pid": "1169806708", "type": "bf:Place", "broader": [ @@ -8257,10 +8476,10 @@ "authorized_access_point": "Kaunas" } ], - "md5": "436a51acaf7b42b984239df7923cb643" + "md5": "a55ec583f2f4f078f45ed4eb45af66dd" }, { - "authorized_access_point": "Kaunas", + "authorized_access_point": "Kaunas - Region, West", "identifiedBy": [ { "source": "GND", @@ -8278,6 +8497,7 @@ "value": "(DE-588)1169806686" } ], + "identifier": "http://d-nb.info/gnd/1169806686", "pid": "1169806686", "type": "bf:Place", "broader": [ @@ -8285,10 +8505,10 @@ "authorized_access_point": "Kaunas" } ], - "md5": "57a97f81daddd6dbada898d6d59d2499" + "md5": "e80e62340bc712fd894627d230360bb9" }, { - "authorized_access_point": "Dzu\u0304kija", + "authorized_access_point": "Dzu\u0304kija - Ost", "identifiedBy": [ { "source": "GND", @@ -8306,6 +8526,7 @@ "value": "(DE-588)1169805167" } ], + "identifier": "http://d-nb.info/gnd/1169805167", "pid": "1169805167", "type": "bf:Place", "broader": [ @@ -8313,10 +8534,10 @@ "authorized_access_point": "Dzu\u0304kija" } ], - "md5": "808a05460249c6776db618e972d57b31" + "md5": "69e39fedcf9bee91394ebec7b05e0f83" }, { - "authorized_access_point": "Dzu\u0304kija", + "authorized_access_point": "Dzu\u0304kija - West", "identifiedBy": [ { "source": "GND", @@ -8334,6 +8555,7 @@ "value": "(DE-588)1169805140" } ], + "identifier": "http://d-nb.info/gnd/1169805140", "pid": "1169805140", "type": "bf:Place", "broader": [ @@ -8341,7 +8563,7 @@ "authorized_access_point": "Dzu\u0304kija" } ], - "md5": "ddc02461a25d8896dfaa2502269e219d" + "md5": "b39ff23a0b8de041dbdef4a373b399af" }, { "authorized_access_point": "San Basilio (Sardinien)", @@ -8362,6 +8584,7 @@ "value": "(DE-588)1167694643" } ], + "identifier": "http://d-nb.info/gnd/1167694643", "pid": "1167694643", "type": "bf:Place", "broader": [ @@ -8373,18 +8596,11 @@ "Comune di San Basilio (Sardinien)", "Santu 'Asili 'e Monti" ], - "md5": "d02c2deab33831ac505a9371dd33347c" + "md5": "68d147557cef7b62baad7ce328b07ded" }, { "authorized_access_point": "Louisville Seamount Chain", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Tiefseeberg" - } - ], - "identifiedBy": [ + "identifiedBy": [ { "source": "GND", "type": "uri", @@ -8401,6 +8617,15 @@ "value": "(DE-588)1167335767" } ], + "identifier": "http://d-nb.info/gnd/1167335767", + "note": [ + { + "noteType": "general", + "label": [ + "Kette von Tiefseebergen von der Su\u0308dpazifischen Querschwelle bis zum Kermadec-Tonga-Ru\u0308cken" + ] + } + ], "pid": "1167335767", "type": "bf:Place", "variant_access_point": [ @@ -8410,7 +8635,7 @@ "Louisville Ridge", "Louisville-Ridge" ], - "md5": "65934d9c42984d59df483ddc96e76749" + "md5": "5c6af9e757744f83e23e403108706b07" }, { "authorized_access_point": "Leipzig-Neuscho\u0308nefeld", @@ -8431,12 +8656,19 @@ "value": "(DE-588)1166988325" } ], + "identifier": "http://d-nb.info/gnd/1166988325", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Neusch%C3%B6nefeld&oldid=178415670" ] + }, + { + "noteType": "general", + "label": [ + "Ortsteil von Leipzig seit 1890" + ] } ], "pid": "1166988325", @@ -8457,7 +8689,7 @@ "variant_access_point": [ "Neuscho\u0308nefeld (Leipzig)" ], - "md5": "93d4d9e217001d9976fd9a7bbf2687b4" + "md5": "cf174fe89f75a14cd8ade5dd29e6b36f" }, { "authorized_access_point": "Leipzig-Neustadt", @@ -8478,12 +8710,19 @@ "value": "(DE-588)1166988007" } ], + "identifier": "http://d-nb.info/gnd/1166988007", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Neustadt_(Leipzig)&oldid=173318045" ] + }, + { + "noteType": "general", + "label": [ + "Ortsteil von Leipzig seit 1890" + ] } ], "pid": "1166988007", @@ -8504,10 +8743,10 @@ "variant_access_point": [ "Neustadt (Leipzig)" ], - "md5": "635f32495a7a8f570b8e01d3fa1dd739" + "md5": "500f214d461aed0b0dc2deac41cc50be" }, { - "authorized_access_point": "Lubawa", + "authorized_access_point": "Lubawa - Region", "identifiedBy": [ { "source": "GND", @@ -8525,6 +8764,7 @@ "value": "(DE-588)1166098877" } ], + "identifier": "http://d-nb.info/gnd/1166098877", "note": [ { "noteType": "dataSource", @@ -8542,10 +8782,10 @@ "Lo\u0308bau (Westpreu\u00dfen)", "Lo\u0308bau (Westpreu\u00dfen)" ], - "md5": "e7ad0b9f082a8b98de17bcde9fd4a842" + "md5": "59a19eb8721fed20e0debd7e6777ef18" }, { - "authorized_access_point": "Radzyn\u0301 Podlaski", + "authorized_access_point": "Radzyn\u0301 Podlaski - Region", "identifiedBy": [ { "source": "GND", @@ -8563,6 +8803,7 @@ "value": "(DE-588)1165597586" } ], + "identifier": "http://d-nb.info/gnd/1165597586", "pid": "1165597586", "type": "bf:Place", "broader": [ @@ -8574,17 +8815,10 @@ "Radzyn\u0301 Podlaski", "Radzyn\u0301 Podlaski" ], - "md5": "b4e60a50bd835aebd7fcd0f53a37095e" + "md5": "2d037a34295328857efcb78b60d491ba" }, { "authorized_access_point": "Sentiero Rusca", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Wanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -8602,12 +8836,19 @@ "value": "(DE-588)1164527657" } ], + "identifier": "http://d-nb.info/gnd/1164527657", "note": [ { "noteType": "dataSource", "label": [ "Internet - http://www.comune.sondrio.it/site/home/cosa-devo-fare-per/vivere-arte-e-tempo-libero/articolo1725279.html" ] + }, + { + "noteType": "general", + "label": [ + "32 km langer Bergwanderweg vom Veltlin ins Oberengadin" + ] } ], "pid": "1164527657", @@ -8620,7 +8861,7 @@ "authorized_access_point": "Sondrio" } ], - "md5": "66cfad226e7a3edfffa2c95585fd1a15" + "md5": "a2fc166f42e322a4a5dd2d0346789289" }, { "authorized_access_point": "Heringsdorf-Ahlbeck", @@ -8641,12 +8882,19 @@ "value": "(DE-588)116355815X" } ], + "identifier": "http://d-nb.info/gnd/116355815X", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/wiki/Ahlbeck_(Heringsdorf)" ] + }, + { + "noteType": "general", + "label": [ + "Ortsteil von Heringsdorf (1.1.2005-31.12.2005: Dreikaiserba\u0308der) seit 1.1.2006" + ] } ], "pid": "116355815X", @@ -8662,7 +8910,7 @@ "variant_access_point": [ "Ahlbeck (Heringsdorf, Seebad)" ], - "md5": "1ef82d8eed7bcba6642643d49154e861" + "md5": "f4b02bc8cdf3dd9f74f1cb35cf9beeeb" }, { "authorized_access_point": "Dreikaiserba\u0308der-Ahlbeck", @@ -8683,12 +8931,19 @@ "value": "(DE-588)1163558095" } ], + "identifier": "http://d-nb.info/gnd/1163558095", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/wiki/Ahlbeck_(Heringsdorf)" ] + }, + { + "noteType": "general", + "label": [ + "Ortsteil von Dreikaiserba\u0308der seit 1.1.2005, 1.1.2006 in Heringsdorf umbenannt" + ] } ], "pid": "1163558095", @@ -8709,7 +8964,7 @@ "variant_access_point": [ "Ahlbeck (Dreikaiserba\u0308der)" ], - "md5": "80689850a80c788cc503a3ebfd88eed9" + "md5": "46e0fbd154d472af538f3d4eadddd64f" }, { "authorized_access_point": "Dreikaiserba\u0308der-Bansin", @@ -8730,6 +8985,15 @@ "value": "(DE-588)1163419907" } ], + "identifier": "http://d-nb.info/gnd/1163419907", + "note": [ + { + "noteType": "general", + "label": [ + "Ortsteil von Dreikaiserba\u0308der seit 1.1.2005, 1.1.2005 in Ostseebad Heringsdorf umbenannt" + ] + } + ], "pid": "1163419907", "type": "bf:Place", "related": [ @@ -8748,17 +9012,10 @@ "variant_access_point": [ "Bansin (Dreikaiserba\u0308der)" ], - "md5": "c008d2ce886646d8d6171620481a3bc6" + "md5": "936d975d197bbdc60f1e7ea68548fb95" }, { "authorized_access_point": "Flandern-Route", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Radwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -8776,12 +9033,19 @@ "value": "(DE-588)1161830820" } ], + "identifier": "http://d-nb.info/gnd/1161830820", "note": [ { "noteType": "dataSource", "label": [ "Internet - https://www.esterbauer.com/db_detail.php?buecher_code=TDF" ] + }, + { + "noteType": "general", + "label": [ + "Radwanderweg durch den Norden Belgiens" + ] } ], "pid": "1161830820", @@ -8789,17 +9053,10 @@ "variant_access_point": [ "Vlaanderen Fietsroute" ], - "md5": "40f9169b27956bdb15c4d521ef7f15ff" + "md5": "7d559ccc74a9ca2e6dd694d62b501b09" }, { "authorized_access_point": "Schlossparkradrunde im Allga\u0308u", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Radwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -8817,6 +9074,7 @@ "value": "(DE-588)1161625046" } ], + "identifier": "http://d-nb.info/gnd/1161625046", "note": [ { "noteType": "dataSource", @@ -8837,17 +9095,10 @@ "variant_access_point": [ "Allga\u0308uer Schlossparkradrunde" ], - "md5": "b851e3c235cb82965ee68eb6a577f15c" + "md5": "04c776847a256120924d1935d78a1b87" }, { "authorized_access_point": "Paul-Gerhardt-Weg", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fernwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -8865,12 +9116,19 @@ "value": "(DE-588)1156658128" } ], + "identifier": "http://d-nb.info/gnd/1156658128", "note": [ { "noteType": "dataSource", "label": [ "Internet: - https://www.trescher-verlag.de/reisefuehrer/deutschland/paul-gerhardt-weg.html" ] + }, + { + "noteType": "general", + "label": [ + "140 km langer Fernwanderweg von Berlin nach Lu\u0308bben" + ] } ], "pid": "1156658128", @@ -8886,17 +9144,10 @@ "variant_access_point": [ "Paul-Gerhardt-Wanderweg" ], - "md5": "4269169561a74fe1a8b5706dec50494e" + "md5": "883153b91e4962a4034bb95063372e05" }, { "authorized_access_point": "Industriestrasse 9 (Luzern)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Haus" - } - ], "identifiedBy": [ { "source": "GND", @@ -8914,6 +9165,7 @@ "value": "(DE-588)1156051029" } ], + "identifier": "http://d-nb.info/gnd/1156051029", "note": [ { "noteType": "general", @@ -8929,7 +9181,7 @@ "authorized_access_point": "Luzern" } ], - "md5": "7161c3af99cd8d02a63769743ade428c" + "md5": "7f775e6e9777fdc61dd4eaf524ccd4a5" }, { "authorized_access_point": "Hohenhameln-Equord", @@ -8950,6 +9202,15 @@ "value": "(DE-588)1148115242" } ], + "identifier": "http://d-nb.info/gnd/1148115242", + "note": [ + { + "noteType": "general", + "label": [ + "Equord ist seit 1.3.1974 ein Ortsteil der Gemeinde Hohenhameln im Landkreis Peine in Niedersachsen." + ] + } + ], "pid": "1148115242", "type": "bf:Place", "related": [ @@ -8960,17 +9221,10 @@ "authorized_access_point": "Equord" } ], - "md5": "f6d67c1de1aab483c1bf84bddd5476b6" + "md5": "088a4ff160352b6a5c529611bc404443" }, { "authorized_access_point": "RheinTerrassenWeg", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Wanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -8988,6 +9242,7 @@ "value": "(DE-588)1147654123" } ], + "identifier": "http://d-nb.info/gnd/1147654123", "note": [ { "noteType": "dataSource", @@ -8995,6 +9250,12 @@ "Internet - https://www.rheinhessen.de/rheinterrassenweg", "Wikipedia - https://de.wikipedia.org/wiki/Rheinterrassenweg" ] + }, + { + "noteType": "general", + "label": [ + "Circa 60 km langer Wanderweg von Worms nach Mainz" + ] } ], "pid": "1147654123", @@ -9011,10 +9272,10 @@ "Rheinterrassenweg", "Rhein-Terrassen-Weg" ], - "md5": "df50ecd0e121010fcbf43b99f6aff71a" + "md5": "28969f06413ee86f4afbdc0a0b4b39d1" }, { - "authorized_access_point": "Kurpie", + "authorized_access_point": "Kurpie - Region", "identifiedBy": [ { "source": "GND", @@ -9032,12 +9293,19 @@ "value": "(DE-588)1143714245" } ], + "identifier": "http://d-nb.info/gnd/1143714245", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Kurpie&oldid=215616715" ] + }, + { + "noteType": "general", + "label": [ + "Kurpie ist sowohl die Bezeichnung fu\u0308r die Region als auch fu\u0308r die dortige Bevo\u0308lkerung, die Region erstreckt sich in den heutigen Woiwodschaften Masowien, Podlasien und Ermland-Masuren" + ] } ], "pid": "1143714245", @@ -9045,17 +9313,10 @@ "variant_access_point": [ "Kurpengau" ], - "md5": "f00b7bb6142c74cefa2e98e408651242" + "md5": "ccb837dc264c9cfda9898e6705bacbf9" }, { "authorized_access_point": "Continental Divide Trail", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fernwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -9073,12 +9334,19 @@ "value": "(DE-588)1143154991" } ], + "identifier": "http://d-nb.info/gnd/1143154991", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/wiki/Continental_Divide_Trail" ] + }, + { + "noteType": "general", + "label": [ + "rund 5.000 Kilometer langer Fernwanderweg entlang der nordamerikanischen kontinentalen Wasserscheide von der mexikanischen bis zur kanadischen Grenze." + ] } ], "pid": "1143154991", @@ -9086,22 +9354,10 @@ "variant_access_point": [ "CDT (Fernwanderweg)" ], - "md5": "e1be8232aa6a34cc034d5714444e4af0" + "md5": "88d88c106262d578cefa16f2a06420be" }, { "authorized_access_point": "Die Wiese lacht (Mu\u0308nster (Westf))", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Installation" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Metallkonstruktion" - } - ], "identifiedBy": [ { "source": "GND", @@ -9119,6 +9375,15 @@ "value": "(DE-588)1142135993" } ], + "identifier": "http://d-nb.info/gnd/1142135993", + "note": [ + { + "noteType": "general", + "label": [ + "Beitrag zur Skulpturenausstellung \"Skulptur-Projekte Mu\u0308nster 1987\"" + ] + } + ], "pid": "1142135993", "type": "bf:Place", "broader": [ @@ -9140,17 +9405,10 @@ "The meadow laughs or the face in the wall (Mu\u0308nster (Westf))", "Tine lawn laughs or the face in the wall (Mu\u0308nster (Westf))" ], - "md5": "9ba219d42bd0250c7e6c5106eabd95db" + "md5": "2cf2c8dfdce54a5e4edf7b581728f760" }, { "authorized_access_point": "Weitwanderweg Nibelungengau", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fernwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -9168,12 +9426,19 @@ "value": "(DE-588)1139463888" } ], + "identifier": "http://d-nb.info/gnd/1139463888", "note": [ { "noteType": "dataSource", "label": [ "Internet - https://www.donau.com/de/donau-niederoesterreich/infos-service/presse-b2b/presse/weitwanderweg-nibelungengau-wandern-am-fluss/b4fcca43e95b082793e09cc66f72d118/?tx_news_pi1%5Bcontroller%5D=News&tx_news_pi1%5Baction%5D=detail" ] + }, + { + "noteType": "general", + "label": [ + "110 km langer Wanderweg beidseits der Donau in Niedero\u0308stereich zwischen Sankt Nikola- Sarmingstein und Emmersdorf an der Donau" + ] } ], "pid": "1139463888", @@ -9186,17 +9451,10 @@ "authorized_access_point": "Emmersdorf an der Donau" } ], - "md5": "23c5b2ab45260986a68a660da8f832af" + "md5": "dcc147e4a82943e2d9de3413eacf50e5" }, { "authorized_access_point": "3-Flu\u0308sse-Tour", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Radwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -9214,12 +9472,19 @@ "value": "(DE-588)113914071X" } ], + "identifier": "http://d-nb.info/gnd/113914071X", "note": [ { "noteType": "dataSource", "label": [ "Internet - http://www.drei-fluesse-tour.de/" ] + }, + { + "noteType": "general", + "label": [ + "300 km langen Rundkurs entlang der drei Flu\u0308sse Rhein, Erft und Ahr" + ] } ], "pid": "113914071X", @@ -9229,17 +9494,10 @@ "Drei-Flu\u0308sse-Radweg", "Drei-Flu\u0308sse-Radwanderweg" ], - "md5": "ba6fe76846367a6b2fa849411f5bf694" + "md5": "6b38feee5b5dc037793141812354a203" }, { "authorized_access_point": "Hansaweg", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fernwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -9257,12 +9515,19 @@ "value": "(DE-588)113698612X" } ], + "identifier": "http://d-nb.info/gnd/113698612X", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/wiki/Hansaweg" ] + }, + { + "noteType": "general", + "label": [ + "72 km langer Fernwanderweg zwischen Herford und Hameln. Besteht ungefa\u0308hr seit 1936." + ] } ], "pid": "113698612X", @@ -9280,7 +9545,7 @@ "Hansawanderweg", "Hansa Wanderweg" ], - "md5": "06c4bbc01e8205a54d1ca7d2d3a11e2d" + "md5": "a2ed8b9e7b14883433550e0d32bb5183" }, { "authorized_access_point": "Naarn- Au an der Donau", @@ -9301,6 +9566,7 @@ "value": "(DE-588)1136731237" } ], + "identifier": "http://d-nb.info/gnd/1136731237", "pid": "1136731237", "type": "bf:Place", "related": [ @@ -9314,10 +9580,10 @@ "variant_access_point": [ "Naarn im Machlande- Au" ], - "md5": "c1fc8dc12a59bcf274b33bc069b1d92a" + "md5": "a3a8ce45f1156887195b01bbee213222" }, { - "authorized_access_point": "Schengen", + "authorized_access_point": "Schengen - Region", "identifiedBy": [ { "source": "GND", @@ -9335,19 +9601,13 @@ "value": "(DE-588)1136092293" } ], + "identifier": "http://d-nb.info/gnd/1136092293", "pid": "1136092293", "type": "bf:Place", - "md5": "13a3c4169707345ec1dbf828b096fcc1" + "md5": "6960a792b95077247072cdb9e10c4788" }, { "authorized_access_point": "Obere Angertal (Niederbergisches Land)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Wu\u0308stung" - } - ], "identifiedBy": [ { "source": "GND", @@ -9365,12 +9625,19 @@ "value": "(DE-588)1135805342" } ], + "identifier": "http://d-nb.info/gnd/1135805342", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/wiki/Oberes_Angertal" ] + }, + { + "noteType": "general", + "label": [ + "Landschaft in Nordrhein-Westfalen zwischen Velbert und Wu\u0308lfrath. Sie wurde in den 1940er-Jahren dem Kalkabbau geopfert, zahlreiche Ho\u0308fe und Kotten wurden devastiert" + ] } ], "pid": "1135805342", @@ -9387,7 +9654,7 @@ "Obere Angerbachtal", "Oberes Angertal" ], - "md5": "c7f1cc2c8431c5eee91f3224dc3a89bf" + "md5": "ed33c2ed6f0676792591581f3c9c19d8" }, { "authorized_access_point": "Jas\u030ciu\u0304nai", @@ -9408,27 +9675,27 @@ "value": "(DE-588)1135798842" } ], + "identifier": "http://d-nb.info/gnd/1135798842", "note": [ { "noteType": "dataSource", "label": [ "GeoNames - http://www.geonames.org/598887/jasiunai.html" ] + }, + { + "noteType": "general", + "label": [ + "Stadt in Litauen" + ] } ], "pid": "1135798842", "type": "bf:Place", - "md5": "a6edd4042118eea5fa1057986a8aafbd" + "md5": "4eac57196664df0da06e76cbb51d2982" }, { "authorized_access_point": "Martinskirche (Isingen)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kirchenbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -9446,6 +9713,15 @@ "value": "(DE-588)1133293247" } ], + "identifier": "http://d-nb.info/gnd/1133293247", + "note": [ + { + "noteType": "general", + "label": [ + "Ev. Kirche, Turm im unteren Bereich romanisch, gotisches Schiff mit polygonalem Chor, 1947/48 restauriert" + ] + } + ], "pid": "1133293247", "type": "bf:Place", "broader": [ @@ -9453,17 +9729,10 @@ "authorized_access_point": "Isingen" } ], - "md5": "4e28ec05f50469b39995518acaf97a69" + "md5": "76338108b7f0b32a075867b18371e793" }, { "authorized_access_point": "Ignatiusweg", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Wallfahrtsweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -9481,12 +9750,19 @@ "value": "(DE-588)1132227771" } ], + "identifier": "http://d-nb.info/gnd/1132227771", "note": [ { "noteType": "dataSource", "label": [ "Internet - http://caminoignaciano.org/de/introduccion" ] + }, + { + "noteType": "general", + "label": [ + "Pilgerweg vom Baskenland nach Katalonien, es ist die Strecke die Ignatius von Loy 1522 gegangen ist" + ] } ], "pid": "1132227771", @@ -9504,7 +9780,7 @@ "Camino Ignaciano", "Inaziotar Bidea" ], - "md5": "635db23f5a6c7a4f718f6bc53920b092" + "md5": "5c21508772becfac7de258dd4e0f40fd" }, { "authorized_access_point": "Gampenpass-Gebiet", @@ -9525,15 +9801,16 @@ "value": "(DE-588)1124279156" } ], + "identifier": "http://d-nb.info/gnd/1124279156", "pid": "1124279156", "type": "bf:Place", "variant_access_point": [ "Gampenpass" ], - "md5": "7ffb3d1cb0c31af2d3c8b0353c2a8838" + "md5": "d0a301bda86e9a6a7d379ee3163d50f6" }, { - "authorized_access_point": "Simbabwe", + "authorized_access_point": "Simbabwe - Nordwest", "identifiedBy": [ { "source": "GND", @@ -9551,6 +9828,7 @@ "value": "(DE-588)1122747160" } ], + "identifier": "http://d-nb.info/gnd/1122747160", "pid": "1122747160", "type": "bf:Place", "broader": [ @@ -9561,7 +9839,7 @@ "variant_access_point": [ "Nordwestsimbabwe" ], - "md5": "29335a99b04492cb14957f821ec8bf88" + "md5": "ae1051872eb539bdd88365fd2f505536" }, { "authorized_access_point": "Myanmar (Nordwest)", @@ -9582,6 +9860,7 @@ "value": "(DE-588)1122668171" } ], + "identifier": "http://d-nb.info/gnd/1122668171", "pid": "1122668171", "type": "bf:Place", "broader": [ @@ -9593,22 +9872,10 @@ "Birma", "Nordwestliches Birma" ], - "md5": "912dd55e2900579ba2f0b67182fb5604" + "md5": "ea8cb2986d48e3725a24e17b44f15419" }, { "authorized_access_point": "Sakdrissi", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Archa\u0308ologische Sta\u0308tte" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Bergbaugebiet" - } - ], "identifiedBy": [ { "source": "GND", @@ -9626,12 +9893,19 @@ "value": "(DE-588)112132925X" } ], + "identifier": "http://d-nb.info/gnd/112132925X", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/wiki/Sakdrissi" ] + }, + { + "noteType": "general", + "label": [ + "fru\u0308hbronzezeitlichen Bergbaugebiet in Georgien, das auch das a\u0308lteste bekannte Goldbergwerk der Welt barg." + ] } ], "pid": "112132925X", @@ -9639,17 +9913,10 @@ "variant_access_point": [ "Sakdrisi" ], - "md5": "942877fcae630dccf08a947a9c4d6c77" + "md5": "6bc7fb995254e574006842133a87d2b4" }, { "authorized_access_point": "Himmelsstu\u0308rmer Route", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fernwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -9667,12 +9934,19 @@ "value": "(DE-588)1107605113" } ], + "identifier": "http://d-nb.info/gnd/1107605113", "note": [ { "noteType": "dataSource", "label": [ "Internet - http://www.allgaeu.de/himmelsstuermer-route" ] + }, + { + "noteType": "general", + "label": [ + "ca. 340 km langer Bergwanderweg im Allga\u0308u, Teil der Wandertrilogie Allga\u0308u" + ] } ], "pid": "1107605113", @@ -9693,22 +9967,10 @@ "variant_access_point": [ "Himmelsstu\u0308rmer-Route" ], - "md5": "4f07c8343a61394ce8040dab1bd5e277" + "md5": "9a375095892957ebddb6d58c5904d99d" }, { "authorized_access_point": "Wasserla\u0308ufer Route", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Rundwanderweg" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fernwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -9726,12 +9988,19 @@ "value": "(DE-588)1105589110" } ], + "identifier": "http://d-nb.info/gnd/1105589110", "note": [ { "noteType": "dataSource", "label": [ "Internet - http://www.allgaeu.de/wanderrouten?referralTopic=wandern" ] + }, + { + "noteType": "general", + "label": [ + "ca. 390 km langer Rundwanderweg im Allga\u0308u, Teil der Wandertrilogie Allga\u0308u" + ] } ], "pid": "1105589110", @@ -9744,17 +10013,10 @@ "variant_access_point": [ "Wasserla\u0308ufer-Route" ], - "md5": "ffca4da314ab08b39ea845b7cb811bdf" + "md5": "cf7620392e0c80d572cbce1e27c5d80b" }, { "authorized_access_point": "Yimeng Shan", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Gebirge" - } - ], "identifiedBy": [ { "source": "GND", @@ -9772,12 +10034,19 @@ "value": "(DE-588)1101612258" } ], + "identifier": "http://d-nb.info/gnd/1101612258", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia: - https://de.wikipedia.org/wiki/Yimeng_Shan" ] + }, + { + "noteType": "general", + "label": [ + "Gebirge in der Provinz Shandong" + ] } ], "pid": "1101612258", @@ -9787,17 +10056,10 @@ "Yimeng", "Yimeng-Bergland" ], - "md5": "7014efdc10d8e84efd6e8a09cb103a91" + "md5": "15f6635ab58ffe541d746086b610a926" }, { "authorized_access_point": "Nahe-Radweg", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Radwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -9815,12 +10077,19 @@ "value": "(DE-588)1100323325" } ], + "identifier": "http://d-nb.info/gnd/1100323325", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/wiki/Nahe-Radweg" ] + }, + { + "noteType": "general", + "label": [ + "Ca. 128 km langer Flu\u00dfradweg entlang der Nahe" + ] } ], "pid": "1100323325", @@ -9833,17 +10102,10 @@ "authorized_access_point": "Bingen am Rhein" } ], - "md5": "162fa01d4b584fade40ff5827d70bd18" + "md5": "46976d0aa6b926d0c2b64a6677e63f0d" }, { "authorized_access_point": "Enns-Radweg", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Radwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -9861,12 +10123,19 @@ "value": "(DE-588)1100201831" } ], + "identifier": "http://d-nb.info/gnd/1100201831", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/wiki/Ennsradweg" ] + }, + { + "noteType": "general", + "label": [ + "ca. 260 km langer Radwanderweg entlang der Enns" + ] } ], "pid": "1100201831", @@ -9882,22 +10151,10 @@ "variant_access_point": [ "Ennsradweg" ], - "md5": "08b6d7bc801b5a7e81f1640a2fce86d3" + "md5": "52acd2cab9bcda65ebdbbc3b5d6206bd" }, { "authorized_access_point": "Wandertrilogie Allga\u0308u", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fernwanderweg" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Rundwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -9915,12 +10172,19 @@ "value": "(DE-588)1099133092" } ], + "identifier": "http://d-nb.info/gnd/1099133092", "note": [ { "noteType": "dataSource", "label": [ "Internet - http://www.allgaeu.de/wanderrouten?referralTopic=wandern" ] + }, + { + "noteType": "general", + "label": [ + "Fernwanderweg aus 3 Routen und 53 Etappen bestehend ( Wiesenga\u0308nger, Wasserla\u0308ufer, Himmelsstu\u0308rmer)" + ] } ], "pid": "1099133092", @@ -9928,22 +10192,10 @@ "variant_access_point": [ "Wandertrilogie-Allga\u0308u" ], - "md5": "8739a066649a05f4879019b55ab980c5" + "md5": "2b98c7029b32808a237384d31bbdfccd" }, { "authorized_access_point": "Wiesenga\u0308nger Route", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Rundwanderweg" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fernwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -9961,12 +10213,19 @@ "value": "(DE-588)1099132061" } ], + "identifier": "http://d-nb.info/gnd/1099132061", "note": [ { "noteType": "dataSource", "label": [ "Internet - http://www.allgaeu.de/wiesengaenger-touren?referralTopic=wandern" ] + }, + { + "noteType": "general", + "label": [ + "ca. 400km langer Rundwanderweg im Allga\u0308u, Teil der Wandertrilogie Allga\u0308u" + ] } ], "pid": "1099132061", @@ -9979,7 +10238,7 @@ "variant_access_point": [ "Wiesenga\u0308nger-Route" ], - "md5": "cbd4b918eb3690c311cf83e0b790ab37" + "md5": "f8c9cba79b32805a2bb779548a1a9aac" }, { "authorized_access_point": "Leipzig-Gundorf", @@ -10000,6 +10259,15 @@ "value": "(DE-588)1097213617" } ], + "identifier": "http://d-nb.info/gnd/1097213617", + "note": [ + { + "noteType": "general", + "label": [ + "Dorf, Landgemeinde mit Gut Neuscherbitz; 1934 nach Bo\u0308hlitz-Ehrenberg eingemeindet - geho\u0308rte zu den Abteido\u0308rfern, seit 1999 Teil von Leipzig" + ] + } + ], "pid": "1097213617", "type": "bf:Place", "related": [ @@ -10010,7 +10278,7 @@ "variant_access_point": [ "Gundorf (Leipzig)" ], - "md5": "b56db1509c76b7e1a3073e2b926e4970" + "md5": "3c8dd74b4fa508b71c10a25de4d7ec26" }, { "authorized_access_point": "Gomo-Gebiet (Nias)", @@ -10031,12 +10299,19 @@ "value": "(DE-588)1095576461" } ], + "identifier": "http://d-nb.info/gnd/1095576461", "note": [ { "noteType": "dataSource", "label": [ "Google Maps - https://www.google.de/maps/place/Gomo,+South+Nias+Regency,+North+Sumatra,+Indonesien/@0.8834854,97.7321029,12z/data=!3m1!4b1!4m2!3m1!1s0x3026206005f1b8fb:0x4039d80b220dba0" ] + }, + { + "noteType": "general", + "label": [ + "Gebiet im Su\u0308dnias" + ] } ], "pid": "1095576461", @@ -10049,7 +10324,7 @@ "variant_access_point": [ "Gomo-Gebiet (Nias)" ], - "md5": "e356e91c32f3dcc6bdb09e0fa0f9680a" + "md5": "f2ebfcea1d38605ae694dbb1f7a02654" }, { "authorized_access_point": "Leitmeritz", @@ -10070,6 +10345,15 @@ "value": "(DE-588)1085229823" } ], + "identifier": "http://d-nb.info/gnd/1085229823", + "note": [ + { + "noteType": "general", + "label": [ + "In der Sacherschlie\u00dfung nicht zu verwenden; fu\u0308r die Sacherschlie\u00dfung wird bei Splits nur die neueste/ju\u0308ngste Namensform verwendet." + ] + } + ], "pid": "1085229823", "type": "bf:Place", "broader": [ @@ -10083,23 +10367,11 @@ "Statt Leu\u0308tmaritz", "Litome\u030cr\u030cice (-XX.05.1945)" ], - "md5": "815832e2d7f7c2e9d323554d4e60c8db" + "md5": "0a140bef1db17d17b5bf10a113c0ab53" }, { "authorized_access_point": "Fernsehturm Stuttgart (Stuttgart)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fernsehturm" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Aussichtsturm" - } - ], - "identifiedBy": [ + "identifiedBy": [ { "source": "GND", "type": "uri", @@ -10116,6 +10388,7 @@ "value": "(DE-588)1082797251" } ], + "identifier": "http://d-nb.info/gnd/1082797251", "note": [ { "noteType": "dataSource", @@ -10139,17 +10412,10 @@ "Stuttgarter Fernsehturm (Stuttgart)", "Stuttgarter Fernsehturm (Stuttgart-Degerloch)" ], - "md5": "4379412f22a4dc675ba20359abd42993" + "md5": "352bece5fd6372b6479dd8133d31e68a" }, { "authorized_access_point": "Idyllische Stra\u00dfe", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fremdenverkehrsstra\u00dfe" - } - ], "identifiedBy": [ { "source": "GND", @@ -10167,12 +10433,19 @@ "value": "(DE-588)1082520101" } ], + "identifier": "http://d-nb.info/gnd/1082520101", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/wiki/Idyllische_Stra%C3%9Fe" ] + }, + { + "noteType": "general", + "label": [ + "seit 1967 bestehende, 130 km lange Ferienstra\u00dfe im Naturpark Schwa\u0308bisch-Fra\u0308nkischer Wald in Baden Wu\u0308rttemberg. Rundkurs von Welzheim u\u0308ber Gaildorf und Wu\u0308stenrot nach Welzheim." + ] } ], "pid": "1082520101", @@ -10182,17 +10455,10 @@ "authorized_access_point": "Welzheim" } ], - "md5": "50e857a4f051f6087bf31c0d6d19e317" + "md5": "bd93f51d7d336de63e8e02ef2c442342" }, { "authorized_access_point": "Weg der Helden", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fernwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -10210,12 +10476,19 @@ "value": "(DE-588)1082153850" } ], + "identifier": "http://d-nb.info/gnd/1082153850", "note": [ { "noteType": "dataSource", "label": [ "Internet - https://www.pizbube.ch/produkt/BC1E395D0E02F0325F3E329DF5C9EB51#.VrStslJRG70" ] + }, + { + "noteType": "general", + "label": [ + "760 km langes slowakisches Teilstu\u0308ck des Europa\u0308ischen Fernwanderweg 8" + ] } ], "pid": "1082153850", @@ -10233,17 +10506,10 @@ "authorized_access_point": "Duklapass" } ], - "md5": "8f5b9bb73d952314e7f01653e199c681" + "md5": "73d793df7cd504068f75cd58c7bdd16d" }, { "authorized_access_point": "SalzAlpenSteig", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fernwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -10261,12 +10527,19 @@ "value": "(DE-588)1082012033" } ], + "identifier": "http://d-nb.info/gnd/1082012033", "note": [ { "noteType": "dataSource", "label": [ "Internet - http://www.salzalpensteig.com/salzalpensteig.html" ] + }, + { + "noteType": "general", + "label": [ + "2015 ero\u0308ffneter Weitwanderweg (230km), von Chiemsee und Chiemgau, u\u0308ber Bad Reichenhall, Berchtesgaden und den Salzburger Tennengau bis in die Welterberegion Dachstein-Salzkammergut reicht der Premiumwanderweg." + ] } ], "pid": "1082012033", @@ -10283,22 +10556,10 @@ "Salzalpensteig", "Salzalpen-Steig" ], - "md5": "62017e1d04175f673f46e78614aceb69" + "md5": "77f22cd7f24ca8bfc8c0ec2f7e9acfbf" }, { "authorized_access_point": "Ranji Stadium (Kalkutta)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stadion" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kricketplatz" - } - ], "identifiedBy": [ { "source": "GND", @@ -10316,6 +10577,15 @@ "value": "(DE-588)1082001430" } ], + "identifier": "http://d-nb.info/gnd/1082001430", + "note": [ + { + "noteType": "general", + "label": [ + "A\u0308ltestes Kricket-Stadion Indiens" + ] + } + ], "pid": "1082001430", "type": "bf:Place", "broader": [ @@ -10328,22 +10598,10 @@ "Ran\u0303ji St\u0323ed\u0323iy\u0307a\u0304ma (Kalkutta)", "I\u0304d\u0323ena Ga\u0304rd\u0323ensa (Kalkutta)" ], - "md5": "2c045522ceba1f3215f55346bf2980e0" + "md5": "ea2212b21459db8375443b5af71d241d" }, { "authorized_access_point": "Burgruine Tellenburg (Frutigen)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Burgruine" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Armenhaus" - } - ], "identifiedBy": [ { "source": "GND", @@ -10361,6 +10619,15 @@ "value": "(DE-588)1081845031" } ], + "identifier": "http://d-nb.info/gnd/1081845031", + "note": [ + { + "noteType": "general", + "label": [ + "Armenanstalt seit 1798; abgebrannt 1885" + ] + } + ], "pid": "1081845031", "type": "bf:Place", "broader": [ @@ -10371,22 +10638,10 @@ "variant_access_point": [ "Ehemalige Burg Tellenburg (Frutigen)" ], - "md5": "89834efd07f15f64d33cdd5f06bd5da0" + "md5": "d3368ccbab237171328cdd4404ebb233" }, { "authorized_access_point": "Schloss Erlach (Erlach, Kanton Bern)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Schloss" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Erziehungsheim" - } - ], "identifiedBy": [ { "source": "GND", @@ -10404,6 +10659,15 @@ "value": "(DE-588)1081844973" } ], + "identifier": "http://d-nb.info/gnd/1081844973", + "note": [ + { + "noteType": "general", + "label": [ + "Burg erbaut im 12. Jh.; ab 1874 Schulheim" + ] + } + ], "pid": "1081844973", "type": "bf:Place", "broader": [ @@ -10415,17 +10679,10 @@ "Schulheim Schloss Erlach (Erlach, Kanton Bern)", "Burg Erlach (Erlach, Kanton Bern)" ], - "md5": "dca2cc61ec3a16cbfde88797634ab86e" + "md5": "db1082160663b3eb55f5f1d821b7e707" }, { "authorized_access_point": "Burgruine Blauenstein (Kleinlu\u0308tzel)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Burgruine" - } - ], "identifiedBy": [ { "source": "GND", @@ -10443,6 +10700,15 @@ "value": "(DE-588)1081842474" } ], + "identifier": "http://d-nb.info/gnd/1081842474", + "note": [ + { + "noteType": "general", + "label": [ + "Burg vermutlich im 13. Jh. durch die Herren von Biederthal gegru\u0308ndet" + ] + } + ], "pid": "1081842474", "type": "bf:Place", "broader": [ @@ -10453,17 +10719,10 @@ "variant_access_point": [ "Burg Blauenstein (Kleinlu\u0308tzel)" ], - "md5": "8bb0ac13e2523a69cb118b4881edf931" + "md5": "3504488c1dd918302e43732f4696ef2b" }, { "authorized_access_point": "Schloss Toffen (Toffen)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Schloss" - } - ], "identifiedBy": [ { "source": "GND", @@ -10481,6 +10740,15 @@ "value": "(DE-588)1081839082" } ], + "identifier": "http://d-nb.info/gnd/1081839082", + "note": [ + { + "noteType": "general", + "label": [ + "Erstellt im 13. Jh. als Burg, schrittweiser Umbau in eine Schlossanlage" + ] + } + ], "pid": "1081839082", "type": "bf:Place", "broader": [ @@ -10491,17 +10759,10 @@ "variant_access_point": [ "Burg Toffen (Toffen)" ], - "md5": "cf9872085a5e5124caefce0f62ee14d9" + "md5": "ed35bb860429bd84c1e672bb0c99ed0d" }, { "authorized_access_point": "Schloss Belp (Belp)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Schloss" - } - ], "identifiedBy": [ { "source": "GND", @@ -10519,6 +10780,15 @@ "value": "(DE-588)1081838779" } ], + "identifier": "http://d-nb.info/gnd/1081838779", + "note": [ + { + "noteType": "general", + "label": [ + "Herrschaftssitz bis 1798" + ] + } + ], "pid": "1081838779", "type": "bf:Place", "broader": [ @@ -10526,17 +10796,10 @@ "authorized_access_point": "Belp" } ], - "md5": "b3665957472256c20949614dfc7167a7" + "md5": "66b4e4dbb3bd3b148dfa33ad74643835" }, { "authorized_access_point": "Schloss Wyl (Schlosswil)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Schloss" - } - ], "identifiedBy": [ { "source": "GND", @@ -10554,12 +10817,19 @@ "value": "(DE-588)1081838655" } ], + "identifier": "http://d-nb.info/gnd/1081838655", "note": [ { "noteType": "dataSource", "label": [ "Schloss Wyl - http://www.schloss-wyl.ch/weblica/index.html" ] + }, + { + "noteType": "general", + "label": [ + "Nach dem Brand 1546 Ausbau der mittelalterlichen Burg zum Schloss" + ] } ], "pid": "1081838655", @@ -10574,27 +10844,10 @@ "Burg Wyl (Schlosswil)", "Burg Wil (Schlosswil)" ], - "md5": "9738c183d86de8f642ed1952dc25e6a6" + "md5": "e3dea94ccca9fbd2fcfa254dc5eb1c6f" }, { "authorized_access_point": "Schloss Hindelbank (Hindelbank)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Schloss" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Armenhaus" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Gefa\u0308ngnisbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -10612,6 +10865,15 @@ "value": "(DE-588)1081838507" } ], + "identifier": "http://d-nb.info/gnd/1081838507", + "note": [ + { + "noteType": "general", + "label": [ + "Ab 1866 Armenanstalt; seit 1892 Frauen-Justizvollzugsanstalt" + ] + } + ], "pid": "1081838507", "type": "bf:Place", "broader": [ @@ -10623,22 +10885,10 @@ "Geba\u0308ude der Anstalten Hindelbank (Hindelbank)", "Geba\u0308ude der Zwangsanstalt fu\u0308r Weiber (Hindelbank)" ], - "md5": "9d426d00d439348f45e88833f9c94b7d" + "md5": "69181489cb49a3b87f1c9e1db161621b" }, { "authorized_access_point": "Schloss Trachselwald", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Schloss" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Erziehungsheim" - } - ], "identifiedBy": [ { "source": "GND", @@ -10656,6 +10906,15 @@ "value": "(DE-588)1081838396" } ], + "identifier": "http://d-nb.info/gnd/1081838396", + "note": [ + { + "noteType": "general", + "label": [ + "Seit 1131 nachgewiesen; 1835-1928 Erziehungsanstalt" + ] + } + ], "pid": "1081838396", "type": "bf:Place", "broader": [ @@ -10663,37 +10922,10 @@ "authorized_access_point": "Trachselwald" } ], - "md5": "42b4d675e9bb7c56c46c1dcceb66f7d6" + "md5": "36ba312da53f879e10cc19313b3537af" }, { "authorized_access_point": "Schloss Thorberg (Krauchthal)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Burg" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Schloss" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Gefa\u0308ngnisbau" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kartause" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Armenhaus" - } - ], "identifiedBy": [ { "source": "GND", @@ -10711,6 +10943,15 @@ "value": "(DE-588)1081838310" } ], + "identifier": "http://d-nb.info/gnd/1081838310", + "note": [ + { + "noteType": "general", + "label": [ + "1175 erstmals erwa\u0308hnt; Bauten aus mehreren Jahrhunderten u\u0308ber mittelalterlichen Burg- und Klosterfundamenten; seit 1893 ausschliesslich Gefa\u0308ngnis" + ] + } + ], "pid": "1081838310", "type": "bf:Place", "broader": [ @@ -10718,22 +10959,10 @@ "authorized_access_point": "Krauchthal" } ], - "md5": "1da5533e77dd19b863ecb608d1daf4ff" + "md5": "849f665303b677b91d932abce95d5755" }, { "authorized_access_point": "Schloss Utzigen (Utzigen)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Schloss" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Pflegeheim" - } - ], "identifiedBy": [ { "source": "GND", @@ -10751,6 +10980,15 @@ "value": "(DE-588)1081838167" } ], + "identifier": "http://d-nb.info/gnd/1081838167", + "note": [ + { + "noteType": "general", + "label": [ + "Bereits 1175 erwa\u0308hnt" + ] + } + ], "pid": "1081838167", "type": "bf:Place", "broader": [ @@ -10758,17 +10996,10 @@ "authorized_access_point": "Utzigen" } ], - "md5": "8908c407fe8e9721dcc9455d9d9d0771" + "md5": "93d780a2ad83441bf25180c9027ffd09" }, { "authorized_access_point": "Schloss Aarwangen (Aarwangen)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Schloss" - } - ], "identifiedBy": [ { "source": "GND", @@ -10786,6 +11017,7 @@ "value": "(DE-588)1081838051" } ], + "identifier": "http://d-nb.info/gnd/1081838051", "pid": "1081838051", "type": "bf:Place", "broader": [ @@ -10793,22 +11025,10 @@ "authorized_access_point": "Aarwangen" } ], - "md5": "140433275d87a74d9a17371ce5ad3556" + "md5": "da91a2c593bdf3ca31bd9da727bc7cff" }, { "authorized_access_point": "Norbury Park", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Herrenhaus" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Park" - } - ], "identifiedBy": [ { "source": "GND", @@ -10826,12 +11046,19 @@ "value": "(DE-588)1081330236" } ], + "identifier": "http://d-nb.info/gnd/1081330236", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://en.wikipedia.org/wiki/Norbury_Park" ] + }, + { + "noteType": "general", + "label": [ + "Herrenhaus und Park in der Na\u0308he von Leatherhead" + ] } ], "pid": "1081330236", @@ -10847,10 +11074,10 @@ "variant_access_point": [ "Norbury Park (Leatherhead)" ], - "md5": "5e5649cc36bb9cf8f70ff3f8a0337ee2" + "md5": "c46f493c58c8da8af9b329276dbad4f6" }, { - "authorized_access_point": "Kurtschau", + "authorized_access_point": "Kurtschau - Region", "identifiedBy": [ { "source": "GND", @@ -10868,12 +11095,13 @@ "value": "(DE-588)1081212918" } ], + "identifier": "http://d-nb.info/gnd/1081212918", "pid": "1081212918", "type": "bf:Place", - "md5": "8ea00305f4c2274a81783a140566ea50" + "md5": "45ced5b4652931fcd8680bf6b1d2c572" }, { - "authorized_access_point": "Mockern", + "authorized_access_point": "Mockern - Region", "identifiedBy": [ { "source": "GND", @@ -10891,19 +11119,13 @@ "value": "(DE-588)1081097930" } ], + "identifier": "http://d-nb.info/gnd/1081097930", "pid": "1081097930", "type": "bf:Place", - "md5": "9da4785023d0b58f3df62c8e1b1b8fcc" + "md5": "adf27ae8bc648c3739a4a1b2c7d6ef91" }, { "authorized_access_point": "Pyramid Harbor", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Bucht" - } - ], "identifiedBy": [ { "source": "GND", @@ -10921,6 +11143,15 @@ "value": "(DE-588)1079692916" } ], + "identifier": "http://d-nb.info/gnd/1079692916", + "note": [ + { + "noteType": "general", + "label": [ + "Bucht in der Chilkat Inlet, Alaska" + ] + } + ], "pid": "1079692916", "type": "bf:Place", "broader": [ @@ -10928,17 +11159,10 @@ "authorized_access_point": "Alaska" } ], - "md5": "42d9f440bf9fb2cb31f8556be6ec60ce" + "md5": "cc31e766bec9e7ecae51df09efc3579f" }, { "authorized_access_point": "Laurentiuskirche (Schmitten, Hochtaunuskreis)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kirchenbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -10956,6 +11180,7 @@ "value": "(DE-588)1079568352" } ], + "identifier": "http://d-nb.info/gnd/1079568352", "note": [ { "noteType": "dataSource", @@ -10982,17 +11207,10 @@ "Evangelische Pfarrkirche Sankt Laurentius (Schmitten, Hochtaunuskreis)", "Ev. Pfarrkirche St. Laurentius (Schmitten, Hochtaunuskreis)" ], - "md5": "3065477d854243d928d298357ec42a49" + "md5": "16f5494aa56bf3b19161664f7ca7a2f5" }, { "authorized_access_point": "Alter Friedhof an Oberhofen (Go\u0308ppingen)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Friedhof" - } - ], "identifiedBy": [ { "source": "GND", @@ -11010,6 +11228,7 @@ "value": "(DE-588)1078131902" } ], + "identifier": "http://d-nb.info/gnd/1078131902", "note": [ { "noteType": "dataSource", @@ -11025,22 +11244,10 @@ "authorized_access_point": "Go\u0308ppingen" } ], - "md5": "152a694e1df659d63e6fa8f567d400e2" + "md5": "11bbeeaf6a7e4cd403ab12bb164245b6" }, { "authorized_access_point": "Kocher-Jagst-Trail", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Rundwanderweg" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fernwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -11058,12 +11265,19 @@ "value": "(DE-588)1077893450" } ], + "identifier": "http://d-nb.info/gnd/1077893450", "note": [ { "noteType": "dataSource", "label": [ "Internet - http://kocher-jagst-trail.de/content.php?cont_id=1&src=1&la=de" ] + }, + { + "noteType": "general", + "label": [ + "Fernwanderweg (ca. 200km), der aus den Abschnitten Jagststeig, Bu\u0308hlersteig und Kochersteig besteht" + ] } ], "pid": "1077893450", @@ -11071,7 +11285,7 @@ "variant_access_point": [ "Kocher-Jagst-Wanderweg" ], - "md5": "47a096e06b4b69da162745c13d3375b8" + "md5": "714fb19a63457e2943c736df9c9d64d1" }, { "authorized_access_point": "Weltersbach (Leichlingen (Rheinland))", @@ -11092,6 +11306,15 @@ "value": "(DE-588)1077053320" } ], + "identifier": "http://d-nb.info/gnd/1077053320", + "note": [ + { + "noteType": "general", + "label": [ + "Aus einer Hofschaft hervorgegangene Ortschaft in der Bu\u0308rgermeisterei Leichlingen, die 1856 das Stadtrecht erhielt" + ] + } + ], "pid": "1077053320", "type": "bf:Place", "related": [ @@ -11107,7 +11330,7 @@ "variant_access_point": [ "Weltersbach (Leichlingen)" ], - "md5": "e6adc4e648370dd7945dd0fd687d17fe" + "md5": "8db209fbf419acc860c0e8d27b4c926b" }, { "authorized_access_point": "Leichlingen-Weltersbach", @@ -11128,6 +11351,15 @@ "value": "(DE-588)1077053185" } ], + "identifier": "http://d-nb.info/gnd/1077053185", + "note": [ + { + "noteType": "general", + "label": [ + "Seit 1856 Stadtteil von Leichlingen" + ] + } + ], "pid": "1077053185", "type": "bf:Place", "related": [ @@ -11138,7 +11370,7 @@ "authorized_access_point": "Weltersbach (Leichlingen (Rheinland))" } ], - "md5": "080d6b895704ab5fd8163e474769ea2e" + "md5": "b48211b1b8ba9e716954d53c25f2e8ea" }, { "authorized_access_point": "Szreniawa-Gebiet", @@ -11159,22 +11391,24 @@ "value": "(DE-588)107699847X" } ], + "identifier": "http://d-nb.info/gnd/107699847X", + "note": [ + { + "noteType": "general", + "label": [ + "Gebiet am Fluss Szreniawa" + ] + } + ], "pid": "107699847X", "type": "bf:Place", "variant_access_point": [ "Szreniawa (Fluss)" ], - "md5": "4bf5d1b243da5445f040c528acf386df" + "md5": "8230e07b61ee480c764d6275f140114f" }, { "authorized_access_point": "Heidenho\u0308hlen (Goldbach, U\u0308berlingen)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Ho\u0308hle" - } - ], "identifiedBy": [ { "source": "GND", @@ -11192,6 +11426,15 @@ "value": "(DE-588)1076027032" } ], + "identifier": "http://d-nb.info/gnd/1076027032", + "note": [ + { + "noteType": "general", + "label": [ + "Ku\u0308nstlich eingehauene Ga\u0308nge und Kammern in einer Felswand" + ] + } + ], "pid": "1076027032", "type": "bf:Place", "broader": [ @@ -11202,7 +11445,7 @@ "variant_access_point": [ "Heidenlo\u0308cher (Goldbach, U\u0308berlingen)" ], - "md5": "c3b14e34fdf118f9f2d278bc0f119e45" + "md5": "9e324149a44b54c78686b05196732613" }, { "authorized_access_point": "Dauje\u0307nai", @@ -11223,27 +11466,27 @@ "value": "(DE-588)1075827361" } ], + "identifier": "http://d-nb.info/gnd/1075827361", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://en.wikipedia.org/w/index.php?title=Dauj%C4%97nai&oldid=1157247700" ] + }, + { + "noteType": "general", + "label": [ + "Kleinstadt im Su\u0308dosten Litauens" + ] } ], "pid": "1075827361", "type": "bf:Place", - "md5": "2c747c0d3dec8b3eff64f08fe11fa202" + "md5": "9f30981107fce59081165a3732f4d855" }, { "authorized_access_point": "Sankt Michael (Furth, Landkreis Landshut)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kirchenbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -11261,12 +11504,19 @@ "value": "(DE-588)1075220467" } ], + "identifier": "http://d-nb.info/gnd/1075220467", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Schatzhofen&oldid=237597866" ] + }, + { + "noteType": "general", + "label": [ + "Saalkirche mit Chorturm, Chor romanisch, 12. Jahrhundert" + ] } ], "pid": "1075220467", @@ -11285,17 +11535,10 @@ "St. Michael (Furth-Schatzhofen)", "Sankt Michael Schatzhofen" ], - "md5": "f79ce1e86cdca7b9b35f6e62b565c00e" + "md5": "7aa644ab888733f037c26ae040a9fc81" }, { "authorized_access_point": "Rumbach (Fluss)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -11313,12 +11556,19 @@ "value": "(DE-588)1074377397" } ], + "identifier": "http://d-nb.info/gnd/1074377397", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/wiki/Rumbach_(Ruhr)" ] + }, + { + "noteType": "general", + "label": [ + "7,4 Kilometer langer, rechter Zufluss der Ruhr in Mu\u0308lheim an der Ruhr" + ] } ], "pid": "1074377397", @@ -11326,17 +11576,10 @@ "variant_access_point": [ "Ruhmbach" ], - "md5": "1cfcf2cdf791658ceef72f94f0975fdd" + "md5": "fb1ca45e004b38f5c6e25f425adb8f9a" }, { "authorized_access_point": "Emscher-Weg", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Radwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -11354,12 +11597,19 @@ "value": "(DE-588)1074316908" } ], + "identifier": "http://d-nb.info/gnd/1074316908", "note": [ { "noteType": "dataSource", "label": [ "Internet - http://www.emscher-weg.de/route/emscher-weg/" ] + }, + { + "noteType": "general", + "label": [ + "fu\u0308hrt von der Quelle der Emscher in Holzwickede 101 Kilometer bis zu ihrer Mu\u0308ndung in den Rhein in Dinslaken" + ] } ], "pid": "1074316908", @@ -11376,17 +11626,10 @@ "Emscherweg", "Emscherradweg" ], - "md5": "acde3f512809410984328c8dd11e41a6" + "md5": "bba91d14cea4998687db0b24b44b362c" }, { "authorized_access_point": "Ru\u0308bezahl-Radweg", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Radwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -11404,12 +11647,19 @@ "value": "(DE-588)107399077X" } ], + "identifier": "http://d-nb.info/gnd/107399077X", "note": [ { "noteType": "dataSource", "label": [ "Internet - http://www.neisse-nisa-nysa.org/index.php?id=91" ] + }, + { + "noteType": "general", + "label": [ + "250 km langer Radfernweg durch die Sa\u0308chsische und Bo\u0308hmische Schweiz, das Zittauer Gebirge, das Isergebirge und das Riesengebirge" + ] } ], "pid": "107399077X", @@ -11425,17 +11675,10 @@ "variant_access_point": [ "Ru\u0308bezahlradweg" ], - "md5": "ccc814562e5fdc261ea79e12e193ff5d" + "md5": "28f5d421ebf8328779c2a10b536823bc" }, { "authorized_access_point": "Lahntalradweg", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Radwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -11453,12 +11696,19 @@ "value": "(DE-588)1073950220" } ], + "identifier": "http://d-nb.info/gnd/1073950220", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/wiki/Lahntalradweg" ] + }, + { + "noteType": "general", + "label": [ + "245 km langer Radfernweg in Nordrhein-Westfalen, Hessen und Rheinland-Pfalz" + ] } ], "pid": "1073950220", @@ -11475,17 +11725,10 @@ "Lahntal-Radweg", "Lahnradwanderweg" ], - "md5": "d91de69202a7d4cc7b63b5aaffcc87eb" + "md5": "d8f99ee9aafedf25c1239bf94b96dd7a" }, { - "authorized_access_point": "Schloss Weilburg (Baden, Niedero\u0308sterreich)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Wasserspeier" - } - ], + "authorized_access_point": "Schloss Weilburg (Baden, Niedero\u0308sterreich) - Wasserspeier", "identifiedBy": [ { "source": "GND", @@ -11503,6 +11746,7 @@ "value": "(DE-588)107373157X" } ], + "identifier": "http://d-nb.info/gnd/107373157X", "pid": "107373157X", "type": "bf:Place", "broader": [ @@ -11516,17 +11760,10 @@ "authorized_access_point": "Doblhoffpark (Baden, Niedero\u0308sterreich)" } ], - "md5": "5e7f9d592e2ae049a11501486d2996e7" + "md5": "2d8fe4f2581c4af8eacb18538228d36f" }, { - "authorized_access_point": "Schloss Weilburg (Baden, Niedero\u0308sterreich)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Gruppendarstellung" - } - ], + "authorized_access_point": "Schloss Weilburg (Baden, Niedero\u0308sterreich) - Flora und Zephyr mit einem Kinde", "identifiedBy": [ { "source": "GND", @@ -11544,6 +11781,7 @@ "value": "(DE-588)1073724549" } ], + "identifier": "http://d-nb.info/gnd/1073724549", "pid": "1073724549", "type": "bf:Place", "broader": [ @@ -11562,17 +11800,10 @@ "variant_access_point": [ "Schloss Weilburg (Baden, Niedero\u0308sterreich)" ], - "md5": "ef6631d1f9f591da272f49cc2a94e8ec" + "md5": "a2f23944fe7ea272013bc290e8f74928" }, { "authorized_access_point": "Vratne\u0301-Tal", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Tal" - } - ], "identifiedBy": [ { "source": "GND", @@ -11590,6 +11821,7 @@ "value": "(DE-588)107362062X" } ], + "identifier": "http://d-nb.info/gnd/107362062X", "note": [ { "noteType": "dataSource", @@ -11610,17 +11842,10 @@ "Vratne-Tal", "Vra\u0301tna-Tal" ], - "md5": "1d30bdb584cbf6ed97e886ebff09fdec" + "md5": "bc9deaaf747a959e8b164b5af84722f4" }, { "authorized_access_point": "Piz Buin", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Berg" - } - ], "identifiedBy": [ { "source": "GND", @@ -11638,6 +11863,15 @@ "value": "(DE-588)1073267830" } ], + "identifier": "http://d-nb.info/gnd/1073267830", + "note": [ + { + "noteType": "general", + "label": [ + "drittho\u0308chster Gipfel der Silvrettagruppe und ho\u0308chster Berg Vorarlbergs" + ] + } + ], "pid": "1073267830", "type": "bf:Place", "broader": [ @@ -11645,22 +11879,10 @@ "authorized_access_point": "Silvrettagruppe" } ], - "md5": "33aab366687cc09b65472bdca515cca8" + "md5": "87af22da1a2820c12fc13fbacbce7b53" }, { "authorized_access_point": "Wasserheilanstalt Albisbrunn (Hausen am Albis)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kurgeba\u0308ude" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Heilbad" - } - ], "identifiedBy": [ { "source": "GND", @@ -11678,6 +11900,15 @@ "value": "(DE-588)107283314X" } ], + "identifier": "http://d-nb.info/gnd/107283314X", + "note": [ + { + "noteType": "general", + "label": [ + "Spa\u0308tklassizistisches Geba\u0308ude mit Mittel- und Seitenrisaliten" + ] + } + ], "pid": "107283314X", "type": "bf:Place", "broader": [ @@ -11690,17 +11921,10 @@ "Wasser-Heil-Anstalt Albisbrunn (Hausen am Albis)", "Bad Albisbrunn (Hausen am Albis)" ], - "md5": "b1c8768356723e2571a8dbac244abd63" + "md5": "645b957b46d7eb14f697a4c9334a4592" }, { "authorized_access_point": "Obere-Sann-Tal", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Tal" - } - ], "identifiedBy": [ { "source": "GND", @@ -11718,6 +11942,7 @@ "value": "(DE-588)1071872435" } ], + "identifier": "http://d-nb.info/gnd/1071872435", "pid": "1071872435", "type": "bf:Place", "broader": [ @@ -11729,17 +11954,10 @@ "Oberes Sanntal", "Obere Sann" ], - "md5": "9330b6fb850b7c02ffcc6638f8142c01" + "md5": "ed39a81f00bc3298f72b36841eee63e0" }, { "authorized_access_point": "Eisenbahnlinie Go\u0308rlitz-Wa\u0142brzych", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Eisenbahnlinie" - } - ], "identifiedBy": [ { "source": "GND", @@ -11757,6 +11975,7 @@ "value": "(DE-588)1071862391" } ], + "identifier": "http://d-nb.info/gnd/1071862391", "note": [ { "noteType": "dataSource", @@ -11778,17 +11997,10 @@ "variant_access_point": [ "Bahnstrecke Zgorzelec\u2013Wa\u0142brzych" ], - "md5": "db26afcd59f0123681b75908a822c207" + "md5": "949830a4ebcea7da05678aaa39329c62" }, { "authorized_access_point": "Wa\u0308ngi (Aeugst am Albis)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Weiler" - } - ], "identifiedBy": [ { "source": "GND", @@ -11806,6 +12018,7 @@ "value": "(DE-588)1070113026" } ], + "identifier": "http://d-nb.info/gnd/1070113026", "pid": "1070113026", "type": "bf:Place", "broader": [ @@ -11817,7 +12030,7 @@ "Wengi (Aeugst am Albis)", "Wa\u0308ngibad (Aeugst am Albis)" ], - "md5": "99e68228304def26622b681777d676c7" + "md5": "a3d9b31272aa51d6713bfa1325815150" }, { "authorized_access_point": "Heringsdorf (Kreis Ostholstein)", @@ -11838,6 +12051,15 @@ "value": "(DE-588)1069803782" } ], + "identifier": "http://d-nb.info/gnd/1069803782", + "note": [ + { + "noteType": "general", + "label": [ + "Ort im Kreis Ostholstein, Amt Oldenburg-Land, slawische Gru\u0308ndung" + ] + } + ], "pid": "1069803782", "type": "bf:Place", "broader": [ @@ -11845,17 +12067,10 @@ "authorized_access_point": "Kreis Ostholstein" } ], - "md5": "115810c590ffff18a06641731466d197" + "md5": "34fb074c23273aebd56183dd6d2e8fad" }, { "authorized_access_point": "Rheinradweg", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Radwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -11873,12 +12088,19 @@ "value": "(DE-588)1068118490" } ], + "identifier": "http://d-nb.info/gnd/1068118490", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - http://de.wikipedia.org/wiki/Rheinradweg" ] + }, + { + "noteType": "general", + "label": [ + "ca. 1.230 km langer Radfernweg, der durch fu\u0308nf Staaten vom Quellgebiet des Rheins in den Schweizer Alpen am Oberalppass bis zur Mu\u0308ndung bei Rotterdam fu\u0308hrt." + ] } ], "pid": "1068118490", @@ -11894,7 +12116,7 @@ "variant_access_point": [ "Rhein-Radweg" ], - "md5": "d00a4185e1c65aa088c24c26027b7434" + "md5": "1d27efe5853e966acbfd4c0d973901d6" }, { "authorized_access_point": "Leipzig-Go\u0308bschelwitz", @@ -11915,6 +12137,7 @@ "value": "(DE-588)1067883703" } ], + "identifier": "http://d-nb.info/gnd/1067883703", "pid": "1067883703", "type": "bf:Place", "related": [ @@ -11928,17 +12151,10 @@ "variant_access_point": [ "Go\u0308bschelwitz (Leipzig)" ], - "md5": "6251414970800690072c3ff9dab46fc7" + "md5": "ae769c28256cdf6b3ed38db5616a01e6" }, { "authorized_access_point": "Loire-Radweg", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Radwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -11956,12 +12172,19 @@ "value": "(DE-588)1067878831" } ], + "identifier": "http://d-nb.info/gnd/1067878831", "note": [ { "noteType": "dataSource", "label": [ "Internet - http://www.loire-radweg.org/" ] + }, + { + "noteType": "general", + "label": [ + "800 km langer Radfernweg durch die Regionen Centre und Pays de la Loire" + ] } ], "pid": "1067878831", @@ -11977,7 +12200,7 @@ "variant_access_point": [ "La Loire a\u0300 Ve\u0301lo" ], - "md5": "7ea864dda6b14d4acfb40d96da7b5dfb" + "md5": "f689e527b44fd4fbb7b118a8dc450f95" }, { "authorized_access_point": "Leipzig-Hirschfeld", @@ -11998,6 +12221,7 @@ "value": "(DE-588)1067860142" } ], + "identifier": "http://d-nb.info/gnd/1067860142", "pid": "1067860142", "type": "bf:Place", "related": [ @@ -12014,7 +12238,7 @@ "variant_access_point": [ "Hirschfeld (Leipzig)" ], - "md5": "11ac1d0355ee5755cc2752b37d3b21ec" + "md5": "2a56eb71fd1ef52a690c219d9a8a02fb" }, { "authorized_access_point": "Leipzig-Rehbach", @@ -12035,6 +12259,7 @@ "value": "(DE-588)1067637184" } ], + "identifier": "http://d-nb.info/gnd/1067637184", "pid": "1067637184", "type": "bf:Place", "related": [ @@ -12048,7 +12273,7 @@ "variant_access_point": [ "Rehbach (Leipzig)" ], - "md5": "02d0719b010c855d72df49fd7e886c5b" + "md5": "c2a4b57ed2e9e98c80a4c45e6a7b4a08" }, { "authorized_access_point": "Leipzig-Hartmannsdorf", @@ -12069,6 +12294,15 @@ "value": "(DE-588)1067636757" } ], + "identifier": "http://d-nb.info/gnd/1067636757", + "note": [ + { + "noteType": "general", + "label": [ + "Ortsteil von Leipzig seit 1993" + ] + } + ], "pid": "1067636757", "type": "bf:Place", "related": [ @@ -12082,17 +12316,10 @@ "variant_access_point": [ "Hartmannsdorf (Leipzig)" ], - "md5": "aeb1d334c1d595d6d49a19767fb7c40a" + "md5": "485e0d3cfade00ef96e280cfc0064e67" }, { "authorized_access_point": "Heidschnuckenweg", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Wanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -12110,12 +12337,19 @@ "value": "(DE-588)1067274006" } ], + "identifier": "http://d-nb.info/gnd/1067274006", "note": [ { "noteType": "dataSource", "label": [ "Internet - http://www.heidschnuckenweg.de/" ] + }, + { + "noteType": "general", + "label": [ + "223 km lang, 2012 eingeweiht" + ] } ], "pid": "1067274006", @@ -12128,17 +12362,10 @@ "authorized_access_point": "Celle" } ], - "md5": "371c53476a6d31df34f1f68fe2bed0b5" + "md5": "c77f0eab0d227f69bc299676ec5ab79d" }, { "authorized_access_point": "Kocher-Jagst-Radweg", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Radwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -12156,6 +12383,7 @@ "value": "(DE-588)1067272488" } ], + "identifier": "http://d-nb.info/gnd/1067272488", "note": [ { "noteType": "dataSource", @@ -12166,7 +12394,7 @@ ], "pid": "1067272488", "type": "bf:Place", - "md5": "d3c4984d98dc1cb6d122cc2915e3e3c5" + "md5": "1f74a63009520569905c278139b316db" }, { "authorized_access_point": "Leipzig-Kleinpo\u0308sna", @@ -12187,6 +12415,7 @@ "value": "(DE-588)1064960243" } ], + "identifier": "http://d-nb.info/gnd/1064960243", "pid": "1064960243", "type": "bf:Place", "related": [ @@ -12200,17 +12429,10 @@ "variant_access_point": [ "Kleinpo\u0308sna (Leipzig)" ], - "md5": "6f79fb583bbb5a0944c0e6069fc301ca" + "md5": "63272bf8955cd7a1a4780ddb9bf60d30" }, { "authorized_access_point": "Amt S\u030cakyna", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Amt" - } - ], "identifiedBy": [ { "source": "GND", @@ -12228,12 +12450,19 @@ "value": "(DE-588)1064714455" } ], + "identifier": "http://d-nb.info/gnd/1064714455", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://en.wikipedia.org/w/index.php?title=%C5%A0akyna&oldid=1226681026" ] + }, + { + "noteType": "general", + "label": [ + "Verwaltungseinheit im Bezirk S\u030ciauliai im Norden Litauens" + ] } ], "pid": "1064714455", @@ -12244,7 +12473,7 @@ "Amt Shakinay", "Amt Szakino\u0301w" ], - "md5": "e43b02c02ca77e5d23570857c1c3719c" + "md5": "4e05819c3322f1b884989d623e256609" }, { "authorized_access_point": "Canal du Midi-Gebiet", @@ -12265,22 +12494,16 @@ "value": "(DE-588)1064601502" } ], + "identifier": "http://d-nb.info/gnd/1064601502", "pid": "1064601502", "type": "bf:Place", "variant_access_point": [ "Canal du Midi" ], - "md5": "e6106f041615fd1a0e17f9fc4f81510f" + "md5": "26a67279d4e425db231aa137ef148a9b" }, { "authorized_access_point": "Anglesey Coastal Path", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Rundwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -12298,12 +12521,19 @@ "value": "(DE-588)1064049419" } ], + "identifier": "http://d-nb.info/gnd/1064049419", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - http://de.wikipedia.org/wiki/Anglesey_Coastal_Path" ] + }, + { + "noteType": "general", + "label": [ + "Fernwanderweg (200 km), der rund um die walisische Insel Anglesey fu\u0308hrt und Bestandteil des Wales Coast Path ist" + ] } ], "pid": "1064049419", @@ -12311,7 +12541,7 @@ "variant_access_point": [ "Anglesey Ku\u0308stenweg" ], - "md5": "54745323dc905fe0f72e67853fdec838" + "md5": "91b8b3a3841fd39bc69098cd1dc9d927" }, { "authorized_access_point": "Resende", @@ -12332,22 +12562,24 @@ "value": "(DE-588)1062979583" } ], + "identifier": "http://d-nb.info/gnd/1062979583", + "note": [ + { + "noteType": "general", + "label": [ + "Stadt im Bundesstaat Rio de Janeiro, Brasilien" + ] + } + ], "pid": "1062979583", "type": "bf:Place", "variant_access_point": [ "Rezende" ], - "md5": "110c0fe7e935dcef565c6dfcfd188c87" + "md5": "21864397ad279f50aafcd1c561dffb31" }, { "authorized_access_point": "Helle (Fluss)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -12365,6 +12597,7 @@ "value": "(DE-588)1062970004" } ], + "identifier": "http://d-nb.info/gnd/1062970004", "note": [ { "noteType": "dataSource", @@ -12379,17 +12612,10 @@ "variant_access_point": [ "Hill (Fluss)" ], - "md5": "8cdb9bb0820f439f03346471daa1de56" + "md5": "796a0d8515380ec3842f06197c5545bf" }, { "authorized_access_point": "Wilde Wei\u00dfe", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -12407,22 +12633,24 @@ "value": "(DE-588)1062891848" } ], + "identifier": "http://d-nb.info/gnd/1062891848", + "note": [ + { + "noteType": "general", + "label": [ + "Nebenfluss der Gera im Stadtgebiet von Arnstadt in Thu\u0308ringen" + ] + } + ], "pid": "1062891848", "type": "bf:Place", "variant_access_point": [ "Stadtwei\u00dfe" ], - "md5": "42dac288ea216955bd88a35f8f5caa87" + "md5": "76b194c3242ddf4adb2e3a33fc6dfd07" }, { "authorized_access_point": "Bia\u0142ka", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -12440,6 +12668,7 @@ "value": "(DE-588)1062531191" } ], + "identifier": "http://d-nb.info/gnd/1062531191", "note": [ { "noteType": "dataSource", @@ -12454,17 +12683,10 @@ "Oles\u030cnice (Fluss)", "Elsnitz" ], - "md5": "2198ff46a2443f4d876874d8b41a8920" + "md5": "ae9e03e948114f9137dd0089350b3ec5" }, { "authorized_access_point": "Hogsmill River", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -12482,6 +12704,7 @@ "value": "(DE-588)1062516109" } ], + "identifier": "http://d-nb.info/gnd/1062516109", "note": [ { "noteType": "dataSource", @@ -12492,17 +12715,10 @@ ], "pid": "1062516109", "type": "bf:Place", - "md5": "cf0b0ff5067d49feeee442526aa50088" + "md5": "236526c8ec47d1aa8962d09618152d8e" }, { "authorized_access_point": "Rudawa (Fluss)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -12520,6 +12736,7 @@ "value": "(DE-588)1061004198" } ], + "identifier": "http://d-nb.info/gnd/1061004198", "note": [ { "noteType": "dataSource", @@ -12530,10 +12747,10 @@ ], "pid": "1061004198", "type": "bf:Place", - "md5": "e46edbe9398ad66dfc69eac90bf509a0" + "md5": "c22089f0188f48c76ee65330718dbca4" }, { - "authorized_access_point": "Salami\u0304yah", + "authorized_access_point": "Salami\u0304yah - Region", "identifiedBy": [ { "source": "GND", @@ -12551,22 +12768,16 @@ "value": "(DE-588)1060849127" } ], + "identifier": "http://d-nb.info/gnd/1060849127", "pid": "1060849127", "type": "bf:Place", "variant_access_point": [ "Salamieh area" ], - "md5": "af356d8b96c41965d7b20782d54c23aa" + "md5": "8114ac25505ad3f192775a44d40daf1a" }, { "authorized_access_point": "Kanzelbach", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -12584,6 +12795,7 @@ "value": "(DE-588)106081482X" } ], + "identifier": "http://d-nb.info/gnd/106081482X", "note": [ { "noteType": "dataSource", @@ -12594,17 +12806,10 @@ ], "pid": "106081482X", "type": "bf:Place", - "md5": "9a7b65a9ea37f59e8737100913007756" + "md5": "b4a96eee904929b7364061554385a38a" }, { "authorized_access_point": "Grundbach (Verni\u0301r\u030covice, Fluss)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -12622,6 +12827,7 @@ "value": "(DE-588)1060503611" } ], + "identifier": "http://d-nb.info/gnd/1060503611", "pid": "1060503611", "type": "bf:Place", "broader": [ @@ -12629,17 +12835,10 @@ "authorized_access_point": "Verni\u0301r\u030covice" } ], - "md5": "0b9d75d7ba390cff2e0efdb8b48ee9e8" + "md5": "311da805ea1c4ce06d9ba6725ac3e5bf" }, { "authorized_access_point": "Gra\u0308nzbach", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -12657,19 +12856,13 @@ "value": "(DE-588)1060503166" } ], + "identifier": "http://d-nb.info/gnd/1060503166", "pid": "1060503166", "type": "bf:Place", - "md5": "63d108bf71364e4a7e15c36ffc89ad59" + "md5": "b080d85d9891e1c6214113a5e36f7e30" }, { "authorized_access_point": "Malschbach (Fluss)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -12687,19 +12880,13 @@ "value": "(DE-588)1060502798" } ], + "identifier": "http://d-nb.info/gnd/1060502798", "pid": "1060502798", "type": "bf:Place", - "md5": "613f678b592fae0a8544d4178309827d" + "md5": "501a3b4f84e65ecdd15b42e000e95926" }, { "authorized_access_point": "Dobrowabach", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -12717,19 +12904,13 @@ "value": "(DE-588)1060502682" } ], + "identifier": "http://d-nb.info/gnd/1060502682", "pid": "1060502682", "type": "bf:Place", - "md5": "12f3ae04456e98c6a903bb986c0980ff" + "md5": "27b9c8ab99c77e2c01d5e23d969c4ce7" }, { "authorized_access_point": "Lauterwasserbach", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -12747,19 +12928,13 @@ "value": "(DE-588)1060502585" } ], + "identifier": "http://d-nb.info/gnd/1060502585", "pid": "1060502585", "type": "bf:Place", - "md5": "e69c273c202017a1b7201943b442ade3" + "md5": "36440d6a5283a010c74bb8ced92f3752" }, { "authorized_access_point": "Go\u0308stritzbach", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -12777,19 +12952,13 @@ "value": "(DE-588)1060502372" } ], + "identifier": "http://d-nb.info/gnd/1060502372", "pid": "1060502372", "type": "bf:Place", - "md5": "6440fafc2271ff803e967a1e80690065" + "md5": "7409ec9f0b3956cd60617b952e185218" }, { "authorized_access_point": "Weinbach (Fluss)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -12807,19 +12976,13 @@ "value": "(DE-588)106050216X" } ], + "identifier": "http://d-nb.info/gnd/106050216X", "pid": "106050216X", "type": "bf:Place", - "md5": "834e0a8f43e89e01ed303bae23dbf1ef" + "md5": "df9981fbb34eafb178d848dbed7536a1" }, { "authorized_access_point": "Gettenbach (Fluss)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -12837,6 +13000,7 @@ "value": "(DE-588)1060501902" } ], + "identifier": "http://d-nb.info/gnd/1060501902", "note": [ { "noteType": "dataSource", @@ -12847,17 +13011,10 @@ ], "pid": "1060501902", "type": "bf:Place", - "md5": "b932ee7a5a24821d9b67fd978e00608b" + "md5": "ab69112529302828be59f545b8409d09" }, { "authorized_access_point": "Wesebach (Fluss)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -12875,27 +13032,27 @@ "value": "(DE-588)1060501759" } ], + "identifier": "http://d-nb.info/gnd/1060501759", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - http://de.wikipedia.org/wiki/Ihne_(Fluss)$vhier erwa\u0308hnt" ] + }, + { + "noteType": "general", + "label": [ + "Nebenfluss der Ihne in Nordrhein-Westfalen" + ] } ], "pid": "1060501759", "type": "bf:Place", - "md5": "e4b71568b989943369a62fedc7739d94" + "md5": "e2e97908be75ca5097e08e82a89a2711" }, { "authorized_access_point": "Windener Teich", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -12913,19 +13070,13 @@ "value": "(DE-588)1060501457" } ], + "identifier": "http://d-nb.info/gnd/1060501457", "pid": "1060501457", "type": "bf:Place", - "md5": "675687c82627b5efaa1b31065bd5ffd7" + "md5": "34898e0c989e69a93be548428e19c42a" }, { "authorized_access_point": "Klingendes Fliess", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -12943,6 +13094,7 @@ "value": "(DE-588)106050104X" } ], + "identifier": "http://d-nb.info/gnd/106050104X", "note": [ { "noteType": "dataSource", @@ -12956,17 +13108,10 @@ "variant_access_point": [ "Klingendes Flie\u00df" ], - "md5": "0c483c72150f3504a18762224780e4e1" + "md5": "d5dac8d6710690302868a0d501cf6f00" }, { "authorized_access_point": "Konstanzer Ach", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -12984,6 +13129,7 @@ "value": "(DE-588)1060419319" } ], + "identifier": "http://d-nb.info/gnd/1060419319", "note": [ { "noteType": "dataSource", @@ -12994,17 +13140,10 @@ ], "pid": "1060419319", "type": "bf:Place", - "md5": "59ed00160f68f429169e9ce3a0d05602" + "md5": "1f1b13b0269e91488eff3802a1ebeae6" }, { "authorized_access_point": "Babelsberger Park (Potsdam)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Landschaftsgarten" - } - ], "identifiedBy": [ { "source": "GND", @@ -13022,6 +13161,7 @@ "value": "(DE-588)1060401134" } ], + "identifier": "http://d-nb.info/gnd/1060401134", "note": [ { "noteType": "dataSource", @@ -13043,17 +13183,10 @@ "variant_access_point": [ "Park Babelsberg (Potsdam)" ], - "md5": "9e7957bb53d9693d763e0aa9fdb255e9" + "md5": "c084b5e466a8fff0e2e45f6cd5ec17d2" }, { "authorized_access_point": "O\u0308lbach (Vreden, Fluss)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -13071,6 +13204,7 @@ "value": "(DE-588)1060238128" } ], + "identifier": "http://d-nb.info/gnd/1060238128", "note": [ { "noteType": "dataSource", @@ -13086,17 +13220,10 @@ "authorized_access_point": "Vreden" } ], - "md5": "61e5a77ae617498168c6a35f34485346" + "md5": "ec1cfffa6447aef3be716b8798eda0c1" }, { "authorized_access_point": "Linteler See", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Baggersee" - } - ], "identifiedBy": [ { "source": "GND", @@ -13114,12 +13241,19 @@ "value": "(DE-588)1060132206" } ], + "identifier": "http://d-nb.info/gnd/1060132206", "note": [ { "noteType": "dataSource", "label": [ "Internet - http://www.anglermap.de/angeln/gewaessersteckbrief_angelkarte.php?id=2546" ] + }, + { + "noteType": "general", + "label": [ + "Baggersee o\u0308stlich von Rheda-Wiedenbru\u0308ck" + ] } ], "pid": "1060132206", @@ -13132,17 +13266,10 @@ "variant_access_point": [ "Lintler See" ], - "md5": "895405dadb7bfaa01c4fd91917b5fb4f" + "md5": "191bcfb30d476692eae3466e21f637a1" }, { "authorized_access_point": "Haus Domnick (Nu\u0308rtingen)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Haus" - } - ], "identifiedBy": [ { "source": "GND", @@ -13160,6 +13287,7 @@ "value": "(DE-588)1060087367" } ], + "identifier": "http://d-nb.info/gnd/1060087367", "note": [ { "noteType": "dataSource", @@ -13167,6 +13295,12 @@ "Internet - http://domnick.de/", "Wikipedia - https://de.wikipedia.org/w/index.php?title=Sammlung_Domnick&oldid=245473631" ] + }, + { + "noteType": "general", + "label": [ + "Privathaus, erbaut fu\u0308r Ottomar Domnick, heute Sitz der Stiftung Domnick, Oberensinger Ho\u0308he 4, Nu\u0308rtingen" + ] } ], "pid": "1060087367", @@ -13176,17 +13310,10 @@ "authorized_access_point": "Nu\u0308rtingen" } ], - "md5": "8891a3869a40b6966b8a32a54b9e86b2" + "md5": "9afcc9761b682c52f67740dc0f576647" }, { "authorized_access_point": "Piwonkerbach", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -13204,19 +13331,13 @@ "value": "(DE-588)1059448831" } ], + "identifier": "http://d-nb.info/gnd/1059448831", "pid": "1059448831", "type": "bf:Place", - "md5": "8b06809d6d950edd9e42e411e519afa5" + "md5": "11196d0ef942510d160708312e17aef0" }, { "authorized_access_point": "Voorstondse Beek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -13234,6 +13355,7 @@ "value": "(DE-588)1059378396" } ], + "identifier": "http://d-nb.info/gnd/1059378396", "note": [ { "noteType": "dataSource", @@ -13244,17 +13366,10 @@ ], "pid": "1059378396", "type": "bf:Place", - "md5": "453eef270097c7e2015ad0cfdb439ce9" + "md5": "6083eb676f9ac01856024685b5e432a8" }, { "authorized_access_point": "Gravinnebeek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -13272,6 +13387,7 @@ "value": "(DE-588)1059376946" } ], + "identifier": "http://d-nb.info/gnd/1059376946", "note": [ { "noteType": "dataSource", @@ -13282,17 +13398,10 @@ ], "pid": "1059376946", "type": "bf:Place", - "md5": "0235c5e16aa39e56da1cec0c94ce99b9" + "md5": "5618b0e290303b7defc568db9a4b068e" }, { "authorized_access_point": "Coldenhovensebeek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -13310,6 +13419,7 @@ "value": "(DE-588)1059359022" } ], + "identifier": "http://d-nb.info/gnd/1059359022", "note": [ { "noteType": "dataSource", @@ -13320,10 +13430,10 @@ ], "pid": "1059359022", "type": "bf:Place", - "md5": "c689f9d7b1209236011c88cedad63206" + "md5": "2e3d24795f96ca08f779b0e7cff11982" }, { - "authorized_access_point": "Nelson (Neuseeland)", + "authorized_access_point": "Nelson (Neuseeland) - Region", "identifiedBy": [ { "source": "GND", @@ -13341,19 +13451,13 @@ "value": "(DE-588)1059357755" } ], + "identifier": "http://d-nb.info/gnd/1059357755", "pid": "1059357755", "type": "bf:Place", - "md5": "96d23c53e9a3d06a6f110c2ecfb38ab3" + "md5": "d32c92f24eb66921a6b8dff9712c9e4f" }, { "authorized_access_point": "Molenbeek (Mook, Fluss)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -13371,6 +13475,7 @@ "value": "(DE-588)1059250454" } ], + "identifier": "http://d-nb.info/gnd/1059250454", "pid": "1059250454", "type": "bf:Place", "broader": [ @@ -13378,17 +13483,10 @@ "authorized_access_point": "Mook" } ], - "md5": "2793dcca53846b71c03dd476c3bcbabd" + "md5": "2ba1a9fe3484a38a42e3da7f3235be06" }, { "authorized_access_point": "Mosbeek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -13406,6 +13504,7 @@ "value": "(DE-588)105914249X" } ], + "identifier": "http://d-nb.info/gnd/105914249X", "note": [ { "noteType": "dataSource", @@ -13416,17 +13515,10 @@ ], "pid": "105914249X", "type": "bf:Place", - "md5": "8987a46beeace5e12c94bdbd52e49aae" + "md5": "2fa2d773afeee81c2199900b60549bb7" }, { "authorized_access_point": "Zilverbeek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -13444,19 +13536,13 @@ "value": "(DE-588)1058994743" } ], + "identifier": "http://d-nb.info/gnd/1058994743", "pid": "1058994743", "type": "bf:Place", - "md5": "ed542ad54f7f55ad201911ee23bb9be9" + "md5": "7d774b24e92660bfc87ce447bd5d1fdd" }, { "authorized_access_point": "Esvelderbeek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -13474,6 +13560,7 @@ "value": "(DE-588)1058986333" } ], + "identifier": "http://d-nb.info/gnd/1058986333", "note": [ { "noteType": "dataSource", @@ -13484,17 +13571,10 @@ ], "pid": "1058986333", "type": "bf:Place", - "md5": "e8ab8fe7ce4a33e8123207a69c5952f0" + "md5": "5d307b138a8746f676b976f2182fafd1" }, { "authorized_access_point": "Papiermolenbeekje", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -13512,19 +13592,13 @@ "value": "(DE-588)1058985299" } ], + "identifier": "http://d-nb.info/gnd/1058985299", "pid": "1058985299", "type": "bf:Place", - "md5": "b9f5f821704cd7451188edaba2b7ab20" + "md5": "3d929f4983fb7d54c3d79800ef872b7a" }, { "authorized_access_point": "Barneveldsche Beek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -13542,6 +13616,7 @@ "value": "(DE-588)1058984144" } ], + "identifier": "http://d-nb.info/gnd/1058984144", "note": [ { "noteType": "dataSource", @@ -13555,17 +13630,10 @@ "variant_access_point": [ "Grote Barneveldsebeek" ], - "md5": "35158e4504e8e09622671c007c925eea" + "md5": "15640d7d50d52606be03a83d8077ddb5" }, { "authorized_access_point": "Schoonderbeek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -13583,19 +13651,13 @@ "value": "(DE-588)1058973045" } ], + "identifier": "http://d-nb.info/gnd/1058973045", "pid": "1058973045", "type": "bf:Place", - "md5": "0793f7aa84293128ba6eb1059522083a" + "md5": "2dba50c52071059d1bcb39cef8fff732" }, { "authorized_access_point": "Hierdensche Beek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -13613,6 +13675,7 @@ "value": "(DE-588)1058939068" } ], + "identifier": "http://d-nb.info/gnd/1058939068", "note": [ { "noteType": "dataSource", @@ -13626,17 +13689,10 @@ "variant_access_point": [ "Hierdense beek" ], - "md5": "2c26ad785431640e8744eb88192b9b4f" + "md5": "225d3c34d095c435b727de66340b50c8" }, { "authorized_access_point": "Leuvenumse Beek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -13654,6 +13710,7 @@ "value": "(DE-588)105892978X" } ], + "identifier": "http://d-nb.info/gnd/105892978X", "note": [ { "noteType": "dataSource", @@ -13664,17 +13721,10 @@ ], "pid": "105892978X", "type": "bf:Place", - "md5": "32d08f818ad50a0794d60da0e40391c9" + "md5": "71eee8d31a7c92341935fb874bf9abfe" }, { "authorized_access_point": "Staverdense beek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -13692,22 +13742,16 @@ "value": "(DE-588)1058928732" } ], + "identifier": "http://d-nb.info/gnd/1058928732", "pid": "1058928732", "type": "bf:Place", "variant_access_point": [ "Staverdensche Beek" ], - "md5": "e1ef867251735b947bc46df6ff6124d8" + "md5": "6a7ad5f88f85350f1d641be33b69feb5" }, { "authorized_access_point": "Papiermolenbeek (Doornspijk, Fluss)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -13725,6 +13769,7 @@ "value": "(DE-588)1058919954" } ], + "identifier": "http://d-nb.info/gnd/1058919954", "pid": "1058919954", "type": "bf:Place", "broader": [ @@ -13735,17 +13780,10 @@ "variant_access_point": [ "Papierbeek" ], - "md5": "b2b0592c5e94eb1fcfebe8102adef073" + "md5": "bdb508abd1b6729ed1add850b691344c" }, { "authorized_access_point": "Molecatensebeek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -13763,22 +13801,16 @@ "value": "(DE-588)1058918176" } ], + "identifier": "http://d-nb.info/gnd/1058918176", "pid": "1058918176", "type": "bf:Place", "variant_access_point": [ "Molecatense Beek" ], - "md5": "1c893002794f3184b63e2303c3703d47" + "md5": "496ac83aaff6f0038ec13e21565f9ae3" }, { "authorized_access_point": "Zuidelijke Horsthoekerbeek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -13796,22 +13828,16 @@ "value": "(DE-588)1058899597" } ], + "identifier": "http://d-nb.info/gnd/1058899597", "pid": "1058899597", "type": "bf:Place", "variant_access_point": [ "Zuidelijke Horsthoeker beek" ], - "md5": "8683aa75c5109965592b8cc0e13ced53" + "md5": "c79eb6d542ce673c72c74a52a5d9beed" }, { "authorized_access_point": "Noordelijke Horsthoekerbeek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -13829,22 +13855,16 @@ "value": "(DE-588)1058896318" } ], + "identifier": "http://d-nb.info/gnd/1058896318", "pid": "1058896318", "type": "bf:Place", "variant_access_point": [ "Noordelijke Horsthoeker beek" ], - "md5": "8d45ce50d7a115330178b2def9689920" + "md5": "6dc4da557323af7cd6526deebd073838" }, { "authorized_access_point": "Middelste Heerderbeek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -13862,19 +13882,13 @@ "value": "(DE-588)1058890611" } ], + "identifier": "http://d-nb.info/gnd/1058890611", "pid": "1058890611", "type": "bf:Place", - "md5": "cc1d7af11533d5f3fc8309bfc4e09102" + "md5": "4c421c9d5f0391e343a653f1c467e91e" }, { "authorized_access_point": "Heerderbeek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -13892,19 +13906,13 @@ "value": "(DE-588)1058880373" } ], + "identifier": "http://d-nb.info/gnd/1058880373", "pid": "1058880373", "type": "bf:Place", - "md5": "02984c516dab5dd84122647d0464be76" + "md5": "3bcd2a031d9e0f2d38e2b85082dc2c35" }, { "authorized_access_point": "Dorpse beek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -13922,23 +13930,17 @@ "value": "(DE-588)1058876872" } ], + "identifier": "http://d-nb.info/gnd/1058876872", "pid": "1058876872", "type": "bf:Place", "variant_access_point": [ "Dorpse molenbeek", "Dorpermolenbeek" ], - "md5": "7695052cdfe119e5da15c821cf23abb1" + "md5": "60b2860a642602f86235f0f7d3ab8400" }, { "authorized_access_point": "Geelmolensche Beek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -13956,6 +13958,7 @@ "value": "(DE-588)1058840819" } ], + "identifier": "http://d-nb.info/gnd/1058840819", "note": [ { "noteType": "dataSource", @@ -13969,17 +13972,10 @@ "variant_access_point": [ "Geelmolense beek" ], - "md5": "c2a547f837f421e58a5cea5b6474456d" + "md5": "63d764f658c8dc20ca8887f564372cbc" }, { "authorized_access_point": "Nieuwe Beek (Vaassen, Fluss)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -13997,6 +13993,7 @@ "value": "(DE-588)1058838512" } ], + "identifier": "http://d-nb.info/gnd/1058838512", "pid": "1058838512", "type": "bf:Place", "broader": [ @@ -14004,17 +14001,10 @@ "authorized_access_point": "Vaassen" } ], - "md5": "50c6113473f0fce95d47937835852fc8" + "md5": "fcbbbcaba60477292880b7147ea63158" }, { "authorized_access_point": "Hartense Molenbeek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -14032,22 +14022,16 @@ "value": "(DE-588)1058667343" } ], + "identifier": "http://d-nb.info/gnd/1058667343", "pid": "1058667343", "type": "bf:Place", "variant_access_point": [ "Hattemse beek" ], - "md5": "46097f173a31a1f7121d86d59c33225e" + "md5": "55bfc5df6db6b15d333ab358d0008737" }, { "authorized_access_point": "Groevenbeek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -14065,19 +14049,13 @@ "value": "(DE-588)1058664468" } ], + "identifier": "http://d-nb.info/gnd/1058664468", "pid": "1058664468", "type": "bf:Place", - "md5": "ee20b9d28546eda0491618a0b8f7fe4a" + "md5": "2e2b2c3219491efd6b1571e89acd8e57" }, { "authorized_access_point": "Nijmolense Beek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -14095,6 +14073,7 @@ "value": "(DE-588)1058661396" } ], + "identifier": "http://d-nb.info/gnd/1058661396", "note": [ { "noteType": "dataSource", @@ -14109,17 +14088,10 @@ "Nijmolense beek", "Nijmolenschebeek" ], - "md5": "c08a38f2fbac1a9e4556dff40c1df048" + "md5": "70f41fb6db9ceb2369a275fb07e26175" }, { - "authorized_access_point": "Smallertse Beek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], + "authorized_access_point": "Smallertse Beek", "identifiedBy": [ { "source": "GND", @@ -14137,6 +14109,7 @@ "value": "(DE-588)1058651994" } ], + "identifier": "http://d-nb.info/gnd/1058651994", "note": [ { "noteType": "dataSource", @@ -14150,17 +14123,10 @@ "variant_access_point": [ "Smallertse beek" ], - "md5": "67a582415ef5adc690350b905f13271c" + "md5": "fa2dc698f1393e6933f518b87508ecb8" }, { "authorized_access_point": "Tongerensche Beek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -14178,6 +14144,7 @@ "value": "(DE-588)1058639919" } ], + "identifier": "http://d-nb.info/gnd/1058639919", "note": [ { "noteType": "dataSource", @@ -14191,17 +14158,10 @@ "variant_access_point": [ "Tongerensche beek" ], - "md5": "ef09cf2f2b47c6327a7e5a3f16e1a525" + "md5": "a3d98bb53e96b3cdf694eec189445f22" }, { "authorized_access_point": "Paalbeek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -14219,6 +14179,7 @@ "value": "(DE-588)105863982X" } ], + "identifier": "http://d-nb.info/gnd/105863982X", "note": [ { "noteType": "dataSource", @@ -14229,17 +14190,10 @@ ], "pid": "105863982X", "type": "bf:Place", - "md5": "b802d7043b1dad0f9e5824d444f35c78" + "md5": "972a5555ed63f4eda13cb62d294aac1a" }, { "authorized_access_point": "Wittebeek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -14257,19 +14211,13 @@ "value": "(DE-588)1058622773" } ], + "identifier": "http://d-nb.info/gnd/1058622773", "pid": "1058622773", "type": "bf:Place", - "md5": "2287baf933c2298531e3a9934608bf4b" + "md5": "8685be438c5a67296c8227cdc34b84a1" }, { "authorized_access_point": "Strobroeksbeek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -14287,19 +14235,13 @@ "value": "(DE-588)1058616684" } ], + "identifier": "http://d-nb.info/gnd/1058616684", "pid": "1058616684", "type": "bf:Place", - "md5": "13e9ab2f60b3fec62c9495588c889f36" + "md5": "026702bcbff22ae92e1d7788fe764350" }, { "authorized_access_point": "Zilvensebeek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -14317,19 +14259,13 @@ "value": "(DE-588)1058616579" } ], + "identifier": "http://d-nb.info/gnd/1058616579", "pid": "1058616579", "type": "bf:Place", - "md5": "405d5485e16de0788ea31fcfe7399ac1" + "md5": "32c2f83c851df4bf88821c93315cf4b6" }, { "authorized_access_point": "Loenensche Beek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -14347,6 +14283,7 @@ "value": "(DE-588)1058583018" } ], + "identifier": "http://d-nb.info/gnd/1058583018", "note": [ { "noteType": "dataSource", @@ -14360,17 +14297,10 @@ "variant_access_point": [ "Loenensebeek" ], - "md5": "a543b1e1fa43ba36ccc56f6c1c2d96a0" + "md5": "03d79f00edd4a3e27a7e215272c0b521" }, { "authorized_access_point": "Beekbergsche Beek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -14388,6 +14318,7 @@ "value": "(DE-588)1058579045" } ], + "identifier": "http://d-nb.info/gnd/1058579045", "note": [ { "noteType": "dataSource", @@ -14401,7 +14332,7 @@ "variant_access_point": [ "Beekbergsebeek" ], - "md5": "cbbf43c885ba98b30b0d3f1f3c21b915" + "md5": "e53d7f8f72d4f2e3db19fa480d1f3663" }, { "authorized_access_point": "Leipzig-Gottscheina", @@ -14422,6 +14353,15 @@ "value": "(DE-588)1058463993" } ], + "identifier": "http://d-nb.info/gnd/1058463993", + "note": [ + { + "noteType": "general", + "label": [ + "Ortsteil von Leipzig seit 1997; seit 1992 zu Seehausen" + ] + } + ], "pid": "1058463993", "type": "bf:Place", "related": [ @@ -14435,7 +14375,7 @@ "variant_access_point": [ "Gottscheina (Leipzig)" ], - "md5": "05bdafd333de06471955f992f831d266" + "md5": "9613f8d179944466b58d110532a6370b" }, { "authorized_access_point": "Leipzig-Hohenheida", @@ -14456,12 +14396,19 @@ "value": "(DE-588)1058463896" } ], + "identifier": "http://d-nb.info/gnd/1058463896", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/wiki/Hohenheida" ] + }, + { + "noteType": "general", + "label": [ + "Stadtteil von Leipzig seit 1997; 1992 zu Seehausen" + ] } ], "pid": "1058463896", @@ -14477,17 +14424,10 @@ "variant_access_point": [ "Hohenheida (Leipzig)" ], - "md5": "4e65375568fa5301755f4baad34a7165" + "md5": "f7bc078dad496540774978120365d714" }, { "authorized_access_point": "Kayersbeek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -14505,19 +14445,13 @@ "value": "(DE-588)1058460862" } ], + "identifier": "http://d-nb.info/gnd/1058460862", "pid": "1058460862", "type": "bf:Place", - "md5": "02b72f17e8a5cee3d347bfc8215e99e9" + "md5": "7700661c6b8dec091af2aaa59a0bdb75" }, { "authorized_access_point": "Winkewijert", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -14535,19 +14469,13 @@ "value": "(DE-588)1058460293" } ], + "identifier": "http://d-nb.info/gnd/1058460293", "pid": "1058460293", "type": "bf:Place", - "md5": "d813c55ff918a76e4a98a1ccad029050" + "md5": "aabbf9bbdeee1fd592a02ed1b273c070" }, { "authorized_access_point": "Ugchelsebeek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -14565,19 +14493,13 @@ "value": "(DE-588)1058395726" } ], + "identifier": "http://d-nb.info/gnd/1058395726", "pid": "1058395726", "type": "bf:Place", - "md5": "cef58e35ef4054abc8ec791227cae9f1" + "md5": "97016531e0030d9e6b7ec5602fdc71b8" }, { "authorized_access_point": "Tranchot-Obelisk (Aachen)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Obelisk" - } - ], "identifiedBy": [ { "source": "GND", @@ -14595,6 +14517,15 @@ "value": "(DE-588)1058041142" } ], + "identifier": "http://d-nb.info/gnd/1058041142", + "note": [ + { + "noteType": "general", + "label": [ + "Obelisk auf dem Lousberg bei Aachen, errichtet 1807 zu Ehren des franz. Vermessers Jean Joseph Tranchot. Trigonometrischer Punkt 1. Ordnung des linksrheinischen Dreiecksnetzes 1801/13" + ] + } + ], "pid": "1058041142", "type": "bf:Place", "broader": [ @@ -14605,7 +14536,7 @@ "variant_access_point": [ "Tranchot-Obelisk (Lousberg)" ], - "md5": "bbe981bb7771140d17ba3c6ce90c7120" + "md5": "8d4359dd704bbca0b7561c34f1a9f5d5" }, { "authorized_access_point": "Gru\u0308nberg-Lumda", @@ -14626,6 +14557,15 @@ "value": "(DE-588)1057942928" } ], + "identifier": "http://d-nb.info/gnd/1057942928", + "note": [ + { + "noteType": "general", + "label": [ + "Stadtteil von Gru\u0308nberg im Landkreis Gie\u00dfen, Hessen" + ] + } + ], "pid": "1057942928", "type": "bf:Place", "related": [ @@ -14640,17 +14580,10 @@ "Gru\u0308nberg (Landkreis Gie\u00dfen-Lumda)", "Lumda (Gru\u0308nberg-Lumda)" ], - "md5": "1dbcfaa2ab66e64560befe16584e1258" + "md5": "bf1fa886673e034c2044c27c47b130ab" }, { "authorized_access_point": "Sauberg (Erzgebirge, Berg)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Berg" - } - ], "identifiedBy": [ { "source": "GND", @@ -14668,6 +14601,7 @@ "value": "(DE-588)1056973714" } ], + "identifier": "http://d-nb.info/gnd/1056973714", "note": [ { "noteType": "dataSource", @@ -14683,17 +14617,10 @@ "authorized_access_point": "Erzgebirge" } ], - "md5": "32d3255c5df0211fee86a36479ab6e53" + "md5": "07a2172654853dc3acc535ab0f16a12e" }, { "authorized_access_point": "Kosovy\u0301 potok", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -14711,12 +14638,19 @@ "value": "(DE-588)1055068716" } ], + "identifier": "http://d-nb.info/gnd/1055068716", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - http://de.wikipedia.org/wiki/Kosov%C3%BD_potok" ] + }, + { + "noteType": "general", + "label": [ + "am Oberlauf auch Wonschabach, Wunschelbach, Altbach" + ] } ], "pid": "1055068716", @@ -14725,7 +14659,7 @@ "Kosi\u0301 potok", "Amselbach" ], - "md5": "7a7ae4ef9e6df9e143b720a137911131" + "md5": "42ad55d6940b157255fe46ed76c587ea" }, { "authorized_access_point": "Uhlsta\u0308dt-Kirchhasel- Gro\u00dfkochberg", @@ -14746,12 +14680,19 @@ "value": "(DE-588)1054961824" } ], + "identifier": "http://d-nb.info/gnd/1054961824", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/wiki/Gro\u00dfkochberg" ] + }, + { + "noteType": "general", + "label": [ + "Gro\u00dfkochberg ist eine ehemals selbsta\u0308ndige Gemeinde; seit 1.12.2007 Ortsteil von Uhlsta\u0308dt-Kirchhasel. Im Landkreis Saalfeld-Rudolstadt in Thu\u0308ringen" + ] } ], "pid": "1054961824", @@ -14764,28 +14705,10 @@ "authorized_access_point": "Gro\u00dfkochberg" } ], - "md5": "143dd7e25f3a6bcedcc41482a5b928ef" + "md5": "ccabc3b3dface0faeaf30fa0868f6855" }, { "authorized_access_point": "Bengalen", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "vbal", - "name": "Bengalen" - } - ], - "closeMatch": [ - { - "authorized_access_point": "Bengalen (Region)", - "source": "GND", - "identifiedBy": { - "type": "bf:Nbn", - "value": "(DE-101)989943666", - "source": "(DE-101)989943666" - } - } - ], "identifiedBy": [ { "source": "GND", @@ -14803,22 +14726,42 @@ "value": "(DE-588)1054631026" } ], + "identifier": "http://d-nb.info/gnd/1054631026", + "exactMatch": [ + { + "authorized_access_point": "Bengalen (Region)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)989943666" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "091420466" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Landschaft im NO des indischen Subkontinents: westl. Teil umfa\u00dft indischen Bundesstaat West Bengal, gro\u0308\u00dfere o\u0308stl. Teil bildet den Staatsraum von Bangladesch" + ] + } + ], "pid": "1054631026", "type": "bf:Place", "variant_access_point": [ "Bengal" ], - "md5": "8ddbc98425cf682decdb9384ae6541e2" + "md5": "a7d14fcf213f002fb4ea7c93ca9d742a" }, { "authorized_access_point": "Giersdorfer Wasser", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -14836,19 +14779,13 @@ "value": "(DE-588)1054611041" } ], + "identifier": "http://d-nb.info/gnd/1054611041", "pid": "1054611041", "type": "bf:Place", - "md5": "d577618063d1bb4aaa4ae2e50fdc868e" + "md5": "98e4ed0892f2aa63bc5b0387a2d1eb83" }, { "authorized_access_point": "Fo\u0308hrenbach (Fluss)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -14866,19 +14803,21 @@ "value": "(DE-588)1054442959" } ], + "identifier": "http://d-nb.info/gnd/1054442959", + "note": [ + { + "noteType": "general", + "label": [ + "Nebenfluss der Nei\u00dfe" + ] + } + ], "pid": "1054442959", "type": "bf:Place", - "md5": "8a77da2c743fd93153863de450343d2d" + "md5": "c5909c53349ed2ecdff508de76fa0102" }, { "authorized_access_point": "Krauthausener Teich", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -14896,15 +14835,16 @@ "value": "(DE-588)1054382255" } ], + "identifier": "http://d-nb.info/gnd/1054382255", "pid": "1054382255", "type": "bf:Place", "variant_access_point": [ "Krauthausener Mu\u0308hlenteich" ], - "md5": "da71a4e1f705e79dd6b908b9ee19ed2b" + "md5": "997cac04e2bdd590486be18c0285bf71" }, { - "authorized_access_point": "Brunta\u0301l", + "authorized_access_point": "Brunta\u0301l - Region", "identifiedBy": [ { "source": "GND", @@ -14922,12 +14862,13 @@ "value": "(DE-588)1054036489" } ], + "identifier": "http://d-nb.info/gnd/1054036489", "pid": "1054036489", "type": "bf:Place", - "md5": "caa1a34df225310db8b327a00e0e8700" + "md5": "52cf8799b3af2a07e1154583d7af184c" }, { - "authorized_access_point": "Krnov", + "authorized_access_point": "Krnov - Region", "identifiedBy": [ { "source": "GND", @@ -14945,6 +14886,7 @@ "value": "(DE-588)1054036322" } ], + "identifier": "http://d-nb.info/gnd/1054036322", "pid": "1054036322", "type": "bf:Place", "variant_access_point": [ @@ -14952,7 +14894,7 @@ "Ja\u0308gerndorf", "S\u0301la\u0328sk Karniowski" ], - "md5": "c04d9d9a84882eab83aed0a0e60ca46a" + "md5": "a270535dfb91ec9a08c2ca344ea03f69" }, { "authorized_access_point": "Vogtla\u0308ndische Schweiz", @@ -14973,19 +14915,13 @@ "value": "(DE-588)105382467X" } ], + "identifier": "http://d-nb.info/gnd/105382467X", "pid": "105382467X", "type": "bf:Place", - "md5": "67f227e86cbeb7127f141649a10bcfb0" + "md5": "c0aa50d209b4ab16e91e4c90106a0430" }, { "authorized_access_point": "Neulandhalle (Friedrichskoog)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Mehrzweckbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -15003,6 +14939,7 @@ "value": "(DE-588)1053733119" } ], + "identifier": "http://d-nb.info/gnd/1053733119", "note": [ { "noteType": "dataSource", @@ -15025,17 +14962,10 @@ "Neulandhalle (Dieksanderkoog)", "Neulandhalle (Adolf-Hitler-Koog)" ], - "md5": "61a13b5041cc1a270e7822d4c1503d64" + "md5": "be3d177d45f6f54440c78c28e0a0e812" }, { "authorized_access_point": "Schlossgarten Oldenburg (Oldenburg (Oldenburg))", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Landschaftsgarten" - } - ], "identifiedBy": [ { "source": "GND", @@ -15053,12 +14983,19 @@ "value": "(DE-588)1053694857" } ], + "identifier": "http://d-nb.info/gnd/1053694857", "note": [ { "noteType": "dataSource", "label": [ "Private Seiten - http://www.schlossgarten-oldenburg.de" ] + }, + { + "noteType": "general", + "label": [ + "Englischer Landschaftsgarten fu\u0308r Herzog Peter Friedrich Ludwig von Oldenburg 1814/19 von J. F. W. Bosse angelegt, spa\u0308ter erweitert" + ] } ], "pid": "1053694857", @@ -15071,17 +15008,10 @@ "variant_access_point": [ "Schlosspark Oldenburg (Oldenburg (Oldenburg))" ], - "md5": "e3acfd82d232fd0b3988037cc1faacad" + "md5": "b05658a5bb1b25e424325d1e62135e34" }, { "authorized_access_point": "Kollegiengeba\u0308ude des Collegium Sancti Hieronymi (Dillingen a.d. Donau)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kollegiengeba\u0308ude" - } - ], "identifiedBy": [ { "source": "GND", @@ -15099,6 +15029,7 @@ "value": "(DE-588)105366916X" } ], + "identifier": "http://d-nb.info/gnd/105366916X", "note": [ { "noteType": "dataSource", @@ -15117,22 +15048,10 @@ "variant_access_point": [ "Geba\u0308ude des ehemaligen Jesuitenkollegs (Dillingen a.d. Donau)" ], - "md5": "1ca6e8fded7e4a74ab81ccd894b4711f" + "md5": "47bc739398bbde69296334a72b268c44" }, { "authorized_access_point": "Fleischhauerstra\u00dfe 79 (Lu\u0308beck)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Giebelhaus" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Bu\u0308rgerhaus" - } - ], "identifiedBy": [ { "source": "GND", @@ -15150,6 +15069,7 @@ "value": "(DE-588)1053585039" } ], + "identifier": "http://d-nb.info/gnd/1053585039", "pid": "1053585039", "type": "bf:Place", "broader": [ @@ -15160,22 +15080,10 @@ "variant_access_point": [ "Dielenhaus Fleischhauerstra\u00dfe 79 (Lu\u0308beck)" ], - "md5": "82c87e1a11121e5dbdc9bcb2f8f008d3" + "md5": "b9274b19ae8cabd33ca2f53c8be052c1" }, { - "authorized_access_point": "Fuggerha\u0308user", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kabinett" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Studiolo" - } - ], + "authorized_access_point": "Fuggerha\u0308user - Badstuben", "identifiedBy": [ { "source": "GND", @@ -15193,6 +15101,7 @@ "value": "(DE-588)1053578571" } ], + "identifier": "http://d-nb.info/gnd/1053578571", "pid": "1053578571", "type": "bf:Place", "broader": [ @@ -15209,17 +15118,10 @@ "Fuggerha\u0308user", "Fuggerha\u0308user Augsburg, Badestuben" ], - "md5": "1db1041a4bdfe68e5de5ce75ef20ad61" + "md5": "08b479cbfe64b3cc123f11cea5daecf0" }, { "authorized_access_point": "Museumsbau des Altonaer Museums (Hamburg)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Museumsbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -15237,6 +15139,7 @@ "value": "(DE-588)1053495382" } ], + "identifier": "http://d-nb.info/gnd/1053495382", "note": [ { "noteType": "dataSource", @@ -15259,17 +15162,10 @@ "Museumsbau Museum Altona (Hamburg)", "Museumsgeba\u0308ude des Museums Altona (Hamburg-Altona)" ], - "md5": "0db58bfd3ff1712fb8721bd3201c997b" + "md5": "0cdef41a394e84a0efce4e14bccf72e8" }, { "authorized_access_point": "Thesmophorion (Rhamnus, Attika)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kultsta\u0308tte" - } - ], "identifiedBy": [ { "source": "GND", @@ -15287,6 +15183,15 @@ "value": "(DE-588)1053460856" } ], + "identifier": "http://d-nb.info/gnd/1053460856", + "note": [ + { + "noteType": "general", + "label": [ + "Heiligtum der Demeter, Thesmophorien (Fruchtbarkeitsritus)" + ] + } + ], "pid": "1053460856", "type": "bf:Place", "broader": [ @@ -15294,32 +15199,10 @@ "authorized_access_point": "Rhamnus (Attika)" } ], - "md5": "b99f3c32e15e6da8ba5087144b5d68cd" + "md5": "904da8fe69d29da55b7c1fd4a413b0b5" }, { "authorized_access_point": "Alter Seidenhof (Zu\u0308rich)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Seidenindustrie" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fabrikgeba\u0308ude" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Vereinsgeba\u0308ude" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Gescha\u0308ftshaus" - } - ], "identifiedBy": [ { "source": "GND", @@ -15337,11 +15220,13 @@ "value": "(DE-588)1051746663" } ], + "identifier": "http://d-nb.info/gnd/1051746663", "note": [ { "noteType": "general", "label": [ - "Kunstdenkma\u0308ler CH" + "Kunstdenkma\u0308ler CH", + "An der Sihlstrasse 20: In den Jahren 1812 und 1874 fanden gro\u0308ssere Umbauarbeiten statt, bis das urspru\u0308ngliche Geba\u0308ude 1892 ga\u0308nzlich verschwand und es zum Vereinshaus des Kaufma\u0308nnischen Vereins Zu\u0308rich ausgebaut wurde" ] } ], @@ -15355,7 +15240,7 @@ "variant_access_point": [ "Alt Seidenhof (Zu\u0308rich)" ], - "md5": "aa31a5f02d0291e09beb57ce923a3960" + "md5": "eccc239ed5b193df4dea0474e9743a07" }, { "authorized_access_point": "Juodupe\u0307", @@ -15376,6 +15261,15 @@ "value": "(DE-588)1044268069" } ], + "identifier": "http://d-nb.info/gnd/1044268069", + "note": [ + { + "noteType": "general", + "label": [ + "Stadt im Landkreis Paneve\u0307z\u030cys in Litauen" + ] + } + ], "pid": "1044268069", "type": "bf:Place", "broader": [ @@ -15387,7 +15281,7 @@ "Juodupe", "Pojedupie" ], - "md5": "94ddda81e4db64ddad6e5542a23d2a4f" + "md5": "cca65d035d90200492fdc54e9949b3d1" }, { "authorized_access_point": "Immichenhain", @@ -15408,12 +15302,19 @@ "value": "(DE-588)1038831628" } ], + "identifier": "http://d-nb.info/gnd/1038831628", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - http://de.wikipedia.org/wiki/Immichenhain" ] + }, + { + "noteType": "general", + "label": [ + "ehemals selbsta\u0308ndige Gemeinde, seit 1.4.1972 Ortsteil von Ottrau. Im Schwalm-Eder-Kreis in Hessen" + ] } ], "pid": "1038831628", @@ -15426,7 +15327,7 @@ "variant_access_point": [ "Imchenhain" ], - "md5": "cef9d782117ac26a5b3caffee0f66ae3" + "md5": "4d908697b0f984aa469a7dc80d9867d9" }, { "authorized_access_point": "Taima (Saudi-Arabien)", @@ -15447,6 +15348,15 @@ "value": "(DE-588)1036912949" } ], + "identifier": "http://d-nb.info/gnd/1036912949", + "note": [ + { + "noteType": "general", + "label": [ + "Oasenstadt in NW-Saudi-Arabien, seit ca. 2. Jt. v.Chr. besiedelt" + ] + } + ], "pid": "1036912949", "type": "bf:Place", "variant_access_point": [ @@ -15455,10 +15365,10 @@ "Teima", "Tayma\u0304\u02be" ], - "md5": "9b7ac1b51f2cf4749a8cc05f0f0a92e8" + "md5": "df672c6b7de5ae0e74492b73e2e85bed" }, { - "authorized_access_point": "Friedrichslohra und Amtlohra", + "authorized_access_point": "Friedrichslohra und Amtlohra - Region", "identifiedBy": [ { "source": "GND", @@ -15476,19 +15386,13 @@ "value": "(DE-588)1036573141" } ], + "identifier": "http://d-nb.info/gnd/1036573141", "pid": "1036573141", "type": "bf:Place", - "md5": "21a0edcb3851dd1d29b053d30181f3b5" + "md5": "fc7c21d52d0e3e2beb088b476a8820c1" }, { "authorized_access_point": "Maria Himmelfahrt (Waldbreitbach)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Basilika" - } - ], "identifiedBy": [ { "source": "GND", @@ -15506,12 +15410,19 @@ "value": "(DE-588)1035487640" } ], + "identifier": "http://d-nb.info/gnd/1035487640", "note": [ { "noteType": "dataSource", "label": [ "Internet - https://www.salzkoerner.de/?page_id=525" ] + }, + { + "noteType": "general", + "label": [ + "Anfang des 13. Jahrhunderts vom Deutschherrenorden als Ordenskirche errichtet, 1870 niedergelegt blieb nur der alte Westturm beim Neubau 1876-1878 erhalten" + ] } ], "pid": "1035487640", @@ -15528,17 +15439,10 @@ "Kirche Maria Himmelfahrt (Waldbreitbach)", "Maria\u0308 Himmelfahrt (Waldbreitbach)" ], - "md5": "5a56aafcbf8e0b995bd8bfa5d8347169" + "md5": "0bf8268431acd19c12648fc88435e0e1" }, { "authorized_access_point": "Evangelische Kirche Nu\u0308mbrecht (Nu\u0308mbrecht)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kirchenbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -15556,6 +15460,7 @@ "value": "(DE-588)1032436034" } ], + "identifier": "http://d-nb.info/gnd/1032436034", "pid": "1032436034", "type": "bf:Place", "broader": [ @@ -15566,7 +15471,7 @@ "variant_access_point": [ "Ev. Kirche Nu\u0308mbrecht (Nu\u0308mbrecht)" ], - "md5": "4e465c09f06ac6c821e50424269fef0f" + "md5": "85816f49a031ec6a876c7b767266b783" }, { "authorized_access_point": "Gelgaudis\u030ckis", @@ -15587,12 +15492,19 @@ "value": "(DE-588)1031571922" } ], + "identifier": "http://d-nb.info/gnd/1031571922", "note": [ { "noteType": "dataSource", "label": [ "Homepage - http://www.gelgaudiskis.lt/" ] + }, + { + "noteType": "general", + "label": [ + "Stadt in Litauen, im Bezirk Mariampol. Am Flu\u00df Niemen (dt. Memel, pol. Niemen, lit. Nemunas, russ. Neman)." + ] } ], "pid": "1031571922", @@ -15602,7 +15514,7 @@ "Gie\u0142gudyszki", "Gel\u02b9gudis\u030cki" ], - "md5": "e9572c2a4f24d4cef7a7f1677fc15a25" + "md5": "31bb455a69a877e62e33e0479f91a745" }, { "authorized_access_point": "Leipzig-Sellerhausen", @@ -15623,6 +15535,7 @@ "value": "(DE-588)1029389896" } ], + "identifier": "http://d-nb.info/gnd/1029389896", "note": [ { "noteType": "dataSource", @@ -15649,7 +15562,7 @@ "variant_access_point": [ "Sellerhausen (Leipzig)" ], - "md5": "585673ddcee8890a37f99e8433131dec" + "md5": "820aa8ed1cbef16a7af6e2a7347d317c" }, { "authorized_access_point": "Leipzig-Neusellerhausen", @@ -15670,6 +15583,7 @@ "value": "(DE-588)1029389233" } ], + "identifier": "http://d-nb.info/gnd/1029389233", "pid": "1029389233", "type": "bf:Place", "related": [ @@ -15683,7 +15597,7 @@ "variant_access_point": [ "Neusellerhausen (Leipzig)" ], - "md5": "dfe8ba029aa8694d1813e0ebb8725b18" + "md5": "346f2760c93a259c73be1d9d19a37f68" }, { "authorized_access_point": "Leipzig-Neureudnitz", @@ -15704,6 +15618,7 @@ "value": "(DE-588)1029388334" } ], + "identifier": "http://d-nb.info/gnd/1029388334", "pid": "1029388334", "type": "bf:Place", "related": [ @@ -15717,17 +15632,10 @@ "variant_access_point": [ "Neureudnitz (Leipzig)" ], - "md5": "f02354a66646a5bfa84787334bfbb149" + "md5": "68cca9876bf66fab2e512787e287f8b5" }, { "authorized_access_point": "Amtsbezirk Upyte\u0307", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Amtsbezirk" - } - ], "identifiedBy": [ { "source": "GND", @@ -15745,12 +15653,19 @@ "value": "(DE-588)1028231660" } ], + "identifier": "http://d-nb.info/gnd/1028231660", "note": [ { "noteType": "dataSource", "label": [ "wikipedia - https://en.wikipedia.org/w/index.php?title=Upyt%C4%97&oldid=1181420912" ] + }, + { + "noteType": "general", + "label": [ + "Verwaltungseinheit im Landkreis Paneve\u0307z\u030cys, Litauen" + ] } ], "pid": "1028231660", @@ -15766,7 +15681,7 @@ "variant_access_point": [ "Upyte\u0307s seniu\u0304nija" ], - "md5": "39b25e757d39b37b479bea5fdb2bb674" + "md5": "5a11caae852250db90e66955fbd8db08" }, { "authorized_access_point": "Gro\u00df Du\u0308ben", @@ -15787,13 +15702,22 @@ "value": "(DE-588)1024812693" } ], + "identifier": "http://d-nb.info/gnd/1024812693", + "note": [ + { + "noteType": "general", + "label": [ + "Gemeinde im Landkreis Go\u0308rlitz , Sachsen." + ] + } + ], "pid": "1024812693", "type": "bf:Place", "variant_access_point": [ "Gro\u00df-Du\u0308ben", "Dz\u0301e\u030cwin" ], - "md5": "b08136e0b2f63a94ea3b408fbdfaca89" + "md5": "0c23c658a87bfd9a9ea8731d4341b541" }, { "authorized_access_point": "Kalvarija", @@ -15814,6 +15738,15 @@ "value": "(DE-588)7864312-0" } ], + "identifier": "http://d-nb.info/gnd/7864312-0", + "note": [ + { + "noteType": "general", + "label": [ + "Stadt im Su\u0308den Litauens, Bezirk Marijampole\u0307" + ] + } + ], "pid": "1021396656", "type": "bf:Place", "variant_access_point": [ @@ -15825,10 +15758,10 @@ "Kalwaria", "Kalwariya" ], - "md5": "b58270fb5a5e4e099a355bf667595793" + "md5": "33e22984e326dbd72d5ca04aaa2c41c9" }, { - "authorized_access_point": "Alksniupiai", + "authorized_access_point": "Alksniupiai - Region", "identifiedBy": [ { "source": "GND", @@ -15846,12 +15779,21 @@ "value": "(DE-588)7861847-2" } ], + "identifier": "http://d-nb.info/gnd/7861847-2", + "note": [ + { + "noteType": "general", + "label": [ + "Region im Bezirk S\u030ciauliai, zwischen Rozalimas, Radvilis\u030ckis, Seduva und Smilgiai gelegen" + ] + } + ], "pid": "1021113018", "type": "bf:Place", "variant_access_point": [ "Alksniupiu\u031c kras\u030ctas" ], - "md5": "57ee956d1771d00ddd16d4043d5ffff7" + "md5": "7a67d751030cba3f3788f4bdf43f484e" }, { "authorized_access_point": "Kaltane\u0307nai", @@ -15872,6 +15814,15 @@ "value": "(DE-588)7861838-1" } ], + "identifier": "http://d-nb.info/gnd/7861838-1", + "note": [ + { + "noteType": "general", + "label": [ + "Ort im Osten Litauens, im Bezirk S\u030cvenc\u030cionys" + ] + } + ], "pid": "1021112577", "type": "bf:Place", "variant_access_point": [ @@ -15880,7 +15831,7 @@ "Ko\u0142tyniany", "Koltynyany" ], - "md5": "a818c8285db798c940b085bf885cb658" + "md5": "e87cb7e453185395773e66a2d6664eca" }, { "authorized_access_point": "Karkle\u0307nai", @@ -15901,19 +15852,21 @@ "value": "(DE-588)7861835-6" } ], + "identifier": "http://d-nb.info/gnd/7861835-6", + "note": [ + { + "noteType": "general", + "label": [ + "Stadt in Litauen, im Bezirk Kelme\u0307" + ] + } + ], "pid": "1021112518", "type": "bf:Place", - "md5": "10632df39552faf1b9535852170e3b1a" + "md5": "143dbc5d11a79d181cb900e9d90cac87" }, { "authorized_access_point": "Amt Marcinkonys", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Amt" - } - ], "identifiedBy": [ { "source": "GND", @@ -15931,23 +15884,25 @@ "value": "(DE-588)7861831-9" } ], + "identifier": "http://d-nb.info/gnd/7861831-9", + "note": [ + { + "noteType": "general", + "label": [ + "Amtsbezirk der Rajongemeinde Vare\u0307na im Su\u0308den von Litauen" + ] + } + ], "pid": "1021112216", "type": "bf:Place", "variant_access_point": [ "Marcinkoniu\u031c seniu\u0304nija", "Marcinkonys (Amt)" ], - "md5": "39f0fa4071b9dc00395a25bc11c42bab" + "md5": "37327eefbd5d8b973b650e52d7d4bebd" }, { "authorized_access_point": "Wa\u0304di\u0304 al-\u02bfAqi\u0304q", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Tal" - } - ], "identifiedBy": [ { "source": "GND", @@ -15965,13 +15920,22 @@ "value": "(DE-588)7861291-3" } ], + "identifier": "http://d-nb.info/gnd/7861291-3", + "note": [ + { + "noteType": "general", + "label": [ + "Tal in Saudiarabien" + ] + } + ], "pid": "1021056154", "type": "bf:Place", "variant_access_point": [ "Wadi Al-Aqiq", "Wadi Al-Aqeeq" ], - "md5": "20d31449a5eec249b674abf6383cc715" + "md5": "b786dee1a2cfb8143c7288c91e682002" }, { "authorized_access_point": "Kurs\u030ciai (Kelme)", @@ -15992,19 +15956,21 @@ "value": "(DE-588)7860875-2" } ], + "identifier": "http://d-nb.info/gnd/7860875-2", + "note": [ + { + "noteType": "general", + "label": [ + "Dorf im Bezirk Kelme in Litauen" + ] + } + ], "pid": "1020911387", "type": "bf:Place", - "md5": "142f50fa220f2209c6ccb198c6830150" + "md5": "37e5d4b31cc148438cd9afe9705c8970" }, { "authorized_access_point": "Kreis Radvilis\u030ckis", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kreis" - } - ], "identifiedBy": [ { "source": "GND", @@ -16022,13 +15988,22 @@ "value": "(DE-588)7860874-0" } ], + "identifier": "http://d-nb.info/gnd/7860874-0", + "note": [ + { + "noteType": "general", + "label": [ + "Kreis im Bezirk S\u030ciauliai in Litauen" + ] + } + ], "pid": "1020911344", "type": "bf:Place", "variant_access_point": [ "Radvilis\u030ckio rajonas", "Radvilis\u030ckis (Kreis)" ], - "md5": "27e60a7c75968f7c9d124336ddbc23bd" + "md5": "4c540e441cd452ef0e2d116f53274e23" }, { "authorized_access_point": "Ke\u031cstaic\u030ciai", @@ -16049,19 +16024,21 @@ "value": "(DE-588)7860862-4" } ], + "identifier": "http://d-nb.info/gnd/7860862-4", + "note": [ + { + "noteType": "general", + "label": [ + "Dorf im Bezirk Tels\u030ciai in Litauen" + ] + } + ], "pid": "1020911026", "type": "bf:Place", - "md5": "bd1e906c23c587d8c62475d35a01c55a" + "md5": "e29241ed17ec4b4b74599be6582c5fb9" }, { "authorized_access_point": "Kreis Jonava", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kreis" - } - ], "identifiedBy": [ { "source": "GND", @@ -16079,23 +16056,25 @@ "value": "(DE-588)7860647-0" } ], + "identifier": "http://d-nb.info/gnd/7860647-0", + "note": [ + { + "noteType": "general", + "label": [ + "Litauische Rajongemeinde im Bezirk Kaunas" + ] + } + ], "pid": "1020897325", "type": "bf:Place", "variant_access_point": [ "Jonavas rajonas", "Jonava (Kreis)" ], - "md5": "31cc71f45761b9f83b9597831644fab0" + "md5": "8e15953338b80be8ffdeafbfecf02b76" }, { "authorized_access_point": "Kreis Vare\u0307na", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kreis" - } - ], "identifiedBy": [ { "source": "GND", @@ -16113,13 +16092,22 @@ "value": "(DE-588)7860645-7" } ], + "identifier": "http://d-nb.info/gnd/7860645-7", + "note": [ + { + "noteType": "general", + "label": [ + "Kreis im Su\u0308dosten von Litauen, im Bezirk Alytus" + ] + } + ], "pid": "1020897236", "type": "bf:Place", "variant_access_point": [ "Vare\u0307nos rajonas", "Vare\u0307na (Kreis)" ], - "md5": "08d370233ce4d254e8f9e899634a739d" + "md5": "3785a65b1b8b06e07657281c02570d1c" }, { "authorized_access_point": "Ignalina", @@ -16140,12 +16128,21 @@ "value": "(DE-588)7860430-8" } ], + "identifier": "http://d-nb.info/gnd/7860430-8", + "note": [ + { + "noteType": "general", + "label": [ + "Stadt im NO Litauens" + ] + } + ], "pid": "1020865318", "type": "bf:Place", - "md5": "60022fdb51b9b3e0e9c80d18750135a3" + "md5": "b4019664953382cbdafc7402910814a9" }, { - "authorized_access_point": "Ignalina", + "authorized_access_point": "Ignalina - Region", "identifiedBy": [ { "source": "GND", @@ -16163,23 +16160,25 @@ "value": "(DE-588)7860429-1" } ], + "identifier": "http://d-nb.info/gnd/7860429-1", + "note": [ + { + "noteType": "general", + "label": [ + "Region im NO Litauens" + ] + } + ], "pid": "1020865237", "type": "bf:Place", "variant_access_point": [ "Ignalinos kras\u030ctas", "Ignalinskij kraj" ], - "md5": "2c7fc5daba4ccb983e4f46f228df9628" + "md5": "2846fa7990349e1b3d19911aafdcf25b" }, { "authorized_access_point": "Schloss Werenwag", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Schloss" - } - ], "identifiedBy": [ { "source": "GND", @@ -16197,6 +16196,7 @@ "value": "(DE-588)7832565-1" } ], + "identifier": "http://d-nb.info/gnd/7832565-1", "note": [ { "noteType": "general", @@ -16215,10 +16215,10 @@ "variant_access_point": [ "Beuron-Schloss Werenwag" ], - "md5": "5b575e68a220d9a559a2fe8086370f6d" + "md5": "05ca364cc0f3cb7852608cb8a50216d1" }, { - "authorized_access_point": "Henningen (Salzwedel)", + "authorized_access_point": "Henningen (Salzwedel) - Region", "identifiedBy": [ { "source": "GND", @@ -16236,9 +16236,10 @@ "value": "(DE-588)7742462-1" } ], + "identifier": "http://d-nb.info/gnd/7742462-1", "pid": "1011060752", "type": "bf:Place", - "md5": "0bf08346bf1809360dae7dc2f38b737d" + "md5": "aa81c86a063b5cfacc490fefca6f5f61" }, { "authorized_access_point": "Eichwege", @@ -16259,6 +16260,15 @@ "value": "(DE-588)7737805-2" } ], + "identifier": "http://d-nb.info/gnd/7737805-2", + "note": [ + { + "noteType": "general", + "label": [ + "seit 1974 Ortsteil von Do\u0308bern" + ] + } + ], "pid": "1010438603", "type": "bf:Place", "variant_access_point": [ @@ -16266,16 +16276,10 @@ "Dubrawka", "Do\u0308bern-Eichwege" ], - "md5": "7a616dcbbb417028653ccb2cb42be626" + "md5": "b6aecbc223590430a87b84813c3d3fb8" }, { "authorized_access_point": "Diho\u0304k", - "closeMatch": [ - { - "authorized_access_point": "\u062f\u06be\u06c6\u06a9", - "source": "GND" - } - ], "identifiedBy": [ { "source": "GND", @@ -16293,6 +16297,15 @@ "value": "(DE-588)7736522-7" } ], + "identifier": "http://d-nb.info/gnd/7736522-7", + "note": [ + { + "noteType": "general", + "label": [ + "Stadt im Irak" + ] + } + ], "pid": "1010249460", "type": "bf:Place", "variant_access_point": [ @@ -16306,7 +16319,7 @@ "Dohuk", "\u062f\u0647\u0648\u0643" ], - "md5": "55de9f91ed6b13ef41581a43f57a5d30" + "md5": "b1c4240e1a2a4c1e253719721df16988" }, { "authorized_access_point": "Hille- Holzhausen II", @@ -16327,12 +16340,19 @@ "value": "(DE-588)7733190-4" } ], + "identifier": "http://d-nb.info/gnd/7733190-4", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Holzhausen_II&oldid=146144601" ] + }, + { + "noteType": "general", + "label": [ + "Seit 01.01.1973 Ortsteil von Hille (Kreis Minden-Lu\u0308bbecke), vorher selbststa\u0308ndig" + ] } ], "pid": "1009847430", @@ -16345,7 +16365,7 @@ "authorized_access_point": "Holzhausen II" } ], - "md5": "14af0bd095f98c9bad0d7def3f0b1016" + "md5": "48edaf0bf4acd80ba26abcca95ca9c57" }, { "authorized_access_point": "Heringsdorf-Siggen", @@ -16366,6 +16386,7 @@ "value": "(DE-588)16098098-7" } ], + "identifier": "http://d-nb.info/gnd/16098098-7", "pid": "1009707922", "type": "bf:Place", "related": [ @@ -16376,7 +16397,7 @@ "variant_access_point": [ "Siggen (Heringsdorf, Kreis Ostholstein)" ], - "md5": "bc91406084d82f45749a373c16166eb9" + "md5": "833f56fe441d7beb72d2b7d71ab9fe05" }, { "authorized_access_point": "Leipzig-Breitenfeld", @@ -16397,12 +16418,19 @@ "value": "(DE-588)7723003-6" } ], + "identifier": "http://d-nb.info/gnd/7723003-6", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/wiki/Breitenfeld_(Leipzig)" ] + }, + { + "noteType": "general", + "label": [ + "Ortsteil von Leipzig seit 1.1.1999, 1271 Dorf urkundl. erwa\u0308hnt; 1923 nach Lindenthal (Leipzig) eingemeindet" + ] } ], "pid": "1008073997", @@ -16418,7 +16446,7 @@ "variant_access_point": [ "Breitenfeld (Leipzig)" ], - "md5": "2ba5c16576d425cb752535b07a3099cd" + "md5": "925c6120b9cf06a36e850f06da16bd9d" }, { "authorized_access_point": "Leipziger Creis", @@ -16439,6 +16467,7 @@ "value": "(DE-588)16065257-1" } ], + "identifier": "http://d-nb.info/gnd/16065257-1", "pid": "1002427517", "type": "bf:Place", "broader": [ @@ -16453,7 +16482,7 @@ "Leipziger Kreis", "Forum fu\u0308r Wissenschaft und Kunst" ], - "md5": "caaee3771c9b6f1cd545f92c9835bac3" + "md5": "05f57f41d545e15f7bd35fe6d4056644" }, { "authorized_access_point": "Lagow (Kreis Oststernberg)", @@ -16474,6 +16503,7 @@ "value": "(DE-588)16063071-X" } ], + "identifier": "http://d-nb.info/gnd/16063071-X", "note": [ { "noteType": "dataSource", @@ -16492,7 +16522,7 @@ "authorized_access_point": "\u0141ago\u0301w (Woiwodschaft Lebus)" } ], - "md5": "38d5592dba0297a2181c6bebe33d1482" + "md5": "909629a8f4b95d9a8d975f9f28cc8cfa" }, { "authorized_access_point": "Leipzig-Bo\u0308hlitz-Ehrenberg", @@ -16513,6 +16543,15 @@ "value": "(DE-588)7672378-1" } ], + "identifier": "http://d-nb.info/gnd/7672378-1", + "note": [ + { + "noteType": "general", + "label": [ + "Stadtteil von Leipzig seit 1.1.1999; Gemeinde Bo\u0308hlitz-Ehrenberg bestand seit 1839" + ] + } + ], "pid": "996588051", "type": "bf:Place", "related": [ @@ -16526,7 +16565,7 @@ "variant_access_point": [ "Bo\u0308hlitz-Ehrenberg (Leipzig)" ], - "md5": "656a3d9bc3267e0deba1659c81203b3a" + "md5": "3501458b8030ce425721e3cadd32f3f7" }, { "authorized_access_point": "Kotzenau", @@ -16547,12 +16586,19 @@ "value": "(DE-588)16019456-8" } ], + "identifier": "http://d-nb.info/gnd/16019456-8", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Chocian%C3%B3w&oldid=245141308" ] + }, + { + "noteType": "general", + "label": [ + "Stadt im preu\u00dfischen Kreis Lu\u0308bben, ab 1945 Chociano\u0301w in der polnischen der Woiwodschaft Niederschlesien" + ] } ], "pid": "996155910", @@ -16562,7 +16608,7 @@ "authorized_access_point": "Chociano\u0301w" } ], - "md5": "82ba8667e908fb3df3e08d5711fb748b" + "md5": "c516dadd4f3f6998c156ce7b51a2a79c" }, { "authorized_access_point": "Gru\u0308nberg-Queckborn", @@ -16583,6 +16629,15 @@ "value": "(DE-588)16014739-6" } ], + "identifier": "http://d-nb.info/gnd/16014739-6", + "note": [ + { + "noteType": "general", + "label": [ + "Stadtteil von Gru\u0308nberg im Landkreis Gie\u00dfen, Hessen" + ] + } + ], "pid": "995191506", "type": "bf:Place", "related": [ @@ -16597,7 +16652,7 @@ "Gru\u0308nberg (Landkreis Gie\u00dfen-Queckborn)", "Queckborn (Gru\u0308nberg-Queckborn)" ], - "md5": "2b74334de1abd1fb9f101e69642194d4" + "md5": "6dc721536ac95e440a1233948703b659" }, { "authorized_access_point": "Leipzig-Zuckelhausen", @@ -16618,12 +16673,19 @@ "value": "(DE-588)7660336-2" } ], + "identifier": "http://d-nb.info/gnd/7660336-2", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Zuckelhausen&oldid=234613791" ] + }, + { + "noteType": "general", + "label": [ + "Stadtteil von Leipzig seit 1.1.1999, davor Ortsteil von Holzhausen " + ] } ], "pid": "994536666", @@ -16639,7 +16701,7 @@ "variant_access_point": [ "Zuckelhausen (Leipzig)" ], - "md5": "44f916c5ccb5f36de416610cdd977b43" + "md5": "61b5ef9ecd78677fd9af65f0cac67c03" }, { "authorized_access_point": "Daubitz", @@ -16660,23 +16722,25 @@ "value": "(DE-588)7642802-3" } ], + "identifier": "http://d-nb.info/gnd/7642802-3", + "note": [ + { + "noteType": "general", + "label": [ + "Ortsteil von Rietschen, Landkreis Go\u0308rlitz (1.8.1994-31.7.2008: Niederschlesischer Oberlausitzkreis; 25.7.1952-31.7.1994: (Land-)Kreis Wei\u00dfwasser), 1346, 1366 und 1398 urkundl. erwa\u0308hnt, 15.3.1992 mit Rietschen, Teicha u. Viereichen zu Rietschen zusammengeschlossen" + ] + } + ], "pid": "992346371", "type": "bf:Place", "variant_access_point": [ "Dubc", "Rietschen-Daubitz" ], - "md5": "8513c7521182336433bfc40af6f838bb" + "md5": "ee642680987c1d577dc42de769516cca" }, { "authorized_access_point": "Sankt Maria zu den Stufen (Ko\u0308ln)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Basilika" - } - ], "identifiedBy": [ { "source": "GND", @@ -16694,12 +16758,19 @@ "value": "(DE-588)7617898-5" } ], + "identifier": "http://d-nb.info/gnd/7617898-5", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=St._Maria_ad_Gradus_(K%C3%B6ln)&oldid=205659895" ] + }, + { + "noteType": "general", + "label": [ + "Romanische Stiftskirche mit eigenem Immunita\u0308tsbezirk; 1059 urkundlich erwa\u0308hnt, 1817 abgerissen" + ] } ], "pid": "989505952", @@ -16717,22 +16788,10 @@ "St. Mariengraden (Ko\u0308ln)", "St. Maria ad gradus (Ko\u0308ln) (Ko\u0308ln)" ], - "md5": "d7038f26d816eec6706d9d6921f067d6" + "md5": "998998460b4a704ac7b3c6f776535ae5" }, { "authorized_access_point": "Kunstpavillon (Heringsdorf, Seebad)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Pavillon" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Ausstellungsbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -16750,6 +16809,15 @@ "value": "(DE-588)7608819-4" } ], + "identifier": "http://d-nb.info/gnd/7608819-4", + "note": [ + { + "noteType": "general", + "label": [ + "Pavillon 1973 (andersltd.: 1970) erbaut nach Entwurf von Ulrich Mu\u0308ther , bewirtschaftet von einer Ku\u0308nstlervereinigung, seit 1990 Usedomer Kunstverein" + ] + } + ], "pid": "98831326X", "type": "bf:Place", "broader": [ @@ -16757,17 +16825,10 @@ "authorized_access_point": "Heringsdorf (Seebad)" } ], - "md5": "a516f74101379d425c3e289d1fc9c063" + "md5": "e3d613025d71195d6de64978f34bd7cb" }, { "authorized_access_point": "Schloss Sommerswalde (Schwante)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Schloss" - } - ], "identifiedBy": [ { "source": "GND", @@ -16785,12 +16846,19 @@ "value": "(DE-588)7577686-8" } ], + "identifier": "http://d-nb.info/gnd/7577686-8", "note": [ { "noteType": "dataSource", "label": [ "Internet - http://www.schwante.de/schloesser.htm" ] + }, + { + "noteType": "general", + "label": [ + "Schlo\u00df 1888/91 von H. Abesser u. J. Kro\u0308ger erbaut; heute von Dharmakaya Schloss Sommerswalde e.V. (Buddhistische Klosterschule und Sozialprojekt) genutzt" + ] } ], "pid": "985253576", @@ -16800,7 +16868,7 @@ "authorized_access_point": "Schwante" } ], - "md5": "3ef4e3eebd0a0c17c53a5458c9a49c4d" + "md5": "3b91f1ba43c2f70c816838efb7abe560" }, { "authorized_access_point": "Leipzig-Su\u0308dost", @@ -16821,19 +16889,13 @@ "value": "(DE-588)10172109-2" } ], + "identifier": "http://d-nb.info/gnd/10172109-2", "pid": "984645942", "type": "bf:Place", - "md5": "b93a96e377c2d83cd605f33de9427342" + "md5": "d9470b837b281fff3ad2c902beff6d1c" }, { "authorized_access_point": "Politischer Bezirk Judenburg", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Bezirk" - } - ], "identifiedBy": [ { "source": "GND", @@ -16851,13 +16913,14 @@ "value": "(DE-588)10145481-8" } ], + "identifier": "http://d-nb.info/gnd/10145481-8", "pid": "980891248", "type": "bf:Place", "variant_access_point": [ "Bezirk Judenburg", "Judenburg (Politischer Bezirk)" ], - "md5": "f9c413f48ca1b0aedd91d5e66dcd6839" + "md5": "872ace2786ddd660a031ea1760ee258f" }, { "authorized_access_point": "Echichens", @@ -16878,12 +16941,21 @@ "value": "(DE-588)7522697-2" } ], + "identifier": "http://d-nb.info/gnd/7522697-2", + "note": [ + { + "noteType": "general", + "label": [ + "Gemeinde im Bezirk Morges, Kanton Waadt" + ] + } + ], "pid": "979131529", "type": "bf:Place", - "md5": "2e601a7363e5cd6f4cdc9b1df7bf177e" + "md5": "a6b06d2ec15513dcff8f33a74e811f77" }, { - "authorized_access_point": "Herzogtum Preu\u00dfen", + "authorized_access_point": "Herzogtum Preu\u00dfen - Ost", "identifiedBy": [ { "source": "GND", @@ -16901,6 +16973,7 @@ "value": "(DE-588)7521235-3" } ], + "identifier": "http://d-nb.info/gnd/7521235-3", "pid": "978966228", "type": "bf:Place", "broader": [ @@ -16911,7 +16984,7 @@ "variant_access_point": [ "Preu\u00dfen (Herzogtum)" ], - "md5": "a1e1787aa029c4c3e597b3a9461cc5c0" + "md5": "739704d01e97837375872dc26565ea52" }, { "authorized_access_point": "Leipzig-Knautkleeberg-Knauthain", @@ -16932,6 +17005,7 @@ "value": "(DE-588)10131913-7" } ], + "identifier": "http://d-nb.info/gnd/10131913-7", "note": [ { "noteType": "dataSource", @@ -16950,7 +17024,7 @@ "variant_access_point": [ "Knautkleeberg-Knauthain" ], - "md5": "188d56c504a7a5d7900c114a48690dc2" + "md5": "6987d60a98383afcb64d3aac29c47d8b" }, { "authorized_access_point": "Ba\u0308riswil (Bern)", @@ -16971,6 +17045,7 @@ "value": "(DE-588)4837436-2" } ], + "identifier": "http://d-nb.info/gnd/4837436-2", "note": [ { "noteType": "dataSource", @@ -16990,7 +17065,7 @@ "Gemeinde Ba\u0308riswil", "Einwohnergemeinde Ba\u0308riswil" ], - "md5": "07963c19369221e3586fc83f4d2dcbb3" + "md5": "9047e65b88a17b58a4b8af14d8a72cd2" }, { "authorized_access_point": "Dreikaiserba\u0308der", @@ -17011,12 +17086,19 @@ "value": "(DE-588)10106723-9" } ], + "identifier": "http://d-nb.info/gnd/10106723-9", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/wiki/Heringsdorf" ] + }, + { + "noteType": "general", + "label": [ + "Seebad auf Usedom, Landkreis Ostvorpommern, 1.1.2005 durch Zusammenschlu\u00df von Ahlbeck, Bansin und Heringsdorf gebildet, 1.1.2006 in Ostseebad Heringsdorf umbenannt" + ] } ], "pid": "975328573", @@ -17040,10 +17122,10 @@ "variant_access_point": [ "Gemeinde Dreikaiserba\u0308der" ], - "md5": "87b226aa58c39ae7657f17e3ffe2a9d8" + "md5": "47b672e395e23e8689a7137ae4f16c4a" }, { - "authorized_access_point": "Amt Haderslev", + "authorized_access_point": "Amt Haderslev - West", "identifiedBy": [ { "source": "GND", @@ -17061,6 +17143,7 @@ "value": "(DE-588)4821311-1" } ], + "identifier": "http://d-nb.info/gnd/4821311-1", "pid": "974245747", "type": "bf:Place", "broader": [ @@ -17072,10 +17155,10 @@ "Amt Hadersleben", "Hadersleben (Amt)" ], - "md5": "4ea14699ef823b518c8589b14987d9e9" + "md5": "18ecf0abfd1ffffcd008f1708ab35207" }, { - "authorized_access_point": "Amt Haderslev", + "authorized_access_point": "Amt Haderslev - Ost", "identifiedBy": [ { "source": "GND", @@ -17093,6 +17176,7 @@ "value": "(DE-588)4821156-4" } ], + "identifier": "http://d-nb.info/gnd/4821156-4", "pid": "97424225X", "type": "bf:Place", "broader": [ @@ -17104,10 +17188,10 @@ "Amt Hadersleben", "Hadersleben (Amt)" ], - "md5": "eeb77cf05e336e34186718d8c1122c75" + "md5": "c0da04768701d5ed46358a542474aa1c" }, { - "authorized_access_point": "Rayyis", + "authorized_access_point": "Rayyis - Region", "identifiedBy": [ { "source": "GND", @@ -17125,12 +17209,13 @@ "value": "(DE-588)4806526-2" } ], + "identifier": "http://d-nb.info/gnd/4806526-2", "pid": "973071648", "type": "bf:Place", - "md5": "6f386d6d9329612e1718566644dbaf2c" + "md5": "5aa63b493244156b664a1b68c1916cd5" }, { - "authorized_access_point": "Saudi-Arabien", + "authorized_access_point": "Saudi-Arabien - Nordost", "identifiedBy": [ { "source": "GND", @@ -17148,6 +17233,7 @@ "value": "(DE-588)4806336-8" } ], + "identifier": "http://d-nb.info/gnd/4806336-8", "pid": "973066261", "type": "bf:Place", "broader": [ @@ -17155,10 +17241,10 @@ "authorized_access_point": "Saudi-Arabien" } ], - "md5": "7bf43d4e23da945dc1e138ca1c867e45" + "md5": "724d28d127383c006795d68d34b82a65" }, { - "authorized_access_point": "Saudi-Arabien", + "authorized_access_point": "Saudi-Arabien - Nord", "identifiedBy": [ { "source": "GND", @@ -17176,6 +17262,7 @@ "value": "(DE-588)4806334-4" } ], + "identifier": "http://d-nb.info/gnd/4806334-4", "pid": "973066245", "type": "bf:Place", "broader": [ @@ -17183,10 +17270,10 @@ "authorized_access_point": "Saudi-Arabien" } ], - "md5": "7342145255b4e5c5ebde079a52560b68" + "md5": "53f535d5acb14a5df9bfa7b177d1f9af" }, { - "authorized_access_point": "Riad", + "authorized_access_point": "Riad - Region", "identifiedBy": [ { "source": "GND", @@ -17204,9 +17291,10 @@ "value": "(DE-588)4806060-4" } ], + "identifier": "http://d-nb.info/gnd/4806060-4", "pid": "973040149", "type": "bf:Place", - "md5": "0af6dab7252c65b264bb1c67c5d9a177" + "md5": "50b0011b9ff17d275fcedd50d4d48ff6" }, { "authorized_access_point": "Kirchstetten (Neulengbach)", @@ -17227,12 +17315,19 @@ "value": "(DE-588)4801892-2" } ], + "identifier": "http://d-nb.info/gnd/4801892-2", "note": [ { "noteType": "dataSource", "label": [ "Homepage - http://www.kirchstetten.at" ] + }, + { + "noteType": "general", + "label": [ + "Gleichnamige Katastralgemeinde. - Postleitzahl: 3062, 3061" + ] } ], "pid": "972651438", @@ -17246,7 +17341,7 @@ "Marktgemeinde Kirchstetten", "Dichtergemeinde Kirchstetten" ], - "md5": "e13ce9beccb1e86cbb58c8f5db6dd832" + "md5": "52f0e3748e4b4dd32145b4070a6e2ace" }, { "authorized_access_point": "Berg (Hainburg an der Donau)", @@ -17267,6 +17362,7 @@ "value": "(DE-588)4800591-5" } ], + "identifier": "http://d-nb.info/gnd/4800591-5", "pid": "972586601", "type": "bf:Place", "related": [ @@ -17279,22 +17375,10 @@ "authorized_access_point": "Hainburg an der Donau" } ], - "md5": "41c3e4005a9a84bd133cc142c49a4510" + "md5": "3994d5abf7f7487d4e572011765bbdff" }, { "authorized_access_point": "Melanchthonkirche (Bochum)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kirchenbau" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Baudenkmal" - } - ], "identifiedBy": [ { "source": "GND", @@ -17312,6 +17396,7 @@ "value": "(DE-588)4799377-7" } ], + "identifier": "http://d-nb.info/gnd/4799377-7", "note": [ { "noteType": "dataSource", @@ -17333,17 +17418,10 @@ "variant_access_point": [ "Melanchthonkirche (Bochum-Wiemelhausen)" ], - "md5": "08f6593a2cd14ded611afcbd5811ee35" + "md5": "4f06ac12c7b1deea9c0baaa33aacbcff" }, { "authorized_access_point": "Bezirk Bern", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Bezirk" - } - ], "identifiedBy": [ { "source": "GND", @@ -17361,6 +17439,15 @@ "value": "(DE-588)4781902-9" } ], + "identifier": "http://d-nb.info/gnd/4781902-9", + "note": [ + { + "noteType": "general", + "label": [ + "Bezirk im Kanton Bern" + ] + } + ], "pid": "971359709", "type": "bf:Place", "variant_access_point": [ @@ -17368,10 +17455,10 @@ "Amtsbezirk Bern", "Bern (Bezirk)" ], - "md5": "788094b3dd33d33a9126b236c624f171" + "md5": "e912c627e4ab71389ea632b904781bf5" }, { - "authorized_access_point": "Anjouan (Insel)", + "authorized_access_point": "Anjouan (Insel) - Nord", "identifiedBy": [ { "source": "GND", @@ -17389,6 +17476,7 @@ "value": "(DE-588)4766737-0" } ], + "identifier": "http://d-nb.info/gnd/4766737-0", "pid": "970139470", "type": "bf:Place", "broader": [ @@ -17396,7 +17484,7 @@ "authorized_access_point": "Anjouan (Insel)" } ], - "md5": "4441d1df45d5056aba9fa1593ea5523f" + "md5": "8ae40fa0b33b10f4f62df56d57ea1931" }, { "authorized_access_point": "Sakaka", @@ -17417,6 +17505,15 @@ "value": "(DE-588)4764706-1" } ], + "identifier": "http://d-nb.info/gnd/4764706-1", + "note": [ + { + "noteType": "general", + "label": [ + "Stadt im Norden Saudi-Arabiens" + ] + } + ], "pid": "969971028", "type": "bf:Place", "variant_access_point": [ @@ -17424,7 +17521,7 @@ "Ska\u0304ka", "Saka\u0304ka" ], - "md5": "5cca7318833960374151fd49506f67fe" + "md5": "ded2d6c18d21039a6d07d438a1a04c7b" }, { "authorized_access_point": "Ushayqir", @@ -17445,12 +17542,21 @@ "value": "(DE-588)4758499-3" } ], + "identifier": "http://d-nb.info/gnd/4758499-3", + "note": [ + { + "noteType": "general", + "label": [ + "Stadt in Saudi-Arabien" + ] + } + ], "pid": "969491131", "type": "bf:Place", "variant_access_point": [ "Us\u030caiqir" ], - "md5": "013c2ed04e336f224c6844f2fcac29d3" + "md5": "6e6026077d121defafdedc66953484ba" }, { "authorized_access_point": "Sayha\u0304t", @@ -17471,13 +17577,22 @@ "value": "(DE-588)4734021-6" } ], + "identifier": "http://d-nb.info/gnd/4734021-6", + "note": [ + { + "noteType": "general", + "label": [ + "Stadt in der Provinz as\u030c-S\u030carqi\u0304ya in Saudi-Arabien" + ] + } + ], "pid": "967753546", "type": "bf:Place", "variant_access_point": [ "Si\u0304ha\u0304t", "Saiha\u0304t" ], - "md5": "85423fa53ebc7bae0fde3f50b9ede918" + "md5": "8454c5c786c4c0b35c11d40812643321" }, { "authorized_access_point": "O\u0308tigheim", @@ -17498,6 +17613,7 @@ "value": "(DE-588)4732923-3" } ], + "identifier": "http://d-nb.info/gnd/4732923-3", "note": [ { "noteType": "dataSource", @@ -17505,6 +17621,12 @@ "Homepage - https://www.oetigheim.de/", "Wikipedia - https://de.wikipedia.org/w/index.php?title=%C3%96tigheim&oldid=246016894" ] + }, + { + "noteType": "general", + "label": [ + "Gemeinde im Landkreis Rastatt" + ] } ], "pid": "967681952", @@ -17512,17 +17634,10 @@ "variant_access_point": [ "Gemeinde O\u0308tigheim" ], - "md5": "507e14607c699f2944cfc2d4006baff2" + "md5": "4a2fed0ef08500af94e1e1d134a3a9ad" }, { "authorized_access_point": "Goethewanderweg", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Wanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -17540,12 +17655,19 @@ "value": "(DE-588)4731282-8" } ], + "identifier": "http://d-nb.info/gnd/4731282-8", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Goethewanderweg_Ilmenau%E2%80%93St%C3%BCtzerbach&oldid=242625559" ] + }, + { + "noteType": "general", + "label": [ + "18,5 km lang, 1970 angelegt" + ] } ], "pid": "967581176", @@ -17561,17 +17683,10 @@ "variant_access_point": [ "Goethe-Wanderweg" ], - "md5": "b4485ccb6e2735211d94937f1cbfdc95" + "md5": "624ba00ab201502fe62b855e394a09a3" }, { "authorized_access_point": "Nationalpark Eifel", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Nationalpark" - } - ], "identifiedBy": [ { "source": "GND", @@ -17589,12 +17704,19 @@ "value": "(DE-588)4725322-8" } ], + "identifier": "http://d-nb.info/gnd/4725322-8", "note": [ { "noteType": "dataSource", "label": [ "Homepage - https://www.nationalpark-eifel.de" ] + }, + { + "noteType": "general", + "label": [ + "Nationalpark im Gebiet um den Truppenu\u0308bungsplatz Vogelsang mit den Waldgebieten Kermeter und Dedenborn, ero\u0308ffnet am 11.1.2004" + ] } ], "pid": "967180953", @@ -17604,7 +17726,7 @@ "authorized_access_point": "Nordrhein-Westfalen" } ], - "md5": "05086ca35923ecc619fcf472e848606d" + "md5": "57900ebbc2115c164e8a44fcf593e759" }, { "authorized_access_point": "Leipzig-Miltitz", @@ -17625,6 +17747,15 @@ "value": "(DE-588)4725054-9" } ], + "identifier": "http://d-nb.info/gnd/4725054-9", + "note": [ + { + "noteType": "general", + "label": [ + "Stadtteil von Leipzig seit 1.1.1999" + ] + } + ], "pid": "967160480", "type": "bf:Place", "related": [ @@ -17638,7 +17769,7 @@ "variant_access_point": [ "Miltitz (Leipzig)" ], - "md5": "1f9f5fb2fe8a0f43e4ed71e742275763" + "md5": "f59240674954c145d83e1f6d694f2552" }, { "authorized_access_point": "Leipzig- Innere Westvorstadt", @@ -17659,6 +17790,15 @@ "value": "(DE-588)4710588-4" } ], + "identifier": "http://d-nb.info/gnd/4710588-4", + "note": [ + { + "noteType": "general", + "label": [ + "Wohn-, Ku\u0308nstler- und Kneipenviertel an Westrand des Stadtzentrums angrenzend" + ] + } + ], "pid": "96577578X", "type": "bf:Place", "related": [ @@ -17671,7 +17811,7 @@ "Leipzig-Kolonnadenviertel", "Kolonnadenviertel (Leipzig)" ], - "md5": "5be01ab8c4afd9919019b2764b8fa55e" + "md5": "f8e957c50d425a7dd7fff12e91569fdb" }, { "authorized_access_point": "Leipzig-Abtnaundorf", @@ -17692,6 +17832,15 @@ "value": "(DE-588)4710572-0" } ], + "identifier": "http://d-nb.info/gnd/4710572-0", + "note": [ + { + "noteType": "general", + "label": [ + "Stadtteil im Nordosten Leipzigs seit 1930" + ] + } + ], "pid": "965775429", "type": "bf:Place", "related": [ @@ -17705,7 +17854,7 @@ "variant_access_point": [ "Abtnaundorf (Leipzig)" ], - "md5": "0d81132e7928698b5ac5852971f2a3d6" + "md5": "d19b4f9fc7de2e4b88d4f04f46c9dfec" }, { "authorized_access_point": "Leipzig-Wahren", @@ -17726,6 +17875,7 @@ "value": "(DE-588)4710554-9" } ], + "identifier": "http://d-nb.info/gnd/4710554-9", "pid": "965774910", "type": "bf:Place", "related": [ @@ -17739,7 +17889,7 @@ "variant_access_point": [ "Wahren (Leipzig)" ], - "md5": "bccb95ce32ab851915ea2c24841d5490" + "md5": "422aacdec32e520f2a465a4050c46f7e" }, { "authorized_access_point": "Leipzig-Neustadt-Neuscho\u0308nefeld", @@ -17760,6 +17910,15 @@ "value": "(DE-588)4710355-3" } ], + "identifier": "http://d-nb.info/gnd/4710355-3", + "note": [ + { + "noteType": "general", + "label": [ + "Ortsteile von Leipzig 18.3.1992 administrativ zusammengelegt" + ] + } + ], "pid": "965759059", "type": "bf:Place", "related": [ @@ -17773,7 +17932,7 @@ "variant_access_point": [ "Neustadt-Neuscho\u0308nefeld (Leipzig)" ], - "md5": "0d6704d15962397a055fb49614a00304" + "md5": "cf4c427b64b0ed10e418db4f5f657a50" }, { "authorized_access_point": "Leipzig-Volkmarsdorf", @@ -17794,6 +17953,15 @@ "value": "(DE-588)4710342-5" } ], + "identifier": "http://d-nb.info/gnd/4710342-5", + "note": [ + { + "noteType": "general", + "label": [ + "Ortsteil seit 1890" + ] + } + ], "pid": "96575877X", "type": "bf:Place", "related": [ @@ -17807,7 +17975,7 @@ "variant_access_point": [ "Volkmarsdorf (Leipzig)" ], - "md5": "9b825ad67bf6db7f4637ef0e00c170a1" + "md5": "18c4d13fbaa4735088bd9cf74c6438e5" }, { "authorized_access_point": "Leipzig- A\u0308u\u00dfere Su\u0308dvorstadt", @@ -17828,6 +17996,15 @@ "value": "(DE-588)4708270-7" } ], + "identifier": "http://d-nb.info/gnd/4708270-7", + "note": [ + { + "noteType": "general", + "label": [ + "Gebiet zwischen Innerer Su\u0308dvorstadt und Connewitz" + ] + } + ], "pid": "96563860X", "type": "bf:Place", "related": [ @@ -17838,7 +18015,7 @@ "variant_access_point": [ "A\u0308u\u00dfere Su\u0308dvorstadt (Leipzig)" ], - "md5": "1ef96084966b91e680fe7828702a0ab4" + "md5": "76f4d71d20e3e33c866242c2064839bf" }, { "authorized_access_point": "Les Ponts-de-Martel", @@ -17859,6 +18036,15 @@ "value": "(DE-588)4696241-4" } ], + "identifier": "http://d-nb.info/gnd/4696241-4", + "note": [ + { + "noteType": "general", + "label": [ + "Gemeinde im Kt. Neuenburg" + ] + } + ], "pid": "964991608", "type": "bf:Place", "variant_access_point": [ @@ -17866,28 +18052,10 @@ "LesPonts-de-Martel", "Ponts-de-Martel" ], - "md5": "aa5855e051d30f17856469f28a682594" + "md5": "e078518f05d6f55b2e0b34ea194a81f0" }, { "authorized_access_point": "Amt Vejle", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Amt" - } - ], - "closeMatch": [ - { - "authorized_access_point": "Vejle (Amt)", - "source": "GND", - "identifiedBy": { - "type": "bf:Nbn", - "value": "(DE-101)997977485", - "source": "(DE-101)997977485" - } - } - ], "identifiedBy": [ { "source": "GND", @@ -17905,6 +18073,33 @@ "value": "(DE-588)4685636-5" } ], + "identifier": "http://d-nb.info/gnd/4685636-5", + "exactMatch": [ + { + "authorized_access_point": "Vejle (Amt)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)997977485" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "094419019" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Ehemaliges Amt in der Region Su\u0308dda\u0308nemark" + ] + } + ], "pid": "964462427", "type": "bf:Place", "related": [ @@ -17922,7 +18117,7 @@ "Vejle Amt", "Vejle Amtskommune" ], - "md5": "37edbcb66cfd8db91dd3df6731d0bfb5" + "md5": "465be8f8dccc757f156fbfaeec653a25" }, { "authorized_access_point": "Leipzig-Anger-Crottendorf", @@ -17943,6 +18138,7 @@ "value": "(DE-588)4679998-9" } ], + "identifier": "http://d-nb.info/gnd/4679998-9", "pid": "96411822X", "type": "bf:Place", "related": [ @@ -17956,10 +18152,10 @@ "variant_access_point": [ "Anger-Crottendorf (Leipzig)" ], - "md5": "786c99e172022f148b657a1e4e6e1d9a" + "md5": "7553b57fcede490fc0bb8e72caa6c587" }, { - "authorized_access_point": "Saudi-Arabien", + "authorized_access_point": "Saudi-Arabien - Nordwest", "identifiedBy": [ { "source": "GND", @@ -17977,6 +18173,7 @@ "value": "(DE-588)4677123-2" } ], + "identifier": "http://d-nb.info/gnd/4677123-2", "pid": "963982559", "type": "bf:Place", "broader": [ @@ -17987,7 +18184,7 @@ "variant_access_point": [ "Nordwestliches Saudi-Arabien" ], - "md5": "3d7fdee92f95edfa7797c6c5f381653f" + "md5": "d5715df519e83a66a30307ba80d2fd49" }, { "authorized_access_point": "Aalen-Hofen", @@ -18008,6 +18205,15 @@ "value": "(DE-588)4676373-9" } ], + "identifier": "http://d-nb.info/gnd/4676373-9", + "note": [ + { + "noteType": "general", + "label": [ + "Stadtteil von Aalen, bis 1972 selbsta\u0308ndig, 1972 zu Wasseralfingen eingemeindet, 1975 mit diesem nach Aalen" + ] + } + ], "pid": "963957635", "type": "bf:Place", "related": [ @@ -18018,27 +18224,10 @@ "variant_access_point": [ "Hofen (Aalen-Hofen)" ], - "md5": "aae203a3b78f259bc3ce22838b2f7970" + "md5": "f5e72f30f800d7bdb8dd9e9e21569f1a" }, { "authorized_access_point": "Jakobus-Kirche Breckerfeld (Breckerfeld)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Basilika" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kirchenbau" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Baudenkmal" - } - ], "identifiedBy": [ { "source": "GND", @@ -18056,12 +18245,19 @@ "value": "(DE-588)4668633-2" } ], + "identifier": "http://d-nb.info/gnd/4668633-2", "note": [ { "noteType": "dataSource", "label": [ "Internet - http://www.ev-kg-breckerfeld.de/j-kg/?page_id=71" ] + }, + { + "noteType": "general", + "label": [ + "Im 14. Jh. entstandene Kirche in Breckerfeld (Ennepe-Ruhr-Kreis, Westfalen), einzige gotische Basilika Westfalens, ehem. kath. Pfarrkirche St. Jakobus" + ] } ], "pid": "963614673", @@ -18077,7 +18273,7 @@ "Evangelische Jakobus-Kirche (Breckerfeld)", "Ev. Kirche (Breckerfeld)" ], - "md5": "f6d453d51f32b1e66905809f80dd4f1b" + "md5": "77ddc04df162f2d62889b0ec157f1bc3" }, { "authorized_access_point": "Scheidegg-Scheffau", @@ -18098,6 +18294,7 @@ "value": "(DE-588)1246023-0" } ], + "identifier": "http://d-nb.info/gnd/1246023-0", "pid": "963462539", "type": "bf:Place", "related": [ @@ -18108,17 +18305,10 @@ "variant_access_point": [ "Scheffau (Scheidegg)" ], - "md5": "a1cf916095e4c7f74b472e733f80a3ac" + "md5": "b44bbc0d5115dce00d5db715c7b3025a" }, { "authorized_access_point": "Schloss Ko\u0308niz (Ko\u0308niz)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Schloss" - } - ], "identifiedBy": [ { "source": "GND", @@ -18136,6 +18326,7 @@ "value": "(DE-588)4659061-4" } ], + "identifier": "http://d-nb.info/gnd/4659061-4", "pid": "963082132", "type": "bf:Place", "broader": [ @@ -18143,22 +18334,10 @@ "authorized_access_point": "Ko\u0308niz" } ], - "md5": "467bc6510b8fcaec3b5e6e3536b1a0e9" + "md5": "b48eb1ffc8cbb970c758e9a5f61501ac" }, { "authorized_access_point": "Manasija", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Klosteranlage" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Befestigung" - } - ], "identifiedBy": [ { "source": "GND", @@ -18176,12 +18355,19 @@ "value": "(DE-588)4644341-1" } ], + "identifier": "http://d-nb.info/gnd/4644341-1", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?oldid=161519644" ] + }, + { + "noteType": "general", + "label": [ + "liegt in den Homolje-Bergen nahe der Sta\u0308dte Jagodina und Despotovac" + ] } ], "pid": "962048879", @@ -18199,7 +18385,7 @@ "Klosteranlage Manasija", "Klosteranlage Resava" ], - "md5": "9a6e166c840fd5e64d2efb6e6e9479ca" + "md5": "b61edcae609827c27e60c235b442d326" }, { "authorized_access_point": "Leipzig-Plau\u00dfig", @@ -18220,6 +18406,7 @@ "value": "(DE-588)10018865-5" } ], + "identifier": "http://d-nb.info/gnd/10018865-5", "pid": "961594519", "type": "bf:Place", "related": [ @@ -18233,7 +18420,7 @@ "variant_access_point": [ "Plau\u00dfig (Leipzig)" ], - "md5": "51403ab1c4d5f6477f6131e0fcf14802" + "md5": "fcceb2d12ad310ca1fd89d2322b47f07" }, { "authorized_access_point": "Leipzig-Lindenthal", @@ -18254,12 +18441,19 @@ "value": "(DE-588)10018863-1" } ], + "identifier": "http://d-nb.info/gnd/10018863-1", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Lindenthal_(Leipzig)&oldid=225715822" ] + }, + { + "noteType": "general", + "label": [ + "Ortsteil von Leipzig seit 1.1.1999" + ] } ], "pid": "961594497", @@ -18275,7 +18469,7 @@ "variant_access_point": [ "Lindenthal (Leipzig)" ], - "md5": "681ecbfe5d99018e56bcd804b6dfe3bf" + "md5": "5da6fb4069c320ea4b2644cde9c2eede" }, { "authorized_access_point": "Leipzig-Wiederitzsch", @@ -18296,6 +18490,7 @@ "value": "(DE-588)10018856-4" } ], + "identifier": "http://d-nb.info/gnd/10018856-4", "pid": "961594454", "type": "bf:Place", "related": [ @@ -18309,7 +18504,7 @@ "variant_access_point": [ "Wiederitzsch (Leipzig)" ], - "md5": "3135b85e324070babaa15a8bb6681101" + "md5": "9e3fff037b3ea4cc3e0a3d2483ef4a12" }, { "authorized_access_point": "Zawido\u0301w", @@ -18330,12 +18525,19 @@ "value": "(DE-588)4633601-1" } ], + "identifier": "http://d-nb.info/gnd/4633601-1", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/wiki/Zawid%C3%B3w" ] + }, + { + "noteType": "general", + "label": [ + "Seidenberg liegt seit 1945 im polnischen Teil der Oberlausitz" + ] } ], "pid": "961395923", @@ -18345,7 +18547,7 @@ "Seidenberg O.-L", "Zawidow" ], - "md5": "b7b5d7cb146257ea632803c2e279238f" + "md5": "cd0811a3182bb81c55c80a1a894d9cc7" }, { "authorized_access_point": "Leipzig-Seehausen", @@ -18366,6 +18568,15 @@ "value": "(DE-588)4624158-9" } ], + "identifier": "http://d-nb.info/gnd/4624158-9", + "note": [ + { + "noteType": "general", + "label": [ + "Ortsteil seit 1.7.1997" + ] + } + ], "pid": "960863664", "type": "bf:Place", "related": [ @@ -18379,7 +18590,7 @@ "variant_access_point": [ "Seehausen (Leipzig)" ], - "md5": "b03ee9bf840a24176b6c2855c9b8878c" + "md5": "fbd602a726dceb21fd2aa12f9c9780a0" }, { "authorized_access_point": "Leipzig-Marienbrunn", @@ -18400,6 +18611,7 @@ "value": "(DE-588)4623386-6" } ], + "identifier": "http://d-nb.info/gnd/4623386-6", "pid": "960833919", "type": "bf:Place", "related": [ @@ -18410,10 +18622,10 @@ "variant_access_point": [ "Marienbrunn (Leipzig)" ], - "md5": "cb61f9ea388e94aa88fe6921787c17da" + "md5": "55507b1861e7979fe1c03d6cdbaba203" }, { - "authorized_access_point": "Leipzig-Halle-Bitterfeld", + "authorized_access_point": "Leipzig-Halle-Bitterfeld - Region", "identifiedBy": [ { "source": "GND", @@ -18431,6 +18643,15 @@ "value": "(DE-588)4617642-1" } ], + "identifier": "http://d-nb.info/gnd/4617642-1", + "note": [ + { + "noteType": "general", + "label": [ + "Ballungsraum Leipzig-Halle(Saale)-Bitterfeld, ehemals \"Chemiedreieck\" in Mittelsachsen" + ] + } + ], "pid": "960396268", "type": "bf:Place", "variant_access_point": [ @@ -18439,7 +18660,7 @@ "Bitterfeld-Leipzig-Halle-Gebiet", "Chemiedreieck" ], - "md5": "182815cd442767d0b893a7483da9e197" + "md5": "8070af58bfbc15bd1856d5ab0592c4f2" }, { "authorized_access_point": "Leipzig-Burghausen", @@ -18460,6 +18681,15 @@ "value": "(DE-588)4611475-0" } ], + "identifier": "http://d-nb.info/gnd/4611475-0", + "note": [ + { + "noteType": "general", + "label": [ + "Stadtteil von Leipzig im Stadtbezirk Alt-West seit 1.1.2000, 1.1.1994-31.12.1999 Ortsteil von Bienitz, fru\u0308her Ort im Kreis Leipzig" + ] + } + ], "pid": "960085726", "type": "bf:Place", "related": [ @@ -18473,7 +18703,7 @@ "variant_access_point": [ "Burghausen (Leipzig)" ], - "md5": "523bf5fc8538a12f15f4660d7de19e47" + "md5": "a3ea8392e8a6c1864df473db5a27e091" }, { "authorized_access_point": "Finnentrop-Ostentrop", @@ -18494,12 +18724,19 @@ "value": "(DE-588)4608675-4" } ], + "identifier": "http://d-nb.info/gnd/4608675-4", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Ostentrop&oldid=243213300" ] + }, + { + "noteType": "general", + "label": [ + "Seit 01.07.1969 Ortsteil von Finnentrop (Kreis Olpe), vorher selbststa\u0308ndig" + ] } ], "pid": "959934464", @@ -18512,17 +18749,10 @@ "authorized_access_point": "Ostentrop" } ], - "md5": "0e8d2b039230e5c7d7562331a10202f6" + "md5": "1d8683b72eb1bf39215c3bcb3bbe878e" }, { "authorized_access_point": "Kaunas (Gouvernement)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Gouvernement" - } - ], "identifiedBy": [ { "source": "GND", @@ -18540,6 +18770,7 @@ "value": "(DE-588)4608170-7" } ], + "identifier": "http://d-nb.info/gnd/4608170-7", "pid": "959918612", "type": "bf:Place", "variant_access_point": [ @@ -18547,7 +18778,7 @@ "Gouvernement Kovno", "Gouvernement Kaunas" ], - "md5": "379f36e73f856df0785bc3c3352d15a9" + "md5": "3f714ee241a3641566b2bf0e6dbeaae8" }, { "authorized_access_point": "Leipzig-Plau\u00dfig-Portitz", @@ -18568,6 +18799,15 @@ "value": "(DE-588)4605550-2" } ], + "identifier": "http://d-nb.info/gnd/4605550-2", + "note": [ + { + "noteType": "general", + "label": [ + "Ortsteile seit 1995" + ] + } + ], "pid": "959788719", "type": "bf:Place", "related": [ @@ -18584,7 +18824,7 @@ "variant_access_point": [ "Plau\u00dfig-Portitz (Leipzig)" ], - "md5": "8e1f15443b2f14cbbc2660f139d6ff05" + "md5": "9926768b921e2715ae150d7d7d02070b" }, { "authorized_access_point": "Monroe, Wis.", @@ -18605,6 +18845,7 @@ "value": "(DE-588)10007977-5" } ], + "identifier": "http://d-nb.info/gnd/10007977-5", "note": [ { "noteType": "dataSource", @@ -18615,28 +18856,10 @@ ], "pid": "959747575", "type": "bf:Place", - "md5": "03ffa3371f6cce678363a44b14e1fcd2" + "md5": "c9cab7704aaa2670a3d95a115f7cb61d" }, { "authorized_access_point": "Woiwodschaft Lebus", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Woiwodschaft" - } - ], - "closeMatch": [ - { - "authorized_access_point": "Lubuskie (Woiwodschaft)", - "source": "GND", - "identifiedBy": { - "type": "bf:Nbn", - "value": "(DE-101)992104130", - "source": "(DE-101)992104130" - } - } - ], "identifiedBy": [ { "source": "GND", @@ -18654,13 +18877,41 @@ "value": "(DE-588)4596737-4" } ], + "identifier": "http://d-nb.info/gnd/4596737-4", + "exactMatch": [ + { + "authorized_access_point": "Lubuskie (Woiwodschaft)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992104130" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "094409730" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "seit 1999 gro\u00dfe Teile der ehem. W. Gru\u0308nberg u. Landsberg, sowie einen kleinen Teil der ehem. W. Lissa", + "Ansetzung abweichend von \u00a7 441,1" + ] + } + ], "pid": "959369872", "type": "bf:Place", "variant_access_point": [ "Wojewo\u0301dztwo Lubuskie", "Lebus (Woiwodschaft)" ], - "md5": "d1ee2aea7e324b26bad6190d3eeeb16c" + "md5": "adfd78d080a60ad14fcb8cced9feabe7" }, { "authorized_access_point": "Bedum", @@ -18681,6 +18932,7 @@ "value": "(DE-588)4585822-6" } ], + "identifier": "http://d-nb.info/gnd/4585822-6", "note": [ { "noteType": "general", @@ -18701,17 +18953,10 @@ "Gemeente Bedum", "Het Hogeland- Bedum" ], - "md5": "cd56412dfcbee836b0f19415e3c7cb43" + "md5": "3453afd5790cde7ebb9a0ed8f59dc544" }, { "authorized_access_point": "Schloss Schwante", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Schloss" - } - ], "identifiedBy": [ { "source": "GND", @@ -18729,12 +18974,19 @@ "value": "(DE-588)4570933-6" } ], + "identifier": "http://d-nb.info/gnd/4570933-6", "note": [ { "noteType": "dataSource", "label": [ "H hist. Sta\u0308tten; Internet - http://www.schwante.de/schloesser.htm" ] + }, + { + "noteType": "general", + "label": [ + "Erbaut auf einer mittelalterlichen Burganlage zwischen 1741 und 1743." + ] } ], "pid": "958014639", @@ -18744,17 +18996,10 @@ "authorized_access_point": "Schwante" } ], - "md5": "3548878b688326e370789ca34ce0b8d4" + "md5": "3045884bb29ef102d77cb0d0a40301c3" }, { "authorized_access_point": "Anjouan (Insel)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Insel" - } - ], "identifiedBy": [ { "source": "GND", @@ -18772,6 +19017,15 @@ "value": "(DE-588)4566491-2" } ], + "identifier": "http://d-nb.info/gnd/4566491-2", + "note": [ + { + "noteType": "general", + "label": [ + "Insel der Komoren" + ] + } + ], "pid": "957753551", "type": "bf:Place", "broader": [ @@ -18783,7 +19037,7 @@ "Nwami", "Ndzouani" ], - "md5": "320da56e02e0c900d7295f1980e8bb8b" + "md5": "7322ca1a41b616d182205c91473e7d82" }, { "authorized_access_point": "Wabar", @@ -18804,12 +19058,21 @@ "value": "(DE-588)4562198-6" } ], + "identifier": "http://d-nb.info/gnd/4562198-6", + "note": [ + { + "noteType": "general", + "label": [ + "Legenda\u0308re versunkene Stadt in d. Rub al-Khali vermutet, in Oman ausgegraben" + ] + } + ], "pid": "957586973", "type": "bf:Place", "variant_access_point": [ "Ubar" ], - "md5": "79fcba2ce339be2a31759e9e83aa43b6" + "md5": "0e7de845bcca32b8de35190ae640547d" }, { "authorized_access_point": "Leipzig-Mockau", @@ -18830,6 +19093,15 @@ "value": "(DE-588)4561624-3" } ], + "identifier": "http://d-nb.info/gnd/4561624-3", + "note": [ + { + "noteType": "general", + "label": [ + "Stadtteil im Nordosten Leipzigs seit 1915" + ] + } + ], "pid": "957565445", "type": "bf:Place", "related": [ @@ -18843,7 +19115,7 @@ "variant_access_point": [ "Mockau (Leipzig)" ], - "md5": "23f2de3394c0d58856b0e17593bef545" + "md5": "ae20c8fef875c66c9d1f621b99abb53e" }, { "authorized_access_point": "Drebkau", @@ -18864,6 +19136,15 @@ "value": "(DE-588)4555925-9" } ], + "identifier": "http://d-nb.info/gnd/4555925-9", + "note": [ + { + "noteType": "general", + "label": [ + "Stadt im Kreis Spree-Nei\u00dfe, Brandenburg" + ] + } + ], "pid": "957211430", "type": "bf:Place", "variant_access_point": [ @@ -18872,7 +19153,7 @@ "Bz\u0301ezamtowa Gmejna Me\u030csto Drjowk", "Drepkau" ], - "md5": "217e404a9b653db388d311ca5b4c1abd" + "md5": "aa6429a30076d24d68d9c78c5a1d4ed2" }, { "authorized_access_point": "Leipzig-Engelsdorf", @@ -18893,6 +19174,7 @@ "value": "(DE-588)5312270-7" } ], + "identifier": "http://d-nb.info/gnd/5312270-7", "pid": "956443877", "type": "bf:Place", "related": [ @@ -18906,7 +19188,7 @@ "variant_access_point": [ "Engelsdorf (Leipzig)" ], - "md5": "b567c9ca4033c1f96204a4e9eb887efc" + "md5": "94267b9d4d33ff2157466fa82414496d" }, { "authorized_access_point": "Leipzig-Baalsdorf", @@ -18927,6 +19209,7 @@ "value": "(DE-588)5312267-7" } ], + "identifier": "http://d-nb.info/gnd/5312267-7", "note": [ { "noteType": "dataSource", @@ -18948,7 +19231,7 @@ "variant_access_point": [ "Baalsdorf (Leipzig)" ], - "md5": "e3141961edec8cf1f9acb139bb84eb44" + "md5": "d83a74447b808ed1f894a80f5d98f098" }, { "authorized_access_point": "Leipzig-Liebertwolkwitz", @@ -18969,6 +19252,15 @@ "value": "(DE-588)5312244-6" } ], + "identifier": "http://d-nb.info/gnd/5312244-6", + "note": [ + { + "noteType": "general", + "label": [ + "Stadtteil von Leipzig seit 1.1.1999" + ] + } + ], "pid": "956443613", "type": "bf:Place", "related": [ @@ -18982,7 +19274,7 @@ "variant_access_point": [ "Liebertwolkwitz (Leipzig)" ], - "md5": "5b6312b235898c118b46940bd9d0b07a" + "md5": "dd356fc7144b91f0e8c05845806b4956" }, { "authorized_access_point": "Leipzig-Mockau-Ost", @@ -19003,6 +19295,7 @@ "value": "(DE-588)2175760-4" } ], + "identifier": "http://d-nb.info/gnd/2175760-4", "pid": "955960134", "type": "bf:Place", "related": [ @@ -19013,7 +19306,7 @@ "variant_access_point": [ "Mockau-Ost" ], - "md5": "574d49fcd267cf575dec8846263583b8" + "md5": "8fccf470045870d7adf065974cb5198a" }, { "authorized_access_point": "Deiningen", @@ -19034,6 +19327,7 @@ "value": "(DE-588)4531247-3" } ], + "identifier": "http://d-nb.info/gnd/4531247-3", "note": [ { "noteType": "dataSource", @@ -19041,11 +19335,17 @@ "Homepage - https://www.deiningen.de/", "Wikipedia - https://de.wikipedia.org/wiki/Deiningen" ] + }, + { + "noteType": "general", + "label": [ + "Ort im Landkreis Donau-Ries, Schwaben, seit Urnenfelderkultur (1300-800 v.Chr.) besiedelt, 760 urkundl. erwa\u0308hnt" + ] } ], "pid": "955820049", "type": "bf:Place", - "md5": "96238bd3523140aa55af00cf9af8117e" + "md5": "9c2456d513b33a0f00e1a141757fe3ce" }, { "authorized_access_point": "Leipzig-Althen", @@ -19066,6 +19366,7 @@ "value": "(DE-588)2174812-3" } ], + "identifier": "http://d-nb.info/gnd/2174812-3", "pid": "955573246", "type": "bf:Place", "related": [ @@ -19079,7 +19380,7 @@ "variant_access_point": [ "Althen (Leipzig)" ], - "md5": "a1051065a2b7db3df40250b3278a40d2" + "md5": "f8cfb8f8222f7b9fc9fca2aff3f69dc4" }, { "authorized_access_point": "Leipzig-Thonberg", @@ -19100,6 +19401,15 @@ "value": "(DE-588)4527974-3" } ], + "identifier": "http://d-nb.info/gnd/4527974-3", + "note": [ + { + "noteType": "general", + "label": [ + "Stadtteil von Leipzig seit 1890" + ] + } + ], "pid": "955498058", "type": "bf:Place", "related": [ @@ -19113,7 +19423,7 @@ "variant_access_point": [ "Thonberg (Leipzig)" ], - "md5": "b0758a74eaaa88dc211c464b598ffe42" + "md5": "eddf1c5f2c0ce14988b95ae88a467597" }, { "authorized_access_point": "Rabenstein an der Pielach", @@ -19134,12 +19444,19 @@ "value": "(DE-588)4527754-0" } ], + "identifier": "http://d-nb.info/gnd/4527754-0", "note": [ { "noteType": "dataSource", "label": [ "Homepage - http://www.rabenstein.gv.at" ] + }, + { + "noteType": "general", + "label": [ + "Marktgemeinde im Bezirk Sankt Po\u0308lten-Land, Niedero\u0308sterreich" + ] } ], "pid": "955495768", @@ -19148,7 +19465,7 @@ "Rabenstein (Pielach)", "Marktgemeinde Rabenstein an der Pielach" ], - "md5": "ea61d2e9f6cf30f07f5bad3cf209a678" + "md5": "f27ff59fcf89f80b3c5ccef074c962c8" }, { "authorized_access_point": "Gru\u0308nberg-Lehnheim", @@ -19169,6 +19486,15 @@ "value": "(DE-588)3035028-1" } ], + "identifier": "http://d-nb.info/gnd/3035028-1", + "note": [ + { + "noteType": "general", + "label": [ + "Ortsteil von Gru\u0308nberg im Landkreis Gie\u00dfen, Hessen" + ] + } + ], "pid": "955090547", "type": "bf:Place", "related": [ @@ -19183,7 +19509,7 @@ "Gru\u0308nberg (Landkreis Gie\u00dfen-Lehnheim)", "Lehnheim (Gru\u0308nberg-Lehnheim)" ], - "md5": "5e31179f2829c92da20a444b2796a446" + "md5": "d921b1284bacd10d9dffd8f63b3c8b34" }, { "authorized_access_point": "Hochkirch-Pommritz", @@ -19204,6 +19530,7 @@ "value": "(DE-588)5289232-3" } ], + "identifier": "http://d-nb.info/gnd/5289232-3", "note": [ { "noteType": "dataSource", @@ -19223,7 +19550,7 @@ "Pommritz (Hochkirch-Pommritz)", "Bukecy-Pomorcy" ], - "md5": "ffb8bf12185806674f678af675b5bc4a" + "md5": "8aee686ff4f589a83272de692d43e2ad" }, { "authorized_access_point": "Leipzig-West", @@ -19244,6 +19571,7 @@ "value": "(DE-588)4508419-1" } ], + "identifier": "http://d-nb.info/gnd/4508419-1", "pid": "954071832", "type": "bf:Place", "related": [ @@ -19251,7 +19579,7 @@ "authorized_access_point": "Leipzig" } ], - "md5": "13b1bb7dad0d78c2398367a652d02d43" + "md5": "67d76ce4ac1e21bfc2f0cafeb2ef98bb" }, { "authorized_access_point": "Cressier (Kanton Neuenburg)", @@ -19272,6 +19600,15 @@ "value": "(DE-588)4508222-4" } ], + "identifier": "http://d-nb.info/gnd/4508222-4", + "note": [ + { + "noteType": "general", + "label": [ + "Politische Gemeinde im Kanton Neuenburg" + ] + } + ], "pid": "954064593", "type": "bf:Place", "broader": [ @@ -19279,17 +19616,10 @@ "authorized_access_point": "Kanton Neuenburg" } ], - "md5": "a76ef4c4feb750fe9ed1881ae5b5a84f" + "md5": "0b50ed55290d7e628bad3af6c0bf1fd5" }, { "authorized_access_point": "Kirche im Walde (Heringsdorf, Seebad)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Saalkirche" - } - ], "identifiedBy": [ { "source": "GND", @@ -19307,6 +19637,15 @@ "value": "(DE-588)4492872-5" } ], + "identifier": "http://d-nb.info/gnd/4492872-5", + "note": [ + { + "noteType": "general", + "label": [ + "Saalkirche 1848 nach Pla\u0308nen von L. Persius erbaut, ausgefu\u0308hrt von Otto Baensch" + ] + } + ], "pid": "953168697", "type": "bf:Place", "broader": [ @@ -19317,7 +19656,7 @@ "variant_access_point": [ "Evangelische Kirche im Walde (Heringsdorf, Seebad)" ], - "md5": "86b41b6906013dbd5250fbb311ed31b2" + "md5": "baa605ce08c29a0123c6c29f8a17bde3" }, { "authorized_access_point": "Leipzig-Reudnitz", @@ -19338,6 +19677,7 @@ "value": "(DE-588)4491767-3" } ], + "identifier": "http://d-nb.info/gnd/4491767-3", "pid": "953105024", "type": "bf:Place", "related": [ @@ -19351,17 +19691,10 @@ "variant_access_point": [ "Reudnitz (Leipzig)" ], - "md5": "1c785418c4e14d425dd305f3efd00980" + "md5": "68719d54bf7858ed00d3c2230c333293" }, { "authorized_access_point": "Amt Fyn", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Amt" - } - ], "identifiedBy": [ { "source": "GND", @@ -19379,12 +19712,19 @@ "value": "(DE-588)4477066-2" } ], + "identifier": "http://d-nb.info/gnd/4477066-2", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?oldid=228930289" ] + }, + { + "noteType": "general", + "label": [ + "Fyns Amt war eine da\u0308nische Amtskommune." + ] } ], "pid": "952110512", @@ -19410,7 +19750,7 @@ "Fyns Amtskommune", "Fu\u0308nen (Amt)" ], - "md5": "06e969545e95de9295c93457387d512a" + "md5": "7adce53f0f8e8c58a9c91c7ebdb392b4" }, { "authorized_access_point": "Leipzig-Thekla", @@ -19431,6 +19771,15 @@ "value": "(DE-588)4473338-0" } ], + "identifier": "http://d-nb.info/gnd/4473338-0", + "note": [ + { + "noteType": "general", + "label": [ + "Stadtteil von Leipzig seit 1930" + ] + } + ], "pid": "951677268", "type": "bf:Place", "related": [ @@ -19444,10 +19793,10 @@ "variant_access_point": [ "Thekla (Leipzig)" ], - "md5": "670b201de7852d5f504e87ffa9428a7f" + "md5": "fc0d268d57410485c4f312b45f8fb757" }, { - "authorized_access_point": "Saudi-Arabien", + "authorized_access_point": "Saudi-Arabien - Su\u0308dwest", "identifiedBy": [ { "source": "GND", @@ -19465,6 +19814,7 @@ "value": "(DE-588)4470221-8" } ], + "identifier": "http://d-nb.info/gnd/4470221-8", "pid": "951510282", "type": "bf:Place", "broader": [ @@ -19475,10 +19825,10 @@ "variant_access_point": [ "Su\u0308dwestliches Saudi-Arabien" ], - "md5": "a320fc4473059ecd7f3d961e7f46f4c1" + "md5": "35764173057e81b496d60bf50101be03" }, { - "authorized_access_point": "Saudi-Arabien", + "authorized_access_point": "Saudi-Arabien - West", "identifiedBy": [ { "source": "GND", @@ -19496,6 +19846,7 @@ "value": "(DE-588)4470220-6" } ], + "identifier": "http://d-nb.info/gnd/4470220-6", "pid": "951510274", "type": "bf:Place", "broader": [ @@ -19506,10 +19857,10 @@ "variant_access_point": [ "Westliches Saudi-Arabien" ], - "md5": "5130569ae129b569a1793ba0a8dd6c52" + "md5": "e3be0dc272e51d813cf3a62c43da87d6" }, { - "authorized_access_point": "Saudi-Arabien", + "authorized_access_point": "Saudi-Arabien - Su\u0308d", "identifiedBy": [ { "source": "GND", @@ -19527,6 +19878,7 @@ "value": "(DE-588)4470217-6" } ], + "identifier": "http://d-nb.info/gnd/4470217-6", "pid": "951510258", "type": "bf:Place", "broader": [ @@ -19537,28 +19889,10 @@ "variant_access_point": [ "Su\u0308dliches Saudi-Arabien" ], - "md5": "22f65ce2a8920e64fb31004f774e77c8" + "md5": "a0792a80662f9f621359af892f2f784c" }, { "authorized_access_point": "Obere-Altmu\u0308hl-Tal", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Tal" - } - ], - "closeMatch": [ - { - "authorized_access_point": "Oberes Altmu\u0308hltal", - "source": "GND", - "identifiedBy": { - "type": "bf:Nbn", - "value": "(DE-101)992670160", - "source": "(DE-101)992670160" - } - } - ], "identifiedBy": [ { "source": "GND", @@ -19572,8 +19906,27 @@ }, { "source": "GND", - "type": "bf:Nbn", - "value": "(DE-588)4467681-5" + "type": "bf:Nbn", + "value": "(DE-588)4467681-5" + } + ], + "identifier": "http://d-nb.info/gnd/4467681-5", + "exactMatch": [ + { + "authorized_access_point": "Oberes Altmu\u0308hltal", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992670160" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "094412634" + } + ] } ], "pid": "95135793X", @@ -19587,7 +19940,7 @@ "Oberes Altmu\u0308hltal", "Obere Altmu\u0308hl" ], - "md5": "cb892bbe68dc5e88b54a07d10b769eb4" + "md5": "e26458c43dc9f8bd677122965323fd1d" }, { "authorized_access_point": "Campos do Jorda\u0303o", @@ -19608,12 +19961,13 @@ "value": "(DE-588)4457908-1" } ], + "identifier": "http://d-nb.info/gnd/4457908-1", "pid": "950649155", "type": "bf:Place", "variant_access_point": [ "Campos (Jorda\u0303o)" ], - "md5": "f7c1b273acd824897202bfe7ecb8c043" + "md5": "4f07b00ef709cf9f6f6d47186fa93746" }, { "authorized_access_point": "Leipzig- A\u0308u\u00dfere Su\u0308dostvorstadt", @@ -19634,6 +19988,15 @@ "value": "(DE-588)4456228-7" } ], + "identifier": "http://d-nb.info/gnd/4456228-7", + "note": [ + { + "noteType": "general", + "label": [ + "Gebiet um Altes Messegela\u0308nde und Bayrischen Bahnhof" + ] + } + ], "pid": "950556149", "type": "bf:Place", "related": [ @@ -19644,7 +20007,7 @@ "variant_access_point": [ "A\u0308u\u00dfere Su\u0308dostvorstadt (Leipzig)" ], - "md5": "0281915eb7f4008de9a8ddb7f35a8a6c" + "md5": "52875ae6872fb8e34461d322bebd7b27" }, { "authorized_access_point": "Leipzig-Scho\u0308nau", @@ -19665,6 +20028,15 @@ "value": "(DE-588)4452671-4" } ], + "identifier": "http://d-nb.info/gnd/4452671-4", + "note": [ + { + "noteType": "general", + "label": [ + "Ortsteil von Leipzig seit 1930" + ] + } + ], "pid": "950356190", "type": "bf:Place", "related": [ @@ -19678,7 +20050,7 @@ "variant_access_point": [ "Scho\u0308nau (Leipzig)" ], - "md5": "0d4090de60180bca3e809ced43002740" + "md5": "8f88c04977a1887f7c4c277b003fec3a" }, { "authorized_access_point": "Leipzig-Lausen", @@ -19699,6 +20071,7 @@ "value": "(DE-588)4452519-9" } ], + "identifier": "http://d-nb.info/gnd/4452519-9", "note": [ { "noteType": "dataSource", @@ -19720,7 +20093,7 @@ "variant_access_point": [ "Lausen (Leipzig)" ], - "md5": "71b8c54cdc458b6783a3672eaef07522" + "md5": "fefe165e28281ce0982a09666fd8b01b" }, { "authorized_access_point": "Leipzig-Gro\u00dfzschocher", @@ -19741,6 +20114,7 @@ "value": "(DE-588)4452517-5" } ], + "identifier": "http://d-nb.info/gnd/4452517-5", "pid": "950339407", "type": "bf:Place", "related": [ @@ -19757,7 +20131,7 @@ "variant_access_point": [ "Gro\u00dfzschocher (Leipzig)" ], - "md5": "3e9a24157d498d879317d60bbe6c894b" + "md5": "b001ef289283a652c5c938e022d88e9c" }, { "authorized_access_point": "Leipzig-Windorf", @@ -19778,6 +20152,15 @@ "value": "(DE-588)4452486-9" } ], + "identifier": "http://d-nb.info/gnd/4452486-9", + "note": [ + { + "noteType": "general", + "label": [ + "Ortsteil von Leipzig seit 1922" + ] + } + ], "pid": "950338338", "type": "bf:Place", "related": [ @@ -19794,7 +20177,7 @@ "variant_access_point": [ "Windorf (Leipzig)" ], - "md5": "0d0e44b2fae4be63117d61a1b9e8de06" + "md5": "ebe39659316c99ea420438c681c32703" }, { "authorized_access_point": "Leipzig-Knautkleeberg", @@ -19815,6 +20198,15 @@ "value": "(DE-588)4452484-5" } ], + "identifier": "http://d-nb.info/gnd/4452484-5", + "note": [ + { + "noteType": "general", + "label": [ + "Ortsteil von Leipzig seit 1930" + ] + } + ], "pid": "95033829X", "type": "bf:Place", "related": [ @@ -19828,7 +20220,7 @@ "variant_access_point": [ "Knautkleeberg (Leipzig)" ], - "md5": "95814f3fb22983a50e15e6ef22bfbf9c" + "md5": "b55b72204c9c0330d98518a5a9c89940" }, { "authorized_access_point": "Leipzig-Knauthain", @@ -19849,6 +20241,7 @@ "value": "(DE-588)4452482-1" } ], + "identifier": "http://d-nb.info/gnd/4452482-1", "pid": "950338230", "type": "bf:Place", "related": [ @@ -19862,7 +20255,7 @@ "variant_access_point": [ "Knauthain (Leipzig)" ], - "md5": "9910f6e85488c8145ccf0fdea8447e43" + "md5": "ce9d06d67fda5650c5947175c10bdc57" }, { "authorized_access_point": "Leipzig-Meusdorf", @@ -19883,6 +20276,15 @@ "value": "(DE-588)4452479-1" } ], + "identifier": "http://d-nb.info/gnd/4452479-1", + "note": [ + { + "noteType": "general", + "label": [ + "Ortsteil von Leipzig seit 1910" + ] + } + ], "pid": "950338184", "type": "bf:Place", "related": [ @@ -19896,7 +20298,7 @@ "variant_access_point": [ "Meusdorf (Leipzig)" ], - "md5": "d780ccb24cb5436c2562c5572ba345e1" + "md5": "385218ba3aab4e982047a90cbb246e55" }, { "authorized_access_point": "Leipzig-Scho\u0308nefeld", @@ -19917,6 +20319,7 @@ "value": "(DE-588)4452359-2" } ], + "identifier": "http://d-nb.info/gnd/4452359-2", "pid": "950332429", "type": "bf:Place", "related": [ @@ -19930,7 +20333,7 @@ "variant_access_point": [ "Scho\u0308nefeld (Leipzig)" ], - "md5": "56d4d59e78b76987b49676768a82ecf7" + "md5": "f18d9daaa2cd9e4030551f228ad1bbc3" }, { "authorized_access_point": "Leipzig-Do\u0308sen", @@ -19951,6 +20354,15 @@ "value": "(DE-588)4452347-6" } ], + "identifier": "http://d-nb.info/gnd/4452347-6", + "note": [ + { + "noteType": "general", + "label": [ + "Ortsteil von Leipzig seit 1905" + ] + } + ], "pid": "950332011", "type": "bf:Place", "related": [ @@ -19964,7 +20376,7 @@ "variant_access_point": [ "Do\u0308sen (Leipzig)" ], - "md5": "a2e37d8709056c648394ead8dd6de915" + "md5": "eb64b9c7ec0d8331d6d88a9409893106" }, { "authorized_access_point": "Leipzig-Probstheida", @@ -19985,6 +20397,7 @@ "value": "(DE-588)4452343-9" } ], + "identifier": "http://d-nb.info/gnd/4452343-9", "pid": "950331821", "type": "bf:Place", "related": [ @@ -19998,7 +20411,7 @@ "variant_access_point": [ "Probstheida (Leipzig)" ], - "md5": "8a6d8a6a292da0a5781ae02f18fb2fed" + "md5": "8bff57ad10c19e8e0f5524275d9cf9dc" }, { "authorized_access_point": "Leipzig-Sto\u0308tteritz", @@ -20019,6 +20432,7 @@ "value": "(DE-588)4452197-2" } ], + "identifier": "http://d-nb.info/gnd/4452197-2", "pid": "950315354", "type": "bf:Place", "related": [ @@ -20032,7 +20446,7 @@ "variant_access_point": [ "Sto\u0308tteritz (Leipzig)" ], - "md5": "cef5b66b30993156bc65fd9898d9cca5" + "md5": "4445b44b31dd42ccaf8bf8335a804ed4" }, { "authorized_access_point": "Leipzig-Schleu\u00dfig", @@ -20053,6 +20467,15 @@ "value": "(DE-588)4450192-4" } ], + "identifier": "http://d-nb.info/gnd/4450192-4", + "note": [ + { + "noteType": "general", + "label": [ + "Ortsteil von Leipzig" + ] + } + ], "pid": "95020109X", "type": "bf:Place", "related": [ @@ -20067,7 +20490,7 @@ "Schleu\u00dfig (Leipzig)", "Leipzig-Schleussig" ], - "md5": "27c408f7914064749411cf5a8b62519b" + "md5": "550cf51ff2b008e3116a816e217473f3" }, { "authorized_access_point": "Leipzig-Kleinzschocher", @@ -20088,6 +20511,7 @@ "value": "(DE-588)4450126-2" } ], + "identifier": "http://d-nb.info/gnd/4450126-2", "pid": "950199850", "type": "bf:Place", "related": [ @@ -20103,17 +20527,10 @@ "Leipzig-Kl.-Zschocher", "Leipzig-Zschocher" ], - "md5": "9c34b9847e76b38d6f3990f02b457551" + "md5": "3283e391acc6eda22043e5b7919f2933" }, { "authorized_access_point": "Verso\u0308hnungskirche (Dachau)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kirchenbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -20131,6 +20548,15 @@ "value": "(DE-588)4450115-8" } ], + "identifier": "http://d-nb.info/gnd/4450115-8", + "note": [ + { + "noteType": "general", + "label": [ + "Evangelische Kirche im ehemaligen Konzentrationslager, 1967 erbaut" + ] + } + ], "pid": "950199214", "type": "bf:Place", "broader": [ @@ -20138,16 +20564,10 @@ "authorized_access_point": "Dachau" } ], - "md5": "e347504e06b592b0072970df20074930" + "md5": "06cb5216febe965ae5169208591605ec" }, { "authorized_access_point": "Pjatigorsk", - "closeMatch": [ - { - "authorized_access_point": "\u041f\u044f\u0442\u0438\u0433\u043e\u0440\u0441\u043a", - "source": "GND" - } - ], "identifiedBy": [ { "source": "GND", @@ -20165,6 +20585,7 @@ "value": "(DE-588)4449423-3" } ], + "identifier": "http://d-nb.info/gnd/4449423-3", "note": [ { "noteType": "dataSource", @@ -20180,7 +20601,7 @@ "Pjatigorsk (Stavropolkreis)", "\u041f\u044f\u0442\u0438\u0433\u043e\u0440\u0441\u043a (\u0421\u0442\u0430\u0432\u0440\u043e\u043f\u043e\u043b\u044c\u0441\u043a\u0438\u0438\u0306 \u043a\u0440\u0430\u0438\u0306)" ], - "md5": "f16266b338f877a6cad3227bb7b12a50" + "md5": "0b5b01c20371e532e28abf9f0fdeca17" }, { "authorized_access_point": "Leipzig-Sellerhausen-Stu\u0308nz", @@ -20201,6 +20622,7 @@ "value": "(DE-588)4442450-4" } ], + "identifier": "http://d-nb.info/gnd/4442450-4", "note": [ { "noteType": "dataSource", @@ -20225,7 +20647,7 @@ "variant_access_point": [ "Sellerhausen-Stu\u0308nz (Leipzig)" ], - "md5": "31b0f0226caae1452216c2b6adcf8c6c" + "md5": "5f839e3acae75bf19c65f625e967317a" }, { "authorized_access_point": "Bieberbach (Egloffstein)", @@ -20246,6 +20668,7 @@ "value": "(DE-588)4440857-2" } ], + "identifier": "http://d-nb.info/gnd/4440857-2", "pid": "949647314", "type": "bf:Place", "broader": [ @@ -20256,7 +20679,7 @@ "authorized_access_point": "Egloffstein-Bieberbach" } ], - "md5": "de19a199fab063da67d5328f59aa5d80" + "md5": "e0edf9d821c27aefa06fd2c84dac5e7c" }, { "authorized_access_point": "Hartenstein (Landkreis Zwickau)", @@ -20277,6 +20700,15 @@ "value": "(DE-588)4440677-0" } ], + "identifier": "http://d-nb.info/gnd/4440677-0", + "note": [ + { + "noteType": "general", + "label": [ + "Kleinstadt im Lkr. Zwickau" + ] + } + ], "pid": "949641804", "type": "bf:Place", "broader": [ @@ -20290,10 +20722,10 @@ "Hartenstein", "Hartenstein bei Zwickau" ], - "md5": "45c80d942538f6f2a2559e250a75b361" + "md5": "99812f10ee4b84f365ce791daee3d7db" }, { - "authorized_access_point": "Rub al-Khali", + "authorized_access_point": "Rub al-Khali - Su\u0308d", "identifiedBy": [ { "source": "GND", @@ -20311,6 +20743,7 @@ "value": "(DE-588)4440419-0" } ], + "identifier": "http://d-nb.info/gnd/4440419-0", "pid": "94963218X", "type": "bf:Place", "broader": [ @@ -20321,10 +20754,10 @@ "variant_access_point": [ "Su\u0308dliche Rub al-Khali" ], - "md5": "61891b34db4cd277dc04fd33d32b857c" + "md5": "8466c10d7cb6e117f20539dfa5b64f56" }, { - "authorized_access_point": "Rub al-Khali", + "authorized_access_point": "Rub al-Khali - Nordost", "identifiedBy": [ { "source": "GND", @@ -20342,6 +20775,7 @@ "value": "(DE-588)4440418-9" } ], + "identifier": "http://d-nb.info/gnd/4440418-9", "pid": "949632163", "type": "bf:Place", "broader": [ @@ -20352,10 +20786,10 @@ "variant_access_point": [ "Nordo\u0308stliche Rub al-Khali" ], - "md5": "1834a8f378dd2b58731e06600cdf2a89" + "md5": "2df5aae81426b1a841ec6ee59e8461ee" }, { - "authorized_access_point": "Rub al-Khali", + "authorized_access_point": "Rub al-Khali - Ost", "identifiedBy": [ { "source": "GND", @@ -20373,6 +20807,7 @@ "value": "(DE-588)4440417-7" } ], + "identifier": "http://d-nb.info/gnd/4440417-7", "pid": "949632147", "type": "bf:Place", "broader": [ @@ -20383,10 +20818,10 @@ "variant_access_point": [ "O\u0308stliche Rub al-Khali" ], - "md5": "30bbb24ed63965dff64ef5b5a355d93b" + "md5": "ad8a25de656f37294dd18ef926c5f9fc" }, { - "authorized_access_point": "Rub al-Khali", + "authorized_access_point": "Rub al-Khali - Su\u0308dost", "identifiedBy": [ { "source": "GND", @@ -20404,6 +20839,7 @@ "value": "(DE-588)4440416-5" } ], + "identifier": "http://d-nb.info/gnd/4440416-5", "pid": "949632120", "type": "bf:Place", "broader": [ @@ -20414,10 +20850,10 @@ "variant_access_point": [ "Su\u0308do\u0308stliche Rub al-Khali" ], - "md5": "9b92f1d6e76cec1f9745df9fb70f2453" + "md5": "b689bb00042f5f4eeef2bbdac793fece" }, { - "authorized_access_point": "Rub al-Khali", + "authorized_access_point": "Rub al-Khali - West", "identifiedBy": [ { "source": "GND", @@ -20435,6 +20871,7 @@ "value": "(DE-588)4440415-3" } ], + "identifier": "http://d-nb.info/gnd/4440415-3", "pid": "949632104", "type": "bf:Place", "broader": [ @@ -20445,7 +20882,7 @@ "variant_access_point": [ "Westliche Rub al-Khali" ], - "md5": "acf5a8e4cf11ed18a09dd86052ff7d48" + "md5": "a968640f88b6feb8d2d76941d678bc36" }, { "authorized_access_point": "Furth (Landkreis Landshut)", @@ -20466,6 +20903,15 @@ "value": "(DE-588)4439953-4" } ], + "identifier": "http://d-nb.info/gnd/4439953-4", + "note": [ + { + "noteType": "general", + "label": [ + "Gemeinde im Landkreis Landshut, Niederbayern" + ] + } + ], "pid": "949607266", "type": "bf:Place", "related": [ @@ -20473,7 +20919,7 @@ "authorized_access_point": "Landkreis Landshut" } ], - "md5": "e3b18eea893479ac3a740c9b26287a9a" + "md5": "35caf057fd51f256b2172b681ed6b47b" }, { "authorized_access_point": "Leipzig-Lu\u0308tzschena-Stahmeln", @@ -20494,6 +20940,15 @@ "value": "(DE-588)4439654-5" } ], + "identifier": "http://d-nb.info/gnd/4439654-5", + "note": [ + { + "noteType": "general", + "label": [ + "Doppelort 1.1.1999 nach Leipzig eingemeindet" + ] + } + ], "pid": "949602310", "type": "bf:Place", "related": [ @@ -20507,7 +20962,7 @@ "variant_access_point": [ "Lu\u0308tzschena-Stahmeln (Leipzig)" ], - "md5": "79513f7d1f8921cc4360d9b20e60a1e4" + "md5": "47f46d4e20778fc5582ac1b99043d3bb" }, { "authorized_access_point": "Leipzig-Holzhausen", @@ -20528,12 +20983,19 @@ "value": "(DE-588)4426743-5" } ], + "identifier": "http://d-nb.info/gnd/4426743-5", "note": [ { "noteType": "dataSource", "label": [ "Homepage - http://www.holzhausen-sachsen.de" ] + }, + { + "noteType": "general", + "label": [ + "Ortsteil von Leipzig seit 1.1.1999" + ] } ], "pid": "948791659", @@ -20549,7 +21011,7 @@ "variant_access_point": [ "Holzhausen (Leipzig)" ], - "md5": "7393eb65f5baeeefd89aece38e2d482f" + "md5": "9e424fe7aaea6f3b4591c08946673c6b" }, { "authorized_access_point": "Pollnow", @@ -20570,6 +21032,15 @@ "value": "(DE-588)5180619-8" } ], + "identifier": "http://d-nb.info/gnd/5180619-8", + "note": [ + { + "noteType": "general", + "label": [ + "Kleinstadt an der Grabow im Kreis Schlawe, Regierungsbezirk Ko\u0308slin, Hinterpommern, preu\u00df. Provinz Pommern, Besiedlung durch Wenden, 2. Ha\u0308lfte 13. Jh. dt. Besiedlung, 1307 urkundl. erwa\u0308hnt, 1312 Stadtrecht" + ] + } + ], "pid": "948417226", "type": "bf:Place", "broader": [ @@ -20580,7 +21051,7 @@ "variant_access_point": [ "Pollnow i. Pom." ], - "md5": "19c8466fa0e8ba343f722efabe43ff05" + "md5": "74f04e7c9afd4e1ff109a66ead662b8c" }, { "authorized_access_point": "Leipzig-Lo\u0308\u00dfnig", @@ -20601,12 +21072,19 @@ "value": "(DE-588)4420041-9" } ], + "identifier": "http://d-nb.info/gnd/4420041-9", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?oldid=239090285" ] + }, + { + "noteType": "general", + "label": [ + "Stadtteil im Su\u0308den Leipzigs seit 1.1.1891" + ] } ], "pid": "948322292", @@ -20623,7 +21101,7 @@ "Leipzig-Lo\u0308ssnig", "Lo\u0308\u00dfnig (Leipzig)" ], - "md5": "8bf71b644a77c5dbb6052103e59ca5e6" + "md5": "06a2b8a735caa6e8ee5118da32defd51" }, { "authorized_access_point": "Leipzig-Do\u0308litz", @@ -20644,6 +21122,7 @@ "value": "(DE-588)4420038-9" } ], + "identifier": "http://d-nb.info/gnd/4420038-9", "pid": "948321156", "type": "bf:Place", "related": [ @@ -20657,7 +21136,7 @@ "variant_access_point": [ "Do\u0308litz (Leipzig)" ], - "md5": "2d6021b3e306eb78ae899f8e6c9fb487" + "md5": "baf78b4a56dd2d5f802f5689a1cc78a8" }, { "authorized_access_point": "Leipzig-Mo\u0308lkau", @@ -20678,6 +21157,15 @@ "value": "(DE-588)4415593-1" } ], + "identifier": "http://d-nb.info/gnd/4415593-1", + "note": [ + { + "noteType": "general", + "label": [ + "Ortsteil von Leipzig seit 1999" + ] + } + ], "pid": "947976248", "type": "bf:Place", "related": [ @@ -20693,7 +21181,7 @@ "Mo\u0308lkau-Zweinaundorf", "Lleipzig-Mo\u0308lkau-Zweinaundorf" ], - "md5": "845543700bb4e480f11927c095a85a34" + "md5": "fd5eb4028e04e642c557ea4de5b02056" }, { "authorized_access_point": "Juodkrante\u0307", @@ -20714,6 +21202,7 @@ "value": "(DE-588)5175593-2" } ], + "identifier": "http://d-nb.info/gnd/5175593-2", "note": [ { "noteType": "dataSource", @@ -20721,6 +21210,13 @@ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Juodkrant%C4%97&oldid=178982082", "GeoNames - http://geotree.geonames.org/598706/" ] + }, + { + "noteType": "general", + "label": [ + "Zweitgro\u0308\u00dfte Siedlung auf der Kurischen Nehrung in Litauen", + "Im Jahre 1961 wurden die Hauptortschaften des litauischen Teiles der Kurischen Nehrung- Alksnyne, Juodkrante, Pervalka, Preila, Nida in die Stadt Neringa zusammengeschossen." + ] } ], "pid": "947862730", @@ -20735,7 +21231,7 @@ "authorized_access_point": "Neringa" } ], - "md5": "02da5bb9dae624916416a12199d02afc" + "md5": "c1ed30fd21498cb92680df8499db42eb" }, { "authorized_access_point": "Bansin", @@ -20756,6 +21252,15 @@ "value": "(DE-588)5171491-7" } ], + "identifier": "http://d-nb.info/gnd/5171491-7", + "note": [ + { + "noteType": "general", + "label": [ + "Seeheilbad auf Usedom, Landkreis Ostvorpommern (25.7.1952-12.6.1994: (Land-)Kreis Wolgast; 1945-1952: Landkreis Usedom; 1818-1945: Kreis Usedom-Wollin), 1256 urkundl. erwa\u0308hnt, 1.1.2005 mit Ahlbeck und Heringsdorf zu Dreikaiserba\u0308der zusammengeschlossen, 1.1.2006 in Ostseebad Heringsdorf umbenannt" + ] + } + ], "pid": "947589341", "type": "bf:Place", "broader": [ @@ -20769,7 +21274,7 @@ "variant_access_point": [ "Seebad Bansin" ], - "md5": "1ec293705cb3b29e2496796a1ba0bf87" + "md5": "771117b8ba461cf243a49b9ad174325f" }, { "authorized_access_point": "Yama\u0304mah", @@ -20790,13 +21295,22 @@ "value": "(DE-588)4409005-5" } ], + "identifier": "http://d-nb.info/gnd/4409005-5", + "note": [ + { + "noteType": "general", + "label": [ + "Region in Saudi-Arabien" + ] + } + ], "pid": "947454802", "type": "bf:Place", "variant_access_point": [ "Yama\u0304ma", "Jamama" ], - "md5": "b5e04b2a6646c04703630335550cc2f7" + "md5": "7cf57390a1ff587f71a1fbdaf2a15584" }, { "authorized_access_point": "Uh\u0323ud", @@ -20817,21 +21331,24 @@ "value": "(DE-588)4408998-3" } ], + "identifier": "http://d-nb.info/gnd/4408998-3", + "note": [ + { + "noteType": "general", + "label": [ + "Ort in Saudi-Arabien" + ] + } + ], "pid": "947454659", "type": "bf:Place", "variant_access_point": [ "Oh\u0323od" ], - "md5": "002ce1858f617aa649b8cf8617447ce8" + "md5": "fababfd13b6a6923c297b4da622c8e4f" }, { "authorized_access_point": "Ischewsk", - "closeMatch": [ - { - "authorized_access_point": "\u0418\u0436\u0435\u0432\u0441\u043a", - "source": "GND" - } - ], "identifiedBy": [ { "source": "GND", @@ -20849,12 +21366,19 @@ "value": "(DE-588)4408789-5" } ], + "identifier": "http://d-nb.info/gnd/4408789-5", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?oldid=242946023" ] + }, + { + "noteType": "general", + "label": [ + "Hauptstadt von Udmurtien" + ] } ], "pid": "947421238", @@ -20873,7 +21397,7 @@ "\u0418\u0436\u043a\u0430\u0440", "\u0418\u0436" ], - "md5": "f8bcc10e06c70fb4b4536edc144ba721" + "md5": "23028ffb3e940b101d5df92d3290418f" }, { "authorized_access_point": "Barbacena (Minas Gerais)", @@ -20894,6 +21418,7 @@ "value": "(DE-588)4403767-3" } ], + "identifier": "http://d-nb.info/gnd/4403767-3", "pid": "947026088", "type": "bf:Place", "broader": [ @@ -20901,7 +21426,7 @@ "authorized_access_point": "Minas Gerais" } ], - "md5": "457b9d150cdbe315524ea54e4f13c5d7" + "md5": "524332ea22877f45e526d30d0cebbe50" }, { "authorized_access_point": "Leipzig-Leutzsch", @@ -20922,6 +21447,7 @@ "value": "(DE-588)4400402-3" } ], + "identifier": "http://d-nb.info/gnd/4400402-3", "pid": "946723729", "type": "bf:Place", "related": [ @@ -20935,17 +21461,10 @@ "variant_access_point": [ "Leutzsch (Leipzig)" ], - "md5": "edd1976aed14d0f136f654efa96018a1" + "md5": "280de53bb4e71a85ab570a9603c718a5" }, { "authorized_access_point": "Kreis Oststernberg", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kreis" - } - ], "identifiedBy": [ { "source": "GND", @@ -20963,6 +21482,7 @@ "value": "(DE-588)4399100-2" } ], + "identifier": "http://d-nb.info/gnd/4399100-2", "note": [ { "noteType": "dataSource", @@ -20979,7 +21499,7 @@ "Kreis Ost-Sternberg", "Landkreis Ost-Sternberg" ], - "md5": "74e49f54d968824c58571ae6c230be75" + "md5": "1c6ee12837a361bdae35a18a1d612516" }, { "authorized_access_point": "Barr (Unterelsass)", @@ -21000,6 +21520,15 @@ "value": "(DE-588)4390811-1" } ], + "identifier": "http://d-nb.info/gnd/4390811-1", + "note": [ + { + "noteType": "general", + "label": [ + "Ort im Ar. Se\u0301lestat-Erstein, Dep. Unterelsass/Bas-Rhin, Region Grand Est (-2015: Elsass), 788 urkundl. erwa\u0308hnt" + ] + } + ], "pid": "945980132", "type": "bf:Place", "broader": [ @@ -21011,23 +21540,10 @@ "Barr (Elsass)", "Barr, Elsa\u00df" ], - "md5": "7a6e8bc54d3063c7cdc264bcbdc08556" + "md5": "992d2c7e8a22566f9fe8696f459d53d8" }, { "authorized_access_point": "Pra\u0308fektur Tochigi", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Pra\u0308fektur" - } - ], - "closeMatch": [ - { - "authorized_access_point": "\u6803\u6728\u770c", - "source": "GND" - } - ], "identifiedBy": [ { "source": "GND", @@ -21045,6 +21561,7 @@ "value": "(DE-588)4390430-0" } ], + "identifier": "http://d-nb.info/gnd/4390430-0", "pid": "945917201", "type": "bf:Place", "variant_access_point": [ @@ -21054,17 +21571,10 @@ "Shimotsukene", "Shimotsukeno" ], - "md5": "ea4b863d0135b3d77914fc2fe333e8e2" + "md5": "b198be84b19a2254100ec65d406560bf" }, { "authorized_access_point": "Conciergerie (Paris)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Gefa\u0308ngnisbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -21082,6 +21592,7 @@ "value": "(DE-588)4389955-9" } ], + "identifier": "http://d-nb.info/gnd/4389955-9", "pid": "945871678", "type": "bf:Place", "broader": [ @@ -21092,16 +21603,10 @@ "authorized_access_point": "Palais de la Cite\u0301 (Paris)" } ], - "md5": "8f3af56faae9e07fd9c8598aa0197f6f" + "md5": "b9266ec78201c8004a82d3f25dcd13c8" }, { "authorized_access_point": "Mogiljow", - "closeMatch": [ - { - "authorized_access_point": "\u041c\u0430\u0433i\u043b\u0435\u0308\u0443\u0306", - "source": "GND" - } - ], "identifiedBy": [ { "source": "GND", @@ -21119,6 +21624,7 @@ "value": "(DE-588)4384842-4" } ], + "identifier": "http://d-nb.info/gnd/4384842-4", "note": [ { "noteType": "dataSource", @@ -21126,6 +21632,12 @@ "Hompage - http://city.mogilev.by/?lang=bel", "Wikipedia - https://ru.wikipedia.org/w/index.php?oldid=138576423" ] + }, + { + "noteType": "general", + "label": [ + "Stadt in Wei\u00dfrussland am Dnjepr" + ] } ], "pid": "945385382", @@ -21148,7 +21660,7 @@ "\u041c\u043e\u0433\u0438\u043b\u0435\u0432", "\u041c\u043e\u0433\u0438\u043b\u0435\u0308\u0432" ], - "md5": "e9782837af02ee32cd39ca4936b3e625" + "md5": "44761ea527269bfe237a665c4727cb06" }, { "authorized_access_point": "Leipzig-Eutritzsch", @@ -21169,6 +21681,7 @@ "value": "(DE-588)4380230-8" } ], + "identifier": "http://d-nb.info/gnd/4380230-8", "pid": "944766021", "type": "bf:Place", "related": [ @@ -21182,7 +21695,7 @@ "variant_access_point": [ "Eutritzsch (Leipzig)" ], - "md5": "d5c74b73e5ebbaf8da1c81bb62b8a64c" + "md5": "be1ea3517e04d182f6c8589b9bc132f2" }, { "authorized_access_point": "Leipzig-Ost", @@ -21203,6 +21716,7 @@ "value": "(DE-588)5127721-9" } ], + "identifier": "http://d-nb.info/gnd/5127721-9", "pid": "944289290", "type": "bf:Place", "related": [ @@ -21210,7 +21724,7 @@ "authorized_access_point": "Leipzig" } ], - "md5": "7f5ec3db66d5e4ca0e492dfa36e6a03a" + "md5": "37433728850bd698cdcdd853e60c5e30" }, { "authorized_access_point": "L'vovskaja Oblast'", @@ -21231,22 +21745,16 @@ "value": "(DE-588)5123475-0" } ], + "identifier": "http://d-nb.info/gnd/5123475-0", "pid": "94400718X", "type": "bf:Place", "variant_access_point": [ "L'vivs'ka Oblast'" ], - "md5": "97a262fdc4d5943e2a1d6e18cf23294e" + "md5": "813c27a365f1d85f8671cec32265c85e" }, { "authorized_access_point": "Landkreis Leipziger Land", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Landkreis" - } - ], "identifiedBy": [ { "source": "GND", @@ -21264,6 +21772,15 @@ "value": "(DE-588)4370529-7" } ], + "identifier": "http://d-nb.info/gnd/4370529-7", + "note": [ + { + "noteType": "general", + "label": [ + "1994 aus den Kreisen Leipzig, Borna u. gro\u00dfen Teilen des Kreises Geithain gebildeter Landkreis, 1.8.2008 Eingliederung in den neugebildeten Landkreis Leipzig" + ] + } + ], "pid": "943882346", "type": "bf:Place", "related": [ @@ -21285,7 +21802,7 @@ "variant_access_point": [ "Leipziger Land (Kreis)" ], - "md5": "41b21b4b301bdee5aafffff9a9bfad31" + "md5": "17e2ae0f2ef060679c209e11b41ed343" }, { "authorized_access_point": "\u0141ago\u0301w (Woiwodschaft Lebus)", @@ -21306,12 +21823,19 @@ "value": "(DE-588)2138914-7" } ], + "identifier": "http://d-nb.info/gnd/2138914-7", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - http://pl.wikipedia.org/w/index.php?oldid=72530956" ] + }, + { + "noteType": "general", + "label": [ + "Ort nordwestl. von Swiebodzin; bis 1810 Sitz einer Johanniter-Kommende" + ] } ], "pid": "941847934", @@ -21334,7 +21858,7 @@ "\u0141ago\u0301w", "\u0141ago\u0301w Lubuski" ], - "md5": "9f508f26e803155633cc3ae644e86140" + "md5": "c78a11bf72a2a5861cd3a4fc10b836f3" }, { "authorized_access_point": "Lostallo", @@ -21355,9 +21879,18 @@ "value": "(DE-588)2138776-X" } ], + "identifier": "http://d-nb.info/gnd/2138776-X", + "note": [ + { + "noteType": "general", + "label": [ + "Gemeinde im Kt. Graubu\u0308nden" + ] + } + ], "pid": "941808769", "type": "bf:Place", - "md5": "a9350ee6282a6ab82e63b3925402980b" + "md5": "28fd0a71c25c8ccfd60202cd4076481e" }, { "authorized_access_point": "Zentralarabien", @@ -21378,6 +21911,7 @@ "value": "(DE-588)4346479-8" } ], + "identifier": "http://d-nb.info/gnd/4346479-8", "note": [ { "noteType": "dataSource", @@ -21396,17 +21930,10 @@ "variant_access_point": [ "Innerarabien" ], - "md5": "bc6a383efec83b5b049db889f4b9d41b" + "md5": "67f381986ff9aabaf1e26daa0e308fe6" }, { "authorized_access_point": "Wadi al-Batin", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Tal" - } - ], "identifiedBy": [ { "source": "GND", @@ -21424,9 +21951,18 @@ "value": "(DE-588)4342217-2" } ], + "identifier": "http://d-nb.info/gnd/4342217-2", + "note": [ + { + "noteType": "general", + "label": [ + "Tal in Saudiarabien" + ] + } + ], "pid": "941385175", "type": "bf:Place", - "md5": "62ab9ae6fbbdf00fcfd4433cecfd368f" + "md5": "e703e4b15e5bc721d8b5f429072e2d6a" }, { "authorized_access_point": "Leipzig-Plagwitz", @@ -21447,6 +21983,7 @@ "value": "(DE-588)4331603-7" } ], + "identifier": "http://d-nb.info/gnd/4331603-7", "pid": "940396068", "type": "bf:Place", "related": [ @@ -21460,7 +21997,7 @@ "variant_access_point": [ "Plagwitz (Leipzig)" ], - "md5": "5fda193c3f6c86d97ec734049a8cb993" + "md5": "cbdb27a34c906184f5c309b542c6cde5" }, { "authorized_access_point": "Leipzig-Connewitz", @@ -21481,6 +22018,15 @@ "value": "(DE-588)4331601-3" } ], + "identifier": "http://d-nb.info/gnd/4331601-3", + "note": [ + { + "noteType": "general", + "label": [ + "Stadtteil von Leipzig seit 1.1.1891" + ] + } + ], "pid": "940396009", "type": "bf:Place", "related": [ @@ -21494,17 +22040,10 @@ "variant_access_point": [ "Connewitz (Leipzig)" ], - "md5": "bced35b7f2a1b7903c9c8fb07de8101e" + "md5": "ef55131a1464dd0076a8707ca8986cd8" }, { "authorized_access_point": "St. Ewaldi Aplerbeck (Dortmund)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kirchenbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -21522,6 +22061,7 @@ "value": "(DE-588)7796155-9" } ], + "identifier": "http://d-nb.info/gnd/7796155-9", "note": [ { "noteType": "dataSource", @@ -21549,22 +22089,10 @@ "Zweite St.-Ewaldi-Kirche von 1971 (Dortmund)", "Egbertstra\u00dfe 15 (Dortmund)" ], - "md5": "cf6b05df86f26b20c4e1ea11993d784d" + "md5": "53ea485d2f2cd19b489e7129a318c840" }, { "authorized_access_point": "Haus Brincks (Coesfeld)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Backsteinbau" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Bu\u0308rgerhaus" - } - ], "identifiedBy": [ { "source": "GND", @@ -21582,28 +22110,25 @@ "value": "(DE-588)7789992-1" } ], + "identifier": "http://d-nb.info/gnd/7789992-1", + "note": [ + { + "noteType": "general", + "label": [ + "Ca. 1794 fu\u0308r den Leinenweber Hermann Brincks errichtetes Bu\u0308rgerhaus; 1945 durch Luftangriffe vollsta\u0308ndig zersto\u0308rt" + ] + } + ], "pid": "199252149", "type": "bf:Place", "variant_access_point": [ "Bo\u0308nersches Haus (Coesfeld)", "Mu\u0308nsterstra\u00dfe 37 (Coesfeld)" ], - "md5": "a2fb6a47a682d321076a1e287a262562" + "md5": "d312eef2e482828817a185bf271001a6" }, { "authorized_access_point": "Donopbrunnen (Detmold)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Brunnen" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Baudenkmal" - } - ], "identifiedBy": [ { "source": "GND", @@ -21621,6 +22146,7 @@ "value": "(DE-588)7789613-0" } ], + "identifier": "http://d-nb.info/gnd/7789613-0", "note": [ { "noteType": "dataSource", @@ -21636,22 +22162,10 @@ "authorized_access_point": "Detmold" } ], - "md5": "d353d6e4d7321b6ba3c145fd6db52175" + "md5": "5bded78fd14d78c2cb92b483cfb4fb0f" }, { "authorized_access_point": "Heeper Fichten (Bielefeld)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Arbeitersiedlung" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Wohnsiedlung" - } - ], "identifiedBy": [ { "source": "GND", @@ -21669,6 +22183,7 @@ "value": "(DE-588)7789354-2" } ], + "identifier": "http://d-nb.info/gnd/7789354-2", "note": [ { "noteType": "dataSource", @@ -21688,22 +22203,10 @@ "variant_access_point": [ "Siedlung Heeper Fichten (Bielefeld)" ], - "md5": "062d7d3f741e76ba2817f7bbec63ff9c" + "md5": "d0ab7398a7a25e77658236b7b4a85ba6" }, { "authorized_access_point": "Das gastliche Dorf (Delbru\u0308ck)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fachwerkbau" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Ensemble" - } - ], "identifiedBy": [ { "source": "GND", @@ -21721,12 +22224,19 @@ "value": "(DE-588)7789352-9" } ], + "identifier": "http://d-nb.info/gnd/7789352-9", "note": [ { "noteType": "dataSource", "label": [ "Homepage - https://www.dasgastlichedorf.com/" ] + }, + { + "noteType": "general", + "label": [ + "Ensemble historischer Fachwerkha\u0308user aus dem 16. und 18. Jahrhundert mit Gastronomiebetrieb" + ] } ], "pid": "199246793", @@ -21740,17 +22250,10 @@ "Gastliches Dorf (Delbru\u0308ck)", "Lippsta\u0308dter Stra\u00dfe 88 (Delbru\u0308ck)" ], - "md5": "003adc838738df0737d8a86ab92bd62d" + "md5": "5acaa51f3323b8c71135d5a17f2964e5" }, { "authorized_access_point": "Galgenlaake (Delbru\u0308ck)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stra\u00dfe" - } - ], "identifiedBy": [ { "source": "GND", @@ -21768,6 +22271,7 @@ "value": "(DE-588)7789283-5" } ], + "identifier": "http://d-nb.info/gnd/7789283-5", "note": [ { "noteType": "dataSource", @@ -21783,17 +22287,10 @@ "authorized_access_point": "Delbru\u0308ck" } ], - "md5": "897f7428a992cb47a14dc6d704e3082c" + "md5": "2ff7a2381728817354b621522f8397b8" }, { "authorized_access_point": "Krullsche Haus (Detmold)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Haus" - } - ], "identifiedBy": [ { "source": "GND", @@ -21811,6 +22308,7 @@ "value": "(DE-588)7789111-9" } ], + "identifier": "http://d-nb.info/gnd/7789111-9", "pid": "199244766", "type": "bf:Place", "broader": [ @@ -21826,17 +22324,10 @@ "variant_access_point": [ "Richthofenstra\u00dfe 16 (Detmold)" ], - "md5": "eb11f8776c4b86c76802720d80d773a6" + "md5": "0c4d9c6c34f3b9617cc1b3ddf4f0652b" }, { "authorized_access_point": "Richthofenstra\u00dfe (Detmold)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stra\u00dfe" - } - ], "identifiedBy": [ { "source": "GND", @@ -21854,6 +22345,7 @@ "value": "(DE-588)7789109-0" } ], + "identifier": "http://d-nb.info/gnd/7789109-0", "note": [ { "noteType": "dataSource", @@ -21869,17 +22361,10 @@ "authorized_access_point": "Detmold" } ], - "md5": "2315675f1a2f1dfe1d7486c645bfceb9" + "md5": "f4ac6c3a730985d99995e9696a6a0963" }, { "authorized_access_point": "Freiligrathstra\u00dfe (Detmold)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stra\u00dfe" - } - ], "identifiedBy": [ { "source": "GND", @@ -21897,6 +22382,7 @@ "value": "(DE-588)7789108-9" } ], + "identifier": "http://d-nb.info/gnd/7789108-9", "pid": "199244731", "type": "bf:Place", "broader": [ @@ -21904,22 +22390,10 @@ "authorized_access_point": "Detmold" } ], - "md5": "a6b290431180973b95d990280e4b507c" + "md5": "db40864895d981532772cd72648e670e" }, { "authorized_access_point": "Nienburg (Bu\u0308nde)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Wasserburg" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Rittersitz" - } - ], "identifiedBy": [ { "source": "GND", @@ -21937,6 +22411,15 @@ "value": "(DE-588)7789063-2" } ], + "identifier": "http://d-nb.info/gnd/7789063-2", + "note": [ + { + "noteType": "general", + "label": [ + "Gelegen am Fluss Else bei Bu\u0308nde (Kreis Herford)" + ] + } + ], "pid": "199244375", "type": "bf:Place", "broader": [ @@ -21948,17 +22431,10 @@ "Castrum Blankena (Bu\u0308nde)", "Haus Wervingen" ], - "md5": "14bab1af144c30720eebc5d56cc69580" + "md5": "5e5f542af1ce2f989a2d7df5900cf4eb" }, { "authorized_access_point": "Glu\u0308ckaufstra\u00dfe (Castrop-Rauxel)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stra\u00dfe" - } - ], "identifiedBy": [ { "source": "GND", @@ -21976,6 +22452,7 @@ "value": "(DE-588)7788729-3" } ], + "identifier": "http://d-nb.info/gnd/7788729-3", "note": [ { "noteType": "dataSource", @@ -21991,7 +22468,7 @@ "authorized_access_point": "Castrop-Rauxel" } ], - "md5": "8cc8e8684a5e31997bee41461f7ed319" + "md5": "4b8daceba658e9cf3d51ed3c10d77d95" }, { "authorized_access_point": "Attendorn-Rieflinghausen", @@ -22012,6 +22489,7 @@ "value": "(DE-588)7788614-8" } ], + "identifier": "http://d-nb.info/gnd/7788614-8", "note": [ { "noteType": "dataSource", @@ -22030,17 +22508,10 @@ "authorized_access_point": "Helden-Rieflinghausen" } ], - "md5": "78874ae247f79a1bc335e45ba3d19ff6" + "md5": "d5c9a0657af1ad39871aaaa5c6eccd32" }, { "authorized_access_point": "St. Rochus Hospital (Castrop-Rauxel)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Krankenhausbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -22058,6 +22529,7 @@ "value": "(DE-588)7788606-9" } ], + "identifier": "http://d-nb.info/gnd/7788606-9", "pid": "199240515", "type": "bf:Place", "broader": [ @@ -22074,17 +22546,10 @@ "St. Rochus-Hospital (Castrop-Rauxel)", "Glu\u0308ckaufstra\u00dfe 10 (Castrop-Rauxel)" ], - "md5": "3dfb14383681b0236491b08020e64529" + "md5": "25d5491e7aa7ad2825c024f9e86a857d" }, { "authorized_access_point": "Haus Schanze (Coesfeld)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Haus" - } - ], "identifiedBy": [ { "source": "GND", @@ -22102,6 +22567,7 @@ "value": "(DE-588)7788473-5" } ], + "identifier": "http://d-nb.info/gnd/7788473-5", "pid": "199239436", "type": "bf:Place", "broader": [ @@ -22112,17 +22578,10 @@ "variant_access_point": [ "Haus Schanze an der Billerbecker Stra\u00dfe (Coesfeld)" ], - "md5": "b3372a8bea0cdacb6643a723a319cbcc" + "md5": "3ec4db891c1a24cd80bc7b12cb9963cf" }, { "authorized_access_point": "Lortzingstra\u00dfe (Detmold)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stra\u00dfe" - } - ], "identifiedBy": [ { "source": "GND", @@ -22140,6 +22599,7 @@ "value": "(DE-588)7788374-3" } ], + "identifier": "http://d-nb.info/gnd/7788374-3", "note": [ { "noteType": "dataSource", @@ -22155,17 +22615,10 @@ "authorized_access_point": "Detmold" } ], - "md5": "e3ea5c6631e8ae9acb88b053b69ebb18" + "md5": "92d66c756295bd6e1d432d98ce3446c1" }, { "authorized_access_point": "Sankt Jakob (Ko\u0308ln- Altstadt Su\u0308d)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kirchenbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -22183,6 +22636,7 @@ "value": "(DE-588)7787520-5" } ], + "identifier": "http://d-nb.info/gnd/7787520-5", "note": [ { "noteType": "dataSource", @@ -22190,6 +22644,12 @@ "Wikipedia - https://de.wikipedia.org/w/index.php?title=St._Jakob_(K%C3%B6ln)&oldid=205660525", "Homepage Altes Ko\u0308ln - https://altes-koeln.de/wiki/St._Jacob" ] + }, + { + "noteType": "general", + "label": [ + "Ursprungsbau 1071 geweiht; 1534-1548 erheblich umgebaut, 1825 abgebrochen" + ] } ], "pid": "199231516", @@ -22207,17 +22667,10 @@ "Pfarrkirche St. Jakob (Ko\u0308ln- Altstadt Su\u0308d)", "St. Jakob (Ko\u0308ln) (Ko\u0308ln- Altstadt Su\u0308d)" ], - "md5": "751902d10200848ee819b7ca9d8f5a72" + "md5": "ea0ac4d7818e5da46fd05d77d2d3cd0a" }, { "authorized_access_point": "Merkurbrunnen (Bielefeld)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Brunnen" - } - ], "identifiedBy": [ { "source": "GND", @@ -22235,6 +22688,7 @@ "value": "(DE-588)7787435-3" } ], + "identifier": "http://d-nb.info/gnd/7787435-3", "note": [ { "noteType": "dataSource", @@ -22250,17 +22704,10 @@ "authorized_access_point": "Bielefeld" } ], - "md5": "996aa3ce6c0b5bd315baa3bd80d49a7d" + "md5": "ae92f9cecccd6657587d731a4477e59d" }, { "authorized_access_point": "Verso\u0308hnungskirche Ho\u0308ntrop (Bochum)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kirchenbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -22278,6 +22725,7 @@ "value": "(DE-588)7787372-5" } ], + "identifier": "http://d-nb.info/gnd/7787372-5", "note": [ { "noteType": "dataSource", @@ -22303,17 +22751,10 @@ "Evangelische Verso\u0308hnungskirche Ho\u0308ntrop (Bochum)", "Preins Feld 8 (Bochum)" ], - "md5": "01dbcab1c8f82689f38bd325fb80b996" + "md5": "79286cc935bd95dd21bb3995792a4438" }, { "authorized_access_point": "Quellenhof (Bielefeld)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Bauernhof" - } - ], "identifiedBy": [ { "source": "GND", @@ -22331,12 +22772,19 @@ "value": "(DE-588)7786666-6" } ], + "identifier": "http://d-nb.info/gnd/7786666-6", "note": [ { "noteType": "dataSource", "label": [ "Stand: 10.07.2024 - https://www.westfalen-blatt.de/owl/quellenhof-wird-abgerissen-2450879?pid=true&npg" ] + }, + { + "noteType": "general", + "label": [ + "Historischer Bauernhof, Erstwa\u0308hnung um 1550, 1904 von den Von-Bodelschwinghsche Anstalten erworben, 2021 zugunsten eines Hospiz-Neubaus abgerissen." + ] } ], "pid": "199224196", @@ -22354,17 +22802,10 @@ "Go\u0308llnerhof (Bielefeld)", "Hof Go\u0308llner (Bielefeld)" ], - "md5": "2f16a45d8a626e97f2c8d0d0dbfb5a77" + "md5": "4359d3ceece2e1f1961b4273a6652740" }, { "authorized_access_point": "Deponie Coesfeld-Ho\u0308ven", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Deponie" - } - ], "identifiedBy": [ { "source": "GND", @@ -22382,6 +22823,7 @@ "value": "(DE-588)7785996-0" } ], + "identifier": "http://d-nb.info/gnd/7785996-0", "note": [ { "noteType": "dataSource", @@ -22408,17 +22850,10 @@ "Zentraldeponie Coesfeld-Ho\u0308ven im Kreis Coesfeld", "Zentraldeponie Coesfeld-Ho\u0308ven im Kreis Coesfeld, NRW" ], - "md5": "0bec207d1262fd4296d58543909fad65" + "md5": "accabce3ab48198c8297d4f9893417c7" }, { "authorized_access_point": "Gerricusplatz (Du\u0308sseldorf)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Platz" - } - ], "identifiedBy": [ { "source": "GND", @@ -22436,6 +22871,7 @@ "value": "(DE-588)7785731-8" } ], + "identifier": "http://d-nb.info/gnd/7785731-8", "note": [ { "noteType": "dataSource", @@ -22454,17 +22890,10 @@ "authorized_access_point": "Du\u0308sseldorf-Gerresheim" } ], - "md5": "e3e3bd5a0c0a28a55e22a8cbd2631473" + "md5": "cbdf0634470564c126a728ca02c24846" }, { "authorized_access_point": "Synagoge Detmold (Detmold)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Synagoge" - } - ], "identifiedBy": [ { "source": "GND", @@ -22482,12 +22911,19 @@ "value": "(DE-588)7785597-8" } ], + "identifier": "http://d-nb.info/gnd/7785597-8", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Synagoge_Detmold&oldid=245430403" ] + }, + { + "noteType": "general", + "label": [ + "Fiel in der Reichspogromnacht vom 9. auf den 10. November 1938 einem Brandanschlag zum Opfer, 1939 endgu\u0308ltig abgerissen." + ] } ], "pid": "199214700", @@ -22502,17 +22938,10 @@ "authorized_access_point": "Lortzingstra\u00dfe (Detmold)" } ], - "md5": "d35916d752eba1a9fb7dd5a8268fa9cf" + "md5": "c06ba3d161ae0c30cef77d1144bf0d73" }, { "authorized_access_point": "Freiherr-vom-Stein-Kaserne (Coesfeld)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kaserne" - } - ], "identifiedBy": [ { "source": "GND", @@ -22530,6 +22959,7 @@ "value": "(DE-588)7785589-9" } ], + "identifier": "http://d-nb.info/gnd/7785589-9", "pid": "19921462X", "type": "bf:Place", "broader": [ @@ -22542,17 +22972,10 @@ "Kaserne Coesfeld (Coesfeld)", "Letter Bruch 9 (Coesfeld)" ], - "md5": "2e9b4b72edec965f2aec8924219c262c" + "md5": "37d62bcfee6a3c384fad47082c16e44e" }, { "authorized_access_point": "Verku\u0308ndigungskirche (Gemen, Borken (Westf.))", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kirchenbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -22570,12 +22993,19 @@ "value": "(DE-588)7785301-5" } ], + "identifier": "http://d-nb.info/gnd/7785301-5", "note": [ { "noteType": "dataSource", "label": [ "Homepage - https://www.christus-koenig-gemen.de/einrichtungen-christus-koenig-gemen/kirchen/verkuendigungskirche/" ] + }, + { + "noteType": "general", + "label": [ + "Kirchengeba\u0308ude des Provinzialats der Scho\u0308nsta\u0308tter Marienschwestern in Gemen" + ] } ], "pid": "199212007", @@ -22588,17 +23018,10 @@ "variant_access_point": [ "Maria\u0308 Verku\u0308ndigung (Gemen, Borken (Westf.))" ], - "md5": "f0616e7bbfab1096b7c9402761c03f6c" + "md5": "95c78a459dd2829bcde5a33c490d2c2b" }, { - "authorized_access_point": "Deininghausen", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "rela", - "name": "Waldgebiet" - } - ], + "authorized_access_point": "Deininghausen - Grutholz", "identifiedBy": [ { "source": "GND", @@ -22616,19 +23039,21 @@ "value": "(DE-588)7785281-3" } ], + "identifier": "http://d-nb.info/gnd/7785281-3", + "note": [ + { + "noteType": "general", + "label": [ + "Waldgebiet im Castrop-Rauxeler Stadtteil Deininghausen" + ] + } + ], "pid": "199211817", "type": "bf:Place", - "md5": "ad09c6e635fa5329c2a99e5057b89fcc" + "md5": "be45303111d4c7f78f08c52304e8ace9" }, { "authorized_access_point": "Osterhof (Brilon)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Bauernhof" - } - ], "identifiedBy": [ { "source": "GND", @@ -22646,6 +23071,15 @@ "value": "(DE-588)7785159-6" } ], + "identifier": "http://d-nb.info/gnd/7785159-6", + "note": [ + { + "noteType": "general", + "label": [ + "Bauernhof im Mo\u0308hnetal gelegen" + ] + } + ], "pid": "199210713", "type": "bf:Place", "broader": [ @@ -22656,17 +23090,10 @@ "variant_access_point": [ "Osterhof in der Gemarkung von Brilon (Brilon)" ], - "md5": "efe3357d0deeb1d693fc0441cd2c2dfd" + "md5": "d9bf30731da20663c1e88225b5739cd3" }, { "authorized_access_point": "Werre-Park (Bad Oeynhausen)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Einkaufszentrum" - } - ], "identifiedBy": [ { "source": "GND", @@ -22684,12 +23111,19 @@ "value": "(DE-588)7785023-3" } ], + "identifier": "http://d-nb.info/gnd/7785023-3", "note": [ { "noteType": "dataSource", "label": [ "Homepage - https://www.werre-park.de/" ] + }, + { + "noteType": "general", + "label": [ + "Ca. 52.000 qm gro\u00dfes Einkaufszentrum am Su\u0308dufer der Werre" + ] } ], "pid": "199209464", @@ -22702,22 +23136,10 @@ "variant_access_point": [ "Werre-Park Bad Oeynhausen (Bad Oeynhausen)" ], - "md5": "3e271725c337972c67b37e06b678ad7d" + "md5": "decbe78674ed8f0801e65e1c4da1daee" }, { "authorized_access_point": "Evangelische Kreuzkirche (Bestwig)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kirchenbau" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Baudenkmal" - } - ], "identifiedBy": [ { "source": "GND", @@ -22735,12 +23157,19 @@ "value": "(DE-588)7784086-0" } ], + "identifier": "http://d-nb.info/gnd/7784086-0", "note": [ { "noteType": "dataSource", "label": [ "Liste der Baudenkma\u0308ler in Bestwig - https://de.wikipedia.org/w/index.php?title=Liste_der_Baudenkm%C3%A4ler_in_Bestwig&oldid=242141515" ] + }, + { + "noteType": "general", + "label": [ + "2020 unter Denkmalschutz gestellt" + ] } ], "pid": "199200955", @@ -22758,22 +23187,10 @@ "Evangelische Kirche (Bestwig)", "Auferstehungskirche (Bestwig)" ], - "md5": "7d2742c6726941c0f4e2736169bb08c4" + "md5": "93085bd0e54965affc8dc5211b298f62" }, { "authorized_access_point": "Benekestra\u00dfe 10 (Detmold)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Haus" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Baudenkmal" - } - ], "identifiedBy": [ { "source": "GND", @@ -22791,6 +23208,7 @@ "value": "(DE-588)7783825-7" } ], + "identifier": "http://d-nb.info/gnd/7783825-7", "note": [ { "noteType": "dataSource", @@ -22811,22 +23229,10 @@ "authorized_access_point": "Benekestra\u00dfe (Detmold)" } ], - "md5": "4f8862a3a37fac24957ae4db1cd59e5e" + "md5": "2cc62b75640ddd0c54ad272d20f87e5e" }, { "authorized_access_point": "Denkmalstra\u00dfe 1 (Breckerfeld)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Haus" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Baudenkmal" - } - ], "identifiedBy": [ { "source": "GND", @@ -22844,12 +23250,19 @@ "value": "(DE-588)7783538-4" } ], + "identifier": "http://d-nb.info/gnd/7783538-4", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Liste_der_Baudenkm%C3%A4ler_in_Breckerfeld&oldid=227886228" ] + }, + { + "noteType": "general", + "label": [ + "Wohn- und Gescha\u0308ftshaus, heute \"Adler-Apotheke\"" + ] } ], "pid": "199195978", @@ -22864,17 +23277,10 @@ "authorized_access_point": "Denkmalstra\u00dfe (Breckerfeld)" } ], - "md5": "e956ce096d216c42c1ba2540c54dde2c" + "md5": "ffa3975e56002a047b5f0db65bd0d954" }, { "authorized_access_point": "Denkmalstra\u00dfe (Breckerfeld)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stra\u00dfe" - } - ], "identifiedBy": [ { "source": "GND", @@ -22892,6 +23298,7 @@ "value": "(DE-588)7783537-2" } ], + "identifier": "http://d-nb.info/gnd/7783537-2", "note": [ { "noteType": "dataSource", @@ -22907,27 +23314,10 @@ "authorized_access_point": "Breckerfeld" } ], - "md5": "5bbfaff2ef4f6809d9f334f864a29680" + "md5": "0e6c5fbe05d878bea1ddabb317acfd40" }, { "authorized_access_point": "Derkere Stra\u00dfe 26 (Brilon)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Bu\u0308rgerhaus" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fachwerkbau" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Baudenkmal" - } - ], "identifiedBy": [ { "source": "GND", @@ -22945,12 +23335,19 @@ "value": "(DE-588)7782867-7" } ], + "identifier": "http://d-nb.info/gnd/7782867-7", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Liste_der_Denkm%C3%A4ler_in_Brilon&oldid=238201542" ] + }, + { + "noteType": "general", + "label": [ + "Giebelsta\u0308ndiger Fachwerkbau mit Wirtschaftsdiele, dreischiffiges niederdeutsches Hallenhaus, seit 1985 denkmalgeschu\u0308tzt" + ] } ], "pid": "199189870", @@ -22969,22 +23366,10 @@ "Derkere Strasse 26 (Brilon)", "Bu\u0308rgerhaus Derkere Stra\u00dfe 26 (Brilon)" ], - "md5": "7bbdf83489ed7224605298e1c62df65a" + "md5": "18881d9a249f3f1563c3ce524b1c73b9" }, { "authorized_access_point": "Niedere Stra\u00dfe 32 (Brilon)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Bu\u0308rgerhaus" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fachwerkbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -23002,6 +23387,15 @@ "value": "(DE-588)7782866-5" } ], + "identifier": "http://d-nb.info/gnd/7782866-5", + "note": [ + { + "noteType": "general", + "label": [ + "Fachwerkhaus vom Typ \"niederdeutsches Hallenhaus\", 2001 abgerissen" + ] + } + ], "pid": "199189862", "type": "bf:Place", "broader": [ @@ -23017,17 +23411,10 @@ "variant_access_point": [ "Niedere Strasse 32 (Brilon)" ], - "md5": "2dd57e98417795e1a957cb1c3807976a" + "md5": "8ad3713f9845cd2ddf112f754890a457" }, { "authorized_access_point": "Derkere Stra\u00dfe (Brilon)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stra\u00dfe" - } - ], "identifiedBy": [ { "source": "GND", @@ -23045,6 +23432,7 @@ "value": "(DE-588)7782865-3" } ], + "identifier": "http://d-nb.info/gnd/7782865-3", "note": [ { "noteType": "dataSource", @@ -23060,17 +23448,10 @@ "authorized_access_point": "Brilon" } ], - "md5": "21cf8f0445a2ec84fa63a8dce0ef2e63" + "md5": "0d46b68d08ff66f5abeac4e7bfd24b84" }, { "authorized_access_point": "Niedere Stra\u00dfe (Brilon)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stra\u00dfe" - } - ], "identifiedBy": [ { "source": "GND", @@ -23088,6 +23469,7 @@ "value": "(DE-588)7782864-1" } ], + "identifier": "http://d-nb.info/gnd/7782864-1", "note": [ { "noteType": "dataSource", @@ -23103,17 +23485,10 @@ "authorized_access_point": "Brilon" } ], - "md5": "d340c1f979d211f199466ffde3aefe59" + "md5": "ad5b51b41e2a03a4f70d713ec6f61148" }, { "authorized_access_point": "Steinha\u0308ger Ha\u0308uschen (Steinhagen, Kreis Gu\u0308tersloh)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fachwerkbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -23131,6 +23506,7 @@ "value": "(DE-588)7782582-2" } ], + "identifier": "http://d-nb.info/gnd/7782582-2", "note": [ { "noteType": "dataSource", @@ -23161,17 +23537,10 @@ "Bahnhofstra\u00dfe 2 (Steinhagen, Kreis Gu\u0308tersloh)", "Steinha\u0308gerha\u0308uschen (Steinhagen, Kreis Gu\u0308tersloh)" ], - "md5": "5b2556a16d4157b460eb41fb9fbd3b76" + "md5": "ddc7d11f71bdb90184e0bba3d4103953" }, { - "authorized_access_point": "Jakobus-Kirche Breckerfeld (Breckerfeld)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kanzel" - } - ], + "authorized_access_point": "Jakobus-Kirche Breckerfeld (Breckerfeld) - Kanzel", "identifiedBy": [ { "source": "GND", @@ -23189,6 +23558,15 @@ "value": "(DE-588)7782000-9" } ], + "identifier": "http://d-nb.info/gnd/7782000-9", + "note": [ + { + "noteType": "general", + "label": [ + "1727 gestiftet in Schwelm, 1740 in Breckerfeld aufgestellt" + ] + } + ], "pid": "199181993", "type": "bf:Place", "broader": [ @@ -23202,22 +23580,10 @@ "variant_access_point": [ "Evangelische Pfarrkirche (Breckerfeld)" ], - "md5": "291be42d0c0c519b90d286b664a36b6f" + "md5": "ea8b9521eab830ab438b197897fbfdfd" }, { "authorized_access_point": "Universum Bu\u0308nde (Bu\u0308nde)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kino" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Baudenkmal" - } - ], "identifiedBy": [ { "source": "GND", @@ -23235,6 +23601,7 @@ "value": "(DE-588)7781086-7" } ], + "identifier": "http://d-nb.info/gnd/7781086-7", "note": [ { "noteType": "dataSource", @@ -23262,27 +23629,10 @@ "Lichtspielhaus Wittekind (Bu\u0308nde)", "Hauptstra\u00dfe 9" ], - "md5": "a912b6baaba120328b905bb0e87de6fa" + "md5": "5f6aae9d1c516563cdc90f510500d3e4" }, { "authorized_access_point": "Dortberghaus (Dortmund)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Verwaltungsbau" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Hotel" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Baudenkmal" - } - ], "identifiedBy": [ { "source": "GND", @@ -23300,12 +23650,19 @@ "value": "(DE-588)7781046-6" } ], + "identifier": "http://d-nb.info/gnd/7781046-6", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Dortberghaus&oldid=242681457" ] + }, + { + "noteType": "general", + "label": [ + "Erbaut als Verwaltungsgeba\u0308ude der Gelsenkirchener Bergwerks-Aktiengesellschaft, von 1967-2004 Sitz des Bauordnungs- und Katasteramt. Seit 2022 Hotel." + ] } ], "pid": "19917332X", @@ -23318,22 +23675,10 @@ "variant_access_point": [ "Katharinenstra\u00dfe 9 (Dortmund)" ], - "md5": "d463c9a4579cdc6c9d36ec861cea1e44" + "md5": "c81d9bcf0dda10ceb48c0232708f7e49" }, { "authorized_access_point": "Alpincenter Bottrop (Bottrop)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Wintersportanlage" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Skihalle" - } - ], "identifiedBy": [ { "source": "GND", @@ -23351,6 +23696,7 @@ "value": "(DE-588)7780518-5" } ], + "identifier": "http://d-nb.info/gnd/7780518-5", "note": [ { "noteType": "dataSource", @@ -23371,22 +23717,10 @@ "Alpincenter in Bottrop (Bottrop)", "Prosperstra\u00dfe 299-301 (Bottrop)" ], - "md5": "0a8c0d732e91fc4df0f3ab76c49d91c2" + "md5": "f93a5131e9dd0384e30c54ffecbc5f2b" }, { "authorized_access_point": "Klosteranlage des Ehem. Augustinerchorherren-Klosters Ewig (Attendorn)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Klosteranlage" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Baudenkmal" - } - ], "identifiedBy": [ { "source": "GND", @@ -23404,6 +23738,15 @@ "value": "(DE-588)7780057-6" } ], + "identifier": "http://d-nb.info/gnd/7780057-6", + "note": [ + { + "noteType": "general", + "label": [ + "Bis 1803 als Kloster genutzt, seit 1983 Baudenkmal; heute (neben diversen Verwaltungs- und Gefa\u0308ngnisbauten) Teil des Anstaltsgela\u0308ndes der JVA Attendorn" + ] + } + ], "pid": "199164347", "type": "bf:Place", "variant_access_point": [ @@ -23419,17 +23762,10 @@ "Biggeweg 5 (Attendorn)", "Gefa\u0308ngnisanlage der Justizvollzugsanstalt Attendorn (Attendorn)" ], - "md5": "ee35f09de044866a610c7c117b34e6d0" + "md5": "0cf16b0e0a37ef50f883c4eb2f40e302" }, { "authorized_access_point": "Elisabethstra\u00dfe (Bochum)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stra\u00dfe" - } - ], "identifiedBy": [ { "source": "GND", @@ -23447,6 +23783,7 @@ "value": "(DE-588)7779618-4" } ], + "identifier": "http://d-nb.info/gnd/7779618-4", "note": [ { "noteType": "dataSource", @@ -23468,17 +23805,10 @@ "variant_access_point": [ "Elisabethstra\u00dfe (Bochum-Wattenscheid)" ], - "md5": "24c1b324f28f916271944201528a71ac" + "md5": "4f4ff1ade2bc928d74d4465eb099c980" }, { "authorized_access_point": "Wattenscheider Hellweg (Bochum)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stra\u00dfe" - } - ], "identifiedBy": [ { "source": "GND", @@ -23496,6 +23826,7 @@ "value": "(DE-588)7779578-7" } ], + "identifier": "http://d-nb.info/gnd/7779578-7", "note": [ { "noteType": "dataSource", @@ -23511,22 +23842,10 @@ "authorized_access_point": "Bochum" } ], - "md5": "bfaea4e2c4c67702d838c211ee957abb" + "md5": "dc53c0387bdf2b1f7c9111ff25933549" }, { "authorized_access_point": "Florianturm (Dortmund)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fernsehturm" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Aussichtsturm" - } - ], "identifiedBy": [ { "source": "GND", @@ -23544,6 +23863,7 @@ "value": "(DE-588)7779566-0" } ], + "identifier": "http://d-nb.info/gnd/7779566-0", "note": [ { "noteType": "dataSource", @@ -23566,27 +23886,10 @@ "Florianturm im Westfalenpark (Dortmund)", "Florianstra\u00dfe 2 (Dortmund)" ], - "md5": "46d0948b90e8ce509d271e2277a4a040" + "md5": "ee6be98fe1295b4479336db9c2d97ffc" }, { "authorized_access_point": "Kotten Bodde (Bochum)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kate" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Viersta\u0308nderbau" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Baudenkmal" - } - ], "identifiedBy": [ { "source": "GND", @@ -23604,12 +23907,19 @@ "value": "(DE-588)7779553-2" } ], + "identifier": "http://d-nb.info/gnd/7779553-2", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Liste_der_Baudenkm%C3%A4ler_im_Stadtbezirk_Bochum-Wattenscheid&oldid=246405605" ] + }, + { + "noteType": "general", + "label": [ + "In zwei Bauabschnitten 1619 und 1672 errichteter ehemaliger Bauernkotten, heute Gaststa\u0308ttenbetrieb" + ] } ], "pid": "199159777", @@ -23631,7 +23941,7 @@ "Am Thie 8 (Bochum)", "Wohnhaus (Bochum)" ], - "md5": "36affbbe6f959f60f2c34607a45d5df9" + "md5": "0bb0497a24421a8fa872977f179f696b" }, { "authorized_access_point": "Barntrup-Uhlental", @@ -23652,6 +23962,7 @@ "value": "(DE-588)7779320-1" } ], + "identifier": "http://d-nb.info/gnd/7779320-1", "pid": "199157642", "type": "bf:Place", "related": [ @@ -23662,7 +23973,7 @@ "variant_access_point": [ "Uhlental" ], - "md5": "4dd4cf4a9b3cabb2ef95c37ae86eca75" + "md5": "634afb9f4f9c47883226f54486e15f14" }, { "authorized_access_point": "Ho\u0308fkerstra\u00dfe (Dortmund)", @@ -23683,6 +23994,7 @@ "value": "(DE-588)7778231-8" } ], + "identifier": "http://d-nb.info/gnd/7778231-8", "note": [ { "noteType": "dataSource", @@ -23698,17 +24010,10 @@ "authorized_access_point": "Dortmund" } ], - "md5": "7ab8d6502832b9f1e8b70ffe1c44b496" + "md5": "4e858aabfd2e204f1783f788441aed47" }, { "authorized_access_point": "Alter Postweg (Bottrop)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stra\u00dfe" - } - ], "identifiedBy": [ { "source": "GND", @@ -23726,6 +24031,7 @@ "value": "(DE-588)7777247-7" } ], + "identifier": "http://d-nb.info/gnd/7777247-7", "note": [ { "noteType": "dataSource", @@ -23747,22 +24053,10 @@ "variant_access_point": [ "Alter Postweg (Bottrop-Kirchhellen)" ], - "md5": "e49a03515ecc811eb171504161a297e7" + "md5": "cb22738df8b4801f527410ce88c1f865" }, { "authorized_access_point": "Schwartzstra\u00dfe 7 (Bocholt)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Villa" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Baudenkmal" - } - ], "identifiedBy": [ { "source": "GND", @@ -23780,12 +24074,19 @@ "value": "(DE-588)7777006-7" } ], + "identifier": "http://d-nb.info/gnd/7777006-7", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Liste_der_Baudenkm%C3%A4ler_in_Bocholt&oldid=242141670" ] + }, + { + "noteType": "general", + "label": [ + "Zweigeschossige Backstein-/Putzbauvilla" + ] } ], "pid": "199136637", @@ -23798,22 +24099,10 @@ "variant_access_point": [ "Villa (Bocholt)" ], - "md5": "ae5a090b2e430d142e1b6cee69719f44" + "md5": "56e521a71fe9b033057cc4ca6847a503" }, { "authorized_access_point": "Hitlerstein (Barntrup)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Denkmal" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Ehrenmal" - } - ], "identifiedBy": [ { "source": "GND", @@ -23831,6 +24120,15 @@ "value": "(DE-588)7774950-9" } ], + "identifier": "http://d-nb.info/gnd/7774950-9", + "note": [ + { + "noteType": "general", + "label": [ + "Im Barntruper Stadtwald zu Ehren Adolf Hitlers (1933 zum Barntruper Ehrenbu\u0308rger ernannt) errichtetes Denkmal, bestehend aus einem auf einem Sockel ruhenden Findling mit eingraviertem Hakenkreuz, eingefasst von Hecke und Zaun. 1945 vermutlich durch Vergraben oder Sprengen beseitigt." + ] + } + ], "pid": "199118167", "type": "bf:Place", "broader": [ @@ -23838,7 +24136,7 @@ "authorized_access_point": "Barntrup" } ], - "md5": "c07e54be36f44bae4a88257b517d8cf2" + "md5": "6483da06d780b5354fb4b1d07d54a3d2" }, { "authorized_access_point": "Balve-Haustadt", @@ -23859,6 +24157,7 @@ "value": "(DE-588)7771795-8" } ], + "identifier": "http://d-nb.info/gnd/7771795-8", "note": [ { "noteType": "dataSource", @@ -23877,22 +24176,10 @@ "variant_access_point": [ "Haustadt (Balve)" ], - "md5": "4c4a88f7f82817fa42b3868eff3ff675" + "md5": "8ca06bc261eab19cbab98156f9549883" }, { "authorized_access_point": "Totenleuchte (Arnsberg)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Denkmal" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stele" - } - ], "identifiedBy": [ { "source": "GND", @@ -23910,12 +24197,19 @@ "value": "(DE-588)7770364-9" } ], + "identifier": "http://d-nb.info/gnd/7770364-9", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.m.wikipedia.org/wiki/Kunst_im_%C3%B6ffentlichen_Raum_in_Arnsberg" ] + }, + { + "noteType": "general", + "label": [ + "Mahnmal fu\u0308r die Toten der Mo\u0308hnekatastrophe von 1943, steht auf dem Gela\u0308nde der Pfarrkirche St. Johannes in Neheim" + ] } ], "pid": "199077177", @@ -23933,22 +24227,10 @@ "Totenleuchte (Arnsberg-Neheim)", "Totenstele (Arnsberg)" ], - "md5": "b7ef2b21d6a21bc5bafcb0f46b1af7d1" + "md5": "87ac940e824803bf6d5588c53b19155e" }, { "authorized_access_point": "Haus Holtwick (Rosendahl)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Torbau" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Baudenkmal" - } - ], "identifiedBy": [ { "source": "GND", @@ -23966,6 +24248,7 @@ "value": "(DE-588)7764388-4" } ], + "identifier": "http://d-nb.info/gnd/7764388-4", "note": [ { "noteType": "dataSource", @@ -23993,22 +24276,10 @@ "variant_access_point": [ "Haus Holtwick (Rosendahl-Holtwick)" ], - "md5": "1a42f031b48dd02b6f19c4f7a66440cb" + "md5": "b0af0057f391db10446fb45674a66e39" }, { "authorized_access_point": "Ju\u0308discher Friedhof Bochum (Bochum)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Ju\u0308discher Friedhof" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Baudenkmal" - } - ], "identifiedBy": [ { "source": "GND", @@ -24026,12 +24297,19 @@ "value": "(DE-588)7764341-0" } ], + "identifier": "http://d-nb.info/gnd/7764341-0", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=J%C3%BCdischer_Friedhof_Bochum&oldid=245831861" ] + }, + { + "noteType": "general", + "label": [ + "Ju\u0308discher Friedhof an der Wasserstr." + ] } ], "pid": "199023360", @@ -24048,17 +24326,10 @@ "Ju\u0308discher Friedhof Bochum (Bochum-Wiemelhausen)", "Ju\u0308discher Friedhof Wiemelhausen (Bochum)" ], - "md5": "0ed97a7e87afec8d8a47498cd3cd79bc" + "md5": "d04cfb7a028e757c875e15601ff3dcdc" }, { "authorized_access_point": "Haus Schlu\u0308nder (Arnsberg)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Haus" - } - ], "identifiedBy": [ { "source": "GND", @@ -24076,6 +24347,7 @@ "value": "(DE-588)7764246-6" } ], + "identifier": "http://d-nb.info/gnd/7764246-6", "pid": "199022534", "type": "bf:Place", "broader": [ @@ -24091,17 +24363,10 @@ "Haus Schlu\u0308nder im Luerwald (Arnsberg)", "Haus am Bru\u0308ggestu\u0308ck (Arnsberg)" ], - "md5": "8dc28e94a79c29b108869272d8fb2336" + "md5": "3fa71187372d5a0de8e28badf12063d4" }, { "authorized_access_point": "Benekestra\u00dfe (Detmold)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stra\u00dfe" - } - ], "identifiedBy": [ { "source": "GND", @@ -24119,6 +24384,7 @@ "value": "(DE-588)7763244-8" } ], + "identifier": "http://d-nb.info/gnd/7763244-8", "note": [ { "noteType": "dataSource", @@ -24134,17 +24400,10 @@ "authorized_access_point": "Detmold" } ], - "md5": "b980b29c3e9734a0af78cea509b57b15" + "md5": "67c2aa36975806457307f4c07eaa1ea2" }, { "authorized_access_point": "Kortumstra\u00dfe (Bochum)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stra\u00dfe" - } - ], "identifiedBy": [ { "source": "GND", @@ -24162,6 +24421,7 @@ "value": "(DE-588)7763208-4" } ], + "identifier": "http://d-nb.info/gnd/7763208-4", "note": [ { "noteType": "dataSource", @@ -24177,17 +24437,10 @@ "authorized_access_point": "Bochum" } ], - "md5": "eae98f26f3f4c2656fa1e05d2ec08f92" + "md5": "12e08c69976738040b2d835b254eae85" }, { "authorized_access_point": "Altsta\u0308dter Nicolaikirche (Bielefeld)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Hallenkirche" - } - ], "identifiedBy": [ { "source": "GND", @@ -24205,12 +24458,19 @@ "value": "(DE-588)7762981-4" } ], + "identifier": "http://d-nb.info/gnd/7762981-4", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Altst%C3%A4dter_Nicolaikirche&oldid=245915909" ] + }, + { + "noteType": "general", + "label": [ + "A\u0308lteste Kirche auf dem Stadtgebiet Bielefelds. Nach Zersto\u0308rung 1944 unter Verwendung alter Bausubstanz durch die Architekten Bernhard Hopp und Rudolf Ja\u0308ger wieder aufgebaut; der Turm erhielt statt der urspru\u0308nglichen barocken Haube einen steilen Betonaufsatz mit Eckstreben und Helm." + ] } ], "pid": "199011249", @@ -24227,7 +24487,7 @@ "Ev. Altsta\u0308dter Nicolaikirche Bielefeld (Bielefeld)", "Nikolaikirche zu Bielefeld (Bielefeld)" ], - "md5": "f25f1cac93791b9b4952e4988945e5fc" + "md5": "2526fb2b7b013932425d4189157fc752" }, { "authorized_access_point": "Rathaus (Beckum)", @@ -24248,6 +24508,7 @@ "value": "(DE-588)7762132-3" } ], + "identifier": "http://d-nb.info/gnd/7762132-3", "note": [ { "noteType": "dataSource", @@ -24255,6 +24516,12 @@ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Liste_der_Baudenkm%C3%A4ler_in_Beckum&oldid=245713880", "Homepage Beckum - https://www.beckum.de/entdecken-erleben/kultur/stadtmuseum/#accordion-1-5" ] + }, + { + "noteType": "general", + "label": [ + "Verputzter Bruchsteinbau mit seitlichem Durchgang zum Kirchhof, 1983 unter Denkmalschutz gestellt; beherbergt seit 1986 das Stadtmuseum" + ] } ], "pid": "199003645", @@ -24274,17 +24541,10 @@ "Stadtmuseum (Beckum)", "Markt 1 (Beckum)" ], - "md5": "078aea1f2076f6d6ae852ce2c290363f" + "md5": "acf0f7a77f3910ba2627d8088534dcb1" }, { "authorized_access_point": "IHK-Bezirk Detmold", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "IHK-Bezirk" - } - ], "identifiedBy": [ { "source": "GND", @@ -24302,22 +24562,24 @@ "value": "(DE-588)7762049-5" } ], + "identifier": "http://d-nb.info/gnd/7762049-5", + "note": [ + { + "noteType": "general", + "label": [ + "Umfasst den Kreis Lippe zu Detmold" + ] + } + ], "pid": "199002894", "type": "bf:Place", "variant_access_point": [ "Detmold (IHK-Bezirk)" ], - "md5": "fa6d918bbd5d3b48ba879406e3380a07" + "md5": "f250091ba77c6f7f4cc93b4cefbe5710" }, { "authorized_access_point": "Bahnhofstra\u00dfe (Steinhagen, Kreis Gu\u0308tersloh)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stra\u00dfe" - } - ], "identifiedBy": [ { "source": "GND", @@ -24335,6 +24597,7 @@ "value": "(DE-588)7761850-6" } ], + "identifier": "http://d-nb.info/gnd/7761850-6", "note": [ { "noteType": "dataSource", @@ -24350,32 +24613,10 @@ "authorized_access_point": "Steinhagen (Kreis Gu\u0308tersloh)" } ], - "md5": "3371ee688a3fc69a93b7194a207a3079" + "md5": "27bb294cdb62a107bb2c1937d845e8a2" }, { "authorized_access_point": "Hoeschpark (Dortmund)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Gru\u0308nanlage" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Park" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Sportsta\u0308tte" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Baudenkmal" - } - ], "identifiedBy": [ { "source": "GND", @@ -24393,6 +24634,7 @@ "value": "(DE-588)7761761-7" } ], + "identifier": "http://d-nb.info/gnd/7761761-7", "note": [ { "noteType": "dataSource", @@ -24419,10 +24661,10 @@ "Hoesch-Park (Dortmund)", "Brackeler Stra\u00dfe 60 (Dortmund)" ], - "md5": "a63bd5cce8a10e62e52a6a40c979d6af" + "md5": "b15e5c90c4c48f7ada1fa872fe3fd8d7" }, { - "authorized_access_point": "Castrop", + "authorized_access_point": "Castrop - Region", "identifiedBy": [ { "source": "GND", @@ -24440,19 +24682,13 @@ "value": "(DE-588)7761750-2" } ], + "identifier": "http://d-nb.info/gnd/7761750-2", "pid": "199000239", "type": "bf:Place", - "md5": "a1b52e46e11de931875d34c0f7bcd275" + "md5": "a2526f09ee901d47716dfd9d96ef267e" }, { "authorized_access_point": "Amt S\u00f8nderborg", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Amt" - } - ], "identifiedBy": [ { "source": "GND", @@ -24470,12 +24706,19 @@ "value": "(DE-588)5055160-7" } ], + "identifier": "http://d-nb.info/gnd/5055160-7", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?oldid=195150922" ] + }, + { + "noteType": "general", + "label": [ + "Als Nordschleswig 1920 an Da\u0308nemark abgetreten wurde, entstand aus dem preu\u00dfischen Kreis Sonderburg das S\u00f8nderborg Amt. Von 1920 bis 1932 ein Amtsbezirk in Da\u0308nemark." + ] } ], "pid": "050551604", @@ -24496,7 +24739,7 @@ "S\u00f8nderborg (Amt)", "Sonderburg (Amt)" ], - "md5": "897401cfb65bf73b365888595e745baf" + "md5": "6b63a439b87fc838d3b3cf5ffdd48d21" }, { "authorized_access_point": "Syosset, NY", @@ -24517,6 +24760,7 @@ "value": "(DE-588)5013303-2" } ], + "identifier": "http://d-nb.info/gnd/5013303-2", "note": [ { "noteType": "dataSource", @@ -24528,7 +24772,7 @@ ], "pid": "050133039", "type": "bf:Place", - "md5": "4308cb84168011b86024ee3217fef890" + "md5": "8bffd3503fb8ed5c8d5da1893adba19a" }, { "authorized_access_point": "Leipzig-Lo\u0308szmig", @@ -24549,6 +24793,7 @@ "value": "(DE-588)5003935-0" } ], + "identifier": "http://d-nb.info/gnd/5003935-0", "pid": "050039350", "type": "bf:Place", "related": [ @@ -24559,7 +24804,7 @@ "variant_access_point": [ "Lo\u0308szmig" ], - "md5": "b341f516cebc47bfbfbfb79c97a2ef19" + "md5": "3f93a610a412229d222982398f71ff0a" }, { "authorized_access_point": "Leipzig-Paunsdorf", @@ -24580,6 +24825,7 @@ "value": "(DE-588)4324479-8" } ], + "identifier": "http://d-nb.info/gnd/4324479-8", "pid": "043244793", "type": "bf:Place", "related": [ @@ -24593,7 +24839,7 @@ "variant_access_point": [ "Paunsdorf (Leipzig)" ], - "md5": "1648e7936be51e98eac061ef4c3b713c" + "md5": "af91c49d9817b24ab58a47fe39e56957" }, { "authorized_access_point": "Hagenow", @@ -24614,12 +24860,21 @@ "value": "(DE-588)4322560-3" } ], + "identifier": "http://d-nb.info/gnd/4322560-3", + "note": [ + { + "noteType": "general", + "label": [ + "Stadt im Landkreis Ludwigslust-Parchim (13.6.1994-3.9.2011: Landkreis Ludwigslust; 25.7.1952-12.6.1994: (Land-)Kreis Hagenow), 1194 urkundl. erwa\u0308hnt, 1370 Stadt bezeichnet (1520 auch noch Dorf genannt), 1746 Marktflecken, 1754 Stadtrechte (Landstadt)" + ] + } + ], "pid": "043225608", "type": "bf:Place", "variant_access_point": [ "Stadt Hagenow" ], - "md5": "9ac3d3234b9b5ff943c16eef0db3db2e" + "md5": "c3a7ac13d57dd4532615f334d39366e6" }, { "authorized_access_point": "Workum", @@ -24640,6 +24895,7 @@ "value": "(DE-588)4315101-2" } ], + "identifier": "http://d-nb.info/gnd/4315101-2", "note": [ { "noteType": "dataSource", @@ -24663,7 +24919,7 @@ "Wo\u0308rkem", "Su\u0301dwest-Frysla\u0302n- Workum" ], - "md5": "3ffbe43d16e6ecb3ef0bbbc27d3eda34" + "md5": "9b6231b4d3da26f17e1596f705b505fa" }, { "authorized_access_point": "Fro\u0308ndenberg-Langschede", @@ -24684,6 +24940,7 @@ "value": "(DE-588)4313876-7" } ], + "identifier": "http://d-nb.info/gnd/4313876-7", "note": [ { "noteType": "dataSource", @@ -24702,21 +24959,10 @@ "authorized_access_point": "Fro\u0308ndenberg/Ruhr" } ], - "md5": "db7b8b3fba95c148d573d1b68eee3e99" + "md5": "e6970134217c8b5e0cc2010421c423eb" }, { "authorized_access_point": "Nordossetien", - "closeMatch": [ - { - "authorized_access_point": "Nordossetien", - "source": "GND", - "identifiedBy": { - "type": "bf:Nbn", - "value": "(DE-101)992404215", - "source": "(DE-101)992404215" - } - } - ], "identifiedBy": [ { "source": "GND", @@ -24734,6 +24980,25 @@ "value": "(DE-588)4297620-0" } ], + "identifier": "http://d-nb.info/gnd/4297620-0", + "exactMatch": [ + { + "authorized_access_point": "Nordossetien", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992404215" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "091413591" + } + ] + } + ], "pid": "042976200", "type": "bf:Place", "related": [ @@ -24755,7 +25020,7 @@ "North Ossetia", "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u04d5 \u0426\u04d5\u0433\u0430\u0442 \u0418\u0440\u044b\u0441\u0442\u043e\u043d-\u0410\u043b\u0430\u043d\u0438\u0438\u0306\u044b" ], - "md5": "d1791721f46d2277bbe281b86eb0d290" + "md5": "85da605bd63192287abc3de4ccc169d0" }, { "authorized_access_point": "Prag-Smichow", @@ -24776,6 +25041,15 @@ "value": "(DE-588)4293955-0" } ], + "identifier": "http://d-nb.info/gnd/4293955-0", + "note": [ + { + "noteType": "general", + "label": [ + "Stadtteil von Prag seit 1.1.1922" + ] + } + ], "pid": "042939550", "type": "bf:Place", "related": [ @@ -24791,7 +25065,7 @@ "Smi\u0301chov (Prag)", "Smichow (Prag)" ], - "md5": "684e03c76e81954f0902a4730fb4afd9" + "md5": "a27d15181c7e3a2c34e3c5f9a0aec0ce" }, { "authorized_access_point": "Smichow (Prag)", @@ -24812,6 +25086,15 @@ "value": "(DE-588)4293952-5" } ], + "identifier": "http://d-nb.info/gnd/4293952-5", + "note": [ + { + "noteType": "general", + "label": [ + "Vorstadt von Prag, 1828 Vorort, 1903 Stadtrecht, 1.1.1922 nach Prag eingemeindet" + ] + } + ], "pid": "042939526", "type": "bf:Place", "broader": [ @@ -24822,7 +25105,7 @@ "variant_access_point": [ "Smi\u0301chov (Prag)" ], - "md5": "6fce89aa8abf0ca3ec8acff43c620e1b" + "md5": "2ef7eb049f92bb723b020da2bfecbb3a" }, { "authorized_access_point": "Reichenbach im Vogtland", @@ -24843,12 +25126,19 @@ "value": "(DE-588)4278871-7" } ], + "identifier": "http://d-nb.info/gnd/4278871-7", "note": [ { "noteType": "dataSource", "label": [ "Homepage - https://www.reichenbach-vogtland.de/" ] + }, + { + "noteType": "general", + "label": [ + "Stadt im Vogtlandkreis, Sachsen" + ] } ], "pid": "042788714", @@ -24862,22 +25152,10 @@ "Rechenbach", "Reichenbach" ], - "md5": "7465c87d3543beffc8186c4dd5d1752d" + "md5": "b98a55d2a95742bff181eaf35fc7c9c6" }, { "authorized_access_point": "Karta\u0308userkirche (Ko\u0308ln)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Klosterkirche" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kirchenbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -24895,12 +25173,19 @@ "value": "(DE-588)4277835-9" } ], + "identifier": "http://d-nb.info/gnd/4277835-9", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Kart%C3%A4userkirche_(K%C3%B6ln)&oldid=237820855" ] + }, + { + "noteType": "general", + "label": [ + "1393 geweiht, seit 1978 evangelische Kirche" + ] } ], "pid": "042778352", @@ -24915,17 +25200,10 @@ "Evangelische Pfarrkirche St. Barbara (Ko\u0308ln)", "Evangelische Pfarrkirche Sankt Barbara (Ko\u0308ln)" ], - "md5": "722057c896453e0b7484114d56e2ca5a" + "md5": "a4234b5dbf696eeb5dfbdbf186bfd9c6" }, { "authorized_access_point": "Heringsdorf (Seebad)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Seebad" - } - ], "identifiedBy": [ { "source": "GND", @@ -24943,6 +25221,15 @@ "value": "(DE-588)4262749-7" } ], + "identifier": "http://d-nb.info/gnd/4262749-7", + "note": [ + { + "noteType": "general", + "label": [ + "Seebad auf Usedom, Landkreis Vorpommern-Greifswald (1994-2011: Landkreis Ostvorpommern; 25.7.1952-12.6.1994: (Land-)Kreis Wolgast; 1945-1952: Landkreis Usedom; 1818-1945: Kreis Usedom-Wollin), 1818 Fischersiedlung angelegt, 1.1.2005 mit Ahlbeck und Bansin zu Dreikaiserba\u0308der zusammengeschlossen, 1.1.2006 in Ostseebad Heringsdorf umbenannt" + ] + } + ], "pid": "042627494", "type": "bf:Place", "related": [ @@ -24959,17 +25246,10 @@ "Gemeinde Ostseebad Heringsdorf", "Heringsdorf" ], - "md5": "add47264d74b7d8e874962866d745130" + "md5": "22547bee59b14ee70ff0597cc358b293" }, { "authorized_access_point": "Stiftskirche zum Heiligen Kreuz (Stuttgart)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stufenhallenkirche" - } - ], "identifiedBy": [ { "source": "GND", @@ -24987,12 +25267,19 @@ "value": "(DE-588)4260256-7" } ], + "identifier": "http://d-nb.info/gnd/4260256-7", "note": [ { "noteType": "dataSource", "label": [ "Homepage - https://stiftskirche.de/" ] + }, + { + "noteType": "general", + "label": [ + "Pfarrkirche der Altstadt, um 1240 als Basilika spa\u0308troman. neu erbaut anstelle Dorfkirche des 10. oder 11. Jh., 1327/47 Chor angebaut, 1433/81 Langhaus als Stufenhalle von H. Jo\u0308rg u. A. Jo\u0308rg spa\u0308tgot. neu erbaut, W-Turm 1490/1531, 1944 fast vollsta\u0308ndig zersto\u0308rt, 1950/58 teilw. rekonstruierend, teilw. neu wiederaufgebaut" + ] } ], "pid": "042602564", @@ -25009,17 +25296,10 @@ "Stiftskirche (Stuttgart)", "Evangelische Stiftskirche Heilig Kreuz (Stuttgart)" ], - "md5": "c063b787c58f7aa77a3ac2b83b779fc7" + "md5": "417e22075ad042bf0369b8317307d8f7" }, { "authorized_access_point": "Emscher Park", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Landschaftspark" - } - ], "identifiedBy": [ { "source": "GND", @@ -25037,12 +25317,19 @@ "value": "(DE-588)4256787-7" } ], + "identifier": "http://d-nb.info/gnd/4256787-7", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - http://de.wikipedia.org/wiki/Emscher_Landschaftspark" ] + }, + { + "noteType": "general", + "label": [ + "Landschaftspark d. Emscher Region" + ] } ], "pid": "042567874", @@ -25058,7 +25345,7 @@ "Emscher-Landschaftspark", "Emscher Landschaftspark" ], - "md5": "472c3c98cd3041c1bfca13bd54b6584a" + "md5": "493e4f3653e0e632141fd0396939b8d7" }, { "authorized_access_point": "Gnotzheim", @@ -25079,6 +25366,7 @@ "value": "(DE-588)4255362-3" } ], + "identifier": "http://d-nb.info/gnd/4255362-3", "note": [ { "noteType": "dataSource", @@ -25092,17 +25380,10 @@ "variant_access_point": [ "Markt Gnotzheim" ], - "md5": "100a3f74eb4c96c062c69ebd8354ee46" + "md5": "342918dd45f336bf452f7a67e3b323bc" }, { "authorized_access_point": "Verbandsgemeinde Bernkastel-Kues", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Verbandsgemeinde" - } - ], "identifiedBy": [ { "source": "GND", @@ -25120,12 +25401,21 @@ "value": "(DE-588)4249277-4" } ], + "identifier": "http://d-nb.info/gnd/4249277-4", + "note": [ + { + "noteType": "general", + "label": [ + "Gebietsko\u0308rperschaft im Landkreis Bernkastel-Wittlich" + ] + } + ], "pid": "042492777", "type": "bf:Place", "variant_access_point": [ "Bernkastel-Kues (Verbandsgemeinde)" ], - "md5": "8c02748113adf523a0cec026af2e9014" + "md5": "0985b67aa5190e3819079c5ac91f7f63" }, { "authorized_access_point": "Lesparre-Me\u0301doc", @@ -25146,9 +25436,18 @@ "value": "(DE-588)4249044-3" } ], + "identifier": "http://d-nb.info/gnd/4249044-3", + "note": [ + { + "noteType": "general", + "label": [ + "Ort im Dep. Gironde, Frankreich" + ] + } + ], "pid": "042490448", "type": "bf:Place", - "md5": "4aa9ae0f6c6b25794a20ece6fcedbc94" + "md5": "b86ffec79ff5a5ebaf6afeb0c82c0da5" }, { "authorized_access_point": "Heringsdorf-Bansin", @@ -25169,6 +25468,15 @@ "value": "(DE-588)4247724-4" } ], + "identifier": "http://d-nb.info/gnd/4247724-4", + "note": [ + { + "noteType": "general", + "label": [ + "Ortsteil von Heringsdorf (1.1.2005-31.12.2005: Dreikaiserba\u0308der) seit 1.1.2006" + ] + } + ], "pid": "042477247", "type": "bf:Place", "related": [ @@ -25182,17 +25490,10 @@ "variant_access_point": [ "Bansin (Heringsdorf, Seebad)" ], - "md5": "076eede2d04716f7a312d4e8af62c6c1" + "md5": "94e3a0160c3c01289fcd96f99e619024" }, { "authorized_access_point": "Hydra (Insel)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Insel" - } - ], "identifiedBy": [ { "source": "GND", @@ -25210,6 +25511,15 @@ "value": "(DE-588)4240022-3" } ], + "identifier": "http://d-nb.info/gnd/4240022-3", + "note": [ + { + "noteType": "general", + "label": [ + "Insel vor SO-Ku\u0308ste der Argolis (Peloponnes), Regionalbezirk Inseln (-2010: Pra\u0308fekturbezirk Pira\u0308us), Nomos Attika; manchmal zu den Saronischen Inseln geza\u0308hlt" + ] + } + ], "pid": "042400228", "type": "bf:Place", "variant_access_point": [ @@ -25220,16 +25530,10 @@ "Idhra (Insel)", "U\u0301dra" ], - "md5": "8f868d32784a0d979cb287a4504a0f4b" + "md5": "5a7fb6dc8eeaafabc732b69d029e6f0b" }, { "authorized_access_point": "\u02bfUnayzah", - "closeMatch": [ - { - "authorized_access_point": "\u0639\u0646\u064a\u0632\u0629", - "source": "GND" - } - ], "identifiedBy": [ { "source": "GND", @@ -25247,23 +25551,25 @@ "value": "(DE-588)4238717-6" } ], + "identifier": "http://d-nb.info/gnd/4238717-6", + "note": [ + { + "noteType": "general", + "label": [ + "Stadt in Saudi-Arabien" + ] + } + ], "pid": "042387175", "type": "bf:Place", "variant_access_point": [ "\u02bfUnaiza", "\u02bfUnayza" ], - "md5": "928dbb91b1d7e17e2f3ca5c646254d7f" + "md5": "5b8eed0e431889c0efbdf4e4e808617b" }, { "authorized_access_point": "Mount Annie, Nev.", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Berg" - } - ], "identifiedBy": [ { "source": "GND", @@ -25281,23 +25587,21 @@ "value": "(DE-588)4229900-7" } ], + "identifier": "http://d-nb.info/gnd/4229900-7", + "note": [ + { + "noteType": "general", + "label": [ + "Berg im US-Bundesstaat Nevada" + ] + } + ], "pid": "042299004", "type": "bf:Place", - "md5": "37c3b0f3bc2a954579a8d8058a5d927a" + "md5": "e042ecf3f747cf999a3f0fefb1b8b71e" }, { "authorized_access_point": "Hartford, Conn.", - "closeMatch": [ - { - "authorized_access_point": "Hartford (Conn.)", - "source": "GND", - "identifiedBy": { - "type": "bf:Nbn", - "value": "(DE-101)990781569", - "source": "(DE-101)990781569" - } - } - ], "identifiedBy": [ { "source": "GND", @@ -25315,29 +25619,43 @@ "value": "(DE-588)4226021-8" } ], + "identifier": "http://d-nb.info/gnd/4226021-8", + "exactMatch": [ + { + "authorized_access_point": "Hartford (Conn.)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)990781569" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "091408466" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Hauptstadt des Bundesstaates Connecticut, 1635 als Newtown gegru\u0308ndet, heutiger Name seit 1637" + ] + } + ], "pid": "042260213", "type": "bf:Place", "variant_access_point": [ "Hartford, Connecticut", "Newtown, Conn." ], - "md5": "eb53fdd275ee4cffec3bef852b07a524" + "md5": "24de7249cce064aea383dc5969bbc0f3" }, { "authorized_access_point": "Oblast Amur", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Oblast" - } - ], - "closeMatch": [ - { - "authorized_access_point": "\u0410\u043c\u0443\u0440\u0441\u043a\u0430\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u044c", - "source": "GND" - } - ], "identifiedBy": [ { "source": "GND", @@ -25355,6 +25673,7 @@ "value": "(DE-588)4224494-8" } ], + "identifier": "http://d-nb.info/gnd/4224494-8", "note": [ { "noteType": "dataSource", @@ -25371,7 +25690,7 @@ "Amurskaja oblast\u02b9", "Gebiet Amur" ], - "md5": "69e82428a7c4268993d7a4f059f99fc9" + "md5": "c73596b3a296761280070426b39d905d" }, { "authorized_access_point": "Bernkastel-Kues-Andel", @@ -25392,6 +25711,7 @@ "value": "(DE-588)4223603-4" } ], + "identifier": "http://d-nb.info/gnd/4223603-4", "pid": "042236037", "type": "bf:Place", "related": [ @@ -25405,7 +25725,7 @@ "variant_access_point": [ "Andel (Bernkastel-Kues)" ], - "md5": "ce870bd581a822462a6e6b5bbef09805" + "md5": "d45f2ed3a1177ab38ac180ae080b516c" }, { "authorized_access_point": "Kotor Varos\u030c", @@ -25426,12 +25746,19 @@ "value": "(DE-588)4220992-4" } ], + "identifier": "http://d-nb.info/gnd/4220992-4", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Kotor_Varo%C5%A1&oldid=246161593" ] + }, + { + "noteType": "general", + "label": [ + "Kleinstadt in Bosnien und Herzegowina und Hauptort der gleichnamigen Gemeinde" + ] } ], "pid": "042209927", @@ -25439,10 +25766,10 @@ "variant_access_point": [ "Kotor-Varos\u030c" ], - "md5": "37d88ebf59773172a9c99e7508affb9f" + "md5": "2e119ae21925fd428f2b2b3265b66908" }, { - "authorized_access_point": "Oberrheinisches Tiefland", + "authorized_access_point": "Oberrheinisches Tiefland - Su\u0308d", "identifiedBy": [ { "source": "GND", @@ -25460,6 +25787,15 @@ "value": "(DE-588)4200545-0" } ], + "identifier": "http://d-nb.info/gnd/4200545-0", + "note": [ + { + "noteType": "general", + "label": [ + "Benutzt fu\u0308r die Region zwischen Basel, Freiburg u. Strassburg" + ] + } + ], "pid": "042005450", "type": "bf:Place", "broader": [ @@ -25470,21 +25806,10 @@ "variant_access_point": [ "Regio, Oberrhein" ], - "md5": "b399999f52a0b4ed6a822b045ec86d8c" + "md5": "9c0a3fa27b86f29443ade8945c34b7fe" }, { "authorized_access_point": "Lyngby-Ta\u030arbaek", - "closeMatch": [ - { - "authorized_access_point": "Lyngby-Tarbaek", - "source": "GND", - "identifiedBy": { - "type": "bf:Nbn", - "value": "(DE-101)992133122", - "source": "(DE-101)992133122" - } - } - ], "identifiedBy": [ { "source": "GND", @@ -25502,11 +25827,36 @@ "value": "(DE-588)4140117-7" } ], + "identifier": "http://d-nb.info/gnd/4140117-7", + "exactMatch": [ + { + "authorized_access_point": "Lyngby-Tarbaek", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992133122" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "094409951" + } + ] + } + ], "note": [ { "noteType": "dataSource", "label": [ - "Homepage - http://www.ltk.dk" + "Homepage - http://www.ltk.dk" + ] + }, + { + "noteType": "general", + "label": [ + "Kommune in der Region Hovedstaden, Seeland" ] } ], @@ -25518,17 +25868,10 @@ "Lyngby", "Lyngby-Taarbaek" ], - "md5": "c4f7acb624af3bc19d9c49c2e2804447" + "md5": "46ad8a1e9070e1377afef65222cde464" }, { "authorized_access_point": "Herzogtum Preu\u00dfen", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Herzogtum" - } - ], "identifiedBy": [ { "source": "GND", @@ -25546,6 +25889,7 @@ "value": "(DE-588)4137053-3" } ], + "identifier": "http://d-nb.info/gnd/4137053-3", "pid": "041370538", "type": "bf:Place", "broader": [ @@ -25569,28 +25913,10 @@ "Prusko (vojvodstvo)", "Prusko (ve\u0301vodstvi\u0301)" ], - "md5": "041da4e9d2344bee08de1d1c1fb29f84" + "md5": "1ec28b1a17d4c565937aad7b85790332" }, { "authorized_access_point": "Amt Viborg", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Amt" - } - ], - "closeMatch": [ - { - "authorized_access_point": "Viborg (Amt)", - "source": "GND", - "identifiedBy": { - "type": "bf:Nbn", - "value": "(DE-101)997978201", - "source": "(DE-101)997978201" - } - } - ], "identifiedBy": [ { "source": "GND", @@ -25608,12 +25934,37 @@ "value": "(DE-588)4119415-9" } ], + "identifier": "http://d-nb.info/gnd/4119415-9", + "exactMatch": [ + { + "authorized_access_point": "Viborg (Amt)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)997978201" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "094419132" + } + ] + } + ], "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?oldid=208608981" ] + }, + { + "noteType": "general", + "label": [ + "Ehemalige Verwaltungseinheit in Da\u0308nemark" + ] } ], "pid": "041194152", @@ -25633,17 +25984,10 @@ "Viborg Amtskommune", "Viborg (Amt)" ], - "md5": "22b2af905708c748a8b0eaca116c3615" + "md5": "fce0f15e8afb67ac6ceb07aaf1bcc836" }, { "authorized_access_point": "Sankt Martin (Zillis)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Saalkirche" - } - ], "identifiedBy": [ { "source": "GND", @@ -25661,6 +26005,15 @@ "value": "(DE-588)4119244-8" } ], + "identifier": "http://d-nb.info/gnd/4119244-8", + "note": [ + { + "noteType": "general", + "label": [ + "Mutterkirche des Schams, Rheinwald und Avers, erw. um 840, fru\u0308hchristl. Vorga\u0308ngerkirche, karoling. Ersatzbau. Roman. Neubau um 1100 mit Bilderdecke nach 1114, 1509 um spa\u0308tgot. Chor erweitert" + ] + } + ], "pid": "041192443", "type": "bf:Place", "broader": [ @@ -25672,7 +26025,7 @@ "St. Martin (Zillis)", "Reformierte Kirche St. Martin (Zillis)" ], - "md5": "6c17a93b6e952f7ce7d3c3c8c80baf40" + "md5": "b2b3e40f2b2851296b06a12f0e3a776e" }, { "authorized_access_point": "Ochsenhausen", @@ -25693,6 +26046,7 @@ "value": "(DE-588)4116716-8" } ], + "identifier": "http://d-nb.info/gnd/4116716-8", "note": [ { "noteType": "dataSource", @@ -25700,6 +26054,12 @@ "Homepage - https://www.ochsenhausen.de/", "Wikipedia - https://de.wikipedia.org/w/index.php?title=Ochsenhausen&oldid=246489625" ] + }, + { + "noteType": "general", + "label": [ + "Stadt im Landkreis Biberach, Oberschwaben, an der Oberschwa\u0308bischen Barockstra\u00dfe" + ] } ], "pid": "041167163", @@ -25707,17 +26067,10 @@ "variant_access_point": [ "Stadt Ochsenhausen" ], - "md5": "425774f792fd162a2ae7bd3386ea8644" + "md5": "852eb0fc4495d9fe5393a3ff658bc13d" }, { "authorized_access_point": "Obernil-Becken", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Becken" - } - ], "identifiedBy": [ { "source": "GND", @@ -25735,19 +26088,13 @@ "value": "(DE-588)4115428-9" } ], + "identifier": "http://d-nb.info/gnd/4115428-9", "pid": "041154282", "type": "bf:Place", - "md5": "e8738909c8b86b75adba99e986d947f2" + "md5": "c96f48c7ba92cb1b87d97584212c5c00" }, { "authorized_access_point": "Landkreis Leipzig", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Landkreis" - } - ], "identifiedBy": [ { "source": "GND", @@ -25765,12 +26112,19 @@ "value": "(DE-588)4111250-7" } ], + "identifier": "http://d-nb.info/gnd/4111250-7", "note": [ { "noteType": "dataSource", "label": [ "Homepage - http://www.landkreisleipzig.de" ] + }, + { + "noteType": "general", + "label": [ + "1994 Eingliederung in den Landkreis Leipziger Land, 1.8.2008 Neugru\u0308ndung aus den Kreisen Leipziger Land und Muldentalkreis" + ] } ], "pid": "041112504", @@ -25790,7 +26144,7 @@ "Leipzig (Kreis)", "Leipzig (Landkreis)" ], - "md5": "0522daf634596ef86ee1985b0f4ebaae" + "md5": "752ba3f15f3e5964940c397cb994ecb5" }, { "authorized_access_point": "Wustrow Ostseebad", @@ -25811,12 +26165,19 @@ "value": "(DE-588)4108782-3" } ], + "identifier": "http://d-nb.info/gnd/4108782-3", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - http://de.wikipedia.org/wiki/Wustrow_(Fischland)" ] + }, + { + "noteType": "general", + "label": [ + "Ort im Landkreis Vorpommern-Ru\u0308gen" + ] } ], "pid": "041087828", @@ -25828,7 +26189,7 @@ "Wustrow (Fischland)", "Wustrow (Ribnitz-Damgarten)" ], - "md5": "7c284e25723039363d298d28292ed3f4" + "md5": "dfb701814deeed464249f27561ba1546" }, { "authorized_access_point": "Wittmund", @@ -25849,12 +26210,21 @@ "value": "(DE-588)4108467-6" } ], + "identifier": "http://d-nb.info/gnd/4108467-6", + "note": [ + { + "noteType": "general", + "label": [ + "Kreisstadt des Landkreises Wittmund, NW-Niedersachsen" + ] + } + ], "pid": "041084675", "type": "bf:Place", - "md5": "ef89d2b5de7839d764f6a6a85cb83583" + "md5": "420c0ec4ebdefc05c74206f1852f2d24" }, { - "authorized_access_point": "Tihama", + "authorized_access_point": "Tihama - Nord", "identifiedBy": [ { "source": "GND", @@ -25872,6 +26242,7 @@ "value": "(DE-588)4106336-3" } ], + "identifier": "http://d-nb.info/gnd/4106336-3", "pid": "041063368", "type": "bf:Place", "broader": [ @@ -25882,7 +26253,7 @@ "variant_access_point": [ "Nord-Tihama" ], - "md5": "55f0346f9472a7f58d0e976248a53a6d" + "md5": "926d2b4d3c262b1f2c35f34c56636e1f" }, { "authorized_access_point": "Stu\u0308tzerbach", @@ -25903,12 +26274,19 @@ "value": "(DE-588)4106125-1" } ], + "identifier": "http://d-nb.info/gnd/4106125-1", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=St%C3%BCtzerbach&oldid=244058408" ] + }, + { + "noteType": "general", + "label": [ + "Selbststa\u0308ndige Gemeinde; seit 1. Januar 2019 Ortsteil von Ilmenau im Ilm-Kreis, Thu\u0308ringen." + ] } ], "pid": "04106125X", @@ -25926,7 +26304,7 @@ "authorized_access_point": "Ilmenau-Stu\u0308tzerbach" } ], - "md5": "4e3ac2a605af9f087ba95e0800211b5e" + "md5": "17da4e4309488a98332c1a663d462771" }, { "authorized_access_point": "Scheidegg", @@ -25947,17 +26325,24 @@ "value": "(DE-588)4105844-6" } ], + "identifier": "http://d-nb.info/gnd/4105844-6", "note": [ { "noteType": "dataSource", "label": [ "Homepage - https://www.scheidegg.de/" ] + }, + { + "noteType": "general", + "label": [ + "Markt im Landkreis Lindau (Bodensee), West-Allga\u0308u, Regierungsbezirk Schwaben, wahrscheinl. im 6./7. Jh. von Alemannen besiedelt, 1255 urkundl. erwa\u0308hnt" + ] } ], "pid": "041058445", "type": "bf:Place", - "md5": "ddab642c227a977d10a4b2702e214755" + "md5": "c2636090884388a873bf05dedea65dd3" }, { "authorized_access_point": "Niebu\u0308ll", @@ -25978,9 +26363,18 @@ "value": "(DE-588)4101184-3" } ], + "identifier": "http://d-nb.info/gnd/4101184-3", + "note": [ + { + "noteType": "general", + "label": [ + "Stadt im Kreis Nordfriesland" + ] + } + ], "pid": "041011848", "type": "bf:Place", - "md5": "6b75fe6a916167664bd53d18db77b57b" + "md5": "5a22d325c7601aa48fcd88809052d264" }, { "authorized_access_point": "Leipzig-Gohlis", @@ -26001,6 +26395,15 @@ "value": "(DE-588)4099471-5" } ], + "identifier": "http://d-nb.info/gnd/4099471-5", + "note": [ + { + "noteType": "general", + "label": [ + "Ortsteil von Leipzig seit 1.1.1890" + ] + } + ], "pid": "040994716", "type": "bf:Place", "related": [ @@ -26014,17 +26417,10 @@ "variant_access_point": [ "Gohlis (Leipzig)" ], - "md5": "eb30f6ad259467188fa89f550f1b215d" + "md5": "ba6ad722594d8b8b5778c04d0bdc748a" }, { "authorized_access_point": "Amt K\u00f8benhavn", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Amt" - } - ], "identifiedBy": [ { "source": "GND", @@ -26042,12 +26438,19 @@ "value": "(DE-588)4096768-2" } ], + "identifier": "http://d-nb.info/gnd/4096768-2", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?oldid=208609237" ] + }, + { + "noteType": "general", + "label": [ + "Ehemaliges Amt in Da\u0308nemark, nun Teil der Hauptstadtregion (Region Hovedstaden)" + ] } ], "pid": "040967689", @@ -26064,7 +26467,7 @@ "K\u00f8benhavn (Amt)", "K\u00f8benhavns Amtskommune" ], - "md5": "4eced719883298f39c109083a9c6f1e2" + "md5": "aa007bb2dc58e978bd9ce113d2a86171" }, { "authorized_access_point": "Hummel (Scheidegg, Lindau)", @@ -26085,12 +26488,13 @@ "value": "(DE-588)4095797-4" } ], + "identifier": "http://d-nb.info/gnd/4095797-4", "pid": "040957977", "type": "bf:Place", "variant_access_point": [ "Scheidegg-Hummel" ], - "md5": "73f5926edfa865ab34c9072a0d9a5fc6" + "md5": "2ede8f5c6535aaefc82328ac847a7e52" }, { "authorized_access_point": "Nu\u0308mbrecht-Homburg", @@ -26111,6 +26515,15 @@ "value": "(DE-588)4095607-6" } ], + "identifier": "http://d-nb.info/gnd/4095607-6", + "note": [ + { + "noteType": "general", + "label": [ + "Seit 1969 Ortsteil von Nu\u0308mbrecht" + ] + } + ], "pid": "040956075", "type": "bf:Place", "related": [ @@ -26121,7 +26534,7 @@ "authorized_access_point": "Nu\u0308mbrecht" } ], - "md5": "b83dd7ecdd3bae1d31d9a63d14024910" + "md5": "c116d5283ce4b6d3364181265efdffa9" }, { "authorized_access_point": "Hille", @@ -26142,12 +26555,21 @@ "value": "(DE-588)4095278-2" } ], + "identifier": "http://d-nb.info/gnd/4095278-2", + "note": [ + { + "noteType": "general", + "label": [ + "Gemeinde im Kreis Minden-Lu\u0308bbecke" + ] + } + ], "pid": "040952789", "type": "bf:Place", "variant_access_point": [ "Gemeinde Hille" ], - "md5": "77f81d829177a6d3c1ecfc2a1048a75b" + "md5": "0d410477ced0f6c5a8841915727f21c5" }, { "authorized_access_point": "Dubrau (Calau)", @@ -26168,6 +26590,7 @@ "value": "(DE-588)4091283-8" } ], + "identifier": "http://d-nb.info/gnd/4091283-8", "note": [ { "noteType": "general", @@ -26187,7 +26610,7 @@ "Dubrawa", "Dubrau (Vetschau/Spreewald)" ], - "md5": "0b68af4d83e7ba3a1755b94b8878ccc5" + "md5": "880ab11ee09e852750f5214b63621cbc" }, { "authorized_access_point": "Bernkastel", @@ -26208,12 +26631,20 @@ "value": "(DE-588)4087386-9" } ], + "identifier": "http://d-nb.info/gnd/4087386-9", "note": [ { "noteType": "dataSource", "label": [ "unter - https://de.wikipedia.org/wiki/Bernkastel-Kues" ] + }, + { + "noteType": "general", + "label": [ + "Stadt an der Mosel, Kreis Bernkastel, 1. Ha\u0308lfte 11. Jh. urkundl. erwa\u0308hnt, 1291 Stadtrechte, 1332 erneuert, 1.4.1905 mit Kues zu Bernkastel-Kues zusammengeschlossen", + "Kleinra\u0308umige Geographika und Ko\u0308rperschaften aus dem heutigen Ortsteil werden mit dem Doppelort angesetzt, es sei denn, es handelt sich um die nach \u00a7 209,5 Abs. 3+4 und \u00a7 605,7 Satz 2 als Ausnahme formulierten Fa\u0308lle. Nach der Eingemeindung verwende den Doppelort als Ausstellungs- bzw. Kongressort" + ] } ], "pid": "040873862", @@ -26223,7 +26654,7 @@ "authorized_access_point": "Bernkastel-Kues" } ], - "md5": "826075d65f4ea729630b44cd5053a4c8" + "md5": "80d078f79d00c2599d01f3db1d79fc69" }, { "authorized_access_point": "Fu\u0308rstenfeld", @@ -26244,6 +26675,7 @@ "value": "(DE-588)4086562-9" } ], + "identifier": "http://d-nb.info/gnd/4086562-9", "note": [ { "noteType": "dataSource", @@ -26251,6 +26683,12 @@ "Homepage - http://www.fuerstenfeld.at", "Homepage - https://fuerstenfeld.gv.at" ] + }, + { + "noteType": "general", + "label": [ + "2015 Altenmarkt bei Fu\u0308rstenfeld und U\u0308bersbach eingemeindet" + ] } ], "pid": "040865622", @@ -26267,7 +26705,7 @@ "Stadtgemeinde Fu\u0308rstenfeld", "Fu\u0308rstenfeld Thermenhauptstadt" ], - "md5": "74fb04c0483981e3ebe7a9b9248c99e4" + "md5": "23739dcdc493d6da067e5418acb5d322" }, { "authorized_access_point": "Forchheim-Burk", @@ -26288,12 +26726,19 @@ "value": "(DE-588)4080590-6" } ], + "identifier": "http://d-nb.info/gnd/4080590-6", "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Burk_(Forchheim)&oldid=237498787" ] + }, + { + "noteType": "general", + "label": [ + "1978 im Zuge der Gebietsreform in Bayern zusammen mit der ehemaligen Gemeinde Buckenhofen nach Forchheim eingemeindet" + ] } ], "pid": "040805905", @@ -26310,21 +26755,10 @@ "Forchheim (Oberfr.)- Burk", "Burk (Forchheim-Burk)" ], - "md5": "1133369b2536acedf84edb536b860087" + "md5": "50b0d6d1538820e6eed35eb2eb09d92d" }, { "authorized_access_point": "Bandung", - "closeMatch": [ - { - "authorized_access_point": "Bandung", - "source": "GND", - "identifiedBy": { - "type": "bf:Nbn", - "value": "(DE-101)989919358", - "source": "(DE-101)989919358" - } - } - ], "identifiedBy": [ { "source": "GND", @@ -26342,6 +26776,33 @@ "value": "(DE-588)4080255-3" } ], + "identifier": "http://d-nb.info/gnd/4080255-3", + "exactMatch": [ + { + "authorized_access_point": "Bandung", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)989919358" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "091404274" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Provinzhauptstadt von Westjava, 1488 urkundl. erwa\u0308hnt, bis 1972 Bandoeng" + ] + } + ], "pid": "040802558", "type": "bf:Place", "variant_access_point": [ @@ -26349,7 +26810,7 @@ "Bandong", "Kota Kembang" ], - "md5": "d3ce4a7000fc53548e09a2da2347180f" + "md5": "ac0e67be2b1ba6cb27838e1dac433399" }, { "authorized_access_point": "Innerschweiz", @@ -26370,6 +26831,15 @@ "value": "(DE-588)4079490-8" } ], + "identifier": "http://d-nb.info/gnd/4079490-8", + "note": [ + { + "noteType": "general", + "label": [ + "Umfasst die fu\u0308nf Kt. Luzern, Uri, Schwyz, Unterwalden (Ob- und Nidwalden) und Zug" + ] + } + ], "pid": "040794903", "type": "bf:Place", "broader": [ @@ -26381,34 +26851,10 @@ "Zentralschweiz", "Fu\u0308nf Orte" ], - "md5": "14e02759f12471dded2070063d1aba9f" + "md5": "ee4f2da38622d4f6cecb38460a9b693e" }, { "authorized_access_point": "Russland", - "closeMatch": [ - { - "authorized_access_point": "Russland", - "source": "GND", - "identifiedBy": { - "type": "bf:Nbn", - "value": "(DE-101)970009437", - "source": "(DE-101)970009437" - } - }, - { - "authorized_access_point": "Russland", - "source": "GND", - "identifiedBy": { - "type": "bf:Nbn", - "value": "(DE-101)970586809", - "source": "(DE-101)970586809" - } - }, - { - "authorized_access_point": "\u0420\u043e\u0441\u0441\u0438\u044f", - "source": "GND" - } - ], "identifiedBy": [ { "source": "GND", @@ -26426,6 +26872,57 @@ "value": "(DE-588)4076899-5" } ], + "identifier": "http://d-nb.info/gnd/4076899-5", + "exactMatch": [ + { + "authorized_access_point": "Russland", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970009437" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "17534-6" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/17534-6" + } + ] + }, + { + "authorized_access_point": "Russland", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970586809" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10057012" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10057012" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Sacherschlie\u00dfung: Benutzt fu\u0308r das Russische Reich 1547-1917, das Territorium fu\u0308r die Zeit davor, wenn der behandelte Raum gro\u0308sser ist als die fu\u0308r diese Zeit existierenden Fu\u0308rstentu\u0308mer sowie fu\u0308r die Russische Fo\u0308deration ab 1991. Fu\u0308r die Russische SFSR 1917-1991 benutze Russische SFSR." + ] + } + ], "pid": "040768996", "type": "bf:Place", "related": [ @@ -26458,21 +26955,10 @@ "\u0420\u043e\u0441\u0441\u0438\u0438\u0306\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f", "\u0420\u043e\u0441\u0441\u0438\u0438\u0306\u0441\u043a\u0430\u044f \u0418\u043c\u043f\u0435\u0440\u0438\u044f" ], - "md5": "3fd97f94a0979af2620aeb65a5b21206" + "md5": "fdb480dbb23cb18d8fb96520ddee7bbf" }, { "authorized_access_point": "Nordschleswig", - "closeMatch": [ - { - "authorized_access_point": "Nordschleswig", - "source": "GND", - "identifiedBy": { - "type": "bf:Nbn", - "value": "(DE-101)992404371", - "source": "(DE-101)992404371" - } - } - ], "identifiedBy": [ { "source": "GND", @@ -26490,6 +26976,25 @@ "value": "(DE-588)4075476-5" } ], + "identifier": "http://d-nb.info/gnd/4075476-5", + "exactMatch": [ + { + "authorized_access_point": "Nordschleswig", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992404371" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "091413621" + } + ] + } + ], "pid": "040754766", "type": "bf:Place", "broader": [ @@ -26510,7 +27015,7 @@ "Su\u0308dda\u0308nemark", "S\u00f8nderjylland" ], - "md5": "4928526430cc69ce78284fc42389d088" + "md5": "f6f72b31ed7680aaa13659c2e5cc70d4" }, { "authorized_access_point": "Kues", @@ -26531,6 +27036,16 @@ "value": "(DE-588)4073858-9" } ], + "identifier": "http://d-nb.info/gnd/4073858-9", + "note": [ + { + "noteType": "general", + "label": [ + "Winzerdorf an der Mosel, Kreis Bernkastel, 1.4.1905 mit Bernkastel zu Bernkastel-Kues zusammengeschlossen", + "Kleinra\u0308umige Geographika und Ko\u0308rperschaften aus dem heutigen Ortsteil werden mit dem Doppelort angesetzt, es sei denn, es handelt sich um die nach \u00a7 209,5 Abs. 3+4 und \u00a7 605,7 Satz 2 als Ausnahme formulierten Fa\u0308lle. Nach der Eingemeindung verwende den Doppelort als Ausstellungs- bzw. Kongressort" + ] + } + ], "pid": "040738582", "type": "bf:Place", "broader": [ @@ -26541,7 +27056,7 @@ "variant_access_point": [ "Cues" ], - "md5": "ed3c1a6cbbb2d53a1a9339f35e40e960" + "md5": "3764e5c2d751c14e5e58496d18f78263" }, { "authorized_access_point": "Bernkastel-Kues", @@ -26562,12 +27077,19 @@ "value": "(DE-588)4069330-2" } ], + "identifier": "http://d-nb.info/gnd/4069330-2", "note": [ { "noteType": "dataSource", "label": [ "Homepage - https://www.bernkastel-kues.de" ] + }, + { + "noteType": "general", + "label": [ + "Stadt an der Mosel, Landkreis Bernkastel-Wittlich (-7-6-1969: (Land-)Kreis Bernkastel), 1.4.1905 durch Zusammenschlu\u00df von Bernkastel und Kues entstanden" + ] } ], "pid": "040693309", @@ -26587,17 +27109,10 @@ "Stadtgemeinde Bernkastel-Kues", "Verbandsgemeinde Bernkastel-Kues" ], - "md5": "35d7edea9b806de759ee05b2f9740b20" + "md5": "27e9e304f8b06cd5634bcfd19af57ec4" }, { "authorized_access_point": "Kreis Zu\u0308llichau-Schwiebus", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kreis" - } - ], "identifiedBy": [ { "source": "GND", @@ -26615,6 +27130,15 @@ "value": "(DE-588)4068022-8" } ], + "identifier": "http://d-nb.info/gnd/4068022-8", + "note": [ + { + "noteType": "general", + "label": [ + "Der Kreis Zu\u0308llichau-Schwiebus war ein preu\u00dfischer Landkreis, der von 1816 bis 1945 in der Provinz Brandenburg bestand." + ] + } + ], "pid": "040680223", "type": "bf:Place", "related": [ @@ -26627,17 +27151,10 @@ "Landkreis Zu\u0308llichau-Schwiebus", "Zu\u0308llichau-Schwiebus (Kreis)" ], - "md5": "b65e184868796e42405e78917da973a6" + "md5": "b02e0065122bf66220534602053c7d5a" }, { "authorized_access_point": "Westfa\u0308lische Bucht", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Becken" - } - ], "identifiedBy": [ { "source": "GND", @@ -26655,6 +27172,7 @@ "value": "(DE-588)4065775-9" } ], + "identifier": "http://d-nb.info/gnd/4065775-9", "pid": "040657752", "type": "bf:Place", "variant_access_point": [ @@ -26663,28 +27181,10 @@ "Mu\u0308nsterla\u0308nder Bucht", "Mu\u0308nsterla\u0308nder Becken" ], - "md5": "920daed676c949a8b31ea3e5f056bb7f" + "md5": "206c8add5931ffe8d87d8cf2fa43723d" }, { "authorized_access_point": "Venedig", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "vbal", - "name": "Venezianer" - } - ], - "closeMatch": [ - { - "authorized_access_point": "Venedig", - "source": "GND", - "identifiedBy": { - "type": "bf:Nbn", - "value": "(DE-101)997977663", - "source": "(DE-101)997977663" - } - } - ], "identifiedBy": [ { "source": "GND", @@ -26702,12 +27202,37 @@ "value": "(DE-588)4062501-1" } ], + "identifier": "http://d-nb.info/gnd/4062501-1", + "exactMatch": [ + { + "authorized_access_point": "Venedig", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)997977663" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "091419204" + } + ] + } + ], "note": [ { "noteType": "dataSource", "label": [ "Homepage - http://www.comune.venezia.it" ] + }, + { + "noteType": "general", + "label": [ + "Hauptstadt der Region Venetien und der Metropolitanstadt Venedig" + ] } ], "pid": "04062501X", @@ -26732,46 +27257,19 @@ "Vinegia", "Comune di Venezia", "Venegia", - "Vinetia", - "Venetia", - "Venetik", - "Wenetik", - "Serenissima (Venezia)", - "Enetiesi", - "Henetiesi", - "Vineggia" - ], - "md5": "1da459c467413095ea460fcfddef8afd" - }, - { - "authorized_access_point": "Toskana", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "vbal", - "name": "Toskaner" - } - ], - "closeMatch": [ - { - "authorized_access_point": "Tursiops", - "source": "GND", - "identifiedBy": { - "type": "bf:Nbn", - "value": "(DE-101)1256264652", - "source": "(DE-101)1256264652" - } - }, - { - "authorized_access_point": "Toskana", - "source": "GND", - "identifiedBy": { - "type": "bf:Nbn", - "value": "(DE-101)997923210", - "source": "(DE-101)997923210" - } - } + "Vinetia", + "Venetia", + "Venetik", + "Wenetik", + "Serenissima (Venezia)", + "Enetiesi", + "Henetiesi", + "Vineggia" ], + "md5": "381c40211578a0afc81f0e4c42e16bdb" + }, + { + "authorized_access_point": "Toskana", "identifiedBy": [ { "source": "GND", @@ -26789,6 +27287,53 @@ "value": "(DE-588)4060485-8" } ], + "identifier": "http://d-nb.info/gnd/4060485-8", + "exactMatch": [ + { + "authorized_access_point": "Tursiops", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1256264652" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "8021" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_8021" + } + ] + }, + { + "authorized_access_point": "Toskana", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)997923210" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "091418437" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Region in Mittelitalien mit den Provinzen Arezzo, Florenz, Grosseto, Livorno, Lucca, Massa-Carrara, Pisa, Pistoia, Prato, Siena. Hauptstadt: Florenz" + ] + } + ], "pid": "040604853", "type": "bf:Place", "related": [ @@ -26805,7 +27350,7 @@ "Granducato Toscana", "Gro\u00dfherzogtum Toskana" ], - "md5": "ec7092e40793250a514b65a46ceb0224" + "md5": "8fd17845f69aa668575dc3a120282f06" }, { "authorized_access_point": "Tihama", @@ -26826,12 +27371,21 @@ "value": "(DE-588)4060151-1" } ], + "identifier": "http://d-nb.info/gnd/4060151-1", + "note": [ + { + "noteType": "general", + "label": [ + "Ku\u0308stentiefland im SW der Arabischen Halbinsel, Saudi-Arabien und Jemen" + ] + } + ], "pid": "04060151X", "type": "bf:Place", "variant_access_point": [ "Tihamah" ], - "md5": "af23556ade20de73e08160f5923c7392" + "md5": "5d9090cc923f34ed2048d19425f87a17" }, { "authorized_access_point": "Teltow", @@ -26852,30 +27406,21 @@ "value": "(DE-588)4059408-7" } ], + "identifier": "http://d-nb.info/gnd/4059408-7", + "note": [ + { + "noteType": "general", + "label": [ + "Stadt im Landkreis Potsdam-Mittelmark" + ] + } + ], "pid": "040594084", "type": "bf:Place", - "md5": "ad9c68305d3fbd18c8f2cdb1ec263f03" + "md5": "a4e23f869f4f5bb484d0a4af8eb202a3" }, { "authorized_access_point": "Amt Storstr\u00f8m", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Amt" - } - ], - "closeMatch": [ - { - "authorized_access_point": "Storstrom (Amt)", - "source": "GND", - "identifiedBy": { - "type": "bf:Nbn", - "value": "(DE-101)997893702", - "source": "(DE-101)997893702" - } - } - ], "identifiedBy": [ { "source": "GND", @@ -26893,6 +27438,33 @@ "value": "(DE-588)4057749-1" } ], + "identifier": "http://d-nb.info/gnd/4057749-1", + "exactMatch": [ + { + "authorized_access_point": "Storstrom (Amt)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)997893702" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "091417678" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Da\u0308nische Amtskommune, seit 2007 geho\u0308rt das Gebiet zur Region Sj\u00e6lland" + ] + } + ], "pid": "04057749X", "type": "bf:Place", "related": [ @@ -26917,28 +27489,10 @@ "Storstr\u00f8m (Amt)", "Storstr\u00f8m Amtskommune" ], - "md5": "20e7c0c1563d224437772052b4f2dbbd" + "md5": "be5d4c1a8f9811ca74a3ae0099c04ea4" }, { "authorized_access_point": "Sa\u0303o Paulo (Staat)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Staat" - } - ], - "closeMatch": [ - { - "authorized_access_point": "Sao Paulo (Staat)", - "source": "GND", - "identifiedBy": { - "type": "bf:Nbn", - "value": "(DE-101)997844345", - "source": "(DE-101)997844345" - } - } - ], "identifiedBy": [ { "source": "GND", @@ -26956,12 +27510,37 @@ "value": "(DE-588)4051668-4" } ], + "identifier": "http://d-nb.info/gnd/4051668-4", + "exactMatch": [ + { + "authorized_access_point": "Sao Paulo (Staat)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)997844345" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "091416604" + } + ] + } + ], "note": [ { "noteType": "dataSource", "label": [ "Homepage - http://www.saopaulo.sp.gov.br" ] + }, + { + "noteType": "general", + "label": [ + "Bundesstaat in Su\u0308dostbrasilien" + ] } ], "pid": "040516687", @@ -26976,7 +27555,7 @@ "S. Paulo (Staat)", "Estado de S. Paulo" ], - "md5": "3cd437276a9d22deab41839b529d9de7" + "md5": "b41dba74c2a8ad57636c31a4e8303a5c" }, { "authorized_access_point": "Norden (Landkreis Aurich)", @@ -26997,6 +27576,15 @@ "value": "(DE-588)4042513-7" } ], + "identifier": "http://d-nb.info/gnd/4042513-7", + "note": [ + { + "noteType": "general", + "label": [ + "Stadt im Landkreis Aurich, Ostfriesland, 1255 urkundl. erwa\u0308hnt" + ] + } + ], "pid": "040425134", "type": "bf:Place", "broader": [ @@ -27013,7 +27601,7 @@ "Stadt Norden", "No\u0308rden" ], - "md5": "bf8a6156dd5519ebee932fae0e7048ba" + "md5": "d5a7044a12489ec623ba3f4276d60c95" }, { "authorized_access_point": "Nagold", @@ -27034,6 +27622,7 @@ "value": "(DE-588)4041146-1" } ], + "identifier": "http://d-nb.info/gnd/4041146-1", "note": [ { "noteType": "dataSource", @@ -27041,6 +27630,12 @@ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Nagold&oldid=218578103", "Homepage - https://www.nagold.de/" ] + }, + { + "noteType": "general", + "label": [ + "Stadt im Kreis Calw, Region Nordschwarzwald, Baden-Wu\u0308rttemberg" + ] } ], "pid": "04041146X", @@ -27049,7 +27644,7 @@ "Stadt Nagold", "Gro\u00dfe Kreisstadt Nagold" ], - "md5": "2d1b373cf31436f789af71db1cbf36bc" + "md5": "59753617a097ded87d78ea75997323ab" }, { "authorized_access_point": "Markkleeberg", @@ -27070,6 +27665,15 @@ "value": "(DE-588)4037604-7" } ], + "identifier": "http://d-nb.info/gnd/4037604-7", + "note": [ + { + "noteType": "general", + "label": [ + "Stadt im Landkreis Leipzig (bis 1.8.2008 Landkreis Leipziger Land), 1.1.1934 durch Zusammenschlu\u00df von Oetzsch, Markkleeberg u. Gautzsch gegru\u0308ndet; spa\u0308ter gebra\u0308uchliche Namen Markkleeberg-Mitte (Oetzsch) und Markkleeberg-West (Gautzsch)" + ] + } + ], "pid": "040376044", "type": "bf:Place", "related": [ @@ -27084,21 +27688,10 @@ "Stadt Markkleeberg", "Cleburg" ], - "md5": "f1a215dd0270cf4e2a71c24287bb34a4" + "md5": "857dacddc906ff2ba8561fdbb360d7ad" }, { "authorized_access_point": "Mannheim", - "closeMatch": [ - { - "authorized_access_point": "Mannheim", - "source": "GND", - "identifiedBy": { - "type": "bf:Nbn", - "value": "(DE-101)992252873", - "source": "(DE-101)992252873" - } - } - ], "identifiedBy": [ { "source": "GND", @@ -27116,12 +27709,37 @@ "value": "(DE-588)4037372-1" } ], + "identifier": "http://d-nb.info/gnd/4037372-1", + "exactMatch": [ + { + "authorized_access_point": "Mannheim", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992252873" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "091412013" + } + ] + } + ], "note": [ { "noteType": "dataSource", "label": [ "Homepage - https://www.mannheim.de" ] + }, + { + "noteType": "general", + "label": [ + "Stadt im Regierungsbezirk Karlsruhe, Dorf 766 urkundl. erwa\u0308hnt, Stadt ab 1607 planma\u0308\u00dfig angelegt" + ] } ], "pid": "04037372X", @@ -27141,7 +27759,7 @@ "Mannehemium", "Interamnium" ], - "md5": "fd50ca26d07bb452c2ed7ffee32d2147" + "md5": "4a164766964f842c3fd9cb75b52f0ad9" }, { "authorized_access_point": "Bernkastel-Kues-Machern", @@ -27162,6 +27780,15 @@ "value": "(DE-588)4036811-7" } ], + "identifier": "http://d-nb.info/gnd/4036811-7", + "note": [ + { + "noteType": "general", + "label": [ + "Ortsteil von Bernkastel-Kues" + ] + } + ], "pid": "040368114", "type": "bf:Place", "related": [ @@ -27172,21 +27799,10 @@ "variant_access_point": [ "Machern (Bernkastel-Kues)" ], - "md5": "592384b7d8076b0256e4ce188d9499df" + "md5": "9b801a440d78a6665d4cad4dc40d7d41" }, { "authorized_access_point": "Lima", - "closeMatch": [ - { - "authorized_access_point": "Lima", - "source": "GND", - "identifiedBy": { - "type": "bf:Nbn", - "value": "(DE-101)992096243", - "source": "(DE-101)992096243" - } - } - ], "identifiedBy": [ { "source": "GND", @@ -27204,12 +27820,39 @@ "value": "(DE-588)4035742-9" } ], + "identifier": "http://d-nb.info/gnd/4035742-9", + "exactMatch": [ + { + "authorized_access_point": "Lima", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992096243" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "091411270" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Hauptstadt von Peru u. der gleichnamigen Provinz, 6.1.1535 als Ciudad de Los Reyes gegru\u0308ndet" + ] + } + ], "pid": "040357422", "type": "bf:Place", "variant_access_point": [ "Ciudad de Los Reyes" ], - "md5": "2cf0efb7a367b190066a8a4120595f7d" + "md5": "93ba11db5bf6f53f9f47cb24e5f7c695" }, { "authorized_access_point": "Laubach (Landkreis Gie\u00dfen)", @@ -27230,6 +27873,15 @@ "value": "(DE-588)4034691-2" } ], + "identifier": "http://d-nb.info/gnd/4034691-2", + "note": [ + { + "noteType": "general", + "label": [ + "Stadt im Naturpark Vogelsberg, Landkreis Gie\u00dfen, 786 urkundl. erwa\u0308hnt, 1405 als Stadt bezeichnet" + ] + } + ], "pid": "040346919", "type": "bf:Place", "broader": [ @@ -27241,21 +27893,10 @@ "Laubach (Oberhessen)", "Laubach in Hessen" ], - "md5": "0f73ade8ccb3524c859efa14d472bc9f" + "md5": "4983f347ec378446fce688b6957202f4" }, { "authorized_access_point": "Kiel", - "closeMatch": [ - { - "authorized_access_point": "Kiel", - "source": "GND", - "identifiedBy": { - "type": "bf:Nbn", - "value": "(DE-101)991666976", - "source": "(DE-101)991666976" - } - } - ], "identifiedBy": [ { "source": "GND", @@ -27273,12 +27914,37 @@ "value": "(DE-588)4030481-4" } ], + "identifier": "http://d-nb.info/gnd/4030481-4", + "exactMatch": [ + { + "authorized_access_point": "Kiel", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)991666976" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "09141024X" + } + ] + } + ], "note": [ { "noteType": "dataSource", "label": [ "Homepage - https://www.kiel.de/" ] + }, + { + "noteType": "general", + "label": [ + "Landeshauptstadt von Schleswig-Holstein seit 23.8.1946, 1233 gegru\u0308ndet, 1242 Stadtrecht" + ] } ], "pid": "040304817", @@ -27296,7 +27962,7 @@ "Kylis", "K\u0327i\u0304le" ], - "md5": "01837ca6cbba5d7b58a7305ddabfcd0b" + "md5": "19f6de4e02aa345041de9a5be078297d" }, { "authorized_access_point": "Karben", @@ -27317,6 +27983,15 @@ "value": "(DE-588)4029637-4" } ], + "identifier": "http://d-nb.info/gnd/4029637-4", + "note": [ + { + "noteType": "general", + "label": [ + "Stadt im Wetteraukreis" + ] + } + ], "pid": "040296377", "type": "bf:Place", "related": [ @@ -27339,7 +28014,7 @@ "authorized_access_point": "Petterweil" } ], - "md5": "e25347140da857fd3b455a1c55309752" + "md5": "f4a9cbc3e3dcbc91a6c72609b79f5177" }, { "authorized_access_point": "Judenburg", @@ -27360,6 +28035,7 @@ "value": "(DE-588)4028809-2" } ], + "identifier": "http://d-nb.info/gnd/4028809-2", "note": [ { "noteType": "dataSource", @@ -27373,7 +28049,7 @@ "variant_access_point": [ "Stadtgemeinde Judenburg" ], - "md5": "d3627f5cff65646c7fb6eedfcf8b6e58" + "md5": "1ea2b9d580f1fac2dd6f8591b0156e16" }, { "authorized_access_point": "Heidenheim", @@ -27394,12 +28070,19 @@ "value": "(DE-588)4024010-1" } ], + "identifier": "http://d-nb.info/gnd/4024010-1", "note": [ { "noteType": "dataSource", "label": [ "Homepage - https://heidenheim.hahnenkamm.de/" ] + }, + { + "noteType": "general", + "label": [ + "Markt im Landkreis Wei\u00dfenburg-Gunzenhausen, Regierungsbezirk Mittelfranken, Kloster 752 gegru\u0308ndet" + ] } ], "pid": "04024010X", @@ -27412,7 +28095,7 @@ "Heidenheim (Hahnenkamm)", "Heidenheim am Hahnenkamm" ], - "md5": "2bed05f7671b3a86579df2adea38ec36" + "md5": "4492b0cb69c1a69a5be1e04e5c0e2dae" }, { "authorized_access_point": "Freilassing", @@ -27433,6 +28116,7 @@ "value": "(DE-588)4018340-3" } ], + "identifier": "http://d-nb.info/gnd/4018340-3", "note": [ { "noteType": "dataSource", @@ -27446,21 +28130,10 @@ "variant_access_point": [ "Stadt Freilassing" ], - "md5": "3f462632e9f20b09f25fff76edf7b902" + "md5": "91baba0e0c279c97eb124f3e05e31910" }, { "authorized_access_point": "Calw", - "closeMatch": [ - { - "authorized_access_point": "Calw", - "source": "GND", - "identifiedBy": { - "type": "bf:Nbn", - "value": "(DE-101)990001474", - "source": "(DE-101)990001474" - } - } - ], "identifiedBy": [ { "source": "GND", @@ -27478,12 +28151,37 @@ "value": "(DE-588)4009341-4" } ], + "identifier": "http://d-nb.info/gnd/4009341-4", + "exactMatch": [ + { + "authorized_access_point": "Calw", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)990001474" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "091405505" + } + ] + } + ], "note": [ { "noteType": "dataSource", "label": [ "Homepage - https://www.calw.de" ] + }, + { + "noteType": "general", + "label": [ + "Kreisstadt des Landkreises Calw; 1075 urkundl. erwa\u0308hnt, seit 13. Jh. Stadtrecht" + ] } ], "pid": "040093417", @@ -27498,28 +28196,10 @@ "Gro\u00dfe Kreisstadt Calw", "Kalw" ], - "md5": "95e6df74d5c635dbafa9223ce7b4a6c0" + "md5": "e7657dee80408c1a7a67bff199354ab7" }, { "authorized_access_point": "Departement Cajamarca", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Departement" - } - ], - "closeMatch": [ - { - "authorized_access_point": "Cajamarca (Dep.)", - "source": "GND", - "identifiedBy": { - "type": "bf:Nbn", - "value": "(DE-101)989991571", - "source": "(DE-101)989991571" - } - } - ], "identifiedBy": [ { "source": "GND", @@ -27537,6 +28217,25 @@ "value": "(DE-588)4009300-1" } ], + "identifier": "http://d-nb.info/gnd/4009300-1", + "exactMatch": [ + { + "authorized_access_point": "Cajamarca (Dep.)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)989991571" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "091405467" + } + ] + } + ], "pid": "04009300X", "type": "bf:Place", "broader": [ @@ -27549,21 +28248,10 @@ "Cajamarca (Dep.)", "Departamento de Cajamarca" ], - "md5": "94f7f531df43a2ef774b2f1193b2b697" + "md5": "c74bfbfcd4348ab76a7b1a29eb0454cc" }, { "authorized_access_point": "Berchtesgaden", - "closeMatch": [ - { - "authorized_access_point": "Berchtesgaden", - "source": "GND", - "identifiedBy": { - "type": "bf:Nbn", - "value": "(DE-101)989944697", - "source": "(DE-101)989944697" - } - } - ], "identifiedBy": [ { "source": "GND", @@ -27581,6 +28269,25 @@ "value": "(DE-588)4005574-7" } ], + "identifier": "http://d-nb.info/gnd/4005574-7", + "exactMatch": [ + { + "authorized_access_point": "Berchtesgaden", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)989944697" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "091404614" + } + ] + } + ], "note": [ { "noteType": "dataSource", @@ -27594,17 +28301,10 @@ "variant_access_point": [ "Markt Berchtesgaden" ], - "md5": "4c7a1f3955a7a8d641ee8fe7d6337c7a" + "md5": "54492ffd53e69ea6e912ecaaafe1d087" }, { "authorized_access_point": "Amt A\u030abenra\u030a", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Amt" - } - ], "identifiedBy": [ { "source": "GND", @@ -27622,6 +28322,7 @@ "value": "(DE-588)4002402-7" } ], + "identifier": "http://d-nb.info/gnd/4002402-7", "note": [ { "noteType": "dataSource", @@ -27651,7 +28352,7 @@ "Abenraa (Amt)", "Apenrade (Amt)" ], - "md5": "2410d80b52827500fad7955433008640" + "md5": "b2b30b8927368551420a59815529ce7b" }, { "authorized_access_point": "Gru\u0308nberg-Stockhausen", @@ -27672,6 +28373,15 @@ "value": "(DE-588)3014160-6" } ], + "identifier": "http://d-nb.info/gnd/3014160-6", + "note": [ + { + "noteType": "general", + "label": [ + "Stadtteil von Gru\u0308nberg im Landkreis Gie\u00dfen, Hessen" + ] + } + ], "pid": "030141605", "type": "bf:Place", "related": [ @@ -27686,7 +28396,7 @@ "Gru\u0308nberg (Landkreis Gie\u00dfen-Stockhausen)", "Stockhausen (Gru\u0308nberg-Stockhausen)" ], - "md5": "b631697d081c965e7b39a5613923fcc9" + "md5": "3b9ed6330e5227ec4f2fd02097ceb8fe" }, { "authorized_access_point": "Rodheim vor der Ho\u0308he", @@ -27707,6 +28417,7 @@ "value": "(DE-588)3012589-3" } ], + "identifier": "http://d-nb.info/gnd/3012589-3", "note": [ { "noteType": "dataSource", @@ -27726,7 +28437,7 @@ "Rodheim (Ho\u0308he)", "Rottheim" ], - "md5": "f0a45a3dbd510d3700e5b98fcd07e8aa" + "md5": "13b782dc7052893cb23df1434b6d2c6e" }, { "authorized_access_point": "Leipzig-Su\u0308d", @@ -27747,6 +28458,7 @@ "value": "(DE-588)3008905-0" } ], + "identifier": "http://d-nb.info/gnd/3008905-0", "pid": "030089050", "type": "bf:Place", "related": [ @@ -27754,17 +28466,10 @@ "authorized_access_point": "Leipzig" } ], - "md5": "f753520fcadd8c6704638658fdfb46b6" + "md5": "9212789ec77c5fb4e10423dc06dd5d11" }, { "authorized_access_point": "Amt Bornholm", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Amt" - } - ], "identifiedBy": [ { "source": "GND", @@ -27782,6 +28487,15 @@ "value": "(DE-588)2128029-0" } ], + "identifier": "http://d-nb.info/gnd/2128029-0", + "note": [ + { + "noteType": "general", + "label": [ + "Ehemaliges Amt, geho\u0308rte seit 2002 zu Bornholms Regionskommune und seit 2007 wie Kopenhagen und Frederiksberg zur Region Hovedstaden und hat seinen Amtstatus verloren" + ] + } + ], "pid": "007749023", "type": "bf:Place", "broader": [ @@ -27796,7 +28510,7 @@ "Bornholms Amt", "Bornholm (Amt)" ], - "md5": "32f039109709bed48581ee826a786152" + "md5": "5b29c568deeca632745c5748d2d85e85" }, { "authorized_access_point": "Deining (Wolfratshausen)", @@ -27817,6 +28531,7 @@ "value": "(DE-588)1046115-2" } ], + "identifier": "http://d-nb.info/gnd/1046115-2", "pid": "004280768", "type": "bf:Place", "broader": [ @@ -27824,16 +28539,10 @@ "authorized_access_point": "Egling" } ], - "md5": "11fb7005564dd0b01a75e47807f64786" + "md5": "9a12b11f4c373e66e9ecc0ce018bcfc1" }, { "authorized_access_point": "Russisch-Orthodoxe Dio\u0308zese des Orthodoxen Bischofs von Berlin und Deutschland", - "closeMatch": [ - { - "authorized_access_point": "\u0420\u0443\u0441\u0441\u043a\u0430\u044f \u041f\u0440\u0430\u0432\u043e\u0441\u043b\u0430\u0432\u043d\u0430\u044f \u0417\u0430\u0440\u0443\u0431\u0435\u0436\u043d\u0430\u044f \u0426\u0435\u0440\u043a\u043e\u0432\u044c", - "source": "GND" - } - ], "identifiedBy": [ { "source": "GND", @@ -27851,6 +28560,7 @@ "value": "(DE-588)1032392-2" } ], + "identifier": "http://d-nb.info/gnd/1032392-2", "note": [ { "noteType": "dataSource", @@ -27870,7 +28580,7 @@ "Russische Orthodoxe Dio\u0308zese von Berlin und Deutschland", "Russische Orthodoxe Kirche im Ausland" ], - "md5": "8a15b4d8b55e6f8d5ea6a677179459ca" + "md5": "4d07af54eb6a119cd60dca0566bb5422" }, { "authorized_access_point": "Bolkenhain", @@ -27891,6 +28601,7 @@ "value": "(DE-588)263162-3" } ], + "identifier": "http://d-nb.info/gnd/263162-3", "pid": "002631628", "type": "bf:Place", "broader": [ @@ -27898,7 +28609,7 @@ "authorized_access_point": "Bolko\u0301w" } ], - "md5": "79f8e9c4bb6f7efb9a93e313b3c534c9" + "md5": "a0d83e3e52729011e1f310a6c22f3d28" }, { "authorized_access_point": "Melton Mowbray", @@ -27919,9 +28630,18 @@ "value": "(DE-588)110153-5" } ], + "identifier": "http://d-nb.info/gnd/110153-5", + "note": [ + { + "noteType": "general", + "label": [ + "Stadt im County Leicestershire, East Midlands, England, 1086 urkundl. erwa\u0308hnt" + ] + } + ], "pid": "001101536", "type": "bf:Place", - "md5": "f7bd767ab147d331439504521187268a" + "md5": "61c7246b52eddcd8a087d68b8c433ee5" }, { "authorized_access_point": "Aalen-Wasseralfingen", @@ -27942,6 +28662,15 @@ "value": "(DE-588)34707-3" } ], + "identifier": "http://d-nb.info/gnd/34707-3", + "note": [ + { + "noteType": "general", + "label": [ + "21.6.1975 nach Aalen eingemeindet, im Ostalbkreis, Baden-Wu\u0308rttemberg" + ] + } + ], "pid": "000347078", "type": "bf:Place", "related": [ @@ -27952,6 +28681,6 @@ "authorized_access_point": "Wasseralfingen" } ], - "md5": "e2a78a0aaf1313433bdd5d7594fe980e" + "md5": "1a1cf17310772097fe06965a1269c9e3" } ] \ No newline at end of file diff --git a/data/plgnd_metadata.csv b/data/plgnd_metadata.csv index 14c9257b..79ec25dd 100644 --- a/data/plgnd_metadata.csv +++ b/data/plgnd_metadata.csv @@ -1,913 +1,720 @@ -2024-07-16 19:07:59.230921 2024-07-17 07:01:14.531465 b144f528-02ca-48d8-a04d-a85f72968b43 {"md5": "f6d453d51f32b1e66905809f80dd4f1b", "pid": "963614673", "note": [{"label": ["Internet - http://www.ev-kg-breckerfeld.de/j-kg/?page_id=71"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Breckerfeld"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4668633-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)963614673", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4668633-2", "source": "GND"}], "classification": [{"name": "Basilika", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Kirchenbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Baudenkmal", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Jakobus-Kirche (Breckerfeld)", "Evangelische Pfarrkirche (Breckerfeld)", "Evangelische Jakobus-Kirche (Breckerfeld)", "Ev. Kirche (Breckerfeld)"], "authorized_access_point": "Jakobus-Kirche Breckerfeld (Breckerfeld)"} 3 -2024-07-16 19:07:20.498604 2024-07-17 07:00:22.757435 449dc92b-0ea0-49a6-aa17-8b87f2228d26 {"md5": "1a4877fe79fc01dacd70b37352479599", "pid": "133523909X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Venedig"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133523909X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133523909X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133523909X", "source": "GND"}], "classification": [{"name": "Klosteranlage", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Klosteranlage des Monastero di Santa Croce alla Giudecca (Venedig)"} 3 -2024-07-16 19:07:20.449062 2024-07-17 07:00:23.059692 5fdae311-c514-4943-a530-338bc892ee91 {"md5": "937cf0248f6d4da93792064e35dcedd6", "pid": "1335243240", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "San Basilio (Sardinien)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335243240", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335243240", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335243240", "source": "GND"}], "classification": [{"name": "Kirchenbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "San Pietro Apostolo (San Basilio, Sardinien)"} 3 -2024-07-16 19:07:20.398202 2024-07-17 07:00:23.353352 59d2c463-5914-4c53-b159-6f7456367489 {"md5": "a5325d2bbb62afe52cb7ebbcb815ca5c", "pid": "1335249966", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Steinburg_(Holstein)"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Süderau"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335249966", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335249966", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335249966", "source": "GND"}], "classification": [{"name": "Tiefenburg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Steinburg (Süderau)"} 3 -2024-07-16 19:07:20.34816 2024-07-17 07:00:23.596456 a874fcf0-2d52-442c-b013-881a15d02dd1 {"md5": "b1ee337f5077380a09d68066d99f29e1", "pid": "133525207X", "note": [{"label": ["Wikipedia - https://pl.wikipedia.org/w/index.php?title=Kwiatk%C3%B3w_(powiat_turecki)&oldid=72550113"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133525207X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133525207X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133525207X", "source": "GND"}], "authorized_access_point": "Kwiatków"} 3 -2024-07-16 19:07:20.222551 2024-07-17 07:00:24.273233 2e4c32cc-6d76-4184-8533-48a9714ae4bf {"md5": "1957d4f38b442be11cb057eaaf7e9880", "pid": "1335257101", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Katovice&oldid=242019016"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335257101", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335257101", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335257101", "source": "GND"}], "variant_access_point": ["Katowitz"], "authorized_access_point": "Katovice"} 3 -2024-07-16 19:07:20.130747 2024-07-17 07:00:24.598356 4f7faa9c-6c06-4277-88f3-d26fa854ef85 {"md5": "94179a3a9fb9e72053f299534acfbeb8", "pid": "1335257845", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Katovice"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335257845", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335257845", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335257845", "source": "GND"}], "classification": [{"name": "Burgwall", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Burgwall Katowitz", "Kněží hora", "Hradiště na Kněží hoře", "Katowice", "Katowitz"], "authorized_access_point": "Burgwall Katovice"} 3 -2024-07-16 19:07:20.563118 2024-07-17 07:00:22.480686 88d26b8e-f018-49fd-ba96-9ac40b615b3b {"md5": "e00f859c0020ce7c33fda090bc62842f", "pid": "1335217711", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Gunzenhausen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335217711", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335217711", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335217711", "source": "GND"}], "variant_access_point": ["Büchelberg (Gunzenhausen)"], "authorized_access_point": "Gunzenhausen-Büchelberg"} 3 -2024-07-16 19:07:20.29867 2024-07-17 07:00:23.885923 e3ef116b-2488-442b-9f39-354c129fcbd1 {"md5": "87b304ecb151a650c9367d93c40ff32d", "pid": "133525675X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Wielbark_(Malbork)&oldid=236755840"], "noteType": "dataSource"}, {"label": ["Ort in der Wojewodschaft Pommern, Powiat malborski; der größere Teil gehört zur Stadt Malbork"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133525675X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133525675X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133525675X", "source": "GND"}], "variant_access_point": ["Wielbark", "Willenberg"], "authorized_access_point": "Malbork-Wielbark"} 3 -2024-07-16 19:07:21.259761 2024-07-17 07:00:19.686893 725814f4-57de-4448-ab25-e5c8623ea3bc {"md5": "552b212cb3b66f3c3e640ff921c7604d", "pid": "1335086005", "note": [{"label": ["GeoNames - https://www.geonames.org/761744/podsuliszka.html", "Wikipedia - https://en.wikipedia.org/w/index.php?title=Podsuliszka&oldid=1166090601"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Powiat radomski"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335086005", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335086005", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335086005", "source": "GND"}], "authorized_access_point": "Podsuliszka"} 3 -2024-07-16 19:07:21.157319 2024-07-17 07:00:19.98184 71454204-9a62-45ff-b488-889f6bd1c97f {"md5": "92c77e0dc91babe1e42a3d7377974d79", "pid": "1335092196", "note": [{"label": ["Homepage - https://www.neufreimann.de/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "München"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335092196", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335092196", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335092196", "source": "GND"}], "variant_access_point": ["Neufreimann (München-Neufreimann)"], "authorized_access_point": "München-Neufreimann"} 3 -2024-07-16 19:07:21.071815 2024-07-17 07:00:20.276046 1b3c2a53-67ea-44ea-9c9e-149336b7842a {"md5": "9871042c3dcdb867a88ed1f6e6d37c1a", "pid": "1335092390", "note": [{"label": ["AW-Wiki - https://www.aw-wiki.de/index.php/Villa_Wente_(Niederbreisig)"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bad Breisig"}, {"authorized_access_point": "Bad Niederbreisig"}, {"authorized_access_point": "Bad Breisig- Niederbreisig"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335092390", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335092390", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335092390", "source": "GND"}], "classification": [{"name": "Villa", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Villa Wenté (Bad Niederbreisig)", "Villa Wenté (Bad Breisig- Niederbreisig)"], "authorized_access_point": "Villa Wenté (Bad Breisig)"} 3 -2024-07-16 19:07:20.988211 2024-07-17 07:00:20.566388 3faf1e19-5b8b-4907-90e3-59e17c353cdc {"md5": "61bb294f92844e87999c8208c6c90d32", "pid": "1335098399", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Portsmouth_(Dominica)"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335098399", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335098399", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335098399", "source": "GND"}], "authorized_access_point": "Portsmouth (Dominica)"} 3 -2024-07-16 19:07:20.822914 2024-07-17 07:00:21.232968 a38146f3-f0b4-4c45-b710-f30108a5f668 {"md5": "d80ee3c9ce81f4f91547769bee01fb28", "pid": "1335107711", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Chūbu"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335107711", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335107711", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335107711", "source": "GND"}], "classification": [{"name": "Region", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Hokuriku Chihō", "北陸地方"], "authorized_access_point": "Hokuriku"} 3 -2024-07-16 19:07:20.738816 2024-07-17 07:00:21.866943 7c3b1c81-4dcd-4ab6-853c-7330828f17bc {"md5": "288e6d783cf8aa5fa5a0b42dd891e07c", "pid": "1335141790", "note": [{"label": ["Wikipedia (spanisch) - https://es.wikipedia.org/wiki/Caicara_de_Matur%C3%ADn"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335141790", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335141790", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335141790", "source": "GND"}], "authorized_access_point": "Caicara de Maturín"} 3 -2024-07-16 19:07:20.648141 2024-07-17 07:00:22.150809 427c684d-d1fd-412b-9387-f0b997b0e0f0 {"md5": "e1c64024aa0576dfe4b4c9df1d6cf3d5", "pid": "1335201653", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Somerset County, NJ"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335201653", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335201653", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335201653", "source": "GND"}], "variant_access_point": ["Skillman, New Jersey"], "authorized_access_point": "Skillman, NJ"} 3 -2024-07-16 19:07:21.910579 2024-07-17 07:00:17.313961 9e3fe4ed-31a8-4e1d-ab8d-a6cb5ee0effd {"md5": "8bfb823cdf023d72ec78e5c32f68c312", "pid": "1334904251", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=214053093"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334904251", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334904251", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334904251", "source": "GND"}], "variant_access_point": ["Wischke", "Wischkau", "Wieschke", "Lindendorf O.S."], "authorized_access_point": "Wyszków Śląski"} 3 -2024-07-16 19:07:21.823014 2024-07-17 07:00:17.5977 39974569-0892-40bd-9c65-5660384f7f29 {"md5": "3eecc7ab0092c308a65eea2a04019df8", "pid": "1334907048", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Innsbruck"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334907048", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334907048", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334907048", "source": "GND"}], "classification": [{"name": "Bürohaus", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Salurner Straße 2 (Innsbruck)"], "authorized_access_point": "SPÖ-Parteihaus (Innsbruck)"} 3 -2024-07-16 19:07:21.654744 2024-07-17 07:00:18.323099 71e0bfb7-c4e0-4b3a-a19f-2c36fca5778b {"md5": "c68e98c9801783ba57fcf34eab33ad14", "pid": "1334913498", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Schelklingen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334913498", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334913498", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334913498", "source": "GND"}], "classification": [{"name": "Burg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Schloss Hohenschelklingen (Schelklingen)", "Burg Hohen Schelklingen (Schelklingen)"], "authorized_access_point": "Burg Hohenschelklingen (Schelklingen)"} 3 -2024-07-16 19:07:21.574186 2024-07-17 07:00:18.600742 454e13ce-62a3-4ed6-ae78-5484dfbea9c7 {"md5": "bd94d5770fd6d10c6189235a9e97304c", "pid": "1334916292", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Sankt-Veits-Dom (Prag)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334916292", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334916292", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334916292", "source": "GND"}], "classification": [{"name": "Portal", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Sankt-Veits-Dom (Prag) (Goldene Pforte)"} 3 -2024-07-16 19:07:21.490518 2024-07-17 07:00:18.895849 3ddc7186-9427-4842-9aa4-9f3d1ce41c3d {"md5": "6e2a3f8de22c437fd123d907d8ce9835", "pid": "1334917981", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "San Vito al Torre"}, {"authorized_access_point": "San Vito al Torre- Crauglio"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334917981", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334917981", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334917981", "source": "GND"}], "classification": [{"name": "Landhaus", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Palazzo Steffaneo (San Vito al Torre)", "Palazzo Steffaneo Roncato (San Vito al Torre)"], "authorized_access_point": "Villa Stefaneo (San Vito al Torre)"} 3 -2024-07-16 19:07:22.512986 2024-07-17 07:00:15.023298 8bdbabe7-35a0-4ddf-9dfc-2ee44fac0107 {"md5": "33429a245bc534bab93abf612d1e1f86", "pid": "1334875707", "note": [{"label": ["GeoNames - http://geotree.geonames.org/5126239/", "Wikipedia - https://en.wikipedia.org/w/index.php?title=Mattituck,_New_York&oldid=1214492095"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334875707", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334875707", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334875707", "source": "GND"}], "authorized_access_point": "Mattituck, NY"} 3 -2024-07-16 19:07:22.437726 2024-07-17 07:00:15.328644 d8785b6c-3acf-47e8-9ae2-73544be421fe {"md5": "26c49e2e7e19344f0fa00298cbee07b1", "pid": "1334878234", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Holowaniwsk&oldid=246179368"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334878234", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334878234", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334878234", "source": "GND"}], "variant_access_point": ["Holovanivsk", "Hołowaniewskie", "Голованівськ", "Голованевск"], "authorized_access_point": "Holowaniwsk"} 3 -2024-07-16 19:07:22.376693 2024-07-17 07:00:15.634022 af2642c8-f873-4be1-9c44-a6716dfa5d62 {"md5": "8fbec11784de7b45207836bb0d9e3f96", "pid": "133489129X", "note": [{"label": ["Homepage - https://neuesamt.org/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Hamburg-Altona"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133489129X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133489129X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133489129X", "source": "GND"}], "classification": [{"name": "Gewerbegebäude", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["NAA"], "authorized_access_point": "Neues Amt Altona (Hamburg-Altona)"} 3 -2024-07-16 19:07:22.329901 2024-07-17 07:00:15.896813 90348e5d-7f95-4a2c-af17-d89595a58445 {"md5": "e24b9606efe72a56b20c78623b052fa9", "pid": "1334893594", "note": [{"label": ["Homepage - https://www.phoenixhof.de/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Hamburg-Bahrenfeld"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334893594", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334893594", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334893594", "source": "GND"}], "classification": [{"name": "Gewerbehof", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Phoenixhof (Hamburg)"} 3 -2024-07-16 19:07:22.248083 2024-07-17 07:00:16.18686 df3d7c35-f6ea-4478-8022-e1f52b6c640d {"md5": "e329684aa17692f8b54399a3ff6040fa", "pid": "1334896755", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Platz_der_Republik_(Hamburg)&oldid=240777547"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Hamburg-Altona"}, {"authorized_access_point": "Hamburg"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334896755", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334896755", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334896755", "source": "GND"}], "classification": [{"name": "Platz", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Park", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Kaiserplatz (Hamburg)"], "authorized_access_point": "Platz der Republik (Hamburg)"} 3 -2024-07-16 19:07:22.16989 2024-07-17 07:00:16.492082 48735cf2-ea46-4433-b8db-be4eedddfc28 {"md5": "52eab6ad38bcb8f425aef41f99c3b4c6", "pid": "133489874X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133489874X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133489874X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133489874X", "source": "GND"}], "classification": [{"name": "Berg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Spiemont"} 3 -2024-07-16 19:08:12.43856 2024-07-17 07:00:25.500296 b690bdd6-2854-4e9e-900f-620d29bcb123 {"md5": "3371ee688a3fc69a93b7194a207a3079", "pid": "199001111", "note": [{"label": ["onlinestreet.de - https://onlinestreet.de/strassen/Bahnhofstra%C3%9Fe.Steinhagen.302222.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Steinhagen (Kreis Gütersloh)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7761850-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199001111", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7761850-6", "source": "GND"}], "classification": [{"name": "Straße", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Bahnhofstraße (Steinhagen, Kreis Gütersloh)"} 3 -2024-07-16 19:07:23.105281 2024-07-17 07:00:12.864216 3d0ff695-0765-4516-8f81-96474eb9a4ff {"md5": "d86fe5ce9f50b4310ed335acc13ef18b", "pid": "1334804141", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Trier"}, {"authorized_access_point": "Trier-Kürenz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334804141", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334804141", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334804141", "source": "GND"}], "classification": [{"name": "Kapelle", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["St. Cornelius-Kapelle (Trier)", "Sankt Cornelius-Kapelle (Trier-Kürenz)", "St. Cornelius-Kapelle (Trier-Kürenz)", "Jüngere Kürenzer Kapelle (Trier)"], "authorized_access_point": "Sankt Cornelius-Kapelle (Trier)"} 3 -2024-07-16 19:07:22.942873 2024-07-17 07:00:13.449887 dcb79d85-0289-4c91-a9c8-496496ffb2ee {"md5": "03fa849ab5ad4b50fd9376d37adb1870", "pid": "1334865981", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Neudau"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334865981", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334865981", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334865981", "source": "GND"}], "classification": [{"name": "Schloss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Schloss Neudau (Neudau)"} 3 -2024-07-16 19:07:22.849337 2024-07-17 07:00:13.766229 814836e8-21fa-42cf-b110-20350468e4f9 {"md5": "1469c78dcf93b9a18b17248496adcc13", "pid": "1334866082", "note": [{"label": ["OBV - https://permalink.obvsg.at/AC17225353"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Vittorio Veneto"}, {"authorized_access_point": "Venetien"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334866082", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334866082", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334866082", "source": "GND"}], "authorized_access_point": "Comunità Montana delle Prealpi Trevigiane"} 3 -2024-07-16 19:07:22.754112 2024-07-17 07:00:14.094669 198ac5f7-8755-48ca-a82e-bed60bcdec18 {"md5": "13f6279b1b5a731c35538538d28f9b0c", "pid": "1334866473", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Birkfeld"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334866473", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334866473", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334866473", "source": "GND"}], "classification": [{"name": "Schloss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Schloss Birkenstein (Birkfeld)"} 3 -2024-07-16 19:08:12.26732 2024-07-17 07:00:26.146553 cbea0fbc-b226-4c61-8a86-fc806a7153d7 {"md5": "078aea1f2076f6d6ae852ce2c290363f", "pid": "199003645", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Liste_der_Baudenkm%C3%A4ler_in_Beckum&oldid=245713880", "Homepage Beckum - https://www.beckum.de/entdecken-erleben/kultur/stadtmuseum/#accordion-1-5"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Beckum"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7762132-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199003645", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7762132-3", "source": "GND"}], "variant_access_point": ["Altes Rathaus (Beckum)", "Ehemaliges Rathaus (Beckum)", "Historisches Rathaus (Beckum)", "Rathaus Beckum (Beckum)", "Das ehemalige Rathaus (Beckum)", "Beckumer Rathaus (Beckum)", "Stadtmuseum (Beckum)", "Markt 1 (Beckum)"], "authorized_access_point": "Rathaus (Beckum)"} 3 -2024-07-16 19:08:11.861332 2024-07-17 07:00:27.631338 9241662c-f877-4390-aaaa-782f276dab2a {"md5": "0ed97a7e87afec8d8a47498cd3cd79bc", "pid": "199023360", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=J%C3%BCdischer_Friedhof_Bochum&oldid=245831861"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bochum"}, {"authorized_access_point": "Bochum-Wiemelhausen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7764341-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199023360", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7764341-0", "source": "GND"}], "classification": [{"name": "Jüdischer Friedhof", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Baudenkmal", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Jüdischer Friedhof Bochum (Bochum-Wiemelhausen)", "Jüdischer Friedhof Wiemelhausen (Bochum)"], "authorized_access_point": "Jüdischer Friedhof Bochum (Bochum)"} 3 -2024-07-16 19:07:23.887153 2024-07-17 07:00:08.806334 6c1f3870-562a-48b9-ae2e-f989b555f715 {"md5": "6f82b88b844ebddf1daa2d89d4f56903", "pid": "1334725756", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Provinz Hung Yen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334725756", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334725756", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334725756", "source": "GND"}], "classification": [{"name": "Stadt", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Hưng Yên"], "authorized_access_point": "Hung Yen"} 3 -2024-07-16 19:07:23.808414 2024-07-17 07:00:09.124056 e089d1d4-fe1c-4217-a334-608e5e248931 {"md5": "0b2eb52f3ed0d3188408fac8c11efcea", "pid": "1334729824", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Stanowice_(Strzegom)"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334729824", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334729824", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334729824", "source": "GND"}], "variant_access_point": ["Stannowitz", "Stonwitz"], "authorized_access_point": "Stanowitz"} 3 -2024-07-16 19:07:23.644703 2024-07-17 07:00:09.688569 672d8c66-560d-4178-b083-969d4bbbaf98 {"md5": "d3c3b53852795dda707236f6d067b74f", "pid": "1334756465", "note": [{"label": ["Wikipedia - https://pl.wikipedia.org/w/index.php?title=Czerwona_Woda_(wojew%C3%B3dztwo_dolno%C5%9Bl%C4%85skie)&oldid=72559107"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334756465", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334756465", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334756465", "source": "GND"}], "variant_access_point": ["Rothwasser"], "authorized_access_point": "Czerwona Woda"} 3 -2024-07-16 19:07:23.560922 2024-07-17 07:00:11.013233 fb901215-70ec-4eee-b340-2c19fa195806 {"md5": "e42bca8c0514775c39fe714827074b4e", "pid": "1334766363", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Posada_(Bogatynia)&oldid=244888515"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Ostritz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334766363", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334766363", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334766363", "source": "GND"}], "variant_access_point": ["Rußdorf"], "authorized_access_point": "Rusdorf (Ostritz)"} 3 -2024-07-16 19:07:23.416535 2024-07-17 07:00:11.648577 7ef4dc5a-b1cd-47ae-8fa7-f2b5ebd55a26 {"md5": "d3b8a4aab5f0fd0e22e4194431fd5189", "pid": "1334784493", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=S%C3%B8r-Aurdal&oldid=240707152"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334784493", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334784493", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334784493", "source": "GND"}], "authorized_access_point": "Sør-Aurdal"} 3 -2024-07-16 19:08:11.337067 2024-07-17 07:00:29.400687 7828cf5c-aecd-4536-94e8-4af6089c76b1 {"md5": "e49a03515ecc811eb171504161a297e7", "pid": "199138834", "note": [{"label": ["onlinestreet.de - https://onlinestreet.de/strassen/Alter+Postweg.Bottrop.5340.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bottrop"}, {"authorized_access_point": "Bottrop-Kirchhellen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7777247-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199138834", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7777247-7", "source": "GND"}], "classification": [{"name": "Straße", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Alter Postweg (Bottrop-Kirchhellen)"], "authorized_access_point": "Alter Postweg (Bottrop)"} 3 -2024-07-16 19:08:11.249606 2024-07-17 07:00:29.691315 77ec72ba-aa9d-431a-bd9c-67c13c4934a5 {"md5": "7ab8d6502832b9f1e8b70ffe1c44b496", "pid": "199147760", "note": [{"label": ["onlinestreet.de - https://onlinestreet.de/strassen/H%C3%B6fkerstra%C3%9Fe.Dortmund.110510.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Dortmund"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7778231-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199147760", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7778231-8", "source": "GND"}], "authorized_access_point": "Höfkerstraße (Dortmund)"} 3 -2024-07-16 19:08:11.167325 2024-07-17 07:00:30.116383 cc891d33-0bdd-4d08-97bf-516f64b671c3 {"md5": "4dd4cf4a9b3cabb2ef95c37ae86eca75", "pid": "199157642", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Barntrup"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7779320-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199157642", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7779320-1", "source": "GND"}], "variant_access_point": ["Uhlental"], "authorized_access_point": "Barntrup-Uhlental"} 3 -2024-07-16 19:07:24.510971 2024-07-17 07:00:06.483837 d39d6133-88ac-4f61-a7c0-731f8a9c32f4 {"md5": "a7092cd0b87c3adb701b0d2861563b45", "pid": "1334665036", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Weibern (Landkreis Ahrweiler)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334665036", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334665036", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334665036", "source": "GND"}], "classification": [{"name": "Mariensäule", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Mariensäule Weibern (Weibern, Landkreis Ahrweiler)"} 3 -2024-07-16 19:07:24.445195 2024-07-17 07:00:06.755284 258af20d-61f8-4077-828f-71aa35c33b03 {"md5": "e3c54fe0e3e9d0674a63087ca082f4a9", "pid": "1334666474", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Weibern (Landkreis Ahrweiler)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334666474", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334666474", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334666474", "source": "GND"}], "classification": [{"name": "Bildstock", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Heiligenhäuschen (Weibern, Landkreis Ahrweiler)"} 3 -2024-07-16 19:07:24.396609 2024-07-17 07:00:07.014415 40b9c1f0-0c21-4fd7-b045-2d51e5c02bec {"md5": "160bc6f71a1510175ddd36f18d1bd3a7", "pid": "1334670048", "note": [{"label": ["Ortsteil der Gemeinde Rietzneuendorf-Staakow im Landkreis Dahme-Spreewald"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Rietzneuendorf-Staakow"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334670048", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334670048", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334670048", "source": "GND"}], "variant_access_point": ["Frycowy Dwor"], "authorized_access_point": "Friedrichshof"} 3 -2024-07-16 19:07:24.314775 2024-07-17 07:00:07.299911 2247e4f7-75e8-4f5a-9600-df7db9672ee1 {"md5": "e64631a69abeff3d15acfde5b8336639", "pid": "1334670323", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Valencia"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334670323", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334670323", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334670323", "source": "GND"}], "classification": [{"name": "Denkmal", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Monument al pintor Josep de Ribera (Valencia)", "Monumento al pintor José de Ribera (Valencia)"], "authorized_access_point": "El pintor Ribera (Valencia)"} 3 -2024-07-16 19:07:24.235789 2024-07-17 07:00:07.58056 e67d37ff-6ada-4538-9bd1-944b2450819c {"md5": "ae69592e422f3577803aa741611fcee5", "pid": "1334670390", "note": [{"label": ["Ortsteil der Gemeinde Felixsee im Landkreis Spree-Neiße"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Felixsee"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334670390", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334670390", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334670390", "source": "GND"}], "variant_access_point": ["Frycowy Gaj"], "authorized_access_point": "Friedrichshain (Felixsee)"} 3 -2024-07-16 19:07:24.058476 2024-07-17 07:00:08.19775 2779c3ad-9e5d-43d7-b9eb-9ede6bbd2cce {"md5": "eafb7740dffa7cb26ce4d877f09ae82a", "pid": "1334671486", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Valencia"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334671486", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334671486", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334671486", "source": "GND"}], "classification": [{"name": "Brunnen", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Denkmal", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Monumento al marqués de Campo (Valencia)"} 3 -2024-07-16 19:07:25.109966 2024-07-17 07:00:04.641312 092519d5-d9f6-42dd-a422-c3df9f5e2caa {"md5": "cd4654b54d415a6bb3c287632c2f3e38", "pid": "1334632707", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Rieflinghausen&oldid=243763184"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Helden-Rieflinghausen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334632707", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334632707", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334632707", "source": "GND"}], "variant_access_point": ["Rylinchusen", "Rifelinchusen", "Burschafft Ryffelinghaußen"], "authorized_access_point": "Rieflinghausen"} 3 -2024-07-16 19:07:25.027389 2024-07-17 07:00:04.928506 b7d7affa-099c-4c27-803c-4b7f1a2fedef {"md5": "31bcecd5402fd7ae25a3abc60197698d", "pid": "133465641X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Wardenburg"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133465641X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133465641X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133465641X", "source": "GND"}], "classification": [{"name": "Kirchenbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Marienkirche (Wardenburg)"} 3 -2024-07-16 19:07:24.945014 2024-07-17 07:00:05.173009 1dd5254e-2e2c-4a8a-83c8-988f16983167 {"md5": "a49da34e5198768fa7ded31524b5587f", "pid": "1334657726", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Departement Manche"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334657726", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334657726", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334657726", "source": "GND"}], "authorized_access_point": "Écausseville"} 3 -2024-07-16 19:07:24.862446 2024-07-17 07:00:05.43852 2228d8c2-3719-4dc8-99d4-24750e51fb57 {"md5": "9c132f9792bc3a8dbabc86f05ee60212", "pid": "1334658196", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bologna"}, {"authorized_access_point": "Pontelungo (Bologna)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334658196", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334658196", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334658196", "source": "GND"}], "variant_access_point": ["Pontelungo (Bologna) (Sirene)"], "authorized_access_point": "Pontelungo (Bologna) (Sfingi)"} 3 -2024-07-16 19:07:24.773852 2024-07-17 07:00:05.709956 db50523a-c451-47bb-831c-e75cb4f0a044 {"md5": "a82d17359ed667f4ebd99faecfaf0cd3", "pid": "1334661073", "note": [{"label": ["Ortsteil der Gemeinde Kolkwitz im Landkreis Spree-Neiße"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Kolkwitz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334661073", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334661073", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334661073", "source": "GND"}], "variant_access_point": ["Dubje"], "authorized_access_point": "Eichow"} 3 -2024-07-16 19:07:24.684287 2024-07-17 07:00:05.972905 90559d8e-4311-4f88-ae28-0231305820ec {"md5": "94467162754199ed3bb4a36a9f8da992", "pid": "1334664242", "note": [{"label": ["Ortsteil der Gemeinde Neuhausen/Spree im Landkreis Spree-Neiße"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Neuhausen/Spree"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334664242", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334664242", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334664242", "source": "GND"}], "variant_access_point": ["Dubrawka"], "authorized_access_point": "Frauendorf (Neuhausen/Spree)"} 3 -2024-07-16 19:08:11.111744 2024-07-17 07:00:30.447077 3946e3bd-765c-4ef8-ba7f-63e839baaecc {"md5": "36affbbe6f959f60f2c34607a45d5df9", "pid": "199159777", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Liste_der_Baudenkm%C3%A4ler_im_Stadtbezirk_Bochum-Wattenscheid&oldid=246405605"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bochum"}, {"authorized_access_point": "Bochum-Wattenscheid"}, {"authorized_access_point": "Bochum-Eppendorf"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7779553-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199159777", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7779553-2", "source": "GND"}], "classification": [{"name": "Kate", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Vierständerbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Baudenkmal", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Kotten Bodde (Bochum-Wattenscheid)", "Kotten Bodde (Bochum-Eppendorf)", "Am Thie 8 (Bochum)", "Wohnhaus (Bochum)"], "authorized_access_point": "Kotten Bodde (Bochum)"} 3 -2024-07-16 19:07:25.489579 2024-07-17 07:00:03.269326 c167706e-3527-4690-804c-6c12d725e69c {"md5": "509664709826cad65f2251217f1f9031", "pid": "1334558590", "note": [{"label": ["Search.ch - https://map.search.ch/Luzern,Murbacherstr.?pos=666071,211129&zoom=16", "Kanton Luzern, Kantonales Denkmalverzeichnis und Bauinventar - https://www.geo.lu.ch/map/kulturdenkmal/?FOCUS=2665999:1211098:1000&BASEMAP=G"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Luzern-Hirschmatt"}, {"authorized_access_point": "Luzern"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334558590", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334558590", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334558590", "source": "GND"}], "classification": [{"name": "Straße", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Murbacherstrasse (Luzern)"} 3 -2024-07-16 19:07:25.437275 2024-07-17 07:00:03.557098 32a8f719-eca4-4ad0-9af6-902e7c13d028 {"md5": "51719a3ebc31845d711e6450e5a250d8", "pid": "1334559805", "note": [{"label": ["Search.ch - https://map.search.ch/Luzern,Neustadtstr.?pos=666097,210474&zoom=16", "Kanton Luzern, Kantonales Denkmalverzeichnis und Bauinventar - https://www.geo.lu.ch/map/kulturdenkmal/?FOCUS=2665987:1210348:1000&BASEMAP=G"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Luzern"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334559805", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334559805", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334559805", "source": "GND"}], "classification": [{"name": "Straße", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Neustadtstrasse (Luzern)"} 3 -2024-07-16 19:07:25.365217 2024-07-17 07:00:03.84563 6b9267a4-1f9d-4517-996e-57ac70248f49 {"md5": "fa83934e09f0acb453f35e059df0f227", "pid": "1334560994", "note": [{"label": ["Search.ch - https://map.search.ch/Luzern,Pfistergasse?pos=665610,211417&zoom=17", "Kanton Luzern, Kantonales Denkmalverzeichnis und Bauinventar - https://www.geo.lu.ch/map/kulturdenkmal/?FOCUS=2665615:1211443:1000&BASEMAP=G"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Luzern"}, {"authorized_access_point": "Altstadt (Luzern)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334560994", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334560994", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334560994", "source": "GND"}], "classification": [{"name": "Straße", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Gasse", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Pfistergasse (Luzern)"} 3 -2024-07-16 19:08:10.52057 2024-07-17 07:00:32.715374 bedc7b69-8efc-4c13-9127-53806f88efec {"md5": "a912b6baaba120328b905bb0e87de6fa", "pid": "199173672", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Liste_der_Baudenkm%C3%A4ler_in_B%C3%BCnde&oldid=239542179"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bünde"}, {"authorized_access_point": "Bünde-Ennigloh"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7781086-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199173672", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7781086-7", "source": "GND"}], "classification": [{"name": "Kino", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Baudenkmal", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Universum Bünde (Bünde-Ennigloh)", "Lichtspieltheater Universum in Bünde", "Universum in Bünde", "Kino (Bünde)", "Universum-Kino (Bünde)", "Lichtspielhaus Wittekind (Bünde)", "Hauptstraße 9"], "authorized_access_point": "Universum Bünde (Bünde)"} 3 -2024-07-16 19:08:10.107804 2024-07-17 07:00:34.077903 de1199ef-eaa4-4e57-98fb-6b232ebfe8ab {"md5": "2dd57e98417795e1a957cb1c3807976a", "pid": "199189862", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Brilon"}], "related": [{"authorized_access_point": "Niedere Straße (Brilon)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7782866-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199189862", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7782866-5", "source": "GND"}], "classification": [{"name": "Bürgerhaus", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Fachwerkbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Niedere Strasse 32 (Brilon)"], "authorized_access_point": "Niedere Straße 32 (Brilon)"} 3 -2024-07-16 19:07:26.199358 2024-07-17 07:00:00.988672 db54e550-56ca-423c-9ff3-fb2167ed8af1 {"md5": "4192bf31530634fbcfdb67fd668f42c3", "pid": "133453666X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Marienkirche_(Ehningen)&oldid=241971385"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Ehningen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133453666X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133453666X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133453666X", "source": "GND"}], "classification": [{"name": "Kirchenbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Evangelische Pfarrkirche St. Marien (Ehningen)", "St. Marien (Ehningen)", "Sankt Marien (Ehningen)"], "authorized_access_point": "Marienkirche (Ehningen)"} 3 -2024-07-16 19:07:26.119159 2024-07-17 07:00:01.253297 618f3eb0-d174-45be-b0aa-d30b4f70bb62 {"md5": "17a47547c1c87fb2311654ebd1c16d12", "pid": "1334538085", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Schloss_Stockau_(Reichertshofen)&oldid=235947920"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Reichertshofen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334538085", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334538085", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334538085", "source": "GND"}], "classification": [{"name": "Schloss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Hofmarktschloss Stockau (Reichertshofen)"], "authorized_access_point": "Schloss Stockau (Reichertshofen)"} 3 -2024-07-16 19:07:26.014893 2024-07-17 07:00:01.557595 38a4f7eb-f886-4b73-8668-9901cc1c8dd6 {"md5": "adb6d5feb74a6f69c432a3ad864a9012", "pid": "1334552606", "note": [{"label": ["Kanton Luzern, Kantonales Denkmalverzeichnis und Bauinventar - https://map.geo.lu.ch/kulturgueter/denkmaeler/?FOCUS=2674446:1209133:560; https://www.archiv-weggis.ch/2022/03/07/der-gl%C3%BCcksfall-junkerhaus/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Weggis"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334552606", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334552606", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334552606", "source": "GND"}], "classification": [{"name": "Herrenhaus", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Junkerhaus (Weggis)"} 3 -2024-07-16 19:07:25.916268 2024-07-17 07:00:01.848019 275753ba-de03-4eaf-a4fd-3f46259b24bf {"md5": "e499638d4dc585343ef4589fceb45b2e", "pid": "1334552908", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Departement Seine-et-Marne"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334552908", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334552908", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334552908", "source": "GND"}], "authorized_access_point": "Lésigny (Departement Seine-et-Marne)"} 3 -2024-07-16 19:07:25.820826 2024-07-17 07:00:02.154148 2ebae61a-55e5-4fb3-9bc8-6260fd80abd7 {"md5": "dda3f998b1754dbc808c191b1fa8a1c7", "pid": "1334552940", "note": [{"label": ["Kanton Luzern, Kantonales Denkmalverzeichnis und Bauinventar - https://map.geo.lu.ch/kulturgueter/denkmaeler/?FOCUS=2666644:1210607:560"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Luzern"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334552940", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334552940", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334552940", "source": "GND"}], "classification": [{"name": "Gewerbegebäude", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Das Gewerbegebäude in Luzern"], "authorized_access_point": "Gewerbegebäude (Luzern)"} 3 -2024-07-16 19:08:09.862802 2024-07-17 07:00:34.930878 a9ffeed6-3278-4244-8ef1-53654d4ad03c {"md5": "e956ce096d216c42c1ba2540c54dde2c", "pid": "199195978", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Liste_der_Baudenkm%C3%A4ler_in_Breckerfeld&oldid=227886228"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Breckerfeld"}], "related": [{"authorized_access_point": "Denkmalstraße (Breckerfeld)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7783538-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199195978", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7783538-4", "source": "GND"}], "classification": [{"name": "Haus", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Baudenkmal", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Denkmalstraße 1 (Breckerfeld)"} 3 -2024-07-16 19:07:26.938478 2024-07-17 06:59:58.126527 50d95bc3-dca3-4770-a5e3-4d57131270c4 {"md5": "5d2fa7303d9470662a752b3e5c6e6e59", "pid": "1334313776", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Grünberg-Queckborn"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334313776", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334313776", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334313776", "source": "GND"}], "authorized_access_point": "Queckborn"} 3 -2024-07-16 19:07:26.758428 2024-07-17 06:59:58.737754 5c31bb49-3ab8-4311-998b-48d5b2c3aeac {"md5": "6198918fdc56457f2342b9349cd2d238", "pid": "1334318492", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Landkreis Gießen"}], "related": [{"authorized_access_point": "Grünberg-Stockhausen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334318492", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334318492", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334318492", "source": "GND"}], "authorized_access_point": "Stockhausen (Landkreis Gießen)"} 3 -2024-07-16 19:07:26.664981 2024-07-17 06:59:59.005601 36d3fb40-a297-4cb5-892e-a4b4c8d853a7 {"md5": "b1c33956e274ad10d03031c0fef4cd3a", "pid": "1334319561", "note": [{"label": ["Homepage - https://www.kreisarchiv-stormarn.de/mediadb/238106/", "Homepage - https://ams-architekten.de/projekt-barsbuettel.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Barsbüttel"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334319561", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334319561", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334319561", "source": "GND"}], "classification": [{"name": "Rathaus", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Barsbütteler Rathaus (Barsbüttel)"], "authorized_access_point": "Rathaus Barsbüttel (Barsbüttel)"} 3 -2024-07-16 19:07:26.569728 2024-07-17 06:59:59.565218 87520ba7-53c4-4329-977c-00c9809ad9df {"md5": "8e72d2006f9b7a06809f5f01a941189e", "pid": "1334485763", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Jesi"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334485763", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334485763", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334485763", "source": "GND"}], "classification": [{"name": "Tal", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Vallesina (Tal)"], "authorized_access_point": "Vallesina"} 3 -2024-07-16 19:07:26.506908 2024-07-17 06:59:59.856529 1208f776-6104-4461-a060-750062aaed04 {"md5": "5794bf79da5477e5e90c4b1f66ef4765", "pid": "1334486573", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Lissabon"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334486573", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334486573", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334486573", "source": "GND"}], "classification": [{"name": "Palast", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Paço Real (Lissabon)"], "authorized_access_point": "Paço de Alcáçova (Lissabon)"} 3 -2024-07-16 19:07:26.457975 2024-07-17 07:00:00.158678 f84c93e7-0565-454d-ae76-1e8a471cf184 {"md5": "b8e162acbf1c8b5fa93e54e415d155e9", "pid": "1334502854", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Burg_Lauenstein_(Frankenwald)&oldid=243193355"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Ludwigsstadt"}, {"authorized_access_point": "Ludwigsstadt-Lauenstein"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334502854", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334502854", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334502854", "source": "GND"}], "classification": [{"name": "Burg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Burg Lauenstein (Ludwigsstadt-Lauenstein)", "Burg (Lauenstein)", "Burg und Renaissanceschloss Lauenstein (Ludwigsstadt)"], "authorized_access_point": "Burg Lauenstein (Ludwigsstadt)"} 3 -2024-07-16 19:08:09.779102 2024-07-17 07:00:35.264332 42f608a2-b17a-46f5-b948-ca376ca885d2 {"md5": "4f8862a3a37fac24957ae4db1cd59e5e", "pid": "199198578", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Liste_der_Baudenkm%C3%A4ler_in_Detmold-Kernstadt&oldid=242933521"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Detmold"}], "related": [{"authorized_access_point": "Benekestraße (Detmold)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7783825-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199198578", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7783825-7", "source": "GND"}], "classification": [{"name": "Haus", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Baudenkmal", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Benekestraße 10 (Detmold)"} 3 -2024-07-16 19:07:27.530239 2024-07-17 06:59:56.137219 4b2ec116-3d86-44d6-b97d-6520ed5f186b {"md5": "4a3ab3b53def7d72564b816982acdbde", "pid": "1334198845", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/w/index.php?title=Holy_Trinity_Church,_Shanghai&oldid=1177032584"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Schanghai"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334198845", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334198845", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334198845", "source": "GND"}], "classification": [{"name": "Kirchenbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Dreifaltigkeitskirche (Schanghai)", "Trinity Church (Schanghau)", "Holy Trinity Cathedral (Schanghai)", "上海圣三一堂", "Shànghǎi shèng sānyī táng"], "authorized_access_point": "Holy Trinity Church (Schanghai)"} 3 -2024-07-16 19:07:27.459246 2024-07-17 06:59:56.420838 d83ae0a8-e989-4058-8a8c-11e0d4e98480 {"md5": "b52231f72090b105c129345b0e055fc5", "pid": "1334221979", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Furth (Landkreis Landshut)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334221979", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334221979", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334221979", "source": "GND"}], "variant_access_point": ["Arth (Furth-Arth)"], "authorized_access_point": "Furth-Arth"} 3 -2024-07-16 19:07:27.380391 2024-07-17 06:59:56.698149 88209669-d68e-45f3-9987-ad8a4c382303 {"md5": "d71f572971c71627cbcad8ee5b7adbec", "pid": "133422725X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Arnsberg"}, {"authorized_access_point": "Arnsberg-Neheim"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133422725X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133422725X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133422725X", "source": "GND"}], "classification": [{"name": "Friedhof", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Möhnefriedhof (Arnsberg)"} 3 -2024-07-16 19:07:27.29696 2024-07-17 06:59:56.949348 d0fff42b-3bec-4df9-bc04-82cb5c2171c5 {"md5": "36ff5dcc9d0360333888669d4eea90a3", "pid": "1334300054", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Grünberg-Lehnheim"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334300054", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334300054", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334300054", "source": "GND"}], "authorized_access_point": "Lehnheim"} 3 -2024-07-16 19:08:09.514955 2024-07-17 07:00:36.129748 189139f0-14e0-4f06-b56d-275a56091e05 {"md5": "efe3357d0deeb1d693fc0441cd2c2dfd", "pid": "199210713", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Brilon"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7785159-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199210713", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7785159-6", "source": "GND"}], "classification": [{"name": "Bauernhof", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Osterhof in der Gemarkung von Brilon (Brilon)"], "authorized_access_point": "Osterhof (Brilon)"} 3 -2024-07-16 19:08:09.161284 2024-07-17 07:00:37.20186 1d1afa9e-f79c-410e-a8be-86e28f1cc903 {"md5": "d35916d752eba1a9fb7dd5a8268fa9cf", "pid": "199214700", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Synagoge_Detmold&oldid=245430403"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Detmold"}], "related": [{"authorized_access_point": "Lortzingstraße (Detmold)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7785597-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199214700", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7785597-8", "source": "GND"}], "classification": [{"name": "Synagoge", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Synagoge Detmold (Detmold)"} 3 -2024-07-16 19:07:27.212247 2024-07-17 06:59:57.197652 51a379ed-74db-485b-b1d5-05e8f0381c48 {"md5": "281e34304a1fd347ab60c89959c9f398", "pid": "1334302111", "note": [{"label": ["Homepage - https://www.stormarnlexikon.de/rathausreinbek", "Homepage - https://www.reinbeker-geschichten.de/das-rathaus-reinbek"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Reinbek"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334302111", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334302111", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334302111", "source": "GND"}], "classification": [{"name": "Rathaus", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Reinbeker Rathaus (Reinbek)"], "authorized_access_point": "Rathaus Reinbek (Reinbek)"} 3 -2024-07-16 19:07:28.425065 2024-07-17 06:59:53.024792 8a990c84-8ce1-4e7b-8f31-43b929c0fda1 {"md5": "7ab27b6c97d94ede6db740741684cc81", "pid": "1333582501", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Tolla&oldid=239496022"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333582501", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333582501", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333582501", "source": "GND"}], "variant_access_point": ["Todda"], "authorized_access_point": "Tolla"} 3 -2024-07-16 19:07:28.337451 2024-07-17 06:59:53.255838 44b2cd83-2a58-40b6-9489-403e6cc67bef {"md5": "14ab70c5914175d95a1b9adc8dcc13ca", "pid": "1333660758", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Frielinghausen_(Meschede)&oldid=182076348"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Meschede"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333660758", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333660758", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333660758", "source": "GND"}], "variant_access_point": ["Frielinghausen (Meschede)"], "authorized_access_point": "Meschede-Frielinghausen"} 3 -2024-07-16 19:07:28.247286 2024-07-17 06:59:53.550958 114a4d75-a0d1-46ea-9128-1f2ff0d10f50 {"md5": "22db906d622745022d339a39484414ea", "pid": "1333989954", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Ignalin_(Lidzbark_Warmi%C5%84ski)&oldid=203537377"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Reimerswalde"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333989954", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333989954", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333989954", "source": "GND"}], "variant_access_point": ["Lidzbark Warmiński-Ignalin", "Ignalin (Lidzbark Warmiński)", "Reimerswalde"], "authorized_access_point": "Ignalin"} 3 -2024-07-16 19:07:28.154908 2024-07-17 06:59:53.840844 cf1bcb1b-574f-45e0-80ac-7194911c25d3 {"md5": "be2bcff8b1dadbc71be419ac9d1e9f2c", "pid": "1334001529", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Ignalin_(Lidzbark_Warmi%C5%84ski)&oldid=203537377"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Ignalin"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334001529", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334001529", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334001529", "source": "GND"}], "authorized_access_point": "Reimerswalde"} 3 -2024-07-16 19:07:28.080506 2024-07-17 06:59:54.121675 c713bb13-b788-4574-a7fa-aee8e73cd466 {"md5": "a1e762419955a8510a845848591d91b4", "pid": "1334011079", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Radziejewo"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334011079", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334011079", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334011079", "source": "GND"}], "authorized_access_point": "Sonnwalde"} 3 -2024-07-16 19:07:27.916182 2024-07-17 06:59:54.711631 3a7fd3fd-0c53-4de3-8892-ff4e775a2b1d {"md5": "2649c150792f0dd2ccc82886e2c031f2", "pid": "1334024804", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Liste_von_Pl%C3%A4tzen_und_Alleen_in_der_Altstadt_von_Regensburg&oldid=246052949", "RI II,4 n. 1657, in: Regesta Imperii Online - http://www.regesta-imperii.de/id/1007-11-01_7_0_2_4_1_343_1657"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Donau"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334024804", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334024804", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334024804", "source": "GND"}], "variant_access_point": ["Brunnleite (Donau)"], "authorized_access_point": "Brunnelaite (Donau)"} 3 -2024-07-16 19:07:27.828225 2024-07-17 06:59:55.011098 c428d14c-64f0-415f-bfb2-befb3aa08f1b {"md5": "b9b943c5900b8542359b1617e58a7712", "pid": "1334027250", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=%C8%98oimo%C8%99&oldid=243040757"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334027250", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334027250", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334027250", "source": "GND"}], "variant_access_point": ["Solymosvár", "Schojmosch", "Schoimosch"], "authorized_access_point": "Şoimoş"} 3 -2024-07-16 19:07:28.002109 2024-07-17 06:59:54.402992 bca0384d-ebe4-47d0-bc90-2cc5b8802415 {"md5": "2ea56fad3356f1d23f9881020374bbea", "pid": "1334011753", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Sonnwalde"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334011753", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334011753", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334011753", "source": "GND"}], "variant_access_point": ["Sonnwalde"], "authorized_access_point": "Radziejewo"} 3 -2024-07-16 19:07:28.89033 2024-07-17 06:59:51.301059 2956c308-3edc-46b8-81a3-b3c4edb56fe5 {"md5": "85424583480f933cc75641a103afe443", "pid": "1333263465", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Altenkunstadt"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333263465", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333263465", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333263465", "source": "GND"}], "variant_access_point": ["Trebitzmühle (Altenkunstadt-Trebitzmühle)"], "authorized_access_point": "Altenkunstadt-Trebitzmühle"} 3 -2024-07-16 19:07:28.806388 2024-07-17 06:59:51.605894 e142a1fb-7380-45a9-8a91-4d079ddbafb3 {"md5": "b59a49600cf4c5f325d85ef779412518", "pid": "1333315902", "note": [{"label": ["GeoNames - https://www.geonames.org/618476/burlanesti.html", "Wikipedia - https://ro.wikipedia.org/w/index.php?title=Burl%C4%83ne%C8%99ti,_Edine%C8%9B&oldid=16192546"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333315902", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333315902", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333315902", "source": "GND"}], "variant_access_point": ["Burlaneshti", "Burlaneshty"], "authorized_access_point": "Burlăneşti"} 3 -2024-07-16 19:07:28.642535 2024-07-17 06:59:52.164132 d674d94a-8ef2-4632-947e-2b563eb7b744 {"md5": "8fdc58464e622759f96573cf7802e7ac", "pid": "1333333668", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333333668", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333333668", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333333668", "source": "GND"}], "classification": [{"name": "Wüstung", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Teubentz", "Wüstung Teubnitz", "Wüstung Teubentz", "Teubnitz (Ahornthal)"], "authorized_access_point": "Teubnitz"} 3 -2024-07-16 19:07:28.580098 2024-07-17 06:59:52.502295 4abb4421-cf6e-43d9-aceb-6edbed3f77d2 {"md5": "2d2015dca53e90fc08c886fd6ca4cdc7", "pid": "133355513X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Horevun"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133355513X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133355513X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133355513X", "source": "GND"}], "classification": [{"name": "Wüstung", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Wüstung Holzheim"], "authorized_access_point": "Holzheim (Horevun, Wüstung)"} 3 -2024-07-16 19:08:08.193554 2024-07-17 07:00:40.642455 078790d7-e328-4882-a09f-69fa5ba37379 {"md5": "8cc8e8684a5e31997bee41461f7ed319", "pid": "199241562", "note": [{"label": ["onlinestreet.de - https://onlinestreet.de/strassen/Gl%C3%BCckaufstra%C3%9Fe.Castrop-Rauxel.84305.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Castrop-Rauxel"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7788729-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199241562", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7788729-3", "source": "GND"}], "classification": [{"name": "Straße", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Glückaufstraße (Castrop-Rauxel)"} 3 -2024-07-16 19:07:29.800666 2024-07-17 06:59:47.924142 3e4c5fe1-331d-4036-8223-1418f562320e {"md5": "5e5edae349e97fcf8e73ba5e185328d0", "pid": "1332742351", "note": [{"label": ["RIplus Regg. Bamberg n. 51, in: Regesta Imperii Online - http://www.regesta-imperii.de/id/f8a73e64-64db-4c07-8d84-284a227be527"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332742351", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332742351", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332742351", "source": "GND"}], "authorized_access_point": "Glehuntra"} 3 -2024-07-16 19:07:29.719538 2024-07-17 06:59:48.237018 9ef2cc37-61c8-46c1-ac04-7eecb8471b07 {"md5": "0b637672c570fc3e58b9dba5d3489b62", "pid": "1332747108", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Nagoldgau&oldid=215319373"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332747108", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332747108", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332747108", "source": "GND"}], "variant_access_point": ["Nagoldgouw", "Nagaltgouwe"], "authorized_access_point": "Nagoldgau"} 3 -2024-07-16 19:07:29.648684 2024-07-17 06:59:48.552601 0db204de-80b3-4d5d-a1b5-5e01d892b7a6 {"md5": "a81b60275126d56a112f85fe8becedf2", "pid": "1332749054", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=S%C3%BClchgau&oldid=208578053"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332749054", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332749054", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332749054", "source": "GND"}], "variant_access_point": ["Sülchengau", "Sulihgeiuua", "Sulichkewe", "Sülichgau"], "authorized_access_point": "Sülchgau"} 3 -2024-07-16 19:07:29.598129 2024-07-17 06:59:48.803333 94fc5740-1d9c-4ed1-8352-4c2dd781da6a {"md5": "9c09af1d515fe9d79e6afe86701b2496", "pid": "1332755666", "note": [{"label": ["RI II,4 n. 1653, in: Regesta Imperii Online - http://www.regesta-imperii.de/id/1007-11-01_3_0_2_4_1_339_1653"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332755666", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332755666", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332755666", "source": "GND"}], "authorized_access_point": "Durihin"} 3 -2024-07-16 19:07:29.421327 2024-07-17 06:59:49.416705 515cb5c9-848d-40cb-9eeb-892716f91a2e {"md5": "6f226e6b7dc429639a6d536b50880ab7", "pid": "1332769349", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Krylos&oldid=244798100", "Geonames - http://www.geonames.org/703893/krylos.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332769349", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332769349", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332769349", "source": "GND"}], "variant_access_point": ["Krilos", "Kryłos"], "authorized_access_point": "Krylos"} 3 -2024-07-16 19:07:29.337051 2024-07-17 06:59:49.710423 fad91eeb-1408-407f-b029-b6b849824f2f {"md5": "d3e7906d7c4e3577f445d72b51ac234b", "pid": "1332858198", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Beaumont_(Yonne)&oldid=190458726"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Departement Yonne"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332858198", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332858198", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332858198", "source": "GND"}], "authorized_access_point": "Beaumont (Departement Yonne)"} 3 -2024-07-16 19:07:29.253898 2024-07-17 06:59:50.014491 9c9c977e-1e94-4498-a8e8-13a2f417b282 {"md5": "62c63579ff76d5da0a35e65236f682ac", "pid": "1332874568", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Thala_(Tunesien)&oldid=244904813"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332874568", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332874568", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332874568", "source": "GND"}], "variant_access_point": ["Talah"], "authorized_access_point": "Thala"} 3 -2024-07-16 19:08:08.049469 2024-07-17 07:00:41.229407 3d872331-39a0-4dac-b859-b68ecb0438b1 {"md5": "a6b290431180973b95d990280e4b507c", "pid": "199244731", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Detmold"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7789108-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199244731", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7789108-9", "source": "GND"}], "classification": [{"name": "Straße", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Freiligrathstraße (Detmold)"} 3 -2024-07-16 19:08:07.535421 2024-07-17 07:00:43.313 4b4bd4be-f0f3-4557-96ef-db2f66911cbe {"md5": "a2fb6a47a682d321076a1e287a262562", "pid": "199252149", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7789992-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199252149", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7789992-1", "source": "GND"}], "classification": [{"name": "Backsteinbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Bürgerhaus", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Bönersches Haus (Coesfeld)", "Münsterstraße 37 (Coesfeld)"], "authorized_access_point": "Haus Brincks (Coesfeld)"} 3 -2024-07-16 19:07:30.666171 2024-07-17 06:59:44.75933 fbe99c5d-ef9b-4369-8df9-9220551bde07 {"md5": "5feb7b91cf1dd3213443e1db1a421cb3", "pid": "1332353436", "note": [{"label": ["GeoNames - https://www.geonames.org/3181856/borello.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332353436", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332353436", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332353436", "source": "GND"}], "authorized_access_point": "Borrello"} 3 -2024-07-16 19:07:30.499792 2024-07-17 06:59:45.39704 b50e3c4e-a6b4-47c7-a898-e6fa5250dd48 {"md5": "6e8b47dfacd661122b4773ab6e60b5ce", "pid": "1332669689", "note": [{"label": ["GeoNames - https://www.geonames.org/2657658/adwick-le-street.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Doncaster"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332669689", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332669689", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332669689", "source": "GND"}], "variant_access_point": ["Doncaster- Adwick le Street"], "authorized_access_point": "Adwick le Street"} 3 -2024-07-16 19:07:30.410458 2024-07-17 06:59:45.690155 0f78c541-972e-4c9d-a922-6285634e6e01 {"md5": "242142aae08ff0c92c14d6cc537c35fe", "pid": "1332670482", "note": [{"label": ["GeoNames - https://www.geonames.org/12195581/brackmills.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Northampton"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332670482", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332670482", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332670482", "source": "GND"}], "variant_access_point": ["Northampton-Brackmills"], "authorized_access_point": "Brackmills"} 3 -2024-07-16 19:07:30.320895 2024-07-17 06:59:45.925868 a7528196-fa71-4b84-a6f7-9b1f8da4921a {"md5": "cad2266fe4ca451ac816425ca3644bdc", "pid": "1332731430", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Monte_San_Primo&oldid=229134400"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Tambogruppe"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332731430", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332731430", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332731430", "source": "GND"}], "classification": [{"name": "Berg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["San Primo (Berg)"], "authorized_access_point": "Monte San Primo"} 3 -2024-07-16 19:07:30.234889 2024-07-17 06:59:46.287785 cf9fd9cb-cca6-4e37-8def-a843aa46bc4a {"md5": "eb3454ac083a84966b303db7115fe82b", "pid": "1332732577", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Kelsgau&oldid=241651452"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332732577", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332732577", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332732577", "source": "GND"}], "variant_access_point": ["Chelesgau"], "authorized_access_point": "Kelsgau"} 3 -2024-07-16 19:07:30.13403 2024-07-17 06:59:46.601192 7a2d3954-ca22-42c3-8709-01a9df8194a0 {"md5": "5ccd484acfa55fe5f40f96f64daf042a", "pid": "1332733751", "note": [{"label": ["RI In. 598, in: Regesta Imperii Online - http://www.regesta-imperii.de/id/0815-12-03_1_0_1_1_0_1483_598"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332733751", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332733751", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332733751", "source": "GND"}], "authorized_access_point": "Donaugau"} 3 -2024-07-16 19:07:30.059649 2024-07-17 06:59:46.931729 6a3923ad-9898-49d5-80a5-408d20e8556d {"md5": "7b72f70a14e2dc30ceff0fdccbd731d3", "pid": "133273457X", "note": [{"label": ["RI II,4 n. 1841, in: Regesta Imperii Online - http://www.regesta-imperii.de/id/1014-06-21_1_0_2_4_1_622_1841"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133273457X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133273457X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133273457X", "source": "GND"}], "authorized_access_point": "Mattiggau"} 3 -2024-07-16 19:07:31.242112 2024-07-17 06:59:42.672464 95647070-c5c4-4dd0-b63c-9fd8d7ad9a16 {"md5": "5e41ecffadf62773f4430525ed15df07", "pid": "1331602718", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Kotor_Varo%C5%A1&oldid=246161593"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Kotor Varoš"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331602718", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331602718", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331602718", "source": "GND"}], "authorized_access_point": "Borci (Kotor Varoš)"} 3 -2024-07-16 19:07:31.163283 2024-07-17 06:59:42.949929 84789dd7-5451-48a3-ac2b-5eda91795685 {"md5": "7bb8d6b00d05923fefb5ac90e458401e", "pid": "1331604346", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Borci (Kotor Varoš)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331604346", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331604346", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331604346", "source": "GND"}], "classification": [{"name": "Kirchenbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Nikolauskirche (Borci, Kotor Varoš)"], "authorized_access_point": "Crkva Svetog Nikole (Borci, Kotor Varoš)"} 3 -2024-07-16 19:07:31.074757 2024-07-17 06:59:43.228874 7e724438-1b66-4979-9310-418b90a80636 {"md5": "2eeb253d743d2d16bad5b5ade7f6e5ce", "pid": "1331609186", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Ba%C5%A1%C4%8Dar%C5%A1ija&oldid=243745789"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Sarajevo"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331609186", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331609186", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331609186", "source": "GND"}], "classification": [{"name": "Platz", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Hauptmarkt (Sarajevo)"], "authorized_access_point": "Baščaršija (Sarajevo)"} 3 -2024-07-16 19:07:30.977527 2024-07-17 06:59:43.508498 73a96b39-9e13-4e10-9d09-ed8467bceb17 {"md5": "676cfbe467c17e74b951e73946954a6e", "pid": "1331729661", "note": [{"label": ["Homepage - https://europa-viertel-rheine.de/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Rheine"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331729661", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331729661", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331729661", "source": "GND"}], "classification": [{"name": "Wohngebiet", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Europa-Viertel (Rheine)", "Europaviertel (Rheine)", "EuVie (Rheine)"], "authorized_access_point": "Europa-Viertel am Waldhügel (Rheine)"} 3 -2024-07-16 19:08:06.815631 2024-07-17 07:00:46.065821 d9d1d6e6-b9d0-4331-913f-e86e732dacec {"md5": "2c4d7958800a3f0edbf18b1f503b6f98", "pid": "943882346", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Landkreis Borna"}, {"authorized_access_point": "Landkreis Geithain"}, {"authorized_access_point": "Landkreis Leipzig"}, {"authorized_access_point": "Landkreis Leipzig"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4370529-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)943882346", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4370529-7", "source": "GND"}], "classification": [{"name": "Landkreis", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Leipziger Land (Kreis)"], "authorized_access_point": "Landkreis Leipziger Land"} 3 -2024-07-16 19:07:31.350823 2024-07-17 06:59:42.393313 ef6972db-8e07-46a7-979f-5b440fa203eb {"md5": "cdb110e283439e9856ad881100f43af4", "pid": "1331601630", "note": [{"label": ["GeoNames - https://www.geonames.org/763600/nowogrod.html", "Wikipedia - https://pl.wikipedia.org/w/index.php?title=Nowogr%C3%B3d&oldid=72647619"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Łomża (Powiat)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331601630", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331601630", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331601630", "source": "GND"}], "authorized_access_point": "Nowogród"} 3 -2024-07-16 19:08:06.024397 2024-07-17 07:00:49.394916 45c52c8b-87af-4bb5-98fe-52357670a900 {"md5": "edd1976aed14d0f136f654efa96018a1", "pid": "946723729", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Leutzsch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4400402-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)946723729", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4400402-3", "source": "GND"}], "variant_access_point": ["Leutzsch (Leipzig)"], "authorized_access_point": "Leipzig-Leutzsch"} 3 -2024-07-16 19:07:31.897188 2024-07-17 06:59:40.180519 24cf88c1-56a6-4478-8a5d-f9c8f59bcdab {"md5": "cc845d165f6e83377eaaf7a29441bb2e", "pid": "1330866738", "note": [{"label": ["GeoNames - https://www.geonames.org/462471/zinyaki.html", "Wikipedia - https://ru.wikipedia.org/w/index.php?oldid=133645030"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Oblast Nischni Nowgorod"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330866738", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330866738", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330866738", "source": "GND"}], "variant_access_point": ["Zinyaki"], "authorized_access_point": "Zinjaki"} 3 -2024-07-16 19:07:31.814281 2024-07-17 06:59:40.474147 c400cf45-0eda-4fc6-9028-6d37b5c394c7 {"md5": "591a410a29ad2ad03e01e8e6292d20af", "pid": "1330982746", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Forstern (Erding)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330982746", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330982746", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330982746", "source": "GND"}], "variant_access_point": ["Preisendorf (Forstern-Preisendorf)"], "authorized_access_point": "Forstern-Preisendorf"} 3 -2024-07-16 19:07:31.747404 2024-07-17 06:59:40.748853 77beaefa-76be-468e-8d13-3e216fc7656d {"md5": "aabd44e8cbfd9d0a9518ba1f7e37404b", "pid": "1331089271", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Opat%C3%B3wek&oldid=243033262"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Woiwodschaft Großpolen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331089271", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331089271", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331089271", "source": "GND"}], "variant_access_point": ["Opatowek"], "authorized_access_point": "Opatówek"} 3 -2024-07-16 19:07:31.620806 2024-07-17 06:59:41.405224 198f79ce-0446-4ef7-b875-6602855dd7cd {"md5": "c46e5b75026014d47025bc529e02f135", "pid": "1331379539", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Trogen (Landkreis Hof, Saale)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331379539", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331379539", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331379539", "source": "GND"}], "variant_access_point": ["Ullitz (Trogen-Ullitz)"], "authorized_access_point": "Trogen-Ullitz"} 3 -2024-07-16 19:07:31.533154 2024-07-17 06:59:41.728969 5dc8d006-6f20-4720-b5ca-70b620a79f77 {"md5": "09cd4631ab7696df6a2a9e809cc92fbb", "pid": "1331513952", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Wasserburg-Attel"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331513952", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331513952", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331513952", "source": "GND"}], "authorized_access_point": "Attel"} 3 -2024-07-16 19:08:04.551373 2024-07-17 07:00:55.144216 da502b3e-a608-4826-a053-2b5b9aa0521c {"md5": "3bc75211c1b5ac35773c09ba8427a58c", "pid": "94963218X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Rub al-Khali"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4440419-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)94963218X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4440419-0", "source": "GND"}], "variant_access_point": ["Südliche Rub al-Khali"], "authorized_access_point": "Rub al-Khali (Süd)"} 3 -2024-07-16 19:08:05.272753 2024-07-17 07:00:52.426856 d11a5376-8867-43e7-962c-1efa8781d6f2 {"md5": "8bf71b644a77c5dbb6052103e59ca5e6", "pid": "948322292", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=239090285"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Lössnig (Leipzig)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4420041-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)948322292", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4420041-9", "source": "GND"}], "variant_access_point": ["Leipzig-Lössnig", "Lößnig (Leipzig)"], "authorized_access_point": "Leipzig-Lößnig"} 3 -2024-07-16 19:08:03.839541 2024-07-17 07:00:57.567557 85bb630f-3bcd-49c4-8694-f45fffa0a820 {"md5": "cef5b66b30993156bc65fd9898d9cca5", "pid": "950315354", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Stötteritz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4452197-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950315354", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4452197-2", "source": "GND"}], "variant_access_point": ["Stötteritz (Leipzig)"], "authorized_access_point": "Leipzig-Stötteritz"} 3 -2024-07-16 19:07:32.42731 2024-07-17 06:59:38.542899 14834b36-c9d5-434c-9c35-264270a50412 {"md5": "401502d75c9aef12dfa30c1df0bb4334", "pid": "1330290887", "note": [{"label": ["Kreis Stornmarn (Kreisarchiv Stormarn) - https://www.stormarnlexikon.de/fasanenhofjersbek/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Jersbek"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330290887", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330290887", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330290887", "source": "GND"}], "classification": [{"name": "Gaststätte", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Beherbergungsbetrieb", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Zum Fasanenhof (Jersbek)", "Landgasthaus Zum Fasanenhof (Jersbek)", "Landgasthof Zum Fasanenhof (Jersbek)"], "authorized_access_point": "Fasanenhof (Jersbek)"} 3 -2024-07-16 19:07:32.336385 2024-07-17 06:59:38.816768 15dd7a06-9dd7-4500-bb94-744f8dd18bae {"md5": "dbcf29c8c89fe37754c88ec20391b83e", "pid": "1330302877", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Gr%C3%B6nwohld&oldid=244402281#Geschichte", "Kreis Stormarn (Kreisarchiv Stormarn) - https://www.stormarnlexikon.de/drahtmuehlegroenwohld/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Grönwohld"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330302877", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330302877", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330302877", "source": "GND"}], "classification": [{"name": "Papiermühle", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Drahtmühle Grönwohld (Grönwohld)"} 3 -2024-07-16 19:07:32.251221 2024-07-17 06:59:39.091397 76e0cd90-8379-4045-a6ee-309d4f27bf60 {"md5": "e91d4e7a96e470e54624c475b4770e03", "pid": "1330324463", "note": [{"label": ["Kreis Stormarn (Kreisarchiv Stormarn) - https://www.stormarnlexikon.de/wassermuehlenuetschau/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Travenbrück"}, {"authorized_access_point": "Travenbrück-Nütschau"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330324463", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330324463", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330324463", "source": "GND"}], "classification": [{"name": "Wassermühle", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Wassermühle Nütschau (Travenbrück-Nütschau)"], "authorized_access_point": "Wassermühle Nütschau (Travenbrück)"} 3 -2024-07-16 19:07:32.167031 2024-07-17 06:59:39.394419 7b24f290-d484-4d76-a350-cf41ab059f20 {"md5": "d5490254082cc8cd0c5fff0bb7925b7b", "pid": "1330428420", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Warschauer_Ghetto-Ehrenmal&oldid=211224290"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Warschau"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330428420", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330428420", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330428420", "source": "GND"}], "classification": [{"name": "Denkmal", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Warschauer Ghetto-Ehrenmal (Warschau)", "Pomnik Bohaterów Getta (Warschau)"], "authorized_access_point": "Denkmal der Helden des Ghettos (Warschau)"} 3 -2024-07-16 19:08:03.128878 2024-07-17 07:00:59.840262 d3d8dca3-622e-4631-8cc0-ff36261e0792 {"md5": "3e9a24157d498d879317d60bbe6c894b", "pid": "950339407", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Großzschocher"}, {"authorized_access_point": "Großzschocher-Windorf"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4452517-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950339407", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4452517-5", "source": "GND"}], "variant_access_point": ["Großzschocher (Leipzig)"], "authorized_access_point": "Leipzig-Großzschocher"} 3 -2024-07-16 19:07:33.058612 2024-07-17 06:59:36.105899 01be8066-a90f-4bbc-954b-fb21007e5fd1 {"md5": "be5cfb151f26783eeb1cf32dd58b032e", "pid": "1299383890", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=230671556"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Neu-Mockau"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1299383890", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1299383890", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1299383890", "source": "GND"}], "variant_access_point": ["Mockau-Süd (Leipzig)"], "authorized_access_point": "Leipzig-Mockau-Süd"} 3 -2024-07-16 19:07:32.966964 2024-07-17 06:59:36.405588 4aaaf9f6-e017-47f9-8bd0-f4b598478f83 {"md5": "f6aec753d4484e8a89b208fd6f092d22", "pid": "1300397128", "note": [{"label": ["Heimatkreis Oststernberg e.V. (Hrsg.): Oststernberger Heimatbrief 2/2013 - https://oststernberg.de/wp-content/uploads/2016/02/Heimatbrief-2-2013.pdf"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Kreis Oststernberg"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1300397128", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1300397128", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1300397128", "source": "GND"}], "authorized_access_point": "Lindow (Kreis Oststernberg)"} 3 -2024-07-16 19:07:32.879183 2024-07-17 06:59:36.684324 c6f451cf-4290-4ccc-82b1-01c13035d10e {"md5": "7d4035e63e8a60fb7db46cedc2cfd4e9", "pid": "1302571524", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Pößneck"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1302571524", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1302571524", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1302571524", "source": "GND"}], "classification": [{"name": "Straße", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Schulstraße (Pößneck)"], "authorized_access_point": "Straubelstraße (Pößneck)"} 3 -2024-07-16 19:07:32.807773 2024-07-17 06:59:37.019252 831bbcf8-5014-48d0-9425-c8538e2761be {"md5": "616f3f9d464e32e89c6b90ceebcdcc59", "pid": "1314596373", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Mitwitz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1314596373", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1314596373", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1314596373", "source": "GND"}], "classification": [{"name": "Schloss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Oberes Schloss (Mitwitz)"} 3 -2024-07-16 19:07:32.756154 2024-07-17 06:59:37.327646 3d41b07a-5bdf-4f18-8df0-541c174b6a7c {"md5": "e01dc1cc1a65433a11e8ca0b1b4a19e9", "pid": "1316359042", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1316359042", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1316359042", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1316359042", "source": "GND"}], "variant_access_point": ["Smolotel"], "authorized_access_point": "Smolotely"} 3 -2024-07-16 19:08:02.728241 2024-07-17 07:01:01.310534 f9cfb4e5-b860-4c27-9182-b47d17295bfe {"md5": "9edf4387d75f29aa8906f155a282a420", "pid": "95135793X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Altmühltal"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4467681-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)95135793X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4467681-5", "source": "GND"}], "classification": [{"name": "Tal", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Oberes Altmühltal", "Obere Altmühl (Tal)"], "authorized_access_point": "Obere-Altmühl-Tal"} 3 -2024-07-16 19:08:02.392716 2024-07-17 07:01:02.445864 a2217745-473e-4b27-b588-a5b4c5aede42 {"md5": "670b201de7852d5f504e87ffa9428a7f", "pid": "951677268", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Thekla"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4473338-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)951677268", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4473338-0", "source": "GND"}], "variant_access_point": ["Thekla (Leipzig)"], "authorized_access_point": "Leipzig-Thekla"} 3 -2024-07-16 19:07:32.702362 2024-07-17 06:59:37.606165 de837518-8719-497a-a41c-fe3968a46952 {"md5": "66eda11c5443a102146a33078dd28a2a", "pid": "1329430875", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Merville_(Nord)&oldid=246093496", "GeoNames - https://www.geonames.org/6438365/merville.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Departement Nord"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1329430875", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1329430875", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1329430875", "source": "GND"}], "authorized_access_point": "Merville (Departement Nord)"} 3 -2024-07-16 19:08:01.729138 2024-07-17 07:01:05.452088 af84e843-fcb1-4c92-8d98-3de3d281e026 {"md5": "ea61d2e9f6cf30f07f5bad3cf209a678", "pid": "955495768", "note": [{"label": ["Homepage - http://www.rabenstein.gv.at"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4527754-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)955495768", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4527754-0", "source": "GND"}], "variant_access_point": ["Rabenstein (Pielach)", "Marktgemeinde Rabenstein an der Pielach"], "authorized_access_point": "Rabenstein an der Pielach"} 3 -2024-07-16 19:07:33.646866 2024-07-17 06:59:33.820748 fc7b8d55-bea2-4bc7-be09-5bb5d5fa1c55 {"md5": "506a6a108734be4e534ed05f3653c6ec", "pid": "1275159915", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Kreis Kretinga"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1275159915", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1275159915", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1275159915", "source": "GND"}], "classification": [{"name": "Gräberfeld", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Anduln"], "authorized_access_point": "Ėgliškiai-Anduliai"} 3 -2024-07-16 19:07:33.559036 2024-07-17 06:59:34.345075 11db1d59-8424-41ee-bfce-d20200105c53 {"md5": "713704a0fea2512485777fdb506760bf", "pid": "1282328816", "note": [{"label": ["GOV - http://gov.genealogy.net/item/show/GAHORFJO54PK"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Fehmarn"}, {"authorized_access_point": "Gahlendorf"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1282328816", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1282328816", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1282328816", "source": "GND"}], "authorized_access_point": "Fehmarn-Gahlendorf"} 3 -2024-07-16 19:07:33.383154 2024-07-17 06:59:34.942255 8fa654ce-8c70-4f09-8807-581eb9750dcc {"md5": "2225e4fe711498d30d44d083cf361c81", "pid": "1286132703", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=225307470"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Stünz"}, {"authorized_access_point": "Leipzig-Sellerhausen-Stünz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1286132703", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1286132703", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1286132703", "source": "GND"}], "variant_access_point": ["Stünz (Leipzig)"], "authorized_access_point": "Leipzig-Stünz"} 3 -2024-07-16 19:07:33.300627 2024-07-17 06:59:35.171078 2b78c386-3f90-48c4-83d1-f1251f0340a9 {"md5": "190249772f56f085481c52864e4543f3", "pid": "1287837611", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=229557818"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Bollingstedt"}, {"authorized_access_point": "Gammellund"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1287837611", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1287837611", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1287837611", "source": "GND"}], "authorized_access_point": "Bollingstedt-Gammellund"} 3 -2024-07-16 19:08:00.921645 2024-07-17 07:01:08.314087 fb3d5c1a-a595-433c-88f9-119738c7154b {"md5": "23f2de3394c0d58856b0e17593bef545", "pid": "957565445", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Mockau"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4561624-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)957565445", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4561624-3", "source": "GND"}], "variant_access_point": ["Mockau (Leipzig)"], "authorized_access_point": "Leipzig-Mockau"} 3 -2024-07-16 19:08:00.218128 2024-07-17 07:01:10.987348 614cafdf-1b66-4391-af93-b653bb17e786 {"md5": "0e8d2b039230e5c7d7562331a10202f6", "pid": "959934464", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Ostentrop&oldid=243213300"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Finnentrop"}, {"authorized_access_point": "Ostentrop"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4608675-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)959934464", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4608675-4", "source": "GND"}], "authorized_access_point": "Finnentrop-Ostentrop"} 3 -2024-07-16 19:07:34.7345 2024-07-17 06:59:29.753247 61a593b7-b48d-423c-87bb-a9d27bf0e904 {"md5": "8e07b30946443951da1f6ec76db2d7f0", "pid": "1235360709", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Arafurasee"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1235360709", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1235360709", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1235360709", "source": "GND"}], "classification": [{"name": "Insel", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Croker Island"} 3 -2024-07-16 19:07:34.646462 2024-07-17 06:59:30.017949 543da3da-8b9a-4d1e-bb1d-efb0be38abf1 {"md5": "c79f20673f8680f4c5a14f5275a392cb", "pid": "123657754X", "note": [{"label": ["Internet - https://muzeum.zwolen.pl/wystawa/zwolen-i-ziemia-zwolenska-na-pocztowce/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Woiwodschaft Masowien"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/123657754X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)123657754X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)123657754X", "source": "GND"}], "variant_access_point": ["Zwoleń (ziemia)", "Ziemia zwoleńska"], "authorized_access_point": "Zwoleń (Region)"} 3 -2024-07-16 19:07:34.559204 2024-07-17 06:59:30.279388 4da26aac-4070-4e42-936e-dc51ac9e7596 {"md5": "11ba3c3c783e50706a2d0ed3ad1884e9", "pid": "1236792211", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Polen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1236792211", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1236792211", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1236792211", "source": "GND"}], "classification": [{"name": "Synklinale", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Lublin-Synklinale"} 3 -2024-07-16 19:07:34.479693 2024-07-17 06:59:30.60147 c6faced1-4718-4001-9b14-c5eb12110d04 {"md5": "0ca397c0a83e8f2d49a77fbad6f9fc6b", "pid": "1237279453", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Woiwodschaft Masowien"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1237279453", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1237279453", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1237279453", "source": "GND"}], "variant_access_point": ["Węgrów (ziemia)", "Ziemia węgrowska"], "authorized_access_point": "Węgrów (Region)"} 3 -2024-07-16 19:07:34.392128 2024-07-17 06:59:30.866322 028f3fdb-176d-4628-a908-e2775781d469 {"md5": "66b0b090888555f4652536fdf8f3c5cb", "pid": "1237774101", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Woiwodschaft Lebus"}, {"authorized_access_point": "Powiat Żagański"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1237774101", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1237774101", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1237774101", "source": "GND"}], "variant_access_point": ["Szprotawa (ziemia)", "Ziemia szprotawska", "Sprottauer Land", "Sprottau (Land)"], "authorized_access_point": "Szprotawa (Region)"} 3 -2024-07-16 19:07:34.306203 2024-07-17 06:59:31.206521 b7d86ba8-8563-4efc-9953-1850ccb3dbfa {"md5": "7cd6ebddfdc4e4cd75912d8b563bead7", "pid": "1237828171", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Woiwodschaft Großpolen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1237828171", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1237828171", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1237828171", "source": "GND"}], "variant_access_point": ["Ostrzeszów (ziemia)", "Ostrzeszów (Region)", "Ostrzeszower Land", "Schildberger Land", "Schildberg (Region)"], "authorized_access_point": "Ziemia Ostrzeszowska"} 3 -2024-07-16 19:07:34.131666 2024-07-17 06:59:31.827916 098b90f0-ef59-42b5-93b7-7c6d00ed01db {"md5": "197ce59d47c428b1c9d9e737370e815d", "pid": "1239463502", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1239463502", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1239463502", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1239463502", "source": "GND"}], "classification": [{"name": "Imaginärer Schauplatz", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Motiv", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Carte du Tendre", "Carte du pays de Tendre"], "authorized_access_point": "Carte de Tendre"} 3 -2024-07-16 19:07:34.21817 2024-07-17 06:59:31.514104 7fdee1aa-2104-49e9-a8fe-32d34a50f07d {"md5": "ec8f3716e1faccb97f7afd084742fd0b", "pid": "1237860342", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Woiwodschaft Vorkarpaten"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1237860342", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1237860342", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1237860342", "source": "GND"}], "variant_access_point": ["Kolbuszowa (ziemia)", "Kolbuszowa (Land)", "Ziemia kolbuszowska"], "authorized_access_point": "Kolbuszowa (Region)"} 3 -2024-07-16 19:07:59.676803 2024-07-17 07:01:13.052255 4c218f41-54a9-4933-97f5-f0b0bc9d8c76 {"md5": "681ecbfe5d99018e56bcd804b6dfe3bf", "pid": "961594497", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Lindenthal_(Leipzig)&oldid=225715822"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Lindenthal (Leipzig)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10018863-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)961594497", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)10018863-1", "source": "GND"}], "variant_access_point": ["Lindenthal (Leipzig)"], "authorized_access_point": "Leipzig-Lindenthal"} 3 -2024-07-16 19:07:35.205179 2024-07-17 06:59:28.002799 7c613f2f-54a0-49e0-bc81-83f2670942db {"md5": "c0fdf9edc3d55d42e4ce3e2642be4b03", "pid": "122219953X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Molėtai"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/122219953X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)122219953X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)122219953X", "source": "GND"}], "variant_access_point": ["Balinkai", "Balnikų", "Balʹninkay", "Bolʹniki", "Balʹninkaj", "Бальнинкай"], "authorized_access_point": "Balninkai"} 3 -2024-07-16 19:07:35.116791 2024-07-17 06:59:28.281986 827911a1-8334-45bf-944b-153ea1612449 {"md5": "b73a01e1cc93e22aae01c72564e5a10a", "pid": "122413754X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Turmh%C3%BCgelburg_Woja&oldid=206688094"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Rehau-Woja"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/122413754X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)122413754X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)122413754X", "source": "GND"}], "classification": [{"name": "Burg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Motte", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Turmhügel Woja (Rehau-Woja)", "Burg Woja (Rehau-Woja)"], "authorized_access_point": "Turmhügelburg Woja (Rehau-Woja)"} 3 -2024-07-16 19:07:34.940991 2024-07-17 06:59:28.903774 c5673565-8267-4708-9c89-a931a3431c8a {"md5": "1631d08665b41dddcdb90b2f1b835898", "pid": "1225876354", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Liste_von_Schillerdenkm%C3%A4lern&oldid=201898785"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Marbach am Neckar"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1225876354", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1225876354", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1225876354", "source": "GND"}], "classification": [{"name": "Denkmal", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Schiller-Denkmal (Marbach am Neckar)"} 3 -2024-07-16 19:07:34.861483 2024-07-17 06:59:29.161842 6bc4066b-2d0f-4345-9ab3-ba340487a7ac {"md5": "ce71c6bc1345c7da1e731559884d0b21", "pid": "1232243698", "note": [{"label": ["Geonames - http://www.geonames.org/2932852/ehrenberg.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Ilmenau"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1232243698", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1232243698", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1232243698", "source": "GND"}], "classification": [{"name": "Berg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Ehrenberg (Berg)"} 3 -2024-07-16 19:07:59.507113 2024-07-17 07:01:13.650606 e4450366-1ded-40b2-8b59-be88d731bde6 {"md5": "9a6e166c840fd5e64d2efb6e6e9479ca", "pid": "962048879", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=161519644"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Jagodina"}, {"authorized_access_point": "Despotovac"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4644341-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)962048879", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4644341-1", "source": "GND"}], "classification": [{"name": "Klosteranlage", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Befestigung", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Manasiya", "Klosteranlage Manasija", "Klosteranlage Resava"], "authorized_access_point": "Manasija"} 3 -2024-07-16 19:07:58.803171 2024-07-17 07:01:16.481893 873fb2c2-1f46-4a70-b651-36de04c22037 {"md5": "aa5855e051d30f17856469f28a682594", "pid": "964991608", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4696241-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)964991608", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4696241-4", "source": "GND"}], "variant_access_point": ["Ponts-de-Martel, Les", "LesPonts-de-Martel", "Ponts-de-Martel"], "authorized_access_point": "Les Ponts-de-Martel"} 3 -2024-07-16 19:07:58.733254 2024-07-17 07:01:16.739245 ca331ee9-4fc3-468b-8d9d-27087589ad66 {"md5": "1ef96084966b91e680fe7828702a0ab4", "pid": "96563860X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4708270-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)96563860X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4708270-7", "source": "GND"}], "variant_access_point": ["Äußere Südvorstadt (Leipzig)"], "authorized_access_point": "Leipzig- Äußere Südvorstadt"} 3 -2024-07-16 19:07:36.060209 2024-07-17 06:59:24.779491 4b78a516-9f94-4c70-9b69-76ad552e6ed9 {"md5": "6708cb6c741ee709f2d174aaf3b87edf", "pid": "1190333082", "note": [{"label": ["Wikipedia:Stand:11.07.2019 - https://de.wikipedia.org/wiki/Kleine_Spree"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1190333082", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1190333082", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1190333082", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Mała Sprjewja"], "authorized_access_point": "Kleine Spree"} 3 -2024-07-16 19:07:35.971988 2024-07-17 06:59:25.031545 09a525fc-ae3f-4025-85c8-e2550ef67787 {"md5": "aedc18ab9f63ac43d4ee9702621a8e10", "pid": "1190333392", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1190333392", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1190333392", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1190333392", "source": "GND"}], "variant_access_point": ["Kleine Spree (Fluss) (Region)"], "authorized_access_point": "Kleine-Spree-Gebiet"} 3 -2024-07-16 19:07:35.847198 2024-07-17 06:59:25.620664 f3b6b7df-f7b3-4b98-b6bc-fc0559ff4c5f {"md5": "f652cdeac0fdca7bd0fbe86be96ba2f2", "pid": "1192399013", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1192399013", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1192399013", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1192399013", "source": "GND"}], "variant_access_point": ["Repser Ländchen"], "authorized_access_point": "Rupea (Region)"} 3 -2024-07-16 19:07:35.781289 2024-07-17 06:59:25.930559 3a94fd63-b397-4385-8a13-0086d8d1c27e {"md5": "1b71a20eb5c72ee563d918f6b2256d23", "pid": "1197938001", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Woiwodschaft Vorkarpaten"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1197938001", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1197938001", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1197938001", "source": "GND"}], "variant_access_point": ["Jarocin (ziemia)", "Jarocin (okolice)", "Jarocin (Region)"], "authorized_access_point": "Ziemia Jarocinska"} 3 -2024-07-16 19:07:35.700557 2024-07-17 06:59:26.228131 4e5cfa44-2465-4ddb-8b4c-39087ae37707 {"md5": "84e257911751c505d92d05afa8fe40a3", "pid": "1203261837", "note": [{"label": ["GeoNames - http://geotree.geonames.org/598959/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Kreis Panevėžys"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1203261837", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1203261837", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1203261837", "source": "GND"}], "authorized_access_point": "Išlaužai"} 3 -2024-07-16 19:07:35.616076 2024-07-17 06:59:26.529682 647edf80-9185-4c20-971a-4aeef7752fc3 {"md5": "8c88e33deed96914599d52ac8da3a47e", "pid": "1206005505", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1206005505", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1206005505", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1206005505", "source": "GND"}], "variant_access_point": ["Wagram (Region)"], "authorized_access_point": "Wagram-Gebiet"} 3 -2024-07-16 19:07:35.535472 2024-07-17 06:59:26.834704 e4eac3af-4ba5-42d4-9f89-f7c53c5a79d5 {"md5": "4bdd3217225cfe98ad3106ed74847e5d", "pid": "1208649175", "note": [{"label": ["GeoNames - https://geotree.geonames.org/599832/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Pakruojis (Region)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1208649175", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1208649175", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1208649175", "source": "GND"}], "variant_access_point": ["Dirzhyay (Pakruojis)", "Diržių (Pakruojis)"], "authorized_access_point": "Diržiai (Pakruojis)"} 3 -2024-07-16 19:07:58.674798 2024-07-17 07:01:16.992561 127b00ad-9c74-4631-8386-5cb2181dc858 {"md5": "9b825ad67bf6db7f4637ef0e00c170a1", "pid": "96575877X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Volkmarsdorf"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4710342-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)96575877X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4710342-5", "source": "GND"}], "variant_access_point": ["Volkmarsdorf (Leipzig)"], "authorized_access_point": "Leipzig-Volkmarsdorf"} 3 -2024-07-16 19:07:57.551163 2024-07-17 07:01:21.458405 cb41c511-beba-4164-8903-199ea01e722d {"md5": "08f6593a2cd14ded611afcbd5811ee35", "pid": "972515704", "note": [{"label": ["Homepage - https://www.kirchengemeinde-bochum-wiemelhausen.de/die-melanchthonkirche/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bochum"}, {"authorized_access_point": "Bochum-Wiemelhausen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4799377-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)972515704", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4799377-7", "source": "GND"}], "classification": [{"name": "Kirchenbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Baudenkmal", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Melanchthonkirche (Bochum-Wiemelhausen)"], "authorized_access_point": "Melanchthonkirche (Bochum)"} 3 -2024-07-16 19:07:36.663375 2024-07-17 06:59:22.867272 ffb8af0e-6bc6-45e6-825c-77910195739e {"md5": "48f07b6b7564b5b52782396898f8a8b0", "pid": "1182704948", "note": [{"label": ["unter - https://de.wikipedia.org/wiki/Heringsdorf", "unter - https://de.wikipedia.org/wiki/Bansin"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Heringsdorf-Neu Sallenthin"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1182704948", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1182704948", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1182704948", "source": "GND"}], "authorized_access_point": "Neu Sallenthin"} 3 -2024-07-16 19:07:36.57388 2024-07-17 06:59:23.172701 00765c04-fc3a-47bb-bba7-1cb8b9350ba8 {"md5": "29f05acdbc3bbe795594b59a04ecfec4", "pid": "1182916759", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Trattendorf"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Spremberg-Trattendorf"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1182916759", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1182916759", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1182916759", "source": "GND"}], "variant_access_point": ["Dubrawa"], "authorized_access_point": "Trattendorf"} 3 -2024-07-16 19:07:36.490011 2024-07-17 06:59:23.439092 aecd8d2b-29c2-4f9b-9c8c-d6d9ddb0e7a6 {"md5": "2a6d2a173baa75b80e987cef2ff9fa11", "pid": "1184428727", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Schwerin"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1184428727", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1184428727", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1184428727", "source": "GND"}], "classification": [{"name": "Halbinsel", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Halbinsel Zwang", "Dwang, Halbinsel"], "authorized_access_point": "Halbinsel Dwang"} 3 -2024-07-16 19:07:36.319826 2024-07-17 06:59:23.94778 40e137e8-3db4-4940-8ed0-6acc165672e8 {"md5": "6e3f09f530796cf475090a756c4c7a8e", "pid": "1188738658", "note": [{"label": ["Gemeindebrief der Evangelisch-Lutherischen Kirchengemeinde [Cloppenburg], Nr. 2/08 · Juni bis September 2008, S. 4-7 - http://evangelisch-in-cloppenburg.de/wp-content/uploads/2017/04/08-2-ohne-Kasu.pdf", "Homepage - http://evangelisch-in-cloppenburg.de/schwedenheim-2"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Cloppenburg"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1188738658", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1188738658", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1188738658", "source": "GND"}], "classification": [{"name": "Mehrzweckbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Kindergartenbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Gemeindezentrum", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Gemeindezentrum Schwedenheim (Cloppenburg)"], "authorized_access_point": "Schwedenheim (Cloppenburg)"} 3 -2024-07-16 19:07:56.95285 2024-07-17 07:01:23.54825 8fe403b7-6717-437e-8bbc-05eb3ace284c {"md5": "00a3bb3820a872d955e0e616b8571393", "pid": "97424225X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Amt Haderslev"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4821156-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)97424225X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4821156-4", "source": "GND"}], "variant_access_point": ["Amt Hadersleben (Ost)", "Hadersleben (Amt) (Ost)"], "authorized_access_point": "Amt Haderslev (Ost)"} 3 -2024-07-16 19:07:37.492869 2024-07-17 06:59:20.021121 ab771a40-dd44-42dd-a1ff-e358702c8a71 {"md5": "d4eeb324cc932630969654ba98da8e18", "pid": "1169805140", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Dzūkija"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1169805140", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1169805140", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1169805140", "source": "GND"}], "authorized_access_point": "Dzūkija (West)"} 3 -2024-07-16 19:07:37.405756 2024-07-17 06:59:20.315206 417344ba-943b-4292-a03b-ad3add052c04 {"md5": "906c74fec9c3f35e8985d277d5a760a3", "pid": "1169805167", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Dzūkija"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1169805167", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1169805167", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1169805167", "source": "GND"}], "authorized_access_point": "Dzūkija (Ost)"} 3 -2024-07-16 19:07:37.319625 2024-07-17 06:59:20.600454 33848439-79f9-46c0-ad87-73269a5156dd {"md5": "ab9a1d5ed176a1258bb83a5d5b001ff6", "pid": "1169806686", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Kaunas (Region)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1169806686", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1169806686", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1169806686", "source": "GND"}], "authorized_access_point": "Kaunas (Region, West)"} 3 -2024-07-16 19:07:37.232341 2024-07-17 06:59:20.878445 f9704d21-b911-41f4-82e2-aa34214c9b0c {"md5": "11e82f5a673233917adfbc085373c4b3", "pid": "1169806708", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Kaunas (Region)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1169806708", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1169806708", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1169806708", "source": "GND"}], "authorized_access_point": "Kaunas (Region, Ost)"} 3 -2024-07-16 19:07:37.132535 2024-07-17 06:59:21.173566 f0814748-3870-4a0e-a2c0-9fe520d42e3c {"md5": "5a67d78a7e4eaf06ab90572d8bd270b9", "pid": "1171383401", "note": [{"label": ["Wikipedia: - https://de.wikipedia.org/wiki/R%C5%AF%C5%BEovsk%C3%BD_vrch"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Böhmische Schweiz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1171383401", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1171383401", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1171383401", "source": "GND"}], "classification": [{"name": "Berg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Rosenberg (Böhmische Schweiz : Berg)", "Růžák"], "authorized_access_point": "Růžovský vrch"} 3 -2024-07-16 19:07:37.038206 2024-07-17 06:59:21.450575 51801b64-f684-40b0-85cc-b57edee19001 {"md5": "c463af5e3b560fa49ba57b3077904120", "pid": "1177087480", "note": [{"label": ["Wikipedia: - https://de.wikipedia.org/wiki/Elsterstausee_B%C3%B6sdorf"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1177087480", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1177087480", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1177087480", "source": "GND"}], "classification": [{"name": "Stausee", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Elsterstausee Bösdorf", "Elsterstausee Leipzig-Knauthain", "Stausee Bösdorf"], "authorized_access_point": "Elsterstausee (Leipzig)"} 3 -2024-07-16 19:07:36.962709 2024-07-17 06:59:21.724952 d34ba9c8-d1f5-43b0-9eec-351836059253 {"md5": "215496db4e2d5b02fc24714ddbbd084d", "pid": "1177183811", "note": [{"label": ["Internet - https://www.fietsplatform.nl/uploads/folder_NLFL_DE_2017_download.pdf"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1177183811", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1177183811", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1177183811", "source": "GND"}], "classification": [{"name": "Radwanderweg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Zuidersee-Radweg", "Zuiderzee-Radweg", "Zuiderzeeroute", "Ijsselmeer Radroute"], "authorized_access_point": "Ijsselmeer-Radweg"} 3 -2024-07-16 19:07:56.483857 2024-07-17 07:01:25.340025 547dbc09-be7c-4b81-b87c-4733586a0be3 {"md5": "2e601a7363e5cd6f4cdc9b1df7bf177e", "pid": "979131529", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7522697-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)979131529", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7522697-2", "source": "GND"}], "authorized_access_point": "Echichens"} 3 -2024-07-16 19:07:56.219833 2024-07-17 07:01:26.170066 782bc551-7592-4d15-a20e-0fa19451d8b6 {"md5": "3ef4e3eebd0a0c17c53a5458c9a49c4d", "pid": "985253576", "note": [{"label": ["Internet - http://www.schwante.de/schloesser.htm"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Schwante"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7577686-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)985253576", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7577686-8", "source": "GND"}], "classification": [{"name": "Schloss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Schloss Sommerswalde (Schwante)"} 3 -2024-07-16 19:07:38.068265 2024-07-17 06:59:17.970077 868369aa-2453-444a-9e6a-058630f66c16 {"md5": "66cfad226e7a3edfffa2c95585fd1a15", "pid": "1164527657", "note": [{"label": ["Internet - http://www.comune.sondrio.it/site/home/cosa-devo-fare-per/vivere-arte-e-tempo-libero/articolo1725279.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Maloja"}, {"authorized_access_point": "Sondrio"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1164527657", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1164527657", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1164527657", "source": "GND"}], "classification": [{"name": "Wanderweg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Sentiero Rusca"} 3 -2024-07-16 19:07:37.988499 2024-07-17 06:59:18.264471 71148f5f-342b-4be8-a781-5030d6ee57c2 {"md5": "8229b13b140956ef056ca8be172b3f76", "pid": "1165597586", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Woiwodschaft Lublin"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1165597586", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1165597586", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1165597586", "source": "GND"}], "variant_access_point": ["Radzyń Podlaski (ziemia)", "Radzyń Podlaski (Land)"], "authorized_access_point": "Radzyń Podlaski (Region)"} 3 -2024-07-16 19:07:37.829194 2024-07-17 06:59:18.872574 8480c3d0-339e-44cc-9dfb-4d8f494efea3 {"md5": "8b9b7f13bbaede240b58849170280ed5", "pid": "1166988007", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Neustadt_(Leipzig)&oldid=173318045"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Neustadt (Leipzig)"}, {"authorized_access_point": "Leipzig-Neustadt-Neuschönefeld"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1166988007", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1166988007", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1166988007", "source": "GND"}], "variant_access_point": ["Neustadt (Leipzig)"], "authorized_access_point": "Leipzig-Neustadt"} 3 -2024-07-16 19:07:37.742255 2024-07-17 06:59:19.172844 5e9dd9d1-1d31-4e86-a982-807e2ddf8ef5 {"md5": "6ff873845c939543aa34d3e6aa800f9e", "pid": "1166988325", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Neusch%C3%B6nefeld&oldid=178415670"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Neuschönefeld"}, {"authorized_access_point": "Leipzig-Neustadt-Neuschönefeld"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1166988325", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1166988325", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1166988325", "source": "GND"}], "variant_access_point": ["Neuschönefeld (Leipzig)"], "authorized_access_point": "Leipzig-Neuschönefeld"} 3 -2024-07-16 19:07:37.918561 2024-07-17 06:59:18.55479 2b8e150b-60c6-48a2-a6e1-7c6b281048fc {"md5": "0754fb3b8efa4c523ca99362352c97ef", "pid": "1166098877", "note": [{"label": ["Wikipedia - https://pl.wikipedia.org/wiki/Ziemia_lubawska"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1166098877", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1166098877", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1166098877", "source": "GND"}], "variant_access_point": ["Lubawa (ziemia)", "Ziemia lubawska", "Löbauer Land (Westpreußen)", "Löbau (Westpreußen) (Land)", "Löbau (Westpreußen) (Region)"], "authorized_access_point": "Lubawa (Region)"} 3 -2024-07-16 19:07:56.018223 2024-07-17 07:01:26.770251 0276e108-da6a-44ce-b7ab-8d2b4ac1c012 {"md5": "d7038f26d816eec6706d9d6921f067d6", "pid": "989505952", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=St._Maria_ad_Gradus_(K%C3%B6ln)&oldid=205659895"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Köln"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7617898-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)989505952", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7617898-5", "source": "GND"}], "classification": [{"name": "Basilika", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Sankt Maria ad gradus (Köln)", "Stiftskirche Sankt Maria zu den Stufen (Köln)", "Sankt Mariengraden (Köln)", "Maria zu den Stufen (Köln)", "St. Mariengraden (Köln)", "St. Maria ad gradus (Köln) (Köln)"], "authorized_access_point": "Sankt Maria zu den Stufen (Köln)"} 3 -2024-07-16 19:07:38.788881 2024-07-17 06:59:15.841986 f8214cfb-f6ec-4ada-9e95-bc439d73774c {"md5": "f6d67c1de1aab483c1bf84bddd5476b6", "pid": "1148115242", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Hohenhameln"}, {"authorized_access_point": "Equord"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1148115242", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1148115242", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1148115242", "source": "GND"}], "authorized_access_point": "Hohenhameln-Equord"} 3 -2024-07-16 19:07:38.707321 2024-07-17 06:59:16.137357 3265430c-0370-4752-be08-f952505e224a {"md5": "7161c3af99cd8d02a63769743ade428c", "pid": "1156051029", "note": [{"label": ["1903 erbautes Gewerbehaus; 1978 zu Wohnhaus umgenutzt, soll Überbauung weichen."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Luzern"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1156051029", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1156051029", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1156051029", "source": "GND"}], "classification": [{"name": "Haus", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Industriestrasse 9 (Luzern)"} 3 -2024-07-16 19:07:38.606147 2024-07-17 06:59:16.385536 14666f81-2e73-4b5d-a2e2-bb6688c89d07 {"md5": "4269169561a74fe1a8b5706dec50494e", "pid": "1156658128", "note": [{"label": ["Internet: - https://www.trescher-verlag.de/reisefuehrer/deutschland/paul-gerhardt-weg.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Berlin"}, {"authorized_access_point": "Lübben (Spreewald)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1156658128", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1156658128", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1156658128", "source": "GND"}], "classification": [{"name": "Fernwanderweg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Paul-Gerhardt-Wanderweg"], "authorized_access_point": "Paul-Gerhardt-Weg"} 3 -2024-07-16 19:07:38.430989 2024-07-17 06:59:16.929549 6a8a6b19-faff-4820-b3a5-f3664538657a {"md5": "40f9169b27956bdb15c4d521ef7f15ff", "pid": "1161830820", "note": [{"label": ["Internet - https://www.esterbauer.com/db_detail.php?buecher_code=TDF"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1161830820", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1161830820", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1161830820", "source": "GND"}], "classification": [{"name": "Radwanderweg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Vlaanderen Fietsroute"], "authorized_access_point": "Flandern-Route"} 3 -2024-07-16 20:06:48.455927 2024-07-17 06:57:02.37846 8b97e1d7-5eab-4843-b25a-6e0b7dcca375 {"md5": "0cb52dfd101cc320b6af7b2b4f7edf59", "pid": "00468687X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Norddeutscher Bund"}, {"authorized_access_point": "Deutschland (Gebiet unter Alliierter Besatzung)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2008993-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)00468687X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)2008993-4", "source": "GND"}], "variant_access_point": ["Deutschland (Deutsches Reich)", "Deutsche Sozialistische Republik", "Sozialistische Republik (Deutsches Reich)", "Germanija (Deutsches Reich)", "Germany (Deutsches Reich)", "Allemagne (Deutsches Reich)", "Das Deutsche Reich", "Deutschland (Deutscher Bund, 1871)", "Vokietija", "Deutschland (1871-1945)"], "authorized_access_point": "Deutsches Reich"} 3 -2024-07-16 20:07:26.898293 2024-07-17 06:57:07.26281 2592d6c1-552d-4d87-b62d-6e4e592ac1b2 {"md5": "6ff762a959d30acc5dbd3c1a7a5ed3be", "pid": "040019098", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Spanien (Süd)"}, {"authorized_access_point": "al- Andalus"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4001909-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040019098", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4001909-3", "source": "GND"}], "classification": [{"name": "Andalusier", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Baetica", "Andalucía", "Andalousie", "Andalousia"], "authorized_access_point": "Andalusien"} 3 -2024-07-16 20:07:15.975305 2024-07-17 06:57:10.034096 d2a25ebf-65f6-4b99-8ad7-83cd9800de8d {"md5": "9bbeda6a0ffbb7fffd4c303e0963da19", "pid": "040050440", "note": [{"label": ["Homepage - https://www.bayern.de/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Pfalz-Bayern"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4005044-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040050440", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4005044-0", "source": "GND"}], "classification": [{"name": "Bayern", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Herzogtum Bayern", "Königreich Bayern", "Churbayern", "Bavaria", "Kurfürstentum Bayern", "Kurbayern", "Freistaat Bayern", "Stammesherzogtum Bayern", "Bavarian State", "Bayerischer Staat", "Baiern", "Volksstaat Bayern", "Bavière", "Bayrn", "BY"], "authorized_access_point": "Bayern"} 3 -2024-07-16 19:07:39.284743 2024-07-17 06:59:14.103857 3ef73076-817a-46e7-9f33-b13cb4d37517 {"md5": "ba6fe76846367a6b2fa849411f5bf694", "pid": "113914071X", "note": [{"label": ["Internet - http://www.drei-fluesse-tour.de/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/113914071X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)113914071X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)113914071X", "source": "GND"}], "classification": [{"name": "Radwanderweg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Drei-Flüsse-Tour", "Drei-Flüsse-Radweg", "Drei-Flüsse-Radwanderweg"], "authorized_access_point": "3-Flüsse-Tour"} 3 -2024-07-16 19:07:39.191032 2024-07-17 06:59:14.352172 5515f44e-2bf7-4b5d-8c8e-d0cec64f0797 {"md5": "23c5b2ab45260986a68a660da8f832af", "pid": "1139463888", "note": [{"label": ["Internet - https://www.donau.com/de/donau-niederoesterreich/infos-service/presse-b2b/presse/weitwanderweg-nibelungengau-wandern-am-fluss/b4fcca43e95b082793e09cc66f72d118/?tx_news_pi1%5Bcontroller%5D=News&tx_news_pi1%5Baction%5D=detail"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Sankt Nikola- Sarmingstein"}, {"authorized_access_point": "Emmersdorf an der Donau"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1139463888", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1139463888", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1139463888", "source": "GND"}], "classification": [{"name": "Fernwanderweg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Weitwanderweg Nibelungengau"} 3 -2024-07-16 19:07:39.022984 2024-07-17 06:59:14.953364 d9e4947b-9f3c-409e-801d-7c71e043882a {"md5": "e1be8232aa6a34cc034d5714444e4af0", "pid": "1143154991", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Continental_Divide_Trail"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1143154991", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1143154991", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1143154991", "source": "GND"}], "classification": [{"name": "Fernwanderweg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["CDT (Fernwanderweg)"], "authorized_access_point": "Continental Divide Trail"} 3 -2024-07-16 19:07:38.948917 2024-07-17 06:59:15.233242 e81a308a-bf60-489a-a348-4574219f8fc8 {"md5": "4f9ffd18afe527ca10101bd4419187eb", "pid": "1143714245", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Kurpie&oldid=215616715"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1143714245", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1143714245", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1143714245", "source": "GND"}], "variant_access_point": ["Kurpengau"], "authorized_access_point": "Kurpie (Region)"} 3 -2024-07-16 20:07:36.98045 2024-07-17 06:57:13.804614 8e6b4eac-bbb5-47fc-b6f5-548024b7cebb {"md5": "3eda97aed5f5daa59c073b4e8e389004", "pid": "040118894", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Deutschland (Gebiet unter Alliierter Besatzung)"}, {"authorized_access_point": "Deutschland (Gebiet unter Alliierter Besatzung, Westzonen)"}, {"authorized_access_point": "Deutschland (Gebiet unter Alliierter Besatzung, Vereinigtes Wirtschaftsgebiet)"}, {"authorized_access_point": "Deutschland"}, {"authorized_access_point": "Deutschland (Westliche Länder)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4011889-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040118894", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4011889-7", "source": "GND"}], "variant_access_point": ["Alemanha (Deutschland, Bundesrepublik)", "Alemania (Deutschland, Bundesrepublik)", "Allemagne (Deutschland, Bundesrepublik)", "Almanija (Deutschland, Bundesrepublik)", "Almāniyā (Deutschland, Bundesrepublik)", "Bondsrepubliek Duitsland (Deutschland, Bundesrepublik)", "BRD", "BRD (1949-1990)", "Bundesrepublik Deutschland (1949-1990)", "Deutschland (1949-1990, Bundesrepublik)", "Deutschland (Bundesrepublik) (1949-1990)", "Federal Republic of Germany (Deutschland, Bundesrepublik)", "Förbundsrepubliken Tyskland (Deutschland, Bundesrepublik)", "Förbundsrepublikken Tyskland (Deutschland, Bundesrepublik)", "FRG", "Germany (Deutschland, Bundesrepublik)", "Németországi Szövetségi Kőztársaság (Deutschland, Bundesrepublik)", "Niemiecka Republika Federalna Niemiecka Republika Federalna", "NRF", "Repubblica Federale di Germania (Deutschland, Bundesrepublik)", "Republic of Germany (Deutschland, Bundesrepublik)", "República Federal da Alemanha (Deutschland, Bundesrepublik)", "República Federal de Alemania (Deutschland, Bundesrepublik)", "Republik Federasi Djerman (Deutschland, Bundesrepublik)", "Republika Federalna Niemiec (Deutschland, Bundesrepublik)", "République Fédérale d'Allemagne (Deutschland, Bundesrepublik)", "RFN", "Saksan Liittotasavalta (Deutschland, Bundesrepublik)", "Westdeutschland (Bundesrepublik, 1949-1990)"], "authorized_access_point": "Deutschland (Bundesrepublik)"} 3 -2024-07-16 20:07:11.231556 2024-07-17 06:57:16.651429 2834cb62-976d-4b13-b3d7-46c9f81c3aaa {"md5": "8a4b4d6b512b0175ea4a765ad3ff47a7", "pid": "040181847", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Überseedepartement"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4018184-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040181847", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4018184-4", "source": "GND"}], "variant_access_point": ["Departement Guayana", "Departement Guyana", "Guayana (Kolonie, Frankreich)", "Französisch-Guyana", "Guyane Française", "Guayana (Französisch-Guayana)", "Département de la Guyane Française", "Guyane-Française", "Département d'Outre-Mer de la Guyane Française", "Guayana (Guyane Française)", "Conseil Régional (Guyane Française)", "Région Guyane", "French Guiana"], "authorized_access_point": "Französisch-Guayana"} 3 -2024-07-16 19:07:40.136872 2024-07-17 06:59:11.378361 9dc0b510-1cc7-45e4-b1e0-c5e583d920e6 {"md5": "356dbba2b7eff8f563a5f1941fadf74a", "pid": "1122668171", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Myanmar"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1122668171", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1122668171", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1122668171", "source": "GND"}], "variant_access_point": ["Birma (Nordwest)", "Nordwestliches Birma"], "authorized_access_point": "Myanmar (Nordwest)"} 3 -2024-07-16 19:07:40.050811 2024-07-17 06:59:11.67184 4f0696ce-035d-4bfe-bcf4-a20824b6b478 {"md5": "28c657b5bd44a21c0942b5fcf7c0b797", "pid": "1122747160", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Simbabwe"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1122747160", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1122747160", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1122747160", "source": "GND"}], "variant_access_point": ["Nordwestsimbabwe"], "authorized_access_point": "Simbabwe (Nordwest)"} 3 -2024-07-16 19:07:39.992866 2024-07-17 06:59:11.922419 a872dbc7-3eec-4ce1-951a-e27261ffd493 {"md5": "8ca65ea9071f2a4e8b02a8ad949e6b82", "pid": "1124279156", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1124279156", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1124279156", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1124279156", "source": "GND"}], "variant_access_point": ["Gampenpass (Region)"], "authorized_access_point": "Gampenpass-Gebiet"} 3 -2024-07-16 19:07:39.817795 2024-07-17 06:59:12.427339 94ed384a-c165-4429-8e73-2c65d42ce4b1 {"md5": "4e28ec05f50469b39995518acaf97a69", "pid": "1133293247", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Isingen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1133293247", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1133293247", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1133293247", "source": "GND"}], "classification": [{"name": "Kirchenbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Martinskirche (Isingen)"} 3 -2024-07-16 19:07:39.738404 2024-07-17 06:59:12.705297 a09f0214-4e60-417c-86fa-8155bee2469a {"md5": "a6edd4042118eea5fa1057986a8aafbd", "pid": "1135798842", "note": [{"label": ["GeoNames - http://www.geonames.org/598887/jasiunai.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1135798842", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1135798842", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1135798842", "source": "GND"}], "authorized_access_point": "Jašiūnai"} 3 -2024-07-16 19:07:39.646902 2024-07-17 06:59:13.013349 05cd3db2-e0c0-402b-809a-6bcdaac82fa7 {"md5": "c7f1cc2c8431c5eee91f3224dc3a89bf", "pid": "1135805342", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Oberes_Angertal"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Angerbachtal (Rheinland)"}, {"authorized_access_point": "Niederbergisches Land"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1135805342", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1135805342", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1135805342", "source": "GND"}], "classification": [{"name": "Wüstung", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Obere Angerbachtal", "Oberes Angertal"], "authorized_access_point": "Obere Angertal (Niederbergisches Land)"} 3 -2024-07-16 20:07:31.713732 2024-07-17 06:57:18.187007 7bc01af9-d509-4597-8dc7-a647c3b2c50f {"md5": "745e4423c484a96022606a3c9c6426b7", "pid": "040201449", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4020144-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040201449", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4020144-2", "source": "GND"}], "classification": [{"name": "See", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Genfersee", "Lac Léman", "Lac de Genève", "Le Léman", "Léman"], "authorized_access_point": "Genfer See"} 3 -2024-07-16 19:07:40.664379 2024-07-17 06:59:09.622315 e5311a6a-cf3f-4aac-88a4-2307646c3c97 {"md5": "08b6d7bc801b5a7e81f1640a2fce86d3", "pid": "1100201831", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Ennsradweg"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Flachau-Flachauwinkl"}, {"authorized_access_point": "Enns"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1100201831", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1100201831", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1100201831", "source": "GND"}], "classification": [{"name": "Radwanderweg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Ennsradweg"], "authorized_access_point": "Enns-Radweg"} 3 -2024-07-16 19:07:40.574341 2024-07-17 06:59:09.930754 ddf14117-3c0b-45d4-a63c-de10d3ed3990 {"md5": "162fa01d4b584fade40ff5827d70bd18", "pid": "1100323325", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Nahe-Radweg"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Nohfelden-Selbach"}, {"authorized_access_point": "Bingen am Rhein"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1100323325", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1100323325", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1100323325", "source": "GND"}], "classification": [{"name": "Radwanderweg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Nahe-Radweg"} 3 -2024-07-16 19:07:40.401756 2024-07-17 06:59:10.50168 0e62c175-e526-4797-a23e-1e05c5bfaa21 {"md5": "ffca4da314ab08b39ea845b7cb811bdf", "pid": "1105589110", "note": [{"label": ["Internet - http://www.allgaeu.de/wanderrouten?referralTopic=wandern"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Wandertrilogie Allgäu"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1105589110", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1105589110", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1105589110", "source": "GND"}], "classification": [{"name": "Rundwanderweg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Fernwanderweg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Wasserläufer-Route"], "authorized_access_point": "Wasserläufer Route"} 3 -2024-07-16 19:07:40.486589 2024-07-17 06:59:10.197837 ebbe104b-6020-4e48-88cd-9f0b2a6356f2 {"md5": "11e4bb6c9164d62f50c567bf90a84055", "pid": "1101612258", "note": [{"label": ["Wikipedia: - https://de.wikipedia.org/wiki/Yimeng_Shan"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1101612258", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1101612258", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1101612258", "source": "GND"}], "classification": [{"name": "Gebirge", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Yimengshan", "Yimeng (Region)", "Yimeng-Bergland"], "authorized_access_point": "Yimeng Shan"} 3 -2024-07-16 20:06:44.093338 2024-07-17 06:57:18.499839 b74330b2-714c-4a26-bda4-2bbbb1ecefe1 {"md5": "108e1ead2e66b676ca9b4057ccf10670", "pid": "040218813", "note": [{"label": ["Homepage - https://www.gr.ch/DE/Seiten/welcome.aspx"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Drei Bünden"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4021881-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040218813", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4021881-8", "source": "GND"}], "classification": [{"name": "Graubündner", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}, {"name": "Kanton", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Churrätien", "Bünden", "Grigioni", "Cantone dei Grigioni", "Grigione", "Grisons", "Grisons", "Cantun Grischun", "Chantun Grischun", "Eidgenössischer Stand Graubünden", "Grischun", "Kanton Graubünden", "Grigioni", "Ligues Grisonnes", "Grisons", "Freistaat der drei Bünde"], "authorized_access_point": "Graubünden"} 3 -2024-07-16 19:07:41.41541 2024-07-17 06:59:06.953768 f66fcb2a-090f-445a-a9d7-a5e9680834b7 {"md5": "62017e1d04175f673f46e78614aceb69", "pid": "1082012033", "note": [{"label": ["Internet - http://www.salzalpensteig.com/salzalpensteig.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Prien a. Chiemsee"}, {"authorized_access_point": "Obertraun"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1082012033", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1082012033", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1082012033", "source": "GND"}], "classification": [{"name": "Fernwanderweg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Salzalpensteig", "Salzalpen-Steig"], "authorized_access_point": "SalzAlpenSteig"} 3 -2024-07-16 19:07:41.232563 2024-07-17 06:59:07.514244 2f93af2e-f48a-4914-a920-50276579659f {"md5": "50e857a4f051f6087bf31c0d6d19e317", "pid": "1082520101", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Idyllische_Stra%C3%9Fe"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Welzheim"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1082520101", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1082520101", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1082520101", "source": "GND"}], "classification": [{"name": "Fremdenverkehrsstraße", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Idyllische Straße"} 3 -2024-07-16 19:07:41.143478 2024-07-17 06:59:07.822003 015b1adb-ed5d-4429-8ed8-b3f8579fc785 {"md5": "4379412f22a4dc675ba20359abd42993", "pid": "1082797251", "note": [{"label": ["archINFORM - http://deu.archinform.net/projekte/1110.htm", "Wikipedia - https://de.wikipedia.org/w/index.php?title=Stuttgarter_Fernsehturm&oldid=151349493"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Stuttgart"}, {"authorized_access_point": "Stuttgart-Degerloch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1082797251", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1082797251", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1082797251", "source": "GND"}], "classification": [{"name": "Fernsehturm", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Aussichtsturm", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Stuttgarter Fernsehturm (Stuttgart)", "Stuttgarter Fernsehturm (Stuttgart-Degerloch)"], "authorized_access_point": "Fernsehturm Stuttgart (Stuttgart)"} 3 -2024-07-16 19:07:41.062344 2024-07-17 06:59:08.128488 afb2cf7a-a754-4a7c-b024-28b0232d75b0 {"md5": "2b3948cb39b748937710061738b29d0f", "pid": "1085229823", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Litoměřice"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1085229823", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1085229823", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1085229823", "source": "GND"}], "variant_access_point": ["Stadt Leitmeritz", "Leütmaritz", "Statt Leütmaritz", "Litoměřice (-XX.05.1945)"], "authorized_access_point": "Leitmeritz"} 3 -2024-07-16 19:07:41.006282 2024-07-17 06:59:08.438361 e2261040-69ab-40f5-b2fa-e2b34cacaaaf {"md5": "9984a1671b7526591a286e41eb7f4055", "pid": "1095576461", "note": [{"label": ["Google Maps - https://www.google.de/maps/place/Gomo,+South+Nias+Regency,+North+Sumatra,+Indonesien/@0.8834854,97.7321029,12z/data=!3m1!4b1!4m2!3m1!1s0x3026206005f1b8fb:0x4039d80b220dba0"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Nias"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1095576461", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1095576461", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1095576461", "source": "GND"}], "variant_access_point": ["Gomo-Gebiet (Nias) (Region)"], "authorized_access_point": "Gomo-Gebiet (Nias)"} 3 -2024-07-16 20:07:33.270599 2024-07-17 06:57:22.014489 6e950296-adf3-4e35-b104-11b7f7481636 {"md5": "bbed2dce980a341659286738bc45e154", "pid": "040289664", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Jugoslawien&oldid=234596448"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "SHS-Staat"}, {"authorized_access_point": "Föderative Republik Jugoslawien"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4028966-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040289664", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4028966-7", "source": "GND"}], "classification": [{"name": "Jugoslawen", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Jugoslavija", "FNRJ", "FNR Jugoslavija", "SFRJ", "SFRJU", "SFR Jugoslavija", "Federal People's Republic of Yugoslavia", "FPR Yugoslavia", "FPRY", "Socialist Federal Republic of Yugoslavia", "SFR Yugoslavia", "Föderative Volksrepublik Jugoslawien", "FVRJ", "Yugoslavija", "République Socialiste Fédérative de Yougoslavie", "Socialistična Federativna Republika Jugoslavija", "Socialističeskaja Federativnaja Respublika Jugoslavija", "Yugoslavıya", "Demokratska Federativna Jugoslavija", "Savezna Republika Jugoslavija", "Federal Republic of Yugoslavija", "Sojuznaja Respublika Jugoslavii", "Federativna Narodna Republika Jugoslavija", "Socijalistička Federativna Republika Jugoslavija", "Yugoslavia", "Yougoslavie", "Sozialistische Föderative Republik Jugoslawien", "Kraljevina Jugoslavija", "Königreich Jugoslawien"], "authorized_access_point": "Jugoslawien"} 3 -2024-07-16 19:07:41.94175 2024-07-17 06:59:05.287639 4cb0325d-b80b-4f4d-8324-301a6b6d3950 {"md5": "b3665957472256c20949614dfc7167a7", "pid": "1081838779", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Belp"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081838779", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1081838779", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1081838779", "source": "GND"}], "classification": [{"name": "Schloss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Schloss Belp (Belp)"} 3 -2024-07-16 19:07:41.859784 2024-07-17 06:59:05.622617 65abf442-25da-4999-9f74-39eaa584a22a {"md5": "cf9872085a5e5124caefce0f62ee14d9", "pid": "1081839082", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Toffen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081839082", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1081839082", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1081839082", "source": "GND"}], "classification": [{"name": "Schloss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Burg Toffen (Toffen)"], "authorized_access_point": "Schloss Toffen (Toffen)"} 3 -2024-07-16 19:07:41.773808 2024-07-17 06:59:05.89896 3a36e68e-87c2-4ac4-b707-2a5412534a0b {"md5": "8bb0ac13e2523a69cb118b4881edf931", "pid": "1081842474", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Kleinlützel"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081842474", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1081842474", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1081842474", "source": "GND"}], "classification": [{"name": "Burgruine", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Burg Blauenstein (Kleinlützel)"], "authorized_access_point": "Burgruine Blauenstein (Kleinlützel)"} 3 -2024-07-16 19:07:41.673903 2024-07-17 06:59:06.151944 482b02cb-fef9-4887-9c14-095d0fc4a048 {"md5": "dca2cc61ec3a16cbfde88797634ab86e", "pid": "1081844973", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Erlach (Kanton Bern)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081844973", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1081844973", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1081844973", "source": "GND"}], "classification": [{"name": "Schloss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Erziehungsheim", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Schulheim Schloss Erlach (Erlach, Kanton Bern)", "Burg Erlach (Erlach, Kanton Bern)"], "authorized_access_point": "Schloss Erlach (Erlach, Kanton Bern)"} 3 -2024-07-16 20:06:56.736528 2024-07-17 06:57:27.804411 feaaf40d-436c-4eb5-b546-1baadedd9358 {"md5": "f774205236ec7e69c7f86d51ea34c5f3", "pid": "04037680X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Spanisch-Marokko"}, {"authorized_access_point": "Protektorat Marokko"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4037680-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04037680X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4037680-1", "source": "GND"}], "classification": [{"name": "Marokkaner", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["al- Mamlaka al-Maġribīya", "Marrākuš", "Marrākush", "Marruecos", "Königreich Marokko", "Marraqus", "Empire Chérifien", "Reino de Marruecos", "Maroc", "Morocco", "Royaume du Maroc", "Kingdom of Morocco", "al- Mamlakah al-Maghribīyah"], "authorized_access_point": "Marokko"} 3 -2024-07-16 19:07:42.673069 2024-07-17 06:59:02.729313 8d1148d4-6daa-4d29-b2df-ed06f09ff04f {"md5": "72c48df9172028475084250c23fd4cdb", "pid": "1081097930", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081097930", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1081097930", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1081097930", "source": "GND"}], "authorized_access_point": "Mockern (Region)"} 3 -2024-07-16 19:07:42.579433 2024-07-17 06:59:02.946988 bb94044d-b05d-462f-9408-e43f1928793a {"md5": "edda4c784d7866f6338f77a896065786", "pid": "1081212918", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081212918", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1081212918", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1081212918", "source": "GND"}], "authorized_access_point": "Kurtschau (Region)"} 3 -2024-07-16 19:07:42.414476 2024-07-17 06:59:03.58156 2fbba075-5c59-492b-abee-e332edcd036b {"md5": "140433275d87a74d9a17371ce5ad3556", "pid": "1081838051", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Aarwangen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081838051", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1081838051", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1081838051", "source": "GND"}], "classification": [{"name": "Schloss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Schloss Aarwangen (Aarwangen)"} 3 -2024-07-16 19:07:42.319044 2024-07-17 06:59:03.88096 c24ff18e-a5df-4034-9005-c63b8863b559 {"md5": "8908c407fe8e9721dcc9455d9d9d0771", "pid": "1081838167", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Utzigen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081838167", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1081838167", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1081838167", "source": "GND"}], "classification": [{"name": "Schloss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Pflegeheim", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Schloss Utzigen (Utzigen)"} 3 -2024-07-16 19:07:42.229553 2024-07-17 06:59:04.175128 b2260630-e9bb-407f-be6f-ac2b3736427a {"md5": "1da5533e77dd19b863ecb608d1daf4ff", "pid": "1081838310", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Krauchthal"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081838310", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1081838310", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1081838310", "source": "GND"}], "classification": [{"name": "Burg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Schloss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Gefängnisbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Kartause", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Armenhaus", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Schloss Thorberg (Krauchthal)"} 3 -2024-07-16 19:07:42.754689 2024-07-17 06:59:02.446396 f4636904-02f0-432f-8a9e-eba51b353833 {"md5": "42d9f440bf9fb2cb31f8556be6ec60ce", "pid": "1079692916", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Alaska"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1079692916", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1079692916", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1079692916", "source": "GND"}], "classification": [{"name": "Bucht", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Pyramid Harbor"} 3 -2024-07-16 20:06:36.800944 2024-07-17 06:57:35.96974 1928f915-9cb6-4669-9aad-d3c913804bd8 {"md5": "5ea276f1c2795bd55cff867578375272", "pid": "040496392", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Maskarenen"}], "related": [{"authorized_access_point": "Überseedepartement"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4049639-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040496392", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4049639-9", "source": "GND"}], "classification": [{"name": "Insel", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["LaRéunion", "Île Bourbon", "La Réunion", "Réunion (Conseil Général)", "Conseil Général, Réunion", "Région Réunion", "Département de la Réunion", "Département d'Outre-Mer de la Réunion", "Conseil Général (Réunion)"], "authorized_access_point": "Réunion"} 3 -2024-07-16 19:07:43.470481 2024-07-17 06:58:59.674704 8ca96343-f8e4-4444-89ce-1dce9d1a8041 {"md5": "2c747c0d3dec8b3eff64f08fe11fa202", "pid": "1075827361", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/w/index.php?title=Dauj%C4%97nai&oldid=1157247700"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1075827361", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1075827361", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1075827361", "source": "GND"}], "authorized_access_point": "Daujėnai"} 3 -2024-07-16 19:07:43.3846 2024-07-17 06:58:59.945481 88db7b88-10b1-4acb-92f0-dcf78fe49838 {"md5": "c3b14e34fdf118f9f2d278bc0f119e45", "pid": "1076027032", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Goldbach (Überlingen)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1076027032", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1076027032", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1076027032", "source": "GND"}], "classification": [{"name": "Höhle", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Heidenlöcher (Goldbach, Überlingen)"], "authorized_access_point": "Heidenhöhlen (Goldbach, Überlingen)"} 3 -2024-07-16 19:07:43.305767 2024-07-17 06:59:00.248566 073d510a-841c-42ab-9a41-f2f2a46fc1db {"md5": "c13999628320d1de924825584f2409e1", "pid": "107699847X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/107699847X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)107699847X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)107699847X", "source": "GND"}], "variant_access_point": ["Szreniawa (Fluss) (Region)"], "authorized_access_point": "Szreniawa-Gebiet"} 3 -2024-07-16 19:07:43.159762 2024-07-17 06:59:00.534886 981d994e-b798-476c-b7ea-324760890f59 {"md5": "080d6b895704ab5fd8163e474769ea2e", "pid": "1077053185", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leichlingen (Rheinland)"}, {"authorized_access_point": "Weltersbach (Leichlingen (Rheinland))"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1077053185", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1077053185", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1077053185", "source": "GND"}], "authorized_access_point": "Leichlingen-Weltersbach"} 3 -2024-07-16 19:07:43.096194 2024-07-17 06:59:00.797635 1089fd3a-1dd2-4905-b7ba-2a1df4c659e4 {"md5": "4177fe8105813261e68f1e8d62082d39", "pid": "1077053320", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leichlingen (Rheinland)"}, {"authorized_access_point": "Leichlingen-Weltersbach"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1077053320", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1077053320", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1077053320", "source": "GND"}], "variant_access_point": ["Weltersbach (Leichlingen)"], "authorized_access_point": "Weltersbach (Leichlingen (Rheinland))"} 3 -2024-07-16 19:07:43.008656 2024-07-17 06:59:01.373305 35b05f4e-8ba0-4844-86c2-d1c63fab8b02 {"md5": "47a096e06b4b69da162745c13d3375b8", "pid": "1077893450", "note": [{"label": ["Internet - http://kocher-jagst-trail.de/content.php?cont_id=1&src=1&la=de"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1077893450", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1077893450", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1077893450", "source": "GND"}], "classification": [{"name": "Rundwanderweg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Fernwanderweg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Kocher-Jagst-Wanderweg"], "authorized_access_point": "Kocher-Jagst-Trail"} 3 -2024-07-16 19:07:42.918819 2024-07-17 06:59:01.707074 b61451bd-7083-46fe-89a7-c147df2fc4fb {"md5": "152a694e1df659d63e6fa8f567d400e2", "pid": "1078131902", "note": [{"label": ["Internet - http://www.goeppingen.de/,Lde/start/Unsere+Stadt/Alter+Friedhof+an+Oberhofen.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Göppingen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1078131902", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1078131902", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1078131902", "source": "GND"}], "classification": [{"name": "Friedhof", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Alter Friedhof an Oberhofen (Göppingen)"} 3 -2024-07-16 20:07:39.91598 2024-07-17 06:57:36.568897 f63fa269-fd81-49d5-9576-48c2c3beb0d1 {"md5": "c5eb49ad3c200be1e841932b1e893770", "pid": "040509397", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Walachei"}, {"authorized_access_point": "Moldau (Fürstentum)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4050939-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040509397", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4050939-4", "source": "GND"}], "classification": [{"name": "Rumänen", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["România", "République Socialiste de Roumanie", "Socialist Republic Romania", "Sozialistische Republik Rumänien", "Socialističeskaja Respublika Rumynija", "Socialist Republic of Rumania", "Rumänische Volksrepublik", "Rumanian People's Republic", "RPR", "Romînia", "Roumanie", "Román Szocialista Köztársaság", "Rumynija", "Rumynskaja Narodnaja Respublika", "RNR", "République Populaire Roumaine", "Rumunija", "Republică Populară Romînă", "Republica Socialistă Româniă", "Republica Romanîa"], "authorized_access_point": "Rumänien"} 3 -2024-07-16 20:07:36.021686 2024-07-17 06:57:38.52588 76a6a5a1-ceab-45d6-9f16-51747cac7684 {"md5": "e4036dbf3868535fe760dbda04304641", "pid": "040540197", "note": [{"label": ["Homepage - http://www.sz.ch/xml_1/internet/de/intro.cfm"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4054019-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040540197", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4054019-4", "source": "GND"}], "classification": [{"name": "Kanton", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Schwyz (Kanton)", "Kanton Schweiz", "Schweiz (Kanton)", "SZ", "Eidgenössischer Stand Schwyz", "SZ (Schwyz : Kanton)", "Schwytz (Kanton)", "Schweitz (Kanton)", "SZ (Schwyz Kanton)"], "authorized_access_point": "Kanton Schwyz"} 3 -2024-07-16 19:08:17.930246 2024-07-17 06:57:40.185425 01f8e3e9-0fbc-448d-b5ea-ee8f44b589f2 {"md5": "c7119731d57f3b985246e4ba920a80b0", "pid": "04057749X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Nykøbing Falster"}], "related": [{"authorized_access_point": "Amt Præstø"}, {"authorized_access_point": "Amt Maribo"}, {"authorized_access_point": "Region Sjælland"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4057749-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04057749X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4057749-1", "source": "GND"}], "classification": [{"name": "Amt", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Storstrøms (Amt)", "Storstrøms Amt", "Storstrøm (Amt)", "Storstrøm Amtskommune"], "authorized_access_point": "Amt Storstrøm"} 3 -2024-07-16 19:07:43.814176 2024-07-17 06:58:58.465349 dd9dc319-9faa-49ca-af58-a5d2ebee15fd {"md5": "ccc814562e5fdc261ea79e12e193ff5d", "pid": "107399077X", "note": [{"label": ["Internet - http://www.neisse-nisa-nysa.org/index.php?id=91"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Bad Schandau"}, {"authorized_access_point": "Chełmsko Śląskie"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/107399077X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)107399077X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)107399077X", "source": "GND"}], "classification": [{"name": "Radwanderweg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Rübezahlradweg"], "authorized_access_point": "Rübezahl-Radweg"} 3 -2024-07-16 19:07:43.730209 2024-07-17 06:58:58.769985 3b632d6f-093f-4d7a-92e0-bfa8b0720fa0 {"md5": "acde3f512809410984328c8dd11e41a6", "pid": "1074316908", "note": [{"label": ["Internet - http://www.emscher-weg.de/route/emscher-weg/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Holzwickede"}, {"authorized_access_point": "Dinslaken"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1074316908", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1074316908", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1074316908", "source": "GND"}], "classification": [{"name": "Radwanderweg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Emscherweg", "Emscherradweg"], "authorized_access_point": "Emscher-Weg"} 3 -2024-07-16 19:07:43.640932 2024-07-17 06:58:59.087769 987ee541-4f99-42fe-ad30-d0508e3e5969 {"md5": "1cfcf2cdf791658ceef72f94f0975fdd", "pid": "1074377397", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Rumbach_(Ruhr)"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1074377397", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1074377397", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1074377397", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Ruhmbach"], "authorized_access_point": "Rumbach (Fluss)"} 3 -2024-07-16 19:07:44.62871 2024-07-17 06:58:55.628182 44668a65-7a87-4aa7-a969-32d59895d150 {"md5": "115810c590ffff18a06641731466d197", "pid": "1069803782", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Kreis Ostholstein"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1069803782", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1069803782", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1069803782", "source": "GND"}], "authorized_access_point": "Heringsdorf (Kreis Ostholstein)"} 3 -2024-07-16 19:07:44.545912 2024-07-17 06:58:55.911006 1aa5f5a9-2a24-4cf8-8a53-e09388c80e0a {"md5": "99e68228304def26622b681777d676c7", "pid": "1070113026", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Aeugst am Albis"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1070113026", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1070113026", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1070113026", "source": "GND"}], "classification": [{"name": "Weiler", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Wengi (Aeugst am Albis)", "Wängibad (Aeugst am Albis)"], "authorized_access_point": "Wängi (Aeugst am Albis)"} 3 -2024-07-16 19:07:44.461816 2024-07-17 06:58:56.177782 bbd59c01-bc4b-4b62-bfdb-f3e4c48bcbec {"md5": "db26afcd59f0123681b75908a822c207", "pid": "1071862391", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/Bahnstrecke_Zgorzelec%E2%80%93Wa%C5%82brzych"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Görlitz"}, {"authorized_access_point": "Wałbrzych"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1071862391", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1071862391", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1071862391", "source": "GND"}], "classification": [{"name": "Eisenbahnlinie", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Bahnstrecke Zgorzelec–Wałbrzych"], "authorized_access_point": "Eisenbahnlinie Görlitz-Wałbrzych"} 3 -2024-07-16 19:07:44.376404 2024-07-17 06:58:56.452492 b6f780aa-cb8b-4d89-bbfd-56b3a53ef68a {"md5": "7f13d7724011e9e62e66ed283ee8dabe", "pid": "1071872435", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Sanntal"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1071872435", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1071872435", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1071872435", "source": "GND"}], "classification": [{"name": "Tal", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Oberes Sanntal", "Obere Sann (Tal)"], "authorized_access_point": "Obere-Sann-Tal"} 3 -2024-07-16 19:07:44.218169 2024-07-17 06:58:57.007144 fdfd264d-0936-42b6-a19c-772b526dd523 {"md5": "33aab366687cc09b65472bdca515cca8", "pid": "1073267830", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Silvrettagruppe"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1073267830", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1073267830", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1073267830", "source": "GND"}], "classification": [{"name": "Berg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Piz Buin"} 3 -2024-07-16 19:07:44.161944 2024-07-17 06:58:57.346538 b6054bba-5cb4-41e3-8ae0-90c0cbd5dddc {"md5": "1d30bdb584cbf6ed97e886ebff09fdec", "pid": "107362062X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Vr%C3%A1tna-Tal"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Kleine Fatra"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/107362062X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)107362062X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)107362062X", "source": "GND"}], "classification": [{"name": "Tal", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Vratna-Tal", "Vratne-Tal", "Vrátna-Tal"], "authorized_access_point": "Vratné-Tal"} 3 -2024-07-16 20:07:01.566325 2024-07-17 06:57:40.778063 2a8cca1e-950f-4a13-8f9f-84f56b2c3509 {"md5": "06764c0b51ca0e6f0d94d39214c7e10d", "pid": "040587940", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Syrien (Wilāyet)"}, {"authorized_access_point": "al- Iqlīm as-Sūrī"}, {"authorized_access_point": "Vereinigte Arabische Republik"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4058794-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040587940", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4058794-0", "source": "GND"}], "classification": [{"name": "Syrer", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["al- Ǧumhūrīya as-Sūrīya", "al- Ǧumhūrīya al-ʿArabīya as-Sūrīya", "Syrie", "République Syrienne", "Arabskiej Republiki Syryjskiej", "Suriye", "Siria", "Repubblica Araba Siriana", "Sowria", "Sūriyā", "Syrian Arab Republic", "République Arabe Syrienne", "Arabische Republik Syrien", "Daulat Sūriyā", "Province of Syria", "Syrische Arabische Republik", "SAR (Syrian Arab Republic)", "SAR (Syrische Arabische Republik)", "RAS (République Arabe Syrienne)", "Syria (ab 1961)", "al-Ǧumhūrīya as-Sūrīya", "al-Ǧumhūrīya al-ʿArabīya as-Sūrīya", "Syrie (ab 1961)", "Syrien (ab 1961)", "Syria", "Syrien (Syria)", "Syrie (Syria)", "Arabische Republik Syrien (Syria)", "République Arab Syrienne (Syria)", "Syrian Arab Republic (Syria)", "al-Ǧumhūriyya al-ʿArabiyya as-Sūriyya (Syria)", "الجمهورية العربية السورية"], "authorized_access_point": "Syrien"} 3 -2024-07-16 19:07:45.284339 2024-07-17 06:58:53.352378 77563668-8a91-48c8-8cc2-5d98336a2b7e {"md5": "d3c4984d98dc1cb6d122cc2915e3e3c5", "pid": "1067272488", "note": [{"label": ["Internet: - http://www.kocher-jagst.de/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1067272488", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1067272488", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1067272488", "source": "GND"}], "classification": [{"name": "Radwanderweg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Kocher-Jagst-Radweg"} 3 -2024-07-16 19:07:45.211151 2024-07-17 06:58:53.608444 8fe286bc-ece9-487c-a308-6219719dcc5e {"md5": "371c53476a6d31df34f1f68fe2bed0b5", "pid": "1067274006", "note": [{"label": ["Internet - http://www.heidschnuckenweg.de/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Hamburg-Fischbek"}, {"authorized_access_point": "Celle"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1067274006", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1067274006", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1067274006", "source": "GND"}], "classification": [{"name": "Wanderweg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Heidschnuckenweg"} 3 -2024-07-16 19:07:45.158536 2024-07-17 06:58:53.876933 cb98f81f-bb1b-46ef-ae81-385541317694 {"md5": "aeb1d334c1d595d6d49a19767fb7c40a", "pid": "1067636757", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Hartmannsdorf (Leipzig)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1067636757", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1067636757", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1067636757", "source": "GND"}], "variant_access_point": ["Hartmannsdorf (Leipzig)"], "authorized_access_point": "Leipzig-Hartmannsdorf"} 3 -2024-07-16 19:07:45.07055 2024-07-17 06:58:54.182971 5bc6e28b-da9b-4dc5-b9e9-3d5e35457fb5 {"md5": "02d0719b010c855d72df49fd7e886c5b", "pid": "1067637184", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Rehbach (Leipzig)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1067637184", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1067637184", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1067637184", "source": "GND"}], "variant_access_point": ["Rehbach (Leipzig)"], "authorized_access_point": "Leipzig-Rehbach"} 3 -2024-07-16 19:07:44.979327 2024-07-17 06:58:54.440539 e420e5b9-8d04-4221-82d5-45ac7720013d {"md5": "11ac1d0355ee5755cc2752b37d3b21ec", "pid": "1067860142", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Hirschfeld (Leipzig)"}, {"authorized_access_point": "Hirschfeld-Kleinpösna"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1067860142", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1067860142", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1067860142", "source": "GND"}], "variant_access_point": ["Hirschfeld (Leipzig)"], "authorized_access_point": "Leipzig-Hirschfeld"} 3 -2024-07-16 19:07:46.299888 2024-07-17 06:58:49.956857 207ddbaf-2454-4749-8877-f7c5e1fb7aa6 {"md5": "9a7b65a9ea37f59e8737100913007756", "pid": "106081482X", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/Kanzelbach"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/106081482X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)106081482X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)106081482X", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Kanzelbach"} 3 -2024-07-16 19:07:46.239494 2024-07-17 06:58:50.191398 5b82586d-a418-4b21-910a-1786e8f90613 {"md5": "11c86cfc167a505fd8860d756f10b74a", "pid": "1060849127", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060849127", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060849127", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060849127", "source": "GND"}], "variant_access_point": ["Salamieh area"], "authorized_access_point": "Salamīyah (Region)"} 3 -2024-07-16 19:07:46.165748 2024-07-17 06:58:50.458477 75ce7c4d-d4de-4387-a6f3-bd36babacaa0 {"md5": "e46edbe9398ad66dfc69eac90bf509a0", "pid": "1061004198", "note": [{"label": ["Geonames - http://www.geonames.org/3086792/rudawa.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1061004198", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1061004198", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1061004198", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Rudawa (Fluss)"} 3 -2024-07-16 19:07:46.071596 2024-07-17 06:58:50.745049 6064fffd-11c8-48b2-9194-ed22e174b062 {"md5": "cf0b0ff5067d49feeee442526aa50088", "pid": "1062516109", "note": [{"label": ["Wikipedia - http://en.wikipedia.org/wiki/Hogsmill_River"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1062516109", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1062516109", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1062516109", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Hogsmill River"} 3 -2024-07-16 19:07:45.986087 2024-07-17 06:58:51.10161 c6abe204-af8b-4a54-ba54-756cf09867d4 {"md5": "2198ff46a2443f4d876874d8b41a8920", "pid": "1062531191", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/Ole%C5%A1nice_(B%C4%9Bl%C3%A1)"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1062531191", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1062531191", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1062531191", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Olešnice (Fluss)", "Elsnitz"], "authorized_access_point": "Białka"} 3 -2024-07-16 19:07:45.893617 2024-07-17 06:58:51.398119 bb0d2a35-4c2c-4e3e-906d-e7b5e65a9822 {"md5": "42dac288ea216955bd88a35f8f5caa87", "pid": "1062891848", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1062891848", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1062891848", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1062891848", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Stadtweiße"], "authorized_access_point": "Wilde Weiße"} 3 -2024-07-16 19:07:45.809126 2024-07-17 06:58:51.697689 669a66b1-1597-44a9-a524-4e47cdfdde4c {"md5": "8cdb9bb0820f439f03346471daa1de56", "pid": "1062970004", "note": [{"label": ["Geonames - http://www.geonames.org/2796123/helle.html", "Wikipedia - http://de.wikipedia.org/wiki/Hill_(Bach)"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1062970004", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1062970004", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1062970004", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Hill (Fluss)"], "authorized_access_point": "Helle (Fluss)"} 3 -2024-07-16 19:07:45.728243 2024-07-17 06:58:52.006679 fbc3ce50-a856-4903-85ed-77f72e41022e {"md5": "110c0fe7e935dcef565c6dfcfd188c87", "pid": "1062979583", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1062979583", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1062979583", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1062979583", "source": "GND"}], "variant_access_point": ["Rezende"], "authorized_access_point": "Resende"} 3 -2024-07-16 19:07:45.639235 2024-07-17 06:58:52.314797 534a8fb3-6d5c-42f8-9c7b-59df2c2cc1db {"md5": "54745323dc905fe0f72e67853fdec838", "pid": "1064049419", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/Anglesey_Coastal_Path"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1064049419", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1064049419", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1064049419", "source": "GND"}], "classification": [{"name": "Rundwanderweg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Anglesey Küstenweg"], "authorized_access_point": "Anglesey Coastal Path"} 3 -2024-07-16 20:07:41.452187 2024-07-17 06:57:47.766405 a7ea2f19-4830-41e3-b931-98a5ce60e0ba {"md5": "cb2cf1b29298a4f11728643f28c3da47", "pid": "040738418", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4073841-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040738418", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4073841-3", "source": "GND"}], "classification": [{"name": "Kroaten", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Kroatien-Slawonien-Dalmatien", "Dalmatien-Kroatien-Slawonien", "Nezavisna Država Hrvatska", "Narodna Republika Hrvatska", "Kraljevina Dalmacija, Hrvatska i Slavonija", "Kr. Hrv., Slav., Dalm.", "Hrv., Slav., Dalm.", "Kr. Hrv., Slav.", "Kraljevina Hrvatska-Slavonija", "Hrvatska-Slavonija", "Königreiche Kroatien-Slavonien", "Königreich Kroatien-Slavonien", "Kroatien-Slavonien", "Croatien-Slawonien", "Königreiche Croatien-Slawonien", "Königreich Croatien-Slawonien", "Vereinigte Königreiche Kroatien Slavonien Dalmatien", "Königreiche Kroatien Slavonien Dalmatien", "Banovina Hrvatska", "Kroatien und Slavonien", "República de Croacia", "HR", "Hrvatska", "Croatia", "SR Hrvatska", "Kraljevina Hrvatska, Slavonija, Dalmacija", "Hrvatska, Slavonija, Dalmacija", "Kraljevina Hrvatska, Slavonija", "Hrvatska i Slavonija", "NR Hrvatska", "Republika Hrvatska", "Socijalistička Republika Hrvatska", "Republic of Croatia", "Kraljevina Dalmacija, Hrvatska, Slavonija", "SR Hrvatska (Socijalistička republika Hrvatska)", "Kraljevina Hrvtska-Slavonija", "Poeple's Republic of Croatia", "Vlade Narodne Republike Hrvatske", "Volksrepublik Kroatien"], "authorized_access_point": "Kroatien"} 3 -2024-07-16 19:07:47.263364 2024-07-17 06:58:46.966949 f35f6dfc-f1e0-4b9d-b9e4-8881fb45eea9 {"md5": "0c483c72150f3504a18762224780e4e1", "pid": "106050104X", "note": [{"label": ["Internet - http://www.openstreetmap.org/way/43125912"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/106050104X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)106050104X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)106050104X", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Klingendes Fließ"], "authorized_access_point": "Klingendes Fliess"} 3 -2024-07-16 19:07:47.182576 2024-07-17 06:58:47.219568 c4311ad1-40c8-47e1-836f-f741ef9dff7a {"md5": "675687c82627b5efaa1b31065bd5ffd7", "pid": "1060501457", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060501457", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060501457", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060501457", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Windener Teich"} 3 -2024-07-16 19:07:47.091944 2024-07-17 06:58:47.533514 b2c03785-1065-4de6-9c91-340f9ae3ca39 {"md5": "e4b71568b989943369a62fedc7739d94", "pid": "1060501759", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/Ihne_(Fluss)$vhier erwähnt"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060501759", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060501759", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060501759", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Wesebach (Fluss)"} 3 -2024-07-16 19:07:46.994353 2024-07-17 06:58:47.815738 2be47df5-43ef-4a7d-aa2b-ec0d98b6fc4b {"md5": "b932ee7a5a24821d9b67fd978e00608b", "pid": "1060501902", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/Gettenbach$vhier erwähnt, Artikel zum Ort Gettenbach!"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060501902", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060501902", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060501902", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Gettenbach (Fluss)"} 3 -2024-07-16 19:07:46.906827 2024-07-17 06:58:48.081002 8fdb800e-ec19-40cd-8722-eba196ea8356 {"md5": "834e0a8f43e89e01ed303bae23dbf1ef", "pid": "106050216X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/106050216X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)106050216X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)106050216X", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Weinbach (Fluss)"} 3 -2024-07-16 19:07:46.822334 2024-07-17 06:58:48.34024 56424e76-8734-4b3d-9157-71684610a572 {"md5": "6440fafc2271ff803e967a1e80690065", "pid": "1060502372", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060502372", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060502372", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060502372", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Göstritzbach"} 3 -2024-07-16 19:07:46.745504 2024-07-17 06:58:48.629384 f020eb5e-b7a5-497d-ad7e-3c72894d62bb {"md5": "e69c273c202017a1b7201943b442ade3", "pid": "1060502585", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060502585", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060502585", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060502585", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Lauterwasserbach"} 3 -2024-07-16 20:07:12.229586 2024-07-17 06:57:50.046822 b54ef0ea-834b-49e0-8a0d-ab9945ceef46 {"md5": "ee94bdef08329ce88be6281c7f189e14", "pid": "040754685", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Korea"}], "related": [{"authorized_access_point": "Korea"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4075468-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040754685", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4075468-6", "source": "GND"}], "classification": [{"name": "Nordkoreaner", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Korea (Nord)", "Joseon (1945)", "Jo seon min ju ju eui in min gong hwa gug", "Chosŏn-Minjujuŭi-Inmin-Konghwaguk", "Choson̆ Minjujuuĭ In'min Konghwaguk", "Chosŏn (1945)", "Chosŏn-Inmin-Konghwaguk", "Nord-Korea", "Korea (Nordkorea)", "Demokratische Volksrepublik Korea", "Democratic People's Republic of Korea", "DPRK", "Koreanische Volksdemokratische Republik", "Volksdemokratische Republik (Nordkorea)", "Koreanische Demokratische Volksrepublik", "Demokratische Volksrepublik (Nordkorea)", "Koreanskaja Narodno-Demokratičeskaja Respublika", "KNDR", "Chosun Minshu-Chui Inmim Konghwa-Guk", "République populaire démocratique de Corée"], "authorized_access_point": "Nordkorea"} 3 -2024-07-16 19:07:48.297178 2024-07-17 06:58:43.393333 8aca9b92-0aec-4f2e-b341-e2e92dabb9a7 {"md5": "8987a46beeace5e12c94bdbd52e49aae", "pid": "105914249X", "note": [{"label": ["Geonames - http://www.geonames.org/2750597/mosbeek.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/105914249X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)105914249X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)105914249X", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Mosbeek"} 3 -2024-07-16 19:07:48.12595 2024-07-17 06:58:44.041357 f009eb4a-2356-46c1-80a6-ea360e048857 {"md5": "d81b79b8de24b619b3525cdf6f5c8611", "pid": "1059357755", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1059357755", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1059357755", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1059357755", "source": "GND"}], "authorized_access_point": "Nelson (Neuseeland) (Region)"} 3 -2024-07-16 19:07:48.034512 2024-07-17 06:58:44.320575 c59edbda-90e7-4f47-a6ef-04d731ebd401 {"md5": "c689f9d7b1209236011c88cedad63206", "pid": "1059359022", "note": [{"label": ["Internet - http://www.sprengenbeken.nl/images/15eerbeeksebeek.jpg"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1059359022", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1059359022", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1059359022", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Coldenhovensebeek"} 3 -2024-07-16 19:07:47.9386 2024-07-17 06:58:44.590709 5d9e0960-69c4-4820-be45-b49f48323065 {"md5": "0235c5e16aa39e56da1cec0c94ce99b9", "pid": "1059376946", "note": [{"label": ["Internet - http://www.sprengenbeken.nl/images/15eerbeeksebeek.jpg"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1059376946", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1059376946", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1059376946", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Gravinnebeek"} 3 -2024-07-16 19:07:47.847363 2024-07-17 06:58:44.907372 0f0154dd-6fbc-4c29-a0a6-d0512fcd232a {"md5": "453eef270097c7e2015ad0cfdb439ce9", "pid": "1059378396", "note": [{"label": ["Internet - http://www.sprengenbeken.nl/images/14voorstondsebeek.jpg"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1059378396", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1059378396", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1059378396", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Voorstondse Beek"} 3 -2024-07-16 19:07:47.761529 2024-07-17 06:58:45.183019 e06a8a1b-aa19-4655-aef2-f9387343d4fa {"md5": "8b06809d6d950edd9e42e411e519afa5", "pid": "1059448831", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1059448831", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1059448831", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1059448831", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Piwonkerbach"} 3 -2024-07-16 19:07:47.591906 2024-07-17 06:58:45.796162 c1ee8f32-cb7c-4967-8790-df180c5e337a {"md5": "895405dadb7bfaa01c4fd91917b5fb4f", "pid": "1060132206", "note": [{"label": ["Internet - http://www.anglermap.de/angeln/gewaessersteckbrief_angelkarte.php?id=2546"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Rheda-Wiedenbrück"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060132206", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060132206", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060132206", "source": "GND"}], "classification": [{"name": "Baggersee", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Lintler See"], "authorized_access_point": "Linteler See"} 3 -2024-07-16 19:07:49.128956 2024-07-17 06:58:40.350514 4f0b5066-e3d6-420c-ac87-1852ca552df8 {"md5": "1c893002794f3184b63e2303c3703d47", "pid": "1058918176", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058918176", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058918176", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058918176", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Molecatense Beek"], "authorized_access_point": "Molecatensebeek"} 3 -2024-07-16 19:07:49.039411 2024-07-17 06:58:40.643017 18f2b4cd-6a4d-4f83-ba2a-1b24dfadeb7c {"md5": "b2b0592c5e94eb1fcfebe8102adef073", "pid": "1058919954", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Doornspijk"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058919954", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058919954", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058919954", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Papierbeek"], "authorized_access_point": "Papiermolenbeek (Doornspijk, Fluss)"} 3 -2024-07-16 19:07:48.950329 2024-07-17 06:58:40.925605 45a3e137-18c6-403b-8c2b-abe037d0229a {"md5": "e1ef867251735b947bc46df6ff6124d8", "pid": "1058928732", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058928732", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058928732", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058928732", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Staverdensche Beek"], "authorized_access_point": "Staverdense beek"} 3 -2024-07-16 19:07:48.861775 2024-07-17 06:58:41.182546 51810214-913a-4c24-84bc-19d1c167408f {"md5": "32d08f818ad50a0794d60da0e40391c9", "pid": "105892978X", "note": [{"label": ["Geonames - http://www.geonames.org/2751673/leuvenumse-beek.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/105892978X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)105892978X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)105892978X", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Leuvenumse Beek"} 3 -2024-07-16 19:07:48.76308 2024-07-17 06:58:41.443508 eb0017b1-474b-43ef-9951-e6ba004bcbda {"md5": "2c26ad785431640e8744eb88192b9b4f", "pid": "1058939068", "note": [{"label": ["Geonames - http://www.geonames.org/2754096/hierdensche-beek.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058939068", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058939068", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058939068", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Hierdense beek"], "authorized_access_point": "Hierdensche Beek"} 3 -2024-07-16 19:07:48.679566 2024-07-17 06:58:41.734097 6a90fd5c-fdc4-4f71-b359-5aec21c998d9 {"md5": "0793f7aa84293128ba6eb1059522083a", "pid": "1058973045", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058973045", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058973045", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058973045", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Schoonderbeek"} 3 -2024-07-16 19:07:48.592359 2024-07-17 06:58:42.00958 67751670-fc98-4509-8ff5-f4096bccb214 {"md5": "35158e4504e8e09622671c007c925eea", "pid": "1058984144", "note": [{"label": ["Geonames - http://www.geonames.org/2759405/barneveldsche-beek.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058984144", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058984144", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058984144", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Grote Barneveldsebeek"], "authorized_access_point": "Barneveldsche Beek"} 3 -2024-07-16 19:07:48.502414 2024-07-17 06:58:42.294568 091d15db-50d6-4dd2-8993-7d57efc59701 {"md5": "b9f5f821704cd7451188edaba2b7ab20", "pid": "1058985299", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058985299", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058985299", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058985299", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Papiermolenbeekje"} 3 -2024-07-16 19:07:48.421506 2024-07-17 06:58:42.583941 4c1cae1d-c21a-4cba-9f0b-e5102d3a6753 {"md5": "e8ab8fe7ce4a33e8123207a69c5952f0", "pid": "1058986333", "note": [{"label": ["Geonames - http://www.geonames.org/2756000/esvelderbeek.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058986333", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058986333", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058986333", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Esvelderbeek"} 3 -2024-07-16 20:06:47.178942 2024-07-17 06:57:50.873113 321667c2-4609-438c-b03c-4eb0f97f42ee {"md5": "9c61ed81b63d8b915770d64eba6bfd72", "pid": "040756130", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Österreich"}, {"authorized_access_point": "Ungarn"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4075613-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040756130", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4075613-0", "source": "GND"}], "variant_access_point": ["Österreichisch-Ungarische Monarchie", "Donaumonarchie", "Doppelmonarchie", "Habsburgerreich (1867-1918)", "Habsburgisches Reich (1867-1918)", "Habsburgermonarchie (1867-1918)", "Osztrák-Magyar Birodalom", "Monarchie Austro-Hongroise", "Empire Austro-Hongrois", "Austria-Hungary", "Austrian-Hungarian Monarchy", "Austrian-Hungarian Empire", "Austria-Hungría", "Austria-Ungheria", "Monarchia Austro-Ungarica", "Austro-We̜gry", "Österreich-Ungarische Monarchie", "Österreichisch-Ungarisches Reich", "Osztrák-Magyar Monarchia", "Autriche-Hongrie"], "authorized_access_point": "Österreich-Ungarn"} 3 -2024-07-16 19:07:49.837992 2024-07-17 06:58:37.841714 0e1da936-2ad7-424e-9c8c-0dfdf3089961 {"md5": "ee20b9d28546eda0491618a0b8f7fe4a", "pid": "1058664468", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058664468", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058664468", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058664468", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Groevenbeek"} 3 -2024-07-16 19:07:49.751961 2024-07-17 06:58:38.157357 493f99c4-4612-4128-9ecb-4a3257383aee {"md5": "46097f173a31a1f7121d86d59c33225e", "pid": "1058667343", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058667343", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058667343", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058667343", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Hattemse beek"], "authorized_access_point": "Hartense Molenbeek"} 3 -2024-07-16 19:07:49.670406 2024-07-17 06:58:38.435282 de925a33-7199-442b-b5ef-ac69cc9fbeb0 {"md5": "50c6113473f0fce95d47937835852fc8", "pid": "1058838512", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Vaassen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058838512", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058838512", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058838512", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Nieuwe Beek (Vaassen, Fluss)"} 3 -2024-07-16 19:07:49.582688 2024-07-17 06:58:38.696233 944bed2c-b674-4333-acbc-2273c9eb3194 {"md5": "c2a547f837f421e58a5cea5b6474456d", "pid": "1058840819", "note": [{"label": ["Geonames - http://www.geonames.org/2755688/geelmolensche-beek.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058840819", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058840819", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058840819", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Geelmolense beek"], "authorized_access_point": "Geelmolensche Beek"} 3 -2024-07-16 19:07:49.495819 2024-07-17 06:58:38.964192 52c34024-7210-4614-b29f-bf1e35624b50 {"md5": "7695052cdfe119e5da15c821cf23abb1", "pid": "1058876872", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058876872", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058876872", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058876872", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Dorpse molenbeek", "Dorpermolenbeek"], "authorized_access_point": "Dorpse beek"} 3 -2024-07-16 19:07:49.419931 2024-07-17 06:58:39.227177 5a56958d-7366-4e7e-9ce2-fccec42d8547 {"md5": "02984c516dab5dd84122647d0464be76", "pid": "1058880373", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058880373", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058880373", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058880373", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Heerderbeek"} 3 -2024-07-16 19:07:49.366706 2024-07-17 06:58:39.49677 fb10d4c2-bd9b-45c5-8fcc-ab939b0f517f {"md5": "cc1d7af11533d5f3fc8309bfc4e09102", "pid": "1058890611", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058890611", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058890611", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058890611", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Middelste Heerderbeek"} 3 -2024-07-16 19:07:49.316187 2024-07-17 06:58:39.781049 3dc1c07d-225e-4d9f-9ece-a33d405c97c4 {"md5": "8d45ce50d7a115330178b2def9689920", "pid": "1058896318", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058896318", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058896318", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058896318", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Noordelijke Horsthoeker beek"], "authorized_access_point": "Noordelijke Horsthoekerbeek"} 3 -2024-07-16 19:08:17.077023 2024-07-17 06:57:52.454201 09c907d5-0495-416c-8a13-c0228e849842 {"md5": "f5475a04c1fcf2095e661f8c8fc93472", "pid": "040768996", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Russische SFSR"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4076899-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040768996", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4076899-5", "source": "GND"}], "variant_access_point": ["Rußland", "Krievija", "Federazione Russa", "RF", "Großrussland", "Großrußland", "Russia (-1917; 1992-)", "Rossijskaja Imperija", "Russie", "Empire de Russie", "Russian Federation", "Federacja Rosyjska", "Rosja", "Rossija", "Rossijskaja Federacija", "Russische Föderation", "RF (Rossija)", "Russia", "Russland (-1917 ; 1992-)", "Russisches Reich", "РФ", "Российская Федерация", "Российская Империя"], "authorized_access_point": "Russland"} 4 -2024-07-16 19:07:50.676983 2024-07-17 06:58:34.951237 7bbedda8-0823-43e3-b19a-912d815de585 {"md5": "05bdafd333de06471955f992f831d266", "pid": "1058463993", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Seehausen-Gottscheina"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058463993", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058463993", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058463993", "source": "GND"}], "variant_access_point": ["Gottscheina (Leipzig)"], "authorized_access_point": "Leipzig-Gottscheina"} 3 -2024-07-16 19:07:50.599491 2024-07-17 06:58:35.206996 1b187d43-c721-411c-b274-7e74b3d97b3a {"md5": "cbbf43c885ba98b30b0d3f1f3c21b915", "pid": "1058579045", "note": [{"label": ["Geonames - http://www.geonames.org/2759341/beekbergsche-beek.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058579045", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058579045", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058579045", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Beekbergsebeek"], "authorized_access_point": "Beekbergsche Beek"} 3 -2024-07-16 19:07:50.506766 2024-07-17 06:58:35.475896 172bae23-e0fa-4215-86f7-eca0e16de771 {"md5": "a543b1e1fa43ba36ccc56f6c1c2d96a0", "pid": "1058583018", "note": [{"label": ["Geonames - http://www.geonames.org/2751520/loenensche-beek.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058583018", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058583018", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058583018", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Loenensebeek"], "authorized_access_point": "Loenensche Beek"} 3 -2024-07-16 19:07:50.433872 2024-07-17 06:58:35.758197 d0c0ebfa-8713-4db9-9d4f-2ebe2995e167 {"md5": "405d5485e16de0788ea31fcfe7399ac1", "pid": "1058616579", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058616579", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058616579", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058616579", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Zilvensebeek"} 3 -2024-07-16 19:07:50.383929 2024-07-17 06:58:36.105543 4f787d32-1171-4c99-bcbc-d4bb71137133 {"md5": "13e9ab2f60b3fec62c9495588c889f36", "pid": "1058616684", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058616684", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058616684", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058616684", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Strobroeksbeek"} 3 -2024-07-16 19:07:50.302322 2024-07-17 06:58:36.390944 5b29e999-e7c6-4691-9e0b-17ab1f991b41 {"md5": "2287baf933c2298531e3a9934608bf4b", "pid": "1058622773", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058622773", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058622773", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058622773", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Wittebeek"} 3 -2024-07-16 19:07:50.197145 2024-07-17 06:58:36.698144 ff1e9db5-a2fd-44cd-90e0-ce18f62a336e {"md5": "b802d7043b1dad0f9e5824d444f35c78", "pid": "105863982X", "note": [{"label": ["Geonames - http://www.geonames.org/2748799/paalbeek.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/105863982X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)105863982X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)105863982X", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Paalbeek"} 3 -2024-07-16 19:07:50.108772 2024-07-17 06:58:36.966354 5c56eda3-f2fc-4298-bcad-f5efdad72055 {"md5": "ef09cf2f2b47c6327a7e5a3f16e1a525", "pid": "1058639919", "note": [{"label": ["Geonames - http://www.geonames.org/2746209/tongerensche-beek.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058639919", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058639919", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058639919", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Tongerensche beek"], "authorized_access_point": "Tongerensche Beek"} 3 -2024-07-16 19:08:16.265774 2024-07-17 06:58:02.471654 037dcbbb-b32a-45a1-b9e9-c256120020c7 {"md5": "beb195602f232a21f444cfcf445035f9", "pid": "040967689", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=208609237"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Region Hovedstaden"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4096768-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040967689", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4096768-2", "source": "GND"}], "classification": [{"name": "Amt", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Amt Kopenhagen", "Københavns Amt", "Kopenhagen (Amt)", "København (Amt)", "Københavns Amtskommune"], "authorized_access_point": "Amt København"} 3 -2024-07-16 19:07:51.553094 2024-07-17 06:58:31.833035 c79cda77-c53f-4928-9a37-409886f38113 {"md5": "d577618063d1bb4aaa4ae2e50fdc868e", "pid": "1054611041", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1054611041", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1054611041", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1054611041", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Giersdorfer Wasser"} 3 -2024-07-16 19:07:51.482816 2024-07-17 06:58:32.12228 af0f642c-30ca-4a09-89bb-568d2f1903fe {"md5": "e29f6f43c94fbbd445de2fc7fc749c5b", "pid": "1054631026", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1054631026", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1054631026", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1054631026", "source": "GND"}], "classification": [{"name": "Bengalen", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Bengal"], "authorized_access_point": "Bengalen"} 3 -2024-07-16 19:07:51.36661 2024-07-17 06:58:32.716306 46bafe21-da38-42a7-8ac7-df4d639f762c {"md5": "7a7ae4ef9e6df9e143b720a137911131", "pid": "1055068716", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/Kosov%C3%BD_potok"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1055068716", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1055068716", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1055068716", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Kosí potok", "Amselbach"], "authorized_access_point": "Kosový potok"} 3 -2024-07-16 19:07:51.279762 2024-07-17 06:58:33.025556 2249c6b8-00b0-46fb-8bc2-b2c13bf4f7e0 {"md5": "32d3255c5df0211fee86a36479ab6e53", "pid": "1056973714", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/Sauberg_(Erzgebirge)"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Erzgebirge"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1056973714", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1056973714", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1056973714", "source": "GND"}], "classification": [{"name": "Berg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Sauberg (Erzgebirge, Berg)"} 3 -2024-07-16 19:07:51.185111 2024-07-17 06:58:33.277973 632469b5-b4db-4b70-b222-efdec4097ece {"md5": "1dbcfaa2ab66e64560befe16584e1258", "pid": "1057942928", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Grünberg (Landkreis Gießen)"}, {"authorized_access_point": "Lumda"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1057942928", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1057942928", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1057942928", "source": "GND"}], "variant_access_point": ["Grünberg (Landkreis Gießen-Lumda)", "Lumda (Grünberg-Lumda)"], "authorized_access_point": "Grünberg-Lumda"} 3 -2024-07-16 19:07:51.010949 2024-07-17 06:58:33.863781 611b9eac-7032-4dfd-a782-570ff37503af {"md5": "cef58e35ef4054abc8ec791227cae9f1", "pid": "1058395726", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058395726", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058395726", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058395726", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Ugchelsebeek"} 3 -2024-07-16 19:07:50.931291 2024-07-17 06:58:34.120211 1456c17a-7535-45a6-bbec-11182d5e0a99 {"md5": "d813c55ff918a76e4a98a1ccad029050", "pid": "1058460293", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058460293", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058460293", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058460293", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Winkewijert"} 3 -2024-07-16 19:08:13.667652 2024-07-17 06:58:15.391896 f9f73e07-b23c-4aaf-8782-7a7c7e9d485f {"md5": "722057c896453e0b7484114d56e2ca5a", "pid": "042778352", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Kart%C3%A4userkirche_(K%C3%B6ln)&oldid=237820855"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Köln"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4277835-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042778352", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4277835-9", "source": "GND"}], "classification": [{"name": "Klosterkirche", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Kirchenbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Sankt Barbara (Köln)", "Evangelische Pfarrkirche St. Barbara (Köln)", "Evangelische Pfarrkirche Sankt Barbara (Köln)"], "authorized_access_point": "Kartäuserkirche (Köln)"} 3 -2024-07-16 19:07:53.54463 2024-07-17 06:58:24.968557 9b9758d3-20ee-4a43-a86e-f25b13db7276 {"md5": "39b25e757d39b37b479bea5fdb2bb674", "pid": "1028231660", "note": [{"label": ["wikipedia - https://en.wikipedia.org/w/index.php?title=Upyt%C4%97&oldid=1181420912"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Kreis Panevėžys"}, {"authorized_access_point": "Upytė"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1028231660", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1028231660", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1028231660", "source": "GND"}], "classification": [{"name": "Amtsbezirk", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Upytės seniūnija"], "authorized_access_point": "Amtsbezirk Upytė"} 3 -2024-07-16 19:07:52.226048 2024-07-17 06:58:29.555951 25c05139-5146-4210-84dd-e08e1ccc5253 {"md5": "1ca6e8fded7e4a74ab81ccd894b4711f", "pid": "105366916X", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/Collegium_St._Hieronymi"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Dillingen a.d. Donau"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/105366916X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)105366916X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)105366916X", "source": "GND"}], "classification": [{"name": "Kollegiengebäude", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Gebäude des ehemaligen Jesuitenkollegs (Dillingen a.d. Donau)"], "authorized_access_point": "Kollegiengebäude des Collegium Sancti Hieronymi (Dillingen a.d. Donau)"} 3 -2024-07-16 19:07:52.141441 2024-07-17 06:58:29.849782 3850ac18-21ae-4a2f-a053-56d44d617d7d {"md5": "e3acfd82d232fd0b3988037cc1faacad", "pid": "1053694857", "note": [{"label": ["Private Seiten - http://www.schlossgarten-oldenburg.de"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Oldenburg (Oldenburg)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1053694857", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1053694857", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1053694857", "source": "GND"}], "classification": [{"name": "Landschaftsgarten", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Schlosspark Oldenburg (Oldenburg (Oldenburg))"], "authorized_access_point": "Schlossgarten Oldenburg (Oldenburg (Oldenburg))"} 3 -2024-07-16 19:07:51.979128 2024-07-17 06:58:30.512984 16ab6415-1285-40a5-b85e-3ba55a629462 {"md5": "67f227e86cbeb7127f141649a10bcfb0", "pid": "105382467X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/105382467X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)105382467X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)105382467X", "source": "GND"}], "authorized_access_point": "Vogtländische Schweiz"} 3 -2024-07-16 19:07:51.808715 2024-07-17 06:58:31.003118 a9c0387a-3564-432f-ad50-bfad2619cfbc {"md5": "d790beba43cb017b86a98cf1a957fdaa", "pid": "1054036489", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1054036489", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1054036489", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1054036489", "source": "GND"}], "authorized_access_point": "Bruntál (Region)"} 3 -2024-07-16 19:07:51.724302 2024-07-17 06:58:31.293651 a40646f3-c04a-4597-9c65-251a1a5349a4 {"md5": "da71a4e1f705e79dd6b908b9ee19ed2b", "pid": "1054382255", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1054382255", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1054382255", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1054382255", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Krauthausener Mühlenteich"], "authorized_access_point": "Krauthausener Teich"} 3 -2024-07-16 19:07:51.890539 2024-07-17 06:58:30.75486 78463071-c8a7-4aca-94be-fe5d3ea4bf2d {"md5": "40c375b853a99a1edef9fff95e5eab97", "pid": "1054036322", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1054036322", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1054036322", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1054036322", "source": "GND"}], "variant_access_point": ["Krnovsko", "Jägerndorf (Region)", "Śląsk Karniowski"], "authorized_access_point": "Krnov (Region)"} 3 -2024-07-16 19:07:52.980564 2024-07-17 06:58:26.911226 1222ec9e-1c24-4cd3-913e-b2bec42b3bee {"md5": "a19d2abbb4cb82132f830f716e96827f", "pid": "1036573141", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1036573141", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1036573141", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1036573141", "source": "GND"}], "authorized_access_point": "Friedrichslohra und Amtlohra (Region)"} 3 -2024-07-16 19:07:52.815644 2024-07-17 06:58:27.550216 bc943bfe-a0fb-49f7-aa05-5938f6c6c13d {"md5": "87670fe5e3edabecb5a3abe588a24ac4", "pid": "1038831628", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/Immichenhain"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Ottrau-Immichenhain"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1038831628", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1038831628", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1038831628", "source": "GND"}], "variant_access_point": ["Imchenhain"], "authorized_access_point": "Immichenhain"} 3 -2024-07-16 19:07:52.641967 2024-07-17 06:58:28.144426 89da5953-5944-4c8a-a627-909187cd34bd {"md5": "aa31a5f02d0291e09beb57ce923a3960", "pid": "1051746663", "note": [{"label": ["Kunstdenkmäler CH"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Zürich"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1051746663", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1051746663", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1051746663", "source": "GND"}], "classification": [{"name": "Seidenindustrie", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Fabrikgebäude", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Vereinsgebäude", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Geschäftshaus", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Alt Seidenhof (Zürich)"], "authorized_access_point": "Alter Seidenhof (Zürich)"} 3 -2024-07-16 19:07:52.556096 2024-07-17 06:58:28.392165 2a3ffa5b-e915-4d32-b953-033b4ed0a983 {"md5": "b99f3c32e15e6da8ba5087144b5d68cd", "pid": "1053460856", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Rhamnus (Attika)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1053460856", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1053460856", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1053460856", "source": "GND"}], "classification": [{"name": "Kultstätte", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Thesmophorion (Rhamnus, Attika)"} 3 -2024-07-16 19:07:52.472963 2024-07-17 06:58:28.687604 4762aae2-039a-434b-ac0c-fd10dfa7a10e {"md5": "0db58bfd3ff1712fb8721bd3201c997b", "pid": "1053495382", "note": [{"label": ["Wikipedia unter Süssenguth, Georg - http://de.wikipedia.org/wiki/Georg_S%C3%BC%C3%9Fenguth"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Hamburg"}, {"authorized_access_point": "Hamburg-Altona"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1053495382", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1053495382", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1053495382", "source": "GND"}], "classification": [{"name": "Museumsbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Museumsbau Museum Altona (Hamburg)", "Museumsgebäude des Museums Altona (Hamburg-Altona)"], "authorized_access_point": "Museumsbau des Altonaer Museums (Hamburg)"} 3 -2024-07-16 19:07:52.417629 2024-07-17 06:58:28.992288 7023000e-559d-44bb-b83a-bc797cf379e5 {"md5": "65236b022414ae9a09e0e579fce27032", "pid": "1053578571", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Augsburg"}], "related": [{"authorized_access_point": "Fuggerhäuser"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1053578571", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1053578571", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1053578571", "source": "GND"}], "classification": [{"name": "Kabinett", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Studiolo", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Fuggerhäuser (Badezimmer)", "Fuggerhäuser Augsburg, Badestuben"], "authorized_access_point": "Fuggerhäuser (Badstuben)"} 3 -2024-07-16 19:07:52.320829 2024-07-17 06:58:29.272422 90d38804-6c3a-4804-9eb8-9aadbff025f9 {"md5": "82c87e1a11121e5dbdc9bcb2f8f008d3", "pid": "1053585039", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Lübeck"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1053585039", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1053585039", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1053585039", "source": "GND"}], "classification": [{"name": "Giebelhaus", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Bürgerhaus", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Dielenhaus Fleischhauerstraße 79 (Lübeck)"], "authorized_access_point": "Fleischhauerstraße 79 (Lübeck)"} 3 -2024-07-16 19:07:50.769645 2024-07-17 06:58:34.672829 a3ec97a5-cba9-4629-821a-269e3b314ddd {"md5": "4e65375568fa5301755f4baad34a7165", "pid": "1058463896", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Hohenheida"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Seehausen-Hohenheida"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058463896", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058463896", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058463896", "source": "GND"}], "variant_access_point": ["Hohenheida (Leipzig)"], "authorized_access_point": "Leipzig-Hohenheida"} 3 -2024-07-16 19:07:52.729919 2024-07-17 06:58:27.849726 605be72f-525e-4eb7-9cba-0453a4fd22b8 {"md5": "94ddda81e4db64ddad6e5542a23d2a4f", "pid": "1044268069", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Kreis Panevėžys"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1044268069", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1044268069", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1044268069", "source": "GND"}], "variant_access_point": ["Juodupe", "Pojedupie"], "authorized_access_point": "Juodupė"} 3 -2024-07-16 19:07:53.499727 2024-07-17 06:58:25.240555 fd7df2b6-d012-47e5-b9e6-f7393e5a3bfb {"md5": "f02354a66646a5bfa84787334bfbb149", "pid": "1029388334", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Neureudnitz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1029388334", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1029388334", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1029388334", "source": "GND"}], "variant_access_point": ["Neureudnitz (Leipzig)"], "authorized_access_point": "Leipzig-Neureudnitz"} 3 -2024-07-16 19:07:53.436487 2024-07-17 06:58:25.498408 8024be1c-a765-48c7-8bd0-e0ffc4e53562 {"md5": "dfe8ba029aa8694d1813e0ebb8725b18", "pid": "1029389233", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Neusellerhausen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1029389233", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1029389233", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1029389233", "source": "GND"}], "variant_access_point": ["Neusellerhausen (Leipzig)"], "authorized_access_point": "Leipzig-Neusellerhausen"} 3 -2024-07-16 19:07:53.350206 2024-07-17 06:58:25.760427 976cebd1-5b58-479d-a607-e99fccdd236f {"md5": "b02c6f387b41edc657f29d3b7ae09674", "pid": "1029389896", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Sellerhausen&oldid=231774300"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Sellerhausen"}, {"authorized_access_point": "Leipzig-Sellerhausen-Stünz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1029389896", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1029389896", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1029389896", "source": "GND"}], "variant_access_point": ["Sellerhausen (Leipzig)"], "authorized_access_point": "Leipzig-Sellerhausen"} 3 -2024-07-16 19:07:53.243412 2024-07-17 06:58:26.019899 1138a552-22dd-42f0-ab13-105924f36d4c {"md5": "e9572c2a4f24d4cef7a7f1677fc15a25", "pid": "1031571922", "note": [{"label": ["Homepage - http://www.gelgaudiskis.lt/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1031571922", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1031571922", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1031571922", "source": "GND"}], "variant_access_point": ["Gelgaudiskis", "Giełgudyszki", "Gelʹgudiški"], "authorized_access_point": "Gelgaudiškis"} 3 -2024-07-16 19:07:53.152877 2024-07-17 06:58:26.319029 bb13ee95-7f84-4762-b35d-5c222b11cd77 {"md5": "4e465c09f06ac6c821e50424269fef0f", "pid": "1032436034", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Nümbrecht"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1032436034", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1032436034", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1032436034", "source": "GND"}], "classification": [{"name": "Kirchenbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Ev. Kirche Nümbrecht (Nümbrecht)"], "authorized_access_point": "Evangelische Kirche Nümbrecht (Nümbrecht)"} 3 -2024-07-16 19:07:53.065348 2024-07-17 06:58:26.630577 a1817c49-e136-4a6c-8bc1-8e5f3a127360 {"md5": "5a56aafcbf8e0b995bd8bfa5d8347169", "pid": "1035487640", "note": [{"label": ["Internet - https://www.salzkoerner.de/?page_id=525"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Waldbreitbach"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1035487640", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1035487640", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1035487640", "source": "GND"}], "classification": [{"name": "Basilika", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Kath. Pfarrkirche Mariä Himmelfahrt (Waldbreitbach)", "Katholische Pfarrkirche Mariä Himmelfahrt (Waldbreitbach)", "Pfarrkirche Maria Himmelfahrt (Waldbreitbach)", "Kirche Maria Himmelfahrt (Waldbreitbach)", "Mariä Himmelfahrt (Waldbreitbach)"], "authorized_access_point": "Maria Himmelfahrt (Waldbreitbach)"} 3 -2024-07-16 19:07:49.918665 2024-07-17 06:58:37.569653 115fcb8f-1ca1-473c-b5c8-838db79a6ac5 {"md5": "c08a38f2fbac1a9e4556dff40c1df048", "pid": "1058661396", "note": [{"label": ["Geonames - http://www.geonames.org/6951330/nijmolense-beek.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058661396", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058661396", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058661396", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Nijmolense beek", "Nijmolenschebeek"], "authorized_access_point": "Nijmolense Beek"} 3 -2024-07-16 19:07:47.328511 2024-07-17 06:58:46.633003 be34b22c-f1f6-43bb-b926-0dcae5a577dd {"md5": "59ed00160f68f429169e9ce3a0d05602", "pid": "1060419319", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/Konstanzer_Ach#Anker:Gunzesrieder_Ach"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060419319", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060419319", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060419319", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Konstanzer Ach"} 3 -2024-07-16 19:07:46.461757 2024-07-17 06:58:49.43386 bb088e04-dcb0-4e58-8066-60d392bf69fe {"md5": "63d108bf71364e4a7e15c36ffc89ad59", "pid": "1060503166", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060503166", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060503166", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060503166", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Gränzbach"} 3 -2024-07-16 19:07:54.706339 2024-07-17 06:58:21.22992 58162bdc-95fe-4cfe-9743-f39c6404b57f {"md5": "9cf478f42c77237bb955c138a430ae00", "pid": "1020865237", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7860429-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1020865237", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7860429-1", "source": "GND"}], "variant_access_point": ["Ignalinos kraštas", "Ignalinskij kraj"], "authorized_access_point": "Ignalina (Region)"} 3 -2024-07-16 19:07:54.619688 2024-07-17 06:58:21.476667 eedfe271-49c1-41bf-8e2d-58811cdbabe0 {"md5": "60022fdb51b9b3e0e9c80d18750135a3", "pid": "1020865318", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7860430-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1020865318", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7860430-8", "source": "GND"}], "authorized_access_point": "Ignalina"} 3 -2024-07-16 19:07:54.545221 2024-07-17 06:58:21.759587 d162af90-abf5-4415-a940-6388276a27ca {"md5": "08d370233ce4d254e8f9e899634a739d", "pid": "1020897236", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7860645-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1020897236", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7860645-7", "source": "GND"}], "classification": [{"name": "Kreis", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Varėnos rajonas", "Varėna (Kreis)"], "authorized_access_point": "Kreis Varėna"} 3 -2024-07-16 19:07:54.4894 2024-07-17 06:58:22.032547 8d21faa7-02af-47d9-8d96-29402fde1728 {"md5": "31cc71f45761b9f83b9597831644fab0", "pid": "1020897325", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7860647-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1020897325", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7860647-0", "source": "GND"}], "classification": [{"name": "Kreis", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Jonavas rajonas", "Jonava (Kreis)"], "authorized_access_point": "Kreis Jonava"} 3 -2024-07-16 19:07:54.401118 2024-07-17 06:58:22.284386 570aef3f-74ce-446c-bf21-b9c0a01cd049 {"md5": "bd1e906c23c587d8c62475d35a01c55a", "pid": "1020911026", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7860862-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1020911026", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7860862-4", "source": "GND"}], "authorized_access_point": "Ke̜staičiai"} 3 -2024-07-16 19:07:54.313699 2024-07-17 06:58:22.538798 b42a9118-dee1-48f1-8367-2239f0c44f38 {"md5": "27e60a7c75968f7c9d124336ddbc23bd", "pid": "1020911344", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7860874-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1020911344", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7860874-0", "source": "GND"}], "classification": [{"name": "Kreis", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Radviliškio rajonas", "Radviliškis (Kreis)"], "authorized_access_point": "Kreis Radviliškis"} 3 -2024-07-16 19:07:54.230018 2024-07-17 06:58:22.80811 b9090f6a-6c38-4706-8e42-73e742266fa7 {"md5": "142f50fa220f2209c6ccb198c6830150", "pid": "1020911387", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7860875-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1020911387", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7860875-2", "source": "GND"}], "authorized_access_point": "Kuršiai (Kelme)"} 3 -2024-07-16 19:07:54.142072 2024-07-17 06:58:23.071876 a097bf96-0aa3-475b-ab73-873846f3573b {"md5": "20d31449a5eec249b674abf6383cc715", "pid": "1021056154", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7861291-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1021056154", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7861291-3", "source": "GND"}], "classification": [{"name": "Tal", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Wadi Al-Aqiq", "Wadi Al-Aqeeq"], "authorized_access_point": "Wādī al-ʿAqīq"} 3 -2024-07-16 19:07:54.056977 2024-07-17 06:58:23.34129 4f73ae18-8681-4cb4-8e66-8e3af7c6a69f {"md5": "39f0fa4071b9dc00395a25bc11c42bab", "pid": "1021112216", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7861831-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1021112216", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7861831-9", "source": "GND"}], "classification": [{"name": "Amt", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Marcinkoniu̜ seniūnija", "Marcinkonys (Amt)"], "authorized_access_point": "Amt Marcinkonys"} 3 -2024-07-16 19:07:53.963391 2024-07-17 06:58:23.61553 e65b472c-2be6-4c04-977a-0b4f04a4c6e4 {"md5": "10632df39552faf1b9535852170e3b1a", "pid": "1021112518", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7861835-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1021112518", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7861835-6", "source": "GND"}], "authorized_access_point": "Karklėnai"} 3 -2024-07-16 19:07:53.883493 2024-07-17 06:58:23.874422 8ca0e3de-ff99-43f3-970b-fce986404f5c {"md5": "a818c8285db798c940b085bf885cb658", "pid": "1021112577", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7861838-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1021112577", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7861838-1", "source": "GND"}], "variant_access_point": ["Kaltanenay", "Kaltinėnai", "Kołtyniany", "Koltynyany"], "authorized_access_point": "Kaltanėnai"} 3 -2024-07-16 19:07:45.375086 2024-07-17 06:58:53.10313 bf9f3ed2-2b67-4819-958a-33b077aba771 {"md5": "6f79fb583bbb5a0944c0e6069fc301ca", "pid": "1064960243", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Hirschfeld-Kleinpösna"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1064960243", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1064960243", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1064960243", "source": "GND"}], "variant_access_point": ["Kleinpösna (Leipzig)"], "authorized_access_point": "Leipzig-Kleinpösna"} 3 -2024-07-16 19:07:55.648014 2024-07-17 07:01:28.207224 7cd47c1d-270c-4bd5-97e7-0a333660c82d {"md5": "dd65ed460b2e069e667983a31ecf2e10", "pid": "996155910", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Chocian%C3%B3w&oldid=245141308"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Chocianów"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16019456-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)996155910", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)16019456-8", "source": "GND"}], "authorized_access_point": "Kotzenau"} 3 -2024-07-16 19:07:55.246269 2024-07-17 06:58:19.610766 0aadb2cb-cb68-4cd3-8e29-502435e26a80 {"md5": "bc91406084d82f45749a373c16166eb9", "pid": "1009707922", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Heringsdorf (Kreis Ostholstein)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16098098-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1009707922", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)16098098-7", "source": "GND"}], "variant_access_point": ["Siggen (Heringsdorf, Kreis Ostholstein)"], "authorized_access_point": "Heringsdorf-Siggen"} 3 -2024-07-16 19:07:55.064329 2024-07-17 06:58:20.117623 ce792a6c-8789-40ed-a481-ba706f4f9b16 {"md5": "58d8a649bb7f2eb3b26d2ef139eecdf2", "pid": "1010249460", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7736522-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1010249460", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7736522-7", "source": "GND"}], "variant_access_point": ["Dihok", "Dahūk", "Duhūk", "Dihuk", "Dahok", "Dahuk", "Duhok", "Dohuk", "دهوك"], "authorized_access_point": "Dihōk"} 3 -2024-07-16 19:07:44.29475 2024-07-17 06:58:56.734169 d9d92dd0-af3a-4064-a36e-effd9c2c770e {"md5": "b1c8768356723e2571a8dbac244abd63", "pid": "107283314X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Hausen am Albis"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/107283314X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)107283314X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)107283314X", "source": "GND"}], "classification": [{"name": "Kurgebäude", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Heilbad", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Kaltwasser-Heilanstalt Albisbrunn (Hausen am Albis)", "Wasser-Heil-Anstalt Albisbrunn (Hausen am Albis)", "Bad Albisbrunn (Hausen am Albis)"], "authorized_access_point": "Wasserheilanstalt Albisbrunn (Hausen am Albis)"} 3 -2024-07-16 19:07:56.577459 2024-07-17 07:01:25.031168 de438acf-81bf-4a06-958a-f3923be628a6 {"md5": "d3391cbb9eaf7b094e253bb46c1e8d2f", "pid": "978966228", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Herzogtum Preußen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7521235-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)978966228", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7521235-3", "source": "GND"}], "variant_access_point": ["Preußen (Herzogtum) (Ost)"], "authorized_access_point": "Herzogtum Preußen (Ost)"} 3 -2024-07-16 19:07:55.421897 2024-07-17 06:58:19.042029 a1099e96-ade3-4ba2-a0a0-c4cd57a84a92 {"md5": "62807d461396206ccdd0e2ae3181336e", "pid": "1002427517", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Kreis-Direktion Leipzig"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16065257-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1002427517", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)16065257-1", "source": "GND"}], "variant_access_point": ["Leipziger Creyß", "Leipzigischer Creyß", "Leipzigischer Kreis", "Leipziger Kreis", "Forum für Wissenschaft und Kunst"], "authorized_access_point": "Leipziger Creis"} 3 -2024-07-16 19:07:55.152021 2024-07-17 06:58:19.860771 04a77b0f-89c8-4a11-b562-f9da18723cec {"md5": "14af0bd095f98c9bad0d7def3f0b1016", "pid": "1009847430", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Holzhausen_II&oldid=146144601"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Hille"}, {"authorized_access_point": "Holzhausen II"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7733190-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1009847430", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7733190-4", "source": "GND"}], "authorized_access_point": "Hille- Holzhausen II"} 3 -2024-07-16 19:07:55.573944 2024-07-17 07:01:28.502047 3e135bb5-550c-454b-a2ee-ed9e42d6db9e {"md5": "656a3d9bc3267e0deba1659c81203b3a", "pid": "996588051", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Böhlitz-Ehrenberg"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7672378-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)996588051", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7672378-1", "source": "GND"}], "variant_access_point": ["Böhlitz-Ehrenberg (Leipzig)"], "authorized_access_point": "Leipzig-Böhlitz-Ehrenberg"} 3 -2024-07-16 19:07:56.393693 2024-07-17 07:01:25.608373 b02705ce-351b-48ce-aee5-3f4709485111 {"md5": "f9c413f48ca1b0aedd91d5e66dcd6839", "pid": "980891248", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10145481-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)980891248", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)10145481-8", "source": "GND"}], "classification": [{"name": "Bezirk", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Bezirk Judenburg", "Judenburg (Politischer Bezirk)"], "authorized_access_point": "Politischer Bezirk Judenburg"} 3 -2024-07-16 19:07:56.308125 2024-07-17 07:01:25.911032 d79ef32f-6801-45cd-b6a4-b21be803c33c {"md5": "b93a96e377c2d83cd605f33de9427342", "pid": "984645942", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10172109-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)984645942", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)10172109-2", "source": "GND"}], "authorized_access_point": "Leipzig-Südost"} 3 -2024-07-16 19:07:56.119081 2024-07-17 07:01:26.46677 20846c84-a01e-40a0-9257-115ea56bab49 {"md5": "a516f74101379d425c3e289d1fc9c063", "pid": "98831326X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Heringsdorf (Seebad)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7608819-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)98831326X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7608819-4", "source": "GND"}], "classification": [{"name": "Pavillon", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Ausstellungsbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Kunstpavillon (Heringsdorf, Seebad)"} 3 -2024-07-16 19:07:55.824005 2024-07-17 07:01:27.642773 90696ea3-bf70-41a0-accd-e1187f3b3ebc {"md5": "44f916c5ccb5f36de416610cdd977b43", "pid": "994536666", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Zuckelhausen&oldid=234613791"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Holzhausen-Zuckelhausen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7660336-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)994536666", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7660336-2", "source": "GND"}], "variant_access_point": ["Zuckelhausen (Leipzig)"], "authorized_access_point": "Leipzig-Zuckelhausen"} 3 -2024-07-16 19:07:55.734963 2024-07-17 07:01:27.942615 bb9a7318-ad01-480d-a198-198dad8d51b8 {"md5": "2b74334de1abd1fb9f101e69642194d4", "pid": "995191506", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Grünberg (Landkreis Gießen)"}, {"authorized_access_point": "Queckborn"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16014739-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)995191506", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)16014739-6", "source": "GND"}], "variant_access_point": ["Grünberg (Landkreis Gießen-Queckborn)", "Queckborn (Grünberg-Queckborn)"], "authorized_access_point": "Grünberg-Queckborn"} 3 -2024-07-16 19:07:55.920532 2024-07-17 07:01:27.070257 101f6b76-7d59-4564-b6c1-42afdb368085 {"md5": "8513c7521182336433bfc40af6f838bb", "pid": "992346371", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7642802-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992346371", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7642802-3", "source": "GND"}], "variant_access_point": ["Dubc", "Rietschen-Daubitz"], "authorized_access_point": "Daubitz"} 3 -2024-07-16 19:07:57.299372 2024-07-17 07:01:22.358542 046ff7e1-00d5-41b9-8ba3-fcfafd2b1b30 {"md5": "43e63aa0e292f04f06f0078500d09cda", "pid": "973040149", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4806060-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)973040149", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4806060-4", "source": "GND"}], "authorized_access_point": "Riad (Region)"} 3 -2024-07-16 19:07:57.215196 2024-07-17 07:01:22.644987 20bc6cdc-cb4f-4595-907c-be0294ce8176 {"md5": "30cd14cff92fa7d9e47570f47c77f436", "pid": "973066245", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Saudi-Arabien"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4806334-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)973066245", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4806334-4", "source": "GND"}], "authorized_access_point": "Saudi-Arabien (Nord)"} 3 -2024-07-16 19:07:57.13402 2024-07-17 07:01:22.953321 95a2d795-20e2-4bcf-882a-d4f8c947f7c8 {"md5": "da15375a06a709dd5d5ffe618d1fabce", "pid": "973066261", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Saudi-Arabien"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4806336-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)973066261", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4806336-8", "source": "GND"}], "authorized_access_point": "Saudi-Arabien (Nordost)"} 3 -2024-07-16 19:07:57.049517 2024-07-17 07:01:23.249349 8044bad9-89fe-47e3-b994-3c9bac1ceb5f {"md5": "c7db19dd69ee1d26c8adf06cc9441d7a", "pid": "973071648", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4806526-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)973071648", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4806526-2", "source": "GND"}], "authorized_access_point": "Rayyis (Region)"} 3 -2024-07-16 19:07:56.867686 2024-07-17 07:01:23.837314 979030bf-ef46-4421-ae43-a17f59ef9329 {"md5": "3beef116753801a76a5f23f1961ac443", "pid": "974245747", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Amt Haderslev"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4821311-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)974245747", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4821311-1", "source": "GND"}], "variant_access_point": ["Amt Hadersleben (West)", "Hadersleben (Amt) (West)"], "authorized_access_point": "Amt Haderslev (West)"} 3 -2024-07-16 19:07:56.784108 2024-07-17 07:01:24.123965 78cb2e58-7ccf-4221-a8d4-a05d71958421 {"md5": "9d509bc21475c8a34f0e10e6514e6dee", "pid": "975328573", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Heringsdorf"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Ahlbeck (Seebad)"}, {"authorized_access_point": "Bansin"}, {"authorized_access_point": "Heringsdorf (Seebad)"}, {"authorized_access_point": "Heringsdorf (Seebad)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10106723-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)975328573", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)10106723-9", "source": "GND"}], "variant_access_point": ["Gemeinde Dreikaiserbäder"], "authorized_access_point": "Dreikaiserbäder"} 3 -2024-07-16 19:07:56.698836 2024-07-17 07:01:24.40098 301ce552-ea06-47ab-be58-161530b510f8 {"md5": "07963c19369221e3586fc83f4d2dcbb3", "pid": "975958925", "note": [{"label": ["Homepage - http://www.baeriswil.ch"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Bern"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4837436-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)975958925", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4837436-2", "source": "GND"}], "variant_access_point": ["Gemeinde Bäriswil", "Einwohnergemeinde Bäriswil"], "authorized_access_point": "Bäriswil (Bern)"} 3 -2024-07-16 19:07:56.627967 2024-07-17 07:01:24.730011 554212c1-affd-412b-8c0f-567ed3e4a828 {"md5": "188d56c504a7a5d7900c114a48690dc2", "pid": "978923855", "note": [{"label": ["Homepage - http://www.leipzig-lexikon.de/KOMMGLIE/KK_KH.HTM"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10131913-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)978923855", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)10131913-7", "source": "GND"}], "variant_access_point": ["Knautkleeberg-Knauthain"], "authorized_access_point": "Leipzig-Knautkleeberg-Knauthain"} 3 -2024-07-16 19:07:57.984324 2024-07-17 07:01:19.364349 85a4031f-82ce-4c9b-8d50-6c5b7f019d3c {"md5": "507e14607c699f2944cfc2d4006baff2", "pid": "967681952", "note": [{"label": ["Homepage - https://www.oetigheim.de/", "Wikipedia - https://de.wikipedia.org/w/index.php?title=%C3%96tigheim&oldid=246016894"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4732923-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)967681952", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4732923-3", "source": "GND"}], "variant_access_point": ["Gemeinde Ötigheim"], "authorized_access_point": "Ötigheim"} 3 -2024-07-16 19:07:57.904581 2024-07-17 07:01:19.688798 cb204431-5898-4f8a-8f6a-cc00693da70b {"md5": "85423fa53ebc7bae0fde3f50b9ede918", "pid": "967753546", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4734021-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)967753546", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4734021-6", "source": "GND"}], "variant_access_point": ["Sīhāt", "Saihāt"], "authorized_access_point": "Sayhāt"} 3 -2024-07-16 19:07:57.738731 2024-07-17 07:01:20.576929 93a1a702-437b-4601-aba2-e866cbf08c81 {"md5": "5cca7318833960374151fd49506f67fe", "pid": "969971028", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4764706-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)969971028", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4764706-1", "source": "GND"}], "variant_access_point": ["Sākākah", "Skāka", "Sakāka"], "authorized_access_point": "Sakaka"} 3 -2024-07-16 19:07:57.681119 2024-07-17 07:01:20.885055 61ff269a-98c1-4d2b-ae75-cd8b298f29c8 {"md5": "17f9796fc2706622dba225e5d26483a6", "pid": "970139470", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Anjouan (Insel)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4766737-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)970139470", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4766737-0", "source": "GND"}], "authorized_access_point": "Anjouan (Insel) (Nord)"} 3 -2024-07-16 19:07:57.628206 2024-07-17 07:01:21.145614 a8a75258-7de0-4deb-beac-bd7a718838b0 {"md5": "788094b3dd33d33a9126b236c624f171", "pid": "971359709", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4781902-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)971359709", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4781902-9", "source": "GND"}], "classification": [{"name": "Bezirk", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Amt Bern", "Amtsbezirk Bern", "Bern (Bezirk)"], "authorized_access_point": "Bezirk Bern"} 3 -2024-07-16 19:07:57.464969 2024-07-17 07:01:21.76661 f0eb8f20-7583-480c-b774-30f185ff508e {"md5": "41c3e4005a9a84bd133cc142c49a4510", "pid": "972586601", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Hainburg an der Donau"}], "related": [{"authorized_access_point": "Wolfsthal-Berg"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4800591-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)972586601", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4800591-5", "source": "GND"}], "authorized_access_point": "Berg (Hainburg an der Donau)"} 3 -2024-07-16 19:07:57.379959 2024-07-17 07:01:22.033556 6da9ded6-339e-408a-8524-8af6e03640ee {"md5": "e13ce9beccb1e86cbb58c8f5db6dd832", "pid": "972651438", "note": [{"label": ["Homepage - http://www.kirchstetten.at"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Neulengbach"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4801892-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)972651438", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4801892-2", "source": "GND"}], "variant_access_point": ["Marktgemeinde Kirchstetten", "Dichtergemeinde Kirchstetten"], "authorized_access_point": "Kirchstetten (Neulengbach)"} 3 -2024-07-16 19:07:57.817645 2024-07-17 07:01:20.29368 592356f2-985c-408e-9e1c-5d7a52433e9f {"md5": "013c2ed04e336f224c6844f2fcac29d3", "pid": "969491131", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4758499-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)969491131", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4758499-3", "source": "GND"}], "variant_access_point": ["Ušaiqir"], "authorized_access_point": "Ushayqir"} 3 -2024-07-16 19:07:58.606426 2024-07-17 07:01:17.267003 707e5972-908d-49a8-aadb-7b51e94a04a7 {"md5": "0d6704d15962397a055fb49614a00304", "pid": "965759059", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Leipzig-Neustadt"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4710355-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)965759059", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4710355-3", "source": "GND"}], "variant_access_point": ["Neustadt-Neuschönefeld (Leipzig)"], "authorized_access_point": "Leipzig-Neustadt-Neuschönefeld"} 3 -2024-07-16 19:07:58.521302 2024-07-17 07:01:17.625651 2e9baa8d-4dcc-4abe-8a82-a2a30a39865d {"md5": "bccb95ce32ab851915ea2c24841d5490", "pid": "965774910", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Wahren (Leipzig)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4710554-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)965774910", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4710554-9", "source": "GND"}], "variant_access_point": ["Wahren (Leipzig)"], "authorized_access_point": "Leipzig-Wahren"} 3 -2024-07-16 19:07:58.430085 2024-07-17 07:01:17.954021 6d887591-05ad-49b8-ae85-862851c9180a {"md5": "0d81132e7928698b5ac5852971f2a3d6", "pid": "965775429", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Abtnaundorf"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4710572-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)965775429", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4710572-0", "source": "GND"}], "variant_access_point": ["Abtnaundorf (Leipzig)"], "authorized_access_point": "Leipzig-Abtnaundorf"} 3 -2024-07-16 19:07:58.259916 2024-07-17 07:01:18.553813 12805350-6a1b-4650-9d82-d9baebdb5e77 {"md5": "1f9f5fb2fe8a0f43e4ed71e742275763", "pid": "967160480", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Miltitz (Leipzig)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4725054-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)967160480", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4725054-9", "source": "GND"}], "variant_access_point": ["Miltitz (Leipzig)"], "authorized_access_point": "Leipzig-Miltitz"} 3 -2024-07-16 19:07:58.1691 2024-07-17 07:01:18.804113 9c61d898-bc2a-42d5-abb2-a7e841709a98 {"md5": "05086ca35923ecc619fcf472e848606d", "pid": "967180953", "note": [{"label": ["Homepage - https://www.nationalpark-eifel.de"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Nordrhein-Westfalen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4725322-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)967180953", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4725322-8", "source": "GND"}], "classification": [{"name": "Nationalpark", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Nationalpark Eifel"} 3 -2024-07-16 19:07:58.076347 2024-07-17 07:01:19.049929 d684df96-a42f-4869-ab31-b346e2bcd8c7 {"md5": "b4485ccb6e2735211d94937f1cbfdc95", "pid": "967581176", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Goethewanderweg_Ilmenau%E2%80%93St%C3%BCtzerbach&oldid=242625559"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Ilmenau"}, {"authorized_access_point": "Ilmenau-Stützerbach"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4731282-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)967581176", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4731282-8", "source": "GND"}], "classification": [{"name": "Wanderweg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Goethe-Wanderweg"], "authorized_access_point": "Goethewanderweg"} 3 -2024-07-16 19:07:58.341234 2024-07-17 07:01:18.256886 4ba79adb-9577-4530-88ad-a545bfc8e5b4 {"md5": "5be01ab8c4afd9919019b2764b8fa55e", "pid": "96577578X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4710588-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)96577578X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4710588-4", "source": "GND"}], "variant_access_point": ["Innere Westvorstadt (Leipzig)", "Leipzig-Kolonnadenviertel", "Kolonnadenviertel (Leipzig)"], "authorized_access_point": "Leipzig- Innere Westvorstadt"} 3 -2024-07-16 19:07:59.414359 2024-07-17 07:01:13.916767 3079086f-9935-4019-8f26-2a981bb9699b {"md5": "467bc6510b8fcaec3b5e6e3536b1a0e9", "pid": "963082132", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Köniz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4659061-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)963082132", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4659061-4", "source": "GND"}], "classification": [{"name": "Schloss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Schloss Köniz (Köniz)"} 3 -2024-07-16 19:07:59.326557 2024-07-17 07:01:14.203853 ca343d34-da1e-41e0-8508-c40396f44e60 {"md5": "a1cf916095e4c7f74b472e733f80a3ac", "pid": "963462539", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Scheffau (Lindau, Bodensee)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1246023-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)963462539", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1246023-0", "source": "GND"}], "variant_access_point": ["Scheffau (Scheidegg)"], "authorized_access_point": "Scheidegg-Scheffau"} 3 -2024-07-16 19:07:59.143257 2024-07-17 07:01:14.846558 78611672-e2ba-49c8-bd27-d9af903daff0 {"md5": "aae203a3b78f259bc3ce22838b2f7970", "pid": "963957635", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Wasseralfingen-Hofen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4676373-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)963957635", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4676373-9", "source": "GND"}], "variant_access_point": ["Hofen (Aalen-Hofen)"], "authorized_access_point": "Aalen-Hofen"} 3 -2024-07-16 19:07:59.060636 2024-07-17 07:01:15.146723 1038b5cc-b2ac-40dc-afdc-20eb5d2e0f9f {"md5": "33fae17333be8f1ae10a0a104b74d037", "pid": "963982559", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Saudi-Arabien"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4677123-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)963982559", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4677123-2", "source": "GND"}], "variant_access_point": ["Nordwestliches Saudi-Arabien"], "authorized_access_point": "Saudi-Arabien (Nordwest)"} 3 -2024-07-16 19:07:58.978102 2024-07-17 07:01:15.444713 2f3d58d5-7496-4391-9300-5d337cd18d43 {"md5": "786c99e172022f148b657a1e4e6e1d9a", "pid": "96411822X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Anger-Crottendorf"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4679998-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)96411822X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4679998-9", "source": "GND"}], "variant_access_point": ["Anger-Crottendorf (Leipzig)"], "authorized_access_point": "Leipzig-Anger-Crottendorf"} 3 -2024-07-16 19:07:58.886108 2024-07-17 07:01:15.682359 81f947ca-7abe-430b-aa2b-2d45bffb9a96 {"md5": "1f55f0a6f04fc40e40f77d20c0e20471", "pid": "964462427", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Amt Skanderborg"}, {"authorized_access_point": "Region Midtjylland"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4685636-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)964462427", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4685636-5", "source": "GND"}], "classification": [{"name": "Amt", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Vejle (Amt)", "Vejle Amt", "Vejle Amtskommune"], "authorized_access_point": "Amt Vejle"} 3 -2024-07-16 19:08:00.134028 2024-07-17 07:01:11.264732 c908008d-aff9-475b-aac1-c68a2469a076 {"md5": "523bf5fc8538a12f15f4660d7de19e47", "pid": "960085726", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Bienitz-Burghausen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4611475-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)960085726", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4611475-0", "source": "GND"}], "variant_access_point": ["Burghausen (Leipzig)"], "authorized_access_point": "Leipzig-Burghausen"} 3 -2024-07-16 19:08:00.050721 2024-07-17 07:01:11.533889 5facf0d5-c17f-4c3b-9a00-2e80779abd5d {"md5": "0ead640e1c8ca13b33180ffbef2b7ee7", "pid": "960396268", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4617642-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)960396268", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4617642-1", "source": "GND"}], "variant_access_point": ["Halle-Leipzig-Bitterfeld-Gebiet", "Leipzig-Halle-Bitterfeld-Gebiet", "Bitterfeld-Leipzig-Halle-Gebiet", "Chemiedreieck"], "authorized_access_point": "Leipzig-Halle-Bitterfeld (Region)"} 3 -2024-07-16 19:07:59.957272 2024-07-17 07:01:11.814302 6b852148-1b29-4231-8e90-74d2282ce4e7 {"md5": "cb61f9ea388e94aa88fe6921787c17da", "pid": "960833919", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4623386-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)960833919", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4623386-6", "source": "GND"}], "variant_access_point": ["Marienbrunn (Leipzig)"], "authorized_access_point": "Leipzig-Marienbrunn"} 3 -2024-07-16 19:07:59.869063 2024-07-17 07:01:12.107689 b6af42f1-ae65-4cfb-8d68-edb9cdf0ffa1 {"md5": "b03ee9bf840a24176b6c2855c9b8878c", "pid": "960863664", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Seehausen (Leipzig)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4624158-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)960863664", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4624158-9", "source": "GND"}], "variant_access_point": ["Seehausen (Leipzig)"], "authorized_access_point": "Leipzig-Seehausen"} 3 -2024-07-16 19:07:59.727645 2024-07-17 07:01:12.740796 6b009a4f-b34b-43ab-b011-126c5e3961a3 {"md5": "3135b85e324070babaa15a8bb6681101", "pid": "961594454", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Wiederitzsch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10018856-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)961594454", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)10018856-4", "source": "GND"}], "variant_access_point": ["Wiederitzsch (Leipzig)"], "authorized_access_point": "Leipzig-Wiederitzsch"} 3 -2024-07-16 19:07:59.585772 2024-07-17 07:01:13.371139 90ec9d70-3f2e-4614-becb-bfc6c9a1bf15 {"md5": "51403ab1c4d5f6477f6131e0fcf14802", "pid": "961594519", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Plaußig"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10018865-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)961594519", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)10018865-5", "source": "GND"}], "variant_access_point": ["Plaußig (Leipzig)"], "authorized_access_point": "Leipzig-Plaußig"} 3 -2024-07-16 19:07:59.786628 2024-07-17 07:01:12.427441 64fc8274-2e5d-485e-8b30-67fdde239795 {"md5": "b7b5d7cb146257ea632803c2e279238f", "pid": "961395923", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Zawid%C3%B3w"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4633601-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)961395923", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4633601-1", "source": "GND"}], "variant_access_point": ["Seidenberg", "Seidenberg O.-L", "Zawidow"], "authorized_access_point": "Zawidów"} 3 -2024-07-16 19:08:00.834328 2024-07-17 07:01:08.555024 bd6724aa-6b22-4923-8e09-632ae5a348d2 {"md5": "79fcba2ce339be2a31759e9e83aa43b6", "pid": "957586973", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4562198-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)957586973", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4562198-6", "source": "GND"}], "variant_access_point": ["Ubar"], "authorized_access_point": "Wabar"} 3 -2024-07-16 19:08:00.774546 2024-07-17 07:01:08.849301 040c078e-f329-4b66-b263-5a6c4f1b67ce {"md5": "320da56e02e0c900d7295f1980e8bb8b", "pid": "957753551", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Komoren (Archipel)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4566491-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)957753551", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4566491-2", "source": "GND"}], "classification": [{"name": "Insel", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Nwami", "Ndzouani"], "authorized_access_point": "Anjouan (Insel)"} 3 -2024-07-16 19:08:00.722997 2024-07-17 07:01:09.363543 0e363652-1c0f-47da-88c0-914a0c343508 {"md5": "3548878b688326e370789ca34ce0b8d4", "pid": "958014639", "note": [{"label": ["H hist. Stätten; Internet - http://www.schwante.de/schloesser.htm"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Schwante"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4570933-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)958014639", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4570933-6", "source": "GND"}], "classification": [{"name": "Schloss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Schloss Schwante"} 3 -2024-07-16 19:08:00.63874 2024-07-17 07:01:09.643106 585b6eb1-b107-478e-8b39-1b12c2de37f0 {"md5": "cd56412dfcbee836b0f19415e3c7cb43", "pid": "958777055", "note": [{"label": ["Ehemalige Gemeinde und heute politisch unselbstständige Ortschaft in der Provinz Groningen. Fusionierte zum 1. Januar 2019 mit De Marne, Winsum und Eemsmond zur neuen Gemeinde \\"Het Hogeland\\""], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Het Hogeland"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4585822-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)958777055", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4585822-6", "source": "GND"}], "variant_access_point": ["Gemeinde Bedum", "Gemeente Bedum", "Het Hogeland- Bedum"], "authorized_access_point": "Bedum"} 3 -2024-07-16 19:08:00.551457 2024-07-17 07:01:09.933338 0c8be9c0-4975-4ab1-a64e-f1960c248627 {"md5": "464d5d6956a21efda83528a1eb1fb207", "pid": "959369872", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4596737-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)959369872", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4596737-4", "source": "GND"}], "classification": [{"name": "Woiwodschaft", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Województwo Lubuskie", "Lebus (Woiwodschaft)"], "authorized_access_point": "Woiwodschaft Lebus"} 3 -2024-07-16 19:08:00.388269 2024-07-17 07:01:10.487595 f979196a-18e7-426d-ab5a-659919ee1bc8 {"md5": "8e1f15443b2f14cbbc2660f139d6ff05", "pid": "959788719", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Plaußig"}, {"authorized_access_point": "Portitz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4605550-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)959788719", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4605550-2", "source": "GND"}], "variant_access_point": ["Plaußig-Portitz (Leipzig)"], "authorized_access_point": "Leipzig-Plaußig-Portitz"} 3 -2024-07-16 19:08:00.307109 2024-07-17 07:01:10.743341 9e9f9fd8-2e66-4dac-817a-0f4eb0d7597b {"md5": "379f36e73f856df0785bc3c3352d15a9", "pid": "959918612", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4608170-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)959918612", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4608170-7", "source": "GND"}], "classification": [{"name": "Gouvernement", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Gouvernement Kowno", "Gouvernement Kovno", "Gouvernement Kaunas"], "authorized_access_point": "Kaunas (Gouvernement)"} 3 -2024-07-16 19:08:00.466554 2024-07-17 07:01:10.196745 10d48503-4bee-4984-9e71-5957be99302c {"md5": "03ffa3371f6cce678363a44b14e1fcd2", "pid": "959747575", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Monroe_(Wisconsin)&oldid=231105462"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10007977-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)959747575", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)10007977-5", "source": "GND"}], "authorized_access_point": "Monroe, Wis."} 3 -2024-07-16 19:08:01.639308 2024-07-17 07:01:05.753914 6e8198ca-b0cb-434c-9fa6-c8271d281887 {"md5": "b0758a74eaaa88dc211c464b598ffe42", "pid": "955498058", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Thonberg (Leipzig)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4527974-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)955498058", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4527974-3", "source": "GND"}], "variant_access_point": ["Thonberg (Leipzig)"], "authorized_access_point": "Leipzig-Thonberg"} 3 -2024-07-16 19:08:01.547988 2024-07-17 07:01:06.082012 e7a9a1a7-ae9f-47d5-879e-5a96496cfb72 {"md5": "a1051065a2b7db3df40250b3278a40d2", "pid": "955573246", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Engelsdorf-Althen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2174812-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)955573246", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)2174812-3", "source": "GND"}], "variant_access_point": ["Althen (Leipzig)"], "authorized_access_point": "Leipzig-Althen"} 3 -2024-07-16 19:08:01.463266 2024-07-17 07:01:06.395933 699b3472-75c0-405a-a599-14fba1b2bc71 {"md5": "96238bd3523140aa55af00cf9af8117e", "pid": "955820049", "note": [{"label": ["Homepage - https://www.deiningen.de/", "Wikipedia - https://de.wikipedia.org/wiki/Deiningen"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4531247-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)955820049", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4531247-3", "source": "GND"}], "authorized_access_point": "Deiningen"} 3 -2024-07-16 19:08:01.275241 2024-07-17 07:01:07.260606 6d9a3a9f-6e4b-4614-bc67-1743778d641f {"md5": "5b6312b235898c118b46940bd9d0b07a", "pid": "956443613", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Liebertwolkwitz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5312244-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)956443613", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)5312244-6", "source": "GND"}], "variant_access_point": ["Liebertwolkwitz (Leipzig)"], "authorized_access_point": "Leipzig-Liebertwolkwitz"} 3 -2024-07-16 19:08:01.182416 2024-07-17 07:01:07.508119 856a935b-dc08-47b7-828c-ecb7187e6ccc {"md5": "e3141961edec8cf1f9acb139bb84eb44", "pid": "956443842", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Baalsdorf&oldid=193358956"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Engelsdorf-Baalsdorf"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5312267-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)956443842", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)5312267-7", "source": "GND"}], "variant_access_point": ["Baalsdorf (Leipzig)"], "authorized_access_point": "Leipzig-Baalsdorf"} 3 -2024-07-16 19:08:01.087546 2024-07-17 07:01:07.759688 2c3bc07f-d05a-4331-96ed-cb2967b2f729 {"md5": "b567c9ca4033c1f96204a4e9eb887efc", "pid": "956443877", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Engelsdorf (Leipzig)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5312270-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)956443877", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)5312270-7", "source": "GND"}], "variant_access_point": ["Engelsdorf (Leipzig)"], "authorized_access_point": "Leipzig-Engelsdorf"} 3 -2024-07-16 19:08:01.001915 2024-07-17 07:01:08.053679 16e85fa6-55e1-4603-9b59-bb756a750963 {"md5": "217e404a9b653db388d311ca5b4c1abd", "pid": "957211430", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4555925-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)957211430", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4555925-9", "source": "GND"}], "variant_access_point": ["Drjowk", "Amtsfreie Gemeinde Stadt Drebkau", "Bźezamtowa Gmejna Město Drjowk", "Drepkau"], "authorized_access_point": "Drebkau"} 3 -2024-07-16 19:08:01.367879 2024-07-17 07:01:06.973257 1ff57584-f2db-4091-a580-e1966b3812b6 {"md5": "574d49fcd267cf575dec8846263583b8", "pid": "955960134", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2175760-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)955960134", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)2175760-4", "source": "GND"}], "variant_access_point": ["Mockau-Ost"], "authorized_access_point": "Leipzig-Mockau-Ost"} 3 -2024-07-16 19:08:02.032977 2024-07-17 07:01:04.121677 eba43b50-6620-4383-846f-ef9f2a35598e {"md5": "a76ef4c4feb750fe9ed1881ae5b5a84f", "pid": "954064593", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Kanton Neuenburg"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4508222-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)954064593", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4508222-4", "source": "GND"}], "authorized_access_point": "Cressier (Kanton Neuenburg)"} 3 -2024-07-16 19:08:02.205473 2024-07-17 07:01:03.584884 90237a02-7778-4a94-abb8-9eb49575f5be {"md5": "1c785418c4e14d425dd305f3efd00980", "pid": "953105024", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Reudnitz (Leipzig)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4491767-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)953105024", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4491767-3", "source": "GND"}], "variant_access_point": ["Reudnitz (Leipzig)"], "authorized_access_point": "Leipzig-Reudnitz"} 3 -2024-07-16 19:08:01.93633 2024-07-17 07:01:04.393386 d5ca72c0-93c7-4486-ab82-7c2de29c8229 {"md5": "13b1bb7dad0d78c2398367a652d02d43", "pid": "954071832", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4508419-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)954071832", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4508419-1", "source": "GND"}], "authorized_access_point": "Leipzig-West"} 3 -2024-07-16 19:08:01.857377 2024-07-17 07:01:04.665543 f4487c7a-05d4-4fc6-beac-24a948883b38 {"md5": "ffb8bf12185806674f678af675b5bc4a", "pid": "954472683", "note": [{"label": ["Homepage - http://de.wikipedia.org/wiki/Pommritz"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Pommritz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5289232-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)954472683", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)5289232-3", "source": "GND"}], "variant_access_point": ["Pommritz (Hochkirch-Pommritz)", "Bukecy-Pomorcy"], "authorized_access_point": "Hochkirch-Pommritz"} 3 -2024-07-16 19:08:01.800481 2024-07-17 07:01:05.18396 a58fe825-81c8-48e6-b884-f3a457702d5e {"md5": "5e31179f2829c92da20a444b2796a446", "pid": "955090547", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Grünberg (Landkreis Gießen)"}, {"authorized_access_point": "Lehnheim"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3035028-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)955090547", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)3035028-1", "source": "GND"}], "variant_access_point": ["Grünberg (Landkreis Gießen-Lehnheim)", "Lehnheim (Grünberg-Lehnheim)"], "authorized_access_point": "Grünberg-Lehnheim"} 3 -2024-07-16 19:08:02.294983 2024-07-17 07:01:02.771243 b4733ece-7fe2-43fb-b281-a44d5fd67b5e {"md5": "7bcfeaa46eee35aaff8b4d36a2055077", "pid": "952110512", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=228930289"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Amt Odense"}, {"authorized_access_point": "Amt Svendborg"}, {"authorized_access_point": "Region Syddanmark"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4477066-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)952110512", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4477066-2", "source": "GND"}], "classification": [{"name": "Amt", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Amt Fünen", "Fyns Amt", "Fyns (Amt)", "Fyn Amtskommune", "Fyns Amtskommune", "Fünen (Amt)"], "authorized_access_point": "Amt Fyn"} 3 -2024-07-16 19:08:02.120061 2024-07-17 07:01:03.868266 817ea93b-a975-476e-93fc-8887667483a3 {"md5": "86b41b6906013dbd5250fbb311ed31b2", "pid": "953168697", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Heringsdorf (Seebad)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4492872-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)953168697", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4492872-5", "source": "GND"}], "classification": [{"name": "Saalkirche", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Evangelische Kirche im Walde (Heringsdorf, Seebad)"], "authorized_access_point": "Kirche im Walde (Heringsdorf, Seebad)"} 3 -2024-07-16 19:08:02.946657 2024-07-17 07:01:00.414655 6241151a-3130-4163-aebe-95c1c58519b6 {"md5": "0d4090de60180bca3e809ced43002740", "pid": "950356190", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Schönau (Leipzig)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4452671-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950356190", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4452671-4", "source": "GND"}], "variant_access_point": ["Schönau (Leipzig)"], "authorized_access_point": "Leipzig-Schönau"} 3 -2024-07-16 19:08:02.640242 2024-07-17 07:01:01.582223 b5720ad3-385b-44a9-81a6-73517452a205 {"md5": "95bd28b9dff604c7345d8bb7e33639d8", "pid": "951510258", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Saudi-Arabien"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4470217-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)951510258", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4470217-6", "source": "GND"}], "variant_access_point": ["Südliches Saudi-Arabien"], "authorized_access_point": "Saudi-Arabien (Süd)"} 3 -2024-07-16 19:08:02.561082 2024-07-17 07:01:01.846286 5d9b38cc-9641-41a1-a38c-2c283287db0b {"md5": "e3fe89ff031a7acb42637df32d026a5c", "pid": "951510274", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Saudi-Arabien"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4470220-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)951510274", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4470220-6", "source": "GND"}], "variant_access_point": ["Westliches Saudi-Arabien"], "authorized_access_point": "Saudi-Arabien (West)"} 3 -2024-07-16 19:08:02.476924 2024-07-17 07:01:02.147073 42b7577a-bdb5-4d91-860d-ed44b4b5bac4 {"md5": "77589bb3b29de52fb991b6b37d2ee5ae", "pid": "951510282", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Saudi-Arabien"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4470221-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)951510282", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4470221-8", "source": "GND"}], "variant_access_point": ["Südwestliches Saudi-Arabien"], "authorized_access_point": "Saudi-Arabien (Südwest)"} 3 -2024-07-16 19:08:03.049185 2024-07-17 07:01:00.139217 90ca37b4-25f1-41a9-a4a1-113688c76e20 {"md5": "71b8c54cdc458b6783a3672eaef07522", "pid": "950339490", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Lausen_(Leipzig)&oldid=206629090"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Lausen (Leipzig)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4452519-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950339490", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4452519-9", "source": "GND"}], "variant_access_point": ["Lausen (Leipzig)"], "authorized_access_point": "Leipzig-Lausen"} 3 -2024-07-16 19:08:02.864671 2024-07-17 07:01:00.72356 74a97b57-2fee-4191-93de-b8ee7ad28571 {"md5": "0281915eb7f4008de9a8ddb7f35a8a6c", "pid": "950556149", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4456228-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950556149", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4456228-7", "source": "GND"}], "variant_access_point": ["Äußere Südostvorstadt (Leipzig)"], "authorized_access_point": "Leipzig- Äußere Südostvorstadt"} 3 -2024-07-16 19:08:02.807188 2024-07-17 07:01:00.982421 f3ae0f0d-29d1-494a-bd39-cdc22285aa06 {"md5": "f7c1b273acd824897202bfe7ecb8c043", "pid": "950649155", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4457908-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950649155", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4457908-1", "source": "GND"}], "variant_access_point": ["Campos (Jordão)"], "authorized_access_point": "Campos do Jordão"} 3 -2024-07-16 19:08:03.66899 2024-07-17 07:00:58.115118 52371b63-15ed-4e49-a707-c5c94dd376fc {"md5": "a2e37d8709056c648394ead8dd6de915", "pid": "950332011", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Dösen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4452347-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950332011", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4452347-6", "source": "GND"}], "variant_access_point": ["Dösen (Leipzig)"], "authorized_access_point": "Leipzig-Dösen"} 3 -2024-07-16 19:08:03.480531 2024-07-17 07:00:58.697674 39332da5-d5d4-40a2-8e14-4c5b20f2df68 {"md5": "d780ccb24cb5436c2562c5572ba345e1", "pid": "950338184", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Meusdorf (Leipzig)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4452479-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950338184", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4452479-1", "source": "GND"}], "variant_access_point": ["Meusdorf (Leipzig)"], "authorized_access_point": "Leipzig-Meusdorf"} 3 -2024-07-16 19:08:03.394124 2024-07-17 07:00:58.997317 22856a89-c9aa-4b21-bf00-405fb6e63171 {"md5": "9910f6e85488c8145ccf0fdea8447e43", "pid": "950338230", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Knauthain"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4452482-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950338230", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4452482-1", "source": "GND"}], "variant_access_point": ["Knauthain (Leipzig)"], "authorized_access_point": "Leipzig-Knauthain"} 3 -2024-07-16 19:08:03.302985 2024-07-17 07:00:59.260635 9fb3dfa8-dbe0-4b1c-a0df-00b381bfb5ae {"md5": "95814f3fb22983a50e15e6ef22bfbf9c", "pid": "95033829X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Knautkleeberg"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4452484-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)95033829X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4452484-5", "source": "GND"}], "variant_access_point": ["Knautkleeberg (Leipzig)"], "authorized_access_point": "Leipzig-Knautkleeberg"} 3 -2024-07-16 19:08:03.217357 2024-07-17 07:00:59.546482 f33778f1-4f59-43f3-bd21-fca76c928f82 {"md5": "0d0e44b2fae4be63117d61a1b9e8de06", "pid": "950338338", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Windorf "}, {"authorized_access_point": "Großzschocher-Windorf"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4452486-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950338338", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4452486-9", "source": "GND"}], "variant_access_point": ["Windorf (Leipzig)"], "authorized_access_point": "Leipzig-Windorf"} 3 -2024-07-16 19:08:03.759302 2024-07-17 07:00:57.837146 53574a37-3e47-4b92-8a64-8947711824aa {"md5": "8a6d8a6a292da0a5781ae02f18fb2fed", "pid": "950331821", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Probstheida"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4452343-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950331821", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4452343-9", "source": "GND"}], "variant_access_point": ["Probstheida (Leipzig)"], "authorized_access_point": "Leipzig-Probstheida"} 3 -2024-07-16 19:08:03.576829 2024-07-17 07:00:58.422046 d44d9b64-a013-4e65-b5f1-c37367842432 {"md5": "56d4d59e78b76987b49676768a82ecf7", "pid": "950332429", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Schönefeld (Leipzig)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4452359-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950332429", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4452359-2", "source": "GND"}], "variant_access_point": ["Schönefeld (Leipzig)"], "authorized_access_point": "Leipzig-Schönefeld"} 3 -2024-07-16 19:08:04.380907 2024-07-17 07:00:55.930174 565c6d38-10a4-478e-9afd-1db9c5e34441 {"md5": "9c6c21a6e0aeec73f2e6ed6f4d25badc", "pid": "949647314", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Egloffstein"}], "related": [{"authorized_access_point": "Egloffstein-Bieberbach"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4440857-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)949647314", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4440857-2", "source": "GND"}], "authorized_access_point": "Bieberbach (Egloffstein)"} 3 -2024-07-16 19:08:04.165953 2024-07-17 07:00:56.509511 10e2d1d7-3ce6-4ff5-91f7-49a915e2dd60 {"md5": "b08ffe59e022540c0c9ea167cec8e159", "pid": "950168637", "note": [{"label": ["Wikipedia - https://ru.wikipedia.org/w/index.php?oldid=138690191"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4449423-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950168637", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4449423-3", "source": "GND"}], "variant_access_point": ["Pyatigorsk", "Pjatigorsk (Stavropolkreis)", "Пятигорск (Ставропольский край)"], "authorized_access_point": "Pjatigorsk"} 3 -2024-07-16 19:08:04.060332 2024-07-17 07:00:56.767299 7027f3fc-7193-41f6-971e-4400e622b7d9 {"md5": "e347504e06b592b0072970df20074930", "pid": "950199214", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Dachau"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4450115-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950199214", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4450115-8", "source": "GND"}], "classification": [{"name": "Kirchenbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Versöhnungskirche (Dachau)"} 3 -2024-07-16 19:08:03.89419 2024-07-17 07:00:57.299833 b245473c-3c08-4a7c-9446-e887abd35516 {"md5": "27c408f7914064749411cf5a8b62519b", "pid": "95020109X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Schleußig"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4450192-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)95020109X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4450192-4", "source": "GND"}], "variant_access_point": ["Schleußig (Leipzig)", "Leipzig-Schleussig"], "authorized_access_point": "Leipzig-Schleußig"} 3 -2024-07-16 19:08:04.465203 2024-07-17 07:00:55.397806 d1b3c1e0-be9e-40de-aef3-c2fba67c1f2a {"md5": "45c80d942538f6f2a2559e250a75b361", "pid": "949641804", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Landkreis Zwickau"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4440677-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)949641804", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4440677-0", "source": "GND"}], "variant_access_point": ["Hartenstein (Zwickauer Land)", "Stadt Hartenstein", "Hartenstein", "Hartenstein bei Zwickau"], "authorized_access_point": "Hartenstein (Landkreis Zwickau)"} 3 -2024-07-16 19:08:03.976667 2024-07-17 07:00:57.01155 4dd2548e-69bb-4210-bd3e-4719b54f6b68 {"md5": "9c34b9847e76b38d6f3990f02b457551", "pid": "950199850", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Kleinzschocher"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4450126-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950199850", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4450126-2", "source": "GND"}], "variant_access_point": ["Kleinzschocher (Leipzig)", "Leipzig-Kl.-Zschocher", "Leipzig-Zschocher"], "authorized_access_point": "Leipzig-Kleinzschocher"} 3 -2024-07-16 19:08:05.094468 2024-07-17 07:00:53.065972 f9aab04c-2d1e-48db-b458-2b276f650b8c {"md5": "7393eb65f5baeeefd89aece38e2d482f", "pid": "948791659", "note": [{"label": ["Homepage - http://www.holzhausen-sachsen.de"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Holzhausen (Leipzig)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4426743-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)948791659", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4426743-5", "source": "GND"}], "variant_access_point": ["Holzhausen (Leipzig)"], "authorized_access_point": "Leipzig-Holzhausen"} 3 -2024-07-16 19:08:05.012664 2024-07-17 07:00:53.37122 c84f999f-cb20-41ce-8c45-7d1da8650f28 {"md5": "79513f7d1f8921cc4360d9b20e60a1e4", "pid": "949602310", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Lützschena-Stahmeln"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4439654-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)949602310", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4439654-5", "source": "GND"}], "variant_access_point": ["Lützschena-Stahmeln (Leipzig)"], "authorized_access_point": "Leipzig-Lützschena-Stahmeln"} 3 -2024-07-16 19:08:04.879126 2024-07-17 07:00:53.933243 727be07b-1fe1-4e6a-96d2-6e4dc8eb8aa5 {"md5": "4e81bd8a2ddc44812a95725de22e79ed", "pid": "949632104", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Rub al-Khali"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4440415-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)949632104", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4440415-3", "source": "GND"}], "variant_access_point": ["Westliche Rub al-Khali"], "authorized_access_point": "Rub al-Khali (West)"} 3 -2024-07-16 19:08:04.806508 2024-07-17 07:00:54.270623 b810dbaa-474e-4212-a71f-58077507adf9 {"md5": "6c3d6e2e6ddc55f88e520f956bdafe79", "pid": "949632120", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Rub al-Khali"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4440416-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)949632120", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4440416-5", "source": "GND"}], "variant_access_point": ["Südöstliche Rub al-Khali"], "authorized_access_point": "Rub al-Khali (Südost)"} 3 -2024-07-16 19:08:04.721105 2024-07-17 07:00:54.5894 51e542d8-3d68-4b52-b241-42de2ac49de3 {"md5": "dabca5494dcd4a922ebc883b6b899b84", "pid": "949632147", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Rub al-Khali"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4440417-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)949632147", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4440417-7", "source": "GND"}], "variant_access_point": ["Östliche Rub al-Khali"], "authorized_access_point": "Rub al-Khali (Ost)"} 3 -2024-07-16 19:08:04.634449 2024-07-17 07:00:54.84196 8101905a-6c3a-4c62-bee4-bf3c9bceca03 {"md5": "e5aa62cd7ab0a786553ce56b8e5d138d", "pid": "949632163", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Rub al-Khali"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4440418-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)949632163", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4440418-9", "source": "GND"}], "variant_access_point": ["Nordöstliche Rub al-Khali"], "authorized_access_point": "Rub al-Khali (Nordost)"} 3 -2024-07-16 19:08:05.190047 2024-07-17 07:00:52.765188 f8f57a70-8742-478a-a674-e93083f2c9a0 {"md5": "7e91cdab0ab7b820b05f000120e59ca1", "pid": "948417226", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Polanów"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5180619-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)948417226", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)5180619-8", "source": "GND"}], "variant_access_point": ["Pollnow i. Pom."], "authorized_access_point": "Pollnow"} 3 -2024-07-16 19:08:04.93212 2024-07-17 07:00:53.696636 0048ef7a-4743-44d1-8fa7-1ae3f2e914b8 {"md5": "e3b18eea893479ac3a740c9b26287a9a", "pid": "949607266", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Landkreis Landshut"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4439953-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)949607266", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4439953-4", "source": "GND"}], "authorized_access_point": "Furth (Landkreis Landshut)"} 3 -2024-07-16 19:08:05.902279 2024-07-17 07:00:50.243695 8cc09076-b248-46dc-81e9-fdf1bd62e932 {"md5": "988f8e5e0f575f3425e8ec73811636b7", "pid": "947421238", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=242946023"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Ustinov"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4408789-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)947421238", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4408789-5", "source": "GND"}], "variant_access_point": ["Iževsk", "Izhevsk", "Iževskij zavod", "Iž", "Ižkar", "Ижкар", "Иж"], "authorized_access_point": "Ischewsk"} 3 -2024-07-16 19:08:05.816708 2024-07-17 07:00:50.53804 dcdfb68a-ca81-4ad5-a790-f6a067ff417e {"md5": "002ce1858f617aa649b8cf8617447ce8", "pid": "947454659", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4408998-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)947454659", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4408998-3", "source": "GND"}], "variant_access_point": ["Oḥod"], "authorized_access_point": "Uḥud"} 3 -2024-07-16 19:08:05.638757 2024-07-17 07:00:51.130324 36fad630-5f41-44f6-9e5d-3054b3d22079 {"md5": "8f3113990eea850fb48dcc62ebcf992f", "pid": "947589341", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Dreikaiserbäder-Bansin"}, {"authorized_access_point": "Dreikaiserbäder"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5171491-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)947589341", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)5171491-7", "source": "GND"}], "variant_access_point": ["Seebad Bansin"], "authorized_access_point": "Bansin"} 3 -2024-07-16 19:08:05.478809 2024-07-17 07:00:51.74591 9c9524bb-4253-4666-808b-f91af5570b52 {"md5": "845543700bb4e480f11927c095a85a34", "pid": "947976248", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Mölkau"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4415593-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)947976248", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4415593-1", "source": "GND"}], "variant_access_point": ["Mölkau (Leipzig)", "Mölkau-Zweinaundorf", "Lleipzig-Mölkau-Zweinaundorf"], "authorized_access_point": "Leipzig-Mölkau"} 3 -2024-07-16 19:08:05.358558 2024-07-17 07:00:52.042759 d48ed009-fe2e-43e1-b97e-c195f7bbfb13 {"md5": "2d6021b3e306eb78ae899f8e6c9fb487", "pid": "948321156", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Dölitz (Leipzig)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4420038-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)948321156", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4420038-9", "source": "GND"}], "variant_access_point": ["Dölitz (Leipzig)"], "authorized_access_point": "Leipzig-Dölitz"} 3 -2024-07-16 19:08:05.956609 2024-07-17 07:00:49.691362 b381a3fb-0864-4443-ae8f-c22b41ec733c {"md5": "457b9d150cdbe315524ea54e4f13c5d7", "pid": "947026088", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Minas Gerais"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4403767-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)947026088", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4403767-3", "source": "GND"}], "authorized_access_point": "Barbacena (Minas Gerais)"} 3 -2024-07-16 19:08:05.718165 2024-07-17 07:00:50.807483 93b40dfc-3bd5-4ef9-b02d-70bbd6437d92 {"md5": "b5e04b2a6646c04703630335550cc2f7", "pid": "947454802", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4409005-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)947454802", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4409005-5", "source": "GND"}], "variant_access_point": ["Yamāma", "Jamama"], "authorized_access_point": "Yamāmah"} 3 -2024-07-16 19:08:06.643891 2024-07-17 07:00:46.645782 82edb2d3-b280-43f9-be07-3d4894d1fd34 {"md5": "7f5ec3db66d5e4ca0e492dfa36e6a03a", "pid": "944289290", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5127721-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)944289290", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)5127721-9", "source": "GND"}], "authorized_access_point": "Leipzig-Ost"} 3 -2024-07-16 19:08:06.555656 2024-07-17 07:00:47.408164 ebcb4857-6715-4258-ab67-cd035209b6f1 {"md5": "d5c74b73e5ebbaf8da1c81bb62b8a64c", "pid": "944766021", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Eutritzsch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4380230-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)944766021", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4380230-8", "source": "GND"}], "variant_access_point": ["Eutritzsch (Leipzig)"], "authorized_access_point": "Leipzig-Eutritzsch"} 3 -2024-07-16 19:08:06.47737 2024-07-17 07:00:47.673271 040b76d8-9271-49ce-b371-833be7cb1885 {"md5": "f4067e4f2fd0632b175c025424f72cc5", "pid": "945385382", "note": [{"label": ["Hompage - http://city.mogilev.by/?lang=bel", "Wikipedia - https://ru.wikipedia.org/w/index.php?oldid=138576423"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4384842-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)945385382", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4384842-4", "source": "GND"}], "variant_access_point": ["Mahileǔ", "Mohilev", "Mahiljou", "Mahilioŭ", "Mahiloŭ", "Mohilew", "Mogilyov", "Mogilev", "Magistrat (Mogilev)", "Mahilëŭ", "Mogilew", "Mahilëŭski Harad", "Mogilevski Gorod", "Mogilev City", "Могилев", "Могилёв"], "authorized_access_point": "Mogiljow"} 3 -2024-07-16 19:08:06.383033 2024-07-17 07:00:47.952831 a8a92d54-5e66-41fd-a92d-648b67a23293 {"md5": "8f3af56faae9e07fd9c8598aa0197f6f", "pid": "945871678", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Paris"}, {"authorized_access_point": "Palais de la Cité (Paris)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4389955-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)945871678", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4389955-9", "source": "GND"}], "classification": [{"name": "Gefängnisbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Conciergerie (Paris)"} 3 -2024-07-16 19:08:06.206702 2024-07-17 07:00:48.594584 b461c5cf-ce2c-414a-b9c1-b2eb893f454f {"md5": "7a6e8bc54d3063c7cdc264bcbdc08556", "pid": "945980132", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Unterelsass"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4390811-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)945980132", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4390811-1", "source": "GND"}], "variant_access_point": ["Barr (Elsass)", "Barr, Elsaß"], "authorized_access_point": "Barr (Unterelsass)"} 3 -2024-07-16 19:08:06.124403 2024-07-17 07:00:49.126339 eb3ebafd-209d-443d-b587-6fdea0f62340 {"md5": "74e49f54d968824c58571ae6c230be75", "pid": "946606161", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=244051604"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4399100-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)946606161", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4399100-2", "source": "GND"}], "classification": [{"name": "Kreis", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Oststernberg (Kreis)", "Ost-Sternberg", "Kreis Ost-Sternberg", "Landkreis Ost-Sternberg"], "authorized_access_point": "Kreis Oststernberg"} 3 -2024-07-16 19:08:06.728453 2024-07-17 07:00:46.348103 1b8f50a2-6b55-4019-b856-0fc60344589c {"md5": "97a262fdc4d5943e2a1d6e18cf23294e", "pid": "94400718X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5123475-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)94400718X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)5123475-0", "source": "GND"}], "variant_access_point": ["L'vivs'ka Oblast'"], "authorized_access_point": "L'vovskaja Oblast'"} 3 -2024-07-16 19:08:06.294299 2024-07-17 07:00:48.250371 8fdfee67-7438-45a1-8d82-0b0937192a99 {"md5": "35a5b16c2dd9f6a8d8e66131511de3d7", "pid": "945917201", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4390430-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)945917201", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4390430-0", "source": "GND"}], "classification": [{"name": "Präfektur", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Tochigi-ken", "Shimotsuke", "Yashū", "Shimotsukene", "Shimotsukeno"], "authorized_access_point": "Präfektur Tochigi"} 3 -2024-07-16 19:08:06.978734 2024-07-17 07:00:45.440191 3d09c2c2-666e-4a35-9a8c-26b05362b39c {"md5": "a9350ee6282a6ab82e63b3925402980b", "pid": "941808769", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2138776-X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)941808769", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)2138776-X", "source": "GND"}], "authorized_access_point": "Lostallo"} 3 -2024-07-16 19:08:06.907513 2024-07-17 07:00:45.736132 01e7528b-f79c-4706-aadb-ecd2aa187acb {"md5": "9f508f26e803155633cc3ae644e86140", "pid": "941847934", "note": [{"label": ["Wikipedia - http://pl.wikipedia.org/w/index.php?oldid=72530956"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Woiwodschaft Lebus"}], "related": [{"authorized_access_point": "Lagow (Kreis Oststernberg)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2138914-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)941847934", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)2138914-7", "source": "GND"}], "variant_access_point": ["Lagow (Woiwodschaft Lebus)", "Łagów, Powiat Świebodziński", "Łagów, województwo lubuskie", "Łagów Lubuski", "Łagów", "Łagów Lubuski"], "authorized_access_point": "Łagów (Woiwodschaft Lebus)"} 3 -2024-07-16 19:08:07.34668 2024-07-17 07:00:43.933075 9bf8a372-34cf-4d6b-aa3b-c5ac8fee8e00 {"md5": "bced35b7f2a1b7903c9c8fb07de8101e", "pid": "940396009", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Connewitz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4331601-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)940396009", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4331601-3", "source": "GND"}], "variant_access_point": ["Connewitz (Leipzig)"], "authorized_access_point": "Leipzig-Connewitz"} 3 -2024-07-16 19:08:07.248659 2024-07-17 07:00:44.231457 15ce8596-3dea-4793-9a1f-1f4b15476427 {"md5": "5fda193c3f6c86d97ec734049a8cb993", "pid": "940396068", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Plagwitz (Leipzig)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4331603-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)940396068", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4331603-7", "source": "GND"}], "variant_access_point": ["Plagwitz (Leipzig)"], "authorized_access_point": "Leipzig-Plagwitz"} 3 -2024-07-16 19:08:07.158193 2024-07-17 07:00:44.818927 1e4a7e85-c6a7-422b-931a-35edfe7019f0 {"md5": "62ab9ae6fbbdf00fcfd4433cecfd368f", "pid": "941385175", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4342217-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)941385175", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4342217-2", "source": "GND"}], "classification": [{"name": "Tal", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Wadi al-Batin"} 3 -2024-07-16 19:08:07.063572 2024-07-17 07:00:45.13631 6fce8af3-92d7-4d61-92c6-830ad635571d {"md5": "bc6a383efec83b5b049db889f4b9d41b", "pid": "941757471", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Zentralarabien&oldid=191114592"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Arabien"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4346479-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)941757471", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4346479-8", "source": "GND"}], "variant_access_point": ["Innerarabien"], "authorized_access_point": "Zentralarabien"} 3 -2024-07-16 19:08:07.931908 2024-07-17 07:00:41.805976 31771831-783c-4201-8bf7-0170905768a4 {"md5": "eb11f8776c4b86c76802720d80d773a6", "pid": "199244766", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Detmold"}], "related": [{"authorized_access_point": "Richthofenstraße (Detmold)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7789111-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199244766", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7789111-9", "source": "GND"}], "classification": [{"name": "Haus", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Richthofenstraße 16 (Detmold)"], "authorized_access_point": "Krullsche Haus (Detmold)"} 3 -2024-07-16 19:08:07.869453 2024-07-17 07:00:42.117751 407fbafd-8359-4128-a616-1300a550a7f4 {"md5": "897f7428a992cb47a14dc6d704e3082c", "pid": "199246211", "note": [{"label": ["onlinestreet.de - https://onlinestreet.de/strassen/Galgenlake.Delbr%C3%BCck.1063258.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Delbrück"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7789283-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199246211", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7789283-5", "source": "GND"}], "classification": [{"name": "Straße", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Galgenlaake (Delbrück)"} 3 -2024-07-16 19:08:07.762974 2024-07-17 07:00:42.727915 4695088e-c533-4e98-8fdb-9ecf0e0a027e {"md5": "062d7d3f741e76ba2817f7bbec63ff9c", "pid": "199246815", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Freie_Scholle_(Bielefeld)&oldid=237251749", "Homepage Freie Schulle - https://www.freie-scholle.de/ueber-uns/unsere-wurzeln"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bielefeld"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7789354-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199246815", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7789354-2", "source": "GND"}], "classification": [{"name": "Arbeitersiedlung", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Wohnsiedlung", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Siedlung Heeper Fichten (Bielefeld)"], "authorized_access_point": "Heeper Fichten (Bielefeld)"} 3 -2024-07-16 19:08:07.622364 2024-07-17 07:00:43.024668 f31fd049-e92a-425d-843f-d091cfd4018e {"md5": "d353d6e4d7321b6ba3c145fd6db52175", "pid": "199248974", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Liste_der_Baudenkm%C3%A4ler_in_Detmold-Kernstadt&oldid=242933521"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Detmold"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7789613-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199248974", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7789613-0", "source": "GND"}], "classification": [{"name": "Brunnen", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Baudenkmal", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Donopbrunnen (Detmold)"} 3 -2024-07-16 19:08:07.996073 2024-07-17 07:00:41.545101 8bdef936-044d-4d47-92d7-26b5d954e9f1 {"md5": "2315675f1a2f1dfe1d7486c645bfceb9", "pid": "19924474X", "note": [{"label": ["onlinestreet.de - https://onlinestreet.de/strassen/Richthofenstra%C3%9Fe.Detmold.183819.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Detmold"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7789109-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)19924474X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7789109-0", "source": "GND"}], "classification": [{"name": "Straße", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Richthofenstraße (Detmold)"} 3 -2024-07-16 19:08:08.367649 2024-07-17 07:00:40.028817 a9a59579-8005-4d26-b445-e27de37ce370 {"md5": "3dfb14383681b0236491b08020e64529", "pid": "199240515", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Castrop-Rauxel"}], "related": [{"authorized_access_point": "Glückaufstraße (Castrop-Rauxel)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7788606-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199240515", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7788606-9", "source": "GND"}], "classification": [{"name": "Krankenhausbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["St. Rochus-Hospital (Castrop-Rauxel)", "Glückaufstraße 10 (Castrop-Rauxel)"], "authorized_access_point": "St. Rochus Hospital (Castrop-Rauxel)"} 3 -2024-07-16 19:08:08.286312 2024-07-17 07:00:40.309973 cfd8471b-4d9a-417b-901f-42fdac61b4e4 {"md5": "78874ae247f79a1bc335e45ba3d19ff6", "pid": "199240590", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Rieflinghausen&oldid=243763184"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Attendorn"}, {"authorized_access_point": "Helden-Rieflinghausen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7788614-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199240590", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7788614-8", "source": "GND"}], "authorized_access_point": "Attendorn-Rieflinghausen"} 3 -2024-07-16 19:08:08.548838 2024-07-17 07:00:39.41626 1633d227-bf24-450d-8c3a-7645f77d38bd {"md5": "e3ea5c6631e8ae9acb88b053b69ebb18", "pid": "19923860X", "note": [{"label": ["onlinestreet.de - https://onlinestreet.de/strassen/Lortzingstra%C3%9Fe.Detmold.146305.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Detmold"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7788374-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)19923860X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7788374-3", "source": "GND"}], "classification": [{"name": "Straße", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Lortzingstraße (Detmold)"} 3 -2024-07-16 19:08:08.456701 2024-07-17 07:00:39.731322 eb1cd43e-2be0-43e6-89ff-dc9260aeacb9 {"md5": "b3372a8bea0cdacb6643a723a319cbcc", "pid": "199239436", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Coesfeld"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7788473-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199239436", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7788473-5", "source": "GND"}], "classification": [{"name": "Haus", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Haus Schanze an der Billerbecker Straße (Coesfeld)"], "authorized_access_point": "Haus Schanze (Coesfeld)"} 3 -2024-07-16 19:08:08.109483 2024-07-17 07:00:40.944847 84130de4-b020-40b6-bf74-a2122368b0c3 {"md5": "14bab1af144c30720eebc5d56cc69580", "pid": "199244375", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bünde"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7789063-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199244375", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7789063-2", "source": "GND"}], "classification": [{"name": "Wasserburg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Rittersitz", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Castrum Blankena (Bünde)", "Haus Wervingen"], "authorized_access_point": "Nienburg (Bünde)"} 3 -2024-07-16 19:08:09.015339 2024-07-17 07:00:37.906956 4ae6c6b1-3bcc-4aa1-8528-c51920e82362 {"md5": "0bec207d1262fd4296d58543909fad65", "pid": "199218315", "note": [{"label": ["Homepage - https://wbc-coesfeld.de/deponie-coesfeld-hoeven"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Coesfeld"}, {"authorized_access_point": "Rosendahl"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7785996-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199218315", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7785996-0", "source": "GND"}], "classification": [{"name": "Deponie", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Deponie Coesfeld-Höven (Coesfeld)", "Deponie Coesfeld-Höven (Rosendahl)", "Siedlungsabfalldeponie des Kreises Coesfeld", "Zentraldeponie Coesfeld-Höven", "Zentraldeponie Coesfeld-Höven im Kreis Coesfeld", "Zentraldeponie Coesfeld-Höven im Kreis Coesfeld, NRW"], "authorized_access_point": "Deponie Coesfeld-Höven"} 3 -2024-07-16 19:08:08.913273 2024-07-17 07:00:38.17963 657870ad-8b10-4db9-94d2-6e4a4171650a {"md5": "2f16a45d8a626e97f2c8d0d0dbfb5a77", "pid": "199224196", "note": [{"label": ["Stand: 10.07.2024 - https://www.westfalen-blatt.de/owl/quellenhof-wird-abgerissen-2450879?pid=true&npg"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bielefeld"}, {"authorized_access_point": "Bielefeld-Gadderbaum"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7786666-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199224196", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7786666-6", "source": "GND"}], "classification": [{"name": "Bauernhof", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Quellenhof (Bielefeld-Gadderaum)", "Göllnerhof (Bielefeld)", "Hof Göllner (Bielefeld)"], "authorized_access_point": "Quellenhof (Bielefeld)"} 3 -2024-07-16 19:08:08.730688 2024-07-17 07:00:38.817394 a793ccd3-453f-42fe-b675-0c0a2a84a099 {"md5": "996aa3ce6c0b5bd315baa3bd80d49a7d", "pid": "199230811", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Merkurbrunnen_(Bielefeld)&oldid=243360167"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bielefeld"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7787435-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199230811", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7787435-3", "source": "GND"}], "classification": [{"name": "Brunnen", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Merkurbrunnen (Bielefeld)"} 3 -2024-07-16 19:08:09.073492 2024-07-17 07:00:37.587977 7c856df2-3986-40ae-9fe8-f58c8df236e5 {"md5": "e3e3bd5a0c0a28a55e22a8cbd2631473", "pid": "199215901", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Gerresheim&oldid=244302258#Gerricusplatz"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Düsseldorf"}, {"authorized_access_point": "Düsseldorf-Gerresheim"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7785731-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199215901", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7785731-8", "source": "GND"}], "classification": [{"name": "Platz", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Gerricusplatz (Düsseldorf)"} 3 -2024-07-16 19:08:09.420695 2024-07-17 07:00:36.406523 e38615d0-c0e9-49d6-a8ed-e5a974105e68 {"md5": "d53476c5ce51034fdb2e102223c1a050", "pid": "199211817", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7785281-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199211817", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7785281-3", "source": "GND"}], "classification": [{"name": "Waldgebiet", "type": "bf:ClassificationDdc", "classificationPortion": "rela"}], "authorized_access_point": "Deininghausen (Grutholz)"} 3 -2024-07-16 19:08:09.338141 2024-07-17 07:00:36.691909 2633f9ff-456b-43ab-a425-06959bb5f10a {"md5": "f0616e7bbfab1096b7c9402761c03f6c", "pid": "199212007", "note": [{"label": ["Homepage - https://www.christus-koenig-gemen.de/einrichtungen-christus-koenig-gemen/kirchen/verkuendigungskirche/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Gemen (Borken (Westf.))"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7785301-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199212007", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7785301-5", "source": "GND"}], "classification": [{"name": "Kirchenbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Mariä Verkündigung (Gemen, Borken (Westf.))"], "authorized_access_point": "Verkündigungskirche (Gemen, Borken (Westf.))"} 3 -2024-07-16 19:08:09.697117 2024-07-17 07:00:35.561962 0ac6e4fc-f82a-4ffe-84b9-885ff3675be0 {"md5": "7d2742c6726941c0f4e2736169bb08c4", "pid": "199200955", "note": [{"label": ["Liste der Baudenkmäler in Bestwig - https://de.wikipedia.org/w/index.php?title=Liste_der_Baudenkm%C3%A4ler_in_Bestwig&oldid=242141515"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bestwig"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7784086-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199200955", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7784086-0", "source": "GND"}], "classification": [{"name": "Kirchenbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Baudenkmal", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Kreuzkirche (Bestwig)", "Kreuzkirche Bestwig (Bestwig)", "Ev. Kreuzkirche Bestwig (Bestwig)", "Evang. Kreuzkirche Bestwig (Bestwig)", "Evangelische Kirche (Bestwig)", "Auferstehungskirche (Bestwig)"], "authorized_access_point": "Evangelische Kreuzkirche (Bestwig)"} 3 -2024-07-16 19:08:09.608334 2024-07-17 07:00:35.866637 2da96c3f-0fa1-4d38-a0d3-a017ac7b4728 {"md5": "3e271725c337972c67b37e06b678ad7d", "pid": "199209464", "note": [{"label": ["Homepage - https://www.werre-park.de/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bad Oeynhausen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7785023-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199209464", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7785023-3", "source": "GND"}], "classification": [{"name": "Einkaufszentrum", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Werre-Park Bad Oeynhausen (Bad Oeynhausen)"], "authorized_access_point": "Werre-Park (Bad Oeynhausen)"} 3 -2024-07-16 19:08:09.250272 2024-07-17 07:00:36.921766 f96a1707-b60e-4671-88a4-598b9158ca1d {"md5": "2e9b4b72edec965f2aec8924219c262c", "pid": "19921462X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Coesfeld"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7785589-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)19921462X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7785589-9", "source": "GND"}], "classification": [{"name": "Kaserne", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Freiherr vom Stein Kaserne (Coesfeld)", "Kaserne Coesfeld (Coesfeld)", "Letter Bruch 9 (Coesfeld)"], "authorized_access_point": "Freiherr-vom-Stein-Kaserne (Coesfeld)"} 3 -2024-07-16 19:08:09.950353 2024-07-17 07:00:34.644906 313d888d-3e4a-45f1-9048-0065eb018449 {"md5": "5bbfaff2ef4f6809d9f334f864a29680", "pid": "19919596X", "note": [{"label": ["onlinestreet.de - https://onlinestreet.de/strassen/Denkmalstra%C3%9Fe.Breckerfeld.323395.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Breckerfeld"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7783537-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)19919596X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7783537-2", "source": "GND"}], "classification": [{"name": "Straße", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Denkmalstraße (Breckerfeld)"} 3 -2024-07-16 19:08:10.249726 2024-07-17 07:00:33.56102 793fd48b-e007-48b6-8286-84ec798bcfaa {"md5": "d340c1f979d211f199466ffde3aefe59", "pid": "199189846", "note": [{"label": ["onlinestreet.de - https://onlinestreet.de/strassen/Niedere+Stra%C3%9Fe.Brilon.428144.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Brilon"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7782864-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199189846", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7782864-1", "source": "GND"}], "classification": [{"name": "Straße", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Niedere Straße (Brilon)"} 3 -2024-07-16 19:08:10.165999 2024-07-17 07:00:33.810297 0936636c-cd37-49f8-8ea2-efd05a0f733f {"md5": "21cf8f0445a2ec84fa63a8dce0ef2e63", "pid": "199189854", "note": [{"label": ["onlinestreet.de - https://onlinestreet.de/strassen/Derkere+Stra%C3%9Fe.Brilon.428121.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Brilon"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7782865-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199189854", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7782865-3", "source": "GND"}], "classification": [{"name": "Straße", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Derkere Straße (Brilon)"} 3 -2024-07-16 19:08:10.046317 2024-07-17 07:00:34.392049 9601ad85-3301-4a07-b9bd-1b0940723ca7 {"md5": "7bbdf83489ed7224605298e1c62df65a", "pid": "199189870", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Liste_der_Denkm%C3%A4ler_in_Brilon&oldid=238201542"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Brilon"}], "related": [{"authorized_access_point": "Derkere Straße (Brilon)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7782867-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199189870", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7782867-7", "source": "GND"}], "classification": [{"name": "Bürgerhaus", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Fachwerkbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Baudenkmal", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Derkere Strasse 26 (Brilon)", "Bürgerhaus Derkere Straße 26 (Brilon)"], "authorized_access_point": "Derkere Straße 26 (Brilon)"} 3 -2024-07-16 19:08:10.435973 2024-07-17 07:00:32.962509 e96fc143-eb3d-44da-82c1-4d25bf2e21be {"md5": "b121a0a1543a16f4100834e18169fe70", "pid": "199181993", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Breckerfeld"}, {"authorized_access_point": "Jakobus-Kirche Breckerfeld"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7782000-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199181993", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7782000-9", "source": "GND"}], "classification": [{"name": "Kanzel", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Evangelische Pfarrkirche (Breckerfeld) (Kanzel)"], "authorized_access_point": "Jakobus-Kirche Breckerfeld (Breckerfeld) (Kanzel)"} 3 -2024-07-16 19:08:10.339869 2024-07-17 07:00:33.251952 6e7e97c6-66b3-434b-99a3-dc5902c03fce {"md5": "5b2556a16d4157b460eb41fb9fbd3b76", "pid": "199187282", "note": [{"label": ["Homepage - https://steinhaegerhaeuschen.de"], "noteType": "dataSource"}, {"label": ["Seit 1894 mit rechtmäßigen Ausschank, 1929 zu einer Gaststätte mit dem Namen „Steinhäger Häuschen“ umgebaut."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Steinhagen (Kreis Gütersloh)"}], "related": [{"authorized_access_point": "Bahnhofstraße (Steinhagen, Kreis Gütersloh)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7782582-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199187282", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7782582-2", "source": "GND"}], "classification": [{"name": "Fachwerkbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Bahnhofstraße 2 (Steinhagen, Kreis Gütersloh)", "Steinhägerhäuschen (Steinhagen, Kreis Gütersloh)"], "authorized_access_point": "Steinhäger Häuschen (Steinhagen, Kreis Gütersloh)"} 3 -2024-07-16 19:08:10.69882 2024-07-17 07:00:32.136657 26d298fc-519a-4e65-8215-5829bdcaa714 {"md5": "0a8c0d732e91fc4df0f3ab76c49d91c2", "pid": "199168512", "note": [{"label": ["Homepage - https://www.alpincenter.com/bottrop/de"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bottrop"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7780518-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199168512", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7780518-5", "source": "GND"}], "classification": [{"name": "Wintersportanlage", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Skihalle", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Veltins Alpincenter (Bottrop)", "Alpincenter in Bottrop (Bottrop)", "Prosperstraße 299-301 (Bottrop)"], "authorized_access_point": "Alpincenter Bottrop (Bottrop)"} 3 -2024-07-16 19:08:10.612325 2024-07-17 07:00:32.434903 838dae41-e07b-407c-a90b-34eab50178e2 {"md5": "d463c9a4579cdc6c9d36ec861cea1e44", "pid": "19917332X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Dortberghaus&oldid=242681457"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Dortmund"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7781046-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)19917332X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7781046-6", "source": "GND"}], "classification": [{"name": "Verwaltungsbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Hotel", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Baudenkmal", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Katharinenstraße 9 (Dortmund)"], "authorized_access_point": "Dortberghaus (Dortmund)"} 3 -2024-07-16 19:08:10.865095 2024-07-17 07:00:31.347413 aaa0d634-27d5-4f6c-b2b5-734b732624ee {"md5": "24c1b324f28f916271944201528a71ac", "pid": "19916035X", "note": [{"label": ["onlinestreet.de - https://onlinestreet.de/strassen/Elisabethstra%C3%9Fe.Bochum.59159.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bochum"}, {"authorized_access_point": "Bochum-Wattenscheid"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7779618-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)19916035X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7779618-4", "source": "GND"}], "classification": [{"name": "Straße", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Elisabethstraße (Bochum-Wattenscheid)"], "authorized_access_point": "Elisabethstraße (Bochum)"} 3 -2024-07-16 19:08:10.78811 2024-07-17 07:00:31.59942 70520063-04ba-4265-b3b7-c9927705c229 {"md5": "9afde1fdabeee537e6018a564014152f", "pid": "199164347", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7780057-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199164347", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7780057-6", "source": "GND"}], "classification": [{"name": "Klosteranlage", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Baudenkmal", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Klosteranlage des Ehemaligen Augustinerchorherren-Klosters Ewig (Attendorn)", "Ehemaliges Augustinerchorherrenkloster Ewig (Attendorn)", "Ehemaliges Klostergebäude Ewig (Attendorn)", "Ehemalige Klostergebäude des Klosters Ewig (Attendorn)", "Klosteranlage des ehemaligen Klosters Ewig (Attendorn)", "Ehemaliges Augustinerchorherren-Kloster Ewig (Attendorn)", "Ehemaliges Kloster Ewig (Attendorn)", "Gut Ewig (Attendorn)", "Ehem. Augustinerchorherren-Kloster Ewig, jetzt Justizvollzugsanstalt (Attendorn)", "Biggeweg 5 (Attendorn)", "Gefängnisanlage der Justizvollzugsanstalt Attendorn (Attendorn) (Klosteranlage des Ehem. Augustinerchorherren-Klosters Ewig)"], "authorized_access_point": "Klosteranlage des Ehem. Augustinerchorherren-Klosters Ewig (Attendorn)"} 3 -2024-07-16 19:08:11.03724 2024-07-17 07:00:30.725695 1df181ca-2cce-49d6-9f1a-19902a6b7515 {"md5": "46d0948b90e8ce509d271e2277a4a040", "pid": "199159882", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Florianturm&oldid=240093523", "Stadt Dortmund - https://www.dortmund.de/dortmund-erleben/freizeit-und-kultur/westfalenpark/der-park/florianturm/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Dortmund"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7779566-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199159882", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7779566-0", "source": "GND"}], "classification": [{"name": "Fernsehturm", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Aussichtsturm", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Florian (Dortmund)", "Dortmunder Florian (Dortmund)", "Florianturm im Westfalenpark (Dortmund)", "Florianstraße 2 (Dortmund)"], "authorized_access_point": "Florianturm (Dortmund)"} 3 -2024-07-16 19:08:10.95056 2024-07-17 07:00:31.008214 4fbb0c4f-7e13-4f84-8f12-66422887890c {"md5": "bfaea4e2c4c67702d838c211ee957abb", "pid": "199159998", "note": [{"label": ["onlinestreet.de - https://onlinestreet.de/strassen/Wattenscheider+Hellweg.Bochum.229548.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bochum"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7779578-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199159998", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7779578-7", "source": "GND"}], "classification": [{"name": "Straße", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Wattenscheider Hellweg (Bochum)"} 3 -2024-07-16 19:08:11.686891 2024-07-17 07:00:28.202429 fd7f0e55-39e0-46e6-b285-bc285ec2fb75 {"md5": "b7ef2b21d6a21bc5bafcb0f46b1af7d1", "pid": "199077177", "note": [{"label": ["Wikipedia - https://de.m.wikipedia.org/wiki/Kunst_im_%C3%B6ffentlichen_Raum_in_Arnsberg"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Arnsberg"}, {"authorized_access_point": "Arnsberg-Neheim"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7770364-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199077177", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7770364-9", "source": "GND"}], "classification": [{"name": "Denkmal", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Stele", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Totenleuchte an der Johanneskirche (Arnsberg)", "Totenleuchte (Arnsberg-Neheim)", "Totenstele (Arnsberg)"], "authorized_access_point": "Totenleuchte (Arnsberg)"} 3 -2024-07-16 19:08:11.600424 2024-07-17 07:00:28.505552 474f3d4a-9e36-484d-9c05-12a4af452efc {"md5": "4c4a88f7f82817fa42b3868eff3ff675", "pid": "199089973", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Balve&oldid=244726901#Stadtgliederung"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Balve"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7771795-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199089973", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7771795-8", "source": "GND"}], "variant_access_point": ["Haustadt (Balve)"], "authorized_access_point": "Balve-Haustadt"} 3 -2024-07-16 19:08:11.510015 2024-07-17 07:00:28.818118 6b1031e2-44b9-452c-809b-e9bb3608840d {"md5": "c07e54be36f44bae4a88257b517d8cf2", "pid": "199118167", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Barntrup"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7774950-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199118167", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7774950-9", "source": "GND"}], "classification": [{"name": "Denkmal", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Ehrenmal", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Hitlerstein (Barntrup)"} 3 -2024-07-16 19:08:12.048717 2024-07-17 07:00:27.011953 4520d567-297b-40b4-b5a2-e21d3a9f4e97 {"md5": "b980b29c3e9734a0af78cea509b57b15", "pid": "199013594", "note": [{"label": ["onlinestreet.de - https://onlinestreet.de/strassen/Benekestra%C3%9Fe.Detmold.30979.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Detmold"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7763244-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199013594", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7763244-8", "source": "GND"}], "classification": [{"name": "Straße", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Benekestraße (Detmold)"} 3 -2024-07-16 19:08:11.949487 2024-07-17 07:00:27.301814 e8db5cea-9281-46fe-a045-c92331a99ad2 {"md5": "8dc28e94a79c29b108869272d8fb2336", "pid": "199022534", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Arnsberg"}, {"authorized_access_point": "Arnsberg-Holzen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7764246-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199022534", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7764246-6", "source": "GND"}], "classification": [{"name": "Haus", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Haus Schlünder (Arnsberg-Holzen)", "Haus Schlünder im Luerwald (Arnsberg)", "Haus am Brüggestück (Arnsberg)"], "authorized_access_point": "Haus Schlünder (Arnsberg)"} 3 -2024-07-16 19:08:12.34821 2024-07-17 07:00:25.771121 a87ae66e-e999-43ad-889f-0e532e9f72a8 {"md5": "fa6d918bbd5d3b48ba879406e3380a07", "pid": "199002894", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7762049-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199002894", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7762049-5", "source": "GND"}], "classification": [{"name": "IHK-Bezirk", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Detmold (IHK-Bezirk)"], "authorized_access_point": "IHK-Bezirk Detmold"} 3 -2024-07-16 19:08:12.194228 2024-07-17 07:00:26.439503 cd64864a-85b9-4a8b-9b57-92608db2e16c {"md5": "f25f1cac93791b9b4952e4988945e5fc", "pid": "199011249", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Altst%C3%A4dter_Nicolaikirche&oldid=245915909"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bielefeld"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7762981-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199011249", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7762981-4", "source": "GND"}], "classification": [{"name": "Hallenkirche", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Ev. Altstädter Nicolaikirche (Bielefeld)", "Evangelische Altstädter Nicolaikirche (Bielefeld)", "Nicolaikirche (Bielefeld)", "Ev. Altstädter Nicolaikirche Bielefeld (Bielefeld)", "Nikolaikirche zu Bielefeld (Bielefeld)"], "authorized_access_point": "Altstädter Nicolaikirche (Bielefeld)"} 3 -2024-07-16 19:08:12.136972 2024-07-17 07:00:26.70953 1774671b-92c3-49cf-b22d-b9bc42e2fb0c {"md5": "eae98f26f3f4c2656fa1e05d2ec08f92", "pid": "199013276", "note": [{"label": ["onlinestreet.de - https://onlinestreet.de/strassen/Kortumstra%C3%9Fe.Bochum.133165.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bochum"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7763208-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199013276", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7763208-4", "source": "GND"}], "classification": [{"name": "Straße", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Kortumstraße (Bochum)"} 3 -2024-07-16 19:08:13.053225 2024-07-17 06:58:17.499674 4fc86281-bb34-44dd-bdce-e87526964e71 {"md5": "9ac3d3234b9b5ff943c16eef0db3db2e", "pid": "043225608", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4322560-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043225608", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4322560-3", "source": "GND"}], "variant_access_point": ["Stadt Hagenow"], "authorized_access_point": "Hagenow"} 3 -2024-07-16 19:08:12.700646 2024-07-17 06:58:18.52266 98343f26-bef8-4d9e-a446-1fccf8dc49fb {"md5": "5c4510b8faeb714f706d40407ff9420a", "pid": "050551604", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=195150922"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Kreis Sonderburg"}, {"authorized_access_point": "Amt Sønderjylland"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5055160-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)050551604", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)5055160-7", "source": "GND"}], "classification": [{"name": "Amt", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Amt Sonderburg", "Sønderborg Amt", "Sønderborg (Amt)", "Sonderburg (Amt)"], "authorized_access_point": "Amt Sønderborg"} 3 -2024-07-16 19:07:43.999853 2024-07-17 06:58:57.942585 da277d32-bcc1-4e96-94ac-35cc06420801 {"md5": "8d2604cbe47ab62520278f113c9e1db0", "pid": "107373157X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Baden (Niederösterreich)"}, {"authorized_access_point": "Schloss Weilburg (Baden, Niederösterreich)"}, {"authorized_access_point": "Doblhoffpark (Baden, Niederösterreich)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/107373157X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)107373157X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)107373157X", "source": "GND"}], "classification": [{"name": "Wasserspeier", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Schloss Weilburg (Baden, Niederösterreich) (Wasserspeier)"} 3 -2024-07-16 19:07:43.905742 2024-07-17 06:58:58.187599 794c059e-3838-4c31-a68f-63795c745839 {"md5": "d91de69202a7d4cc7b63b5aaffcc87eb", "pid": "1073950220", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Lahntalradweg"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Netphen"}, {"authorized_access_point": "Lahnstein"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1073950220", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1073950220", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1073950220", "source": "GND"}], "classification": [{"name": "Radwanderweg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Lahntal-Radweg", "Lahnradwanderweg"], "authorized_access_point": "Lahntalradweg"} 3 -2024-07-16 19:07:42.838685 2024-07-17 06:59:01.966256 e4a3607c-10d7-4f65-8495-03a62a0543d8 {"md5": "3065477d854243d928d298357ec42a49", "pid": "1079568352", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Laurentiuskirche_(Arnoldshain)"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Schmitten (Hochtaunuskreis)"}, {"authorized_access_point": "Arnoldshain"}, {"authorized_access_point": "Schmitten-Arnoldshain"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1079568352", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1079568352", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1079568352", "source": "GND"}], "classification": [{"name": "Kirchenbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Laurentiuskirche (Arnoldshain)", "Evangelische Pfarrkirche Sankt Laurentius (Schmitten, Hochtaunuskreis)", "Ev. Pfarrkirche St. Laurentius (Schmitten, Hochtaunuskreis)"], "authorized_access_point": "Laurentiuskirche (Schmitten, Hochtaunuskreis)"} 3 -2024-07-16 19:08:12.61263 2024-07-17 07:00:24.918009 8b4d6584-8ae0-42fb-9ff0-9a8348021dbf {"md5": "1f9e0324b6266d40e1dbe95126f3ce11", "pid": "199000239", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7761750-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199000239", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7761750-2", "source": "GND"}], "authorized_access_point": "Castrop (Region)"} 3 -2024-07-16 19:08:12.963305 2024-07-17 06:58:17.748856 2e9a0028-de06-4341-be2d-5bacbc26f60f {"md5": "1648e7936be51e98eac061ef4c3b713c", "pid": "043244793", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Paunsdorf"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4324479-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043244793", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4324479-8", "source": "GND"}], "variant_access_point": ["Paunsdorf (Leipzig)"], "authorized_access_point": "Leipzig-Paunsdorf"} 3 -2024-07-16 19:08:12.869435 2024-07-17 06:58:17.978581 5d97f972-9675-4b28-ac7b-69fd33fb38f1 {"md5": "b341f516cebc47bfbfbfb79c97a2ef19", "pid": "050039350", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5003935-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)050039350", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)5003935-0", "source": "GND"}], "variant_access_point": ["Löszmig"], "authorized_access_point": "Leipzig-Löszmig"} 3 -2024-07-16 19:08:12.785061 2024-07-17 06:58:18.247609 a9d41075-3a01-431c-94a0-acbe7acb96ad {"md5": "4308cb84168011b86024ee3217fef890", "pid": "050133039", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Syosset&oldid=236501513", "GeoNames - https://www.geonames.org/5140402/syosset.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5013303-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)050133039", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)5013303-2", "source": "GND"}], "authorized_access_point": "Syosset, NY"} 3 -2024-07-16 19:08:13.763738 2024-07-17 06:58:14.8388 732c45c4-f648-4ff0-a6b4-10840f6302c3 {"md5": "add47264d74b7d8e874962866d745130", "pid": "042627494", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Dreikaiserbäder"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4262749-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042627494", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4262749-7", "source": "GND"}], "classification": [{"name": "Seebad", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Seebad Heringsdorf", "Gemeinde Seebad Heringsdorf", "Ostseebad Heringsdorf", "Heringsdorf (Ostseebad)", "Ostseeheilbad Heringsdorf", "Gemeinde Ostseebad Heringsdorf", "Heringsdorf"], "authorized_access_point": "Heringsdorf (Seebad)"} 3 -2024-07-16 19:08:13.579532 2024-07-17 06:58:15.662314 67cc4cb0-414b-4c50-8016-944d1aab8ffb {"md5": "7465c87d3543beffc8186c4dd5d1752d", "pid": "042788714", "note": [{"label": ["Homepage - https://www.reichenbach-vogtland.de/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4278871-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042788714", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4278871-7", "source": "GND"}], "variant_access_point": ["Reichenbach, Vogtland", "Richenbach", "Richinbach", "Reichennbach", "Reichenboch", "Rechenbach", "Reichenbach"], "authorized_access_point": "Reichenbach im Vogtland"} 3 -2024-07-16 19:08:13.498001 2024-07-17 06:58:15.926157 a99823f5-e6e7-4568-8b08-92022153f911 {"md5": "1d826c3e3075e3e4f9f4e952fbb8a245", "pid": "042939526", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Prag-Smichow"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4293952-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042939526", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4293952-5", "source": "GND"}], "variant_access_point": ["Smíchov (Prag)"], "authorized_access_point": "Smichow (Prag)"} 3 -2024-07-16 19:08:13.413313 2024-07-17 06:58:16.194789 3901a4b7-f016-460e-a30f-299eb7c1d9eb {"md5": "684e03c76e81954f0902a4730fb4afd9", "pid": "042939550", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Prag"}, {"authorized_access_point": "Smichow (Prag)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4293955-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042939550", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4293955-0", "source": "GND"}], "variant_access_point": ["Prag-Smíchov", "Smíchov (Prag)", "Smichow (Prag)"], "authorized_access_point": "Prag-Smichow"} 3 -2024-07-16 19:08:13.216063 2024-07-17 06:58:16.744636 7aa61321-075d-424c-b97f-a76dc200e249 {"md5": "db7b8b3fba95c148d573d1b68eee3e99", "pid": "043138764", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Langschede&oldid=246152514"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Langschede"}, {"authorized_access_point": "Fröndenberg/Ruhr"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4313876-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043138764", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4313876-7", "source": "GND"}], "authorized_access_point": "Fröndenberg-Langschede"} 3 -2024-07-16 19:07:42.500743 2024-07-17 06:59:03.268685 ecb3f8c6-a8e8-40b8-9f25-42c9e59ba50b {"md5": "5e5649cc36bb9cf8f70ff3f8a0337ee2", "pid": "1081330236", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/wiki/Norbury_Park"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Leatherhead"}, {"authorized_access_point": "Dorking"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081330236", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1081330236", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1081330236", "source": "GND"}], "classification": [{"name": "Herrenhaus", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Park", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Norbury Park (Leatherhead)"], "authorized_access_point": "Norbury Park"} 3 -2024-07-16 19:08:13.29882 2024-07-17 06:58:16.498861 40eb7490-c231-4176-9f3d-4585ad1100b9 {"md5": "e2b71ffc7aa01833f079a10dc0e2b0a1", "pid": "042976200", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Severo-Osetinskaja ASSR"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4297620-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042976200", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4297620-0", "source": "GND"}], "variant_access_point": ["Nordossetien-Alanien", "Republik Nordossetien-Alanien", "Respublika Sewernaja Ossetija-Alanija", "Respublika Severnaja Osetija-Alanija", "Severnaja Osetija-Alanija", "Respublikä Cägat Iryston-Alanijy", "Zägat Iryston", "Cägat Iryston", "Alani", "Alania", "North Ossetia", "Республикӕ Цӕгат Ирыстон-Аланийы"], "authorized_access_point": "Nordossetien"} 3 -2024-07-16 19:08:14.523913 2024-07-17 06:58:12.01285 ec9ea054-5c47-4c3c-a0ec-1d641149d9be {"md5": "37c3b0f3bc2a954579a8d8058a5d927a", "pid": "042299004", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4229900-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042299004", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4229900-7", "source": "GND"}], "classification": [{"name": "Berg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Mount Annie, Nev."} 3 -2024-07-16 19:08:14.431291 2024-07-17 06:58:12.322511 9e4634b7-e510-40cb-a3fd-3097daba50de {"md5": "18d09284fe032c60a6048694b37760f3", "pid": "042387175", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4238717-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042387175", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4238717-6", "source": "GND"}], "variant_access_point": ["ʿUnaiza", "ʿUnayza"], "authorized_access_point": "ʿUnayzah"} 3 -2024-07-16 19:08:14.344765 2024-07-17 06:58:12.644433 ce10e691-677f-49a9-acc6-b961438b1ee9 {"md5": "8f868d32784a0d979cb287a4504a0f4b", "pid": "042400228", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4240022-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042400228", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4240022-3", "source": "GND"}], "classification": [{"name": "Insel", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Ydra (Insel)", "Hydrea (Insel)", "Idra (Insel)", "Idrea", "Idhra (Insel)", "Údra"], "authorized_access_point": "Hydra (Insel)"} 3 -2024-07-16 19:08:14.125366 2024-07-17 06:58:13.483324 b7a21388-6468-4247-bad8-d666ab2c1ebc {"md5": "8c02748113adf523a0cec026af2e9014", "pid": "042492777", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4249277-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042492777", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4249277-4", "source": "GND"}], "classification": [{"name": "Verbandsgemeinde", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Bernkastel-Kues (Verbandsgemeinde)"], "authorized_access_point": "Verbandsgemeinde Bernkastel-Kues"} 3 -2024-07-16 19:08:14.034601 2024-07-17 06:58:14.034583 57ec2fe0-150e-42a6-8fba-311001309a91 {"md5": "100a3f74eb4c96c062c69ebd8354ee46", "pid": "042553628", "note": [{"label": ["Homepage - https://www.gnotzheim.de/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4255362-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042553628", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4255362-3", "source": "GND"}], "variant_access_point": ["Markt Gnotzheim"], "authorized_access_point": "Gnotzheim"} 3 -2024-07-16 19:08:13.849057 2024-07-17 06:58:14.58626 ce16bfbe-8840-4ef9-a898-7e9aca5a8235 {"md5": "c063b787c58f7aa77a3ac2b83b779fc7", "pid": "042602564", "note": [{"label": ["Homepage - https://stiftskirche.de/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Stuttgart"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4260256-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042602564", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4260256-7", "source": "GND"}], "classification": [{"name": "Stufenhallenkirche", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Stiftskirche zum Hl. Kreuz (Stuttgart)", "Ev. Stiftskirche Hl. Kreuz (Stuttgart)", "Evangelische Stiftskirche zum Heiligen Kreuz (Stuttgart)", "Stiftskirche (Stuttgart)", "Evangelische Stiftskirche Heilig Kreuz (Stuttgart)"], "authorized_access_point": "Stiftskirche zum Heiligen Kreuz (Stuttgart)"} 3 -2024-07-16 19:07:42.025614 2024-07-17 06:59:05.048196 f45bd557-8690-4660-adee-617bdca95063 {"md5": "9738c183d86de8f642ed1952dc25e6a6", "pid": "1081838655", "note": [{"label": ["Schloss Wyl - http://www.schloss-wyl.ch/weblica/index.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Schlosswil"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081838655", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1081838655", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1081838655", "source": "GND"}], "classification": [{"name": "Schloss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Schloss Wil (Schlosswil)", "Burg Wyl (Schlosswil)", "Burg Wil (Schlosswil)"], "authorized_access_point": "Schloss Wyl (Schlosswil)"} 3 -2024-07-16 19:07:41.586507 2024-07-17 06:59:06.435253 b5f5084d-d5d5-4dfe-9ad2-114de321d88d {"md5": "89834efd07f15f64d33cdd5f06bd5da0", "pid": "1081845031", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Frutigen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081845031", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1081845031", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1081845031", "source": "GND"}], "classification": [{"name": "Burgruine", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Armenhaus", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Ehemalige Burg Tellenburg (Frutigen)"], "authorized_access_point": "Burgruine Tellenburg (Frutigen)"} 3 -2024-07-16 19:07:41.318603 2024-07-17 06:59:07.213331 90772bb7-eebd-4c65-9876-736e96c7335d {"md5": "8f5b9bb73d952314e7f01653e199c681", "pid": "1082153850", "note": [{"label": ["Internet - https://www.pizbube.ch/produkt/BC1E395D0E02F0325F3E329DF5C9EB51#.VrStslJRG70"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Europäischer Fernwanderweg 8"}], "related": [{"authorized_access_point": "Devin (Slowakei)"}, {"authorized_access_point": "Duklapass"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1082153850", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1082153850", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1082153850", "source": "GND"}], "classification": [{"name": "Fernwanderweg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Weg der Helden"} 3 -2024-07-16 19:08:14.205607 2024-07-17 06:58:13.175501 8ddc0def-27e9-4dfa-86b2-fadaa782c2cd {"md5": "4aa9ae0f6c6b25794a20ece6fcedbc94", "pid": "042490448", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4249044-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042490448", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4249044-3", "source": "GND"}], "authorized_access_point": "Lesparre-Médoc"} 3 -2024-07-16 19:08:15.29884 2024-07-17 06:58:08.294516 7910563b-5761-4680-9bf0-98bb5c81e844 {"md5": "6c17a93b6e952f7ce7d3c3c8c80baf40", "pid": "041192443", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Zillis"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4119244-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041192443", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4119244-8", "source": "GND"}], "classification": [{"name": "Saalkirche", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["St. Martin (Zillis)", "Reformierte Kirche St. Martin (Zillis)"], "authorized_access_point": "Sankt Martin (Zillis)"} 3 -2024-07-16 19:08:15.243032 2024-07-17 06:58:08.571689 120e037a-d681-4f4c-9129-ccfae1fb8c24 {"md5": "da373fcb530a82d36835fd6ac75582f1", "pid": "041194152", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=208608981"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Region Nordjylland"}, {"authorized_access_point": "Region Midtjylland"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4119415-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041194152", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4119415-9", "source": "GND"}], "classification": [{"name": "Amt", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Viborg Amt", "Amtskommune Viborg", "Amtsbezirk Viborg", "Viborg Amtskommune", "Viborg (Amt)"], "authorized_access_point": "Amt Viborg"} 3 -2024-07-16 19:08:15.154945 2024-07-17 06:58:09.691155 fca20264-7654-480a-b56b-5b14543a1469 {"md5": "a31efe0f361db6c81c3acdc516afd49d", "pid": "041370538", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Ostpreußen"}], "related": [{"authorized_access_point": "Preußen (Ordensstaat)"}, {"authorized_access_point": "Preußen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4137053-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041370538", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4137053-3", "source": "GND"}], "classification": [{"name": "Herzogtum", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Preußen (Herzogtum)", "Prūsijos Kunigaikštystė", "Ducal Prussia", "Prusy Książęce", "Prusko (vojvodstvo)", "Prusko (vévodství)"], "authorized_access_point": "Herzogtum Preußen"} 3 -2024-07-16 19:08:15.070475 2024-07-17 06:58:09.963069 f1029fb7-57ef-4765-b202-ddf976d2c98b {"md5": "337069959541cd87a9c4d84844eb1ae2", "pid": "041401174", "note": [{"label": ["Homepage - http://www.ltk.dk"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4140117-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041401174", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4140117-7", "source": "GND"}], "variant_access_point": ["Lyngby (Kopenhagen)", "Tårboek", "Lyngby", "Lyngby-Taarbaek"], "authorized_access_point": "Lyngby-Tårbaek"} 3 -2024-07-16 19:08:14.88013 2024-07-17 06:58:10.795162 76c7639f-a6d8-44a5-a91f-7db36b3714a5 {"md5": "37d88ebf59773172a9c99e7508affb9f", "pid": "042209927", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Kotor_Varo%C5%A1&oldid=246161593"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4220992-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042209927", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4220992-4", "source": "GND"}], "variant_access_point": ["Kotor-Varoš"], "authorized_access_point": "Kotor Varoš"} 3 -2024-07-16 19:08:14.790417 2024-07-17 06:58:11.099601 e78855a6-842e-424e-a202-bc9632627816 {"md5": "ce870bd581a822462a6e6b5bbef09805", "pid": "042236037", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Bernkastel-Kues"}, {"authorized_access_point": "Andel"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4223603-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042236037", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4223603-4", "source": "GND"}], "variant_access_point": ["Andel (Bernkastel-Kues)"], "authorized_access_point": "Bernkastel-Kues-Andel"} 3 -2024-07-16 19:07:40.748862 2024-07-17 06:59:09.326431 500dfca3-f4a5-49ea-8a12-310da9f2dce5 {"md5": "8739a066649a05f4879019b55ab980c5", "pid": "1099133092", "note": [{"label": ["Internet - http://www.allgaeu.de/wanderrouten?referralTopic=wandern"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1099133092", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1099133092", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1099133092", "source": "GND"}], "classification": [{"name": "Fernwanderweg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Rundwanderweg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Wandertrilogie-Allgäu"], "authorized_access_point": "Wandertrilogie Allgäu"} 3 -2024-07-16 19:07:40.315392 2024-07-17 06:59:10.795872 dd9d9554-aa15-4f01-98e2-daad18f85589 {"md5": "4f07c8343a61394ce8040dab1bd5e277", "pid": "1107605113", "note": [{"label": ["Internet - http://www.allgaeu.de/himmelsstuermer-route"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Wandertrilogie Allgäu"}], "related": [{"authorized_access_point": "Halblech"}, {"authorized_access_point": "Pfronten"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1107605113", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1107605113", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1107605113", "source": "GND"}], "classification": [{"name": "Fernwanderweg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Himmelsstürmer-Route"], "authorized_access_point": "Himmelsstürmer Route"} 3 -2024-07-16 19:08:14.971603 2024-07-17 06:58:10.525406 4e5fa35a-3f8a-45e5-8e82-4887e3e3e8a5 {"md5": "0184969d8086f6df67e49310ac4a6e90", "pid": "042005450", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Oberrheinisches Tiefland"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4200545-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042005450", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4200545-0", "source": "GND"}], "variant_access_point": ["Regio, Oberrhein"], "authorized_access_point": "Oberrheinisches Tiefland (Süd)"} 3 -2024-07-16 19:08:16.196118 2024-07-17 06:58:02.726027 631f4604-6f83-4774-8bbd-cf791edb1c74 {"md5": "eb30f6ad259467188fa89f550f1b215d", "pid": "040994716", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Gohlis (Leipzig)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4099471-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040994716", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4099471-5", "source": "GND"}], "variant_access_point": ["Gohlis (Leipzig)"], "authorized_access_point": "Leipzig-Gohlis"} 3 -2024-07-16 19:08:16.108219 2024-07-17 06:58:03.256502 de371e42-14a9-4df7-bd87-9da60463cb9c {"md5": "6b75fe6a916167664bd53d18db77b57b", "pid": "041011848", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4101184-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041011848", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4101184-3", "source": "GND"}], "authorized_access_point": "Niebüll"} 3 -2024-07-16 19:08:15.889696 2024-07-17 06:58:04.698052 7743ee7f-0b74-4ed4-8ac7-ea3240e6c958 {"md5": "028b1ab290f28b753fb82da415a11958", "pid": "04106125X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=St%C3%BCtzerbach&oldid=244058408"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Stützerbach (Kreis Arnstadt)"}, {"authorized_access_point": "Stützerbach (Kreis Schleusingen)"}, {"authorized_access_point": "Ilmenau-Stützerbach"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4106125-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04106125X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4106125-1", "source": "GND"}], "authorized_access_point": "Stützerbach"} 3 -2024-07-16 19:08:15.805327 2024-07-17 06:58:05.00996 4c5435c7-fbb0-4b01-ba53-9055ebc2be8a {"md5": "0f46129a27fca688fb6be511a781a224", "pid": "041063368", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Tihama"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4106336-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041063368", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4106336-3", "source": "GND"}], "variant_access_point": ["Nord-Tihama"], "authorized_access_point": "Tihama (Nord)"} 3 -2024-07-16 19:08:15.719297 2024-07-17 06:58:05.642156 cf448826-d1d2-4efa-a4ec-5145920d07a9 {"md5": "ef89d2b5de7839d764f6a6a85cb83583", "pid": "041084675", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4108467-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041084675", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4108467-6", "source": "GND"}], "authorized_access_point": "Wittmund"} 3 -2024-07-16 19:08:15.633372 2024-07-17 06:58:05.903618 9391f5eb-16e7-4556-84f7-1335dc64c457 {"md5": "7c284e25723039363d298d28292ed3f4", "pid": "041087828", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/Wustrow_(Fischland)"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4108782-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041087828", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4108782-3", "source": "GND"}], "variant_access_point": ["Wustrow", "Wustrow (Fischland)", "Wustro (Ostseebad)", "Wustrow (Fischland)", "Wustrow (Ribnitz-Damgarten)"], "authorized_access_point": "Wustrow Ostseebad"} 3 -2024-07-16 19:07:40.226796 2024-07-17 06:59:11.067055 c1d33481-a93d-472a-b8e0-daf5ee0d4fdf {"md5": "942877fcae630dccf08a947a9c4d6c77", "pid": "112132925X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Sakdrissi"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/112132925X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)112132925X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)112132925X", "source": "GND"}], "classification": [{"name": "Archäologische Stätte", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Bergbaugebiet", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Sakdrisi"], "authorized_access_point": "Sakdrissi"} 3 -2024-07-16 19:07:39.373418 2024-07-17 06:59:13.83522 6958492e-108a-4756-b6a9-9f69d7874066 {"md5": "06c4bbc01e8205a54d1ca7d2d3a11e2d", "pid": "113698612X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Hansaweg"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Herford"}, {"authorized_access_point": "Hameln"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/113698612X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)113698612X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)113698612X", "source": "GND"}], "classification": [{"name": "Fernwanderweg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Hansa Weg", "Hansawanderweg", "Hansa Wanderweg"], "authorized_access_point": "Hansaweg"} 3 -2024-07-16 19:08:16.023872 2024-07-17 06:58:04.394104 31a0dd3e-c334-44ba-835c-2e848e929648 {"md5": "ddab642c227a977d10a4b2702e214755", "pid": "041058445", "note": [{"label": ["Homepage - https://www.scheidegg.de/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4105844-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041058445", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4105844-6", "source": "GND"}], "authorized_access_point": "Scheidegg"} 3 -2024-07-16 20:07:08.791895 2024-07-17 06:57:00.404086 832e288d-9ef0-4b8b-85c8-e2cdabe14c50 {"md5": "09380eec523e6364b0d9f6e7d36de2e9", "pid": "000339784", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "USA"}, {"authorized_access_point": "USA"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/33978-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)000339784", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)33978-7", "source": "GND"}], "variant_access_point": ["CSA", "Confederate States", "Confederate States of America", "CSA (Confederate States of America)", "Verbündete Staaten von Amerika"], "authorized_access_point": "Konföderierte Staaten von Amerika"} 3 -2024-07-16 19:08:16.908276 2024-07-17 06:57:58.133511 16f53296-a17a-4092-b7a4-07948ee9ebe3 {"md5": "99a2af73b4b90a53f7572fec77230ce4", "pid": "040802558", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4080255-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040802558", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4080255-3", "source": "GND"}], "variant_access_point": ["Bandoeng", "Bandong", "Kota Kembang"], "authorized_access_point": "Bandung"} 3 -2024-07-16 19:08:16.729545 2024-07-17 06:57:59.524703 cabf8502-47d0-4b97-9222-72b7ae92bd85 {"md5": "74fb04c0483981e3ebe7a9b9248c99e4", "pid": "040865622", "note": [{"label": ["Homepage - http://www.fuerstenfeld.at", "Homepage - https://fuerstenfeld.gv.at"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Altenmarkt bei Fürstenfeld"}, {"authorized_access_point": "Übersbach"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4086562-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040865622", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4086562-9", "source": "GND"}], "variant_access_point": ["Stadtgemeinde Fürstenfeld", "Fürstenfeld Thermenhauptstadt"], "authorized_access_point": "Fürstenfeld"} 3 -2024-07-16 19:08:16.554681 2024-07-17 06:58:00.460137 b5f17afa-47c0-45bf-b4cf-459b79ddcecf {"md5": "0b68af4d83e7ba3a1755b94b8878ccc5", "pid": "040912833", "note": [{"label": ["Wohnplatz im Ortsteil Koßwig der Stadt Vetschau/Spreewald im Landkreis Oberspreewald-Lausitz"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Vetschau/Spreewald"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4091283-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040912833", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4091283-8", "source": "GND"}], "variant_access_point": ["Dubrawa", "Dubrau (Vetschau/Spreewald)"], "authorized_access_point": "Dubrau (Calau)"} 3 -2024-07-16 19:08:16.471187 2024-07-17 06:58:01.632548 f02fde57-6c03-4fe6-a026-3d423b7173a6 {"md5": "77f81d829177a6d3c1ecfc2a1048a75b", "pid": "040952789", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4095278-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040952789", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4095278-2", "source": "GND"}], "variant_access_point": ["Gemeinde Hille"], "authorized_access_point": "Hille"} 3 -2024-07-16 19:07:38.875587 2024-07-17 06:59:15.534406 15cd28bc-c95a-4324-a0d1-5b3c58fe8c81 {"md5": "df50ecd0e121010fcbf43b99f6aff71a", "pid": "1147654123", "note": [{"label": ["Internet - https://www.rheinhessen.de/rheinterrassenweg", "Wikipedia - https://de.wikipedia.org/wiki/Rheinterrassenweg"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Worms"}, {"authorized_access_point": "Mainz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1147654123", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1147654123", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1147654123", "source": "GND"}], "classification": [{"name": "Wanderweg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Rheinterrassenweg", "Rhein-Terrassen-Weg"], "authorized_access_point": "RheinTerrassenWeg"} 3 -2024-07-16 19:07:38.521338 2024-07-17 06:59:16.646379 2974793e-c88b-405d-88a2-f5c34dc793e4 {"md5": "b851e3c235cb82965ee68eb6a577f15c", "pid": "1161625046", "note": [{"label": ["Internet - https://www.kaufbeuren-tourismus.de/aktiv/schlossparkradrunde.html", "Internet - https://www.schlosspark.de/schlosspark-erleben/schlossparkradrunde.html"], "noteType": "dataSource"}, {"label": ["219 km langer Radrundweg im Ostallgäu, als Ausgangsort wird Füssen genannt"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1161625046", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1161625046", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1161625046", "source": "GND"}], "classification": [{"name": "Radwanderweg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Allgäuer Schlossparkradrunde"], "authorized_access_point": "Schlossparkradrunde im Allgäu"} 3 -2024-07-16 19:08:16.641142 2024-07-17 06:57:59.846364 29fab7be-4434-4b17-9bf4-ded72e0a669f {"md5": "fc41a210c90a7dfc4ef59de225ebce35", "pid": "040873862", "note": [{"label": ["unter - https://de.wikipedia.org/wiki/Bernkastel-Kues"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Bernkastel-Kues"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4087386-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040873862", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4087386-9", "source": "GND"}], "authorized_access_point": "Bernkastel"} 3 -2024-07-16 19:08:16.386399 2024-07-17 06:58:01.906186 07c90e6a-e857-4bc7-a562-98c1cf8093c2 {"md5": "b83dd7ecdd3bae1d31d9a63d14024910", "pid": "040956075", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Homburg (Nümbrecht)"}, {"authorized_access_point": "Nümbrecht"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4095607-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040956075", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4095607-6", "source": "GND"}], "authorized_access_point": "Nümbrecht-Homburg"} 3 -2024-07-16 19:08:20.166917 2024-07-17 06:57:00.713694 4f892ab2-770b-4727-9a63-f9cf53b00e29 {"md5": "e2a78a0aaf1313433bdd5d7594fe980e", "pid": "000347078", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Aalen"}, {"authorized_access_point": "Wasseralfingen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/34707-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)000347078", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)34707-3", "source": "GND"}], "authorized_access_point": "Aalen-Wasseralfingen"} 3 -2024-07-16 19:08:17.746127 2024-07-17 06:57:41.330468 2ac972b1-50d7-4396-8bed-b4b8b4ce3f2b {"md5": "af23556ade20de73e08160f5923c7392", "pid": "04060151X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4060151-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04060151X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4060151-1", "source": "GND"}], "variant_access_point": ["Tihamah"], "authorized_access_point": "Tihama"} 3 -2024-07-16 19:08:17.475911 2024-07-17 06:57:43.182797 e43a2c10-3cff-4b5f-b6e7-0c7efee7e9de {"md5": "920daed676c949a8b31ea3e5f056bb7f", "pid": "040657752", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4065775-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040657752", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4065775-9", "source": "GND"}], "classification": [{"name": "Becken", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Münstersche Bucht", "Münstersche Kreidebucht", "Münsterländer Bucht", "Münsterländer Becken"], "authorized_access_point": "Westfälische Bucht"} 3 -2024-07-16 19:08:17.386792 2024-07-17 06:57:43.706428 cd328c4c-989b-43b1-bf74-c0ff1f170834 {"md5": "b65e184868796e42405e78917da973a6", "pid": "040680223", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Kreis Schwiebus"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4068022-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040680223", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4068022-8", "source": "GND"}], "classification": [{"name": "Kreis", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Land Schwiebus", "Landkreis Züllichau-Schwiebus", "Züllichau-Schwiebus (Kreis)"], "authorized_access_point": "Kreis Züllichau-Schwiebus"} 3 -2024-07-16 19:08:17.253241 2024-07-17 06:57:48.052439 51a94562-a290-4e24-b508-910f60d0c78e {"md5": "6a66ad04575106567ad9d2253e6f496b", "pid": "040738582", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Bernkastel-Kues"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4073858-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040738582", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4073858-9", "source": "GND"}], "variant_access_point": ["Cues"], "authorized_access_point": "Kues"} 3 -2024-07-16 19:08:17.158578 2024-07-17 06:57:50.553394 6a4f7389-c5ad-4f53-b8eb-3538ca906f2e {"md5": "bec8c08ef53c3071b8b2df12a775af8e", "pid": "040754766", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Herzogtum Schleswig"}, {"authorized_access_point": "Dänemark"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4075476-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040754766", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4075476-5", "source": "GND"}], "variant_access_point": ["Südliches Jütland", "Jütland (Süd)", "Schleswig (Nord)", "Südjütland", "Nordslesvig", "Dänemark (Süd)", "Süddänemark", "Sønderjylland"], "authorized_access_point": "Nordschleswig"} 3 -2024-07-16 19:08:17.65895 2024-07-17 06:57:41.616225 fb75675e-64d0-4e8d-aa4c-72578ba07b5c {"md5": "974d3997179b4ffa4ed35846f8b1bfc2", "pid": "040604853", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Etrurien"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4060485-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040604853", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4060485-8", "source": "GND"}], "classification": [{"name": "Toskaner", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Toscana", "Tuscany", "Tuszien", "Tuscien", "Regione Toscana", "Granducato Toscana", "Großherzogtum Toskana"], "authorized_access_point": "Toskana"} 3 -2024-07-16 19:07:38.16449 2024-07-17 06:59:17.706031 86f7c233-f1e8-4902-8264-c770fd04a969 {"md5": "1ef82d8eed7bcba6642643d49154e861", "pid": "116355815X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Ahlbeck_(Heringsdorf)"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Heringsdorf (Seebad)"}, {"authorized_access_point": "Dreikaiserbäder-Ahlbeck"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/116355815X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)116355815X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)116355815X", "source": "GND"}], "variant_access_point": ["Ahlbeck (Heringsdorf, Seebad)"], "authorized_access_point": "Heringsdorf-Ahlbeck"} 3 -2024-07-16 19:08:18.35985 2024-07-17 06:57:27.254403 756a3b41-e3be-46ff-a607-ab765ec5e34d {"md5": "6f018f19ab7de29089d9048aa367d7d3", "pid": "04037372X", "note": [{"label": ["Homepage - https://www.mannheim.de"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4037372-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04037372X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4037372-1", "source": "GND"}], "variant_access_point": ["Mannem", "Monnem", "Stadtgemeinde Mannheim", "Großherzoglich Badische Hauptstadt Mannheim", "Grh. Badische Hauptstadt Mannheim", "Badische Hauptstadt Mannheim", "Mannheim, Stadt im Quadrat", "Mannheim 2", "Stadt Mannheim", "Mannhemii", "Man(nhemium", "Mannehemium", "Interamnium"], "authorized_access_point": "Mannheim"} 3 -2024-07-16 19:08:18.309496 2024-07-17 06:57:27.524029 e83e6512-5b84-440e-adf9-cdcfd18c522c {"md5": "f1a215dd0270cf4e2a71c24287bb34a4", "pid": "040376044", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Oetzsch"}, {"authorized_access_point": "Gautzsch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4037604-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040376044", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4037604-7", "source": "GND"}], "variant_access_point": ["Stadt Markkleeberg", "Cleburg"], "authorized_access_point": "Markkleeberg"} 3 -2024-07-16 19:08:18.210632 2024-07-17 06:57:31.069401 8eb2a376-6226-4330-b713-3b89df268845 {"md5": "2d1b373cf31436f789af71db1cbf36bc", "pid": "04041146X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Nagold&oldid=218578103", "Homepage - https://www.nagold.de/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4041146-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04041146X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4041146-1", "source": "GND"}], "variant_access_point": ["Stadt Nagold", "Große Kreisstadt Nagold"], "authorized_access_point": "Nagold"} 3 -2024-07-16 19:08:18.116946 2024-07-17 06:57:32.92203 a532d6ed-627b-451f-b0f4-f4a1ef2004a9 {"md5": "bf8a6156dd5519ebee932fae0e7048ba", "pid": "040425134", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Landkreis Aurich"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4042513-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040425134", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4042513-7", "source": "GND"}], "variant_access_point": ["Norden (Ostfriesland)", "Norden (Ostfr.)", "Norden in Ostfriesland", "Norden i. Ostfr.", "Norden (Ostfriesland)", "Stadt Norden", "Nörden"], "authorized_access_point": "Norden (Landkreis Aurich)"} 3 -2024-07-16 19:08:18.02299 2024-07-17 06:57:37.375845 596886c5-a56c-401c-bf54-5cc8b4f62914 {"md5": "a59ccb41e60c1c26e2b65b2e005e8b80", "pid": "040516687", "note": [{"label": ["Homepage - http://www.saopaulo.sp.gov.br"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Provinz São Paulo"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4051668-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040516687", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4051668-4", "source": "GND"}], "classification": [{"name": "Staat", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Estado de São Paulo", "S. Paulo (Staat)", "Estado de S. Paulo"], "authorized_access_point": "São Paulo (Staat)"} 3 -2024-07-16 20:07:19.309174 2024-07-17 06:57:52.146753 aeda72ad-b865-445d-a848-27b00075583c {"md5": "852fe65e2350c8aae6ccd2c286dad2bb", "pid": "040763102", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4076310-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040763102", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4076310-9", "source": "GND"}], "variant_access_point": ["Hlavni Město Praha", "Hauptstadt Prag", "Prag (Kraj)", "Bezirk Prag", "Praha", "Prague", "Praga", "Praag"], "authorized_access_point": "Prag"} 3 -2024-07-16 19:08:19.126589 2024-07-17 06:57:12.932316 f40d2bb6-745f-4548-a4a5-cfd12dfec081 {"md5": "f158d517cbe1e250f0a40b0b79620012", "pid": "040093417", "note": [{"label": ["Homepage - https://www.calw.de"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Calw-Hirsau (1975)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4009341-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040093417", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4009341-4", "source": "GND"}], "variant_access_point": ["Stadt Calw", "Große Kreisstadt Calw", "Kalw"], "authorized_access_point": "Calw"} 3 -2024-07-16 19:08:19.039178 2024-07-17 06:57:16.940238 3765c1fe-fa62-4e3e-8bdf-5ace5e01b42a {"md5": "3f462632e9f20b09f25fff76edf7b902", "pid": "040183408", "note": [{"label": ["Homepage - https://www.freilassing.de/home/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4018340-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040183408", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4018340-3", "source": "GND"}], "variant_access_point": ["Stadt Freilassing"], "authorized_access_point": "Freilassing"} 3 -2024-07-16 19:08:18.952997 2024-07-17 06:57:19.382535 41dcf624-fef2-4a50-9227-0fd6bb815994 {"md5": "2bed05f7671b3a86579df2adea38ec36", "pid": "04024010X", "note": [{"label": ["Homepage - https://heidenheim.hahnenkamm.de/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4024010-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04024010X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4024010-1", "source": "GND"}], "variant_access_point": ["Heidenheim (Landkreis Weißenburg-Gunzenhausen)", "Heidenheim (Mittelfranken)", "Markt Heidenheim", "Heidenheim (am Hahnenkamm)", "Heidenheim (Hahnenkamm)", "Heidenheim am Hahnenkamm"], "authorized_access_point": "Heidenheim"} 3 -2024-07-16 19:08:18.864363 2024-07-17 06:57:21.666702 de030198-2715-4aa8-ba80-ac69d6cfff66 {"md5": "d3627f5cff65646c7fb6eedfcf8b6e58", "pid": "040288099", "note": [{"label": ["Homepage - https://www.judenburg.at"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4028809-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040288099", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4028809-2", "source": "GND"}], "variant_access_point": ["Stadtgemeinde Judenburg"], "authorized_access_point": "Judenburg"} 3 -2024-07-16 19:08:18.771266 2024-07-17 06:57:23.559439 5d4c946a-c85a-48f4-9102-67f7b3984cea {"md5": "e25347140da857fd3b455a1c55309752", "pid": "040296377", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Gross-Karben"}, {"authorized_access_point": "Klein-Karben"}, {"authorized_access_point": "Kloppenheim"}, {"authorized_access_point": "Okarben"}, {"authorized_access_point": "Rendel"}, {"authorized_access_point": "Petterweil"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4029637-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040296377", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4029637-4", "source": "GND"}], "authorized_access_point": "Karben"} 3 -2024-07-16 19:08:18.666305 2024-07-17 06:57:24.424177 a69d5a07-42ef-41b7-b8a8-bfe2fabeaf54 {"md5": "42ddb9881333eb781a00b44fe4af1bd7", "pid": "040304817", "note": [{"label": ["Homepage - https://www.kiel.de/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4030481-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040304817", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4030481-4", "source": "GND"}], "variant_access_point": ["Gross-Kiel", "Chilonium", "Landeshauptstadt Kiel", "Kilia Holsatorum", "Kilonum Holsatorum", "Chilomium", "Kilia", "Kiliae Holsatorum", "Kilonia", "Kylis", "Ķīle"], "authorized_access_point": "Kiel"} 3 -2024-07-16 19:08:18.564801 2024-07-17 06:57:25.586186 b2f7be24-85a4-4e34-b040-0feb89a04488 {"md5": "0f73ade8ccb3524c859efa14d472bc9f", "pid": "040346919", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Landkreis Gießen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4034691-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040346919", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4034691-2", "source": "GND"}], "variant_access_point": ["Laubach (Oberhessen)", "Laubach in Hessen"], "authorized_access_point": "Laubach (Landkreis Gießen)"} 3 -2024-07-16 19:07:37.58009 2024-07-17 06:59:19.731839 cbb93931-def8-4c2c-a402-e90527099f54 {"md5": "d02c2deab33831ac505a9371dd33347c", "pid": "1167694643", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Sardinien"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1167694643", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1167694643", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1167694643", "source": "GND"}], "variant_access_point": ["Comune di San Basilio (Sardinien)", "Santu 'Asili 'e Monti"], "authorized_access_point": "San Basilio (Sardinien)"} 3 -2024-07-16 19:07:36.747338 2024-07-17 06:59:22.592247 6303ad0b-27ce-499b-bb3c-d7085b931672 {"md5": "a19b6580598402d73afc49625bb54bfb", "pid": "1180664485", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Belgier-Kaserne&oldid=195855777"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Graz"}, {"authorized_access_point": "Graz-Wetzelsdorf"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1180664485", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1180664485", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1180664485", "source": "GND"}], "classification": [{"name": "Kaserne", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Belgierkaserne (Graz)", "SS-Kaserne Wetzelsdorf"], "authorized_access_point": "Belgier-Kaserne (Graz)"} 3 -2024-07-16 19:08:19.790048 2024-07-17 06:57:02.064024 5fdafdd2-0dff-4d3e-8c16-3d5938113133 {"md5": "328373ba230eaf2dc99251ead71d7ee8", "pid": "004280768", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Egling"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1046115-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)004280768", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1046115-2", "source": "GND"}], "authorized_access_point": "Deining (Wolfratshausen)"} 3 -2024-07-16 19:08:19.69856 2024-07-17 06:57:02.974582 59eff571-17aa-4526-ba6c-da6ce797ea32 {"md5": "90118be60ea60de3f5fab7b10ef199a8", "pid": "007749023", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Rønne"}], "related": [{"authorized_access_point": "Bornholms Regionskommune"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2128029-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)007749023", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)2128029-0", "source": "GND"}], "classification": [{"name": "Amt", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Bornholms Amt", "Bornholm (Amt)"], "authorized_access_point": "Amt Bornholm"} 3 -2024-07-16 19:08:19.614942 2024-07-17 06:57:04.376935 a1fa5c71-5473-422d-9d7b-481f84a1df2d {"md5": "f753520fcadd8c6704638658fdfb46b6", "pid": "030089050", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3008905-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)030089050", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)3008905-0", "source": "GND"}], "authorized_access_point": "Leipzig-Süd"} 3 -2024-07-16 19:08:19.439046 2024-07-17 06:57:04.957722 060e7b2e-808e-4e2d-9e81-e2a85dadf4a0 {"md5": "b631697d081c965e7b39a5613923fcc9", "pid": "030141605", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Grünberg (Landkreis Gießen)"}, {"authorized_access_point": "Stockhausen (Landkreis Gießen)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3014160-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)030141605", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)3014160-6", "source": "GND"}], "variant_access_point": ["Grünberg (Landkreis Gießen-Stockhausen)", "Stockhausen (Grünberg-Stockhausen)"], "authorized_access_point": "Grünberg-Stockhausen"} 3 -2024-07-16 19:07:36.406976 2024-07-17 06:59:23.714025 1c78271c-5177-4f53-95f4-dcfdd963b44c {"md5": "bcf4453d0f8b18b914276f84fb4873e9", "pid": "1184832803", "note": [{"label": ["Homepage - https://www.geopark-bayern.de/de/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bayern"}, {"authorized_access_point": "Bayern"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1184832803", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1184832803", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1184832803", "source": "GND"}], "classification": [{"name": "Geopark", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Česko-Bavorský Geopark"], "authorized_access_point": "Geopark Bayern-Böhmen"} 3 -2024-07-16 19:07:36.1466 2024-07-17 06:59:24.487644 a27b6c7d-6483-4d06-96da-a65139e412a0 {"md5": "c6f363bdcb9e5597110657b894a83486", "pid": "1190328259", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1190328259", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1190328259", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1190328259", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Świna", "Swine (Fluss)"], "authorized_access_point": "Swine"} 3 -2024-07-16 19:07:35.899025 2024-07-17 06:59:25.336728 73abcc93-5cb1-42fd-b8d4-8cf76379f15a {"md5": "909098c53c9ae4475505a70c92eb1715", "pid": "1191133729", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Chemnitz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1191133729", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1191133729", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1191133729", "source": "GND"}], "classification": [{"name": "Veranstaltungshalle", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Kulturgebäude", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Mehrzweckhalle", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Stadthalle (Chemnitz)"], "authorized_access_point": "Stadthalle Chemnitz (Chemnitz)"} 3 -2024-07-16 19:07:35.300074 2024-07-17 06:59:27.715038 d08dae87-e6fc-4ad5-b751-9338b8c3594c {"md5": "f1e86709fa43abd1ed33abd107013380", "pid": "1222199440", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1222199440", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1222199440", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1222199440", "source": "GND"}], "variant_access_point": ["Kamajys", "Kamayay", "Komaje", "Kamajaj", "Камаяй"], "authorized_access_point": "Kamajai"} 3 -2024-07-16 19:08:19.524675 2024-07-17 06:57:04.672333 a7b06d01-812a-4d11-96b3-5b1c01db2787 {"md5": "ca3f7d9b8e36570dd809920012f07b82", "pid": "030125898", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Rodheim_vor_der_H%C3%B6he"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Rosbach-Rodheim"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3012589-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)030125898", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)3012589-3", "source": "GND"}], "variant_access_point": ["Rodheim (Höhe)", "Rottheim"], "authorized_access_point": "Rodheim vor der Höhe"} 3 -2024-07-16 19:07:33.797725 2024-07-17 06:59:33.258073 3792d034-996d-48fa-8045-116188b50bea {"md5": "3b20f436e5d22b18f586fc1513431f20", "pid": "1267606541", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Beskid_Makowski&oldid=211779153", "Wikipedia - https://www.wikidata.org/wiki/Q6740528"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Beskiden"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1267606541", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1267606541", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1267606541", "source": "GND"}], "classification": [{"name": "Gebirgszug", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Makower Beskiden (Westbeskiden)", "Maków Beskids", "Beskid Średni", "Mittelbeskiden"], "authorized_access_point": "Beskid Makowski"} 3 -2024-07-16 20:06:38.158242 2024-07-17 06:57:13.574955 ecdba4d3-b083-4dd7-93d9-3ab32bdebe80 {"md5": "df2ce409336a04f5ed29fe78c263964d", "pid": "040099377", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Taiwan"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4009937-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040099377", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4009937-4", "source": "GND"}], "classification": [{"name": "Chinesen", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Rotchina", "Zhongguo (Diguo)", "Zhongguo-Diguo", "Kaiserreich Zhongguo", "Zhongguo (Volksrepublik)", "Chung-kuo (Renmin-Gongheguo)", "Zhonghua-minguo (1911-1949)", "Chung-hua-min-kuo (1911-1949)", "China (Renmin-Gongheguo)", "Zhonghua-Renmin-Gongheguo", "Kaiserreich China", "China (Diguo)", "PRC", "Zhongguo (Renmin-Gongheguo)", "Shinkoku", "Chung-hua-jen-min-kung-ho-kuo", "Zhonghua (Renmin-Gongheguo)", "China (Volksrepublik)", "Volksrepublik China", "Zhongguo", "VR China", "China (People's Republic)", "People's Republic of China", "Zhong guo", "PRC (People's Republic of China)", "Zhonghua renmin gongheguo", "République populaire de Chine", "Chung-kuo kuo min cheng fu", "China (Republic : 1912-1949)", "Chine", "KNR (Kytajsʹkaja Narodnaja Respublika)", "Zhongguo (renmin gongheguo)", "Chinese People's Republic", "Kytajsʹkaja Narodnaja Respublika", "Chinese People’s Republic", "Republic of China (1912-1949)", "Chung-hua min kuo (1912-1949)", "Chung-kuo", "中华人民共和国"], "authorized_access_point": "China"} 3 -2024-07-16 20:06:37.174971 2024-07-17 06:57:18.790091 3775ce1e-1acf-490e-9894-4a1148bc3716 {"md5": "b9e39483774570f562d154a1fcef0733", "pid": "040220478", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Griechenland (Altertum)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4022047-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040220478", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4022047-3", "source": "GND"}], "classification": [{"name": "Griechen", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Elliniki Dimokratia", "Basileion tēs Hellados", "Yunanistan", "République Hellénique", "Ellada", "Greece", "Vasilion tis Ellados", "Hellenic Republic", "Grèce", "Royaume de Grèce", "Elli̲niki̲ Di̲mokratia", "Hellēnikē Demokratia", "Elli̱niki̱ Di̱mokratia", "Vasileion ti̲s Ellados", "Hellas", "Ellas", "Ellēnikē Dēmokratia", "Hellēnikē Dēmokratia", "Ἑλλάς", "Ελλάς", "Ελληνική Δημοκρατία", "Ἑλληνική Δημοκρατία"], "authorized_access_point": "Griechenland"} 3 -2024-07-16 20:06:37.810137 2024-07-17 06:57:56.288686 180fb1c4-f9f1-4119-9022-92268fa54d8d {"md5": "3d4ce70d737e068ddd00ae6412b2787e", "pid": "040792048", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Alpen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4079204-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040792048", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4079204-3", "source": "GND"}], "variant_access_point": ["Alpen (West)"], "authorized_access_point": "Westalpen"} 3 -2024-07-16 20:06:37.502951 2024-07-17 06:57:57.077521 29e2f4a8-f932-4dd4-9cb4-5e8323abff37 {"md5": "0c03a81251e19670417f1da6c894b7df", "pid": "040794857", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4079485-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040794857", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4079485-4", "source": "GND"}], "classification": [{"name": "Zentralafrikaner", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Äquatorialafrika", "Mittelafrika"], "authorized_access_point": "Zentralafrika"} 3 -2024-07-16 19:07:33.729219 2024-07-17 06:59:33.535531 020e3fd4-875e-4bb1-b701-0ad11d2d6cc7 {"md5": "f258957c96b6bca72c9c39bbb294052e", "pid": "1271173751", "note": [{"label": ["Wikipedia - https://da.wikipedia.org/w/index.php?title=N%C3%B8rre_Herred_(Bornholm)&oldid=9783302"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Amt Bornholm"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1271173751", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1271173751", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1271173751", "source": "GND"}], "classification": [{"name": "Bezirk", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Nørre Herred (Amt Bornholm)"} 3 -2024-07-16 19:07:33.139756 2024-07-17 06:59:35.819924 88d50644-2f87-45e1-aaed-1814f301a318 {"md5": "31f5b8017dd770aa865d532c0f1fe86c", "pid": "129673143X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=217307184"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Groß Tauersee"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/129673143X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)129673143X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)129673143X", "source": "GND"}], "authorized_access_point": "Turza Wielka"} 3 -2024-07-16 20:06:40.250704 2024-07-17 06:57:11.566576 3cbc06ee-d0a2-4a17-9534-60324236a6eb {"md5": "f439e9b17ef9d82a76f21dd839964370", "pid": "040065146", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4006514-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040065146", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4006514-5", "source": "GND"}], "classification": [{"name": "See", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Bielersee", "Lac de Bienne"], "authorized_access_point": "Bieler See"} 3 -2024-07-16 20:06:41.558783 2024-07-17 06:57:20.696412 585f5371-a3e8-4d70-a717-3690a88871e0 {"md5": "ec4d024d4544954c0c31c517ee349ea1", "pid": "040284956", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4028495-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040284956", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4028495-5", "source": "GND"}], "classification": [{"name": "Japaner", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Empire du Japon", "Nihon-koku", "Zen-Nihon", "Zenkoku", "Nippon", "Japon", "Dainihon", "Dainippon", "Nihon (Staat)", "Nippon (Staat)", "Yapan", "Japão", "Nihon"], "authorized_access_point": "Japan"} 3 -2024-07-16 20:06:39.234455 2024-07-17 06:57:52.943672 cdad6617-e423-4a2f-8d0f-0f0631577c07 {"md5": "22c74c325ec885df824e57d03f01b182", "pid": "040772586", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4077258-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040772586", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4077258-5", "source": "GND"}], "variant_access_point": ["Sverigg", "Sweden", "Suède", "Konungariket Sverige", "Švecija", "Königreich Schweden", "Suecia", "Svezia", "Sverige", "Zviedrija", "Zweden", "Szwecja", "Kingdom of Sweden"], "authorized_access_point": "Schweden"} 3 -2024-07-16 20:06:38.900943 2024-07-17 06:57:56.576016 1e0c18a7-7ef6-4e9b-bfae-fcb4ea0a21c4 {"md5": "b6a2d8f5c338b9bb0c105dba4e49240d", "pid": "040792153", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Europa"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4079215-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040792153", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4079215-8", "source": "GND"}], "classification": [{"name": "Westeuropäer", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Europa (West)"], "authorized_access_point": "Westeuropa"} 3 -2024-07-16 20:06:40.899028 2024-07-17 06:57:56.820531 453c4d1f-2a2c-447f-91ab-ff07e4fd4059 {"md5": "0dbecff163bc59090f4c0d242783101e", "pid": "040792374", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Kapitalistische Staaten"}, {"authorized_access_point": "Industriestaaten"}, {"authorized_access_point": "Westmächte"}, {"authorized_access_point": "Nichtwestliche Welt"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4079237-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040792374", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4079237-7", "source": "GND"}], "variant_access_point": ["Westliche Staaten", "Westen (Westliche Welt)", "Der Westen (Westliche Welt)"], "authorized_access_point": "Westliche Welt"} 3 -2024-07-16 20:06:40.582077 2024-07-17 06:58:05.303081 d5f5dacc-da71-4812-a723-d57facfe65ff {"md5": "76c0ff49224dae5492fca8f45995ab89", "pid": "041075102", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4107510-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041075102", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4107510-9", "source": "GND"}], "classification": [{"name": "Tal", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Bagnes, Val de", "Vallée de Bagnes"], "authorized_access_point": "Val de Bagnes"} 3 -2024-07-16 20:06:39.919803 2024-07-17 06:58:06.445805 07662aca-17d3-44d3-a92f-b2878c2065fe {"md5": "a42a46987134523eaaeb87090b885cc8", "pid": "041152077", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Walliser Alpen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4115207-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041152077", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4115207-4", "source": "GND"}], "classification": [{"name": "Massiv", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Monte-Rosa-Massiv", "Rosa, Monte"], "authorized_access_point": "Monte Rosa"} 3 -2024-07-16 19:07:32.507369 2024-07-17 06:59:38.250898 238f9c28-0183-4446-86a3-d2ccc257cbfc {"md5": "06b748c011c45a523593e168466f68bd", "pid": "1330177274", "note": [{"label": ["Naturparkzentrum und Verwaltung - https://www.naturpark-ehw.de/weg/top-grenzwanderweg-schifflersgrund", "Grenzmuseum Schifflersgrund - https://www.grenzmuseum.de/lernen/bildungsort/grenzwanderweg"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Asbach-Sickenberg"}, {"authorized_access_point": "Bad Sooden- Allendorf"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330177274", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330177274", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330177274", "source": "GND"}], "classification": [{"name": "Rundwanderweg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Grenzwanderweg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Grenzwanderweg Schifflersgrund", "Rundwanderweg Schifflersgrund"], "authorized_access_point": "TOP-Grenzwanderweg Schifflersgrund"} 3 -2024-07-16 19:07:32.075601 2024-07-17 06:59:39.625274 6bf1b40d-99ad-4d57-ac83-258985a38371 {"md5": "2b4656440bc36b1c7fe615467fc73877", "pid": "1330436237", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Helmbrechts"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330436237", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330436237", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330436237", "source": "GND"}], "variant_access_point": ["Hampelhof (Helmbrechts-Hampelhof)"], "authorized_access_point": "Helmbrechts-Hampelhof"} 3 -2024-07-16 20:06:43.765556 2024-07-17 06:57:15.741035 5ca95318-ad3d-42f6-b466-d9a8fc3c376b {"md5": "bd2033ec30b0f0fd99a6ac2ddd4ff0a0", "pid": "040175812", "note": [{"label": ["Homepage - http://www.comune.fi.it"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4017581-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040175812", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4017581-9", "source": "GND"}], "variant_access_point": ["Comune di Firenze", "Città di Firenze", "Firenze", "Florentia", "Florenzija", "Firenza", "Florence", "Florentiae", "Fiorenza", "Florentina"], "authorized_access_point": "Florenz"} 3 -2024-07-16 20:06:43.446323 2024-07-17 06:57:29.267012 771f203b-cc80-49b2-83ce-cdadfbd80f40 {"md5": "8d4f55cfd3448ed34f2361c49189f564", "pid": "040400565", "note": [{"label": ["Bis ca. 1946 Benutzung von Mongol bichig (mongγol bic̆ig), ab ca. 1946 Benutzung der kyrillischen Schrift, heute Nutzung beider Schriften"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Mongolei (Landschaft)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4040056-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040400565", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4040056-6", "source": "GND"}], "variant_access_point": ["Äußere Mongolei", "BNMAU", "Bügd Najramdah Mongol Ard Uls", "Bügd Najramdakh Mongol Ard Uls", "MNR", "MPR", "Reṕublique Populaire de Mongolie", "Mongolie", "Bug͏̈d Nayramdah Mongol Ard Uls", "Mongol Neṕkoz͏̈taŕsasaǵ", "Ikh Mongol Uls", "Mongol Oron", "Mongolische Volksrepublik", "Mongolʹskaja Narodnaja Respublika", "Mongolian People's Republic", "Mongolia", "Mongol Uls", "Bůgd Nayramdah Mongol Ard Uls", "Bugd Najramdach Mongol Ard Uls", "Bugd Najramdach Mongol Ard Uls", "Монго́лия"], "authorized_access_point": "Mongolei"} 3 -2024-07-16 20:06:42.54447 2024-07-17 06:57:34.009896 1a125cef-d5e1-41b9-8a13-2afb8d069fa2 {"md5": "da7daf689af4d192228e009aab659b17", "pid": "040446603", "note": [{"label": ["Homepage - https://www.paris.fr"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4044660-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040446603", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4044660-8", "source": "GND"}], "variant_access_point": ["Lutetia", "Lutecia", "Lutetia Parisiorum", "Parisia", "Pa-li", "Ville de Paris", "P'ariz", "Paryžius", "Paříž", "Bārīs", "Bali (Paris)", "Pariž", "Parigi", "Parijs", "Lutitia", "Parisius", "Lutèce", "Commune de Paris", "Parisii", "Parrhisius", "Loticia Parisiorum", "Ville de Paris", "Lutetia"], "authorized_access_point": "Paris"} 3 -2024-07-16 20:06:43.131873 2024-07-17 06:57:37.642009 5c3a5791-e092-4960-b29d-89a080afed57 {"md5": "b0365b064aef383bf7f716e96dc05a7d", "pid": "040518507", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4051850-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040518507", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4051850-4", "source": "GND"}], "classification": [{"name": "Savoyarden", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Herzogtum Savoyen", "Sapaudia", "Sabaudia", "Saboia", "Herzogtum Savoyen-Piemont", "Savoie"], "authorized_access_point": "Savoyen"} 3 -2024-07-16 20:06:42.222749 2024-07-17 06:57:43.432687 ca2b7df6-613c-4a91-86a6-8aa149f634f2 {"md5": "a5ecf43156f8e4b5e584237187324a2b", "pid": "040658236", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Schweiz"}], "related": [{"authorized_access_point": "Französische Schweiz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4065823-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040658236", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4065823-5", "source": "GND"}], "variant_access_point": ["Westschweiz"], "authorized_access_point": "Schweiz (West)"} 3 -2024-07-16 20:06:41.887741 2024-07-17 06:58:08.898798 f924f4e6-f5d1-4a18-a1e3-23ea566cd24f {"md5": "346b28aa73996b6c64aaf691aa14f440", "pid": "041196058", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4119605-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041196058", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4119605-3", "source": "GND"}], "classification": [{"name": "Thurgauer", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}, {"name": "Kanton", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Grafschaft Thurgau", "Mostindien", "Thurgovie", "Turgovia", "Kanton Thurgau", "Thurgau (Kanton)"], "authorized_access_point": "Thurgau"} 3 -2024-07-16 20:06:45.731256 2024-07-17 06:57:28.684314 bbca63f9-2f39-4c99-bdad-068128c3efe8 {"md5": "e84f1fb2f52e766f7b63144ac3d76152", "pid": "040390586", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4039058-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040390586", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4039058-5", "source": "GND"}], "classification": [{"name": "Mexikaner", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["México", "Federación Méxicana", "Méxique (Etats-Unis)", "Méxique", "Estados Unidos Mexicanos", "Vereinigte Mexikanische Staaten", "Mexiko (Estados Unidos)", "República Mexicana", "United Mexican States", "Méjico (Estados Unidos)", "México (Estados Unidos)", "Mexique (Etats-Unis)", "Mexiko (Vereinigte Staaten)", "Federación Mexicana", "Mexique (Estados Unidos)", "United States of Mexico"], "authorized_access_point": "Mexiko"} 3 -2024-07-16 20:06:45.316303 2024-07-17 06:57:53.206617 0acb00fa-ec28-416b-b922-ac7985c3e4c9 {"md5": "a6dd511bbc5d7fe93ad0755f14e92aa4", "pid": "040772756", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Alpen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4077275-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040772756", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4077275-5", "source": "GND"}], "variant_access_point": ["Alpen (Schweiz)"], "authorized_access_point": "Schweizer Alpen"} 3 -2024-07-16 20:06:44.734667 2024-07-17 06:57:55.751347 eaa38e9e-31e2-4b17-be69-0acc2fb7aea2 {"md5": "7abe4fe26024644e37b257ce407aef12", "pid": "040789829", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Léman (Canton)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4078982-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040789829", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4078982-2", "source": "GND"}], "classification": [{"name": "Waadtländer", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}, {"name": "Kanton", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Vaud", "Vad", "Canton de Vaud", "Waadtland", "Kanton Waadt", "Waadt (Kanton)", "Etat de Vaud", "Vaud"], "authorized_access_point": "Waadt"} 3 -2024-07-16 20:06:46.031516 2024-07-17 06:58:15.115927 ff3248d4-893d-473a-9823-c3d544ee713d {"md5": "ef567944f38cafa3da7171eb884e48b5", "pid": "042750067", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Wallis"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4275006-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042750067", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4275006-4", "source": "GND"}], "authorized_access_point": "Montana (Wallis)"} 3 -2024-07-16 20:06:45.038014 2024-07-17 06:57:55.16723 6a60e923-bb1d-4d4b-9a2c-4cc7dbd5a637 {"md5": "69a9fcf66a6868de03d73e93c2e1f010", "pid": "040785416", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Österreich-Ungarn"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4078541-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040785416", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4078541-5", "source": "GND"}], "classification": [{"name": "Magyaren", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Ungarische Räterepublik", "Königreich Ungarn", "Die Länder der ungarischen Krone", "Transleithanien", "Magyarország", "Magyar Köztársaság", "Magyar Tanácsköztársaság", "Government of the Hungarian Republic", "Zemalja Ugarske Krune", "VNR", "Ungern", "Ungarische Republik", "Republik Ungarn", "Ungarische Volksrepublik", "Volksrepublik Ungarn", "Magyar Népköztársaság", "Hungary", "Hungarian Republic", "Hongrie", "Vengerskaja Narodnaja Respublika", "Hungarian People's Republic", "HPR (Hungarian People's Republic)", "République Populaire Hongroise", "Ungarische VR", "Republic of Hungary", "Vengrija"], "authorized_access_point": "Ungarn"} 3 -2024-07-16 20:07:05.265337 2024-07-17 07:01:03.058449 d309d794-fb8c-46c7-87b4-a2b93895bb9a {"md5": "5fa2127b98ab94b3160bbf9a6589fcef", "pid": "952816407", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Wallis"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4486516-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)952816407", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4486516-8", "source": "GND"}], "variant_access_point": ["Mittleres Wallis"], "authorized_access_point": "Mittelwallis"} 3 -2024-07-16 19:08:20.06888 2024-07-17 06:57:01.137486 5f605727-732d-4cdf-9e94-3688bbb61171 {"md5": "f7bd767ab147d331439504521187268a", "pid": "001101536", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/110153-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)001101536", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)110153-5", "source": "GND"}], "authorized_access_point": "Melton Mowbray"} 3 -2024-07-16 19:08:19.97321 2024-07-17 06:57:01.441809 f46528b9-3db7-4d4b-9363-1d8292e3bbfa {"md5": "bfe3e2319a8ab35db4c542971aa8aa00", "pid": "002631628", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Bolków"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/263162-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)002631628", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)263162-3", "source": "GND"}], "authorized_access_point": "Bolkenhain"} 3 -2024-07-16 20:06:47.801771 2024-07-17 06:57:48.903711 daa6735d-9aef-4fb6-8bf7-01fbcc8eafec {"md5": "fbc06d2c785433fb4c744ba126117d17", "pid": "040744256", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Madagaskar (Kolonie)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4074425-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040744256", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4074425-5", "source": "GND"}], "classification": [{"name": "Insel", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Madagassen", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Madagascar", "Repoblikan'i Madagasikara", "République de Madagascar"], "authorized_access_point": "Madagaskar"} 4 -2024-07-16 20:06:48.093355 2024-07-17 06:57:49.198789 7710ca55-fbdf-4bb5-a69e-fdc4a8fcf555 {"md5": "9c3aa11c8ac7852ecdc8790a7b63c79a", "pid": "040749002", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4074900-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040749002", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4074900-9", "source": "GND"}], "variant_access_point": ["Mittelmeerländer", "Mittelmeerstaaten", "Mittelmeer-Gebiet", "Mittelmeer-Region", "Mediterraneis", "Mediterraneum"], "authorized_access_point": "Mittelmeerraum"} 3 -2024-07-16 20:06:46.893315 2024-07-17 06:57:05.250965 c10568c8-004e-41cc-a01b-a11ec159d3db {"md5": "04434297685ba3b2be69e4cd6e894ce0", "pid": "040000079", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4000007-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040000079", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4000007-2", "source": "GND"}], "authorized_access_point": "Aachen (Region)"} 3 -2024-07-16 20:06:47.503503 2024-07-17 06:57:33.731836 10257843-7c9c-4ca5-9eca-d941f26fdb5e {"md5": "1ea1ac6278e544b7ccc6598f1d5aedc7", "pid": "040443817", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Israel (Altertum)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4044381-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040443817", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4044381-4", "source": "GND"}], "classification": [{"name": "Gelobtes Land", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Palestine", "Filasṭīn", "Falasṭīn", "Pālēśtīnā", "Palaestina", "ʾĒrēts Yiśrāʾel", "Eretz Yisrael", "Erez Israel", "Eretz Israel", "Heiliges Land"], "authorized_access_point": "Palästina"} 3 -2024-07-16 20:06:48.780685 2024-07-17 06:58:01.382919 6995f5b0-6bc5-4be5-8fab-be39e732e4b3 {"md5": "4cbd454cd2a819b6017292e53b1980f6", "pid": "040940888", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4094088-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040940888", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4094088-3", "source": "GND"}], "classification": [{"name": "Pass", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Col du Grand Saint Bernard", "Colle del Gran San Bernardo", "Summus Poeninus", "Grand St. Bernhard", "Gd-St-Bernard"], "authorized_access_point": "Großer Sankt Bernhard"} 3 -2024-07-16 20:06:50.031405 2024-07-17 06:57:32.430766 772140b2-b78b-4497-8f5e-8b5c3ed79ac2 {"md5": "ae9e4bb71ee2b809032e6e3ca04392aa", "pid": "040424820", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Afrika"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4042482-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040424820", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4042482-0", "source": "GND"}], "classification": [{"name": "Nordafrikaner", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Afrika (Nord)", "Kleinafrika"], "authorized_access_point": "Nordafrika"} 3 -2024-07-16 20:06:51.26429 2024-07-17 06:57:40.478355 9ce76635-aa41-44d1-b3b9-35bb9cf9ae61 {"md5": "de35ba741a4b41d47370c98edf66ec3f", "pid": "040584488", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Pazifischer Raum"}, {"authorized_access_point": "Ferner Osten"}], "related": [{"authorized_access_point": "Asiatisch-Pazifischer Raum"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4058448-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040584488", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4058448-3", "source": "GND"}], "classification": [{"name": "Südostasiaten", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Asien (Südost)"], "authorized_access_point": "Südostasien"} 3 -2024-07-16 20:06:50.97553 2024-07-17 06:57:55.4842 1ca5c79e-36c8-4299-9af4-1bb277c86b9a {"md5": "54f23bc93d5d8074fc813f147bb109f8", "pid": "040786528", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Wallis"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4078652-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040786528", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4078652-3", "source": "GND"}], "variant_access_point": ["Bas-Valais"], "authorized_access_point": "Unterwallis"} 3 -2024-07-16 20:06:50.684816 2024-07-17 06:58:01.085889 c1a4630c-0cb0-430b-ae6e-47cbecc6700a {"md5": "dff92268b9f9089b775708b805d8d3db", "pid": "040932087", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Jura"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4093208-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040932087", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4093208-4", "source": "GND"}], "authorized_access_point": "Französischer Jura"} 3 -2024-07-16 20:06:49.732196 2024-07-17 06:58:09.437448 5b97590e-538e-4427-b350-2e2f24c1ae7c {"md5": "3f9b30c746ffb76e9162a1c31d3f5c44", "pid": "041355350", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4135535-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041355350", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4135535-0", "source": "GND"}], "variant_access_point": ["USA (West)", "Westliche Vereinigte Staaten"], "authorized_access_point": "USA (Weststaaten)"} 3 -2024-07-16 19:07:29.884495 2024-07-17 06:59:47.571162 250d4cd9-9ab0-4d39-b1d9-4ab07320525d {"md5": "186196cc90624949c43ce59d1c7370b5", "pid": "1332735002", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Riesgau&oldid=226471032"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332735002", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332735002", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332735002", "source": "GND"}], "variant_access_point": ["Rezia"], "authorized_access_point": "Riesgau"} 3 -2024-07-16 19:07:29.07469 2024-07-17 06:59:50.655156 a232d6a1-ca83-44be-b569-3ed92937a790 {"md5": "853b8afe3a09d4e039f1ba6bef878244", "pid": "1333228880", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Liste_der_Baudenkm%C3%A4ler_in_Egloffstein&oldid=242696526#Bieberbach"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Egloffstein"}, {"authorized_access_point": "Egloffstein-Bieberbach"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333228880", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333228880", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333228880", "source": "GND"}], "classification": [{"name": "Kirchenbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Evangelische Reformationsgedächtniskirche (Egloffstein-Bieberbach)", "Evangelische Reformationsgedächtniskirche (Bieberbach)", "Reformationsgedächtniskirche (Egloffstein)", "Reformationsgedächtniskirche (Egloffstein-Bieberbach)"], "authorized_access_point": "Evangelische Reformationsgedächtniskirche (Egloffstein)"} 3 -2024-07-16 19:07:31.445375 2024-07-17 06:59:42.089655 1cf7bb5b-c364-4209-8470-45dabb0711cf {"md5": "77f7cb268b653322e8137fa23d4b864b", "pid": "1331514282", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Gabersee&oldid=202232396"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Gabersee"}, {"authorized_access_point": "Wasserburg-Gabersee"}, {"authorized_access_point": "Attel"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331514282", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331514282", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331514282", "source": "GND"}], "variant_access_point": ["Gabersee (Attel-Gabersee)"], "authorized_access_point": "Attel-Gabersee"} 3 -2024-07-16 19:07:30.884621 2024-07-17 06:59:43.81906 30f9e5d7-cd73-4206-8002-d0e2cdb4dbae {"md5": "94edbfbb2514c1a3cc60c8674c526b1e", "pid": "1332031374", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=195150922"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Apenrade"}], "related": [{"authorized_access_point": "Amt Åbenrå"}, {"authorized_access_point": "Amt Sønderborg"}, {"authorized_access_point": "Amt Haderslev"}, {"authorized_access_point": "Amt Tondern"}, {"authorized_access_point": "Region Syddanmark"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332031374", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332031374", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332031374", "source": "GND"}], "classification": [{"name": "Amt", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Sønderjyllands Amt", "Sønderjyllands (Amt)", "Sønderjyllands Amtskommune", "Amtskommune Sønderjylland"], "authorized_access_point": "Amt Sønderjylland"} 3 -2024-07-16 20:06:53.173558 2024-07-17 06:57:16.345415 dc060e9f-0782-4e8e-8988-006c04e054ab {"md5": "a82b672ba3bde3cba452151a8302c74d", "pid": "040181456", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4018145-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040181456", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4018145-5", "source": "GND"}], "classification": [{"name": "Franzosen", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["France", "La France", "République Française", "France", "Francija", "Französische Republik", "Empire Français", "République Française", "France (Royaume)", "Royaume Français", "Fränkische Republik", "Frankreich (Kaiserreich)", "Frankreich (Königreich)", "Ṣārfat", "Repubblica Francese"], "authorized_access_point": "Frankreich"} 3 -2024-07-16 20:06:51.552824 2024-07-17 06:57:19.697005 6440bbf0-235a-4b5a-8b0e-cb0f7945abe6 {"md5": "4705ef39dea79ab10f2d83a9163ea59a", "pid": "040276678", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4027667-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040276678", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4027667-3", "source": "GND"}], "classification": [{"name": "Insel", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Iren", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Irland (Insel)", "Staat Irland", "Éire", "Republic of Ireland", "Poblacht na h'Eireann", "Republik Irland", "Saorstát Éireann", "Irish Free State", "Ireland", "Eire", "Ireland (Republic)", "Hibernia", "Ivernia"], "authorized_access_point": "Irland"} 3 -2024-07-16 20:06:52.173278 2024-07-17 06:57:30.557567 4c24f01c-1128-4d81-93b0-65d84e1ea370 {"md5": "a3b4be66676e59bdbb7871026688dadd", "pid": "040401499", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4040149-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040401499", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4040149-2", "source": "GND"}], "classification": [{"name": "Grafschaft", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Grafschaft Mömpelgard", "Pays de Montbéliard", "Montbéliard, Pays de", "Montbéliard (Grafschaft)"], "authorized_access_point": "Grafschaft Montbéliard"} 3 -2024-07-16 20:06:52.863864 2024-07-17 06:57:35.345704 d9f6cd0a-4ca3-44eb-9e95-84800da25915 {"md5": "1956dd098c16fb5fe9122a38436ec91b", "pid": "040475646", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Gallia Narbonensis"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4047564-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040475646", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4047564-5", "source": "GND"}], "variant_access_point": ["Province de Provence", "Grand Gouvernement de Provence"], "authorized_access_point": "Provence"} 3 -2024-07-16 20:06:54.095644 2024-07-17 06:57:45.096276 27f0b1b6-e947-4015-bb19-b9a023d89d82 {"md5": "380defd33fc1e8c034d2aada41a9d3bb", "pid": "040690997", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4069099-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040690997", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4069099-4", "source": "GND"}], "classification": [{"name": "Faltengebirge", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Mittelgebirge", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Balkan (Gebirge)", "Balkangebirge", "Stara planina", "Haemus"], "authorized_access_point": "Balkan"} 3 -2024-07-16 20:06:51.866492 2024-07-17 06:57:59.261406 2d01cd11-2623-4db7-ba06-8255a61d34fa {"md5": "f898edd3d291a976114908ae6a38847a", "pid": "040859312", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Armenische Sozialistische Sowjetrepublik"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4085931-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040859312", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4085931-9", "source": "GND"}], "variant_access_point": ["Hayastan", "Republik Armenien", "Hayastani Hanrapetut'yun", "Hayastani Hanrapetowt̕iwn", "Armenija (1918 - 1920, 1991)", "Hayastani Hanrapetowt̕yown", "Hayastani Hanrapetowt'yown", "HH", "Republic of Armenia", "RA", "Armenia"], "authorized_access_point": "Armenien"} 3 -2024-07-16 20:06:53.735395 2024-07-17 07:00:48.899033 125f15bd-aee0-49e6-930e-647dec30be6f {"md5": "1b17513fba89281a618c65c791dbe3ba", "pid": "946153248", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4393124-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)946153248", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4393124-8", "source": "GND"}], "variant_access_point": ["Gemeinde Leuk", "Loèche", "Commune de Loèche"], "authorized_access_point": "Leuk"} 3 -2024-07-16 20:06:53.454242 2024-07-17 06:57:09.746577 6dc7af7d-236d-42b6-b5f4-ae3307a7db17 {"md5": "3cf22aa0e42b9e36b961a39652e7b87a", "pid": "040046206", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Schweiz (Nordwest)"}, {"authorized_access_point": "Basel-Landschaft"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4004620-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040046206", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4004620-5", "source": "GND"}], "variant_access_point": ["Regio Basiliensis"], "authorized_access_point": "Basel (Region)"} 3 -2024-07-16 20:06:55.465545 2024-07-17 06:57:33.448741 3e8d1bb0-727b-4462-a994-3d54b1ed9301 {"md5": "c42df9a7d405be12ffec2a204d8e1cf9", "pid": "040442578", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4044257-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040442578", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4044257-3", "source": "GND"}], "classification": [{"name": "Ozeanier", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Pazifische Inseln", "Südpazifik-Länder", "Südsee", "Südseeinseln", "Pazifischer Ozean (Inseln)", "Pazifikinseln"], "authorized_access_point": "Ozeanien"} 3 -2024-07-16 20:06:57.041348 2024-07-17 06:57:37.120267 7049aec3-1e4a-4954-97f1-3e761f3f5a2d {"md5": "b9082f4dbf9e33e3f86f2baaf6bb78aa", "pid": "04051658X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4051658-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04051658X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4051658-1", "source": "GND"}], "variant_access_point": ["Saint-Jacques-de-Compostelle", "Santiago", "Santiago (Compostela)"], "authorized_access_point": "Santiago de Compostela"} 3 -2024-07-16 20:06:54.713937 2024-07-17 06:57:38.258814 5bbb660e-019f-4cde-9f14-1fb35ec47851 {"md5": "b80de26fbd3ac6a2b1e57940e9d389fe", "pid": "040538818", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Helvetische Republik"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4053881-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040538818", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4053881-3", "source": "GND"}], "classification": [{"name": "Schweizer", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Suisse", "Switzerland", "Helvetia", "Helvetien", "Eidgenossenschaft (Schweiz)", "Svizzera", "Confédération Suisse", "Confederazione Helvetica", "Confederazione Federale", "Confédération Helvétique", "Confederaziun Svizra", "Svájci Hozzájárulás", "Svizzra", "Schweizerische Eidgenossenschaft", "Confederazione Svizzera", "Confoederatio Helvetica", "Swiss Confederation", "Svizra", "Suiza", "Confederación helvética", "Confédération helvétique", "Confederazione elvetica", "Confédération suisse", "Confederazione helvetica", "Helvetische Republik", "Schweytzerlandt", "Schweytz", "Schweitz", "Schweizer-Land", "Eydgenoschafft (Schweiz)", "Eydgnosschaft (Schweiz)", "Eydgnossschafft (Schweiz)", "Eydgnoßschafft (Schweiz)", "Eydgenossenschafft (Schweiz)", "Eidgnossschafft (Schweiz)", "Helvetische Eidgenossschaft", "Hélvetie", "Schwiz", "Switz", "Corpus helveticum"], "authorized_access_point": "Schweiz"} 3 -2024-07-16 20:06:55.031401 2024-07-17 06:57:39.406757 af8b07c9-f502-4321-a3af-4f9859e888e9 {"md5": "f27f82bfaacb072026062b6c8a2a6e32", "pid": "040552098", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Nordische Staaten"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4055209-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040552098", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4055209-3", "source": "GND"}], "classification": [{"name": "Skandinavier", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Skandinavische Staaten"], "authorized_access_point": "Skandinavien"} 3 -2024-07-16 20:06:55.762958 2024-07-17 06:58:07.273556 f4afa45c-c31b-401e-ab09-44fe3c9461f8 {"md5": "5b40047fa9392e9c57348390dc390061", "pid": "041170008", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4117000-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041170008", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4117000-3", "source": "GND"}], "classification": [{"name": "Gletscher", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Rhônegletscher"} 3 -2024-07-16 20:06:56.423153 2024-07-17 06:58:10.249526 645bbfee-d94b-4ef2-bd35-4820cbc25e20 {"md5": "0a4cf040f36cb381004a15d1332140a5", "pid": "041940458", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Schweiz"}], "related": [{"authorized_access_point": "Schweiz (West)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4194045-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041940458", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4194045-3", "source": "GND"}], "classification": [{"name": "Welschschweizer", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Schweiz (Französisches Sprachgebiet)", "Französischsprachige Schweiz", "Suisse romande", "Welsche Schweiz", "Romandie", "Welschland", "Welschschweiz"], "authorized_access_point": "Französische Schweiz"} 3 -2024-07-16 19:07:28.985043 2024-07-17 06:59:50.987613 96f0e897-905d-4d91-ac97-792a123d1a6d {"md5": "090c1c5235babc944fd9ac895c6a05ad", "pid": "1333255853", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Bravicea&oldid=242048890"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333255853", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333255853", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333255853", "source": "GND"}], "authorized_access_point": "Bravicea"} 3 -2024-07-16 19:07:28.719819 2024-07-17 06:59:51.88898 9bd08104-c8db-4cbc-9c1d-0e455f310145 {"md5": "1e9aeec4c83824784b8a4cabd8dfc9b4", "pid": "1333321090", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Siedlung_Bornheimer_Hang&oldid=244829487"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Frankfurt am Main"}, {"authorized_access_point": "Frankfurt-Bornheim"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333321090", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333321090", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333321090", "source": "GND"}], "classification": [{"name": "Wohnsiedlung", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Siedlung Bornheimer Hang", "Siedlung Bornheimer Hang (Frankfurt-Bornheim)", "Ernst-May-Siedlung (Frankfurt-Bornheim)"], "authorized_access_point": "Siedlung Bornheimer Hang (Frankfurt am Main)"} 3 -2024-07-16 20:06:57.334091 2024-07-17 06:57:44.769065 c826a1f5-d65d-49b8-8682-578dd9186107 {"md5": "a3c1d32ac1a58bbf5d84486d9b2c6aca", "pid": "04068878X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Asien"}], "related": [{"authorized_access_point": "Levante"}, {"authorized_access_point": "Alter Orient"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4068878-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04068878X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4068878-1", "source": "GND"}], "variant_access_point": ["Naher Orient", "Vorderasien", "Vorderer Orient", "Südwestasien", "Asien (Südwest)", "Nahost", "Middle East (Naher Osten)", "Moyen-Orient (Naher Osten)", "Westasien", "Asien (West)"], "authorized_access_point": "Naher Osten"} 3 -2024-07-16 20:06:58.932423 2024-07-17 07:01:06.710938 46793679-9291-4c35-9a48-5686e1a0ec56 {"md5": "23dacee3b6dfcb609d7c8bf686fb8c4e", "pid": "955884152", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4532554-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)955884152", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4532554-6", "source": "GND"}], "classification": [{"name": "Tal", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Vallée du Trient", "Trient, Vallée du", "Trient (Fluss) (Tal)"], "authorized_access_point": "Trienttal"} 3 -2024-07-16 20:06:58.032895 2024-07-17 07:01:27.348542 59a972c1-2876-47d4-b0db-ad82e72c345a {"md5": "558d9a2212536fcbee545a4f8d026a2a", "pid": "993248810", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Wallis"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7652218-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)993248810", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7652218-0", "source": "GND"}], "variant_access_point": ["Französischsprachiges Wallis", "Valais romand", "Wallis (Französisches Sprachgebiet)"], "authorized_access_point": "Französisches Wallis"} 3 -2024-07-16 20:06:58.340002 2024-07-17 06:57:19.090749 50da11ab-e47e-4b85-a127-ae965c202bb2 {"md5": "ae32c34e750bc2345c3bd705a98a0672", "pid": "04022113X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4022113-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04022113X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4022113-1", "source": "GND"}], "classification": [{"name": "Insel", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Grönländer", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Grønland", "Kalaallit Nunaat", "Greenland"], "authorized_access_point": "Grönland"} 3 -2024-07-16 20:06:59.549191 2024-07-17 06:57:54.846455 02e020e3-9e7b-42b4-9084-00aab31405b1 {"md5": "d7c18fad3d47f7e195938fd85784936e", "pid": "04078228X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Siam"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4078228-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04078228X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4078228-1", "source": "GND"}], "classification": [{"name": "Thailänder", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Pradésa Dai", "Prathet Thai", "Muang Thai", "Thai", "Prathet T'hai", "Muang T'hai", "Pratet Thai", "Pradésa-Daiy", "Praḥ-desa-Daiy", "Rāja-ʾaāṇā-cǎkra-Daiy", "Königreich Thailand", "Kingdom of Thailand"], "authorized_access_point": "Thailand"} 3 -2024-07-16 20:06:57.615755 2024-07-17 06:58:17.255832 b453c247-5347-4fdf-be3a-15d9f40345e5 {"md5": "671955a0a47ecfa0507bf4a07df05a5d", "pid": "043187048", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4318704-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043187048", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4318704-3", "source": "GND"}], "variant_access_point": ["Bois de Finges", "Forêt de Finges"], "authorized_access_point": "Pfynwald"} 3 -2024-07-16 20:07:00.889122 2024-07-17 06:57:16.069267 4494355f-ab58-4d40-96f4-a211d4bb80da {"md5": "56b26e6dd6860b8540fd7856334c24f9", "pid": "040181413", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4018141-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040181413", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4018141-8", "source": "GND"}], "variant_access_point": ["Französischsprachige Welt", "Frankophone Länder", "Frankofone Länder", "Frankophonie (Französisches Sprachgebiet)", "Frankofonie (Französisches Sprachgebiet)", "Französischer Sprachraum"], "authorized_access_point": "Französisches Sprachgebiet"} 3 -2024-07-16 20:07:05.859406 2024-07-17 06:57:17.902906 9624e7b6-2c72-4e77-a5d7-46aa6baf8fe5 {"md5": "01d97a6a638c939b5d3fecbcfdde7189", "pid": "040201392", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4020139-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040201392", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4020139-9", "source": "GND"}], "authorized_access_point": "Genf (Region)"} 3 -2024-07-16 20:07:02.440199 2024-07-17 06:57:34.282886 3869d93e-47c8-4a05-af18-0c66d2d3d688 {"md5": "669e1de28032f4113c541c2ad55996aa", "pid": "04045312X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4045312-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04045312X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4045312-1", "source": "GND"}], "classification": [{"name": "Peruaner", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Perú", "República del Perú", "República de Perú", "Pérou", "República Peruana", "Republik Peru", "Piru"], "authorized_access_point": "Peru"} 3 -2024-07-16 19:08:17.571375 2024-07-17 06:57:42.674986 68b55be2-3bc7-4fca-b89f-c6af8be27fb1 {"md5": "b2a02a2ecff8241a8ad86b95d1b00398", "pid": "04062501X", "note": [{"label": ["Homepage - http://www.comune.venezia.it"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4062501-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04062501X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4062501-1", "source": "GND"}], "classification": [{"name": "Venezianer", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Veneţia", "Venecija", "Benetia", "Venesia", "Staat Venedig", "Republik Venedig", "Città di Venezia", "Kronland Venedig", "Venetische Provinzen", "Province Venete", "Provincie Venete", "Venezia", "Venecia", "Venice", "Venecio", "Venise", "Vinegia", "Comune di Venezia", "Venegia", "Vinetia", "Venetia", "Venetik", "Wenetik", "Serenissima (Venezia)", "Enetiesi", "Henetiesi", "Vineggia"], "authorized_access_point": "Venedig"} 4 -2024-07-16 20:07:01.220237 2024-07-17 06:57:46.429372 5696b314-99e0-4b07-bcd8-6276abc3837c {"md5": "17dadcbae5be2ad8ba083c1be95c26b4", "pid": "040714039", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Frankreich"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4071403-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040714039", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4071403-2", "source": "GND"}], "variant_access_point": ["Okzitanien", "Südfrankreich", "Midi", "Occitanien", "Occitanie", "Midi de la France"], "authorized_access_point": "Frankreich (Süd)"} 3 -2024-07-16 20:07:00.294604 2024-07-17 06:57:58.449108 603dd1ab-db88-4f15-b861-f0ab5817b34b {"md5": "0684f9dfade16b30748475f44266d888", "pid": "040802752", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4080275-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040802752", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4080275-9", "source": "GND"}], "classification": [{"name": "Hochstift", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Fürstbistum Basel", "Évêché de Bâle", "Principauté Episcopale de Bâle", "Basel (Fürstbistum)"], "authorized_access_point": "Hochstift Basel"} 3 -2024-07-16 20:07:01.845276 2024-07-17 06:58:03.578464 27c7f759-24f4-4a6d-843b-4b1094ebce67 {"md5": "abf565abe0adf3604ac2b3a5ad852520", "pid": "041037766", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4103776-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041037766", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4103776-5", "source": "GND"}], "classification": [{"name": "Tal", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Rhône (Tal)"], "authorized_access_point": "Rhônetal"} 4 -2024-07-16 19:07:27.59009 2024-07-17 06:59:55.86025 6fd877db-46d3-434d-b2c8-1af2690c9abe {"md5": "1aef493e64f8bc3f7b3c222604abb549", "pid": "1334117918", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bad Driburg"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334117918", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334117918", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334117918", "source": "GND"}], "classification": [{"name": "Stadtpark", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Spielplatz", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Mühlenpforte (Bad Driburg)"], "authorized_access_point": "Stadtgarten Bad Driburg (Bad Driburg)"} 3 -2024-07-16 19:07:26.281646 2024-07-17 07:00:00.705042 46dab441-b632-41b6-9de5-2e7cf6fc29cf {"md5": "1c78726288afa8ce3b48b039aeb1e088", "pid": "1334531153", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Villenkolonie_Buchschlag&oldid=235425024"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Buchschlag"}, {"authorized_access_point": "Dreieich-Buchschlag"}, {"authorized_access_point": "Dreieich"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334531153", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334531153", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334531153", "source": "GND"}], "classification": [{"name": "Villenviertel", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Villenkolonie Buchschlag (Dreieich)"} 3 -2024-07-16 20:07:04.313239 2024-07-17 06:57:26.968681 288a4e2a-5564-4e76-858c-a8e9d4a21b44 {"md5": "a7cb41228e01abaaacda302c19bc8f62", "pid": "04037100X", "note": [{"label": ["Homepage - https://www.comune.milano.it"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4037100-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04037100X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4037100-1", "source": "GND"}], "variant_access_point": ["Mediolanum", "Mediolanium", "Milano", "Comune di Milano", "Città di Milano", "Milan", "Mediolani", "Commune di Milano"], "authorized_access_point": "Mailand"} 3 -2024-07-16 20:07:13.489661 2024-07-17 06:57:41.923283 f2433715-bed9-4936-8533-6ba350caaa98 {"md5": "3d2b31ff7808b3542577c0ace5f4364e", "pid": "040611639", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Osmanisches Reich"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4061163-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040611639", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4061163-2", "source": "GND"}], "classification": [{"name": "Türken", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Türkiye", "Türkiye Cumhuriyeti", "TC", "République Turque", "Turkey", "T'owrk'ia", "Republic of Turkey", "Republik Türkei", "Turkish Republic", "Turquie"], "authorized_access_point": "Türkei"} 3 -2024-07-16 20:07:02.770627 2024-07-17 06:57:32.148768 4ef2626e-9a33-4700-aaf0-d6227df71df5 {"md5": "65ef74e4c2c19e1eae6432c98aa38c13", "pid": "040422038", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Holland (Königreich)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4042203-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040422038", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4042203-3", "source": "GND"}], "classification": [{"name": "Niederländer", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Staat Holland", "Vereinigte Niederlande", "Holland (Königreich)", "Batavische Republik", "Republik der Sieben Vereinigten Provinzen", "Holland (Niederlande)", "Koninkrijk der Nederlanden", "Nederland", "Nederlanden", "Netherlands", "Königreich der Niederlande", "Nederland (Gebiet unter Deutscher Besatzung, 1940-1945)", "Besetzte Niederländische Gebiete", "Het Besette Nederlandsche Gebied", "Pays-Bas (Niederlande)", "Royaume des Pays-Bas"], "authorized_access_point": "Niederlande"} 3 -2024-07-16 20:07:04.679448 2024-07-17 06:57:36.830751 a71e1bb2-31f4-4c5c-94f4-2fe7bb820cd1 {"md5": "2443e5a06fe4929305a1ba7cd5c49ace", "pid": "04051594X", "note": [{"label": ["Homepage - https://www.stadt.sg.ch"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4051594-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04051594X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4051594-1", "source": "GND"}], "variant_access_point": ["St.-Gall", "Sangallensis", "SG", "St. Gallen", "Saint-Gall", "San Gallo", "Saint Gall", "St. Gall", "Stadt Sankt Gallen", "Gallus-Stadt", "Sangallense coenobium", "Sancti Galli", "Santgalen", "Sangallum", "Sankt Gallen (Stadt)", "St. Gallen (Stadt)", "Grosser Gemeinderat Sankt Gallen", "Stadt St. Gallen", "Gemeinde Sankt Gallen"], "authorized_access_point": "Sankt Gallen"} 4 -2024-07-16 20:07:04.018851 2024-07-17 06:57:38.811274 f62a8587-8860-49f6-bd05-6798ee151b8c {"md5": "b8c6ddda49ae5a2a79bb4ea35de98d78", "pid": "040547809", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Nordasien"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4054780-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040547809", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4054780-2", "source": "GND"}], "classification": [{"name": "Sibirier", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Sibir'", "Сиби́рь", "Sibiras", "Syberia", "Siberia", "Sibiř", "Sibír", "Sibīrija", "Siber"], "authorized_access_point": "Sibirien"} 3 -2024-07-16 20:07:10.895217 2024-07-17 07:01:16.196237 fecc956e-aa69-4d4e-8586-31a2acea8138 {"md5": "93bdaaeceb79c823ab4c41305b34c048", "pid": "964991500", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4696236-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)964991500", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4696236-0", "source": "GND"}], "variant_access_point": ["LaSagne (Neuenburg)", "Sagne, La"], "authorized_access_point": "La Sagne (Neuenburg, Schweiz)"} 3 -2024-07-16 20:07:03.387434 2024-07-17 06:57:50.309789 60ad1706-485f-4b08-bf68-7136910e16a8 {"md5": "e6ab7376ce86293b8f6ad5380c38f7cc", "pid": "040754715", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Norwegen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4075471-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040754715", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4075471-6", "source": "GND"}], "variant_access_point": ["Norwegen (Nord)", "Nördliches Norwegen"], "authorized_access_point": "Nordnorwegen"} 3 -2024-07-16 20:07:06.947236 2024-07-17 06:57:32.678067 050b372d-d077-4963-84eb-cd49ed73007e {"md5": "0462c201a3c71c70e47ac5f97ba942a3", "pid": "040424839", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Amerika"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4042483-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040424839", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4042483-2", "source": "GND"}], "variant_access_point": ["Amerika (Nord)"], "authorized_access_point": "Nordamerika"} 3 -2024-07-16 20:07:07.240605 2024-07-17 06:57:42.939106 59ba87db-9c59-48cb-be15-353ebdcbf79a {"md5": "8fdac395d4a391cd79b9ddf914963dbe", "pid": "040644669", "note": [{"label": ["Homepage - http://www.vs.ch/Navig/navig.asp?MenuID=13427"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4064466-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040644669", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4064466-2", "source": "GND"}], "classification": [{"name": "Walliser", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}, {"name": "Kanton", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Vallese", "Valais", "Kanton Wallis", "Canton du Valais", "Canton Valais", "Staat Wallis", "Etat du Valais", "République et Canton du Valais", "Valais"], "authorized_access_point": "Wallis"} 3 -2024-07-16 20:07:06.63332 2024-07-17 06:57:44.510372 70a97b78-8c47-4d75-80ec-102487c5e066 {"md5": "5edda32559ddea18317f945e3dacab4b", "pid": "040687899", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Islamische Staaten"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4068789-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040687899", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4068789-2", "source": "GND"}], "classification": [{"name": "Araber", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Arabische Länder", "Arabisches Sprachgebiet"], "authorized_access_point": "Arabische Staaten"} 3 -2024-07-16 19:07:25.641887 2024-07-17 07:00:02.706376 241ae07b-25e5-4108-b458-4f6a5a730ab9 {"md5": "745f54d03302ea46ce566641935d8d02", "pid": "1334554471", "note": [{"label": ["Wikipedia - https://it.wikipedia.org/w/index.php?title=Santuario_della_Madonna_del_Bosco_(Ozegna)&oldid=138833812"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Ozegna"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334554471", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334554471", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334554471", "source": "GND"}], "classification": [{"name": "Kirchenbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Madonna del Bosco (Ozegna)"], "authorized_access_point": "Santuario della Madonna del Bosco (Ozegna)"} 3 -2024-07-16 20:07:08.198315 2024-07-17 06:57:55.990172 1ca2f2a8-d7b6-4597-b13a-a77de28c616b {"md5": "76021c849bd24d566cfe3d0dd4074249", "pid": "04079203X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Afrika"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4079203-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04079203X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4079203-1", "source": "GND"}], "classification": [{"name": "Westafrikaner", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Afrika (West)"], "authorized_access_point": "Westafrika"} 3 -2024-07-16 19:07:25.731362 2024-07-17 07:00:02.455262 cb534278-9b22-4443-9613-4912da11c75f {"md5": "968276153d5a9002b9154c4022b3bd58", "pid": "1334554218", "note": [{"label": ["Kanton Luzern, Kantonales Denkmalverzeichnis und Bauinventar - https://map.search.ch/Luzern,Weggisgasse?pos=665870,211719&zoom=17; https://www.geo.lu.ch/map/kulturdenkmal/?FOCUS=2665900:1211665:1000&BASEMAP=G"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Luzern"}, {"authorized_access_point": "Altstadt (Luzern)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334554218", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334554218", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334554218", "source": "GND"}], "classification": [{"name": "Gasse", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Straße", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Weggisgasse (Luzern)"} 3 -2024-07-16 20:07:09.418276 2024-07-17 06:57:14.078476 d8345dd0-3cb0-44c4-ad65-f71235e9988a {"md5": "7fd1be3191c3d1a6f3d0be64f0e42428", "pid": "040118908", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Deutschland (Gebiet unter Alliierter Besatzung)"}, {"authorized_access_point": "Deutschland (Gebiet unter Alliierter Besatzung, Sowjetische Zone)"}, {"authorized_access_point": "Ostdeutschland"}, {"authorized_access_point": "Deutschland"}, {"authorized_access_point": "Deutschland (Östliche Länder)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4011890-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040118908", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4011890-3", "source": "GND"}], "variant_access_point": ["Deutsche Demokratische Republik", "DDR", "Deutschland (1949-1990, DDR)", "German Democratic Republic", "GDR", "République Démocratique Allemande", "RDA", "Germanskaja Demokratičeskaja Respublika", "Demokratičeskaja Respublika (Deutschland, DDR)", "Democratic Republic (Deutschland, DDR)", "Demokratische Republik (Deutschland, DDR)", "Niemiecka Republika Demokratyczna", "NRD", "Ǧumhūrīyat Almāniyā ad-Dīmuqrāṭīya", "República Democrática Alemana", "Saksan Demokraattisen Tasavallan", "Repubblica Democratica Tedesca", "Mitteldeutschland (DDR)", "Ostdeutschland (DDR)", "East Germany (DDR)", "Ostzone"], "authorized_access_point": "Deutschland (DDR)"} 3 -2024-07-16 20:07:10.559987 2024-07-17 06:57:14.652331 9a9a1f02-af1d-47ec-a4b4-b0369d8fc47d {"md5": "e96077ae0ac96b6891b59a2f3425fd25", "pid": "04014500X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4014500-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04014500X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4014500-1", "source": "GND"}], "classification": [{"name": "Elsässer", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Alsace"], "authorized_access_point": "Elsass"} 3 -2024-07-16 20:07:10.275594 2024-07-17 06:57:35.048759 4caf12e8-7e47-4c9a-93f8-53104a0243f6 {"md5": "bea561a765c6fa1dcf771920c950f3b8", "pid": "040471942", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Herzogtum Preußen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4047194-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040471942", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4047194-9", "source": "GND"}], "variant_access_point": ["Brandenburg-Preußen", "Königreich Preußen", "Preußische Staaten", "Preußischer Staat", "Der Preußische Staat", "Königlich Preußische Staaten", "Prusy Królewskie", "Königlich Preußen", "Prussia"], "authorized_access_point": "Preußen"} 3 -2024-07-16 20:07:08.463835 2024-07-17 06:57:51.847136 814e2f8f-cef3-43cb-b89a-a92d878c032c {"md5": "348b73b8f371f66c9336f324be037bf9", "pid": "040757390", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Europa"}], "related": [{"authorized_access_point": "Ostblock"}, {"authorized_access_point": "Ostmitteleuropa"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4075739-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040757390", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4075739-0", "source": "GND"}], "classification": [{"name": "Osteuropäer", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Europa (Ost)", "Östliches Europa", "Central Europe (Osteuropa)"], "authorized_access_point": "Osteuropa"} 3 -2024-07-16 20:07:09.111547 2024-07-17 06:57:54.055689 939737e8-21c3-4220-a19f-1ff21d1e670e {"md5": "a1145d79c73c2e4bc6ac69ffccb43630", "pid": "040780120", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Nieuwe Republiek"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4078012-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040780120", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4078012-0", "source": "GND"}], "classification": [{"name": "Südafrikaner", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}, {"name": "Staat", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Südafrikanische Union", "Südafrikanische Republik", "Republik Südafrika", "Azania", "Republic of South Africa", "South Africa", "South African Republic", "Union of South Africa", "Republiek van Suidafrika", "RSA", "Suid-Afrika", "Suidafrika", "Suid Africa", "Republiek van Suid-Afrika", "Unie van Zuid-Africa", "Unie van Suid-Afrika", "Zuid-Africa", "Zuid-Afrikaansche Republiek", "Zuidafrikaansche Republiek", "ZAR (abku)", "Repaboliki ya Aferika Borwa", "Riphabulika ya Afurika Tshipembe", "Union von Südafrika"], "authorized_access_point": "Südafrika"} 3 -2024-07-16 19:07:25.193824 2024-07-17 07:00:04.366286 c489b4a9-11ec-43aa-b976-957588f9f367 {"md5": "83d9cc2d80903f9a512b93919dd5daeb", "pid": "133463209X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Rieflinghausen&oldid=243763184"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Helden (Attendorn)"}, {"authorized_access_point": "Attendorn-Rieflinghausen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133463209X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133463209X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133463209X", "source": "GND"}], "authorized_access_point": "Helden-Rieflinghausen"} 3 -2024-07-16 20:07:12.580737 2024-07-17 06:57:11.855056 13d25ab8-2694-40d7-9644-6eb79368df88 {"md5": "9d28431026ee9086f3b8b151259a6607", "pid": "040076075", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4007607-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040076075", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4007607-6", "source": "GND"}], "variant_access_point": ["República de Bolivia", "Republik Bolivien", "Estado Plurinacional de Bolivia", "Bolivia"], "authorized_access_point": "Bolivien"} 3 -2024-07-16 20:07:11.875442 2024-07-17 06:57:47.507861 8e731b7d-45e0-4606-9f01-87c501b92f71 {"md5": "97f620ed384a6f719a6b9008395f4339", "pid": "040731723", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Arabische Staaten"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4073172-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040731723", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4073172-8", "source": "GND"}], "classification": [{"name": "Islam", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Islamischer Orient", "Islamische Länder", "Islamische Regionen"], "authorized_access_point": "Islamische Staaten"} 3 -2024-07-16 20:07:12.893599 2024-07-17 06:57:49.768981 58775d77-ac49-4993-b513-2721f1776a38 {"md5": "53f0a8efdb7ebe2962cc78205ff83894", "pid": "040753034", "note": [{"label": ["Homepage - https://www.neuchatelville.ch"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Schweiz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4075303-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040753034", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4075303-7", "source": "GND"}], "classification": [{"name": "Neuenburger", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Stadt Neuenburg", "Neuchâtel", "Neuchâtel", "Neufchâtel", "Ville de Neuchâtel"], "authorized_access_point": "Neuenburg (Schweiz)"} 3 -2024-07-16 19:07:23.286286 2024-07-17 07:00:12.240185 90acd255-dd4f-44d5-9165-3b6010fcf492 {"md5": "e8b874582010c0df118e8b1c96c629a4", "pid": "1334789134", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Ostentrop&oldid=243213300"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Finnentrop-Ostentrop"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334789134", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334789134", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334789134", "source": "GND"}], "authorized_access_point": "Ostentrop"} 3 -2024-07-16 19:07:23.196698 2024-07-17 07:00:12.582122 5ad05ac3-1ccb-4aba-92f8-7aca6dccc713 {"md5": "0d61925c469a05b0f6bbedef3065e823", "pid": "1334801304", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Gradberg&oldid=214683168"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bad Driburg"}, {"authorized_access_point": "Nordrhein-Westfalen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334801304", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334801304", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334801304", "source": "GND"}], "classification": [{"name": "Naturschutzgebiet", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["NSG Gradberg", "Gradberg"], "authorized_access_point": "Naturschutzgebiet Gradberg"} 3 -2024-07-16 19:07:22.591113 2024-07-17 07:00:14.712137 8744df06-e8df-40da-abb8-0def692d3c2b {"md5": "04367a688edcae98b6084ec91eef7490", "pid": "1334874387", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Großwilfersdorf-Hainersdorf"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334874387", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334874387", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334874387", "source": "GND"}], "classification": [{"name": "Kirchenbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Pfarrkirche Heiliger Georg (Hainersdorf)", "Pfarrkirche Hl. Georg (Hainersdorf)"], "authorized_access_point": "Sankt Georg (Hainersdorf)"} 3 -2024-07-16 19:07:21.997833 2024-07-17 07:00:17.081841 71e3ca6a-c7e4-402f-b17f-eee25034bea0 {"md5": "7c49a6cffedfe0f5095dcb9091d86531", "pid": "133490281X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=244643949"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Fernitz-Mellach"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133490281X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133490281X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133490281X", "source": "GND"}], "classification": [{"name": "Schloss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Schloss Weissenegg (Fernitz-Mellach)"} 3 -2024-07-16 19:07:24.14331 2024-07-17 07:00:07.869632 b2ab453a-1044-4514-bb77-f4c86d0591ac {"md5": "01c4f403fd973f0b22b06cf043aa3423", "pid": "1334670560", "note": [{"label": ["Kanton Luzern, Kantonales Denkmalverzeichnis und Bauinventar - https://www.geo.lu.ch/map/kulturdenkmal/?FOCUS=2665895:1211586:250&BASEMAP=G", "Search.ch - https://map.search.ch/Luzern,Kornmarkt?pos=665856,211604&zoom=18"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Luzern"}, {"authorized_access_point": "Altstadt (Luzern)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334670560", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334670560", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334670560", "source": "GND"}], "classification": [{"name": "Marktplatz", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Kornmarkt (Luzern)"} 3 -2024-07-16 20:07:14.39431 2024-07-17 06:57:24.139327 8e0bb27d-054d-4fb3-b3db-4344a8c426a3 {"md5": "8c607f94d8682ccd5ed7cb085d52992d", "pid": "040302369", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Kenia (Protectorate)"}, {"authorized_access_point": "Kenya (Colony and Protectorate)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4030236-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040302369", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4030236-2", "source": "GND"}], "variant_access_point": ["Ǧumhūrīyat Kīnyā", "Jamhuri ya Kenya", "Kenya", "Republic of Kenya", "Kīnyā", "Republik Kenia", "Chenia", "Government of Kenya", "GOK (Government of Kenya)", "Keniia"], "authorized_access_point": "Kenia"} 3 -2024-07-16 20:07:14.709604 2024-07-17 06:57:24.739167 a41d9b31-4edd-4b8d-ba72-02ba71a0d678 {"md5": "5c8ff60c249a00d1fb49e595d189dc37", "pid": "040318125", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Neugranada"}, {"authorized_access_point": "Confederación Granadina"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4031812-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040318125", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4031812-6", "source": "GND"}], "classification": [{"name": "Kolumbianer", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Columbien", "Colombia", "Estados Unidos de Colombia", "Gran Colombia", "República de Colombia", "Columbia", "République de Colombie", "Colombie", "Republic of Colombia"], "authorized_access_point": "Kolumbien"} 3 -2024-07-16 20:07:14.083494 2024-07-17 06:57:31.332119 4ffe663a-fe47-4f42-a840-0f32e5163801 {"md5": "f801c1d0814d98856b667b549c4826e7", "pid": "04041745X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4041745-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04041745X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4041745-1", "source": "GND"}], "classification": [{"name": "Kanton", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Fürstentum Neuenburg (Schweiz)", "Fürstentum Neuenburg und Valangin", "Principauté de Neuchâtel et Valangin", "Souveraineté de Neuchâtel et Valangin", "Grafschaft Neuenburg (Schweiz)", "Neuchâtel, Pays de", "Pays de Neuchâtel", "Neuenburg (Schweiz, Kanton)", "Canton de Neuchâtel", "Neuchâtel (Canton)", "Comté de Neufchâtel", "Neufchâtel (Comté)", "Neuenburg (Canton)", "Neuchâtel (République)", "République et Canton de Neuchâtel", "Republik und Kanton Neuenburg", "Etat de Neuchâtel", "République Neuchâteloise", "Canton de Neuchâtel", "Neuenburg (Kanton)"], "authorized_access_point": "Kanton Neuenburg"} 3 -2024-07-16 20:07:13.773801 2024-07-17 06:57:39.660619 3b098bc9-c300-41ee-a2d9-71ef39206606 {"md5": "359dc10711b04d62596b4402d2d3b2d0", "pid": "040554589", "note": [{"label": ["Homepage - https://www.stadt-solothurn.ch/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4055458-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040554589", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4055458-2", "source": "GND"}], "variant_access_point": ["Einwohnergemeinde Stadt Solothurn", "Einwohnergemeinde der Stadt Solothurn", "Soleure", "Soletta", "Soleure", "Solodorum", "Soloturn", "Solodurum", "Stadt Solothurn", "Soletta", "EGS", "Solothurn (Stadt)", "Solodori", "Einwohnergemeinde Solothurn", "Stadtgemeinde Solothurn", "Salodurum"], "authorized_access_point": "Solothurn"} 3 -2024-07-16 20:07:15.333427 2024-07-17 06:57:28.961802 7249c788-b725-4284-b72f-378913095601 {"md5": "39b1f0c9bb8ae95b033aaa1ba7f01181", "pid": "040396770", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Europa"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4039677-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040396770", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4039677-0", "source": "GND"}], "variant_access_point": ["Zentraleuropa", "Central Europe (Mitteleuropa)"], "authorized_access_point": "Mitteleuropa"} 3 -2024-07-16 20:07:16.923518 2024-07-17 06:57:20.29774 ebde3225-99e9-434e-a342-c9a9fa2fc42c {"md5": "bb5690e2d08dae01b2469d65bb2a4f7b", "pid": "040278395", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Alpen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4027839-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040278395", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4027839-6", "source": "GND"}], "variant_access_point": ["Italien (Alpen)"], "authorized_access_point": "Italienische Alpen"} 3 -2024-07-16 20:07:17.899181 2024-07-17 06:57:26.175167 61a0e71a-8974-4cd4-9f72-12a78582fe27 {"md5": "81898424fb501e7b3ae8f63d372b32f8", "pid": "040367282", "note": [{"label": ["Homepage - http://www.gouvernement.lu/ministeres/index.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4036728-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040367282", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4036728-9", "source": "GND"}], "classification": [{"name": "Staat", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Luxemburger", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Großherzogtum Luxemburg", "Herzogtum Luxemburg", "Grafschaft Luxemburg", "Luxembourg", "Grand-Duché de Luxembourg", "Ljuksemburg", "Lätzebuerg", "Grand Duchy of Luxembourg", "Lützemburg"], "authorized_access_point": "Luxemburg"} 3 -2024-07-16 20:07:17.297183 2024-07-17 06:57:44.015631 a9f16b28-91af-4c23-bb6e-4ec00b2d96b7 {"md5": "be47bc88dddc53881aa554fee8498529", "pid": "04068041X", "note": [{"label": ["Homepage - https://www.zh.ch"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4068041-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04068041X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4068041-1", "source": "GND"}], "classification": [{"name": "Zürcher", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}, {"name": "Kanton", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Zürich (Kanton)", "Republic Zürich", "Eidgenössischer Stand Zürich", "Zurich (Canton)", "Zurigo (Cantone)", "Canton Zürich", "Zürich (Republic)"], "authorized_access_point": "Kanton Zürich"} 3 -2024-07-16 20:07:17.595979 2024-07-17 06:57:48.343451 f2eae65b-5280-4f54-b54f-6324f67407a4 {"md5": "277459f30ebc0578c2ab2f3c7bde63be", "pid": "040740323", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4074032-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040740323", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4074032-8", "source": "GND"}], "classification": [{"name": "Lateinamerikaner", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Iberoamerika"], "authorized_access_point": "Lateinamerika"} 3 -2024-07-16 20:07:19.000035 2024-07-17 06:57:52.708374 bf46d994-754f-4d08-8dba-3083a3ac3de7 {"md5": "f158764cc3d5db91f9b71d6f215ca326", "pid": "040769100", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Ruanda-Urundi"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4076910-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040769100", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4076910-0", "source": "GND"}], "classification": [{"name": "Ruander", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Republika y' u. Rwanda", "Rwanda", "République Rwandaise", "Republik Ruanda", "Republic of Rwanda"], "authorized_access_point": "Ruanda"} 3 -2024-07-16 20:07:16.284301 2024-07-17 06:57:53.719063 a0c8eaed-85fc-486d-a9cb-fa9b89c63a4b {"md5": "c9d2ce2fb84d8b6904c9b702cc326ff1", "pid": "040774678", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4077467-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040774678", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4077467-3", "source": "GND"}], "variant_access_point": ["Sedunum", "Sedun.", "Ville de Sion", "Municipalité Sion", "Sion", "Sion", "Sion"], "authorized_access_point": "Sitten"} 4 -2024-07-16 20:06:46.594263 2024-07-17 06:58:13.776477 575a5e85-6017-4926-ab1e-c58c10afb87d {"md5": "c3490456837e67dea8bb336677d282b1", "pid": "042499909", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Sitten"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4249990-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042499909", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4249990-2", "source": "GND"}], "classification": [{"name": "Kirchenbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Basilique de Valère (Sitten)"], "authorized_access_point": "Notre-Dame-de-Valère (Sitten)"} 4 -2024-07-16 20:07:21.187157 2024-07-17 07:01:19.99838 e84283c4-eeb7-4d6f-8aa4-d7d52ff3fba9 {"md5": "e9866d89383b2966a994200c45f88188", "pid": "968963935", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Kanton Luzern"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4751227-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)968963935", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4751227-1", "source": "GND"}], "variant_access_point": ["Gemeindekanzlei Aesch (Luzern)", "Gemeinderat Aesch (Luzern)", "Gemeinde Aesch (Luzern)", "Einwohnergemeinde Aesch (Luzern)"], "authorized_access_point": "Aesch (Kanton Luzern)"} 3 -2024-07-16 20:07:20.308743 2024-07-17 06:57:45.622358 2467e69e-9e72-4226-a249-3723e0614233 {"md5": "1a59206d1d29e4c1c6cc16264cdd2f23", "pid": "040703525", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Schweiz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4070352-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040703525", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4070352-6", "source": "GND"}], "classification": [{"name": "Deutschschweizer", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Deutschsprachige Schweiz", "Deutschschweiz", "Schweiz (Deutsches Sprachgebiet)"], "authorized_access_point": "Deutsche Schweiz"} 3 -2024-07-16 20:07:21.786457 2024-07-17 06:58:03.000563 c531780e-2686-4e53-ae7f-ed817c8d4d91 {"md5": "4f87e695b68320969bfaa92b75d4ee24", "pid": "040995623", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4099562-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040995623", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4099562-8", "source": "GND"}], "variant_access_point": ["Loèche-les-Bains"], "authorized_access_point": "Leukerbad"} 3 -2024-07-16 20:07:20.898587 2024-07-17 06:57:19.982948 8668d6db-a38e-4b7c-a8cd-2a7f92e4f822 {"md5": "a85cd4ec1bc2e6471b90a0bccf313f1f", "pid": "040277542", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4027754-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040277542", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4027754-9", "source": "GND"}], "classification": [{"name": "Insel", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Isländer", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Lyđveldiđ Island", "Ísland", "Iceland", "Republik Island", "Lýðveldið Island", "Lydveldid Island", "Republic of Iceland", "Eisland", "Islandia"], "authorized_access_point": "Island"} 3 -2024-07-16 20:07:20.632793 2024-07-17 06:57:42.170901 531cfd33-07cb-47c6-b44f-e37845bb40a4 {"md5": "fcf44ba832dc5e8f6b4de1fe020828a9", "pid": "040612066", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Tunisie"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4061206-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040612066", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4061206-5", "source": "GND"}], "classification": [{"name": "Staat", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Tunesier", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Tūnis (Daula)", "al- Ǧumhūrīya at-Tūnisīya", "Tunisie (Daula)", "République Tunisienne", "Tunesische Republik", "Tūnus (Daula)", "al- Ǧumhūrīya at-Tūnusīya", "Túnez (Daula)", "Royaume de Tunis", "al- Mamlaka at-Tūnisīya", "Tunisia"], "authorized_access_point": "Tunesien"} 3 -2024-07-16 20:07:19.991623 2024-07-17 07:01:03.30929 66484e38-2451-456d-8852-0cb64952e578 {"md5": "572788a17f3a08e2c244b704eeab3561", "pid": "952907682", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/St._Niklaus_VS"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Wallis"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4487880-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)952907682", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4487880-1", "source": "GND"}], "variant_access_point": ["St. Niklaus (Wallis)", "Sankt Niklaus", "St. Niklaus (Grächen)", "St. Niklaus (Visp)", "Gemeinde St. Niklaus", "St. Niklaus"], "authorized_access_point": "Sankt Niklaus (Wallis)"} 3 -2024-07-16 20:07:23.642789 2024-07-17 07:01:04.931134 7b5e9011-88b8-4bc2-83b2-b91d02778d22 {"md5": "c8d093728923f34c2250277da6c12509", "pid": "954696867", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Wallis"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4516751-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)954696867", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4516751-5", "source": "GND"}], "authorized_access_point": "Saint-Léonard (Wallis)"} 3 -2024-07-16 20:07:22.421122 2024-07-17 06:57:23.03139 2941963e-caa7-46f9-b209-f1fede879ee3 {"md5": "177b8417f5ea2e180f189a9830a4c170", "pid": "040294137", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Cameroun (Territoire sous Tutelle)"}, {"authorized_access_point": "Cameroons (Territory under Mandate)"}, {"authorized_access_point": "Southern Cameroons"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4029413-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040294137", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4029413-4", "source": "GND"}], "classification": [{"name": "Kameruner", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Cameroon (Etat)", "République Fédérale du Cameroun", "Kamerun (Etat)", "Kamerun (1960)", "République du Cameroun", "Federal Republic of Cameroon", "Republic of Cameroon", "United Republic of Cameroon", "République Unie du Cameroun", "République fédérale du Cameroun", "Cameroon", "République unie du Cameroun", "Vereinigte Republik Kamerun", "West Cameroon"], "authorized_access_point": "Kamerun"} 3 -2024-07-16 20:07:22.722608 2024-07-17 06:58:08.013187 d416c7aa-6e5b-4d7d-9d56-2f0a60c7949b {"md5": "151a4eee4842bfe2381ae8cf4eddfc18", "pid": "041192389", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4119238-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041192389", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4119238-2", "source": "GND"}], "authorized_access_point": "Zermatt (Region)"} 3 -2024-07-16 19:08:12.523607 2024-07-17 07:00:25.216655 0993547f-26bd-4ad6-a421-e9a4a6b51136 {"md5": "a63bd5cce8a10e62e52a6a40c979d6af", "pid": "199000328", "note": [{"label": ["Stadt Dortmund - https://www.dortmund.de/themen/sport/geschaeftsbereich-sport/hoeschpark/", "Wikipedia - https://de.wikipedia.org/w/index.php?title=Hoeschpark&oldid=231477040"], "noteType": "dataSource"}, {"label": ["Grünanlage mit zahlreichen Sportstätten"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Dortmund"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7761761-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199000328", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7761761-7", "source": "GND"}], "classification": [{"name": "Grünanlage", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Park", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Sportstätte", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Baudenkmal", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Hoesch-Park (Dortmund)", "Brackeler Straße 60 (Dortmund)"], "authorized_access_point": "Hoeschpark (Dortmund)"} 3 -2024-07-16 20:07:24.988801 2024-07-17 06:57:25.05683 39cb61e9-58a8-4b4e-bff4-3b2950e46904 {"md5": "b611711d1263b611d087b543e1538740", "pid": "04032527X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4032527-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04032527X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4032527-1", "source": "GND"}], "classification": [{"name": "Insel", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Korsen", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Corsica (Korsika)", "Corse"], "authorized_access_point": "Korsika"} 3 -2024-07-16 19:08:11.768947 2024-07-17 07:00:27.893769 b0eafc46-da5a-4165-bef2-7e34047b7487 {"md5": "1a42f031b48dd02b6f19c4f7a66440cb", "pid": "199023786", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Haus_Holtwick&oldid=238799546"], "noteType": "dataSource"}, {"label": ["Das Haus Holtwick ist eine abgegangene mittelalterliche Niederungsburg. Es ist nur das Torhaus erhalten."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Rosendahl"}, {"authorized_access_point": "Rosendahl-Holtwick"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7764388-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199023786", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7764388-4", "source": "GND"}], "classification": [{"name": "Torbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Baudenkmal", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Haus Holtwick (Rosendahl-Holtwick)"], "authorized_access_point": "Haus Holtwick (Rosendahl)"} 3 -2024-07-16 20:07:28.492898 2024-07-17 07:00:55.700269 e5cc78d9-841f-4f3c-9e5b-af0332484988 {"md5": "604f61714fda4a235bf17a24acccc147", "pid": "949642762", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4440703-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)949642762", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4440703-8", "source": "GND"}], "variant_access_point": ["Genfer-See-Gebiet", "Genferseeregion", "Région lémanique", "Arc lémanique"], "authorized_access_point": "Genfer See (Region)"} 3 -2024-07-16 20:07:25.651378 2024-07-17 06:57:44.268775 d200a9e8-56ce-49a9-a1e0-5c5c021e1e29 {"md5": "80b17a87bfecdec7e99c0ce815d7d51d", "pid": "040680649", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4068064-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040680649", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4068064-2", "source": "GND"}], "classification": [{"name": "Kanton", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Zug (Eidgenössischer Stand)", "Eidgenössischer Stand Zug"], "authorized_access_point": "Kanton Zug"} 3 -2024-07-16 20:07:26.272745 2024-07-17 06:57:26.421306 825cef54-53ce-4f09-be58-493380db2c2d {"md5": "5d38dda21f612708e12e779d7b2b02d4", "pid": "040367339", "note": [{"label": ["Homepage - https://www.stadtluzern.ch/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4036733-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040367339", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4036733-2", "source": "GND"}], "variant_access_point": ["Lucerne", "Lucerne", "Luseen", "Lucerna", "Stadt Luzern", "Lucern", "Lucerne", "Luceria", "Lucerna Helvetiorum", "Einwohner- und Korporationsgemeinde (Luzern)", "Einwohnergemeinde Luzern"], "authorized_access_point": "Luzern"} 4 -2024-07-16 20:07:28.138466 2024-07-17 06:57:28.387975 290244f4-691e-45e0-a4c5-5878439c5819 {"md5": "053519be06ed07a2b7e2b9145e4fbffd", "pid": "040387887", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4038788-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040387887", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4038788-4", "source": "GND"}], "variant_access_point": ["Zweistromland", "Zwischenstromland"], "authorized_access_point": "Mesopotamien"} 3 -2024-07-16 20:07:27.778376 2024-07-17 06:58:00.819472 d8d3b6ef-b9e5-4d7b-8ea3-6fc4278ef4db {"md5": "e0b94e2e90a21cc8dd38ba4f3e238c75", "pid": "040932052", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Alpen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4093205-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040932052", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4093205-9", "source": "GND"}], "variant_access_point": ["Frankreich (Alpen)", "Alpes françaises"], "authorized_access_point": "Französische Alpen"} 3 -2024-07-16 20:07:25.980844 2024-07-17 06:58:07.527635 c5d3e13f-f54a-4c76-83e4-d87dd643a702 {"md5": "b167d9e1415680eebbc5842f7cdac314", "pid": "041179145", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Arktis"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4117914-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041179145", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4117914-6", "source": "GND"}], "classification": [{"name": "Geografischer Pol", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Nordpol der Erde"], "authorized_access_point": "Nordpol"} 3 -2024-07-16 20:07:27.198779 2024-07-17 07:00:44.524463 66a75508-0dce-4acd-afd0-ca81ab0470c9 {"md5": "265181efa1e7b4cc934fab2259140333", "pid": "941147797", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Wallis"}], "related": [{"authorized_access_point": "Naters"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4339879-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)941147797", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4339879-0", "source": "GND"}], "variant_access_point": ["Naters-Mund"], "authorized_access_point": "Mund (Wallis)"} 3 -2024-07-16 20:07:27.471512 2024-07-17 06:57:11.299084 876b7175-9106-4145-94a0-8ac4e738af13 {"md5": "e5db728f30d8a34dc94750f584318041", "pid": "040057658", "note": [{"label": ["Homepage - https://www.be.ch", "Hist. Lex. Schweiz - https://hls-dhs-dss.ch/de/articles/007383/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Stand Bern"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4005765-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040057658", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4005765-3", "source": "GND"}], "classification": [{"name": "Berner", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}, {"name": "Kanton", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Canton de Berne", "Bernbiet", "Berner Land", "Canton Bern", "Canton de Berne", "Canton Berne"], "authorized_access_point": "Kanton Bern"} 3 -2024-07-16 20:07:25.320322 2024-07-17 06:57:34.79738 191a4738-a922-4e95-bc30-2d885880465e {"md5": "9683a38272133472f9957214f275e56f", "pid": "040467554", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4046755-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040467554", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4046755-7", "source": "GND"}], "classification": [{"name": "Archäologische Stätte", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Pompeii", "Pompei", "Valle di Pompei"], "authorized_access_point": "Pompeji"} 3 -2024-07-16 20:07:32.038154 2024-07-17 06:57:22.702769 9cb1bf2e-7d40-4022-b172-d2d81f0546d3 {"md5": "b1e629e751b8870abc45541089b991c7", "pid": "040293076", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4029307-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040293076", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4029307-5", "source": "GND"}], "variant_access_point": ["Calif.", "CA", "California", "State of California", "Provincia de Californias", "Departamento de Californias"], "authorized_access_point": "Kalifornien"} 3 -2024-07-16 20:07:29.124947 2024-07-17 06:57:46.150687 7cb4d3b8-cba2-41cb-9224-272ede4204d0 {"md5": "4ec424ab18fe93d6880f84591c0b3229", "pid": "040713326", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4071332-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040713326", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4071332-5", "source": "GND"}], "classification": [{"name": "Franken", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Frankenreich", "Regnum Francorum", "Karolingerreich", "Merowingerreich", "Karolingisches Reich"], "authorized_access_point": "Fränkisches Reich"} 3 -2024-07-16 20:07:31.430911 2024-07-17 06:57:48.63277 9eea9ba6-8045-422b-a28c-332749b6ca15 {"md5": "c4695ff2620fa46d456ebb2ae72ca2c3", "pid": "040743357", "note": [{"label": ["Homepage - https://www.london.gov.uk"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4074335-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040743357", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4074335-4", "source": "GND"}], "variant_access_point": ["County of London", "Corporation of London", "Greater London", "Londinium", "Londyn", "Landan", "Lundun", "Augusta Trinobantum", "Londres", "Londra", "Londen", "London (Great Britain)", "Londinum", "Lundonia", "Westminster", "Londinium"], "authorized_access_point": "London"} 3 -2024-07-16 20:07:28.818166 2024-07-17 06:57:57.629306 a2dd90b8-a52a-4d68-813a-65fceb0c80c1 {"md5": "b0cc91a149a1ca55421c0957d1ef0543", "pid": "040794873", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Asien"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4079487-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040794873", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4079487-8", "source": "GND"}], "variant_access_point": ["Innerasien", "Asien (Zentral)"], "authorized_access_point": "Zentralasien"} 3 -2024-07-16 20:07:30.81499 2024-07-17 06:58:04.132576 1ecab22e-541b-4790-bf20-09c0cc9bdccd {"md5": "190f94830ed5326d841a253170679a53", "pid": "041051513", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4105151-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041051513", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4105151-8", "source": "GND"}], "variant_access_point": ["Saaser Visptal"], "authorized_access_point": "Saastal"} 3 -2024-07-16 20:07:29.556697 2024-07-17 06:58:07.782034 f65d34c0-d1bc-4620-aecb-ca2c44656d48 {"md5": "a7bb6653b27a0664b48d69132fe1c727", "pid": "041186672", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4118667-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041186672", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4118667-9", "source": "GND"}], "classification": [{"name": "Eisenbahntunnel", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Simplontunnel"} 3 -2024-07-16 20:07:30.518094 2024-07-17 06:57:47.26008 df3882df-2a28-48e6-b1d4-665b7472430e {"md5": "523bfcab0e56999ef9a3cad8cf435221", "pid": "040721000", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4072100-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040721000", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4072100-0", "source": "GND"}], "classification": [{"name": "Gletscher", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Aletschgletscher"], "authorized_access_point": "Großer Aletschgletscher"} 3 -2024-07-16 20:07:31.122244 2024-07-17 07:00:46.932761 c034a3e3-58e1-4a4a-92c0-d9ad7bcf5e15 {"md5": "b4b5fb575150713a1a1ea79c3f7ea461", "pid": "944449360", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Berner Alpen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4376469-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)944449360", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4376469-1", "source": "GND"}], "classification": [{"name": "Gebirgszug", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Alpes Vaudoises", "Alpi Valdesi"], "authorized_access_point": "Waadtländer Alpen"} 3 -2024-07-16 20:07:32.350697 2024-07-17 06:57:07.515705 a954f015-d68f-4cca-8a40-c5a35606a6a1 {"md5": "35b0afabb9764b56759be426c60f3575", "pid": "040022080", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Polargebiete"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4002208-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040022080", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4002208-0", "source": "GND"}], "variant_access_point": ["Südliches Polargebiet", "Polargebiet (Süd)", "Südpolargebiet"], "authorized_access_point": "Antarktis"} 3 -2024-07-16 20:07:33.85528 2024-07-17 06:57:23.298725 27abcf8c-6eb3-4d20-b2c0-db466406c7f3 {"md5": "98199ab89a5093ec813688f2120177d1", "pid": "040294560", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Provinz Kanada"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4029456-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040294560", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4029456-0", "source": "GND"}], "classification": [{"name": "Kanadier", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Canada", "Dominion of Canada", "Puissance du Canada"], "authorized_access_point": "Kanada"} 3 -2024-07-16 20:07:34.490954 2024-07-17 06:57:37.971778 0a62da65-25ab-41c2-a0fd-61418c28ecbc {"md5": "6be53bcb8e827f6b7c2629cf8328bfcc", "pid": "040519937", "note": [{"label": ["Homepage - https://schaffhausen.ch/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4051993-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040519937", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4051993-4", "source": "GND"}], "variant_access_point": ["Schaffhausen, Hochrhein", "Schaffhouse", "Schafhausen", "Scaphusa", "Sciaffusa", "Einwohnergemeinde Schaffhausen", "Stadt Schaffhausen"], "authorized_access_point": "Schaffhausen"} 3 -2024-07-16 20:07:42.331942 2024-07-17 06:58:03.844158 21ce8daf-bc46-4ffc-9c46-e3f88e0d7730 {"md5": "153fca749f1ee3fb31870f202b3d9d07", "pid": "041048989", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4104898-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041048989", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4104898-2", "source": "GND"}], "variant_access_point": ["Gemeinde Raron", "Munizipalgemeinde Raron"], "authorized_access_point": "Raron"} 3 -2024-07-16 20:07:33.566741 2024-07-17 06:59:01.092385 a6bd0410-b784-4d58-9d7b-bf7128184ce5 {"md5": "94b5db5f19df7c2eca8537cd232f7c09", "pid": "1077172354", "note": [{"label": ["Homepage - https://www.bs.ch/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Kanton Basel"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1077172354", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1077172354", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1077172354", "source": "GND"}], "classification": [{"name": "Kanton", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Bâle-Ville", "Basel-Stadttheil", "Kanton Basel-Stadttheil", "Basel-Stadtteil", "Kanton Basel-Stadtteil", "Basilea-Città", "Kanton Basel-Stadt", "Basel (Basel-Stadt)", "Basel-Stadt (Kanton)"], "authorized_access_point": "Basel-Stadt"} 3 -2024-07-16 20:07:32.642624 2024-07-17 06:57:36.235925 24aff614-c86c-4310-a1ba-4a0c06a1d23a {"md5": "d87ac5427ff45d86589fd62fb33a3a0e", "pid": "040504719", "note": [{"label": ["Homepage - http://www.comune.roma.it/pcr/do/jpsite/Site/home"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4050471-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040504719", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4050471-2", "source": "GND"}], "variant_access_point": ["Roma", "Città di Roma", "Comune di Roma", "Rim", "Rym", "Luoma", "Senatus Populusque Romanus", "SPQR", "Roma Capitale", "Rzym", "Rome", "Roma", "Řím", "Città di Roma", "Comune di Roma"], "authorized_access_point": "Rom"} 4 -2024-07-16 20:07:36.635329 2024-07-17 07:01:15.922827 1611920f-1aba-4c64-b7bd-87c34e74cfd8 {"md5": "b49c450d6c8a5c5c5a49855c3d063bd8", "pid": "96475455X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Lötschberg"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4690568-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)96475455X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4690568-6", "source": "GND"}], "classification": [{"name": "Eisenbahntunnel", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Eisenbahntunnel Lötschberg"], "authorized_access_point": "Lötschberg-Basistunnel"} 3 -2024-07-16 20:07:35.451 2024-07-17 06:57:30.80956 87725658-5636-47b7-91a4-d772fbdba56c {"md5": "c67e301028b435ce93052922595ad1ac", "pid": "04040417X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4040417-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04040417X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4040417-1", "source": "GND"}], "classification": [{"name": "Berg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Everest, Mount", "Tschomo Lungma", "Jolmo Lungma", "Sagarmatha", "Chomolungma", "Tschomolungma", "Chu-mu-lang-ma-feng"], "authorized_access_point": "Mount Everest"} 3 -2024-07-16 20:07:34.841091 2024-07-17 06:57:46.722208 b2178e95-4a1c-401a-a3fb-133ec2329fd5 {"md5": "7c25784eac79425a0e8b3fed4f39a70b", "pid": "040714446", "note": [{"label": ["Homepage - https://www.ville-fribourg.ch"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4071444-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040714446", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4071444-5", "source": "GND"}], "variant_access_point": ["Freiburg (Üechtland)", "Freiburg im Üchtland", "Freiburg (Üchtland)", "Freiburg (Schweiz)", "Freiburg i. Üe.", "Freiburg i.Üe.", "Freiburg i. Ü.", "Fribourg", "Ville de Fribourg", "Friburgum Nuithonum", "Friburgum Aventicorum", "Friburgum Helvetiorum", "Fribourg en Nuithonie", "Freyburg in Uchtland", "Friburgi Heluetiorum", "Fribourg (Schweiz)", "Freyburg im Üechtland", "Fribourg", "Stadt Freiburg (Schweiz)"], "authorized_access_point": "Freiburg im Üechtland"} 3 -2024-07-16 20:07:36.339687 2024-07-17 06:57:49.489687 19b8f10c-8a51-4a53-a43a-f5eb606d6e45 {"md5": "00643c7b5ac37869f4d6da36d838c30c", "pid": "040749878", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4074987-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040749878", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4074987-3", "source": "GND"}], "variant_access_point": ["Moskva", "Moskwa (Stadt)", "Moscow (Stadt)", "Moscow", "Moskovskij Gorodskoj Sovet Deputatov Trudjaščichsja", "Mosgorsovet", "Gorodskoj Sovet Narodnych Deputatov (Moskau)", "Mossovet", "Mosca", "Moskovskij Sovet Rabočich, Krestʹjanskich i Krasnoarmejskich Deputatov", "Pravitelʹstvo Moskvy", "Moscú", "Moscou", "Gorodskoj Sovet Narodnych Deputatov (Moskva)", "Moscovia"], "authorized_access_point": "Moskau"} 3 -2024-07-16 20:07:35.732938 2024-07-17 06:58:09.173421 f6e56b1a-0e9e-4955-b241-d45ea4f97ddc {"md5": "33be4839930dccc2f63d309da0112358", "pid": "041294688", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Bourgogne-Franche-Comte"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4129468-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041294688", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4129468-3", "source": "GND"}], "variant_access_point": ["Bourgogne", "Arelat"], "authorized_access_point": "Burgund"} 3 -2024-07-16 19:08:11.424745 2024-07-17 07:00:29.110697 cc80a3db-0a02-4ac8-8e3f-091aff290460 {"md5": "ae5a090b2e430d142e1b6cee69719f44", "pid": "199136637", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Liste_der_Baudenkm%C3%A4ler_in_Bocholt&oldid=242141670"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bocholt"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7777006-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199136637", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7777006-7", "source": "GND"}], "classification": [{"name": "Villa", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Baudenkmal", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Villa (Bocholt)"], "authorized_access_point": "Schwartzstraße 7 (Bocholt)"} 3 -2024-07-16 20:07:35.131631 2024-07-17 06:57:22.361388 3daf5394-e6c5-4ecc-9651-e0bb55509fdc {"md5": "772e9331db83b184992cd170da8222a5", "pid": "040290433", "note": [{"label": ["Homepage - http://www.jura.ch/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4029043-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040290433", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4029043-8", "source": "GND"}], "classification": [{"name": "Kanton", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["République et Canton du Jura", "Canton du Jura - Suisse", "Canton du Jura"], "authorized_access_point": "Kanton Jura"} 3 -2024-07-16 19:08:19.882237 2024-07-17 06:57:01.734809 8022f49c-5f5b-4681-a6ac-7a35bad6cade {"md5": "c17c6cd96d522b78b15f29c9203da54c", "pid": "004205731", "note": [{"label": ["Internet - http://rocor.de/de"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1032392-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)004205731", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1032392-2", "source": "GND"}], "variant_access_point": ["Russian Orthodox Church outside Russia (Russisch-Orthodoxe Diözese des Orthodoxen Bischofs von Berlin und Deutschland)", "Russian Orthodox Church outside Russia (Deutsche Diözese)", "Deutsche Diözese der Russischen Orthodoxen Kirche im Ausland", "Russian Orthodox Church outside Russia (Germanskaja Eparchija)", "Russische Orthodoxe Diözese des Orthodoxen Bischofs von Berlin und Deutschland", "Russische Orthodoxe Diözese von Berlin und Deutschland", "Russische Orthodoxe Kirche im Ausland (Deutsche Diözese)"], "authorized_access_point": "Russisch-Orthodoxe Diözese des Orthodoxen Bischofs von Berlin und Deutschland"} 3 -2024-07-16 20:07:39.30303 2024-07-17 06:57:15.499465 19f14a3b-29a1-449c-99b5-e83d5eafc071 {"md5": "5791394c9b499bbffa206536285940d5", "pid": "040157016", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4015701-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040157016", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4015701-5", "source": "GND"}], "classification": [{"name": "Europäer", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Abendland", "Okzident"], "authorized_access_point": "Europa"} 3 -2024-07-16 20:07:37.296683 2024-07-17 06:57:35.666615 1287579e-4277-4f28-aca5-bc18d162bb63 {"md5": "afb4ffb84105ec5afb407dc6e8791b16", "pid": "040480305", "note": [{"label": ["Homepage - http://www.gouv.qc.ca"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Provinz Kanada"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4048030-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040480305", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4048030-6", "source": "GND"}], "classification": [{"name": "Provinz", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Provinz Québec (1867-)", "Province du Québec", "Que.", "Kupaik"], "authorized_access_point": "Québec (Provinz)"} 3 -2024-07-16 20:07:39.607792 2024-07-17 06:57:45.89237 f8034dec-e02e-4aad-ba04-1f0a4e4b43ff {"md5": "b1e67b0a8bd351878b5dc0c55b588ceb", "pid": "040703703", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4070370-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040703703", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4070370-8", "source": "GND"}], "variant_access_point": ["Deutschsprachige Länder", "Deutschsprachiger Raum", "Deutschsprachiges Gebiet", "Deutscher Sprachraum"], "authorized_access_point": "Deutsches Sprachgebiet"} 3 -2024-07-16 20:07:38.38504 2024-07-17 06:57:46.987728 9cac9877-b287-43e9-8401-1916017ce263 {"md5": "c4eca0504883a38874905baebdc1445f", "pid": "040717003", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Berner Alpen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4071700-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040717003", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4071700-8", "source": "GND"}], "classification": [{"name": "Pass", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Gemmipass"], "authorized_access_point": "Gemmi"} 4 -2024-07-16 19:08:08.825086 2024-07-17 07:00:38.511574 9c6ebd60-224b-4a7b-8e0e-1b34bf8ff366 {"md5": "01dbcab1c8f82689f38bd325fb80b996", "pid": "199230285", "note": [{"label": ["Homepage - https://www.e-ki-wa.de/gemeinde/kirchen", "Wikipedia - https://de.wikipedia.org/w/index.php?title=Liste_von_Sakralbauten_in_Bochum&oldid=244821551"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bochum"}, {"authorized_access_point": "Bochum-Höntrop"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7787372-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199230285", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7787372-5", "source": "GND"}], "classification": [{"name": "Kirchenbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Versöhnungskirche (Bochum)", "Versöhnungskirche Höntrop (Bochum-Höntrop)", "Evangelische Versöhnungskirche Höntrop (Bochum)", "Preins Feld 8 (Bochum)"], "authorized_access_point": "Versöhnungskirche Höntrop (Bochum)"} 3 -2024-07-16 20:07:41.148052 2024-07-17 06:57:31.59507 9603780e-3c09-46dc-82ec-4c76a8cfc52f {"md5": "10699b16714ec320506838aba35d1b9e", "pid": "040417476", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4041747-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040417476", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4041747-5", "source": "GND"}], "classification": [{"name": "See", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Lac de Neuchâtel", "Neuenburgersee", "Neuchâtel, Lac de"], "authorized_access_point": "Neuenburger See"} 3 -2024-07-16 20:07:42.065873 2024-07-17 06:57:53.474208 8f6c8ed5-bac5-4071-b634-b90d8d7602de {"md5": "5128b4913afe48f4d89443c61bf3e0f3", "pid": "040774244", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4077424-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040774244", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4077424-7", "source": "GND"}], "variant_access_point": ["Commune de Sierre", "Ville de Sierre", "Sierre", "Sierre"], "authorized_access_point": "Siders"} 3 -2024-07-16 20:07:40.517705 2024-07-17 06:57:57.369981 9153d78e-043d-4a87-9708-2269adbf1e6b {"md5": "d0d369ba58a71d82924166ef043945d2", "pid": "040794865", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Mittelamerika"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4079486-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040794865", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4079486-6", "source": "GND"}], "classification": [{"name": "Zentralamerikaner", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Amerika (Zentral)"], "authorized_access_point": "Zentralamerika"} 3 -2024-07-16 19:08:07.444594 2024-07-17 07:00:43.626793 7b8ec1d8-d58f-42fa-9d04-4e7b780cf02a {"md5": "cf6b05df86f26b20c4e1ea11993d784d", "pid": "199305404", "note": [{"label": ["Homepage - https://st-ewaldi-dortmund.de/st-ewaldi-aplerbeck/", "Wikipedia - https://de.wikipedia.org/w/index.php?title=St._Ewaldi_(Aplerbeck)&oldid=242390332"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Dortmund"}, {"authorized_access_point": "Dortmund-Aplerbeck"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7796155-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199305404", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7796155-9", "source": "GND"}], "classification": [{"name": "Kirchenbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Sankt Ewaldi Aplerbeck (Dortmund)", "St. Ewaldi Aplerbeck (Dortmund-Aplerbeck)", "St.-Ewaldi-Kirche (Dortmund)", "St. Ewaldi zu Dortmund-Aplerbeck (Dortmund)", "Zweite St.-Ewaldi-Kirche von 1971 (Dortmund)", "Egbertstraße 15 (Dortmund)"], "authorized_access_point": "St. Ewaldi Aplerbeck (Dortmund)"} 3 -2024-07-16 20:07:40.834864 2024-07-17 07:00:49.990553 fa3476ea-70ea-46b6-8165-8ae55bba7bb0 {"md5": "e114a6a440d6a23eb43288e459c9a57b", "pid": "947297987", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Albanien"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4407133-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)947297987", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4407133-4", "source": "GND"}], "variant_access_point": ["Nordalbanien"], "authorized_access_point": "Albanien (Nord)"} 3 -2024-07-16 20:07:41.754991 2024-07-17 06:57:58.725794 16229022-b6bc-408d-9cac-bd42bb617143 {"md5": "7f11a84bd9f2e16373821d55f2ad7f3b", "pid": "040804003", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4080400-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040804003", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4080400-8", "source": "GND"}], "authorized_access_point": "Biel (Region)"} 3 -2024-07-16 19:08:08.643852 2024-07-17 07:00:39.102117 745e0804-17eb-4e56-a0db-5ed79aae50bd {"md5": "751902d10200848ee819b7ca9d8f5a72", "pid": "199231516", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=St._Jakob_(K%C3%B6ln)&oldid=205660525", "Homepage Altes Köln - https://altes-koeln.de/wiki/St._Jacob"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Köln- Altstadt Süd"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7787520-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199231516", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7787520-5", "source": "GND"}], "classification": [{"name": "Kirchenbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["St. Jakob (Köln- Altstadt Süd)", "St. Jacob (Köln- Altstadt Süd)", "Kirche St. Jacob (Köln- Altstadt Süd)", "Jakobskirche (Köln- Altstadt Süd)", "Pfarrkirche St. Jakob (Köln- Altstadt Süd)", "St. Jakob (Köln) (Köln- Altstadt Süd)"], "authorized_access_point": "Sankt Jakob (Köln- Altstadt Süd)"} 3 -2024-07-16 19:08:07.816109 2024-07-17 07:00:42.411199 b5703ea4-8b95-4399-bcfd-960e5228f92c {"md5": "003adc838738df0737d8a86ab92bd62d", "pid": "199246793", "note": [{"label": ["Homepage - https://www.dasgastlichedorf.com/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Delbrück"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7789352-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199246793", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7789352-9", "source": "GND"}], "classification": [{"name": "Fachwerkbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Ensemble", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Gastliches Dorf (Delbrück)", "Lippstädter Straße 88 (Delbrück)"], "authorized_access_point": "Das gastliche Dorf (Delbrück)"} 3 -2024-07-16 20:07:40.199886 2024-07-17 06:57:02.668811 c7895e6a-6900-40f3-9e0d-835151300d25 {"md5": "a0288e43e31acfc43856c4379f08abc2", "pid": "004911474", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Rheinbund"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2035457-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)004911474", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)2035457-5", "source": "GND"}], "variant_access_point": ["Heiliges Römisches Reich Deutscher Nation", "HRR", "H. R. R.", "Imperium Romanum", "Sacrum Romanum Imperium", "Römisch-Deutsches Reich", "Deutschland (Heiliges Römisches Reich)", "Deutschland (Römisch-Deutsches Reich)", "Deutschland (-1806)", "Altes Reich"], "authorized_access_point": "Heiliges Römisches Reich"} 3 -2024-07-16 20:06:42.827196 2024-07-17 06:57:05.535231 a67677fe-b202-46a5-b366-8aeae9cfbf93 {"md5": "f4c12e9b440da04ef9a4bdd92b027c50", "pid": "040000222", "note": [{"label": ["Homepage - https://www.ag.ch"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4000022-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040000222", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4000022-9", "source": "GND"}], "classification": [{"name": "Aargauer", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}, {"name": "Kanton", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Kanton Aargau", "Argovia", "Argovie", "Eidgenössischer Stand Aargau"], "authorized_access_point": "Aargau"} 3 -2024-07-16 20:06:39.553022 2024-07-17 06:57:05.805732 ef1d8da0-f310-40ae-8a00-841a7bd03587 {"md5": "e9036bb808131a0dcac342af00fdef23", "pid": "040006956", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4000695-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040006956", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4000695-5", "source": "GND"}], "classification": [{"name": "Afrikaner", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "authorized_access_point": "Afrika"} 3 -2024-07-16 20:07:34.175076 2024-07-17 06:57:06.141422 d329016d-df96-4f35-8830-cff5b31ea25c {"md5": "8e1187852c348e4a0b37545059b95b33", "pid": "040010287", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4001028-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040010287", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4001028-4", "source": "GND"}], "classification": [{"name": "Albaner", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Albania", "Albanie", "Albanisches Königreich", "Fürstentum Albanien", "Principata Shqipëri", "Albanskaja Narodnaja Respublika", "Arnavutluk", "Königreich Albanien", "Mbretëria Shqiptare (1928-1939)", "Mbretnija Shqiptare", "NRA", "People's Socialist Republic of Albania", "PSR of Albania", "Regno Albanese", "Republic of Albania", "Republika e Shqipërise", "Republika e Shqipërisë", "Republika Popullore e Shqipërisë", "Republika Popullore Socialiste e Shqipërisë", "RP d'Albanie", "RP të Shqipërisë", "Shqipëria", "Sozialistische Volksrepublik Albanien", "SVR Albanien", "Volksrepublik Albanien"], "authorized_access_point": "Albanien"} 3 -2024-07-16 20:06:49.13354 2024-07-17 06:57:06.440503 6da6f891-44ea-47a1-a7b1-c95140103b7e {"md5": "7dff6d6af594198bae77b889f82f53b2", "pid": "040011798", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4001179-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040011798", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4001179-3", "source": "GND"}], "classification": [{"name": "Staat", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Algerier", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Algérie", "Algeria", "République Algérienne Démocratique et Populaire", "al- Ǧumhūrīya al-Ǧazā'irīya ad-Dīmūqraṭīya aš-Ša'bīya", "Alžirskaja Narodnaja Demokratičeskaja Respublika", "République algérienne démocratique et populaire", "Gouvernement Général de l'Algérie", "Gouvernement Général d'Algérie", "Gouvernement Général Civil de l'Algérie", "Gouvernement de l'Algérie", "Algerien (Gouvernement Général)", "Algérie (Gouvernement Général)", "al- Ǧazā'ir (Daula)"], "authorized_access_point": "Algerien"} 3 -2024-07-16 20:06:52.517838 2024-07-17 06:57:06.682535 ff511a6f-d1fc-4142-9523-7a9c5de90754 {"md5": "d8c5d5046ecacd618ddc3134762b0ae2", "pid": "040013286", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Alpenländer"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4001328-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040013286", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4001328-5", "source": "GND"}], "classification": [{"name": "Hochgebirge", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Alpenraum"], "authorized_access_point": "Alpen"} 3 -2024-07-16 20:07:05.579759 2024-07-17 06:57:06.973448 c62c043a-6ccb-469f-be46-13c809d2609a {"md5": "93f62837499b4cdbe23767fd295283b5", "pid": "040016269", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4001626-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040016269", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4001626-2", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Rio de Orellana"], "authorized_access_point": "Amazonas"} 3 -2024-07-16 20:07:11.549608 2024-07-17 06:57:07.767555 75065f9c-055b-4ef9-a9bb-c1b56d57e68c {"md5": "4ded5f1c35d742a2879c4b7f3fa94d59", "pid": "040022935", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Westindien"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4002293-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040022935", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4002293-6", "source": "GND"}], "classification": [{"name": "Archipel", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Antillianer", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "authorized_access_point": "Antillen"} 3 -2024-07-16 20:06:38.491828 2024-07-17 06:57:08.082292 17bc9544-e4b8-4704-a04c-00954dfcdfb2 {"md5": "9eb79bfc08118c82aef089397df455ff", "pid": "040023869", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4002386-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040023869", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4002386-2", "source": "GND"}], "classification": [{"name": "Region", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Tal", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Autonome Region Aostatal", "Région Autonome Vallée d'Aoste", "Regione Valle d'Aosta", "Region Aostatal", "Region Valle d'Aosta", "Région Autonome de La Vallée d'Aoste", "Val d'Aoste", "Valle d'Aosta", "Vallée d'Aoste", "Regione Autonoma Valle d'Aosta", "Région Vallée d'Aoste", "Regione autonoma valle'Aosta", "Région Autonome du Val d'Aoste", "Région autonome vallée d'Aoste", "Regione Autonoma della Valle d'Aosta", "Regione Valdostana"], "authorized_access_point": "Aostatal"} 3 -2024-07-16 19:08:19.378123 2024-07-17 06:57:08.356174 18b2e46c-9d8b-4739-b290-7b2f6e2c1e54 {"md5": "aca5cdb06aba982d27cadeff0a731c9e", "pid": "040024024", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=243938940"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Apenrade"}], "related": [{"authorized_access_point": "Amt Sønderjylland"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4002402-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040024024", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4002402-7", "source": "GND"}], "classification": [{"name": "Amt", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Amt Apenrade", "Amt Abenraa", "Apenrade Amt", "Abenraa Amt", "Amt Abenra", "Åbenrå Amt", "Åbenrå (Amt)", "Abenraa (Amt)", "Apenrade (Amt)"], "authorized_access_point": "Amt Åbenrå"} 3 -2024-07-16 20:07:03.081376 2024-07-17 06:57:08.636339 066c0326-db99-4563-966a-cf6d3ffb0e43 {"md5": "03410cc73f50b9d413fec8db2bd0f69d", "pid": "040032175", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4003217-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040032175", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4003217-6", "source": "GND"}], "classification": [{"name": "Asiaten", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "authorized_access_point": "Asien"} 3 -2024-07-16 20:07:18.712207 2024-07-17 06:57:08.879258 646d2f60-34c7-4f96-8f1d-fd458474e603 {"md5": "777448ad4b948845cf9b11d7735fcdd4", "pid": "04003366X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4003366-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04003366X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4003366-1", "source": "GND"}], "variant_access_point": ["Staat Athen", "Staat Attika", "Athens", "Athenès", "Athenai", "Athinä", "Athina", "Athēna", "Atene", "Āṯīnā", "Atina (Athen)", "Athēnai", "Athenae"], "authorized_access_point": "Athen"} 3 -2024-07-16 20:07:19.599522 2024-07-17 06:57:09.168718 0c0fc1c8-fa36-4ad6-af0d-18dca2a3a1f3 {"md5": "96d7bfe4a8115988d82bbdf181e5afdb", "pid": "040039005", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4003900-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040039005", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4003900-6", "source": "GND"}], "classification": [{"name": "Australier", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}, {"name": "Aborigines", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Neuholland (Australien)", "Australia", "Commonwealth of Australia", "Australischer Bund", "Australie"], "authorized_access_point": "Australien"} 3 -2024-07-16 20:07:37.60519 2024-07-17 06:57:09.46904 fb676974-dc9f-45a4-afc8-6228bca97a97 {"md5": "a476b5f772113a1420ed1bf8bb0e67d6", "pid": "040046176", "note": [{"label": ["Homepage - https://www.bs.ch"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4004617-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040046176", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4004617-5", "source": "GND"}], "variant_access_point": ["Bâle", "Basilea", "Basle", "Stadt Basel", "Augusta Munatianae", "Basilia", "Bassel", "Athenae Helveticorum", "Colonia Munatianae", "Colonia Munatiana", "Basilea Rauracorum", "Augusta Munatiana", "Basilea Helvetiorum", "Augusta Rauracorum", "Colonia Planciana", "Athena Helveticorum", "Athena Rauracorum", "B le"], "authorized_access_point": "Basel"} 3 -2024-07-16 20:06:41.224221 2024-07-17 06:57:10.312751 ec1ad2ff-2fa9-46a4-a943-11d11ddbec02 {"md5": "e3670fb5a5bd143c73f95c1346a13109", "pid": "040054063", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Niederlande (Süd)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4005406-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040054063", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4005406-8", "source": "GND"}], "classification": [{"name": "Belgier", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Besetzte Gebiete Belgiens", "Okkupierte Gebiete Belgiens", "Bezette Streken van België", "Territoire Belge Occupé", "Belgique", "België", "Royaume de Belgique", "Koninkrijk België", "Belgium", "Kingdom of Belgium", "Reino de Belgica", "Belgica"], "authorized_access_point": "Belgien"} 3 -2024-07-16 19:08:19.309941 2024-07-17 06:57:10.591608 0f66c209-0e1d-422e-8731-b1c89c456f9f {"md5": "b14c5f79df1c609a0da98bf2f48289d0", "pid": "040055744", "note": [{"label": ["Homepage - http://www.gemeinde.berchtesgaden.de/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4005574-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040055744", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4005574-7", "source": "GND"}], "variant_access_point": ["Markt Berchtesgaden"], "authorized_access_point": "Berchtesgaden"} 3 -2024-07-16 20:07:23.038206 2024-07-17 06:57:10.884607 a638ec3d-721e-4605-a4dc-01ff080d00d9 {"md5": "e298b516f2368b74e9a98d4905441d20", "pid": "040057623", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4005762-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040057623", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4005762-8", "source": "GND"}], "classification": [{"name": "Berner", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Berne", "Berne", "Berna", "Stadt Bern", "Bärn", "Arctopolis", "Berna Helvetiorum", "Einwohnergemeinde Bern", "Gemeinde Bern", "Berne", "Berna"], "authorized_access_point": "Bern"} 3 -2024-07-16 20:07:38.993016 2024-07-17 06:57:12.133892 5e030694-be39-4fce-8bb3-839f37adcc16 {"md5": "9aa4b4e8d87e52c78a73b7b50c469a5d", "pid": "04008003X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Vereinigtes Königreich von Portugal, Brasilien und den Algarven"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4008003-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04008003X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4008003-1", "source": "GND"}], "classification": [{"name": "Brasilianer", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Brasil", "Brazil", "Imperio do Brazil", "République Fédérative du Brésil", "Federative Republic of Brazil", "República dos Estados Unidos do Brasil", "Estados Unidos do Brasil", "República Federal do Brasil", "Föderative Republik Brasilien", "República Federativa do Brasil", "Brésil", "Imperio do Brasil", "République des Etats-Unis du Brésil", "Brazilia", "Vereinigtes Königreich von Portugal, Brasilien und den Algarven"], "authorized_access_point": "Brasilien"} 3 -2024-07-16 20:06:54.400098 2024-07-17 06:57:12.444909 e979e90d-f92b-4018-b3af-a2922017546a {"md5": "2e2cc32907f417fad93a41b323b5817d", "pid": "040092569", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4009256-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040092569", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4009256-2", "source": "GND"}], "variant_access_point": ["Oströmisches Reich", "Reich Byzanz", "Imperium Byzantium", "Imperium Byzantinum", "Ostrom", "Rhomaioi", "Romäer"], "authorized_access_point": "Byzantinisches Reich"} 3 -2024-07-16 19:08:19.217744 2024-07-17 06:57:12.709225 9eb0748a-d80e-41bc-97ed-528c3c37748e {"md5": "b04801837b60ba8a68a19f36ed54dd68", "pid": "04009300X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Peru"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4009300-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04009300X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4009300-1", "source": "GND"}], "classification": [{"name": "Departement", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Cajamarca (Departamento)", "Cajamarca (Dep.)", "Departamento de Cajamarca"], "authorized_access_point": "Departement Cajamarca"} 3 -2024-07-16 20:07:15.622685 2024-07-17 06:57:13.221659 b8e0431d-73ed-4556-9a59-08758b49fcf5 {"md5": "6f2bf75fe70f42521f77ae7754c3a8ef", "pid": "040099296", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4009929-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040099296", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4009929-5", "source": "GND"}], "classification": [{"name": "Chilenen", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Königreich Chile", "República de Chile", "Republik Chile"], "authorized_access_point": "Chile"} 3 -2024-07-16 20:06:58.647127 2024-07-17 06:57:14.392345 10ca4222-d574-49ab-9ea3-55f51185d3e1 {"md5": "0f0db0445a40a62731a10957201a2e6f", "pid": "040144267", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Côte d'Ivoire (Colonie)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4014426-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040144267", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4014426-4", "source": "GND"}], "classification": [{"name": "Ivorer", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Côte d'Ivoire", "République de Côte d'Ivoire", "Ivory Coast", "République de la Côte d'Ivoire"], "authorized_access_point": "Elfenbeinküste"} 3 -2024-07-16 20:06:44.407771 2024-07-17 06:57:14.938671 e1402819-e558-42a2-b79d-50ab718de46f {"md5": "d927303890ebfb5c23d1812e611d8912", "pid": "040147703", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Großbritannien"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4014770-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040147703", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4014770-8", "source": "GND"}], "classification": [{"name": "Engländer", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Angleterre", "Kingdom of England", "Engeland", "Inghilterra", "Inglaterra"], "authorized_access_point": "England"} 3 -2024-07-16 20:06:46.300427 2024-07-17 06:57:15.202554 8b3c63a3-5892-447e-bd0f-1ed628a75953 {"md5": "52941a41a2d06425fd81e8994bb68835", "pid": "040149544", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Low-income Countries"}, {"authorized_access_point": "Blockfreie Staaten"}, {"authorized_access_point": "Schwellenländer"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4014954-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040149544", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4014954-7", "source": "GND"}], "variant_access_point": ["Dritte Welt", "Unterentwickelte Länder", "Entwicklungsland", "Less developed Countries", "LDC", "Global South (Entwicklungsländer)", "Globaler Süden (Entwicklungsländer)"], "authorized_access_point": "Entwicklungsländer"} 3 -2024-07-16 20:07:22.103578 2024-07-17 06:57:17.206732 7d9ce8df-369d-492a-9863-91a65c654356 {"md5": "f38a0cf1978f6fff0f524f35972a62ae", "pid": "040201376", "note": [{"label": ["Homepage - https://www.geneve.ch"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4020137-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040201376", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4020137-5", "source": "GND"}], "variant_access_point": ["Genève", "Genava", "Ginevra", "Geneva", "Genevra", "Ĝenevo", "Ženeva", "Ǧīnīf", "Ginebra", "Aurelia Allobrogum", "Ville de Genève", "Aurelianae Allobrogum", "Gebenna", "Genevensis urbs", "Augusta Allobrogum", "Colonia Allobrogum", "Allobrogum colonia", "Genève", "Geneva", "Ginevra", "Coloniae Allobrogum"], "authorized_access_point": "Genf"} 3 -2024-07-16 20:07:09.975515 2024-07-17 06:57:17.603037 df8a988c-9d4c-407e-89cd-cac5ccbd542e {"md5": "aee2c04b042b483f58a0e1cdf6990df9", "pid": "040201384", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4020138-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040201384", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4020138-7", "source": "GND"}], "classification": [{"name": "Kanton", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Canton de Genève", "Cantone di Ginevra", "Canton of Geneva", "Hochstift Genf", "Genf (Kanton)", "République et Canton de Genève", "Etat de Genève", "Repubblica e Cantone di Ginevra", "Republik und Kanton Genf", "Republic and Canton of Geneva", "Conseil Souverain (Kanton Genf)", "Genève (Canton)", "Genève (République et Canton)"], "authorized_access_point": "Kanton Genf"} 3 -2024-07-16 20:07:21.479656 2024-07-17 06:57:21.376636 abc339e3-5d5a-4081-8449-a4d802a3b188 {"md5": "b4046f97a2e021742bd21a650d097c10", "pid": "040287505", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Jordanien"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Transjordanien (Protektorat)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4028750-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040287505", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4028750-6", "source": "GND"}], "classification": [{"name": "Jordanier", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Haschemitisches Königreich Jordanien", "Hashemite Kingdom of Jordan", "al- Urdunn", "al- Mamlaka al-Urdunnīya al-Hāšimīya", "Al-Urdunn", "Al-Mamlaka al-Urdunnijja al-Haschimijja", "Haschemitisches Königreich Transjordanien", "Hashemite Kingdom of Transjordan"], "authorized_access_point": "Jordanien"} 3 -2024-07-16 20:06:56.098779 2024-07-17 06:57:23.877903 37901c27-423e-4e4e-bba5-bba5a6df226d {"md5": "98949d879689b7ff20fece70acfe28f8", "pid": "040300900", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4030090-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040300900", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4030090-0", "source": "GND"}], "classification": [{"name": "Hochgebirge", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Kavkaz", "Kawkas"], "authorized_access_point": "Kaukasus"} 3 -2024-07-16 20:07:03.707009 2024-07-17 06:57:25.327451 76f12bbe-1037-4924-aa74-5b302ed9acd9 {"md5": "9705df33685d7c831253ae811f2da5db", "pid": "04033340X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4033340-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04033340X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4033340-1", "source": "GND"}], "classification": [{"name": "Insel", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Kubaner", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["República de Cuba", "Republik Kuba", "Respublika Kuba", "Cuba", "Republica de Cuba", "Republik Cuba"], "authorized_access_point": "Kuba"} 3 -2024-07-16 19:08:18.475906 2024-07-17 06:57:25.893589 7d6264d9-54e1-4de0-8db8-2343e26fb751 {"md5": "7ff6d1df80b228a847d210073be54351", "pid": "040357422", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4035742-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040357422", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4035742-9", "source": "GND"}], "variant_access_point": ["Ciudad de Los Reyes"], "authorized_access_point": "Lima"} 3 -2024-07-16 19:08:18.407373 2024-07-17 06:57:26.67037 6aa7e12a-30fc-4abe-b082-e0854a7d468a {"md5": "592384b7d8076b0256e4ce188d9499df", "pid": "040368114", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Bernkastel-Kues"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4036811-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040368114", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4036811-7", "source": "GND"}], "variant_access_point": ["Machern (Bernkastel-Kues)"], "authorized_access_point": "Bernkastel-Kues-Machern"} 3 -2024-07-16 19:07:46.552664 2024-07-17 06:58:49.181179 19870669-78b2-4f68-a4a6-e0e508f46559 {"md5": "613f678b592fae0a8544d4178309827d", "pid": "1060502798", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060502798", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060502798", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060502798", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Malschbach (Fluss)"} 3 -2024-07-16 20:07:07.55818 2024-07-17 06:57:28.087719 9d093795-816d-4ea5-947e-008cbf952b46 {"md5": "7cb4a9cbc887bc3114fdb23f651ad4a2", "pid": "040379922", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Walliser Alpen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4037992-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040379922", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4037992-9", "source": "GND"}], "classification": [{"name": "Berg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Monte Cervino", "Cervin"], "authorized_access_point": "Matterhorn"} 3 -2024-07-16 20:07:29.881769 2024-07-17 06:57:31.869163 792ca86a-46f1-4f36-ad44-0fcd1ca32463 {"md5": "c6bc9d593fdeb74f1d99e4eeaa2e7786", "pid": "040419150", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Kolonie Neuseeland"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4041915-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040419150", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4041915-0", "source": "GND"}], "classification": [{"name": "Maori", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}, {"name": "Neuseeländer", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Aotearoa", "Dominion of New Zealand", "New Zealand (Dominion)", "Nouvelle-Zélande", "Aetearo", "NZ", "New Zealand"], "authorized_access_point": "Neuseeland"} 3 -2024-07-16 20:07:07.889494 2024-07-17 06:57:33.204665 41be12f5-d138-4c88-afc7-e1403ec0882c {"md5": "c6fbc0de943409543d5f09e8b37d5d34", "pid": "040432718", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Österreich (Gebiet unter Alliierter Besatzung, Britische Zone)"}, {"authorized_access_point": "Österreich-Ungarn"}, {"authorized_access_point": "Erzherzogtum Österreich"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4043271-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040432718", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4043271-3", "source": "GND"}], "classification": [{"name": "Österreicher", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Österreich (Zweite Republik)", "Österreich (Erste Republik)", "Deutschösterreich", "Land Österreich", "Die im Reichsrat Vertretenen Königreiche und Länder (Österreich)", "Zisleithanien", "Cisleithanien", "Habsburgermonarchie", "Habsburgerreich", "Ostmark (Österreich)", "Austrya", "Austrja", "Republik Österreich", "Bundesstaat Österreich", "Staat Deutschösterreich", "Kaisertum Österreich", "Kaiserthum Österreich", "Österreichische Monarchie", "Austria", "Autriche", "Ostmark"], "authorized_access_point": "Österreich"} 3 -2024-07-16 20:07:23.323811 2024-07-17 06:57:34.546635 9f263e7f-bdab-427d-9167-b66663d81238 {"md5": "eb7a77c689ff356844feb37357626568", "pid": "040464962", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Polen-Litauen"}, {"authorized_access_point": "Kongresspolen"}, {"authorized_access_point": "Westgalizien"}, {"authorized_access_point": "Staat Krakau"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4046496-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040464962", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4046496-9", "source": "GND"}], "variant_access_point": ["Generalgouvernement Polen", "Polska", "Rzeczpospolita Polska", "Polska Rzeczpospolita Ludowa", "Poland", "Pologne", "République Polonaise", "Generalne Gubernatorstwo w Polsce", "Polish People's Republic", "Polska Rzeczpospolita (Polen)", "PRL", "RP", "Polen (Generalgouvernement)", "Polska (Generalgouvernement)", "Besetzte Polnische Gebiete", "Besetztes Gebiet in Polen", "Okupowane Polskie Obszary", "Obszary Okupowane w Polsce", "Volksrepublik Polen", "Polska Rosyjska", "Republic Polen", "Respublika Pol'ša", "Pol'skaja Narodnaja Respublika", "République de Pologne", "Polen Links der Weichsel", "Polska po Lewej Stronie Wisły", "Lenkija", "Polija", "Gubernija Carstva Pol'skago", "Republik Polen"], "authorized_access_point": "Polen"} 3 -2024-07-16 19:08:17.320672 2024-07-17 06:57:45.353932 c73ebcdf-4318-43c5-8bfe-45999358394d {"md5": "35d7edea9b806de759ee05b2f9740b20", "pid": "040693309", "note": [{"label": ["Homepage - https://www.bernkastel-kues.de"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Bernkastel"}, {"authorized_access_point": "Kues"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4069330-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040693309", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4069330-2", "source": "GND"}], "variant_access_point": ["Bernkastel-Cues", "Berncastel-Cues", "Stadt Bernkastel-Kues", "Stadtgemeinde Bernkastel-Kues", "Verbandsgemeinde Bernkastel-Kues"], "authorized_access_point": "Bernkastel-Kues"} 3 -2024-07-16 20:06:59.238669 2024-07-17 06:57:39.115851 02b8d4b8-ee85-426a-908d-74df0ae4d110 {"md5": "fa6f8d32d5ea0c72a7c659007da58496", "pid": "040551938", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Mittelmeer"}], "related": [{"authorized_access_point": "Königreich Sizilien"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4055193-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040551938", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4055193-3", "source": "GND"}], "classification": [{"name": "Insel", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Sizilianer", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Autonome Region Sizilien", "Sicilien", "Sizilien (Presidenza)", "Presidenza (Sizilien)", "Sicilia (Estado)", "Sicilia (Stato)", "Staat Sizilien", "Staat Sicilië", "Staat Sicilien", "Reino de las Dos Sicilias", "Königreich beider Sizilien", "Regno delle Due Sicilie", "Koninkrijk der beide Siciliën", "Sicilia", "Regione Siciliana", "Königreich Sizilien", "Sicily", "Presidenza della Regione Siciliana", "Sicilian Regional Gonvernment", "Sicile", "Presidenza (Sicilia)", "Sicilian Region", "Regione Sicilia"], "authorized_access_point": "Sizilien"} 3 -2024-07-16 20:06:49.413218 2024-07-17 06:57:39.931617 d9be1dd3-6cd9-47a2-8949-bc6421e9585f {"md5": "e50b26719726ed24a5e900db861fe581", "pid": "040559645", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Iberische Halbinsel"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4055964-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040559645", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4055964-6", "source": "GND"}], "classification": [{"name": "Spanier", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Isbāniyā", "Spain", "Espagne", "Estado Español", "España", "Espanja", "Hispania"], "authorized_access_point": "Spanien"} 3 -2024-07-16 19:08:17.835357 2024-07-17 06:57:41.072189 8a8267c1-2eab-499a-b82a-cb361a506156 {"md5": "ad9c68305d3fbd18c8f2cdb1ec263f03", "pid": "040594084", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4059408-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040594084", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4059408-7", "source": "GND"}], "authorized_access_point": "Teltow"} 3 -2024-07-16 20:07:15.030589 2024-07-17 06:57:42.413281 bbeb41bf-1d03-4861-9eb9-11e52ef8341a {"md5": "a111faba05ba69d2b136197b304d347f", "pid": "040624048", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Rom"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4062404-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040624048", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4062404-3", "source": "GND"}], "variant_access_point": ["Vatikanstaat", "Rom (Vatikan)", "Vaticanus", "Vatican City", "Cité du Vatican", "Civitas Vaticana", "Governatorato Vaticano", "Governatorato (Città del Vaticano)", "Città del Vaticano (Governo Pontificio)", "Governo Pontificio (Città del Vaticano)", "Città del Vaticano (Zentralkomitee)", "Zentralkomitee (Città del Vaticano)", "Città del Vaticano", "Vatikan", "Vaticano", "Stato della Città del Vaticano", "Vatican", "Vatican City State", "Vatican State", "Etat de la Cité du Vatican", "Staat der Vatikanstadt", "Città del Vaticano (Staat)", "Cité du Vatican (Etat)", "Vatikanstadt (Staat)", "Vatican (Etat)", "Vaticano (Stato)", "Vatikan (Staat)"], "authorized_access_point": "Vatikanstadt"} 3 -2024-07-16 19:08:16.321465 2024-07-17 06:58:02.200186 3477e1c5-f4df-492c-92e2-5c095ce1d9b5 {"md5": "73f5926edfa865ab34c9072a0d9a5fc6", "pid": "040957977", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4095797-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040957977", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4095797-4", "source": "GND"}], "variant_access_point": ["Scheidegg-Hummel"], "authorized_access_point": "Hummel (Scheidegg, Lindau)"} 3 -2024-07-16 20:07:13.20502 2024-07-17 06:57:51.308832 489a76da-2723-4e83-9c22-5806ae0ed47c {"md5": "1728860a58043d9d2b88a27d19fa8b0c", "pid": "04075720X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Türkei"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4075720-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04075720X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4075720-1", "source": "GND"}], "variant_access_point": ["Ottomanisches Reich", "Empire Ottoman", "Daulat-i ʿAlīya-i ʿUṯmānīya", "Devlet-i Aliye Osmaniye", "Hohe Pforte", "Staat Pforte", "Bâb-ı Âlî", "Sublime Porte", "Bâb-ı Âsafî", "Hükumet Kapısı", "Vysokaja Porta", "Blistatelʾnaja Porta", "Paşa Kapısı", "Ottomannische Pforte", "Othōmanikē Autokratoria", "Osmanlı İmperatorluğu"], "authorized_access_point": "Osmanisches Reich"} 3 -2024-07-16 20:07:38.000429 2024-07-17 06:57:51.580961 2bbcd0ec-6a7d-4ef2-ac51-54d591c73295 {"md5": "554b1e1c8f1f5619d222055f96828e31", "pid": "040757277", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Pazifischer Raum"}, {"authorized_access_point": "Ferner Osten"}], "related": [{"authorized_access_point": "Asiatisch-Pazifischer Raum"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4075727-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040757277", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4075727-4", "source": "GND"}], "variant_access_point": ["Asien (Ost)"], "authorized_access_point": "Ostasien"} 3 -2024-07-16 20:07:06.330603 2024-07-17 06:57:54.557902 d77c95c4-1d43-4add-942c-cfc092d8d749 {"md5": "a551af5a7b77ad4b2fa8b46a9bbecfa7", "pid": "040780295", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Korea"}], "related": [{"authorized_access_point": "Korea"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4078029-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040780295", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4078029-6", "source": "GND"}], "classification": [{"name": "Südkoreaner", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}, {"name": "Südkoreanerin", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Korea (Süd)", "Dae han min gug", "Republik Korea", "Taehan-Min'guk", "Daehan-Min'guk", "Han'guk (Südkorea)", "Han-kook", "Republic of Korea", "ROK", "Kankoku", "République de Corée", "South Korea", "República de Corea", "한국", "韓國", "大韓民國", "대한민국"], "authorized_access_point": "Südkorea"} 3 -2024-07-16 19:08:16.993384 2024-07-17 06:57:57.87361 336c5519-a538-40f1-a3c6-585e7578e2d6 {"md5": "14e02759f12471dded2070063d1aba9f", "pid": "040794903", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Schweiz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4079490-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040794903", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4079490-8", "source": "GND"}], "variant_access_point": ["Zentralschweiz", "Fünf Orte"], "authorized_access_point": "Innerschweiz"} 3 -2024-07-16 19:08:16.818105 2024-07-17 06:57:58.98155 4ce171cf-2264-4da0-9540-b5bca5f86339 {"md5": "1133369b2536acedf84edb536b860087", "pid": "040805905", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Burk_(Forchheim)&oldid=237498787"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Forchheim (Oberfr.)"}, {"authorized_access_point": "Burk (Landkreis Forchheim)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4080590-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040805905", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4080590-6", "source": "GND"}], "variant_access_point": ["Forchheim (Oberfr.)- Burk", "Burk (Forchheim-Burk)"], "authorized_access_point": "Forchheim-Burk"} 3 -2024-07-16 20:06:59.83009 2024-07-17 06:58:00.156522 4b57625a-57de-4ea8-9158-92cbdc382690 {"md5": "9f0f00f126489f0b3b0a32bd47442015", "pid": "040912000", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4091200-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040912000", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4091200-0", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["LeDoubs", "Le Doubs", "Doubs, Le"], "authorized_access_point": "Doubs (Fluss)"} 3 -2024-07-16 19:08:15.539956 2024-07-17 06:58:06.166852 ce7b69b5-dc93-4e9d-86cc-a4e44bc8513f {"md5": "0522daf634596ef86ee1985b0f4ebaae", "pid": "041112504", "note": [{"label": ["Homepage - http://www.landkreisleipzig.de"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Kreis Leipzig-Land"}, {"authorized_access_point": "Muldentalkreis"}, {"authorized_access_point": "Landkreis Leipziger Land"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4111250-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041112504", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4111250-7", "source": "GND"}], "classification": [{"name": "Landkreis", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Leipzig (Kreis)", "Leipzig (Landkreis)"], "authorized_access_point": "Landkreis Leipzig"} 3 -2024-07-16 19:08:15.458865 2024-07-17 06:58:06.773564 5a72e5f8-6352-4c6b-bcd1-3bff6b5a7129 {"md5": "e8738909c8b86b75adba99e986d947f2", "pid": "041154282", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4115428-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041154282", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4115428-9", "source": "GND"}], "classification": [{"name": "Becken", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Obernil-Becken"} 3 -2024-07-16 19:08:15.369894 2024-07-17 06:58:07.013219 31970e47-e244-4bc2-a678-dd611cb169d9 {"md5": "425774f792fd162a2ae7bd3386ea8644", "pid": "041167163", "note": [{"label": ["Homepage - https://www.ochsenhausen.de/", "Wikipedia - https://de.wikipedia.org/w/index.php?title=Ochsenhausen&oldid=246489625"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4116716-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041167163", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4116716-8", "source": "GND"}], "variant_access_point": ["Stadt Ochsenhausen"], "authorized_access_point": "Ochsenhausen"} 3 -2024-07-16 19:08:14.708308 2024-07-17 06:58:11.420662 83ad7add-214f-434c-a253-7dcd190a85da {"md5": "066678c3463a0d26c7aa493a7ae17caf", "pid": "042244943", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=236364456"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4224494-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042244943", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4224494-8", "source": "GND"}], "classification": [{"name": "Oblast", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Amur (Oblast)", "Amur-Gebiet (Oblast)", "Amurskaja oblastʹ", "Gebiet Amur"], "authorized_access_point": "Oblast Amur"} 3 -2024-07-16 19:08:14.612682 2024-07-17 06:58:11.702754 07e0c7e7-70c6-4a8f-80f8-9312e5061d3a {"md5": "bf80c55b95181986569006ec82dbf587", "pid": "042260213", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4226021-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042260213", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4226021-8", "source": "GND"}], "variant_access_point": ["Hartford, Connecticut", "Newtown, Conn."], "authorized_access_point": "Hartford, Conn."} 3 -2024-07-16 19:08:14.263681 2024-07-17 06:58:12.920682 d8530b8c-0b52-4876-b54e-6e41f8cb359c {"md5": "076eede2d04716f7a312d4e8af62c6c1", "pid": "042477247", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Heringsdorf (Seebad)"}, {"authorized_access_point": "Dreikaiserbäder-Bansin"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4247724-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042477247", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4247724-4", "source": "GND"}], "variant_access_point": ["Bansin (Heringsdorf, Seebad)"], "authorized_access_point": "Heringsdorf-Bansin"} 3 -2024-07-16 19:08:13.936819 2024-07-17 06:58:14.295814 cca4b647-78fe-41b3-8199-3072030c6c3d {"md5": "472c3c98cd3041c1bfca13bd54b6584a", "pid": "042567874", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/Emscher_Landschaftspark"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Emscher-Gebiet"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4256787-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042567874", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4256787-7", "source": "GND"}], "classification": [{"name": "Landschaftspark", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Emscher-Park", "Emscherpark", "Emscher-Landschaftspark", "Emscher Landschaftspark"], "authorized_access_point": "Emscher Park"} 3 -2024-07-16 19:07:53.616078 2024-07-17 06:58:24.695534 548b3110-fdd9-40f8-b468-fd9e1d5d6c49 {"md5": "b08136e0b2f63a94ea3b408fbdfaca89", "pid": "1024812693", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1024812693", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1024812693", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1024812693", "source": "GND"}], "variant_access_point": ["Groß-Düben", "Dźěwin"], "authorized_access_point": "Groß Düben"} 3 -2024-07-16 19:08:13.147758 2024-07-17 06:58:16.981193 083d68a6-b05e-4055-8e1e-a4c7b45f0309 {"md5": "3ffbe43d16e6ecb3ef0bbbc27d3eda34", "pid": "043151019", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Workum&oldid=237963244"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Súdwest-Fryslân"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4315101-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043151019", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4315101-2", "source": "GND"}], "variant_access_point": ["Warkum", "Vorkjum", "Vorkumas", "Woerkem", "Wörkem", "Súdwest-Fryslân- Workum"], "authorized_access_point": "Workum"} 3 -2024-07-16 19:07:55.5051 2024-07-17 06:58:18.802574 0633afeb-d5d0-4ba9-b43a-75c79a2f5b8f {"md5": "3fbeacb2fadce41c7f1a15ad0576ebd5", "pid": "1001762630", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=243074240"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Kreis Oststernberg"}], "related": [{"authorized_access_point": "Łagów (Woiwodschaft Lebus)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16063071-X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1001762630", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)16063071-X", "source": "GND"}], "authorized_access_point": "Lagow (Kreis Oststernberg)"} 3 -2024-07-16 19:07:55.330878 2024-07-17 06:58:19.321837 35cc13e7-69b1-4a28-ac9f-7351f065a314 {"md5": "2ba5c16576d425cb752535b07a3099cd", "pid": "1008073997", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Breitenfeld_(Leipzig)"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Lindenthal-Breitenfeld"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7723003-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1008073997", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7723003-6", "source": "GND"}], "variant_access_point": ["Breitenfeld (Leipzig)"], "authorized_access_point": "Leipzig-Breitenfeld"} 3 -2024-07-16 19:07:54.972866 2024-07-17 06:58:20.389024 e05aecfa-ec90-488a-8ccb-87915523c4dc {"md5": "7a616dcbbb417028653ccb2cb42be626", "pid": "1010438603", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7737805-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1010438603", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7737805-2", "source": "GND"}], "variant_access_point": ["Dubraucke", "Dubrawka", "Döbern-Eichwege"], "authorized_access_point": "Eichwege"} 3 -2024-07-16 19:07:54.886324 2024-07-17 06:58:20.667927 ed034d4f-bca9-4c94-843b-246ab9f7ef01 {"md5": "e03cba1e440da65afd1775dc46774dd3", "pid": "1011060752", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7742462-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1011060752", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7742462-1", "source": "GND"}], "authorized_access_point": "Henningen (Salzwedel) (Region)"} 3 -2024-07-16 19:07:54.800367 2024-07-17 06:58:20.952209 336c149e-f0b9-4edb-883a-6b1e7f14ca1b {"md5": "5b575e68a220d9a559a2fe8086370f6d", "pid": "1016112106", "note": [{"label": ["Schloss auf einem Felssporn im Oberen Donautal, Wohnplatz historisch"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Landkreis Sigmaringen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7832565-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1016112106", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7832565-1", "source": "GND"}], "classification": [{"name": "Schloss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Beuron-Schloss Werenwag"], "authorized_access_point": "Schloss Werenwag"} 3 -2024-07-16 19:07:53.801373 2024-07-17 06:58:24.141034 1585eae9-9526-425e-adf9-bb09fedfc2e1 {"md5": "5bfdff430ac38607082bce070fc72b56", "pid": "1021113018", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7861847-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1021113018", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7861847-2", "source": "GND"}], "variant_access_point": ["Alksniupiu̜ kraštas"], "authorized_access_point": "Alksniupiai (Region)"} 3 -2024-07-16 19:07:53.713717 2024-07-17 06:58:24.425828 99f5e216-1d30-4d5c-8608-92111a9b1949 {"md5": "b58270fb5a5e4e099a355bf667595793", "pid": "1021396656", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7864312-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1021396656", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7864312-0", "source": "GND"}], "variant_access_point": ["Kalwarja", "Kalvariya", "Kalvarijos", "Calvaria", "Kalvaria", "Kalwaria", "Kalwariya"], "authorized_access_point": "Kalvarija"} 3 -2024-07-16 19:07:52.891357 2024-07-17 06:58:27.2373 c01a19eb-54cf-4054-9ac9-4f9a9ad42445 {"md5": "9b7ac1b51f2cf4749a8cc05f0f0a92e8", "pid": "1036912949", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1036912949", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1036912949", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1036912949", "source": "GND"}], "variant_access_point": ["Tema (Saudi-Arabien)", "Tayma", "Teima", "Taymāʾ"], "authorized_access_point": "Taima (Saudi-Arabien)"} 3 -2024-07-16 19:07:52.060369 2024-07-17 06:58:30.138663 1e81d2fe-a1a5-4537-9767-7a83ed73b43c {"md5": "61a13b5041cc1a270e7822d4c1503d64", "pid": "1053733119", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/Neulandhalle"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Friedrichskoog"}, {"authorized_access_point": "Dieksanderkoog"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1053733119", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1053733119", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1053733119", "source": "GND"}], "classification": [{"name": "Mehrzweckbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Neulandhalle (Dieksanderkoog)", "Neulandhalle (Adolf-Hitler-Koog)"], "authorized_access_point": "Neulandhalle (Friedrichskoog)"} 3 -2024-07-16 19:07:51.641963 2024-07-17 06:58:31.554202 3abf6e13-c318-45f8-a64e-52a315661285 {"md5": "8a77da2c743fd93153863de450343d2d", "pid": "1054442959", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1054442959", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1054442959", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1054442959", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Föhrenbach (Fluss)"} 3 -2024-07-16 19:07:51.431184 2024-07-17 06:58:32.426083 92710919-cf0b-45a2-ade5-8b144201d496 {"md5": "143dd7e25f3a6bcedcc41482a5b928ef", "pid": "1054961824", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Großkochberg"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Uhlstädt-Kirchhasel"}, {"authorized_access_point": "Großkochberg"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1054961824", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1054961824", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1054961824", "source": "GND"}], "authorized_access_point": "Uhlstädt-Kirchhasel- Großkochberg"} 3 -2024-07-16 19:07:51.094642 2024-07-17 06:58:33.589958 3f230c2d-7f76-49a2-87f0-82379ce909a8 {"md5": "bbe981bb7771140d17ba3c6ce90c7120", "pid": "1058041142", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Aachen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058041142", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058041142", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058041142", "source": "GND"}], "classification": [{"name": "Obelisk", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Tranchot-Obelisk (Lousberg)"], "authorized_access_point": "Tranchot-Obelisk (Aachen)"} 3 -2024-07-16 19:07:50.846273 2024-07-17 06:58:34.417856 0046bf5f-ec03-4f4c-9fd2-bb02beed6e5a {"md5": "02b72f17e8a5cee3d347bfc8215e99e9", "pid": "1058460862", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058460862", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058460862", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058460862", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Kayersbeek"} 3 -2024-07-16 19:07:50.013854 2024-07-17 06:58:37.233912 c552fa39-e89c-4056-8116-09d7297b98e3 {"md5": "67a582415ef5adc690350b905f13271c", "pid": "1058651994", "note": [{"label": ["Geonames - http://www.geonames.org/6951331/smallertse-beek.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058651994", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058651994", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058651994", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Smallertse beek"], "authorized_access_point": "Smallertse Beek"} 3 -2024-07-16 19:07:49.217577 2024-07-17 06:58:40.080567 d9d4410b-ccda-4c9d-92f4-576456ca1c63 {"md5": "8683aa75c5109965592b8cc0e13ced53", "pid": "1058899597", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058899597", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058899597", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058899597", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Zuidelijke Horsthoeker beek"], "authorized_access_point": "Zuidelijke Horsthoekerbeek"} 3 -2024-07-16 19:07:48.351221 2024-07-17 06:58:42.840431 38a1f352-2923-41de-92c2-6d5f806bafd9 {"md5": "ed542ad54f7f55ad201911ee23bb9be9", "pid": "1058994743", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058994743", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058994743", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058994743", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Zilverbeek"} 3 -2024-07-16 19:07:48.216786 2024-07-17 06:58:43.700817 48f1546f-2657-4762-b973-0a7e6b4a4fc5 {"md5": "2793dcca53846b71c03dd476c3bcbabd", "pid": "1059250454", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Mook"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1059250454", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1059250454", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1059250454", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Molenbeek (Mook, Fluss)"} 3 -2024-07-16 19:07:47.675117 2024-07-17 06:58:45.506563 82e8de03-6ea4-4c08-82d1-2e5d259234ce {"md5": "8891a3869a40b6966b8a32a54b9e86b2", "pid": "1060087367", "note": [{"label": ["Internet - http://domnick.de/", "Wikipedia - https://de.wikipedia.org/w/index.php?title=Sammlung_Domnick&oldid=245473631"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Nürtingen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060087367", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060087367", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060087367", "source": "GND"}], "classification": [{"name": "Haus", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Haus Domnick (Nürtingen)"} 3 -2024-07-16 19:07:47.506549 2024-07-17 06:58:46.075395 5443b433-78cc-420b-8a98-e0202c0014f8 {"md5": "61e5a77ae617498168c6a35f34485346", "pid": "1060238128", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/%C3%96lbach_(Berkel)"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Vreden"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060238128", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060238128", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060238128", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Ölbach (Vreden, Fluss)"} 3 -2024-07-16 19:07:47.423111 2024-07-17 06:58:46.37903 2d038daa-a9f3-4c3e-80ff-3e7837013339 {"md5": "9e7957bb53d9693d763e0aa9fdb255e9", "pid": "1060401134", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/Park_Babelsberg"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Potsdam"}, {"authorized_access_point": "Potsdam-Babelsberg"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060401134", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060401134", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060401134", "source": "GND"}], "classification": [{"name": "Landschaftsgarten", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Park Babelsberg (Potsdam)"], "authorized_access_point": "Babelsberger Park (Potsdam)"} 3 -2024-07-16 19:07:46.652175 2024-07-17 06:58:48.923958 360ca920-556d-4fe2-8a88-f2ead17bf9a5 {"md5": "12f3ae04456e98c6a903bb986c0980ff", "pid": "1060502682", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060502682", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060502682", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060502682", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Dobrowabach"} 3 -2024-07-16 19:07:46.38239 2024-07-17 06:58:49.700415 3b79c634-daa0-462b-9b70-9bb40132533b {"md5": "0b9d75d7ba390cff2e0efdb8b48ee9e8", "pid": "1060503611", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Vernířovice"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060503611", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060503611", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060503611", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Grundbach (Vernířovice, Fluss)"} 3 -2024-07-16 19:07:45.544948 2024-07-17 06:58:52.560737 3bf26f04-b9d0-44f3-8801-1c0d7180489a {"md5": "fa73a2499cf145b6aeb8bead61ecd565", "pid": "1064601502", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1064601502", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1064601502", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1064601502", "source": "GND"}], "variant_access_point": ["Canal du Midi (Region)"], "authorized_access_point": "Canal du Midi-Gebiet"} 3 -2024-07-16 19:07:45.462195 2024-07-17 06:58:52.844803 dbd26a2f-6f51-4657-913a-4d7608894901 {"md5": "e43b02c02ca77e5d23570857c1c3719c", "pid": "1064714455", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/w/index.php?title=%C5%A0akyna&oldid=1226681026"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1064714455", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1064714455", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1064714455", "source": "GND"}], "classification": [{"name": "Amt", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Amt Šakynos", "Amt Shakina", "Amt Shakinay", "Amt Szakinów"], "authorized_access_point": "Amt Šakyna"} 3 -2024-07-16 19:07:44.884533 2024-07-17 06:58:54.727595 4a08d70c-4050-4bd7-bfde-b6ae82abfe79 {"md5": "7ea864dda6b14d4acfb40d96da7b5dfb", "pid": "1067878831", "note": [{"label": ["Internet - http://www.loire-radweg.org/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Nevers"}, {"authorized_access_point": "Saint-Brevin-les-Pins"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1067878831", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1067878831", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1067878831", "source": "GND"}], "classification": [{"name": "Radwanderweg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["La Loire à Vélo"], "authorized_access_point": "Loire-Radweg"} 3 -2024-07-16 19:07:44.803675 2024-07-17 06:58:55.044657 2023f111-2581-4ab1-be52-aca5fcfbae35 {"md5": "6251414970800690072c3ff9dab46fc7", "pid": "1067883703", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Göbschelwitz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1067883703", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1067883703", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1067883703", "source": "GND"}], "variant_access_point": ["Göbschelwitz (Leipzig)"], "authorized_access_point": "Leipzig-Göbschelwitz"} 3 -2024-07-16 19:07:44.717098 2024-07-17 06:58:55.349215 6f75e986-9964-4394-b6c8-accf2479887d {"md5": "d00a4185e1c65aa088c24c26027b7434", "pid": "1068118490", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/Rheinradweg"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Oberalppass"}, {"authorized_access_point": "Rotterdam"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1068118490", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1068118490", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1068118490", "source": "GND"}], "classification": [{"name": "Radwanderweg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Rhein-Radweg"], "authorized_access_point": "Rheinradweg"} 3 -2024-07-16 19:07:44.094957 2024-07-17 06:58:57.666628 1b8e508b-c29f-4224-adf0-40647246bdf7 {"md5": "9972bd96b9102ab468ea9b24cefaa3b2", "pid": "1073724549", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Baden (Niederösterreich)"}, {"authorized_access_point": "Schloss Weilburg (Baden, Niederösterreich)"}], "related": [{"authorized_access_point": "Ehemaliges Frauenbad (Baden, Niederösterreich)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1073724549", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1073724549", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1073724549", "source": "GND"}], "classification": [{"name": "Gruppendarstellung", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Schloss Weilburg (Baden, Niederösterreich) (Flora und Zephir)"], "authorized_access_point": "Schloss Weilburg (Baden, Niederösterreich) (Flora und Zephyr mit einem Kinde)"} 3 -2024-07-16 19:07:43.553152 2024-07-17 06:58:59.428416 70015cba-6ab7-4b9f-8139-7124ea471d64 {"md5": "f79ce1e86cdca7b9b35f6e62b565c00e", "pid": "1075220467", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Schatzhofen&oldid=237597866"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Furth-Schatzhofen"}, {"authorized_access_point": "Furth (Landkreis Landshut)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1075220467", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1075220467", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1075220467", "source": "GND"}], "classification": [{"name": "Kirchenbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["St. Michael (Furth, Landkreis Landshut)", "Sankt Michael (Furth-Schatzhofen)", "St. Michael (Furth-Schatzhofen)", "Sankt Michael Schatzhofen"], "authorized_access_point": "Sankt Michael (Furth, Landkreis Landshut)"} 3 -2024-07-16 19:07:42.148761 2024-07-17 06:59:04.477272 ed33635f-cd5b-449e-ae92-bdbef2bb739a {"md5": "42b4d675e9bb7c56c46c1dcceb66f7d6", "pid": "1081838396", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Trachselwald"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081838396", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1081838396", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1081838396", "source": "GND"}], "classification": [{"name": "Schloss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Erziehungsheim", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Schloss Trachselwald"} 3 -2024-07-16 19:07:42.094154 2024-07-17 06:59:04.794405 893723e5-a9fc-4145-bfe1-d13227c16b5a {"md5": "9d426d00d439348f45e88833f9c94b7d", "pid": "1081838507", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Hindelbank"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081838507", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1081838507", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1081838507", "source": "GND"}], "classification": [{"name": "Schloss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Armenhaus", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Gefängnisbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Gebäude der Anstalten Hindelbank (Hindelbank)", "Gebäude der Zwangsanstalt für Weiber (Hindelbank)"], "authorized_access_point": "Schloss Hindelbank (Hindelbank)"} 3 -2024-07-16 19:07:41.497992 2024-07-17 06:59:06.713509 76addcdc-20be-4e06-b0a2-51bce41ec067 {"md5": "2c045522ceba1f3215f55346bf2980e0", "pid": "1082001430", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Kalkutta"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1082001430", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1082001430", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1082001430", "source": "GND"}], "classification": [{"name": "Stadion", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Kricketplatz", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Eden Gardens (Kalkutta)", "Rañji Sṭeḍiẏāma (Kalkutta)", "Īḍena Gārḍensa (Kalkutta)"], "authorized_access_point": "Ranji Stadium (Kalkutta)"} 3 -2024-07-16 19:07:40.910106 2024-07-17 06:59:08.714866 cdb987c1-b98f-4be1-9c1b-b2ad81082685 {"md5": "b56db1509c76b7e1a3073e2b926e4970", "pid": "1097213617", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1097213617", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1097213617", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1097213617", "source": "GND"}], "variant_access_point": ["Gundorf (Leipzig)"], "authorized_access_point": "Leipzig-Gundorf"} 3 -2024-07-16 19:07:40.831565 2024-07-17 06:59:09.028684 4aded07a-8214-4ee3-af65-2eeb1fefd5bd {"md5": "cbd4b918eb3690c311cf83e0b790ab37", "pid": "1099132061", "note": [{"label": ["Internet - http://www.allgaeu.de/wiesengaenger-touren?referralTopic=wandern"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Wandertrilogie Allgäu"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1099132061", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1099132061", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1099132061", "source": "GND"}], "classification": [{"name": "Rundwanderweg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Fernwanderweg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Wiesengänger-Route"], "authorized_access_point": "Wiesengänger Route"} 3 -2024-07-16 19:07:39.905986 2024-07-17 06:59:12.176503 404539f9-a05d-4f0a-8ea8-1659261e48f9 {"md5": "635db23f5a6c7a4f718f6bc53920b092", "pid": "1132227771", "note": [{"label": ["Internet - http://caminoignaciano.org/de/introduccion"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Azpeitia-Loyola"}, {"authorized_access_point": "Manresa"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1132227771", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1132227771", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1132227771", "source": "GND"}], "classification": [{"name": "Wallfahrtsweg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Ignatius-Weg", "Camino Ignaciano", "Inaziotar Bidea"], "authorized_access_point": "Ignatiusweg"} 3 -2024-07-16 19:07:39.558604 2024-07-17 06:59:13.256822 6ca01c25-63d3-4350-af18-92921cfc2d26 {"md5": "3c3fbf1f636579f4c599c3532db870de", "pid": "1136092293", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1136092293", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1136092293", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1136092293", "source": "GND"}], "authorized_access_point": "Schengen (Region)"} 3 -2024-07-16 19:07:39.458041 2024-07-17 06:59:13.515124 f11c8b69-fc57-4f2f-87ee-710cff0b57d7 {"md5": "c1fc8dc12a59bcf274b33bc069b1d92a", "pid": "1136731237", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Au an der Donau"}, {"authorized_access_point": "Naarn im Machlande"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1136731237", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1136731237", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1136731237", "source": "GND"}], "variant_access_point": ["Naarn im Machlande- Au"], "authorized_access_point": "Naarn- Au an der Donau"} 3 -2024-07-16 19:07:39.102713 2024-07-17 06:59:14.676392 81c5a766-9bd7-455d-85db-7028b4a64f3b {"md5": "9ba219d42bd0250c7e6c5106eabd95db", "pid": "1142135993", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Münster (Westf)"}], "related": [{"authorized_access_point": "Juridicum (Münster (Westf))"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1142135993", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1142135993", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1142135993", "source": "GND"}], "classification": [{"name": "Installation", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Metallkonstruktion", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["The meadow laughs (Münster (Westf))", "Tine lawn laughs (Münster (Westf))", "Das Gesicht in der Wand (Münster (Westf))", "The face in the wall (Münster (Westf))", "Die Wiese lacht oder das Gesicht in der Wand (Münster (Westf))", "The meadow laughs or the face in the wall (Münster (Westf))", "Tine lawn laughs or the face in the wall (Münster (Westf))"], "authorized_access_point": "Die Wiese lacht (Münster (Westf))"} 3 -2024-07-16 19:07:38.347429 2024-07-17 06:59:17.19677 8d218ae8-3abc-4bfa-b0a6-a5591f116cf8 {"md5": "6b86de51b4afcb528587a15b437b1d96", "pid": "1163419907", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Dreikaiserbäder"}, {"authorized_access_point": "Bansin"}, {"authorized_access_point": "Heringsdorf-Bansin"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1163419907", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1163419907", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1163419907", "source": "GND"}], "variant_access_point": ["Bansin (Dreikaiserbäder)"], "authorized_access_point": "Dreikaiserbäder-Bansin"} 3 -2024-07-16 19:07:38.253009 2024-07-17 06:59:17.462674 98e34429-e28b-495a-b7f7-8427ce85e733 {"md5": "8eddaf8e7aa362a66445e6199c07892d", "pid": "1163558095", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Ahlbeck_(Heringsdorf)"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Dreikaiserbäder"}, {"authorized_access_point": "Ahlbeck (Seebad)"}, {"authorized_access_point": "Heringsdorf-Ahlbeck"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1163558095", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1163558095", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1163558095", "source": "GND"}], "variant_access_point": ["Ahlbeck (Dreikaiserbäder)"], "authorized_access_point": "Dreikaiserbäder-Ahlbeck"} 3 -2024-07-16 19:07:37.659235 2024-07-17 06:59:19.453594 11e39aa3-e05d-493d-a449-03433ab02efb {"md5": "65934d9c42984d59df483ddc96e76749", "pid": "1167335767", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1167335767", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1167335767", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1167335767", "source": "GND"}], "classification": [{"name": "Tiefseeberg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Louisville-Seamount-Chain", "Louisville Seamounts", "Louisville-Seamounts", "Louisville Ridge", "Louisville-Ridge"], "authorized_access_point": "Louisville Seamount Chain"} 3 -2024-07-16 19:07:36.906514 2024-07-17 06:59:22.023562 7d6857ab-3cc9-4dc0-bfa6-5b58ec56b5ca {"md5": "523956e4b3b86d473a828cb9ce3aa6da", "pid": "1179502884", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1179502884", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1179502884", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1179502884", "source": "GND"}], "variant_access_point": ["Krotoszyn (ziemia)", "Krotoschin (Land)", "Krotoschin (Region)", "Ziemia Krotoszyńska"], "authorized_access_point": "Krotoszyn (Region)"} 3 -2024-07-16 19:07:36.840165 2024-07-17 06:59:22.326657 f2ade7a4-8351-4af8-bcee-5a10f2b58a38 {"md5": "e5447bfb35c33369045359ed9e3b2569", "pid": "1180620623", "note": [{"label": ["unter - https://de.wikipedia.org/wiki/Heringsdorf", "unter - https://de.wikipedia.org/wiki/Bansin"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Heringsdorf (Seebad)"}, {"authorized_access_point": "Neu Sallenthin"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1180620623", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1180620623", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1180620623", "source": "GND"}], "variant_access_point": ["Heringsdorf- Neu Sallenthin", "Neu Sallenthin (Heringsdorf, Seebad)"], "authorized_access_point": "Heringsdorf-Neu Sallenthin"} 3 -2024-07-16 19:07:36.226122 2024-07-17 06:59:24.231193 12bdc6a2-bd6e-4f9b-bf50-1566b55eb0e4 {"md5": "36fe4134d8a5b0906e4bf5b596b847a7", "pid": "1189443015", "note": [{"label": ["Internet - http://www.muzeumwalcz.pl/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1189443015", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1189443015", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1189443015", "source": "GND"}], "variant_access_point": ["Wałcz (ziemia)", "Ziemia wałecka", "Deutsch Kroner Land", "Deutsch Krone (Land)"], "authorized_access_point": "Wałcz (Region)"} 3 -2024-07-16 19:07:23.363942 2024-07-17 07:00:11.940623 0d2d758d-4526-4812-a36c-93d96e669805 {"md5": "571bf23923f46f6a1f58e61e24620639", "pid": "1334785422", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Egloffstein"}, {"authorized_access_point": "Bieberbach (Egloffstein)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334785422", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334785422", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334785422", "source": "GND"}], "variant_access_point": ["Bieberbach (Egloffstein-Bieberbach)"], "authorized_access_point": "Egloffstein-Bieberbach"} 3 -2024-07-16 19:07:35.464273 2024-07-17 06:59:27.087865 d51c19c1-b0be-4f39-8eee-ef3864dc86d9 {"md5": "a31110d2e9ceb302957383ff20aa37ca", "pid": "1215862520", "note": [{"label": ["GeoNames - http://geotree.geonames.org/11303211/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1215862520", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1215862520", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1215862520", "source": "GND"}], "authorized_access_point": "Kiršai"} 3 -2024-07-16 19:07:35.380643 2024-07-17 06:59:27.417293 d95bbf7b-7252-4073-8079-b3b74fcbf12f {"md5": "b845ae7738756612970b2fb3ed316af3", "pid": "1219234621", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Saint-Ouen-le-Pin"}, {"authorized_access_point": "La Boissière"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1219234621", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1219234621", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1219234621", "source": "GND"}], "classification": [{"name": "Landhaus", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Bauernhof", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Braffy (Saint-Ouen-le-Pin)"} 3 -2024-07-16 19:07:35.027265 2024-07-17 06:59:28.588303 8d4cde5a-ab89-444f-ad95-4488c6e4f744 {"md5": "de967b6c062a458c4fd38ecaf273bd23", "pid": "1224278054", "note": [{"label": ["Architekturmuseum, TU Berlin - https://architekturmuseum.ub.tu-berlin.de/index.php?p=51&SID=16093345395539", "Wikipedia - https://de.wikipedia.org/w/index.php?title=Akademietheater_(Wien)&oldid=204362083", "Homepage - https://www.burgtheater.at/akademietheater"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Wien"}, {"authorized_access_point": "Wien"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1224278054", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1224278054", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1224278054", "source": "GND"}], "classification": [{"name": "Theaterbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Akademie-Theater Wien (Wien)", "Akademie Theater Wien (Wien)"], "authorized_access_point": "Akademietheater Wien (Wien)"} 3 -2024-07-16 19:07:34.805664 2024-07-17 06:59:29.464752 26f5002e-0742-485a-b4f1-65c96580da51 {"md5": "3cadeb8bf50f47a16be932ac444915c4", "pid": "1233310046", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Dubring&oldid=197367017"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Wittichenau-Dubring"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1233310046", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1233310046", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1233310046", "source": "GND"}], "variant_access_point": ["Dubrjenk", "Eichhain"], "authorized_access_point": "Dubring"} 3 -2024-07-16 19:07:34.039028 2024-07-17 06:59:32.204295 a20c077f-87c2-4176-b720-9f32f3d88719 {"md5": "93b7cb909c80abb690bf04357045f357", "pid": "1239866968", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1239866968", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1239866968", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1239866968", "source": "GND"}], "classification": [{"name": "Berg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Mount Ferguson, Nev."} 3 -2024-07-16 19:07:33.954022 2024-07-17 06:59:32.5293 39018d11-43b2-452e-aace-34c9d88106c5 {"md5": "dadd1a62c4a99439be1bb2936bfc2b4b", "pid": "1240912943", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1240912943", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1240912943", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1240912943", "source": "GND"}], "variant_access_point": ["Loslauer Land", "Ziemia Wodzisławska", "Wodzisław Śląski (ziemia)", "Loslau (Region)"], "authorized_access_point": "Wodzisław Śląski (Region)"} 3 -2024-07-16 19:07:33.857881 2024-07-17 06:59:32.804678 e8312d89-ef78-46fc-a39e-56feb2c19599 {"md5": "d3d3b05d6898abb1f4f88c5028fb1d7e", "pid": "1262419808", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Stadtlauringen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1262419808", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1262419808", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1262419808", "source": "GND"}], "classification": [{"name": "Berg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Altenburg (Stadtlauringen, Berg)"} 3 -2024-07-16 19:07:33.471833 2024-07-17 06:59:34.599539 d20f43d0-6ff7-49d9-80d9-b9c6608837c0 {"md5": "7b4e3172f1c0fba13f4e5f1c42ab4949", "pid": "1284341119", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Horgen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1284341119", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1284341119", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1284341119", "source": "GND"}], "classification": [{"name": "Museumsbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Verkehrsbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Sust (Horgen)"], "authorized_access_point": "Alte Sust (Horgen)"} 3 -2024-07-16 19:07:33.228111 2024-07-17 06:59:35.434752 c4967740-cf70-4955-8be9-a47fe4f8a875 {"md5": "3a8fe015fa46c04a301ff4ab4a109bda", "pid": "1295131781", "note": [{"label": ["Verbandsbüro in Apolda - https://www.weimarer-land.travel/zukunft/goethe-erlebnisweg/", "Wikipedia - https://de.wikipedia.org/w/index.php?title=Goethe-Erlebnisweg&oldid=234912759"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Weimar"}, {"authorized_access_point": "Uhlstädt-Kirchhasel- Großkochberg"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1295131781", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1295131781", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1295131781", "source": "GND"}], "classification": [{"name": "Wanderweg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Goethe-Erlebnisweg"} 3 -2024-07-16 19:07:32.607288 2024-07-17 06:59:37.939096 ecc692b4-ad1d-43f9-80d2-2f152b9dee95 {"md5": "bb755e3e55cfdaf6bc070221f3481421", "pid": "1329890205", "note": [{"label": ["Stadtverwaltung Jena - https://beteiligung.jena.de/sites/default/files/2024-02/Aufarbeitung_Geschichte%20des%20Orchideenbrunnen_B%C3%BCrgerbudget%20Jena_0.pdf"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Jena"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1329890205", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1329890205", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1329890205", "source": "GND"}], "classification": [{"name": "Brunnen", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Jenaer Orchideenbrunnen (Jena)"], "authorized_access_point": "Orchideenbrunnen (Jena)"} 3 -2024-07-16 19:07:31.985478 2024-07-17 06:59:39.904829 6cf31988-3042-4b21-9a53-d91fd2eb4815 {"md5": "fd2d119be56a826dcd7c22a2f38dc667", "pid": "1330847199", "note": [{"label": ["GeoNames - https://www.geonames.org/3099521/gana.html", "Wikipedia - https://pl.wikipedia.org/w/index.php?title=Gana&oldid=72537850"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Praszka"}, {"authorized_access_point": "Woiwodschaft Oppeln"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330847199", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330847199", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330847199", "source": "GND"}], "authorized_access_point": "Gana (Praszka)"} 3 -2024-07-16 19:07:31.690888 2024-07-17 06:59:41.066728 2d3a11df-48a9-49de-9e29-f04496f63d4e {"md5": "88836b79e9b936777a83d56a0d16f2f4", "pid": "1331109191", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/w/index.php?title=Fetislam&oldid=1191312260", "Wikipedia - https://sr.wikipedia.org/w/index.php?title=%D0%A4%D0%B5%D1%82%D0%B8%D1%81%D0%BB%D0%B0%D0%BC&oldid=27385008"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Kladovo"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331109191", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331109191", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331109191", "source": "GND"}], "classification": [{"name": "Festung", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Tvrđava Fetislam"], "authorized_access_point": "Fetislam"} 3 -2024-07-16 19:07:30.801475 2024-07-17 06:59:44.131375 3b13269f-c8b6-4950-a363-78baf23a8ea9 {"md5": "996a7ff22437aa57a2754b336061cd2a", "pid": "1332055729", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332055729", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332055729", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332055729", "source": "GND"}], "variant_access_point": ["Lautschitz", "Lautschütz", "Lanteschitz"], "authorized_access_point": "Blučina"} 3 -2024-07-16 19:07:30.727091 2024-07-17 06:59:44.469751 8ed33df5-504e-4f4b-82d6-d490be9c03f1 {"md5": "ddfaa5275f4662c24d47fcd1032f96fe", "pid": "1332057209", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Olmeda_de_la_Cuesta&oldid=226226107", "GeoNames - https://www.geonames.org/6357483/olmeda-de-la-cuesta.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332057209", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332057209", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332057209", "source": "GND"}], "authorized_access_point": "Olmeda de la Cuesta"} 3 -2024-07-16 19:07:30.59005 2024-07-17 06:59:45.056922 b720db86-e920-4868-a3c8-ac696fd1fbb6 {"md5": "cdb1dde18755b13050f3ed648461c565", "pid": "1332451578", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=M%C3%BDtina&oldid=240251478"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Alt-Albenreuth"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332451578", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332451578", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332451578", "source": "GND"}], "variant_access_point": ["Alt-Albenreuth"], "authorized_access_point": "Mýtina"} 3 -2024-07-16 19:07:29.975941 2024-07-17 06:59:47.237691 e3e55560-4178-4efc-a691-20a6d42b616c {"md5": "6bdec602bb6281c152de101f14933b17", "pid": "1332734863", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Salzburggau&oldid=225169888"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332734863", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332734863", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332734863", "source": "GND"}], "authorized_access_point": "Salzburggau"} 3 -2024-07-16 19:07:29.509475 2024-07-17 06:59:49.071701 89434b72-221f-457c-aa64-6499a23feb7c {"md5": "b92ce5f375562b025697f95ae9840bcf", "pid": "1332757375", "note": [{"label": ["RIplus Regg. Bamberg n. 39, in: Regesta Imperii Online - http://www.regesta-imperii.de/id/fffc7ec3-2a09-4f7b-a1c6-b0b415fe26b2"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Forchheim-Burk"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332757375", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332757375", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332757375", "source": "GND"}], "classification": [{"name": "Wüstung", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Wüstung Slierbach"], "authorized_access_point": "Slierbach (Wüstung)"} 3 -2024-07-16 19:07:29.163868 2024-07-17 06:59:50.34711 1d6bcd71-ffb5-45d2-a2ac-e84373c01a4c {"md5": "2ed191412af8520bb56d89e4b5ba0034", "pid": "1333113943", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Wolfersgr%C3%BCn_(Wallenfels)&oldid=245060892#Katholische_Filialkirche_St._Georg"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Wolfersgrün"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333113943", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333113943", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333113943", "source": "GND"}], "classification": [{"name": "Kirchenbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["St. Georg (Wolfersgrün)", "Filialkirche Sankt Georg (Wolfersgrün)", "Katholische Filialkirche Sankt Georg (Wolfersgrün)"], "authorized_access_point": "Sankt Georg (Wolfersgrün)"} 3 -2024-07-16 19:08:05.568929 2024-07-17 07:00:51.451725 08b67ad5-ecde-4d9b-bdf9-56ef297144cb {"md5": "0f0e1aef5b3b4a12077683dc6aef2dd5", "pid": "947862730", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Juodkrant%C4%97&oldid=178982082", "GeoNames - http://geotree.geonames.org/598706/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Schwarzort"}, {"authorized_access_point": "Neringa"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5175593-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)947862730", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)5175593-2", "source": "GND"}], "authorized_access_point": "Juodkrantė"} 3 -2024-07-16 19:08:04.279423 2024-07-17 07:00:56.206279 40242d4c-9c28-4587-ad81-ea4e315e593c {"md5": "31b0f0226caae1452216c2b6adcf8c6c", "pid": "949740861", "note": [{"label": ["Homepage - http://www.stuenz.de/?path=content&contentid=10"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Leipzig-Sellerhausen"}, {"authorized_access_point": "Leipzig-Stünz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4442450-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)949740861", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4442450-4", "source": "GND"}], "variant_access_point": ["Sellerhausen-Stünz (Leipzig)"], "authorized_access_point": "Leipzig-Sellerhausen-Stünz"} 3 -2024-07-16 19:07:28.512381 2024-07-17 06:59:52.771036 27cf7832-d8bf-419c-a712-c77b415802cf {"md5": "4d8be98fa1c1d2934e9438bafe46ba16", "pid": "1333570511", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Bystrez_(Werchowyna)&oldid=223341029", "Geonames - https://www.geonames.org/711003/bystrets.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333570511", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333570511", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333570511", "source": "GND"}], "variant_access_point": ["Bystrecʹ", "Bystrets"], "authorized_access_point": "Bystrez"} 3 -2024-07-16 19:07:27.748004 2024-07-17 06:59:55.313734 a4994ba7-1c01-400b-99a2-842864df3ef6 {"md5": "9178fcbe64427c58cea704e4528cc0bc", "pid": "1334086826", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Ostrov&oldid=239139996"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Constanṭa"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334086826", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334086826", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334086826", "source": "GND"}], "authorized_access_point": "Ostrov (Constanṭa)"} 3 -2024-07-16 19:07:27.662287 2024-07-17 06:59:55.590831 b77e2985-248a-40ac-8df0-574d3a1b39a0 {"md5": "ce8188f645218d55c19afa9cd9d247ca", "pid": "1334101221", "note": [{"label": ["Wikipedia - https://it.wikipedia.org/w/index.php?title=Santuario_della_Madonna_della_Neve_(Casto)&oldid=137435328"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Casto"}, {"authorized_access_point": "Auro"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334101221", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334101221", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334101221", "source": "GND"}], "classification": [{"name": "Kirchenbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Madonna della Neve (Casto)"], "authorized_access_point": "Santuario della Madonna della Neve (Casto)"} 3 -2024-07-16 19:07:27.104845 2024-07-17 06:59:57.464915 5694527a-edca-4567-9635-da95c2e29d9a {"md5": "4c4fbc96095ae095319dfaa348731440", "pid": "1334310661", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Grünberg-Lumda"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334310661", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334310661", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334310661", "source": "GND"}], "authorized_access_point": "Lumda"} 3 -2024-07-16 19:07:27.023114 2024-07-17 06:59:57.771882 4613385b-b264-4578-b0f1-26837f454f9b {"md5": "a451bf470ebab0d98344cfd60c8a43be", "pid": "1334312974", "note": [{"label": ["Homepage - https://www.stadtmarketing-glinde.de/rathaus"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Glinde (Stormarn)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334312974", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334312974", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334312974", "source": "GND"}], "classification": [{"name": "Rathaus", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Glinder Rathaus (Glinde)"], "authorized_access_point": "Rathaus Glinde (Glinde)"} 3 -2024-07-16 19:07:26.840947 2024-07-17 06:59:58.444885 305821e9-88bc-4ae3-880e-7dcf70fb8ff4 {"md5": "1fc6cdb81f88d22c13945f22c85ec2bb", "pid": "1334318069", "note": [{"label": ["Homepage - https://www.stormarnlexikon.de/rathausgrosshansdorf/", "Homepage - http://archiv.heimatverein-grosshansdorf.de/Wald-1960-08-gesamt.pdf"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Großhansdorf"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334318069", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334318069", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334318069", "source": "GND"}], "classification": [{"name": "Rathaus", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Großhansdorfer Rathaus (Großhansdorf)"], "authorized_access_point": "Rathaus Großhansdorf (Großhansdorf)"} 3 -2024-07-16 19:07:26.365512 2024-07-17 07:00:00.449422 f462d33c-070d-4818-99a3-f4741ed7afa0 {"md5": "4bfffe586026b0cf91ea7da807455eb2", "pid": "1334516766", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/w/index.php?title=Oakhurst,_California&oldid=1225176061"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334516766", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334516766", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334516766", "source": "GND"}], "variant_access_point": ["Fresno Flats, Calif."], "authorized_access_point": "Oakhurst, Calif."} 3 -2024-07-16 19:07:25.556633 2024-07-17 07:00:02.973459 da6682fb-a148-4dbf-b072-151cd4d6d339 {"md5": "ffd9df76c568c600a30386f9cd620a65", "pid": "1334556687", "note": [{"label": ["Kanton Luzern, Kantonales Denkmalverzeichnis und Bauinventar - https://www.geo.lu.ch/map/kulturdenkmal/?FOCUS=2665615:1211443:1000&BASEMAP=G", "Search.ch - https://map.search.ch/Luzern,St.Leodegar-Str.?pos=666448,211966&zoom=18"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Luzern"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334556687", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334556687", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334556687", "source": "GND"}], "classification": [{"name": "Straße", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["St.-Leodegar-Strasse (Luzern)", "St. Leodegar-Str. (Luzern)"], "authorized_access_point": "Sankt-Leodegar-Strasse (Luzern)"} 3 -2024-07-16 19:07:25.272552 2024-07-17 07:00:04.130178 0f3c87d2-ea8d-4936-a6ab-15659243b5df {"md5": "91cb2bab6def2cef79804c1d6674bb4c", "pid": "133456325X", "note": [{"label": ["Search.ch - https://search.ch/map/6004-Luzern,St.Karli-Str.?pos=664859,212246&zoom=17", "Kanton Luzern, Kantonales Denkmalverzeichnis und Bauinventar - https://www.geo.lu.ch/map/kulturdenkmal/?FOCUS=2664987:1212278:2000&BASEMAP=G"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Luzern"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133456325X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133456325X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133456325X", "source": "GND"}], "classification": [{"name": "Straße", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["St.-Karli-Strasse (Luzern)", "St. Karlistrasse (Luzern)"], "authorized_access_point": "Sankt-Karli-Strasse (Luzern)"} 3 -2024-07-16 19:07:24.593674 2024-07-17 07:00:06.234045 ec4e2e14-25da-484a-8d33-b565658342d1 {"md5": "cd0904041baf17e2761b58e3839ffd73", "pid": "1334665028", "note": [{"label": ["Gemeinde im Landkreis Spree-Neiße"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334665028", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334665028", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334665028", "source": "GND"}], "variant_access_point": ["Kopańce/Sprjewja"], "authorized_access_point": "Neuhausen/Spree"} 3 -2024-07-16 19:07:23.974828 2024-07-17 07:00:08.521776 e25d9afe-3c2a-4b2e-b810-0e6352726c16 {"md5": "b25a5e37290a4c37b7bb937325f14b9e", "pid": "1334725691", "note": [{"label": ["Homepage - https://hungyen.gov.vn/portal/Pages/default.aspx"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334725691", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334725691", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334725691", "source": "GND"}], "classification": [{"name": "Provinz", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Provinz Hưng Yên", "Tỉnh Hưng Yên"], "authorized_access_point": "Provinz Hung Yen"} 3 -2024-07-16 19:07:23.728537 2024-07-17 07:00:09.398738 e988b0a7-bc61-4bb9-80e1-5452d2e3c3d9 {"md5": "af6e5f96acb06b0a5570b522cb6e8d89", "pid": "1334736340", "note": [{"label": ["AKL online - https://www.degruyter.com/database/AKL/entry/_00095457T/html", "Wikipedia - https://de.wikipedia.org/w/index.php?title=Théâtre_des_Champs-Élysées&oldid=244284814"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Paris"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334736340", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334736340", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334736340", "source": "GND"}], "classification": [{"name": "Theaterbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Theaterbau des Théâtre des Champs-Élysées (Paris)"} 3 -2024-07-16 19:07:23.482787 2024-07-17 07:00:11.332049 5df9c955-af09-40c9-8fcf-6f2bcd70974d {"md5": "ba39b0c9f27122b96d37a20056d3975a", "pid": "1334779015", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Liste_der_Baudenkm%C3%A4ler_in_Gerresheim&oldid=242490329"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Düsseldorf"}, {"authorized_access_point": "Düsseldorf-Gerresheim"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334779015", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334779015", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334779015", "source": "GND"}], "classification": [{"name": "Ensemble", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Fachwerkbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Gebäudeensemble Gerricusplatz 26-27 (Düsseldorf)"], "authorized_access_point": "Gerricusplatz 26-27 (Düsseldorf)"} 3 -2024-07-16 19:07:23.018675 2024-07-17 07:00:13.138882 7b36f5f1-3f40-4de3-8ba8-c7166d8b9200 {"md5": "f98852feaa7f1114b7e8fd1bc5fd8994", "pid": "1334804621", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Trier"}, {"authorized_access_point": "Trier-Kürenz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334804621", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334804621", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334804621", "source": "GND"}], "classification": [{"name": "Kapelle", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Kreuzkapelle (Trier-Kürenz)", "Kreuzchen (Trier)", "Kreuzchen (Trier-Kürenz)"], "authorized_access_point": "Kreuzkapelle (Trier)"} 3 -2024-07-16 19:07:22.672972 2024-07-17 07:00:14.409187 02f31023-5feb-4a3a-abe8-7b12701d04c1 {"md5": "0c184fb5f3adb9fdfd5abbbadc707307", "pid": "1334867097", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Fürstenfeld- Altenmarkt bei Fürstenfeld"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334867097", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334867097", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334867097", "source": "GND"}], "classification": [{"name": "Kirchenbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Pfarrkirche Heiliger Donatus (Altenmarkt bei Fürstenfeld)", "Pfarrkirche Hl. Donatus (Altenmarkt bei Fürstenfeld)"], "authorized_access_point": "Sankt Donatus (Altenmarkt bei Fürstenfeld)"} 3 -2024-07-16 19:07:22.083354 2024-07-17 07:00:16.780146 4b15cd73-38d2-47de-896a-2db8af49a5a3 {"md5": "fbafd9ee61e7c145304eda646b97d4ab", "pid": "1334900256", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=239879146"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Obertraun"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334900256", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334900256", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334900256", "source": "GND"}], "classification": [{"name": "Schloss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Schloss Grub (Obertraun)"} 3 -2024-07-16 19:07:21.741861 2024-07-17 07:00:17.971578 9bbfddd7-7c53-4205-9679-659a03f24f62 {"md5": "ef5870f8141de7279b5fa857b56a238a", "pid": "1334907684", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=227274461"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Zlaté Hory (Jeseník)"}, {"authorized_access_point": "Údolí"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334907684", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334907684", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334907684", "source": "GND"}], "classification": [{"name": "Landschaftspark", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Tereziino údolí (Zlaté Hory, Jeseník)", "Terezino údolí (Zlaté Hory, Jeseník)", "Theresiental (Zlaté Hory, Jeseník)"], "authorized_access_point": "Terčino údolí (Zlaté Hory, Jeseník)"} 3 -2024-07-16 19:07:21.410697 2024-07-17 07:00:19.144195 6a4d1e3e-7a31-46ed-9d74-c9498378ac10 {"md5": "1361004eb7b229137163e8783373561d", "pid": "1334938016", "note": [{"label": ["Internet - https://www.mindat.org/feature-3639055.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334938016", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334938016", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334938016", "source": "GND"}], "authorized_access_point": "Jusepín"} 3 -2024-07-16 19:07:21.316413 2024-07-17 07:00:19.405827 6d7fdbe4-a7ab-4449-9114-acb0ca4a8436 {"md5": "5120f843913fcc8a36c9a790cd4ede39", "pid": "1335058036", "note": [{"label": ["Wikipedia - https://it.wikipedia.org/w/index.php?title=Torre_Archirafi&oldid=140074551"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Riposto"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335058036", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335058036", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335058036", "source": "GND"}], "variant_access_point": ["Riposto- Torre Archirafi"], "authorized_access_point": "Torre Archirafi"} 3 -2024-07-16 19:07:20.903376 2024-07-17 07:00:20.853251 7c94df85-56af-4708-82f6-9cfefdc8284e {"md5": "ec3497e604cb5dee92dc67259001e7cc", "pid": "1335104917", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=M%C3%BDtina&oldid=240251478"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Mýtina"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335104917", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335104917", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335104917", "source": "GND"}], "variant_access_point": ["Alt Albenreuth", "Altalbenreuth", "Starý Albenreuth"], "authorized_access_point": "Alt-Albenreuth"} 3 +2024-09-10 15:47:46.792295 2024-09-10 15:47:46.7923 f4a07a65-fec8-40e5-bcf4-cf33d863a15c {"md5": "40205680c9a1f2ca9bacadedfbc96d28", "pid": "1335257845", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Katovice"}], "identifier": "http://d-nb.info/gnd/1335257845", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335257845", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335257845", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335257845", "source": "GND"}], "variant_access_point": ["Burgwall Katowitz", "Kněží hora", "Hradiště na Kněží hoře", "Katowice", "Katowitz"], "authorized_access_point": "Burgwall Katovice"} 1 +2024-09-10 15:47:46.924658 2024-09-10 15:47:46.924662 d8865fe7-c645-4c5f-a65c-027b76286800 {"md5": "370e0b93363ce55d7c5166b444b8826d", "pid": "1335257101", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Katovice&oldid=242019016"], "noteType": "dataSource"}, {"label": ["Minderstadt im Okres Strakonnice"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1335257101", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335257101", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335257101", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335257101", "source": "GND"}], "variant_access_point": ["Katowitz"], "authorized_access_point": "Katovice"} 1 +2024-09-10 15:47:47.003455 2024-09-10 15:47:47.003458 beb4a3fa-744b-45ea-9126-fd9cc2f0673f {"md5": "d7a86b34d986a931b36805c6f2b7a0a2", "pid": "133525675X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Wielbark_(Malbork)&oldid=236755840"], "noteType": "dataSource"}, {"label": ["Ort in der Wojewodschaft Pommern, Powiat malborski; der größere Teil gehört zur Stadt Malbork", "Für die Sacherschließung wird bei Splits nur diese (das ist die neueste/jüngste) Namensform verwendet"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/133525675X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133525675X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133525675X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133525675X", "source": "GND"}], "variant_access_point": ["Wielbark", "Willenberg"], "authorized_access_point": "Malbork-Wielbark"} 1 +2024-09-10 15:47:47.06283 2024-09-10 15:47:47.062834 192ac41c-1ebd-467a-9c68-a374b38335ed {"md5": "792b70c854a060c168a8f716217821f1", "pid": "133525207X", "note": [{"label": ["Wikipedia - https://pl.wikipedia.org/w/index.php?title=Kwiatk%C3%B3w_(powiat_turecki)&oldid=72550113"], "noteType": "dataSource"}, {"label": ["Ort in der Gmina Brudzew, Powiat turecki, Wojewodschaft Großpolen", "Für die Sacherschließung wird bei Splits nur diese (das ist die neueste/jüngste) Namensform verwendet"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/133525207X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133525207X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133525207X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133525207X", "source": "GND"}], "authorized_access_point": "Kwiatków"} 1 +2024-09-10 15:47:47.124712 2024-09-10 15:47:47.124716 fdfdfada-a21b-46be-92a4-52a78728a724 {"md5": "acbf23211a125fa05b002dab9f4b41f6", "pid": "1335249966", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Steinburg_(Holstein)"], "noteType": "dataSource"}, {"label": ["Abgebrochen ab 1641, seither wüst"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Süderau"}], "identifier": "http://d-nb.info/gnd/1335249966", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335249966", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335249966", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335249966", "source": "GND"}], "authorized_access_point": "Steinburg (Süderau)"} 1 +2024-09-10 15:47:47.185828 2024-09-10 15:47:47.185833 f25890a8-57bb-4776-a261-f2c239f2f164 {"md5": "b6554a2c351a38ed99774757903595f0", "pid": "1335243240", "note": [{"label": ["Pfarrkirche, der Kirchenbau stammt aus der Zeit 1593 bis 1723"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "San Basilio (Sardinien)"}], "identifier": "http://d-nb.info/gnd/1335243240", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335243240", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335243240", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335243240", "source": "GND"}], "authorized_access_point": "San Pietro Apostolo (San Basilio, Sardinien)"} 1 +2024-09-10 15:47:47.24705 2024-09-10 15:47:47.247054 ee7af5b8-315b-4ef1-94ec-5c3cdb168297 {"md5": "c64f44f307cf8aa2dfade21dd2b78098", "pid": "133523909X", "note": [{"label": ["nach Aufgabe des Klosters 1810 als Arbeitshaus und Gefängnis genutzt"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Venedig"}], "identifier": "http://d-nb.info/gnd/133523909X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133523909X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133523909X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133523909X", "source": "GND"}], "authorized_access_point": "Klosteranlage des Monastero di Santa Croce alla Giudecca (Venedig)"} 1 +2024-09-10 15:47:47.305428 2024-09-10 15:47:47.305431 7ad5f5fb-414f-487c-b88a-515bc0c0c023 {"md5": "f4d1fb3b3de96d0db96069655309c771", "pid": "1335217711", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Gunzenhausen"}], "identifier": "http://d-nb.info/gnd/1335217711", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335217711", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335217711", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335217711", "source": "GND"}], "variant_access_point": ["Büchelberg (Gunzenhausen)"], "authorized_access_point": "Gunzenhausen-Büchelberg"} 1 +2024-09-10 15:47:47.364376 2024-09-10 15:47:47.364381 8112533f-aaf9-4aeb-96ff-4888b625cfa3 {"md5": "68cfdc6f7144d7eab3c5ec71e23368d7", "pid": "1335201653", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Somerset County, NJ"}], "identifier": "http://d-nb.info/gnd/1335201653", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335201653", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335201653", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335201653", "source": "GND"}], "variant_access_point": ["Skillman, New Jersey"], "authorized_access_point": "Skillman, NJ"} 1 +2024-09-10 15:47:47.424611 2024-09-10 15:47:47.424614 c682a975-975f-4248-82f6-ef1bfe7f06e7 {"md5": "63ddaee5a91963d705696f335fe48161", "pid": "1335141790", "note": [{"label": ["Wikipedia (spanisch) - https://es.wikipedia.org/wiki/Caicara_de_Matur%C3%ADn"], "noteType": "dataSource"}, {"label": ["Kleinstadt im venezolanischen Bundesstaat Monagas"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1335141790", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335141790", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335141790", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335141790", "source": "GND"}], "authorized_access_point": "Caicara de Maturín"} 1 +2024-09-10 15:47:47.488934 2024-09-10 15:47:47.488937 56ebf737-9cc7-4e3a-acb2-dde60bffac8e {"md5": "b966251d2bd0fbac2f406bdabb864a81", "pid": "1335107711", "note": [{"label": ["Teilregion der japanischen Region Chūbu"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Chūbu"}], "identifier": "http://d-nb.info/gnd/1335107711", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335107711", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335107711", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335107711", "source": "GND"}], "variant_access_point": ["Hokuriku Chihō", "北陸地方"], "authorized_access_point": "Hokuriku"} 1 +2024-09-10 15:47:47.551019 2024-09-10 15:47:47.551035 db91b8ac-d124-4cb0-a2a6-b0d702b4f2ec {"md5": "dd46f92a4e77173e592256002f69ed0b", "pid": "1335104917", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=M%C3%BDtina&oldid=240251478"], "noteType": "dataSource"}, {"label": ["In der Sacherschließung nicht zu verwenden; für die Sacherschließung wird bei Splits nur die neueste/jüngste Namensform verwendet."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Mýtina"}], "identifier": "http://d-nb.info/gnd/1335104917", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335104917", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335104917", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335104917", "source": "GND"}], "variant_access_point": ["Alt Albenreuth", "Altalbenreuth", "Starý Albenreuth"], "authorized_access_point": "Alt-Albenreuth"} 1 +2024-09-10 15:47:47.604783 2024-09-10 15:47:47.604787 b4069bee-066e-429d-977c-df32fbcc0c1b {"md5": "d53c277eca6d0f91014e4b8063b35cb9", "pid": "1335098399", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Portsmouth_(Dominica)"], "noteType": "dataSource"}, {"label": ["Kleinstadt im Norden des Inselstaates Dominica"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1335098399", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335098399", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335098399", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335098399", "source": "GND"}], "authorized_access_point": "Portsmouth (Dominica)"} 1 +2024-09-10 15:47:47.662921 2024-09-10 15:47:47.662926 b37e671b-7337-491a-a0b6-8b0836ddbc3a {"md5": "f9b85c791cca5a5155b9a3140a8863c6", "pid": "1335092390", "note": [{"label": ["AW-Wiki - https://www.aw-wiki.de/index.php/Villa_Wente_(Niederbreisig)"], "noteType": "dataSource"}, {"label": ["1970 abgerissen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bad Breisig"}, {"authorized_access_point": "Bad Niederbreisig"}, {"authorized_access_point": "Bad Breisig- Niederbreisig"}], "identifier": "http://d-nb.info/gnd/1335092390", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335092390", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335092390", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335092390", "source": "GND"}], "variant_access_point": ["Villa Wenté (Bad Niederbreisig)", "Villa Wenté (Bad Breisig- Niederbreisig)"], "authorized_access_point": "Villa Wenté (Bad Breisig)"} 1 +2024-09-10 15:47:47.722466 2024-09-10 15:47:47.722471 11f15adc-66bd-4a39-aa27-5c1a7af28ef4 {"md5": "1a2f1ccbe4add5ac9359ddb13b051731", "pid": "1335092196", "note": [{"label": ["Homepage - https://www.neufreimann.de/"], "noteType": "dataSource"}, {"label": ["Das Areal der füheren Bayernkaserne wird zum neuen Wohnquartier"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "München"}], "identifier": "http://d-nb.info/gnd/1335092196", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335092196", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335092196", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335092196", "source": "GND"}], "variant_access_point": ["Neufreimann (München-Neufreimann)"], "authorized_access_point": "München-Neufreimann"} 1 +2024-09-10 15:47:47.781471 2024-09-10 15:47:47.781476 30f01a93-2ffe-4008-8d25-55fc8569ace9 {"md5": "b8b63a6efaf40a9082105cd424127b04", "pid": "1335086005", "note": [{"label": ["GeoNames - https://www.geonames.org/761744/podsuliszka.html", "Wikipedia - https://en.wikipedia.org/w/index.php?title=Podsuliszka&oldid=1166090601"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Powiat radomski"}], "identifier": "http://d-nb.info/gnd/1335086005", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335086005", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335086005", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335086005", "source": "GND"}], "authorized_access_point": "Podsuliszka"} 1 +2024-09-10 15:47:47.841072 2024-09-10 15:47:47.841075 38b207ff-3ec9-4ba9-ab0e-77d9b0e6dffd {"md5": "f9363ee409d3172c667e5d15b290317a", "pid": "1335058036", "note": [{"label": ["Wikipedia - https://it.wikipedia.org/w/index.php?title=Torre_Archirafi&oldid=140074551"], "noteType": "dataSource"}, {"label": ["Ortsteil von Riposto in der Metropolitanstadt Catania, Sizilien"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Riposto"}], "identifier": "http://d-nb.info/gnd/1335058036", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335058036", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335058036", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335058036", "source": "GND"}], "variant_access_point": ["Riposto- Torre Archirafi"], "authorized_access_point": "Torre Archirafi"} 1 +2024-09-10 15:47:47.902861 2024-09-10 15:47:47.902865 a6a73308-0987-4fde-b8cc-8615acbcd604 {"md5": "6e93f4d48abe974c5e70fde7f9e5f246", "pid": "1334938016", "note": [{"label": ["Internet - https://www.mindat.org/feature-3639055.html"], "noteType": "dataSource"}, {"label": ["Ortschaft im venezolanischen Bundesstaat Monagas"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1334938016", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334938016", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334938016", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334938016", "source": "GND"}], "authorized_access_point": "Jusepín"} 1 +2024-09-10 15:47:47.970973 2024-09-10 15:47:47.970978 3e6b3588-d14f-4c64-985f-3db0418f2525 {"md5": "875e4271a609de9f164dbf9149a1c930", "pid": "1334917981", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "San Vito al Torre"}, {"authorized_access_point": "San Vito al Torre- Crauglio"}], "identifier": "http://d-nb.info/gnd/1334917981", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334917981", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334917981", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334917981", "source": "GND"}], "variant_access_point": ["Palazzo Steffaneo (San Vito al Torre)", "Palazzo Steffaneo Roncato (San Vito al Torre)"], "authorized_access_point": "Villa Stefaneo (San Vito al Torre)"} 1 +2024-09-10 15:47:48.041618 2024-09-10 15:47:48.041621 851b5f2a-603c-45e6-8344-bd940b5b3c10 {"md5": "1df2b6e5b7c5433d9d4a1797377fb03b", "pid": "1334916292", "note": [{"label": ["1367 als Festeingang errichtet, das Portal schmückt ein Glasmosaik"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Sankt-Veits-Dom (Prag)"}], "identifier": "http://d-nb.info/gnd/1334916292", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334916292", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334916292", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334916292", "source": "GND"}], "authorized_access_point": "Sankt-Veits-Dom (Prag) - Goldene Pforte"} 1 +2024-09-10 15:47:48.100698 2024-09-10 15:47:48.100701 0680d679-2e2c-454d-8d81-78e43a426b0a {"md5": "2869c2f49802d1513b3eec655dbeedc3", "pid": "1334913498", "note": [{"label": ["errichtet um 1127, zerstört 1633, 1650 bis 1653 abgerissen; die Steine zum Bau des Franziskanerklosters in Ehingen verwendet; Reste überließ man dem Verfall"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Schelklingen"}], "identifier": "http://d-nb.info/gnd/1334913498", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334913498", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334913498", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334913498", "source": "GND"}], "variant_access_point": ["Schloss Hohenschelklingen (Schelklingen)", "Burg Hohen Schelklingen (Schelklingen)"], "authorized_access_point": "Burg Hohenschelklingen (Schelklingen)"} 1 +2024-09-10 15:47:48.163729 2024-09-10 15:47:48.163735 0a5b8e5e-ccc3-4c6f-ace1-f6cfa38fac80 {"md5": "256828aa629d876a9a3445031fef7304", "pid": "1334907684", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=227274461"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Zlaté Hory (Jeseník)"}, {"authorized_access_point": "Údolí"}], "identifier": "http://d-nb.info/gnd/1334907684", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334907684", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334907684", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334907684", "source": "GND"}], "variant_access_point": ["Tereziino údolí (Zlaté Hory, Jeseník)", "Terezino údolí (Zlaté Hory, Jeseník)", "Theresiental (Zlaté Hory, Jeseník)"], "authorized_access_point": "Terčino údolí (Zlaté Hory, Jeseník)"} 1 +2024-09-10 15:47:48.237735 2024-09-10 15:47:48.237738 7fc945a2-b3f3-4a35-a988-29c3e1414d7b {"md5": "8b38600b1a3816ba93a6b804234c2c89", "pid": "1334907048", "note": [{"label": ["Sitz der SPÖ Tirol."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Innsbruck"}], "identifier": "http://d-nb.info/gnd/1334907048", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334907048", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334907048", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334907048", "source": "GND"}], "variant_access_point": ["Salurner Straße 2 (Innsbruck)"], "authorized_access_point": "SPÖ-Parteihaus (Innsbruck)"} 1 +2024-09-10 15:47:48.298712 2024-09-10 15:47:48.298717 b72fe128-9195-4138-8c8c-a4d011b2dc66 {"md5": "ca15762fcb1908a377eda1e7fe67a1a9", "pid": "1334904251", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=214053093"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1334904251", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334904251", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334904251", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334904251", "source": "GND"}], "variant_access_point": ["Wischke", "Wischkau", "Wieschke", "Lindendorf O.S."], "authorized_access_point": "Wyszków Śląski"} 1 +2024-09-10 15:47:48.356864 2024-09-10 15:47:48.356867 7d912b3a-4016-4357-ae25-0dee882a96c9 {"md5": "dee3de85ff4163388ab3aa9d418c39ef", "pid": "133490281X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=244643949"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Fernitz-Mellach"}], "identifier": "http://d-nb.info/gnd/133490281X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133490281X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133490281X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133490281X", "source": "GND"}], "authorized_access_point": "Schloss Weissenegg (Fernitz-Mellach)"} 1 +2024-09-10 15:47:48.419645 2024-09-10 15:47:48.419649 2ba13814-f356-4668-a9f0-8a7adea27b9a {"md5": "3b9a70b5e4a6ec88061b6ad674a74fed", "pid": "1334900256", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=239879146"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Obertraun"}], "identifier": "http://d-nb.info/gnd/1334900256", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334900256", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334900256", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334900256", "source": "GND"}], "authorized_access_point": "Schloss Grub (Obertraun)"} 1 +2024-09-10 15:47:48.477746 2024-09-10 15:47:48.477749 7230e791-e694-4d97-8f47-483b77e3c41c {"md5": "208a0192f6be02993f478a870bca2e49", "pid": "133489874X", "note": [{"label": ["Berg zwischen Oberlinxweiler und Niederlinxweiler, beides Ortsteile von St. Wendel im Landkreis St. Wendel, Saarland; auf dem Spiemont sich befand eine vor- oder frühgeschichtliche Befestigungsanlage"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/133489874X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133489874X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133489874X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133489874X", "source": "GND"}], "authorized_access_point": "Spiemont"} 1 +2024-09-10 15:47:48.537457 2024-09-10 15:47:48.53746 ca2d8e9c-e39a-46cb-a72e-a117be65ef98 {"md5": "7f0af5d7c781216d92066c3435aa7f2b", "pid": "1334896755", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Platz_der_Republik_(Hamburg)&oldid=240777547"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Hamburg-Altona"}, {"authorized_access_point": "Hamburg"}], "identifier": "http://d-nb.info/gnd/1334896755", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334896755", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334896755", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334896755", "source": "GND"}], "variant_access_point": ["Kaiserplatz (Hamburg)"], "authorized_access_point": "Platz der Republik (Hamburg)"} 1 +2024-09-10 15:47:48.596786 2024-09-10 15:47:48.596791 d8ce4113-64bc-43c4-9aaa-5ea20f56da67 {"md5": "50dc1a7bc395be0b7f7f498c49feecf3", "pid": "1334893594", "note": [{"label": ["Homepage - https://www.phoenixhof.de/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Hamburg-Bahrenfeld"}], "identifier": "http://d-nb.info/gnd/1334893594", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334893594", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334893594", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334893594", "source": "GND"}], "authorized_access_point": "Phoenixhof (Hamburg)"} 1 +2024-09-10 15:47:48.662694 2024-09-10 15:47:48.662698 3fa46c76-bf44-4c6d-b278-71fe0c1202ba {"md5": "aef73bab6c6f6766f0b918e25c201cc8", "pid": "133489129X", "note": [{"label": ["Homepage - https://neuesamt.org/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Hamburg-Altona"}], "identifier": "http://d-nb.info/gnd/133489129X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133489129X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133489129X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133489129X", "source": "GND"}], "variant_access_point": ["NAA"], "authorized_access_point": "Neues Amt Altona (Hamburg-Altona)"} 1 +2024-09-10 15:47:48.727147 2024-09-10 15:47:48.72715 ec5995ed-6410-4a07-99da-de85e42c3ce4 {"md5": "8f2362696d29c2819271cb33b1490a6c", "pid": "1334878234", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Holowaniwsk&oldid=246179368"], "noteType": "dataSource"}, {"label": ["Siedlung städtischen Typs im zentralukrainischen Oblast Kirowohrad"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1334878234", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334878234", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334878234", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334878234", "source": "GND"}], "variant_access_point": ["Holovanivsk", "Hołowaniewskie", "Голованівськ", "Голованевск"], "authorized_access_point": "Holowaniwsk"} 1 +2024-09-10 15:47:48.78737 2024-09-10 15:47:48.787374 79492345-e480-4b13-839e-d4e4a1845d72 {"md5": "659ba9a627a94f51aaf7eb00a1759f41", "pid": "1334875707", "note": [{"label": ["GeoNames - http://geotree.geonames.org/5126239/", "Wikipedia - https://en.wikipedia.org/w/index.php?title=Mattituck,_New_York&oldid=1214492095"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1334875707", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334875707", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334875707", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334875707", "source": "GND"}], "authorized_access_point": "Mattituck, NY"} 1 +2024-09-10 15:47:48.846703 2024-09-10 15:47:48.846707 9528b02b-ffd4-4127-aced-ea8c13c7d0b7 {"md5": "ee39af0ca9e6a6086e0cfb1b31f74f01", "pid": "1334874387", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Großwilfersdorf-Hainersdorf"}], "identifier": "http://d-nb.info/gnd/1334874387", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334874387", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334874387", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334874387", "source": "GND"}], "variant_access_point": ["Pfarrkirche Heiliger Georg (Hainersdorf)", "Pfarrkirche Hl. Georg (Hainersdorf)"], "authorized_access_point": "Sankt Georg (Hainersdorf)"} 1 +2024-09-10 15:47:48.905109 2024-09-10 15:47:48.905112 8ef7377b-d730-4940-bf70-7485d4f5ce32 {"md5": "80bb227beecdf65dd1d21655b8c748e0", "pid": "1334867097", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Fürstenfeld- Altenmarkt bei Fürstenfeld"}], "identifier": "http://d-nb.info/gnd/1334867097", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334867097", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334867097", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334867097", "source": "GND"}], "variant_access_point": ["Pfarrkirche Heiliger Donatus (Altenmarkt bei Fürstenfeld)", "Pfarrkirche Hl. Donatus (Altenmarkt bei Fürstenfeld)"], "authorized_access_point": "Sankt Donatus (Altenmarkt bei Fürstenfeld)"} 1 +2024-09-10 15:47:48.964192 2024-09-10 15:47:48.964196 e6e0fdef-c79b-41cd-bc2e-9ecfb150195d {"md5": "07ef276183a376dd14745bdb411bdd8b", "pid": "1334866473", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Birkfeld"}], "identifier": "http://d-nb.info/gnd/1334866473", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334866473", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334866473", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334866473", "source": "GND"}], "authorized_access_point": "Schloss Birkenstein (Birkfeld)"} 1 +2024-09-10 15:47:49.025099 2024-09-10 15:47:49.025103 da065786-bb71-4b86-9df0-8ae6717f9c7f {"md5": "d982f77895d3544ba792229823506300", "pid": "1334866082", "note": [{"label": ["OBV - https://permalink.obvsg.at/AC17225353"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Vittorio Veneto"}, {"authorized_access_point": "Venetien"}], "identifier": "http://d-nb.info/gnd/1334866082", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334866082", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334866082", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334866082", "source": "GND"}], "authorized_access_point": "Comunità Montana delle Prealpi Trevigiane"} 1 +2024-09-10 15:47:49.084713 2024-09-10 15:47:49.084718 6165a95e-1152-4718-a314-86d754164af8 {"md5": "8670e6341fc8c1f294def7b266db14cd", "pid": "1334865981", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Neudau"}], "identifier": "http://d-nb.info/gnd/1334865981", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334865981", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334865981", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334865981", "source": "GND"}], "authorized_access_point": "Schloss Neudau (Neudau)"} 1 +2024-09-10 15:47:49.142692 2024-09-10 15:47:49.142697 181ea6af-1efe-4461-aae3-fc87b969a69b {"md5": "b364a9f8405583e85f0a1c047a2895ca", "pid": "1334804621", "note": [{"label": ["Kapelle auf dem Petrisberg"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Trier"}, {"authorized_access_point": "Trier-Kürenz"}], "identifier": "http://d-nb.info/gnd/1334804621", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334804621", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334804621", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334804621", "source": "GND"}], "variant_access_point": ["Kreuzkapelle (Trier-Kürenz)", "Kreuzchen (Trier)", "Kreuzchen (Trier-Kürenz)"], "authorized_access_point": "Kreuzkapelle (Trier)"} 1 +2024-09-10 15:47:49.205686 2024-09-10 15:47:49.20569 bf433b91-d8b1-48ed-bb45-9b9beeda5c3c {"md5": "a54f07a85c55c70292096ef3f82b92f4", "pid": "1334804141", "note": [{"label": ["Kapelle im Ortsteil Kürenz; wurde 1960 abgerissen; der Bau wurde früher Peter Benz zugeschrieben"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Trier"}, {"authorized_access_point": "Trier-Kürenz"}], "identifier": "http://d-nb.info/gnd/1334804141", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334804141", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334804141", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334804141", "source": "GND"}], "variant_access_point": ["St. Cornelius-Kapelle (Trier)", "Sankt Cornelius-Kapelle (Trier-Kürenz)", "St. Cornelius-Kapelle (Trier-Kürenz)", "Jüngere Kürenzer Kapelle (Trier)"], "authorized_access_point": "Sankt Cornelius-Kapelle (Trier)"} 1 +2024-09-10 15:47:49.269482 2024-09-10 15:47:49.269485 93cf0b2e-56cc-4118-b52e-b9915dbb5ed6 {"md5": "9a9b82a13a655a3c6b93211e27e9904b", "pid": "1334801304", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Gradberg&oldid=214683168"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bad Driburg"}, {"authorized_access_point": "Nordrhein-Westfalen"}], "identifier": "http://d-nb.info/gnd/1334801304", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334801304", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334801304", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334801304", "source": "GND"}], "variant_access_point": ["NSG Gradberg", "Gradberg"], "authorized_access_point": "Naturschutzgebiet Gradberg"} 1 +2024-09-10 15:47:49.337247 2024-09-10 15:47:49.337251 cc0509d7-b367-4144-b22d-c1e013b46e71 {"md5": "1c6a3c391c8ae6f4f615b6f725d0a41e", "pid": "1334789134", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Ostentrop&oldid=243213300"], "noteType": "dataSource"}, {"label": ["Bis 30.06.1969 selbstständig, dann Ortsteil von Finnentrop (Kreis Olpe)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Finnentrop-Ostentrop"}], "identifier": "http://d-nb.info/gnd/1334789134", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334789134", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334789134", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334789134", "source": "GND"}], "authorized_access_point": "Ostentrop"} 1 +2024-09-10 15:47:49.39957 2024-09-10 15:47:49.399574 05e3b33b-dcbf-4235-986a-59e55ff7362b {"md5": "b8bdaed7880f667d6fea8753cbccbb19", "pid": "1334785422", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Egloffstein"}, {"authorized_access_point": "Bieberbach (Egloffstein)"}], "identifier": "http://d-nb.info/gnd/1334785422", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334785422", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334785422", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334785422", "source": "GND"}], "variant_access_point": ["Bieberbach (Egloffstein-Bieberbach)"], "authorized_access_point": "Egloffstein-Bieberbach"} 1 +2024-09-10 15:47:49.456731 2024-09-10 15:47:49.456735 ece7794c-8de8-48c6-8e26-917755c93675 {"md5": "7f779b2c464349ea5d1b84297fbade74", "pid": "1334784493", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=S%C3%B8r-Aurdal&oldid=240707152"], "noteType": "dataSource"}, {"label": ["Kommune im norwegischen Fylke Innlandet"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1334784493", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334784493", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334784493", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334784493", "source": "GND"}], "authorized_access_point": "Sør-Aurdal"} 1 +2024-09-10 15:47:50.588239 2024-09-10 15:47:50.588243 30d4eb52-b88b-467d-a5f8-0dac3d8ddd12 {"md5": "242421d6766515190cd79faf38dedae2", "pid": "1334658196", "note": [{"label": ["Sirenen-Statuen auf der Brücke Pontelungo in Bologna"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bologna"}, {"authorized_access_point": "Pontelungo (Bologna)"}], "identifier": "http://d-nb.info/gnd/1334658196", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334658196", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334658196", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334658196", "source": "GND"}], "variant_access_point": ["Pontelungo (Bologna)"], "authorized_access_point": "Pontelungo (Bologna) - Sfingi"} 1 +2024-09-10 15:47:49.513973 2024-09-10 15:47:49.513977 27a08c99-740d-42b8-96db-83bc6e0891ba {"md5": "7887fabd2c965d41840654784b1eb079", "pid": "1334779015", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Liste_der_Baudenkm%C3%A4ler_in_Gerresheim&oldid=242490329"], "noteType": "dataSource"}, {"label": ["Wurde bereits 1335 in einem Schenkungsvertrag urkundlich erwähnt; Teile der ursprünglichen Holzbalken wurden nach Teilabbruch 1978 in dem Neubau wiedergenutzt"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Düsseldorf"}, {"authorized_access_point": "Düsseldorf-Gerresheim"}], "identifier": "http://d-nb.info/gnd/1334779015", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334779015", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334779015", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334779015", "source": "GND"}], "variant_access_point": ["Gebäudeensemble Gerricusplatz 26-27 (Düsseldorf)"], "authorized_access_point": "Gerricusplatz 26-27 (Düsseldorf)"} 1 +2024-09-10 15:47:49.568135 2024-09-10 15:47:49.568138 032dfc35-863d-4663-bb3f-bd2b31d18d3b {"md5": "8b2ba3835ddaa3383217fb4cca620bd4", "pid": "1334766363", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Posada_(Bogatynia)&oldid=244888515"], "noteType": "dataSource"}, {"label": ["Ortschaft in der Amtshauptmannschaft Zittau; seit 1945 Posada in der polnischen Woiwodschaft Niederschlesien"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Ostritz"}], "identifier": "http://d-nb.info/gnd/1334766363", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334766363", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334766363", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334766363", "source": "GND"}], "variant_access_point": ["Rußdorf"], "authorized_access_point": "Rusdorf (Ostritz)"} 1 +2024-09-10 15:47:49.623742 2024-09-10 15:47:49.623745 587d7652-c1f5-469e-8b8a-3fe85719af9e {"md5": "69bc10f7bb2d8fde9c2eeb2d84f16750", "pid": "1334756465", "note": [{"label": ["Wikipedia - https://pl.wikipedia.org/w/index.php?title=Czerwona_Woda_(wojew%C3%B3dztwo_dolno%C5%9Bl%C4%85skie)&oldid=72559107"], "noteType": "dataSource"}, {"label": ["Dorf im Kreis Zgorzelec der polnischen Woiwodschaft Niederschlesien"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1334756465", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334756465", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334756465", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334756465", "source": "GND"}], "variant_access_point": ["Rothwasser"], "authorized_access_point": "Czerwona Woda"} 1 +2024-09-10 15:47:49.683358 2024-09-10 15:47:49.683363 c08a8d28-aba4-4af9-8f1f-591a0b35e394 {"md5": "3ab8134bda407e9c03ea6091967ba530", "pid": "1334736340", "note": [{"label": ["AKL online - https://www.degruyter.com/database/AKL/entry/_00095457T/html", "Wikipedia - https://de.wikipedia.org/w/index.php?title=Théâtre_des_Champs-Élysées&oldid=244284814"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Paris"}], "identifier": "http://d-nb.info/gnd/1334736340", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334736340", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334736340", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334736340", "source": "GND"}], "authorized_access_point": "Theaterbau des Théâtre des Champs-Élysées (Paris)"} 1 +2024-09-10 15:47:49.74445 2024-09-10 15:47:49.744454 71c25556-c15b-4b5e-8bfd-ba51dd03738d {"md5": "a8a41fb6edd00861b7025286d0109d88", "pid": "1334729824", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Stanowice_(Strzegom)"], "noteType": "dataSource"}, {"label": ["1307 wurde der Ort in einem Dokument als \\"Stanewicz\\" erwähnt und gehörte damals zum Herzogtum Schweidnitz. ... Stonwitz gehörte bis 1932 zum Landkreis Striegau..."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1334729824", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334729824", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334729824", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334729824", "source": "GND"}], "variant_access_point": ["Stannowitz", "Stonwitz"], "authorized_access_point": "Stanowitz"} 1 +2024-09-10 15:47:49.807906 2024-09-10 15:47:49.807912 0853f901-8f4c-499c-80dc-bf149b50c9ca {"md5": "eebee1460a8e212234041ab8da6660a7", "pid": "1334725756", "note": [{"label": ["Hauptstadt der gleichnamigen Provinz in Nordvietnam"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Provinz Hung Yen"}], "identifier": "http://d-nb.info/gnd/1334725756", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334725756", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334725756", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334725756", "source": "GND"}], "variant_access_point": ["Hưng Yên"], "authorized_access_point": "Hung Yen"} 1 +2024-09-10 15:47:49.884236 2024-09-10 15:47:49.884241 17915891-dcdc-4c63-9036-96c3b0edee0d {"md5": "c2d56f9b39dcae925dc616b20989c7a7", "pid": "1334725691", "note": [{"label": ["Homepage - https://hungyen.gov.vn/portal/Pages/default.aspx"], "noteType": "dataSource"}, {"label": ["Provinz in Nordvietnam"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1334725691", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334725691", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334725691", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334725691", "source": "GND"}], "variant_access_point": ["Provinz Hưng Yên", "Tỉnh Hưng Yên"], "authorized_access_point": "Provinz Hung Yen"} 1 +2024-09-10 15:47:49.943288 2024-09-10 15:47:49.943291 ee460959-a046-4655-a53a-bef16951e95d {"md5": "1c2691af3376dc62304b085d4b6291ad", "pid": "1334671486", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Valencia"}], "identifier": "http://d-nb.info/gnd/1334671486", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334671486", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334671486", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334671486", "source": "GND"}], "authorized_access_point": "Monumento al marqués de Campo (Valencia)"} 1 +2024-09-10 15:47:50.005847 2024-09-10 15:47:50.005853 7cd09f3c-b15c-4b1c-9aab-759f770a8c7a {"md5": "74102840256cd860b107886bbb912ddb", "pid": "1334670560", "note": [{"label": ["Kanton Luzern, Kantonales Denkmalverzeichnis und Bauinventar - https://www.geo.lu.ch/map/kulturdenkmal/?FOCUS=2665895:1211586:250&BASEMAP=G", "Search.ch - https://map.search.ch/Luzern,Kornmarkt?pos=665856,211604&zoom=18"], "noteType": "dataSource"}, {"label": ["6004 Luzern. Platz in der Altstadt, davon abgehend der Rathaussteg (S), Brandgässli und Kornmarktgasse (W), Kapellgasse und Furrengasse (O), sowie Werchlaubengässli (NO)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Luzern"}, {"authorized_access_point": "Altstadt (Luzern)"}], "identifier": "http://d-nb.info/gnd/1334670560", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334670560", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334670560", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334670560", "source": "GND"}], "authorized_access_point": "Kornmarkt (Luzern)"} 1 +2024-09-10 15:47:50.068262 2024-09-10 15:47:50.068266 f0480757-554c-4ac0-9ec8-752691db2d78 {"md5": "db663e852b84dabc49802614e6ba3db3", "pid": "1334670390", "note": [{"label": ["Ortsteil der Gemeinde Felixsee im Landkreis Spree-Neiße"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Felixsee"}], "identifier": "http://d-nb.info/gnd/1334670390", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334670390", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334670390", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334670390", "source": "GND"}], "variant_access_point": ["Frycowy Gaj"], "authorized_access_point": "Friedrichshain (Felixsee)"} 1 +2024-09-10 15:47:50.136355 2024-09-10 15:47:50.136359 f39018e6-8d7e-4167-a0d0-63cb80b0eb34 {"md5": "de719c714679c4cc0112b45733860cf0", "pid": "1334670323", "note": [{"label": ["Ehrendenkmal für den Maler José de Ribera"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Valencia"}], "identifier": "http://d-nb.info/gnd/1334670323", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334670323", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334670323", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334670323", "source": "GND"}], "variant_access_point": ["Monument al pintor Josep de Ribera (Valencia)", "Monumento al pintor José de Ribera (Valencia)"], "authorized_access_point": "El pintor Ribera (Valencia)"} 1 +2024-09-10 15:47:50.199966 2024-09-10 15:47:50.199969 bbbf6528-9704-4e29-a387-6183dcbaac42 {"md5": "66c7260a02d0ce5c4b0c3af0444ce94c", "pid": "1334670048", "note": [{"label": ["Ortsteil der Gemeinde Rietzneuendorf-Staakow im Landkreis Dahme-Spreewald"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Rietzneuendorf-Staakow"}], "identifier": "http://d-nb.info/gnd/1334670048", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334670048", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334670048", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334670048", "source": "GND"}], "variant_access_point": ["Frycowy Dwor"], "authorized_access_point": "Friedrichshof"} 1 +2024-09-10 15:47:50.269842 2024-09-10 15:47:50.269845 939dfd65-8caa-4bbe-8fb2-e505fccbff04 {"md5": "8f645c988466d3ceb8a4b55d4211dc56", "pid": "1334666474", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Weibern (Landkreis Ahrweiler)"}], "identifier": "http://d-nb.info/gnd/1334666474", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334666474", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334666474", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334666474", "source": "GND"}], "authorized_access_point": "Heiligenhäuschen (Weibern, Landkreis Ahrweiler)"} 1 +2024-09-10 15:47:50.329118 2024-09-10 15:47:50.329122 660e3c85-664b-4ccd-bd65-e0e63d41a496 {"md5": "fd0ebd3a60ac1309a0fccc4a055b3ce8", "pid": "1334665036", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Weibern (Landkreis Ahrweiler)"}], "identifier": "http://d-nb.info/gnd/1334665036", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334665036", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334665036", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334665036", "source": "GND"}], "authorized_access_point": "Mariensäule Weibern (Weibern, Landkreis Ahrweiler)"} 1 +2024-09-10 15:47:50.393753 2024-09-10 15:47:50.393757 f5e20974-673c-4ddf-a0c4-c84308164329 {"md5": "da808d47d92c3e2d2fcf353fff0e59f9", "pid": "1334665028", "note": [{"label": ["Gemeinde im Landkreis Spree-Neiße"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1334665028", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334665028", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334665028", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334665028", "source": "GND"}], "variant_access_point": ["Kopańce/Sprjewja"], "authorized_access_point": "Neuhausen/Spree"} 1 +2024-09-10 15:47:50.454382 2024-09-10 15:47:50.454386 6ebb81db-c4cf-4622-9e15-dc4ced796627 {"md5": "db712476d13dd5f0a8c05f315652ec0a", "pid": "1334664242", "note": [{"label": ["Ortsteil der Gemeinde Neuhausen/Spree im Landkreis Spree-Neiße"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Neuhausen/Spree"}], "identifier": "http://d-nb.info/gnd/1334664242", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334664242", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334664242", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334664242", "source": "GND"}], "variant_access_point": ["Dubrawka"], "authorized_access_point": "Frauendorf (Neuhausen/Spree)"} 1 +2024-09-10 15:47:50.519278 2024-09-10 15:47:50.519283 3a450983-25dc-4f42-94fc-9fafa72fb948 {"md5": "e2c64307b07e756fc97ab2b1435f9f06", "pid": "1334661073", "note": [{"label": ["Ortsteil der Gemeinde Kolkwitz im Landkreis Spree-Neiße"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Kolkwitz"}], "identifier": "http://d-nb.info/gnd/1334661073", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334661073", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334661073", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334661073", "source": "GND"}], "variant_access_point": ["Dubje"], "authorized_access_point": "Eichow"} 1 +2024-09-10 15:47:50.651329 2024-09-10 15:47:50.651333 f8962077-9437-4d94-a939-4470305fbd48 {"md5": "9c949785120f2a0b518527ba7c5fee86", "pid": "1334657726", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Departement Manche"}], "identifier": "http://d-nb.info/gnd/1334657726", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334657726", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334657726", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334657726", "source": "GND"}], "authorized_access_point": "Écausseville"} 1 +2024-09-10 15:47:50.721286 2024-09-10 15:47:50.721289 5df0d0f8-dbb6-4055-bba1-04886a068c52 {"md5": "d031807816d791016892d8b7d42c6cbd", "pid": "133465641X", "note": [{"label": ["1268 erstmals urkundlich erwähnt, heutiger Kirchenbau stammt aus dem Jahr 1578 mit Ergänzungen im 18. und 19. Jh."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Wardenburg"}], "identifier": "http://d-nb.info/gnd/133465641X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133465641X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133465641X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133465641X", "source": "GND"}], "authorized_access_point": "Marienkirche (Wardenburg)"} 1 +2024-09-10 15:47:50.783479 2024-09-10 15:47:50.783483 b4c2c42a-f483-455f-b1b8-be3ec91e2564 {"md5": "86b8f827ab668ef21093b7a8952ea453", "pid": "1334632707", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Rieflinghausen&oldid=243763184"], "noteType": "dataSource"}, {"label": ["1317 als \\"Rylinchusen\\" erstmals erwähnt"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Helden-Rieflinghausen"}], "identifier": "http://d-nb.info/gnd/1334632707", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334632707", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334632707", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334632707", "source": "GND"}], "variant_access_point": ["Rylinchusen", "Rifelinchusen", "Burschafft Ryffelinghaußen"], "authorized_access_point": "Rieflinghausen"} 1 +2024-09-10 15:47:50.843816 2024-09-10 15:47:50.843821 396a8b7b-59b4-48f9-a294-e231fe700096 {"md5": "56a8141246c373c81978c90018e1e092", "pid": "133463209X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Rieflinghausen&oldid=243763184"], "noteType": "dataSource"}, {"label": ["Zum 1. Juli 1969 als Teil der Gemeinde Helden in die Stadt Attendorn eingegliedert"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Attendorn-Rieflinghausen"}], "related": [{"authorized_access_point": "Helden (Attendorn)"}], "identifier": "http://d-nb.info/gnd/133463209X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133463209X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133463209X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133463209X", "source": "GND"}], "authorized_access_point": "Helden-Rieflinghausen"} 1 +2024-09-10 15:47:50.90415 2024-09-10 15:47:50.904153 8f3b38c5-107a-4501-acc4-6da2a5706a1b {"md5": "8a4aaf7d317386721bc177af8c3c2215", "pid": "133456325X", "note": [{"label": ["Search.ch - https://search.ch/map/6004-Luzern,St.Karli-Str.?pos=664859,212246&zoom=17", "Kanton Luzern, Kantonales Denkmalverzeichnis und Bauinventar - https://www.geo.lu.ch/map/kulturdenkmal/?FOCUS=2664987:1212278:2000&BASEMAP=G"], "noteType": "dataSource"}, {"label": ["6004 Luzern. Langgezogene Strasse, teilweise parallel zum rechtsseitigen Reussufer, (gegabelt) von Geissmattstrasse in die Friedentalstrasse führend. Nicht zu verwechseln mit Fortsetzung von St.-Karlibrücke zur linken Seite der Reuss (dieser Teil 6003 Luzern: https://map.search.ch/6003-Luzern,St.Karli-Str.?pos=664806,211904&zoom)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Luzern"}], "identifier": "http://d-nb.info/gnd/133456325X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133456325X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133456325X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133456325X", "source": "GND"}], "variant_access_point": ["St.-Karli-Strasse (Luzern)", "St. Karlistrasse (Luzern)"], "authorized_access_point": "Sankt-Karli-Strasse (Luzern)"} 1 +2024-09-10 15:47:50.977285 2024-09-10 15:47:50.97729 2d660915-605d-4b45-95a2-d73fcb7515ee {"md5": "a2edea97b2b870ad7ccca3af39fb7e22", "pid": "1334560994", "note": [{"label": ["Search.ch - https://map.search.ch/Luzern,Pfistergasse?pos=665610,211417&zoom=17", "Kanton Luzern, Kantonales Denkmalverzeichnis und Bauinventar - https://www.geo.lu.ch/map/kulturdenkmal/?FOCUS=2665615:1211443:1000&BASEMAP=G"], "noteType": "dataSource"}, {"label": ["6003 Luzern. Gasse in der Altstadt, Verbindung von Militärstrasse zu Philipp-Anton-von-Segesser-Platz (Burgerstrasse)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Luzern"}, {"authorized_access_point": "Altstadt (Luzern)"}], "identifier": "http://d-nb.info/gnd/1334560994", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334560994", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334560994", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334560994", "source": "GND"}], "authorized_access_point": "Pfistergasse (Luzern)"} 1 +2024-09-10 15:47:51.044483 2024-09-10 15:47:51.044487 b3b7c24e-da5b-473d-bf61-db24f4e15996 {"md5": "5f87243d6071ff59f9b3ab223760221f", "pid": "1334559805", "note": [{"label": ["Search.ch - https://map.search.ch/Luzern,Neustadtstr.?pos=666097,210474&zoom=16", "Kanton Luzern, Kantonales Denkmalverzeichnis und Bauinventar - https://www.geo.lu.ch/map/kulturdenkmal/?FOCUS=2665987:1210348:1000&BASEMAP=G"], "noteType": "dataSource"}, {"label": ["6003 Luzern. Vom Bundesplatz aus in süd(westliche) Richtung laufende Strasse bis zur Bireggstrasse."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Luzern"}], "identifier": "http://d-nb.info/gnd/1334559805", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334559805", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334559805", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334559805", "source": "GND"}], "authorized_access_point": "Neustadtstrasse (Luzern)"} 1 +2024-09-10 15:47:56.096468 2024-09-10 15:47:56.096473 6fbe97ec-7284-4525-9271-716a4cf47804 {"md5": "0dfdc98352808201332676de11bb85b5", "pid": "1331379539", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Trogen (Landkreis Hof, Saale)"}], "identifier": "http://d-nb.info/gnd/1331379539", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331379539", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331379539", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331379539", "source": "GND"}], "variant_access_point": ["Ullitz (Trogen-Ullitz)"], "authorized_access_point": "Trogen-Ullitz"} 1 +2024-09-10 15:47:51.106201 2024-09-10 15:47:51.106205 af3436ac-5962-47a9-9293-ab40f7ad3967 {"md5": "00ed93460df4e86c60f599d6d8b65ce5", "pid": "1334558590", "note": [{"label": ["Search.ch - https://map.search.ch/Luzern,Murbacherstr.?pos=666071,211129&zoom=16", "Kanton Luzern, Kantonales Denkmalverzeichnis und Bauinventar - https://www.geo.lu.ch/map/kulturdenkmal/?FOCUS=2665999:1211098:1000&BASEMAP=G"], "noteType": "dataSource"}, {"label": ["6003 Luzern. Mit Unterbrechungen von SW (Obergrundstrasse) nach NO (Zentralstrasse) verlaufende Strasse in Luzerns Hirschmattquartier (Neustadt)."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Luzern-Hirschmatt"}, {"authorized_access_point": "Luzern"}], "identifier": "http://d-nb.info/gnd/1334558590", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334558590", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334558590", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334558590", "source": "GND"}], "authorized_access_point": "Murbacherstrasse (Luzern)"} 1 +2024-09-10 15:47:51.173363 2024-09-10 15:47:51.173368 751552a3-ed84-4de8-a0c1-0b8d48371837 {"md5": "5ece88944182b63a19dbe34384ec123b", "pid": "1334556687", "note": [{"label": ["Kanton Luzern, Kantonales Denkmalverzeichnis und Bauinventar - https://www.geo.lu.ch/map/kulturdenkmal/?FOCUS=2665615:1211443:1000&BASEMAP=G", "Search.ch - https://map.search.ch/Luzern,St.Leodegar-Str.?pos=666448,211966&zoom=18"], "noteType": "dataSource"}, {"label": ["6006 Luzern. Kurze West-Ost-Verbindungsstrasse zwischen Löwenstrasse (W) und Stiftsstrasse (O), im Hofquartier Luzern"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Luzern"}], "identifier": "http://d-nb.info/gnd/1334556687", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334556687", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334556687", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334556687", "source": "GND"}], "variant_access_point": ["St.-Leodegar-Strasse (Luzern)", "St. Leodegar-Str. (Luzern)"], "authorized_access_point": "Sankt-Leodegar-Strasse (Luzern)"} 1 +2024-09-10 15:47:51.242189 2024-09-10 15:47:51.242192 24ac6eb8-7224-4326-a7b9-e9e8b6515363 {"md5": "03ded0fe32efbe3174e3d2e1e79c6c95", "pid": "1334554471", "note": [{"label": ["Wikipedia - https://it.wikipedia.org/w/index.php?title=Santuario_della_Madonna_del_Bosco_(Ozegna)&oldid=138833812"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Ozegna"}], "identifier": "http://d-nb.info/gnd/1334554471", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334554471", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334554471", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334554471", "source": "GND"}], "variant_access_point": ["Madonna del Bosco (Ozegna)"], "authorized_access_point": "Santuario della Madonna del Bosco (Ozegna)"} 1 +2024-09-10 15:47:51.312924 2024-09-10 15:47:51.312927 86a87320-5d9f-4b4f-b0d0-dc859a80bc0f {"md5": "8463a807e6fe47a2ddf097238849dca5", "pid": "1334554218", "note": [{"label": ["Kanton Luzern, Kantonales Denkmalverzeichnis und Bauinventar - https://map.search.ch/Luzern,Weggisgasse?pos=665870,211719&zoom=17; https://www.geo.lu.ch/map/kulturdenkmal/?FOCUS=2665900:1211665:1000&BASEMAP=G"], "noteType": "dataSource"}, {"label": ["6004 Luzern. Vom Hirschenplatz (SW) zum Falkenplatz (NO) führende Gasse in der Altstadt Luzerns"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Luzern"}, {"authorized_access_point": "Altstadt (Luzern)"}], "identifier": "http://d-nb.info/gnd/1334554218", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334554218", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334554218", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334554218", "source": "GND"}], "authorized_access_point": "Weggisgasse (Luzern)"} 1 +2024-09-10 15:47:51.371598 2024-09-10 15:47:51.371603 1c7160d1-0c75-490b-b7c8-85099c219890 {"md5": "f7be10f6c8f70228c828ae87fc8ee0f4", "pid": "1334552940", "note": [{"label": ["Kanton Luzern, Kantonales Denkmalverzeichnis und Bauinventar - https://map.geo.lu.ch/kulturgueter/denkmaeler/?FOCUS=2666644:1210607:560"], "noteType": "dataSource"}, {"label": ["Adresse: Tribschenstrasse 51, 6005 Luzern"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Luzern"}], "identifier": "http://d-nb.info/gnd/1334552940", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334552940", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334552940", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334552940", "source": "GND"}], "variant_access_point": ["Das Gewerbegebäude in Luzern"], "authorized_access_point": "Gewerbegebäude (Luzern)"} 1 +2024-09-10 15:47:51.449529 2024-09-10 15:47:51.449532 e1bd0de0-1e08-4f9f-84ea-9dcd7ffccebf {"md5": "5c8364565c4cab06506002d1e4710074", "pid": "1334552908", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Departement Seine-et-Marne"}], "identifier": "http://d-nb.info/gnd/1334552908", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334552908", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334552908", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334552908", "source": "GND"}], "authorized_access_point": "Lésigny (Departement Seine-et-Marne)"} 1 +2024-09-10 15:47:51.50789 2024-09-10 15:47:51.507894 bf143cee-338f-4b73-bfc7-ba8ef78ba7ed {"md5": "1f9f409f9af9076e5453940d6db9d718", "pid": "1334552606", "note": [{"label": ["Kanton Luzern, Kantonales Denkmalverzeichnis und Bauinventar - https://map.geo.lu.ch/kulturgueter/denkmaeler/?FOCUS=2674446:1209133:560; https://www.archiv-weggis.ch/2022/03/07/der-gl%C3%BCcksfall-junkerhaus/"], "noteType": "dataSource"}, {"label": ["Adresse: Hertensteinstrasse 51, 6353 Weggis."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Weggis"}], "identifier": "http://d-nb.info/gnd/1334552606", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334552606", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334552606", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334552606", "source": "GND"}], "authorized_access_point": "Junkerhaus (Weggis)"} 1 +2024-09-10 15:47:58.418041 2024-09-10 15:47:58.418045 0015f3cf-371e-4739-8507-1d28e6155b48 {"md5": "2a12e00846cd63316c2ca4fd48a1ab5b", "pid": "1237279453", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Woiwodschaft Masowien"}], "identifier": "http://d-nb.info/gnd/1237279453", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1237279453", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1237279453", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1237279453", "source": "GND"}], "variant_access_point": ["Węgrów", "Ziemia węgrowska"], "authorized_access_point": "Węgrów - Region"} 1 +2024-09-10 15:47:51.583952 2024-09-10 15:47:51.583958 132e4473-f04f-4f31-a1f0-0be133afbf11 {"md5": "e9c9b3e9d1293c06a67e51fa3343214e", "pid": "1334538085", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Schloss_Stockau_(Reichertshofen)&oldid=235947920"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Reichertshofen"}], "identifier": "http://d-nb.info/gnd/1334538085", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334538085", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334538085", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334538085", "source": "GND"}], "variant_access_point": ["Hofmarktschloss Stockau (Reichertshofen)"], "authorized_access_point": "Schloss Stockau (Reichertshofen)"} 1 +2024-09-10 15:47:51.657477 2024-09-10 15:47:51.65748 6bf5a575-5543-44ea-8b4b-ff6b7ec0a3e2 {"md5": "851b06084bfb9a800ddfbcc5a4fbdcf3", "pid": "133453666X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Marienkirche_(Ehningen)&oldid=241971385"], "noteType": "dataSource"}, {"label": ["Anfang des 17. Jhs nach einem Entwurf von Heinrich Schickhardt umgebaut; Glasmalereien im Chor stammen von Rudolf Yelin Anfang des 20. Jh."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Ehningen"}], "identifier": "http://d-nb.info/gnd/133453666X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133453666X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133453666X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133453666X", "source": "GND"}], "variant_access_point": ["Evangelische Pfarrkirche St. Marien (Ehningen)", "St. Marien (Ehningen)", "Sankt Marien (Ehningen)"], "authorized_access_point": "Marienkirche (Ehningen)"} 1 +2024-09-10 15:47:51.729631 2024-09-10 15:47:51.729636 6e4d7bb5-eba5-4c4b-a424-f02c7e84a2d2 {"md5": "70c3aa61c6fff91de7c7f539aa219557", "pid": "1334531153", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Villenkolonie_Buchschlag&oldid=235425024"], "noteType": "dataSource"}, {"label": ["Erbaut von 1905 bis ca. 1910."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Buchschlag"}, {"authorized_access_point": "Dreieich-Buchschlag"}, {"authorized_access_point": "Dreieich"}], "identifier": "http://d-nb.info/gnd/1334531153", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334531153", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334531153", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334531153", "source": "GND"}], "authorized_access_point": "Villenkolonie Buchschlag (Dreieich)"} 1 +2024-09-10 15:47:51.800144 2024-09-10 15:47:51.800149 b22cf23a-e19a-45ba-8d55-37f56ec3ac20 {"md5": "27a2696bf72e47244589628949da313f", "pid": "1334516766", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/w/index.php?title=Oakhurst,_California&oldid=1225176061"], "noteType": "dataSource"}, {"label": ["Für die Sacherschließung wird bei Splits nur diese (das ist die neueste/jüngste) Namensform verwendet."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1334516766", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334516766", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334516766", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334516766", "source": "GND"}], "variant_access_point": ["Fresno Flats, Calif."], "authorized_access_point": "Oakhurst, Calif."} 1 +2024-09-10 15:47:51.881978 2024-09-10 15:47:51.881984 7b5f5c22-3825-430e-b135-310fcce316d9 {"md5": "0cb09945153707a4f82ddb8f97a7ef7a", "pid": "1334502854", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Burg_Lauenstein_(Frankenwald)&oldid=243193355"], "noteType": "dataSource"}, {"label": ["Mittelalterliche Höhenburg in Oberfranken"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Ludwigsstadt"}, {"authorized_access_point": "Ludwigsstadt-Lauenstein"}], "identifier": "http://d-nb.info/gnd/1334502854", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334502854", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334502854", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334502854", "source": "GND"}], "variant_access_point": ["Burg Lauenstein (Ludwigsstadt-Lauenstein)", "Burg (Lauenstein)", "Burg und Renaissanceschloss Lauenstein (Ludwigsstadt)"], "authorized_access_point": "Burg Lauenstein (Ludwigsstadt)"} 1 +2024-09-10 15:47:51.956616 2024-09-10 15:47:51.95662 1635b89a-64c5-4db3-afc4-c905660d6aaf {"md5": "a4bbb1c3da653f3a50f8b04689dadb7d", "pid": "1334486573", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Lissabon"}], "identifier": "http://d-nb.info/gnd/1334486573", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334486573", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334486573", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334486573", "source": "GND"}], "variant_access_point": ["Paço Real (Lissabon)"], "authorized_access_point": "Paço de Alcáçova (Lissabon)"} 1 +2024-09-10 15:47:52.032901 2024-09-10 15:47:52.032907 5d5cb25e-6508-44d5-b09b-271731af99da {"md5": "c84eeecc258edcb7e11232213c1aba7b", "pid": "1334485763", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Jesi"}], "identifier": "http://d-nb.info/gnd/1334485763", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334485763", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334485763", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334485763", "source": "GND"}], "variant_access_point": ["Vallesina"], "authorized_access_point": "Vallesina"} 1 +2024-09-10 15:47:52.116156 2024-09-10 15:47:52.116161 99c1c8ba-0a0d-4f6c-bb02-79308ff4af68 {"md5": "03547272d185738c7b2791a82e7d864a", "pid": "1334319561", "note": [{"label": ["Homepage - https://www.kreisarchiv-stormarn.de/mediadb/238106/", "Homepage - https://ams-architekten.de/projekt-barsbuettel.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Barsbüttel"}], "identifier": "http://d-nb.info/gnd/1334319561", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334319561", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334319561", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334319561", "source": "GND"}], "variant_access_point": ["Barsbütteler Rathaus (Barsbüttel)"], "authorized_access_point": "Rathaus Barsbüttel (Barsbüttel)"} 1 +2024-09-10 15:47:52.188629 2024-09-10 15:47:52.188635 0c21427a-603b-4e4e-883e-fc42b6fc4cd3 {"md5": "9d40e3ffb7057d8876bd616b5a4e3570", "pid": "1334318492", "note": [{"label": ["Ort im Landkreis Gießen, Hessen; Ende 1970 nach Grünberg eingemeindet"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Grünberg-Stockhausen"}, {"authorized_access_point": "Landkreis Gießen"}], "identifier": "http://d-nb.info/gnd/1334318492", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334318492", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334318492", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334318492", "source": "GND"}], "authorized_access_point": "Stockhausen (Landkreis Gießen)"} 1 +2024-09-10 15:47:52.311172 2024-09-10 15:47:52.311178 c15fb5c5-baf7-4ef6-82e5-65e12f83aa8a {"md5": "1038fb6462bd5e402cbee4ec61c7d6dd", "pid": "1334318069", "note": [{"label": ["Homepage - https://www.stormarnlexikon.de/rathausgrosshansdorf/", "Homepage - http://archiv.heimatverein-grosshansdorf.de/Wald-1960-08-gesamt.pdf"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Großhansdorf"}], "identifier": "http://d-nb.info/gnd/1334318069", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334318069", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334318069", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334318069", "source": "GND"}], "variant_access_point": ["Großhansdorfer Rathaus (Großhansdorf)"], "authorized_access_point": "Rathaus Großhansdorf (Großhansdorf)"} 1 +2024-09-10 15:47:52.451213 2024-09-10 15:47:52.451218 c170efb7-be86-45e4-b31f-327773c6da7f {"md5": "a1cc04598aab19401caca56df9562c90", "pid": "1334313776", "note": [{"label": ["Ort im Landkreis Gießen, Hessen; Ende 1970 nach Grünberg eingemeindet"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Grünberg-Queckborn"}], "identifier": "http://d-nb.info/gnd/1334313776", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334313776", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334313776", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334313776", "source": "GND"}], "authorized_access_point": "Queckborn"} 1 +2024-09-10 15:47:52.516779 2024-09-10 15:47:52.516782 e7b13c48-b801-4d4f-b5da-1c2ed6558e70 {"md5": "2cd0237689c7c6fd37f978f209e70155", "pid": "1334312974", "note": [{"label": ["Homepage - https://www.stadtmarketing-glinde.de/rathaus"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Glinde (Stormarn)"}], "identifier": "http://d-nb.info/gnd/1334312974", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334312974", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334312974", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334312974", "source": "GND"}], "variant_access_point": ["Glinder Rathaus (Glinde)"], "authorized_access_point": "Rathaus Glinde (Glinde)"} 1 +2024-09-10 15:47:52.574664 2024-09-10 15:47:52.574667 a8052907-0c9f-42f2-960d-95bd7227254c {"md5": "8b3943572ee0faf55237c4e980fae65e", "pid": "1334310661", "note": [{"label": ["Ort im Landkreis Gießen, Hessen; Ende 1970 nach Grünberg eingemeindet"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Grünberg-Lumda"}], "identifier": "http://d-nb.info/gnd/1334310661", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334310661", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334310661", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334310661", "source": "GND"}], "authorized_access_point": "Lumda"} 1 +2024-09-10 15:47:52.627832 2024-09-10 15:47:52.627836 14d2be47-c2ee-4ca6-b5a1-c7b479abb8a3 {"md5": "64d17e088b6c616571b3e412162cc676", "pid": "1334302111", "note": [{"label": ["Homepage - https://www.stormarnlexikon.de/rathausreinbek", "Homepage - https://www.reinbeker-geschichten.de/das-rathaus-reinbek"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Reinbek"}], "identifier": "http://d-nb.info/gnd/1334302111", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334302111", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334302111", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334302111", "source": "GND"}], "variant_access_point": ["Reinbeker Rathaus (Reinbek)"], "authorized_access_point": "Rathaus Reinbek (Reinbek)"} 1 +2024-09-10 15:47:52.690532 2024-09-10 15:47:52.690535 1e009dd1-65a0-4c32-8f3e-491d2611ed74 {"md5": "2e95fb8400afa24d6cc1d97f40061ad3", "pid": "1334300054", "note": [{"label": ["Ort im Landkreis Gießen, Hessen; Ende 1971 nach Grünberg eingemeindet"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Grünberg-Lehnheim"}], "identifier": "http://d-nb.info/gnd/1334300054", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334300054", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334300054", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334300054", "source": "GND"}], "authorized_access_point": "Lehnheim"} 1 +2024-09-10 15:47:52.749776 2024-09-10 15:47:52.749781 d2c67f2c-1770-4a97-8e0f-fb3913304aa3 {"md5": "d869d013148fb543a64a5d3386ae4e73", "pid": "133422725X", "note": [{"label": ["1970 Schließung und seitdem allmähliche Umgestaltung des historischen Friedhofs zu einem naturnah gestalteten Park"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Arnsberg"}, {"authorized_access_point": "Arnsberg-Neheim"}], "identifier": "http://d-nb.info/gnd/133422725X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133422725X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133422725X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133422725X", "source": "GND"}], "authorized_access_point": "Möhnefriedhof (Arnsberg)"} 1 +2024-09-10 15:47:52.814047 2024-09-10 15:47:52.814051 1707e6ff-e706-47e7-9cdb-b02bc90b4fcc {"md5": "e170aa7eb70aef604763d03bf6e2d5ca", "pid": "1334221979", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Furth (Landkreis Landshut)"}], "identifier": "http://d-nb.info/gnd/1334221979", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334221979", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334221979", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334221979", "source": "GND"}], "variant_access_point": ["Arth (Furth-Arth)"], "authorized_access_point": "Furth-Arth"} 1 +2024-09-10 15:47:52.872269 2024-09-10 15:47:52.872272 5e5e3730-e2ca-4301-a6c7-68bfdbdbf3c8 {"md5": "2861f4fa1c7eb2fe991157f101bca4bb", "pid": "1334198845", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/w/index.php?title=Holy_Trinity_Church,_Shanghai&oldid=1177032584"], "noteType": "dataSource"}, {"label": ["Protestantische Kirche im Stadtteil Huangpu von Schanghai"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Schanghai"}], "identifier": "http://d-nb.info/gnd/1334198845", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334198845", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334198845", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334198845", "source": "GND"}], "variant_access_point": ["Dreifaltigkeitskirche (Schanghai)", "Trinity Church (Schanghau)", "Holy Trinity Cathedral (Schanghai)", "上海圣三一堂", "Shànghǎi shèng sānyī táng"], "authorized_access_point": "Holy Trinity Church (Schanghai)"} 1 +2024-09-10 15:47:52.938328 2024-09-10 15:47:52.938331 4beaf97d-4f5b-4cac-a4f3-77cdec19ca64 {"md5": "27a3a8d8ca97a28c11f2bfc435051200", "pid": "1334117918", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bad Driburg"}], "identifier": "http://d-nb.info/gnd/1334117918", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334117918", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334117918", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334117918", "source": "GND"}], "variant_access_point": ["Mühlenpforte (Bad Driburg)"], "authorized_access_point": "Stadtgarten Bad Driburg (Bad Driburg)"} 1 +2024-09-10 15:47:52.997913 2024-09-10 15:47:52.997917 925137e9-022d-40ff-95e1-33b6b9a6dc33 {"md5": "7ea2ddde83b20bfafd16c1bd2d380669", "pid": "1334101221", "note": [{"label": ["Wikipedia - https://it.wikipedia.org/w/index.php?title=Santuario_della_Madonna_della_Neve_(Casto)&oldid=137435328"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Casto"}, {"authorized_access_point": "Auro"}], "identifier": "http://d-nb.info/gnd/1334101221", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334101221", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334101221", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334101221", "source": "GND"}], "variant_access_point": ["Madonna della Neve (Casto)"], "authorized_access_point": "Santuario della Madonna della Neve (Casto)"} 1 +2024-09-10 15:47:53.063549 2024-09-10 15:47:53.063555 7bb5e700-b129-4669-9d58-62333288d1e3 {"md5": "bb1868951774314cd67cf7a73cf0296f", "pid": "1334086826", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Ostrov&oldid=239139996"], "noteType": "dataSource"}, {"label": ["Gemeinde im Kreis Constanţa"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Constanṭa"}], "identifier": "http://d-nb.info/gnd/1334086826", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334086826", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334086826", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334086826", "source": "GND"}], "authorized_access_point": "Ostrov (Constanṭa)"} 1 +2024-09-10 15:47:53.12125 2024-09-10 15:47:53.121253 9f2b7683-a3f5-4af7-a7c3-0f6b92cfcf8a {"md5": "7dbe54c06524ffb23fcbf0debb9cd8b3", "pid": "1334027250", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=%C8%98oimo%C8%99&oldid=243040757"], "noteType": "dataSource"}, {"label": ["Ort im Westen Rumäniens und gehört zur Kleinstadt Lipova (Lippa) im Kreis Arad im Banat"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1334027250", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334027250", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334027250", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334027250", "source": "GND"}], "variant_access_point": ["Solymosvár", "Schojmosch", "Schoimosch"], "authorized_access_point": "Şoimoş"} 1 +2024-09-10 15:47:53.184931 2024-09-10 15:47:53.184936 ef61f4d4-4b91-4679-ad53-e184bbe32606 {"md5": "481efd70a5717680cd4ea946985f8d45", "pid": "1334024804", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Liste_von_Pl%C3%A4tzen_und_Alleen_in_der_Altstadt_von_Regensburg&oldid=246052949", "RI II,4 n. 1657, in: Regesta Imperii Online - http://www.regesta-imperii.de/id/1007-11-01_7_0_2_4_1_343_1657"], "noteType": "dataSource"}, {"label": ["Nachgewiesen bereits 1007, Standort von 2 Gehöften, beschreibt eine Wasserquelle oder einen Wasserstau-Schwall in der Donau und das zur Donau hin abfallende Gelände."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Donau"}], "identifier": "http://d-nb.info/gnd/1334024804", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334024804", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334024804", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334024804", "source": "GND"}], "variant_access_point": ["Brunnleite (Donau)"], "authorized_access_point": "Brunnelaite (Donau)"} 1 +2024-09-10 15:47:53.265673 2024-09-10 15:47:53.265677 f428146d-9787-409c-8d06-02748ead0efc {"md5": "9fb783272ac0be16cb1e378249155a0c", "pid": "1334011753", "note": [{"label": ["Dorf in Polen", "Für die Sacherschließung wird bei Splits nur diese (das ist die neueste/jüngste) Namensform verwendet."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Sonnwalde"}], "identifier": "http://d-nb.info/gnd/1334011753", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334011753", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334011753", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334011753", "source": "GND"}], "variant_access_point": ["Sonnwalde"], "authorized_access_point": "Radziejewo"} 1 +2024-09-10 15:47:53.324719 2024-09-10 15:47:53.324723 6fe8ee37-0aa8-4aed-9d50-38991d73a870 {"md5": "ba70f270704d1b733d8d4d1ea1bfacb0", "pid": "1334011079", "note": [{"label": ["Ehemalige Gemeinde im Landkreis Braunsberg; seit 1945 zu Polen gehörend (Radziejewo)", "In der Sacherschließung nicht zu verwenden; für die Sacherschließung wird bei Splits nur die neueste/jüngste Namensform verwendet."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Radziejewo"}], "identifier": "http://d-nb.info/gnd/1334011079", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334011079", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334011079", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334011079", "source": "GND"}], "authorized_access_point": "Sonnwalde"} 1 +2024-09-10 15:47:53.38832 2024-09-10 15:47:53.388323 56963cf1-3d03-440c-80f1-2997bcd2ef21 {"md5": "a3227bf3270c14662bb0686acbd9e41b", "pid": "1334001529", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Ignalin_(Lidzbark_Warmi%C5%84ski)&oldid=203537377"], "noteType": "dataSource"}, {"label": ["In der Sacherschließung nicht zu verwenden; für die Sacherschließung wird bei Splits nur die neueste/jüngste Namensform verwendet."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Ignalin"}], "identifier": "http://d-nb.info/gnd/1334001529", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334001529", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334001529", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334001529", "source": "GND"}], "authorized_access_point": "Reimerswalde"} 1 +2024-09-10 15:47:53.466871 2024-09-10 15:47:53.466877 b38555b0-8061-46cd-960e-643dd78fa139 {"md5": "70594e576c877cb7c04e247baf0aa514", "pid": "1333989954", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Ignalin_(Lidzbark_Warmi%C5%84ski)&oldid=203537377"], "noteType": "dataSource"}, {"label": ["Für die Sacherschließung wird bei Splits nur diese (das ist die neueste/jüngste) Namensform verwendet."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Reimerswalde"}], "identifier": "http://d-nb.info/gnd/1333989954", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333989954", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333989954", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333989954", "source": "GND"}], "variant_access_point": ["Lidzbark Warmiński-Ignalin", "Ignalin (Lidzbark Warmiński)", "Reimerswalde"], "authorized_access_point": "Ignalin"} 1 +2024-09-10 15:47:53.557138 2024-09-10 15:47:53.557143 a9935a57-fc4a-4411-b9b2-4e2f22536092 {"md5": "a7823461786093a073943cba1313a1db", "pid": "1333660758", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Frielinghausen_(Meschede)&oldid=182076348"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Meschede"}], "identifier": "http://d-nb.info/gnd/1333660758", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333660758", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333660758", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333660758", "source": "GND"}], "variant_access_point": ["Frielinghausen (Meschede)"], "authorized_access_point": "Meschede-Frielinghausen"} 1 +2024-09-10 15:47:53.627746 2024-09-10 15:47:53.62775 5268a685-6d44-4df4-a312-d5dda66233ee {"md5": "05f1b8df069ec8915b4c82ffdf4e1bc3", "pid": "1333582501", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Tolla&oldid=239496022"], "noteType": "dataSource"}, {"label": ["Gemeinde im französischen Département Corse-du-Sud in der Region Korsika"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1333582501", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333582501", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333582501", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333582501", "source": "GND"}], "variant_access_point": ["Todda"], "authorized_access_point": "Tolla"} 1 +2024-09-10 15:47:53.688549 2024-09-10 15:47:53.688553 a94a0a63-ffa6-44da-af65-a18714efd6cc {"md5": "d0f01d003904c89767b63945c2924483", "pid": "1333570511", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Bystrez_(Werchowyna)&oldid=223341029", "Geonames - https://www.geonames.org/711003/bystrets.html"], "noteType": "dataSource"}, {"label": ["Dorf in der ukrainischen Oblast Iwano-Frankiwsk, westlich vom Rajonzentrum Werchowyna"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1333570511", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333570511", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333570511", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333570511", "source": "GND"}], "variant_access_point": ["Bystrecʹ", "Bystrets"], "authorized_access_point": "Bystrez"} 1 +2024-09-10 15:47:53.750128 2024-09-10 15:47:53.750132 fb9d3f2b-bc83-4dd1-9a87-ec3ca133244d {"md5": "3ad25accbcee91d0a118a6f98cfb3b16", "pid": "133355513X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Horevun"}], "identifier": "http://d-nb.info/gnd/133355513X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133355513X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133355513X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133355513X", "source": "GND"}], "variant_access_point": ["Wüstung Holzheim"], "authorized_access_point": "Holzheim (Horevun, Wüstung)"} 1 +2024-09-10 15:47:53.80592 2024-09-10 15:47:53.805923 c4b4cd6b-d5f3-489f-a935-442c0734d997 {"md5": "903b071ea5f2639514479ea450b38bc9", "pid": "1333333668", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1333333668", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333333668", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333333668", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333333668", "source": "GND"}], "variant_access_point": ["Teubentz", "Wüstung Teubnitz", "Wüstung Teubentz", "Teubnitz (Ahornthal)"], "authorized_access_point": "Teubnitz"} 1 +2024-09-10 15:47:53.861539 2024-09-10 15:47:53.861542 ca50a5df-bfe4-43d7-828f-ec2b22c313a9 {"md5": "1abff8e635094c3e5b221c6b3fdd6d23", "pid": "1333321090", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Siedlung_Bornheimer_Hang&oldid=244829487"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Frankfurt am Main"}, {"authorized_access_point": "Frankfurt-Bornheim"}], "identifier": "http://d-nb.info/gnd/1333321090", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333321090", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333321090", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333321090", "source": "GND"}], "variant_access_point": ["Siedlung Bornheimer Hang", "Siedlung Bornheimer Hang (Frankfurt-Bornheim)", "Ernst-May-Siedlung (Frankfurt-Bornheim)"], "authorized_access_point": "Siedlung Bornheimer Hang (Frankfurt am Main)"} 1 +2024-09-10 15:47:58.480071 2024-09-10 15:47:58.480076 043d0c63-8742-42f1-9b2c-1d108d863ffc {"md5": "e40c9505f3ddcbe1703c330ac9aed97d", "pid": "1236792211", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Polen"}], "identifier": "http://d-nb.info/gnd/1236792211", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1236792211", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1236792211", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1236792211", "source": "GND"}], "authorized_access_point": "Lublin-Synklinale"} 1 +2024-09-10 15:47:53.931173 2024-09-10 15:47:53.931178 0dcc86bc-221a-454f-98f2-f2dad314a6c3 {"md5": "2ed110e0bc2bb562cc327d0070fb7d11", "pid": "1333315902", "note": [{"label": ["GeoNames - https://www.geonames.org/618476/burlanesti.html", "Wikipedia - https://ro.wikipedia.org/w/index.php?title=Burl%C4%83ne%C8%99ti,_Edine%C8%9B&oldid=16192546"], "noteType": "dataSource"}, {"label": ["Dorf, raion Edineț"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1333315902", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333315902", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333315902", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333315902", "source": "GND"}], "variant_access_point": ["Burlaneshti", "Burlaneshty"], "authorized_access_point": "Burlăneşti"} 1 +2024-09-10 15:47:54.007138 2024-09-10 15:47:54.007142 d5c0c8cf-6905-4782-8cb6-1b9b8dbeb468 {"md5": "2acb7aabed948ddf29f89c166f5a5f7a", "pid": "1333263465", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Altenkunstadt"}], "identifier": "http://d-nb.info/gnd/1333263465", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333263465", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333263465", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333263465", "source": "GND"}], "variant_access_point": ["Trebitzmühle (Altenkunstadt-Trebitzmühle)"], "authorized_access_point": "Altenkunstadt-Trebitzmühle"} 1 +2024-09-10 15:47:54.068518 2024-09-10 15:47:54.068521 ba621172-8bb5-48b3-881b-24c6bd208ab4 {"md5": "b423de9ab2c560d67fea72766768fe6f", "pid": "1333255853", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Bravicea&oldid=242048890"], "noteType": "dataSource"}, {"label": ["Gemeinde im Rajon Călărași, Republik Moldau"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1333255853", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333255853", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333255853", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333255853", "source": "GND"}], "authorized_access_point": "Bravicea"} 1 +2024-09-10 15:47:54.133116 2024-09-10 15:47:54.133119 7823e189-4abd-4a77-b65c-6ecd9597f6e9 {"md5": "bc0b4168916671bf5a2ec4c71ac51713", "pid": "1333228880", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Liste_der_Baudenkm%C3%A4ler_in_Egloffstein&oldid=242696526#Bieberbach"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Egloffstein"}, {"authorized_access_point": "Egloffstein-Bieberbach"}], "identifier": "http://d-nb.info/gnd/1333228880", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333228880", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333228880", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333228880", "source": "GND"}], "variant_access_point": ["Evangelische Reformationsgedächtniskirche (Egloffstein-Bieberbach)", "Evangelische Reformationsgedächtniskirche (Bieberbach)", "Reformationsgedächtniskirche (Egloffstein)", "Reformationsgedächtniskirche (Egloffstein-Bieberbach)"], "authorized_access_point": "Evangelische Reformationsgedächtniskirche (Egloffstein)"} 1 +2024-09-10 15:47:54.197474 2024-09-10 15:47:54.19748 02ffc051-09cb-410f-a240-b6ecb04cd010 {"md5": "010294df352c30c147213fa8ef688a16", "pid": "1333113943", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Wolfersgr%C3%BCn_(Wallenfels)&oldid=245060892#Katholische_Filialkirche_St._Georg"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Wolfersgrün"}], "identifier": "http://d-nb.info/gnd/1333113943", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333113943", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333113943", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333113943", "source": "GND"}], "variant_access_point": ["St. Georg (Wolfersgrün)", "Filialkirche Sankt Georg (Wolfersgrün)", "Katholische Filialkirche Sankt Georg (Wolfersgrün)"], "authorized_access_point": "Sankt Georg (Wolfersgrün)"} 1 +2024-09-10 15:47:54.259588 2024-09-10 15:47:54.259592 f1a8a9a4-a735-4179-98b6-4983708ecef7 {"md5": "2f3e11a9e1ceb0757d2ec975b023f81e", "pid": "1332874568", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Thala_(Tunesien)&oldid=244904813"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1332874568", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332874568", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332874568", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332874568", "source": "GND"}], "variant_access_point": ["Talah"], "authorized_access_point": "Thala"} 1 +2024-09-10 15:47:54.332283 2024-09-10 15:47:54.332288 9f944aa6-d481-4b11-8f6a-30be2c0733f4 {"md5": "3e0958e9f241c6096469361f51f3b9d9", "pid": "1332858198", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Beaumont_(Yonne)&oldid=190458726"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Departement Yonne"}], "identifier": "http://d-nb.info/gnd/1332858198", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332858198", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332858198", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332858198", "source": "GND"}], "authorized_access_point": "Beaumont (Departement Yonne)"} 1 +2024-09-10 15:47:54.418203 2024-09-10 15:47:54.418206 6ed8b296-a378-4515-809e-13da207b2676 {"md5": "a77095263ac672f8ee983c62184c7b69", "pid": "1332769349", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Krylos&oldid=244798100", "Geonames - http://www.geonames.org/703893/krylos.html"], "noteType": "dataSource"}, {"label": ["Ort in der Ukraine (Oblast Ivano-Frankivsʹk, Ivano-Frankivsʹkyj rajon)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1332769349", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332769349", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332769349", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332769349", "source": "GND"}], "variant_access_point": ["Krilos", "Kryłos"], "authorized_access_point": "Krylos"} 1 +2024-09-10 15:48:00.828063 2024-09-10 15:48:00.828068 79745b86-198b-46bf-9a77-5bef9780780a {"md5": "b39ff23a0b8de041dbdef4a373b399af", "pid": "1169805140", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Dzūkija"}], "identifier": "http://d-nb.info/gnd/1169805140", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1169805140", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1169805140", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1169805140", "source": "GND"}], "authorized_access_point": "Dzūkija - West"} 1 +2024-09-10 15:47:54.503088 2024-09-10 15:47:54.503091 bc77ad57-1957-4c52-9297-7cfd6416a71c {"md5": "9c694f114d8b9eaffbdbe04283923d6e", "pid": "1332757375", "note": [{"label": ["RIplus Regg. Bamberg n. 39, in: Regesta Imperii Online - http://www.regesta-imperii.de/id/fffc7ec3-2a09-4f7b-a1c6-b0b415fe26b2"], "noteType": "dataSource"}, {"label": ["Wüstung bei Forchheim-Burk"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Forchheim-Burk"}], "identifier": "http://d-nb.info/gnd/1332757375", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332757375", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332757375", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332757375", "source": "GND"}], "variant_access_point": ["Wüstung Slierbach"], "authorized_access_point": "Slierbach (Wüstung)"} 1 +2024-09-10 15:47:54.574262 2024-09-10 15:47:54.574266 7783dea2-e0b2-41f5-afa1-47c81104f45a {"md5": "01d42b3d4a4dcf34012ada9813ab8985", "pid": "1332755666", "note": [{"label": ["RI II,4 n. 1653, in: Regesta Imperii Online - http://www.regesta-imperii.de/id/1007-11-01_3_0_2_4_1_339_1653"], "noteType": "dataSource"}, {"label": ["Mittelalterlicher Gau"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1332755666", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332755666", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332755666", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332755666", "source": "GND"}], "authorized_access_point": "Durihin"} 1 +2024-09-10 15:47:54.661319 2024-09-10 15:47:54.661323 9262b630-7609-49dc-9db0-70d598d4464e {"md5": "540ffebfb4588095134435ae3fec3a14", "pid": "1332749054", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=S%C3%BClchgau&oldid=208578053"], "noteType": "dataSource"}, {"label": ["Mittelalterlicher Gau"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1332749054", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332749054", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332749054", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332749054", "source": "GND"}], "variant_access_point": ["Sülchengau", "Sulihgeiuua", "Sulichkewe", "Sülichgau"], "authorized_access_point": "Sülchgau"} 1 +2024-09-10 15:47:54.723596 2024-09-10 15:47:54.723599 c9fa6782-9aa4-4198-a959-af106c86e093 {"md5": "f0a8d5d4a96550033e1f4a1bae8bcf66", "pid": "1332747108", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Nagoldgau&oldid=215319373"], "noteType": "dataSource"}, {"label": ["Frühmittelalterlicher Gau im Herzogtum Schwaben"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1332747108", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332747108", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332747108", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332747108", "source": "GND"}], "variant_access_point": ["Nagoldgouw", "Nagaltgouwe"], "authorized_access_point": "Nagoldgau"} 1 +2024-09-10 15:47:54.7852 2024-09-10 15:47:54.785205 4a55809e-7164-4e7b-af88-6b8bd698b575 {"md5": "dba33238fd4c3fe9da41453b20e3b4f0", "pid": "1332742351", "note": [{"label": ["RIplus Regg. Bamberg n. 51, in: Regesta Imperii Online - http://www.regesta-imperii.de/id/f8a73e64-64db-4c07-8d84-284a227be527"], "noteType": "dataSource"}, {"label": ["Mittelalterlicher Gau"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1332742351", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332742351", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332742351", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332742351", "source": "GND"}], "authorized_access_point": "Glehuntra"} 1 +2024-09-10 15:47:54.842617 2024-09-10 15:47:54.842619 3632d485-5078-419f-b2f5-0820dd3d93a8 {"md5": "4134b1e171f80a9624fd729c318f832c", "pid": "1332735002", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Riesgau&oldid=226471032"], "noteType": "dataSource"}, {"label": ["Gau im Nordosten des mittelalterlichen Stammesherzogtums Schwaben"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1332735002", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332735002", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332735002", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332735002", "source": "GND"}], "variant_access_point": ["Rezia"], "authorized_access_point": "Riesgau"} 1 +2024-09-10 15:47:54.900975 2024-09-10 15:47:54.900978 b2e01c8a-6aba-424d-a278-e1ea503dedee {"md5": "3e5f829cb0c83ff9a4f84f33020a8191", "pid": "1332734863", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Salzburggau&oldid=225169888"], "noteType": "dataSource"}, {"label": ["Mittelalterlicher Gau, ab dem 6. Jahrhundert nachgewiesen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1332734863", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332734863", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332734863", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332734863", "source": "GND"}], "authorized_access_point": "Salzburggau"} 1 +2024-09-10 15:47:54.957915 2024-09-10 15:47:54.957919 cf8606da-d186-425f-98b1-127d3dd172ec {"md5": "e591f29ce2f73db16c3720e1a6893198", "pid": "133273457X", "note": [{"label": ["RI II,4 n. 1841, in: Regesta Imperii Online - http://www.regesta-imperii.de/id/1014-06-21_1_0_2_4_1_622_1841"], "noteType": "dataSource"}, {"label": ["Mittelalterliches Gau"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/133273457X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133273457X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133273457X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133273457X", "source": "GND"}], "authorized_access_point": "Mattiggau"} 1 +2024-09-10 15:47:55.021594 2024-09-10 15:47:55.021597 c6f9575c-fb73-42cb-8c1a-7b9108bf5081 {"md5": "37cb6f6ee246866d9a2a4dd998472db5", "pid": "1332733751", "note": [{"label": ["RI In. 598, in: Regesta Imperii Online - http://www.regesta-imperii.de/id/0815-12-03_1_0_1_1_0_1483_598"], "noteType": "dataSource"}, {"label": ["Mittelalterlicher Gau"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1332733751", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332733751", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332733751", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332733751", "source": "GND"}], "authorized_access_point": "Donaugau"} 1 +2024-09-10 15:47:55.081289 2024-09-10 15:47:55.081293 0e962688-e146-4ab2-a7b3-7e9e3e02089a {"md5": "672ffe2cb24c5039146e3f894df36979", "pid": "1332732577", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Kelsgau&oldid=241651452"], "noteType": "dataSource"}, {"label": ["Erstmalige Erwähnung 844; Gau im Frühmittelalter"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1332732577", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332732577", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332732577", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332732577", "source": "GND"}], "variant_access_point": ["Chelesgau"], "authorized_access_point": "Kelsgau"} 1 +2024-09-10 15:47:55.144897 2024-09-10 15:47:55.144901 6757785c-0d5a-4bb2-989d-a5c65ff21341 {"md5": "e08f42c759643e65828b5ee532fb3863", "pid": "1332731430", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Monte_San_Primo&oldid=229134400"], "noteType": "dataSource"}, {"label": ["Berg in der Lombardei, Provinz Como"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Tambogruppe"}], "identifier": "http://d-nb.info/gnd/1332731430", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332731430", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332731430", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332731430", "source": "GND"}], "variant_access_point": ["San Primo (Berg)"], "authorized_access_point": "Monte San Primo"} 1 +2024-09-10 15:47:55.223392 2024-09-10 15:47:55.223396 b1a8008e-5e03-4e38-870f-abde6019ad2e {"md5": "47d099e5946173825c281db59e2ec620", "pid": "1332670482", "note": [{"label": ["GeoNames - https://www.geonames.org/12195581/brackmills.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Northampton"}], "identifier": "http://d-nb.info/gnd/1332670482", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332670482", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332670482", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332670482", "source": "GND"}], "variant_access_point": ["Northampton-Brackmills"], "authorized_access_point": "Brackmills"} 1 +2024-09-10 15:47:55.289946 2024-09-10 15:47:55.289951 9d9ad692-1120-40e4-af06-1d78ec561aab {"md5": "abf952bde3c0bd790f7fc9a5256e3d6f", "pid": "1332669689", "note": [{"label": ["GeoNames - https://www.geonames.org/2657658/adwick-le-street.html"], "noteType": "dataSource"}, {"label": ["Dorf in der Metropolitanstadt Doncaster"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Doncaster"}], "identifier": "http://d-nb.info/gnd/1332669689", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332669689", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332669689", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332669689", "source": "GND"}], "variant_access_point": ["Doncaster- Adwick le Street"], "authorized_access_point": "Adwick le Street"} 1 +2024-09-10 15:47:55.363906 2024-09-10 15:47:55.363911 80f16d7b-8d70-4f9d-85fd-7d1c1d8f8b44 {"md5": "cd0d053e14974c07f97d3e8bbec1fcd0", "pid": "1332451578", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=M%C3%BDtina&oldid=240251478"], "noteType": "dataSource"}, {"label": ["Ortsteil von Lipová (Lindenhau) im Okres Cheb (Bezirk Eger) in Tschechien.", "Für die Sacherschließung wird bei Splits nur diese (das ist die neueste/jüngste) Namensform verwendet."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Alt-Albenreuth"}], "identifier": "http://d-nb.info/gnd/1332451578", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332451578", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332451578", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332451578", "source": "GND"}], "variant_access_point": ["Alt-Albenreuth"], "authorized_access_point": "Mýtina"} 1 +2024-09-10 15:47:55.426557 2024-09-10 15:47:55.42656 bb09a8be-380b-4500-9fdb-e628d5b9845c {"md5": "14ac4f87aa9469862f43b656c4d8691b", "pid": "1332353436", "note": [{"label": ["GeoNames - https://www.geonames.org/3181856/borello.html"], "noteType": "dataSource"}, {"label": ["Ort in den Abruzzen, Provinz Chieti"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1332353436", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332353436", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332353436", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332353436", "source": "GND"}], "authorized_access_point": "Borrello"} 1 +2024-09-10 15:47:55.487588 2024-09-10 15:47:55.487592 d453cfcb-0a66-4e09-a6ee-c4d76b28044b {"md5": "b7820619c6e3d5bb559d305d0aa30c58", "pid": "1332057209", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Olmeda_de_la_Cuesta&oldid=226226107", "GeoNames - https://www.geonames.org/6357483/olmeda-de-la-cuesta.html"], "noteType": "dataSource"}, {"label": ["Ort in der Provinz Cuenca, Kastilien- La Mancha"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1332057209", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332057209", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332057209", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332057209", "source": "GND"}], "authorized_access_point": "Olmeda de la Cuesta"} 1 +2024-09-10 15:47:55.549337 2024-09-10 15:47:55.549341 aece584c-dd28-4096-be94-5ff3e43696de {"md5": "c6f603253e16545c74d49cad5b3a57ac", "pid": "1332055729", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1332055729", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332055729", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332055729", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332055729", "source": "GND"}], "variant_access_point": ["Lautschitz", "Lautschütz", "Lanteschitz"], "authorized_access_point": "Blučina"} 1 +2024-09-10 15:47:56.154912 2024-09-10 15:47:56.154916 a37f7b5f-9084-4ae5-b6d6-a15d6b4593e4 {"md5": "2e8202cbccc41e50df09ada0449f5d6a", "pid": "1331109191", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/w/index.php?title=Fetislam&oldid=1191312260", "Wikipedia - https://sr.wikipedia.org/w/index.php?title=%D0%A4%D0%B5%D1%82%D0%B8%D1%81%D0%BB%D0%B0%D0%BC&oldid=27385008"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Kladovo"}], "identifier": "http://d-nb.info/gnd/1331109191", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331109191", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331109191", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331109191", "source": "GND"}], "variant_access_point": ["Tvrđava Fetislam"], "authorized_access_point": "Fetislam"} 1 +2024-09-10 15:47:55.609731 2024-09-10 15:47:55.609734 59a1c647-f271-42a5-a759-258f2d955e6c {"md5": "ead4d53eacc793f97d684ea8fc70cd9a", "pid": "1332031374", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=195150922"], "noteType": "dataSource"}, {"label": ["Sønderjyllands Amt war eine dänische Amtskommune."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Region Syddanmark"}, {"authorized_access_point": "Apenrade"}], "related": [{"authorized_access_point": "Amt Åbenrå"}, {"authorized_access_point": "Amt Sønderborg"}, {"authorized_access_point": "Amt Haderslev"}, {"authorized_access_point": "Amt Tondern"}], "identifier": "http://d-nb.info/gnd/1332031374", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332031374", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332031374", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332031374", "source": "GND"}], "variant_access_point": ["Sønderjyllands Amt", "Sønderjyllands (Amt)", "Sønderjyllands Amtskommune", "Amtskommune Sønderjylland"], "authorized_access_point": "Amt Sønderjylland"} 1 +2024-09-10 15:47:55.667989 2024-09-10 15:47:55.667993 13809f81-c021-44a9-9b51-f5d82462db4a {"md5": "bb4fbb1e88083a60c240137b02419e32", "pid": "1331729661", "note": [{"label": ["Homepage - https://europa-viertel-rheine.de/"], "noteType": "dataSource"}, {"label": ["Wohngebiet auf dem Gelände der ehemaligen Damloup-Kaserne in Rheine, dessen Vermarktung 2024 abgeschlossen ist"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Rheine"}], "identifier": "http://d-nb.info/gnd/1331729661", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331729661", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331729661", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331729661", "source": "GND"}], "variant_access_point": ["Europa-Viertel (Rheine)", "Europaviertel (Rheine)", "EuVie (Rheine)"], "authorized_access_point": "Europa-Viertel am Waldhügel (Rheine)"} 1 +2024-09-10 15:47:55.741778 2024-09-10 15:47:55.741781 409e2dcb-02b6-4a3b-a58f-913cf085c8b4 {"md5": "a1ff5a6f104b0a075e87fdb59697dd47", "pid": "1331609186", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Ba%C5%A1%C4%8Dar%C5%A1ija&oldid=243745789"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Sarajevo"}], "identifier": "http://d-nb.info/gnd/1331609186", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331609186", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331609186", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331609186", "source": "GND"}], "variant_access_point": ["Hauptmarkt (Sarajevo)"], "authorized_access_point": "Baščaršija (Sarajevo)"} 1 +2024-09-10 15:47:55.803277 2024-09-10 15:47:55.80328 45e0ca1e-7e64-462d-9db0-e18e70d9b936 {"md5": "2b790a09c09d2ec9249a37d516f911b3", "pid": "1331604346", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Borci (Kotor Varoš)"}], "identifier": "http://d-nb.info/gnd/1331604346", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331604346", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331604346", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331604346", "source": "GND"}], "variant_access_point": ["Nikolauskirche (Borci, Kotor Varoš)"], "authorized_access_point": "Crkva Svetog Nikole (Borci, Kotor Varoš)"} 1 +2024-09-10 15:47:55.855363 2024-09-10 15:47:55.855366 e52bd784-8b16-44d9-967c-0fe4a8bd36bb {"md5": "1665952a750df31bebfcebdc0eeb0ccc", "pid": "1331602718", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Kotor_Varo%C5%A1&oldid=246161593"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Kotor Varoš"}], "identifier": "http://d-nb.info/gnd/1331602718", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331602718", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331602718", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331602718", "source": "GND"}], "authorized_access_point": "Borci (Kotor Varoš)"} 1 +2024-09-10 15:47:55.909858 2024-09-10 15:47:55.909861 62a3f71d-4744-48b6-bccc-d0e4001874fb {"md5": "ddeb2ba845964f79758205a720d28653", "pid": "1331601630", "note": [{"label": ["GeoNames - https://www.geonames.org/763600/nowogrod.html", "Wikipedia - https://pl.wikipedia.org/w/index.php?title=Nowogr%C3%B3d&oldid=72647619"], "noteType": "dataSource"}, {"label": ["Stadt in Polen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Łomża (Powiat)"}], "identifier": "http://d-nb.info/gnd/1331601630", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331601630", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331601630", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331601630", "source": "GND"}], "authorized_access_point": "Nowogród"} 1 +2024-09-10 15:47:55.972936 2024-09-10 15:47:55.97294 3263ab7a-e2f9-4402-a6d7-6c38fd9f818a {"md5": "aa77f4673cfbd6d1019f7f42cea4fc2d", "pid": "1331514282", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Gabersee&oldid=202232396"], "noteType": "dataSource"}, {"label": ["Ehemals selbstständige Gemeinde; durch die Eingemeindung von Attel in die Stadt Wasserburg am 01.05.1978 Ortsteil von Wasserburg"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Wasserburg-Gabersee"}], "related": [{"authorized_access_point": "Gabersee"}, {"authorized_access_point": "Attel"}], "identifier": "http://d-nb.info/gnd/1331514282", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331514282", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331514282", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331514282", "source": "GND"}], "variant_access_point": ["Gabersee (Attel-Gabersee)"], "authorized_access_point": "Attel-Gabersee"} 1 +2024-09-10 15:47:56.033375 2024-09-10 15:47:56.033379 7f64a019-0766-4ae1-841e-56cbcc9e3a17 {"md5": "ab9a02ccec1699a87879ba5dfcd3da64", "pid": "1331513952", "note": [{"label": ["Ehemals selbstständige Gemeinde; seit 01.05.1978 Ortsteil von Wasserburg"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Wasserburg-Attel"}], "identifier": "http://d-nb.info/gnd/1331513952", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331513952", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331513952", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331513952", "source": "GND"}], "authorized_access_point": "Attel"} 1 +2024-09-10 15:47:56.21675 2024-09-10 15:47:56.216754 97173dbd-b0b6-42d9-ab1f-83357f0b57ab {"md5": "58d7c08a4705d4d291b92987008f9714", "pid": "1331089271", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Opat%C3%B3wek&oldid=243033262"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Woiwodschaft Großpolen"}], "identifier": "http://d-nb.info/gnd/1331089271", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331089271", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331089271", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331089271", "source": "GND"}], "variant_access_point": ["Opatowek"], "authorized_access_point": "Opatówek"} 1 +2024-09-10 15:47:56.281829 2024-09-10 15:47:56.281833 b3acdec4-4067-4582-bd42-1c237fa62eac {"md5": "5694a82b55d6aec8fa795e3399a272e2", "pid": "1330982746", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Forstern (Erding)"}], "identifier": "http://d-nb.info/gnd/1330982746", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330982746", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330982746", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330982746", "source": "GND"}], "variant_access_point": ["Preisendorf (Forstern-Preisendorf)"], "authorized_access_point": "Forstern-Preisendorf"} 1 +2024-09-10 15:47:56.348504 2024-09-10 15:47:56.348507 f48ccbce-0199-4fb0-b6f2-3635c4162460 {"md5": "aa84149a22aae05f6593037ab09057a5", "pid": "1330866738", "note": [{"label": ["GeoNames - https://www.geonames.org/462471/zinyaki.html", "Wikipedia - https://ru.wikipedia.org/w/index.php?oldid=133645030"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Oblast Nischni Nowgorod"}], "identifier": "http://d-nb.info/gnd/1330866738", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330866738", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330866738", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330866738", "source": "GND"}], "variant_access_point": ["Zinyaki"], "authorized_access_point": "Zinjaki"} 1 +2024-09-10 15:47:56.416985 2024-09-10 15:47:56.41699 533f721f-81df-472b-9813-753f2bd34d23 {"md5": "8911cd77e9b722d689d9b927a3a88b18", "pid": "1330847199", "note": [{"label": ["GeoNames - https://www.geonames.org/3099521/gana.html", "Wikipedia - https://pl.wikipedia.org/w/index.php?title=Gana&oldid=72537850"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Praszka"}, {"authorized_access_point": "Woiwodschaft Oppeln"}], "identifier": "http://d-nb.info/gnd/1330847199", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330847199", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330847199", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330847199", "source": "GND"}], "authorized_access_point": "Gana (Praszka)"} 1 +2024-09-10 15:47:56.492063 2024-09-10 15:47:56.492066 931d0bef-d231-424a-b004-9916f4e9f8bf {"md5": "65a2242d28983dca642f753a618176a1", "pid": "1330436237", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Helmbrechts"}], "identifier": "http://d-nb.info/gnd/1330436237", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330436237", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330436237", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330436237", "source": "GND"}], "variant_access_point": ["Hampelhof (Helmbrechts-Hampelhof)"], "authorized_access_point": "Helmbrechts-Hampelhof"} 1 +2024-09-10 15:47:56.553201 2024-09-10 15:47:56.553205 cdd489ad-1bdc-4c55-ba23-e8bb62e75f6c {"md5": "43290b022ac80be47976e43dc18ac0ac", "pid": "1330428420", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Warschauer_Ghetto-Ehrenmal&oldid=211224290"], "noteType": "dataSource"}, {"label": ["Errichtet zum Gedenken des Aufstands im Warschauer Ghetto"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Warschau"}], "identifier": "http://d-nb.info/gnd/1330428420", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330428420", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330428420", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330428420", "source": "GND"}], "variant_access_point": ["Warschauer Ghetto-Ehrenmal (Warschau)", "Pomnik Bohaterów Getta (Warschau)"], "authorized_access_point": "Denkmal der Helden des Ghettos (Warschau)"} 1 +2024-09-10 15:47:56.614873 2024-09-10 15:47:56.614877 d8e3f839-9393-4546-b6b2-d90790845462 {"md5": "5bebbdac5e1ae3a3dcf2f5be4f74b11c", "pid": "1330324463", "note": [{"label": ["Kreis Stormarn (Kreisarchiv Stormarn) - https://www.stormarnlexikon.de/wassermuehlenuetschau/"], "noteType": "dataSource"}, {"label": ["Ehemalige Wassermühle in Nütschau, einem Ortsteil von Travenbrück im Kreis Stornmarn, Schlewsig-Holstein; Kauf und Nutzung durch den Fotografen Matthias Heitmann im Jahre 1992; Restauration und Umbau zum Wohnhaus."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Travenbrück"}, {"authorized_access_point": "Travenbrück-Nütschau"}], "identifier": "http://d-nb.info/gnd/1330324463", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330324463", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330324463", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330324463", "source": "GND"}], "variant_access_point": ["Wassermühle Nütschau (Travenbrück-Nütschau)"], "authorized_access_point": "Wassermühle Nütschau (Travenbrück)"} 1 +2024-09-10 15:47:56.675494 2024-09-10 15:47:56.675498 71249023-f966-4066-ac82-144fc02eea8a {"md5": "452d59264d657db6aafb6a0294a7f18d", "pid": "1330302877", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Gr%C3%B6nwohld&oldid=244402281#Geschichte", "Kreis Stormarn (Kreisarchiv Stormarn) - https://www.stormarnlexikon.de/drahtmuehlegroenwohld/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Grönwohld"}], "identifier": "http://d-nb.info/gnd/1330302877", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330302877", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330302877", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330302877", "source": "GND"}], "authorized_access_point": "Drahtmühle Grönwohld (Grönwohld)"} 1 +2024-09-10 15:48:11.493143 2024-09-10 15:48:11.493147 4b2a31a8-5627-41bf-85ae-09c6e89f406a {"md5": "97016531e0030d9e6b7ec5602fdc71b8", "pid": "1058395726", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1058395726", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058395726", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058395726", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058395726", "source": "GND"}], "authorized_access_point": "Ugchelsebeek"} 1 +2024-09-10 15:47:56.737074 2024-09-10 15:47:56.737077 0a2637aa-3992-403a-805a-e7e8499ac8e6 {"md5": "f47090749dc79f1da30f4358738257cd", "pid": "1330290887", "note": [{"label": ["Kreis Stornmarn (Kreisarchiv Stormarn) - https://www.stormarnlexikon.de/fasanenhofjersbek/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Jersbek"}], "identifier": "http://d-nb.info/gnd/1330290887", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330290887", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330290887", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330290887", "source": "GND"}], "variant_access_point": ["Zum Fasanenhof (Jersbek)", "Landgasthaus Zum Fasanenhof (Jersbek)", "Landgasthof Zum Fasanenhof (Jersbek)"], "authorized_access_point": "Fasanenhof (Jersbek)"} 1 +2024-09-10 15:47:56.798821 2024-09-10 15:47:56.798826 29b4ccb8-1737-405f-85d3-3f1235f3cd04 {"md5": "21a700fa395c4339a9b89db32642bb86", "pid": "1330177274", "note": [{"label": ["Naturparkzentrum und Verwaltung - https://www.naturpark-ehw.de/weg/top-grenzwanderweg-schifflersgrund", "Grenzmuseum Schifflersgrund - https://www.grenzmuseum.de/lernen/bildungsort/grenzwanderweg"], "noteType": "dataSource"}, {"label": ["Rundwanderweg entlang der innerdeutschen Grenze zwischen Asbach-Sickendorf und Bad Sooden-Allendorf; ca. 10,9 km"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Asbach-Sickenberg"}, {"authorized_access_point": "Bad Sooden- Allendorf"}], "identifier": "http://d-nb.info/gnd/1330177274", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330177274", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330177274", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330177274", "source": "GND"}], "variant_access_point": ["Grenzwanderweg Schifflersgrund", "Rundwanderweg Schifflersgrund"], "authorized_access_point": "TOP-Grenzwanderweg Schifflersgrund"} 1 +2024-09-10 15:47:56.864982 2024-09-10 15:47:56.864987 4937e236-1e26-40e6-8d8d-3951f41bdb0c {"md5": "dfaef0cfbed4d44dce19328a0c2be581", "pid": "1329890205", "note": [{"label": ["Stadtverwaltung Jena - https://beteiligung.jena.de/sites/default/files/2024-02/Aufarbeitung_Geschichte%20des%20Orchideenbrunnen_B%C3%BCrgerbudget%20Jena_0.pdf"], "noteType": "dataSource"}, {"label": ["Brunnen und Metallplastik auf dem Eichplatz in Jena; Demontage im Jahr 2000."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Jena"}], "identifier": "http://d-nb.info/gnd/1329890205", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1329890205", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1329890205", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1329890205", "source": "GND"}], "variant_access_point": ["Jenaer Orchideenbrunnen (Jena)"], "authorized_access_point": "Orchideenbrunnen (Jena)"} 1 +2024-09-10 15:47:56.931038 2024-09-10 15:47:56.931043 eb33bb15-1507-4f16-b64b-794b1e0bd469 {"md5": "137806da8cba11e4cddfb5fdbaf7057e", "pid": "1329430875", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Merville_(Nord)&oldid=246093496", "GeoNames - https://www.geonames.org/6438365/merville.html"], "noteType": "dataSource"}, {"label": ["Gemeinde im Département Nord, Frankreich"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Departement Nord"}], "identifier": "http://d-nb.info/gnd/1329430875", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1329430875", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1329430875", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1329430875", "source": "GND"}], "authorized_access_point": "Merville (Departement Nord)"} 1 +2024-09-10 15:47:56.995479 2024-09-10 15:47:56.995483 37222a47-43e1-49b7-b208-95faf352a397 {"md5": "da2d82da4916f0846d0b892086beb8df", "pid": "1316359042", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1316359042", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1316359042", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1316359042", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1316359042", "source": "GND"}], "variant_access_point": ["Smolotel"], "authorized_access_point": "Smolotely"} 1 +2024-09-10 15:47:57.06671 2024-09-10 15:47:57.06672 82ee2507-360d-4c36-ad20-ae3bdbf8dcc9 {"md5": "d64c942967802b1639bb26611da24664", "pid": "1314596373", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Mitwitz"}], "identifier": "http://d-nb.info/gnd/1314596373", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1314596373", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1314596373", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1314596373", "source": "GND"}], "authorized_access_point": "Oberes Schloss (Mitwitz)"} 1 +2024-09-10 15:47:57.148942 2024-09-10 15:47:57.148947 de280ecd-a43e-4851-a3ad-7d34302f21ae {"md5": "e2d1bcb3050a517a7984353c5438b8ff", "pid": "1302571524", "note": [{"label": ["Straße in der Innenstadt von Pößneck im Saale-Orla-Kreis, Thüringen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Pößneck"}], "identifier": "http://d-nb.info/gnd/1302571524", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1302571524", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1302571524", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1302571524", "source": "GND"}], "variant_access_point": ["Schulstraße (Pößneck)"], "authorized_access_point": "Straubelstraße (Pößneck)"} 1 +2024-09-10 15:47:57.212677 2024-09-10 15:47:57.212683 7994dd04-333a-44f5-9459-c5c6d173c1b3 {"md5": "c7688f7a51310b6dc8e7181ab434bbe8", "pid": "1300397128", "note": [{"label": ["Heimatkreis Oststernberg e.V. (Hrsg.): Oststernberger Heimatbrief 2/2013 - https://oststernberg.de/wp-content/uploads/2016/02/Heimatbrief-2-2013.pdf"], "noteType": "dataSource"}, {"label": ["Das Dorf Lindow im ehemaligen Kreis Ost-Sternberg wurde im Jahre 1939 gemeinsam mit den umliegenden Orten Wandern und Groß Kirschbaum zum Truppenübungsplatz bestimmt und sämtliche Einwohner*innen umgesiedelt."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Kreis Oststernberg"}], "identifier": "http://d-nb.info/gnd/1300397128", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1300397128", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1300397128", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1300397128", "source": "GND"}], "authorized_access_point": "Lindow (Kreis Oststernberg)"} 1 +2024-09-10 15:47:57.279728 2024-09-10 15:47:57.279732 c1d8ed61-2cf2-4ecb-8bd4-b034d41993a9 {"md5": "aa90a462fa8013cbe2bd3943944a761f", "pid": "1299383890", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=230671556"], "noteType": "dataSource"}, {"label": ["Ortsteil des Leipziger Stadtteils Mockau im Stadtbezirk Nordost"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Neu-Mockau"}], "identifier": "http://d-nb.info/gnd/1299383890", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1299383890", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1299383890", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1299383890", "source": "GND"}], "variant_access_point": ["Mockau-Süd (Leipzig)"], "authorized_access_point": "Leipzig-Mockau-Süd"} 1 +2024-09-10 15:47:57.3416 2024-09-10 15:47:57.341604 740c7ff6-d825-4e03-904c-129365292636 {"md5": "fe264bda7119c96dc81587f214e1eab0", "pid": "129673143X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=217307184"], "noteType": "dataSource"}, {"label": ["Dorf in der polnischen Woiwodschaft Ermland-Masuren"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Groß Tauersee"}], "identifier": "http://d-nb.info/gnd/129673143X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/129673143X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)129673143X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)129673143X", "source": "GND"}], "authorized_access_point": "Turza Wielka"} 1 +2024-09-10 15:47:57.410075 2024-09-10 15:47:57.410079 63d80731-285d-433f-9eb6-db11b6d0fff1 {"md5": "ba913ca3ea27c7155f6ed7acb00e2a47", "pid": "1295131781", "note": [{"label": ["Verbandsbüro in Apolda - https://www.weimarer-land.travel/zukunft/goethe-erlebnisweg/", "Wikipedia - https://de.wikipedia.org/w/index.php?title=Goethe-Erlebnisweg&oldid=234912759"], "noteType": "dataSource"}, {"label": ["Wanderweg zwischen Weimar und Großkochberg auf den Spuren Goethes; 29 km lang"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Weimar"}, {"authorized_access_point": "Uhlstädt-Kirchhasel- Großkochberg"}], "identifier": "http://d-nb.info/gnd/1295131781", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1295131781", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1295131781", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1295131781", "source": "GND"}], "authorized_access_point": "Goethe-Erlebnisweg"} 1 +2024-09-10 15:47:57.496061 2024-09-10 15:47:57.496066 b9400951-0b7b-49b2-bf1c-ddc31c0f2b6f {"md5": "6f70b319b2013ac7b0b7eda5c4e494d8", "pid": "1287837611", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=229557818"], "noteType": "dataSource"}, {"label": ["Ehemals selbstständige Gemeinde; seit 1. August 1976 Eingemeindung nach Bollingstedt im Kreis Schleswig-Flensburg, Schleswig-Holstein."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Bollingstedt"}, {"authorized_access_point": "Gammellund"}], "identifier": "http://d-nb.info/gnd/1287837611", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1287837611", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1287837611", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1287837611", "source": "GND"}], "authorized_access_point": "Bollingstedt-Gammellund"} 1 +2024-09-10 15:47:57.557284 2024-09-10 15:47:57.557287 442a5072-5d2e-4b62-8478-55b76f878fac {"md5": "176be9204b3edaa1974b2144bcc7bfdf", "pid": "1286132703", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=225307470"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Leipzig-Sellerhausen-Stünz"}], "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Stünz"}], "identifier": "http://d-nb.info/gnd/1286132703", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1286132703", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1286132703", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1286132703", "source": "GND"}], "variant_access_point": ["Stünz (Leipzig)"], "authorized_access_point": "Leipzig-Stünz"} 1 +2024-09-10 15:47:57.629814 2024-09-10 15:47:57.629818 11a505de-e106-40b1-90c7-dad1cf5f9ee9 {"md5": "d56eac8cbfd11e9623c0e484b973417a", "pid": "1284341119", "note": [{"label": ["erbaut 1552, Umbau mit steilem Walmdach um 1780; Einrichtung als ortsgeschichtliches Museum 1956-1966"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Horgen"}], "identifier": "http://d-nb.info/gnd/1284341119", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1284341119", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1284341119", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1284341119", "source": "GND"}], "variant_access_point": ["Sust (Horgen)"], "authorized_access_point": "Alte Sust (Horgen)"} 1 +2024-09-10 15:47:57.699492 2024-09-10 15:47:57.699496 0ed57cc5-cfa8-4681-9c1c-c2faa944d9bf {"md5": "0f6c98431fe7ab6ef9142a975375c4a7", "pid": "1282328816", "note": [{"label": ["GOV - http://gov.genealogy.net/item/show/GAHORFJO54PK"], "noteType": "dataSource"}, {"label": ["Ehemals selbstständiges Dorf; seit 1. Januar 2003 Stadtteil der Stadt Fehmarn im Kreis Ostholstein, Schleswig-Holstein."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Fehmarn"}, {"authorized_access_point": "Gahlendorf"}], "identifier": "http://d-nb.info/gnd/1282328816", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1282328816", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1282328816", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1282328816", "source": "GND"}], "authorized_access_point": "Fehmarn-Gahlendorf"} 1 +2024-09-10 15:47:57.765192 2024-09-10 15:47:57.765197 c9a452da-b2cc-4b1c-89a9-beedc3ec8821 {"md5": "c8592061724b1090c5fb4d08819c47d8", "pid": "1275159915", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Kreis Kretinga"}], "identifier": "http://d-nb.info/gnd/1275159915", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1275159915", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1275159915", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1275159915", "source": "GND"}], "variant_access_point": ["Anduln"], "authorized_access_point": "Ėgliškiai-Anduliai"} 1 +2024-09-10 15:47:57.835798 2024-09-10 15:47:57.835801 f3ec6c98-857b-4bfd-aa00-dbf1d779b4ba {"md5": "0c08c61d586406910a1904d5aa11c6e9", "pid": "1271173751", "note": [{"label": ["Wikipedia - https://da.wikipedia.org/w/index.php?title=N%C3%B8rre_Herred_(Bornholm)&oldid=9783302"], "noteType": "dataSource"}, {"label": ["Ehemaliger Verwaltungsbezirk in Amt Bornholm"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Amt Bornholm"}], "identifier": "http://d-nb.info/gnd/1271173751", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1271173751", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1271173751", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1271173751", "source": "GND"}], "authorized_access_point": "Nørre Herred (Amt Bornholm)"} 1 +2024-09-10 15:47:57.89857 2024-09-10 15:47:57.898574 5acf6424-1dc2-4e8c-95ac-2d2a638936a9 {"md5": "e6c677b76aaf3aa53121b48366adbdb3", "pid": "1267606541", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Beskid_Makowski&oldid=211779153", "Wikipedia - https://www.wikidata.org/wiki/Q6740528"], "noteType": "dataSource"}, {"label": ["Gebirgszug der Westbeskiden in Polen in der Woiwodschaft Kleinpolen, nach der Stadt Maków Podhalański benannt"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Beskiden"}], "identifier": "http://d-nb.info/gnd/1267606541", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1267606541", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1267606541", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1267606541", "source": "GND"}], "variant_access_point": ["Makower Beskiden (Westbeskiden)", "Maków Beskids", "Beskid Średni", "Mittelbeskiden"], "authorized_access_point": "Beskid Makowski"} 1 +2024-09-10 15:47:57.961107 2024-09-10 15:47:57.961111 00c8947c-9025-4ab7-9be3-d669f2197ae8 {"md5": "40538812a5c10ef32ae410701c4be73b", "pid": "1262419808", "note": [{"label": ["Bergsporn zwischen Stadtlauringen und Oberlauringen im Landkreis Schweinfurt"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Stadtlauringen"}], "identifier": "http://d-nb.info/gnd/1262419808", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1262419808", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1262419808", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1262419808", "source": "GND"}], "authorized_access_point": "Altenburg (Stadtlauringen, Berg)"} 1 +2024-09-10 15:47:58.036856 2024-09-10 15:47:58.036859 fe9aaeeb-8ff3-4927-a497-8abe886cf03f {"md5": "68c3fac03c0abb883afa765347122803", "pid": "1240912943", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1240912943", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1240912943", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1240912943", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1240912943", "source": "GND"}], "variant_access_point": ["Loslauer Land", "Ziemia Wodzisławska", "Wodzisław Śląski", "Loslau"], "authorized_access_point": "Wodzisław Śląski - Region"} 1 +2024-09-10 15:47:58.096928 2024-09-10 15:47:58.096932 caf86c08-eccb-4fb2-85d9-8e155c1f03f4 {"md5": "5e25b5a19d9663cdfda2853559f98273", "pid": "1239866968", "note": [{"label": ["Berg im US-Bundesstaat Nevada"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1239866968", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1239866968", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1239866968", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1239866968", "source": "GND"}], "authorized_access_point": "Mount Ferguson, Nev."} 1 +2024-09-10 15:47:58.169623 2024-09-10 15:47:58.169628 7daec301-70fc-4ad0-af29-0f8d4de584a1 {"md5": "bf4eada24f55f310ac7af18ad24dee02", "pid": "1239463502", "note": [{"label": ["Psycholog. Schema u. allegor. Landkarte (1653/54); 1654/60 in M. Scuderys Roman \\"Clélie, histoire romaine\\" veröffentlicht", "Ohne iZ Motiv"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1239463502", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1239463502", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1239463502", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1239463502", "source": "GND"}], "variant_access_point": ["Carte du Tendre", "Carte du pays de Tendre"], "authorized_access_point": "Carte de Tendre"} 1 +2024-09-10 15:47:58.23256 2024-09-10 15:47:58.232564 0a3e4f39-7744-46f4-bf2e-6ce11b6f0464 {"md5": "256b23e0d36ade88ac21cfffd96249d1", "pid": "1237860342", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Woiwodschaft Vorkarpaten"}], "identifier": "http://d-nb.info/gnd/1237860342", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1237860342", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1237860342", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1237860342", "source": "GND"}], "variant_access_point": ["Kolbuszowa", "Kolbuszowa", "Ziemia kolbuszowska"], "authorized_access_point": "Kolbuszowa - Region"} 1 +2024-09-10 15:47:58.296425 2024-09-10 15:47:58.296431 091cf7a6-4a06-41eb-8705-bfb8f914c92f {"md5": "aa57d75d0aa774447d720a8bf9e1ae8d", "pid": "1237828171", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Woiwodschaft Großpolen"}], "identifier": "http://d-nb.info/gnd/1237828171", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1237828171", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1237828171", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1237828171", "source": "GND"}], "variant_access_point": ["Ostrzeszów", "Ostrzeszów", "Ostrzeszower Land", "Schildberger Land", "Schildberg"], "authorized_access_point": "Ziemia Ostrzeszowska"} 1 +2024-09-10 15:47:58.361383 2024-09-10 15:47:58.361386 452e8503-a98e-437e-95be-c24584bbd614 {"md5": "96db321d06a408c7f4d5304bb168747b", "pid": "1237774101", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Woiwodschaft Lebus"}, {"authorized_access_point": "Powiat Żagański"}], "identifier": "http://d-nb.info/gnd/1237774101", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1237774101", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1237774101", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1237774101", "source": "GND"}], "variant_access_point": ["Szprotawa", "Ziemia szprotawska", "Sprottauer Land", "Sprottau"], "authorized_access_point": "Szprotawa - Region"} 1 +2024-09-10 15:47:58.552077 2024-09-10 15:47:58.552082 c1964c65-cc04-46c7-9d0e-9a4810faa15f {"md5": "f8717ec90090c86f356ad0cec916c028", "pid": "123657754X", "note": [{"label": ["Internet - https://muzeum.zwolen.pl/wystawa/zwolen-i-ziemia-zwolenska-na-pocztowce/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Woiwodschaft Masowien"}], "identifier": "http://d-nb.info/gnd/123657754X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/123657754X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)123657754X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)123657754X", "source": "GND"}], "variant_access_point": ["Zwoleń", "Ziemia zwoleńska"], "authorized_access_point": "Zwoleń - Region"} 1 +2024-09-10 15:47:58.614496 2024-09-10 15:47:58.6145 99d6e7da-d6ae-4ca4-9f5b-ee666983bf09 {"md5": "5003aa16512a3646f1f5f397e39249e8", "pid": "1235360709", "note": [{"label": ["Insel in der Arafurasee vor der Küste des Northern Territory in Australien"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Arafurasee"}], "identifier": "http://d-nb.info/gnd/1235360709", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1235360709", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1235360709", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1235360709", "source": "GND"}], "authorized_access_point": "Croker Island"} 1 +2024-09-10 15:47:58.677109 2024-09-10 15:47:58.677113 63110265-9321-4e96-bb85-8b52d96b5140 {"md5": "4275f601df0b6da7910298b6a41b781c", "pid": "1233310046", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Dubring&oldid=197367017"], "noteType": "dataSource"}, {"label": ["Dubring (sorbisch: Dubrjenk) ist eine ehemals selbständige Gemeinde; seit 1.1.1994 nach Wittichenau eingemeindet. Im Landkreis Bautzen in Sachsen. 1815-1945 zu Preußen (Regierungsbezirk Liegnitz) gehörend"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Wittichenau-Dubring"}], "identifier": "http://d-nb.info/gnd/1233310046", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1233310046", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1233310046", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1233310046", "source": "GND"}], "variant_access_point": ["Dubrjenk", "Eichhain"], "authorized_access_point": "Dubring"} 1 +2024-09-10 15:47:58.744812 2024-09-10 15:47:58.744816 05d6d1a5-15fe-424e-9b98-1bfa995f7878 {"md5": "e6828e7f1b62cece4e486baa911bc428", "pid": "1232243698", "note": [{"label": ["Geonames - http://www.geonames.org/2932852/ehrenberg.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Ilmenau"}], "identifier": "http://d-nb.info/gnd/1232243698", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1232243698", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1232243698", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1232243698", "source": "GND"}], "authorized_access_point": "Ehrenberg (Berg)"} 1 +2024-09-10 15:47:58.804279 2024-09-10 15:47:58.804283 d9c35c16-75e8-4f61-b09f-e1f534cad83b {"md5": "653a691cda67a439d79874311e1902cf", "pid": "1225876354", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Liste_von_Schillerdenkm%C3%A4lern&oldid=201898785"], "noteType": "dataSource"}, {"label": ["Schiller-Denkmal in der Parkanlage Schillerhöhe, gegenüber dem Schiller-Nationalmuseum. - Standbild gestaltet nach Entwürfen des Bildhauers Ernst Friedrich Rau, in der Werkstatt Pelargus in Erz gegossen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Marbach am Neckar"}], "identifier": "http://d-nb.info/gnd/1225876354", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1225876354", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1225876354", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1225876354", "source": "GND"}], "authorized_access_point": "Schiller-Denkmal (Marbach am Neckar)"} 1 +2024-09-10 15:47:58.866112 2024-09-10 15:47:58.866115 c3771382-67b9-416d-8efd-0937eb30ed82 {"md5": "97afd6efab5a627e7c398a6745c74041", "pid": "1224278054", "note": [{"label": ["Architekturmuseum, TU Berlin - https://architekturmuseum.ub.tu-berlin.de/index.php?p=51&SID=16093345395539", "Wikipedia - https://de.wikipedia.org/w/index.php?title=Akademietheater_(Wien)&oldid=204362083", "Homepage - https://www.burgtheater.at/akademietheater"], "noteType": "dataSource"}, {"label": ["Wird seit 1922 vom Burgtheater Wien als Kammerspielbühne genutzt."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Wien"}, {"authorized_access_point": "Wien"}], "identifier": "http://d-nb.info/gnd/1224278054", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1224278054", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1224278054", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1224278054", "source": "GND"}], "variant_access_point": ["Akademie-Theater Wien (Wien)", "Akademie Theater Wien (Wien)"], "authorized_access_point": "Akademietheater Wien (Wien)"} 1 +2024-09-10 15:47:58.928904 2024-09-10 15:47:58.928908 69aabafc-6bb6-4156-801d-0d84696b1b6c {"md5": "50895ca7e2578242e809138340ffa932", "pid": "122413754X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Turmh%C3%BCgelburg_Woja&oldid=206688094"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Rehau-Woja"}], "identifier": "http://d-nb.info/gnd/122413754X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/122413754X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)122413754X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)122413754X", "source": "GND"}], "variant_access_point": ["Turmhügel Woja (Rehau-Woja)", "Burg Woja (Rehau-Woja)"], "authorized_access_point": "Turmhügelburg Woja (Rehau-Woja)"} 1 +2024-09-10 15:47:58.991623 2024-09-10 15:47:58.991627 8b84d6db-1a52-4503-b6de-dc8e40ee813e {"md5": "59a2d73960ad8c1e2762e71a4bb0c82b", "pid": "122219953X", "note": [{"label": ["Stadt im Bezirk Utena, Litauen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Molėtai"}], "identifier": "http://d-nb.info/gnd/122219953X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/122219953X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)122219953X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)122219953X", "source": "GND"}], "variant_access_point": ["Balinkai", "Balnikų", "Balʹninkay", "Bolʹniki", "Balʹninkaj", "Бальнинкай"], "authorized_access_point": "Balninkai"} 1 +2024-09-10 15:47:59.067381 2024-09-10 15:47:59.067385 60522ed0-8747-4d3e-a4a2-1e7161931874 {"md5": "3352dc92c9313d3564fd2235b48da697", "pid": "1222199440", "note": [{"label": ["Stadt in der Gemeinde Rokiškis in Litauen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1222199440", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1222199440", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1222199440", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1222199440", "source": "GND"}], "variant_access_point": ["Kamajys", "Kamayay", "Komaje", "Kamajaj", "Камаяй"], "authorized_access_point": "Kamajai"} 1 +2024-09-10 15:47:59.147104 2024-09-10 15:47:59.147108 7f609550-6bf3-4c54-8ec4-8ec32c5669b8 {"md5": "506d98e793120b15cfa18c6e55f50c09", "pid": "1219234621", "note": [{"label": ["Landhaus des Bauernhofs, welcher ursprünglich zur Zisterzienserabtei Val-Richer (jetzt Gemeinde Saint-Ouen-le-Pin im Département Calvados der Region Normandie) gehörte. Ende des 19. Jahrhunderts von Conrad de Witt erworben. Nach dessen Tod waren Haus und Pressoir zunächst im Besitz des Enkels Jean Schlumberger, der ab 1954 (nach dem Verkauf an Louise Schlumberger) im Pressoir wohnte. Bis 1968 war Braffy dem Postamt La Boissière, danach Saint-Ouen-le-Pin zugewiesen."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Saint-Ouen-le-Pin"}, {"authorized_access_point": "La Boissière"}], "identifier": "http://d-nb.info/gnd/1219234621", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1219234621", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1219234621", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1219234621", "source": "GND"}], "authorized_access_point": "Braffy (Saint-Ouen-le-Pin)"} 1 +2024-09-10 15:47:59.209049 2024-09-10 15:47:59.209053 7de5c4ae-f526-4213-b7cd-8ddffcfd8245 {"md5": "ed79140e8c1ff505fa2b6533009b9199", "pid": "1215862520", "note": [{"label": ["GeoNames - http://geotree.geonames.org/11303211/"], "noteType": "dataSource"}, {"label": ["Dorf in der Gemeinde Alvitas, Rajon Vilkaviškis, Litauen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1215862520", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1215862520", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1215862520", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1215862520", "source": "GND"}], "authorized_access_point": "Kiršai"} 1 +2024-09-10 15:47:59.292186 2024-09-10 15:47:59.292191 201b113e-119c-4285-9d4f-1580753d8db9 {"md5": "0e423d6a4c84ae200d9d63ca44d2799e", "pid": "1208649175", "note": [{"label": ["GeoNames - https://geotree.geonames.org/599832/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Pakruojis"}], "identifier": "http://d-nb.info/gnd/1208649175", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1208649175", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1208649175", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1208649175", "source": "GND"}], "variant_access_point": ["Dirzhyay (Pakruojis)", "Diržių (Pakruojis)"], "authorized_access_point": "Diržiai (Pakruojis)"} 1 +2024-09-10 15:47:59.369851 2024-09-10 15:47:59.369855 deb65dc4-7f58-42b5-abe4-9d6a9cb3981e {"md5": "69f0141c43474fb9639c1b8c2bde186d", "pid": "1206005505", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1206005505", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1206005505", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1206005505", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1206005505", "source": "GND"}], "variant_access_point": ["Wagram"], "authorized_access_point": "Wagram-Gebiet"} 1 +2024-09-10 15:47:59.429562 2024-09-10 15:47:59.429567 bd81a10a-ca2d-4260-9ad2-678a719a90e6 {"md5": "0422a0444c77e924d8e1fb7ad074bb5b", "pid": "1203261837", "note": [{"label": ["GeoNames - http://geotree.geonames.org/598959/"], "noteType": "dataSource"}, {"label": ["Dorf in Litauen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Kreis Panevėžys"}], "identifier": "http://d-nb.info/gnd/1203261837", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1203261837", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1203261837", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1203261837", "source": "GND"}], "authorized_access_point": "Išlaužai"} 1 +2024-09-10 15:47:59.490421 2024-09-10 15:47:59.490427 c49891f2-7acb-4313-95a1-cfb0f43a63f3 {"md5": "9b4d5a86ff676af46727f64c3f10496d", "pid": "1197938001", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Woiwodschaft Vorkarpaten"}], "identifier": "http://d-nb.info/gnd/1197938001", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1197938001", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1197938001", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1197938001", "source": "GND"}], "variant_access_point": ["Jarocin", "Jarocin", "Jarocin"], "authorized_access_point": "Ziemia Jarocinska"} 1 +2024-09-10 15:47:59.551559 2024-09-10 15:47:59.551563 85684105-5823-4294-805b-b6e5bc706ac7 {"md5": "10a3da5989b561961dc299cb42ffde6e", "pid": "1192399013", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1192399013", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1192399013", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1192399013", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1192399013", "source": "GND"}], "variant_access_point": ["Repser Ländchen"], "authorized_access_point": "Rupea - Region"} 1 +2024-09-10 15:47:59.610407 2024-09-10 15:47:59.610411 2a500a04-01a7-4658-b755-05c3ce667520 {"md5": "492ab294c3fbee2d134f6eed559cef93", "pid": "1191133729", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Chemnitz"}], "identifier": "http://d-nb.info/gnd/1191133729", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1191133729", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1191133729", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1191133729", "source": "GND"}], "variant_access_point": ["Stadthalle (Chemnitz)"], "authorized_access_point": "Stadthalle Chemnitz (Chemnitz)"} 1 +2024-09-10 15:47:59.672784 2024-09-10 15:47:59.672788 861953bd-ed40-4856-a62b-bee655ad9e25 {"md5": "9ed604696ba70c4620c4d3f0ee0ddb7d", "pid": "1190333392", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1190333392", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1190333392", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1190333392", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1190333392", "source": "GND"}], "variant_access_point": ["Kleine Spree (Fluss)"], "authorized_access_point": "Kleine-Spree-Gebiet"} 1 +2024-09-10 15:47:59.73482 2024-09-10 15:47:59.734824 6721174e-cc03-44c7-ade1-f44fe20848a2 {"md5": "5cb536f36f9770cb8e801d8bbb457d7e", "pid": "1190333082", "note": [{"label": ["Wikipedia:Stand:11.07.2019 - https://de.wikipedia.org/wiki/Kleine_Spree"], "noteType": "dataSource"}, {"label": ["40 km langer linker Nebenarm der Spree im Landkreis Bautzen in Sachsen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1190333082", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1190333082", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1190333082", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1190333082", "source": "GND"}], "variant_access_point": ["Mała Sprjewja"], "authorized_access_point": "Kleine Spree"} 1 +2024-09-10 15:47:59.803083 2024-09-10 15:47:59.803086 e09d1fa1-63ce-40b6-a71f-6cbfe5ecb865 {"md5": "5c0d1b00df0a7a1390f902c33508f320", "pid": "1190328259", "note": [{"label": ["Mündungsarm der Oder zwischen den Inseln Usedom und Wollin, 16 km lang, Woiwodschaft Westpommern"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1190328259", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1190328259", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1190328259", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1190328259", "source": "GND"}], "variant_access_point": ["Świna", "Swine (Fluss)"], "authorized_access_point": "Swine"} 1 +2024-09-10 15:47:59.8624 2024-09-10 15:47:59.862405 3724b6af-9c30-46f4-88ce-78fd4608ce05 {"md5": "85099b3b30f0f3a762c1364290ead7fe", "pid": "1189443015", "note": [{"label": ["Internet - http://www.muzeumwalcz.pl/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1189443015", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1189443015", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1189443015", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1189443015", "source": "GND"}], "variant_access_point": ["Wałcz", "Ziemia wałecka", "Deutsch Kroner Land", "Deutsch Krone (Land)"], "authorized_access_point": "Wałcz - Region"} 1 +2024-09-10 15:47:59.92264 2024-09-10 15:47:59.922643 78b03d37-4b11-4dc6-b6ef-7487aca9acec {"md5": "d6c0b6140ff7f5e5593c3ce61ae9107d", "pid": "1188738658", "note": [{"label": ["Gemeindebrief der Evangelisch-Lutherischen Kirchengemeinde [Cloppenburg], Nr. 2/08 · Juni bis September 2008, S. 4-7 - http://evangelisch-in-cloppenburg.de/wp-content/uploads/2017/04/08-2-ohne-Kasu.pdf", "Homepage - http://evangelisch-in-cloppenburg.de/schwedenheim-2"], "noteType": "dataSource"}, {"label": ["Vom schwedisches Hilfswerk I.M. (Innereuropäische Mission) für karitative Zwecke gestiftetes Haus (u.a. Flüchtlingshilfe), ca. 1965 in die Trägerschaft des Diakonischen Werks Oldenburg übergangen; nach Umbauten, Erweiterungen und Renovierungen Nutzung als Gemeindezentrum, Kindergarten und Schule"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Cloppenburg"}], "identifier": "http://d-nb.info/gnd/1188738658", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1188738658", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1188738658", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1188738658", "source": "GND"}], "variant_access_point": ["Gemeindezentrum Schwedenheim (Cloppenburg)"], "authorized_access_point": "Schwedenheim (Cloppenburg)"} 1 +2024-09-10 15:47:59.987041 2024-09-10 15:47:59.987044 8cf7464c-44eb-4e68-8c37-687b7b396575 {"md5": "3678c12a7efffd9f55924a8d124a63b1", "pid": "1184832803", "note": [{"label": ["Homepage - https://www.geopark-bayern.de/de/"], "noteType": "dataSource"}, {"label": ["Träger ist der Verein GEOPARK Bayern-Böhmen e.V."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bayern"}, {"authorized_access_point": "Bayern"}], "identifier": "http://d-nb.info/gnd/1184832803", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1184832803", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1184832803", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1184832803", "source": "GND"}], "variant_access_point": ["Česko-Bavorský Geopark"], "authorized_access_point": "Geopark Bayern-Böhmen"} 1 +2024-09-10 15:48:00.050975 2024-09-10 15:48:00.050979 05a72587-ee5d-4cbc-bdf8-4b71872d436b {"md5": "e4b5c241bb43adcc7a5462e4c5d08948", "pid": "1184428727", "note": [{"label": ["Im Ostorfer See in Schwerin gelegene Halbinsel, erst im 20. Jh. als Wohnort genutzt"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Schwerin"}], "identifier": "http://d-nb.info/gnd/1184428727", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1184428727", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1184428727", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1184428727", "source": "GND"}], "variant_access_point": ["Halbinsel Zwang", "Dwang, Halbinsel"], "authorized_access_point": "Halbinsel Dwang"} 1 +2024-09-10 15:48:00.118188 2024-09-10 15:48:00.118192 baf6508a-214e-42ed-92d4-f7dc51143abc {"md5": "bfb072e06a8f8ecbc46a7d8bdfb195de", "pid": "1182916759", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Trattendorf"], "noteType": "dataSource"}, {"label": ["Trattendorf (niedersorbisch Dubrawa) ist eine ehemals selbständige Gemeinde; seit 1.1.1946 nach Spremberg eingemeindet. Im Landkreis Spree-Neiße in Brandenburg"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Spremberg-Trattendorf"}], "identifier": "http://d-nb.info/gnd/1182916759", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1182916759", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1182916759", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1182916759", "source": "GND"}], "variant_access_point": ["Dubrawa"], "authorized_access_point": "Trattendorf"} 1 +2024-09-10 15:48:00.18098 2024-09-10 15:48:00.180984 e1a676ca-d172-4ec0-8caf-cf1bfbaf095c {"md5": "22c0a526e1360e415cf365866722e41f", "pid": "1182704948", "note": [{"label": ["unter - https://de.wikipedia.org/wiki/Heringsdorf", "unter - https://de.wikipedia.org/wiki/Bansin"], "noteType": "dataSource"}, {"label": ["Ort im Landkreis Usedom; 1818-1945: Kreis Usedom-Wollin), 1818 angelegt, 1826 Kolonie Neu Sallenthin, 1.7.1950 nach Basin eingemeindet, mit diesem 1.1.2005 nach Dreikaiserbäder"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Heringsdorf-Neu Sallenthin"}], "identifier": "http://d-nb.info/gnd/1182704948", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1182704948", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1182704948", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1182704948", "source": "GND"}], "authorized_access_point": "Neu Sallenthin"} 1 +2024-09-10 15:48:00.243322 2024-09-10 15:48:00.243326 a31c76e4-2c9b-451e-9d1e-d20056ad56ad {"md5": "8a03962d114139bfb2d81154687f99b3", "pid": "1180664485", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Belgier-Kaserne&oldid=195855777"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Graz"}, {"authorized_access_point": "Graz-Wetzelsdorf"}], "identifier": "http://d-nb.info/gnd/1180664485", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1180664485", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1180664485", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1180664485", "source": "GND"}], "variant_access_point": ["Belgierkaserne (Graz)", "SS-Kaserne Wetzelsdorf"], "authorized_access_point": "Belgier-Kaserne (Graz)"} 1 +2024-09-10 15:48:00.31385 2024-09-10 15:48:00.313854 bb656bef-3e5f-4599-b731-a84d336dee7e {"md5": "ab90b44045db66576a38e5f9be41b030", "pid": "1180620623", "note": [{"label": ["unter - https://de.wikipedia.org/wiki/Heringsdorf", "unter - https://de.wikipedia.org/wiki/Bansin"], "noteType": "dataSource"}, {"label": ["Ortsteil von Heringsdorf seit 1.1.2006, 1818 angelegt, 1826 Kolonie Neu Sallenthin, 1.7.1950 nach Basin eingemeindet, mit diesem 1.1.2005 nach Dreikaiserbäder"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Heringsdorf (Seebad)"}, {"authorized_access_point": "Neu Sallenthin"}], "identifier": "http://d-nb.info/gnd/1180620623", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1180620623", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1180620623", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1180620623", "source": "GND"}], "variant_access_point": ["Heringsdorf- Neu Sallenthin", "Neu Sallenthin (Heringsdorf, Seebad)"], "authorized_access_point": "Heringsdorf-Neu Sallenthin"} 1 +2024-09-10 15:48:00.371157 2024-09-10 15:48:00.37116 fb0f1891-6f04-41f3-b201-f65daa78041e {"md5": "68f851c203d358e3033350bac891923e", "pid": "1179502884", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1179502884", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1179502884", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1179502884", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1179502884", "source": "GND"}], "variant_access_point": ["Krotoszyn", "Krotoschin", "Krotoschin", "Ziemia Krotoszyńska"], "authorized_access_point": "Krotoszyn - Region"} 1 +2024-09-10 15:48:00.430725 2024-09-10 15:48:00.430729 e4af5092-00ab-4cdb-9a3f-d46c84af7dca {"md5": "41f3d2a3d588a4592f2eea1210ae7bfc", "pid": "1177183811", "note": [{"label": ["Internet - https://www.fietsplatform.nl/uploads/folder_NLFL_DE_2017_download.pdf"], "noteType": "dataSource"}, {"label": ["Ca. 400 km langer Rundkurs um das Ijsselmeer"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1177183811", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1177183811", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1177183811", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1177183811", "source": "GND"}], "variant_access_point": ["Zuidersee-Radweg", "Zuiderzee-Radweg", "Zuiderzeeroute", "Ijsselmeer Radroute"], "authorized_access_point": "Ijsselmeer-Radweg"} 1 +2024-09-10 15:48:00.493109 2024-09-10 15:48:00.493112 38709fac-cb26-46ca-ab32-9fa40bc34e0e {"md5": "c843d005d01dda9a289606c8e4adcb6c", "pid": "1177087480", "note": [{"label": ["Wikipedia: - https://de.wikipedia.org/wiki/Elsterstausee_B%C3%B6sdorf"], "noteType": "dataSource"}, {"label": ["1933-1935 angelegt, 2017 wurde der Status des Elsterstausees als Gewässer/Stauanlage aufgegeben"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1177087480", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1177087480", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1177087480", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1177087480", "source": "GND"}], "variant_access_point": ["Elsterstausee Bösdorf", "Elsterstausee Leipzig-Knauthain", "Stausee Bösdorf"], "authorized_access_point": "Elsterstausee (Leipzig)"} 1 +2024-09-10 15:48:00.571415 2024-09-10 15:48:00.571419 4edb0da3-2986-46e8-94ec-617478d3bfb7 {"md5": "b374a88c79f7cf049ed80087eb08d838", "pid": "1171383401", "note": [{"label": ["Wikipedia: - https://de.wikipedia.org/wiki/R%C5%AF%C5%BEovsk%C3%BD_vrch"], "noteType": "dataSource"}, {"label": ["Berg in der rechtselbischen Böhmischen Schweiz (619 m) in Tschechien"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Böhmische Schweiz"}], "identifier": "http://d-nb.info/gnd/1171383401", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1171383401", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1171383401", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1171383401", "source": "GND"}], "variant_access_point": ["Rosenberg (Böhmische Schweiz : Berg)", "Růžák"], "authorized_access_point": "Růžovský vrch"} 1 +2024-09-10 15:48:00.637074 2024-09-10 15:48:00.637078 a55419b9-44a7-450a-91fb-dff31a3f6430 {"md5": "a55ec583f2f4f078f45ed4eb45af66dd", "pid": "1169806708", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Kaunas"}], "identifier": "http://d-nb.info/gnd/1169806708", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1169806708", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1169806708", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1169806708", "source": "GND"}], "authorized_access_point": "Kaunas - Region, Ost"} 1 +2024-09-10 15:48:00.700279 2024-09-10 15:48:00.700284 034f7d1e-02d2-493c-a8ea-29170f5acb27 {"md5": "e80e62340bc712fd894627d230360bb9", "pid": "1169806686", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Kaunas"}], "identifier": "http://d-nb.info/gnd/1169806686", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1169806686", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1169806686", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1169806686", "source": "GND"}], "authorized_access_point": "Kaunas - Region, West"} 1 +2024-09-10 15:48:00.764061 2024-09-10 15:48:00.764066 9117eaed-0b17-463d-9141-de7d50275f79 {"md5": "69e39fedcf9bee91394ebec7b05e0f83", "pid": "1169805167", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Dzūkija"}], "identifier": "http://d-nb.info/gnd/1169805167", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1169805167", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1169805167", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1169805167", "source": "GND"}], "authorized_access_point": "Dzūkija - Ost"} 1 +2024-09-10 15:48:00.88959 2024-09-10 15:48:00.889593 3d15525a-76d7-4a61-bd6e-d1b60650b44a {"md5": "68d147557cef7b62baad7ce328b07ded", "pid": "1167694643", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Sardinien"}], "identifier": "http://d-nb.info/gnd/1167694643", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1167694643", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1167694643", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1167694643", "source": "GND"}], "variant_access_point": ["Comune di San Basilio (Sardinien)", "Santu 'Asili 'e Monti"], "authorized_access_point": "San Basilio (Sardinien)"} 1 +2024-09-10 15:48:00.95406 2024-09-10 15:48:00.954063 72ec2f6f-0696-4d54-8ac5-58190fb54c00 {"md5": "5c6af9e757744f83e23e403108706b07", "pid": "1167335767", "note": [{"label": ["Kette von Tiefseebergen von der Südpazifischen Querschwelle bis zum Kermadec-Tonga-Rücken"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1167335767", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1167335767", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1167335767", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1167335767", "source": "GND"}], "variant_access_point": ["Louisville-Seamount-Chain", "Louisville Seamounts", "Louisville-Seamounts", "Louisville Ridge", "Louisville-Ridge"], "authorized_access_point": "Louisville Seamount Chain"} 1 +2024-09-10 15:48:01.014503 2024-09-10 15:48:01.014508 0c94d86f-7be5-4f17-8702-a985516328f0 {"md5": "cf174fe89f75a14cd8ade5dd29e6b36f", "pid": "1166988325", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Neusch%C3%B6nefeld&oldid=178415670"], "noteType": "dataSource"}, {"label": ["Ortsteil von Leipzig seit 1890"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Leipzig-Neustadt-Neuschönefeld"}], "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Neuschönefeld"}], "identifier": "http://d-nb.info/gnd/1166988325", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1166988325", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1166988325", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1166988325", "source": "GND"}], "variant_access_point": ["Neuschönefeld (Leipzig)"], "authorized_access_point": "Leipzig-Neuschönefeld"} 1 +2024-09-10 15:48:01.084667 2024-09-10 15:48:01.084672 9304c346-8c81-462f-9c0b-23c5fc5f0d24 {"md5": "500f214d461aed0b0dc2deac41cc50be", "pid": "1166988007", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Neustadt_(Leipzig)&oldid=173318045"], "noteType": "dataSource"}, {"label": ["Ortsteil von Leipzig seit 1890"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Leipzig-Neustadt-Neuschönefeld"}], "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Neustadt (Leipzig)"}], "identifier": "http://d-nb.info/gnd/1166988007", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1166988007", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1166988007", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1166988007", "source": "GND"}], "variant_access_point": ["Neustadt (Leipzig)"], "authorized_access_point": "Leipzig-Neustadt"} 1 +2024-09-10 15:48:01.152832 2024-09-10 15:48:01.152835 1d53de8a-c43c-43a9-8a34-75ecb325b7eb {"md5": "59a19eb8721fed20e0debd7e6777ef18", "pid": "1166098877", "note": [{"label": ["Wikipedia - https://pl.wikipedia.org/wiki/Ziemia_lubawska"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1166098877", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1166098877", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1166098877", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1166098877", "source": "GND"}], "variant_access_point": ["Lubawa", "Ziemia lubawska", "Löbauer Land (Westpreußen)", "Löbau (Westpreußen)", "Löbau (Westpreußen)"], "authorized_access_point": "Lubawa - Region"} 1 +2024-09-10 15:48:01.214839 2024-09-10 15:48:01.214843 943950eb-b7d4-41e4-9430-b4f46dba6ad0 {"md5": "2d037a34295328857efcb78b60d491ba", "pid": "1165597586", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Woiwodschaft Lublin"}], "identifier": "http://d-nb.info/gnd/1165597586", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1165597586", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1165597586", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1165597586", "source": "GND"}], "variant_access_point": ["Radzyń Podlaski", "Radzyń Podlaski"], "authorized_access_point": "Radzyń Podlaski - Region"} 1 +2024-09-10 15:48:01.28169 2024-09-10 15:48:01.281694 6b46b1df-0667-44cd-a4c1-3814880ac93e {"md5": "a2fc166f42e322a4a5dd2d0346789289", "pid": "1164527657", "note": [{"label": ["Internet - http://www.comune.sondrio.it/site/home/cosa-devo-fare-per/vivere-arte-e-tempo-libero/articolo1725279.html"], "noteType": "dataSource"}, {"label": ["32 km langer Bergwanderweg vom Veltlin ins Oberengadin"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Maloja"}, {"authorized_access_point": "Sondrio"}], "identifier": "http://d-nb.info/gnd/1164527657", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1164527657", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1164527657", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1164527657", "source": "GND"}], "authorized_access_point": "Sentiero Rusca"} 1 +2024-09-10 15:48:01.345935 2024-09-10 15:48:01.34594 5b53f301-5ad0-4041-833f-e628275b0828 {"md5": "f4b02bc8cdf3dd9f74f1cb35cf9beeeb", "pid": "116355815X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Ahlbeck_(Heringsdorf)"], "noteType": "dataSource"}, {"label": ["Ortsteil von Heringsdorf (1.1.2005-31.12.2005: Dreikaiserbäder) seit 1.1.2006"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Heringsdorf (Seebad)"}, {"authorized_access_point": "Dreikaiserbäder-Ahlbeck"}], "identifier": "http://d-nb.info/gnd/116355815X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/116355815X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)116355815X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)116355815X", "source": "GND"}], "variant_access_point": ["Ahlbeck (Heringsdorf, Seebad)"], "authorized_access_point": "Heringsdorf-Ahlbeck"} 1 +2024-09-10 15:48:01.410205 2024-09-10 15:48:01.410209 138d98c9-8669-4ba4-ae03-e13e5047fcb2 {"md5": "46e0fbd154d472af538f3d4eadddd64f", "pid": "1163558095", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Ahlbeck_(Heringsdorf)"], "noteType": "dataSource"}, {"label": ["Ortsteil von Dreikaiserbäder seit 1.1.2005, 1.1.2006 in Heringsdorf umbenannt"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Heringsdorf-Ahlbeck"}], "related": [{"authorized_access_point": "Dreikaiserbäder"}, {"authorized_access_point": "Ahlbeck (Seebad)"}], "identifier": "http://d-nb.info/gnd/1163558095", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1163558095", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1163558095", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1163558095", "source": "GND"}], "variant_access_point": ["Ahlbeck (Dreikaiserbäder)"], "authorized_access_point": "Dreikaiserbäder-Ahlbeck"} 1 +2024-09-10 15:48:01.475166 2024-09-10 15:48:01.47517 7ddce887-c897-4459-bfcd-7c689c4a7a5c {"md5": "936d975d197bbdc60f1e7ea68548fb95", "pid": "1163419907", "note": [{"label": ["Ortsteil von Dreikaiserbäder seit 1.1.2005, 1.1.2005 in Ostseebad Heringsdorf umbenannt"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Heringsdorf-Bansin"}], "related": [{"authorized_access_point": "Dreikaiserbäder"}, {"authorized_access_point": "Bansin"}], "identifier": "http://d-nb.info/gnd/1163419907", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1163419907", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1163419907", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1163419907", "source": "GND"}], "variant_access_point": ["Bansin (Dreikaiserbäder)"], "authorized_access_point": "Dreikaiserbäder-Bansin"} 1 +2024-09-10 15:48:01.538794 2024-09-10 15:48:01.538798 00778c8c-4a08-4ffe-a13c-02da4c108f6e {"md5": "7d559ccc74a9ca2e6dd694d62b501b09", "pid": "1161830820", "note": [{"label": ["Internet - https://www.esterbauer.com/db_detail.php?buecher_code=TDF"], "noteType": "dataSource"}, {"label": ["Radwanderweg durch den Norden Belgiens"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1161830820", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1161830820", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1161830820", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1161830820", "source": "GND"}], "variant_access_point": ["Vlaanderen Fietsroute"], "authorized_access_point": "Flandern-Route"} 1 +2024-09-10 15:48:01.600544 2024-09-10 15:48:01.600548 683577af-8060-4704-9324-2bd53eb8b5e5 {"md5": "04c776847a256120924d1935d78a1b87", "pid": "1161625046", "note": [{"label": ["Internet - https://www.kaufbeuren-tourismus.de/aktiv/schlossparkradrunde.html", "Internet - https://www.schlosspark.de/schlosspark-erleben/schlossparkradrunde.html"], "noteType": "dataSource"}, {"label": ["219 km langer Radrundweg im Ostallgäu, als Ausgangsort wird Füssen genannt"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1161625046", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1161625046", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1161625046", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1161625046", "source": "GND"}], "variant_access_point": ["Allgäuer Schlossparkradrunde"], "authorized_access_point": "Schlossparkradrunde im Allgäu"} 1 +2024-09-10 15:48:01.667402 2024-09-10 15:48:01.667406 e8a913ae-9225-4abc-8cab-a68075b34241 {"md5": "883153b91e4962a4034bb95063372e05", "pid": "1156658128", "note": [{"label": ["Internet: - https://www.trescher-verlag.de/reisefuehrer/deutschland/paul-gerhardt-weg.html"], "noteType": "dataSource"}, {"label": ["140 km langer Fernwanderweg von Berlin nach Lübben"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Berlin"}, {"authorized_access_point": "Lübben (Spreewald)"}], "identifier": "http://d-nb.info/gnd/1156658128", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1156658128", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1156658128", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1156658128", "source": "GND"}], "variant_access_point": ["Paul-Gerhardt-Wanderweg"], "authorized_access_point": "Paul-Gerhardt-Weg"} 1 +2024-09-10 15:48:01.748899 2024-09-10 15:48:01.748904 f58c8025-026a-48e7-872f-7f51f759f5b8 {"md5": "7f775e6e9777fdc61dd4eaf524ccd4a5", "pid": "1156051029", "note": [{"label": ["1903 erbautes Gewerbehaus; 1978 zu Wohnhaus umgenutzt, soll Überbauung weichen."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Luzern"}], "identifier": "http://d-nb.info/gnd/1156051029", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1156051029", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1156051029", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1156051029", "source": "GND"}], "authorized_access_point": "Industriestrasse 9 (Luzern)"} 1 +2024-09-10 15:48:01.825568 2024-09-10 15:48:01.825572 8fe6889e-7110-47ab-8161-e3d420c84c0c {"md5": "088a4ff160352b6a5c529611bc404443", "pid": "1148115242", "note": [{"label": ["Equord ist seit 1.3.1974 ein Ortsteil der Gemeinde Hohenhameln im Landkreis Peine in Niedersachsen."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Hohenhameln"}, {"authorized_access_point": "Equord"}], "identifier": "http://d-nb.info/gnd/1148115242", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1148115242", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1148115242", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1148115242", "source": "GND"}], "authorized_access_point": "Hohenhameln-Equord"} 1 +2024-09-10 15:48:01.903272 2024-09-10 15:48:01.903275 74d4efe8-6c7a-4e3c-8c9d-929f4e95d246 {"md5": "28969f06413ee86f4afbdc0a0b4b39d1", "pid": "1147654123", "note": [{"label": ["Internet - https://www.rheinhessen.de/rheinterrassenweg", "Wikipedia - https://de.wikipedia.org/wiki/Rheinterrassenweg"], "noteType": "dataSource"}, {"label": ["Circa 60 km langer Wanderweg von Worms nach Mainz"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Worms"}, {"authorized_access_point": "Mainz"}], "identifier": "http://d-nb.info/gnd/1147654123", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1147654123", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1147654123", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1147654123", "source": "GND"}], "variant_access_point": ["Rheinterrassenweg", "Rhein-Terrassen-Weg"], "authorized_access_point": "RheinTerrassenWeg"} 1 +2024-09-10 15:48:01.97308 2024-09-10 15:48:01.973083 beed3168-0e03-42ca-ba87-3af65078d4e0 {"md5": "ccb837dc264c9cfda9898e6705bacbf9", "pid": "1143714245", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Kurpie&oldid=215616715"], "noteType": "dataSource"}, {"label": ["Kurpie ist sowohl die Bezeichnung für die Region als auch für die dortige Bevölkerung, die Region erstreckt sich in den heutigen Woiwodschaften Masowien, Podlasien und Ermland-Masuren"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1143714245", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1143714245", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1143714245", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1143714245", "source": "GND"}], "variant_access_point": ["Kurpengau"], "authorized_access_point": "Kurpie - Region"} 1 +2024-09-10 15:48:02.036587 2024-09-10 15:48:02.036591 e13df05c-2826-497e-8392-53a08837973d {"md5": "88d88c106262d578cefa16f2a06420be", "pid": "1143154991", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Continental_Divide_Trail"], "noteType": "dataSource"}, {"label": ["rund 5.000 Kilometer langer Fernwanderweg entlang der nordamerikanischen kontinentalen Wasserscheide von der mexikanischen bis zur kanadischen Grenze."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1143154991", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1143154991", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1143154991", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1143154991", "source": "GND"}], "variant_access_point": ["CDT (Fernwanderweg)"], "authorized_access_point": "Continental Divide Trail"} 1 +2024-09-10 15:48:02.112273 2024-09-10 15:48:02.112278 f77d1bc3-d055-4ee6-b5ab-e9775bdefc53 {"md5": "2cf2c8dfdce54a5e4edf7b581728f760", "pid": "1142135993", "note": [{"label": ["Beitrag zur Skulpturenausstellung \\"Skulptur-Projekte Münster 1987\\""], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Münster (Westf)"}], "related": [{"authorized_access_point": "Juridicum (Münster (Westf))"}], "identifier": "http://d-nb.info/gnd/1142135993", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1142135993", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1142135993", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1142135993", "source": "GND"}], "variant_access_point": ["The meadow laughs (Münster (Westf))", "Tine lawn laughs (Münster (Westf))", "Das Gesicht in der Wand (Münster (Westf))", "The face in the wall (Münster (Westf))", "Die Wiese lacht oder das Gesicht in der Wand (Münster (Westf))", "The meadow laughs or the face in the wall (Münster (Westf))", "Tine lawn laughs or the face in the wall (Münster (Westf))"], "authorized_access_point": "Die Wiese lacht (Münster (Westf))"} 1 +2024-09-10 15:48:02.189204 2024-09-10 15:48:02.189208 2d3bf2f4-26cf-49da-a481-bc75043fa360 {"md5": "dcc147e4a82943e2d9de3413eacf50e5", "pid": "1139463888", "note": [{"label": ["Internet - https://www.donau.com/de/donau-niederoesterreich/infos-service/presse-b2b/presse/weitwanderweg-nibelungengau-wandern-am-fluss/b4fcca43e95b082793e09cc66f72d118/?tx_news_pi1%5Bcontroller%5D=News&tx_news_pi1%5Baction%5D=detail"], "noteType": "dataSource"}, {"label": ["110 km langer Wanderweg beidseits der Donau in Niederöstereich zwischen Sankt Nikola- Sarmingstein und Emmersdorf an der Donau"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Sankt Nikola- Sarmingstein"}, {"authorized_access_point": "Emmersdorf an der Donau"}], "identifier": "http://d-nb.info/gnd/1139463888", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1139463888", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1139463888", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1139463888", "source": "GND"}], "authorized_access_point": "Weitwanderweg Nibelungengau"} 1 +2024-09-10 15:48:02.25102 2024-09-10 15:48:02.251025 a5727497-1dd9-4e8b-9937-ef80c2618a4f {"md5": "6b38feee5b5dc037793141812354a203", "pid": "113914071X", "note": [{"label": ["Internet - http://www.drei-fluesse-tour.de/"], "noteType": "dataSource"}, {"label": ["300 km langen Rundkurs entlang der drei Flüsse Rhein, Erft und Ahr"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/113914071X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/113914071X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)113914071X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)113914071X", "source": "GND"}], "variant_access_point": ["Drei-Flüsse-Tour", "Drei-Flüsse-Radweg", "Drei-Flüsse-Radwanderweg"], "authorized_access_point": "3-Flüsse-Tour"} 1 +2024-09-10 15:48:02.323624 2024-09-10 15:48:02.323627 4f2b4401-e520-4409-b0a9-370e6a38a595 {"md5": "a2ed8b9e7b14883433550e0d32bb5183", "pid": "113698612X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Hansaweg"], "noteType": "dataSource"}, {"label": ["72 km langer Fernwanderweg zwischen Herford und Hameln. Besteht ungefähr seit 1936."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Herford"}, {"authorized_access_point": "Hameln"}], "identifier": "http://d-nb.info/gnd/113698612X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/113698612X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)113698612X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)113698612X", "source": "GND"}], "variant_access_point": ["Hansa Weg", "Hansawanderweg", "Hansa Wanderweg"], "authorized_access_point": "Hansaweg"} 1 +2024-09-10 15:48:02.385397 2024-09-10 15:48:02.385401 05ce92bf-20f5-457c-b516-7bdbb32fa46b {"md5": "a3a8ce45f1156887195b01bbee213222", "pid": "1136731237", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Au an der Donau"}, {"authorized_access_point": "Naarn im Machlande"}], "identifier": "http://d-nb.info/gnd/1136731237", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1136731237", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1136731237", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1136731237", "source": "GND"}], "variant_access_point": ["Naarn im Machlande- Au"], "authorized_access_point": "Naarn- Au an der Donau"} 1 +2024-09-10 15:48:02.446327 2024-09-10 15:48:02.446332 7fe7d51d-f88c-4d1f-abf5-ee4bf9cbc3e3 {"md5": "6960a792b95077247072cdb9e10c4788", "pid": "1136092293", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1136092293", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1136092293", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1136092293", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1136092293", "source": "GND"}], "authorized_access_point": "Schengen - Region"} 1 +2024-09-10 15:48:02.510354 2024-09-10 15:48:02.51036 46eafd5a-8d77-4a4d-950e-08d25d93158c {"md5": "ed33c2ed6f0676792591581f3c9c19d8", "pid": "1135805342", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Oberes_Angertal"], "noteType": "dataSource"}, {"label": ["Landschaft in Nordrhein-Westfalen zwischen Velbert und Wülfrath. Sie wurde in den 1940er-Jahren dem Kalkabbau geopfert, zahlreiche Höfe und Kotten wurden devastiert"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Angerbachtal (Rheinland)"}, {"authorized_access_point": "Niederbergisches Land"}], "identifier": "http://d-nb.info/gnd/1135805342", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1135805342", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1135805342", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1135805342", "source": "GND"}], "variant_access_point": ["Obere Angerbachtal", "Oberes Angertal"], "authorized_access_point": "Obere Angertal (Niederbergisches Land)"} 1 +2024-09-10 15:48:02.581286 2024-09-10 15:48:02.581289 f28490b7-b6bd-477d-a64e-8a21831ef2a9 {"md5": "4eac57196664df0da06e76cbb51d2982", "pid": "1135798842", "note": [{"label": ["GeoNames - http://www.geonames.org/598887/jasiunai.html"], "noteType": "dataSource"}, {"label": ["Stadt in Litauen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1135798842", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1135798842", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1135798842", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1135798842", "source": "GND"}], "authorized_access_point": "Jašiūnai"} 1 +2024-09-10 15:48:02.642157 2024-09-10 15:48:02.642161 d18af3f2-b2a9-4517-8f2d-a8e51d8f59d1 {"md5": "76338108b7f0b32a075867b18371e793", "pid": "1133293247", "note": [{"label": ["Ev. Kirche, Turm im unteren Bereich romanisch, gotisches Schiff mit polygonalem Chor, 1947/48 restauriert"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Isingen"}], "identifier": "http://d-nb.info/gnd/1133293247", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1133293247", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1133293247", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1133293247", "source": "GND"}], "authorized_access_point": "Martinskirche (Isingen)"} 1 +2024-09-10 15:48:02.7055 2024-09-10 15:48:02.705506 3645d493-1ab9-408d-8d7c-dd14405dc4ca {"md5": "5c21508772becfac7de258dd4e0f40fd", "pid": "1132227771", "note": [{"label": ["Internet - http://caminoignaciano.org/de/introduccion"], "noteType": "dataSource"}, {"label": ["Pilgerweg vom Baskenland nach Katalonien, es ist die Strecke die Ignatius von Loy 1522 gegangen ist"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Azpeitia-Loyola"}, {"authorized_access_point": "Manresa"}], "identifier": "http://d-nb.info/gnd/1132227771", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1132227771", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1132227771", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1132227771", "source": "GND"}], "variant_access_point": ["Ignatius-Weg", "Camino Ignaciano", "Inaziotar Bidea"], "authorized_access_point": "Ignatiusweg"} 1 +2024-09-10 15:48:02.76402 2024-09-10 15:48:02.764024 a46d9082-2ba6-4d0b-ade7-e088ab3dc3fd {"md5": "d0a301bda86e9a6a7d379ee3163d50f6", "pid": "1124279156", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1124279156", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1124279156", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1124279156", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1124279156", "source": "GND"}], "variant_access_point": ["Gampenpass"], "authorized_access_point": "Gampenpass-Gebiet"} 1 +2024-09-10 15:48:02.819673 2024-09-10 15:48:02.819676 491348be-72ca-4db5-a45d-96f6cbe0b77d {"md5": "ae1051872eb539bdd88365fd2f505536", "pid": "1122747160", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Simbabwe"}], "identifier": "http://d-nb.info/gnd/1122747160", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1122747160", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1122747160", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1122747160", "source": "GND"}], "variant_access_point": ["Nordwestsimbabwe"], "authorized_access_point": "Simbabwe - Nordwest"} 1 +2024-09-10 15:48:02.892892 2024-09-10 15:48:02.892896 38a6f501-7996-454e-8904-6dbfa3dc7db1 {"md5": "ea8cb2986d48e3725a24e17b44f15419", "pid": "1122668171", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Myanmar"}], "identifier": "http://d-nb.info/gnd/1122668171", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1122668171", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1122668171", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1122668171", "source": "GND"}], "variant_access_point": ["Birma", "Nordwestliches Birma"], "authorized_access_point": "Myanmar (Nordwest)"} 1 +2024-09-10 15:48:02.963925 2024-09-10 15:48:02.96393 440303ee-5b74-4af5-adb2-6cd921a80024 {"md5": "6bc7fb995254e574006842133a87d2b4", "pid": "112132925X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Sakdrissi"], "noteType": "dataSource"}, {"label": ["frühbronzezeitlichen Bergbaugebiet in Georgien, das auch das älteste bekannte Goldbergwerk der Welt barg."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/112132925X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/112132925X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)112132925X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)112132925X", "source": "GND"}], "variant_access_point": ["Sakdrisi"], "authorized_access_point": "Sakdrissi"} 1 +2024-09-10 15:48:03.08183 2024-09-10 15:48:03.081834 f9ddab26-0896-4e5b-957c-1125562c1998 {"md5": "9a375095892957ebddb6d58c5904d99d", "pid": "1107605113", "note": [{"label": ["Internet - http://www.allgaeu.de/himmelsstuermer-route"], "noteType": "dataSource"}, {"label": ["ca. 340 km langer Bergwanderweg im Allgäu, Teil der Wandertrilogie Allgäu"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Wandertrilogie Allgäu"}], "related": [{"authorized_access_point": "Halblech"}, {"authorized_access_point": "Pfronten"}], "identifier": "http://d-nb.info/gnd/1107605113", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1107605113", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1107605113", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1107605113", "source": "GND"}], "variant_access_point": ["Himmelsstürmer-Route"], "authorized_access_point": "Himmelsstürmer Route"} 1 +2024-09-10 15:48:03.143055 2024-09-10 15:48:03.143058 9e44a241-2f73-4669-92a7-cbc4e33c6923 {"md5": "cf7620392e0c80d572cbce1e27c5d80b", "pid": "1105589110", "note": [{"label": ["Internet - http://www.allgaeu.de/wanderrouten?referralTopic=wandern"], "noteType": "dataSource"}, {"label": ["ca. 390 km langer Rundwanderweg im Allgäu, Teil der Wandertrilogie Allgäu"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Wandertrilogie Allgäu"}], "identifier": "http://d-nb.info/gnd/1105589110", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1105589110", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1105589110", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1105589110", "source": "GND"}], "variant_access_point": ["Wasserläufer-Route"], "authorized_access_point": "Wasserläufer Route"} 1 +2024-09-10 15:48:03.205025 2024-09-10 15:48:03.205028 4817a3e4-b6ae-4f29-beae-1017b0ffe551 {"md5": "15f6635ab58ffe541d746086b610a926", "pid": "1101612258", "note": [{"label": ["Wikipedia: - https://de.wikipedia.org/wiki/Yimeng_Shan"], "noteType": "dataSource"}, {"label": ["Gebirge in der Provinz Shandong"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1101612258", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1101612258", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1101612258", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1101612258", "source": "GND"}], "variant_access_point": ["Yimengshan", "Yimeng", "Yimeng-Bergland"], "authorized_access_point": "Yimeng Shan"} 1 +2024-09-10 15:48:03.275481 2024-09-10 15:48:03.275484 b4473660-71b8-4889-843a-1474e0e2c7a1 {"md5": "46976d0aa6b926d0c2b64a6677e63f0d", "pid": "1100323325", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Nahe-Radweg"], "noteType": "dataSource"}, {"label": ["Ca. 128 km langer Flußradweg entlang der Nahe"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Nohfelden-Selbach"}, {"authorized_access_point": "Bingen am Rhein"}], "identifier": "http://d-nb.info/gnd/1100323325", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1100323325", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1100323325", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1100323325", "source": "GND"}], "authorized_access_point": "Nahe-Radweg"} 1 +2024-09-10 15:48:03.336875 2024-09-10 15:48:03.336878 de0ed797-626d-4c91-8ec7-5a0d75a1de05 {"md5": "52acd2cab9bcda65ebdbbc3b5d6206bd", "pid": "1100201831", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Ennsradweg"], "noteType": "dataSource"}, {"label": ["ca. 260 km langer Radwanderweg entlang der Enns"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Flachau-Flachauwinkl"}, {"authorized_access_point": "Enns"}], "identifier": "http://d-nb.info/gnd/1100201831", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1100201831", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1100201831", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1100201831", "source": "GND"}], "variant_access_point": ["Ennsradweg"], "authorized_access_point": "Enns-Radweg"} 1 +2024-09-10 15:48:03.399938 2024-09-10 15:48:03.399942 2688300e-b06c-4f1f-9638-2a5da55a87f0 {"md5": "2b98c7029b32808a237384d31bbdfccd", "pid": "1099133092", "note": [{"label": ["Internet - http://www.allgaeu.de/wanderrouten?referralTopic=wandern"], "noteType": "dataSource"}, {"label": ["Fernwanderweg aus 3 Routen und 53 Etappen bestehend ( Wiesengänger, Wasserläufer, Himmelsstürmer)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1099133092", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1099133092", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1099133092", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1099133092", "source": "GND"}], "variant_access_point": ["Wandertrilogie-Allgäu"], "authorized_access_point": "Wandertrilogie Allgäu"} 1 +2024-09-10 15:48:03.480479 2024-09-10 15:48:03.480484 40c16133-9b6b-417c-8041-64677dfc74aa {"md5": "f8c9cba79b32805a2bb779548a1a9aac", "pid": "1099132061", "note": [{"label": ["Internet - http://www.allgaeu.de/wiesengaenger-touren?referralTopic=wandern"], "noteType": "dataSource"}, {"label": ["ca. 400km langer Rundwanderweg im Allgäu, Teil der Wandertrilogie Allgäu"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Wandertrilogie Allgäu"}], "identifier": "http://d-nb.info/gnd/1099132061", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1099132061", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1099132061", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1099132061", "source": "GND"}], "variant_access_point": ["Wiesengänger-Route"], "authorized_access_point": "Wiesengänger Route"} 1 +2024-09-10 15:48:03.567986 2024-09-10 15:48:03.567989 a5f423b3-8e4a-4ef9-ae32-463febef76b6 {"md5": "3c8dd74b4fa508b71c10a25de4d7ec26", "pid": "1097213617", "note": [{"label": ["Dorf, Landgemeinde mit Gut Neuscherbitz; 1934 nach Böhlitz-Ehrenberg eingemeindet - gehörte zu den Abteidörfern, seit 1999 Teil von Leipzig"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}], "identifier": "http://d-nb.info/gnd/1097213617", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1097213617", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1097213617", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1097213617", "source": "GND"}], "variant_access_point": ["Gundorf (Leipzig)"], "authorized_access_point": "Leipzig-Gundorf"} 1 +2024-09-10 15:48:03.631614 2024-09-10 15:48:03.631618 6a7f4cb3-29eb-4c87-8775-1a1d809e9039 {"md5": "f2ebfcea1d38605ae694dbb1f7a02654", "pid": "1095576461", "note": [{"label": ["Google Maps - https://www.google.de/maps/place/Gomo,+South+Nias+Regency,+North+Sumatra,+Indonesien/@0.8834854,97.7321029,12z/data=!3m1!4b1!4m2!3m1!1s0x3026206005f1b8fb:0x4039d80b220dba0"], "noteType": "dataSource"}, {"label": ["Gebiet im Südnias"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Nias"}], "identifier": "http://d-nb.info/gnd/1095576461", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1095576461", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1095576461", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1095576461", "source": "GND"}], "variant_access_point": ["Gomo-Gebiet (Nias)"], "authorized_access_point": "Gomo-Gebiet (Nias)"} 1 +2024-09-10 15:48:03.691817 2024-09-10 15:48:03.69182 ede54c4c-6874-46fa-861b-93a32ae3c19b {"md5": "0a140bef1db17d17b5bf10a113c0ab53", "pid": "1085229823", "note": [{"label": ["In der Sacherschließung nicht zu verwenden; für die Sacherschließung wird bei Splits nur die neueste/jüngste Namensform verwendet."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Litoměřice"}], "identifier": "http://d-nb.info/gnd/1085229823", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1085229823", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1085229823", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1085229823", "source": "GND"}], "variant_access_point": ["Stadt Leitmeritz", "Leütmaritz", "Statt Leütmaritz", "Litoměřice (-XX.05.1945)"], "authorized_access_point": "Leitmeritz"} 1 +2024-09-10 15:48:03.753991 2024-09-10 15:48:03.753995 128233b0-b183-4a1e-970c-66e01e4056eb {"md5": "352bece5fd6372b6479dd8133d31e68a", "pid": "1082797251", "note": [{"label": ["archINFORM - http://deu.archinform.net/projekte/1110.htm", "Wikipedia - https://de.wikipedia.org/w/index.php?title=Stuttgarter_Fernsehturm&oldid=151349493"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Stuttgart"}, {"authorized_access_point": "Stuttgart-Degerloch"}], "identifier": "http://d-nb.info/gnd/1082797251", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1082797251", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1082797251", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1082797251", "source": "GND"}], "variant_access_point": ["Stuttgarter Fernsehturm (Stuttgart)", "Stuttgarter Fernsehturm (Stuttgart-Degerloch)"], "authorized_access_point": "Fernsehturm Stuttgart (Stuttgart)"} 1 +2024-09-10 15:48:03.817766 2024-09-10 15:48:03.817771 f1917c59-8c27-44fd-bc4b-3639be04b664 {"md5": "bd93f51d7d336de63e8e02ef2c442342", "pid": "1082520101", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Idyllische_Stra%C3%9Fe"], "noteType": "dataSource"}, {"label": ["seit 1967 bestehende, 130 km lange Ferienstraße im Naturpark Schwäbisch-Fränkischer Wald in Baden Württemberg. Rundkurs von Welzheim über Gaildorf und Wüstenrot nach Welzheim."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Welzheim"}], "identifier": "http://d-nb.info/gnd/1082520101", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1082520101", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1082520101", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1082520101", "source": "GND"}], "authorized_access_point": "Idyllische Straße"} 1 +2024-09-10 15:48:03.881174 2024-09-10 15:48:03.881178 acd2beca-3321-42d7-8331-d2322ad31bd9 {"md5": "73d793df7cd504068f75cd58c7bdd16d", "pid": "1082153850", "note": [{"label": ["Internet - https://www.pizbube.ch/produkt/BC1E395D0E02F0325F3E329DF5C9EB51#.VrStslJRG70"], "noteType": "dataSource"}, {"label": ["760 km langes slowakisches Teilstück des Europäischen Fernwanderweg 8"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Europäischer Fernwanderweg 8"}], "related": [{"authorized_access_point": "Devin (Slowakei)"}, {"authorized_access_point": "Duklapass"}], "identifier": "http://d-nb.info/gnd/1082153850", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1082153850", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1082153850", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1082153850", "source": "GND"}], "authorized_access_point": "Weg der Helden"} 1 +2024-09-10 15:48:03.943611 2024-09-10 15:48:03.943614 fc33f60f-d566-4110-b2e7-a75704b5694f {"md5": "77f22cd7f24ca8bfc8c0ec2f7e9acfbf", "pid": "1082012033", "note": [{"label": ["Internet - http://www.salzalpensteig.com/salzalpensteig.html"], "noteType": "dataSource"}, {"label": ["2015 eröffneter Weitwanderweg (230km), von Chiemsee und Chiemgau, über Bad Reichenhall, Berchtesgaden und den Salzburger Tennengau bis in die Welterberegion Dachstein-Salzkammergut reicht der Premiumwanderweg."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Prien a. Chiemsee"}, {"authorized_access_point": "Obertraun"}], "identifier": "http://d-nb.info/gnd/1082012033", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1082012033", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1082012033", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1082012033", "source": "GND"}], "variant_access_point": ["Salzalpensteig", "Salzalpen-Steig"], "authorized_access_point": "SalzAlpenSteig"} 1 +2024-09-10 15:48:04.008209 2024-09-10 15:48:04.008216 22497073-91f6-4266-82b7-de01bca5414e {"md5": "ea2212b21459db8375443b5af71d241d", "pid": "1082001430", "note": [{"label": ["Ältestes Kricket-Stadion Indiens"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Kalkutta"}], "identifier": "http://d-nb.info/gnd/1082001430", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1082001430", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1082001430", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1082001430", "source": "GND"}], "variant_access_point": ["Eden Gardens (Kalkutta)", "Rañji Sṭeḍiẏāma (Kalkutta)", "Īḍena Gārḍensa (Kalkutta)"], "authorized_access_point": "Ranji Stadium (Kalkutta)"} 1 +2024-09-10 15:48:04.080002 2024-09-10 15:48:04.080007 b6002819-c637-4ba9-9cfb-af704f7ef1ee {"md5": "d3368ccbab237171328cdd4404ebb233", "pid": "1081845031", "note": [{"label": ["Armenanstalt seit 1798; abgebrannt 1885"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Frutigen"}], "identifier": "http://d-nb.info/gnd/1081845031", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081845031", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1081845031", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1081845031", "source": "GND"}], "variant_access_point": ["Ehemalige Burg Tellenburg (Frutigen)"], "authorized_access_point": "Burgruine Tellenburg (Frutigen)"} 1 +2024-09-10 15:48:04.1535 2024-09-10 15:48:04.153505 db71d304-08af-4e2a-8837-a85263e3d542 {"md5": "db1082160663b3eb55f5f1d821b7e707", "pid": "1081844973", "note": [{"label": ["Burg erbaut im 12. Jh.; ab 1874 Schulheim"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Erlach (Kanton Bern)"}], "identifier": "http://d-nb.info/gnd/1081844973", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081844973", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1081844973", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1081844973", "source": "GND"}], "variant_access_point": ["Schulheim Schloss Erlach (Erlach, Kanton Bern)", "Burg Erlach (Erlach, Kanton Bern)"], "authorized_access_point": "Schloss Erlach (Erlach, Kanton Bern)"} 1 +2024-09-10 15:48:04.230304 2024-09-10 15:48:04.230308 88e45542-c81b-4958-9f62-910d1a6b704b {"md5": "3504488c1dd918302e43732f4696ef2b", "pid": "1081842474", "note": [{"label": ["Burg vermutlich im 13. Jh. durch die Herren von Biederthal gegründet"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Kleinlützel"}], "identifier": "http://d-nb.info/gnd/1081842474", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081842474", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1081842474", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1081842474", "source": "GND"}], "variant_access_point": ["Burg Blauenstein (Kleinlützel)"], "authorized_access_point": "Burgruine Blauenstein (Kleinlützel)"} 1 +2024-09-10 15:48:04.303463 2024-09-10 15:48:04.303466 9b77d049-6177-4557-893e-01e301044428 {"md5": "ed35bb860429bd84c1e672bb0c99ed0d", "pid": "1081839082", "note": [{"label": ["Erstellt im 13. Jh. als Burg, schrittweiser Umbau in eine Schlossanlage"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Toffen"}], "identifier": "http://d-nb.info/gnd/1081839082", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081839082", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1081839082", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1081839082", "source": "GND"}], "variant_access_point": ["Burg Toffen (Toffen)"], "authorized_access_point": "Schloss Toffen (Toffen)"} 1 +2024-09-10 15:48:04.371353 2024-09-10 15:48:04.371356 454ebe68-554e-43d6-8082-3c6a0a6a7632 {"md5": "66b4e4dbb3bd3b148dfa33ad74643835", "pid": "1081838779", "note": [{"label": ["Herrschaftssitz bis 1798"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Belp"}], "identifier": "http://d-nb.info/gnd/1081838779", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081838779", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1081838779", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1081838779", "source": "GND"}], "authorized_access_point": "Schloss Belp (Belp)"} 1 +2024-09-10 15:48:04.431636 2024-09-10 15:48:04.431641 2f1f5d60-37e5-4764-9579-283b53988623 {"md5": "e3dea94ccca9fbd2fcfa254dc5eb1c6f", "pid": "1081838655", "note": [{"label": ["Schloss Wyl - http://www.schloss-wyl.ch/weblica/index.html"], "noteType": "dataSource"}, {"label": ["Nach dem Brand 1546 Ausbau der mittelalterlichen Burg zum Schloss"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Schlosswil"}], "identifier": "http://d-nb.info/gnd/1081838655", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081838655", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1081838655", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1081838655", "source": "GND"}], "variant_access_point": ["Schloss Wil (Schlosswil)", "Burg Wyl (Schlosswil)", "Burg Wil (Schlosswil)"], "authorized_access_point": "Schloss Wyl (Schlosswil)"} 1 +2024-09-10 15:48:04.495937 2024-09-10 15:48:04.495941 098ec58b-3062-4080-907f-2f8e3545ab32 {"md5": "69181489cb49a3b87f1c9e1db161621b", "pid": "1081838507", "note": [{"label": ["Ab 1866 Armenanstalt; seit 1892 Frauen-Justizvollzugsanstalt"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Hindelbank"}], "identifier": "http://d-nb.info/gnd/1081838507", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081838507", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1081838507", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1081838507", "source": "GND"}], "variant_access_point": ["Gebäude der Anstalten Hindelbank (Hindelbank)", "Gebäude der Zwangsanstalt für Weiber (Hindelbank)"], "authorized_access_point": "Schloss Hindelbank (Hindelbank)"} 1 +2024-09-10 15:48:04.559319 2024-09-10 15:48:04.559324 25a7b31b-0227-457a-bfe1-10779f639044 {"md5": "36ba312da53f879e10cc19313b3537af", "pid": "1081838396", "note": [{"label": ["Seit 1131 nachgewiesen; 1835-1928 Erziehungsanstalt"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Trachselwald"}], "identifier": "http://d-nb.info/gnd/1081838396", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081838396", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1081838396", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1081838396", "source": "GND"}], "authorized_access_point": "Schloss Trachselwald"} 1 +2024-09-10 15:48:04.619056 2024-09-10 15:48:04.61906 3f1248c4-be8d-4785-a0d5-165b033dc62e {"md5": "849f665303b677b91d932abce95d5755", "pid": "1081838310", "note": [{"label": ["1175 erstmals erwähnt; Bauten aus mehreren Jahrhunderten über mittelalterlichen Burg- und Klosterfundamenten; seit 1893 ausschliesslich Gefängnis"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Krauchthal"}], "identifier": "http://d-nb.info/gnd/1081838310", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081838310", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1081838310", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1081838310", "source": "GND"}], "authorized_access_point": "Schloss Thorberg (Krauchthal)"} 1 +2024-09-10 15:48:04.682203 2024-09-10 15:48:04.682207 00c38dcb-7829-41de-a25b-d950866bfff3 {"md5": "93d780a2ad83441bf25180c9027ffd09", "pid": "1081838167", "note": [{"label": ["Bereits 1175 erwähnt"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Utzigen"}], "identifier": "http://d-nb.info/gnd/1081838167", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081838167", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1081838167", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1081838167", "source": "GND"}], "authorized_access_point": "Schloss Utzigen (Utzigen)"} 1 +2024-09-10 15:48:04.757043 2024-09-10 15:48:04.757046 87917736-fb83-431a-ba39-a48afb46d387 {"md5": "da91a2c593bdf3ca31bd9da727bc7cff", "pid": "1081838051", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Aarwangen"}], "identifier": "http://d-nb.info/gnd/1081838051", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081838051", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1081838051", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1081838051", "source": "GND"}], "authorized_access_point": "Schloss Aarwangen (Aarwangen)"} 1 +2024-09-10 15:48:04.82103 2024-09-10 15:48:04.821033 20159e5e-7e3b-4b11-8f2b-7dc97a037858 {"md5": "c46f493c58c8da8af9b329276dbad4f6", "pid": "1081330236", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/wiki/Norbury_Park"], "noteType": "dataSource"}, {"label": ["Herrenhaus und Park in der Nähe von Leatherhead"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Leatherhead"}, {"authorized_access_point": "Dorking"}], "identifier": "http://d-nb.info/gnd/1081330236", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081330236", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1081330236", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1081330236", "source": "GND"}], "variant_access_point": ["Norbury Park (Leatherhead)"], "authorized_access_point": "Norbury Park"} 1 +2024-09-10 15:48:04.886115 2024-09-10 15:48:04.886119 e640d912-6a42-4f11-a946-2d4881473caa {"md5": "45ced5b4652931fcd8680bf6b1d2c572", "pid": "1081212918", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1081212918", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081212918", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1081212918", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1081212918", "source": "GND"}], "authorized_access_point": "Kurtschau - Region"} 1 +2024-09-10 15:48:04.95722 2024-09-10 15:48:04.957223 1ed9e672-c3f3-4208-af88-b0a6b1801e81 {"md5": "adf27ae8bc648c3739a4a1b2c7d6ef91", "pid": "1081097930", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1081097930", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081097930", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1081097930", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1081097930", "source": "GND"}], "authorized_access_point": "Mockern - Region"} 1 +2024-09-10 15:48:05.021515 2024-09-10 15:48:05.021519 0d41ae00-e5bd-40a0-9ee7-945805771e44 {"md5": "cc31e766bec9e7ecae51df09efc3579f", "pid": "1079692916", "note": [{"label": ["Bucht in der Chilkat Inlet, Alaska"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Alaska"}], "identifier": "http://d-nb.info/gnd/1079692916", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1079692916", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1079692916", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1079692916", "source": "GND"}], "authorized_access_point": "Pyramid Harbor"} 1 +2024-09-10 15:48:05.096721 2024-09-10 15:48:05.096726 ea944dff-55b6-4e57-97f9-15ed1d0840ae {"md5": "16f5494aa56bf3b19161664f7ca7a2f5", "pid": "1079568352", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Laurentiuskirche_(Arnoldshain)"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Schmitten (Hochtaunuskreis)"}, {"authorized_access_point": "Arnoldshain"}, {"authorized_access_point": "Schmitten-Arnoldshain"}], "identifier": "http://d-nb.info/gnd/1079568352", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1079568352", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1079568352", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1079568352", "source": "GND"}], "variant_access_point": ["Laurentiuskirche (Arnoldshain)", "Evangelische Pfarrkirche Sankt Laurentius (Schmitten, Hochtaunuskreis)", "Ev. Pfarrkirche St. Laurentius (Schmitten, Hochtaunuskreis)"], "authorized_access_point": "Laurentiuskirche (Schmitten, Hochtaunuskreis)"} 1 +2024-09-10 15:48:05.163204 2024-09-10 15:48:05.16321 5b02795b-b36d-4cb5-8eb0-e2074ed57d2b {"md5": "11bbeeaf6a7e4cd403ab12bb164245b6", "pid": "1078131902", "note": [{"label": ["Internet - http://www.goeppingen.de/,Lde/start/Unsere+Stadt/Alter+Friedhof+an+Oberhofen.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Göppingen"}], "identifier": "http://d-nb.info/gnd/1078131902", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1078131902", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1078131902", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1078131902", "source": "GND"}], "authorized_access_point": "Alter Friedhof an Oberhofen (Göppingen)"} 1 +2024-09-10 15:48:05.237803 2024-09-10 15:48:05.237806 0b4756ac-12b1-42f4-80e2-9bde20c50809 {"md5": "714fb19a63457e2943c736df9c9d64d1", "pid": "1077893450", "note": [{"label": ["Internet - http://kocher-jagst-trail.de/content.php?cont_id=1&src=1&la=de"], "noteType": "dataSource"}, {"label": ["Fernwanderweg (ca. 200km), der aus den Abschnitten Jagststeig, Bühlersteig und Kochersteig besteht"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1077893450", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1077893450", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1077893450", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1077893450", "source": "GND"}], "variant_access_point": ["Kocher-Jagst-Wanderweg"], "authorized_access_point": "Kocher-Jagst-Trail"} 1 +2024-09-10 15:48:05.299555 2024-09-10 15:48:05.29956 52158bfe-ced2-4ef3-86aa-e653c2ce1a54 {"md5": "8db209fbf419acc860c0e8d27b4c926b", "pid": "1077053320", "note": [{"label": ["Aus einer Hofschaft hervorgegangene Ortschaft in der Bürgermeisterei Leichlingen, die 1856 das Stadtrecht erhielt"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Leichlingen-Weltersbach"}], "related": [{"authorized_access_point": "Leichlingen (Rheinland)"}], "identifier": "http://d-nb.info/gnd/1077053320", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1077053320", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1077053320", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1077053320", "source": "GND"}], "variant_access_point": ["Weltersbach (Leichlingen)"], "authorized_access_point": "Weltersbach (Leichlingen (Rheinland))"} 1 +2024-09-10 15:48:05.36428 2024-09-10 15:48:05.364284 e88c1710-1adf-418a-8ced-8ee748b3c460 {"md5": "b48211b1b8ba9e716954d53c25f2e8ea", "pid": "1077053185", "note": [{"label": ["Seit 1856 Stadtteil von Leichlingen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leichlingen (Rheinland)"}, {"authorized_access_point": "Weltersbach (Leichlingen (Rheinland))"}], "identifier": "http://d-nb.info/gnd/1077053185", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1077053185", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1077053185", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1077053185", "source": "GND"}], "authorized_access_point": "Leichlingen-Weltersbach"} 1 +2024-09-10 15:48:05.421927 2024-09-10 15:48:05.421932 f9544481-9e00-48e9-9852-2f4560c1b13d {"md5": "8230e07b61ee480c764d6275f140114f", "pid": "107699847X", "note": [{"label": ["Gebiet am Fluss Szreniawa"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/107699847X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/107699847X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)107699847X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)107699847X", "source": "GND"}], "variant_access_point": ["Szreniawa (Fluss)"], "authorized_access_point": "Szreniawa-Gebiet"} 1 +2024-09-10 15:48:05.482009 2024-09-10 15:48:05.482012 0812fe75-9dc9-487f-8ae3-61307f0ff0e7 {"md5": "9e324149a44b54c78686b05196732613", "pid": "1076027032", "note": [{"label": ["Künstlich eingehauene Gänge und Kammern in einer Felswand"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Goldbach (Überlingen)"}], "identifier": "http://d-nb.info/gnd/1076027032", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1076027032", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1076027032", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1076027032", "source": "GND"}], "variant_access_point": ["Heidenlöcher (Goldbach, Überlingen)"], "authorized_access_point": "Heidenhöhlen (Goldbach, Überlingen)"} 1 +2024-09-10 15:48:05.543338 2024-09-10 15:48:05.543341 63d4631f-3ac8-45b8-89bb-004f25888d8b {"md5": "9f30981107fce59081165a3732f4d855", "pid": "1075827361", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/w/index.php?title=Dauj%C4%97nai&oldid=1157247700"], "noteType": "dataSource"}, {"label": ["Kleinstadt im Südosten Litauens"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1075827361", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1075827361", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1075827361", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1075827361", "source": "GND"}], "authorized_access_point": "Daujėnai"} 1 +2024-09-10 15:48:05.604863 2024-09-10 15:48:05.604866 5f0cf70b-cca8-43b3-a5eb-d1e8f6b7bc92 {"md5": "7aa644ab888733f037c26ae040a9fc81", "pid": "1075220467", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Schatzhofen&oldid=237597866"], "noteType": "dataSource"}, {"label": ["Saalkirche mit Chorturm, Chor romanisch, 12. Jahrhundert"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Furth-Schatzhofen"}, {"authorized_access_point": "Furth (Landkreis Landshut)"}], "identifier": "http://d-nb.info/gnd/1075220467", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1075220467", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1075220467", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1075220467", "source": "GND"}], "variant_access_point": ["St. Michael (Furth, Landkreis Landshut)", "Sankt Michael (Furth-Schatzhofen)", "St. Michael (Furth-Schatzhofen)", "Sankt Michael Schatzhofen"], "authorized_access_point": "Sankt Michael (Furth, Landkreis Landshut)"} 1 +2024-09-10 15:48:05.668097 2024-09-10 15:48:05.6681 82a63a86-c848-44b0-bc07-adf3b989e444 {"md5": "fb1ca45e004b38f5c6e25f425adb8f9a", "pid": "1074377397", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Rumbach_(Ruhr)"], "noteType": "dataSource"}, {"label": ["7,4 Kilometer langer, rechter Zufluss der Ruhr in Mülheim an der Ruhr"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1074377397", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1074377397", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1074377397", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1074377397", "source": "GND"}], "variant_access_point": ["Ruhmbach"], "authorized_access_point": "Rumbach (Fluss)"} 1 +2024-09-10 15:48:05.732939 2024-09-10 15:48:05.732944 2e6ef4e8-88a3-413d-b9cf-9f09c9694008 {"md5": "bba91d14cea4998687db0b24b44b362c", "pid": "1074316908", "note": [{"label": ["Internet - http://www.emscher-weg.de/route/emscher-weg/"], "noteType": "dataSource"}, {"label": ["führt von der Quelle der Emscher in Holzwickede 101 Kilometer bis zu ihrer Mündung in den Rhein in Dinslaken"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Holzwickede"}, {"authorized_access_point": "Dinslaken"}], "identifier": "http://d-nb.info/gnd/1074316908", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1074316908", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1074316908", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1074316908", "source": "GND"}], "variant_access_point": ["Emscherweg", "Emscherradweg"], "authorized_access_point": "Emscher-Weg"} 1 +2024-09-10 15:48:05.796215 2024-09-10 15:48:05.796219 afc01291-18e4-4921-82be-c40ba7be784b {"md5": "28f5d421ebf8328779c2a10b536823bc", "pid": "107399077X", "note": [{"label": ["Internet - http://www.neisse-nisa-nysa.org/index.php?id=91"], "noteType": "dataSource"}, {"label": ["250 km langer Radfernweg durch die Sächsische und Böhmische Schweiz, das Zittauer Gebirge, das Isergebirge und das Riesengebirge"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Bad Schandau"}, {"authorized_access_point": "Chełmsko Śląskie"}], "identifier": "http://d-nb.info/gnd/107399077X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/107399077X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)107399077X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)107399077X", "source": "GND"}], "variant_access_point": ["Rübezahlradweg"], "authorized_access_point": "Rübezahl-Radweg"} 1 +2024-09-10 15:48:05.856008 2024-09-10 15:48:05.856011 a8a80b97-a6ba-4f0b-a214-9ee35f678ee4 {"md5": "d8f99ee9aafedf25c1239bf94b96dd7a", "pid": "1073950220", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Lahntalradweg"], "noteType": "dataSource"}, {"label": ["245 km langer Radfernweg in Nordrhein-Westfalen, Hessen und Rheinland-Pfalz"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Netphen"}, {"authorized_access_point": "Lahnstein"}], "identifier": "http://d-nb.info/gnd/1073950220", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1073950220", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1073950220", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1073950220", "source": "GND"}], "variant_access_point": ["Lahntal-Radweg", "Lahnradwanderweg"], "authorized_access_point": "Lahntalradweg"} 1 +2024-09-10 15:48:05.922405 2024-09-10 15:48:05.92241 5947c8a3-c980-4051-a93c-649893119ca0 {"md5": "2d8fe4f2581c4af8eacb18538228d36f", "pid": "107373157X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Baden (Niederösterreich)"}, {"authorized_access_point": "Schloss Weilburg (Baden, Niederösterreich)"}, {"authorized_access_point": "Doblhoffpark (Baden, Niederösterreich)"}], "identifier": "http://d-nb.info/gnd/107373157X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/107373157X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)107373157X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)107373157X", "source": "GND"}], "authorized_access_point": "Schloss Weilburg (Baden, Niederösterreich) - Wasserspeier"} 1 +2024-09-10 15:48:05.988423 2024-09-10 15:48:05.988427 ab937e0f-b814-48d1-8906-b51a8ce33dd9 {"md5": "a2f23944fe7ea272013bc290e8f74928", "pid": "1073724549", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Baden (Niederösterreich)"}, {"authorized_access_point": "Schloss Weilburg (Baden, Niederösterreich)"}], "related": [{"authorized_access_point": "Ehemaliges Frauenbad (Baden, Niederösterreich)"}], "identifier": "http://d-nb.info/gnd/1073724549", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1073724549", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1073724549", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1073724549", "source": "GND"}], "variant_access_point": ["Schloss Weilburg (Baden, Niederösterreich)"], "authorized_access_point": "Schloss Weilburg (Baden, Niederösterreich) - Flora und Zephyr mit einem Kinde"} 1 +2024-09-10 15:48:06.054259 2024-09-10 15:48:06.054262 ef78d976-913c-4087-ac30-7bc656b002a6 {"md5": "bc9deaaf747a959e8b164b5af84722f4", "pid": "107362062X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Vr%C3%A1tna-Tal"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Kleine Fatra"}], "identifier": "http://d-nb.info/gnd/107362062X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/107362062X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)107362062X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)107362062X", "source": "GND"}], "variant_access_point": ["Vratna-Tal", "Vratne-Tal", "Vrátna-Tal"], "authorized_access_point": "Vratné-Tal"} 1 +2024-09-10 15:48:06.129393 2024-09-10 15:48:06.129397 c3b158c8-2a5c-4a04-8323-089f99e61240 {"md5": "87af22da1a2820c12fc13fbacbce7b53", "pid": "1073267830", "note": [{"label": ["dritthöchster Gipfel der Silvrettagruppe und höchster Berg Vorarlbergs"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Silvrettagruppe"}], "identifier": "http://d-nb.info/gnd/1073267830", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1073267830", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1073267830", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1073267830", "source": "GND"}], "authorized_access_point": "Piz Buin"} 1 +2024-09-10 15:48:06.199347 2024-09-10 15:48:06.199351 29435f6f-cfa4-4f12-834a-06ec0bb39c7b {"md5": "645b957b46d7eb14f697a4c9334a4592", "pid": "107283314X", "note": [{"label": ["Spätklassizistisches Gebäude mit Mittel- und Seitenrisaliten"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Hausen am Albis"}], "identifier": "http://d-nb.info/gnd/107283314X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/107283314X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)107283314X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)107283314X", "source": "GND"}], "variant_access_point": ["Kaltwasser-Heilanstalt Albisbrunn (Hausen am Albis)", "Wasser-Heil-Anstalt Albisbrunn (Hausen am Albis)", "Bad Albisbrunn (Hausen am Albis)"], "authorized_access_point": "Wasserheilanstalt Albisbrunn (Hausen am Albis)"} 1 +2024-09-10 15:48:06.258105 2024-09-10 15:48:06.258109 f705201f-127a-4fc5-aa39-0e6b791c924f {"md5": "ed39a81f00bc3298f72b36841eee63e0", "pid": "1071872435", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Sanntal"}], "identifier": "http://d-nb.info/gnd/1071872435", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1071872435", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1071872435", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1071872435", "source": "GND"}], "variant_access_point": ["Oberes Sanntal", "Obere Sann"], "authorized_access_point": "Obere-Sann-Tal"} 1 +2024-09-10 15:48:06.342963 2024-09-10 15:48:06.342967 8ca0dd8b-9bf3-4c68-9e1b-9a2a82768514 {"md5": "949830a4ebcea7da05678aaa39329c62", "pid": "1071862391", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/Bahnstrecke_Zgorzelec%E2%80%93Wa%C5%82brzych"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Görlitz"}, {"authorized_access_point": "Wałbrzych"}], "identifier": "http://d-nb.info/gnd/1071862391", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1071862391", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1071862391", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1071862391", "source": "GND"}], "variant_access_point": ["Bahnstrecke Zgorzelec–Wałbrzych"], "authorized_access_point": "Eisenbahnlinie Görlitz-Wałbrzych"} 1 +2024-09-10 15:48:06.408579 2024-09-10 15:48:06.408583 46330704-4012-4d9a-869b-c943a57c83cc {"md5": "a3d9b31272aa51d6713bfa1325815150", "pid": "1070113026", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Aeugst am Albis"}], "identifier": "http://d-nb.info/gnd/1070113026", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1070113026", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1070113026", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1070113026", "source": "GND"}], "variant_access_point": ["Wengi (Aeugst am Albis)", "Wängibad (Aeugst am Albis)"], "authorized_access_point": "Wängi (Aeugst am Albis)"} 1 +2024-09-10 15:48:06.471098 2024-09-10 15:48:06.471102 f0abe735-fd5f-4e1d-83e5-128a6e1f2625 {"md5": "34fb074c23273aebd56183dd6d2e8fad", "pid": "1069803782", "note": [{"label": ["Ort im Kreis Ostholstein, Amt Oldenburg-Land, slawische Gründung"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Kreis Ostholstein"}], "identifier": "http://d-nb.info/gnd/1069803782", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1069803782", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1069803782", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1069803782", "source": "GND"}], "authorized_access_point": "Heringsdorf (Kreis Ostholstein)"} 1 +2024-09-10 15:48:06.550545 2024-09-10 15:48:06.550549 a96e4c6c-1324-4642-b046-b7a2a35cac12 {"md5": "1d27efe5853e966acbfd4c0d973901d6", "pid": "1068118490", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/Rheinradweg"], "noteType": "dataSource"}, {"label": ["ca. 1.230 km langer Radfernweg, der durch fünf Staaten vom Quellgebiet des Rheins in den Schweizer Alpen am Oberalppass bis zur Mündung bei Rotterdam führt."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Oberalppass"}, {"authorized_access_point": "Rotterdam"}], "identifier": "http://d-nb.info/gnd/1068118490", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1068118490", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1068118490", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1068118490", "source": "GND"}], "variant_access_point": ["Rhein-Radweg"], "authorized_access_point": "Rheinradweg"} 1 +2024-09-10 15:48:06.613349 2024-09-10 15:48:06.613352 386ca2d5-200d-42e2-9079-15cdd0fc7132 {"md5": "ae769c28256cdf6b3ed38db5616a01e6", "pid": "1067883703", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Göbschelwitz"}], "identifier": "http://d-nb.info/gnd/1067883703", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1067883703", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1067883703", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1067883703", "source": "GND"}], "variant_access_point": ["Göbschelwitz (Leipzig)"], "authorized_access_point": "Leipzig-Göbschelwitz"} 1 +2024-09-10 15:48:06.676067 2024-09-10 15:48:06.67607 206ac64e-ceb5-4131-909a-faf17ee8d5c0 {"md5": "f689e527b44fd4fbb7b118a8dc450f95", "pid": "1067878831", "note": [{"label": ["Internet - http://www.loire-radweg.org/"], "noteType": "dataSource"}, {"label": ["800 km langer Radfernweg durch die Regionen Centre und Pays de la Loire"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Nevers"}, {"authorized_access_point": "Saint-Brevin-les-Pins"}], "identifier": "http://d-nb.info/gnd/1067878831", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1067878831", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1067878831", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1067878831", "source": "GND"}], "variant_access_point": ["La Loire à Vélo"], "authorized_access_point": "Loire-Radweg"} 1 +2024-09-10 15:48:06.736999 2024-09-10 15:48:06.737002 51e2a917-5c7e-4a37-a47d-a41e58342b31 {"md5": "2a56eb71fd1ef52a690c219d9a8a02fb", "pid": "1067860142", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Hirschfeld (Leipzig)"}, {"authorized_access_point": "Hirschfeld-Kleinpösna"}], "identifier": "http://d-nb.info/gnd/1067860142", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1067860142", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1067860142", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1067860142", "source": "GND"}], "variant_access_point": ["Hirschfeld (Leipzig)"], "authorized_access_point": "Leipzig-Hirschfeld"} 1 +2024-09-10 15:48:06.798508 2024-09-10 15:48:06.798512 b24ba8c5-2dde-4fd4-bfc3-5dfea63612a5 {"md5": "c2a4b57ed2e9e98c80a4c45e6a7b4a08", "pid": "1067637184", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Rehbach (Leipzig)"}], "identifier": "http://d-nb.info/gnd/1067637184", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1067637184", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1067637184", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1067637184", "source": "GND"}], "variant_access_point": ["Rehbach (Leipzig)"], "authorized_access_point": "Leipzig-Rehbach"} 1 +2024-09-10 15:48:06.862478 2024-09-10 15:48:06.862483 b71e4723-e505-47ba-b9d3-cd1f3d90e8fa {"md5": "485e0d3cfade00ef96e280cfc0064e67", "pid": "1067636757", "note": [{"label": ["Ortsteil von Leipzig seit 1993"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Hartmannsdorf (Leipzig)"}], "identifier": "http://d-nb.info/gnd/1067636757", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1067636757", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1067636757", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1067636757", "source": "GND"}], "variant_access_point": ["Hartmannsdorf (Leipzig)"], "authorized_access_point": "Leipzig-Hartmannsdorf"} 1 +2024-09-10 15:48:06.927445 2024-09-10 15:48:06.92745 7d18e7c6-ceeb-4f3c-8c78-f4bf825979e7 {"md5": "c77f0eab0d227f69bc299676ec5ab79d", "pid": "1067274006", "note": [{"label": ["Internet - http://www.heidschnuckenweg.de/"], "noteType": "dataSource"}, {"label": ["223 km lang, 2012 eingeweiht"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Hamburg-Fischbek"}, {"authorized_access_point": "Celle"}], "identifier": "http://d-nb.info/gnd/1067274006", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1067274006", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1067274006", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1067274006", "source": "GND"}], "authorized_access_point": "Heidschnuckenweg"} 1 +2024-09-10 15:48:06.993295 2024-09-10 15:48:06.993298 c96271c2-394e-49f5-a7be-a89519a425ea {"md5": "1f74a63009520569905c278139b316db", "pid": "1067272488", "note": [{"label": ["Internet: - http://www.kocher-jagst.de/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1067272488", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1067272488", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1067272488", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1067272488", "source": "GND"}], "authorized_access_point": "Kocher-Jagst-Radweg"} 1 +2024-09-10 15:48:07.055897 2024-09-10 15:48:07.055901 79b708b8-e9f1-473b-b007-541c12e42de7 {"md5": "63272bf8955cd7a1a4780ddb9bf60d30", "pid": "1064960243", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Hirschfeld-Kleinpösna"}], "identifier": "http://d-nb.info/gnd/1064960243", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1064960243", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1064960243", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1064960243", "source": "GND"}], "variant_access_point": ["Kleinpösna (Leipzig)"], "authorized_access_point": "Leipzig-Kleinpösna"} 1 +2024-09-10 15:48:07.118261 2024-09-10 15:48:07.118265 e744ec80-9a31-4af3-a586-3274868b9e11 {"md5": "4e05819c3322f1b884989d623e256609", "pid": "1064714455", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/w/index.php?title=%C5%A0akyna&oldid=1226681026"], "noteType": "dataSource"}, {"label": ["Verwaltungseinheit im Bezirk Šiauliai im Norden Litauens"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1064714455", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1064714455", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1064714455", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1064714455", "source": "GND"}], "variant_access_point": ["Amt Šakynos", "Amt Shakina", "Amt Shakinay", "Amt Szakinów"], "authorized_access_point": "Amt Šakyna"} 1 +2024-09-10 15:48:07.182094 2024-09-10 15:48:07.182098 3bfcafcd-632c-42e4-b582-6e2af8b9f66e {"md5": "26a67279d4e425db231aa137ef148a9b", "pid": "1064601502", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1064601502", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1064601502", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1064601502", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1064601502", "source": "GND"}], "variant_access_point": ["Canal du Midi"], "authorized_access_point": "Canal du Midi-Gebiet"} 1 +2024-09-10 15:48:07.248362 2024-09-10 15:48:07.248367 12b8f82e-959b-472b-a73d-855acd8e65a2 {"md5": "91b8b3a3841fd39bc69098cd1dc9d927", "pid": "1064049419", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/Anglesey_Coastal_Path"], "noteType": "dataSource"}, {"label": ["Fernwanderweg (200 km), der rund um die walisische Insel Anglesey führt und Bestandteil des Wales Coast Path ist"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1064049419", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1064049419", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1064049419", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1064049419", "source": "GND"}], "variant_access_point": ["Anglesey Küstenweg"], "authorized_access_point": "Anglesey Coastal Path"} 1 +2024-09-10 15:48:07.319708 2024-09-10 15:48:07.319712 2a92554f-0d73-4bf5-a5ba-45900214ebab {"md5": "21864397ad279f50aafcd1c561dffb31", "pid": "1062979583", "note": [{"label": ["Stadt im Bundesstaat Rio de Janeiro, Brasilien"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1062979583", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1062979583", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1062979583", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1062979583", "source": "GND"}], "variant_access_point": ["Rezende"], "authorized_access_point": "Resende"} 1 +2024-09-10 15:48:07.386955 2024-09-10 15:48:07.386959 8a827be0-411e-46f3-90e8-5fa9ba27ff03 {"md5": "796a0d8515380ec3842f06197c5545bf", "pid": "1062970004", "note": [{"label": ["Geonames - http://www.geonames.org/2796123/helle.html", "Wikipedia - http://de.wikipedia.org/wiki/Hill_(Bach)"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1062970004", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1062970004", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1062970004", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1062970004", "source": "GND"}], "variant_access_point": ["Hill (Fluss)"], "authorized_access_point": "Helle (Fluss)"} 1 +2024-09-10 15:48:07.456202 2024-09-10 15:48:07.456206 255ad399-750d-4cc7-b7b5-dfd3972a09da {"md5": "76b194c3242ddf4adb2e3a33fc6dfd07", "pid": "1062891848", "note": [{"label": ["Nebenfluss der Gera im Stadtgebiet von Arnstadt in Thüringen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1062891848", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1062891848", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1062891848", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1062891848", "source": "GND"}], "variant_access_point": ["Stadtweiße"], "authorized_access_point": "Wilde Weiße"} 1 +2024-09-10 15:48:07.52819 2024-09-10 15:48:07.528194 6e9eea78-42ce-4841-9763-db225cbbf5b4 {"md5": "ae9e03e948114f9137dd0089350b3ec5", "pid": "1062531191", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/Ole%C5%A1nice_(B%C4%9Bl%C3%A1)"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1062531191", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1062531191", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1062531191", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1062531191", "source": "GND"}], "variant_access_point": ["Olešnice (Fluss)", "Elsnitz"], "authorized_access_point": "Białka"} 1 +2024-09-10 15:48:07.591203 2024-09-10 15:48:07.591207 85cd56bd-dc96-43b0-9c95-541efb2796e5 {"md5": "236526c8ec47d1aa8962d09618152d8e", "pid": "1062516109", "note": [{"label": ["Wikipedia - http://en.wikipedia.org/wiki/Hogsmill_River"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1062516109", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1062516109", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1062516109", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1062516109", "source": "GND"}], "authorized_access_point": "Hogsmill River"} 1 +2024-09-10 15:48:07.657786 2024-09-10 15:48:07.657791 477dcd9b-a460-41de-af15-ac72ab23ee03 {"md5": "c22089f0188f48c76ee65330718dbca4", "pid": "1061004198", "note": [{"label": ["Geonames - http://www.geonames.org/3086792/rudawa.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1061004198", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1061004198", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1061004198", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1061004198", "source": "GND"}], "authorized_access_point": "Rudawa (Fluss)"} 1 +2024-09-10 15:48:07.73285 2024-09-10 15:48:07.732853 9bcd680f-b513-4e86-a61c-d4b58cd62ba1 {"md5": "8114ac25505ad3f192775a44d40daf1a", "pid": "1060849127", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1060849127", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060849127", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060849127", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060849127", "source": "GND"}], "variant_access_point": ["Salamieh area"], "authorized_access_point": "Salamīyah - Region"} 1 +2024-09-10 15:48:07.791137 2024-09-10 15:48:07.791142 77b7da2c-4e3b-4c65-9956-d99782985db4 {"md5": "b4a96eee904929b7364061554385a38a", "pid": "106081482X", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/Kanzelbach"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/106081482X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/106081482X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)106081482X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)106081482X", "source": "GND"}], "authorized_access_point": "Kanzelbach"} 1 +2024-09-10 15:48:07.859497 2024-09-10 15:48:07.8595 1d7017e6-bc84-499b-951d-9711fab8d218 {"md5": "311da805ea1c4ce06d9ba6725ac3e5bf", "pid": "1060503611", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Vernířovice"}], "identifier": "http://d-nb.info/gnd/1060503611", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060503611", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060503611", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060503611", "source": "GND"}], "authorized_access_point": "Grundbach (Vernířovice, Fluss)"} 1 +2024-09-10 15:48:07.921506 2024-09-10 15:48:07.921512 08b76235-4023-4214-8c0a-d02d6a75a6e9 {"md5": "b080d85d9891e1c6214113a5e36f7e30", "pid": "1060503166", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1060503166", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060503166", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060503166", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060503166", "source": "GND"}], "authorized_access_point": "Gränzbach"} 1 +2024-09-10 15:48:07.983634 2024-09-10 15:48:07.983639 54f74625-3f7a-4aa2-9341-0800a4c5d820 {"md5": "501a3b4f84e65ecdd15b42e000e95926", "pid": "1060502798", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1060502798", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060502798", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060502798", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060502798", "source": "GND"}], "authorized_access_point": "Malschbach (Fluss)"} 1 +2024-09-10 15:48:08.058882 2024-09-10 15:48:08.058885 fd20c207-4885-4acb-9420-6753e5f08a33 {"md5": "27b9c8ab99c77e2c01d5e23d969c4ce7", "pid": "1060502682", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1060502682", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060502682", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060502682", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060502682", "source": "GND"}], "authorized_access_point": "Dobrowabach"} 1 +2024-09-10 15:48:08.116361 2024-09-10 15:48:08.116366 cfbffa84-814c-4ef1-acbe-7bd748fc64dc {"md5": "36440d6a5283a010c74bb8ced92f3752", "pid": "1060502585", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1060502585", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060502585", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060502585", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060502585", "source": "GND"}], "authorized_access_point": "Lauterwasserbach"} 1 +2024-09-10 15:48:08.180739 2024-09-10 15:48:08.180744 11214310-d442-4d2b-bada-b1e5deace5be {"md5": "7409ec9f0b3956cd60617b952e185218", "pid": "1060502372", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1060502372", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060502372", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060502372", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060502372", "source": "GND"}], "authorized_access_point": "Göstritzbach"} 1 +2024-09-10 15:48:08.241533 2024-09-10 15:48:08.241536 077f32ad-2c0c-4b8c-b842-0cc0a5744511 {"md5": "df9981fbb34eafb178d848dbed7536a1", "pid": "106050216X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/106050216X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/106050216X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)106050216X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)106050216X", "source": "GND"}], "authorized_access_point": "Weinbach (Fluss)"} 1 +2024-09-10 15:48:08.304115 2024-09-10 15:48:08.30412 7a24a09e-32d5-489e-bc0f-63fd9075fc61 {"md5": "ab69112529302828be59f545b8409d09", "pid": "1060501902", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/Gettenbach$vhier erwähnt, Artikel zum Ort Gettenbach!"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1060501902", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060501902", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060501902", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060501902", "source": "GND"}], "authorized_access_point": "Gettenbach (Fluss)"} 1 +2024-09-10 15:48:08.366595 2024-09-10 15:48:08.3666 74f76310-6a57-45ce-b72c-763ed17c11e5 {"md5": "e2e97908be75ca5097e08e82a89a2711", "pid": "1060501759", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/Ihne_(Fluss)$vhier erwähnt"], "noteType": "dataSource"}, {"label": ["Nebenfluss der Ihne in Nordrhein-Westfalen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1060501759", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060501759", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060501759", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060501759", "source": "GND"}], "authorized_access_point": "Wesebach (Fluss)"} 1 +2024-09-10 15:48:08.432572 2024-09-10 15:48:08.432577 832e4e75-ec31-40ba-a089-906a7a5225df {"md5": "34898e0c989e69a93be548428e19c42a", "pid": "1060501457", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1060501457", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060501457", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060501457", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060501457", "source": "GND"}], "authorized_access_point": "Windener Teich"} 1 +2024-09-10 15:48:08.505402 2024-09-10 15:48:08.505406 2543144a-41fd-4f9b-b4a7-4d6c0317ccff {"md5": "d5dac8d6710690302868a0d501cf6f00", "pid": "106050104X", "note": [{"label": ["Internet - http://www.openstreetmap.org/way/43125912"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/106050104X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/106050104X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)106050104X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)106050104X", "source": "GND"}], "variant_access_point": ["Klingendes Fließ"], "authorized_access_point": "Klingendes Fliess"} 1 +2024-09-10 15:48:08.577326 2024-09-10 15:48:08.57733 5dd5e9d7-b919-4856-9e74-df8c281617de {"md5": "1f1b13b0269e91488eff3802a1ebeae6", "pid": "1060419319", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/Konstanzer_Ach#Anker:Gunzesrieder_Ach"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1060419319", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060419319", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060419319", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060419319", "source": "GND"}], "authorized_access_point": "Konstanzer Ach"} 1 +2024-09-10 15:48:08.638841 2024-09-10 15:48:08.638844 e141b1c7-a45a-45d1-a6e9-1b93da98945e {"md5": "c084b5e466a8fff0e2e45f6cd5ec17d2", "pid": "1060401134", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/Park_Babelsberg"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Potsdam"}, {"authorized_access_point": "Potsdam-Babelsberg"}], "identifier": "http://d-nb.info/gnd/1060401134", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060401134", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060401134", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060401134", "source": "GND"}], "variant_access_point": ["Park Babelsberg (Potsdam)"], "authorized_access_point": "Babelsberger Park (Potsdam)"} 1 +2024-09-10 15:48:08.709347 2024-09-10 15:48:08.709354 d8131a4a-f0f8-491b-a769-9117442bcd7a {"md5": "ec1cfffa6447aef3be716b8798eda0c1", "pid": "1060238128", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/%C3%96lbach_(Berkel)"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Vreden"}], "identifier": "http://d-nb.info/gnd/1060238128", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060238128", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060238128", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060238128", "source": "GND"}], "authorized_access_point": "Ölbach (Vreden, Fluss)"} 1 +2024-09-10 15:48:08.771657 2024-09-10 15:48:08.77166 b6d9e9c0-c5f3-4bcd-bc70-c2a541458e91 {"md5": "191bcfb30d476692eae3466e21f637a1", "pid": "1060132206", "note": [{"label": ["Internet - http://www.anglermap.de/angeln/gewaessersteckbrief_angelkarte.php?id=2546"], "noteType": "dataSource"}, {"label": ["Baggersee östlich von Rheda-Wiedenbrück"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Rheda-Wiedenbrück"}], "identifier": "http://d-nb.info/gnd/1060132206", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060132206", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060132206", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060132206", "source": "GND"}], "variant_access_point": ["Lintler See"], "authorized_access_point": "Linteler See"} 1 +2024-09-10 15:48:08.834992 2024-09-10 15:48:08.834995 1e9570f4-b093-4727-877d-d0fafd88065b {"md5": "9afcc9761b682c52f67740dc0f576647", "pid": "1060087367", "note": [{"label": ["Internet - http://domnick.de/", "Wikipedia - https://de.wikipedia.org/w/index.php?title=Sammlung_Domnick&oldid=245473631"], "noteType": "dataSource"}, {"label": ["Privathaus, erbaut für Ottomar Domnick, heute Sitz der Stiftung Domnick, Oberensinger Höhe 4, Nürtingen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Nürtingen"}], "identifier": "http://d-nb.info/gnd/1060087367", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060087367", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060087367", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060087367", "source": "GND"}], "authorized_access_point": "Haus Domnick (Nürtingen)"} 1 +2024-09-10 15:48:08.893923 2024-09-10 15:48:08.893926 0b34b00f-4510-40f0-b5a6-f3fe55cede4d {"md5": "11196d0ef942510d160708312e17aef0", "pid": "1059448831", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1059448831", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1059448831", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1059448831", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1059448831", "source": "GND"}], "authorized_access_point": "Piwonkerbach"} 1 +2024-09-10 15:48:08.953463 2024-09-10 15:48:08.953468 0e182b0e-3091-49e4-87c2-d949b6136bb7 {"md5": "6083eb676f9ac01856024685b5e432a8", "pid": "1059378396", "note": [{"label": ["Internet - http://www.sprengenbeken.nl/images/14voorstondsebeek.jpg"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1059378396", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1059378396", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1059378396", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1059378396", "source": "GND"}], "authorized_access_point": "Voorstondse Beek"} 1 +2024-09-10 15:48:09.017595 2024-09-10 15:48:09.017599 e416d2cd-172e-4884-825a-50a0fe85073a {"md5": "5618b0e290303b7defc568db9a4b068e", "pid": "1059376946", "note": [{"label": ["Internet - http://www.sprengenbeken.nl/images/15eerbeeksebeek.jpg"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1059376946", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1059376946", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1059376946", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1059376946", "source": "GND"}], "authorized_access_point": "Gravinnebeek"} 1 +2024-09-10 15:48:09.091752 2024-09-10 15:48:09.091756 03744355-824d-47ae-9f1a-a30a994986b7 {"md5": "2e3d24795f96ca08f779b0e7cff11982", "pid": "1059359022", "note": [{"label": ["Internet - http://www.sprengenbeken.nl/images/15eerbeeksebeek.jpg"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1059359022", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1059359022", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1059359022", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1059359022", "source": "GND"}], "authorized_access_point": "Coldenhovensebeek"} 1 +2024-09-10 15:48:09.15733 2024-09-10 15:48:09.157333 b8caea76-53d2-44ab-98cd-56e988bb5244 {"md5": "d32c92f24eb66921a6b8dff9712c9e4f", "pid": "1059357755", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1059357755", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1059357755", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1059357755", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1059357755", "source": "GND"}], "authorized_access_point": "Nelson (Neuseeland) - Region"} 1 +2024-09-10 15:48:09.219453 2024-09-10 15:48:09.219458 c37db5bd-ed07-402b-9904-d0db7a26f562 {"md5": "2ba1a9fe3484a38a42e3da7f3235be06", "pid": "1059250454", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Mook"}], "identifier": "http://d-nb.info/gnd/1059250454", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1059250454", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1059250454", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1059250454", "source": "GND"}], "authorized_access_point": "Molenbeek (Mook, Fluss)"} 1 +2024-09-10 15:48:09.287832 2024-09-10 15:48:09.287836 3736a18f-b049-4c4d-861a-be971fe37589 {"md5": "2fa2d773afeee81c2199900b60549bb7", "pid": "105914249X", "note": [{"label": ["Geonames - http://www.geonames.org/2750597/mosbeek.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/105914249X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/105914249X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)105914249X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)105914249X", "source": "GND"}], "authorized_access_point": "Mosbeek"} 1 +2024-09-10 15:48:09.357212 2024-09-10 15:48:09.357217 ef5c25a4-ad9f-4244-a26e-8bc18059489f {"md5": "7d774b24e92660bfc87ce447bd5d1fdd", "pid": "1058994743", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1058994743", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058994743", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058994743", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058994743", "source": "GND"}], "authorized_access_point": "Zilverbeek"} 1 +2024-09-10 15:48:09.420903 2024-09-10 15:48:09.420908 266d0398-6142-45d2-bf48-6a6d2b4e01ca {"md5": "5d307b138a8746f676b976f2182fafd1", "pid": "1058986333", "note": [{"label": ["Geonames - http://www.geonames.org/2756000/esvelderbeek.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1058986333", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058986333", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058986333", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058986333", "source": "GND"}], "authorized_access_point": "Esvelderbeek"} 1 +2024-09-10 15:48:09.486905 2024-09-10 15:48:09.486908 413fdd05-b14c-40bf-bb00-b97ecdd88536 {"md5": "3d929f4983fb7d54c3d79800ef872b7a", "pid": "1058985299", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1058985299", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058985299", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058985299", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058985299", "source": "GND"}], "authorized_access_point": "Papiermolenbeekje"} 1 +2024-09-10 15:48:09.549786 2024-09-10 15:48:09.549789 de69b4ba-a134-4e11-86ca-b663b2ab9105 {"md5": "15640d7d50d52606be03a83d8077ddb5", "pid": "1058984144", "note": [{"label": ["Geonames - http://www.geonames.org/2759405/barneveldsche-beek.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1058984144", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058984144", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058984144", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058984144", "source": "GND"}], "variant_access_point": ["Grote Barneveldsebeek"], "authorized_access_point": "Barneveldsche Beek"} 1 +2024-09-10 15:48:09.616121 2024-09-10 15:48:09.616124 f57d8938-6315-4e9a-a67c-a2c8357299ad {"md5": "2dba50c52071059d1bcb39cef8fff732", "pid": "1058973045", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1058973045", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058973045", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058973045", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058973045", "source": "GND"}], "authorized_access_point": "Schoonderbeek"} 1 +2024-09-10 15:48:09.678708 2024-09-10 15:48:09.678713 d434a57f-e430-4421-808c-0392f79a5733 {"md5": "225d3c34d095c435b727de66340b50c8", "pid": "1058939068", "note": [{"label": ["Geonames - http://www.geonames.org/2754096/hierdensche-beek.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1058939068", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058939068", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058939068", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058939068", "source": "GND"}], "variant_access_point": ["Hierdense beek"], "authorized_access_point": "Hierdensche Beek"} 1 +2024-09-10 15:48:09.743446 2024-09-10 15:48:09.743451 07150035-723e-4b58-9d69-c737d885228a {"md5": "71eee8d31a7c92341935fb874bf9abfe", "pid": "105892978X", "note": [{"label": ["Geonames - http://www.geonames.org/2751673/leuvenumse-beek.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/105892978X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/105892978X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)105892978X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)105892978X", "source": "GND"}], "authorized_access_point": "Leuvenumse Beek"} 1 +2024-09-10 15:48:09.80611 2024-09-10 15:48:09.806115 abb695b9-a5d2-4bc1-8e90-7093f62ac76b {"md5": "6a7ad5f88f85350f1d641be33b69feb5", "pid": "1058928732", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1058928732", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058928732", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058928732", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058928732", "source": "GND"}], "variant_access_point": ["Staverdensche Beek"], "authorized_access_point": "Staverdense beek"} 1 +2024-09-10 15:48:09.88298 2024-09-10 15:48:09.882985 8f6fc640-6149-44d1-8c2f-29bca6e7e008 {"md5": "bdb508abd1b6729ed1add850b691344c", "pid": "1058919954", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Doornspijk"}], "identifier": "http://d-nb.info/gnd/1058919954", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058919954", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058919954", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058919954", "source": "GND"}], "variant_access_point": ["Papierbeek"], "authorized_access_point": "Papiermolenbeek (Doornspijk, Fluss)"} 1 +2024-09-10 15:48:09.959833 2024-09-10 15:48:09.959838 a6069a7b-28ca-4005-abf7-24e5fa442a26 {"md5": "496ac83aaff6f0038ec13e21565f9ae3", "pid": "1058918176", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1058918176", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058918176", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058918176", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058918176", "source": "GND"}], "variant_access_point": ["Molecatense Beek"], "authorized_access_point": "Molecatensebeek"} 1 +2024-09-10 15:48:10.035427 2024-09-10 15:48:10.03543 59c39964-894d-4aa3-9d2a-2478a559b7f2 {"md5": "c79eb6d542ce673c72c74a52a5d9beed", "pid": "1058899597", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1058899597", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058899597", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058899597", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058899597", "source": "GND"}], "variant_access_point": ["Zuidelijke Horsthoeker beek"], "authorized_access_point": "Zuidelijke Horsthoekerbeek"} 1 +2024-09-10 15:48:10.109394 2024-09-10 15:48:10.109397 e1e38eb9-0151-4574-b25f-8b8b9342a9ef {"md5": "6dc4da557323af7cd6526deebd073838", "pid": "1058896318", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1058896318", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058896318", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058896318", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058896318", "source": "GND"}], "variant_access_point": ["Noordelijke Horsthoeker beek"], "authorized_access_point": "Noordelijke Horsthoekerbeek"} 1 +2024-09-10 15:48:10.174879 2024-09-10 15:48:10.174882 663271f0-a759-4cd1-bca3-9629ac98f89a {"md5": "4c421c9d5f0391e343a653f1c467e91e", "pid": "1058890611", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1058890611", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058890611", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058890611", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058890611", "source": "GND"}], "authorized_access_point": "Middelste Heerderbeek"} 1 +2024-09-10 15:48:10.236489 2024-09-10 15:48:10.236492 6a5f10e4-6be2-4dd6-b748-e07fc7e370ac {"md5": "3bcd2a031d9e0f2d38e2b85082dc2c35", "pid": "1058880373", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1058880373", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058880373", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058880373", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058880373", "source": "GND"}], "authorized_access_point": "Heerderbeek"} 1 +2024-09-10 15:48:10.299245 2024-09-10 15:48:10.29925 52c43e84-707f-41ec-a9bc-fbc3309d8302 {"md5": "60b2860a642602f86235f0f7d3ab8400", "pid": "1058876872", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1058876872", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058876872", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058876872", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058876872", "source": "GND"}], "variant_access_point": ["Dorpse molenbeek", "Dorpermolenbeek"], "authorized_access_point": "Dorpse beek"} 1 +2024-09-10 15:48:10.358546 2024-09-10 15:48:10.358549 73d86610-22b8-44f4-9dc3-3255eaa6b08b {"md5": "63d764f658c8dc20ca8887f564372cbc", "pid": "1058840819", "note": [{"label": ["Geonames - http://www.geonames.org/2755688/geelmolensche-beek.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1058840819", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058840819", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058840819", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058840819", "source": "GND"}], "variant_access_point": ["Geelmolense beek"], "authorized_access_point": "Geelmolensche Beek"} 1 +2024-09-10 15:48:10.422313 2024-09-10 15:48:10.422316 a21d1891-fa07-4d4e-92b2-e22dc4bf7f51 {"md5": "fcbbbcaba60477292880b7147ea63158", "pid": "1058838512", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Vaassen"}], "identifier": "http://d-nb.info/gnd/1058838512", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058838512", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058838512", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058838512", "source": "GND"}], "authorized_access_point": "Nieuwe Beek (Vaassen, Fluss)"} 1 +2024-09-10 15:48:10.491668 2024-09-10 15:48:10.491671 c47b996b-00d1-4a4e-a0fc-ee4a364e7ee1 {"md5": "55bfc5df6db6b15d333ab358d0008737", "pid": "1058667343", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1058667343", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058667343", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058667343", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058667343", "source": "GND"}], "variant_access_point": ["Hattemse beek"], "authorized_access_point": "Hartense Molenbeek"} 1 +2024-09-10 15:48:10.556053 2024-09-10 15:48:10.556059 928819c2-d3b2-47cc-afbf-91f7458ee1d5 {"md5": "2e2b2c3219491efd6b1571e89acd8e57", "pid": "1058664468", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1058664468", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058664468", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058664468", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058664468", "source": "GND"}], "authorized_access_point": "Groevenbeek"} 1 +2024-09-10 15:48:10.62957 2024-09-10 15:48:10.629574 51b96dc2-82bd-4eb6-9a9e-a219611e3906 {"md5": "70f41fb6db9ceb2369a275fb07e26175", "pid": "1058661396", "note": [{"label": ["Geonames - http://www.geonames.org/6951330/nijmolense-beek.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1058661396", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058661396", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058661396", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058661396", "source": "GND"}], "variant_access_point": ["Nijmolense beek", "Nijmolenschebeek"], "authorized_access_point": "Nijmolense Beek"} 1 +2024-09-10 15:48:10.691903 2024-09-10 15:48:10.691908 12d95154-680e-4b1b-93d3-b5f55eaec861 {"md5": "fa2dc698f1393e6933f518b87508ecb8", "pid": "1058651994", "note": [{"label": ["Geonames - http://www.geonames.org/6951331/smallertse-beek.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1058651994", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058651994", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058651994", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058651994", "source": "GND"}], "variant_access_point": ["Smallertse beek"], "authorized_access_point": "Smallertse Beek"} 1 +2024-09-10 15:48:12.147151 2024-09-10 15:48:12.147156 937e290e-2070-4221-a45b-2b2951b01925 {"md5": "52cf8799b3af2a07e1154583d7af184c", "pid": "1054036489", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1054036489", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1054036489", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1054036489", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1054036489", "source": "GND"}], "authorized_access_point": "Bruntál - Region"} 1 +2024-09-10 15:48:10.756136 2024-09-10 15:48:10.756139 6c45385b-e84e-4251-8a7e-1c1de3a62107 {"md5": "a3d98bb53e96b3cdf694eec189445f22", "pid": "1058639919", "note": [{"label": ["Geonames - http://www.geonames.org/2746209/tongerensche-beek.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1058639919", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058639919", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058639919", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058639919", "source": "GND"}], "variant_access_point": ["Tongerensche beek"], "authorized_access_point": "Tongerensche Beek"} 1 +2024-09-10 15:48:10.821042 2024-09-10 15:48:10.821046 bbc68c2d-efcb-4e54-a0d7-5786dbceb901 {"md5": "972a5555ed63f4eda13cb62d294aac1a", "pid": "105863982X", "note": [{"label": ["Geonames - http://www.geonames.org/2748799/paalbeek.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/105863982X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/105863982X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)105863982X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)105863982X", "source": "GND"}], "authorized_access_point": "Paalbeek"} 1 +2024-09-10 15:48:10.896656 2024-09-10 15:48:10.89666 405c770b-014e-4bce-aa09-b8c5c0810729 {"md5": "8685be438c5a67296c8227cdc34b84a1", "pid": "1058622773", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1058622773", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058622773", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058622773", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058622773", "source": "GND"}], "authorized_access_point": "Wittebeek"} 1 +2024-09-10 15:48:10.966225 2024-09-10 15:48:10.966228 7a8988a8-d886-4906-95c7-525c47b04893 {"md5": "026702bcbff22ae92e1d7788fe764350", "pid": "1058616684", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1058616684", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058616684", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058616684", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058616684", "source": "GND"}], "authorized_access_point": "Strobroeksbeek"} 1 +2024-09-10 15:48:11.040079 2024-09-10 15:48:11.040083 8ce25cec-824e-4d90-95c8-402c623200f9 {"md5": "32c2f83c851df4bf88821c93315cf4b6", "pid": "1058616579", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1058616579", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058616579", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058616579", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058616579", "source": "GND"}], "authorized_access_point": "Zilvensebeek"} 1 +2024-09-10 15:48:11.113957 2024-09-10 15:48:11.113961 99d7c363-f823-40a4-99dc-052ac90690ee {"md5": "03d79f00edd4a3e27a7e215272c0b521", "pid": "1058583018", "note": [{"label": ["Geonames - http://www.geonames.org/2751520/loenensche-beek.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1058583018", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058583018", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058583018", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058583018", "source": "GND"}], "variant_access_point": ["Loenensebeek"], "authorized_access_point": "Loenensche Beek"} 1 +2024-09-10 15:48:11.177363 2024-09-10 15:48:11.177367 d994ef3d-f307-469e-bb08-241bdf58585a {"md5": "e53d7f8f72d4f2e3db19fa480d1f3663", "pid": "1058579045", "note": [{"label": ["Geonames - http://www.geonames.org/2759341/beekbergsche-beek.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1058579045", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058579045", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058579045", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058579045", "source": "GND"}], "variant_access_point": ["Beekbergsebeek"], "authorized_access_point": "Beekbergsche Beek"} 1 +2024-09-10 15:48:11.244012 2024-09-10 15:48:11.244016 2f6e8541-1287-4c07-be4f-ca17e2659f8b {"md5": "9613f8d179944466b58d110532a6370b", "pid": "1058463993", "note": [{"label": ["Ortsteil von Leipzig seit 1997; seit 1992 zu Seehausen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Seehausen-Gottscheina"}], "identifier": "http://d-nb.info/gnd/1058463993", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058463993", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058463993", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058463993", "source": "GND"}], "variant_access_point": ["Gottscheina (Leipzig)"], "authorized_access_point": "Leipzig-Gottscheina"} 1 +2024-09-10 15:48:11.308145 2024-09-10 15:48:11.308148 d431f526-5934-49df-a9e3-7f3c5f507a07 {"md5": "f7bc078dad496540774978120365d714", "pid": "1058463896", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Hohenheida"], "noteType": "dataSource"}, {"label": ["Stadtteil von Leipzig seit 1997; 1992 zu Seehausen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Seehausen-Hohenheida"}], "identifier": "http://d-nb.info/gnd/1058463896", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058463896", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058463896", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058463896", "source": "GND"}], "variant_access_point": ["Hohenheida (Leipzig)"], "authorized_access_point": "Leipzig-Hohenheida"} 1 +2024-09-10 15:48:11.369151 2024-09-10 15:48:11.369158 490ef143-ba92-4942-aaa4-b9a1900c4fd7 {"md5": "7700661c6b8dec091af2aaa59a0bdb75", "pid": "1058460862", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1058460862", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058460862", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058460862", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058460862", "source": "GND"}], "authorized_access_point": "Kayersbeek"} 1 +2024-09-10 15:48:11.433342 2024-09-10 15:48:11.433346 acf4ee5b-b880-4c73-a218-af8c141b4ada {"md5": "aabbf9bbdeee1fd592a02ed1b273c070", "pid": "1058460293", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1058460293", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058460293", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058460293", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058460293", "source": "GND"}], "authorized_access_point": "Winkewijert"} 1 +2024-09-10 15:48:11.554091 2024-09-10 15:48:11.554094 7dc8aa99-bbae-4454-85a0-5e34e335828e {"md5": "8d4359dd704bbca0b7561c34f1a9f5d5", "pid": "1058041142", "note": [{"label": ["Obelisk auf dem Lousberg bei Aachen, errichtet 1807 zu Ehren des franz. Vermessers Jean Joseph Tranchot. Trigonometrischer Punkt 1. Ordnung des linksrheinischen Dreiecksnetzes 1801/13"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Aachen"}], "identifier": "http://d-nb.info/gnd/1058041142", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058041142", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058041142", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058041142", "source": "GND"}], "variant_access_point": ["Tranchot-Obelisk (Lousberg)"], "authorized_access_point": "Tranchot-Obelisk (Aachen)"} 1 +2024-09-10 15:48:11.619432 2024-09-10 15:48:11.619436 ea86cfbe-9759-4aac-88d7-a5e9fa2c728c {"md5": "bf1fa886673e034c2044c27c47b130ab", "pid": "1057942928", "note": [{"label": ["Stadtteil von Grünberg im Landkreis Gießen, Hessen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Grünberg (Landkreis Gießen)"}, {"authorized_access_point": "Lumda"}], "identifier": "http://d-nb.info/gnd/1057942928", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1057942928", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1057942928", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1057942928", "source": "GND"}], "variant_access_point": ["Grünberg (Landkreis Gießen-Lumda)", "Lumda (Grünberg-Lumda)"], "authorized_access_point": "Grünberg-Lumda"} 1 +2024-09-10 15:48:11.695518 2024-09-10 15:48:11.695523 067bed0a-ea89-49a5-9f19-78ea3cb68bb3 {"md5": "07a2172654853dc3acc535ab0f16a12e", "pid": "1056973714", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/Sauberg_(Erzgebirge)"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Erzgebirge"}], "identifier": "http://d-nb.info/gnd/1056973714", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1056973714", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1056973714", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1056973714", "source": "GND"}], "authorized_access_point": "Sauberg (Erzgebirge, Berg)"} 1 +2024-09-10 15:48:11.758133 2024-09-10 15:48:11.758138 21843ab0-27cb-4858-8d02-df14f130ebd6 {"md5": "42ad55d6940b157255fe46ed76c587ea", "pid": "1055068716", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/Kosov%C3%BD_potok"], "noteType": "dataSource"}, {"label": ["am Oberlauf auch Wonschabach, Wunschelbach, Altbach"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1055068716", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1055068716", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1055068716", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1055068716", "source": "GND"}], "variant_access_point": ["Kosí potok", "Amselbach"], "authorized_access_point": "Kosový potok"} 1 +2024-09-10 15:48:11.822001 2024-09-10 15:48:11.822005 37f5e590-0ba0-491b-bb16-f9ef1b114310 {"md5": "ccabc3b3dface0faeaf30fa0868f6855", "pid": "1054961824", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Großkochberg"], "noteType": "dataSource"}, {"label": ["Großkochberg ist eine ehemals selbständige Gemeinde; seit 1.12.2007 Ortsteil von Uhlstädt-Kirchhasel. Im Landkreis Saalfeld-Rudolstadt in Thüringen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Uhlstädt-Kirchhasel"}, {"authorized_access_point": "Großkochberg"}], "identifier": "http://d-nb.info/gnd/1054961824", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1054961824", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1054961824", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1054961824", "source": "GND"}], "authorized_access_point": "Uhlstädt-Kirchhasel- Großkochberg"} 1 +2024-09-10 15:48:11.889217 2024-09-10 15:48:11.889222 584f8f54-0354-4a24-b753-c4e4ad694cfa {"md5": "a7d14fcf213f002fb4ea7c93ca9d742a", "pid": "1054631026", "note": [{"label": ["Landschaft im NO des indischen Subkontinents: westl. Teil umfaßt indischen Bundesstaat West Bengal, größere östl. Teil bildet den Staatsraum von Bangladesch"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)989943666", "source": "GND"}, {"type": "bf:Nbn", "value": "091420466", "source": "ZBW"}], "authorized_access_point": "Bengalen (Region)"}], "identifier": "http://d-nb.info/gnd/1054631026", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1054631026", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1054631026", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1054631026", "source": "GND"}], "variant_access_point": ["Bengal"], "authorized_access_point": "Bengalen"} 1 +2024-09-10 15:48:11.963445 2024-09-10 15:48:11.963448 3d7ef32f-f750-4dad-90a9-b8b594d56d09 {"md5": "98e4ed0892f2aa63bc5b0387a2d1eb83", "pid": "1054611041", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1054611041", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1054611041", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1054611041", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1054611041", "source": "GND"}], "authorized_access_point": "Giersdorfer Wasser"} 1 +2024-09-10 15:48:12.020708 2024-09-10 15:48:12.020711 9afd97e3-22ca-4d97-bd59-3de80d750da5 {"md5": "c5909c53349ed2ecdff508de76fa0102", "pid": "1054442959", "note": [{"label": ["Nebenfluss der Neiße"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1054442959", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1054442959", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1054442959", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1054442959", "source": "GND"}], "authorized_access_point": "Föhrenbach (Fluss)"} 1 +2024-09-10 15:48:12.086402 2024-09-10 15:48:12.086405 b92b1a78-8ebd-4a68-a0a3-dec64f6d6d29 {"md5": "997cac04e2bdd590486be18c0285bf71", "pid": "1054382255", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1054382255", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1054382255", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1054382255", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1054382255", "source": "GND"}], "variant_access_point": ["Krauthausener Mühlenteich"], "authorized_access_point": "Krauthausener Teich"} 1 +2024-09-10 15:48:12.207792 2024-09-10 15:48:12.207797 a5635fd3-8fc8-4768-aada-f43806a2fb36 {"md5": "a270535dfb91ec9a08c2ca344ea03f69", "pid": "1054036322", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1054036322", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1054036322", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1054036322", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1054036322", "source": "GND"}], "variant_access_point": ["Krnovsko", "Jägerndorf", "Śląsk Karniowski"], "authorized_access_point": "Krnov - Region"} 1 +2024-09-10 15:48:12.280022 2024-09-10 15:48:12.280026 a4742d40-56bb-4f12-841f-55207bd2919b {"md5": "c0aa50d209b4ab16e91e4c90106a0430", "pid": "105382467X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/105382467X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/105382467X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)105382467X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)105382467X", "source": "GND"}], "authorized_access_point": "Vogtländische Schweiz"} 1 +2024-09-10 15:48:12.344845 2024-09-10 15:48:12.344852 43d9e236-3b49-42a4-b227-a60ebaeb30b8 {"md5": "be3d177d45f6f54440c78c28e0a0e812", "pid": "1053733119", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/Neulandhalle"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Friedrichskoog"}, {"authorized_access_point": "Dieksanderkoog"}], "identifier": "http://d-nb.info/gnd/1053733119", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1053733119", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1053733119", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1053733119", "source": "GND"}], "variant_access_point": ["Neulandhalle (Dieksanderkoog)", "Neulandhalle (Adolf-Hitler-Koog)"], "authorized_access_point": "Neulandhalle (Friedrichskoog)"} 1 +2024-09-10 15:48:12.407072 2024-09-10 15:48:12.407076 04468a2a-1225-4129-bd9a-252b24dbcb48 {"md5": "b05658a5bb1b25e424325d1e62135e34", "pid": "1053694857", "note": [{"label": ["Private Seiten - http://www.schlossgarten-oldenburg.de"], "noteType": "dataSource"}, {"label": ["Englischer Landschaftsgarten für Herzog Peter Friedrich Ludwig von Oldenburg 1814/19 von J. F. W. Bosse angelegt, später erweitert"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Oldenburg (Oldenburg)"}], "identifier": "http://d-nb.info/gnd/1053694857", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1053694857", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1053694857", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1053694857", "source": "GND"}], "variant_access_point": ["Schlosspark Oldenburg (Oldenburg (Oldenburg))"], "authorized_access_point": "Schlossgarten Oldenburg (Oldenburg (Oldenburg))"} 1 +2024-09-10 15:48:12.470138 2024-09-10 15:48:12.470142 3dacb710-1c22-460e-85fb-ed6d9f0bc5a1 {"md5": "47bc739398bbde69296334a72b268c44", "pid": "105366916X", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/Collegium_St._Hieronymi"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Dillingen a.d. Donau"}], "identifier": "http://d-nb.info/gnd/105366916X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/105366916X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)105366916X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)105366916X", "source": "GND"}], "variant_access_point": ["Gebäude des ehemaligen Jesuitenkollegs (Dillingen a.d. Donau)"], "authorized_access_point": "Kollegiengebäude des Collegium Sancti Hieronymi (Dillingen a.d. Donau)"} 1 +2024-09-10 15:48:12.531254 2024-09-10 15:48:12.531258 1b1883c5-16de-4fa1-a1fb-08c3b0cefdba {"md5": "b9274b19ae8cabd33ca2f53c8be052c1", "pid": "1053585039", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Lübeck"}], "identifier": "http://d-nb.info/gnd/1053585039", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1053585039", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1053585039", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1053585039", "source": "GND"}], "variant_access_point": ["Dielenhaus Fleischhauerstraße 79 (Lübeck)"], "authorized_access_point": "Fleischhauerstraße 79 (Lübeck)"} 1 +2024-09-10 15:48:12.599976 2024-09-10 15:48:12.599981 f575077c-2f63-49f9-889e-ad1b7c307cd0 {"md5": "08b479cbfe64b3cc123f11cea5daecf0", "pid": "1053578571", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Augsburg"}], "related": [{"authorized_access_point": "Fuggerhäuser"}], "identifier": "http://d-nb.info/gnd/1053578571", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1053578571", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1053578571", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1053578571", "source": "GND"}], "variant_access_point": ["Fuggerhäuser", "Fuggerhäuser Augsburg, Badestuben"], "authorized_access_point": "Fuggerhäuser - Badstuben"} 1 +2024-09-10 15:48:12.662741 2024-09-10 15:48:12.662745 121a12f5-d8dd-4c5f-bce2-349dec5f76d0 {"md5": "0cdef41a394e84a0efce4e14bccf72e8", "pid": "1053495382", "note": [{"label": ["Wikipedia unter Süssenguth, Georg - http://de.wikipedia.org/wiki/Georg_S%C3%BC%C3%9Fenguth"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Hamburg"}, {"authorized_access_point": "Hamburg-Altona"}], "identifier": "http://d-nb.info/gnd/1053495382", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1053495382", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1053495382", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1053495382", "source": "GND"}], "variant_access_point": ["Museumsbau Museum Altona (Hamburg)", "Museumsgebäude des Museums Altona (Hamburg-Altona)"], "authorized_access_point": "Museumsbau des Altonaer Museums (Hamburg)"} 1 +2024-09-10 15:48:12.725076 2024-09-10 15:48:12.725081 0b43c952-06af-4d31-8cf1-37712e1b0461 {"md5": "904da8fe69d29da55b7c1fd4a413b0b5", "pid": "1053460856", "note": [{"label": ["Heiligtum der Demeter, Thesmophorien (Fruchtbarkeitsritus)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Rhamnus (Attika)"}], "identifier": "http://d-nb.info/gnd/1053460856", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1053460856", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1053460856", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1053460856", "source": "GND"}], "authorized_access_point": "Thesmophorion (Rhamnus, Attika)"} 1 +2024-09-10 15:48:12.791129 2024-09-10 15:48:12.791132 9fdc33ea-3338-4ed1-a3ff-cc55fabcdb4e {"md5": "eccc239ed5b193df4dea0474e9743a07", "pid": "1051746663", "note": [{"label": ["Kunstdenkmäler CH", "An der Sihlstrasse 20: In den Jahren 1812 und 1874 fanden grössere Umbauarbeiten statt, bis das ursprüngliche Gebäude 1892 gänzlich verschwand und es zum Vereinshaus des Kaufmännischen Vereins Zürich ausgebaut wurde"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Zürich"}], "identifier": "http://d-nb.info/gnd/1051746663", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1051746663", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1051746663", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1051746663", "source": "GND"}], "variant_access_point": ["Alt Seidenhof (Zürich)"], "authorized_access_point": "Alter Seidenhof (Zürich)"} 1 +2024-09-10 15:48:12.852971 2024-09-10 15:48:12.852976 961c25a3-e5a1-42b4-b7d2-752c9d092050 {"md5": "cca65d035d90200492fdc54e9949b3d1", "pid": "1044268069", "note": [{"label": ["Stadt im Landkreis Panevėžys in Litauen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Kreis Panevėžys"}], "identifier": "http://d-nb.info/gnd/1044268069", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1044268069", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1044268069", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1044268069", "source": "GND"}], "variant_access_point": ["Juodupe", "Pojedupie"], "authorized_access_point": "Juodupė"} 1 +2024-09-10 15:48:12.921077 2024-09-10 15:48:12.921082 ad434738-9c3d-4a0b-a0fc-e7906d1a934d {"md5": "4d908697b0f984aa469a7dc80d9867d9", "pid": "1038831628", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/Immichenhain"], "noteType": "dataSource"}, {"label": ["ehemals selbständige Gemeinde, seit 1.4.1972 Ortsteil von Ottrau. Im Schwalm-Eder-Kreis in Hessen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Ottrau-Immichenhain"}], "identifier": "http://d-nb.info/gnd/1038831628", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1038831628", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1038831628", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1038831628", "source": "GND"}], "variant_access_point": ["Imchenhain"], "authorized_access_point": "Immichenhain"} 1 +2024-09-10 15:48:12.98329 2024-09-10 15:48:12.983295 297f4685-afe5-4886-9ef8-57adf07944fe {"md5": "df672c6b7de5ae0e74492b73e2e85bed", "pid": "1036912949", "note": [{"label": ["Oasenstadt in NW-Saudi-Arabien, seit ca. 2. Jt. v.Chr. besiedelt"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1036912949", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1036912949", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1036912949", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1036912949", "source": "GND"}], "variant_access_point": ["Tema (Saudi-Arabien)", "Tayma", "Teima", "Taymāʾ"], "authorized_access_point": "Taima (Saudi-Arabien)"} 1 +2024-09-10 15:48:13.047707 2024-09-10 15:48:13.047711 06ba320a-26e4-4364-9568-9bdda81bfe92 {"md5": "fc7c21d52d0e3e2beb088b476a8820c1", "pid": "1036573141", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1036573141", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1036573141", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1036573141", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1036573141", "source": "GND"}], "authorized_access_point": "Friedrichslohra und Amtlohra - Region"} 1 +2024-09-10 15:48:13.115483 2024-09-10 15:48:13.115486 c1850e78-80e1-4743-83d0-25e015b86e10 {"md5": "0bf8268431acd19c12648fc88435e0e1", "pid": "1035487640", "note": [{"label": ["Internet - https://www.salzkoerner.de/?page_id=525"], "noteType": "dataSource"}, {"label": ["Anfang des 13. Jahrhunderts vom Deutschherrenorden als Ordenskirche errichtet, 1870 niedergelegt blieb nur der alte Westturm beim Neubau 1876-1878 erhalten"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Waldbreitbach"}], "identifier": "http://d-nb.info/gnd/1035487640", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1035487640", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1035487640", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1035487640", "source": "GND"}], "variant_access_point": ["Kath. Pfarrkirche Mariä Himmelfahrt (Waldbreitbach)", "Katholische Pfarrkirche Mariä Himmelfahrt (Waldbreitbach)", "Pfarrkirche Maria Himmelfahrt (Waldbreitbach)", "Kirche Maria Himmelfahrt (Waldbreitbach)", "Mariä Himmelfahrt (Waldbreitbach)"], "authorized_access_point": "Maria Himmelfahrt (Waldbreitbach)"} 1 +2024-09-10 15:48:13.180374 2024-09-10 15:48:13.18038 35df9270-3c19-4bb1-817d-ba89695a2bb8 {"md5": "85816f49a031ec6a876c7b767266b783", "pid": "1032436034", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Nümbrecht"}], "identifier": "http://d-nb.info/gnd/1032436034", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1032436034", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1032436034", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1032436034", "source": "GND"}], "variant_access_point": ["Ev. Kirche Nümbrecht (Nümbrecht)"], "authorized_access_point": "Evangelische Kirche Nümbrecht (Nümbrecht)"} 1 +2024-09-10 15:48:13.254087 2024-09-10 15:48:13.254091 94d5ca23-8836-46a6-bf7d-824a2188e2d7 {"md5": "31bb455a69a877e62e33e0479f91a745", "pid": "1031571922", "note": [{"label": ["Homepage - http://www.gelgaudiskis.lt/"], "noteType": "dataSource"}, {"label": ["Stadt in Litauen, im Bezirk Mariampol. Am Fluß Niemen (dt. Memel, pol. Niemen, lit. Nemunas, russ. Neman)."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1031571922", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1031571922", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1031571922", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1031571922", "source": "GND"}], "variant_access_point": ["Gelgaudiskis", "Giełgudyszki", "Gelʹgudiški"], "authorized_access_point": "Gelgaudiškis"} 1 +2024-09-10 15:48:13.937331 2024-09-10 15:48:13.937336 042ca80f-20d3-4f29-a924-8318c1c11d5b {"md5": "37327eefbd5d8b973b650e52d7d4bebd", "pid": "1021112216", "note": [{"label": ["Amtsbezirk der Rajongemeinde Varėna im Süden von Litauen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/7861831-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7861831-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1021112216", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7861831-9", "source": "GND"}], "variant_access_point": ["Marcinkoniu̜ seniūnija", "Marcinkonys (Amt)"], "authorized_access_point": "Amt Marcinkonys"} 1 +2024-09-10 15:48:13.319255 2024-09-10 15:48:13.319258 3cf2843c-545b-4c4a-8a1c-364e5fb32648 {"md5": "820aa8ed1cbef16a7af6e2a7347d317c", "pid": "1029389896", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Sellerhausen&oldid=231774300"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Leipzig-Sellerhausen-Stünz"}], "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Sellerhausen"}], "identifier": "http://d-nb.info/gnd/1029389896", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1029389896", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1029389896", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1029389896", "source": "GND"}], "variant_access_point": ["Sellerhausen (Leipzig)"], "authorized_access_point": "Leipzig-Sellerhausen"} 1 +2024-09-10 15:48:13.383746 2024-09-10 15:48:13.38375 043a6ace-fe6f-429a-9929-bf1d764fe771 {"md5": "346f2760c93a259c73be1d9d19a37f68", "pid": "1029389233", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Neusellerhausen"}], "identifier": "http://d-nb.info/gnd/1029389233", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1029389233", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1029389233", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1029389233", "source": "GND"}], "variant_access_point": ["Neusellerhausen (Leipzig)"], "authorized_access_point": "Leipzig-Neusellerhausen"} 1 +2024-09-10 15:48:13.470632 2024-09-10 15:48:13.470637 c9a4d313-302c-4375-9525-83511a0c51b4 {"md5": "68cca9876bf66fab2e512787e287f8b5", "pid": "1029388334", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Neureudnitz"}], "identifier": "http://d-nb.info/gnd/1029388334", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1029388334", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1029388334", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1029388334", "source": "GND"}], "variant_access_point": ["Neureudnitz (Leipzig)"], "authorized_access_point": "Leipzig-Neureudnitz"} 1 +2024-09-10 15:48:13.547768 2024-09-10 15:48:13.547772 259b2d93-35ef-43e1-9677-e959de1b9089 {"md5": "5a11caae852250db90e66955fbd8db08", "pid": "1028231660", "note": [{"label": ["wikipedia - https://en.wikipedia.org/w/index.php?title=Upyt%C4%97&oldid=1181420912"], "noteType": "dataSource"}, {"label": ["Verwaltungseinheit im Landkreis Panevėžys, Litauen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Kreis Panevėžys"}, {"authorized_access_point": "Upytė"}], "identifier": "http://d-nb.info/gnd/1028231660", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1028231660", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1028231660", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1028231660", "source": "GND"}], "variant_access_point": ["Upytės seniūnija"], "authorized_access_point": "Amtsbezirk Upytė"} 1 +2024-09-10 15:48:13.608363 2024-09-10 15:48:13.608366 bf13433f-f035-4b4e-a468-0b9c4dc1ff99 {"md5": "0c23c658a87bfd9a9ea8731d4341b541", "pid": "1024812693", "note": [{"label": ["Gemeinde im Landkreis Görlitz , Sachsen."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1024812693", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1024812693", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1024812693", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1024812693", "source": "GND"}], "variant_access_point": ["Groß-Düben", "Dźěwin"], "authorized_access_point": "Groß Düben"} 1 +2024-09-10 15:48:13.672597 2024-09-10 15:48:13.672604 168d7561-9cbc-4ee5-898d-36b30476876e {"md5": "33e22984e326dbd72d5ca04aaa2c41c9", "pid": "1021396656", "note": [{"label": ["Stadt im Süden Litauens, Bezirk Marijampolė"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/7864312-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7864312-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1021396656", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7864312-0", "source": "GND"}], "variant_access_point": ["Kalwarja", "Kalvariya", "Kalvarijos", "Calvaria", "Kalvaria", "Kalwaria", "Kalwariya"], "authorized_access_point": "Kalvarija"} 1 +2024-09-10 15:48:13.734413 2024-09-10 15:48:13.734417 d1ba9a14-5dc8-4363-bd55-5123e42180e4 {"md5": "7a67d751030cba3f3788f4bdf43f484e", "pid": "1021113018", "note": [{"label": ["Region im Bezirk Šiauliai, zwischen Rozalimas, Radviliškis, Seduva und Smilgiai gelegen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/7861847-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7861847-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1021113018", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7861847-2", "source": "GND"}], "variant_access_point": ["Alksniupiu̜ kraštas"], "authorized_access_point": "Alksniupiai - Region"} 1 +2024-09-10 15:48:13.801055 2024-09-10 15:48:13.80106 be4d5515-a570-4a38-aa98-b0cd8c70f397 {"md5": "e87cb7e453185395773e66a2d6664eca", "pid": "1021112577", "note": [{"label": ["Ort im Osten Litauens, im Bezirk Švenčionys"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/7861838-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7861838-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1021112577", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7861838-1", "source": "GND"}], "variant_access_point": ["Kaltanenay", "Kaltinėnai", "Kołtyniany", "Koltynyany"], "authorized_access_point": "Kaltanėnai"} 1 +2024-09-10 15:48:13.874332 2024-09-10 15:48:13.874335 43cac3b7-05ab-4e8a-813a-7434e10db5af {"md5": "143dbc5d11a79d181cb900e9d90cac87", "pid": "1021112518", "note": [{"label": ["Stadt in Litauen, im Bezirk Kelmė"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/7861835-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7861835-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1021112518", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7861835-6", "source": "GND"}], "authorized_access_point": "Karklėnai"} 1 +2024-09-10 15:48:14.018245 2024-09-10 15:48:14.018251 a2ad907f-f564-4152-9118-00125412597b {"md5": "b786dee1a2cfb8143c7288c91e682002", "pid": "1021056154", "note": [{"label": ["Tal in Saudiarabien"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/7861291-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7861291-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1021056154", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7861291-3", "source": "GND"}], "variant_access_point": ["Wadi Al-Aqiq", "Wadi Al-Aqeeq"], "authorized_access_point": "Wādī al-ʿAqīq"} 1 +2024-09-10 15:48:14.105247 2024-09-10 15:48:14.10525 577b88ff-4fdf-439d-afcd-8849a64ea5bc {"md5": "37e5d4b31cc148438cd9afe9705c8970", "pid": "1020911387", "note": [{"label": ["Dorf im Bezirk Kelme in Litauen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/7860875-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7860875-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1020911387", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7860875-2", "source": "GND"}], "authorized_access_point": "Kuršiai (Kelme)"} 1 +2024-09-10 15:48:14.166122 2024-09-10 15:48:14.166127 cd5894ad-6339-4eb6-8b66-ffba8f97d815 {"md5": "4c540e441cd452ef0e2d116f53274e23", "pid": "1020911344", "note": [{"label": ["Kreis im Bezirk Šiauliai in Litauen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/7860874-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7860874-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1020911344", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7860874-0", "source": "GND"}], "variant_access_point": ["Radviliškio rajonas", "Radviliškis (Kreis)"], "authorized_access_point": "Kreis Radviliškis"} 1 +2024-09-10 15:48:14.230724 2024-09-10 15:48:14.230729 6d91eda7-2487-4c5a-ba83-47de4be0c315 {"md5": "e29241ed17ec4b4b74599be6582c5fb9", "pid": "1020911026", "note": [{"label": ["Dorf im Bezirk Telšiai in Litauen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/7860862-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7860862-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1020911026", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7860862-4", "source": "GND"}], "authorized_access_point": "Ke̜staičiai"} 1 +2024-09-10 15:48:14.294353 2024-09-10 15:48:14.294358 13a7c86e-5f92-4371-89bc-cfeee4a4f7e8 {"md5": "8e15953338b80be8ffdeafbfecf02b76", "pid": "1020897325", "note": [{"label": ["Litauische Rajongemeinde im Bezirk Kaunas"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/7860647-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7860647-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1020897325", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7860647-0", "source": "GND"}], "variant_access_point": ["Jonavas rajonas", "Jonava (Kreis)"], "authorized_access_point": "Kreis Jonava"} 1 +2024-09-10 15:48:14.370089 2024-09-10 15:48:14.370093 aff85f1b-f299-471a-a77e-03ff6c4c8e1b {"md5": "3785a65b1b8b06e07657281c02570d1c", "pid": "1020897236", "note": [{"label": ["Kreis im Südosten von Litauen, im Bezirk Alytus"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/7860645-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7860645-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1020897236", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7860645-7", "source": "GND"}], "variant_access_point": ["Varėnos rajonas", "Varėna (Kreis)"], "authorized_access_point": "Kreis Varėna"} 1 +2024-09-10 15:48:14.430363 2024-09-10 15:48:14.430368 fb9a96fe-5830-418f-9058-1830c8e7df5b {"md5": "b4019664953382cbdafc7402910814a9", "pid": "1020865318", "note": [{"label": ["Stadt im NO Litauens"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/7860430-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7860430-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1020865318", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7860430-8", "source": "GND"}], "authorized_access_point": "Ignalina"} 1 +2024-09-10 15:48:14.517447 2024-09-10 15:48:14.517452 52d6e74f-719c-44b9-994b-a725776ac9bd {"md5": "2846fa7990349e1b3d19911aafdcf25b", "pid": "1020865237", "note": [{"label": ["Region im NO Litauens"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/7860429-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7860429-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1020865237", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7860429-1", "source": "GND"}], "variant_access_point": ["Ignalinos kraštas", "Ignalinskij kraj"], "authorized_access_point": "Ignalina - Region"} 1 +2024-09-10 15:48:14.5837 2024-09-10 15:48:14.583705 2fad76b9-f660-44f4-8cb6-cd0bdb480872 {"md5": "05ca364cc0f3cb7852608cb8a50216d1", "pid": "1016112106", "note": [{"label": ["Schloss auf einem Felssporn im Oberen Donautal, Wohnplatz historisch"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Landkreis Sigmaringen"}], "identifier": "http://d-nb.info/gnd/7832565-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7832565-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1016112106", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7832565-1", "source": "GND"}], "variant_access_point": ["Beuron-Schloss Werenwag"], "authorized_access_point": "Schloss Werenwag"} 1 +2024-09-10 15:48:14.647308 2024-09-10 15:48:14.647313 02d4c7b2-b11d-4dab-975b-e8ad66303ff0 {"md5": "aa81c86a063b5cfacc490fefca6f5f61", "pid": "1011060752", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/7742462-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7742462-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1011060752", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7742462-1", "source": "GND"}], "authorized_access_point": "Henningen (Salzwedel) - Region"} 1 +2024-09-10 15:48:14.709039 2024-09-10 15:48:14.709043 c1767197-a669-463b-bdbf-8a5e75c936a3 {"md5": "b6aecbc223590430a87b84813c3d3fb8", "pid": "1010438603", "note": [{"label": ["seit 1974 Ortsteil von Döbern"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/7737805-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7737805-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1010438603", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7737805-2", "source": "GND"}], "variant_access_point": ["Dubraucke", "Dubrawka", "Döbern-Eichwege"], "authorized_access_point": "Eichwege"} 1 +2024-09-10 15:48:14.783355 2024-09-10 15:48:14.78336 f7338290-51fa-4b21-82d4-f2cf695f921e {"md5": "b1c4240e1a2a4c1e253719721df16988", "pid": "1010249460", "note": [{"label": ["Stadt im Irak"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/7736522-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7736522-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1010249460", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7736522-7", "source": "GND"}], "variant_access_point": ["Dihok", "Dahūk", "Duhūk", "Dihuk", "Dahok", "Dahuk", "Duhok", "Dohuk", "دهوك"], "authorized_access_point": "Dihōk"} 1 +2024-09-10 15:48:14.843325 2024-09-10 15:48:14.843329 f4aff7fc-146c-4d3b-9433-1b1515adb4e8 {"md5": "48edaf0bf4acd80ba26abcca95ca9c57", "pid": "1009847430", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Holzhausen_II&oldid=146144601"], "noteType": "dataSource"}, {"label": ["Seit 01.01.1973 Ortsteil von Hille (Kreis Minden-Lübbecke), vorher selbstständig"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Hille"}, {"authorized_access_point": "Holzhausen II"}], "identifier": "http://d-nb.info/gnd/7733190-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7733190-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1009847430", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7733190-4", "source": "GND"}], "authorized_access_point": "Hille- Holzhausen II"} 1 +2024-09-10 15:48:14.907372 2024-09-10 15:48:14.907376 cc92ef12-f6b9-42fd-a5c4-d5de44e6c34f {"md5": "833f56fe441d7beb72d2b7d71ab9fe05", "pid": "1009707922", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Heringsdorf (Kreis Ostholstein)"}], "identifier": "http://d-nb.info/gnd/16098098-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16098098-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1009707922", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)16098098-7", "source": "GND"}], "variant_access_point": ["Siggen (Heringsdorf, Kreis Ostholstein)"], "authorized_access_point": "Heringsdorf-Siggen"} 1 +2024-09-10 15:48:14.975233 2024-09-10 15:48:14.975237 93616a68-db87-4dc9-9b20-0c3f659a1831 {"md5": "925c6120b9cf06a36e850f06da16bd9d", "pid": "1008073997", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Breitenfeld_(Leipzig)"], "noteType": "dataSource"}, {"label": ["Ortsteil von Leipzig seit 1.1.1999, 1271 Dorf urkundl. erwähnt; 1923 nach Lindenthal (Leipzig) eingemeindet"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Lindenthal-Breitenfeld"}], "identifier": "http://d-nb.info/gnd/7723003-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7723003-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1008073997", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7723003-6", "source": "GND"}], "variant_access_point": ["Breitenfeld (Leipzig)"], "authorized_access_point": "Leipzig-Breitenfeld"} 1 +2024-09-10 15:48:15.043814 2024-09-10 15:48:15.043819 e564a17f-744d-4e15-8034-06a8324700f2 {"md5": "05f57f41d545e15f7bd35fe6d4056644", "pid": "1002427517", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Kreis-Direktion Leipzig"}], "identifier": "http://d-nb.info/gnd/16065257-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16065257-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1002427517", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)16065257-1", "source": "GND"}], "variant_access_point": ["Leipziger Creyß", "Leipzigischer Creyß", "Leipzigischer Kreis", "Leipziger Kreis", "Forum für Wissenschaft und Kunst"], "authorized_access_point": "Leipziger Creis"} 1 +2024-09-10 15:48:15.103769 2024-09-10 15:48:15.103773 cfc9e004-bdc7-46ed-a860-1da16df6897c {"md5": "909629a8f4b95d9a8d975f9f28cc8cfa", "pid": "1001762630", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=243074240"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Kreis Oststernberg"}, {"authorized_access_point": "Łagów (Woiwodschaft Lebus)"}], "identifier": "http://d-nb.info/gnd/16063071-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16063071-X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1001762630", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)16063071-X", "source": "GND"}], "authorized_access_point": "Lagow (Kreis Oststernberg)"} 1 +2024-09-10 15:48:15.17543 2024-09-10 15:48:15.175434 98ac3edd-6e12-494c-b70f-f3117781f8f9 {"md5": "3501458b8030ce425721e3cadd32f3f7", "pid": "996588051", "note": [{"label": ["Stadtteil von Leipzig seit 1.1.1999; Gemeinde Böhlitz-Ehrenberg bestand seit 1839"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Böhlitz-Ehrenberg"}], "identifier": "http://d-nb.info/gnd/7672378-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7672378-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)996588051", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7672378-1", "source": "GND"}], "variant_access_point": ["Böhlitz-Ehrenberg (Leipzig)"], "authorized_access_point": "Leipzig-Böhlitz-Ehrenberg"} 1 +2024-09-10 15:48:15.235611 2024-09-10 15:48:15.235615 d38cac2b-69b6-475b-a1c5-918eb91b6c14 {"md5": "c516dadd4f3f6998c156ce7b51a2a79c", "pid": "996155910", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Chocian%C3%B3w&oldid=245141308"], "noteType": "dataSource"}, {"label": ["Stadt im preußischen Kreis Lübben, ab 1945 Chocianów in der polnischen der Woiwodschaft Niederschlesien"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Chocianów"}], "identifier": "http://d-nb.info/gnd/16019456-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16019456-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)996155910", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)16019456-8", "source": "GND"}], "authorized_access_point": "Kotzenau"} 1 +2024-09-10 15:48:15.820324 2024-09-10 15:48:15.820327 910b6d79-f5f5-489f-9716-4340da2206e1 {"md5": "a6b06d2ec15513dcff8f33a74e811f77", "pid": "979131529", "note": [{"label": ["Gemeinde im Bezirk Morges, Kanton Waadt"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/7522697-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7522697-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)979131529", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7522697-2", "source": "GND"}], "authorized_access_point": "Echichens"} 1 +2024-09-10 15:48:15.298377 2024-09-10 15:48:15.298382 c9ef4d9d-1110-4713-9925-85844f104989 {"md5": "6dc721536ac95e440a1233948703b659", "pid": "995191506", "note": [{"label": ["Stadtteil von Grünberg im Landkreis Gießen, Hessen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Grünberg (Landkreis Gießen)"}, {"authorized_access_point": "Queckborn"}], "identifier": "http://d-nb.info/gnd/16014739-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16014739-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)995191506", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)16014739-6", "source": "GND"}], "variant_access_point": ["Grünberg (Landkreis Gießen-Queckborn)", "Queckborn (Grünberg-Queckborn)"], "authorized_access_point": "Grünberg-Queckborn"} 1 +2024-09-10 15:48:15.370406 2024-09-10 15:48:15.37041 e7e3f056-a365-44ee-86eb-d59712017f24 {"md5": "61b5ef9ecd78677fd9af65f0cac67c03", "pid": "994536666", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Zuckelhausen&oldid=234613791"], "noteType": "dataSource"}, {"label": ["Stadtteil von Leipzig seit 1.1.1999, davor Ortsteil von Holzhausen "], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Holzhausen-Zuckelhausen"}], "identifier": "http://d-nb.info/gnd/7660336-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7660336-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)994536666", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7660336-2", "source": "GND"}], "variant_access_point": ["Zuckelhausen (Leipzig)"], "authorized_access_point": "Leipzig-Zuckelhausen"} 1 +2024-09-10 15:48:15.439188 2024-09-10 15:48:15.439191 bef7b8b6-2a91-431d-8d02-0198ca6b965d {"md5": "ee642680987c1d577dc42de769516cca", "pid": "992346371", "note": [{"label": ["Ortsteil von Rietschen, Landkreis Görlitz (1.8.1994-31.7.2008: Niederschlesischer Oberlausitzkreis; 25.7.1952-31.7.1994: (Land-)Kreis Weißwasser), 1346, 1366 und 1398 urkundl. erwähnt, 15.3.1992 mit Rietschen, Teicha u. Viereichen zu Rietschen zusammengeschlossen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/7642802-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7642802-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992346371", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7642802-3", "source": "GND"}], "variant_access_point": ["Dubc", "Rietschen-Daubitz"], "authorized_access_point": "Daubitz"} 1 +2024-09-10 15:48:15.500896 2024-09-10 15:48:15.5009 c05bdd9d-3bec-4211-bf24-a8c6b230c571 {"md5": "998998460b4a704ac7b3c6f776535ae5", "pid": "989505952", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=St._Maria_ad_Gradus_(K%C3%B6ln)&oldid=205659895"], "noteType": "dataSource"}, {"label": ["Romanische Stiftskirche mit eigenem Immunitätsbezirk; 1059 urkundlich erwähnt, 1817 abgerissen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Köln"}], "identifier": "http://d-nb.info/gnd/7617898-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7617898-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)989505952", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7617898-5", "source": "GND"}], "variant_access_point": ["Sankt Maria ad gradus (Köln)", "Stiftskirche Sankt Maria zu den Stufen (Köln)", "Sankt Mariengraden (Köln)", "Maria zu den Stufen (Köln)", "St. Mariengraden (Köln)", "St. Maria ad gradus (Köln) (Köln)"], "authorized_access_point": "Sankt Maria zu den Stufen (Köln)"} 1 +2024-09-10 15:48:15.569347 2024-09-10 15:48:15.56935 85b8ecbe-fbfb-4532-b987-6a191891d02e {"md5": "e3d613025d71195d6de64978f34bd7cb", "pid": "98831326X", "note": [{"label": ["Pavillon 1973 (andersltd.: 1970) erbaut nach Entwurf von Ulrich Müther , bewirtschaftet von einer Künstlervereinigung, seit 1990 Usedomer Kunstverein"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Heringsdorf (Seebad)"}], "identifier": "http://d-nb.info/gnd/7608819-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7608819-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)98831326X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7608819-4", "source": "GND"}], "authorized_access_point": "Kunstpavillon (Heringsdorf, Seebad)"} 1 +2024-09-10 15:48:15.636876 2024-09-10 15:48:15.63688 8512603e-4f92-4c03-b921-05887d6f5a24 {"md5": "3b91f1ba43c2f70c816838efb7abe560", "pid": "985253576", "note": [{"label": ["Internet - http://www.schwante.de/schloesser.htm"], "noteType": "dataSource"}, {"label": ["Schloß 1888/91 von H. Abesser u. J. Kröger erbaut; heute von Dharmakaya Schloss Sommerswalde e.V. (Buddhistische Klosterschule und Sozialprojekt) genutzt"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Schwante"}], "identifier": "http://d-nb.info/gnd/7577686-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7577686-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)985253576", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7577686-8", "source": "GND"}], "authorized_access_point": "Schloss Sommerswalde (Schwante)"} 1 +2024-09-10 15:48:15.700263 2024-09-10 15:48:15.700266 3678b04f-1400-4fb5-b1e0-124241f54d0a {"md5": "d9470b837b281fff3ad2c902beff6d1c", "pid": "984645942", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/10172109-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10172109-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)984645942", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)10172109-2", "source": "GND"}], "authorized_access_point": "Leipzig-Südost"} 1 +2024-09-10 15:48:15.759217 2024-09-10 15:48:15.759221 8d9f2b48-9426-4917-b8e8-e015dedabc1f {"md5": "872ace2786ddd660a031ea1760ee258f", "pid": "980891248", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/10145481-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10145481-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)980891248", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)10145481-8", "source": "GND"}], "variant_access_point": ["Bezirk Judenburg", "Judenburg (Politischer Bezirk)"], "authorized_access_point": "Politischer Bezirk Judenburg"} 1 +2024-09-10 15:48:15.879464 2024-09-10 15:48:15.87947 adaf90b3-a065-4f54-b88b-e16739806aec {"md5": "739704d01e97837375872dc26565ea52", "pid": "978966228", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Herzogtum Preußen"}], "identifier": "http://d-nb.info/gnd/7521235-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7521235-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)978966228", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7521235-3", "source": "GND"}], "variant_access_point": ["Preußen (Herzogtum)"], "authorized_access_point": "Herzogtum Preußen - Ost"} 1 +2024-09-10 15:48:15.94143 2024-09-10 15:48:15.941433 c3eab836-5d2c-4224-8952-45333bc2b4eb {"md5": "6987d60a98383afcb64d3aac29c47d8b", "pid": "978923855", "note": [{"label": ["Homepage - http://www.leipzig-lexikon.de/KOMMGLIE/KK_KH.HTM"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}], "identifier": "http://d-nb.info/gnd/10131913-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10131913-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)978923855", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)10131913-7", "source": "GND"}], "variant_access_point": ["Knautkleeberg-Knauthain"], "authorized_access_point": "Leipzig-Knautkleeberg-Knauthain"} 1 +2024-09-10 15:48:15.998754 2024-09-10 15:48:15.998757 e7a91879-5451-453f-8944-1ccbdeade11c {"md5": "9047e65b88a17b58a4b8af14d8a72cd2", "pid": "975958925", "note": [{"label": ["Homepage - http://www.baeriswil.ch"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Bern"}], "identifier": "http://d-nb.info/gnd/4837436-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4837436-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)975958925", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4837436-2", "source": "GND"}], "variant_access_point": ["Gemeinde Bäriswil", "Einwohnergemeinde Bäriswil"], "authorized_access_point": "Bäriswil (Bern)"} 1 +2024-09-10 15:48:16.073579 2024-09-10 15:48:16.073582 991fba37-8d16-4ef9-ad5c-5cd282df14f0 {"md5": "47b672e395e23e8689a7137ae4f16c4a", "pid": "975328573", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Heringsdorf"], "noteType": "dataSource"}, {"label": ["Seebad auf Usedom, Landkreis Ostvorpommern, 1.1.2005 durch Zusammenschluß von Ahlbeck, Bansin und Heringsdorf gebildet, 1.1.2006 in Ostseebad Heringsdorf umbenannt"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Heringsdorf (Seebad)"}], "related": [{"authorized_access_point": "Ahlbeck (Seebad)"}, {"authorized_access_point": "Bansin"}, {"authorized_access_point": "Heringsdorf (Seebad)"}], "identifier": "http://d-nb.info/gnd/10106723-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10106723-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)975328573", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)10106723-9", "source": "GND"}], "variant_access_point": ["Gemeinde Dreikaiserbäder"], "authorized_access_point": "Dreikaiserbäder"} 1 +2024-09-10 15:48:16.132567 2024-09-10 15:48:16.132571 0008a412-7fa0-47e9-a7e0-daf8c71737ae {"md5": "18ecf0abfd1ffffcd008f1708ab35207", "pid": "974245747", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Amt Haderslev"}], "identifier": "http://d-nb.info/gnd/4821311-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4821311-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)974245747", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4821311-1", "source": "GND"}], "variant_access_point": ["Amt Hadersleben", "Hadersleben (Amt)"], "authorized_access_point": "Amt Haderslev - West"} 1 +2024-09-10 15:48:16.196474 2024-09-10 15:48:16.196478 838b8395-966c-4ff5-b359-258ff7143617 {"md5": "c0da04768701d5ed46358a542474aa1c", "pid": "97424225X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Amt Haderslev"}], "identifier": "http://d-nb.info/gnd/4821156-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4821156-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)97424225X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4821156-4", "source": "GND"}], "variant_access_point": ["Amt Hadersleben", "Hadersleben (Amt)"], "authorized_access_point": "Amt Haderslev - Ost"} 1 +2024-09-10 15:48:16.257847 2024-09-10 15:48:16.25785 ff07bf25-496b-412c-8c36-bf0e06025df9 {"md5": "5aa63b493244156b664a1b68c1916cd5", "pid": "973071648", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4806526-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4806526-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)973071648", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4806526-2", "source": "GND"}], "authorized_access_point": "Rayyis - Region"} 1 +2024-09-10 15:48:16.318013 2024-09-10 15:48:16.318018 32b1d830-21b4-494c-872b-0d746e847af8 {"md5": "724d28d127383c006795d68d34b82a65", "pid": "973066261", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Saudi-Arabien"}], "identifier": "http://d-nb.info/gnd/4806336-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4806336-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)973066261", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4806336-8", "source": "GND"}], "authorized_access_point": "Saudi-Arabien - Nordost"} 1 +2024-09-10 15:48:16.377807 2024-09-10 15:48:16.377811 48060dd6-fc39-4697-a8f9-d4edcdea286b {"md5": "53f535d5acb14a5df9bfa7b177d1f9af", "pid": "973066245", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Saudi-Arabien"}], "identifier": "http://d-nb.info/gnd/4806334-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4806334-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)973066245", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4806334-4", "source": "GND"}], "authorized_access_point": "Saudi-Arabien - Nord"} 1 +2024-09-10 15:48:16.440557 2024-09-10 15:48:16.440562 0c732aaa-6741-41e9-9af2-ec631b617b17 {"md5": "50b0011b9ff17d275fcedd50d4d48ff6", "pid": "973040149", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4806060-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4806060-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)973040149", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4806060-4", "source": "GND"}], "authorized_access_point": "Riad - Region"} 1 +2024-09-10 15:48:16.523975 2024-09-10 15:48:16.523978 27810fa8-341a-4c09-bda9-1a01d3f24b62 {"md5": "52f0e3748e4b4dd32145b4070a6e2ace", "pid": "972651438", "note": [{"label": ["Homepage - http://www.kirchstetten.at"], "noteType": "dataSource"}, {"label": ["Gleichnamige Katastralgemeinde. - Postleitzahl: 3062, 3061"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Neulengbach"}], "identifier": "http://d-nb.info/gnd/4801892-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4801892-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)972651438", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4801892-2", "source": "GND"}], "variant_access_point": ["Marktgemeinde Kirchstetten", "Dichtergemeinde Kirchstetten"], "authorized_access_point": "Kirchstetten (Neulengbach)"} 1 +2024-09-10 15:48:16.586062 2024-09-10 15:48:16.586066 97f75e88-6742-47d4-9754-ac159a66e3aa {"md5": "3994d5abf7f7487d4e572011765bbdff", "pid": "972586601", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Hainburg an der Donau"}], "related": [{"authorized_access_point": "Wolfsthal-Berg"}], "identifier": "http://d-nb.info/gnd/4800591-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4800591-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)972586601", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4800591-5", "source": "GND"}], "authorized_access_point": "Berg (Hainburg an der Donau)"} 1 +2024-09-10 15:48:16.644488 2024-09-10 15:48:16.644492 82e89e77-cc2e-4fd9-998b-cda8e9f32ff4 {"md5": "4f06ac12c7b1deea9c0baaa33aacbcff", "pid": "972515704", "note": [{"label": ["Homepage - https://www.kirchengemeinde-bochum-wiemelhausen.de/die-melanchthonkirche/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bochum"}, {"authorized_access_point": "Bochum-Wiemelhausen"}], "identifier": "http://d-nb.info/gnd/4799377-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4799377-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)972515704", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4799377-7", "source": "GND"}], "variant_access_point": ["Melanchthonkirche (Bochum-Wiemelhausen)"], "authorized_access_point": "Melanchthonkirche (Bochum)"} 1 +2024-09-10 15:48:16.702034 2024-09-10 15:48:16.702037 af59351c-badf-4473-8b57-b6585d7fe337 {"md5": "e912c627e4ab71389ea632b904781bf5", "pid": "971359709", "note": [{"label": ["Bezirk im Kanton Bern"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4781902-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4781902-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)971359709", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4781902-9", "source": "GND"}], "variant_access_point": ["Amt Bern", "Amtsbezirk Bern", "Bern (Bezirk)"], "authorized_access_point": "Bezirk Bern"} 1 +2024-09-10 15:48:16.762559 2024-09-10 15:48:16.762563 fa434e99-41d4-4858-8f90-9757e487094c {"md5": "8ae40fa0b33b10f4f62df56d57ea1931", "pid": "970139470", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Anjouan (Insel)"}], "identifier": "http://d-nb.info/gnd/4766737-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4766737-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)970139470", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4766737-0", "source": "GND"}], "authorized_access_point": "Anjouan (Insel) - Nord"} 1 +2024-09-10 15:48:16.825975 2024-09-10 15:48:16.825978 a5acd516-b13c-43c2-9705-ce973388f3a8 {"md5": "ded2d6c18d21039a6d07d438a1a04c7b", "pid": "969971028", "note": [{"label": ["Stadt im Norden Saudi-Arabiens"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4764706-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4764706-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)969971028", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4764706-1", "source": "GND"}], "variant_access_point": ["Sākākah", "Skāka", "Sakāka"], "authorized_access_point": "Sakaka"} 1 +2024-09-10 15:48:16.905827 2024-09-10 15:48:16.905832 adf68124-d5f8-438c-b847-3d2102af7d86 {"md5": "6e6026077d121defafdedc66953484ba", "pid": "969491131", "note": [{"label": ["Stadt in Saudi-Arabien"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4758499-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4758499-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)969491131", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4758499-3", "source": "GND"}], "variant_access_point": ["Ušaiqir"], "authorized_access_point": "Ushayqir"} 1 +2024-09-10 15:48:16.971496 2024-09-10 15:48:16.9715 6a43e532-f55b-4d6d-9416-c11ee6d15970 {"md5": "8454c5c786c4c0b35c11d40812643321", "pid": "967753546", "note": [{"label": ["Stadt in der Provinz aš-Šarqīya in Saudi-Arabien"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4734021-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4734021-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)967753546", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4734021-6", "source": "GND"}], "variant_access_point": ["Sīhāt", "Saihāt"], "authorized_access_point": "Sayhāt"} 1 +2024-09-10 15:48:17.04492 2024-09-10 15:48:17.044924 e6898931-01f4-4fd5-b19e-ae5fe5b171e9 {"md5": "4a2fed0ef08500af94e1e1d134a3a9ad", "pid": "967681952", "note": [{"label": ["Homepage - https://www.oetigheim.de/", "Wikipedia - https://de.wikipedia.org/w/index.php?title=%C3%96tigheim&oldid=246016894"], "noteType": "dataSource"}, {"label": ["Gemeinde im Landkreis Rastatt"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4732923-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4732923-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)967681952", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4732923-3", "source": "GND"}], "variant_access_point": ["Gemeinde Ötigheim"], "authorized_access_point": "Ötigheim"} 1 +2024-09-10 15:48:17.700017 2024-09-10 15:48:17.700023 39088392-61cd-47d0-a4bb-9f509c8e651b {"md5": "e078518f05d6f55b2e0b34ea194a81f0", "pid": "964991608", "note": [{"label": ["Gemeinde im Kt. Neuenburg"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4696241-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4696241-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)964991608", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4696241-4", "source": "GND"}], "variant_access_point": ["Ponts-de-Martel, Les", "LesPonts-de-Martel", "Ponts-de-Martel"], "authorized_access_point": "Les Ponts-de-Martel"} 1 +2024-09-10 15:48:17.109983 2024-09-10 15:48:17.109987 dbc0eae2-82b4-44ba-9c94-490ccda24713 {"md5": "624ba00ab201502fe62b855e394a09a3", "pid": "967581176", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Goethewanderweg_Ilmenau%E2%80%93St%C3%BCtzerbach&oldid=242625559"], "noteType": "dataSource"}, {"label": ["18,5 km lang, 1970 angelegt"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Ilmenau"}, {"authorized_access_point": "Ilmenau-Stützerbach"}], "identifier": "http://d-nb.info/gnd/4731282-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4731282-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)967581176", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4731282-8", "source": "GND"}], "variant_access_point": ["Goethe-Wanderweg"], "authorized_access_point": "Goethewanderweg"} 1 +2024-09-10 15:48:17.185037 2024-09-10 15:48:17.185042 b877b67d-d83d-4278-b4ca-df49504c9e0c {"md5": "57900ebbc2115c164e8a44fcf593e759", "pid": "967180953", "note": [{"label": ["Homepage - https://www.nationalpark-eifel.de"], "noteType": "dataSource"}, {"label": ["Nationalpark im Gebiet um den Truppenübungsplatz Vogelsang mit den Waldgebieten Kermeter und Dedenborn, eröffnet am 11.1.2004"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Nordrhein-Westfalen"}], "identifier": "http://d-nb.info/gnd/4725322-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4725322-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)967180953", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4725322-8", "source": "GND"}], "authorized_access_point": "Nationalpark Eifel"} 1 +2024-09-10 15:48:17.249309 2024-09-10 15:48:17.249313 844f8c10-4a84-44d8-8f08-ab9d66518346 {"md5": "f59240674954c145d83e1f6d694f2552", "pid": "967160480", "note": [{"label": ["Stadtteil von Leipzig seit 1.1.1999"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Miltitz (Leipzig)"}], "identifier": "http://d-nb.info/gnd/4725054-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4725054-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)967160480", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4725054-9", "source": "GND"}], "variant_access_point": ["Miltitz (Leipzig)"], "authorized_access_point": "Leipzig-Miltitz"} 1 +2024-09-10 15:48:17.323919 2024-09-10 15:48:17.323922 ba2faa83-e039-4b42-b08b-ae1625822290 {"md5": "f8e957c50d425a7dd7fff12e91569fdb", "pid": "96577578X", "note": [{"label": ["Wohn-, Künstler- und Kneipenviertel an Westrand des Stadtzentrums angrenzend"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}], "identifier": "http://d-nb.info/gnd/4710588-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4710588-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)96577578X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4710588-4", "source": "GND"}], "variant_access_point": ["Innere Westvorstadt (Leipzig)", "Leipzig-Kolonnadenviertel", "Kolonnadenviertel (Leipzig)"], "authorized_access_point": "Leipzig- Innere Westvorstadt"} 1 +2024-09-10 15:48:17.385864 2024-09-10 15:48:17.385867 2e84f3fb-5eb2-40f1-9a3b-f04f5832e095 {"md5": "d19b4f9fc7de2e4b88d4f04f46c9dfec", "pid": "965775429", "note": [{"label": ["Stadtteil im Nordosten Leipzigs seit 1930"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Abtnaundorf"}], "identifier": "http://d-nb.info/gnd/4710572-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4710572-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)965775429", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4710572-0", "source": "GND"}], "variant_access_point": ["Abtnaundorf (Leipzig)"], "authorized_access_point": "Leipzig-Abtnaundorf"} 1 +2024-09-10 15:48:17.452055 2024-09-10 15:48:17.452058 1fdfc64a-24c1-4670-8938-2637d9d80780 {"md5": "422aacdec32e520f2a465a4050c46f7e", "pid": "965774910", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Wahren (Leipzig)"}], "identifier": "http://d-nb.info/gnd/4710554-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4710554-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)965774910", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4710554-9", "source": "GND"}], "variant_access_point": ["Wahren (Leipzig)"], "authorized_access_point": "Leipzig-Wahren"} 1 +2024-09-10 15:48:17.511497 2024-09-10 15:48:17.511501 200055cd-42f9-47c5-b284-5aad9594a64f {"md5": "cf4c427b64b0ed10e418db4f5f657a50", "pid": "965759059", "note": [{"label": ["Ortsteile von Leipzig 18.3.1992 administrativ zusammengelegt"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Leipzig-Neustadt"}], "identifier": "http://d-nb.info/gnd/4710355-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4710355-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)965759059", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4710355-3", "source": "GND"}], "variant_access_point": ["Neustadt-Neuschönefeld (Leipzig)"], "authorized_access_point": "Leipzig-Neustadt-Neuschönefeld"} 1 +2024-09-10 15:48:17.575407 2024-09-10 15:48:17.57541 3a647e02-a39d-418d-a872-779b25f1c20d {"md5": "18c4d13fbaa4735088bd9cf74c6438e5", "pid": "96575877X", "note": [{"label": ["Ortsteil seit 1890"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Volkmarsdorf"}], "identifier": "http://d-nb.info/gnd/4710342-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4710342-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)96575877X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4710342-5", "source": "GND"}], "variant_access_point": ["Volkmarsdorf (Leipzig)"], "authorized_access_point": "Leipzig-Volkmarsdorf"} 1 +2024-09-10 15:48:17.635866 2024-09-10 15:48:17.635869 ad1f55a0-209d-4e0c-9865-a2bcb3bb69bb {"md5": "76f4d71d20e3e33c866242c2064839bf", "pid": "96563860X", "note": [{"label": ["Gebiet zwischen Innerer Südvorstadt und Connewitz"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}], "identifier": "http://d-nb.info/gnd/4708270-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4708270-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)96563860X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4708270-7", "source": "GND"}], "variant_access_point": ["Äußere Südvorstadt (Leipzig)"], "authorized_access_point": "Leipzig- Äußere Südvorstadt"} 1 +2024-09-10 15:48:17.774042 2024-09-10 15:48:17.774046 a14f02d9-663a-430e-b313-308bf58db332 {"md5": "465be8f8dccc757f156fbfaeec653a25", "pid": "964462427", "note": [{"label": ["Ehemaliges Amt in der Region Süddänemark"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Region Midtjylland"}], "related": [{"authorized_access_point": "Amt Skanderborg"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)997977485", "source": "GND"}, {"type": "bf:Nbn", "value": "094419019", "source": "ZBW"}], "authorized_access_point": "Vejle (Amt)"}], "identifier": "http://d-nb.info/gnd/4685636-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4685636-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)964462427", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4685636-5", "source": "GND"}], "variant_access_point": ["Vejle (Amt)", "Vejle Amt", "Vejle Amtskommune"], "authorized_access_point": "Amt Vejle"} 1 +2024-09-10 15:48:17.837313 2024-09-10 15:48:17.837317 102a9e0f-354c-41a6-968b-dd43af833982 {"md5": "7553b57fcede490fc0bb8e72caa6c587", "pid": "96411822X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Anger-Crottendorf"}], "identifier": "http://d-nb.info/gnd/4679998-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4679998-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)96411822X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4679998-9", "source": "GND"}], "variant_access_point": ["Anger-Crottendorf (Leipzig)"], "authorized_access_point": "Leipzig-Anger-Crottendorf"} 1 +2024-09-10 15:48:17.899256 2024-09-10 15:48:17.899261 0ec635d3-bd4d-436b-b4fe-cdb71c861002 {"md5": "d5715df519e83a66a30307ba80d2fd49", "pid": "963982559", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Saudi-Arabien"}], "identifier": "http://d-nb.info/gnd/4677123-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4677123-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)963982559", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4677123-2", "source": "GND"}], "variant_access_point": ["Nordwestliches Saudi-Arabien"], "authorized_access_point": "Saudi-Arabien - Nordwest"} 1 +2024-09-10 15:48:17.974492 2024-09-10 15:48:17.974497 3299ac3f-5577-47d4-95ef-59509f8e0673 {"md5": "f5e72f30f800d7bdb8dd9e9e21569f1a", "pid": "963957635", "note": [{"label": ["Stadtteil von Aalen, bis 1972 selbständig, 1972 zu Wasseralfingen eingemeindet, 1975 mit diesem nach Aalen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Wasseralfingen-Hofen"}], "identifier": "http://d-nb.info/gnd/4676373-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4676373-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)963957635", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4676373-9", "source": "GND"}], "variant_access_point": ["Hofen (Aalen-Hofen)"], "authorized_access_point": "Aalen-Hofen"} 1 +2024-09-10 15:48:18.037485 2024-09-10 15:48:18.037489 3c8aea3d-3478-4555-882f-eaa0d0fb3784 {"md5": "77ddc04df162f2d62889b0ec157f1bc3", "pid": "963614673", "note": [{"label": ["Internet - http://www.ev-kg-breckerfeld.de/j-kg/?page_id=71"], "noteType": "dataSource"}, {"label": ["Im 14. Jh. entstandene Kirche in Breckerfeld (Ennepe-Ruhr-Kreis, Westfalen), einzige gotische Basilika Westfalens, ehem. kath. Pfarrkirche St. Jakobus"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Breckerfeld"}], "identifier": "http://d-nb.info/gnd/4668633-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4668633-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)963614673", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4668633-2", "source": "GND"}], "variant_access_point": ["Jakobus-Kirche (Breckerfeld)", "Evangelische Pfarrkirche (Breckerfeld)", "Evangelische Jakobus-Kirche (Breckerfeld)", "Ev. Kirche (Breckerfeld)"], "authorized_access_point": "Jakobus-Kirche Breckerfeld (Breckerfeld)"} 1 +2024-09-10 15:48:18.10008 2024-09-10 15:48:18.100085 b601315e-b88c-4a20-b863-912f59cd6b6d {"md5": "b44bbc0d5115dce00d5db715c7b3025a", "pid": "963462539", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Scheffau (Lindau, Bodensee)"}], "identifier": "http://d-nb.info/gnd/1246023-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1246023-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)963462539", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1246023-0", "source": "GND"}], "variant_access_point": ["Scheffau (Scheidegg)"], "authorized_access_point": "Scheidegg-Scheffau"} 1 +2024-09-10 15:48:18.165564 2024-09-10 15:48:18.165569 bac88766-e7a5-4292-8dc9-c200d9e424d3 {"md5": "b48eb1ffc8cbb970c758e9a5f61501ac", "pid": "963082132", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Köniz"}], "identifier": "http://d-nb.info/gnd/4659061-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4659061-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)963082132", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4659061-4", "source": "GND"}], "authorized_access_point": "Schloss Köniz (Köniz)"} 1 +2024-09-10 15:48:18.224403 2024-09-10 15:48:18.224407 5aff356b-abdf-43d5-9390-06ef3a59dca1 {"md5": "b61edcae609827c27e60c235b442d326", "pid": "962048879", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=161519644"], "noteType": "dataSource"}, {"label": ["liegt in den Homolje-Bergen nahe der Städte Jagodina und Despotovac"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Jagodina"}, {"authorized_access_point": "Despotovac"}], "identifier": "http://d-nb.info/gnd/4644341-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4644341-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)962048879", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4644341-1", "source": "GND"}], "variant_access_point": ["Manasiya", "Klosteranlage Manasija", "Klosteranlage Resava"], "authorized_access_point": "Manasija"} 1 +2024-09-10 15:48:18.289587 2024-09-10 15:48:18.289591 30640cff-ebea-47a1-acc0-0b4ddfe05e88 {"md5": "fcceb2d12ad310ca1fd89d2322b47f07", "pid": "961594519", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Plaußig"}], "identifier": "http://d-nb.info/gnd/10018865-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10018865-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)961594519", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)10018865-5", "source": "GND"}], "variant_access_point": ["Plaußig (Leipzig)"], "authorized_access_point": "Leipzig-Plaußig"} 1 +2024-09-10 15:48:18.363958 2024-09-10 15:48:18.363962 82e22670-d3e3-491a-bf2a-5f73e343f73d {"md5": "5da6fb4069c320ea4b2644cde9c2eede", "pid": "961594497", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Lindenthal_(Leipzig)&oldid=225715822"], "noteType": "dataSource"}, {"label": ["Ortsteil von Leipzig seit 1.1.1999"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Lindenthal (Leipzig)"}], "identifier": "http://d-nb.info/gnd/10018863-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10018863-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)961594497", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)10018863-1", "source": "GND"}], "variant_access_point": ["Lindenthal (Leipzig)"], "authorized_access_point": "Leipzig-Lindenthal"} 1 +2024-09-10 15:48:18.431047 2024-09-10 15:48:18.431062 38c42dac-dfa6-486b-a641-03a82d14268c {"md5": "9e3fff037b3ea4cc3e0a3d2483ef4a12", "pid": "961594454", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Wiederitzsch"}], "identifier": "http://d-nb.info/gnd/10018856-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10018856-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)961594454", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)10018856-4", "source": "GND"}], "variant_access_point": ["Wiederitzsch (Leipzig)"], "authorized_access_point": "Leipzig-Wiederitzsch"} 1 +2024-09-10 15:48:18.501557 2024-09-10 15:48:18.501561 fe873f78-977c-4537-a33c-8985dc403557 {"md5": "cd0811a3182bb81c55c80a1a894d9cc7", "pid": "961395923", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Zawid%C3%B3w"], "noteType": "dataSource"}, {"label": ["Seidenberg liegt seit 1945 im polnischen Teil der Oberlausitz"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4633601-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4633601-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)961395923", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4633601-1", "source": "GND"}], "variant_access_point": ["Seidenberg", "Seidenberg O.-L", "Zawidow"], "authorized_access_point": "Zawidów"} 1 +2024-09-10 15:48:18.565364 2024-09-10 15:48:18.565369 205cd9e3-60b8-4733-84e4-cd5b9ede0af0 {"md5": "fbd602a726dceb21fd2aa12f9c9780a0", "pid": "960863664", "note": [{"label": ["Ortsteil seit 1.7.1997"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Seehausen (Leipzig)"}], "identifier": "http://d-nb.info/gnd/4624158-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4624158-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)960863664", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4624158-9", "source": "GND"}], "variant_access_point": ["Seehausen (Leipzig)"], "authorized_access_point": "Leipzig-Seehausen"} 1 +2024-09-10 15:48:18.636102 2024-09-10 15:48:18.636106 4bfb6931-3087-4c03-9557-170b4e51047b {"md5": "55507b1861e7979fe1c03d6cdbaba203", "pid": "960833919", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}], "identifier": "http://d-nb.info/gnd/4623386-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4623386-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)960833919", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4623386-6", "source": "GND"}], "variant_access_point": ["Marienbrunn (Leipzig)"], "authorized_access_point": "Leipzig-Marienbrunn"} 1 +2024-09-10 15:48:18.717456 2024-09-10 15:48:18.71746 1959cb4c-c11d-4e7d-bd9c-d92daf78f904 {"md5": "8070af58bfbc15bd1856d5ab0592c4f2", "pid": "960396268", "note": [{"label": ["Ballungsraum Leipzig-Halle(Saale)-Bitterfeld, ehemals \\"Chemiedreieck\\" in Mittelsachsen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4617642-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4617642-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)960396268", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4617642-1", "source": "GND"}], "variant_access_point": ["Halle-Leipzig-Bitterfeld-Gebiet", "Leipzig-Halle-Bitterfeld-Gebiet", "Bitterfeld-Leipzig-Halle-Gebiet", "Chemiedreieck"], "authorized_access_point": "Leipzig-Halle-Bitterfeld - Region"} 1 +2024-09-10 15:48:18.791439 2024-09-10 15:48:18.791442 ca3a39d4-fec7-45ed-a16c-29f013361fa7 {"md5": "a3ea8392e8a6c1864df473db5a27e091", "pid": "960085726", "note": [{"label": ["Stadtteil von Leipzig im Stadtbezirk Alt-West seit 1.1.2000, 1.1.1994-31.12.1999 Ortsteil von Bienitz, früher Ort im Kreis Leipzig"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Bienitz-Burghausen"}], "identifier": "http://d-nb.info/gnd/4611475-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4611475-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)960085726", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4611475-0", "source": "GND"}], "variant_access_point": ["Burghausen (Leipzig)"], "authorized_access_point": "Leipzig-Burghausen"} 1 +2024-09-10 15:48:18.853077 2024-09-10 15:48:18.85308 c3059a65-d711-4615-9c92-df5f00b2df0f {"md5": "1d8683b72eb1bf39215c3bcb3bbe878e", "pid": "959934464", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Ostentrop&oldid=243213300"], "noteType": "dataSource"}, {"label": ["Seit 01.07.1969 Ortsteil von Finnentrop (Kreis Olpe), vorher selbstständig"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Finnentrop"}, {"authorized_access_point": "Ostentrop"}], "identifier": "http://d-nb.info/gnd/4608675-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4608675-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)959934464", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4608675-4", "source": "GND"}], "authorized_access_point": "Finnentrop-Ostentrop"} 1 +2024-09-10 15:48:18.916915 2024-09-10 15:48:18.91692 bbe7e9f8-8f94-4aa6-99df-9e64227c65b3 {"md5": "3f714ee241a3641566b2bf0e6dbeaae8", "pid": "959918612", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4608170-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4608170-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)959918612", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4608170-7", "source": "GND"}], "variant_access_point": ["Gouvernement Kowno", "Gouvernement Kovno", "Gouvernement Kaunas"], "authorized_access_point": "Kaunas (Gouvernement)"} 1 +2024-09-10 15:48:18.982097 2024-09-10 15:48:18.982101 b62b72c6-53bf-4b95-8195-b51078df4676 {"md5": "9926768b921e2715ae150d7d7d02070b", "pid": "959788719", "note": [{"label": ["Ortsteile seit 1995"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Plaußig"}, {"authorized_access_point": "Portitz"}], "identifier": "http://d-nb.info/gnd/4605550-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4605550-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)959788719", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4605550-2", "source": "GND"}], "variant_access_point": ["Plaußig-Portitz (Leipzig)"], "authorized_access_point": "Leipzig-Plaußig-Portitz"} 1 +2024-09-10 15:48:19.066045 2024-09-10 15:48:19.066055 18430f56-d346-4adc-8692-9658ca61880c {"md5": "c9cab7704aaa2670a3d95a115f7cb61d", "pid": "959747575", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Monroe_(Wisconsin)&oldid=231105462"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/10007977-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10007977-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)959747575", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)10007977-5", "source": "GND"}], "authorized_access_point": "Monroe, Wis."} 1 +2024-09-10 15:48:19.149539 2024-09-10 15:48:19.149544 ebe8fd91-bbf6-4830-bce2-4747b2f74822 {"md5": "adfd78d080a60ad14fcb8cced9feabe7", "pid": "959369872", "note": [{"label": ["seit 1999 große Teile der ehem. W. Grünberg u. Landsberg, sowie einen kleinen Teil der ehem. W. Lissa", "Ansetzung abweichend von § 441,1"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)992104130", "source": "GND"}, {"type": "bf:Nbn", "value": "094409730", "source": "ZBW"}], "authorized_access_point": "Lubuskie (Woiwodschaft)"}], "identifier": "http://d-nb.info/gnd/4596737-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4596737-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)959369872", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4596737-4", "source": "GND"}], "variant_access_point": ["Województwo Lubuskie", "Lebus (Woiwodschaft)"], "authorized_access_point": "Woiwodschaft Lebus"} 1 +2024-09-10 15:48:19.228946 2024-09-10 15:48:19.22895 dba33e85-64d4-43eb-8866-ce935dc71eb0 {"md5": "3453afd5790cde7ebb9a0ed8f59dc544", "pid": "958777055", "note": [{"label": ["Ehemalige Gemeinde und heute politisch unselbstständige Ortschaft in der Provinz Groningen. Fusionierte zum 1. Januar 2019 mit De Marne, Winsum und Eemsmond zur neuen Gemeinde \\"Het Hogeland\\""], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Het Hogeland"}], "identifier": "http://d-nb.info/gnd/4585822-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4585822-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)958777055", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4585822-6", "source": "GND"}], "variant_access_point": ["Gemeinde Bedum", "Gemeente Bedum", "Het Hogeland- Bedum"], "authorized_access_point": "Bedum"} 1 +2024-09-10 15:48:19.291836 2024-09-10 15:48:19.291841 33119bb5-855a-4f67-b0ec-fefb648d84b8 {"md5": "3045884bb29ef102d77cb0d0a40301c3", "pid": "958014639", "note": [{"label": ["H hist. Stätten; Internet - http://www.schwante.de/schloesser.htm"], "noteType": "dataSource"}, {"label": ["Erbaut auf einer mittelalterlichen Burganlage zwischen 1741 und 1743."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Schwante"}], "identifier": "http://d-nb.info/gnd/4570933-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4570933-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)958014639", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4570933-6", "source": "GND"}], "authorized_access_point": "Schloss Schwante"} 1 +2024-09-10 15:48:19.358795 2024-09-10 15:48:19.358799 413c0d11-cb8c-40f6-8b9f-4a1568102c76 {"md5": "7322ca1a41b616d182205c91473e7d82", "pid": "957753551", "note": [{"label": ["Insel der Komoren"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Komoren (Archipel)"}], "identifier": "http://d-nb.info/gnd/4566491-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4566491-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)957753551", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4566491-2", "source": "GND"}], "variant_access_point": ["Nwami", "Ndzouani"], "authorized_access_point": "Anjouan (Insel)"} 1 +2024-09-10 15:48:19.42072 2024-09-10 15:48:19.420724 f93f0d5b-777e-4479-9810-8b2d2938c7c0 {"md5": "0e7de845bcca32b8de35190ae640547d", "pid": "957586973", "note": [{"label": ["Legendäre versunkene Stadt in d. Rub al-Khali vermutet, in Oman ausgegraben"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4562198-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4562198-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)957586973", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4562198-6", "source": "GND"}], "variant_access_point": ["Ubar"], "authorized_access_point": "Wabar"} 1 +2024-09-10 15:48:19.487387 2024-09-10 15:48:19.487389 ddb77ce9-6110-4076-8280-08ce45d37010 {"md5": "ae20c8fef875c66c9d1f621b99abb53e", "pid": "957565445", "note": [{"label": ["Stadtteil im Nordosten Leipzigs seit 1915"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Mockau"}], "identifier": "http://d-nb.info/gnd/4561624-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4561624-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)957565445", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4561624-3", "source": "GND"}], "variant_access_point": ["Mockau (Leipzig)"], "authorized_access_point": "Leipzig-Mockau"} 1 +2024-09-10 15:48:19.557328 2024-09-10 15:48:19.557332 01660767-75da-49d5-8da2-d27b1d28f0b3 {"md5": "aa6429a30076d24d68d9c78c5a1d4ed2", "pid": "957211430", "note": [{"label": ["Stadt im Kreis Spree-Neiße, Brandenburg"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4555925-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4555925-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)957211430", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4555925-9", "source": "GND"}], "variant_access_point": ["Drjowk", "Amtsfreie Gemeinde Stadt Drebkau", "Bźezamtowa Gmejna Město Drjowk", "Drepkau"], "authorized_access_point": "Drebkau"} 1 +2024-09-10 15:48:19.618324 2024-09-10 15:48:19.618329 755c78e7-b24f-4d59-8827-707ccf4af6a2 {"md5": "94267b9d4d33ff2157466fa82414496d", "pid": "956443877", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Engelsdorf (Leipzig)"}], "identifier": "http://d-nb.info/gnd/5312270-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5312270-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)956443877", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)5312270-7", "source": "GND"}], "variant_access_point": ["Engelsdorf (Leipzig)"], "authorized_access_point": "Leipzig-Engelsdorf"} 1 +2024-09-10 15:48:19.682857 2024-09-10 15:48:19.682861 dadcc026-a610-4e11-929c-a8eada2e7e12 {"md5": "d83a74447b808ed1f894a80f5d98f098", "pid": "956443842", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Baalsdorf&oldid=193358956"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Engelsdorf-Baalsdorf"}], "identifier": "http://d-nb.info/gnd/5312267-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5312267-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)956443842", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)5312267-7", "source": "GND"}], "variant_access_point": ["Baalsdorf (Leipzig)"], "authorized_access_point": "Leipzig-Baalsdorf"} 1 +2024-09-10 15:48:19.745986 2024-09-10 15:48:19.74599 e9a28838-0dfa-420b-bb78-aad7c09f00cc {"md5": "dd356fc7144b91f0e8c05845806b4956", "pid": "956443613", "note": [{"label": ["Stadtteil von Leipzig seit 1.1.1999"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Liebertwolkwitz"}], "identifier": "http://d-nb.info/gnd/5312244-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5312244-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)956443613", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)5312244-6", "source": "GND"}], "variant_access_point": ["Liebertwolkwitz (Leipzig)"], "authorized_access_point": "Leipzig-Liebertwolkwitz"} 1 +2024-09-10 15:48:19.807595 2024-09-10 15:48:19.807598 72f3c833-75ef-43b1-aea6-abd2346a13ce {"md5": "8fccf470045870d7adf065974cb5198a", "pid": "955960134", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}], "identifier": "http://d-nb.info/gnd/2175760-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2175760-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)955960134", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)2175760-4", "source": "GND"}], "variant_access_point": ["Mockau-Ost"], "authorized_access_point": "Leipzig-Mockau-Ost"} 1 +2024-09-10 15:48:19.870048 2024-09-10 15:48:19.870051 e494731e-655e-4aec-96eb-35dc8f814684 {"md5": "9c2456d513b33a0f00e1a141757fe3ce", "pid": "955820049", "note": [{"label": ["Homepage - https://www.deiningen.de/", "Wikipedia - https://de.wikipedia.org/wiki/Deiningen"], "noteType": "dataSource"}, {"label": ["Ort im Landkreis Donau-Ries, Schwaben, seit Urnenfelderkultur (1300-800 v.Chr.) besiedelt, 760 urkundl. erwähnt"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4531247-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4531247-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)955820049", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4531247-3", "source": "GND"}], "authorized_access_point": "Deiningen"} 1 +2024-09-10 15:48:19.932288 2024-09-10 15:48:19.932293 3e9eb14b-3c51-4522-b357-9354d11d9cc7 {"md5": "f8cfb8f8222f7b9fc9fca2aff3f69dc4", "pid": "955573246", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Engelsdorf-Althen"}], "identifier": "http://d-nb.info/gnd/2174812-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2174812-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)955573246", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)2174812-3", "source": "GND"}], "variant_access_point": ["Althen (Leipzig)"], "authorized_access_point": "Leipzig-Althen"} 1 +2024-09-10 15:48:20.007652 2024-09-10 15:48:20.007658 6214fe16-2595-4bad-8029-069a39014358 {"md5": "eddf1c5f2c0ce14988b95ae88a467597", "pid": "955498058", "note": [{"label": ["Stadtteil von Leipzig seit 1890"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Thonberg (Leipzig)"}], "identifier": "http://d-nb.info/gnd/4527974-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4527974-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)955498058", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4527974-3", "source": "GND"}], "variant_access_point": ["Thonberg (Leipzig)"], "authorized_access_point": "Leipzig-Thonberg"} 1 +2024-09-10 15:48:20.06975 2024-09-10 15:48:20.069753 3995db6a-d055-4784-ae0e-c82caea61ed9 {"md5": "f27ff59fcf89f80b3c5ccef074c962c8", "pid": "955495768", "note": [{"label": ["Homepage - http://www.rabenstein.gv.at"], "noteType": "dataSource"}, {"label": ["Marktgemeinde im Bezirk Sankt Pölten-Land, Niederösterreich"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4527754-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4527754-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)955495768", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4527754-0", "source": "GND"}], "variant_access_point": ["Rabenstein (Pielach)", "Marktgemeinde Rabenstein an der Pielach"], "authorized_access_point": "Rabenstein an der Pielach"} 1 +2024-09-10 15:48:20.137232 2024-09-10 15:48:20.137235 4b1af44d-4354-4efa-8906-b88f1591fdaf {"md5": "d921b1284bacd10d9dffd8f63b3c8b34", "pid": "955090547", "note": [{"label": ["Ortsteil von Grünberg im Landkreis Gießen, Hessen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Grünberg (Landkreis Gießen)"}, {"authorized_access_point": "Lehnheim"}], "identifier": "http://d-nb.info/gnd/3035028-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3035028-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)955090547", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)3035028-1", "source": "GND"}], "variant_access_point": ["Grünberg (Landkreis Gießen-Lehnheim)", "Lehnheim (Grünberg-Lehnheim)"], "authorized_access_point": "Grünberg-Lehnheim"} 1 +2024-09-10 15:48:20.206748 2024-09-10 15:48:20.206752 21f7f679-47a5-4b70-be1c-adb16282154b {"md5": "8aee686ff4f589a83272de692d43e2ad", "pid": "954472683", "note": [{"label": ["Homepage - http://de.wikipedia.org/wiki/Pommritz"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Pommritz"}], "identifier": "http://d-nb.info/gnd/5289232-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5289232-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)954472683", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)5289232-3", "source": "GND"}], "variant_access_point": ["Pommritz (Hochkirch-Pommritz)", "Bukecy-Pomorcy"], "authorized_access_point": "Hochkirch-Pommritz"} 1 +2024-09-10 15:48:20.279989 2024-09-10 15:48:20.279993 d463cf53-1808-42b2-991a-587c83911e6a {"md5": "67d76ce4ac1e21bfc2f0cafeb2ef98bb", "pid": "954071832", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}], "identifier": "http://d-nb.info/gnd/4508419-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4508419-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)954071832", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4508419-1", "source": "GND"}], "authorized_access_point": "Leipzig-West"} 1 +2024-09-10 15:48:20.360664 2024-09-10 15:48:20.360668 e35b7e96-aae8-4c48-b2e1-87e2a33c5daf {"md5": "0b50ed55290d7e628bad3af6c0bf1fd5", "pid": "954064593", "note": [{"label": ["Politische Gemeinde im Kanton Neuenburg"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Kanton Neuenburg"}], "identifier": "http://d-nb.info/gnd/4508222-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4508222-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)954064593", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4508222-4", "source": "GND"}], "authorized_access_point": "Cressier (Kanton Neuenburg)"} 1 +2024-09-10 15:48:20.438649 2024-09-10 15:48:20.438652 0de240a2-e027-4d6d-a353-f9472f32630b {"md5": "baa605ce08c29a0123c6c29f8a17bde3", "pid": "953168697", "note": [{"label": ["Saalkirche 1848 nach Plänen von L. Persius erbaut, ausgeführt von Otto Baensch"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Heringsdorf (Seebad)"}], "identifier": "http://d-nb.info/gnd/4492872-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4492872-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)953168697", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4492872-5", "source": "GND"}], "variant_access_point": ["Evangelische Kirche im Walde (Heringsdorf, Seebad)"], "authorized_access_point": "Kirche im Walde (Heringsdorf, Seebad)"} 1 +2024-09-10 15:48:20.501635 2024-09-10 15:48:20.501638 19f687a3-5444-419b-9cab-cc4354e87448 {"md5": "68719d54bf7858ed00d3c2230c333293", "pid": "953105024", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Reudnitz (Leipzig)"}], "identifier": "http://d-nb.info/gnd/4491767-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4491767-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)953105024", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4491767-3", "source": "GND"}], "variant_access_point": ["Reudnitz (Leipzig)"], "authorized_access_point": "Leipzig-Reudnitz"} 1 +2024-09-10 15:48:20.564739 2024-09-10 15:48:20.564743 672e0ceb-04d8-4b31-9ed1-95a3517ab86b {"md5": "7adce53f0f8e8c58a9c91c7ebdb392b4", "pid": "952110512", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=228930289"], "noteType": "dataSource"}, {"label": ["Fyns Amt war eine dänische Amtskommune."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Region Syddanmark"}], "related": [{"authorized_access_point": "Amt Odense"}, {"authorized_access_point": "Amt Svendborg"}], "identifier": "http://d-nb.info/gnd/4477066-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4477066-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)952110512", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4477066-2", "source": "GND"}], "variant_access_point": ["Amt Fünen", "Fyns Amt", "Fyns (Amt)", "Fyn Amtskommune", "Fyns Amtskommune", "Fünen (Amt)"], "authorized_access_point": "Amt Fyn"} 1 +2024-09-10 15:48:20.628592 2024-09-10 15:48:20.628595 31236a58-e9d3-4bec-81b3-94d20817bc19 {"md5": "fc0d268d57410485c4f312b45f8fb757", "pid": "951677268", "note": [{"label": ["Stadtteil von Leipzig seit 1930"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Thekla"}], "identifier": "http://d-nb.info/gnd/4473338-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4473338-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)951677268", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4473338-0", "source": "GND"}], "variant_access_point": ["Thekla (Leipzig)"], "authorized_access_point": "Leipzig-Thekla"} 1 +2024-09-10 15:48:20.692294 2024-09-10 15:48:20.692297 d87349b1-63cf-4b25-9489-c1711d2067be {"md5": "35764173057e81b496d60bf50101be03", "pid": "951510282", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Saudi-Arabien"}], "identifier": "http://d-nb.info/gnd/4470221-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4470221-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)951510282", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4470221-8", "source": "GND"}], "variant_access_point": ["Südwestliches Saudi-Arabien"], "authorized_access_point": "Saudi-Arabien - Südwest"} 1 +2024-09-10 15:48:20.759054 2024-09-10 15:48:20.759059 80fc6b92-7111-4583-a2a5-5ba86df67fb7 {"md5": "e3be0dc272e51d813cf3a62c43da87d6", "pid": "951510274", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Saudi-Arabien"}], "identifier": "http://d-nb.info/gnd/4470220-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4470220-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)951510274", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4470220-6", "source": "GND"}], "variant_access_point": ["Westliches Saudi-Arabien"], "authorized_access_point": "Saudi-Arabien - West"} 1 +2024-09-10 15:48:20.821075 2024-09-10 15:48:20.821078 ba86eb1d-1fc6-4d26-af2c-ea3cce88b330 {"md5": "a0792a80662f9f621359af892f2f784c", "pid": "951510258", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Saudi-Arabien"}], "identifier": "http://d-nb.info/gnd/4470217-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4470217-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)951510258", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4470217-6", "source": "GND"}], "variant_access_point": ["Südliches Saudi-Arabien"], "authorized_access_point": "Saudi-Arabien - Süd"} 1 +2024-09-10 15:48:20.880324 2024-09-10 15:48:20.880331 77720fbe-0dcd-4789-afaf-6a123927bfdd {"md5": "e26458c43dc9f8bd677122965323fd1d", "pid": "95135793X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Altmühltal"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)992670160", "source": "GND"}, {"type": "bf:Nbn", "value": "094412634", "source": "ZBW"}], "authorized_access_point": "Oberes Altmühltal"}], "identifier": "http://d-nb.info/gnd/4467681-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4467681-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)95135793X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4467681-5", "source": "GND"}], "variant_access_point": ["Oberes Altmühltal", "Obere Altmühl"], "authorized_access_point": "Obere-Altmühl-Tal"} 1 +2024-09-10 15:48:20.943849 2024-09-10 15:48:20.943852 e053b47d-0632-41fe-bd21-76d26a89dc61 {"md5": "4f07b00ef709cf9f6f6d47186fa93746", "pid": "950649155", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4457908-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4457908-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950649155", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4457908-1", "source": "GND"}], "variant_access_point": ["Campos (Jordão)"], "authorized_access_point": "Campos do Jordão"} 1 +2024-09-10 15:48:21.006724 2024-09-10 15:48:21.006727 2ea2abea-48c9-469f-838f-099c1a08aa21 {"md5": "52875ae6872fb8e34461d322bebd7b27", "pid": "950556149", "note": [{"label": ["Gebiet um Altes Messegelände und Bayrischen Bahnhof"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}], "identifier": "http://d-nb.info/gnd/4456228-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4456228-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950556149", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4456228-7", "source": "GND"}], "variant_access_point": ["Äußere Südostvorstadt (Leipzig)"], "authorized_access_point": "Leipzig- Äußere Südostvorstadt"} 1 +2024-09-10 15:48:21.080143 2024-09-10 15:48:21.080147 5d4e11aa-23a0-4d8c-b849-ff89d9a4c271 {"md5": "8f88c04977a1887f7c4c277b003fec3a", "pid": "950356190", "note": [{"label": ["Ortsteil von Leipzig seit 1930"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Schönau (Leipzig)"}], "identifier": "http://d-nb.info/gnd/4452671-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4452671-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950356190", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4452671-4", "source": "GND"}], "variant_access_point": ["Schönau (Leipzig)"], "authorized_access_point": "Leipzig-Schönau"} 1 +2024-09-10 15:48:21.143723 2024-09-10 15:48:21.143727 1b5c0133-7f78-49c5-be98-c8d7927d3f95 {"md5": "fefe165e28281ce0982a09666fd8b01b", "pid": "950339490", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Lausen_(Leipzig)&oldid=206629090"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Lausen (Leipzig)"}], "identifier": "http://d-nb.info/gnd/4452519-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4452519-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950339490", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4452519-9", "source": "GND"}], "variant_access_point": ["Lausen (Leipzig)"], "authorized_access_point": "Leipzig-Lausen"} 1 +2024-09-10 15:48:21.207876 2024-09-10 15:48:21.207881 b3312ba5-8726-451c-baef-9f529b6f843b {"md5": "b001ef289283a652c5c938e022d88e9c", "pid": "950339407", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Großzschocher"}, {"authorized_access_point": "Großzschocher-Windorf"}], "identifier": "http://d-nb.info/gnd/4452517-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4452517-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950339407", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4452517-5", "source": "GND"}], "variant_access_point": ["Großzschocher (Leipzig)"], "authorized_access_point": "Leipzig-Großzschocher"} 1 +2024-09-10 15:48:21.269898 2024-09-10 15:48:21.269901 b02b972a-b691-45a9-a0a1-94d6e479adc5 {"md5": "ebe39659316c99ea420438c681c32703", "pid": "950338338", "note": [{"label": ["Ortsteil von Leipzig seit 1922"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Windorf "}, {"authorized_access_point": "Großzschocher-Windorf"}], "identifier": "http://d-nb.info/gnd/4452486-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4452486-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950338338", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4452486-9", "source": "GND"}], "variant_access_point": ["Windorf (Leipzig)"], "authorized_access_point": "Leipzig-Windorf"} 1 +2024-09-10 15:48:21.342421 2024-09-10 15:48:21.342426 bf612884-1665-4245-a1aa-a36bf58ba9c1 {"md5": "b55b72204c9c0330d98518a5a9c89940", "pid": "95033829X", "note": [{"label": ["Ortsteil von Leipzig seit 1930"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Knautkleeberg"}], "identifier": "http://d-nb.info/gnd/4452484-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4452484-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)95033829X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4452484-5", "source": "GND"}], "variant_access_point": ["Knautkleeberg (Leipzig)"], "authorized_access_point": "Leipzig-Knautkleeberg"} 1 +2024-09-10 15:48:21.402474 2024-09-10 15:48:21.402477 b7e3c31a-44be-4b4d-9eb5-09a188d4f401 {"md5": "ce9d06d67fda5650c5947175c10bdc57", "pid": "950338230", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Knauthain"}], "identifier": "http://d-nb.info/gnd/4452482-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4452482-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950338230", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4452482-1", "source": "GND"}], "variant_access_point": ["Knauthain (Leipzig)"], "authorized_access_point": "Leipzig-Knauthain"} 1 +2024-09-10 15:48:21.477614 2024-09-10 15:48:21.477618 a79e0f18-2298-419b-9239-1c9c3684e66f {"md5": "385218ba3aab4e982047a90cbb246e55", "pid": "950338184", "note": [{"label": ["Ortsteil von Leipzig seit 1910"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Meusdorf (Leipzig)"}], "identifier": "http://d-nb.info/gnd/4452479-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4452479-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950338184", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4452479-1", "source": "GND"}], "variant_access_point": ["Meusdorf (Leipzig)"], "authorized_access_point": "Leipzig-Meusdorf"} 1 +2024-09-10 15:48:21.54077 2024-09-10 15:48:21.540773 5f787c88-67ed-444c-a3f2-96687c72470b {"md5": "f18d9daaa2cd9e4030551f228ad1bbc3", "pid": "950332429", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Schönefeld (Leipzig)"}], "identifier": "http://d-nb.info/gnd/4452359-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4452359-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950332429", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4452359-2", "source": "GND"}], "variant_access_point": ["Schönefeld (Leipzig)"], "authorized_access_point": "Leipzig-Schönefeld"} 1 +2024-09-10 15:48:21.600449 2024-09-10 15:48:21.600452 41a8a77a-cbe1-4ee2-9caf-da063beb7b17 {"md5": "eb64b9c7ec0d8331d6d88a9409893106", "pid": "950332011", "note": [{"label": ["Ortsteil von Leipzig seit 1905"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Dösen"}], "identifier": "http://d-nb.info/gnd/4452347-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4452347-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950332011", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4452347-6", "source": "GND"}], "variant_access_point": ["Dösen (Leipzig)"], "authorized_access_point": "Leipzig-Dösen"} 1 +2024-09-10 15:48:21.654925 2024-09-10 15:48:21.654927 caab7db7-881c-4150-9b41-c32d4223bc13 {"md5": "8bff57ad10c19e8e0f5524275d9cf9dc", "pid": "950331821", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Probstheida"}], "identifier": "http://d-nb.info/gnd/4452343-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4452343-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950331821", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4452343-9", "source": "GND"}], "variant_access_point": ["Probstheida (Leipzig)"], "authorized_access_point": "Leipzig-Probstheida"} 1 +2024-09-10 15:48:21.717645 2024-09-10 15:48:21.71765 49da09d7-83d7-4135-b715-4bfc4829b323 {"md5": "4445b44b31dd42ccaf8bf8335a804ed4", "pid": "950315354", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Stötteritz"}], "identifier": "http://d-nb.info/gnd/4452197-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4452197-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950315354", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4452197-2", "source": "GND"}], "variant_access_point": ["Stötteritz (Leipzig)"], "authorized_access_point": "Leipzig-Stötteritz"} 1 +2024-09-10 15:48:21.779842 2024-09-10 15:48:21.779846 285d3eb4-f8a6-479d-84fb-f10414bc7168 {"md5": "550cf51ff2b008e3116a816e217473f3", "pid": "95020109X", "note": [{"label": ["Ortsteil von Leipzig"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Schleußig"}], "identifier": "http://d-nb.info/gnd/4450192-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4450192-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)95020109X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4450192-4", "source": "GND"}], "variant_access_point": ["Schleußig (Leipzig)", "Leipzig-Schleussig"], "authorized_access_point": "Leipzig-Schleußig"} 1 +2024-09-10 15:48:21.841238 2024-09-10 15:48:21.841241 d876522f-2dce-43de-a788-61c2d1ed02f7 {"md5": "3283e391acc6eda22043e5b7919f2933", "pid": "950199850", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Kleinzschocher"}], "identifier": "http://d-nb.info/gnd/4450126-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4450126-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950199850", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4450126-2", "source": "GND"}], "variant_access_point": ["Kleinzschocher (Leipzig)", "Leipzig-Kl.-Zschocher", "Leipzig-Zschocher"], "authorized_access_point": "Leipzig-Kleinzschocher"} 1 +2024-09-10 15:48:21.916224 2024-09-10 15:48:21.916228 e6be9f1c-1041-48e1-a233-dee1d23f7a94 {"md5": "06cb5216febe965ae5169208591605ec", "pid": "950199214", "note": [{"label": ["Evangelische Kirche im ehemaligen Konzentrationslager, 1967 erbaut"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Dachau"}], "identifier": "http://d-nb.info/gnd/4450115-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4450115-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950199214", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4450115-8", "source": "GND"}], "authorized_access_point": "Versöhnungskirche (Dachau)"} 1 +2024-09-10 15:48:23.241056 2024-09-10 15:48:23.241061 00beeae0-bc7e-4feb-8e63-d250e0bbda01 {"md5": "7cf57390a1ff587f71a1fbdaf2a15584", "pid": "947454802", "note": [{"label": ["Region in Saudi-Arabien"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4409005-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4409005-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)947454802", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4409005-5", "source": "GND"}], "variant_access_point": ["Yamāma", "Jamama"], "authorized_access_point": "Yamāmah"} 1 +2024-09-10 15:48:21.978612 2024-09-10 15:48:21.978616 4ae2c2fb-8f49-4ffe-b944-24f540a0c997 {"md5": "0b5b01c20371e532e28abf9f0fdeca17", "pid": "950168637", "note": [{"label": ["Wikipedia - https://ru.wikipedia.org/w/index.php?oldid=138690191"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4449423-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4449423-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950168637", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4449423-3", "source": "GND"}], "variant_access_point": ["Pyatigorsk", "Pjatigorsk (Stavropolkreis)", "Пятигорск (Ставропольский край)"], "authorized_access_point": "Pjatigorsk"} 1 +2024-09-10 15:48:22.041718 2024-09-10 15:48:22.041722 4e14d028-e715-4d26-9613-fd203e7a625c {"md5": "5f839e3acae75bf19c65f625e967317a", "pid": "949740861", "note": [{"label": ["Homepage - http://www.stuenz.de/?path=content&contentid=10"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Leipzig-Sellerhausen"}, {"authorized_access_point": "Leipzig-Stünz"}], "identifier": "http://d-nb.info/gnd/4442450-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4442450-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)949740861", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4442450-4", "source": "GND"}], "variant_access_point": ["Sellerhausen-Stünz (Leipzig)"], "authorized_access_point": "Leipzig-Sellerhausen-Stünz"} 1 +2024-09-10 15:48:22.107322 2024-09-10 15:48:22.107325 00c316dd-c6ea-4da5-a06e-f94a0f65036d {"md5": "e0edf9d821c27aefa06fd2c84dac5e7c", "pid": "949647314", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Egloffstein"}, {"authorized_access_point": "Egloffstein-Bieberbach"}], "identifier": "http://d-nb.info/gnd/4440857-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4440857-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)949647314", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4440857-2", "source": "GND"}], "authorized_access_point": "Bieberbach (Egloffstein)"} 1 +2024-09-10 15:48:22.168153 2024-09-10 15:48:22.168168 c66db095-9188-443a-9f4a-b32d8064e09e {"md5": "99812f10ee4b84f365ce791daee3d7db", "pid": "949641804", "note": [{"label": ["Kleinstadt im Lkr. Zwickau"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Landkreis Zwickau"}], "identifier": "http://d-nb.info/gnd/4440677-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4440677-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)949641804", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4440677-0", "source": "GND"}], "variant_access_point": ["Hartenstein (Zwickauer Land)", "Stadt Hartenstein", "Hartenstein", "Hartenstein bei Zwickau"], "authorized_access_point": "Hartenstein (Landkreis Zwickau)"} 1 +2024-09-10 15:48:22.232143 2024-09-10 15:48:22.232146 da782993-6c43-4088-86d7-ef583bcb6923 {"md5": "8466c10d7cb6e117f20539dfa5b64f56", "pid": "94963218X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Rub al-Khali"}], "identifier": "http://d-nb.info/gnd/4440419-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4440419-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)94963218X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4440419-0", "source": "GND"}], "variant_access_point": ["Südliche Rub al-Khali"], "authorized_access_point": "Rub al-Khali - Süd"} 1 +2024-09-10 15:48:22.311227 2024-09-10 15:48:22.311231 ae6b7699-827d-41dd-b941-480d4480ae40 {"md5": "2df5aae81426b1a841ec6ee59e8461ee", "pid": "949632163", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Rub al-Khali"}], "identifier": "http://d-nb.info/gnd/4440418-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4440418-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)949632163", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4440418-9", "source": "GND"}], "variant_access_point": ["Nordöstliche Rub al-Khali"], "authorized_access_point": "Rub al-Khali - Nordost"} 1 +2024-09-10 15:48:22.413301 2024-09-10 15:48:22.413305 32f9436f-d84e-43e2-90aa-13a02870ec4a {"md5": "ad8a25de656f37294dd18ef926c5f9fc", "pid": "949632147", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Rub al-Khali"}], "identifier": "http://d-nb.info/gnd/4440417-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4440417-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)949632147", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4440417-7", "source": "GND"}], "variant_access_point": ["Östliche Rub al-Khali"], "authorized_access_point": "Rub al-Khali - Ost"} 1 +2024-09-10 15:48:22.469257 2024-09-10 15:48:22.46926 5e8263f0-72f7-4101-a8b8-3447ae9f3a78 {"md5": "b689bb00042f5f4eeef2bbdac793fece", "pid": "949632120", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Rub al-Khali"}], "identifier": "http://d-nb.info/gnd/4440416-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4440416-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)949632120", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4440416-5", "source": "GND"}], "variant_access_point": ["Südöstliche Rub al-Khali"], "authorized_access_point": "Rub al-Khali - Südost"} 1 +2024-09-10 15:48:22.533993 2024-09-10 15:48:22.533997 461b0e80-230e-4721-b19e-6a95eeef3986 {"md5": "a968640f88b6feb8d2d76941d678bc36", "pid": "949632104", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Rub al-Khali"}], "identifier": "http://d-nb.info/gnd/4440415-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4440415-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)949632104", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4440415-3", "source": "GND"}], "variant_access_point": ["Westliche Rub al-Khali"], "authorized_access_point": "Rub al-Khali - West"} 1 +2024-09-10 15:48:22.604308 2024-09-10 15:48:22.604311 f2b4094d-d53c-4b09-87a2-b5e0e8e7519d {"md5": "35caf057fd51f256b2172b681ed6b47b", "pid": "949607266", "note": [{"label": ["Gemeinde im Landkreis Landshut, Niederbayern"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Landkreis Landshut"}], "identifier": "http://d-nb.info/gnd/4439953-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4439953-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)949607266", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4439953-4", "source": "GND"}], "authorized_access_point": "Furth (Landkreis Landshut)"} 1 +2024-09-10 15:48:22.674819 2024-09-10 15:48:22.674823 9428a3f3-ec22-4936-bf5a-fab44bcf78a2 {"md5": "47f46d4e20778fc5582ac1b99043d3bb", "pid": "949602310", "note": [{"label": ["Doppelort 1.1.1999 nach Leipzig eingemeindet"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Lützschena-Stahmeln"}], "identifier": "http://d-nb.info/gnd/4439654-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4439654-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)949602310", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4439654-5", "source": "GND"}], "variant_access_point": ["Lützschena-Stahmeln (Leipzig)"], "authorized_access_point": "Leipzig-Lützschena-Stahmeln"} 1 +2024-09-10 15:48:22.744511 2024-09-10 15:48:22.744516 8696bc7d-540b-4641-a303-a217541bd298 {"md5": "9e424fe7aaea6f3b4591c08946673c6b", "pid": "948791659", "note": [{"label": ["Homepage - http://www.holzhausen-sachsen.de"], "noteType": "dataSource"}, {"label": ["Ortsteil von Leipzig seit 1.1.1999"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Holzhausen (Leipzig)"}], "identifier": "http://d-nb.info/gnd/4426743-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4426743-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)948791659", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4426743-5", "source": "GND"}], "variant_access_point": ["Holzhausen (Leipzig)"], "authorized_access_point": "Leipzig-Holzhausen"} 1 +2024-09-10 15:48:22.817304 2024-09-10 15:48:22.817308 3a65b8b7-b86d-4870-9b2e-67c003e6f641 {"md5": "74f04e7c9afd4e1ff109a66ead662b8c", "pid": "948417226", "note": [{"label": ["Kleinstadt an der Grabow im Kreis Schlawe, Regierungsbezirk Köslin, Hinterpommern, preuß. Provinz Pommern, Besiedlung durch Wenden, 2. Hälfte 13. Jh. dt. Besiedlung, 1307 urkundl. erwähnt, 1312 Stadtrecht"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Polanów"}], "identifier": "http://d-nb.info/gnd/5180619-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5180619-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)948417226", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)5180619-8", "source": "GND"}], "variant_access_point": ["Pollnow i. Pom."], "authorized_access_point": "Pollnow"} 1 +2024-09-10 15:48:22.893168 2024-09-10 15:48:22.893175 33ae83f6-b5b3-4754-9153-1e7aa991e4a9 {"md5": "06a2b8a735caa6e8ee5118da32defd51", "pid": "948322292", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=239090285"], "noteType": "dataSource"}, {"label": ["Stadtteil im Süden Leipzigs seit 1.1.1891"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Lössnig (Leipzig)"}], "identifier": "http://d-nb.info/gnd/4420041-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4420041-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)948322292", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4420041-9", "source": "GND"}], "variant_access_point": ["Leipzig-Lössnig", "Lößnig (Leipzig)"], "authorized_access_point": "Leipzig-Lößnig"} 1 +2024-09-10 15:48:22.959169 2024-09-10 15:48:22.959176 a8c0e865-a6b5-4c20-81f4-765d6a697137 {"md5": "baf78b4a56dd2d5f802f5689a1cc78a8", "pid": "948321156", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Dölitz (Leipzig)"}], "identifier": "http://d-nb.info/gnd/4420038-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4420038-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)948321156", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4420038-9", "source": "GND"}], "variant_access_point": ["Dölitz (Leipzig)"], "authorized_access_point": "Leipzig-Dölitz"} 1 +2024-09-10 15:48:23.040027 2024-09-10 15:48:23.04003 b2608504-663e-4be9-9dce-f5293730636f {"md5": "fd5eb4028e04e642c557ea4de5b02056", "pid": "947976248", "note": [{"label": ["Ortsteil von Leipzig seit 1999"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Mölkau"}], "identifier": "http://d-nb.info/gnd/4415593-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4415593-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)947976248", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4415593-1", "source": "GND"}], "variant_access_point": ["Mölkau (Leipzig)", "Mölkau-Zweinaundorf", "Lleipzig-Mölkau-Zweinaundorf"], "authorized_access_point": "Leipzig-Mölkau"} 1 +2024-09-10 15:48:23.114048 2024-09-10 15:48:23.114052 a3d79551-584b-48b4-9364-7c48a12cbf69 {"md5": "c1ed30fd21498cb92680df8499db42eb", "pid": "947862730", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Juodkrant%C4%97&oldid=178982082", "GeoNames - http://geotree.geonames.org/598706/"], "noteType": "dataSource"}, {"label": ["Zweitgrößte Siedlung auf der Kurischen Nehrung in Litauen", "Im Jahre 1961 wurden die Hauptortschaften des litauischen Teiles der Kurischen Nehrung- Alksnyne, Juodkrante, Pervalka, Preila, Nida in die Stadt Neringa zusammengeschossen."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Neringa"}], "related": [{"authorized_access_point": "Schwarzort"}], "identifier": "http://d-nb.info/gnd/5175593-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5175593-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)947862730", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)5175593-2", "source": "GND"}], "authorized_access_point": "Juodkrantė"} 1 +2024-09-10 15:48:23.176505 2024-09-10 15:48:23.176508 9fcd4c66-4360-474a-9d41-9114dc647129 {"md5": "771117b8ba461cf243a49b9ad174325f", "pid": "947589341", "note": [{"label": ["Seeheilbad auf Usedom, Landkreis Ostvorpommern (25.7.1952-12.6.1994: (Land-)Kreis Wolgast; 1945-1952: Landkreis Usedom; 1818-1945: Kreis Usedom-Wollin), 1256 urkundl. erwähnt, 1.1.2005 mit Ahlbeck und Heringsdorf zu Dreikaiserbäder zusammengeschlossen, 1.1.2006 in Ostseebad Heringsdorf umbenannt"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Dreikaiserbäder-Bansin"}, {"authorized_access_point": "Dreikaiserbäder"}], "identifier": "http://d-nb.info/gnd/5171491-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5171491-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)947589341", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)5171491-7", "source": "GND"}], "variant_access_point": ["Seebad Bansin"], "authorized_access_point": "Bansin"} 1 +2024-09-10 15:48:23.302286 2024-09-10 15:48:23.302289 22703020-65a2-411f-ae6a-342adeee77ae {"md5": "fababfd13b6a6923c297b4da622c8e4f", "pid": "947454659", "note": [{"label": ["Ort in Saudi-Arabien"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4408998-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4408998-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)947454659", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4408998-3", "source": "GND"}], "variant_access_point": ["Oḥod"], "authorized_access_point": "Uḥud"} 1 +2024-09-10 15:48:23.377451 2024-09-10 15:48:23.377456 5875e603-7d60-4fb8-95d9-6de874a5d4e3 {"md5": "23028ffb3e940b101d5df92d3290418f", "pid": "947421238", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=242946023"], "noteType": "dataSource"}, {"label": ["Hauptstadt von Udmurtien"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Ustinov"}], "identifier": "http://d-nb.info/gnd/4408789-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4408789-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)947421238", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4408789-5", "source": "GND"}], "variant_access_point": ["Iževsk", "Izhevsk", "Iževskij zavod", "Iž", "Ižkar", "Ижкар", "Иж"], "authorized_access_point": "Ischewsk"} 1 +2024-09-10 15:48:23.453442 2024-09-10 15:48:23.453445 0b41ac4f-f19c-4da1-a704-82c397c2e157 {"md5": "524332ea22877f45e526d30d0cebbe50", "pid": "947026088", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Minas Gerais"}], "identifier": "http://d-nb.info/gnd/4403767-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4403767-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)947026088", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4403767-3", "source": "GND"}], "authorized_access_point": "Barbacena (Minas Gerais)"} 1 +2024-09-10 15:48:23.542393 2024-09-10 15:48:23.542397 007cb9a1-913d-4c3d-923b-9e9e4ac4bc3b {"md5": "280de53bb4e71a85ab570a9603c718a5", "pid": "946723729", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Leutzsch"}], "identifier": "http://d-nb.info/gnd/4400402-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4400402-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)946723729", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4400402-3", "source": "GND"}], "variant_access_point": ["Leutzsch (Leipzig)"], "authorized_access_point": "Leipzig-Leutzsch"} 1 +2024-09-10 15:48:23.615963 2024-09-10 15:48:23.615966 8313f331-94ce-4c2d-97f9-a66c773b1395 {"md5": "1c6ee12837a361bdae35a18a1d612516", "pid": "946606161", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=244051604"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4399100-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4399100-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)946606161", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4399100-2", "source": "GND"}], "variant_access_point": ["Oststernberg (Kreis)", "Ost-Sternberg", "Kreis Ost-Sternberg", "Landkreis Ost-Sternberg"], "authorized_access_point": "Kreis Oststernberg"} 1 +2024-09-10 15:48:23.682248 2024-09-10 15:48:23.682251 dd10b0d6-e353-4f5c-8c85-028e16ada650 {"md5": "992d2c7e8a22566f9fe8696f459d53d8", "pid": "945980132", "note": [{"label": ["Ort im Ar. Sélestat-Erstein, Dep. Unterelsass/Bas-Rhin, Region Grand Est (-2015: Elsass), 788 urkundl. erwähnt"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Unterelsass"}], "identifier": "http://d-nb.info/gnd/4390811-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4390811-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)945980132", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4390811-1", "source": "GND"}], "variant_access_point": ["Barr (Elsass)", "Barr, Elsaß"], "authorized_access_point": "Barr (Unterelsass)"} 1 +2024-09-10 15:48:23.744934 2024-09-10 15:48:23.744939 8372122c-ce66-4391-87f2-8bf2bc21d030 {"md5": "b198be84b19a2254100ec65d406560bf", "pid": "945917201", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4390430-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4390430-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)945917201", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4390430-0", "source": "GND"}], "variant_access_point": ["Tochigi-ken", "Shimotsuke", "Yashū", "Shimotsukene", "Shimotsukeno"], "authorized_access_point": "Präfektur Tochigi"} 1 +2024-09-10 15:48:23.822075 2024-09-10 15:48:23.822079 627c1c77-64bf-4301-ac19-d870f608e1f6 {"md5": "b9266ec78201c8004a82d3f25dcd13c8", "pid": "945871678", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Paris"}, {"authorized_access_point": "Palais de la Cité (Paris)"}], "identifier": "http://d-nb.info/gnd/4389955-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4389955-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)945871678", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4389955-9", "source": "GND"}], "authorized_access_point": "Conciergerie (Paris)"} 1 +2024-09-10 15:48:23.893864 2024-09-10 15:48:23.893868 eccac5d6-edad-4256-8ea1-e134ca0dd211 {"md5": "44761ea527269bfe237a665c4727cb06", "pid": "945385382", "note": [{"label": ["Hompage - http://city.mogilev.by/?lang=bel", "Wikipedia - https://ru.wikipedia.org/w/index.php?oldid=138576423"], "noteType": "dataSource"}, {"label": ["Stadt in Weißrussland am Dnjepr"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4384842-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4384842-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)945385382", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4384842-4", "source": "GND"}], "variant_access_point": ["Mahileǔ", "Mohilev", "Mahiljou", "Mahilioŭ", "Mahiloŭ", "Mohilew", "Mogilyov", "Mogilev", "Magistrat (Mogilev)", "Mahilëŭ", "Mogilew", "Mahilëŭski Harad", "Mogilevski Gorod", "Mogilev City", "Могилев", "Могилёв"], "authorized_access_point": "Mogiljow"} 1 +2024-09-10 15:48:27.649861 2024-09-10 15:48:27.649865 84cf1716-cf9b-4bf1-942c-213cda7b7666 {"md5": "634afb9f4f9c47883226f54486e15f14", "pid": "199157642", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Barntrup"}], "identifier": "http://d-nb.info/gnd/7779320-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7779320-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199157642", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7779320-1", "source": "GND"}], "variant_access_point": ["Uhlental"], "authorized_access_point": "Barntrup-Uhlental"} 1 +2024-09-10 15:48:23.958563 2024-09-10 15:48:23.958566 1deb2b7c-5951-49db-ae91-9f4fe340d679 {"md5": "be1ea3517e04d182f6c8589b9bc132f2", "pid": "944766021", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Eutritzsch"}], "identifier": "http://d-nb.info/gnd/4380230-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4380230-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)944766021", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4380230-8", "source": "GND"}], "variant_access_point": ["Eutritzsch (Leipzig)"], "authorized_access_point": "Leipzig-Eutritzsch"} 1 +2024-09-10 15:48:24.024958 2024-09-10 15:48:24.024961 a4875945-cd29-40e1-af0e-ca22d1741b22 {"md5": "37433728850bd698cdcdd853e60c5e30", "pid": "944289290", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}], "identifier": "http://d-nb.info/gnd/5127721-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5127721-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)944289290", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)5127721-9", "source": "GND"}], "authorized_access_point": "Leipzig-Ost"} 1 +2024-09-10 15:48:24.142484 2024-09-10 15:48:24.142487 1b85122c-ea2a-4b06-a7c2-d5cd5e37f6cc {"md5": "813c27a365f1d85f8671cec32265c85e", "pid": "94400718X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/5123475-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5123475-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)94400718X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)5123475-0", "source": "GND"}], "variant_access_point": ["L'vivs'ka Oblast'"], "authorized_access_point": "L'vovskaja Oblast'"} 1 +2024-09-10 15:48:24.205084 2024-09-10 15:48:24.20509 6e3f9c48-bae2-498e-adeb-9ab1d81af1d6 {"md5": "17e2ae0f2ef060679c209e11b41ed343", "pid": "943882346", "note": [{"label": ["1994 aus den Kreisen Leipzig, Borna u. großen Teilen des Kreises Geithain gebildeter Landkreis, 1.8.2008 Eingliederung in den neugebildeten Landkreis Leipzig"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Landkreis Leipzig"}], "related": [{"authorized_access_point": "Landkreis Borna"}, {"authorized_access_point": "Landkreis Geithain"}, {"authorized_access_point": "Landkreis Leipzig"}], "identifier": "http://d-nb.info/gnd/4370529-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4370529-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)943882346", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4370529-7", "source": "GND"}], "variant_access_point": ["Leipziger Land (Kreis)"], "authorized_access_point": "Landkreis Leipziger Land"} 1 +2024-09-10 15:48:24.266699 2024-09-10 15:48:24.266702 02488c84-de56-499a-8edb-2fc0795f8157 {"md5": "c78a11bf72a2a5861cd3a4fc10b836f3", "pid": "941847934", "note": [{"label": ["Wikipedia - http://pl.wikipedia.org/w/index.php?oldid=72530956"], "noteType": "dataSource"}, {"label": ["Ort nordwestl. von Swiebodzin; bis 1810 Sitz einer Johanniter-Kommende"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Woiwodschaft Lebus"}], "related": [{"authorized_access_point": "Lagow (Kreis Oststernberg)"}], "identifier": "http://d-nb.info/gnd/2138914-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2138914-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)941847934", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)2138914-7", "source": "GND"}], "variant_access_point": ["Lagow (Woiwodschaft Lebus)", "Łagów, Powiat Świebodziński", "Łagów, województwo lubuskie", "Łagów Lubuski", "Łagów", "Łagów Lubuski"], "authorized_access_point": "Łagów (Woiwodschaft Lebus)"} 1 +2024-09-10 15:48:24.328621 2024-09-10 15:48:24.328625 835d4ace-9845-40ad-9762-1efc8e3a082c {"md5": "28fd0a71c25c8ccfd60202cd4076481e", "pid": "941808769", "note": [{"label": ["Gemeinde im Kt. Graubünden"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/2138776-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2138776-X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)941808769", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)2138776-X", "source": "GND"}], "authorized_access_point": "Lostallo"} 1 +2024-09-10 15:48:24.389399 2024-09-10 15:48:24.389402 c56ead20-1e5b-444d-9551-872da42dfe80 {"md5": "67f381986ff9aabaf1e26daa0e308fe6", "pid": "941757471", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Zentralarabien&oldid=191114592"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Arabien"}], "identifier": "http://d-nb.info/gnd/4346479-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4346479-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)941757471", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4346479-8", "source": "GND"}], "variant_access_point": ["Innerarabien"], "authorized_access_point": "Zentralarabien"} 1 +2024-09-10 15:48:24.450256 2024-09-10 15:48:24.45026 d502be14-c2e3-4116-ac90-f06d11d46799 {"md5": "e703e4b15e5bc721d8b5f429072e2d6a", "pid": "941385175", "note": [{"label": ["Tal in Saudiarabien"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4342217-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4342217-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)941385175", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4342217-2", "source": "GND"}], "authorized_access_point": "Wadi al-Batin"} 1 +2024-09-10 15:48:24.515874 2024-09-10 15:48:24.515877 85333e60-b5c0-4d83-b2b7-67d87d4ffdd4 {"md5": "cbdb27a34c906184f5c309b542c6cde5", "pid": "940396068", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Plagwitz (Leipzig)"}], "identifier": "http://d-nb.info/gnd/4331603-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4331603-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)940396068", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4331603-7", "source": "GND"}], "variant_access_point": ["Plagwitz (Leipzig)"], "authorized_access_point": "Leipzig-Plagwitz"} 1 +2024-09-10 15:48:24.575528 2024-09-10 15:48:24.575531 f8ef41c1-de70-49f3-a39e-bbb142872b50 {"md5": "ef55131a1464dd0076a8707ca8986cd8", "pid": "940396009", "note": [{"label": ["Stadtteil von Leipzig seit 1.1.1891"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Connewitz"}], "identifier": "http://d-nb.info/gnd/4331601-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4331601-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)940396009", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4331601-3", "source": "GND"}], "variant_access_point": ["Connewitz (Leipzig)"], "authorized_access_point": "Leipzig-Connewitz"} 1 +2024-09-10 15:48:24.645055 2024-09-10 15:48:24.645059 f8da619d-d0c5-4d7f-8f91-ee9f640f47ba {"md5": "53ea485d2f2cd19b489e7129a318c840", "pid": "199305404", "note": [{"label": ["Homepage - https://st-ewaldi-dortmund.de/st-ewaldi-aplerbeck/", "Wikipedia - https://de.wikipedia.org/w/index.php?title=St._Ewaldi_(Aplerbeck)&oldid=242390332"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Dortmund"}, {"authorized_access_point": "Dortmund-Aplerbeck"}], "identifier": "http://d-nb.info/gnd/7796155-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7796155-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199305404", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7796155-9", "source": "GND"}], "variant_access_point": ["Sankt Ewaldi Aplerbeck (Dortmund)", "St. Ewaldi Aplerbeck (Dortmund-Aplerbeck)", "St.-Ewaldi-Kirche (Dortmund)", "St. Ewaldi zu Dortmund-Aplerbeck (Dortmund)", "Zweite St.-Ewaldi-Kirche von 1971 (Dortmund)", "Egbertstraße 15 (Dortmund)"], "authorized_access_point": "St. Ewaldi Aplerbeck (Dortmund)"} 1 +2024-09-10 15:48:24.709961 2024-09-10 15:48:24.709965 cf4a77d2-3835-42bd-a113-feadf31fca25 {"md5": "d312eef2e482828817a185bf271001a6", "pid": "199252149", "note": [{"label": ["Ca. 1794 für den Leinenweber Hermann Brincks errichtetes Bürgerhaus; 1945 durch Luftangriffe vollständig zerstört"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/7789992-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7789992-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199252149", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7789992-1", "source": "GND"}], "variant_access_point": ["Bönersches Haus (Coesfeld)", "Münsterstraße 37 (Coesfeld)"], "authorized_access_point": "Haus Brincks (Coesfeld)"} 1 +2024-09-10 15:48:24.813226 2024-09-10 15:48:24.81323 2e6be2ce-122e-4136-b4eb-48c3a9e9e83a {"md5": "5bded78fd14d78c2cb92b483cfb4fb0f", "pid": "199248974", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Liste_der_Baudenkm%C3%A4ler_in_Detmold-Kernstadt&oldid=242933521"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Detmold"}], "identifier": "http://d-nb.info/gnd/7789613-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7789613-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199248974", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7789613-0", "source": "GND"}], "authorized_access_point": "Donopbrunnen (Detmold)"} 1 +2024-09-10 15:48:24.873631 2024-09-10 15:48:24.873633 4ad06f6f-f4bd-48a5-b5ef-c6a43e44467d {"md5": "d0ab7398a7a25e77658236b7b4a85ba6", "pid": "199246815", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Freie_Scholle_(Bielefeld)&oldid=237251749", "Homepage Freie Schulle - https://www.freie-scholle.de/ueber-uns/unsere-wurzeln"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bielefeld"}], "identifier": "http://d-nb.info/gnd/7789354-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7789354-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199246815", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7789354-2", "source": "GND"}], "variant_access_point": ["Siedlung Heeper Fichten (Bielefeld)"], "authorized_access_point": "Heeper Fichten (Bielefeld)"} 1 +2024-09-10 15:48:24.947891 2024-09-10 15:48:24.947894 4f1632c4-e96e-4471-85e5-00dfd01c95a8 {"md5": "5acaa51f3323b8c71135d5a17f2964e5", "pid": "199246793", "note": [{"label": ["Homepage - https://www.dasgastlichedorf.com/"], "noteType": "dataSource"}, {"label": ["Ensemble historischer Fachwerkhäuser aus dem 16. und 18. Jahrhundert mit Gastronomiebetrieb"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Delbrück"}], "identifier": "http://d-nb.info/gnd/7789352-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7789352-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199246793", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7789352-9", "source": "GND"}], "variant_access_point": ["Gastliches Dorf (Delbrück)", "Lippstädter Straße 88 (Delbrück)"], "authorized_access_point": "Das gastliche Dorf (Delbrück)"} 1 +2024-09-10 15:48:25.021016 2024-09-10 15:48:25.021021 72a3b5d6-c9b6-4999-8d86-b3756111e791 {"md5": "2ff7a2381728817354b621522f8397b8", "pid": "199246211", "note": [{"label": ["onlinestreet.de - https://onlinestreet.de/strassen/Galgenlake.Delbr%C3%BCck.1063258.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Delbrück"}], "identifier": "http://d-nb.info/gnd/7789283-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7789283-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199246211", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7789283-5", "source": "GND"}], "authorized_access_point": "Galgenlaake (Delbrück)"} 1 +2024-09-10 15:48:25.077774 2024-09-10 15:48:25.077777 579c12ae-83ab-491f-be33-653d75fde108 {"md5": "0c4d9c6c34f3b9617cc1b3ddf4f0652b", "pid": "199244766", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Detmold"}], "related": [{"authorized_access_point": "Richthofenstraße (Detmold)"}], "identifier": "http://d-nb.info/gnd/7789111-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7789111-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199244766", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7789111-9", "source": "GND"}], "variant_access_point": ["Richthofenstraße 16 (Detmold)"], "authorized_access_point": "Krullsche Haus (Detmold)"} 1 +2024-09-10 15:48:25.144206 2024-09-10 15:48:25.14421 588db9b6-3adc-439d-b0d0-a506011c4f8c {"md5": "f4ac6c3a730985d99995e9696a6a0963", "pid": "19924474X", "note": [{"label": ["onlinestreet.de - https://onlinestreet.de/strassen/Richthofenstra%C3%9Fe.Detmold.183819.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Detmold"}], "identifier": "http://d-nb.info/gnd/7789109-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7789109-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)19924474X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7789109-0", "source": "GND"}], "authorized_access_point": "Richthofenstraße (Detmold)"} 1 +2024-09-10 15:48:25.209062 2024-09-10 15:48:25.209064 88c12074-ce6f-4a9f-85a7-78aefa8d446f {"md5": "db40864895d981532772cd72648e670e", "pid": "199244731", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Detmold"}], "identifier": "http://d-nb.info/gnd/7789108-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7789108-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199244731", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7789108-9", "source": "GND"}], "authorized_access_point": "Freiligrathstraße (Detmold)"} 1 +2024-09-10 15:48:25.271709 2024-09-10 15:48:25.271713 e826c032-c73e-4516-bab7-cb4ca1a74b70 {"md5": "5e5f542af1ce2f989a2d7df5900cf4eb", "pid": "199244375", "note": [{"label": ["Gelegen am Fluss Else bei Bünde (Kreis Herford)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bünde"}], "identifier": "http://d-nb.info/gnd/7789063-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7789063-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199244375", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7789063-2", "source": "GND"}], "variant_access_point": ["Castrum Blankena (Bünde)", "Haus Wervingen"], "authorized_access_point": "Nienburg (Bünde)"} 1 +2024-09-10 15:48:25.360335 2024-09-10 15:48:25.36034 3b1c9f6f-bcd4-45b8-86d2-6f7311a796df {"md5": "4b8daceba658e9cf3d51ed3c10d77d95", "pid": "199241562", "note": [{"label": ["onlinestreet.de - https://onlinestreet.de/strassen/Gl%C3%BCckaufstra%C3%9Fe.Castrop-Rauxel.84305.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Castrop-Rauxel"}], "identifier": "http://d-nb.info/gnd/7788729-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7788729-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199241562", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7788729-3", "source": "GND"}], "authorized_access_point": "Glückaufstraße (Castrop-Rauxel)"} 1 +2024-09-10 15:48:25.422437 2024-09-10 15:48:25.42244 68ddf60b-9ab5-4497-852d-99dda3b9ab89 {"md5": "d5c9a0657af1ad39871aaaa5c6eccd32", "pid": "199240590", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Rieflinghausen&oldid=243763184"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Attendorn"}, {"authorized_access_point": "Helden-Rieflinghausen"}], "identifier": "http://d-nb.info/gnd/7788614-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7788614-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199240590", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7788614-8", "source": "GND"}], "authorized_access_point": "Attendorn-Rieflinghausen"} 1 +2024-09-10 15:48:25.487655 2024-09-10 15:48:25.487658 7d0e4197-68dc-4a44-ad21-9c41105098e5 {"md5": "25d5491e7aa7ad2825c024f9e86a857d", "pid": "199240515", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Castrop-Rauxel"}], "related": [{"authorized_access_point": "Glückaufstraße (Castrop-Rauxel)"}], "identifier": "http://d-nb.info/gnd/7788606-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7788606-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199240515", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7788606-9", "source": "GND"}], "variant_access_point": ["St. Rochus-Hospital (Castrop-Rauxel)", "Glückaufstraße 10 (Castrop-Rauxel)"], "authorized_access_point": "St. Rochus Hospital (Castrop-Rauxel)"} 1 +2024-09-10 15:48:25.549818 2024-09-10 15:48:25.549822 70c377d9-d809-4994-b0a2-866bdac3cb0a {"md5": "3ec4db891c1a24cd80bc7b12cb9963cf", "pid": "199239436", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Coesfeld"}], "identifier": "http://d-nb.info/gnd/7788473-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7788473-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199239436", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7788473-5", "source": "GND"}], "variant_access_point": ["Haus Schanze an der Billerbecker Straße (Coesfeld)"], "authorized_access_point": "Haus Schanze (Coesfeld)"} 1 +2024-09-10 15:48:25.614104 2024-09-10 15:48:25.614108 47cddea4-78b8-455c-b13a-33355e8627ef {"md5": "92d66c756295bd6e1d432d98ce3446c1", "pid": "19923860X", "note": [{"label": ["onlinestreet.de - https://onlinestreet.de/strassen/Lortzingstra%C3%9Fe.Detmold.146305.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Detmold"}], "identifier": "http://d-nb.info/gnd/7788374-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7788374-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)19923860X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7788374-3", "source": "GND"}], "authorized_access_point": "Lortzingstraße (Detmold)"} 1 +2024-09-10 15:48:25.674691 2024-09-10 15:48:25.674697 8ba0437f-fb61-401f-a39a-70ae91893acd {"md5": "ea0ac4d7818e5da46fd05d77d2d3cd0a", "pid": "199231516", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=St._Jakob_(K%C3%B6ln)&oldid=205660525", "Homepage Altes Köln - https://altes-koeln.de/wiki/St._Jacob"], "noteType": "dataSource"}, {"label": ["Ursprungsbau 1071 geweiht; 1534-1548 erheblich umgebaut, 1825 abgebrochen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Köln- Altstadt Süd"}], "identifier": "http://d-nb.info/gnd/7787520-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7787520-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199231516", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7787520-5", "source": "GND"}], "variant_access_point": ["St. Jakob (Köln- Altstadt Süd)", "St. Jacob (Köln- Altstadt Süd)", "Kirche St. Jacob (Köln- Altstadt Süd)", "Jakobskirche (Köln- Altstadt Süd)", "Pfarrkirche St. Jakob (Köln- Altstadt Süd)", "St. Jakob (Köln) (Köln- Altstadt Süd)"], "authorized_access_point": "Sankt Jakob (Köln- Altstadt Süd)"} 1 +2024-09-10 15:48:25.741662 2024-09-10 15:48:25.741665 420f07ab-c74d-4c44-992b-ab4b3838c9df {"md5": "ae92f9cecccd6657587d731a4477e59d", "pid": "199230811", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Merkurbrunnen_(Bielefeld)&oldid=243360167"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bielefeld"}], "identifier": "http://d-nb.info/gnd/7787435-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7787435-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199230811", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7787435-3", "source": "GND"}], "authorized_access_point": "Merkurbrunnen (Bielefeld)"} 1 +2024-09-10 15:48:25.817431 2024-09-10 15:48:25.817435 7909fb1f-afa0-424b-94a2-877fa667ba4b {"md5": "79286cc935bd95dd21bb3995792a4438", "pid": "199230285", "note": [{"label": ["Homepage - https://www.e-ki-wa.de/gemeinde/kirchen", "Wikipedia - https://de.wikipedia.org/w/index.php?title=Liste_von_Sakralbauten_in_Bochum&oldid=244821551"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bochum"}, {"authorized_access_point": "Bochum-Höntrop"}], "identifier": "http://d-nb.info/gnd/7787372-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7787372-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199230285", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7787372-5", "source": "GND"}], "variant_access_point": ["Versöhnungskirche (Bochum)", "Versöhnungskirche Höntrop (Bochum-Höntrop)", "Evangelische Versöhnungskirche Höntrop (Bochum)", "Preins Feld 8 (Bochum)"], "authorized_access_point": "Versöhnungskirche Höntrop (Bochum)"} 1 +2024-09-10 15:48:25.880375 2024-09-10 15:48:25.88038 f0563700-29d5-44a6-be1e-c8d848ddc3bb {"md5": "4359d3ceece2e1f1961b4273a6652740", "pid": "199224196", "note": [{"label": ["Stand: 10.07.2024 - https://www.westfalen-blatt.de/owl/quellenhof-wird-abgerissen-2450879?pid=true&npg"], "noteType": "dataSource"}, {"label": ["Historischer Bauernhof, Erstwähnung um 1550, 1904 von den Von-Bodelschwinghsche Anstalten erworben, 2021 zugunsten eines Hospiz-Neubaus abgerissen."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bielefeld"}, {"authorized_access_point": "Bielefeld-Gadderbaum"}], "identifier": "http://d-nb.info/gnd/7786666-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7786666-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199224196", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7786666-6", "source": "GND"}], "variant_access_point": ["Quellenhof (Bielefeld-Gadderaum)", "Göllnerhof (Bielefeld)", "Hof Göllner (Bielefeld)"], "authorized_access_point": "Quellenhof (Bielefeld)"} 1 +2024-09-10 15:48:25.942503 2024-09-10 15:48:25.942507 30259e6f-6d9b-40c0-b0a7-6aca84ce9e2a {"md5": "accabce3ab48198c8297d4f9893417c7", "pid": "199218315", "note": [{"label": ["Homepage - https://wbc-coesfeld.de/deponie-coesfeld-hoeven"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Coesfeld"}, {"authorized_access_point": "Rosendahl"}], "identifier": "http://d-nb.info/gnd/7785996-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7785996-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199218315", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7785996-0", "source": "GND"}], "variant_access_point": ["Deponie Coesfeld-Höven (Coesfeld)", "Deponie Coesfeld-Höven (Rosendahl)", "Siedlungsabfalldeponie des Kreises Coesfeld", "Zentraldeponie Coesfeld-Höven", "Zentraldeponie Coesfeld-Höven im Kreis Coesfeld", "Zentraldeponie Coesfeld-Höven im Kreis Coesfeld, NRW"], "authorized_access_point": "Deponie Coesfeld-Höven"} 1 +2024-09-10 15:48:26.008675 2024-09-10 15:48:26.008678 21a7d37a-4155-42f6-bd7b-ba12395e05a9 {"md5": "cbdf0634470564c126a728ca02c24846", "pid": "199215901", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Gerresheim&oldid=244302258#Gerricusplatz"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Düsseldorf"}, {"authorized_access_point": "Düsseldorf-Gerresheim"}], "identifier": "http://d-nb.info/gnd/7785731-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7785731-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199215901", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7785731-8", "source": "GND"}], "authorized_access_point": "Gerricusplatz (Düsseldorf)"} 1 +2024-09-10 15:48:26.071069 2024-09-10 15:48:26.071072 24493f65-eb33-477d-8025-93735e162231 {"md5": "c06ba3d161ae0c30cef77d1144bf0d73", "pid": "199214700", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Synagoge_Detmold&oldid=245430403"], "noteType": "dataSource"}, {"label": ["Fiel in der Reichspogromnacht vom 9. auf den 10. November 1938 einem Brandanschlag zum Opfer, 1939 endgültig abgerissen."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Detmold"}], "related": [{"authorized_access_point": "Lortzingstraße (Detmold)"}], "identifier": "http://d-nb.info/gnd/7785597-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7785597-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199214700", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7785597-8", "source": "GND"}], "authorized_access_point": "Synagoge Detmold (Detmold)"} 1 +2024-09-10 15:48:26.135582 2024-09-10 15:48:26.135585 b7aff1f3-5e2e-4a87-87f5-cc05e4544fcb {"md5": "37d62bcfee6a3c384fad47082c16e44e", "pid": "19921462X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Coesfeld"}], "identifier": "http://d-nb.info/gnd/7785589-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7785589-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)19921462X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7785589-9", "source": "GND"}], "variant_access_point": ["Freiherr vom Stein Kaserne (Coesfeld)", "Kaserne Coesfeld (Coesfeld)", "Letter Bruch 9 (Coesfeld)"], "authorized_access_point": "Freiherr-vom-Stein-Kaserne (Coesfeld)"} 1 +2024-09-10 15:48:27.723772 2024-09-10 15:48:27.723775 3eb311a2-11ab-4b40-9eb3-58bac216cfa9 {"md5": "4e858aabfd2e204f1783f788441aed47", "pid": "199147760", "note": [{"label": ["onlinestreet.de - https://onlinestreet.de/strassen/H%C3%B6fkerstra%C3%9Fe.Dortmund.110510.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Dortmund"}], "identifier": "http://d-nb.info/gnd/7778231-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7778231-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199147760", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7778231-8", "source": "GND"}], "authorized_access_point": "Höfkerstraße (Dortmund)"} 1 +2024-09-10 15:48:26.198829 2024-09-10 15:48:26.198833 2c1424ff-c24b-43b6-a09e-d63d75e80f19 {"md5": "95c78a459dd2829bcde5a33c490d2c2b", "pid": "199212007", "note": [{"label": ["Homepage - https://www.christus-koenig-gemen.de/einrichtungen-christus-koenig-gemen/kirchen/verkuendigungskirche/"], "noteType": "dataSource"}, {"label": ["Kirchengebäude des Provinzialats der Schönstätter Marienschwestern in Gemen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Gemen (Borken (Westf.))"}], "identifier": "http://d-nb.info/gnd/7785301-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7785301-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199212007", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7785301-5", "source": "GND"}], "variant_access_point": ["Mariä Verkündigung (Gemen, Borken (Westf.))"], "authorized_access_point": "Verkündigungskirche (Gemen, Borken (Westf.))"} 1 +2024-09-10 15:48:26.263076 2024-09-10 15:48:26.26308 198b3c9c-1910-46b4-a2e6-ea8e67b09a3c {"md5": "be45303111d4c7f78f08c52304e8ace9", "pid": "199211817", "note": [{"label": ["Waldgebiet im Castrop-Rauxeler Stadtteil Deininghausen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/7785281-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7785281-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199211817", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7785281-3", "source": "GND"}], "authorized_access_point": "Deininghausen - Grutholz"} 1 +2024-09-10 15:48:26.326183 2024-09-10 15:48:26.326187 46fbca54-24b8-4bb0-abb7-ca1b8d04df57 {"md5": "d9bf30731da20663c1e88225b5739cd3", "pid": "199210713", "note": [{"label": ["Bauernhof im Möhnetal gelegen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Brilon"}], "identifier": "http://d-nb.info/gnd/7785159-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7785159-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199210713", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7785159-6", "source": "GND"}], "variant_access_point": ["Osterhof in der Gemarkung von Brilon (Brilon)"], "authorized_access_point": "Osterhof (Brilon)"} 1 +2024-09-10 15:48:26.399127 2024-09-10 15:48:26.39913 73c95a37-aaaa-4b4e-904d-2d47f52e0c14 {"md5": "decbe78674ed8f0801e65e1c4da1daee", "pid": "199209464", "note": [{"label": ["Homepage - https://www.werre-park.de/"], "noteType": "dataSource"}, {"label": ["Ca. 52.000 qm großes Einkaufszentrum am Südufer der Werre"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bad Oeynhausen"}], "identifier": "http://d-nb.info/gnd/7785023-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7785023-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199209464", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7785023-3", "source": "GND"}], "variant_access_point": ["Werre-Park Bad Oeynhausen (Bad Oeynhausen)"], "authorized_access_point": "Werre-Park (Bad Oeynhausen)"} 1 +2024-09-10 15:48:26.459598 2024-09-10 15:48:26.459605 8dc8739b-55e2-4323-962e-66d1708a1043 {"md5": "93085bd0e54965affc8dc5211b298f62", "pid": "199200955", "note": [{"label": ["Liste der Baudenkmäler in Bestwig - https://de.wikipedia.org/w/index.php?title=Liste_der_Baudenkm%C3%A4ler_in_Bestwig&oldid=242141515"], "noteType": "dataSource"}, {"label": ["2020 unter Denkmalschutz gestellt"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bestwig"}], "identifier": "http://d-nb.info/gnd/7784086-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7784086-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199200955", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7784086-0", "source": "GND"}], "variant_access_point": ["Kreuzkirche (Bestwig)", "Kreuzkirche Bestwig (Bestwig)", "Ev. Kreuzkirche Bestwig (Bestwig)", "Evang. Kreuzkirche Bestwig (Bestwig)", "Evangelische Kirche (Bestwig)", "Auferstehungskirche (Bestwig)"], "authorized_access_point": "Evangelische Kreuzkirche (Bestwig)"} 1 +2024-09-10 15:48:26.5245 2024-09-10 15:48:26.524503 3a61fd0b-e9cf-478e-a445-0dd524e2a5f5 {"md5": "2cc62b75640ddd0c54ad272d20f87e5e", "pid": "199198578", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Liste_der_Baudenkm%C3%A4ler_in_Detmold-Kernstadt&oldid=242933521"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Detmold"}], "related": [{"authorized_access_point": "Benekestraße (Detmold)"}], "identifier": "http://d-nb.info/gnd/7783825-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7783825-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199198578", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7783825-7", "source": "GND"}], "authorized_access_point": "Benekestraße 10 (Detmold)"} 1 +2024-09-10 15:48:26.588032 2024-09-10 15:48:26.588038 ebd78f8a-6494-401f-b17d-19559e54a034 {"md5": "ffa3975e56002a047b5f0db65bd0d954", "pid": "199195978", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Liste_der_Baudenkm%C3%A4ler_in_Breckerfeld&oldid=227886228"], "noteType": "dataSource"}, {"label": ["Wohn- und Geschäftshaus, heute \\"Adler-Apotheke\\""], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Breckerfeld"}], "related": [{"authorized_access_point": "Denkmalstraße (Breckerfeld)"}], "identifier": "http://d-nb.info/gnd/7783538-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7783538-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199195978", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7783538-4", "source": "GND"}], "authorized_access_point": "Denkmalstraße 1 (Breckerfeld)"} 1 +2024-09-10 15:48:26.66494 2024-09-10 15:48:26.664944 ad6ef974-69be-4407-9f6d-f1ee3f718a8e {"md5": "0e6c5fbe05d878bea1ddabb317acfd40", "pid": "19919596X", "note": [{"label": ["onlinestreet.de - https://onlinestreet.de/strassen/Denkmalstra%C3%9Fe.Breckerfeld.323395.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Breckerfeld"}], "identifier": "http://d-nb.info/gnd/7783537-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7783537-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)19919596X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7783537-2", "source": "GND"}], "authorized_access_point": "Denkmalstraße (Breckerfeld)"} 1 +2024-09-10 15:48:26.740378 2024-09-10 15:48:26.740383 2ae73a27-997b-4335-aee1-5361cdba3b7c {"md5": "18881d9a249f3f1563c3ce524b1c73b9", "pid": "199189870", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Liste_der_Denkm%C3%A4ler_in_Brilon&oldid=238201542"], "noteType": "dataSource"}, {"label": ["Giebelständiger Fachwerkbau mit Wirtschaftsdiele, dreischiffiges niederdeutsches Hallenhaus, seit 1985 denkmalgeschützt"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Brilon"}], "related": [{"authorized_access_point": "Derkere Straße (Brilon)"}], "identifier": "http://d-nb.info/gnd/7782867-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7782867-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199189870", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7782867-7", "source": "GND"}], "variant_access_point": ["Derkere Strasse 26 (Brilon)", "Bürgerhaus Derkere Straße 26 (Brilon)"], "authorized_access_point": "Derkere Straße 26 (Brilon)"} 1 +2024-09-10 15:48:26.806376 2024-09-10 15:48:26.806379 23fa7c5b-7bde-4506-b459-b69780424827 {"md5": "8ad3713f9845cd2ddf112f754890a457", "pid": "199189862", "note": [{"label": ["Fachwerkhaus vom Typ \\"niederdeutsches Hallenhaus\\", 2001 abgerissen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Brilon"}], "related": [{"authorized_access_point": "Niedere Straße (Brilon)"}], "identifier": "http://d-nb.info/gnd/7782866-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7782866-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199189862", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7782866-5", "source": "GND"}], "variant_access_point": ["Niedere Strasse 32 (Brilon)"], "authorized_access_point": "Niedere Straße 32 (Brilon)"} 1 +2024-09-10 15:48:26.88208 2024-09-10 15:48:26.882082 ada61b49-7168-4765-a16d-4d6791f1f4c8 {"md5": "0d46b68d08ff66f5abeac4e7bfd24b84", "pid": "199189854", "note": [{"label": ["onlinestreet.de - https://onlinestreet.de/strassen/Derkere+Stra%C3%9Fe.Brilon.428121.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Brilon"}], "identifier": "http://d-nb.info/gnd/7782865-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7782865-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199189854", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7782865-3", "source": "GND"}], "authorized_access_point": "Derkere Straße (Brilon)"} 1 +2024-09-10 15:48:26.961016 2024-09-10 15:48:26.961021 8935e668-c413-4727-b2c9-7eaaef70c698 {"md5": "ad5b51b41e2a03a4f70d713ec6f61148", "pid": "199189846", "note": [{"label": ["onlinestreet.de - https://onlinestreet.de/strassen/Niedere+Stra%C3%9Fe.Brilon.428144.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Brilon"}], "identifier": "http://d-nb.info/gnd/7782864-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7782864-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199189846", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7782864-1", "source": "GND"}], "authorized_access_point": "Niedere Straße (Brilon)"} 1 +2024-09-10 15:48:27.022976 2024-09-10 15:48:27.022979 176e67dc-bde3-499f-9f84-264990ec58e7 {"md5": "ddc7d11f71bdb90184e0bba3d4103953", "pid": "199187282", "note": [{"label": ["Homepage - https://steinhaegerhaeuschen.de"], "noteType": "dataSource"}, {"label": ["Seit 1894 mit rechtmäßigen Ausschank, 1929 zu einer Gaststätte mit dem Namen „Steinhäger Häuschen“ umgebaut."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Steinhagen (Kreis Gütersloh)"}], "related": [{"authorized_access_point": "Bahnhofstraße (Steinhagen, Kreis Gütersloh)"}], "identifier": "http://d-nb.info/gnd/7782582-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7782582-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199187282", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7782582-2", "source": "GND"}], "variant_access_point": ["Bahnhofstraße 2 (Steinhagen, Kreis Gütersloh)", "Steinhägerhäuschen (Steinhagen, Kreis Gütersloh)"], "authorized_access_point": "Steinhäger Häuschen (Steinhagen, Kreis Gütersloh)"} 1 +2024-09-10 15:48:27.0817 2024-09-10 15:48:27.081702 b3fbcf5d-0f37-4cb4-8d7b-958a57626445 {"md5": "ea8b9521eab830ab438b197897fbfdfd", "pid": "199181993", "note": [{"label": ["1727 gestiftet in Schwelm, 1740 in Breckerfeld aufgestellt"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Breckerfeld"}, {"authorized_access_point": "Jakobus-Kirche Breckerfeld (Breckerfeld)"}], "identifier": "http://d-nb.info/gnd/7782000-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7782000-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199181993", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7782000-9", "source": "GND"}], "variant_access_point": ["Evangelische Pfarrkirche (Breckerfeld)"], "authorized_access_point": "Jakobus-Kirche Breckerfeld (Breckerfeld) - Kanzel"} 1 +2024-09-10 15:48:27.144249 2024-09-10 15:48:27.144253 c3007517-e24f-443c-9c55-ccb193a32ebd {"md5": "5f6aae9d1c516563cdc90f510500d3e4", "pid": "199173672", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Liste_der_Baudenkm%C3%A4ler_in_B%C3%BCnde&oldid=239542179"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bünde"}, {"authorized_access_point": "Bünde-Ennigloh"}], "identifier": "http://d-nb.info/gnd/7781086-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7781086-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199173672", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7781086-7", "source": "GND"}], "variant_access_point": ["Universum Bünde (Bünde-Ennigloh)", "Lichtspieltheater Universum in Bünde", "Universum in Bünde", "Kino (Bünde)", "Universum-Kino (Bünde)", "Lichtspielhaus Wittekind (Bünde)", "Hauptstraße 9"], "authorized_access_point": "Universum Bünde (Bünde)"} 1 +2024-09-10 15:48:28.298025 2024-09-10 15:48:28.298027 24063aed-6d1c-4746-8752-1e38cd0af2af {"md5": "67c2aa36975806457307f4c07eaa1ea2", "pid": "199013594", "note": [{"label": ["onlinestreet.de - https://onlinestreet.de/strassen/Benekestra%C3%9Fe.Detmold.30979.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Detmold"}], "identifier": "http://d-nb.info/gnd/7763244-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7763244-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199013594", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7763244-8", "source": "GND"}], "authorized_access_point": "Benekestraße (Detmold)"} 1 +2024-09-10 15:48:27.215588 2024-09-10 15:48:27.215592 3fce977c-94fd-452f-b449-b3b0d6a5f7cd {"md5": "c81d9bcf0dda10ceb48c0232708f7e49", "pid": "19917332X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Dortberghaus&oldid=242681457"], "noteType": "dataSource"}, {"label": ["Erbaut als Verwaltungsgebäude der Gelsenkirchener Bergwerks-Aktiengesellschaft, von 1967-2004 Sitz des Bauordnungs- und Katasteramt. Seit 2022 Hotel."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Dortmund"}], "identifier": "http://d-nb.info/gnd/7781046-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7781046-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)19917332X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7781046-6", "source": "GND"}], "variant_access_point": ["Katharinenstraße 9 (Dortmund)"], "authorized_access_point": "Dortberghaus (Dortmund)"} 1 +2024-09-10 15:48:27.279445 2024-09-10 15:48:27.279451 9b72f612-920f-47f0-a16a-e7b9fa6f405d {"md5": "f93a5131e9dd0384e30c54ffecbc5f2b", "pid": "199168512", "note": [{"label": ["Homepage - https://www.alpincenter.com/bottrop/de"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bottrop"}], "identifier": "http://d-nb.info/gnd/7780518-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7780518-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199168512", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7780518-5", "source": "GND"}], "variant_access_point": ["Veltins Alpincenter (Bottrop)", "Alpincenter in Bottrop (Bottrop)", "Prosperstraße 299-301 (Bottrop)"], "authorized_access_point": "Alpincenter Bottrop (Bottrop)"} 1 +2024-09-10 15:48:27.339851 2024-09-10 15:48:27.339854 c8b6be61-1cf9-45be-b755-9e2e87a063f7 {"md5": "0cf16b0e0a37ef50f883c4eb2f40e302", "pid": "199164347", "note": [{"label": ["Bis 1803 als Kloster genutzt, seit 1983 Baudenkmal; heute (neben diversen Verwaltungs- und Gefängnisbauten) Teil des Anstaltsgeländes der JVA Attendorn"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/7780057-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7780057-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199164347", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7780057-6", "source": "GND"}], "variant_access_point": ["Klosteranlage des Ehemaligen Augustinerchorherren-Klosters Ewig (Attendorn)", "Ehemaliges Augustinerchorherrenkloster Ewig (Attendorn)", "Ehemaliges Klostergebäude Ewig (Attendorn)", "Ehemalige Klostergebäude des Klosters Ewig (Attendorn)", "Klosteranlage des ehemaligen Klosters Ewig (Attendorn)", "Ehemaliges Augustinerchorherren-Kloster Ewig (Attendorn)", "Ehemaliges Kloster Ewig (Attendorn)", "Gut Ewig (Attendorn)", "Ehem. Augustinerchorherren-Kloster Ewig, jetzt Justizvollzugsanstalt (Attendorn)", "Biggeweg 5 (Attendorn)", "Gefängnisanlage der Justizvollzugsanstalt Attendorn (Attendorn)"], "authorized_access_point": "Klosteranlage des Ehem. Augustinerchorherren-Klosters Ewig (Attendorn)"} 1 +2024-09-10 15:48:27.402549 2024-09-10 15:48:27.402552 06be1dc2-ae4b-4f44-8067-c90be32a9f3c {"md5": "4f4ff1ade2bc928d74d4465eb099c980", "pid": "19916035X", "note": [{"label": ["onlinestreet.de - https://onlinestreet.de/strassen/Elisabethstra%C3%9Fe.Bochum.59159.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bochum"}, {"authorized_access_point": "Bochum-Wattenscheid"}], "identifier": "http://d-nb.info/gnd/7779618-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7779618-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)19916035X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7779618-4", "source": "GND"}], "variant_access_point": ["Elisabethstraße (Bochum-Wattenscheid)"], "authorized_access_point": "Elisabethstraße (Bochum)"} 1 +2024-09-10 15:48:27.46485 2024-09-10 15:48:27.464854 67441311-0172-480d-b3fb-fb260d705f72 {"md5": "dc53c0387bdf2b1f7c9111ff25933549", "pid": "199159998", "note": [{"label": ["onlinestreet.de - https://onlinestreet.de/strassen/Wattenscheider+Hellweg.Bochum.229548.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bochum"}], "identifier": "http://d-nb.info/gnd/7779578-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7779578-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199159998", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7779578-7", "source": "GND"}], "authorized_access_point": "Wattenscheider Hellweg (Bochum)"} 1 +2024-09-10 15:48:27.528028 2024-09-10 15:48:27.528033 381da6b9-2b77-44ab-96f1-473be310dd3f {"md5": "ee6be98fe1295b4479336db9c2d97ffc", "pid": "199159882", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Florianturm&oldid=240093523", "Stadt Dortmund - https://www.dortmund.de/dortmund-erleben/freizeit-und-kultur/westfalenpark/der-park/florianturm/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Dortmund"}], "identifier": "http://d-nb.info/gnd/7779566-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7779566-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199159882", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7779566-0", "source": "GND"}], "variant_access_point": ["Florian (Dortmund)", "Dortmunder Florian (Dortmund)", "Florianturm im Westfalenpark (Dortmund)", "Florianstraße 2 (Dortmund)"], "authorized_access_point": "Florianturm (Dortmund)"} 1 +2024-09-10 15:48:27.587989 2024-09-10 15:48:27.587992 6f2337f6-9635-469f-94a6-929df50db0a5 {"md5": "0bb0497a24421a8fa872977f179f696b", "pid": "199159777", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Liste_der_Baudenkm%C3%A4ler_im_Stadtbezirk_Bochum-Wattenscheid&oldid=246405605"], "noteType": "dataSource"}, {"label": ["In zwei Bauabschnitten 1619 und 1672 errichteter ehemaliger Bauernkotten, heute Gaststättenbetrieb"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bochum"}, {"authorized_access_point": "Bochum-Wattenscheid"}, {"authorized_access_point": "Bochum-Eppendorf"}], "identifier": "http://d-nb.info/gnd/7779553-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7779553-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199159777", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7779553-2", "source": "GND"}], "variant_access_point": ["Kotten Bodde (Bochum-Wattenscheid)", "Kotten Bodde (Bochum-Eppendorf)", "Am Thie 8 (Bochum)", "Wohnhaus (Bochum)"], "authorized_access_point": "Kotten Bodde (Bochum)"} 1 +2024-09-10 15:48:27.801962 2024-09-10 15:48:27.801968 c50aa45d-6246-4a68-89cb-346b0867ab95 {"md5": "cb22738df8b4801f527410ce88c1f865", "pid": "199138834", "note": [{"label": ["onlinestreet.de - https://onlinestreet.de/strassen/Alter+Postweg.Bottrop.5340.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bottrop"}, {"authorized_access_point": "Bottrop-Kirchhellen"}], "identifier": "http://d-nb.info/gnd/7777247-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7777247-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199138834", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7777247-7", "source": "GND"}], "variant_access_point": ["Alter Postweg (Bottrop-Kirchhellen)"], "authorized_access_point": "Alter Postweg (Bottrop)"} 1 +2024-09-10 15:48:27.861128 2024-09-10 15:48:27.861132 4eea636c-5aef-4411-b510-dd671dbcba22 {"md5": "56e521a71fe9b033057cc4ca6847a503", "pid": "199136637", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Liste_der_Baudenkm%C3%A4ler_in_Bocholt&oldid=242141670"], "noteType": "dataSource"}, {"label": ["Zweigeschossige Backstein-/Putzbauvilla"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bocholt"}], "identifier": "http://d-nb.info/gnd/7777006-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7777006-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199136637", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7777006-7", "source": "GND"}], "variant_access_point": ["Villa (Bocholt)"], "authorized_access_point": "Schwartzstraße 7 (Bocholt)"} 1 +2024-09-10 15:48:27.920882 2024-09-10 15:48:27.920885 91c02843-7b0c-4834-96c2-e7e2870a440f {"md5": "6483da06d780b5354fb4b1d07d54a3d2", "pid": "199118167", "note": [{"label": ["Im Barntruper Stadtwald zu Ehren Adolf Hitlers (1933 zum Barntruper Ehrenbürger ernannt) errichtetes Denkmal, bestehend aus einem auf einem Sockel ruhenden Findling mit eingraviertem Hakenkreuz, eingefasst von Hecke und Zaun. 1945 vermutlich durch Vergraben oder Sprengen beseitigt."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Barntrup"}], "identifier": "http://d-nb.info/gnd/7774950-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7774950-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199118167", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7774950-9", "source": "GND"}], "authorized_access_point": "Hitlerstein (Barntrup)"} 1 +2024-09-10 15:48:27.987331 2024-09-10 15:48:27.987336 67aa7656-9855-48c9-b15d-23431a131081 {"md5": "8ca06bc261eab19cbab98156f9549883", "pid": "199089973", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Balve&oldid=244726901#Stadtgliederung"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Balve"}], "identifier": "http://d-nb.info/gnd/7771795-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7771795-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199089973", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7771795-8", "source": "GND"}], "variant_access_point": ["Haustadt (Balve)"], "authorized_access_point": "Balve-Haustadt"} 1 +2024-09-10 15:48:28.047673 2024-09-10 15:48:28.047677 cace2fc2-9c80-4dd5-8ed1-3ad260c47ec0 {"md5": "87ac940e824803bf6d5588c53b19155e", "pid": "199077177", "note": [{"label": ["Wikipedia - https://de.m.wikipedia.org/wiki/Kunst_im_%C3%B6ffentlichen_Raum_in_Arnsberg"], "noteType": "dataSource"}, {"label": ["Mahnmal für die Toten der Möhnekatastrophe von 1943, steht auf dem Gelände der Pfarrkirche St. Johannes in Neheim"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Arnsberg"}, {"authorized_access_point": "Arnsberg-Neheim"}], "identifier": "http://d-nb.info/gnd/7770364-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7770364-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199077177", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7770364-9", "source": "GND"}], "variant_access_point": ["Totenleuchte an der Johanneskirche (Arnsberg)", "Totenleuchte (Arnsberg-Neheim)", "Totenstele (Arnsberg)"], "authorized_access_point": "Totenleuchte (Arnsberg)"} 1 +2024-09-10 15:48:28.106949 2024-09-10 15:48:28.106952 3827b009-462d-43f5-9459-d5a1c8980dad {"md5": "b0af0057f391db10446fb45674a66e39", "pid": "199023786", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Haus_Holtwick&oldid=238799546"], "noteType": "dataSource"}, {"label": ["Das Haus Holtwick ist eine abgegangene mittelalterliche Niederungsburg. Es ist nur das Torhaus erhalten."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Rosendahl"}, {"authorized_access_point": "Rosendahl-Holtwick"}], "identifier": "http://d-nb.info/gnd/7764388-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7764388-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199023786", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7764388-4", "source": "GND"}], "variant_access_point": ["Haus Holtwick (Rosendahl-Holtwick)"], "authorized_access_point": "Haus Holtwick (Rosendahl)"} 1 +2024-09-10 15:48:28.166619 2024-09-10 15:48:28.166623 cbcb313b-b05c-440e-a244-49449d680c18 {"md5": "d04cfb7a028e757c875e15601ff3dcdc", "pid": "199023360", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=J%C3%BCdischer_Friedhof_Bochum&oldid=245831861"], "noteType": "dataSource"}, {"label": ["Jüdischer Friedhof an der Wasserstr."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bochum"}, {"authorized_access_point": "Bochum-Wiemelhausen"}], "identifier": "http://d-nb.info/gnd/7764341-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7764341-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199023360", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7764341-0", "source": "GND"}], "variant_access_point": ["Jüdischer Friedhof Bochum (Bochum-Wiemelhausen)", "Jüdischer Friedhof Wiemelhausen (Bochum)"], "authorized_access_point": "Jüdischer Friedhof Bochum (Bochum)"} 1 +2024-09-10 15:48:28.227379 2024-09-10 15:48:28.227382 1792ffe6-60ec-4698-a788-2e4a4ce17aee {"md5": "3fa71187372d5a0de8e28badf12063d4", "pid": "199022534", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Arnsberg"}, {"authorized_access_point": "Arnsberg-Holzen"}], "identifier": "http://d-nb.info/gnd/7764246-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7764246-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199022534", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7764246-6", "source": "GND"}], "variant_access_point": ["Haus Schlünder (Arnsberg-Holzen)", "Haus Schlünder im Luerwald (Arnsberg)", "Haus am Brüggestück (Arnsberg)"], "authorized_access_point": "Haus Schlünder (Arnsberg)"} 1 +2024-09-10 15:48:28.362244 2024-09-10 15:48:28.362249 f06d1861-ba68-4e64-917f-8072c70986e3 {"md5": "12e08c69976738040b2d835b254eae85", "pid": "199013276", "note": [{"label": ["onlinestreet.de - https://onlinestreet.de/strassen/Kortumstra%C3%9Fe.Bochum.133165.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bochum"}], "identifier": "http://d-nb.info/gnd/7763208-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7763208-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199013276", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7763208-4", "source": "GND"}], "authorized_access_point": "Kortumstraße (Bochum)"} 1 +2024-09-10 15:48:28.420819 2024-09-10 15:48:28.420822 617c0a90-badf-4797-a632-1a929dce6764 {"md5": "2526fb2b7b013932425d4189157fc752", "pid": "199011249", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Altst%C3%A4dter_Nicolaikirche&oldid=245915909"], "noteType": "dataSource"}, {"label": ["Älteste Kirche auf dem Stadtgebiet Bielefelds. Nach Zerstörung 1944 unter Verwendung alter Bausubstanz durch die Architekten Bernhard Hopp und Rudolf Jäger wieder aufgebaut; der Turm erhielt statt der ursprünglichen barocken Haube einen steilen Betonaufsatz mit Eckstreben und Helm."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bielefeld"}], "identifier": "http://d-nb.info/gnd/7762981-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7762981-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199011249", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7762981-4", "source": "GND"}], "variant_access_point": ["Ev. Altstädter Nicolaikirche (Bielefeld)", "Evangelische Altstädter Nicolaikirche (Bielefeld)", "Nicolaikirche (Bielefeld)", "Ev. Altstädter Nicolaikirche Bielefeld (Bielefeld)", "Nikolaikirche zu Bielefeld (Bielefeld)"], "authorized_access_point": "Altstädter Nicolaikirche (Bielefeld)"} 1 +2024-09-10 15:48:28.482119 2024-09-10 15:48:28.482122 b22d8643-cae1-4646-98e1-04dfa838ce39 {"md5": "acf0f7a77f3910ba2627d8088534dcb1", "pid": "199003645", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Liste_der_Baudenkm%C3%A4ler_in_Beckum&oldid=245713880", "Homepage Beckum - https://www.beckum.de/entdecken-erleben/kultur/stadtmuseum/#accordion-1-5"], "noteType": "dataSource"}, {"label": ["Verputzter Bruchsteinbau mit seitlichem Durchgang zum Kirchhof, 1983 unter Denkmalschutz gestellt; beherbergt seit 1986 das Stadtmuseum"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Beckum"}], "identifier": "http://d-nb.info/gnd/7762132-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7762132-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199003645", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7762132-3", "source": "GND"}], "variant_access_point": ["Altes Rathaus (Beckum)", "Ehemaliges Rathaus (Beckum)", "Historisches Rathaus (Beckum)", "Rathaus Beckum (Beckum)", "Das ehemalige Rathaus (Beckum)", "Beckumer Rathaus (Beckum)", "Stadtmuseum (Beckum)", "Markt 1 (Beckum)"], "authorized_access_point": "Rathaus (Beckum)"} 1 +2024-09-10 15:48:28.54106 2024-09-10 15:48:28.541063 1ef3334b-17dc-405f-8825-cdaca67e5a18 {"md5": "f250091ba77c6f7f4cc93b4cefbe5710", "pid": "199002894", "note": [{"label": ["Umfasst den Kreis Lippe zu Detmold"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/7762049-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7762049-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199002894", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7762049-5", "source": "GND"}], "variant_access_point": ["Detmold (IHK-Bezirk)"], "authorized_access_point": "IHK-Bezirk Detmold"} 1 +2024-09-10 15:48:28.602334 2024-09-10 15:48:28.60234 b8f120df-2984-435d-9ba0-9456c58f59eb {"md5": "27bb294cdb62a107bb2c1937d845e8a2", "pid": "199001111", "note": [{"label": ["onlinestreet.de - https://onlinestreet.de/strassen/Bahnhofstra%C3%9Fe.Steinhagen.302222.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Steinhagen (Kreis Gütersloh)"}], "identifier": "http://d-nb.info/gnd/7761850-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7761850-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199001111", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7761850-6", "source": "GND"}], "authorized_access_point": "Bahnhofstraße (Steinhagen, Kreis Gütersloh)"} 1 +2024-09-10 15:48:28.668407 2024-09-10 15:48:28.668411 fe292d05-9c8b-43df-b5bc-3f9d94494d83 {"md5": "b15e5c90c4c48f7ada1fa872fe3fd8d7", "pid": "199000328", "note": [{"label": ["Stadt Dortmund - https://www.dortmund.de/themen/sport/geschaeftsbereich-sport/hoeschpark/", "Wikipedia - https://de.wikipedia.org/w/index.php?title=Hoeschpark&oldid=231477040"], "noteType": "dataSource"}, {"label": ["Grünanlage mit zahlreichen Sportstätten"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Dortmund"}], "identifier": "http://d-nb.info/gnd/7761761-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7761761-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199000328", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7761761-7", "source": "GND"}], "variant_access_point": ["Hoesch-Park (Dortmund)", "Brackeler Straße 60 (Dortmund)"], "authorized_access_point": "Hoeschpark (Dortmund)"} 1 +2024-09-10 15:48:28.730722 2024-09-10 15:48:28.730727 12d679d7-6d5b-4f3a-98f2-50890e9e2109 {"md5": "a2526f09ee901d47716dfd9d96ef267e", "pid": "199000239", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/7761750-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7761750-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199000239", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7761750-2", "source": "GND"}], "authorized_access_point": "Castrop - Region"} 1 +2024-09-10 15:48:29.306858 2024-09-10 15:48:29.306861 d62537f6-df3f-46f4-b546-9f502106ea4d {"md5": "a27d15181c7e3a2c34e3c5f9a0aec0ce", "pid": "042939550", "note": [{"label": ["Stadtteil von Prag seit 1.1.1922"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Prag"}, {"authorized_access_point": "Smichow (Prag)"}], "identifier": "http://d-nb.info/gnd/4293955-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4293955-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042939550", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4293955-0", "source": "GND"}], "variant_access_point": ["Prag-Smíchov", "Smíchov (Prag)", "Smichow (Prag)"], "authorized_access_point": "Prag-Smichow"} 1 +2024-09-10 15:48:28.792254 2024-09-10 15:48:28.792258 4357d8d2-5acc-4df1-a6fd-d1bd992f176b {"md5": "6b63a439b87fc838d3b3cf5ffdd48d21", "pid": "050551604", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=195150922"], "noteType": "dataSource"}, {"label": ["Als Nordschleswig 1920 an Dänemark abgetreten wurde, entstand aus dem preußischen Kreis Sonderburg das Sønderborg Amt. Von 1920 bis 1932 ein Amtsbezirk in Dänemark."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Amt Sønderjylland"}], "related": [{"authorized_access_point": "Kreis Sonderburg"}], "identifier": "http://d-nb.info/gnd/5055160-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5055160-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)050551604", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)5055160-7", "source": "GND"}], "variant_access_point": ["Amt Sonderburg", "Sønderborg Amt", "Sønderborg (Amt)", "Sonderburg (Amt)"], "authorized_access_point": "Amt Sønderborg"} 1 +2024-09-10 15:48:28.871747 2024-09-10 15:48:28.87175 f6cf604f-5530-4b79-8bac-4a9139a3ab11 {"md5": "8bffd3503fb8ed5c8d5da1893adba19a", "pid": "050133039", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Syosset&oldid=236501513", "GeoNames - https://www.geonames.org/5140402/syosset.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/5013303-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5013303-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)050133039", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)5013303-2", "source": "GND"}], "authorized_access_point": "Syosset, NY"} 1 +2024-09-10 15:48:28.930728 2024-09-10 15:48:28.930736 ee09aeb4-0686-4090-bab9-f67dade01320 {"md5": "3f93a610a412229d222982398f71ff0a", "pid": "050039350", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}], "identifier": "http://d-nb.info/gnd/5003935-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5003935-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)050039350", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)5003935-0", "source": "GND"}], "variant_access_point": ["Löszmig"], "authorized_access_point": "Leipzig-Löszmig"} 1 +2024-09-10 15:48:28.99232 2024-09-10 15:48:28.992323 7f134f10-059a-4819-9a17-5ffcae6e5002 {"md5": "af91c49d9817b24ab58a47fe39e56957", "pid": "043244793", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Paunsdorf"}], "identifier": "http://d-nb.info/gnd/4324479-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4324479-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043244793", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4324479-8", "source": "GND"}], "variant_access_point": ["Paunsdorf (Leipzig)"], "authorized_access_point": "Leipzig-Paunsdorf"} 1 +2024-09-10 15:48:29.051942 2024-09-10 15:48:29.051947 0ebcc7cc-9ac6-4bec-9cde-e92fad3eb1c1 {"md5": "c3a7ac13d57dd4532615f334d39366e6", "pid": "043225608", "note": [{"label": ["Stadt im Landkreis Ludwigslust-Parchim (13.6.1994-3.9.2011: Landkreis Ludwigslust; 25.7.1952-12.6.1994: (Land-)Kreis Hagenow), 1194 urkundl. erwähnt, 1370 Stadt bezeichnet (1520 auch noch Dorf genannt), 1746 Marktflecken, 1754 Stadtrechte (Landstadt)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4322560-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4322560-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043225608", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4322560-3", "source": "GND"}], "variant_access_point": ["Stadt Hagenow"], "authorized_access_point": "Hagenow"} 1 +2024-09-10 15:48:29.114089 2024-09-10 15:48:29.114096 f9d0bdbd-4d47-4087-b3ad-c60b310e3573 {"md5": "9b6231b4d3da26f17e1596f705b505fa", "pid": "043151019", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Workum&oldid=237963244"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Súdwest-Fryslân"}], "identifier": "http://d-nb.info/gnd/4315101-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4315101-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043151019", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4315101-2", "source": "GND"}], "variant_access_point": ["Warkum", "Vorkjum", "Vorkumas", "Woerkem", "Wörkem", "Súdwest-Fryslân- Workum"], "authorized_access_point": "Workum"} 1 +2024-09-10 15:48:29.173647 2024-09-10 15:48:29.173651 ce90cc25-eabe-4585-b8ce-7e42fcd4abf5 {"md5": "e6970134217c8b5e0cc2010421c423eb", "pid": "043138764", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Langschede&oldid=246152514"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Langschede"}, {"authorized_access_point": "Fröndenberg/Ruhr"}], "identifier": "http://d-nb.info/gnd/4313876-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4313876-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043138764", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4313876-7", "source": "GND"}], "authorized_access_point": "Fröndenberg-Langschede"} 1 +2024-09-10 15:48:29.244812 2024-09-10 15:48:29.244815 95efa34e-df94-4efb-b506-0f21bff5d7ef {"md5": "85da605bd63192287abc3de4ccc169d0", "pid": "042976200", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Severo-Osetinskaja ASSR"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)992404215", "source": "GND"}, {"type": "bf:Nbn", "value": "091413591", "source": "ZBW"}], "authorized_access_point": "Nordossetien"}], "identifier": "http://d-nb.info/gnd/4297620-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4297620-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042976200", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4297620-0", "source": "GND"}], "variant_access_point": ["Nordossetien-Alanien", "Republik Nordossetien-Alanien", "Respublika Sewernaja Ossetija-Alanija", "Respublika Severnaja Osetija-Alanija", "Severnaja Osetija-Alanija", "Respublikä Cägat Iryston-Alanijy", "Zägat Iryston", "Cägat Iryston", "Alani", "Alania", "North Ossetia", "Республикӕ Цӕгат Ирыстон-Аланийы"], "authorized_access_point": "Nordossetien"} 1 +2024-09-10 15:48:29.375557 2024-09-10 15:48:29.37556 57fe9b61-6b4a-41c6-bef6-f51f42499552 {"md5": "2ef7eb049f92bb723b020da2bfecbb3a", "pid": "042939526", "note": [{"label": ["Vorstadt von Prag, 1828 Vorort, 1903 Stadtrecht, 1.1.1922 nach Prag eingemeindet"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Prag-Smichow"}], "identifier": "http://d-nb.info/gnd/4293952-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4293952-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042939526", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4293952-5", "source": "GND"}], "variant_access_point": ["Smíchov (Prag)"], "authorized_access_point": "Smichow (Prag)"} 1 +2024-09-10 15:48:29.443315 2024-09-10 15:48:29.443318 19e96e0a-b39d-4855-9604-5d3f0cfdd371 {"md5": "b98a55d2a95742bff181eaf35fc7c9c6", "pid": "042788714", "note": [{"label": ["Homepage - https://www.reichenbach-vogtland.de/"], "noteType": "dataSource"}, {"label": ["Stadt im Vogtlandkreis, Sachsen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4278871-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4278871-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042788714", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4278871-7", "source": "GND"}], "variant_access_point": ["Reichenbach, Vogtland", "Richenbach", "Richinbach", "Reichennbach", "Reichenboch", "Rechenbach", "Reichenbach"], "authorized_access_point": "Reichenbach im Vogtland"} 1 +2024-09-10 15:48:29.513094 2024-09-10 15:48:29.513098 45aef156-8fd3-4d19-8768-cf2531714bc2 {"md5": "a4234b5dbf696eeb5dfbdbf186bfd9c6", "pid": "042778352", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Kart%C3%A4userkirche_(K%C3%B6ln)&oldid=237820855"], "noteType": "dataSource"}, {"label": ["1393 geweiht, seit 1978 evangelische Kirche"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Köln"}], "identifier": "http://d-nb.info/gnd/4277835-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4277835-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042778352", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4277835-9", "source": "GND"}], "variant_access_point": ["Sankt Barbara (Köln)", "Evangelische Pfarrkirche St. Barbara (Köln)", "Evangelische Pfarrkirche Sankt Barbara (Köln)"], "authorized_access_point": "Kartäuserkirche (Köln)"} 1 +2024-09-10 15:48:29.577134 2024-09-10 15:48:29.577137 658c810d-620d-49a4-ba71-f57d5563c93c {"md5": "22547bee59b14ee70ff0597cc358b293", "pid": "042627494", "note": [{"label": ["Seebad auf Usedom, Landkreis Vorpommern-Greifswald (1994-2011: Landkreis Ostvorpommern; 25.7.1952-12.6.1994: (Land-)Kreis Wolgast; 1945-1952: Landkreis Usedom; 1818-1945: Kreis Usedom-Wollin), 1818 Fischersiedlung angelegt, 1.1.2005 mit Ahlbeck und Bansin zu Dreikaiserbäder zusammengeschlossen, 1.1.2006 in Ostseebad Heringsdorf umbenannt"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Dreikaiserbäder"}], "identifier": "http://d-nb.info/gnd/4262749-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4262749-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042627494", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4262749-7", "source": "GND"}], "variant_access_point": ["Seebad Heringsdorf", "Gemeinde Seebad Heringsdorf", "Ostseebad Heringsdorf", "Heringsdorf (Ostseebad)", "Ostseeheilbad Heringsdorf", "Gemeinde Ostseebad Heringsdorf", "Heringsdorf"], "authorized_access_point": "Heringsdorf (Seebad)"} 1 +2024-09-10 15:48:29.639901 2024-09-10 15:48:29.639905 a98d87c7-3812-45b7-b67c-bf1755ff6e72 {"md5": "417e22075ad042bf0369b8317307d8f7", "pid": "042602564", "note": [{"label": ["Homepage - https://stiftskirche.de/"], "noteType": "dataSource"}, {"label": ["Pfarrkirche der Altstadt, um 1240 als Basilika spätroman. neu erbaut anstelle Dorfkirche des 10. oder 11. Jh., 1327/47 Chor angebaut, 1433/81 Langhaus als Stufenhalle von H. Jörg u. A. Jörg spätgot. neu erbaut, W-Turm 1490/1531, 1944 fast vollständig zerstört, 1950/58 teilw. rekonstruierend, teilw. neu wiederaufgebaut"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Stuttgart"}], "identifier": "http://d-nb.info/gnd/4260256-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4260256-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042602564", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4260256-7", "source": "GND"}], "variant_access_point": ["Stiftskirche zum Hl. Kreuz (Stuttgart)", "Ev. Stiftskirche Hl. Kreuz (Stuttgart)", "Evangelische Stiftskirche zum Heiligen Kreuz (Stuttgart)", "Stiftskirche (Stuttgart)", "Evangelische Stiftskirche Heilig Kreuz (Stuttgart)"], "authorized_access_point": "Stiftskirche zum Heiligen Kreuz (Stuttgart)"} 1 +2024-09-10 15:48:29.702428 2024-09-10 15:48:29.702432 e3cd700b-4131-43ee-9f9e-abd607024e55 {"md5": "493e4f3653e0e632141fd0396939b8d7", "pid": "042567874", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/Emscher_Landschaftspark"], "noteType": "dataSource"}, {"label": ["Landschaftspark d. Emscher Region"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Emscher-Gebiet"}], "identifier": "http://d-nb.info/gnd/4256787-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4256787-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042567874", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4256787-7", "source": "GND"}], "variant_access_point": ["Emscher-Park", "Emscherpark", "Emscher-Landschaftspark", "Emscher Landschaftspark"], "authorized_access_point": "Emscher Park"} 1 +2024-09-10 15:48:29.761842 2024-09-10 15:48:29.761846 d64071cd-d746-4ea6-995d-a6eba25c1c3f {"md5": "342918dd45f336bf452f7a67e3b323bc", "pid": "042553628", "note": [{"label": ["Homepage - https://www.gnotzheim.de/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4255362-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4255362-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042553628", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4255362-3", "source": "GND"}], "variant_access_point": ["Markt Gnotzheim"], "authorized_access_point": "Gnotzheim"} 1 +2024-09-10 15:48:32.51529 2024-09-10 15:48:32.515296 b7c08b09-8913-4cc3-86cd-1ba6ea647655 {"md5": "206c8add5931ffe8d87d8cf2fa43723d", "pid": "040657752", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4065775-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4065775-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040657752", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4065775-9", "source": "GND"}], "variant_access_point": ["Münstersche Bucht", "Münstersche Kreidebucht", "Münsterländer Bucht", "Münsterländer Becken"], "authorized_access_point": "Westfälische Bucht"} 1 +2024-09-10 15:48:29.825428 2024-09-10 15:48:29.82543 04d93e79-99be-48cd-892d-b7e48f6ddc40 {"md5": "0985b67aa5190e3819079c5ac91f7f63", "pid": "042492777", "note": [{"label": ["Gebietskörperschaft im Landkreis Bernkastel-Wittlich"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4249277-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4249277-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042492777", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4249277-4", "source": "GND"}], "variant_access_point": ["Bernkastel-Kues (Verbandsgemeinde)"], "authorized_access_point": "Verbandsgemeinde Bernkastel-Kues"} 1 +2024-09-10 15:48:29.896815 2024-09-10 15:48:29.896819 2e651bd0-ccd4-48d5-a798-dea48fc9d806 {"md5": "b86ffec79ff5a5ebaf6afeb0c82c0da5", "pid": "042490448", "note": [{"label": ["Ort im Dep. Gironde, Frankreich"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4249044-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4249044-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042490448", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4249044-3", "source": "GND"}], "authorized_access_point": "Lesparre-Médoc"} 1 +2024-09-10 15:48:29.968997 2024-09-10 15:48:29.969 6b6f0d3a-3528-4b60-9637-1510451fc0d7 {"md5": "94e3a0160c3c01289fcd96f99e619024", "pid": "042477247", "note": [{"label": ["Ortsteil von Heringsdorf (1.1.2005-31.12.2005: Dreikaiserbäder) seit 1.1.2006"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Heringsdorf (Seebad)"}, {"authorized_access_point": "Dreikaiserbäder-Bansin"}], "identifier": "http://d-nb.info/gnd/4247724-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4247724-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042477247", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4247724-4", "source": "GND"}], "variant_access_point": ["Bansin (Heringsdorf, Seebad)"], "authorized_access_point": "Heringsdorf-Bansin"} 1 +2024-09-10 15:48:30.032077 2024-09-10 15:48:30.032081 3913989f-3116-468d-8c52-932c16f44e53 {"md5": "5a7fb6dc8eeaafabc732b69d029e6f0b", "pid": "042400228", "note": [{"label": ["Insel vor SO-Küste der Argolis (Peloponnes), Regionalbezirk Inseln (-2010: Präfekturbezirk Piräus), Nomos Attika; manchmal zu den Saronischen Inseln gezählt"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4240022-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4240022-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042400228", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4240022-3", "source": "GND"}], "variant_access_point": ["Ydra (Insel)", "Hydrea (Insel)", "Idra (Insel)", "Idrea", "Idhra (Insel)", "Údra"], "authorized_access_point": "Hydra (Insel)"} 1 +2024-09-10 15:48:30.107853 2024-09-10 15:48:30.107856 9930e97c-8020-41b2-b0c6-c9143aa62885 {"md5": "5b8eed0e431889c0efbdf4e4e808617b", "pid": "042387175", "note": [{"label": ["Stadt in Saudi-Arabien"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4238717-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4238717-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042387175", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4238717-6", "source": "GND"}], "variant_access_point": ["ʿUnaiza", "ʿUnayza"], "authorized_access_point": "ʿUnayzah"} 1 +2024-09-10 15:48:30.169426 2024-09-10 15:48:30.16943 f379c0f7-7231-4b35-ba0d-ae96e764ee01 {"md5": "e042ecf3f747cf999a3f0fefb1b8b71e", "pid": "042299004", "note": [{"label": ["Berg im US-Bundesstaat Nevada"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4229900-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4229900-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042299004", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4229900-7", "source": "GND"}], "authorized_access_point": "Mount Annie, Nev."} 1 +2024-09-10 15:48:30.231966 2024-09-10 15:48:30.231971 4d55be69-1978-46fb-9633-52ad208540aa {"md5": "24de7249cce064aea383dc5969bbc0f3", "pid": "042260213", "note": [{"label": ["Hauptstadt des Bundesstaates Connecticut, 1635 als Newtown gegründet, heutiger Name seit 1637"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)990781569", "source": "GND"}, {"type": "bf:Nbn", "value": "091408466", "source": "ZBW"}], "authorized_access_point": "Hartford (Conn.)"}], "identifier": "http://d-nb.info/gnd/4226021-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4226021-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042260213", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4226021-8", "source": "GND"}], "variant_access_point": ["Hartford, Connecticut", "Newtown, Conn."], "authorized_access_point": "Hartford, Conn."} 1 +2024-09-10 15:48:30.293519 2024-09-10 15:48:30.293522 46adeb11-7f68-49a4-923d-68f7cc89c56a {"md5": "c73596b3a296761280070426b39d905d", "pid": "042244943", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=236364456"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4224494-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4224494-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042244943", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4224494-8", "source": "GND"}], "variant_access_point": ["Amur (Oblast)", "Amur-Gebiet (Oblast)", "Amurskaja oblastʹ", "Gebiet Amur"], "authorized_access_point": "Oblast Amur"} 1 +2024-09-10 15:48:30.354931 2024-09-10 15:48:30.354934 6401615d-fcc4-41f3-ad14-5c1c53454af9 {"md5": "d45f2ed3a1177ab38ac180ae080b516c", "pid": "042236037", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Bernkastel-Kues"}, {"authorized_access_point": "Andel"}], "identifier": "http://d-nb.info/gnd/4223603-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4223603-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042236037", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4223603-4", "source": "GND"}], "variant_access_point": ["Andel (Bernkastel-Kues)"], "authorized_access_point": "Bernkastel-Kues-Andel"} 1 +2024-09-10 15:48:30.417998 2024-09-10 15:48:30.418003 0666119a-8893-4b24-b5b8-0025e7476627 {"md5": "2e119ae21925fd428f2b2b3265b66908", "pid": "042209927", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Kotor_Varo%C5%A1&oldid=246161593"], "noteType": "dataSource"}, {"label": ["Kleinstadt in Bosnien und Herzegowina und Hauptort der gleichnamigen Gemeinde"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4220992-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4220992-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042209927", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4220992-4", "source": "GND"}], "variant_access_point": ["Kotor-Varoš"], "authorized_access_point": "Kotor Varoš"} 1 +2024-09-10 15:48:30.481608 2024-09-10 15:48:30.481612 dd2e79fc-a01f-4313-9b4d-6ec7ea64c432 {"md5": "9c0a3fa27b86f29443ade8945c34b7fe", "pid": "042005450", "note": [{"label": ["Benutzt für die Region zwischen Basel, Freiburg u. Strassburg"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Oberrheinisches Tiefland"}], "identifier": "http://d-nb.info/gnd/4200545-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4200545-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042005450", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4200545-0", "source": "GND"}], "variant_access_point": ["Regio, Oberrhein"], "authorized_access_point": "Oberrheinisches Tiefland - Süd"} 1 +2024-09-10 15:48:30.545199 2024-09-10 15:48:30.545203 ca3d1218-607d-42ec-9f01-f3f8934ff199 {"md5": "46ad8a1e9070e1377afef65222cde464", "pid": "041401174", "note": [{"label": ["Homepage - http://www.ltk.dk"], "noteType": "dataSource"}, {"label": ["Kommune in der Region Hovedstaden, Seeland"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)992133122", "source": "GND"}, {"type": "bf:Nbn", "value": "094409951", "source": "ZBW"}], "authorized_access_point": "Lyngby-Tarbaek"}], "identifier": "http://d-nb.info/gnd/4140117-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4140117-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041401174", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4140117-7", "source": "GND"}], "variant_access_point": ["Lyngby (Kopenhagen)", "Tårboek", "Lyngby", "Lyngby-Taarbaek"], "authorized_access_point": "Lyngby-Tårbaek"} 1 +2024-09-10 15:48:30.617792 2024-09-10 15:48:30.617797 9edfc49d-7b28-44bf-acbe-0f26f54da486 {"md5": "1ec28b1a17d4c565937aad7b85790332", "pid": "041370538", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Ostpreußen"}, {"authorized_access_point": "Preußen"}], "related": [{"authorized_access_point": "Preußen (Ordensstaat)"}], "identifier": "http://d-nb.info/gnd/4137053-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4137053-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041370538", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4137053-3", "source": "GND"}], "variant_access_point": ["Preußen (Herzogtum)", "Prūsijos Kunigaikštystė", "Ducal Prussia", "Prusy Książęce", "Prusko (vojvodstvo)", "Prusko (vévodství)"], "authorized_access_point": "Herzogtum Preußen"} 1 +2024-09-10 15:48:30.67931 2024-09-10 15:48:30.679313 8ca6d9b0-64c1-4dd3-beff-5959d36a28b5 {"md5": "fce0f15e8afb67ac6ceb07aaf1bcc836", "pid": "041194152", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=208608981"], "noteType": "dataSource"}, {"label": ["Ehemalige Verwaltungseinheit in Dänemark"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Region Nordjylland"}, {"authorized_access_point": "Region Midtjylland"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)997978201", "source": "GND"}, {"type": "bf:Nbn", "value": "094419132", "source": "ZBW"}], "authorized_access_point": "Viborg (Amt)"}], "identifier": "http://d-nb.info/gnd/4119415-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4119415-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041194152", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4119415-9", "source": "GND"}], "variant_access_point": ["Viborg Amt", "Amtskommune Viborg", "Amtsbezirk Viborg", "Viborg Amtskommune", "Viborg (Amt)"], "authorized_access_point": "Amt Viborg"} 1 +2024-09-10 15:48:30.752752 2024-09-10 15:48:30.752756 7d9e6595-90a0-4a33-b3c4-bea7ec00f0e0 {"md5": "b2b3e40f2b2851296b06a12f0e3a776e", "pid": "041192443", "note": [{"label": ["Mutterkirche des Schams, Rheinwald und Avers, erw. um 840, frühchristl. Vorgängerkirche, karoling. Ersatzbau. Roman. Neubau um 1100 mit Bilderdecke nach 1114, 1509 um spätgot. Chor erweitert"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Zillis"}], "identifier": "http://d-nb.info/gnd/4119244-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4119244-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041192443", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4119244-8", "source": "GND"}], "variant_access_point": ["St. Martin (Zillis)", "Reformierte Kirche St. Martin (Zillis)"], "authorized_access_point": "Sankt Martin (Zillis)"} 1 +2024-09-10 15:48:30.815324 2024-09-10 15:48:30.815327 c284047d-7471-491f-a178-7214a33083e8 {"md5": "852eb0fc4495d9fe5393a3ff658bc13d", "pid": "041167163", "note": [{"label": ["Homepage - https://www.ochsenhausen.de/", "Wikipedia - https://de.wikipedia.org/w/index.php?title=Ochsenhausen&oldid=246489625"], "noteType": "dataSource"}, {"label": ["Stadt im Landkreis Biberach, Oberschwaben, an der Oberschwäbischen Barockstraße"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4116716-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4116716-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041167163", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4116716-8", "source": "GND"}], "variant_access_point": ["Stadt Ochsenhausen"], "authorized_access_point": "Ochsenhausen"} 1 +2024-09-10 15:48:30.889854 2024-09-10 15:48:30.889857 05858d5f-d2ef-4706-9da5-3113d32503f4 {"md5": "c96f48c7ba92cb1b87d97584212c5c00", "pid": "041154282", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4115428-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4115428-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041154282", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4115428-9", "source": "GND"}], "authorized_access_point": "Obernil-Becken"} 1 +2024-09-10 15:48:30.952535 2024-09-10 15:48:30.952539 5c9c0db6-dae8-481f-82d9-b5055be4ffcd {"md5": "752ba3f15f3e5964940c397cb994ecb5", "pid": "041112504", "note": [{"label": ["Homepage - http://www.landkreisleipzig.de"], "noteType": "dataSource"}, {"label": ["1994 Eingliederung in den Landkreis Leipziger Land, 1.8.2008 Neugründung aus den Kreisen Leipziger Land und Muldentalkreis"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Kreis Leipzig-Land"}, {"authorized_access_point": "Muldentalkreis"}, {"authorized_access_point": "Landkreis Leipziger Land"}], "identifier": "http://d-nb.info/gnd/4111250-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4111250-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041112504", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4111250-7", "source": "GND"}], "variant_access_point": ["Leipzig (Kreis)", "Leipzig (Landkreis)"], "authorized_access_point": "Landkreis Leipzig"} 1 +2024-09-10 15:48:31.024925 2024-09-10 15:48:31.024928 1d3a71f3-f992-4837-b2ca-b361a86522cc {"md5": "dfb701814deeed464249f27561ba1546", "pid": "041087828", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/Wustrow_(Fischland)"], "noteType": "dataSource"}, {"label": ["Ort im Landkreis Vorpommern-Rügen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4108782-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4108782-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041087828", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4108782-3", "source": "GND"}], "variant_access_point": ["Wustrow", "Wustrow (Fischland)", "Wustro (Ostseebad)", "Wustrow (Fischland)", "Wustrow (Ribnitz-Damgarten)"], "authorized_access_point": "Wustrow Ostseebad"} 1 +2024-09-10 15:48:31.08569 2024-09-10 15:48:31.085694 68cc5ce4-0ea6-4828-b5bc-0e9d8e17d9cb {"md5": "420c0ec4ebdefc05c74206f1852f2d24", "pid": "041084675", "note": [{"label": ["Kreisstadt des Landkreises Wittmund, NW-Niedersachsen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4108467-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4108467-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041084675", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4108467-6", "source": "GND"}], "authorized_access_point": "Wittmund"} 1 +2024-09-10 15:48:31.150486 2024-09-10 15:48:31.15049 31d85df4-83ab-4e01-895c-3e6e0e930d71 {"md5": "926d2b4d3c262b1f2c35f34c56636e1f", "pid": "041063368", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Tihama"}], "identifier": "http://d-nb.info/gnd/4106336-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4106336-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041063368", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4106336-3", "source": "GND"}], "variant_access_point": ["Nord-Tihama"], "authorized_access_point": "Tihama - Nord"} 1 +2024-09-10 15:48:31.208595 2024-09-10 15:48:31.208598 0507b182-0478-43b0-a2d5-34a91e8cb4f6 {"md5": "17da4e4309488a98332c1a663d462771", "pid": "04106125X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=St%C3%BCtzerbach&oldid=244058408"], "noteType": "dataSource"}, {"label": ["Selbstständige Gemeinde; seit 1. Januar 2019 Ortsteil von Ilmenau im Ilm-Kreis, Thüringen."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Ilmenau-Stützerbach"}], "related": [{"authorized_access_point": "Stützerbach (Kreis Arnstadt)"}, {"authorized_access_point": "Stützerbach (Kreis Schleusingen)"}], "identifier": "http://d-nb.info/gnd/4106125-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4106125-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04106125X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4106125-1", "source": "GND"}], "authorized_access_point": "Stützerbach"} 1 +2024-09-10 15:48:31.27718 2024-09-10 15:48:31.277185 f4afff28-4701-4f04-83ff-a5710e395761 {"md5": "c2636090884388a873bf05dedea65dd3", "pid": "041058445", "note": [{"label": ["Homepage - https://www.scheidegg.de/"], "noteType": "dataSource"}, {"label": ["Markt im Landkreis Lindau (Bodensee), West-Allgäu, Regierungsbezirk Schwaben, wahrscheinl. im 6./7. Jh. von Alemannen besiedelt, 1255 urkundl. erwähnt"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4105844-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4105844-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041058445", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4105844-6", "source": "GND"}], "authorized_access_point": "Scheidegg"} 1 +2024-09-10 15:48:31.346351 2024-09-10 15:48:31.346355 cae4d423-4a32-4fe5-92d6-643bf8b893fc {"md5": "5a22d325c7601aa48fcd88809052d264", "pid": "041011848", "note": [{"label": ["Stadt im Kreis Nordfriesland"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4101184-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4101184-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041011848", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4101184-3", "source": "GND"}], "authorized_access_point": "Niebüll"} 1 +2024-09-10 15:48:31.409901 2024-09-10 15:48:31.409903 58948836-0530-4d08-a301-1dc01e93c92d {"md5": "ba6ad722594d8b8b5778c04d0bdc748a", "pid": "040994716", "note": [{"label": ["Ortsteil von Leipzig seit 1.1.1890"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Gohlis (Leipzig)"}], "identifier": "http://d-nb.info/gnd/4099471-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4099471-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040994716", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4099471-5", "source": "GND"}], "variant_access_point": ["Gohlis (Leipzig)"], "authorized_access_point": "Leipzig-Gohlis"} 1 +2024-09-10 15:48:33.116448 2024-09-10 15:48:33.116452 ffead796-3031-476a-a2b1-14f6e695e40d {"md5": "59753617a097ded87d78ea75997323ab", "pid": "04041146X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Nagold&oldid=218578103", "Homepage - https://www.nagold.de/"], "noteType": "dataSource"}, {"label": ["Stadt im Kreis Calw, Region Nordschwarzwald, Baden-Württemberg"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4041146-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4041146-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04041146X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4041146-1", "source": "GND"}], "variant_access_point": ["Stadt Nagold", "Große Kreisstadt Nagold"], "authorized_access_point": "Nagold"} 1 +2024-09-10 15:48:31.469349 2024-09-10 15:48:31.469353 4f343947-d22c-4aa5-9ff3-3907d06cfbf1 {"md5": "aa007bb2dc58e978bd9ce113d2a86171", "pid": "040967689", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=208609237"], "noteType": "dataSource"}, {"label": ["Ehemaliges Amt in Dänemark, nun Teil der Hauptstadtregion (Region Hovedstaden)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Region Hovedstaden"}], "identifier": "http://d-nb.info/gnd/4096768-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4096768-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040967689", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4096768-2", "source": "GND"}], "variant_access_point": ["Amt Kopenhagen", "Københavns Amt", "Kopenhagen (Amt)", "København (Amt)", "Københavns Amtskommune"], "authorized_access_point": "Amt København"} 1 +2024-09-10 15:48:31.543363 2024-09-10 15:48:31.543366 2b77d60a-7577-47d8-bd95-bea132fc6d1f {"md5": "2ede8f5c6535aaefc82328ac847a7e52", "pid": "040957977", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4095797-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4095797-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040957977", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4095797-4", "source": "GND"}], "variant_access_point": ["Scheidegg-Hummel"], "authorized_access_point": "Hummel (Scheidegg, Lindau)"} 1 +2024-09-10 15:48:31.618282 2024-09-10 15:48:31.618287 12c494d4-8ca6-4409-ac00-21c0c34cc650 {"md5": "c116d5283ce4b6d3364181265efdffa9", "pid": "040956075", "note": [{"label": ["Seit 1969 Ortsteil von Nümbrecht"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Homburg (Nümbrecht)"}, {"authorized_access_point": "Nümbrecht"}], "identifier": "http://d-nb.info/gnd/4095607-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4095607-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040956075", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4095607-6", "source": "GND"}], "authorized_access_point": "Nümbrecht-Homburg"} 1 +2024-09-10 15:48:31.68579 2024-09-10 15:48:31.685795 f0b31405-3cfd-418c-acbe-77d2952cff4c {"md5": "0d410477ced0f6c5a8841915727f21c5", "pid": "040952789", "note": [{"label": ["Gemeinde im Kreis Minden-Lübbecke"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4095278-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4095278-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040952789", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4095278-2", "source": "GND"}], "variant_access_point": ["Gemeinde Hille"], "authorized_access_point": "Hille"} 1 +2024-09-10 15:48:31.76872 2024-09-10 15:48:31.768723 90e3b06f-edb1-430a-8652-021fe5819609 {"md5": "880ab11ee09e852750f5214b63621cbc", "pid": "040912833", "note": [{"label": ["Wohnplatz im Ortsteil Koßwig der Stadt Vetschau/Spreewald im Landkreis Oberspreewald-Lausitz"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Vetschau/Spreewald"}], "identifier": "http://d-nb.info/gnd/4091283-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4091283-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040912833", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4091283-8", "source": "GND"}], "variant_access_point": ["Dubrawa", "Dubrau (Vetschau/Spreewald)"], "authorized_access_point": "Dubrau (Calau)"} 1 +2024-09-10 15:48:31.829587 2024-09-10 15:48:31.829592 5114c9dc-85b3-4c6b-a39d-d2c4c7f3c3db {"md5": "80d078f79d00c2599d01f3db1d79fc69", "pid": "040873862", "note": [{"label": ["unter - https://de.wikipedia.org/wiki/Bernkastel-Kues"], "noteType": "dataSource"}, {"label": ["Stadt an der Mosel, Kreis Bernkastel, 1. Hälfte 11. Jh. urkundl. erwähnt, 1291 Stadtrechte, 1332 erneuert, 1.4.1905 mit Kues zu Bernkastel-Kues zusammengeschlossen", "Kleinräumige Geographika und Körperschaften aus dem heutigen Ortsteil werden mit dem Doppelort angesetzt, es sei denn, es handelt sich um die nach § 209,5 Abs. 3+4 und § 605,7 Satz 2 als Ausnahme formulierten Fälle. Nach der Eingemeindung verwende den Doppelort als Ausstellungs- bzw. Kongressort"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bernkastel-Kues"}], "identifier": "http://d-nb.info/gnd/4087386-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4087386-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040873862", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4087386-9", "source": "GND"}], "authorized_access_point": "Bernkastel"} 1 +2024-09-10 15:48:31.890934 2024-09-10 15:48:31.890937 3bf8da02-4960-4997-a238-32cd9d5f99cf {"md5": "23739dcdc493d6da067e5418acb5d322", "pid": "040865622", "note": [{"label": ["Homepage - http://www.fuerstenfeld.at", "Homepage - https://fuerstenfeld.gv.at"], "noteType": "dataSource"}, {"label": ["2015 Altenmarkt bei Fürstenfeld und Übersbach eingemeindet"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Altenmarkt bei Fürstenfeld"}, {"authorized_access_point": "Übersbach"}], "identifier": "http://d-nb.info/gnd/4086562-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4086562-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040865622", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4086562-9", "source": "GND"}], "variant_access_point": ["Stadtgemeinde Fürstenfeld", "Fürstenfeld Thermenhauptstadt"], "authorized_access_point": "Fürstenfeld"} 1 +2024-09-10 15:48:31.953015 2024-09-10 15:48:31.953018 7450aafc-7eff-406e-93bb-3a01ab57bb2b {"md5": "50b0d6d1538820e6eed35eb2eb09d92d", "pid": "040805905", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Burk_(Forchheim)&oldid=237498787"], "noteType": "dataSource"}, {"label": ["1978 im Zuge der Gebietsreform in Bayern zusammen mit der ehemaligen Gemeinde Buckenhofen nach Forchheim eingemeindet"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Forchheim (Oberfr.)"}, {"authorized_access_point": "Burk (Landkreis Forchheim)"}], "identifier": "http://d-nb.info/gnd/4080590-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4080590-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040805905", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4080590-6", "source": "GND"}], "variant_access_point": ["Forchheim (Oberfr.)- Burk", "Burk (Forchheim-Burk)"], "authorized_access_point": "Forchheim-Burk"} 1 +2024-09-10 15:48:32.016896 2024-09-10 15:48:32.016901 4a0a488c-9ab5-4801-8485-4dfa68beb71a {"md5": "ac0e67be2b1ba6cb27838e1dac433399", "pid": "040802558", "note": [{"label": ["Provinzhauptstadt von Westjava, 1488 urkundl. erwähnt, bis 1972 Bandoeng"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)989919358", "source": "GND"}, {"type": "bf:Nbn", "value": "091404274", "source": "ZBW"}], "authorized_access_point": "Bandung"}], "identifier": "http://d-nb.info/gnd/4080255-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4080255-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040802558", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4080255-3", "source": "GND"}], "variant_access_point": ["Bandoeng", "Bandong", "Kota Kembang"], "authorized_access_point": "Bandung"} 1 +2024-09-10 15:48:32.089638 2024-09-10 15:48:32.089641 54ce2837-2f94-4211-8237-55b3486d882f {"md5": "ee4f2da38622d4f6cecb38460a9b693e", "pid": "040794903", "note": [{"label": ["Umfasst die fünf Kt. Luzern, Uri, Schwyz, Unterwalden (Ob- und Nidwalden) und Zug"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Schweiz"}], "identifier": "http://d-nb.info/gnd/4079490-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4079490-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040794903", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4079490-8", "source": "GND"}], "variant_access_point": ["Zentralschweiz", "Fünf Orte"], "authorized_access_point": "Innerschweiz"} 1 +2024-09-10 15:48:32.159987 2024-09-10 15:48:32.159991 ce43ac9a-6702-40c2-96fb-55771d36915e {"md5": "fdb480dbb23cb18d8fb96520ddee7bbf", "pid": "040768996", "note": [{"label": ["Sacherschließung: Benutzt für das Russische Reich 1547-1917, das Territorium für die Zeit davor, wenn der behandelte Raum grösser ist als die für diese Zeit existierenden Fürstentümer sowie für die Russische Föderation ab 1991. Für die Russische SFSR 1917-1991 benutze Russische SFSR."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Russische SFSR"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970009437", "source": "GND"}, {"type": "bf:Nbn", "value": "17534-6", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/17534-6"}], "authorized_access_point": "Russland"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970586809", "source": "GND"}, {"type": "bf:Nbn", "value": "10057012", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10057012"}], "authorized_access_point": "Russland"}], "identifier": "http://d-nb.info/gnd/4076899-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4076899-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040768996", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4076899-5", "source": "GND"}], "variant_access_point": ["Rußland", "Krievija", "Federazione Russa", "RF", "Großrussland", "Großrußland", "Russia (-1917; 1992-)", "Rossijskaja Imperija", "Russie", "Empire de Russie", "Russian Federation", "Federacja Rosyjska", "Rosja", "Rossija", "Rossijskaja Federacija", "Russische Föderation", "RF (Rossija)", "Russia", "Russland (-1917 ; 1992-)", "Russisches Reich", "РФ", "Российская Федерация", "Российская Империя"], "authorized_access_point": "Russland"} 1 +2024-09-10 15:48:32.222908 2024-09-10 15:48:32.222911 509c8944-b8dd-4df2-9953-598e9b623f91 {"md5": "f6f72b31ed7680aaa13659c2e5cc70d4", "pid": "040754766", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Herzogtum Schleswig"}, {"authorized_access_point": "Dänemark"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)992404371", "source": "GND"}, {"type": "bf:Nbn", "value": "091413621", "source": "ZBW"}], "authorized_access_point": "Nordschleswig"}], "identifier": "http://d-nb.info/gnd/4075476-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4075476-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040754766", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4075476-5", "source": "GND"}], "variant_access_point": ["Südliches Jütland", "Jütland", "Schleswig", "Südjütland", "Nordslesvig", "Dänemark", "Süddänemark", "Sønderjylland"], "authorized_access_point": "Nordschleswig"} 1 +2024-09-10 15:48:32.292174 2024-09-10 15:48:32.292179 83edce99-b6fe-4e83-9cef-5c412922dcf5 {"md5": "3764e5c2d751c14e5e58496d18f78263", "pid": "040738582", "note": [{"label": ["Winzerdorf an der Mosel, Kreis Bernkastel, 1.4.1905 mit Bernkastel zu Bernkastel-Kues zusammengeschlossen", "Kleinräumige Geographika und Körperschaften aus dem heutigen Ortsteil werden mit dem Doppelort angesetzt, es sei denn, es handelt sich um die nach § 209,5 Abs. 3+4 und § 605,7 Satz 2 als Ausnahme formulierten Fälle. Nach der Eingemeindung verwende den Doppelort als Ausstellungs- bzw. Kongressort"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bernkastel-Kues"}], "identifier": "http://d-nb.info/gnd/4073858-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4073858-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040738582", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4073858-9", "source": "GND"}], "variant_access_point": ["Cues"], "authorized_access_point": "Kues"} 1 +2024-09-10 15:48:32.381371 2024-09-10 15:48:32.381376 45dabc22-bffa-4470-bf03-a409aebdd090 {"md5": "27e9e304f8b06cd5634bcfd19af57ec4", "pid": "040693309", "note": [{"label": ["Homepage - https://www.bernkastel-kues.de"], "noteType": "dataSource"}, {"label": ["Stadt an der Mosel, Landkreis Bernkastel-Wittlich (-7-6-1969: (Land-)Kreis Bernkastel), 1.4.1905 durch Zusammenschluß von Bernkastel und Kues entstanden"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Bernkastel"}, {"authorized_access_point": "Kues"}], "identifier": "http://d-nb.info/gnd/4069330-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4069330-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040693309", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4069330-2", "source": "GND"}], "variant_access_point": ["Bernkastel-Cues", "Berncastel-Cues", "Stadt Bernkastel-Kues", "Stadtgemeinde Bernkastel-Kues", "Verbandsgemeinde Bernkastel-Kues"], "authorized_access_point": "Bernkastel-Kues"} 1 +2024-09-10 15:48:32.449397 2024-09-10 15:48:32.4494 e58e196f-3a15-43a4-807b-e17e3728fcb8 {"md5": "b02e0065122bf66220534602053c7d5a", "pid": "040680223", "note": [{"label": ["Der Kreis Züllichau-Schwiebus war ein preußischer Landkreis, der von 1816 bis 1945 in der Provinz Brandenburg bestand."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Kreis Schwiebus"}], "identifier": "http://d-nb.info/gnd/4068022-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4068022-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040680223", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4068022-8", "source": "GND"}], "variant_access_point": ["Land Schwiebus", "Landkreis Züllichau-Schwiebus", "Züllichau-Schwiebus (Kreis)"], "authorized_access_point": "Kreis Züllichau-Schwiebus"} 1 +2024-09-10 15:48:32.600348 2024-09-10 15:48:32.600353 f74340f9-b7ec-4c27-944b-6405df728b3e {"md5": "381c40211578a0afc81f0e4c42e16bdb", "pid": "04062501X", "note": [{"label": ["Homepage - http://www.comune.venezia.it"], "noteType": "dataSource"}, {"label": ["Hauptstadt der Region Venetien und der Metropolitanstadt Venedig"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)997977663", "source": "GND"}, {"type": "bf:Nbn", "value": "091419204", "source": "ZBW"}], "authorized_access_point": "Venedig"}], "identifier": "http://d-nb.info/gnd/4062501-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4062501-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04062501X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4062501-1", "source": "GND"}], "variant_access_point": ["Veneţia", "Venecija", "Benetia", "Venesia", "Staat Venedig", "Republik Venedig", "Città di Venezia", "Kronland Venedig", "Venetische Provinzen", "Province Venete", "Provincie Venete", "Venezia", "Venecia", "Venice", "Venecio", "Venise", "Vinegia", "Comune di Venezia", "Venegia", "Vinetia", "Venetia", "Venetik", "Wenetik", "Serenissima (Venezia)", "Enetiesi", "Henetiesi", "Vineggia"], "authorized_access_point": "Venedig"} 1 +2024-09-10 15:48:32.660862 2024-09-10 15:48:32.660865 5bd2ca2b-d269-47ca-9cf0-193c04185ff3 {"md5": "8fd17845f69aa668575dc3a120282f06", "pid": "040604853", "note": [{"label": ["Region in Mittelitalien mit den Provinzen Arezzo, Florenz, Grosseto, Livorno, Lucca, Massa-Carrara, Pisa, Pistoia, Prato, Siena. Hauptstadt: Florenz"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Etrurien"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256264652", "source": "GND"}, {"type": "bf:Nbn", "value": "8021", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_8021"}], "authorized_access_point": "Tursiops"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)997923210", "source": "GND"}, {"type": "bf:Nbn", "value": "091418437", "source": "ZBW"}], "authorized_access_point": "Toskana"}], "identifier": "http://d-nb.info/gnd/4060485-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4060485-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040604853", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4060485-8", "source": "GND"}], "variant_access_point": ["Toscana", "Tuscany", "Tuszien", "Tuscien", "Regione Toscana", "Granducato Toscana", "Großherzogtum Toskana"], "authorized_access_point": "Toskana"} 1 +2024-09-10 15:48:32.722125 2024-09-10 15:48:32.72213 47265204-4d4a-4396-8a4c-852038b1d014 {"md5": "5d9090cc923f34ed2048d19425f87a17", "pid": "04060151X", "note": [{"label": ["Küstentiefland im SW der Arabischen Halbinsel, Saudi-Arabien und Jemen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4060151-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4060151-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04060151X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4060151-1", "source": "GND"}], "variant_access_point": ["Tihamah"], "authorized_access_point": "Tihama"} 1 +2024-09-10 15:48:32.785318 2024-09-10 15:48:32.785323 74fbbb3a-e20c-4bf9-8781-35491d0c787c {"md5": "a4e23f869f4f5bb484d0a4af8eb202a3", "pid": "040594084", "note": [{"label": ["Stadt im Landkreis Potsdam-Mittelmark"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4059408-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4059408-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040594084", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4059408-7", "source": "GND"}], "authorized_access_point": "Teltow"} 1 +2024-09-10 15:48:32.887204 2024-09-10 15:48:32.887208 938807b2-e741-42e4-95f3-dea1315d7769 {"md5": "be5d4c1a8f9811ca74a3ae0099c04ea4", "pid": "04057749X", "note": [{"label": ["Dänische Amtskommune, seit 2007 gehört das Gebiet zur Region Sjælland"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Region Sjælland"}, {"authorized_access_point": "Nykøbing Falster"}], "related": [{"authorized_access_point": "Amt Præstø"}, {"authorized_access_point": "Amt Maribo"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)997893702", "source": "GND"}, {"type": "bf:Nbn", "value": "091417678", "source": "ZBW"}], "authorized_access_point": "Storstrom (Amt)"}], "identifier": "http://d-nb.info/gnd/4057749-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4057749-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04057749X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4057749-1", "source": "GND"}], "variant_access_point": ["Storstrøms (Amt)", "Storstrøms Amt", "Storstrøm (Amt)", "Storstrøm Amtskommune"], "authorized_access_point": "Amt Storstrøm"} 1 +2024-09-10 15:48:32.970922 2024-09-10 15:48:32.970927 a4e5d4ba-e165-482e-9da5-2c6af81d5bad {"md5": "b41dba74c2a8ad57636c31a4e8303a5c", "pid": "040516687", "note": [{"label": ["Homepage - http://www.saopaulo.sp.gov.br"], "noteType": "dataSource"}, {"label": ["Bundesstaat in Südostbrasilien"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Provinz São Paulo"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)997844345", "source": "GND"}, {"type": "bf:Nbn", "value": "091416604", "source": "ZBW"}], "authorized_access_point": "Sao Paulo (Staat)"}], "identifier": "http://d-nb.info/gnd/4051668-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4051668-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040516687", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4051668-4", "source": "GND"}], "variant_access_point": ["Estado de São Paulo", "S. Paulo (Staat)", "Estado de S. Paulo"], "authorized_access_point": "São Paulo (Staat)"} 1 +2024-09-10 15:48:33.044238 2024-09-10 15:48:33.044242 22012a9c-6ca5-4a1d-9277-248117853343 {"md5": "d5a7044a12489ec623ba3f4276d60c95", "pid": "040425134", "note": [{"label": ["Stadt im Landkreis Aurich, Ostfriesland, 1255 urkundl. erwähnt"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Landkreis Aurich"}], "identifier": "http://d-nb.info/gnd/4042513-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4042513-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040425134", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4042513-7", "source": "GND"}], "variant_access_point": ["Norden (Ostfriesland)", "Norden (Ostfr.)", "Norden in Ostfriesland", "Norden i. Ostfr.", "Norden (Ostfriesland)", "Stadt Norden", "Nörden"], "authorized_access_point": "Norden (Landkreis Aurich)"} 1 +2024-09-10 15:48:33.17733 2024-09-10 15:48:33.177334 19470d8c-2751-4aac-922b-61493a285da9 {"md5": "857dacddc906ff2ba8561fdbb360d7ad", "pid": "040376044", "note": [{"label": ["Stadt im Landkreis Leipzig (bis 1.8.2008 Landkreis Leipziger Land), 1.1.1934 durch Zusammenschluß von Oetzsch, Markkleeberg u. Gautzsch gegründet; später gebräuchliche Namen Markkleeberg-Mitte (Oetzsch) und Markkleeberg-West (Gautzsch)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Oetzsch"}, {"authorized_access_point": "Gautzsch"}], "identifier": "http://d-nb.info/gnd/4037604-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4037604-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040376044", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4037604-7", "source": "GND"}], "variant_access_point": ["Stadt Markkleeberg", "Cleburg"], "authorized_access_point": "Markkleeberg"} 1 +2024-09-10 15:48:33.235032 2024-09-10 15:48:33.235036 28ee316c-6ab2-41b3-906f-f99b4e42448b {"md5": "4a164766964f842c3fd9cb75b52f0ad9", "pid": "04037372X", "note": [{"label": ["Homepage - https://www.mannheim.de"], "noteType": "dataSource"}, {"label": ["Stadt im Regierungsbezirk Karlsruhe, Dorf 766 urkundl. erwähnt, Stadt ab 1607 planmäßig angelegt"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)992252873", "source": "GND"}, {"type": "bf:Nbn", "value": "091412013", "source": "ZBW"}], "authorized_access_point": "Mannheim"}], "identifier": "http://d-nb.info/gnd/4037372-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4037372-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04037372X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4037372-1", "source": "GND"}], "variant_access_point": ["Mannem", "Monnem", "Stadtgemeinde Mannheim", "Großherzoglich Badische Hauptstadt Mannheim", "Grh. Badische Hauptstadt Mannheim", "Badische Hauptstadt Mannheim", "Mannheim, Stadt im Quadrat", "Mannheim 2", "Stadt Mannheim", "Mannhemii", "Man(nhemium", "Mannehemium", "Interamnium"], "authorized_access_point": "Mannheim"} 1 +2024-09-10 15:48:33.296416 2024-09-10 15:48:33.29642 a5b5d693-7cc8-4fc9-974d-cca272bc5105 {"md5": "9b801a440d78a6665d4cad4dc40d7d41", "pid": "040368114", "note": [{"label": ["Ortsteil von Bernkastel-Kues"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Bernkastel-Kues"}], "identifier": "http://d-nb.info/gnd/4036811-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4036811-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040368114", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4036811-7", "source": "GND"}], "variant_access_point": ["Machern (Bernkastel-Kues)"], "authorized_access_point": "Bernkastel-Kues-Machern"} 1 +2024-09-10 15:48:33.354881 2024-09-10 15:48:33.354885 4571e7f5-018f-45f0-bb60-e4ba901ef744 {"md5": "93ba11db5bf6f53f9f47cb24e5f7c695", "pid": "040357422", "note": [{"label": ["Hauptstadt von Peru u. der gleichnamigen Provinz, 6.1.1535 als Ciudad de Los Reyes gegründet"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)992096243", "source": "GND"}, {"type": "bf:Nbn", "value": "091411270", "source": "ZBW"}], "authorized_access_point": "Lima"}], "identifier": "http://d-nb.info/gnd/4035742-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4035742-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040357422", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4035742-9", "source": "GND"}], "variant_access_point": ["Ciudad de Los Reyes"], "authorized_access_point": "Lima"} 1 +2024-09-10 15:48:33.420784 2024-09-10 15:48:33.420787 45643d3c-4f10-415c-8b26-105e6fc98291 {"md5": "4983f347ec378446fce688b6957202f4", "pid": "040346919", "note": [{"label": ["Stadt im Naturpark Vogelsberg, Landkreis Gießen, 786 urkundl. erwähnt, 1405 als Stadt bezeichnet"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Landkreis Gießen"}], "identifier": "http://d-nb.info/gnd/4034691-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4034691-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040346919", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4034691-2", "source": "GND"}], "variant_access_point": ["Laubach (Oberhessen)", "Laubach in Hessen"], "authorized_access_point": "Laubach (Landkreis Gießen)"} 1 +2024-09-10 15:48:33.487512 2024-09-10 15:48:33.487515 1d26fbb1-995b-4688-8e19-abac8e356770 {"md5": "19f6de4e02aa345041de9a5be078297d", "pid": "040304817", "note": [{"label": ["Homepage - https://www.kiel.de/"], "noteType": "dataSource"}, {"label": ["Landeshauptstadt von Schleswig-Holstein seit 23.8.1946, 1233 gegründet, 1242 Stadtrecht"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)991666976", "source": "GND"}, {"type": "bf:Nbn", "value": "09141024X", "source": "ZBW"}], "authorized_access_point": "Kiel"}], "identifier": "http://d-nb.info/gnd/4030481-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4030481-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040304817", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4030481-4", "source": "GND"}], "variant_access_point": ["Gross-Kiel", "Chilonium", "Landeshauptstadt Kiel", "Kilia Holsatorum", "Kilonum Holsatorum", "Chilomium", "Kilia", "Kiliae Holsatorum", "Kilonia", "Kylis", "Ķīle"], "authorized_access_point": "Kiel"} 1 +2024-09-10 15:48:33.551193 2024-09-10 15:48:33.551197 5bce1553-73b3-4d6f-a0ca-d77545e639ff {"md5": "f4a9cbc3e3dcbc91a6c72609b79f5177", "pid": "040296377", "note": [{"label": ["Stadt im Wetteraukreis"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Gross-Karben"}, {"authorized_access_point": "Klein-Karben"}, {"authorized_access_point": "Kloppenheim"}, {"authorized_access_point": "Okarben"}, {"authorized_access_point": "Rendel"}, {"authorized_access_point": "Petterweil"}], "identifier": "http://d-nb.info/gnd/4029637-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4029637-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040296377", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4029637-4", "source": "GND"}], "authorized_access_point": "Karben"} 1 +2024-09-10 15:48:33.623814 2024-09-10 15:48:33.623818 e22cdba6-eac4-44cc-8674-85669e3b0cd8 {"md5": "1ea2b9d580f1fac2dd6f8591b0156e16", "pid": "040288099", "note": [{"label": ["Homepage - https://www.judenburg.at"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4028809-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4028809-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040288099", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4028809-2", "source": "GND"}], "variant_access_point": ["Stadtgemeinde Judenburg"], "authorized_access_point": "Judenburg"} 1 +2024-09-10 15:48:33.683476 2024-09-10 15:48:33.68348 fd95bcce-b9f0-4260-96a9-254b4f5ebc03 {"md5": "4492b0cb69c1a69a5be1e04e5c0e2dae", "pid": "04024010X", "note": [{"label": ["Homepage - https://heidenheim.hahnenkamm.de/"], "noteType": "dataSource"}, {"label": ["Markt im Landkreis Weißenburg-Gunzenhausen, Regierungsbezirk Mittelfranken, Kloster 752 gegründet"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4024010-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4024010-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04024010X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4024010-1", "source": "GND"}], "variant_access_point": ["Heidenheim (Landkreis Weißenburg-Gunzenhausen)", "Heidenheim (Mittelfranken)", "Markt Heidenheim", "Heidenheim (am Hahnenkamm)", "Heidenheim (Hahnenkamm)", "Heidenheim am Hahnenkamm"], "authorized_access_point": "Heidenheim"} 1 +2024-09-10 15:48:33.741052 2024-09-10 15:48:33.741055 a220d29e-07bb-4003-88a7-54fcb1db811b {"md5": "91baba0e0c279c97eb124f3e05e31910", "pid": "040183408", "note": [{"label": ["Homepage - https://www.freilassing.de/home/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/4018340-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4018340-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040183408", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4018340-3", "source": "GND"}], "variant_access_point": ["Stadt Freilassing"], "authorized_access_point": "Freilassing"} 1 +2024-09-10 15:48:33.800887 2024-09-10 15:48:33.800891 c3c448b0-f898-43e3-8a65-4d019042cb73 {"md5": "e7657dee80408c1a7a67bff199354ab7", "pid": "040093417", "note": [{"label": ["Homepage - https://www.calw.de"], "noteType": "dataSource"}, {"label": ["Kreisstadt des Landkreises Calw; 1075 urkundl. erwähnt, seit 13. Jh. Stadtrecht"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Calw-Hirsau (1975)"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)990001474", "source": "GND"}, {"type": "bf:Nbn", "value": "091405505", "source": "ZBW"}], "authorized_access_point": "Calw"}], "identifier": "http://d-nb.info/gnd/4009341-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4009341-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040093417", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4009341-4", "source": "GND"}], "variant_access_point": ["Stadt Calw", "Große Kreisstadt Calw", "Kalw"], "authorized_access_point": "Calw"} 1 +2024-09-10 15:48:33.861216 2024-09-10 15:48:33.861221 2a86314f-d019-4cba-b599-ab0c373fb2ab {"md5": "c74bfbfcd4348ab76a7b1a29eb0454cc", "pid": "04009300X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Peru"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)989991571", "source": "GND"}, {"type": "bf:Nbn", "value": "091405467", "source": "ZBW"}], "authorized_access_point": "Cajamarca (Dep.)"}], "identifier": "http://d-nb.info/gnd/4009300-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4009300-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04009300X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4009300-1", "source": "GND"}], "variant_access_point": ["Cajamarca (Departamento)", "Cajamarca (Dep.)", "Departamento de Cajamarca"], "authorized_access_point": "Departement Cajamarca"} 1 +2024-09-10 15:48:33.927877 2024-09-10 15:48:33.927881 6237de7b-2dc4-4386-a748-3ca19051a3ee {"md5": "54492ffd53e69ea6e912ecaaafe1d087", "pid": "040055744", "note": [{"label": ["Homepage - http://www.gemeinde.berchtesgaden.de/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)989944697", "source": "GND"}, {"type": "bf:Nbn", "value": "091404614", "source": "ZBW"}], "authorized_access_point": "Berchtesgaden"}], "identifier": "http://d-nb.info/gnd/4005574-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4005574-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040055744", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4005574-7", "source": "GND"}], "variant_access_point": ["Markt Berchtesgaden"], "authorized_access_point": "Berchtesgaden"} 1 +2024-09-10 15:48:34.003791 2024-09-10 15:48:34.003794 1f83c5e1-efdb-411d-bd7f-215f280701a6 {"md5": "b2b30b8927368551420a59815529ce7b", "pid": "040024024", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=243938940"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Amt Sønderjylland"}, {"authorized_access_point": "Apenrade"}], "identifier": "http://d-nb.info/gnd/4002402-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4002402-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040024024", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4002402-7", "source": "GND"}], "variant_access_point": ["Amt Apenrade", "Amt Abenraa", "Apenrade Amt", "Abenraa Amt", "Amt Abenra", "Åbenrå Amt", "Åbenrå (Amt)", "Abenraa (Amt)", "Apenrade (Amt)"], "authorized_access_point": "Amt Åbenrå"} 1 +2024-09-10 15:48:34.070866 2024-09-10 15:48:34.070869 298c51e2-4222-49a5-bf7b-e0e1677b13fa {"md5": "3b9ed6330e5227ec4f2fd02097ceb8fe", "pid": "030141605", "note": [{"label": ["Stadtteil von Grünberg im Landkreis Gießen, Hessen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Grünberg (Landkreis Gießen)"}, {"authorized_access_point": "Stockhausen (Landkreis Gießen)"}], "identifier": "http://d-nb.info/gnd/3014160-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3014160-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)030141605", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)3014160-6", "source": "GND"}], "variant_access_point": ["Grünberg (Landkreis Gießen-Stockhausen)", "Stockhausen (Grünberg-Stockhausen)"], "authorized_access_point": "Grünberg-Stockhausen"} 1 +2024-09-10 15:48:34.136235 2024-09-10 15:48:34.136238 d67ef51b-c4b7-418f-87ca-1d64ca618c7d {"md5": "13b782dc7052893cb23df1434b6d2c6e", "pid": "030125898", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Rodheim_vor_der_H%C3%B6he"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Rosbach-Rodheim"}], "identifier": "http://d-nb.info/gnd/3012589-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3012589-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)030125898", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)3012589-3", "source": "GND"}], "variant_access_point": ["Rodheim (Höhe)", "Rottheim"], "authorized_access_point": "Rodheim vor der Höhe"} 1 +2024-09-10 15:48:34.197715 2024-09-10 15:48:34.197719 a84e7b1e-cf94-48a9-aa83-8d0940cd38cf {"md5": "9212789ec77c5fb4e10423dc06dd5d11", "pid": "030089050", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}], "identifier": "http://d-nb.info/gnd/3008905-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3008905-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)030089050", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)3008905-0", "source": "GND"}], "authorized_access_point": "Leipzig-Süd"} 1 +2024-09-10 15:48:34.259281 2024-09-10 15:48:34.259284 8bdd5fd0-45fc-4c23-8b13-59e5f9fc07cb {"md5": "5b29c568deeca632745c5748d2d85e85", "pid": "007749023", "note": [{"label": ["Ehemaliges Amt, gehörte seit 2002 zu Bornholms Regionskommune und seit 2007 wie Kopenhagen und Frederiksberg zur Region Hovedstaden und hat seinen Amtstatus verloren"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bornholms Regionskommune"}, {"authorized_access_point": "Rønne"}], "identifier": "http://d-nb.info/gnd/2128029-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2128029-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)007749023", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)2128029-0", "source": "GND"}], "variant_access_point": ["Bornholms Amt", "Bornholm (Amt)"], "authorized_access_point": "Amt Bornholm"} 1 +2024-09-10 15:48:34.321299 2024-09-10 15:48:34.321302 41f12ee9-04e7-42b7-82fa-695a378ea5ad {"md5": "9a12b11f4c373e66e9ecc0ce018bcfc1", "pid": "004280768", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Egling"}], "identifier": "http://d-nb.info/gnd/1046115-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1046115-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)004280768", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1046115-2", "source": "GND"}], "authorized_access_point": "Deining (Wolfratshausen)"} 1 +2024-09-10 15:48:34.382358 2024-09-10 15:48:34.382364 e20ca8a5-f5a4-48f0-8911-a33fe6e46b89 {"md5": "4d07af54eb6a119cd60dca0566bb5422", "pid": "004205731", "note": [{"label": ["Internet - http://rocor.de/de"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1032392-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1032392-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)004205731", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1032392-2", "source": "GND"}], "variant_access_point": ["Russian Orthodox Church outside Russia", "Russian Orthodox Church outside Russia", "Deutsche Diözese der Russischen Orthodoxen Kirche im Ausland", "Russian Orthodox Church outside Russia", "Russische Orthodoxe Diözese des Orthodoxen Bischofs von Berlin und Deutschland", "Russische Orthodoxe Diözese von Berlin und Deutschland", "Russische Orthodoxe Kirche im Ausland"], "authorized_access_point": "Russisch-Orthodoxe Diözese des Orthodoxen Bischofs von Berlin und Deutschland"} 1 +2024-09-10 15:48:34.446029 2024-09-10 15:48:34.446033 db4351e3-a443-464b-95a1-0591e9ea7744 {"md5": "a0d83e3e52729011e1f310a6c22f3d28", "pid": "002631628", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bolków"}], "identifier": "http://d-nb.info/gnd/263162-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/263162-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)002631628", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)263162-3", "source": "GND"}], "authorized_access_point": "Bolkenhain"} 1 +2024-09-10 15:48:34.509082 2024-09-10 15:48:34.509085 8adffbfa-11c6-4cb6-8308-254c440e0b0d {"md5": "61c7246b52eddcd8a087d68b8c433ee5", "pid": "001101536", "note": [{"label": ["Stadt im County Leicestershire, East Midlands, England, 1086 urkundl. erwähnt"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifier": "http://d-nb.info/gnd/110153-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/110153-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)001101536", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)110153-5", "source": "GND"}], "authorized_access_point": "Melton Mowbray"} 1 +2024-09-10 15:48:34.570931 2024-09-10 15:48:34.570934 c31d1429-b743-4c53-b778-d52ec8aaf675 {"md5": "1a1cf17310772097fe06965a1269c9e3", "pid": "000347078", "note": [{"label": ["21.6.1975 nach Aalen eingemeindet, im Ostalbkreis, Baden-Württemberg"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Aalen"}, {"authorized_access_point": "Wasseralfingen"}], "identifier": "http://d-nb.info/gnd/34707-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/34707-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)000347078", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)34707-3", "source": "GND"}], "authorized_access_point": "Aalen-Wasseralfingen"} 1 diff --git a/data/plgnd_pidstore.csv b/data/plgnd_pidstore.csv index 07648841..7832c677 100644 --- a/data/plgnd_pidstore.csv +++ b/data/plgnd_pidstore.csv @@ -1,913 +1,720 @@ -2024-07-16 19:07:20.121029 2024-07-16 19:07:20.121037 plgnd 1335257845 R rec 4f7faa9c-6c06-4277-88f3-d26fa854ef85 -2024-07-16 19:07:20.219524 2024-07-16 19:07:20.219529 plgnd 1335257101 R rec 2e4c32cc-6d76-4184-8533-48a9714ae4bf -2024-07-16 19:07:20.296297 2024-07-16 19:07:20.296302 plgnd 133525675X R rec e3ef116b-2488-442b-9f39-354c129fcbd1 -2024-07-16 19:07:20.345839 2024-07-16 19:07:20.345845 plgnd 133525207X R rec a874fcf0-2d52-442c-b013-881a15d02dd1 -2024-07-16 19:07:20.39531 2024-07-16 19:07:20.395315 plgnd 1335249966 R rec 59d2c463-5914-4c53-b159-6f7456367489 -2024-07-16 19:07:20.446528 2024-07-16 19:07:20.446535 plgnd 1335243240 R rec 5fdae311-c514-4943-a530-338bc892ee91 -2024-07-16 19:07:20.496332 2024-07-16 19:07:20.496337 plgnd 133523909X R rec 449dc92b-0ea0-49a6-aa17-8b87f2228d26 -2024-07-16 19:07:20.557505 2024-07-16 19:07:20.557609 plgnd 1335217711 R rec 88d26b8e-f018-49fd-ba96-9ac40b615b3b -2024-07-16 19:07:20.64087 2024-07-16 19:07:20.640883 plgnd 1335201653 R rec 427c684d-d1fd-412b-9387-f0b997b0e0f0 -2024-07-16 19:07:20.734336 2024-07-16 19:07:20.734346 plgnd 1335141790 R rec 7c3b1c81-4dcd-4ab6-853c-7330828f17bc -2024-07-16 19:07:20.815287 2024-07-16 19:07:20.815298 plgnd 1335107711 R rec a38146f3-f0b4-4c45-b710-f30108a5f668 -2024-07-16 19:07:20.897085 2024-07-16 19:07:20.897096 plgnd 1335104917 R rec 7c94df85-56af-4708-82f6-9cfefdc8284e -2024-07-16 19:07:20.983542 2024-07-16 19:07:20.983552 plgnd 1335098399 R rec 3faf1e19-5b8b-4907-90e3-59e17c353cdc -2024-07-16 19:07:21.066019 2024-07-16 19:07:21.06603 plgnd 1335092390 R rec 1b3c2a53-67ea-44ea-9c9e-149336b7842a -2024-07-16 19:07:21.150024 2024-07-16 19:07:21.150036 plgnd 1335092196 R rec 71454204-9a62-45ff-b488-889f6bd1c97f -2024-07-16 19:07:21.25494 2024-07-16 19:07:21.254952 plgnd 1335086005 R rec 725814f4-57de-4448-ab25-e5c8623ea3bc -2024-07-16 19:07:21.313969 2024-07-16 19:07:21.313975 plgnd 1335058036 R rec 6d7fdbe4-a7ab-4449-9114-acb0ca4a8436 -2024-07-16 19:07:21.405205 2024-07-16 19:07:21.405216 plgnd 1334938016 R rec 6a4d1e3e-7a31-46ed-9d74-c9498378ac10 -2024-07-16 19:07:21.480824 2024-07-16 19:07:21.480835 plgnd 1334917981 R rec 3ddc7186-9427-4842-9aa4-9f3d1ce41c3d -2024-07-16 19:07:21.565055 2024-07-16 19:07:21.565069 plgnd 1334916292 R rec 454e13ce-62a3-4ed6-ae78-5484dfbea9c7 -2024-07-16 19:07:21.648983 2024-07-16 19:07:21.648994 plgnd 1334913498 R rec 71e0bfb7-c4e0-4b3a-a19f-2c36fca5778b -2024-07-16 19:07:21.73576 2024-07-16 19:07:21.735771 plgnd 1334907684 R rec 9bbfddd7-7c53-4205-9679-659a03f24f62 -2024-07-16 19:07:21.815213 2024-07-16 19:07:21.815228 plgnd 1334907048 R rec 39974569-0892-40bd-9c65-5660384f7f29 -2024-07-16 19:07:21.902428 2024-07-16 19:07:21.902439 plgnd 1334904251 R rec 9e3fe4ed-31a8-4e1d-ab8d-a6cb5ee0effd -2024-07-16 19:07:21.992673 2024-07-16 19:07:21.992685 plgnd 133490281X R rec 71e3ca6a-c7e4-402f-b17f-eee25034bea0 -2024-07-16 19:07:22.077647 2024-07-16 19:07:22.077658 plgnd 1334900256 R rec 4b15cd73-38d2-47de-896a-2db8af49a5a3 -2024-07-16 19:07:22.16076 2024-07-16 19:07:22.160776 plgnd 133489874X R rec 48735cf2-ea46-4433-b8db-be4eedddfc28 -2024-07-16 19:07:22.241161 2024-07-16 19:07:22.241171 plgnd 1334896755 R rec df3d7c35-f6ea-4478-8022-e1f52b6c640d -2024-07-16 19:07:22.327665 2024-07-16 19:07:22.327671 plgnd 1334893594 R rec 90348e5d-7f95-4a2c-af17-d89595a58445 -2024-07-16 19:07:22.374219 2024-07-16 19:07:22.374224 plgnd 133489129X R rec af2642c8-f873-4be1-9c44-a6716dfa5d62 -2024-07-16 19:07:22.432923 2024-07-16 19:07:22.432935 plgnd 1334878234 R rec d8785b6c-3acf-47e8-9ae2-73544be421fe -2024-07-16 19:07:22.507443 2024-07-16 19:07:22.507459 plgnd 1334875707 R rec 8bdbabe7-35a0-4ddf-9dfc-2ee44fac0107 -2024-07-16 19:07:22.586035 2024-07-16 19:07:22.586046 plgnd 1334874387 R rec 8744df06-e8df-40da-abb8-0def692d3c2b -2024-07-16 19:07:22.667829 2024-07-16 19:07:22.667848 plgnd 1334867097 R rec 02f31023-5feb-4a3a-abe8-7b12701d04c1 -2024-07-16 19:07:22.748284 2024-07-16 19:07:22.748296 plgnd 1334866473 R rec 198ac5f7-8755-48ca-a82e-bed60bcdec18 -2024-07-16 19:07:22.838885 2024-07-16 19:07:22.8389 plgnd 1334866082 R rec 814836e8-21fa-42cf-b110-20350468e4f9 -2024-07-16 19:07:22.939134 2024-07-16 19:07:22.939148 plgnd 1334865981 R rec dcb79d85-0289-4c91-a9c8-496496ffb2ee -2024-07-16 19:07:23.009997 2024-07-16 19:07:23.010008 plgnd 1334804621 R rec 7b36f5f1-3f40-4de3-8ba8-c7166d8b9200 -2024-07-16 19:07:23.098879 2024-07-16 19:07:23.098895 plgnd 1334804141 R rec 3d0ff695-0765-4516-8f81-96474eb9a4ff -2024-07-16 19:07:23.18523 2024-07-16 19:07:23.185246 plgnd 1334801304 R rec 5ad05ac3-1ccb-4aba-92f8-7aca6dccc713 -2024-07-16 19:07:23.281464 2024-07-16 19:07:23.281481 plgnd 1334789134 R rec 90acd255-dd4f-44d5-9165-3b6010fcf492 -2024-07-16 19:07:23.361485 2024-07-16 19:07:23.361491 plgnd 1334785422 R rec 0d2d758d-4526-4812-a36c-93d96e669805 -2024-07-16 19:07:23.414086 2024-07-16 19:07:23.414092 plgnd 1334784493 R rec 7ef4dc5a-b1cd-47ae-8fa7-f2b5ebd55a26 -2024-07-16 19:07:23.475255 2024-07-16 19:07:23.475265 plgnd 1334779015 R rec 5df9c955-af09-40c9-8fcf-6f2bcd70974d -2024-07-16 19:07:23.555458 2024-07-16 19:07:23.555468 plgnd 1334766363 R rec fb901215-70ec-4eee-b340-2c19fa195806 -2024-07-16 19:07:23.637977 2024-07-16 19:07:23.637987 plgnd 1334756465 R rec 672d8c66-560d-4178-b083-969d4bbbaf98 -2024-07-16 19:07:23.719068 2024-07-16 19:07:23.719083 plgnd 1334736340 R rec e988b0a7-bc61-4bb9-80e1-5452d2e3c3d9 -2024-07-16 19:07:23.800211 2024-07-16 19:07:23.800227 plgnd 1334729824 R rec e089d1d4-fe1c-4217-a334-608e5e248931 -2024-07-16 19:07:23.882692 2024-07-16 19:07:23.882704 plgnd 1334725756 R rec 6c1f3870-562a-48b9-ae2e-f989b555f715 -2024-07-16 19:07:23.968078 2024-07-16 19:07:23.968089 plgnd 1334725691 R rec e25d9afe-3c2a-4b2e-b810-0e6352726c16 -2024-07-16 19:07:24.053725 2024-07-16 19:07:24.053735 plgnd 1334671486 R rec 2779c3ad-9e5d-43d7-b9eb-9ede6bbd2cce -2024-07-16 19:07:24.135816 2024-07-16 19:07:24.135829 plgnd 1334670560 R rec b2ab453a-1044-4514-bb77-f4c86d0591ac -2024-07-16 19:07:24.227093 2024-07-16 19:07:24.227105 plgnd 1334670390 R rec e67d37ff-6ada-4538-9bd1-944b2450819c -2024-07-16 19:07:24.307665 2024-07-16 19:07:24.307681 plgnd 1334670323 R rec 2247e4f7-75e8-4f5a-9600-df7db9672ee1 -2024-07-16 19:07:24.393973 2024-07-16 19:07:24.393979 plgnd 1334670048 R rec 40b9c1f0-0c21-4fd7-b045-2d51e5c02bec -2024-07-16 19:07:24.44286 2024-07-16 19:07:24.442866 plgnd 1334666474 R rec 258af20d-61f8-4077-828f-71aa35c33b03 -2024-07-16 19:07:24.506023 2024-07-16 19:07:24.506036 plgnd 1334665036 R rec d39d6133-88ac-4f61-a7c0-731f8a9c32f4 -2024-07-16 19:07:24.585907 2024-07-16 19:07:24.585926 plgnd 1334665028 R rec ec4e2e14-25da-484a-8d33-b565658342d1 -2024-07-16 19:07:24.676042 2024-07-16 19:07:24.676058 plgnd 1334664242 R rec 90559d8e-4311-4f88-ae28-0231305820ec -2024-07-16 19:07:24.764857 2024-07-16 19:07:24.764873 plgnd 1334661073 R rec db50523a-c451-47bb-831c-e75cb4f0a044 -2024-07-16 19:07:24.85639 2024-07-16 19:07:24.856402 plgnd 1334658196 R rec 2228d8c2-3719-4dc8-99d4-24750e51fb57 -2024-07-16 19:07:24.939113 2024-07-16 19:07:24.93913 plgnd 1334657726 R rec 1dd5254e-2e2c-4a8a-83c8-988f16983167 -2024-07-16 19:07:25.021328 2024-07-16 19:07:25.021339 plgnd 133465641X R rec b7d7affa-099c-4c27-803c-4b7f1a2fedef -2024-07-16 19:07:25.102646 2024-07-16 19:07:25.10266 plgnd 1334632707 R rec 092519d5-d9f6-42dd-a422-c3df9f5e2caa -2024-07-16 19:07:25.186093 2024-07-16 19:07:25.186103 plgnd 133463209X R rec c489b4a9-11ec-43aa-b976-957588f9f367 -2024-07-16 19:07:25.265599 2024-07-16 19:07:25.265676 plgnd 133456325X R rec 0f3c87d2-ea8d-4936-a6ab-15659243b5df -2024-07-16 19:07:25.358419 2024-07-16 19:07:25.358432 plgnd 1334560994 R rec 6b9267a4-1f9d-4517-996e-57ac70248f49 -2024-07-16 19:07:25.434622 2024-07-16 19:07:25.434628 plgnd 1334559805 R rec 32a8f719-eca4-4ad0-9af6-902e7c13d028 -2024-07-16 19:07:25.486977 2024-07-16 19:07:25.486983 plgnd 1334558590 R rec c167706e-3527-4690-804c-6c12d725e69c -2024-07-16 19:07:25.550551 2024-07-16 19:07:25.550564 plgnd 1334556687 R rec da6682fb-a148-4dbf-b072-151cd4d6d339 -2024-07-16 19:07:25.63405 2024-07-16 19:07:25.634065 plgnd 1334554471 R rec 241ae07b-25e5-4108-b458-4f6a5a730ab9 -2024-07-16 19:07:25.724207 2024-07-16 19:07:25.724218 plgnd 1334554218 R rec cb534278-9b22-4443-9613-4912da11c75f -2024-07-16 19:07:25.81461 2024-07-16 19:07:25.814622 plgnd 1334552940 R rec 2ebae61a-55e5-4fb3-9bc8-6260fd80abd7 -2024-07-16 19:07:25.910661 2024-07-16 19:07:25.910677 plgnd 1334552908 R rec 275753ba-de03-4eaf-a4fd-3f46259b24bf -2024-07-16 19:07:26.00924 2024-07-16 19:07:26.009252 plgnd 1334552606 R rec 38a4f7eb-f886-4b73-8668-9901cc1c8dd6 -2024-07-16 19:07:26.114047 2024-07-16 19:07:26.114066 plgnd 1334538085 R rec 618f3eb0-d174-45be-b0aa-d30b4f70bb62 -2024-07-16 19:07:26.192636 2024-07-16 19:07:26.192648 plgnd 133453666X R rec db54e550-56ca-423c-9ff3-fb2167ed8af1 -2024-07-16 19:07:26.274327 2024-07-16 19:07:26.274338 plgnd 1334531153 R rec 46dab441-b632-41b6-9de5-2e7cf6fc29cf -2024-07-16 19:07:26.357047 2024-07-16 19:07:26.357062 plgnd 1334516766 R rec f462d33c-070d-4818-99a3-f4741ed7afa0 -2024-07-16 19:07:26.455205 2024-07-16 19:07:26.455212 plgnd 1334502854 R rec f84c93e7-0565-454d-ae76-1e8a471cf184 -2024-07-16 19:07:26.504543 2024-07-16 19:07:26.504548 plgnd 1334486573 R rec 1208f776-6104-4461-a060-750062aaed04 -2024-07-16 19:07:26.564562 2024-07-16 19:07:26.564574 plgnd 1334485763 R rec 87520ba7-53c4-4329-977c-00c9809ad9df -2024-07-16 19:07:26.655502 2024-07-16 19:07:26.655514 plgnd 1334319561 R rec 36d3fb40-a297-4cb5-892e-a4b4c8d853a7 -2024-07-16 19:07:26.7512 2024-07-16 19:07:26.751213 plgnd 1334318492 R rec 5c31bb49-3ab8-4311-998b-48d5b2c3aeac -2024-07-16 19:07:26.833802 2024-07-16 19:07:26.833813 plgnd 1334318069 R rec 305821e9-88bc-4ae3-880e-7dcf70fb8ff4 -2024-07-16 19:07:26.930966 2024-07-16 19:07:26.930982 plgnd 1334313776 R rec 50d95bc3-dca3-4770-a5e3-4d57131270c4 -2024-07-16 19:07:27.015842 2024-07-16 19:07:27.015858 plgnd 1334312974 R rec 4613385b-b264-4578-b0f1-26837f454f9b -2024-07-16 19:07:27.098651 2024-07-16 19:07:27.098668 plgnd 1334310661 R rec 5694527a-edca-4567-9635-da95c2e29d9a -2024-07-16 19:07:27.205986 2024-07-16 19:07:27.206015 plgnd 1334302111 R rec 51a379ed-74db-485b-b1d5-05e8f0381c48 -2024-07-16 19:07:27.291702 2024-07-16 19:07:27.291713 plgnd 1334300054 R rec d0fff42b-3bec-4df9-bc04-82cb5c2171c5 -2024-07-16 19:07:27.375093 2024-07-16 19:07:27.375104 plgnd 133422725X R rec 88209669-d68e-45f3-9987-ad8a4c382303 -2024-07-16 19:07:27.451738 2024-07-16 19:07:27.451751 plgnd 1334221979 R rec d83ae0a8-e989-4058-8a8c-11e0d4e98480 -2024-07-16 19:07:27.527799 2024-07-16 19:07:27.527805 plgnd 1334198845 R rec 4b2ec116-3d86-44d6-b97d-6520ed5f186b -2024-07-16 19:07:27.58482 2024-07-16 19:07:27.584831 plgnd 1334117918 R rec 6fd877db-46d3-434d-b2c8-1af2690c9abe -2024-07-16 19:07:27.657299 2024-07-16 19:07:27.65731 plgnd 1334101221 R rec b77e2985-248a-40ac-8df0-574d3a1b39a0 -2024-07-16 19:07:27.739585 2024-07-16 19:07:27.739601 plgnd 1334086826 R rec a4994ba7-1c01-400b-99a2-842864df3ef6 -2024-07-16 19:07:27.822388 2024-07-16 19:07:27.822399 plgnd 1334027250 R rec c428d14c-64f0-415f-bfb2-befb3aa08f1b -2024-07-16 19:07:27.910004 2024-07-16 19:07:27.910015 plgnd 1334024804 R rec 3a7fd3fd-0c53-4de3-8892-ff4e775a2b1d -2024-07-16 19:07:27.993354 2024-07-16 19:07:27.99337 plgnd 1334011753 R rec bca0384d-ebe4-47d0-bc90-2cc5b8802415 -2024-07-16 19:07:28.073717 2024-07-16 19:07:28.073728 plgnd 1334011079 R rec c713bb13-b788-4574-a7fa-aee8e73cd466 -2024-07-16 19:07:28.149011 2024-07-16 19:07:28.149022 plgnd 1334001529 R rec cf1bcb1b-574f-45e0-80ac-7194911c25d3 -2024-07-16 19:07:28.239929 2024-07-16 19:07:28.239941 plgnd 1333989954 R rec 114a4d75-a0d1-46ea-9128-1f2ff0d10f50 -2024-07-16 19:07:28.326483 2024-07-16 19:07:28.326498 plgnd 1333660758 R rec 44b2cd83-2a58-40b6-9489-403e6cc67bef -2024-07-16 19:07:28.419626 2024-07-16 19:07:28.419642 plgnd 1333582501 R rec 8a990c84-8ce1-4e7b-8f31-43b929c0fda1 -2024-07-16 19:07:28.507383 2024-07-16 19:07:28.5074 plgnd 1333570511 R rec 27cf7832-d8bf-419c-a712-c77b415802cf -2024-07-16 19:07:28.577568 2024-07-16 19:07:28.577574 plgnd 133355513X R rec 4abb4421-cf6e-43d9-aceb-6edbed3f77d2 -2024-07-16 19:07:28.637715 2024-07-16 19:07:28.637727 plgnd 1333333668 R rec d674d94a-8ef2-4632-947e-2b563eb7b744 -2024-07-16 19:07:28.712231 2024-07-16 19:07:28.712242 plgnd 1333321090 R rec 9bd08104-c8db-4cbc-9c1d-0e455f310145 -2024-07-16 19:07:28.800668 2024-07-16 19:07:28.800685 plgnd 1333315902 R rec e142a1fb-7380-45a9-8a91-4d079ddbafb3 -2024-07-16 19:07:28.881566 2024-07-16 19:07:28.881582 plgnd 1333263465 R rec 2956c308-3edc-46b8-81a3-b3c4edb56fe5 -2024-07-16 19:07:28.9774 2024-07-16 19:07:28.977417 plgnd 1333255853 R rec 96f0e897-905d-4d91-ac97-792a123d1a6d -2024-07-16 19:07:29.068009 2024-07-16 19:07:29.068025 plgnd 1333228880 R rec a232d6a1-ca83-44be-b569-3ed92937a790 -2024-07-16 19:07:29.155046 2024-07-16 19:07:29.155059 plgnd 1333113943 R rec 1d6bcd71-ffb5-45d2-a2ac-e84373c01a4c -2024-07-16 19:07:29.243452 2024-07-16 19:07:29.243467 plgnd 1332874568 R rec 9c9c977e-1e94-4498-a8e8-13a2f417b282 -2024-07-16 19:07:29.329879 2024-07-16 19:07:29.329895 plgnd 1332858198 R rec fad91eeb-1408-407f-b029-b6b849824f2f -2024-07-16 19:07:29.414981 2024-07-16 19:07:29.414992 plgnd 1332769349 R rec 515cb5c9-848d-40cb-9eeb-892716f91a2e -2024-07-16 19:07:29.501106 2024-07-16 19:07:29.501117 plgnd 1332757375 R rec 89434b72-221f-457c-aa64-6499a23feb7c -2024-07-16 19:07:29.595854 2024-07-16 19:07:29.595859 plgnd 1332755666 R rec 94fc5740-1d9c-4ed1-8352-4c2dd781da6a -2024-07-16 19:07:29.646114 2024-07-16 19:07:29.646119 plgnd 1332749054 R rec 0db204de-80b3-4d5d-a1b5-5e01d892b7a6 -2024-07-16 19:07:29.713615 2024-07-16 19:07:29.713628 plgnd 1332747108 R rec 9ef2cc37-61c8-46c1-ac04-7eecb8471b07 -2024-07-16 19:07:29.794906 2024-07-16 19:07:29.794917 plgnd 1332742351 R rec 3e4c5fe1-331d-4036-8223-1418f562320e -2024-07-16 19:07:29.880202 2024-07-16 19:07:29.880213 plgnd 1332735002 R rec 250d4cd9-9ab0-4d39-b1d9-4ab07320525d -2024-07-16 19:07:29.967064 2024-07-16 19:07:29.967081 plgnd 1332734863 R rec e3e55560-4178-4efc-a691-20a6d42b616c -2024-07-16 19:07:30.053961 2024-07-16 19:07:30.053971 plgnd 133273457X R rec 6a3923ad-9898-49d5-80a5-408d20e8556d -2024-07-16 19:07:30.127963 2024-07-16 19:07:30.127974 plgnd 1332733751 R rec 7a2d3954-ca22-42c3-8709-01a9df8194a0 -2024-07-16 19:07:30.226225 2024-07-16 19:07:30.226241 plgnd 1332732577 R rec cf9fd9cb-cca6-4e37-8def-a843aa46bc4a -2024-07-16 19:07:30.312156 2024-07-16 19:07:30.312172 plgnd 1332731430 R rec a7528196-fa71-4b84-a6f7-9b1f8da4921a -2024-07-16 19:07:30.402244 2024-07-16 19:07:30.40226 plgnd 1332670482 R rec 0f78c541-972e-4c9d-a922-6285634e6e01 -2024-07-16 19:07:30.492758 2024-07-16 19:07:30.492774 plgnd 1332669689 R rec b50e3c4e-a6b4-47c7-a898-e6fa5250dd48 -2024-07-16 19:07:30.584595 2024-07-16 19:07:30.584611 plgnd 1332451578 R rec b720db86-e920-4868-a3c8-ac696fd1fbb6 -2024-07-16 19:07:30.66373 2024-07-16 19:07:30.663736 plgnd 1332353436 R rec fbe99c5d-ef9b-4369-8df9-9220551bde07 -2024-07-16 19:07:30.722076 2024-07-16 19:07:30.722088 plgnd 1332057209 R rec 8ed33df5-504e-4f4b-82d6-d490be9c03f1 -2024-07-16 19:07:30.79699 2024-07-16 19:07:30.797004 plgnd 1332055729 R rec 3b13269f-c8b6-4950-a363-78baf23a8ea9 -2024-07-16 19:07:30.875939 2024-07-16 19:07:30.87595 plgnd 1332031374 R rec 30f9e5d7-cd73-4206-8002-d0e2cdb4dbae -2024-07-16 19:07:30.970144 2024-07-16 19:07:30.970159 plgnd 1331729661 R rec 73a96b39-9e13-4e10-9d09-ed8467bceb17 -2024-07-16 19:07:31.06857 2024-07-16 19:07:31.068581 plgnd 1331609186 R rec 7e724438-1b66-4979-9310-418b90a80636 -2024-07-16 19:07:31.155118 2024-07-16 19:07:31.15513 plgnd 1331604346 R rec 84789dd7-5451-48a3-ac2b-5eda91795685 -2024-07-16 19:07:31.237554 2024-07-16 19:07:31.237564 plgnd 1331602718 R rec 95647070-c5c4-4dd0-b63c-9fd8d7ad9a16 -2024-07-16 19:07:31.338259 2024-07-16 19:07:31.339197 plgnd 1331601630 R rec ef6972db-8e07-46a7-979f-5b440fa203eb -2024-07-16 19:07:31.437052 2024-07-16 19:07:31.437065 plgnd 1331514282 R rec 1cf7bb5b-c364-4209-8470-45dabb0711cf -2024-07-16 19:07:31.528602 2024-07-16 19:07:31.528612 plgnd 1331513952 R rec 5dc8d006-6f20-4720-b5ca-70b620a79f77 -2024-07-16 19:07:31.614813 2024-07-16 19:07:31.614824 plgnd 1331379539 R rec 198f79ce-0446-4ef7-b875-6602855dd7cd -2024-07-16 19:07:31.688328 2024-07-16 19:07:31.688333 plgnd 1331109191 R rec 2d3a11df-48a9-49de-9e29-f04496f63d4e -2024-07-16 19:07:31.741834 2024-07-16 19:07:31.741845 plgnd 1331089271 R rec 77beaefa-76be-468e-8d13-3e216fc7656d -2024-07-16 19:07:31.808487 2024-07-16 19:07:31.808501 plgnd 1330982746 R rec c400cf45-0eda-4fc6-9028-6d37b5c394c7 -2024-07-16 19:07:31.888584 2024-07-16 19:07:31.888602 plgnd 1330866738 R rec 24cf88c1-56a6-4478-8a5d-f9c8f59bcdab -2024-07-16 19:07:31.976584 2024-07-16 19:07:31.976625 plgnd 1330847199 R rec 6cf31988-3042-4b21-9a53-d91fd2eb4815 -2024-07-16 19:07:32.070761 2024-07-16 19:07:32.070771 plgnd 1330436237 R rec 6bf1b40d-99ad-4d57-ac83-258985a38371 -2024-07-16 19:07:32.161594 2024-07-16 19:07:32.161605 plgnd 1330428420 R rec 7b24f290-d484-4d76-a350-cf41ab059f20 -2024-07-16 19:07:32.244136 2024-07-16 19:07:32.244146 plgnd 1330324463 R rec 76e0cd90-8379-4045-a6ee-309d4f27bf60 -2024-07-16 19:07:32.330727 2024-07-16 19:07:32.33074 plgnd 1330302877 R rec 15dd7a06-9dd7-4500-bb94-744f8dd18bae -2024-07-16 19:07:32.419862 2024-07-16 19:07:32.419878 plgnd 1330290887 R rec 14834b36-c9d5-434c-9c35-264270a50412 -2024-07-16 19:07:32.502642 2024-07-16 19:07:32.502652 plgnd 1330177274 R rec 238f9c28-0183-4446-86a3-d2ccc257cbfc -2024-07-16 19:07:32.59977 2024-07-16 19:07:32.599781 plgnd 1329890205 R rec ecc692b4-ad1d-43f9-80d2-2f152b9dee95 -2024-07-16 19:07:32.699573 2024-07-16 19:07:32.69958 plgnd 1329430875 R rec de837518-8719-497a-a41c-fe3968a46952 -2024-07-16 19:07:32.753822 2024-07-16 19:07:32.753826 plgnd 1316359042 R rec 3d41b07a-5bdf-4f18-8df0-541c174b6a7c -2024-07-16 19:07:32.803628 2024-07-16 19:07:32.803639 plgnd 1314596373 R rec 831bbcf8-5014-48d0-9425-c8538e2761be -2024-07-16 19:07:32.870053 2024-07-16 19:07:32.870068 plgnd 1302571524 R rec c6f451cf-4290-4ccc-82b1-01c13035d10e -2024-07-16 19:07:32.958051 2024-07-16 19:07:32.958068 plgnd 1300397128 R rec 4aaaf9f6-e017-47f9-8bd0-f4b598478f83 -2024-07-16 19:07:33.053625 2024-07-16 19:07:33.053636 plgnd 1299383890 R rec 01be8066-a90f-4bbc-954b-fb21007e5fd1 -2024-07-16 19:07:33.134066 2024-07-16 19:07:33.134081 plgnd 129673143X R rec 88d50644-2f87-45e1-aaed-1814f301a318 -2024-07-16 19:07:33.219691 2024-07-16 19:07:33.219707 plgnd 1295131781 R rec c4967740-cf70-4955-8be9-a47fe4f8a875 -2024-07-16 19:07:33.294348 2024-07-16 19:07:33.294361 plgnd 1287837611 R rec 2b78c386-3f90-48c4-83d1-f1251f0340a9 -2024-07-16 19:07:33.375568 2024-07-16 19:07:33.375584 plgnd 1286132703 R rec 8fa654ce-8c70-4f09-8807-581eb9750dcc -2024-07-16 19:07:33.465182 2024-07-16 19:07:33.465193 plgnd 1284341119 R rec d20f43d0-6ff7-49d9-80d9-b9c6608837c0 -2024-07-16 19:07:33.551176 2024-07-16 19:07:33.551191 plgnd 1282328816 R rec 11db1d59-8424-41ee-bfce-d20200105c53 -2024-07-16 19:07:33.637933 2024-07-16 19:07:33.637949 plgnd 1275159915 R rec fc7b8d55-bea2-4bc7-be09-5bb5d5fa1c55 -2024-07-16 19:07:33.723288 2024-07-16 19:07:33.7233 plgnd 1271173751 R rec 020e3fd4-875e-4bb1-b701-0ad11d2d6cc7 -2024-07-16 19:07:33.794687 2024-07-16 19:07:33.794694 plgnd 1267606541 R rec 3792d034-996d-48fa-8045-116188b50bea -2024-07-16 19:07:33.852619 2024-07-16 19:07:33.852631 plgnd 1262419808 R rec e8312d89-ef78-46fc-a39e-56feb2c19599 -2024-07-16 19:07:33.943427 2024-07-16 19:07:33.943446 plgnd 1240912943 R rec 39018d11-43b2-452e-aace-34c9d88106c5 -2024-07-16 19:07:34.032162 2024-07-16 19:07:34.032177 plgnd 1239866968 R rec a20c077f-87c2-4176-b720-9f32f3d88719 -2024-07-16 19:07:34.118196 2024-07-16 19:07:34.118211 plgnd 1239463502 R rec 098b90f0-ef59-42b5-93b7-7c6d00ed01db -2024-07-16 19:07:34.210046 2024-07-16 19:07:34.210057 plgnd 1237860342 R rec 7fdee1aa-2104-49e9-a8fe-32d34a50f07d -2024-07-16 19:07:34.300131 2024-07-16 19:07:34.300146 plgnd 1237828171 R rec b7d86ba8-8563-4efc-9953-1850ccb3dbfa -2024-07-16 19:07:34.383394 2024-07-16 19:07:34.383407 plgnd 1237774101 R rec 028f3fdb-176d-4628-a908-e2775781d469 -2024-07-16 19:07:34.471452 2024-07-16 19:07:34.471467 plgnd 1237279453 R rec c6faced1-4718-4001-9b14-c5eb12110d04 -2024-07-16 19:07:34.551387 2024-07-16 19:07:34.551402 plgnd 1236792211 R rec 4da26aac-4070-4e42-936e-dc51ac9e7596 -2024-07-16 19:07:34.639512 2024-07-16 19:07:34.639523 plgnd 123657754X R rec 543da3da-8b9a-4d1e-bb1d-efb0be38abf1 -2024-07-16 19:07:34.726623 2024-07-16 19:07:34.726638 plgnd 1235360709 R rec 61a593b7-b48d-423c-87bb-a9d27bf0e904 -2024-07-16 19:07:34.803324 2024-07-16 19:07:34.803329 plgnd 1233310046 R rec 26f5002e-0742-485a-b4f1-65c96580da51 -2024-07-16 19:07:34.858944 2024-07-16 19:07:34.85895 plgnd 1232243698 R rec 6bc4066b-2d0f-4345-9ab3-ba340487a7ac -2024-07-16 19:07:34.933764 2024-07-16 19:07:34.93378 plgnd 1225876354 R rec c5673565-8267-4708-9c89-a931a3431c8a -2024-07-16 19:07:35.02249 2024-07-16 19:07:35.022502 plgnd 1224278054 R rec 8d4cde5a-ab89-444f-ad95-4488c6e4f744 -2024-07-16 19:07:35.110446 2024-07-16 19:07:35.110458 plgnd 122413754X R rec 827911a1-8334-45bf-944b-153ea1612449 -2024-07-16 19:07:35.199277 2024-07-16 19:07:35.199287 plgnd 122219953X R rec 7c613f2f-54a0-49e0-bc81-83f2670942db -2024-07-16 19:07:35.291978 2024-07-16 19:07:35.291989 plgnd 1222199440 R rec d08dae87-e6fc-4ad5-b751-9338b8c3594c -2024-07-16 19:07:35.373836 2024-07-16 19:07:35.373848 plgnd 1219234621 R rec d95bbf7b-7252-4073-8079-b3b74fcbf12f -2024-07-16 19:07:35.457331 2024-07-16 19:07:35.457347 plgnd 1215862520 R rec d51c19c1-b0be-4f39-8eee-ef3864dc86d9 -2024-07-16 19:07:35.531179 2024-07-16 19:07:35.531189 plgnd 1208649175 R rec e4eac3af-4ba5-42d4-9f89-f7c53c5a79d5 -2024-07-16 19:07:35.610661 2024-07-16 19:07:35.610671 plgnd 1206005505 R rec 647edf80-9185-4c20-971a-4aeef7752fc3 -2024-07-16 19:07:35.692611 2024-07-16 19:07:35.692621 plgnd 1203261837 R rec 4e5cfa44-2465-4ddb-8b4c-39087ae37707 -2024-07-16 19:07:35.775652 2024-07-16 19:07:35.775661 plgnd 1197938001 R rec 3a94fd63-b397-4385-8a13-0086d8d1c27e -2024-07-16 19:07:35.844902 2024-07-16 19:07:35.844909 plgnd 1192399013 R rec f3b6b7df-f7b3-4b98-b6bc-fc0559ff4c5f -2024-07-16 19:07:35.896448 2024-07-16 19:07:35.896454 plgnd 1191133729 R rec 73abcc93-5cb1-42fd-b8d4-8cf76379f15a -2024-07-16 19:07:35.965172 2024-07-16 19:07:35.965185 plgnd 1190333392 R rec 09a525fc-ae3f-4025-85c8-e2550ef67787 -2024-07-16 19:07:36.051066 2024-07-16 19:07:36.051077 plgnd 1190333082 R rec 4b78a516-9f94-4c70-9b69-76ad552e6ed9 -2024-07-16 19:07:36.1387 2024-07-16 19:07:36.138719 plgnd 1190328259 R rec a27b6c7d-6483-4d06-96da-a65139e412a0 -2024-07-16 19:07:36.22146 2024-07-16 19:07:36.221475 plgnd 1189443015 R rec 12bdc6a2-bd6e-4f9b-bf50-1566b55eb0e4 -2024-07-16 19:07:36.309521 2024-07-16 19:07:36.309556 plgnd 1188738658 R rec 40e137e8-3db4-4940-8ed0-6acc165672e8 -2024-07-16 19:07:36.401153 2024-07-16 19:07:36.40117 plgnd 1184832803 R rec 1c78271c-5177-4f53-95f4-dcfdd963b44c -2024-07-16 19:07:36.482052 2024-07-16 19:07:36.482069 plgnd 1184428727 R rec aecd8d2b-29c2-4f9b-9c8c-d6d9ddb0e7a6 -2024-07-16 19:07:36.567949 2024-07-16 19:07:36.56796 plgnd 1182916759 R rec 00765c04-fc3a-47bb-bba7-1cb8b9350ba8 -2024-07-16 19:07:36.654183 2024-07-16 19:07:36.6542 plgnd 1182704948 R rec ffb8af0e-6bc6-45e6-825c-77910195739e -2024-07-16 19:07:36.740843 2024-07-16 19:07:36.740853 plgnd 1180664485 R rec 6303ad0b-27ce-499b-bb3c-d7085b931672 -2024-07-16 19:07:36.83228 2024-07-16 19:07:36.832296 plgnd 1180620623 R rec f2ade7a4-8351-4af8-bcee-5a10f2b58a38 -2024-07-16 19:07:36.90422 2024-07-16 19:07:36.904226 plgnd 1179502884 R rec 7d6857ab-3cc9-4dc0-bfa6-5b58ec56b5ca -2024-07-16 19:07:36.957097 2024-07-16 19:07:36.957108 plgnd 1177183811 R rec d34ba9c8-d1f5-43b0-9eec-351836059253 -2024-07-16 19:07:37.031196 2024-07-16 19:07:37.031213 plgnd 1177087480 R rec 51801b64-f684-40b0-85cc-b57edee19001 -2024-07-16 19:07:37.12539 2024-07-16 19:07:37.125401 plgnd 1171383401 R rec f0814748-3870-4a0e-a2c0-9fe520d42e3c -2024-07-16 19:07:37.222914 2024-07-16 19:07:37.222924 plgnd 1169806708 R rec f9704d21-b911-41f4-82e2-aa34214c9b0c -2024-07-16 19:07:37.314595 2024-07-16 19:07:37.314734 plgnd 1169806686 R rec 33848439-79f9-46c0-ad87-73269a5156dd -2024-07-16 19:07:37.400578 2024-07-16 19:07:37.400597 plgnd 1169805167 R rec 417344ba-943b-4292-a03b-ad3add052c04 -2024-07-16 19:07:37.488367 2024-07-16 19:07:37.488377 plgnd 1169805140 R rec ab771a40-dd44-42dd-a1ff-e358702c8a71 -2024-07-16 19:07:37.573235 2024-07-16 19:07:37.573251 plgnd 1167694643 R rec cbb93931-def8-4c2c-a402-e90527099f54 -2024-07-16 19:07:37.654163 2024-07-16 19:07:37.654178 plgnd 1167335767 R rec 11e39aa3-e05d-493d-a449-03433ab02efb -2024-07-16 19:07:37.734113 2024-07-16 19:07:37.734124 plgnd 1166988325 R rec 5e9dd9d1-1d31-4e86-a982-807e2ddf8ef5 -2024-07-16 19:07:37.824241 2024-07-16 19:07:37.824252 plgnd 1166988007 R rec 8480c3d0-339e-44cc-9dfb-4d8f494efea3 -2024-07-16 19:07:37.916015 2024-07-16 19:07:37.916021 plgnd 1166098877 R rec 2b8e150b-60c6-48a2-a6e1-7c6b281048fc -2024-07-16 19:07:37.984204 2024-07-16 19:07:37.984215 plgnd 1165597586 R rec 71148f5f-342b-4be8-a781-5030d6ee57c2 -2024-07-16 19:07:38.060882 2024-07-16 19:07:38.060895 plgnd 1164527657 R rec 868369aa-2453-444a-9e6a-058630f66c16 -2024-07-16 19:07:38.156678 2024-07-16 19:07:38.156692 plgnd 116355815X R rec 86f7c233-f1e8-4902-8264-c770fd04a969 -2024-07-16 19:07:38.243306 2024-07-16 19:07:38.243321 plgnd 1163558095 R rec 98e34429-e28b-495a-b7f7-8427ce85e733 -2024-07-16 19:07:38.340495 2024-07-16 19:07:38.340507 plgnd 1163419907 R rec 8d218ae8-3abc-4bfa-b0a6-a5591f116cf8 -2024-07-16 19:07:38.422372 2024-07-16 19:07:38.422388 plgnd 1161830820 R rec 6a8a6b19-faff-4820-b3a5-f3664538657a -2024-07-16 19:07:38.513124 2024-07-16 19:07:38.513139 plgnd 1161625046 R rec 2974793e-c88b-405d-88a2-f5c34dc793e4 -2024-07-16 19:07:38.601328 2024-07-16 19:07:38.601339 plgnd 1156658128 R rec 14666f81-2e73-4b5d-a2e2-bb6688c89d07 -2024-07-16 19:07:38.699573 2024-07-16 19:07:38.699588 plgnd 1156051029 R rec 3265430c-0370-4752-be08-f952505e224a -2024-07-16 19:07:38.78049 2024-07-16 19:07:38.780506 plgnd 1148115242 R rec f8214cfb-f6ec-4ada-9e95-bc439d73774c -2024-07-16 19:07:38.866597 2024-07-16 19:07:38.866615 plgnd 1147654123 R rec 15cd28bc-c95a-4324-a0d1-5b3c58fe8c81 -2024-07-16 19:07:38.946294 2024-07-16 19:07:38.9463 plgnd 1143714245 R rec e81a308a-bf60-489a-a348-4574219f8fc8 -2024-07-16 19:07:39.01801 2024-07-16 19:07:39.018022 plgnd 1143154991 R rec d9e4947b-9f3c-409e-801d-7c71e043882a -2024-07-16 19:07:39.097618 2024-07-16 19:07:39.097634 plgnd 1142135993 R rec 81c5a766-9bd7-455d-85db-7028b4a64f3b -2024-07-16 19:07:39.182883 2024-07-16 19:07:39.182898 plgnd 1139463888 R rec 5515f44e-2bf7-4b5d-8c8e-d0cec64f0797 -2024-07-16 19:07:39.274077 2024-07-16 19:07:39.274088 plgnd 113914071X R rec 3ef73076-817a-46e7-9f33-b13cb4d37517 -2024-07-16 19:07:39.366399 2024-07-16 19:07:39.366412 plgnd 113698612X R rec 6958492e-108a-4756-b6a9-9f69d7874066 -2024-07-16 19:07:39.451049 2024-07-16 19:07:39.451161 plgnd 1136731237 R rec f11c8b69-fc57-4f2f-87ee-710cff0b57d7 -2024-07-16 19:07:39.54763 2024-07-16 19:07:39.547646 plgnd 1136092293 R rec 6ca01c25-63d3-4350-af18-92921cfc2d26 -2024-07-16 19:07:39.635864 2024-07-16 19:07:39.635879 plgnd 1135805342 R rec 05cd3db2-e0c0-402b-809a-6bcdaac82fa7 -2024-07-16 19:07:39.73198 2024-07-16 19:07:39.731995 plgnd 1135798842 R rec a09f0214-4e60-417c-86fa-8155bee2469a -2024-07-16 19:07:39.813389 2024-07-16 19:07:39.813399 plgnd 1133293247 R rec 94ed384a-c165-4429-8e73-2c65d42ce4b1 -2024-07-16 19:07:39.899679 2024-07-16 19:07:39.899694 plgnd 1132227771 R rec 404539f9-a05d-4f0a-8ea8-1659261e48f9 -2024-07-16 19:07:39.990174 2024-07-16 19:07:39.990179 plgnd 1124279156 R rec a872dbc7-3eec-4ce1-951a-e27261ffd493 -2024-07-16 19:07:40.046503 2024-07-16 19:07:40.046515 plgnd 1122747160 R rec 4f0696ce-035d-4bfe-bcf4-a20824b6b478 -2024-07-16 19:07:40.129339 2024-07-16 19:07:40.129354 plgnd 1122668171 R rec 9dc0b510-1cc7-45e4-b1e0-c5e583d920e6 -2024-07-16 19:07:40.220777 2024-07-16 19:07:40.220788 plgnd 112132925X R rec c1d33481-a93d-472a-b8e0-daf5ee0d4fdf -2024-07-16 19:07:40.308926 2024-07-16 19:07:40.308937 plgnd 1107605113 R rec dd9d9554-aa15-4f01-98e2-daad18f85589 -2024-07-16 19:07:40.393421 2024-07-16 19:07:40.393437 plgnd 1105589110 R rec 0e62c175-e526-4797-a23e-1e05c5bfaa21 -2024-07-16 19:07:40.481914 2024-07-16 19:07:40.481928 plgnd 1101612258 R rec ebbe104b-6020-4e48-88cd-9f0b2a6356f2 -2024-07-16 19:07:40.567892 2024-07-16 19:07:40.567903 plgnd 1100323325 R rec ddf14117-3c0b-45d4-a63c-de10d3ed3990 -2024-07-16 19:07:40.657142 2024-07-16 19:07:40.657156 plgnd 1100201831 R rec e5311a6a-cf3f-4aac-88a4-2307646c3c97 -2024-07-16 19:07:40.740686 2024-07-16 19:07:40.740697 plgnd 1099133092 R rec 500dfca3-f4a5-49ea-8a12-310da9f2dce5 -2024-07-16 19:07:40.823364 2024-07-16 19:07:40.82338 plgnd 1099132061 R rec 4aded07a-8214-4ee3-af65-2eeb1fefd5bd -2024-07-16 19:07:40.905219 2024-07-16 19:07:40.905234 plgnd 1097213617 R rec cdb987c1-b98f-4be1-9c1b-b2ad81082685 -2024-07-16 19:07:41.003307 2024-07-16 19:07:41.003313 plgnd 1095576461 R rec e2261040-69ab-40f5-b2fa-e2b34cacaaaf -2024-07-16 19:07:41.059973 2024-07-16 19:07:41.059979 plgnd 1085229823 R rec afb2cf7a-a754-4a7c-b024-28b0232d75b0 -2024-07-16 19:07:41.135587 2024-07-16 19:07:41.135602 plgnd 1082797251 R rec 015b1adb-ed5d-4429-8ed8-b3f8579fc785 -2024-07-16 19:07:41.227278 2024-07-16 19:07:41.227288 plgnd 1082520101 R rec 2f93af2e-f48a-4914-a920-50276579659f -2024-07-16 19:07:41.313047 2024-07-16 19:07:41.313057 plgnd 1082153850 R rec 90772bb7-eebd-4c65-9876-736e96c7335d -2024-07-16 19:07:41.40912 2024-07-16 19:07:41.409132 plgnd 1082012033 R rec f66fcb2a-090f-445a-a9d7-a5e9680834b7 -2024-07-16 19:07:41.49154 2024-07-16 19:07:41.491556 plgnd 1082001430 R rec 76addcdc-20be-4e06-b0a2-51bce41ec067 -2024-07-16 19:07:41.581686 2024-07-16 19:07:41.581702 plgnd 1081845031 R rec b5f5084d-d5d5-4dfe-9ad2-114de321d88d -2024-07-16 19:07:41.665136 2024-07-16 19:07:41.665151 plgnd 1081844973 R rec 482b02cb-fef9-4887-9c14-095d0fc4a048 -2024-07-16 19:07:41.767084 2024-07-16 19:07:41.767094 plgnd 1081842474 R rec 3a36e68e-87c2-4ac4-b707-2a5412534a0b -2024-07-16 19:07:41.853807 2024-07-16 19:07:41.853817 plgnd 1081839082 R rec 65abf442-25da-4999-9f74-39eaa584a22a -2024-07-16 19:07:41.936982 2024-07-16 19:07:41.936992 plgnd 1081838779 R rec 4cb0325d-b80b-4f4d-8324-301a6b6d3950 -2024-07-16 19:07:42.013621 2024-07-16 19:07:42.013639 plgnd 1081838655 R rec f45bd557-8690-4660-adee-617bdca95063 -2024-07-16 19:07:42.091575 2024-07-16 19:07:42.09158 plgnd 1081838507 R rec 893723e5-a9fc-4145-bfe1-d13227c16b5a -2024-07-16 19:07:42.143696 2024-07-16 19:07:42.143709 plgnd 1081838396 R rec ed33635f-cd5b-449e-ae92-bdbef2bb739a -2024-07-16 19:07:42.223729 2024-07-16 19:07:42.223739 plgnd 1081838310 R rec b2260630-e9bb-407f-be6f-ac2b3736427a -2024-07-16 19:07:42.312973 2024-07-16 19:07:42.312984 plgnd 1081838167 R rec c24ff18e-a5df-4034-9005-c63b8863b559 -2024-07-16 19:07:42.406227 2024-07-16 19:07:42.406238 plgnd 1081838051 R rec 2fbba075-5c59-492b-abee-e332edcd036b -2024-07-16 19:07:42.493738 2024-07-16 19:07:42.493748 plgnd 1081330236 R rec ecb3f8c6-a8e8-40b8-9f25-42c9e59ba50b -2024-07-16 19:07:42.573364 2024-07-16 19:07:42.57338 plgnd 1081212918 R rec bb94044d-b05d-462f-9408-e43f1928793a -2024-07-16 19:07:42.666799 2024-07-16 19:07:42.666847 plgnd 1081097930 R rec 8d1148d4-6daa-4d29-b2df-ed06f09ff04f -2024-07-16 19:07:42.74791 2024-07-16 19:07:42.74792 plgnd 1079692916 R rec f4636904-02f0-432f-8a9e-eba51b353833 -2024-07-16 19:07:42.831507 2024-07-16 19:07:42.831517 plgnd 1079568352 R rec e4a3607c-10d7-4f65-8495-03a62a0543d8 -2024-07-16 19:07:42.912178 2024-07-16 19:07:42.912188 plgnd 1078131902 R rec b61451bd-7083-46fe-89a7-c147df2fc4fb -2024-07-16 19:07:43.003718 2024-07-16 19:07:43.003729 plgnd 1077893450 R rec 35b05f4e-8ba0-4844-86c2-d1c63fab8b02 -2024-07-16 19:07:43.093706 2024-07-16 19:07:43.093712 plgnd 1077053320 R rec 1089fd3a-1dd2-4905-b7ba-2a1df4c659e4 -2024-07-16 19:07:43.156675 2024-07-16 19:07:43.156681 plgnd 1077053185 R rec 981d994e-b798-476c-b7ea-324760890f59 -2024-07-16 19:07:43.301168 2024-07-16 19:07:43.301181 plgnd 107699847X R rec 073d510a-841c-42ab-9a41-f2f2a46fc1db -2024-07-16 19:07:43.376915 2024-07-16 19:07:43.376929 plgnd 1076027032 R rec 88db7b88-10b1-4acb-92f0-dcf78fe49838 -2024-07-16 19:07:43.462915 2024-07-16 19:07:43.462924 plgnd 1075827361 R rec 8ca96343-f8e4-4444-89ce-1dce9d1a8041 -2024-07-16 19:07:43.546215 2024-07-16 19:07:43.54625 plgnd 1075220467 R rec 70015cba-6ab7-4b9f-8139-7124ea471d64 -2024-07-16 19:07:43.633266 2024-07-16 19:07:43.633281 plgnd 1074377397 R rec 987ee541-4f99-42fe-ad30-d0508e3e5969 -2024-07-16 19:07:43.724648 2024-07-16 19:07:43.724659 plgnd 1074316908 R rec 3b632d6f-093f-4d7a-92e0-bfa8b0720fa0 -2024-07-16 19:07:43.806764 2024-07-16 19:07:43.806779 plgnd 107399077X R rec dd9dc319-9faa-49ca-af58-a5d2ebee15fd -2024-07-16 19:07:43.899692 2024-07-16 19:07:43.899703 plgnd 1073950220 R rec 794c059e-3838-4c31-a68f-63795c745839 -2024-07-16 19:07:43.990391 2024-07-16 19:07:43.990402 plgnd 107373157X R rec da277d32-bcc1-4e96-94ac-35cc06420801 -2024-07-16 19:07:44.087016 2024-07-16 19:07:44.087051 plgnd 1073724549 R rec 1b8e508b-c29f-4224-adf0-40647246bdf7 -2024-07-16 19:07:44.159364 2024-07-16 19:07:44.15937 plgnd 107362062X R rec b6054bba-5cb4-41e3-8ae0-90c0cbd5dddc -2024-07-16 19:07:44.214139 2024-07-16 19:07:44.21415 plgnd 1073267830 R rec fdfd264d-0936-42b6-a19c-772b526dd523 -2024-07-16 19:07:44.286709 2024-07-16 19:07:44.286724 plgnd 107283314X R rec d9d92dd0-af3a-4064-a36e-effd9c2c770e -2024-07-16 19:07:44.370241 2024-07-16 19:07:44.370257 plgnd 1071872435 R rec b6f780aa-cb8b-4d89-bbfd-56b3a53ef68a -2024-07-16 19:07:44.454837 2024-07-16 19:07:44.454848 plgnd 1071862391 R rec bbd59c01-bc4b-4b62-bfdb-f3e4c48bcbec -2024-07-16 19:07:44.537116 2024-07-16 19:07:44.537126 plgnd 1070113026 R rec 1aa5f5a9-2a24-4cf8-8a53-e09388c80e0a -2024-07-16 19:07:44.622213 2024-07-16 19:07:44.622224 plgnd 1069803782 R rec 44668a65-7a87-4aa7-a969-32d59895d150 -2024-07-16 19:07:44.708887 2024-07-16 19:07:44.708897 plgnd 1068118490 R rec 6f75e986-9964-4394-b6c8-accf2479887d -2024-07-16 19:07:44.79811 2024-07-16 19:07:44.798122 plgnd 1067883703 R rec 2023f111-2581-4ab1-be52-aca5fcfbae35 -2024-07-16 19:07:44.87776 2024-07-16 19:07:44.877775 plgnd 1067878831 R rec 4a08d70c-4050-4bd7-bfde-b6ae82abfe79 -2024-07-16 19:07:44.974296 2024-07-16 19:07:44.974313 plgnd 1067860142 R rec e420e5b9-8d04-4221-82d5-45ac7720013d -2024-07-16 19:07:45.065003 2024-07-16 19:07:45.065018 plgnd 1067637184 R rec 5bc6e28b-da9b-4dc5-b9e9-3d5e35457fb5 -2024-07-16 19:07:45.155838 2024-07-16 19:07:45.155844 plgnd 1067636757 R rec cb98f81f-bb1b-46ef-ae81-385541317694 -2024-07-16 19:07:45.208677 2024-07-16 19:07:45.208683 plgnd 1067274006 R rec 8fe286bc-ece9-487c-a308-6219719dcc5e -2024-07-16 19:07:45.279497 2024-07-16 19:07:45.279507 plgnd 1067272488 R rec 77563668-8a91-48c8-8cc2-5d98336a2b7e -2024-07-16 19:07:45.368037 2024-07-16 19:07:45.368052 plgnd 1064960243 R rec bf9f3ed2-2b67-4819-958a-33b077aba771 -2024-07-16 19:07:45.455205 2024-07-16 19:07:45.455223 plgnd 1064714455 R rec dbd26a2f-6f51-4657-913a-4d7608894901 -2024-07-16 19:07:45.537644 2024-07-16 19:07:45.537659 plgnd 1064601502 R rec 3bf26f04-b9d0-44f3-8801-1c0d7180489a -2024-07-16 19:07:45.634845 2024-07-16 19:07:45.634856 plgnd 1064049419 R rec 534a8fb3-6d5c-42f8-9c7b-59df2c2cc1db -2024-07-16 19:07:45.722203 2024-07-16 19:07:45.722222 plgnd 1062979583 R rec fbc3ce50-a856-4903-85ed-77f72e41022e -2024-07-16 19:07:45.802021 2024-07-16 19:07:45.80203 plgnd 1062970004 R rec 669a66b1-1597-44a9-a524-4e47cdfdde4c -2024-07-16 19:07:45.885691 2024-07-16 19:07:45.885707 plgnd 1062891848 R rec bb0d2a35-4c2c-4e3e-906d-e7b5e65a9822 -2024-07-16 19:07:45.979937 2024-07-16 19:07:45.979948 plgnd 1062531191 R rec c6abe204-af8b-4a54-ba54-756cf09867d4 -2024-07-16 19:07:46.066975 2024-07-16 19:07:46.066986 plgnd 1062516109 R rec 6064fffd-11c8-48b2-9194-ed22e174b062 -2024-07-16 19:07:46.157714 2024-07-16 19:07:46.157729 plgnd 1061004198 R rec 75ce7c4d-d4de-4387-a6f3-bd36babacaa0 -2024-07-16 19:07:46.237207 2024-07-16 19:07:46.237213 plgnd 1060849127 R rec 5b82586d-a418-4b21-910a-1786e8f90613 -2024-07-16 19:07:46.294274 2024-07-16 19:07:46.294285 plgnd 106081482X R rec 207ddbaf-2454-4749-8877-f7c5e1fb7aa6 -2024-07-16 19:07:46.37315 2024-07-16 19:07:46.373161 plgnd 1060503611 R rec 3b79c634-daa0-462b-9b70-9bb40132533b -2024-07-16 19:07:46.457042 2024-07-16 19:07:46.457053 plgnd 1060503166 R rec bb088e04-dcb0-4e58-8066-60d392bf69fe -2024-07-16 19:07:46.545633 2024-07-16 19:07:46.545643 plgnd 1060502798 R rec 19870669-78b2-4f68-a4a6-e0e508f46559 -2024-07-16 19:07:46.645602 2024-07-16 19:07:46.645613 plgnd 1060502682 R rec 360ca920-556d-4fe2-8a88-f2ead17bf9a5 -2024-07-16 19:07:46.739772 2024-07-16 19:07:46.739788 plgnd 1060502585 R rec f020eb5e-b7a5-497d-ad7e-3c72894d62bb -2024-07-16 19:07:46.817211 2024-07-16 19:07:46.817223 plgnd 1060502372 R rec 56424e76-8734-4b3d-9157-71684610a572 -2024-07-16 19:07:46.904328 2024-07-16 19:07:46.904341 plgnd 106050216X R rec 8fdb800e-ec19-40cd-8722-eba196ea8356 -2024-07-16 19:07:46.987589 2024-07-16 19:07:46.987605 plgnd 1060501902 R rec 2be47df5-43ef-4a7d-aa2b-ec0d98b6fc4b -2024-07-16 19:07:47.086833 2024-07-16 19:07:47.086849 plgnd 1060501759 R rec b2c03785-1065-4de6-9c91-340f9ae3ca39 -2024-07-16 19:07:47.172305 2024-07-16 19:07:47.172322 plgnd 1060501457 R rec c4311ad1-40c8-47e1-836f-f741ef9dff7a -2024-07-16 19:07:47.260853 2024-07-16 19:07:47.260858 plgnd 106050104X R rec f35f6dfc-f1e0-4b9d-b9e4-8881fb45eea9 -2024-07-16 19:07:47.323389 2024-07-16 19:07:47.3234 plgnd 1060419319 R rec be34b22c-f1f6-43bb-b926-0dcae5a577dd -2024-07-16 19:07:47.418554 2024-07-16 19:07:47.418569 plgnd 1060401134 R rec 2d038daa-a9f3-4c3e-80ff-3e7837013339 -2024-07-16 19:07:47.499394 2024-07-16 19:07:47.499407 plgnd 1060238128 R rec 5443b433-78cc-420b-8a98-e0202c0014f8 -2024-07-16 19:07:47.585797 2024-07-16 19:07:47.585808 plgnd 1060132206 R rec c1ee8f32-cb7c-4967-8790-df180c5e337a -2024-07-16 19:07:47.670708 2024-07-16 19:07:47.670724 plgnd 1060087367 R rec 82e8de03-6ea4-4c08-82d1-2e5d259234ce -2024-07-16 19:07:47.750642 2024-07-16 19:07:47.750658 plgnd 1059448831 R rec e06a8a1b-aa19-4655-aef2-f9387343d4fa -2024-07-16 19:07:47.841773 2024-07-16 19:07:47.841784 plgnd 1059378396 R rec 0f0154dd-6fbc-4c29-a0a6-d0512fcd232a -2024-07-16 19:07:47.931226 2024-07-16 19:07:47.931242 plgnd 1059376946 R rec 5d9e0960-69c4-4820-be45-b49f48323065 -2024-07-16 19:07:48.025521 2024-07-16 19:07:48.025537 plgnd 1059359022 R rec c59edbda-90e7-4f47-a6ef-04d731ebd401 -2024-07-16 19:07:48.118469 2024-07-16 19:07:48.118485 plgnd 1059357755 R rec f009eb4a-2356-46c1-80a6-ea360e048857 -2024-07-16 19:07:48.210269 2024-07-16 19:07:48.21028 plgnd 1059250454 R rec 48f1546f-2657-4762-b973-0a7e6b4a4fc5 -2024-07-16 19:07:48.294433 2024-07-16 19:07:48.294439 plgnd 105914249X R rec 8aca9b92-0aec-4f2e-b341-e2e92dabb9a7 -2024-07-16 19:07:48.348826 2024-07-16 19:07:48.348832 plgnd 1058994743 R rec 38a1f352-2923-41de-92c2-6d5f806bafd9 -2024-07-16 19:07:48.415 2024-07-16 19:07:48.415012 plgnd 1058986333 R rec 4c1cae1d-c21a-4cba-9f0b-e5102d3a6753 -2024-07-16 19:07:48.494885 2024-07-16 19:07:48.494895 plgnd 1058985299 R rec 091d15db-50d6-4dd2-8993-7d57efc59701 -2024-07-16 19:07:48.586146 2024-07-16 19:07:48.58616 plgnd 1058984144 R rec 67751670-fc98-4509-8ff5-f4096bccb214 -2024-07-16 19:07:48.672012 2024-07-16 19:07:48.672028 plgnd 1058973045 R rec 6a90fd5c-fdc4-4f71-b359-5aec21c998d9 -2024-07-16 19:07:48.757687 2024-07-16 19:07:48.7577 plgnd 1058939068 R rec eb0017b1-474b-43ef-9951-e6ba004bcbda -2024-07-16 19:07:48.855445 2024-07-16 19:07:48.855461 plgnd 105892978X R rec 51810214-913a-4c24-84bc-19d1c167408f -2024-07-16 19:07:48.943152 2024-07-16 19:07:48.943167 plgnd 1058928732 R rec 45a3e137-18c6-403b-8c2b-abe037d0229a -2024-07-16 19:07:49.034121 2024-07-16 19:07:49.034137 plgnd 1058919954 R rec 18f2b4cd-6a4d-4f83-ba2a-1b24dfadeb7c -2024-07-16 19:07:49.122521 2024-07-16 19:07:49.122534 plgnd 1058918176 R rec 4f0b5066-e3d6-420c-ac87-1852ca552df8 -2024-07-16 19:07:49.21086 2024-07-16 19:07:49.210873 plgnd 1058899597 R rec d9d4410b-ccda-4c9d-92f4-576456ca1c63 -2024-07-16 19:07:49.305685 2024-07-16 19:07:49.305697 plgnd 1058896318 R rec 3dc1c07d-225e-4d9f-9ece-a33d405c97c4 -2024-07-16 19:07:49.364473 2024-07-16 19:07:49.364478 plgnd 1058890611 R rec fb10d4c2-bd9b-45c5-8fcc-ab939b0f517f -2024-07-16 19:07:49.417601 2024-07-16 19:07:49.417609 plgnd 1058880373 R rec 5a56958d-7366-4e7e-9ce2-fccec42d8547 -2024-07-16 19:07:49.48857 2024-07-16 19:07:49.488586 plgnd 1058876872 R rec 52c34024-7210-4614-b29f-bf1e35624b50 -2024-07-16 19:07:49.575982 2024-07-16 19:07:49.575997 plgnd 1058840819 R rec 944bed2c-b674-4333-acbc-2273c9eb3194 -2024-07-16 19:07:49.659479 2024-07-16 19:07:49.659494 plgnd 1058838512 R rec de925a33-7199-442b-b5ef-ac69cc9fbeb0 -2024-07-16 19:07:49.743789 2024-07-16 19:07:49.7438 plgnd 1058667343 R rec 493f99c4-4612-4128-9ecb-4a3257383aee -2024-07-16 19:07:49.830458 2024-07-16 19:07:49.830473 plgnd 1058664468 R rec 0e1da936-2ad7-424e-9c8c-0dfdf3089961 -2024-07-16 19:07:49.91294 2024-07-16 19:07:49.912956 plgnd 1058661396 R rec 115fcb8f-1ca1-473c-b5c8-838db79a6ac5 -2024-07-16 19:07:50.006752 2024-07-16 19:07:50.006763 plgnd 1058651994 R rec c552fa39-e89c-4056-8116-09d7297b98e3 -2024-07-16 19:07:50.102915 2024-07-16 19:07:50.10293 plgnd 1058639919 R rec 5c56eda3-f2fc-4298-bcad-f5efdad72055 -2024-07-16 19:07:50.191167 2024-07-16 19:07:50.191183 plgnd 105863982X R rec ff1e9db5-a2fd-44cd-90e0-ce18f62a336e -2024-07-16 19:07:50.295801 2024-07-16 19:07:50.29581 plgnd 1058622773 R rec 5b29e999-e7c6-4691-9e0b-17ab1f991b41 -2024-07-16 19:07:50.381748 2024-07-16 19:07:50.381754 plgnd 1058616684 R rec 4f787d32-1171-4c99-bcbc-d4bb71137133 -2024-07-16 19:07:50.431336 2024-07-16 19:07:50.431342 plgnd 1058616579 R rec d0c0ebfa-8713-4db9-9d4f-2ebe2995e167 -2024-07-16 19:07:50.501754 2024-07-16 19:07:50.501765 plgnd 1058583018 R rec 172bae23-e0fa-4215-86f7-eca0e16de771 -2024-07-16 19:07:50.592404 2024-07-16 19:07:50.592417 plgnd 1058579045 R rec 1b187d43-c721-411c-b274-7e74b3d97b3a -2024-07-16 19:07:50.671565 2024-07-16 19:07:50.671576 plgnd 1058463993 R rec 7bbedda8-0823-43e3-b19a-912d815de585 -2024-07-16 19:07:50.764241 2024-07-16 19:07:50.764251 plgnd 1058463896 R rec a3ec97a5-cba9-4629-821a-269e3b314ddd -2024-07-16 19:07:50.840602 2024-07-16 19:07:50.840613 plgnd 1058460862 R rec 0046bf5f-ec03-4f4c-9fd2-bb02beed6e5a -2024-07-16 19:07:50.923819 2024-07-16 19:07:50.92383 plgnd 1058460293 R rec 1456c17a-7535-45a6-bbec-11182d5e0a99 -2024-07-16 19:07:51.003814 2024-07-16 19:07:51.003825 plgnd 1058395726 R rec 611b9eac-7032-4dfd-a782-570ff37503af -2024-07-16 19:07:51.088627 2024-07-16 19:07:51.088638 plgnd 1058041142 R rec 3f230c2d-7f76-49a2-87f0-82379ce909a8 -2024-07-16 19:07:51.175659 2024-07-16 19:07:51.175671 plgnd 1057942928 R rec 632469b5-b4db-4b70-b222-efdec4097ece -2024-07-16 19:07:51.272663 2024-07-16 19:07:51.272674 plgnd 1056973714 R rec 2249c6b8-00b0-46fb-8bc2-b2c13bf4f7e0 -2024-07-16 19:07:51.359192 2024-07-16 19:07:51.359204 plgnd 1055068716 R rec 46bafe21-da38-42a7-8ac7-df4d639f762c -2024-07-16 19:07:51.428772 2024-07-16 19:07:51.428778 plgnd 1054961824 R rec 92710919-cf0b-45a2-ade5-8b144201d496 -2024-07-16 19:07:51.480479 2024-07-16 19:07:51.480485 plgnd 1054631026 R rec af0f642c-30ca-4a09-89bb-568d2f1903fe -2024-07-16 19:07:51.548028 2024-07-16 19:07:51.54804 plgnd 1054611041 R rec c79cda77-c53f-4928-9a37-409886f38113 -2024-07-16 19:07:51.636532 2024-07-16 19:07:51.636542 plgnd 1054442959 R rec 3abf6e13-c318-45f8-a64e-52a315661285 -2024-07-16 19:07:51.717454 2024-07-16 19:07:51.717468 plgnd 1054382255 R rec a40646f3-c04a-4597-9c65-251a1a5349a4 -2024-07-16 19:07:51.803885 2024-07-16 19:07:51.8039 plgnd 1054036489 R rec a9c0387a-3564-432f-ad50-bfad2619cfbc -2024-07-16 19:07:51.886052 2024-07-16 19:07:51.886062 plgnd 1054036322 R rec 78463071-c8a7-4aca-94be-fe5d3ea4bf2d -2024-07-16 19:07:51.974373 2024-07-16 19:07:51.974388 plgnd 105382467X R rec 16ab6415-1285-40a5-b85e-3ba55a629462 -2024-07-16 19:07:52.052569 2024-07-16 19:07:52.052584 plgnd 1053733119 R rec 1e81d2fe-a1a5-4537-9767-7a83ed73b43c -2024-07-16 19:07:52.134375 2024-07-16 19:07:52.13439 plgnd 1053694857 R rec 3850ac18-21ae-4a2f-a053-56d44d617d7d -2024-07-16 19:07:52.218387 2024-07-16 19:07:52.2184 plgnd 105366916X R rec 25c05139-5146-4210-84dd-e08e1ccc5253 -2024-07-16 19:07:52.313305 2024-07-16 19:07:52.313316 plgnd 1053585039 R rec 90d38804-6c3a-4804-9eb8-9aadbff025f9 -2024-07-16 19:07:52.40418 2024-07-16 19:07:52.404192 plgnd 1053578571 R rec 7023000e-559d-44bb-b83a-bc797cf379e5 -2024-07-16 19:07:52.470577 2024-07-16 19:07:52.470583 plgnd 1053495382 R rec 4762aae2-039a-434b-ac0c-fd10dfa7a10e -2024-07-16 19:07:52.549543 2024-07-16 19:07:52.549556 plgnd 1053460856 R rec 2a3ffa5b-e915-4d32-b953-033b4ed0a983 -2024-07-16 19:07:52.633771 2024-07-16 19:07:52.633786 plgnd 1051746663 R rec 89da5953-5944-4c8a-a627-909187cd34bd -2024-07-16 19:07:52.725351 2024-07-16 19:07:52.725362 plgnd 1044268069 R rec 605be72f-525e-4eb7-9cba-0453a4fd22b8 -2024-07-16 19:07:52.809599 2024-07-16 19:07:52.809609 plgnd 1038831628 R rec bc943bfe-a0fb-49f7-aa05-5938f6c6c13d -2024-07-16 19:07:52.885279 2024-07-16 19:07:52.88529 plgnd 1036912949 R rec c01a19eb-54cf-4054-9ac9-4f9a9ad42445 -2024-07-16 19:07:52.973243 2024-07-16 19:07:52.973258 plgnd 1036573141 R rec 1222ec9e-1c24-4cd3-913e-b2bec42b3bee -2024-07-16 19:07:53.059167 2024-07-16 19:07:53.059178 plgnd 1035487640 R rec a1817c49-e136-4a6c-8bc1-8e5f3a127360 -2024-07-16 19:07:53.14434 2024-07-16 19:07:53.144356 plgnd 1032436034 R rec bb13ee95-7f84-4762-b35d-5c222b11cd77 -2024-07-16 19:07:53.235638 2024-07-16 19:07:53.235654 plgnd 1031571922 R rec 1138a552-22dd-42f0-ab13-105924f36d4c -2024-07-16 19:07:53.344072 2024-07-16 19:07:53.344084 plgnd 1029389896 R rec 976cebd1-5b58-479d-a607-e99fccdd236f -2024-07-16 19:07:53.428546 2024-07-16 19:07:53.428559 plgnd 1029389233 R rec 8024be1c-a765-48c7-8bd0-e0ffc4e53562 -2024-07-16 19:07:53.497497 2024-07-16 19:07:53.497503 plgnd 1029388334 R rec fd7df2b6-d012-47e5-b9e6-f7393e5a3bfb -2024-07-16 19:07:53.542305 2024-07-16 19:07:53.542311 plgnd 1028231660 R rec 9b9758d3-20ee-4a43-a86e-f25b13db7276 -2024-07-16 19:07:53.611328 2024-07-16 19:07:53.61134 plgnd 1024812693 R rec 548b3110-fdd9-40f8-b468-fd9e1d5d6c49 -2024-07-16 19:07:53.706397 2024-07-16 19:07:53.706413 plgnd 1021396656 R rec 99f5e216-1d30-4d5c-8608-92111a9b1949 -2024-07-16 19:07:53.794512 2024-07-16 19:07:53.794528 plgnd 1021113018 R rec 1585eae9-9526-425e-adf9-bb09fedfc2e1 -2024-07-16 19:07:53.877846 2024-07-16 19:07:53.877862 plgnd 1021112577 R rec 8ca0e3de-ff99-43f3-970b-fce986404f5c -2024-07-16 19:07:53.957115 2024-07-16 19:07:53.957133 plgnd 1021112518 R rec e65b472c-2be6-4c04-977a-0b4f04a4c6e4 -2024-07-16 19:07:54.05102 2024-07-16 19:07:54.051031 plgnd 1021112216 R rec 4f73ae18-8681-4cb4-8e66-8e3af7c6a69f -2024-07-16 19:07:54.136125 2024-07-16 19:07:54.136137 plgnd 1021056154 R rec a097bf96-0aa3-475b-ab73-873846f3573b -2024-07-16 19:07:54.222942 2024-07-16 19:07:54.222958 plgnd 1020911387 R rec b9090f6a-6c38-4706-8e42-73e742266fa7 -2024-07-16 19:07:54.306189 2024-07-16 19:07:54.306199 plgnd 1020911344 R rec b42a9118-dee1-48f1-8367-2239f0c44f38 -2024-07-16 19:07:54.39174 2024-07-16 19:07:54.391757 plgnd 1020911026 R rec 570aef3f-74ce-446c-bf21-b9c0a01cd049 -2024-07-16 19:07:54.48698 2024-07-16 19:07:54.486986 plgnd 1020897325 R rec 8d21faa7-02af-47d9-8d96-29402fde1728 -2024-07-16 19:07:54.542837 2024-07-16 19:07:54.542843 plgnd 1020897236 R rec d162af90-abf5-4415-a940-6388276a27ca -2024-07-16 19:07:54.615242 2024-07-16 19:07:54.615253 plgnd 1020865318 R rec eedfe271-49c1-41bf-8e2d-58811cdbabe0 -2024-07-16 19:07:54.701181 2024-07-16 19:07:54.701196 plgnd 1020865237 R rec 58162bdc-95fe-4cfe-9743-f39c6404b57f -2024-07-16 19:07:54.792022 2024-07-16 19:07:54.792038 plgnd 1016112106 R rec 336c149e-f0b9-4edb-883a-6b1e7f14ca1b -2024-07-16 19:07:54.87943 2024-07-16 19:07:54.879446 plgnd 1011060752 R rec ed034d4f-bca9-4c94-843b-246ab9f7ef01 -2024-07-16 19:07:54.967376 2024-07-16 19:07:54.967386 plgnd 1010438603 R rec e05aecfa-ec90-488a-8ccb-87915523c4dc -2024-07-16 19:07:55.055907 2024-07-16 19:07:55.05592 plgnd 1010249460 R rec ce792a6c-8789-40ed-a481-ba706f4f9b16 -2024-07-16 19:07:55.141442 2024-07-16 19:07:55.141455 plgnd 1009847430 R rec 04a77b0f-89c8-4a11-b562-f9da18723cec -2024-07-16 19:07:55.237976 2024-07-16 19:07:55.237994 plgnd 1009707922 R rec 0aadb2cb-cb68-4cd3-8e29-502435e26a80 -2024-07-16 19:07:55.322379 2024-07-16 19:07:55.32239 plgnd 1008073997 R rec 35cc13e7-69b1-4a28-ac9f-7351f065a314 -2024-07-16 19:07:55.416293 2024-07-16 19:07:55.416308 plgnd 1002427517 R rec a1099e96-ade3-4ba2-a0a0-c4cd57a84a92 -2024-07-16 19:07:55.499593 2024-07-16 19:07:55.499608 plgnd 1001762630 R rec 0633afeb-d5d0-4ba9-b43a-75c79a2f5b8f -2024-07-16 19:07:55.571161 2024-07-16 19:07:55.571167 plgnd 996588051 R rec 3e135bb5-550c-454b-a2ee-ed9e42d6db9e -2024-07-16 19:07:55.641455 2024-07-16 19:07:55.641465 plgnd 996155910 R rec 7cd47c1d-270c-4bd5-97e7-0a333660c82d -2024-07-16 19:07:55.727165 2024-07-16 19:07:55.727181 plgnd 995191506 R rec bb9a7318-ad01-480d-a198-198dad8d51b8 -2024-07-16 19:07:55.81519 2024-07-16 19:07:55.815206 plgnd 994536666 R rec 90696ea3-bf70-41a0-accd-e1187f3b3ebc -2024-07-16 19:07:55.914167 2024-07-16 19:07:55.914178 plgnd 992346371 R rec 101f6b76-7d59-4564-b6c1-42afdb368085 -2024-07-16 19:07:56.011178 2024-07-16 19:07:56.011189 plgnd 989505952 R rec 0276e108-da6a-44ce-b7ab-8d2b4ac1c012 -2024-07-16 19:07:56.110119 2024-07-16 19:07:56.110296 plgnd 98831326X R rec 20846c84-a01e-40a0-9257-115ea56bab49 -2024-07-16 19:07:56.212465 2024-07-16 19:07:56.21248 plgnd 985253576 R rec 782bc551-7592-4d15-a20e-0fa19451d8b6 -2024-07-16 19:07:56.302688 2024-07-16 19:07:56.3027 plgnd 984645942 R rec d79ef32f-6801-45cd-b6a4-b21be803c33c -2024-07-16 19:07:56.386853 2024-07-16 19:07:56.386868 plgnd 980891248 R rec b02705ce-351b-48ce-aee5-3f4709485111 -2024-07-16 19:07:56.476398 2024-07-16 19:07:56.476414 plgnd 979131529 R rec 547dbc09-be7c-4b81-b87c-4733586a0be3 -2024-07-16 19:07:56.574845 2024-07-16 19:07:56.574851 plgnd 978966228 R rec de438acf-81bf-4a06-958a-f3923be628a6 -2024-07-16 19:07:56.625651 2024-07-16 19:07:56.625656 plgnd 978923855 R rec 554212c1-affd-412b-8c0f-567ed3e4a828 -2024-07-16 19:07:56.691812 2024-07-16 19:07:56.691823 plgnd 975958925 R rec 301ce552-ea06-47ab-be58-161530b510f8 -2024-07-16 19:07:56.776705 2024-07-16 19:07:56.776716 plgnd 975328573 R rec 78cb2e58-7ccf-4221-a8d4-a05d71958421 -2024-07-16 19:07:56.860223 2024-07-16 19:07:56.860236 plgnd 974245747 R rec 979030bf-ef46-4421-ae43-a17f59ef9329 -2024-07-16 19:07:56.947029 2024-07-16 19:07:56.947041 plgnd 97424225X R rec 8fe403b7-6717-437e-8bbc-05eb3ace284c -2024-07-16 19:07:57.038685 2024-07-16 19:07:57.0387 plgnd 973071648 R rec 8044bad9-89fe-47e3-b994-3c9bac1ceb5f -2024-07-16 19:07:57.128787 2024-07-16 19:07:57.128803 plgnd 973066261 R rec 95a2d795-20e2-4bcf-882a-d4f8c947f7c8 -2024-07-16 19:07:57.210225 2024-07-16 19:07:57.210241 plgnd 973066245 R rec 20bc6cdc-cb4f-4595-907c-be0294ce8176 -2024-07-16 19:07:57.291545 2024-07-16 19:07:57.291556 plgnd 973040149 R rec 046ff7e1-00d5-41b9-8ba3-fcfafd2b1b30 -2024-07-16 19:07:57.37437 2024-07-16 19:07:57.37438 plgnd 972651438 R rec 6da9ded6-339e-408a-8524-8af6e03640ee -2024-07-16 19:07:57.457098 2024-07-16 19:07:57.457109 plgnd 972586601 R rec f0eb8f20-7583-480c-b774-30f185ff508e -2024-07-16 19:07:57.546059 2024-07-16 19:07:57.546076 plgnd 972515704 R rec cb41c511-beba-4164-8903-199ea01e722d -2024-07-16 19:07:57.625743 2024-07-16 19:07:57.625749 plgnd 971359709 R rec a8a75258-7de0-4deb-beac-bd7a718838b0 -2024-07-16 19:07:57.678496 2024-07-16 19:07:57.678503 plgnd 970139470 R rec 61ff269a-98c1-4d2b-ae75-cd8b298f29c8 -2024-07-16 19:07:57.734153 2024-07-16 19:07:57.734169 plgnd 969971028 R rec 93a1a702-437b-4601-aba2-e866cbf08c81 -2024-07-16 19:07:57.811107 2024-07-16 19:07:57.811118 plgnd 969491131 R rec 592356f2-985c-408e-9e1c-5d7a52433e9f -2024-07-16 19:07:57.89643 2024-07-16 19:07:57.896445 plgnd 967753546 R rec cb204431-5898-4f8a-8f6a-cc00693da70b -2024-07-16 19:07:57.97903 2024-07-16 19:07:57.979041 plgnd 967681952 R rec 85a4031f-82ce-4c9b-8d50-6c5b7f019d3c -2024-07-16 19:07:58.068343 2024-07-16 19:07:58.068358 plgnd 967581176 R rec d684df96-a42f-4869-ab31-b346e2bcd8c7 -2024-07-16 19:07:58.163603 2024-07-16 19:07:58.163616 plgnd 967180953 R rec 9c61d898-bc2a-42d5-abb2-a7e841709a98 -2024-07-16 19:07:58.2529 2024-07-16 19:07:58.252912 plgnd 967160480 R rec 12805350-6a1b-4650-9d82-d9baebdb5e77 -2024-07-16 19:07:58.336538 2024-07-16 19:07:58.336549 plgnd 96577578X R rec 4ba79adb-9577-4530-88ad-a545bfc8e5b4 -2024-07-16 19:07:58.42396 2024-07-16 19:07:58.423971 plgnd 965775429 R rec 6d887591-05ad-49b8-ae85-862851c9180a -2024-07-16 19:07:58.515523 2024-07-16 19:07:58.515538 plgnd 965774910 R rec 2e9baa8d-4dcc-4abe-8a82-a2a30a39865d -2024-07-16 19:07:58.600218 2024-07-16 19:07:58.600233 plgnd 965759059 R rec 707e5972-908d-49a8-aadb-7b51e94a04a7 -2024-07-16 19:07:58.672234 2024-07-16 19:07:58.672239 plgnd 96575877X R rec 127b00ad-9c74-4631-8386-5cb2181dc858 -2024-07-16 19:07:58.728945 2024-07-16 19:07:58.728958 plgnd 96563860X R rec ca331ee9-4fc3-468b-8d9d-27087589ad66 -2024-07-16 19:07:58.797625 2024-07-16 19:07:58.797637 plgnd 964991608 R rec 873fb2c2-1f46-4a70-b651-36de04c22037 -2024-07-16 19:07:58.881436 2024-07-16 19:07:58.881448 plgnd 964462427 R rec 81f947ca-7abe-430b-aa2b-2d45bffb9a96 -2024-07-16 19:07:58.970588 2024-07-16 19:07:58.970601 plgnd 96411822X R rec 2f3d58d5-7496-4391-9300-5d337cd18d43 -2024-07-16 19:07:59.053347 2024-07-16 19:07:59.053356 plgnd 963982559 R rec 1038b5cc-b2ac-40dc-afdc-20eb5d2e0f9f -2024-07-16 19:07:59.134128 2024-07-16 19:07:59.134138 plgnd 963957635 R rec 78611672-e2ba-49c8-bd27-d9af903daff0 -2024-07-16 19:07:59.219747 2024-07-16 19:07:59.219758 plgnd 963614673 R rec b144f528-02ca-48d8-a04d-a85f72968b43 -2024-07-16 19:07:59.31901 2024-07-16 19:07:59.319026 plgnd 963462539 R rec ca343d34-da1e-41e0-8508-c40396f44e60 -2024-07-16 19:07:59.407163 2024-07-16 19:07:59.407179 plgnd 963082132 R rec 3079086f-9935-4019-8f26-2a981bb9699b -2024-07-16 19:07:59.496347 2024-07-16 19:07:59.496364 plgnd 962048879 R rec e4450366-1ded-40b2-8b59-be88d731bde6 -2024-07-16 19:07:59.577344 2024-07-16 19:07:59.577354 plgnd 961594519 R rec 90ec9d70-3f2e-4614-becb-bfc6c9a1bf15 -2024-07-16 19:07:59.664031 2024-07-16 19:07:59.664043 plgnd 961594497 R rec 4c218f41-54a9-4933-97f5-f0b0bc9d8c76 -2024-07-16 19:07:59.725251 2024-07-16 19:07:59.725258 plgnd 961594454 R rec 6b009a4f-b34b-43ab-b011-126c5e3961a3 -2024-07-16 19:07:59.782059 2024-07-16 19:07:59.782071 plgnd 961395923 R rec 64fc8274-2e5d-485e-8b30-67fdde239795 -2024-07-16 19:07:59.860823 2024-07-16 19:07:59.860841 plgnd 960863664 R rec b6af42f1-ae65-4cfb-8d68-edb9cdf0ffa1 -2024-07-16 19:07:59.949102 2024-07-16 19:07:59.949118 plgnd 960833919 R rec 6b852148-1b29-4231-8e90-74d2282ce4e7 -2024-07-16 19:08:00.04242 2024-07-16 19:08:00.042432 plgnd 960396268 R rec 5facf0d5-c17f-4c3b-9a00-2e80779abd5d -2024-07-16 19:08:00.126641 2024-07-16 19:08:00.126652 plgnd 960085726 R rec c908008d-aff9-475b-aac1-c68a2469a076 -2024-07-16 19:08:00.212879 2024-07-16 19:08:00.212892 plgnd 959934464 R rec 614cafdf-1b66-4391-af93-b653bb17e786 -2024-07-16 19:08:00.299364 2024-07-16 19:08:00.29938 plgnd 959918612 R rec 9e9f9fd8-2e66-4dac-817a-0f4eb0d7597b -2024-07-16 19:08:00.382023 2024-07-16 19:08:00.382041 plgnd 959788719 R rec f979196a-18e7-426d-ab5a-659919ee1bc8 -2024-07-16 19:08:00.459853 2024-07-16 19:08:00.459869 plgnd 959747575 R rec 10d48503-4bee-4984-9e71-5957be99302c -2024-07-16 19:08:00.541807 2024-07-16 19:08:00.541823 plgnd 959369872 R rec 0c8be9c0-4975-4ab1-a64e-f1960c248627 -2024-07-16 19:08:00.630781 2024-07-16 19:08:00.630797 plgnd 958777055 R rec 585b6eb1-b107-478e-8b39-1b12c2de37f0 -2024-07-16 19:08:00.720214 2024-07-16 19:08:00.72022 plgnd 958014639 R rec 0e363652-1c0f-47da-88c0-914a0c343508 -2024-07-16 19:08:00.772098 2024-07-16 19:08:00.772104 plgnd 957753551 R rec 040c078e-f329-4b66-b263-5a6c4f1b67ce -2024-07-16 19:08:00.830289 2024-07-16 19:08:00.8303 plgnd 957586973 R rec bd6724aa-6b22-4923-8e09-632ae5a348d2 -2024-07-16 19:08:00.913979 2024-07-16 19:08:00.913994 plgnd 957565445 R rec fb3d5c1a-a595-433c-88f9-119738c7154b -2024-07-16 19:08:00.995891 2024-07-16 19:08:00.995906 plgnd 957211430 R rec 16e85fa6-55e1-4603-9b59-bb756a750963 -2024-07-16 19:08:01.079071 2024-07-16 19:08:01.079094 plgnd 956443877 R rec 2c3bc07f-d05a-4331-96ed-cb2967b2f729 -2024-07-16 19:08:01.173394 2024-07-16 19:08:01.17341 plgnd 956443842 R rec 856a935b-dc08-47b7-828c-ecb7187e6ccc -2024-07-16 19:08:01.270659 2024-07-16 19:08:01.27067 plgnd 956443613 R rec 6d9a3a9f-6e4b-4614-bc67-1743778d641f -2024-07-16 19:08:01.359131 2024-07-16 19:08:01.359147 plgnd 955960134 R rec 1ff57584-f2db-4091-a580-e1966b3812b6 -2024-07-16 19:08:01.455917 2024-07-16 19:08:01.455932 plgnd 955820049 R rec 699b3472-75c0-405a-a599-14fba1b2bc71 -2024-07-16 19:08:01.538356 2024-07-16 19:08:01.538371 plgnd 955573246 R rec e7a9a1a7-ae9f-47d5-879e-5a96496cfb72 -2024-07-16 19:08:01.634175 2024-07-16 19:08:01.634186 plgnd 955498058 R rec 6e8198ca-b0cb-434c-9fa6-c8271d281887 -2024-07-16 19:08:01.721911 2024-07-16 19:08:01.721921 plgnd 955495768 R rec af84e843-fcb1-4c92-8d98-3de3d281e026 -2024-07-16 19:08:01.797963 2024-07-16 19:08:01.797972 plgnd 955090547 R rec a58fe825-81c8-48e6-b884-f3a457702d5e -2024-07-16 19:08:01.852031 2024-07-16 19:08:01.852042 plgnd 954472683 R rec f4487c7a-05d4-4fc6-beac-24a948883b38 -2024-07-16 19:08:01.929933 2024-07-16 19:08:01.929943 plgnd 954071832 R rec d5ca72c0-93c7-4486-ab82-7c2de29c8229 -2024-07-16 19:08:02.026832 2024-07-16 19:08:02.026848 plgnd 954064593 R rec eba43b50-6620-4383-846f-ef9f2a35598e -2024-07-16 19:08:02.112218 2024-07-16 19:08:02.112234 plgnd 953168697 R rec 817ea93b-a975-476e-93fc-8887667483a3 -2024-07-16 19:08:02.201028 2024-07-16 19:08:02.20106 plgnd 953105024 R rec 90237a02-7778-4a94-abb8-9eb49575f5be -2024-07-16 19:08:02.285375 2024-07-16 19:08:02.285391 plgnd 952110512 R rec b4733ece-7fe2-43fb-b281-a44d5fd67b5e -2024-07-16 19:08:02.384607 2024-07-16 19:08:02.384624 plgnd 951677268 R rec a2217745-473e-4b27-b588-a5b4c5aede42 -2024-07-16 19:08:02.469544 2024-07-16 19:08:02.469561 plgnd 951510282 R rec 42b7577a-bdb5-4d91-860d-ed44b4b5bac4 -2024-07-16 19:08:02.55534 2024-07-16 19:08:02.555358 plgnd 951510274 R rec 5d9b38cc-9641-41a1-a38c-2c283287db0b -2024-07-16 19:08:02.632461 2024-07-16 19:08:02.632472 plgnd 951510258 R rec b5720ad3-385b-44a9-81a6-73517452a205 -2024-07-16 19:08:02.723552 2024-07-16 19:08:02.723567 plgnd 95135793X R rec f9cfb4e5-b860-4c27-9182-b47d17295bfe -2024-07-16 19:08:02.804475 2024-07-16 19:08:02.804482 plgnd 950649155 R rec f3ae0f0d-29d1-494a-bd39-cdc22285aa06 -2024-07-16 19:08:02.862217 2024-07-16 19:08:02.862223 plgnd 950556149 R rec 74a97b57-2fee-4191-93de-b8ee7ad28571 -2024-07-16 19:08:02.939926 2024-07-16 19:08:02.939937 plgnd 950356190 R rec 6241151a-3130-4163-aebe-95c1c58519b6 -2024-07-16 19:08:03.038402 2024-07-16 19:08:03.038417 plgnd 950339490 R rec 90ca37b4-25f1-41a9-a4a1-113688c76e20 -2024-07-16 19:08:03.122926 2024-07-16 19:08:03.122941 plgnd 950339407 R rec d3d8dca3-622e-4631-8cc0-ff36261e0792 -2024-07-16 19:08:03.212247 2024-07-16 19:08:03.212263 plgnd 950338338 R rec f33778f1-4f59-43f3-bd21-fca76c928f82 -2024-07-16 19:08:03.291869 2024-07-16 19:08:03.291884 plgnd 95033829X R rec 9fb3dfa8-dbe0-4b1c-a0df-00b381bfb5ae -2024-07-16 19:08:03.386714 2024-07-16 19:08:03.386729 plgnd 950338230 R rec 22856a89-c9aa-4b21-bf00-405fb6e63171 -2024-07-16 19:08:03.471564 2024-07-16 19:08:03.471578 plgnd 950338184 R rec 39332da5-d5d4-40a2-8e14-4c5b20f2df68 -2024-07-16 19:08:03.570762 2024-07-16 19:08:03.570775 plgnd 950332429 R rec d44d9b64-a013-4e65-b5f1-c37367842432 -2024-07-16 19:08:03.660465 2024-07-16 19:08:03.660483 plgnd 950332011 R rec 52371b63-15ed-4e49-a707-c5c94dd376fc -2024-07-16 19:08:03.752286 2024-07-16 19:08:03.752297 plgnd 950331821 R rec 53574a37-3e47-4b92-8a64-8947711824aa -2024-07-16 19:08:03.836949 2024-07-16 19:08:03.836957 plgnd 950315354 R rec 85bb630f-3bcd-49c4-8694-f45fffa0a820 -2024-07-16 19:08:03.891208 2024-07-16 19:08:03.891214 plgnd 95020109X R rec b245473c-3c08-4a7c-9446-e887abd35516 -2024-07-16 19:08:03.971095 2024-07-16 19:08:03.971105 plgnd 950199850 R rec 4dd2548e-69bb-4210-bd3e-4719b54f6b68 -2024-07-16 19:08:04.054953 2024-07-16 19:08:04.054969 plgnd 950199214 R rec 7027f3fc-7193-41f6-971e-4400e622b7d9 -2024-07-16 19:08:04.156005 2024-07-16 19:08:04.156017 plgnd 950168637 R rec 10e2d1d7-3ce6-4ff5-91f7-49a915e2dd60 -2024-07-16 19:08:04.27104 2024-07-16 19:08:04.271051 plgnd 949740861 R rec 40242d4c-9c28-4587-ad81-ea4e315e593c -2024-07-16 19:08:04.374895 2024-07-16 19:08:04.374907 plgnd 949647314 R rec 565c6d38-10a4-478e-9afd-1db9c5e34441 -2024-07-16 19:08:04.458479 2024-07-16 19:08:04.45849 plgnd 949641804 R rec d1b3c1e0-be9e-40de-aef3-c2fba67c1f2a -2024-07-16 19:08:04.543312 2024-07-16 19:08:04.543324 plgnd 94963218X R rec da502b3e-a608-4826-a053-2b5b9aa0521c -2024-07-16 19:08:04.630036 2024-07-16 19:08:04.63005 plgnd 949632163 R rec 8101905a-6c3a-4c62-bee4-bf3c9bceca03 -2024-07-16 19:08:04.715041 2024-07-16 19:08:04.715053 plgnd 949632147 R rec 51e542d8-3d68-4b52-b241-42de2ac49de3 -2024-07-16 19:08:04.799094 2024-07-16 19:08:04.799105 plgnd 949632120 R rec b810dbaa-474e-4212-a71f-58077507adf9 -2024-07-16 19:08:04.876716 2024-07-16 19:08:04.876724 plgnd 949632104 R rec 727be07b-1fe1-4e6a-96d2-6e4dc8eb8aa5 -2024-07-16 19:08:04.929671 2024-07-16 19:08:04.929678 plgnd 949607266 R rec 0048ef7a-4743-44d1-8fa7-1ae3f2e914b8 -2024-07-16 19:08:05.005152 2024-07-16 19:08:05.005163 plgnd 949602310 R rec c84f999f-cb20-41ce-8c45-7d1da8650f28 -2024-07-16 19:08:05.088889 2024-07-16 19:08:05.088904 plgnd 948791659 R rec f9aab04c-2d1e-48db-b458-2b276f650b8c -2024-07-16 19:08:05.185098 2024-07-16 19:08:05.185113 plgnd 948417226 R rec f8f57a70-8742-478a-a674-e93083f2c9a0 -2024-07-16 19:08:05.266239 2024-07-16 19:08:05.266253 plgnd 948322292 R rec d11a5376-8867-43e7-962c-1efa8781d6f2 -2024-07-16 19:08:05.354283 2024-07-16 19:08:05.354293 plgnd 948321156 R rec d48ed009-fe2e-43e1-b97e-c195f7bbfb13 -2024-07-16 19:08:05.472803 2024-07-16 19:08:05.472814 plgnd 947976248 R rec 9c9524bb-4253-4666-808b-f91af5570b52 -2024-07-16 19:08:05.563132 2024-07-16 19:08:05.563143 plgnd 947862730 R rec 08b67ad5-ecde-4d9b-bdf9-56ef297144cb -2024-07-16 19:08:05.633513 2024-07-16 19:08:05.633525 plgnd 947589341 R rec 36fad630-5f41-44f6-9e5d-3054b3d22079 -2024-07-16 19:08:05.714128 2024-07-16 19:08:05.714139 plgnd 947454802 R rec 93b40dfc-3bd5-4ef9-b02d-70bbd6437d92 -2024-07-16 19:08:05.80995 2024-07-16 19:08:05.809966 plgnd 947454659 R rec dcdfb68a-ca81-4ad5-a790-f6a067ff417e -2024-07-16 19:08:05.899691 2024-07-16 19:08:05.899696 plgnd 947421238 R rec 8cc09076-b248-46dc-81e9-fdf1bd62e932 -2024-07-16 19:08:05.954002 2024-07-16 19:08:05.954009 plgnd 947026088 R rec b381a3fb-0864-4443-ae8f-c22b41ec733c -2024-07-16 19:08:06.016095 2024-07-16 19:08:06.016109 plgnd 946723729 R rec 45c52c8b-87af-4bb5-98fe-52357670a900 -2024-07-16 19:08:06.116264 2024-07-16 19:08:06.116279 plgnd 946606161 R rec eb3ebafd-209d-443d-b587-6fdea0f62340 -2024-07-16 19:08:06.200435 2024-07-16 19:08:06.200449 plgnd 945980132 R rec b461c5cf-ce2c-414a-b9c1-b2eb893f454f -2024-07-16 19:08:06.289088 2024-07-16 19:08:06.289103 plgnd 945917201 R rec 8fdfee67-7438-45a1-8d82-0b0937192a99 -2024-07-16 19:08:06.376487 2024-07-16 19:08:06.376496 plgnd 945871678 R rec a8a92d54-5e66-41fd-a92d-648b67a23293 -2024-07-16 19:08:06.471495 2024-07-16 19:08:06.47151 plgnd 945385382 R rec 040b76d8-9271-49ce-b371-833be7cb1885 -2024-07-16 19:08:06.550245 2024-07-16 19:08:06.550261 plgnd 944766021 R rec ebcb4857-6715-4258-ab67-cd035209b6f1 -2024-07-16 19:08:06.63656 2024-07-16 19:08:06.636573 plgnd 944289290 R rec 82edb2d3-b280-43f9-be07-3d4894d1fd34 -2024-07-16 19:08:06.720418 2024-07-16 19:08:06.720431 plgnd 94400718X R rec 1b8f50a2-6b55-4019-b856-0fc60344589c -2024-07-16 19:08:06.807197 2024-07-16 19:08:06.807215 plgnd 943882346 R rec d9d1d6e6-b9d0-4331-913f-e86e732dacec -2024-07-16 19:08:06.900574 2024-07-16 19:08:06.900586 plgnd 941847934 R rec 01e7528b-f79c-4706-aadb-ecd2aa187acb -2024-07-16 19:08:06.976063 2024-07-16 19:08:06.976069 plgnd 941808769 R rec 3d09c2c2-666e-4a35-9a8c-26b05362b39c -2024-07-16 19:08:07.057549 2024-07-16 19:08:07.05756 plgnd 941757471 R rec 6fce8af3-92d7-4d61-92c6-830ad635571d -2024-07-16 19:08:07.150978 2024-07-16 19:08:07.15099 plgnd 941385175 R rec 1e4a7e85-c6a7-422b-931a-35edfe7019f0 -2024-07-16 19:08:07.24174 2024-07-16 19:08:07.241756 plgnd 940396068 R rec 15ce8596-3dea-4793-9a1f-1f4b15476427 -2024-07-16 19:08:07.341027 2024-07-16 19:08:07.341038 plgnd 940396009 R rec 9bf8a372-34cf-4d6b-aa3b-c5ac8fee8e00 -2024-07-16 19:08:07.429646 2024-07-16 19:08:07.429661 plgnd 199305404 R rec 7b8ec1d8-d58f-42fa-9d04-4e7b780cf02a -2024-07-16 19:08:07.52808 2024-07-16 19:08:07.52809 plgnd 199252149 R rec 4b4bd4be-f0f3-4557-96ef-db2f66911cbe -2024-07-16 19:08:07.617456 2024-07-16 19:08:07.617467 plgnd 199248974 R rec f31fd049-e92a-425d-843f-d091cfd4018e -2024-07-16 19:08:07.76047 2024-07-16 19:08:07.760476 plgnd 199246815 R rec 4695088e-c533-4e98-8fdb-9ecf0e0a027e -2024-07-16 19:08:07.81357 2024-07-16 19:08:07.813577 plgnd 199246793 R rec b5703ea4-8b95-4399-bcfd-960e5228f92c -2024-07-16 19:08:07.866746 2024-07-16 19:08:07.866752 plgnd 199246211 R rec 407fbafd-8359-4128-a616-1300a550a7f4 -2024-07-16 19:08:07.926525 2024-07-16 19:08:07.926538 plgnd 199244766 R rec 31771831-783c-4201-8bf7-0170905768a4 -2024-07-16 19:08:07.993549 2024-07-16 19:08:07.993557 plgnd 19924474X R rec 8bdef936-044d-4d47-92d7-26b5d954e9f1 -2024-07-16 19:08:08.047034 2024-07-16 19:08:08.047044 plgnd 199244731 R rec 3d872331-39a0-4dac-b859-b68ecb0438b1 -2024-07-16 19:08:08.105176 2024-07-16 19:08:08.105186 plgnd 199244375 R rec 84130de4-b020-40b6-bf74-a2122368b0c3 -2024-07-16 19:08:08.18575 2024-07-16 19:08:08.185766 plgnd 199241562 R rec 078790d7-e328-4882-a09f-69fa5ba37379 -2024-07-16 19:08:08.281543 2024-07-16 19:08:08.28156 plgnd 199240590 R rec cfd8471b-4d9a-417b-901f-42fdac61b4e4 -2024-07-16 19:08:08.362813 2024-07-16 19:08:08.362824 plgnd 199240515 R rec a9a59579-8005-4d26-b445-e27de37ce370 -2024-07-16 19:08:08.450919 2024-07-16 19:08:08.45093 plgnd 199239436 R rec eb1cd43e-2be0-43e6-89ff-dc9260aeacb9 -2024-07-16 19:08:08.534748 2024-07-16 19:08:08.534764 plgnd 19923860X R rec 1633d227-bf24-450d-8c3a-7645f77d38bd -2024-07-16 19:08:08.638676 2024-07-16 19:08:08.63869 plgnd 199231516 R rec 745e0804-17eb-4e56-a0db-5ed79aae50bd -2024-07-16 19:08:08.721789 2024-07-16 19:08:08.721799 plgnd 199230811 R rec a793ccd3-453f-42fe-b675-0c0a2a84a099 -2024-07-16 19:08:08.815312 2024-07-16 19:08:08.815328 plgnd 199230285 R rec 9c6ebd60-224b-4a7b-8e0e-1b34bf8ff366 -2024-07-16 19:08:08.904898 2024-07-16 19:08:08.904909 plgnd 199224196 R rec 657870ad-8b10-4db9-94d2-6e4a4171650a -2024-07-16 19:08:09.01236 2024-07-16 19:08:09.012366 plgnd 199218315 R rec 4ae6c6b1-3bcc-4aa1-8528-c51920e82362 -2024-07-16 19:08:09.070809 2024-07-16 19:08:09.070815 plgnd 199215901 R rec 7c856df2-3986-40ae-9fe8-f58c8df236e5 -2024-07-16 19:08:09.1538 2024-07-16 19:08:09.153811 plgnd 199214700 R rec 1d1afa9e-f79c-410e-a8be-86e28f1cc903 -2024-07-16 19:08:09.241373 2024-07-16 19:08:09.241391 plgnd 19921462X R rec f96a1707-b60e-4671-88a4-598b9158ca1d -2024-07-16 19:08:09.32981 2024-07-16 19:08:09.329826 plgnd 199212007 R rec 2633f9ff-456b-43ab-a425-06959bb5f10a -2024-07-16 19:08:09.413069 2024-07-16 19:08:09.41308 plgnd 199211817 R rec e38615d0-c0e9-49d6-a8ed-e5a974105e68 -2024-07-16 19:08:09.507037 2024-07-16 19:08:09.507048 plgnd 199210713 R rec 189139f0-14e0-4f06-b56d-275a56091e05 -2024-07-16 19:08:09.60301 2024-07-16 19:08:09.603027 plgnd 199209464 R rec 2da96c3f-0fa1-4d38-a0d3-a017ac7b4728 -2024-07-16 19:08:09.687577 2024-07-16 19:08:09.687592 plgnd 199200955 R rec 0ac6e4fc-f82a-4ffe-84b9-885ff3675be0 -2024-07-16 19:08:09.771029 2024-07-16 19:08:09.77104 plgnd 199198578 R rec 42f608a2-b17a-46f5-b948-ca376ca885d2 -2024-07-16 19:08:09.855268 2024-07-16 19:08:09.855278 plgnd 199195978 R rec a9ffeed6-3278-4244-8ef1-53654d4ad03c -2024-07-16 19:08:09.942324 2024-07-16 19:08:09.94234 plgnd 19919596X R rec 313d888d-3e4a-45f1-9048-0065eb018449 -2024-07-16 19:08:10.034784 2024-07-16 19:08:10.034797 plgnd 199189870 R rec 9601ad85-3301-4a07-b9bd-1b0940723ca7 -2024-07-16 19:08:10.105075 2024-07-16 19:08:10.105081 plgnd 199189862 R rec de1199ef-eaa4-4e57-98fb-6b232ebfe8ab -2024-07-16 19:08:10.160712 2024-07-16 19:08:10.160723 plgnd 199189854 R rec 0936636c-cd37-49f8-8ea2-efd05a0f733f -2024-07-16 19:08:10.243965 2024-07-16 19:08:10.243976 plgnd 199189846 R rec 793fd48b-e007-48b6-8286-84ec798bcfaa -2024-07-16 19:08:10.332801 2024-07-16 19:08:10.332814 plgnd 199187282 R rec 6e7e97c6-66b3-434b-99a3-dc5902c03fce -2024-07-16 19:08:10.427764 2024-07-16 19:08:10.42778 plgnd 199181993 R rec e96fc143-eb3d-44da-82c1-4d25bf2e21be -2024-07-16 19:08:10.512406 2024-07-16 19:08:10.512419 plgnd 199173672 R rec bedc7b69-8efc-4c13-9127-53806f88efec -2024-07-16 19:08:10.607483 2024-07-16 19:08:10.607493 plgnd 19917332X R rec 838dae41-e07b-407c-a90b-34eab50178e2 -2024-07-16 19:08:10.689343 2024-07-16 19:08:10.689359 plgnd 199168512 R rec 26d298fc-519a-4e65-8215-5829bdcaa714 -2024-07-16 19:08:10.779948 2024-07-16 19:08:10.779961 plgnd 199164347 R rec 70520063-04ba-4265-b3b7-c9927705c229 -2024-07-16 19:08:10.859478 2024-07-16 19:08:10.859489 plgnd 19916035X R rec aaa0d634-27d5-4f6c-b2b5-734b732624ee -2024-07-16 19:08:10.942601 2024-07-16 19:08:10.942616 plgnd 199159998 R rec 4fbb0c4f-7e13-4f84-8f12-66422887890c -2024-07-16 19:08:11.029378 2024-07-16 19:08:11.029393 plgnd 199159882 R rec 1df181ca-2cce-49d6-9f1a-19902a6b7515 -2024-07-16 19:08:11.109223 2024-07-16 19:08:11.10923 plgnd 199159777 R rec 3946e3bd-765c-4ef8-ba7f-63e839baaecc -2024-07-16 19:08:11.162614 2024-07-16 19:08:11.162626 plgnd 199157642 R rec cc891d33-0bdd-4d08-97bf-516f64b671c3 -2024-07-16 19:08:11.243042 2024-07-16 19:08:11.243053 plgnd 199147760 R rec 77ec72ba-aa9d-431a-bd9c-67c13c4934a5 -2024-07-16 19:08:11.328933 2024-07-16 19:08:11.328943 plgnd 199138834 R rec 7828cf5c-aecd-4536-94e8-4af6089c76b1 -2024-07-16 19:08:11.418265 2024-07-16 19:08:11.418275 plgnd 199136637 R rec cc80a3db-0a02-4ac8-8e3f-091aff290460 -2024-07-16 19:08:11.501747 2024-07-16 19:08:11.501767 plgnd 199118167 R rec 6b1031e2-44b9-452c-809b-e9bb3608840d -2024-07-16 19:08:11.590935 2024-07-16 19:08:11.59095 plgnd 199089973 R rec 474f3d4a-9e36-484d-9c05-12a4af452efc -2024-07-16 19:08:11.682221 2024-07-16 19:08:11.682231 plgnd 199077177 R rec fd7f0e55-39e0-46e6-b285-bc285ec2fb75 -2024-07-16 19:08:11.761197 2024-07-16 19:08:11.761207 plgnd 199023786 R rec b0eafc46-da5a-4165-bef2-7e34047b7487 -2024-07-16 19:08:11.854656 2024-07-16 19:08:11.854668 plgnd 199023360 R rec 9241662c-f877-4390-aaaa-782f276dab2a -2024-07-16 19:08:11.940657 2024-07-16 19:08:11.940671 plgnd 199022534 R rec e8db5cea-9281-46fe-a045-c92331a99ad2 -2024-07-16 19:08:12.03792 2024-07-16 19:08:12.037932 plgnd 199013594 R rec 4520d567-297b-40b4-b5a2-e21d3a9f4e97 -2024-07-16 19:08:12.134433 2024-07-16 19:08:12.134439 plgnd 199013276 R rec 1774671b-92c3-49cf-b22d-b9bc42e2fb0c -2024-07-16 19:08:12.19145 2024-07-16 19:08:12.191456 plgnd 199011249 R rec cd64864a-85b9-4a8b-9b57-92608db2e16c -2024-07-16 19:08:12.261389 2024-07-16 19:08:12.261432 plgnd 199003645 R rec cbea0fbc-b226-4c61-8a86-fc806a7153d7 -2024-07-16 19:08:12.342301 2024-07-16 19:08:12.342314 plgnd 199002894 R rec a87ae66e-e999-43ad-889f-0e532e9f72a8 -2024-07-16 19:08:12.432426 2024-07-16 19:08:12.432437 plgnd 199001111 R rec b690bdd6-2854-4e9e-900f-620d29bcb123 -2024-07-16 19:08:12.516126 2024-07-16 19:08:12.516136 plgnd 199000328 R rec 0993547f-26bd-4ad6-a421-e9a4a6b51136 -2024-07-16 19:08:12.607424 2024-07-16 19:08:12.607439 plgnd 199000239 R rec 8b4d6584-8ae0-42fb-9ff0-9a8348021dbf -2024-07-16 19:08:12.691675 2024-07-16 19:08:12.691691 plgnd 050551604 R rec 98343f26-bef8-4d9e-a446-1fccf8dc49fb -2024-07-16 19:08:12.779873 2024-07-16 19:08:12.779883 plgnd 050133039 R rec a9d41075-3a01-431c-94a0-acbe7acb96ad -2024-07-16 19:08:12.861527 2024-07-16 19:08:12.861539 plgnd 050039350 R rec 5d97f972-9675-4b28-ac7b-69fd33fb38f1 -2024-07-16 19:08:12.956975 2024-07-16 19:08:12.95699 plgnd 043244793 R rec 2e9a0028-de06-4341-be2d-5bacbc26f60f -2024-07-16 19:08:13.046662 2024-07-16 19:08:13.04668 plgnd 043225608 R rec 4fc86281-bb34-44dd-bdce-e87526964e71 -2024-07-16 19:08:13.14082 2024-07-16 19:08:13.140833 plgnd 043151019 R rec 083d68a6-b05e-4055-8e1e-a4c7b45f0309 -2024-07-16 19:08:13.213384 2024-07-16 19:08:13.21339 plgnd 043138764 R rec 7aa61321-075d-424c-b97f-a76dc200e249 -2024-07-16 19:08:13.292646 2024-07-16 19:08:13.292656 plgnd 042976200 R rec 40eb7490-c231-4176-9f3d-4585ad1100b9 -2024-07-16 19:08:13.405521 2024-07-16 19:08:13.405536 plgnd 042939550 R rec 3901a4b7-f016-460e-a30f-299eb7c1d9eb -2024-07-16 19:08:13.490537 2024-07-16 19:08:13.490553 plgnd 042939526 R rec a99823f5-e6e7-4568-8b08-92022153f911 -2024-07-16 19:08:13.573363 2024-07-16 19:08:13.573379 plgnd 042788714 R rec 67cc4cb0-414b-4c50-8016-944d1aab8ffb -2024-07-16 19:08:13.661029 2024-07-16 19:08:13.661044 plgnd 042778352 R rec f9f73e07-b23c-4aaf-8782-7a7c7e9d485f -2024-07-16 19:08:13.757837 2024-07-16 19:08:13.757848 plgnd 042627494 R rec 732c45c4-f648-4ff0-a6b4-10840f6302c3 -2024-07-16 19:08:13.843695 2024-07-16 19:08:13.843706 plgnd 042602564 R rec ce16bfbe-8840-4ef9-a898-7e9aca5a8235 -2024-07-16 19:08:13.930264 2024-07-16 19:08:13.930276 plgnd 042567874 R rec cca4b647-78fe-41b3-8199-3072030c6c3d -2024-07-16 19:08:14.026548 2024-07-16 19:08:14.026564 plgnd 042553628 R rec 57ec2fe0-150e-42a6-8fba-311001309a91 -2024-07-16 19:08:14.117935 2024-07-16 19:08:14.117951 plgnd 042492777 R rec b7a21388-6468-4247-bad8-d666ab2c1ebc -2024-07-16 19:08:14.203349 2024-07-16 19:08:14.203355 plgnd 042490448 R rec 8ddc0def-27e9-4dfa-86b2-fadaa782c2cd -2024-07-16 19:08:14.261012 2024-07-16 19:08:14.261022 plgnd 042477247 R rec d8530b8c-0b52-4876-b54e-6e41f8cb359c -2024-07-16 19:08:14.339837 2024-07-16 19:08:14.339847 plgnd 042400228 R rec ce10e691-677f-49a9-acc6-b961438b1ee9 -2024-07-16 19:08:14.423323 2024-07-16 19:08:14.423339 plgnd 042387175 R rec 9e4634b7-e510-40cb-a3fd-3097daba50de -2024-07-16 19:08:14.51618 2024-07-16 19:08:14.516195 plgnd 042299004 R rec ec9ea054-5c47-4c3c-a0ec-1d641149d9be -2024-07-16 19:08:14.6079 2024-07-16 19:08:14.607912 plgnd 042260213 R rec 07e0c7e7-70c6-4a8f-80f8-9312e5061d3a -2024-07-16 19:08:14.700133 2024-07-16 19:08:14.700149 plgnd 042244943 R rec 83ad7add-214f-434c-a253-7dcd190a85da -2024-07-16 19:08:14.783757 2024-07-16 19:08:14.783768 plgnd 042236037 R rec e78855a6-842e-424e-a202-bc9632627816 -2024-07-16 19:08:14.872104 2024-07-16 19:08:14.872119 plgnd 042209927 R rec 76c7639f-a6d8-44a5-a91f-7db36b3714a5 -2024-07-16 19:08:14.965846 2024-07-16 19:08:14.965859 plgnd 042005450 R rec 4e5fa35a-3f8a-45e5-8e82-4887e3e3e8a5 -2024-07-16 19:08:15.060577 2024-07-16 19:08:15.060589 plgnd 041401174 R rec f1029fb7-57ef-4765-b202-ddf976d2c98b -2024-07-16 19:08:15.147975 2024-07-16 19:08:15.147991 plgnd 041370538 R rec fca20264-7654-480a-b56b-5b14543a1469 -2024-07-16 19:08:15.239864 2024-07-16 19:08:15.23987 plgnd 041194152 R rec 120e037a-d681-4f4c-9129-ccfae1fb8c24 -2024-07-16 19:08:15.296525 2024-07-16 19:08:15.296531 plgnd 041192443 R rec 7910563b-5761-4680-9bf0-98bb5c81e844 -2024-07-16 19:08:15.360626 2024-07-16 19:08:15.360638 plgnd 041167163 R rec 31970e47-e244-4bc2-a678-dd611cb169d9 -2024-07-16 19:08:15.450937 2024-07-16 19:08:15.450952 plgnd 041154282 R rec 5a72e5f8-6352-4c6b-bcd1-3bff6b5a7129 -2024-07-16 19:08:15.532811 2024-07-16 19:08:15.532826 plgnd 041112504 R rec ce7b69b5-dc93-4e9d-86cc-a4e44bc8513f -2024-07-16 19:08:15.62897 2024-07-16 19:08:15.628981 plgnd 041087828 R rec 9391f5eb-16e7-4556-84f7-1335dc64c457 -2024-07-16 19:08:15.710841 2024-07-16 19:08:15.710856 plgnd 041084675 R rec cf448826-d1d2-4efa-a4ec-5145920d07a9 -2024-07-16 19:08:15.799346 2024-07-16 19:08:15.799359 plgnd 041063368 R rec 4c5435c7-fbb0-4b01-ba53-9055ebc2be8a -2024-07-16 19:08:15.883478 2024-07-16 19:08:15.883489 plgnd 04106125X R rec 7743ee7f-0b74-4ed4-8ac7-ea3240e6c958 -2024-07-16 19:08:16.017685 2024-07-16 19:08:16.017695 plgnd 041058445 R rec 31a0dd3e-c334-44ba-835c-2e848e929648 -2024-07-16 19:08:16.100769 2024-07-16 19:08:16.100785 plgnd 041011848 R rec de371e42-14a9-4df7-bd87-9da60463cb9c -2024-07-16 19:08:16.185741 2024-07-16 19:08:16.185793 plgnd 040994716 R rec 631f4604-6f83-4774-8bbd-cf791edb1c74 -2024-07-16 19:08:16.263228 2024-07-16 19:08:16.263233 plgnd 040967689 R rec 037dcbbb-b32a-45a1-b9e9-c256120020c7 -2024-07-16 19:08:16.319132 2024-07-16 19:08:16.319138 plgnd 040957977 R rec 3477e1c5-f4df-492c-92e2-5c095ce1d9b5 -2024-07-16 19:08:16.381784 2024-07-16 19:08:16.381796 plgnd 040956075 R rec 07c90e6a-e857-4bc7-a562-98c1cf8093c2 -2024-07-16 19:08:16.459576 2024-07-16 19:08:16.459592 plgnd 040952789 R rec f02fde57-6c03-4fe6-a026-3d423b7173a6 -2024-07-16 19:08:16.549726 2024-07-16 19:08:16.549736 plgnd 040912833 R rec b5f17afa-47c0-45bf-b4cf-459b79ddcecf -2024-07-16 19:08:16.633428 2024-07-16 19:08:16.633445 plgnd 040873862 R rec 29fab7be-4434-4b17-9bf4-ded72e0a669f -2024-07-16 19:08:16.721879 2024-07-16 19:08:16.721894 plgnd 040865622 R rec cabf8502-47d0-4b97-9222-72b7ae92bd85 -2024-07-16 19:08:16.809709 2024-07-16 19:08:16.809724 plgnd 040805905 R rec 4ce171cf-2264-4da0-9540-b5bca5f86339 -2024-07-16 19:08:16.902305 2024-07-16 19:08:16.90232 plgnd 040802558 R rec 16f53296-a17a-4092-b7a4-07948ee9ebe3 -2024-07-16 19:08:16.988605 2024-07-16 19:08:16.988615 plgnd 040794903 R rec 336c5519-a538-40f1-a3c6-585e7578e2d6 -2024-07-16 19:08:17.070797 2024-07-16 19:08:17.070813 plgnd 040768996 R rec 09c907d5-0495-416c-8a13-c0228e849842 -2024-07-16 19:08:17.15249 2024-07-16 19:08:17.152501 plgnd 040754766 R rec 6a4f7389-c5ad-4f53-b8eb-3538ca906f2e -2024-07-16 19:08:17.245835 2024-07-16 19:08:17.245846 plgnd 040738582 R rec 51a94562-a290-4e24-b508-910f60d0c78e -2024-07-16 19:08:17.317964 2024-07-16 19:08:17.317971 plgnd 040693309 R rec c73ebcdf-4318-43c5-8bfe-45999358394d -2024-07-16 19:08:17.382294 2024-07-16 19:08:17.382305 plgnd 040680223 R rec cd328c4c-989b-43b1-bf74-c0ff1f170834 -2024-07-16 19:08:17.467702 2024-07-16 19:08:17.467716 plgnd 040657752 R rec e43a2c10-3cff-4b5f-b6e7-0c7efee7e9de -2024-07-16 19:08:17.552381 2024-07-16 19:08:17.552397 plgnd 04062501X R rec 68b55be2-3bc7-4fca-b89f-c6af8be27fb1 -2024-07-16 19:08:17.650495 2024-07-16 19:08:17.650506 plgnd 040604853 R rec fb75675e-64d0-4e8d-aa4c-72578ba07b5c -2024-07-16 19:08:17.738318 2024-07-16 19:08:17.738333 plgnd 04060151X R rec 2ac972b1-50d7-4396-8bed-b4b8b4ce3f2b -2024-07-16 19:08:17.827367 2024-07-16 19:08:17.827384 plgnd 040594084 R rec 8a8267c1-2eab-499a-b82a-cb361a506156 -2024-07-16 19:08:17.920572 2024-07-16 19:08:17.920582 plgnd 04057749X R rec 01f8e3e9-0fbc-448d-b5ea-ee8f44b589f2 -2024-07-16 19:08:18.014616 2024-07-16 19:08:18.014631 plgnd 040516687 R rec 596886c5-a56c-401c-bf54-5cc8b4f62914 -2024-07-16 19:08:18.111213 2024-07-16 19:08:18.11123 plgnd 040425134 R rec a532d6ed-627b-451f-b0f4-f4a1ef2004a9 -2024-07-16 19:08:18.202425 2024-07-16 19:08:18.20244 plgnd 04041146X R rec 8eb2a376-6226-4330-b713-3b89df268845 -2024-07-16 19:08:18.306232 2024-07-16 19:08:18.306238 plgnd 040376044 R rec e83e6512-5b84-440e-adf9-cdcfd18c522c -2024-07-16 19:08:18.357164 2024-07-16 19:08:18.357171 plgnd 04037372X R rec 756a3b41-e3be-46ff-a607-ab765ec5e34d -2024-07-16 19:08:18.405048 2024-07-16 19:08:18.405054 plgnd 040368114 R rec 6aa7e12a-30fc-4abe-b082-e0854a7d468a -2024-07-16 19:08:18.470157 2024-07-16 19:08:18.470171 plgnd 040357422 R rec 7d6264d9-54e1-4de0-8db8-2343e26fb751 -2024-07-16 19:08:18.560308 2024-07-16 19:08:18.560318 plgnd 040346919 R rec b2f7be24-85a4-4e34-b040-0feb89a04488 -2024-07-16 19:08:18.657459 2024-07-16 19:08:18.65751 plgnd 040304817 R rec a69d5a07-42ef-41b7-b8a8-bfe2fabeaf54 -2024-07-16 19:08:18.762865 2024-07-16 19:08:18.762903 plgnd 040296377 R rec 5d4c946a-c85a-48f4-9102-67f7b3984cea -2024-07-16 19:08:18.856905 2024-07-16 19:08:18.856922 plgnd 040288099 R rec de030198-2715-4aa8-ba80-ac69d6cfff66 -2024-07-16 19:08:18.945288 2024-07-16 19:08:18.945304 plgnd 04024010X R rec 41dcf624-fef2-4a50-9227-0fd6bb815994 -2024-07-16 19:08:19.032973 2024-07-16 19:08:19.032985 plgnd 040183408 R rec 3765c1fe-fa62-4e3e-8bdf-5ace5e01b42a -2024-07-16 19:08:19.121202 2024-07-16 19:08:19.121216 plgnd 040093417 R rec f40d2bb6-745f-4548-a4a5-cfd12dfec081 -2024-07-16 19:08:19.208451 2024-07-16 19:08:19.208462 plgnd 04009300X R rec 9eb0748a-d80e-41bc-97ed-528c3c37748e -2024-07-16 19:08:19.305057 2024-07-16 19:08:19.305067 plgnd 040055744 R rec 0f66c209-0e1d-422e-8731-b1c89c456f9f -2024-07-16 19:08:19.375385 2024-07-16 19:08:19.375391 plgnd 040024024 R rec 18b2e46c-9d8b-4739-b290-7b2f6e2c1e54 -2024-07-16 19:08:19.434073 2024-07-16 19:08:19.434089 plgnd 030141605 R rec 060e7b2e-808e-4e2d-9e81-e2a85dadf4a0 -2024-07-16 19:08:19.517069 2024-07-16 19:08:19.517084 plgnd 030125898 R rec a7b06d01-812a-4d11-96b3-5b1c01db2787 -2024-07-16 19:08:19.608984 2024-07-16 19:08:19.608995 plgnd 030089050 R rec a1fa5c71-5473-422d-9d7b-481f84a1df2d -2024-07-16 19:08:19.692605 2024-07-16 19:08:19.692615 plgnd 007749023 R rec 59eff571-17aa-4526-ba6c-da6ce797ea32 -2024-07-16 19:08:19.781598 2024-07-16 19:08:19.781613 plgnd 004280768 R rec 5fdafdd2-0dff-4d3e-8c16-3d5938113133 -2024-07-16 19:08:19.873979 2024-07-16 19:08:19.87399 plgnd 004205731 R rec 8022f49c-5f5b-4681-a6ac-7a35bad6cade -2024-07-16 19:08:19.965029 2024-07-16 19:08:19.965046 plgnd 002631628 R rec f46528b9-3db7-4d4b-9363-1d8292e3bbfa -2024-07-16 19:08:20.061055 2024-07-16 19:08:20.061073 plgnd 001101536 R rec 5f605727-732d-4cdf-9e94-3688bbb61171 -2024-07-16 19:08:20.155987 2024-07-16 19:08:20.156004 plgnd 000347078 R rec 4f892ab2-770b-4727-9a63-f9cf53b00e29 -2024-07-16 20:06:36.778714 2024-07-16 20:06:36.778725 plgnd 040496392 R rec 1928f915-9cb6-4669-9aad-d3c913804bd8 -2024-07-16 20:06:37.16222 2024-07-16 20:06:37.162241 plgnd 040220478 R rec 3775ce1e-1acf-490e-9894-4a1148bc3716 -2024-07-16 20:06:37.475359 2024-07-16 20:06:37.475387 plgnd 040794857 R rec 29e2f4a8-f932-4dd4-9cb4-5e8323abff37 -2024-07-16 20:06:37.799168 2024-07-16 20:06:37.79919 plgnd 040792048 R rec 180fb1c4-f9f1-4119-9022-92268fa54d8d -2024-07-16 20:06:38.140908 2024-07-16 20:06:38.14094 plgnd 040099377 R rec ecdba4d3-b083-4dd7-93d9-3ab32bdebe80 -2024-07-16 20:06:38.482486 2024-07-16 20:06:38.482507 plgnd 040023869 R rec 17bc9544-e4b8-4704-a04c-00954dfcdfb2 -2024-07-16 20:06:38.888799 2024-07-16 20:06:38.888815 plgnd 040792153 R rec 1e0c18a7-7ef6-4e9b-bfae-fcb4ea0a21c4 -2024-07-16 20:06:39.223796 2024-07-16 20:06:39.223821 plgnd 040772586 R rec cdad6617-e423-4a2f-8d0f-0f0631577c07 -2024-07-16 20:06:39.54 2024-07-16 20:06:39.540014 plgnd 040006956 R rec ef1d8da0-f310-40ae-8a00-841a7bd03587 -2024-07-16 20:06:39.906853 2024-07-16 20:06:39.906882 plgnd 041152077 R rec 07662aca-17d3-44d3-a92f-b2878c2065fe -2024-07-16 20:06:40.239031 2024-07-16 20:06:40.23906 plgnd 040065146 R rec 3cbc06ee-d0a2-4a17-9534-60324236a6eb -2024-07-16 20:06:40.567501 2024-07-16 20:06:40.567539 plgnd 041075102 R rec d5f5dacc-da71-4812-a723-d57facfe65ff -2024-07-16 20:06:40.884994 2024-07-16 20:06:40.885027 plgnd 040792374 R rec 453c4d1f-2a2c-447f-91ab-ff07e4fd4059 -2024-07-16 20:06:41.210484 2024-07-16 20:06:41.210524 plgnd 040054063 R rec ec1ad2ff-2fa9-46a4-a943-11d11ddbec02 -2024-07-16 20:06:41.544513 2024-07-16 20:06:41.54454 plgnd 040284956 R rec 585f5371-a3e8-4d70-a717-3690a88871e0 -2024-07-16 20:06:41.875419 2024-07-16 20:06:41.87543 plgnd 041196058 R rec f924f4e6-f5d1-4a18-a1e3-23ea566cd24f -2024-07-16 20:06:42.210974 2024-07-16 20:06:42.211 plgnd 040658236 R rec ca2b7df6-613c-4a91-86a6-8aa149f634f2 -2024-07-16 20:06:42.532761 2024-07-16 20:06:42.532784 plgnd 040446603 R rec 1a125cef-d5e1-41b9-8a13-2afb8d069fa2 -2024-07-16 20:06:42.823715 2024-07-16 20:06:42.823719 plgnd 040000222 R rec a67677fe-b202-46a5-b366-8aeae9cfbf93 -2024-07-16 20:06:43.113473 2024-07-16 20:06:43.113498 plgnd 040518507 R rec 5c3a5791-e092-4960-b29d-89a080afed57 -2024-07-16 20:06:43.434823 2024-07-16 20:06:43.43485 plgnd 040400565 R rec 771f203b-cc80-49b2-83ce-cdadfbd80f40 -2024-07-16 20:06:43.751172 2024-07-16 20:06:43.751208 plgnd 040175812 R rec 5ca95318-ad3d-42f6-b466-d9a8fc3c376b -2024-07-16 20:06:44.077463 2024-07-16 20:06:44.0775 plgnd 040218813 R rec b74330b2-714c-4a26-bda4-2bbbb1ecefe1 -2024-07-16 20:06:44.394631 2024-07-16 20:06:44.394665 plgnd 040147703 R rec e1402819-e558-42a2-b79d-50ab718de46f -2024-07-16 20:06:44.720141 2024-07-16 20:06:44.720351 plgnd 040789829 R rec eaa38e9e-31e2-4b17-be69-0acc2fb7aea2 -2024-07-16 20:06:45.034341 2024-07-16 20:06:45.034346 plgnd 040785416 R rec 6a60e923-bb1d-4d4b-9a2c-4cc7dbd5a637 -2024-07-16 20:06:45.307413 2024-07-16 20:06:45.307434 plgnd 040772756 R rec 0acb00fa-ec28-416b-b922-ac7985c3e4c9 -2024-07-16 20:06:45.715958 2024-07-16 20:06:45.71598 plgnd 040390586 R rec bbca63f9-2f39-4c99-bdad-068128c3efe8 -2024-07-16 20:06:46.020584 2024-07-16 20:06:46.020589 plgnd 042750067 R rec ff3248d4-893d-473a-9823-c3d544ee713d -2024-07-16 20:06:46.290876 2024-07-16 20:06:46.290902 plgnd 040149544 R rec 8b3c63a3-5892-447e-bd0f-1ed628a75953 -2024-07-16 20:06:46.5831 2024-07-16 20:06:46.583137 plgnd 042499909 R rec 575a5e85-6017-4926-ab1e-c58c10afb87d -2024-07-16 20:06:46.882728 2024-07-16 20:06:46.882745 plgnd 040000079 R rec c10568c8-004e-41cc-a01b-a11ec159d3db -2024-07-16 20:06:47.166747 2024-07-16 20:06:47.166759 plgnd 040756130 R rec 321667c2-4609-438c-b03c-4eb0f97f42ee -2024-07-16 20:06:47.492789 2024-07-16 20:06:47.492819 plgnd 040443817 R rec 10257843-7c9c-4ca5-9eca-d941f26fdb5e -2024-07-16 20:06:47.787388 2024-07-16 20:06:47.787423 plgnd 040744256 R rec daa6735d-9aef-4fb6-8bf7-01fbcc8eafec -2024-07-16 20:06:48.086698 2024-07-16 20:06:48.086712 plgnd 040749002 R rec 7710ca55-fbdf-4bb5-a69e-fdc4a8fcf555 -2024-07-16 20:06:48.44264 2024-07-16 20:06:48.442671 plgnd 00468687X R rec 8b97e1d7-5eab-4843-b25a-6e0b7dcca375 -2024-07-16 20:06:48.763905 2024-07-16 20:06:48.763942 plgnd 040940888 R rec 6995f5b0-6bc5-4be5-8fab-be39e732e4b3 -2024-07-16 20:06:49.107376 2024-07-16 20:06:49.107409 plgnd 040011798 R rec 6da6f891-44ea-47a1-a7b1-c95140103b7e -2024-07-16 20:06:49.403421 2024-07-16 20:06:49.403433 plgnd 040559645 R rec d9be1dd3-6cd9-47a2-8949-bc6421e9585f -2024-07-16 20:06:49.717966 2024-07-16 20:06:49.718 plgnd 041355350 R rec 5b97590e-538e-4427-b350-2e2f24c1ae7c -2024-07-16 20:06:50.019448 2024-07-16 20:06:50.019474 plgnd 040424820 R rec 772140b2-b78b-4497-8f5e-8b5c3ed79ac2 -2024-07-16 20:06:50.674393 2024-07-16 20:06:50.674414 plgnd 040932087 R rec c1a4630c-0cb0-430b-ae6e-47cbecc6700a -2024-07-16 20:06:50.969056 2024-07-16 20:06:50.96907 plgnd 040786528 R rec 1ca5c79e-36c8-4299-9af4-1bb277c86b9a -2024-07-16 20:06:51.259111 2024-07-16 20:06:51.25912 plgnd 040584488 R rec 9ce76635-aa41-44d1-b3b9-35bb9cf9ae61 -2024-07-16 20:06:51.540487 2024-07-16 20:06:51.54051 plgnd 040276678 R rec 6440bbf0-235a-4b5a-8b0e-cb0f7945abe6 -2024-07-16 20:06:51.854133 2024-07-16 20:06:51.854165 plgnd 040859312 R rec 2d01cd11-2623-4db7-ba06-8255a61d34fa -2024-07-16 20:06:52.162572 2024-07-16 20:06:52.162594 plgnd 040401499 R rec 4c24f01c-1128-4d81-93b0-65d84e1ea370 -2024-07-16 20:06:52.504834 2024-07-16 20:06:52.50487 plgnd 040013286 R rec ff511a6f-d1fc-4142-9523-7a9c5de90754 -2024-07-16 20:06:52.850242 2024-07-16 20:06:52.850273 plgnd 040475646 R rec d9f6cd0a-4ca3-44eb-9e95-84800da25915 -2024-07-16 20:06:53.164045 2024-07-16 20:06:53.164077 plgnd 040181456 R rec dc060e9f-0782-4e8e-8988-006c04e054ab -2024-07-16 20:06:53.450217 2024-07-16 20:06:53.450224 plgnd 040046206 R rec 6dc7af7d-236d-42b6-b5f4-ae3307a7db17 -2024-07-16 20:06:53.7317 2024-07-16 20:06:53.731708 plgnd 946153248 R rec 125f15bd-aee0-49e6-930e-647dec30be6f -2024-07-16 20:06:54.082865 2024-07-16 20:06:54.082891 plgnd 040690997 R rec 27f0b1b6-e947-4015-bb19-b9a023d89d82 -2024-07-16 20:06:54.386014 2024-07-16 20:06:54.386046 plgnd 040092569 R rec e979e90d-f92b-4018-b3af-a2922017546a -2024-07-16 20:06:54.698284 2024-07-16 20:06:54.698307 plgnd 040538818 R rec 5bbb660e-019f-4cde-9f14-1fb35ec47851 -2024-07-16 20:06:55.024004 2024-07-16 20:06:55.024019 plgnd 040552098 R rec af8b07c9-f502-4321-a3af-4f9859e888e9 -2024-07-16 20:06:55.448666 2024-07-16 20:06:55.448689 plgnd 040442578 R rec 3e8d1bb0-727b-4462-a994-3d54b1ed9301 -2024-07-16 20:06:55.74866 2024-07-16 20:06:55.748681 plgnd 041170008 R rec f4afa45c-c31b-401e-ab09-44fe3c9461f8 -2024-07-16 20:06:56.083707 2024-07-16 20:06:56.083737 plgnd 040300900 R rec 37901c27-423e-4e4e-bba5-bba5a6df226d -2024-07-16 20:06:56.410401 2024-07-16 20:06:56.41043 plgnd 041940458 R rec 645bbfee-d94b-4ef2-bd35-4820cbc25e20 -2024-07-16 20:06:56.723198 2024-07-16 20:06:56.723227 plgnd 04037680X R rec feaaf40d-436c-4eb5-b546-1baadedd9358 -2024-07-16 20:06:57.031032 2024-07-16 20:06:57.03105 plgnd 04051658X R rec 7049aec3-1e4a-4954-97f1-3e761f3f5a2d -2024-07-16 20:06:57.317542 2024-07-16 20:06:57.317573 plgnd 04068878X R rec c826a1f5-d65d-49b8-8682-578dd9186107 -2024-07-16 20:06:57.611252 2024-07-16 20:06:57.611262 plgnd 043187048 R rec b453c247-5347-4fdf-be3a-15d9f40345e5 -2024-07-16 20:06:58.017416 2024-07-16 20:06:58.01744 plgnd 993248810 R rec 59a972c1-2876-47d4-b0db-ad82e72c345a -2024-07-16 20:06:58.329928 2024-07-16 20:06:58.329959 plgnd 04022113X R rec 50da11ab-e47e-4b85-a127-ae965c202bb2 -2024-07-16 20:06:58.640095 2024-07-16 20:06:58.640109 plgnd 040144267 R rec 10ca4222-d574-49ab-9ea3-55f51185d3e1 -2024-07-16 20:06:58.922825 2024-07-16 20:06:58.922842 plgnd 955884152 R rec 46793679-9291-4c35-9a48-5686e1a0ec56 -2024-07-16 20:06:59.227302 2024-07-16 20:06:59.227336 plgnd 040551938 R rec 02b8d4b8-ee85-426a-908d-74df0ae4d110 -2024-07-16 20:06:59.537867 2024-07-16 20:06:59.537895 plgnd 04078228X R rec 02e020e3-9e7b-42b4-9084-00aab31405b1 -2024-07-16 20:06:59.823999 2024-07-16 20:06:59.824011 plgnd 040912000 R rec 4b57625a-57de-4ea8-9158-92cbdc382690 -2024-07-16 20:07:00.266958 2024-07-16 20:07:00.26699 plgnd 040802752 R rec 603dd1ab-db88-4f15-b861-f0ab5817b34b -2024-07-16 20:07:00.882775 2024-07-16 20:07:00.882786 plgnd 040181413 R rec 4494355f-ab58-4d40-96f4-a211d4bb80da -2024-07-16 20:07:01.207106 2024-07-16 20:07:01.207127 plgnd 040714039 R rec 5696b314-99e0-4b07-bcd8-6276abc3837c -2024-07-16 20:07:01.54879 2024-07-16 20:07:01.548818 plgnd 040587940 R rec 2a8cca1e-950f-4a13-8f9f-84f56b2c3509 -2024-07-16 20:07:01.8416 2024-07-16 20:07:01.841606 plgnd 041037766 R rec 27c7f759-24f4-4a6d-843b-4b1094ebce67 -2024-07-16 20:07:02.430415 2024-07-16 20:07:02.430446 plgnd 04045312X R rec 3869d93e-47c8-4a05-af18-0c66d2d3d688 -2024-07-16 20:07:02.757778 2024-07-16 20:07:02.757797 plgnd 040422038 R rec 4ef2626e-9a33-4700-aaf0-d6227df71df5 -2024-07-16 20:07:03.063676 2024-07-16 20:07:03.063705 plgnd 040032175 R rec 066c0326-db99-4563-966a-cf6d3ffb0e43 -2024-07-16 20:07:03.378151 2024-07-16 20:07:03.378176 plgnd 040754715 R rec 60ad1706-485f-4b08-bf68-7136910e16a8 -2024-07-16 20:07:03.696075 2024-07-16 20:07:03.696101 plgnd 04033340X R rec 76f12bbe-1037-4924-aa74-5b302ed9acd9 -2024-07-16 20:07:04.009897 2024-07-16 20:07:04.009906 plgnd 040547809 R rec f62a8587-8860-49f6-bd05-6798ee151b8c -2024-07-16 20:07:04.30425 2024-07-16 20:07:04.304261 plgnd 04037100X R rec 288a4e2a-5564-4e76-858c-a8e9d4a21b44 -2024-07-16 20:07:04.662227 2024-07-16 20:07:04.66226 plgnd 04051594X R rec a71e1bb2-31f4-4c5c-94f4-2fe7bb820cd1 -2024-07-16 20:07:05.252375 2024-07-16 20:07:05.252398 plgnd 952816407 R rec d309d794-fb8c-46c7-87b4-a2b93895bb9a -2024-07-16 20:07:05.572538 2024-07-16 20:07:05.572551 plgnd 040016269 R rec c62c043a-6ccb-469f-be46-13c809d2609a -2024-07-16 20:07:05.849011 2024-07-16 20:07:05.849035 plgnd 040201392 R rec 9624e7b6-2c72-4e77-a5d7-46aa6baf8fe5 -2024-07-16 20:07:06.314767 2024-07-16 20:07:06.314797 plgnd 040780295 R rec d77c95c4-1d43-4add-942c-cfc092d8d749 -2024-07-16 20:07:06.62353 2024-07-16 20:07:06.623572 plgnd 040687899 R rec 70a97b78-8c47-4d75-80ec-102487c5e066 -2024-07-16 20:07:06.935013 2024-07-16 20:07:06.935046 plgnd 040424839 R rec 050b372d-d077-4963-84eb-cd49ed73007e -2024-07-16 20:07:07.232101 2024-07-16 20:07:07.232124 plgnd 040644669 R rec 59ba87db-9c59-48cb-be15-353ebdcbf79a -2024-07-16 20:07:07.546619 2024-07-16 20:07:07.54665 plgnd 040379922 R rec 9d093795-816d-4ea5-947e-008cbf952b46 -2024-07-16 20:07:07.87186 2024-07-16 20:07:07.871892 plgnd 040432718 R rec 41be12f5-d138-4c88-afc7-e1403ec0882c -2024-07-16 20:07:08.194808 2024-07-16 20:07:08.194824 plgnd 04079203X R rec 1ca2f2a8-d7b6-4597-b13a-a77de28c616b -2024-07-16 20:07:08.450823 2024-07-16 20:07:08.450857 plgnd 040757390 R rec 814e2f8f-cef3-43cb-b89a-a92d878c032c -2024-07-16 20:07:08.782147 2024-07-16 20:07:08.782165 plgnd 000339784 R rec 832e288d-9ef0-4b8b-85c8-e2cdabe14c50 -2024-07-16 20:07:09.097393 2024-07-16 20:07:09.097423 plgnd 040780120 R rec 939737e8-21c3-4220-a19f-1ff21d1e670e -2024-07-16 20:07:09.408994 2024-07-16 20:07:09.409016 plgnd 040118908 R rec d8345dd0-3cb0-44c4-ad65-f71235e9988a -2024-07-16 20:07:09.963429 2024-07-16 20:07:09.963467 plgnd 040201384 R rec df8a988c-9d4c-407e-89cd-cac5ccbd542e -2024-07-16 20:07:10.268667 2024-07-16 20:07:10.268681 plgnd 040471942 R rec 4caf12e8-7e47-4c9a-93f8-53104a0243f6 -2024-07-16 20:07:10.550647 2024-07-16 20:07:10.550674 plgnd 04014500X R rec 9a9a1f02-af1d-47ec-a4b4-b0369d8fc47d -2024-07-16 20:07:10.882199 2024-07-16 20:07:10.882217 plgnd 964991500 R rec fecc956e-aa69-4d4e-8586-31a2acea8138 -2024-07-16 20:07:11.223625 2024-07-16 20:07:11.223639 plgnd 040181847 R rec 2834cb62-976d-4b13-b3d7-46c9f81c3aaa -2024-07-16 20:07:11.525707 2024-07-16 20:07:11.525734 plgnd 040022935 R rec 75065f9c-055b-4ef9-a9bb-c1b56d57e68c -2024-07-16 20:07:11.861592 2024-07-16 20:07:11.861627 plgnd 040731723 R rec 8e731b7d-45e0-4606-9f01-87c501b92f71 -2024-07-16 20:07:12.215578 2024-07-16 20:07:12.215604 plgnd 040754685 R rec b54ef0ea-834b-49e0-8a0d-ab9945ceef46 -2024-07-16 20:07:12.567352 2024-07-16 20:07:12.567385 plgnd 040076075 R rec 13d25ab8-2694-40d7-9644-6eb79368df88 -2024-07-16 20:07:12.880506 2024-07-16 20:07:12.880536 plgnd 040753034 R rec 58775d77-ac49-4993-b513-2721f1776a38 -2024-07-16 20:07:13.189736 2024-07-16 20:07:13.189756 plgnd 04075720X R rec 489a76da-2723-4e83-9c22-5806ae0ed47c -2024-07-16 20:07:13.4855 2024-07-16 20:07:13.485506 plgnd 040611639 R rec f2433715-bed9-4936-8533-6ba350caaa98 -2024-07-16 20:07:13.758646 2024-07-16 20:07:13.758671 plgnd 040554589 R rec 3b098bc9-c300-41ee-a2d9-71ef39206606 -2024-07-16 20:07:14.074066 2024-07-16 20:07:14.074092 plgnd 04041745X R rec 4ffe663a-fe47-4f42-a840-0f32e5163801 -2024-07-16 20:07:14.384804 2024-07-16 20:07:14.384833 plgnd 040302369 R rec 8e0bb27d-054d-4fb3-b3db-4344a8c426a3 -2024-07-16 20:07:14.696516 2024-07-16 20:07:14.696547 plgnd 040318125 R rec a41d9b31-4edd-4b8d-ba72-02ba71a0d678 -2024-07-16 20:07:15.01552 2024-07-16 20:07:15.015545 plgnd 040624048 R rec bbeb41bf-1d03-4861-9eb9-11e52ef8341a -2024-07-16 20:07:15.323721 2024-07-16 20:07:15.323738 plgnd 040396770 R rec 7249c788-b725-4284-b72f-378913095601 -2024-07-16 20:07:15.618365 2024-07-16 20:07:15.618372 plgnd 040099296 R rec b8e0431d-73ed-4556-9a59-08758b49fcf5 -2024-07-16 20:07:15.960755 2024-07-16 20:07:15.960779 plgnd 040050440 R rec d2a25ebf-65f6-4b99-8ad7-83cd9800de8d -2024-07-16 20:07:16.27027 2024-07-16 20:07:16.270309 plgnd 040774678 R rec a0c8eaed-85fc-486d-a9cb-fa9b89c63a4b -2024-07-16 20:07:16.914313 2024-07-16 20:07:16.914331 plgnd 040278395 R rec ebde3225-99e9-434e-a342-c9a9fa2fc42c -2024-07-16 20:07:17.28739 2024-07-16 20:07:17.287408 plgnd 04068041X R rec a9f16b28-91af-4c23-bb6e-4ec00b2d96b7 -2024-07-16 20:07:17.58379 2024-07-16 20:07:17.583809 plgnd 040740323 R rec f2eae65b-5280-4f54-b54f-6324f67407a4 -2024-07-16 20:07:17.884021 2024-07-16 20:07:17.884048 plgnd 040367282 R rec 61a0e71a-8974-4cd4-9f72-12a78582fe27 -2024-07-16 20:07:18.705622 2024-07-16 20:07:18.705635 plgnd 04003366X R rec 646d2f60-34c7-4f96-8f1d-fd458474e603 -2024-07-16 20:07:18.989607 2024-07-16 20:07:18.989626 plgnd 040769100 R rec bf46d994-754f-4d08-8dba-3083a3ac3de7 -2024-07-16 20:07:19.29877 2024-07-16 20:07:19.298805 plgnd 040763102 R rec aeda72ad-b865-445d-a848-27b00075583c -2024-07-16 20:07:19.588656 2024-07-16 20:07:19.58868 plgnd 040039005 R rec 0c0fc1c8-fa36-4ad6-af0d-18dca2a3a1f3 -2024-07-16 20:07:19.979292 2024-07-16 20:07:19.979321 plgnd 952907682 R rec 66484e38-2451-456d-8852-0cb64952e578 -2024-07-16 20:07:20.2963 2024-07-16 20:07:20.296337 plgnd 040703525 R rec 2467e69e-9e72-4226-a249-3723e0614233 -2024-07-16 20:07:20.6242 2024-07-16 20:07:20.624214 plgnd 040612066 R rec 531cfd33-07cb-47c6-b44f-e37845bb40a4 -2024-07-16 20:07:20.893149 2024-07-16 20:07:20.893155 plgnd 040277542 R rec 8668d6db-a38e-4b7c-a8cd-2a7f92e4f822 -2024-07-16 20:07:21.172013 2024-07-16 20:07:21.172045 plgnd 968963935 R rec e84283c4-eeb7-4d6f-8aa4-d7d52ff3fba9 -2024-07-16 20:07:21.470704 2024-07-16 20:07:21.470722 plgnd 040287505 R rec abc339e3-5d5a-4081-8449-a4d802a3b188 -2024-07-16 20:07:21.771808 2024-07-16 20:07:21.771853 plgnd 040995623 R rec c531780e-2686-4e53-ae7f-ed817c8d4d91 -2024-07-16 20:07:22.088926 2024-07-16 20:07:22.08896 plgnd 040201376 R rec 7d9ce8df-369d-492a-9863-91a65c654356 -2024-07-16 20:07:22.417292 2024-07-16 20:07:22.417304 plgnd 040294137 R rec 2941963e-caa7-46f9-b209-f1fede879ee3 -2024-07-16 20:07:22.709803 2024-07-16 20:07:22.709836 plgnd 041192389 R rec d416c7aa-6e5b-4d7d-9d56-2f0a60c7949b -2024-07-16 20:07:23.031937 2024-07-16 20:07:23.031943 plgnd 040057623 R rec a638ec3d-721e-4605-a4dc-01ff080d00d9 -2024-07-16 20:07:23.310144 2024-07-16 20:07:23.310166 plgnd 040464962 R rec 9f263e7f-bdab-427d-9167-b66663d81238 -2024-07-16 20:07:23.632564 2024-07-16 20:07:23.632596 plgnd 954696867 R rec 7b5e9011-88b8-4bc2-83b2-b91d02778d22 -2024-07-16 20:07:24.978227 2024-07-16 20:07:24.978254 plgnd 04032527X R rec 39cb61e9-58a8-4b4e-bff4-3b2950e46904 -2024-07-16 20:07:25.305711 2024-07-16 20:07:25.305741 plgnd 040467554 R rec 191a4738-a922-4e95-bc30-2d885880465e -2024-07-16 20:07:25.636827 2024-07-16 20:07:25.636854 plgnd 040680649 R rec d200a9e8-56ce-49a9-a1e0-5c5c021e1e29 -2024-07-16 20:07:25.96683 2024-07-16 20:07:25.966861 plgnd 041179145 R rec c5d3e13f-f54a-4c76-83e4-d87dd643a702 -2024-07-16 20:07:26.266233 2024-07-16 20:07:26.266243 plgnd 040367339 R rec 825cef54-53ce-4f09-be58-493380db2c2d -2024-07-16 20:07:26.88646 2024-07-16 20:07:26.886492 plgnd 040019098 R rec 2592d6c1-552d-4d87-b62d-6e4e592ac1b2 -2024-07-16 20:07:27.193205 2024-07-16 20:07:27.193218 plgnd 941147797 R rec 66a75508-0dce-4acd-afd0-ca81ab0470c9 -2024-07-16 20:07:27.46143 2024-07-16 20:07:27.461448 plgnd 040057658 R rec 876b7175-9106-4145-94a0-8ac4e738af13 -2024-07-16 20:07:27.761283 2024-07-16 20:07:27.761312 plgnd 040932052 R rec d8d3b6ef-b9e5-4d7b-8ea3-6fc4278ef4db -2024-07-16 20:07:28.116699 2024-07-16 20:07:28.116725 plgnd 040387887 R rec 290244f4-691e-45e0-a4c5-5878439c5819 -2024-07-16 20:07:28.479411 2024-07-16 20:07:28.479436 plgnd 949642762 R rec e5cc78d9-841f-4f3c-9e5b-af0332484988 -2024-07-16 20:07:28.807666 2024-07-16 20:07:28.807691 plgnd 040794873 R rec a2dd90b8-a52a-4d68-813a-65fceb0c80c1 -2024-07-16 20:07:29.114294 2024-07-16 20:07:29.114321 plgnd 040713326 R rec 7cb4d3b8-cba2-41cb-9224-272ede4204d0 -2024-07-16 20:07:29.545488 2024-07-16 20:07:29.545509 plgnd 041186672 R rec f65d34c0-d1bc-4620-aecb-ca2c44656d48 -2024-07-16 20:07:29.867562 2024-07-16 20:07:29.867586 plgnd 040419150 R rec 792ca86a-46f1-4f36-ad44-0fcd1ca32463 -2024-07-16 20:07:30.513112 2024-07-16 20:07:30.513121 plgnd 040721000 R rec df3882df-2a28-48e6-b1d4-665b7472430e -2024-07-16 20:07:30.802868 2024-07-16 20:07:30.802897 plgnd 041051513 R rec 1ecab22e-541b-4790-bf20-09c0cc9bdccd -2024-07-16 20:07:31.117342 2024-07-16 20:07:31.117354 plgnd 944449360 R rec c034a3e3-58e1-4a4a-92c0-d9ad7bcf5e15 -2024-07-16 20:07:31.42479 2024-07-16 20:07:31.424808 plgnd 040743357 R rec 9eea9ba6-8045-422b-a28c-332749b6ca15 -2024-07-16 20:07:31.70289 2024-07-16 20:07:31.70291 plgnd 040201449 R rec 7bc01af9-d509-4597-8dc7-a647c3b2c50f -2024-07-16 20:07:32.026185 2024-07-16 20:07:32.026211 plgnd 040293076 R rec 9cb1bf2e-7d40-4022-b172-d2d81f0546d3 -2024-07-16 20:07:32.339236 2024-07-16 20:07:32.339265 plgnd 040022080 R rec a954f015-d68f-4cca-8a40-c5a35606a6a1 -2024-07-16 20:07:32.636902 2024-07-16 20:07:32.636915 plgnd 040504719 R rec 24aff614-c86c-4310-a1ba-4a0c06a1d23a -2024-07-16 20:07:33.259759 2024-07-16 20:07:33.259786 plgnd 040289664 R rec 6e950296-adf3-4e35-b104-11b7f7481636 -2024-07-16 20:07:33.561415 2024-07-16 20:07:33.561429 plgnd 1077172354 R rec a6bd0410-b784-4d58-9d7b-bf7128184ce5 -2024-07-16 20:07:33.835088 2024-07-16 20:07:33.835113 plgnd 040294560 R rec 27abcf8c-6eb3-4d20-b2c0-db466406c7f3 -2024-07-16 20:07:34.161439 2024-07-16 20:07:34.161471 plgnd 040010287 R rec d329016d-df96-4f35-8830-cff5b31ea25c -2024-07-16 20:07:34.480992 2024-07-16 20:07:34.48102 plgnd 040519937 R rec 0a62da65-25ab-41c2-a0fd-61418c28ecbc -2024-07-16 20:07:34.834348 2024-07-16 20:07:34.834366 plgnd 040714446 R rec b2178e95-4a1c-401a-a3fb-133ec2329fd5 -2024-07-16 20:07:35.118657 2024-07-16 20:07:35.118696 plgnd 040290433 R rec 3daf5394-e6c5-4ecc-9651-e0bb55509fdc -2024-07-16 20:07:35.441876 2024-07-16 20:07:35.441904 plgnd 04040417X R rec 87725658-5636-47b7-91a4-d772fbdba56c -2024-07-16 20:07:35.727691 2024-07-16 20:07:35.727696 plgnd 041294688 R rec f6e56b1a-0e9e-4955-b241-d45ea4f97ddc -2024-07-16 20:07:36.006016 2024-07-16 20:07:36.006044 plgnd 040540197 R rec 76a6a5a1-ceab-45d6-9f16-51747cac7684 -2024-07-16 20:07:36.331308 2024-07-16 20:07:36.331337 plgnd 040749878 R rec 19b8f10c-8a51-4a53-a43a-f5eb606d6e45 -2024-07-16 20:07:36.622477 2024-07-16 20:07:36.622505 plgnd 96475455X R rec 1611920f-1aba-4c64-b7bd-87c34e74cfd8 -2024-07-16 20:07:36.96172 2024-07-16 20:07:36.961751 plgnd 040118894 R rec 8e6b4eac-bbb5-47fc-b6f5-548024b7cebb -2024-07-16 20:07:37.285789 2024-07-16 20:07:37.285818 plgnd 040480305 R rec 1287579e-4277-4f28-aca5-bc18d162bb63 -2024-07-16 20:07:37.594619 2024-07-16 20:07:37.594639 plgnd 040046176 R rec fb676974-dc9f-45a4-afc8-6228bca97a97 -2024-07-16 20:07:37.985193 2024-07-16 20:07:37.985234 plgnd 040757277 R rec 2bbcd0ec-6a7d-4ef2-ac51-54d591c73295 -2024-07-16 20:07:38.372537 2024-07-16 20:07:38.372563 plgnd 040717003 R rec 9cac9877-b287-43e9-8401-1916017ce263 -2024-07-16 20:07:38.986827 2024-07-16 20:07:38.986841 plgnd 04008003X R rec 5e030694-be39-4fce-8bb3-839f37adcc16 -2024-07-16 20:07:39.28842 2024-07-16 20:07:39.288448 plgnd 040157016 R rec 19f14a3b-29a1-449c-99b5-e83d5eafc071 -2024-07-16 20:07:39.596654 2024-07-16 20:07:39.596677 plgnd 040703703 R rec f8034dec-e02e-4aad-ba04-1f0a4e4b43ff -2024-07-16 20:07:39.910832 2024-07-16 20:07:39.910846 plgnd 040509397 R rec f63fa269-fd81-49d5-9576-48c2c3beb0d1 -2024-07-16 20:07:40.188563 2024-07-16 20:07:40.188593 plgnd 004911474 R rec c7895e6a-6900-40f3-9e0d-835151300d25 -2024-07-16 20:07:40.506004 2024-07-16 20:07:40.50603 plgnd 040794865 R rec 9153d78e-043d-4a87-9708-2269adbf1e6b -2024-07-16 20:07:40.825107 2024-07-16 20:07:40.825134 plgnd 947297987 R rec fa3476ea-70ea-46b6-8165-8ae55bba7bb0 -2024-07-16 20:07:41.138704 2024-07-16 20:07:41.138731 plgnd 040417476 R rec 9603780e-3c09-46dc-82ec-4c76a8cfc52f -2024-07-16 20:07:41.441771 2024-07-16 20:07:41.4418 plgnd 040738418 R rec a7ea2f19-4830-41e3-b931-98a5ce60e0ba -2024-07-16 20:07:41.741702 2024-07-16 20:07:41.741726 plgnd 040804003 R rec 16229022-b6bc-408d-9cac-bd42bb617143 -2024-07-16 20:07:42.062541 2024-07-16 20:07:42.062549 plgnd 040774244 R rec 8f6c8ed5-bac5-4071-b634-b90d8d7602de -2024-07-16 20:07:42.317479 2024-07-16 20:07:42.317514 plgnd 041048989 R rec 21ce8daf-bc46-4ffc-9c46-e3f88e0d7730 +2024-09-10 15:47:46.782356 2024-09-10 15:47:46.782369 plgnd 1335257845 R rec f4a07a65-fec8-40e5-bcf4-cf33d863a15c +2024-09-10 15:47:46.921821 2024-09-10 15:47:46.921827 plgnd 1335257101 R rec d8865fe7-c645-4c5f-a65c-027b76286800 +2024-09-10 15:47:47.00105 2024-09-10 15:47:47.001058 plgnd 133525675X R rec beb4a3fa-744b-45ea-9126-fd9cc2f0673f +2024-09-10 15:47:47.059867 2024-09-10 15:47:47.059873 plgnd 133525207X R rec 192ac41c-1ebd-467a-9c68-a374b38335ed +2024-09-10 15:47:47.121967 2024-09-10 15:47:47.121972 plgnd 1335249966 R rec fdfdfada-a21b-46be-92a4-52a78728a724 +2024-09-10 15:47:47.182923 2024-09-10 15:47:47.182929 plgnd 1335243240 R rec f25890a8-57bb-4776-a261-f2c239f2f164 +2024-09-10 15:47:47.244402 2024-09-10 15:47:47.244407 plgnd 133523909X R rec ee7af5b8-315b-4ef1-94ec-5c3cdb168297 +2024-09-10 15:47:47.303027 2024-09-10 15:47:47.303032 plgnd 1335217711 R rec 7ad5f5fb-414f-487c-b88a-515bc0c0c023 +2024-09-10 15:47:47.361868 2024-09-10 15:47:47.361874 plgnd 1335201653 R rec 8112533f-aaf9-4aeb-96ff-4888b625cfa3 +2024-09-10 15:47:47.422173 2024-09-10 15:47:47.422178 plgnd 1335141790 R rec c682a975-975f-4248-82f6-ef1bfe7f06e7 +2024-09-10 15:47:47.486611 2024-09-10 15:47:47.486617 plgnd 1335107711 R rec 56ebf737-9cc7-4e3a-acb2-dde60bffac8e +2024-09-10 15:47:47.548365 2024-09-10 15:47:47.548373 plgnd 1335104917 R rec db91b8ac-d124-4cb0-a2a6-b0d702b4f2ec +2024-09-10 15:47:47.602508 2024-09-10 15:47:47.602514 plgnd 1335098399 R rec b4069bee-066e-429d-977c-df32fbcc0c1b +2024-09-10 15:47:47.660301 2024-09-10 15:47:47.660306 plgnd 1335092390 R rec b37e671b-7337-491a-a0b6-8b0836ddbc3a +2024-09-10 15:47:47.719702 2024-09-10 15:47:47.719708 plgnd 1335092196 R rec 11f15adc-66bd-4a39-aa27-5c1a7af28ef4 +2024-09-10 15:47:47.778753 2024-09-10 15:47:47.778758 plgnd 1335086005 R rec 30f01a93-2ffe-4008-8d25-55fc8569ace9 +2024-09-10 15:47:47.838517 2024-09-10 15:47:47.838523 plgnd 1335058036 R rec 38b207ff-3ec9-4ba9-ab0e-77d9b0e6dffd +2024-09-10 15:47:47.900407 2024-09-10 15:47:47.900412 plgnd 1334938016 R rec a6a73308-0987-4fde-b8cc-8615acbcd604 +2024-09-10 15:47:47.968077 2024-09-10 15:47:47.968083 plgnd 1334917981 R rec 3e6b3588-d14f-4c64-985f-3db0418f2525 +2024-09-10 15:47:48.039181 2024-09-10 15:47:48.039187 plgnd 1334916292 R rec 851b5f2a-603c-45e6-8344-bd940b5b3c10 +2024-09-10 15:47:48.098206 2024-09-10 15:47:48.098212 plgnd 1334913498 R rec 0680d679-2e2c-454d-8d81-78e43a426b0a +2024-09-10 15:47:48.160936 2024-09-10 15:47:48.160941 plgnd 1334907684 R rec 0a5b8e5e-ccc3-4c6f-ace1-f6cfa38fac80 +2024-09-10 15:47:48.235308 2024-09-10 15:47:48.235314 plgnd 1334907048 R rec 7fc945a2-b3f3-4a35-a988-29c3e1414d7b +2024-09-10 15:47:48.295913 2024-09-10 15:47:48.295918 plgnd 1334904251 R rec b72fe128-9195-4138-8c8c-a4d011b2dc66 +2024-09-10 15:47:48.354216 2024-09-10 15:47:48.354224 plgnd 133490281X R rec 7d912b3a-4016-4357-ae25-0dee882a96c9 +2024-09-10 15:47:48.416981 2024-09-10 15:47:48.41699 plgnd 1334900256 R rec 2ba13814-f356-4668-a9f0-8a7adea27b9a +2024-09-10 15:47:48.475397 2024-09-10 15:47:48.475402 plgnd 133489874X R rec 7230e791-e694-4d97-8f47-483b77e3c41c +2024-09-10 15:47:48.5349 2024-09-10 15:47:48.534905 plgnd 1334896755 R rec ca2d8e9c-e39a-46cb-a72e-a117be65ef98 +2024-09-10 15:47:48.594058 2024-09-10 15:47:48.594063 plgnd 1334893594 R rec d8ce4113-64bc-43c4-9aaa-5ea20f56da67 +2024-09-10 15:47:48.659651 2024-09-10 15:47:48.659657 plgnd 133489129X R rec 3fa46c76-bf44-4c6d-b278-71fe0c1202ba +2024-09-10 15:47:48.724814 2024-09-10 15:47:48.724818 plgnd 1334878234 R rec ec5995ed-6410-4a07-99da-de85e42c3ce4 +2024-09-10 15:47:48.784793 2024-09-10 15:47:48.784799 plgnd 1334875707 R rec 79492345-e480-4b13-839e-d4e4a1845d72 +2024-09-10 15:47:48.844162 2024-09-10 15:47:48.844167 plgnd 1334874387 R rec 9528b02b-ffd4-4127-aced-ea8c13c7d0b7 +2024-09-10 15:47:48.902734 2024-09-10 15:47:48.902739 plgnd 1334867097 R rec 8ef7377b-d730-4940-bf70-7485d4f5ce32 +2024-09-10 15:47:48.961377 2024-09-10 15:47:48.961389 plgnd 1334866473 R rec e6e0fdef-c79b-41cd-bc2e-9ecfb150195d +2024-09-10 15:47:49.022496 2024-09-10 15:47:49.022502 plgnd 1334866082 R rec da065786-bb71-4b86-9df0-8ae6717f9c7f +2024-09-10 15:47:49.081915 2024-09-10 15:47:49.081921 plgnd 1334865981 R rec 6165a95e-1152-4718-a314-86d754164af8 +2024-09-10 15:47:49.140017 2024-09-10 15:47:49.140022 plgnd 1334804621 R rec 181ea6af-1efe-4461-aae3-fc87b969a69b +2024-09-10 15:47:49.203124 2024-09-10 15:47:49.203127 plgnd 1334804141 R rec bf433b91-d8b1-48ed-bb45-9b9beeda5c3c +2024-09-10 15:47:49.266996 2024-09-10 15:47:49.267002 plgnd 1334801304 R rec 93cf0b2e-56cc-4118-b52e-b9915dbb5ed6 +2024-09-10 15:47:49.334723 2024-09-10 15:47:49.334729 plgnd 1334789134 R rec cc0509d7-b367-4144-b22d-c1e013b46e71 +2024-09-10 15:47:49.396956 2024-09-10 15:47:49.396961 plgnd 1334785422 R rec 05e3b33b-dcbf-4235-986a-59e55ff7362b +2024-09-10 15:47:49.454129 2024-09-10 15:47:49.454135 plgnd 1334784493 R rec ece7794c-8de8-48c6-8e26-917755c93675 +2024-09-10 15:47:49.51153 2024-09-10 15:47:49.511535 plgnd 1334779015 R rec 27a08c99-740d-42b8-96db-83bc6e0891ba +2024-09-10 15:47:49.565829 2024-09-10 15:47:49.565834 plgnd 1334766363 R rec 032dfc35-863d-4663-bb3f-bd2b31d18d3b +2024-09-10 15:47:49.621206 2024-09-10 15:47:49.621216 plgnd 1334756465 R rec 587d7652-c1f5-469e-8b8a-3fe85719af9e +2024-09-10 15:47:49.680726 2024-09-10 15:47:49.680731 plgnd 1334736340 R rec c08a8d28-aba4-4af9-8f1f-591a0b35e394 +2024-09-10 15:47:49.741847 2024-09-10 15:47:49.741853 plgnd 1334729824 R rec 71c25556-c15b-4b5e-8bfd-ba51dd03738d +2024-09-10 15:47:49.80493 2024-09-10 15:47:49.804937 plgnd 1334725756 R rec 0853f901-8f4c-499c-80dc-bf149b50c9ca +2024-09-10 15:47:49.881316 2024-09-10 15:47:49.881322 plgnd 1334725691 R rec 17915891-dcdc-4c63-9036-96c3b0edee0d +2024-09-10 15:47:49.940868 2024-09-10 15:47:49.940874 plgnd 1334671486 R rec ee460959-a046-4655-a53a-bef16951e95d +2024-09-10 15:47:50.002936 2024-09-10 15:47:50.002941 plgnd 1334670560 R rec 7cd09f3c-b15c-4b1c-9aab-759f770a8c7a +2024-09-10 15:47:50.065707 2024-09-10 15:47:50.065713 plgnd 1334670390 R rec f0480757-554c-4ac0-9ec8-752691db2d78 +2024-09-10 15:47:50.133539 2024-09-10 15:47:50.133548 plgnd 1334670323 R rec f39018e6-8d7e-4167-a0d0-63cb80b0eb34 +2024-09-10 15:47:50.197301 2024-09-10 15:47:50.197307 plgnd 1334670048 R rec bbbf6528-9704-4e29-a387-6183dcbaac42 +2024-09-10 15:47:50.267336 2024-09-10 15:47:50.267342 plgnd 1334666474 R rec 939dfd65-8caa-4bbe-8fb2-e505fccbff04 +2024-09-10 15:47:50.326615 2024-09-10 15:47:50.326621 plgnd 1334665036 R rec 660e3c85-664b-4ccd-bd65-e0e63d41a496 +2024-09-10 15:47:50.391115 2024-09-10 15:47:50.391121 plgnd 1334665028 R rec f5e20974-673c-4ddf-a0c4-c84308164329 +2024-09-10 15:47:50.451909 2024-09-10 15:47:50.451914 plgnd 1334664242 R rec 6ebb81db-c4cf-4622-9e15-dc4ced796627 +2024-09-10 15:47:50.516379 2024-09-10 15:47:50.516385 plgnd 1334661073 R rec 3a450983-25dc-4f42-94fc-9fafa72fb948 +2024-09-10 15:47:50.585675 2024-09-10 15:47:50.585681 plgnd 1334658196 R rec 30d4eb52-b88b-467d-a5f8-0dac3d8ddd12 +2024-09-10 15:47:50.648635 2024-09-10 15:47:50.648641 plgnd 1334657726 R rec f8962077-9437-4d94-a939-4470305fbd48 +2024-09-10 15:47:50.71876 2024-09-10 15:47:50.718766 plgnd 133465641X R rec 5df0d0f8-dbb6-4055-bba1-04886a068c52 +2024-09-10 15:47:50.780849 2024-09-10 15:47:50.780854 plgnd 1334632707 R rec b4c2c42a-f483-455f-b1b8-be3ec91e2564 +2024-09-10 15:47:50.841287 2024-09-10 15:47:50.84129 plgnd 133463209X R rec 396a8b7b-59b4-48f9-a294-e231fe700096 +2024-09-10 15:47:50.901544 2024-09-10 15:47:50.90155 plgnd 133456325X R rec 8f3b38c5-107a-4501-acc4-6da2a5706a1b +2024-09-10 15:47:50.974801 2024-09-10 15:47:50.974806 plgnd 1334560994 R rec 2d660915-605d-4b45-95a2-d73fcb7515ee +2024-09-10 15:47:51.041906 2024-09-10 15:47:51.041912 plgnd 1334559805 R rec b3b7c24e-da5b-473d-bf61-db24f4e15996 +2024-09-10 15:47:51.103814 2024-09-10 15:47:51.10382 plgnd 1334558590 R rec af3436ac-5962-47a9-9293-ab40f7ad3967 +2024-09-10 15:47:51.169332 2024-09-10 15:47:51.169338 plgnd 1334556687 R rec 751552a3-ed84-4de8-a0c1-0b8d48371837 +2024-09-10 15:47:51.239702 2024-09-10 15:47:51.239707 plgnd 1334554471 R rec 24ac6eb8-7224-4326-a7b9-e9e8b6515363 +2024-09-10 15:47:51.310337 2024-09-10 15:47:51.310343 plgnd 1334554218 R rec 86a87320-5d9f-4b4f-b0d0-dc859a80bc0f +2024-09-10 15:47:51.369021 2024-09-10 15:47:51.369027 plgnd 1334552940 R rec 1c7160d1-0c75-490b-b7c8-85099c219890 +2024-09-10 15:47:51.446602 2024-09-10 15:47:51.446608 plgnd 1334552908 R rec e1bd0de0-1e08-4f9f-84ea-9dcd7ffccebf +2024-09-10 15:47:51.505393 2024-09-10 15:47:51.505398 plgnd 1334552606 R rec bf143cee-338f-4b73-bfc7-ba8ef78ba7ed +2024-09-10 15:47:51.579816 2024-09-10 15:47:51.579823 plgnd 1334538085 R rec 132e4473-f04f-4f31-a1f0-0be133afbf11 +2024-09-10 15:47:51.654673 2024-09-10 15:47:51.654679 plgnd 133453666X R rec 6bf5a575-5543-44ea-8b4b-ff6b7ec0a3e2 +2024-09-10 15:47:51.726905 2024-09-10 15:47:51.726911 plgnd 1334531153 R rec 6e4d7bb5-eba5-4c4b-a424-f02c7e84a2d2 +2024-09-10 15:47:51.796917 2024-09-10 15:47:51.796923 plgnd 1334516766 R rec b22cf23a-e19a-45ba-8d55-37f56ec3ac20 +2024-09-10 15:47:51.878779 2024-09-10 15:47:51.878785 plgnd 1334502854 R rec 7b5f5c22-3825-430e-b135-310fcce316d9 +2024-09-10 15:47:51.953405 2024-09-10 15:47:51.953413 plgnd 1334486573 R rec 1635b89a-64c5-4db3-afc4-c905660d6aaf +2024-09-10 15:47:52.029351 2024-09-10 15:47:52.029358 plgnd 1334485763 R rec 5d5cb25e-6508-44d5-b09b-271731af99da +2024-09-10 15:47:52.113272 2024-09-10 15:47:52.113278 plgnd 1334319561 R rec 99c1c8ba-0a0d-4f6c-bb02-79308ff4af68 +2024-09-10 15:47:52.182191 2024-09-10 15:47:52.182197 plgnd 1334318492 R rec 0c21427a-603b-4e4e-883e-fc42b6fc4cd3 +2024-09-10 15:47:52.307313 2024-09-10 15:47:52.307319 plgnd 1334318069 R rec c15fb5c5-baf7-4ef6-82e5-65e12f83aa8a +2024-09-10 15:47:52.448598 2024-09-10 15:47:52.448604 plgnd 1334313776 R rec c170efb7-be86-45e4-b31f-327773c6da7f +2024-09-10 15:47:52.514339 2024-09-10 15:47:52.514345 plgnd 1334312974 R rec e7b13c48-b801-4d4f-b5da-1c2ed6558e70 +2024-09-10 15:47:52.57247 2024-09-10 15:47:52.572476 plgnd 1334310661 R rec a8052907-0c9f-42f2-960d-95bd7227254c +2024-09-10 15:47:52.625517 2024-09-10 15:47:52.625522 plgnd 1334302111 R rec 14d2be47-c2ee-4ca6-b5a1-c7b479abb8a3 +2024-09-10 15:47:52.688197 2024-09-10 15:47:52.688203 plgnd 1334300054 R rec 1e009dd1-65a0-4c32-8f3e-491d2611ed74 +2024-09-10 15:47:52.747182 2024-09-10 15:47:52.747187 plgnd 133422725X R rec d2c67f2c-1770-4a97-8e0f-fb3913304aa3 +2024-09-10 15:47:52.811377 2024-09-10 15:47:52.811383 plgnd 1334221979 R rec 1707e6ff-e706-47e7-9cdb-b02bc90b4fcc +2024-09-10 15:47:52.869939 2024-09-10 15:47:52.869944 plgnd 1334198845 R rec 5e5e3730-e2ca-4301-a6c7-68bfdbdbf3c8 +2024-09-10 15:47:52.9361 2024-09-10 15:47:52.936106 plgnd 1334117918 R rec 4beaf97d-4f5b-4cac-a4f3-77cdec19ca64 +2024-09-10 15:47:52.994996 2024-09-10 15:47:52.995001 plgnd 1334101221 R rec 925137e9-022d-40ff-95e1-33b6b9a6dc33 +2024-09-10 15:47:53.060505 2024-09-10 15:47:53.060512 plgnd 1334086826 R rec 7bb5e700-b129-4669-9d58-62333288d1e3 +2024-09-10 15:47:53.11859 2024-09-10 15:47:53.118597 plgnd 1334027250 R rec 9f2b7683-a3f5-4af7-a7c3-0f6b92cfcf8a +2024-09-10 15:47:53.181476 2024-09-10 15:47:53.181481 plgnd 1334024804 R rec ef61f4d4-4b91-4679-ad53-e184bbe32606 +2024-09-10 15:47:53.263016 2024-09-10 15:47:53.263022 plgnd 1334011753 R rec f428146d-9787-409c-8d06-02748ead0efc +2024-09-10 15:47:53.321987 2024-09-10 15:47:53.321994 plgnd 1334011079 R rec 6fe8ee37-0aa8-4aed-9d50-38991d73a870 +2024-09-10 15:47:53.385906 2024-09-10 15:47:53.385911 plgnd 1334001529 R rec 56963cf1-3d03-440c-80f1-2997bcd2ef21 +2024-09-10 15:47:53.463443 2024-09-10 15:47:53.463449 plgnd 1333989954 R rec b38555b0-8061-46cd-960e-643dd78fa139 +2024-09-10 15:47:53.554203 2024-09-10 15:47:53.554208 plgnd 1333660758 R rec a9935a57-fc4a-4411-b9b2-4e2f22536092 +2024-09-10 15:47:53.625219 2024-09-10 15:47:53.625224 plgnd 1333582501 R rec 5268a685-6d44-4df4-a312-d5dda66233ee +2024-09-10 15:47:53.686125 2024-09-10 15:47:53.686131 plgnd 1333570511 R rec a94a0a63-ffa6-44da-af65-a18714efd6cc +2024-09-10 15:47:53.747622 2024-09-10 15:47:53.747629 plgnd 133355513X R rec fb9d3f2b-bc83-4dd1-9a87-ec3ca133244d +2024-09-10 15:47:53.803649 2024-09-10 15:47:53.803653 plgnd 1333333668 R rec c4b4cd6b-d5f3-489f-a935-442c0734d997 +2024-09-10 15:47:53.858973 2024-09-10 15:47:53.858978 plgnd 1333321090 R rec ca50a5df-bfe4-43d7-828f-ec2b22c313a9 +2024-09-10 15:47:53.928295 2024-09-10 15:47:53.928301 plgnd 1333315902 R rec 0dcc86bc-221a-454f-98f2-f2dad314a6c3 +2024-09-10 15:47:54.004418 2024-09-10 15:47:54.004424 plgnd 1333263465 R rec d5c0c8cf-6905-4782-8cb6-1b9b8dbeb468 +2024-09-10 15:47:54.066128 2024-09-10 15:47:54.066133 plgnd 1333255853 R rec ba621172-8bb5-48b3-881b-24c6bd208ab4 +2024-09-10 15:47:54.130054 2024-09-10 15:47:54.13006 plgnd 1333228880 R rec 7823e189-4abd-4a77-b65c-6ecd9597f6e9 +2024-09-10 15:47:54.194643 2024-09-10 15:47:54.194649 plgnd 1333113943 R rec 02ffc051-09cb-410f-a240-b6ecb04cd010 +2024-09-10 15:47:54.255531 2024-09-10 15:47:54.255534 plgnd 1332874568 R rec f1a8a9a4-a735-4179-98b6-4983708ecef7 +2024-09-10 15:47:54.329475 2024-09-10 15:47:54.32948 plgnd 1332858198 R rec 9f944aa6-d481-4b11-8f6a-30be2c0733f4 +2024-09-10 15:47:54.415421 2024-09-10 15:47:54.415426 plgnd 1332769349 R rec 6ed8b296-a378-4515-809e-13da207b2676 +2024-09-10 15:47:54.500623 2024-09-10 15:47:54.500628 plgnd 1332757375 R rec bc77ad57-1957-4c52-9297-7cfd6416a71c +2024-09-10 15:47:54.571507 2024-09-10 15:47:54.571513 plgnd 1332755666 R rec 7783dea2-e0b2-41f5-afa1-47c81104f45a +2024-09-10 15:47:54.65885 2024-09-10 15:47:54.658855 plgnd 1332749054 R rec 9262b630-7609-49dc-9db0-70d598d4464e +2024-09-10 15:47:54.720973 2024-09-10 15:47:54.720977 plgnd 1332747108 R rec c9fa6782-9aa4-4198-a959-af106c86e093 +2024-09-10 15:47:54.782502 2024-09-10 15:47:54.782508 plgnd 1332742351 R rec 4a55809e-7164-4e7b-af88-6b8bd698b575 +2024-09-10 15:47:54.840229 2024-09-10 15:47:54.840234 plgnd 1332735002 R rec 3632d485-5078-419f-b2f5-0820dd3d93a8 +2024-09-10 15:47:54.898692 2024-09-10 15:47:54.898697 plgnd 1332734863 R rec b2e01c8a-6aba-424d-a278-e1ea503dedee +2024-09-10 15:47:54.955242 2024-09-10 15:47:54.955247 plgnd 133273457X R rec cf8606da-d186-425f-98b1-127d3dd172ec +2024-09-10 15:47:55.019131 2024-09-10 15:47:55.019137 plgnd 1332733751 R rec c6f9575c-fb73-42cb-8c1a-7b9108bf5081 +2024-09-10 15:47:55.078491 2024-09-10 15:47:55.078497 plgnd 1332732577 R rec 0e962688-e146-4ab2-a7b3-7e9e3e02089a +2024-09-10 15:47:55.142154 2024-09-10 15:47:55.14216 plgnd 1332731430 R rec 6757785c-0d5a-4bb2-989d-a5c65ff21341 +2024-09-10 15:47:55.220645 2024-09-10 15:47:55.22065 plgnd 1332670482 R rec b1a8008e-5e03-4e38-870f-abde6019ad2e +2024-09-10 15:47:55.287311 2024-09-10 15:47:55.287316 plgnd 1332669689 R rec 9d9ad692-1120-40e4-af06-1d78ec561aab +2024-09-10 15:47:55.36086 2024-09-10 15:47:55.360866 plgnd 1332451578 R rec 80f16d7b-8d70-4f9d-85fd-7d1c1d8f8b44 +2024-09-10 15:47:55.424194 2024-09-10 15:47:55.424199 plgnd 1332353436 R rec bb09a8be-380b-4500-9fdb-e628d5b9845c +2024-09-10 15:47:55.484985 2024-09-10 15:47:55.484991 plgnd 1332057209 R rec d453cfcb-0a66-4e09-a6ee-c4d76b28044b +2024-09-10 15:47:55.546821 2024-09-10 15:47:55.546826 plgnd 1332055729 R rec aece584c-dd28-4096-be94-5ff3e43696de +2024-09-10 15:47:55.607353 2024-09-10 15:47:55.607358 plgnd 1332031374 R rec 59a1c647-f271-42a5-a759-258f2d955e6c +2024-09-10 15:47:55.665335 2024-09-10 15:47:55.665341 plgnd 1331729661 R rec 13809f81-c021-44a9-9b51-f5d82462db4a +2024-09-10 15:47:55.739132 2024-09-10 15:47:55.739137 plgnd 1331609186 R rec 409e2dcb-02b6-4a3b-a58f-913cf085c8b4 +2024-09-10 15:47:55.801011 2024-09-10 15:47:55.801016 plgnd 1331604346 R rec 45e0ca1e-7e64-462d-9db0-e18e70d9b936 +2024-09-10 15:47:55.853155 2024-09-10 15:47:55.85316 plgnd 1331602718 R rec e52bd784-8b16-44d9-967c-0fe4a8bd36bb +2024-09-10 15:47:55.907519 2024-09-10 15:47:55.907528 plgnd 1331601630 R rec 62a3f71d-4744-48b6-bccc-d0e4001874fb +2024-09-10 15:47:55.970432 2024-09-10 15:47:55.970438 plgnd 1331514282 R rec 3263ab7a-e2f9-4402-a6d7-6c38fd9f818a +2024-09-10 15:47:56.030712 2024-09-10 15:47:56.030718 plgnd 1331513952 R rec 7f64a019-0766-4ae1-841e-56cbcc9e3a17 +2024-09-10 15:47:56.093854 2024-09-10 15:47:56.093859 plgnd 1331379539 R rec 6fbe97ec-7284-4525-9271-716a4cf47804 +2024-09-10 15:47:56.152392 2024-09-10 15:47:56.152398 plgnd 1331109191 R rec a37f7b5f-9084-4ae5-b6d6-a15d6b4593e4 +2024-09-10 15:47:56.214059 2024-09-10 15:47:56.214064 plgnd 1331089271 R rec 97173dbd-b0b6-42d9-ab1f-83357f0b57ab +2024-09-10 15:47:56.279246 2024-09-10 15:47:56.279254 plgnd 1330982746 R rec b3acdec4-4067-4582-bd42-1c237fa62eac +2024-09-10 15:47:56.345816 2024-09-10 15:47:56.345821 plgnd 1330866738 R rec f48ccbce-0199-4fb0-b6f2-3635c4162460 +2024-09-10 15:47:56.414172 2024-09-10 15:47:56.414176 plgnd 1330847199 R rec 533f721f-81df-472b-9813-753f2bd34d23 +2024-09-10 15:47:56.489705 2024-09-10 15:47:56.48971 plgnd 1330436237 R rec 931d0bef-d231-424a-b004-9916f4e9f8bf +2024-09-10 15:47:56.55032 2024-09-10 15:47:56.550326 plgnd 1330428420 R rec cdd489ad-1bdc-4c55-ba23-e8bb62e75f6c +2024-09-10 15:47:56.61211 2024-09-10 15:47:56.612118 plgnd 1330324463 R rec d8e3f839-9393-4546-b6b2-d90790845462 +2024-09-10 15:47:56.673133 2024-09-10 15:47:56.673138 plgnd 1330302877 R rec 71249023-f966-4066-ac82-144fc02eea8a +2024-09-10 15:47:56.73464 2024-09-10 15:47:56.734646 plgnd 1330290887 R rec 0a2637aa-3992-403a-805a-e7e8499ac8e6 +2024-09-10 15:47:56.796095 2024-09-10 15:47:56.796101 plgnd 1330177274 R rec 29b4ccb8-1737-405f-85d3-3f1235f3cd04 +2024-09-10 15:47:56.86229 2024-09-10 15:47:56.862295 plgnd 1329890205 R rec 4937e236-1e26-40e6-8d8d-3951f41bdb0c +2024-09-10 15:47:56.928343 2024-09-10 15:47:56.928349 plgnd 1329430875 R rec eb33bb15-1507-4f16-b64b-794b1e0bd469 +2024-09-10 15:47:56.992948 2024-09-10 15:47:56.992954 plgnd 1316359042 R rec 37222a47-43e1-49b7-b208-95faf352a397 +2024-09-10 15:47:57.063348 2024-09-10 15:47:57.063355 plgnd 1314596373 R rec 82ee2507-360d-4c36-ad20-ae3bdbf8dcc9 +2024-09-10 15:47:57.146374 2024-09-10 15:47:57.146379 plgnd 1302571524 R rec de280ecd-a43e-4851-a3ad-7d34302f21ae +2024-09-10 15:47:57.209655 2024-09-10 15:47:57.209661 plgnd 1300397128 R rec 7994dd04-333a-44f5-9459-c5c6d173c1b3 +2024-09-10 15:47:57.276951 2024-09-10 15:47:57.276957 plgnd 1299383890 R rec c1d8ed61-2cf2-4ecb-8bd4-b034d41993a9 +2024-09-10 15:47:57.338908 2024-09-10 15:47:57.338913 plgnd 129673143X R rec 740c7ff6-d825-4e03-904c-129365292636 +2024-09-10 15:47:57.407227 2024-09-10 15:47:57.407234 plgnd 1295131781 R rec 63d80731-285d-433f-9eb6-db11b6d0fff1 +2024-09-10 15:47:57.493249 2024-09-10 15:47:57.493254 plgnd 1287837611 R rec b9400951-0b7b-49b2-bf1c-ddc31c0f2b6f +2024-09-10 15:47:57.554899 2024-09-10 15:47:57.554904 plgnd 1286132703 R rec 442a5072-5d2e-4b62-8478-55b76f878fac +2024-09-10 15:47:57.627064 2024-09-10 15:47:57.627069 plgnd 1284341119 R rec 11a505de-e106-40b1-90c7-dad1cf5f9ee9 +2024-09-10 15:47:57.696758 2024-09-10 15:47:57.696764 plgnd 1282328816 R rec 0ed57cc5-cfa8-4681-9c1c-c2faa944d9bf +2024-09-10 15:47:57.762652 2024-09-10 15:47:57.762657 plgnd 1275159915 R rec c9a452da-b2cc-4b1c-89a9-beedc3ec8821 +2024-09-10 15:47:57.83328 2024-09-10 15:47:57.833285 plgnd 1271173751 R rec f3ec6c98-857b-4bfd-aa00-dbf1d779b4ba +2024-09-10 15:47:57.895914 2024-09-10 15:47:57.895922 plgnd 1267606541 R rec 5acf6424-1dc2-4e8c-95ac-2d2a638936a9 +2024-09-10 15:47:57.958515 2024-09-10 15:47:57.95852 plgnd 1262419808 R rec 00c8947c-9025-4ab7-9be3-d669f2197ae8 +2024-09-10 15:47:58.034385 2024-09-10 15:47:58.034391 plgnd 1240912943 R rec fe9aaeeb-8ff3-4927-a497-8abe886cf03f +2024-09-10 15:47:58.094275 2024-09-10 15:47:58.094281 plgnd 1239866968 R rec caf86c08-eccb-4fb2-85d9-8e155c1f03f4 +2024-09-10 15:47:58.16712 2024-09-10 15:47:58.167126 plgnd 1239463502 R rec 7daec301-70fc-4ad0-af29-0f8d4de584a1 +2024-09-10 15:47:58.22984 2024-09-10 15:47:58.229846 plgnd 1237860342 R rec 0a3e4f39-7744-46f4-bf2e-6ce11b6f0464 +2024-09-10 15:47:58.293566 2024-09-10 15:47:58.293572 plgnd 1237828171 R rec 091cf7a6-4a06-41eb-8705-bfb8f914c92f +2024-09-10 15:47:58.358917 2024-09-10 15:47:58.358922 plgnd 1237774101 R rec 452e8503-a98e-437e-95be-c24584bbd614 +2024-09-10 15:47:58.415606 2024-09-10 15:47:58.41561 plgnd 1237279453 R rec 0015f3cf-371e-4739-8507-1d28e6155b48 +2024-09-10 15:47:58.477348 2024-09-10 15:47:58.477353 plgnd 1236792211 R rec 043d0c63-8742-42f1-9b2c-1d108d863ffc +2024-09-10 15:47:58.54923 2024-09-10 15:47:58.549236 plgnd 123657754X R rec c1964c65-cc04-46c7-9d0e-9a4810faa15f +2024-09-10 15:47:58.612011 2024-09-10 15:47:58.612016 plgnd 1235360709 R rec 99d6e7da-d6ae-4ca4-9f5b-ee666983bf09 +2024-09-10 15:47:58.674647 2024-09-10 15:47:58.674652 plgnd 1233310046 R rec 63110265-9321-4e96-bb85-8b52d96b5140 +2024-09-10 15:47:58.74222 2024-09-10 15:47:58.742225 plgnd 1232243698 R rec 05d6d1a5-15fe-424e-9b98-1bfa995f7878 +2024-09-10 15:47:58.801685 2024-09-10 15:47:58.801693 plgnd 1225876354 R rec d9c35c16-75e8-4f61-b09f-e1f534cad83b +2024-09-10 15:47:58.863281 2024-09-10 15:47:58.863289 plgnd 1224278054 R rec c3771382-67b9-416d-8efd-0937eb30ed82 +2024-09-10 15:47:58.926265 2024-09-10 15:47:58.926271 plgnd 122413754X R rec 69aabafc-6bb6-4156-801d-0d84696b1b6c +2024-09-10 15:47:58.989123 2024-09-10 15:47:58.989128 plgnd 122219953X R rec 8b84d6db-1a52-4503-b6de-dc8e40ee813e +2024-09-10 15:47:59.064779 2024-09-10 15:47:59.064785 plgnd 1222199440 R rec 60522ed0-8747-4d3e-a4a2-1e7161931874 +2024-09-10 15:47:59.144434 2024-09-10 15:47:59.144439 plgnd 1219234621 R rec 7f609550-6bf3-4c54-8ec4-8ec32c5669b8 +2024-09-10 15:47:59.20648 2024-09-10 15:47:59.206485 plgnd 1215862520 R rec 7de5c4ae-f526-4213-b7cd-8ddffcfd8245 +2024-09-10 15:47:59.289528 2024-09-10 15:47:59.289534 plgnd 1208649175 R rec 201b113e-119c-4285-9d4f-1580753d8db9 +2024-09-10 15:47:59.367377 2024-09-10 15:47:59.367383 plgnd 1206005505 R rec deb65dc4-7f58-42b5-abe4-9d6a9cb3981e +2024-09-10 15:47:59.426847 2024-09-10 15:47:59.426852 plgnd 1203261837 R rec bd81a10a-ca2d-4260-9ad2-678a719a90e6 +2024-09-10 15:47:59.487279 2024-09-10 15:47:59.487284 plgnd 1197938001 R rec c49891f2-7acb-4313-95a1-cfb0f43a63f3 +2024-09-10 15:47:59.548924 2024-09-10 15:47:59.54893 plgnd 1192399013 R rec 85684105-5823-4294-805b-b6e5bc706ac7 +2024-09-10 15:47:59.60785 2024-09-10 15:47:59.607856 plgnd 1191133729 R rec 2a500a04-01a7-4658-b755-05c3ce667520 +2024-09-10 15:47:59.670305 2024-09-10 15:47:59.670311 plgnd 1190333392 R rec 861953bd-ed40-4856-a62b-bee655ad9e25 +2024-09-10 15:47:59.732327 2024-09-10 15:47:59.732333 plgnd 1190333082 R rec 6721174e-cc03-44c7-ade1-f44fe20848a2 +2024-09-10 15:47:59.800721 2024-09-10 15:47:59.800726 plgnd 1190328259 R rec e09d1fa1-63ce-40b6-a71f-6cbfe5ecb865 +2024-09-10 15:47:59.860029 2024-09-10 15:47:59.860034 plgnd 1189443015 R rec 3724b6af-9c30-46f4-88ce-78fd4608ce05 +2024-09-10 15:47:59.920132 2024-09-10 15:47:59.920137 plgnd 1188738658 R rec 78b03d37-4b11-4dc6-b6ef-7487aca9acec +2024-09-10 15:47:59.984706 2024-09-10 15:47:59.984712 plgnd 1184832803 R rec 8cf7464c-44eb-4e68-8c37-687b7b396575 +2024-09-10 15:48:00.048245 2024-09-10 15:48:00.048253 plgnd 1184428727 R rec 05a72587-ee5d-4cbc-bdf8-4b71872d436b +2024-09-10 15:48:00.115384 2024-09-10 15:48:00.115389 plgnd 1182916759 R rec baf6508a-214e-42ed-92d4-f7dc51143abc +2024-09-10 15:48:00.178242 2024-09-10 15:48:00.178248 plgnd 1182704948 R rec e1a676ca-d172-4ec0-8caf-cf1bfbaf095c +2024-09-10 15:48:00.240989 2024-09-10 15:48:00.240994 plgnd 1180664485 R rec a31c76e4-2c9b-451e-9d1e-d20056ad56ad +2024-09-10 15:48:00.311273 2024-09-10 15:48:00.311279 plgnd 1180620623 R rec bb656bef-3e5f-4599-b731-a84d336dee7e +2024-09-10 15:48:00.368933 2024-09-10 15:48:00.368936 plgnd 1179502884 R rec fb0f1891-6f04-41f3-b201-f65daa78041e +2024-09-10 15:48:00.428005 2024-09-10 15:48:00.42801 plgnd 1177183811 R rec e4af5092-00ab-4cdb-9a3f-d46c84af7dca +2024-09-10 15:48:00.490707 2024-09-10 15:48:00.490713 plgnd 1177087480 R rec 38709fac-cb26-46ca-ab32-9fa40bc34e0e +2024-09-10 15:48:00.568813 2024-09-10 15:48:00.568819 plgnd 1171383401 R rec 4edb0da3-2986-46e8-94ec-617478d3bfb7 +2024-09-10 15:48:00.634291 2024-09-10 15:48:00.634297 plgnd 1169806708 R rec a55419b9-44a7-450a-91fb-dff31a3f6430 +2024-09-10 15:48:00.69759 2024-09-10 15:48:00.697595 plgnd 1169806686 R rec 034f7d1e-02d2-493c-a8ea-29170f5acb27 +2024-09-10 15:48:00.760958 2024-09-10 15:48:00.760964 plgnd 1169805167 R rec 9117eaed-0b17-463d-9141-de7d50275f79 +2024-09-10 15:48:00.825523 2024-09-10 15:48:00.825529 plgnd 1169805140 R rec 79745b86-198b-46bf-9a77-5bef9780780a +2024-09-10 15:48:00.887179 2024-09-10 15:48:00.887184 plgnd 1167694643 R rec 3d15525a-76d7-4a61-bd6e-d1b60650b44a +2024-09-10 15:48:00.951595 2024-09-10 15:48:00.951601 plgnd 1167335767 R rec 72ec2f6f-0696-4d54-8ac5-58190fb54c00 +2024-09-10 15:48:01.011724 2024-09-10 15:48:01.011731 plgnd 1166988325 R rec 0c94d86f-7be5-4f17-8702-a985516328f0 +2024-09-10 15:48:01.081803 2024-09-10 15:48:01.081808 plgnd 1166988007 R rec 9304c346-8c81-462f-9c0b-23c5fc5f0d24 +2024-09-10 15:48:01.150225 2024-09-10 15:48:01.150231 plgnd 1166098877 R rec 1d53de8a-c43c-43a9-8a34-75ecb325b7eb +2024-09-10 15:48:01.212069 2024-09-10 15:48:01.212075 plgnd 1165597586 R rec 943950eb-b7d4-41e4-9430-b4f46dba6ad0 +2024-09-10 15:48:01.278988 2024-09-10 15:48:01.278999 plgnd 1164527657 R rec 6b46b1df-0667-44cd-a4c1-3814880ac93e +2024-09-10 15:48:01.342845 2024-09-10 15:48:01.342851 plgnd 116355815X R rec 5b53f301-5ad0-4041-833f-e628275b0828 +2024-09-10 15:48:01.407686 2024-09-10 15:48:01.407692 plgnd 1163558095 R rec 138d98c9-8669-4ba4-ae03-e13e5047fcb2 +2024-09-10 15:48:01.472466 2024-09-10 15:48:01.472472 plgnd 1163419907 R rec 7ddce887-c897-4459-bfcd-7c689c4a7a5c +2024-09-10 15:48:01.536285 2024-09-10 15:48:01.536291 plgnd 1161830820 R rec 00778c8c-4a08-4ffe-a13c-02da4c108f6e +2024-09-10 15:48:01.598029 2024-09-10 15:48:01.598034 plgnd 1161625046 R rec 683577af-8060-4704-9324-2bd53eb8b5e5 +2024-09-10 15:48:01.66453 2024-09-10 15:48:01.664536 plgnd 1156658128 R rec e8a913ae-9225-4abc-8cab-a68075b34241 +2024-09-10 15:48:01.746006 2024-09-10 15:48:01.746012 plgnd 1156051029 R rec f58c8025-026a-48e7-872f-7f51f759f5b8 +2024-09-10 15:48:01.823004 2024-09-10 15:48:01.82301 plgnd 1148115242 R rec 8fe6889e-7110-47ab-8161-e3d420c84c0c +2024-09-10 15:48:01.900818 2024-09-10 15:48:01.900824 plgnd 1147654123 R rec 74d4efe8-6c7a-4e3c-8c9d-929f4e95d246 +2024-09-10 15:48:01.970544 2024-09-10 15:48:01.970549 plgnd 1143714245 R rec beed3168-0e03-42ca-ba87-3af65078d4e0 +2024-09-10 15:48:02.033965 2024-09-10 15:48:02.03397 plgnd 1143154991 R rec e13df05c-2826-497e-8392-53a08837973d +2024-09-10 15:48:02.1096 2024-09-10 15:48:02.109606 plgnd 1142135993 R rec f77d1bc3-d055-4ee6-b5ab-e9775bdefc53 +2024-09-10 15:48:02.18678 2024-09-10 15:48:02.186786 plgnd 1139463888 R rec 2d3bf2f4-26cf-49da-a481-bc75043fa360 +2024-09-10 15:48:02.248395 2024-09-10 15:48:02.248401 plgnd 113914071X R rec a5727497-1dd9-4e8b-9937-ef80c2618a4f +2024-09-10 15:48:02.321141 2024-09-10 15:48:02.321147 plgnd 113698612X R rec 4f2b4401-e520-4409-b0a9-370e6a38a595 +2024-09-10 15:48:02.382613 2024-09-10 15:48:02.38262 plgnd 1136731237 R rec 05ce92bf-20f5-457c-b516-7bdbb32fa46b +2024-09-10 15:48:02.443572 2024-09-10 15:48:02.443577 plgnd 1136092293 R rec 7fe7d51d-f88c-4d1f-abf5-ee4bf9cbc3e3 +2024-09-10 15:48:02.507945 2024-09-10 15:48:02.507951 plgnd 1135805342 R rec 46eafd5a-8d77-4a4d-950e-08d25d93158c +2024-09-10 15:48:02.578752 2024-09-10 15:48:02.578758 plgnd 1135798842 R rec f28490b7-b6bd-477d-a64e-8a21831ef2a9 +2024-09-10 15:48:02.639654 2024-09-10 15:48:02.639659 plgnd 1133293247 R rec d18af3f2-b2a9-4517-8f2d-a8e51d8f59d1 +2024-09-10 15:48:02.70287 2024-09-10 15:48:02.702877 plgnd 1132227771 R rec 3645d493-1ab9-408d-8d7c-dd14405dc4ca +2024-09-10 15:48:02.761518 2024-09-10 15:48:02.761524 plgnd 1124279156 R rec a46d9082-2ba6-4d0b-ade7-e088ab3dc3fd +2024-09-10 15:48:02.81713 2024-09-10 15:48:02.817135 plgnd 1122747160 R rec 491348be-72ca-4db5-a45d-96f6cbe0b77d +2024-09-10 15:48:02.890605 2024-09-10 15:48:02.890611 plgnd 1122668171 R rec 38a6f501-7996-454e-8904-6dbfa3dc7db1 +2024-09-10 15:48:02.961276 2024-09-10 15:48:02.961281 plgnd 112132925X R rec 440303ee-5b74-4af5-adb2-6cd921a80024 +2024-09-10 15:48:03.079267 2024-09-10 15:48:03.079273 plgnd 1107605113 R rec f9ddab26-0896-4e5b-957c-1125562c1998 +2024-09-10 15:48:03.140537 2024-09-10 15:48:03.140542 plgnd 1105589110 R rec 9e44a241-2f73-4669-92a7-cbc4e33c6923 +2024-09-10 15:48:03.202484 2024-09-10 15:48:03.20249 plgnd 1101612258 R rec 4817a3e4-b6ae-4f29-beae-1017b0ffe551 +2024-09-10 15:48:03.273241 2024-09-10 15:48:03.273246 plgnd 1100323325 R rec b4473660-71b8-4889-843a-1474e0e2c7a1 +2024-09-10 15:48:03.334584 2024-09-10 15:48:03.334588 plgnd 1100201831 R rec de0ed797-626d-4c91-8ec7-5a0d75a1de05 +2024-09-10 15:48:03.397162 2024-09-10 15:48:03.397168 plgnd 1099133092 R rec 2688300e-b06c-4f1f-9638-2a5da55a87f0 +2024-09-10 15:48:03.477619 2024-09-10 15:48:03.477625 plgnd 1099132061 R rec 40c16133-9b6b-417c-8041-64677dfc74aa +2024-09-10 15:48:03.565326 2024-09-10 15:48:03.565332 plgnd 1097213617 R rec a5f423b3-8e4a-4ef9-ae32-463febef76b6 +2024-09-10 15:48:03.629023 2024-09-10 15:48:03.629029 plgnd 1095576461 R rec 6a7f4cb3-29eb-4c87-8775-1a1d809e9039 +2024-09-10 15:48:03.689408 2024-09-10 15:48:03.689414 plgnd 1085229823 R rec ede54c4c-6874-46fa-861b-93a32ae3c19b +2024-09-10 15:48:03.751161 2024-09-10 15:48:03.751168 plgnd 1082797251 R rec 128233b0-b183-4a1e-970c-66e01e4056eb +2024-09-10 15:48:03.815081 2024-09-10 15:48:03.815085 plgnd 1082520101 R rec f1917c59-8c27-44fd-bc4b-3639be04b664 +2024-09-10 15:48:03.878614 2024-09-10 15:48:03.87862 plgnd 1082153850 R rec acd2beca-3321-42d7-8331-d2322ad31bd9 +2024-09-10 15:48:03.941129 2024-09-10 15:48:03.941134 plgnd 1082012033 R rec fc33f60f-d566-4110-b2e7-a75704b5694f +2024-09-10 15:48:04.005646 2024-09-10 15:48:04.005652 plgnd 1082001430 R rec 22497073-91f6-4266-82b7-de01bca5414e +2024-09-10 15:48:04.077453 2024-09-10 15:48:04.077458 plgnd 1081845031 R rec b6002819-c637-4ba9-9cfb-af704f7ef1ee +2024-09-10 15:48:04.150125 2024-09-10 15:48:04.150131 plgnd 1081844973 R rec db71d304-08af-4e2a-8837-a85263e3d542 +2024-09-10 15:48:04.227474 2024-09-10 15:48:04.22748 plgnd 1081842474 R rec 88e45542-c81b-4958-9f62-910d1a6b704b +2024-09-10 15:48:04.301115 2024-09-10 15:48:04.301121 plgnd 1081839082 R rec 9b77d049-6177-4557-893e-01e301044428 +2024-09-10 15:48:04.368999 2024-09-10 15:48:04.369004 plgnd 1081838779 R rec 454ebe68-554e-43d6-8082-3c6a0a6a7632 +2024-09-10 15:48:04.428869 2024-09-10 15:48:04.428874 plgnd 1081838655 R rec 2f1f5d60-37e5-4764-9579-283b53988623 +2024-09-10 15:48:04.493356 2024-09-10 15:48:04.493361 plgnd 1081838507 R rec 098ec58b-3062-4080-907f-2f8e3545ab32 +2024-09-10 15:48:04.556968 2024-09-10 15:48:04.556973 plgnd 1081838396 R rec 25a7b31b-0227-457a-bfe1-10779f639044 +2024-09-10 15:48:04.616273 2024-09-10 15:48:04.616279 plgnd 1081838310 R rec 3f1248c4-be8d-4785-a0d5-165b033dc62e +2024-09-10 15:48:04.679692 2024-09-10 15:48:04.679699 plgnd 1081838167 R rec 00c38dcb-7829-41de-a25b-d950866bfff3 +2024-09-10 15:48:04.754468 2024-09-10 15:48:04.754473 plgnd 1081838051 R rec 87917736-fb83-431a-ba39-a48afb46d387 +2024-09-10 15:48:04.818564 2024-09-10 15:48:04.818569 plgnd 1081330236 R rec 20159e5e-7e3b-4b11-8f2b-7dc97a037858 +2024-09-10 15:48:04.883516 2024-09-10 15:48:04.883526 plgnd 1081212918 R rec e640d912-6a42-4f11-a946-2d4881473caa +2024-09-10 15:48:04.954947 2024-09-10 15:48:04.954952 plgnd 1081097930 R rec 1ed9e672-c3f3-4208-af88-b0a6b1801e81 +2024-09-10 15:48:05.018916 2024-09-10 15:48:05.018922 plgnd 1079692916 R rec 0d41ae00-e5bd-40a0-9ee7-945805771e44 +2024-09-10 15:48:05.093885 2024-09-10 15:48:05.093891 plgnd 1079568352 R rec ea944dff-55b6-4e57-97f9-15ed1d0840ae +2024-09-10 15:48:05.160148 2024-09-10 15:48:05.160154 plgnd 1078131902 R rec 5b02795b-b36d-4cb5-8eb0-e2074ed57d2b +2024-09-10 15:48:05.235374 2024-09-10 15:48:05.23538 plgnd 1077893450 R rec 0b4756ac-12b1-42f4-80e2-9bde20c50809 +2024-09-10 15:48:05.296779 2024-09-10 15:48:05.296786 plgnd 1077053320 R rec 52158bfe-ced2-4ef3-86aa-e653c2ce1a54 +2024-09-10 15:48:05.361474 2024-09-10 15:48:05.36148 plgnd 1077053185 R rec e88c1710-1adf-418a-8ced-8ee748b3c460 +2024-09-10 15:48:05.419575 2024-09-10 15:48:05.41958 plgnd 107699847X R rec f9544481-9e00-48e9-9852-2f4560c1b13d +2024-09-10 15:48:05.479252 2024-09-10 15:48:05.479261 plgnd 1076027032 R rec 0812fe75-9dc9-487f-8ae3-61307f0ff0e7 +2024-09-10 15:48:05.54089 2024-09-10 15:48:05.540895 plgnd 1075827361 R rec 63d4631f-3ac8-45b8-89bb-004f25888d8b +2024-09-10 15:48:05.602414 2024-09-10 15:48:05.60242 plgnd 1075220467 R rec 5f0cf70b-cca8-43b3-a5eb-d1e8f6b7bc92 +2024-09-10 15:48:05.665798 2024-09-10 15:48:05.665806 plgnd 1074377397 R rec 82a63a86-c848-44b0-bc07-adf3b989e444 +2024-09-10 15:48:05.729929 2024-09-10 15:48:05.729935 plgnd 1074316908 R rec 2e6ef4e8-88a3-413d-b9cf-9f09c9694008 +2024-09-10 15:48:05.793545 2024-09-10 15:48:05.79355 plgnd 107399077X R rec afc01291-18e4-4921-82be-c40ba7be784b +2024-09-10 15:48:05.853433 2024-09-10 15:48:05.853438 plgnd 1073950220 R rec a8a80b97-a6ba-4f0b-a214-9ee35f678ee4 +2024-09-10 15:48:05.919816 2024-09-10 15:48:05.919821 plgnd 107373157X R rec 5947c8a3-c980-4051-a93c-649893119ca0 +2024-09-10 15:48:05.985906 2024-09-10 15:48:05.985911 plgnd 1073724549 R rec ab937e0f-b814-48d1-8906-b51a8ce33dd9 +2024-09-10 15:48:06.051695 2024-09-10 15:48:06.051701 plgnd 107362062X R rec ef78d976-913c-4087-ac30-7bc656b002a6 +2024-09-10 15:48:06.126661 2024-09-10 15:48:06.126666 plgnd 1073267830 R rec c3b158c8-2a5c-4a04-8323-089f99e61240 +2024-09-10 15:48:06.196357 2024-09-10 15:48:06.196363 plgnd 107283314X R rec 29435f6f-cfa4-4f12-834a-06ec0bb39c7b +2024-09-10 15:48:06.255663 2024-09-10 15:48:06.255668 plgnd 1071872435 R rec f705201f-127a-4fc5-aa39-0e6b791c924f +2024-09-10 15:48:06.340171 2024-09-10 15:48:06.340177 plgnd 1071862391 R rec 8ca0dd8b-9bf3-4c68-9e1b-9a2a82768514 +2024-09-10 15:48:06.40607 2024-09-10 15:48:06.406075 plgnd 1070113026 R rec 46330704-4012-4d9a-869b-c943a57c83cc +2024-09-10 15:48:06.468615 2024-09-10 15:48:06.46862 plgnd 1069803782 R rec f0abe735-fd5f-4e1d-83e5-128a6e1f2625 +2024-09-10 15:48:06.547937 2024-09-10 15:48:06.547942 plgnd 1068118490 R rec a96e4c6c-1324-4642-b046-b7a2a35cac12 +2024-09-10 15:48:06.610547 2024-09-10 15:48:06.610552 plgnd 1067883703 R rec 386ca2d5-200d-42e2-9079-15cdd0fc7132 +2024-09-10 15:48:06.673391 2024-09-10 15:48:06.673397 plgnd 1067878831 R rec 206ac64e-ceb5-4131-909a-faf17ee8d5c0 +2024-09-10 15:48:06.73444 2024-09-10 15:48:06.734445 plgnd 1067860142 R rec 51e2a917-5c7e-4a37-a47d-a41e58342b31 +2024-09-10 15:48:06.795603 2024-09-10 15:48:06.795609 plgnd 1067637184 R rec b24ba8c5-2dde-4fd4-bfc3-5dfea63612a5 +2024-09-10 15:48:06.859913 2024-09-10 15:48:06.859919 plgnd 1067636757 R rec b71e4723-e505-47ba-b9d3-cd1f3d90e8fa +2024-09-10 15:48:06.924872 2024-09-10 15:48:06.924877 plgnd 1067274006 R rec 7d18e7c6-ceeb-4f3c-8c78-f4bf825979e7 +2024-09-10 15:48:06.990887 2024-09-10 15:48:06.990892 plgnd 1067272488 R rec c96271c2-394e-49f5-a7be-a89519a425ea +2024-09-10 15:48:07.053419 2024-09-10 15:48:07.053425 plgnd 1064960243 R rec 79b708b8-e9f1-473b-b007-541c12e42de7 +2024-09-10 15:48:07.11559 2024-09-10 15:48:07.115595 plgnd 1064714455 R rec e744ec80-9a31-4af3-a586-3274868b9e11 +2024-09-10 15:48:07.179596 2024-09-10 15:48:07.179602 plgnd 1064601502 R rec 3bfcafcd-632c-42e4-b582-6e2af8b9f66e +2024-09-10 15:48:07.24553 2024-09-10 15:48:07.245536 plgnd 1064049419 R rec 12b8f82e-959b-472b-a73d-855acd8e65a2 +2024-09-10 15:48:07.317043 2024-09-10 15:48:07.317049 plgnd 1062979583 R rec 2a92554f-0d73-4bf5-a5ba-45900214ebab +2024-09-10 15:48:07.384571 2024-09-10 15:48:07.384578 plgnd 1062970004 R rec 8a827be0-411e-46f3-90e8-5fa9ba27ff03 +2024-09-10 15:48:07.453798 2024-09-10 15:48:07.453804 plgnd 1062891848 R rec 255ad399-750d-4cc7-b7b5-dfd3972a09da +2024-09-10 15:48:07.525616 2024-09-10 15:48:07.525622 plgnd 1062531191 R rec 6e9eea78-42ce-4841-9763-db225cbbf5b4 +2024-09-10 15:48:07.588738 2024-09-10 15:48:07.588741 plgnd 1062516109 R rec 85cd56bd-dc96-43b0-9c95-541efb2796e5 +2024-09-10 15:48:07.655267 2024-09-10 15:48:07.655272 plgnd 1061004198 R rec 477dcd9b-a460-41de-af15-ac72ab23ee03 +2024-09-10 15:48:07.730148 2024-09-10 15:48:07.730153 plgnd 1060849127 R rec 9bcd680f-b513-4e86-a61c-d4b58cd62ba1 +2024-09-10 15:48:07.788634 2024-09-10 15:48:07.78864 plgnd 106081482X R rec 77b7da2c-4e3b-4c65-9956-d99782985db4 +2024-09-10 15:48:07.857199 2024-09-10 15:48:07.857204 plgnd 1060503611 R rec 1d7017e6-bc84-499b-951d-9711fab8d218 +2024-09-10 15:48:07.919016 2024-09-10 15:48:07.919021 plgnd 1060503166 R rec 08b76235-4023-4214-8c0a-d02d6a75a6e9 +2024-09-10 15:48:07.98093 2024-09-10 15:48:07.980935 plgnd 1060502798 R rec 54f74625-3f7a-4aa2-9341-0800a4c5d820 +2024-09-10 15:48:08.056517 2024-09-10 15:48:08.056522 plgnd 1060502682 R rec fd20c207-4885-4acb-9420-6753e5f08a33 +2024-09-10 15:48:08.113924 2024-09-10 15:48:08.113931 plgnd 1060502585 R rec cfbffa84-814c-4ef1-acbe-7bd748fc64dc +2024-09-10 15:48:08.1782 2024-09-10 15:48:08.178203 plgnd 1060502372 R rec 11214310-d442-4d2b-bada-b1e5deace5be +2024-09-10 15:48:08.239213 2024-09-10 15:48:08.239218 plgnd 106050216X R rec 077f32ad-2c0c-4b8c-b842-0cc0a5744511 +2024-09-10 15:48:08.301386 2024-09-10 15:48:08.301392 plgnd 1060501902 R rec 7a24a09e-32d5-489e-bc0f-63fd9075fc61 +2024-09-10 15:48:08.363962 2024-09-10 15:48:08.363967 plgnd 1060501759 R rec 74f76310-6a57-45ce-b72c-763ed17c11e5 +2024-09-10 15:48:08.429677 2024-09-10 15:48:08.429683 plgnd 1060501457 R rec 832e4e75-ec31-40ba-a089-906a7a5225df +2024-09-10 15:48:08.502912 2024-09-10 15:48:08.502917 plgnd 106050104X R rec 2543144a-41fd-4f9b-b4a7-4d6c0317ccff +2024-09-10 15:48:08.574995 2024-09-10 15:48:08.575001 plgnd 1060419319 R rec 5dd5e9d7-b919-4856-9e74-df8c281617de +2024-09-10 15:48:08.636448 2024-09-10 15:48:08.636453 plgnd 1060401134 R rec e141b1c7-a45a-45d1-a6e9-1b93da98945e +2024-09-10 15:48:08.706973 2024-09-10 15:48:08.706979 plgnd 1060238128 R rec d8131a4a-f0f8-491b-a769-9117442bcd7a +2024-09-10 15:48:08.769275 2024-09-10 15:48:08.76928 plgnd 1060132206 R rec b6d9e9c0-c5f3-4bcd-bc70-c2a541458e91 +2024-09-10 15:48:08.832434 2024-09-10 15:48:08.832443 plgnd 1060087367 R rec 1e9570f4-b093-4727-877d-d0fafd88065b +2024-09-10 15:48:08.89166 2024-09-10 15:48:08.891665 plgnd 1059448831 R rec 0b34b00f-4510-40f0-b5a6-f3fe55cede4d +2024-09-10 15:48:08.950614 2024-09-10 15:48:08.95062 plgnd 1059378396 R rec 0e182b0e-3091-49e4-87c2-d949b6136bb7 +2024-09-10 15:48:09.014988 2024-09-10 15:48:09.014993 plgnd 1059376946 R rec e416d2cd-172e-4884-825a-50a0fe85073a +2024-09-10 15:48:09.088873 2024-09-10 15:48:09.088878 plgnd 1059359022 R rec 03744355-824d-47ae-9f1a-a30a994986b7 +2024-09-10 15:48:09.15507 2024-09-10 15:48:09.155075 plgnd 1059357755 R rec b8caea76-53d2-44ab-98cd-56e988bb5244 +2024-09-10 15:48:09.216665 2024-09-10 15:48:09.216671 plgnd 1059250454 R rec c37db5bd-ed07-402b-9904-d0db7a26f562 +2024-09-10 15:48:09.285224 2024-09-10 15:48:09.28523 plgnd 105914249X R rec 3736a18f-b049-4c4d-861a-be971fe37589 +2024-09-10 15:48:09.353818 2024-09-10 15:48:09.353824 plgnd 1058994743 R rec ef5c25a4-ad9f-4244-a26e-8bc18059489f +2024-09-10 15:48:09.418315 2024-09-10 15:48:09.41832 plgnd 1058986333 R rec 266d0398-6142-45d2-bf48-6a6d2b4e01ca +2024-09-10 15:48:09.484423 2024-09-10 15:48:09.484428 plgnd 1058985299 R rec 413fdd05-b14c-40bf-bb00-b97ecdd88536 +2024-09-10 15:48:09.547234 2024-09-10 15:48:09.54724 plgnd 1058984144 R rec de69b4ba-a134-4e11-86ca-b663b2ab9105 +2024-09-10 15:48:09.613576 2024-09-10 15:48:09.61358 plgnd 1058973045 R rec f57d8938-6315-4e9a-a67c-a2c8357299ad +2024-09-10 15:48:09.676139 2024-09-10 15:48:09.676144 plgnd 1058939068 R rec d434a57f-e430-4421-808c-0392f79a5733 +2024-09-10 15:48:09.740586 2024-09-10 15:48:09.740592 plgnd 105892978X R rec 07150035-723e-4b58-9d69-c737d885228a +2024-09-10 15:48:09.803721 2024-09-10 15:48:09.803726 plgnd 1058928732 R rec abb695b9-a5d2-4bc1-8e90-7093f62ac76b +2024-09-10 15:48:09.88035 2024-09-10 15:48:09.880357 plgnd 1058919954 R rec 8f6fc640-6149-44d1-8c2f-29bca6e7e008 +2024-09-10 15:48:09.957253 2024-09-10 15:48:09.957258 plgnd 1058918176 R rec a6069a7b-28ca-4005-abf7-24e5fa442a26 +2024-09-10 15:48:10.033024 2024-09-10 15:48:10.033029 plgnd 1058899597 R rec 59c39964-894d-4aa3-9d2a-2478a559b7f2 +2024-09-10 15:48:10.107006 2024-09-10 15:48:10.107011 plgnd 1058896318 R rec e1e38eb9-0151-4574-b25f-8b8b9342a9ef +2024-09-10 15:48:10.172531 2024-09-10 15:48:10.172536 plgnd 1058890611 R rec 663271f0-a759-4cd1-bca3-9629ac98f89a +2024-09-10 15:48:10.23409 2024-09-10 15:48:10.234095 plgnd 1058880373 R rec 6a5f10e4-6be2-4dd6-b748-e07fc7e370ac +2024-09-10 15:48:10.296564 2024-09-10 15:48:10.296571 plgnd 1058876872 R rec 52c43e84-707f-41ec-a9bc-fbc3309d8302 +2024-09-10 15:48:10.356169 2024-09-10 15:48:10.356175 plgnd 1058840819 R rec 73d86610-22b8-44f4-9dc3-3255eaa6b08b +2024-09-10 15:48:10.41992 2024-09-10 15:48:10.419926 plgnd 1058838512 R rec a21d1891-fa07-4d4e-92b2-e22dc4bf7f51 +2024-09-10 15:48:10.489506 2024-09-10 15:48:10.489511 plgnd 1058667343 R rec c47b996b-00d1-4a4e-a0fc-ee4a364e7ee1 +2024-09-10 15:48:10.553086 2024-09-10 15:48:10.553091 plgnd 1058664468 R rec 928819c2-d3b2-47cc-afbf-91f7458ee1d5 +2024-09-10 15:48:10.626915 2024-09-10 15:48:10.62692 plgnd 1058661396 R rec 51b96dc2-82bd-4eb6-9a9e-a219611e3906 +2024-09-10 15:48:10.6892 2024-09-10 15:48:10.689204 plgnd 1058651994 R rec 12d95154-680e-4b1b-93d3-b5f55eaec861 +2024-09-10 15:48:10.753716 2024-09-10 15:48:10.753722 plgnd 1058639919 R rec 6c45385b-e84e-4251-8a7e-1c1de3a62107 +2024-09-10 15:48:10.81848 2024-09-10 15:48:10.818486 plgnd 105863982X R rec bbc68c2d-efcb-4e54-a0d7-5786dbceb901 +2024-09-10 15:48:10.894096 2024-09-10 15:48:10.894102 plgnd 1058622773 R rec 405c770b-014e-4bce-aa09-b8c5c0810729 +2024-09-10 15:48:10.963567 2024-09-10 15:48:10.963574 plgnd 1058616684 R rec 7a8988a8-d886-4906-95c7-525c47b04893 +2024-09-10 15:48:11.037589 2024-09-10 15:48:11.037594 plgnd 1058616579 R rec 8ce25cec-824e-4d90-95c8-402c623200f9 +2024-09-10 15:48:11.111075 2024-09-10 15:48:11.11108 plgnd 1058583018 R rec 99d7c363-f823-40a4-99dc-052ac90690ee +2024-09-10 15:48:11.174622 2024-09-10 15:48:11.174627 plgnd 1058579045 R rec d994ef3d-f307-469e-bb08-241bdf58585a +2024-09-10 15:48:11.241181 2024-09-10 15:48:11.241185 plgnd 1058463993 R rec 2f6e8541-1287-4c07-be4f-ca17e2659f8b +2024-09-10 15:48:11.305658 2024-09-10 15:48:11.305663 plgnd 1058463896 R rec d431f526-5934-49df-a9e3-7f3c5f507a07 +2024-09-10 15:48:11.366168 2024-09-10 15:48:11.366174 plgnd 1058460862 R rec 490ef143-ba92-4942-aaa4-b9a1900c4fd7 +2024-09-10 15:48:11.430893 2024-09-10 15:48:11.430899 plgnd 1058460293 R rec acf4ee5b-b880-4c73-a218-af8c141b4ada +2024-09-10 15:48:11.490664 2024-09-10 15:48:11.490669 plgnd 1058395726 R rec 4b2a31a8-5627-41bf-85ae-09c6e89f406a +2024-09-10 15:48:11.551756 2024-09-10 15:48:11.551762 plgnd 1058041142 R rec 7dc8aa99-bbae-4454-85a0-5e34e335828e +2024-09-10 15:48:11.616755 2024-09-10 15:48:11.616762 plgnd 1057942928 R rec ea86cfbe-9759-4aac-88d7-a5e9fa2c728c +2024-09-10 15:48:11.69304 2024-09-10 15:48:11.693044 plgnd 1056973714 R rec 067bed0a-ea89-49a5-9f19-78ea3cb68bb3 +2024-09-10 15:48:11.755642 2024-09-10 15:48:11.755647 plgnd 1055068716 R rec 21843ab0-27cb-4858-8d02-df14f130ebd6 +2024-09-10 15:48:11.819441 2024-09-10 15:48:11.819447 plgnd 1054961824 R rec 37f5e590-0ba0-491b-bb16-f9ef1b114310 +2024-09-10 15:48:11.886646 2024-09-10 15:48:11.886651 plgnd 1054631026 R rec 584f8f54-0354-4a24-b753-c4e4ad694cfa +2024-09-10 15:48:11.960965 2024-09-10 15:48:11.96097 plgnd 1054611041 R rec 3d7ef32f-f750-4dad-90a9-b8b594d56d09 +2024-09-10 15:48:12.018302 2024-09-10 15:48:12.018308 plgnd 1054442959 R rec 9afd97e3-22ca-4d97-bd59-3de80d750da5 +2024-09-10 15:48:12.084002 2024-09-10 15:48:12.084009 plgnd 1054382255 R rec b92b1a78-8ebd-4a68-a0a3-dec64f6d6d29 +2024-09-10 15:48:12.144591 2024-09-10 15:48:12.144597 plgnd 1054036489 R rec 937e290e-2070-4221-a45b-2b2951b01925 +2024-09-10 15:48:12.205475 2024-09-10 15:48:12.205481 plgnd 1054036322 R rec a5635fd3-8fc8-4768-aada-f43806a2fb36 +2024-09-10 15:48:12.277426 2024-09-10 15:48:12.277432 plgnd 105382467X R rec a4742d40-56bb-4f12-841f-55207bd2919b +2024-09-10 15:48:12.342214 2024-09-10 15:48:12.342219 plgnd 1053733119 R rec 43d9e236-3b49-42a4-b227-a60ebaeb30b8 +2024-09-10 15:48:12.404698 2024-09-10 15:48:12.404703 plgnd 1053694857 R rec 04468a2a-1225-4129-bd9a-252b24dbcb48 +2024-09-10 15:48:12.467547 2024-09-10 15:48:12.467554 plgnd 105366916X R rec 3dacb710-1c22-460e-85fb-ed6d9f0bc5a1 +2024-09-10 15:48:12.528748 2024-09-10 15:48:12.528754 plgnd 1053585039 R rec 1b1883c5-16de-4fa1-a1fb-08c3b0cefdba +2024-09-10 15:48:12.596816 2024-09-10 15:48:12.596821 plgnd 1053578571 R rec f575077c-2f63-49f9-889e-ad1b7c307cd0 +2024-09-10 15:48:12.660107 2024-09-10 15:48:12.660112 plgnd 1053495382 R rec 121a12f5-d8dd-4c5f-bce2-349dec5f76d0 +2024-09-10 15:48:12.722163 2024-09-10 15:48:12.722169 plgnd 1053460856 R rec 0b43c952-06af-4d31-8cf1-37712e1b0461 +2024-09-10 15:48:12.788674 2024-09-10 15:48:12.788679 plgnd 1051746663 R rec 9fdc33ea-3338-4ed1-a3ff-cc55fabcdb4e +2024-09-10 15:48:12.850302 2024-09-10 15:48:12.850307 plgnd 1044268069 R rec 961c25a3-e5a1-42b4-b7d2-752c9d092050 +2024-09-10 15:48:12.918529 2024-09-10 15:48:12.918537 plgnd 1038831628 R rec ad434738-9c3d-4a0b-a0fc-e7906d1a934d +2024-09-10 15:48:12.980542 2024-09-10 15:48:12.980552 plgnd 1036912949 R rec 297f4685-afe5-4886-9ef8-57adf07944fe +2024-09-10 15:48:13.04513 2024-09-10 15:48:13.045136 plgnd 1036573141 R rec 06ba320a-26e4-4364-9568-9bdda81bfe92 +2024-09-10 15:48:13.11307 2024-09-10 15:48:13.113076 plgnd 1035487640 R rec c1850e78-80e1-4743-83d0-25e015b86e10 +2024-09-10 15:48:13.177477 2024-09-10 15:48:13.177482 plgnd 1032436034 R rec 35df9270-3c19-4bb1-817d-ba89695a2bb8 +2024-09-10 15:48:13.251459 2024-09-10 15:48:13.251465 plgnd 1031571922 R rec 94d5ca23-8836-46a6-bf7d-824a2188e2d7 +2024-09-10 15:48:13.316485 2024-09-10 15:48:13.316491 plgnd 1029389896 R rec 3cf2843c-545b-4c4a-8a1c-364e5fb32648 +2024-09-10 15:48:13.381144 2024-09-10 15:48:13.38115 plgnd 1029389233 R rec 043a6ace-fe6f-429a-9929-bf1d764fe771 +2024-09-10 15:48:13.468068 2024-09-10 15:48:13.468073 plgnd 1029388334 R rec c9a4d313-302c-4375-9525-83511a0c51b4 +2024-09-10 15:48:13.545154 2024-09-10 15:48:13.54516 plgnd 1028231660 R rec 259b2d93-35ef-43e1-9677-e959de1b9089 +2024-09-10 15:48:13.605647 2024-09-10 15:48:13.605653 plgnd 1024812693 R rec bf13433f-f035-4b4e-a468-0b9c4dc1ff99 +2024-09-10 15:48:13.670112 2024-09-10 15:48:13.670117 plgnd 1021396656 R rec 168d7561-9cbc-4ee5-898d-36b30476876e +2024-09-10 15:48:13.732093 2024-09-10 15:48:13.732098 plgnd 1021113018 R rec d1ba9a14-5dc8-4363-bd55-5123e42180e4 +2024-09-10 15:48:13.798122 2024-09-10 15:48:13.798128 plgnd 1021112577 R rec be4d5515-a570-4a38-aa98-b0cd8c70f397 +2024-09-10 15:48:13.872031 2024-09-10 15:48:13.872036 plgnd 1021112518 R rec 43cac3b7-05ab-4e8a-813a-7434e10db5af +2024-09-10 15:48:13.934617 2024-09-10 15:48:13.934623 plgnd 1021112216 R rec 042ca80f-20d3-4f29-a924-8318c1c11d5b +2024-09-10 15:48:14.015405 2024-09-10 15:48:14.015412 plgnd 1021056154 R rec a2ad907f-f564-4152-9118-00125412597b +2024-09-10 15:48:14.102936 2024-09-10 15:48:14.102941 plgnd 1020911387 R rec 577b88ff-4fdf-439d-afcd-8849a64ea5bc +2024-09-10 15:48:14.163399 2024-09-10 15:48:14.163406 plgnd 1020911344 R rec cd5894ad-6339-4eb6-8b66-ffba8f97d815 +2024-09-10 15:48:14.228199 2024-09-10 15:48:14.228206 plgnd 1020911026 R rec 6d91eda7-2487-4c5a-ba83-47de4be0c315 +2024-09-10 15:48:14.291831 2024-09-10 15:48:14.291837 plgnd 1020897325 R rec 13a7c86e-5f92-4371-89bc-cfeee4a4f7e8 +2024-09-10 15:48:14.367659 2024-09-10 15:48:14.367665 plgnd 1020897236 R rec aff85f1b-f299-471a-a77e-03ff6c4c8e1b +2024-09-10 15:48:14.427598 2024-09-10 15:48:14.427603 plgnd 1020865318 R rec fb9a96fe-5830-418f-9058-1830c8e7df5b +2024-09-10 15:48:14.514912 2024-09-10 15:48:14.514918 plgnd 1020865237 R rec 52d6e74f-719c-44b9-994b-a725776ac9bd +2024-09-10 15:48:14.580832 2024-09-10 15:48:14.580841 plgnd 1016112106 R rec 2fad76b9-f660-44f4-8cb6-cd0bdb480872 +2024-09-10 15:48:14.644859 2024-09-10 15:48:14.644865 plgnd 1011060752 R rec 02d4c7b2-b11d-4dab-975b-e8ad66303ff0 +2024-09-10 15:48:14.706395 2024-09-10 15:48:14.706404 plgnd 1010438603 R rec c1767197-a669-463b-bdbf-8a5e75c936a3 +2024-09-10 15:48:14.78075 2024-09-10 15:48:14.780755 plgnd 1010249460 R rec f7338290-51fa-4b21-82d4-f2cf695f921e +2024-09-10 15:48:14.840686 2024-09-10 15:48:14.840692 plgnd 1009847430 R rec f4aff7fc-146c-4d3b-9433-1b1515adb4e8 +2024-09-10 15:48:14.905059 2024-09-10 15:48:14.905066 plgnd 1009707922 R rec cc92ef12-f6b9-42fd-a5c4-d5de44e6c34f +2024-09-10 15:48:14.972782 2024-09-10 15:48:14.972788 plgnd 1008073997 R rec 93616a68-db87-4dc9-9b20-0c3f659a1831 +2024-09-10 15:48:15.041385 2024-09-10 15:48:15.041391 plgnd 1002427517 R rec e564a17f-744d-4e15-8034-06a8324700f2 +2024-09-10 15:48:15.1013 2024-09-10 15:48:15.101305 plgnd 1001762630 R rec cfc9e004-bdc7-46ed-a860-1da16df6897c +2024-09-10 15:48:15.173048 2024-09-10 15:48:15.173054 plgnd 996588051 R rec 98ac3edd-6e12-494c-b70f-f3117781f8f9 +2024-09-10 15:48:15.232977 2024-09-10 15:48:15.23298 plgnd 996155910 R rec d38cac2b-69b6-475b-a1c5-918eb91b6c14 +2024-09-10 15:48:15.295292 2024-09-10 15:48:15.295297 plgnd 995191506 R rec c9ef4d9d-1110-4713-9925-85844f104989 +2024-09-10 15:48:15.367808 2024-09-10 15:48:15.367811 plgnd 994536666 R rec e7e3f056-a365-44ee-86eb-d59712017f24 +2024-09-10 15:48:15.436821 2024-09-10 15:48:15.436826 plgnd 992346371 R rec bef7b8b6-2a91-431d-8d02-0198ca6b965d +2024-09-10 15:48:15.498284 2024-09-10 15:48:15.49829 plgnd 989505952 R rec c05bdd9d-3bec-4211-bf24-a8c6b230c571 +2024-09-10 15:48:15.566881 2024-09-10 15:48:15.566886 plgnd 98831326X R rec 85b8ecbe-fbfb-4532-b987-6a191891d02e +2024-09-10 15:48:15.634379 2024-09-10 15:48:15.634384 plgnd 985253576 R rec 8512603e-4f92-4c03-b921-05887d6f5a24 +2024-09-10 15:48:15.697876 2024-09-10 15:48:15.697882 plgnd 984645942 R rec 3678b04f-1400-4fb5-b1e0-124241f54d0a +2024-09-10 15:48:15.756933 2024-09-10 15:48:15.756938 plgnd 980891248 R rec 8d9f2b48-9426-4917-b8e8-e015dedabc1f +2024-09-10 15:48:15.818052 2024-09-10 15:48:15.818057 plgnd 979131529 R rec 910b6d79-f5f5-489f-9716-4340da2206e1 +2024-09-10 15:48:15.876632 2024-09-10 15:48:15.876637 plgnd 978966228 R rec adaf90b3-a065-4f54-b88b-e16739806aec +2024-09-10 15:48:15.939169 2024-09-10 15:48:15.939174 plgnd 978923855 R rec c3eab836-5d2c-4224-8952-45333bc2b4eb +2024-09-10 15:48:15.99619 2024-09-10 15:48:15.996198 plgnd 975958925 R rec e7a91879-5451-453f-8944-1ccbdeade11c +2024-09-10 15:48:16.071169 2024-09-10 15:48:16.071175 plgnd 975328573 R rec 991fba37-8d16-4ef9-ad5c-5cd282df14f0 +2024-09-10 15:48:16.129891 2024-09-10 15:48:16.129897 plgnd 974245747 R rec 0008a412-7fa0-47e9-a7e0-daf8c71737ae +2024-09-10 15:48:16.193908 2024-09-10 15:48:16.193913 plgnd 97424225X R rec 838b8395-966c-4ff5-b359-258ff7143617 +2024-09-10 15:48:16.255505 2024-09-10 15:48:16.255511 plgnd 973071648 R rec ff07bf25-496b-412c-8c36-bf0e06025df9 +2024-09-10 15:48:16.315092 2024-09-10 15:48:16.315097 plgnd 973066261 R rec 32b1d830-21b4-494c-872b-0d746e847af8 +2024-09-10 15:48:16.375437 2024-09-10 15:48:16.375445 plgnd 973066245 R rec 48060dd6-fc39-4697-a8f9-d4edcdea286b +2024-09-10 15:48:16.437773 2024-09-10 15:48:16.437778 plgnd 973040149 R rec 0c732aaa-6741-41e9-9af2-ec631b617b17 +2024-09-10 15:48:16.521493 2024-09-10 15:48:16.521498 plgnd 972651438 R rec 27810fa8-341a-4c09-bda9-1a01d3f24b62 +2024-09-10 15:48:16.583203 2024-09-10 15:48:16.583209 plgnd 972586601 R rec 97f75e88-6742-47d4-9754-ac159a66e3aa +2024-09-10 15:48:16.642225 2024-09-10 15:48:16.642229 plgnd 972515704 R rec 82e89e77-cc2e-4fd9-998b-cda8e9f32ff4 +2024-09-10 15:48:16.69971 2024-09-10 15:48:16.699715 plgnd 971359709 R rec af59351c-badf-4473-8b57-b6585d7fe337 +2024-09-10 15:48:16.760111 2024-09-10 15:48:16.760116 plgnd 970139470 R rec fa434e99-41d4-4858-8f90-9757e487094c +2024-09-10 15:48:16.823444 2024-09-10 15:48:16.823449 plgnd 969971028 R rec a5acd516-b13c-43c2-9705-ce973388f3a8 +2024-09-10 15:48:16.903221 2024-09-10 15:48:16.903226 plgnd 969491131 R rec adf68124-d5f8-438c-b847-3d2102af7d86 +2024-09-10 15:48:16.968891 2024-09-10 15:48:16.968897 plgnd 967753546 R rec 6a43e532-f55b-4d6d-9416-c11ee6d15970 +2024-09-10 15:48:17.042287 2024-09-10 15:48:17.042293 plgnd 967681952 R rec e6898931-01f4-4fd5-b19e-ae5fe5b171e9 +2024-09-10 15:48:17.107241 2024-09-10 15:48:17.107247 plgnd 967581176 R rec dbc0eae2-82b4-44ba-9c94-490ccda24713 +2024-09-10 15:48:17.182159 2024-09-10 15:48:17.182164 plgnd 967180953 R rec b877b67d-d83d-4278-b4ca-df49504c9e0c +2024-09-10 15:48:17.246452 2024-09-10 15:48:17.246458 plgnd 967160480 R rec 844f8c10-4a84-44d8-8f08-ab9d66518346 +2024-09-10 15:48:17.321436 2024-09-10 15:48:17.321444 plgnd 96577578X R rec ba2faa83-e039-4b42-b08b-ae1625822290 +2024-09-10 15:48:17.38319 2024-09-10 15:48:17.383195 plgnd 965775429 R rec 2e84f3fb-5eb2-40f1-9a3b-f04f5832e095 +2024-09-10 15:48:17.449198 2024-09-10 15:48:17.449206 plgnd 965774910 R rec 1fdfc64a-24c1-4670-8938-2637d9d80780 +2024-09-10 15:48:17.508787 2024-09-10 15:48:17.508792 plgnd 965759059 R rec 200055cd-42f9-47c5-b284-5aad9594a64f +2024-09-10 15:48:17.572951 2024-09-10 15:48:17.572957 plgnd 96575877X R rec 3a647e02-a39d-418d-a872-779b25f1c20d +2024-09-10 15:48:17.633482 2024-09-10 15:48:17.633487 plgnd 96563860X R rec ad1f55a0-209d-4e0c-9865-a2bcb3bb69bb +2024-09-10 15:48:17.697139 2024-09-10 15:48:17.697145 plgnd 964991608 R rec 39088392-61cd-47d0-a4bb-9f509c8e651b +2024-09-10 15:48:17.771437 2024-09-10 15:48:17.771444 plgnd 964462427 R rec a14f02d9-663a-430e-b313-308bf58db332 +2024-09-10 15:48:17.83476 2024-09-10 15:48:17.834767 plgnd 96411822X R rec 102a9e0f-354c-41a6-968b-dd43af833982 +2024-09-10 15:48:17.896512 2024-09-10 15:48:17.896517 plgnd 963982559 R rec 0ec635d3-bd4d-436b-b4fe-cdb71c861002 +2024-09-10 15:48:17.971704 2024-09-10 15:48:17.971709 plgnd 963957635 R rec 3299ac3f-5577-47d4-95ef-59509f8e0673 +2024-09-10 15:48:18.035044 2024-09-10 15:48:18.035049 plgnd 963614673 R rec 3c8aea3d-3478-4555-882f-eaa0d0fb3784 +2024-09-10 15:48:18.097389 2024-09-10 15:48:18.097394 plgnd 963462539 R rec b601315e-b88c-4a20-b863-912f59cd6b6d +2024-09-10 15:48:18.16283 2024-09-10 15:48:18.162835 plgnd 963082132 R rec bac88766-e7a5-4292-8dc9-c200d9e424d3 +2024-09-10 15:48:18.222078 2024-09-10 15:48:18.222084 plgnd 962048879 R rec 5aff356b-abdf-43d5-9390-06ef3a59dca1 +2024-09-10 15:48:18.287278 2024-09-10 15:48:18.287285 plgnd 961594519 R rec 30640cff-ebea-47a1-acc0-0b4ddfe05e88 +2024-09-10 15:48:18.36099 2024-09-10 15:48:18.360996 plgnd 961594497 R rec 82e22670-d3e3-491a-bf2a-5f73e343f73d +2024-09-10 15:48:18.42822 2024-09-10 15:48:18.428223 plgnd 961594454 R rec 38c42dac-dfa6-486b-a641-03a82d14268c +2024-09-10 15:48:18.498987 2024-09-10 15:48:18.498996 plgnd 961395923 R rec fe873f78-977c-4537-a33c-8985dc403557 +2024-09-10 15:48:18.562639 2024-09-10 15:48:18.562645 plgnd 960863664 R rec 205cd9e3-60b8-4733-84e4-cd5b9ede0af0 +2024-09-10 15:48:18.633662 2024-09-10 15:48:18.633667 plgnd 960833919 R rec 4bfb6931-3087-4c03-9557-170b4e51047b +2024-09-10 15:48:18.714503 2024-09-10 15:48:18.714509 plgnd 960396268 R rec 1959cb4c-c11d-4e7d-bd9c-d92daf78f904 +2024-09-10 15:48:18.789028 2024-09-10 15:48:18.789035 plgnd 960085726 R rec ca3a39d4-fec7-45ed-a16c-29f013361fa7 +2024-09-10 15:48:18.850442 2024-09-10 15:48:18.850448 plgnd 959934464 R rec c3059a65-d711-4615-9c92-df5f00b2df0f +2024-09-10 15:48:18.914241 2024-09-10 15:48:18.914246 plgnd 959918612 R rec bbe7e9f8-8f94-4aa6-99df-9e64227c65b3 +2024-09-10 15:48:18.97948 2024-09-10 15:48:18.979485 plgnd 959788719 R rec b62b72c6-53bf-4b95-8195-b51078df4676 +2024-09-10 15:48:19.062569 2024-09-10 15:48:19.062575 plgnd 959747575 R rec 18430f56-d346-4adc-8692-9658ca61880c +2024-09-10 15:48:19.146923 2024-09-10 15:48:19.14693 plgnd 959369872 R rec ebe8fd91-bbf6-4830-bce2-4747b2f74822 +2024-09-10 15:48:19.226236 2024-09-10 15:48:19.226242 plgnd 958777055 R rec dba33e85-64d4-43eb-8866-ce935dc71eb0 +2024-09-10 15:48:19.288889 2024-09-10 15:48:19.288894 plgnd 958014639 R rec 33119bb5-855a-4f67-b0ec-fefb648d84b8 +2024-09-10 15:48:19.356197 2024-09-10 15:48:19.356203 plgnd 957753551 R rec 413c0d11-cb8c-40f6-8b9f-4a1568102c76 +2024-09-10 15:48:19.418052 2024-09-10 15:48:19.418058 plgnd 957586973 R rec f93f0d5b-777e-4479-9810-8b2d2938c7c0 +2024-09-10 15:48:19.484989 2024-09-10 15:48:19.484995 plgnd 957565445 R rec ddb77ce9-6110-4076-8280-08ce45d37010 +2024-09-10 15:48:19.554701 2024-09-10 15:48:19.554706 plgnd 957211430 R rec 01660767-75da-49d5-8da2-d27b1d28f0b3 +2024-09-10 15:48:19.61557 2024-09-10 15:48:19.615578 plgnd 956443877 R rec 755c78e7-b24f-4d59-8827-707ccf4af6a2 +2024-09-10 15:48:19.680237 2024-09-10 15:48:19.680243 plgnd 956443842 R rec dadcc026-a610-4e11-929c-a8eada2e7e12 +2024-09-10 15:48:19.743466 2024-09-10 15:48:19.743471 plgnd 956443613 R rec e9a28838-0dfa-420b-bb78-aad7c09f00cc +2024-09-10 15:48:19.805168 2024-09-10 15:48:19.805174 plgnd 955960134 R rec 72f3c833-75ef-43b1-aea6-abd2346a13ce +2024-09-10 15:48:19.86754 2024-09-10 15:48:19.867546 plgnd 955820049 R rec e494731e-655e-4aec-96eb-35dc8f814684 +2024-09-10 15:48:19.929307 2024-09-10 15:48:19.929313 plgnd 955573246 R rec 3e9eb14b-3c51-4522-b357-9354d11d9cc7 +2024-09-10 15:48:20.00501 2024-09-10 15:48:20.005015 plgnd 955498058 R rec 6214fe16-2595-4bad-8029-069a39014358 +2024-09-10 15:48:20.067288 2024-09-10 15:48:20.067294 plgnd 955495768 R rec 3995db6a-d055-4784-ae0e-c82caea61ed9 +2024-09-10 15:48:20.134683 2024-09-10 15:48:20.134688 plgnd 955090547 R rec 4b1af44d-4354-4efa-8906-b88f1591fdaf +2024-09-10 15:48:20.204192 2024-09-10 15:48:20.2042 plgnd 954472683 R rec 21f7f679-47a5-4b70-be1c-adb16282154b +2024-09-10 15:48:20.277447 2024-09-10 15:48:20.277452 plgnd 954071832 R rec d463cf53-1808-42b2-991a-587c83911e6a +2024-09-10 15:48:20.358139 2024-09-10 15:48:20.358144 plgnd 954064593 R rec e35b7e96-aae8-4c48-b2e1-87e2a33c5daf +2024-09-10 15:48:20.436269 2024-09-10 15:48:20.436275 plgnd 953168697 R rec 0de240a2-e027-4d6d-a353-f9472f32630b +2024-09-10 15:48:20.498905 2024-09-10 15:48:20.49891 plgnd 953105024 R rec 19f687a3-5444-419b-9cab-cc4354e87448 +2024-09-10 15:48:20.561925 2024-09-10 15:48:20.561931 plgnd 952110512 R rec 672e0ceb-04d8-4b31-9ed1-95a3517ab86b +2024-09-10 15:48:20.625838 2024-09-10 15:48:20.625843 plgnd 951677268 R rec 31236a58-e9d3-4bec-81b3-94d20817bc19 +2024-09-10 15:48:20.689858 2024-09-10 15:48:20.689863 plgnd 951510282 R rec d87349b1-63cf-4b25-9489-c1711d2067be +2024-09-10 15:48:20.756514 2024-09-10 15:48:20.75652 plgnd 951510274 R rec 80fc6b92-7111-4583-a2a5-5ba86df67fb7 +2024-09-10 15:48:20.818616 2024-09-10 15:48:20.818625 plgnd 951510258 R rec ba86eb1d-1fc6-4d26-af2c-ea3cce88b330 +2024-09-10 15:48:20.877595 2024-09-10 15:48:20.877601 plgnd 95135793X R rec 77720fbe-0dcd-4789-afaf-6a123927bfdd +2024-09-10 15:48:20.941418 2024-09-10 15:48:20.941423 plgnd 950649155 R rec e053b47d-0632-41fe-bd21-76d26a89dc61 +2024-09-10 15:48:21.00391 2024-09-10 15:48:21.003916 plgnd 950556149 R rec 2ea2abea-48c9-469f-838f-099c1a08aa21 +2024-09-10 15:48:21.077524 2024-09-10 15:48:21.07753 plgnd 950356190 R rec 5d4e11aa-23a0-4d8c-b849-ff89d9a4c271 +2024-09-10 15:48:21.141213 2024-09-10 15:48:21.141218 plgnd 950339490 R rec 1b5c0133-7f78-49c5-be98-c8d7927d3f95 +2024-09-10 15:48:21.205399 2024-09-10 15:48:21.205405 plgnd 950339407 R rec b3312ba5-8726-451c-baef-9f529b6f843b +2024-09-10 15:48:21.267546 2024-09-10 15:48:21.26755 plgnd 950338338 R rec b02b972a-b691-45a9-a0a1-94d6e479adc5 +2024-09-10 15:48:21.340105 2024-09-10 15:48:21.34011 plgnd 95033829X R rec bf612884-1665-4245-a1aa-a36bf58ba9c1 +2024-09-10 15:48:21.400327 2024-09-10 15:48:21.400332 plgnd 950338230 R rec b7e3c31a-44be-4b4d-9eb5-09a188d4f401 +2024-09-10 15:48:21.475098 2024-09-10 15:48:21.475106 plgnd 950338184 R rec a79e0f18-2298-419b-9239-1c9c3684e66f +2024-09-10 15:48:21.538243 2024-09-10 15:48:21.538248 plgnd 950332429 R rec 5f787c88-67ed-444c-a3f2-96687c72470b +2024-09-10 15:48:21.598064 2024-09-10 15:48:21.59807 plgnd 950332011 R rec 41a8a77a-cbe1-4ee2-9caf-da063beb7b17 +2024-09-10 15:48:21.652677 2024-09-10 15:48:21.652682 plgnd 950331821 R rec caab7db7-881c-4150-9b41-c32d4223bc13 +2024-09-10 15:48:21.714964 2024-09-10 15:48:21.71497 plgnd 950315354 R rec 49da09d7-83d7-4135-b715-4bfc4829b323 +2024-09-10 15:48:21.777198 2024-09-10 15:48:21.777204 plgnd 95020109X R rec 285d3eb4-f8a6-479d-84fb-f10414bc7168 +2024-09-10 15:48:21.838808 2024-09-10 15:48:21.838813 plgnd 950199850 R rec d876522f-2dce-43de-a788-61c2d1ed02f7 +2024-09-10 15:48:21.913506 2024-09-10 15:48:21.913518 plgnd 950199214 R rec e6be9f1c-1041-48e1-a233-dee1d23f7a94 +2024-09-10 15:48:21.976054 2024-09-10 15:48:21.976059 plgnd 950168637 R rec 4ae2c2fb-8f49-4ffe-b944-24f540a0c997 +2024-09-10 15:48:22.039075 2024-09-10 15:48:22.03908 plgnd 949740861 R rec 4e14d028-e715-4d26-9613-fd203e7a625c +2024-09-10 15:48:22.104807 2024-09-10 15:48:22.104812 plgnd 949647314 R rec 00c316dd-c6ea-4da5-a06e-f94a0f65036d +2024-09-10 15:48:22.165614 2024-09-10 15:48:22.165619 plgnd 949641804 R rec c66db095-9188-443a-9f4a-b32d8064e09e +2024-09-10 15:48:22.229583 2024-09-10 15:48:22.229589 plgnd 94963218X R rec da782993-6c43-4088-86d7-ef583bcb6923 +2024-09-10 15:48:22.306332 2024-09-10 15:48:22.306337 plgnd 949632163 R rec ae6b7699-827d-41dd-b941-480d4480ae40 +2024-09-10 15:48:22.411025 2024-09-10 15:48:22.411031 plgnd 949632147 R rec 32f9436f-d84e-43e2-90aa-13a02870ec4a +2024-09-10 15:48:22.466719 2024-09-10 15:48:22.466726 plgnd 949632120 R rec 5e8263f0-72f7-4101-a8b8-3447ae9f3a78 +2024-09-10 15:48:22.531511 2024-09-10 15:48:22.531516 plgnd 949632104 R rec 461b0e80-230e-4721-b19e-6a95eeef3986 +2024-09-10 15:48:22.601749 2024-09-10 15:48:22.601755 plgnd 949607266 R rec f2b4094d-d53c-4b09-87a2-b5e0e8e7519d +2024-09-10 15:48:22.672226 2024-09-10 15:48:22.672231 plgnd 949602310 R rec 9428a3f3-ec22-4936-bf5a-fab44bcf78a2 +2024-09-10 15:48:22.741746 2024-09-10 15:48:22.741751 plgnd 948791659 R rec 8696bc7d-540b-4641-a303-a217541bd298 +2024-09-10 15:48:22.81442 2024-09-10 15:48:22.814426 plgnd 948417226 R rec 3a65b8b7-b86d-4870-9b2e-67c003e6f641 +2024-09-10 15:48:22.890582 2024-09-10 15:48:22.890588 plgnd 948322292 R rec 33ae83f6-b5b3-4754-9153-1e7aa991e4a9 +2024-09-10 15:48:22.956173 2024-09-10 15:48:22.956179 plgnd 948321156 R rec a8c0e865-a6b5-4c20-81f4-765d6a697137 +2024-09-10 15:48:23.037702 2024-09-10 15:48:23.037708 plgnd 947976248 R rec b2608504-663e-4be9-9dce-f5293730636f +2024-09-10 15:48:23.111309 2024-09-10 15:48:23.111315 plgnd 947862730 R rec a3d79551-584b-48b4-9364-7c48a12cbf69 +2024-09-10 15:48:23.173981 2024-09-10 15:48:23.173989 plgnd 947589341 R rec 9fcd4c66-4360-474a-9d41-9114dc647129 +2024-09-10 15:48:23.238548 2024-09-10 15:48:23.238554 plgnd 947454802 R rec 00beeae0-bc7e-4feb-8e63-d250e0bbda01 +2024-09-10 15:48:23.29978 2024-09-10 15:48:23.299787 plgnd 947454659 R rec 22703020-65a2-411f-ae6a-342adeee77ae +2024-09-10 15:48:23.374761 2024-09-10 15:48:23.374766 plgnd 947421238 R rec 5875e603-7d60-4fb8-95d9-6de874a5d4e3 +2024-09-10 15:48:23.451056 2024-09-10 15:48:23.451061 plgnd 947026088 R rec 0b41ac4f-f19c-4da1-a704-82c397c2e157 +2024-09-10 15:48:23.539856 2024-09-10 15:48:23.539865 plgnd 946723729 R rec 007cb9a1-913d-4c3d-923b-9e9e4ac4bc3b +2024-09-10 15:48:23.613246 2024-09-10 15:48:23.613252 plgnd 946606161 R rec 8313f331-94ce-4c2d-97f9-a66c773b1395 +2024-09-10 15:48:23.679782 2024-09-10 15:48:23.679787 plgnd 945980132 R rec dd10b0d6-e353-4f5c-8c85-028e16ada650 +2024-09-10 15:48:23.742114 2024-09-10 15:48:23.74212 plgnd 945917201 R rec 8372122c-ce66-4391-87f2-8bf2bc21d030 +2024-09-10 15:48:23.819559 2024-09-10 15:48:23.819564 plgnd 945871678 R rec 627c1c77-64bf-4301-ac19-d870f608e1f6 +2024-09-10 15:48:23.891315 2024-09-10 15:48:23.89132 plgnd 945385382 R rec eccac5d6-edad-4256-8ea1-e134ca0dd211 +2024-09-10 15:48:23.956203 2024-09-10 15:48:23.956208 plgnd 944766021 R rec 1deb2b7c-5951-49db-ae91-9f4fe340d679 +2024-09-10 15:48:24.022652 2024-09-10 15:48:24.022657 plgnd 944289290 R rec a4875945-cd29-40e1-af0e-ca22d1741b22 +2024-09-10 15:48:24.140135 2024-09-10 15:48:24.140141 plgnd 94400718X R rec 1b85122c-ea2a-4b06-a7c2-d5cd5e37f6cc +2024-09-10 15:48:24.202379 2024-09-10 15:48:24.202385 plgnd 943882346 R rec 6e3f9c48-bae2-498e-adeb-9ab1d81af1d6 +2024-09-10 15:48:24.264088 2024-09-10 15:48:24.264097 plgnd 941847934 R rec 02488c84-de56-499a-8edb-2fc0795f8157 +2024-09-10 15:48:24.325946 2024-09-10 15:48:24.325952 plgnd 941808769 R rec 835d4ace-9845-40ad-9762-1efc8e3a082c +2024-09-10 15:48:24.386979 2024-09-10 15:48:24.386984 plgnd 941757471 R rec c56ead20-1e5b-444d-9551-872da42dfe80 +2024-09-10 15:48:24.447548 2024-09-10 15:48:24.447553 plgnd 941385175 R rec d502be14-c2e3-4116-ac90-f06d11d46799 +2024-09-10 15:48:24.51348 2024-09-10 15:48:24.513486 plgnd 940396068 R rec 85333e60-b5c0-4d83-b2b7-67d87d4ffdd4 +2024-09-10 15:48:24.573155 2024-09-10 15:48:24.57316 plgnd 940396009 R rec f8ef41c1-de70-49f3-a39e-bbb142872b50 +2024-09-10 15:48:24.642461 2024-09-10 15:48:24.642466 plgnd 199305404 R rec f8da619d-d0c5-4d7f-8f91-ee9f640f47ba +2024-09-10 15:48:24.707351 2024-09-10 15:48:24.707359 plgnd 199252149 R rec cf4a77d2-3835-42bd-a113-feadf31fca25 +2024-09-10 15:48:24.810095 2024-09-10 15:48:24.8101 plgnd 199248974 R rec 2e6be2ce-122e-4136-b4eb-48c3a9e9e83a +2024-09-10 15:48:24.871119 2024-09-10 15:48:24.871124 plgnd 199246815 R rec 4ad06f6f-f4bd-48a5-b5ef-c6a43e44467d +2024-09-10 15:48:24.945166 2024-09-10 15:48:24.945172 plgnd 199246793 R rec 4f1632c4-e96e-4471-85e5-00dfd01c95a8 +2024-09-10 15:48:25.018162 2024-09-10 15:48:25.018168 plgnd 199246211 R rec 72a3b5d6-c9b6-4999-8d86-b3756111e791 +2024-09-10 15:48:25.075462 2024-09-10 15:48:25.075467 plgnd 199244766 R rec 579c12ae-83ab-491f-be33-653d75fde108 +2024-09-10 15:48:25.141858 2024-09-10 15:48:25.141863 plgnd 19924474X R rec 588db9b6-3adc-439d-b0d0-a506011c4f8c +2024-09-10 15:48:25.206765 2024-09-10 15:48:25.20677 plgnd 199244731 R rec 88c12074-ce6f-4a9f-85a7-78aefa8d446f +2024-09-10 15:48:25.269078 2024-09-10 15:48:25.269083 plgnd 199244375 R rec e826c032-c73e-4516-bab7-cb4ca1a74b70 +2024-09-10 15:48:25.357809 2024-09-10 15:48:25.357814 plgnd 199241562 R rec 3b1c9f6f-bcd4-45b8-86d2-6f7311a796df +2024-09-10 15:48:25.419885 2024-09-10 15:48:25.419891 plgnd 199240590 R rec 68ddf60b-9ab5-4497-852d-99dda3b9ab89 +2024-09-10 15:48:25.485139 2024-09-10 15:48:25.485145 plgnd 199240515 R rec 7d0e4197-68dc-4a44-ad21-9c41105098e5 +2024-09-10 15:48:25.547074 2024-09-10 15:48:25.547079 plgnd 199239436 R rec 70c377d9-d809-4994-b0a2-866bdac3cb0a +2024-09-10 15:48:25.611617 2024-09-10 15:48:25.611622 plgnd 19923860X R rec 47cddea4-78b8-455c-b13a-33355e8627ef +2024-09-10 15:48:25.672185 2024-09-10 15:48:25.67219 plgnd 199231516 R rec 8ba0437f-fb61-401f-a39a-70ae91893acd +2024-09-10 15:48:25.738946 2024-09-10 15:48:25.738952 plgnd 199230811 R rec 420f07ab-c74d-4c44-992b-ab4b3838c9df +2024-09-10 15:48:25.814375 2024-09-10 15:48:25.814384 plgnd 199230285 R rec 7909fb1f-afa0-424b-94a2-877fa667ba4b +2024-09-10 15:48:25.877557 2024-09-10 15:48:25.877563 plgnd 199224196 R rec f0563700-29d5-44a6-be1e-c8d848ddc3bb +2024-09-10 15:48:25.939882 2024-09-10 15:48:25.939888 plgnd 199218315 R rec 30259e6f-6d9b-40c0-b0a7-6aca84ce9e2a +2024-09-10 15:48:26.006389 2024-09-10 15:48:26.006394 plgnd 199215901 R rec 21a7d37a-4155-42f6-bd7b-ba12395e05a9 +2024-09-10 15:48:26.068569 2024-09-10 15:48:26.068574 plgnd 199214700 R rec 24493f65-eb33-477d-8025-93735e162231 +2024-09-10 15:48:26.133223 2024-09-10 15:48:26.133228 plgnd 19921462X R rec b7aff1f3-5e2e-4a87-87f5-cc05e4544fcb +2024-09-10 15:48:26.19599 2024-09-10 15:48:26.195996 plgnd 199212007 R rec 2c1424ff-c24b-43b6-a09e-d63d75e80f19 +2024-09-10 15:48:26.260503 2024-09-10 15:48:26.260508 plgnd 199211817 R rec 198b3c9c-1910-46b4-a2e6-ea8e67b09a3c +2024-09-10 15:48:26.323196 2024-09-10 15:48:26.323202 plgnd 199210713 R rec 46fbca54-24b8-4bb0-abb7-ca1b8d04df57 +2024-09-10 15:48:26.396373 2024-09-10 15:48:26.396379 plgnd 199209464 R rec 73c95a37-aaaa-4b4e-904d-2d47f52e0c14 +2024-09-10 15:48:26.457008 2024-09-10 15:48:26.457011 plgnd 199200955 R rec 8dc8739b-55e2-4323-962e-66d1708a1043 +2024-09-10 15:48:26.522103 2024-09-10 15:48:26.522109 plgnd 199198578 R rec 3a61fd0b-e9cf-478e-a445-0dd524e2a5f5 +2024-09-10 15:48:26.58479 2024-09-10 15:48:26.584796 plgnd 199195978 R rec ebd78f8a-6494-401f-b17d-19559e54a034 +2024-09-10 15:48:26.66205 2024-09-10 15:48:26.662055 plgnd 19919596X R rec ad6ef974-69be-4407-9f6d-f1ee3f718a8e +2024-09-10 15:48:26.737593 2024-09-10 15:48:26.737598 plgnd 199189870 R rec 2ae73a27-997b-4335-aee1-5361cdba3b7c +2024-09-10 15:48:26.804003 2024-09-10 15:48:26.804009 plgnd 199189862 R rec 23fa7c5b-7bde-4506-b459-b69780424827 +2024-09-10 15:48:26.879257 2024-09-10 15:48:26.879263 plgnd 199189854 R rec ada61b49-7168-4765-a16d-4d6791f1f4c8 +2024-09-10 15:48:26.958521 2024-09-10 15:48:26.958527 plgnd 199189846 R rec 8935e668-c413-4727-b2c9-7eaaef70c698 +2024-09-10 15:48:27.02034 2024-09-10 15:48:27.020345 plgnd 199187282 R rec 176e67dc-bde3-499f-9f84-264990ec58e7 +2024-09-10 15:48:27.079306 2024-09-10 15:48:27.079311 plgnd 199181993 R rec b3fbcf5d-0f37-4cb4-8d7b-958a57626445 +2024-09-10 15:48:27.141877 2024-09-10 15:48:27.141883 plgnd 199173672 R rec c3007517-e24f-443c-9c55-ccb193a32ebd +2024-09-10 15:48:27.213012 2024-09-10 15:48:27.213018 plgnd 19917332X R rec 3fce977c-94fd-452f-b449-b3b0d6a5f7cd +2024-09-10 15:48:27.276793 2024-09-10 15:48:27.276799 plgnd 199168512 R rec 9b72f612-920f-47f0-a16a-e7b9fa6f405d +2024-09-10 15:48:27.337523 2024-09-10 15:48:27.337528 plgnd 199164347 R rec c8b6be61-1cf9-45be-b755-9e2e87a063f7 +2024-09-10 15:48:27.399868 2024-09-10 15:48:27.399873 plgnd 19916035X R rec 06be1dc2-ae4b-4f44-8067-c90be32a9f3c +2024-09-10 15:48:27.461997 2024-09-10 15:48:27.462002 plgnd 199159998 R rec 67441311-0172-480d-b3fb-fb260d705f72 +2024-09-10 15:48:27.524586 2024-09-10 15:48:27.524591 plgnd 199159882 R rec 381da6b9-2b77-44ab-96f1-473be310dd3f +2024-09-10 15:48:27.585657 2024-09-10 15:48:27.585663 plgnd 199159777 R rec 6f2337f6-9635-469f-94a6-929df50db0a5 +2024-09-10 15:48:27.647138 2024-09-10 15:48:27.647144 plgnd 199157642 R rec 84cf1716-cf9b-4bf1-942c-213cda7b7666 +2024-09-10 15:48:27.721507 2024-09-10 15:48:27.721512 plgnd 199147760 R rec 3eb311a2-11ab-4b40-9eb3-58bac216cfa9 +2024-09-10 15:48:27.799526 2024-09-10 15:48:27.799531 plgnd 199138834 R rec c50aa45d-6246-4a68-89cb-346b0867ab95 +2024-09-10 15:48:27.858683 2024-09-10 15:48:27.858688 plgnd 199136637 R rec 4eea636c-5aef-4411-b510-dd671dbcba22 +2024-09-10 15:48:27.918326 2024-09-10 15:48:27.918334 plgnd 199118167 R rec 91c02843-7b0c-4834-96c2-e7e2870a440f +2024-09-10 15:48:27.984841 2024-09-10 15:48:27.984846 plgnd 199089973 R rec 67aa7656-9855-48c9-b15d-23431a131081 +2024-09-10 15:48:28.045078 2024-09-10 15:48:28.045083 plgnd 199077177 R rec cace2fc2-9c80-4dd5-8ed1-3ad260c47ec0 +2024-09-10 15:48:28.104547 2024-09-10 15:48:28.104552 plgnd 199023786 R rec 3827b009-462d-43f5-9459-d5a1c8980dad +2024-09-10 15:48:28.163958 2024-09-10 15:48:28.163964 plgnd 199023360 R rec cbcb313b-b05c-440e-a244-49449d680c18 +2024-09-10 15:48:28.225151 2024-09-10 15:48:28.225156 plgnd 199022534 R rec 1792ffe6-60ec-4698-a788-2e4a4ce17aee +2024-09-10 15:48:28.294787 2024-09-10 15:48:28.294793 plgnd 199013594 R rec 24063aed-6d1c-4746-8752-1e38cd0af2af +2024-09-10 15:48:28.359544 2024-09-10 15:48:28.35955 plgnd 199013276 R rec f06d1861-ba68-4e64-917f-8072c70986e3 +2024-09-10 15:48:28.418121 2024-09-10 15:48:28.418126 plgnd 199011249 R rec 617c0a90-badf-4797-a632-1a929dce6764 +2024-09-10 15:48:28.479582 2024-09-10 15:48:28.479587 plgnd 199003645 R rec b22d8643-cae1-4646-98e1-04dfa838ce39 +2024-09-10 15:48:28.5386 2024-09-10 15:48:28.538605 plgnd 199002894 R rec 1ef3334b-17dc-405f-8825-cdaca67e5a18 +2024-09-10 15:48:28.599929 2024-09-10 15:48:28.599934 plgnd 199001111 R rec b8f120df-2984-435d-9ba0-9456c58f59eb +2024-09-10 15:48:28.666008 2024-09-10 15:48:28.666012 plgnd 199000328 R rec fe292d05-9c8b-43df-b5bc-3f9d94494d83 +2024-09-10 15:48:28.728239 2024-09-10 15:48:28.728244 plgnd 199000239 R rec 12d679d7-6d5b-4f3a-98f2-50890e9e2109 +2024-09-10 15:48:28.789824 2024-09-10 15:48:28.78983 plgnd 050551604 R rec 4357d8d2-5acc-4df1-a6fd-d1bd992f176b +2024-09-10 15:48:28.869475 2024-09-10 15:48:28.869481 plgnd 050133039 R rec f6cf604f-5530-4b79-8bac-4a9139a3ab11 +2024-09-10 15:48:28.927817 2024-09-10 15:48:28.927825 plgnd 050039350 R rec ee09aeb4-0686-4090-bab9-f67dade01320 +2024-09-10 15:48:28.990002 2024-09-10 15:48:28.990007 plgnd 043244793 R rec 7f134f10-059a-4819-9a17-5ffcae6e5002 +2024-09-10 15:48:29.049492 2024-09-10 15:48:29.049498 plgnd 043225608 R rec 0ebcc7cc-9ac6-4bec-9cde-e92fad3eb1c1 +2024-09-10 15:48:29.111333 2024-09-10 15:48:29.111338 plgnd 043151019 R rec f9d0bdbd-4d47-4087-b3ad-c60b310e3573 +2024-09-10 15:48:29.171 2024-09-10 15:48:29.171008 plgnd 043138764 R rec ce90cc25-eabe-4585-b8ce-7e42fcd4abf5 +2024-09-10 15:48:29.241947 2024-09-10 15:48:29.241952 plgnd 042976200 R rec 95efa34e-df94-4efb-b506-0f21bff5d7ef +2024-09-10 15:48:29.304203 2024-09-10 15:48:29.304209 plgnd 042939550 R rec d62537f6-df3f-46f4-b546-9f502106ea4d +2024-09-10 15:48:29.373042 2024-09-10 15:48:29.373047 plgnd 042939526 R rec 57fe9b61-6b4a-41c6-bef6-f51f42499552 +2024-09-10 15:48:29.440933 2024-09-10 15:48:29.440939 plgnd 042788714 R rec 19e96e0a-b39d-4855-9604-5d3f0cfdd371 +2024-09-10 15:48:29.510362 2024-09-10 15:48:29.510368 plgnd 042778352 R rec 45aef156-8fd3-4d19-8768-cf2531714bc2 +2024-09-10 15:48:29.574549 2024-09-10 15:48:29.574553 plgnd 042627494 R rec 658c810d-620d-49a4-ba71-f57d5563c93c +2024-09-10 15:48:29.637384 2024-09-10 15:48:29.63739 plgnd 042602564 R rec a98d87c7-3812-45b7-b67c-bf1755ff6e72 +2024-09-10 15:48:29.69993 2024-09-10 15:48:29.699936 plgnd 042567874 R rec e3cd700b-4131-43ee-9f9e-abd607024e55 +2024-09-10 15:48:29.759239 2024-09-10 15:48:29.759242 plgnd 042553628 R rec d64071cd-d746-4ea6-995d-a6eba25c1c3f +2024-09-10 15:48:29.822985 2024-09-10 15:48:29.82299 plgnd 042492777 R rec 04d93e79-99be-48cd-892d-b7e48f6ddc40 +2024-09-10 15:48:29.893996 2024-09-10 15:48:29.894002 plgnd 042490448 R rec 2e651bd0-ccd4-48d5-a798-dea48fc9d806 +2024-09-10 15:48:29.96656 2024-09-10 15:48:29.966565 plgnd 042477247 R rec 6b6f0d3a-3528-4b60-9637-1510451fc0d7 +2024-09-10 15:48:30.029272 2024-09-10 15:48:30.029278 plgnd 042400228 R rec 3913989f-3116-468d-8c52-932c16f44e53 +2024-09-10 15:48:30.105423 2024-09-10 15:48:30.105428 plgnd 042387175 R rec 9930e97c-8020-41b2-b0c6-c9143aa62885 +2024-09-10 15:48:30.166884 2024-09-10 15:48:30.166889 plgnd 042299004 R rec f379c0f7-7231-4b35-ba0d-ae96e764ee01 +2024-09-10 15:48:30.22926 2024-09-10 15:48:30.229265 plgnd 042260213 R rec 4d55be69-1978-46fb-9633-52ad208540aa +2024-09-10 15:48:30.291034 2024-09-10 15:48:30.291039 plgnd 042244943 R rec 46adeb11-7f68-49a4-923d-68f7cc89c56a +2024-09-10 15:48:30.352419 2024-09-10 15:48:30.352427 plgnd 042236037 R rec 6401615d-fcc4-41f3-ad14-5c1c53454af9 +2024-09-10 15:48:30.415206 2024-09-10 15:48:30.415212 plgnd 042209927 R rec 0666119a-8893-4b24-b5b8-0025e7476627 +2024-09-10 15:48:30.479033 2024-09-10 15:48:30.479039 plgnd 042005450 R rec dd2e79fc-a01f-4313-9b4d-6ec7ea64c432 +2024-09-10 15:48:30.542548 2024-09-10 15:48:30.542553 plgnd 041401174 R rec ca3d1218-607d-42ec-9f01-f3f8934ff199 +2024-09-10 15:48:30.61498 2024-09-10 15:48:30.614986 plgnd 041370538 R rec 9edfc49d-7b28-44bf-acbe-0f26f54da486 +2024-09-10 15:48:30.676414 2024-09-10 15:48:30.676419 plgnd 041194152 R rec 8ca6d9b0-64c1-4dd3-beff-5959d36a28b5 +2024-09-10 15:48:30.750306 2024-09-10 15:48:30.750312 plgnd 041192443 R rec 7d9e6595-90a0-4a33-b3c4-bea7ec00f0e0 +2024-09-10 15:48:30.812667 2024-09-10 15:48:30.812673 plgnd 041167163 R rec c284047d-7471-491f-a178-7214a33083e8 +2024-09-10 15:48:30.88747 2024-09-10 15:48:30.887476 plgnd 041154282 R rec 05858d5f-d2ef-4706-9da5-3113d32503f4 +2024-09-10 15:48:30.949856 2024-09-10 15:48:30.949862 plgnd 041112504 R rec 5c9c0db6-dae8-481f-82d9-b5055be4ffcd +2024-09-10 15:48:31.022585 2024-09-10 15:48:31.022589 plgnd 041087828 R rec 1d3a71f3-f992-4837-b2ca-b361a86522cc +2024-09-10 15:48:31.083012 2024-09-10 15:48:31.083018 plgnd 041084675 R rec 68cc5ce4-0ea6-4828-b5bc-0e9d8e17d9cb +2024-09-10 15:48:31.14778 2024-09-10 15:48:31.147786 plgnd 041063368 R rec 31d85df4-83ab-4e01-895c-3e6e0e930d71 +2024-09-10 15:48:31.206293 2024-09-10 15:48:31.206298 plgnd 04106125X R rec 0507b182-0478-43b0-a2d5-34a91e8cb4f6 +2024-09-10 15:48:31.274684 2024-09-10 15:48:31.27469 plgnd 041058445 R rec f4afff28-4701-4f04-83ff-a5710e395761 +2024-09-10 15:48:31.343553 2024-09-10 15:48:31.343559 plgnd 041011848 R rec cae4d423-4a32-4fe5-92d6-643bf8b893fc +2024-09-10 15:48:31.407468 2024-09-10 15:48:31.407473 plgnd 040994716 R rec 58948836-0530-4d08-a301-1dc01e93c92d +2024-09-10 15:48:31.466976 2024-09-10 15:48:31.466982 plgnd 040967689 R rec 4f343947-d22c-4aa5-9ff3-3907d06cfbf1 +2024-09-10 15:48:31.540905 2024-09-10 15:48:31.540912 plgnd 040957977 R rec 2b77d60a-7577-47d8-bd95-bea132fc6d1f +2024-09-10 15:48:31.615534 2024-09-10 15:48:31.61554 plgnd 040956075 R rec 12c494d4-8ca6-4409-ac00-21c0c34cc650 +2024-09-10 15:48:31.682802 2024-09-10 15:48:31.682808 plgnd 040952789 R rec f0b31405-3cfd-418c-acbe-77d2952cff4c +2024-09-10 15:48:31.766136 2024-09-10 15:48:31.766142 plgnd 040912833 R rec 90e3b06f-edb1-430a-8652-021fe5819609 +2024-09-10 15:48:31.827001 2024-09-10 15:48:31.827006 plgnd 040873862 R rec 5114c9dc-85b3-4c6b-a39d-d2c4c7f3c3db +2024-09-10 15:48:31.888535 2024-09-10 15:48:31.88854 plgnd 040865622 R rec 3bf8da02-4960-4997-a238-32cd9d5f99cf +2024-09-10 15:48:31.950486 2024-09-10 15:48:31.950491 plgnd 040805905 R rec 7450aafc-7eff-406e-93bb-3a01ab57bb2b +2024-09-10 15:48:32.014109 2024-09-10 15:48:32.014114 plgnd 040802558 R rec 4a0a488c-9ab5-4801-8485-4dfa68beb71a +2024-09-10 15:48:32.087254 2024-09-10 15:48:32.087259 plgnd 040794903 R rec 54ce2837-2f94-4211-8237-55b3486d882f +2024-09-10 15:48:32.157443 2024-09-10 15:48:32.157448 plgnd 040768996 R rec ce43ac9a-6702-40c2-96fb-55771d36915e +2024-09-10 15:48:32.220243 2024-09-10 15:48:32.220248 plgnd 040754766 R rec 509c8944-b8dd-4df2-9953-598e9b623f91 +2024-09-10 15:48:32.289387 2024-09-10 15:48:32.289393 plgnd 040738582 R rec 83edce99-b6fe-4e83-9cef-5c412922dcf5 +2024-09-10 15:48:32.378403 2024-09-10 15:48:32.378409 plgnd 040693309 R rec 45dabc22-bffa-4470-bf03-a409aebdd090 +2024-09-10 15:48:32.44678 2024-09-10 15:48:32.446785 plgnd 040680223 R rec e58e196f-3a15-43a4-807b-e17e3728fcb8 +2024-09-10 15:48:32.512335 2024-09-10 15:48:32.512341 plgnd 040657752 R rec b7c08b09-8913-4cc3-86cd-1ba6ea647655 +2024-09-10 15:48:32.597358 2024-09-10 15:48:32.597364 plgnd 04062501X R rec f74340f9-b7ec-4c27-944b-6405df728b3e +2024-09-10 15:48:32.658317 2024-09-10 15:48:32.658322 plgnd 040604853 R rec 5bd2ca2b-d269-47ca-9cf0-193c04185ff3 +2024-09-10 15:48:32.719405 2024-09-10 15:48:32.719411 plgnd 04060151X R rec 47265204-4d4a-4396-8a4c-852038b1d014 +2024-09-10 15:48:32.78217 2024-09-10 15:48:32.782175 plgnd 040594084 R rec 74fbbb3a-e20c-4bf9-8781-35491d0c787c +2024-09-10 15:48:32.884286 2024-09-10 15:48:32.884291 plgnd 04057749X R rec 938807b2-e741-42e4-95f3-dea1315d7769 +2024-09-10 15:48:32.96854 2024-09-10 15:48:32.968544 plgnd 040516687 R rec a4e5d4ba-e165-482e-9da5-2c6af81d5bad +2024-09-10 15:48:33.041722 2024-09-10 15:48:33.041726 plgnd 040425134 R rec 22012a9c-6ca5-4a1d-9277-248117853343 +2024-09-10 15:48:33.113745 2024-09-10 15:48:33.113751 plgnd 04041146X R rec ffead796-3031-476a-a2b1-14f6e695e40d +2024-09-10 15:48:33.174836 2024-09-10 15:48:33.174841 plgnd 040376044 R rec 19470d8c-2751-4aac-922b-61493a285da9 +2024-09-10 15:48:33.2322 2024-09-10 15:48:33.232206 plgnd 04037372X R rec 28ee316c-6ab2-41b3-906f-f99b4e42448b +2024-09-10 15:48:33.293714 2024-09-10 15:48:33.293719 plgnd 040368114 R rec a5b5d693-7cc8-4fc9-974d-cca272bc5105 +2024-09-10 15:48:33.352398 2024-09-10 15:48:33.352403 plgnd 040357422 R rec 4571e7f5-018f-45f0-bb60-e4ba901ef744 +2024-09-10 15:48:33.418361 2024-09-10 15:48:33.418368 plgnd 040346919 R rec 45643d3c-4f10-415c-8b26-105e6fc98291 +2024-09-10 15:48:33.484828 2024-09-10 15:48:33.484833 plgnd 040304817 R rec 1d26fbb1-995b-4688-8e19-abac8e356770 +2024-09-10 15:48:33.548593 2024-09-10 15:48:33.548602 plgnd 040296377 R rec 5bce1553-73b3-4d6f-a0ca-d77545e639ff +2024-09-10 15:48:33.621368 2024-09-10 15:48:33.621373 plgnd 040288099 R rec e22cdba6-eac4-44cc-8674-85669e3b0cd8 +2024-09-10 15:48:33.680677 2024-09-10 15:48:33.680683 plgnd 04024010X R rec fd95bcce-b9f0-4260-96a9-254b4f5ebc03 +2024-09-10 15:48:33.738652 2024-09-10 15:48:33.738657 plgnd 040183408 R rec a220d29e-07bb-4003-88a7-54fcb1db811b +2024-09-10 15:48:33.798314 2024-09-10 15:48:33.798319 plgnd 040093417 R rec c3c448b0-f898-43e3-8a65-4d019042cb73 +2024-09-10 15:48:33.858618 2024-09-10 15:48:33.858624 plgnd 04009300X R rec 2a86314f-d019-4cba-b599-ab0c373fb2ab +2024-09-10 15:48:33.925202 2024-09-10 15:48:33.925208 plgnd 040055744 R rec 6237de7b-2dc4-4386-a748-3ca19051a3ee +2024-09-10 15:48:34.001372 2024-09-10 15:48:34.001378 plgnd 040024024 R rec 1f83c5e1-efdb-411d-bd7f-215f280701a6 +2024-09-10 15:48:34.068324 2024-09-10 15:48:34.068329 plgnd 030141605 R rec 298c51e2-4222-49a5-bf7b-e0e1677b13fa +2024-09-10 15:48:34.133666 2024-09-10 15:48:34.133671 plgnd 030125898 R rec d67ef51b-c4b7-418f-87ca-1d64ca618c7d +2024-09-10 15:48:34.195176 2024-09-10 15:48:34.195181 plgnd 030089050 R rec a84e7b1e-cf94-48a9-aa83-8d0940cd38cf +2024-09-10 15:48:34.256861 2024-09-10 15:48:34.256869 plgnd 007749023 R rec 8bdd5fd0-45fc-4c23-8b13-59e5f9fc07cb +2024-09-10 15:48:34.319024 2024-09-10 15:48:34.31903 plgnd 004280768 R rec 41f12ee9-04e7-42b7-82fa-695a378ea5ad +2024-09-10 15:48:34.379659 2024-09-10 15:48:34.379664 plgnd 004205731 R rec e20ca8a5-f5a4-48f0-8911-a33fe6e46b89 +2024-09-10 15:48:34.443458 2024-09-10 15:48:34.443464 plgnd 002631628 R rec db4351e3-a443-464b-95a1-0591e9ea7744 +2024-09-10 15:48:34.506601 2024-09-10 15:48:34.506606 plgnd 001101536 R rec 8adffbfa-11c6-4cb6-8308-254c440e0b0d +2024-09-10 15:48:34.568535 2024-09-10 15:48:34.568543 plgnd 000347078 R rec c31d1429-b743-4c53-b778-d52ec8aaf675 diff --git a/data/plmef.json b/data/plmef.json index 42028867..f448b168 100644 --- a/data/plmef.json +++ b/data/plmef.json @@ -1,7483 +1,6904 @@ [ { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040006956" - }, - "pid": "7816", + "pid": "10000", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027218546" + "$ref": "https://mef.rero.ch/api/places/idref/02725349X" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040794857" - }, - "pid": "7817", + "pid": "10001", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027218562" + "$ref": "https://mef.rero.ch/api/places/idref/027254755" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040424820" - }, - "pid": "7818", + "pid": "10002", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027218597" + "$ref": "https://mef.rero.ch/api/places/idref/027255123" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040780120" - }, - "pid": "7819", + "pid": "10003", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027218619" + "$ref": "https://mef.rero.ch/api/places/idref/027256308" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040011798" - }, - "pid": "7820", + "pid": "10004", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027218767" + "$ref": "https://mef.rero.ch/api/places/idref/027259234" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/00468687X" - }, - "pid": "7821", + "pid": "10005", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027218856" + "$ref": "https://mef.rero.ch/api/places/idref/027259285" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040424839" - }, - "pid": "7822", + "pid": "10006", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027218961" + "$ref": "https://mef.rero.ch/api/places/idref/027259641" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040740323" - }, - "pid": "7823", + "pid": "10007", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/02721897X" + "$ref": "https://mef.rero.ch/api/places/idref/027259978" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040039005" - }, - "pid": "7824", + "pid": "10008", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027220443" + "$ref": "https://mef.rero.ch/api/places/idref/027262162" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040099296" - }, - "pid": "7825", + "pid": "10009", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027222950" + "$ref": "https://mef.rero.ch/api/places/idref/027262952" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040118908" - }, - "pid": "7826", + "pid": "10010", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027223736" + "$ref": "https://mef.rero.ch/api/places/idref/027263061" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040932052" - }, - "pid": "7827", + "pid": "10011", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027223779" + "$ref": "https://mef.rero.ch/api/places/idref/027263487" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040559645" - }, - "pid": "7828", + "pid": "10012", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027224406" + "$ref": "https://mef.rero.ch/api/places/idref/027263495" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040157016" - }, - "pid": "7829", + "pid": "10013", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027224651" + "$ref": "https://mef.rero.ch/api/places/idref/02726369X" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040757390" - }, - "pid": "7830", + "pid": "10014", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027224678" + "$ref": "https://mef.rero.ch/api/places/idref/027263711" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040792153" - }, - "pid": "7831", + "pid": "10015", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027224694" + "$ref": "https://mef.rero.ch/api/places/idref/027263762" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/000339784" - }, - "pid": "7832", + "pid": "10016", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027225488" + "$ref": "https://mef.rero.ch/api/places/idref/02726453X" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040175812" - }, - "pid": "7833", + "pid": "10017", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027226042" + "$ref": "https://mef.rero.ch/api/places/idref/027264580" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040181456" - }, - "pid": "7834", + "pid": "10018", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027226794" + "$ref": "https://mef.rero.ch/api/places/idref/027266060" } }, { - "pid": "7835", + "pid": "10019", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027227812" + "$ref": "https://mef.rero.ch/api/places/idref/027266257" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040220478" - }, - "pid": "7836", + "pid": "10020", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027228428" + "$ref": "https://mef.rero.ch/api/places/idref/027267830" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040218813" - }, - "pid": "7837", + "pid": "10021", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027228517" + "$ref": "https://mef.rero.ch/api/places/idref/027267873" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040687899" - }, - "pid": "7838", + "pid": "10022", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027228959" + "$ref": "https://mef.rero.ch/api/places/idref/027275922" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040432718" - }, - "pid": "7839", + "pid": "10023", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027229246" + "$ref": "https://mef.rero.ch/api/places/idref/027283518" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/04008003X" - }, - "pid": "7840", + "pid": "10024", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/02722953X" + "$ref": "https://mef.rero.ch/api/places/idref/027286703" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040144267" - }, - "pid": "7841", + "pid": "10025", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027230309" + "$ref": "https://mef.rero.ch/api/places/idref/027290530" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040318125" - }, - "pid": "7842", + "pid": "10026", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027230430" + "$ref": "https://mef.rero.ch/api/places/idref/027296946" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040785416" - }, - "pid": "7843", + "pid": "10027", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027234002" + "$ref": "https://mef.rero.ch/api/places/idref/027303063" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040731723" - }, - "pid": "7844", + "pid": "10028", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027234592" + "$ref": "https://mef.rero.ch/api/places/idref/027311430" } }, { - "pid": "7845", + "pid": "10029", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027236536" + "$ref": "https://mef.rero.ch/api/places/idref/027316211" } }, { - "pid": "7846", + "pid": "10030", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027236668" + "$ref": "https://mef.rero.ch/api/places/idref/027316696" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040743357" - }, - "pid": "7847", + "pid": "10031", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027237249" + "$ref": "https://mef.rero.ch/api/places/idref/027318494" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040749002" - }, - "pid": "7848", + "pid": "10032", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027237664" + "$ref": "https://mef.rero.ch/api/places/idref/027321940" } }, { - "pid": "7849", + "pid": "10033", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027238180" - }, - "deleted": "2024-07-16T19:52:36.233702+00:00" + "$ref": "https://mef.rero.ch/api/places/idref/027322998" + } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040387887" - }, - "pid": "7850", + "pid": "10034", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027239365" + "$ref": "https://mef.rero.ch/api/places/idref/027323072" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040390586" - }, - "pid": "7851", + "pid": "10035", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027239497" + "$ref": "https://mef.rero.ch/api/places/idref/027331180" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040022080" - }, - "pid": "7852", + "pid": "10036", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027241912" + "$ref": "https://mef.rero.ch/api/places/idref/027333752" } }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040496392" + "$ref": "https://mef.rero.ch/api/places/gnd/040768996" }, - "pid": "7853", + "pid": "10037", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027242005" + "$ref": "https://mef.rero.ch/api/places/idref/027342395" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040504719" - }, - "pid": "7854", + "pid": "10038", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/02724301X" + "$ref": "https://mef.rero.ch/api/places/idref/027350789" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040464962" - }, - "pid": "7855", + "pid": "10039", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027243222" + "$ref": "https://mef.rero.ch/api/places/idref/027356302" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040443817" - }, - "pid": "7856", + "pid": "10040", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027244482" + "$ref": "https://mef.rero.ch/api/places/idref/027356949" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040446603" - }, - "pid": "7857", + "pid": "10041", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027244520" + "$ref": "https://mef.rero.ch/api/places/idref/02735895X" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040703703" - }, - "pid": "7858", + "pid": "10042", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/02724606X" + "$ref": "https://mef.rero.ch/api/places/idref/027360199" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040538818" - }, - "pid": "7859", + "pid": "10043", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027249654" + "$ref": "https://mef.rero.ch/api/places/idref/027367428" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040054063" - }, - "pid": "7860", + "pid": "10044", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/02725030X" + "$ref": "https://mef.rero.ch/api/places/idref/027369714" } }, { - "pid": "7861", + "pid": "10045", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027250504" + "$ref": "https://mef.rero.ch/api/places/idref/027375080" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040293076" - }, - "pid": "7862", + "pid": "10046", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027250636" + "$ref": "https://mef.rero.ch/api/places/idref/027375412" } }, { - "pid": "7863", + "pid": "10047", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027250644" + "$ref": "https://mef.rero.ch/api/places/idref/027377067" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040294560" - }, - "pid": "7864", + "pid": "10048", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027250679" + "$ref": "https://mef.rero.ch/api/places/idref/027377768" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040780295" - }, - "pid": "7865", + "pid": "10049", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027250911" + "$ref": "https://mef.rero.ch/api/places/idref/027401421" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/04032527X" - }, - "pid": "7866", + "pid": "10050", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027250938" + "$ref": "https://mef.rero.ch/api/places/idref/027401448" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/04033340X" - }, - "pid": "7867", + "pid": "10051", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/02725108X" + "$ref": "https://mef.rero.ch/api/places/idref/027401901" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/04062501X" - }, - "pid": "7868", + "pid": "10052", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027251411" + "$ref": "https://mef.rero.ch/api/places/idref/027405621" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040551938" - }, - "pid": "7869", + "pid": "10053", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027251551" + "$ref": "https://mef.rero.ch/api/places/idref/027407012" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/04078228X" - }, - "pid": "7870", + "pid": "10054", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027251659" + "$ref": "https://mef.rero.ch/api/places/idref/027407918" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040749878" - }, - "pid": "7871", + "pid": "10055", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027252124" + "$ref": "https://mef.rero.ch/api/places/idref/027408647" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/04075720X" - }, - "pid": "7872", + "pid": "10056", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027252272" + "$ref": "https://mef.rero.ch/api/places/idref/027416925" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040422038" - }, - "pid": "7873", + "pid": "10057", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027252361" + "$ref": "https://mef.rero.ch/api/places/idref/027417298" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/04045312X" - }, - "pid": "7874", + "pid": "10058", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027252388" + "$ref": "https://mef.rero.ch/api/places/idref/027429261" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/04051658X" - }, - "pid": "7875", + "pid": "10059", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027252620" + "$ref": "https://mef.rero.ch/api/places/idref/027434141" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040612066" - }, - "pid": "7876", + "pid": "10060", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/02725349X" + "$ref": "https://mef.rero.ch/api/places/idref/027437213" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040611639" - }, - "pid": "7877", + "pid": "10061", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027254755" + "$ref": "https://mef.rero.ch/api/places/idref/027437221" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040624048" - }, - "pid": "7878", + "pid": "10062", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027255123" + "$ref": "https://mef.rero.ch/api/places/idref/027442128" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040289664" - }, - "pid": "7879", + "pid": "10063", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027256308" + "$ref": "https://mef.rero.ch/api/places/idref/027443876" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040118894" - }, - "pid": "7880", + "pid": "10064", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027259234" + "$ref": "https://mef.rero.ch/api/places/idref/027465012" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040013286" - }, - "pid": "7881", + "pid": "10065", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027259285" + "$ref": "https://mef.rero.ch/api/places/idref/027468909" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040000222" - }, - "pid": "7882", + "pid": "10066", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027259641" + "$ref": "https://mef.rero.ch/api/places/idref/027472906" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/041294688" - }, - "pid": "7883", + "pid": "10067", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027259978" + "$ref": "https://mef.rero.ch/api/places/idref/027483304" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040284956" - }, - "pid": "7884", + "pid": "10068", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027262162" + "$ref": "https://mef.rero.ch/api/places/idref/027501302" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040509397" - }, - "pid": "7885", + "pid": "10069", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027262952" + "$ref": "https://mef.rero.ch/api/places/idref/027501418" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/004911474" - }, - "pid": "7886", + "pid": "10070", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027263061" + "$ref": "https://mef.rero.ch/api/places/idref/027502333" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040016269" - }, - "pid": "7887", + "pid": "10071", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027263487" + "$ref": "https://mef.rero.ch/api/places/idref/027502368" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040019098" - }, - "pid": "7888", + "pid": "10072", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027263495" + "$ref": "https://mef.rero.ch/api/places/idref/027524329" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040276678" - }, - "pid": "7889", + "pid": "10073", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/02726369X" + "$ref": "https://mef.rero.ch/api/places/idref/027526836" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/04037680X" - }, - "pid": "7890", + "pid": "10074", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027263711" + "$ref": "https://mef.rero.ch/api/places/idref/02754785X" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040754715" - }, - "pid": "7891", + "pid": "10075", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027263762" + "$ref": "https://mef.rero.ch/api/places/idref/027584763" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040201376" - }, - "pid": "7892", + "pid": "10076", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/02726453X" + "$ref": "https://mef.rero.ch/api/places/idref/027585190" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040471942" - }, - "pid": "7893", + "pid": "10077", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027264580" + "$ref": "https://mef.rero.ch/api/places/idref/027597334" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/041179145" - }, - "pid": "7894", + "pid": "10078", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027266060" + "$ref": "https://mef.rero.ch/api/places/idref/027614697" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040475646" - }, - "pid": "7895", + "pid": "10079", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027266257" + "$ref": "https://mef.rero.ch/api/places/idref/027622444" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/04022113X" - }, - "pid": "7896", + "pid": "10080", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027267830" + "$ref": "https://mef.rero.ch/api/places/idref/027633179" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040181847" - }, - "pid": "7897", + "pid": "10081", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027267873" + "$ref": "https://mef.rero.ch/api/places/idref/02763857X" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1077172354" - }, - "pid": "7898", + "pid": "10082", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027275922" + "$ref": "https://mef.rero.ch/api/places/idref/027705781" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040794873" - }, - "pid": "7899", + "pid": "10083", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027283518" + "$ref": "https://mef.rero.ch/api/places/idref/02773417X" } }, { - "pid": "7900", + "pid": "10084", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027286703" + "$ref": "https://mef.rero.ch/api/places/idref/02775751X" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/04003366X" - }, - "pid": "7901", + "pid": "10085", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027290530" + "$ref": "https://mef.rero.ch/api/places/idref/027768678" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040932087" - }, - "pid": "7902", + "pid": "10086", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027296946" + "$ref": "https://mef.rero.ch/api/places/idref/027801101" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040644669" - }, - "pid": "7903", + "pid": "10087", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027303063" + "$ref": "https://mef.rero.ch/api/places/idref/027804151" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040400565" - }, - "pid": "7904", + "pid": "10088", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027311430" + "$ref": "https://mef.rero.ch/api/places/idref/027810674" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040859312" - }, - "pid": "7905", + "pid": "10089", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027316211" + "$ref": "https://mef.rero.ch/api/places/idref/027849414" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040754685" - }, - "pid": "7906", + "pid": "10090", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027316696" + "$ref": "https://mef.rero.ch/api/places/idref/02788743X" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040789829" - }, - "pid": "7907", + "pid": "10091", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027318494" + "$ref": "https://mef.rero.ch/api/places/idref/027945774" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/04079203X" - }, - "pid": "7908", + "pid": "10092", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027321940" + "$ref": "https://mef.rero.ch/api/places/idref/028146239" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040302369" - }, - "pid": "7909", + "pid": "10093", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027322998" + "$ref": "https://mef.rero.ch/api/places/idref/028179420" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040419150" - }, - "pid": "7910", + "pid": "10094", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027323072" + "$ref": "https://mef.rero.ch/api/places/idref/02847158X" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040480305" - }, - "pid": "7911", + "pid": "10095", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027331180" + "$ref": "https://mef.rero.ch/api/places/idref/028567005" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040547809" - }, - "pid": "7912", + "pid": "10096", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027333752" + "$ref": "https://mef.rero.ch/api/places/idref/028706536" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040768996" - }, - "pid": "7913", + "pid": "10097", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027342395" + "$ref": "https://mef.rero.ch/api/places/idref/028724208" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040552098" - }, - "pid": "7914", + "pid": "10098", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027350789" + "$ref": "https://mef.rero.ch/api/places/idref/028931491" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/04068878X" - }, - "pid": "7915", + "pid": "10099", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027356302" + "$ref": "https://mef.rero.ch/api/places/idref/028988310" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040587940" - }, - "pid": "7916", + "pid": "10100", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027356949" + "$ref": "https://mef.rero.ch/api/places/idref/028992318" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040147703" - }, - "pid": "7917", + "pid": "10101", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/02735895X" + "$ref": "https://mef.rero.ch/api/places/idref/02899275X" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040690997" - }, - "pid": "7918", + "pid": "10102", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027360199" + "$ref": "https://mef.rero.ch/api/places/idref/029036690" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040401499" - }, - "pid": "7919", + "pid": "10103", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027367428" + "$ref": "https://mef.rero.ch/api/places/idref/029201098" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040057623" - }, - "pid": "7920", + "pid": "10104", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027369714" + "$ref": "https://mef.rero.ch/api/places/idref/029805287" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040794865" - }, - "pid": "7921", + "pid": "10105", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027375080" + "$ref": "https://mef.rero.ch/api/places/idref/030519799" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040022935" - }, - "pid": "7922", + "pid": "10106", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027375412" + "$ref": "https://mef.rero.ch/api/places/idref/030575257" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040076075" - }, - "pid": "7923", + "pid": "10107", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027377067" + "$ref": "https://mef.rero.ch/api/places/idref/031211097" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040294137" - }, - "pid": "7924", + "pid": "10108", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027377768" + "$ref": "https://mef.rero.ch/api/places/idref/031649424" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040753034" - }, - "pid": "7925", + "pid": "10109", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027401421" + "$ref": "https://mef.rero.ch/api/places/idref/032861621" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/04041745X" - }, - "pid": "7926", + "pid": "10110", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027401448" + "$ref": "https://mef.rero.ch/api/places/idref/033640874" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040442578" - }, - "pid": "7927", + "pid": "10111", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027401901" + "$ref": "https://mef.rero.ch/api/places/idref/055302149" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040277542" - }, - "pid": "7928", + "pid": "10112", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027405621" + "$ref": "https://mef.rero.ch/api/places/idref/071586709" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040367339" - }, - "pid": "7929", + "pid": "10113", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027407012" + "$ref": "https://mef.rero.ch/api/places/idref/085560839" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040149544" - }, - "pid": "7930", + "pid": "10114", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027407918" + "$ref": "https://mef.rero.ch/api/places/idref/085703419" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040763102" - }, - "pid": "7931", + "pid": "10115", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027408647" + "$ref": "https://mef.rero.ch/api/places/idref/097857300" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040023869" - }, - "pid": "7932", + "pid": "10116", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027416925" + "$ref": "https://mef.rero.ch/api/places/idref/110868056" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040518507" - }, - "pid": "7933", + "pid": "10117", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027417298" + "$ref": "https://mef.rero.ch/api/places/idref/114526591" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040912000" - }, - "pid": "7934", + "pid": "10118", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027429261" + "$ref": "https://mef.rero.ch/api/places/idref/116317825" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040290433" - }, - "pid": "7935", + "pid": "10119", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027434141" + "$ref": "https://mef.rero.ch/api/places/idref/116459425" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040703525" - }, - "pid": "7936", + "pid": "10120", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027437213" + "$ref": "https://mef.rero.ch/api/places/idref/127372547" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/041940458" - }, - "pid": "7937", + "pid": "10121", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027437221" + "$ref": "https://mef.rero.ch/api/places/idref/144820072" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040769100" - }, - "pid": "7938", + "pid": "10122", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027442128" + "$ref": "https://mef.rero.ch/api/places/idref/14704233X" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040050440" - }, - "pid": "7939", + "pid": "10123", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027443876" + "$ref": "https://mef.rero.ch/api/places/idref/150220200" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/04051594X" - }, - "pid": "7940", + "pid": "10124", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027465012" + "$ref": "https://mef.rero.ch/api/places/idref/157143392" } }, { - "pid": "7941", + "pid": "10125", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027468909" + "$ref": "https://mef.rero.ch/api/places/idref/157143422" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040092569" - }, - "pid": "7942", + "pid": "10126", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027472906" + "$ref": "https://mef.rero.ch/api/places/idref/161911846" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040738418" - }, - "pid": "7943", + "pid": "10127", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027483304" + "$ref": "https://mef.rero.ch/api/places/idref/185110363" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040010287" - }, - "pid": "7944", + "pid": "10128", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027501302" + "$ref": "https://mef.rero.ch/api/places/idref/198231288" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040300900" - }, - "pid": "7945", + "pid": "10129", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027501418" + "$ref": "https://mef.rero.ch/api/places/idref/237279614" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040757277" - }, - "pid": "7946", + "pid": "10130", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027502333" + "$ref": "https://mef.rero.ch/api/places/idref/25887421X" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040584488" - }, - "pid": "7947", + "pid": "10131", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027502368" + "$ref": "https://mef.rero.ch/api/places/idref/260966401" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040713326" - }, - "pid": "7948", + "pid": "10132", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027524329" + "$ref": "https://mef.rero.ch/api/places/idref/261121162" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040714446" - }, - "pid": "7949", + "pid": "10133", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027526836" + "$ref": "https://mef.rero.ch/api/places/idref/26144722X" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/041196058" - }, - "pid": "7950", + "pid": "10134", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/02754785X" + "$ref": "https://mef.rero.ch/api/places/idref/263259935" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040181413" - }, - "pid": "7951", + "pid": "10135", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027584763" + "$ref": "https://mef.rero.ch/api/places/idref/263837920" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040467554" - }, - "pid": "7952", + "pid": "10136", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027585190" + "$ref": "https://mef.rero.ch/api/places/idref/264287010" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/041355350" - }, - "pid": "7953", + "pid": "10137", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027597334" + "$ref": "https://mef.rero.ch/api/places/idref/264406095" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040287505" - }, - "pid": "7954", + "pid": "10138", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027614697" + "$ref": "https://mef.rero.ch/api/places/idref/264644093" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040772586" - }, - "pid": "7955", + "pid": "10139", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027622444" + "$ref": "https://mef.rero.ch/api/places/idref/264645081" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040099377" - }, - "pid": "7956", + "pid": "10140", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027633179" + "$ref": "https://mef.rero.ch/api/places/idref/271321628" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/04040417X" - }, - "pid": "7957", + "pid": "10141", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/02763857X" + "$ref": "https://mef.rero.ch/api/places/idref/271323337" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/041037766" - }, - "pid": "7958", + "pid": "10142", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027705781" + "$ref": "https://mef.rero.ch/api/places/idref/271323353" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040201449" - }, - "pid": "7959", + "pid": "10143", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/02773417X" + "$ref": "https://mef.rero.ch/api/places/idref/271323426" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040278395" - }, - "pid": "7960", + "pid": "10144", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/02775751X" + "$ref": "https://mef.rero.ch/api/places/idref/271323485" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040714039" - }, - "pid": "7961", + "pid": "10145", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027768678" + "$ref": "https://mef.rero.ch/api/places/idref/271323515" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040032175" - }, - "pid": "7962", + "pid": "10146", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027801101" + "$ref": "https://mef.rero.ch/api/places/idref/271323523" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040396770" - }, - "pid": "7963", + "pid": "10147", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027804151" + "$ref": "https://mef.rero.ch/api/places/idref/271323566" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040367282" - }, - "pid": "7964", + "pid": "10148", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027810674" + "$ref": "https://mef.rero.ch/api/places/idref/271323590" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040057658" - }, - "pid": "7965", + "pid": "10149", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027849414" + "$ref": "https://mef.rero.ch/api/places/idref/271323663" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/04014500X" - }, - "pid": "7966", + "pid": "10150", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/02788743X" + "$ref": "https://mef.rero.ch/api/places/idref/27132368X" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040554589" - }, - "pid": "7967", + "pid": "10151", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027945774" + "$ref": "https://mef.rero.ch/api/places/idref/271323698" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040065146" - }, - "pid": "7968", + "pid": "10152", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/028146239" + "$ref": "https://mef.rero.ch/api/places/idref/271323728" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/04068041X" - }, - "pid": "7969", + "pid": "10153", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/028179420" + "$ref": "https://mef.rero.ch/api/places/idref/271323752" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040792048" - }, - "pid": "7970", + "pid": "10154", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/02847158X" + "$ref": "https://mef.rero.ch/api/places/idref/271323957" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040802752" - }, - "pid": "7971", + "pid": "10155", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/028567005" + "$ref": "https://mef.rero.ch/api/places/idref/271323973" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040046206" - }, - "pid": "7972", + "pid": "10156", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/028706536" + "$ref": "https://mef.rero.ch/api/places/idref/271324015" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/041186672" - }, - "pid": "7973", + "pid": "10157", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/028724208" + "$ref": "https://mef.rero.ch/api/places/idref/271324031" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/949642762" - }, - "pid": "7974", + "pid": "10158", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/028931491" + "$ref": "https://mef.rero.ch/api/places/idref/271324058" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040540197" - }, - "pid": "7975", + "pid": "10159", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/028988310" + "$ref": "https://mef.rero.ch/api/places/idref/271324074" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040680649" - }, - "pid": "7976", + "pid": "10160", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/028992318" + "$ref": "https://mef.rero.ch/api/places/idref/271324562" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040519937" - }, - "pid": "7977", + "pid": "10161", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/02899275X" + "$ref": "https://mef.rero.ch/api/places/idref/271326441" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040772756" - }, - "pid": "7978", + "pid": "10162", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/029036690" + "$ref": "https://mef.rero.ch/api/places/idref/271326476" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040940888" - }, - "pid": "7979", + "pid": "10163", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/029201098" + "$ref": "https://mef.rero.ch/api/places/idref/271326484" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040774678" - }, - "pid": "7980", + "pid": "10164", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/029805287" + "$ref": "https://mef.rero.ch/api/places/idref/271326506" } }, { - "pid": "7981", + "pid": "10165", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/030519799" + "$ref": "https://mef.rero.ch/api/places/idref/271326514" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040201384" - }, - "pid": "7982", + "pid": "10166", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/030575257" + "$ref": "https://mef.rero.ch/api/places/idref/271326522" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040658236" - }, - "pid": "7983", + "pid": "10167", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/031211097" + "$ref": "https://mef.rero.ch/api/places/idref/271326530" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040000079" - }, - "pid": "7984", + "pid": "10168", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/031649424" + "$ref": "https://mef.rero.ch/api/places/idref/271326557" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040756130" - }, - "pid": "7985", + "pid": "10169", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/032861621" + "$ref": "https://mef.rero.ch/api/places/idref/271326603" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040417476" - }, - "pid": "7986", + "pid": "10170", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/033640874" + "$ref": "https://mef.rero.ch/api/places/idref/271326670" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040379922" - }, - "pid": "7987", + "pid": "10171", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/055302149" + "$ref": "https://mef.rero.ch/api/places/idref/271326700" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/04037100X" - }, - "pid": "7988", + "pid": "10172", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/071586709" + "$ref": "https://mef.rero.ch/api/places/idref/271326727" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040804003" - }, - "pid": "7989", + "pid": "10173", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/085560839" + "$ref": "https://mef.rero.ch/api/places/idref/271326751" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040201392" - }, - "pid": "7990", + "pid": "10174", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/085703419" + "$ref": "https://mef.rero.ch/api/places/idref/27132676X" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040792374" - }, - "pid": "7991", + "pid": "10175", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/097857300" + "$ref": "https://mef.rero.ch/api/places/idref/271326778" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/041048989" - }, - "pid": "7992", + "pid": "10176", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/110868056" + "$ref": "https://mef.rero.ch/api/places/idref/271326786" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040786528" - }, - "pid": "7993", + "pid": "10177", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/114526591" + "$ref": "https://mef.rero.ch/api/places/idref/271326794" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040721000" - }, - "pid": "7994", + "pid": "10178", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/116317825" + "$ref": "https://mef.rero.ch/api/places/idref/271326808" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/947297987" - }, - "pid": "7995", + "pid": "10179", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/116459425" + "$ref": "https://mef.rero.ch/api/places/idref/271326824" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/96475455X" - }, - "pid": "7996", + "pid": "10180", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/127372547" + "$ref": "https://mef.rero.ch/api/places/idref/271326832" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/041152077" - }, - "pid": "7997", + "pid": "10181", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/144820072" + "$ref": "https://mef.rero.ch/api/places/idref/271326840" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/041075102" - }, - "pid": "7998", + "pid": "10182", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/14704233X" + "$ref": "https://mef.rero.ch/api/places/idref/271327383" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040717003" - }, - "pid": "7999", + "pid": "10183", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/150220200" + "$ref": "https://mef.rero.ch/api/places/idref/271328762" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/041051513" - }, - "pid": "8000", + "pid": "10184", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/157143392" + "$ref": "https://mef.rero.ch/api/places/idref/271329017" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/041192389" - }, - "pid": "8001", + "pid": "10185", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/157143422" + "$ref": "https://mef.rero.ch/api/places/idref/271329335" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/968963935" - }, - "pid": "8002", + "pid": "10186", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/161911846" + "$ref": "https://mef.rero.ch/api/places/idref/271329696" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/042750067" - }, - "pid": "8003", + "pid": "10187", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/185110363" + "$ref": "https://mef.rero.ch/api/places/idref/271329734" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040995623" - }, - "pid": "8004", + "pid": "10188", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/198231288" + "$ref": "https://mef.rero.ch/api/places/idref/271329831" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/946153248" - }, - "pid": "8005", + "pid": "10189", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/237279614" + "$ref": "https://mef.rero.ch/api/places/idref/271329912" } }, { - "pid": "8006", + "pid": "10190", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/25887421X" + "$ref": "https://mef.rero.ch/api/places/idref/271329998" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/964991500" - }, - "pid": "8007", + "pid": "10191", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/260966401" + "$ref": "https://mef.rero.ch/api/places/idref/271330031" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/954696867" - }, - "pid": "8008", + "pid": "10192", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/261121162" + "$ref": "https://mef.rero.ch/api/places/idref/271330163" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/941147797" - }, - "pid": "8009", + "pid": "10193", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/26144722X" + "$ref": "https://mef.rero.ch/api/places/idref/271331658" } }, { - "pid": "8010", + "pid": "10194", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/263259935" + "$ref": "https://mef.rero.ch/api/places/idref/271331712" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/041170008" - }, - "pid": "8011", + "pid": "10195", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/263837920" + "$ref": "https://mef.rero.ch/api/places/idref/27133181X" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040774244" - }, - "pid": "8012", + "pid": "10196", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/264287010" + "$ref": "https://mef.rero.ch/api/places/idref/271332352" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/955884152" - }, - "pid": "8013", + "pid": "10197", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/264406095" + "$ref": "https://mef.rero.ch/api/places/idref/271332778" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/952816407" - }, - "pid": "8014", + "pid": "10198", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/264644093" + "$ref": "https://mef.rero.ch/api/places/idref/271332824" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/993248810" - }, - "pid": "8015", + "pid": "10199", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/264645081" + "$ref": "https://mef.rero.ch/api/places/idref/271333081" } }, { - "pid": "8016", + "pid": "10200", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271321628" + "$ref": "https://mef.rero.ch/api/places/idref/271333197" } }, { - "pid": "8017", + "pid": "10201", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271323337" + "$ref": "https://mef.rero.ch/api/places/idref/271333243" } }, { - "pid": "8018", + "pid": "10202", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271323353" + "$ref": "https://mef.rero.ch/api/places/idref/271337214" } }, { - "pid": "8019", + "pid": "10203", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271323426" + "$ref": "https://mef.rero.ch/api/places/idref/271438436" } }, { - "pid": "8020", + "pid": "10204", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271323485" + "$ref": "https://mef.rero.ch/api/places/idref/275775569" } }, { - "pid": "8021", + "pid": "10205", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271323515" + "$ref": "https://mef.rero.ch/api/places/idref/276510216" } }, { - "pid": "8022", + "pid": "10206", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271323523" + "$ref": "https://mef.rero.ch/api/places/idref/276534921" } }, { - "pid": "8023", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271323566" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/places/gnd/1335257845" + }, + "pid": "10207", + "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040046176" + "$ref": "https://mef.rero.ch/api/places/gnd/1335257101" }, - "pid": "8024", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271323590" - } + "pid": "10208", + "type": "bf:Place" }, { - "pid": "8025", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271323663" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/places/gnd/133525675X" + }, + "pid": "10209", + "type": "bf:Place" }, { - "pid": "8026", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/27132368X" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/places/gnd/133525207X" + }, + "pid": "10210", + "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/952907682" + "$ref": "https://mef.rero.ch/api/places/gnd/1335249966" }, - "pid": "8027", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271323698" - } + "pid": "10211", + "type": "bf:Place" }, { - "pid": "8028", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271323728" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/places/gnd/1335243240" + }, + "pid": "10212", + "type": "bf:Place" }, { - "pid": "8029", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271323752" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/places/gnd/133523909X" + }, + "pid": "10213", + "type": "bf:Place" }, { - "pid": "8030", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271323957" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/places/gnd/1335217711" + }, + "pid": "10214", + "type": "bf:Place" }, { - "pid": "8031", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271323973" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/places/gnd/1335201653" + }, + "pid": "10215", + "type": "bf:Place" }, { - "pid": "8032", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271324015" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/places/gnd/1335141790" + }, + "pid": "10216", + "type": "bf:Place" }, { - "pid": "8033", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271324031" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/places/gnd/1335107711" + }, + "pid": "10217", + "type": "bf:Place" }, { - "pid": "8034", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271324058" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/places/gnd/1335104917" + }, + "pid": "10218", + "type": "bf:Place" }, { - "pid": "8035", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271324074" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/places/gnd/1335098399" + }, + "pid": "10219", + "type": "bf:Place" }, { - "pid": "8036", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271324562" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/places/gnd/1335092390" + }, + "pid": "10220", + "type": "bf:Place" }, { - "pid": "8037", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271326441" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/places/gnd/1335092196" + }, + "pid": "10221", + "type": "bf:Place" }, { - "pid": "8038", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271326476" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/places/gnd/1335086005" + }, + "pid": "10222", + "type": "bf:Place" }, { - "pid": "8039", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271326484" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/places/gnd/1335058036" + }, + "pid": "10223", + "type": "bf:Place" }, { - "pid": "8040", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271326506" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/places/gnd/1334938016" + }, + "pid": "10224", + "type": "bf:Place" }, { - "pid": "8041", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271326514" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/places/gnd/1334917981" + }, + "pid": "10225", + "type": "bf:Place" }, { - "pid": "8042", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271326522" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/places/gnd/1334916292" + }, + "pid": "10226", + "type": "bf:Place" }, { - "pid": "8043", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271326530" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/places/gnd/1334913498" + }, + "pid": "10227", + "type": "bf:Place" }, { - "pid": "8044", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271326557" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/places/gnd/1334907684" + }, + "pid": "10228", + "type": "bf:Place" }, { - "pid": "8045", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271326603" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/places/gnd/1334907048" + }, + "pid": "10229", + "type": "bf:Place" }, { - "pid": "8046", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271326670" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/places/gnd/1334904251" + }, + "pid": "10230", + "type": "bf:Place" }, { - "pid": "8047", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271326700" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/places/gnd/133490281X" + }, + "pid": "10231", + "type": "bf:Place" }, { - "pid": "8048", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271326727" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/places/gnd/1334900256" + }, + "pid": "10232", + "type": "bf:Place" }, { - "pid": "8049", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271326751" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/places/gnd/133489874X" + }, + "pid": "10233", + "type": "bf:Place" }, { - "pid": "8050", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/27132676X" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/places/gnd/1334896755" + }, + "pid": "10234", + "type": "bf:Place" }, { - "pid": "8051", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271326778" - } - }, - { - "pid": "8052", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271326786" - } - }, - { - "pid": "8053", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271326794" - } - }, - { - "pid": "8054", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271326808" - } - }, - { - "pid": "8055", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271326824" - } - }, - { - "pid": "8056", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271326832" - } - }, - { - "pid": "8057", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271326840" - } - }, - { - "pid": "8058", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271327383" - } - }, - { - "pid": "8059", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271328762" - } - }, - { - "pid": "8060", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271329017" - } - }, - { - "pid": "8061", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271329335" - } - }, - { - "pid": "8062", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271329696" - } - }, - { - "pid": "8063", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271329734" - } - }, - { - "pid": "8064", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271329831" - } - }, - { - "pid": "8065", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271329912" - } - }, - { - "pid": "8066", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271329998" - } - }, - { - "pid": "8067", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271330031" - } - }, - { - "pid": "8068", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271330163" - } - }, - { - "pid": "8069", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271331658" - } - }, - { - "pid": "8070", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271331712" - } - }, - { - "pid": "8071", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/27133181X" - } - }, - { - "pid": "8072", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271332352" - } - }, - { - "pid": "8073", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271332778" - } - }, - { - "pid": "8074", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271332824" - } - }, - { - "pid": "8075", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271333081" - } - }, - { - "pid": "8076", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271333197" - } - }, - { - "pid": "8077", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271333243" - } - }, - { - "pid": "8078", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271337214" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/places/gnd/1334893594" + }, + "pid": "10235", + "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/042499909" + "$ref": "https://mef.rero.ch/api/places/gnd/133489129X" }, - "pid": "8079", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271438436" - } + "pid": "10236", + "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/043187048" + "$ref": "https://mef.rero.ch/api/places/gnd/1334878234" }, - "pid": "8080", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/275775569" - } + "pid": "10237", + "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/944449360" + "$ref": "https://mef.rero.ch/api/places/gnd/1334875707" }, - "pid": "8081", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/276510216" - } + "pid": "10238", + "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040744256" + "$ref": "https://mef.rero.ch/api/places/gnd/1334874387" }, - "pid": "8082", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/276534921" - } + "pid": "10239", + "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/000347078" + "$ref": "https://mef.rero.ch/api/places/gnd/1334867097" }, - "pid": "8083", + "pid": "10240", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/001101536" + "$ref": "https://mef.rero.ch/api/places/gnd/1334866473" }, - "pid": "8084", + "pid": "10241", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/002631628" + "$ref": "https://mef.rero.ch/api/places/gnd/1334866082" }, - "pid": "8085", + "pid": "10242", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/004205731" + "$ref": "https://mef.rero.ch/api/places/gnd/1334865981" }, - "pid": "8086", + "pid": "10243", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/004280768" + "$ref": "https://mef.rero.ch/api/places/gnd/1334804621" }, - "pid": "8087", + "pid": "10244", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/007749023" + "$ref": "https://mef.rero.ch/api/places/gnd/1334804141" }, - "pid": "8088", + "pid": "10245", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/030089050" + "$ref": "https://mef.rero.ch/api/places/gnd/1334801304" }, - "pid": "8089", + "pid": "10246", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/030125898" + "$ref": "https://mef.rero.ch/api/places/gnd/1334789134" }, - "pid": "8090", + "pid": "10247", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/030141605" + "$ref": "https://mef.rero.ch/api/places/gnd/1334785422" }, - "pid": "8091", + "pid": "10248", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040024024" + "$ref": "https://mef.rero.ch/api/places/gnd/1334784493" }, - "pid": "8092", + "pid": "10249", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040055744" + "$ref": "https://mef.rero.ch/api/places/gnd/1334779015" }, - "pid": "8093", + "pid": "10250", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/04009300X" + "$ref": "https://mef.rero.ch/api/places/gnd/1334766363" }, - "pid": "8094", + "pid": "10251", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040093417" + "$ref": "https://mef.rero.ch/api/places/gnd/1334756465" }, - "pid": "8095", + "pid": "10252", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040183408" + "$ref": "https://mef.rero.ch/api/places/gnd/1334736340" }, - "pid": "8096", + "pid": "10253", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/04024010X" + "$ref": "https://mef.rero.ch/api/places/gnd/1334729824" }, - "pid": "8097", + "pid": "10254", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040288099" + "$ref": "https://mef.rero.ch/api/places/gnd/1334725756" }, - "pid": "8098", + "pid": "10255", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040296377" + "$ref": "https://mef.rero.ch/api/places/gnd/1334725691" }, - "pid": "8099", + "pid": "10256", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040304817" + "$ref": "https://mef.rero.ch/api/places/gnd/1334671486" }, - "pid": "8100", + "pid": "10257", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040346919" + "$ref": "https://mef.rero.ch/api/places/gnd/1334670560" }, - "pid": "8101", + "pid": "10258", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040357422" + "$ref": "https://mef.rero.ch/api/places/gnd/1334670390" }, - "pid": "8102", + "pid": "10259", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040368114" + "$ref": "https://mef.rero.ch/api/places/gnd/1334670323" }, - "pid": "8103", + "pid": "10260", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/04037372X" + "$ref": "https://mef.rero.ch/api/places/gnd/1334670048" }, - "pid": "8104", + "pid": "10261", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040376044" + "$ref": "https://mef.rero.ch/api/places/gnd/1334666474" }, - "pid": "8105", + "pid": "10262", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/04041146X" + "$ref": "https://mef.rero.ch/api/places/gnd/1334665036" }, - "pid": "8106", + "pid": "10263", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040425134" + "$ref": "https://mef.rero.ch/api/places/gnd/1334665028" }, - "pid": "8107", + "pid": "10264", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040516687" + "$ref": "https://mef.rero.ch/api/places/gnd/1334664242" }, - "pid": "8108", + "pid": "10265", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/04057749X" + "$ref": "https://mef.rero.ch/api/places/gnd/1334661073" }, - "pid": "8109", + "pid": "10266", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040594084" + "$ref": "https://mef.rero.ch/api/places/gnd/1334658196" }, - "pid": "8110", + "pid": "10267", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/04060151X" + "$ref": "https://mef.rero.ch/api/places/gnd/1334657726" }, - "pid": "8111", + "pid": "10268", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040604853" + "$ref": "https://mef.rero.ch/api/places/gnd/133465641X" }, - "pid": "8112", + "pid": "10269", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040657752" + "$ref": "https://mef.rero.ch/api/places/gnd/1334632707" }, - "pid": "8113", + "pid": "10270", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040680223" + "$ref": "https://mef.rero.ch/api/places/gnd/133463209X" }, - "pid": "8114", + "pid": "10271", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040693309" + "$ref": "https://mef.rero.ch/api/places/gnd/133456325X" }, - "pid": "8115", + "pid": "10272", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040738582" + "$ref": "https://mef.rero.ch/api/places/gnd/1334560994" }, - "pid": "8116", + "pid": "10273", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040754766" + "$ref": "https://mef.rero.ch/api/places/gnd/1334559805" }, - "pid": "8117", + "pid": "10274", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040794903" + "$ref": "https://mef.rero.ch/api/places/gnd/1334558590" }, - "pid": "8118", + "pid": "10275", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040802558" + "$ref": "https://mef.rero.ch/api/places/gnd/1334556687" }, - "pid": "8119", + "pid": "10276", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040805905" + "$ref": "https://mef.rero.ch/api/places/gnd/1334554471" }, - "pid": "8120", + "pid": "10277", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040865622" + "$ref": "https://mef.rero.ch/api/places/gnd/1334554218" }, - "pid": "8121", + "pid": "10278", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040873862" + "$ref": "https://mef.rero.ch/api/places/gnd/1334552940" }, - "pid": "8122", + "pid": "10279", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040912833" + "$ref": "https://mef.rero.ch/api/places/gnd/1334552908" }, - "pid": "8123", + "pid": "10280", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040952789" + "$ref": "https://mef.rero.ch/api/places/gnd/1334552606" }, - "pid": "8124", + "pid": "10281", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040956075" + "$ref": "https://mef.rero.ch/api/places/gnd/1334538085" }, - "pid": "8125", + "pid": "10282", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040957977" + "$ref": "https://mef.rero.ch/api/places/gnd/133453666X" }, - "pid": "8126", + "pid": "10283", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040967689" + "$ref": "https://mef.rero.ch/api/places/gnd/1334531153" }, - "pid": "8127", + "pid": "10284", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040994716" + "$ref": "https://mef.rero.ch/api/places/gnd/1334516766" }, - "pid": "8128", + "pid": "10285", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/041011848" + "$ref": "https://mef.rero.ch/api/places/gnd/1334502854" }, - "pid": "8129", + "pid": "10286", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/041058445" + "$ref": "https://mef.rero.ch/api/places/gnd/1334486573" }, - "pid": "8130", + "pid": "10287", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/04106125X" + "$ref": "https://mef.rero.ch/api/places/gnd/1334485763" }, - "pid": "8131", + "pid": "10288", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/041063368" + "$ref": "https://mef.rero.ch/api/places/gnd/1334319561" }, - "pid": "8132", + "pid": "10289", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/041084675" + "$ref": "https://mef.rero.ch/api/places/gnd/1334318492" }, - "pid": "8133", + "pid": "10290", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/041087828" + "$ref": "https://mef.rero.ch/api/places/gnd/1334318069" }, - "pid": "8134", + "pid": "10291", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/041112504" + "$ref": "https://mef.rero.ch/api/places/gnd/1334313776" }, - "pid": "8135", + "pid": "10292", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/041154282" + "$ref": "https://mef.rero.ch/api/places/gnd/1334312974" }, - "pid": "8136", + "pid": "10293", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/041167163" + "$ref": "https://mef.rero.ch/api/places/gnd/1334310661" }, - "pid": "8137", + "pid": "10294", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/041192443" + "$ref": "https://mef.rero.ch/api/places/gnd/1334302111" }, - "pid": "8138", + "pid": "10295", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/041194152" + "$ref": "https://mef.rero.ch/api/places/gnd/1334300054" }, - "pid": "8139", + "pid": "10296", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/041370538" + "$ref": "https://mef.rero.ch/api/places/gnd/133422725X" }, - "pid": "8140", + "pid": "10297", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/041401174" + "$ref": "https://mef.rero.ch/api/places/gnd/1334221979" }, - "pid": "8141", + "pid": "10298", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/042005450" + "$ref": "https://mef.rero.ch/api/places/gnd/1334198845" }, - "pid": "8142", + "pid": "10299", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/042209927" + "$ref": "https://mef.rero.ch/api/places/gnd/1334117918" }, - "pid": "8143", + "pid": "10300", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/042236037" + "$ref": "https://mef.rero.ch/api/places/gnd/1334101221" }, - "pid": "8144", + "pid": "10301", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/042244943" + "$ref": "https://mef.rero.ch/api/places/gnd/1334086826" }, - "pid": "8145", + "pid": "10302", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/042260213" + "$ref": "https://mef.rero.ch/api/places/gnd/1334027250" }, - "pid": "8146", + "pid": "10303", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/042299004" + "$ref": "https://mef.rero.ch/api/places/gnd/1334024804" }, - "pid": "8147", + "pid": "10304", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/042387175" + "$ref": "https://mef.rero.ch/api/places/gnd/1334011753" }, - "pid": "8148", + "pid": "10305", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/042400228" + "$ref": "https://mef.rero.ch/api/places/gnd/1334011079" }, - "pid": "8149", + "pid": "10306", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/042477247" + "$ref": "https://mef.rero.ch/api/places/gnd/1334001529" }, - "pid": "8150", + "pid": "10307", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/042490448" + "$ref": "https://mef.rero.ch/api/places/gnd/1333989954" }, - "pid": "8151", + "pid": "10308", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/042492777" + "$ref": "https://mef.rero.ch/api/places/gnd/1333660758" }, - "pid": "8152", + "pid": "10309", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/042553628" + "$ref": "https://mef.rero.ch/api/places/gnd/1333582501" }, - "pid": "8153", + "pid": "10310", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/042567874" + "$ref": "https://mef.rero.ch/api/places/gnd/1333570511" }, - "pid": "8154", + "pid": "10311", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/042602564" + "$ref": "https://mef.rero.ch/api/places/gnd/133355513X" }, - "pid": "8155", + "pid": "10312", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/042627494" + "$ref": "https://mef.rero.ch/api/places/gnd/1333333668" }, - "pid": "8156", + "pid": "10313", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/042778352" + "$ref": "https://mef.rero.ch/api/places/gnd/1333321090" }, - "pid": "8157", + "pid": "10314", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/042788714" + "$ref": "https://mef.rero.ch/api/places/gnd/1333315902" }, - "pid": "8158", + "pid": "10315", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/042939526" + "$ref": "https://mef.rero.ch/api/places/gnd/1333263465" }, - "pid": "8159", + "pid": "10316", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/042939550" + "$ref": "https://mef.rero.ch/api/places/gnd/1333255853" }, - "pid": "8160", + "pid": "10317", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/042976200" + "$ref": "https://mef.rero.ch/api/places/gnd/1333228880" }, - "pid": "8161", + "pid": "10318", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/043138764" + "$ref": "https://mef.rero.ch/api/places/gnd/1333113943" }, - "pid": "8162", + "pid": "10319", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/043151019" + "$ref": "https://mef.rero.ch/api/places/gnd/1332874568" }, - "pid": "8163", + "pid": "10320", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/043225608" + "$ref": "https://mef.rero.ch/api/places/gnd/1332858198" }, - "pid": "8164", + "pid": "10321", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/043244793" + "$ref": "https://mef.rero.ch/api/places/gnd/1332769349" }, - "pid": "8165", + "pid": "10322", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/050039350" + "$ref": "https://mef.rero.ch/api/places/gnd/1332757375" }, - "pid": "8166", + "pid": "10323", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/050133039" + "$ref": "https://mef.rero.ch/api/places/gnd/1332755666" }, - "pid": "8167", + "pid": "10324", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/050551604" + "$ref": "https://mef.rero.ch/api/places/gnd/1332749054" }, - "pid": "8168", + "pid": "10325", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1001762630" + "$ref": "https://mef.rero.ch/api/places/gnd/1332747108" }, - "pid": "8169", + "pid": "10326", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1002427517" + "$ref": "https://mef.rero.ch/api/places/gnd/1332742351" }, - "pid": "8170", + "pid": "10327", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1008073997" + "$ref": "https://mef.rero.ch/api/places/gnd/1332735002" }, - "pid": "8171", + "pid": "10328", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1009707922" + "$ref": "https://mef.rero.ch/api/places/gnd/1332734863" }, - "pid": "8172", + "pid": "10329", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1009847430" + "$ref": "https://mef.rero.ch/api/places/gnd/133273457X" }, - "pid": "8173", + "pid": "10330", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1010249460" + "$ref": "https://mef.rero.ch/api/places/gnd/1332733751" }, - "pid": "8174", + "pid": "10331", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1010438603" + "$ref": "https://mef.rero.ch/api/places/gnd/1332732577" }, - "pid": "8175", + "pid": "10332", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1011060752" + "$ref": "https://mef.rero.ch/api/places/gnd/1332731430" }, - "pid": "8176", + "pid": "10333", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1016112106" + "$ref": "https://mef.rero.ch/api/places/gnd/1332670482" }, - "pid": "8177", + "pid": "10334", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1020865237" + "$ref": "https://mef.rero.ch/api/places/gnd/1332669689" }, - "pid": "8178", + "pid": "10335", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1020865318" + "$ref": "https://mef.rero.ch/api/places/gnd/1332451578" }, - "pid": "8179", + "pid": "10336", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1020897236" + "$ref": "https://mef.rero.ch/api/places/gnd/1332353436" }, - "pid": "8180", + "pid": "10337", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1020897325" + "$ref": "https://mef.rero.ch/api/places/gnd/1332057209" }, - "pid": "8181", + "pid": "10338", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1020911026" + "$ref": "https://mef.rero.ch/api/places/gnd/1332055729" }, - "pid": "8182", + "pid": "10339", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1020911344" + "$ref": "https://mef.rero.ch/api/places/gnd/1332031374" }, - "pid": "8183", + "pid": "10340", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1020911387" + "$ref": "https://mef.rero.ch/api/places/gnd/1331729661" }, - "pid": "8184", + "pid": "10341", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1021056154" + "$ref": "https://mef.rero.ch/api/places/gnd/1331609186" }, - "pid": "8185", + "pid": "10342", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1021112216" + "$ref": "https://mef.rero.ch/api/places/gnd/1331604346" }, - "pid": "8186", + "pid": "10343", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1021112518" + "$ref": "https://mef.rero.ch/api/places/gnd/1331602718" }, - "pid": "8187", + "pid": "10344", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1021112577" + "$ref": "https://mef.rero.ch/api/places/gnd/1331601630" }, - "pid": "8188", + "pid": "10345", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1021113018" + "$ref": "https://mef.rero.ch/api/places/gnd/1331514282" }, - "pid": "8189", + "pid": "10346", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1021396656" + "$ref": "https://mef.rero.ch/api/places/gnd/1331513952" }, - "pid": "8190", + "pid": "10347", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1024812693" + "$ref": "https://mef.rero.ch/api/places/gnd/1331379539" }, - "pid": "8191", + "pid": "10348", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1028231660" + "$ref": "https://mef.rero.ch/api/places/gnd/1331109191" }, - "pid": "8192", + "pid": "10349", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1029388334" + "$ref": "https://mef.rero.ch/api/places/gnd/1331089271" }, - "pid": "8193", + "pid": "10350", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1029389233" + "$ref": "https://mef.rero.ch/api/places/gnd/1330982746" }, - "pid": "8194", + "pid": "10351", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1029389896" + "$ref": "https://mef.rero.ch/api/places/gnd/1330866738" }, - "pid": "8195", + "pid": "10352", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1031571922" + "$ref": "https://mef.rero.ch/api/places/gnd/1330847199" }, - "pid": "8196", + "pid": "10353", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1032436034" + "$ref": "https://mef.rero.ch/api/places/gnd/1330436237" }, - "pid": "8197", + "pid": "10354", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1035487640" + "$ref": "https://mef.rero.ch/api/places/gnd/1330428420" }, - "pid": "8198", + "pid": "10355", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1036573141" + "$ref": "https://mef.rero.ch/api/places/gnd/1330324463" }, - "pid": "8199", + "pid": "10356", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1036912949" + "$ref": "https://mef.rero.ch/api/places/gnd/1330302877" }, - "pid": "8200", + "pid": "10357", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1038831628" + "$ref": "https://mef.rero.ch/api/places/gnd/1330290887" }, - "pid": "8201", + "pid": "10358", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1044268069" + "$ref": "https://mef.rero.ch/api/places/gnd/1330177274" }, - "pid": "8202", + "pid": "10359", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1051746663" + "$ref": "https://mef.rero.ch/api/places/gnd/1329890205" }, - "pid": "8203", + "pid": "10360", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1053460856" + "$ref": "https://mef.rero.ch/api/places/gnd/1329430875" }, - "pid": "8204", + "pid": "10361", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1053495382" + "$ref": "https://mef.rero.ch/api/places/gnd/1316359042" }, - "pid": "8205", + "pid": "10362", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1053578571" + "$ref": "https://mef.rero.ch/api/places/gnd/1314596373" }, - "pid": "8206", + "pid": "10363", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1053585039" + "$ref": "https://mef.rero.ch/api/places/gnd/1302571524" }, - "pid": "8207", + "pid": "10364", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/105366916X" + "$ref": "https://mef.rero.ch/api/places/gnd/1300397128" }, - "pid": "8208", + "pid": "10365", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1053694857" + "$ref": "https://mef.rero.ch/api/places/gnd/1299383890" }, - "pid": "8209", + "pid": "10366", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1053733119" + "$ref": "https://mef.rero.ch/api/places/gnd/129673143X" }, - "pid": "8210", + "pid": "10367", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/105382467X" + "$ref": "https://mef.rero.ch/api/places/gnd/1295131781" }, - "pid": "8211", + "pid": "10368", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1054036322" + "$ref": "https://mef.rero.ch/api/places/gnd/1287837611" }, - "pid": "8212", + "pid": "10369", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1054036489" + "$ref": "https://mef.rero.ch/api/places/gnd/1286132703" }, - "pid": "8213", + "pid": "10370", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1054382255" + "$ref": "https://mef.rero.ch/api/places/gnd/1284341119" }, - "pid": "8214", + "pid": "10371", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1054442959" + "$ref": "https://mef.rero.ch/api/places/gnd/1282328816" }, - "pid": "8215", + "pid": "10372", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1054611041" + "$ref": "https://mef.rero.ch/api/places/gnd/1275159915" }, - "pid": "8216", + "pid": "10373", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1054631026" + "$ref": "https://mef.rero.ch/api/places/gnd/1271173751" }, - "pid": "8217", + "pid": "10374", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1054961824" + "$ref": "https://mef.rero.ch/api/places/gnd/1267606541" }, - "pid": "8218", + "pid": "10375", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1055068716" + "$ref": "https://mef.rero.ch/api/places/gnd/1262419808" }, - "pid": "8219", + "pid": "10376", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1056973714" + "$ref": "https://mef.rero.ch/api/places/gnd/1240912943" }, - "pid": "8220", + "pid": "10377", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1057942928" + "$ref": "https://mef.rero.ch/api/places/gnd/1239866968" }, - "pid": "8221", + "pid": "10378", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1058041142" + "$ref": "https://mef.rero.ch/api/places/gnd/1239463502" }, - "pid": "8222", + "pid": "10379", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1058395726" + "$ref": "https://mef.rero.ch/api/places/gnd/1237860342" }, - "pid": "8223", + "pid": "10380", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1058460293" + "$ref": "https://mef.rero.ch/api/places/gnd/1237828171" }, - "pid": "8224", + "pid": "10381", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1058460862" + "$ref": "https://mef.rero.ch/api/places/gnd/1237774101" }, - "pid": "8225", + "pid": "10382", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1058463896" + "$ref": "https://mef.rero.ch/api/places/gnd/1237279453" }, - "pid": "8226", + "pid": "10383", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1058463993" + "$ref": "https://mef.rero.ch/api/places/gnd/1236792211" }, - "pid": "8227", + "pid": "10384", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1058579045" + "$ref": "https://mef.rero.ch/api/places/gnd/123657754X" }, - "pid": "8228", + "pid": "10385", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1058583018" + "$ref": "https://mef.rero.ch/api/places/gnd/1235360709" }, - "pid": "8229", + "pid": "10386", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1058616579" + "$ref": "https://mef.rero.ch/api/places/gnd/1233310046" }, - "pid": "8230", + "pid": "10387", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1058616684" + "$ref": "https://mef.rero.ch/api/places/gnd/1232243698" }, - "pid": "8231", + "pid": "10388", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1058622773" + "$ref": "https://mef.rero.ch/api/places/gnd/1225876354" }, - "pid": "8232", + "pid": "10389", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/105863982X" + "$ref": "https://mef.rero.ch/api/places/gnd/1224278054" }, - "pid": "8233", + "pid": "10390", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1058639919" + "$ref": "https://mef.rero.ch/api/places/gnd/122413754X" }, - "pid": "8234", + "pid": "10391", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1058651994" + "$ref": "https://mef.rero.ch/api/places/gnd/122219953X" }, - "pid": "8235", + "pid": "10392", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1058661396" + "$ref": "https://mef.rero.ch/api/places/gnd/1222199440" }, - "pid": "8236", + "pid": "10393", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1058664468" + "$ref": "https://mef.rero.ch/api/places/gnd/1219234621" }, - "pid": "8237", + "pid": "10394", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1058667343" + "$ref": "https://mef.rero.ch/api/places/gnd/1215862520" }, - "pid": "8238", + "pid": "10395", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1058838512" + "$ref": "https://mef.rero.ch/api/places/gnd/1208649175" }, - "pid": "8239", + "pid": "10396", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1058840819" + "$ref": "https://mef.rero.ch/api/places/gnd/1206005505" }, - "pid": "8240", + "pid": "10397", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1058876872" + "$ref": "https://mef.rero.ch/api/places/gnd/1203261837" }, - "pid": "8241", + "pid": "10398", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1058880373" + "$ref": "https://mef.rero.ch/api/places/gnd/1197938001" }, - "pid": "8242", + "pid": "10399", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1058890611" + "$ref": "https://mef.rero.ch/api/places/gnd/1192399013" }, - "pid": "8243", + "pid": "10400", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1058896318" + "$ref": "https://mef.rero.ch/api/places/gnd/1191133729" }, - "pid": "8244", + "pid": "10401", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1058899597" + "$ref": "https://mef.rero.ch/api/places/gnd/1190333392" }, - "pid": "8245", + "pid": "10402", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1058918176" + "$ref": "https://mef.rero.ch/api/places/gnd/1190333082" }, - "pid": "8246", + "pid": "10403", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1058919954" + "$ref": "https://mef.rero.ch/api/places/gnd/1190328259" }, - "pid": "8247", + "pid": "10404", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1058928732" + "$ref": "https://mef.rero.ch/api/places/gnd/1189443015" }, - "pid": "8248", + "pid": "10405", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/105892978X" + "$ref": "https://mef.rero.ch/api/places/gnd/1188738658" }, - "pid": "8249", + "pid": "10406", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1058939068" + "$ref": "https://mef.rero.ch/api/places/gnd/1184832803" }, - "pid": "8250", + "pid": "10407", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1058973045" + "$ref": "https://mef.rero.ch/api/places/gnd/1184428727" }, - "pid": "8251", + "pid": "10408", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1058984144" + "$ref": "https://mef.rero.ch/api/places/gnd/1182916759" }, - "pid": "8252", + "pid": "10409", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1058985299" + "$ref": "https://mef.rero.ch/api/places/gnd/1182704948" }, - "pid": "8253", + "pid": "10410", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1058986333" + "$ref": "https://mef.rero.ch/api/places/gnd/1180664485" }, - "pid": "8254", + "pid": "10411", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1058994743" + "$ref": "https://mef.rero.ch/api/places/gnd/1180620623" }, - "pid": "8255", + "pid": "10412", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/105914249X" + "$ref": "https://mef.rero.ch/api/places/gnd/1179502884" }, - "pid": "8256", + "pid": "10413", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1059250454" + "$ref": "https://mef.rero.ch/api/places/gnd/1177183811" }, - "pid": "8257", + "pid": "10414", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1059357755" + "$ref": "https://mef.rero.ch/api/places/gnd/1177087480" }, - "pid": "8258", + "pid": "10415", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1059359022" + "$ref": "https://mef.rero.ch/api/places/gnd/1171383401" }, - "pid": "8259", + "pid": "10416", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1059376946" + "$ref": "https://mef.rero.ch/api/places/gnd/1169806708" }, - "pid": "8260", + "pid": "10417", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1059378396" + "$ref": "https://mef.rero.ch/api/places/gnd/1169806686" }, - "pid": "8261", + "pid": "10418", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1059448831" + "$ref": "https://mef.rero.ch/api/places/gnd/1169805167" }, - "pid": "8262", + "pid": "10419", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1060087367" + "$ref": "https://mef.rero.ch/api/places/gnd/1169805140" }, - "pid": "8263", + "pid": "10420", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1060132206" + "$ref": "https://mef.rero.ch/api/places/gnd/1167694643" }, - "pid": "8264", + "pid": "10421", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1060238128" + "$ref": "https://mef.rero.ch/api/places/gnd/1167335767" }, - "pid": "8265", + "pid": "10422", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1060401134" + "$ref": "https://mef.rero.ch/api/places/gnd/1166988325" }, - "pid": "8266", + "pid": "10423", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1060419319" + "$ref": "https://mef.rero.ch/api/places/gnd/1166988007" }, - "pid": "8267", + "pid": "10424", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/106050104X" + "$ref": "https://mef.rero.ch/api/places/gnd/1166098877" }, - "pid": "8268", + "pid": "10425", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1060501457" + "$ref": "https://mef.rero.ch/api/places/gnd/1165597586" }, - "pid": "8269", + "pid": "10426", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1060501759" + "$ref": "https://mef.rero.ch/api/places/gnd/1164527657" }, - "pid": "8270", + "pid": "10427", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1060501902" + "$ref": "https://mef.rero.ch/api/places/gnd/116355815X" }, - "pid": "8271", + "pid": "10428", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/106050216X" + "$ref": "https://mef.rero.ch/api/places/gnd/1163558095" }, - "pid": "8272", + "pid": "10429", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1060502372" + "$ref": "https://mef.rero.ch/api/places/gnd/1163419907" }, - "pid": "8273", + "pid": "10430", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1060502585" + "$ref": "https://mef.rero.ch/api/places/gnd/1161830820" }, - "pid": "8274", + "pid": "10431", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1060502682" + "$ref": "https://mef.rero.ch/api/places/gnd/1161625046" }, - "pid": "8275", + "pid": "10432", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1060502798" + "$ref": "https://mef.rero.ch/api/places/gnd/1156658128" }, - "pid": "8276", + "pid": "10433", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1060503166" + "$ref": "https://mef.rero.ch/api/places/gnd/1156051029" }, - "pid": "8277", + "pid": "10434", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1060503611" + "$ref": "https://mef.rero.ch/api/places/gnd/1148115242" }, - "pid": "8278", + "pid": "10435", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/106081482X" + "$ref": "https://mef.rero.ch/api/places/gnd/1147654123" }, - "pid": "8279", + "pid": "10436", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1060849127" + "$ref": "https://mef.rero.ch/api/places/gnd/1143714245" }, - "pid": "8280", + "pid": "10437", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1061004198" + "$ref": "https://mef.rero.ch/api/places/gnd/1143154991" }, - "pid": "8281", + "pid": "10438", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1062516109" + "$ref": "https://mef.rero.ch/api/places/gnd/1142135993" }, - "pid": "8282", + "pid": "10439", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1062531191" + "$ref": "https://mef.rero.ch/api/places/gnd/1139463888" }, - "pid": "8283", + "pid": "10440", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1062891848" + "$ref": "https://mef.rero.ch/api/places/gnd/113914071X" }, - "pid": "8284", + "pid": "10441", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1062970004" + "$ref": "https://mef.rero.ch/api/places/gnd/113698612X" }, - "pid": "8285", + "pid": "10442", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1062979583" + "$ref": "https://mef.rero.ch/api/places/gnd/1136731237" }, - "pid": "8286", + "pid": "10443", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1064049419" + "$ref": "https://mef.rero.ch/api/places/gnd/1136092293" }, - "pid": "8287", + "pid": "10444", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1064601502" + "$ref": "https://mef.rero.ch/api/places/gnd/1135805342" }, - "pid": "8288", + "pid": "10445", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1064714455" + "$ref": "https://mef.rero.ch/api/places/gnd/1135798842" }, - "pid": "8289", + "pid": "10446", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1064960243" + "$ref": "https://mef.rero.ch/api/places/gnd/1133293247" }, - "pid": "8290", + "pid": "10447", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1067272488" + "$ref": "https://mef.rero.ch/api/places/gnd/1132227771" }, - "pid": "8291", + "pid": "10448", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1067274006" + "$ref": "https://mef.rero.ch/api/places/gnd/1124279156" }, - "pid": "8292", + "pid": "10449", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1067636757" + "$ref": "https://mef.rero.ch/api/places/gnd/1122747160" }, - "pid": "8293", + "pid": "10450", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1067637184" + "$ref": "https://mef.rero.ch/api/places/gnd/1122668171" }, - "pid": "8294", + "pid": "10451", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1067860142" + "$ref": "https://mef.rero.ch/api/places/gnd/112132925X" }, - "pid": "8295", + "pid": "10452", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1067878831" + "$ref": "https://mef.rero.ch/api/places/gnd/1107605113" }, - "pid": "8296", + "pid": "10453", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1067883703" + "$ref": "https://mef.rero.ch/api/places/gnd/1105589110" }, - "pid": "8297", + "pid": "10454", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1068118490" + "$ref": "https://mef.rero.ch/api/places/gnd/1101612258" }, - "pid": "8298", + "pid": "10455", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1069803782" + "$ref": "https://mef.rero.ch/api/places/gnd/1100323325" }, - "pid": "8299", + "pid": "10456", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1070113026" + "$ref": "https://mef.rero.ch/api/places/gnd/1100201831" }, - "pid": "8300", + "pid": "10457", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1071862391" + "$ref": "https://mef.rero.ch/api/places/gnd/1099133092" }, - "pid": "8301", + "pid": "10458", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1071872435" + "$ref": "https://mef.rero.ch/api/places/gnd/1099132061" }, - "pid": "8302", + "pid": "10459", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/107283314X" + "$ref": "https://mef.rero.ch/api/places/gnd/1097213617" }, - "pid": "8303", + "pid": "10460", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1073267830" + "$ref": "https://mef.rero.ch/api/places/gnd/1095576461" }, - "pid": "8304", + "pid": "10461", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/107362062X" + "$ref": "https://mef.rero.ch/api/places/gnd/1085229823" }, - "pid": "8305", + "pid": "10462", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1073724549" + "$ref": "https://mef.rero.ch/api/places/gnd/1082797251" }, - "pid": "8306", + "pid": "10463", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/107373157X" + "$ref": "https://mef.rero.ch/api/places/gnd/1082520101" }, - "pid": "8307", + "pid": "10464", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1073950220" + "$ref": "https://mef.rero.ch/api/places/gnd/1082153850" }, - "pid": "8308", + "pid": "10465", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/107399077X" + "$ref": "https://mef.rero.ch/api/places/gnd/1082012033" }, - "pid": "8309", + "pid": "10466", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1074316908" + "$ref": "https://mef.rero.ch/api/places/gnd/1082001430" }, - "pid": "8310", + "pid": "10467", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1074377397" + "$ref": "https://mef.rero.ch/api/places/gnd/1081845031" }, - "pid": "8311", + "pid": "10468", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1075220467" + "$ref": "https://mef.rero.ch/api/places/gnd/1081844973" }, - "pid": "8312", + "pid": "10469", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1075827361" + "$ref": "https://mef.rero.ch/api/places/gnd/1081842474" }, - "pid": "8313", + "pid": "10470", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1076027032" + "$ref": "https://mef.rero.ch/api/places/gnd/1081839082" }, - "pid": "8314", + "pid": "10471", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/107699847X" + "$ref": "https://mef.rero.ch/api/places/gnd/1081838779" }, - "pid": "8315", + "pid": "10472", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1077053185" + "$ref": "https://mef.rero.ch/api/places/gnd/1081838655" }, - "pid": "8316", + "pid": "10473", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1077053320" + "$ref": "https://mef.rero.ch/api/places/gnd/1081838507" }, - "pid": "8317", + "pid": "10474", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1077893450" + "$ref": "https://mef.rero.ch/api/places/gnd/1081838396" }, - "pid": "8318", + "pid": "10475", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1078131902" + "$ref": "https://mef.rero.ch/api/places/gnd/1081838310" }, - "pid": "8319", + "pid": "10476", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1079568352" + "$ref": "https://mef.rero.ch/api/places/gnd/1081838167" }, - "pid": "8320", + "pid": "10477", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1079692916" + "$ref": "https://mef.rero.ch/api/places/gnd/1081838051" }, - "pid": "8321", + "pid": "10478", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1081097930" + "$ref": "https://mef.rero.ch/api/places/gnd/1081330236" }, - "pid": "8322", + "pid": "10479", "type": "bf:Place" }, { "gnd": { "$ref": "https://mef.rero.ch/api/places/gnd/1081212918" }, - "pid": "8323", + "pid": "10480", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1081330236" + "$ref": "https://mef.rero.ch/api/places/gnd/1081097930" }, - "pid": "8324", + "pid": "10481", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1081838051" + "$ref": "https://mef.rero.ch/api/places/gnd/1079692916" }, - "pid": "8325", + "pid": "10482", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1081838167" + "$ref": "https://mef.rero.ch/api/places/gnd/1079568352" }, - "pid": "8326", + "pid": "10483", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1081838310" + "$ref": "https://mef.rero.ch/api/places/gnd/1078131902" }, - "pid": "8327", + "pid": "10484", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1081838396" + "$ref": "https://mef.rero.ch/api/places/gnd/1077893450" }, - "pid": "8328", + "pid": "10485", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1081838507" + "$ref": "https://mef.rero.ch/api/places/gnd/1077053320" }, - "pid": "8329", + "pid": "10486", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1081838655" + "$ref": "https://mef.rero.ch/api/places/gnd/1077053185" }, - "pid": "8330", + "pid": "10487", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1081838779" + "$ref": "https://mef.rero.ch/api/places/gnd/107699847X" }, - "pid": "8331", + "pid": "10488", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1081839082" + "$ref": "https://mef.rero.ch/api/places/gnd/1076027032" }, - "pid": "8332", + "pid": "10489", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1081842474" + "$ref": "https://mef.rero.ch/api/places/gnd/1075827361" }, - "pid": "8333", + "pid": "10490", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1081844973" + "$ref": "https://mef.rero.ch/api/places/gnd/1075220467" }, - "pid": "8334", + "pid": "10491", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1081845031" + "$ref": "https://mef.rero.ch/api/places/gnd/1074377397" }, - "pid": "8335", + "pid": "10492", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1082001430" + "$ref": "https://mef.rero.ch/api/places/gnd/1074316908" }, - "pid": "8336", + "pid": "10493", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1082012033" + "$ref": "https://mef.rero.ch/api/places/gnd/107399077X" }, - "pid": "8337", + "pid": "10494", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1082153850" + "$ref": "https://mef.rero.ch/api/places/gnd/1073950220" }, - "pid": "8338", + "pid": "10495", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1082520101" + "$ref": "https://mef.rero.ch/api/places/gnd/107373157X" }, - "pid": "8339", + "pid": "10496", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1082797251" + "$ref": "https://mef.rero.ch/api/places/gnd/1073724549" }, - "pid": "8340", + "pid": "10497", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1085229823" + "$ref": "https://mef.rero.ch/api/places/gnd/107362062X" }, - "pid": "8341", + "pid": "10498", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1095576461" + "$ref": "https://mef.rero.ch/api/places/gnd/1073267830" }, - "pid": "8342", + "pid": "10499", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1097213617" + "$ref": "https://mef.rero.ch/api/places/gnd/107283314X" }, - "pid": "8343", + "pid": "10500", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1099132061" + "$ref": "https://mef.rero.ch/api/places/gnd/1071872435" }, - "pid": "8344", + "pid": "10501", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1099133092" + "$ref": "https://mef.rero.ch/api/places/gnd/1071862391" }, - "pid": "8345", + "pid": "10502", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1100201831" + "$ref": "https://mef.rero.ch/api/places/gnd/1070113026" }, - "pid": "8346", + "pid": "10503", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1100323325" + "$ref": "https://mef.rero.ch/api/places/gnd/1069803782" }, - "pid": "8347", + "pid": "10504", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1101612258" + "$ref": "https://mef.rero.ch/api/places/gnd/1068118490" }, - "pid": "8348", + "pid": "10505", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1105589110" + "$ref": "https://mef.rero.ch/api/places/gnd/1067883703" }, - "pid": "8349", + "pid": "10506", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1107605113" + "$ref": "https://mef.rero.ch/api/places/gnd/1067878831" }, - "pid": "8350", + "pid": "10507", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/112132925X" + "$ref": "https://mef.rero.ch/api/places/gnd/1067860142" }, - "pid": "8351", + "pid": "10508", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1122668171" + "$ref": "https://mef.rero.ch/api/places/gnd/1067637184" }, - "pid": "8352", + "pid": "10509", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1122747160" + "$ref": "https://mef.rero.ch/api/places/gnd/1067636757" }, - "pid": "8353", + "pid": "10510", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1124279156" + "$ref": "https://mef.rero.ch/api/places/gnd/1067274006" }, - "pid": "8354", + "pid": "10511", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1132227771" + "$ref": "https://mef.rero.ch/api/places/gnd/1067272488" }, - "pid": "8355", + "pid": "10512", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1133293247" + "$ref": "https://mef.rero.ch/api/places/gnd/1064960243" }, - "pid": "8356", + "pid": "10513", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1135798842" + "$ref": "https://mef.rero.ch/api/places/gnd/1064714455" }, - "pid": "8357", + "pid": "10514", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1135805342" + "$ref": "https://mef.rero.ch/api/places/gnd/1064601502" }, - "pid": "8358", + "pid": "10515", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1136092293" + "$ref": "https://mef.rero.ch/api/places/gnd/1064049419" }, - "pid": "8359", + "pid": "10516", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1136731237" + "$ref": "https://mef.rero.ch/api/places/gnd/1062979583" }, - "pid": "8360", + "pid": "10517", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/113698612X" + "$ref": "https://mef.rero.ch/api/places/gnd/1062970004" }, - "pid": "8361", + "pid": "10518", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/113914071X" + "$ref": "https://mef.rero.ch/api/places/gnd/1062891848" }, - "pid": "8362", + "pid": "10519", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1139463888" + "$ref": "https://mef.rero.ch/api/places/gnd/1062531191" }, - "pid": "8363", + "pid": "10520", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1142135993" + "$ref": "https://mef.rero.ch/api/places/gnd/1062516109" }, - "pid": "8364", + "pid": "10521", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1143154991" + "$ref": "https://mef.rero.ch/api/places/gnd/1061004198" }, - "pid": "8365", + "pid": "10522", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1143714245" + "$ref": "https://mef.rero.ch/api/places/gnd/1060849127" }, - "pid": "8366", + "pid": "10523", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1147654123" + "$ref": "https://mef.rero.ch/api/places/gnd/106081482X" }, - "pid": "8367", + "pid": "10524", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1148115242" + "$ref": "https://mef.rero.ch/api/places/gnd/1060503611" }, - "pid": "8368", + "pid": "10525", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1156051029" + "$ref": "https://mef.rero.ch/api/places/gnd/1060503166" }, - "pid": "8369", + "pid": "10526", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1156658128" + "$ref": "https://mef.rero.ch/api/places/gnd/1060502798" }, - "pid": "8370", + "pid": "10527", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1161625046" + "$ref": "https://mef.rero.ch/api/places/gnd/1060502682" }, - "pid": "8371", + "pid": "10528", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1161830820" + "$ref": "https://mef.rero.ch/api/places/gnd/1060502585" }, - "pid": "8372", + "pid": "10529", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1163419907" + "$ref": "https://mef.rero.ch/api/places/gnd/1060502372" }, - "pid": "8373", + "pid": "10530", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1163558095" + "$ref": "https://mef.rero.ch/api/places/gnd/106050216X" }, - "pid": "8374", + "pid": "10531", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/116355815X" + "$ref": "https://mef.rero.ch/api/places/gnd/1060501902" }, - "pid": "8375", + "pid": "10532", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1164527657" + "$ref": "https://mef.rero.ch/api/places/gnd/1060501759" }, - "pid": "8376", + "pid": "10533", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1165597586" + "$ref": "https://mef.rero.ch/api/places/gnd/1060501457" }, - "pid": "8377", + "pid": "10534", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1166098877" + "$ref": "https://mef.rero.ch/api/places/gnd/106050104X" }, - "pid": "8378", + "pid": "10535", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1166988007" + "$ref": "https://mef.rero.ch/api/places/gnd/1060419319" }, - "pid": "8379", + "pid": "10536", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1166988325" + "$ref": "https://mef.rero.ch/api/places/gnd/1060401134" }, - "pid": "8380", + "pid": "10537", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1167335767" + "$ref": "https://mef.rero.ch/api/places/gnd/1060238128" }, - "pid": "8381", + "pid": "10538", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1167694643" + "$ref": "https://mef.rero.ch/api/places/gnd/1060132206" }, - "pid": "8382", + "pid": "10539", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1169805140" + "$ref": "https://mef.rero.ch/api/places/gnd/1060087367" }, - "pid": "8383", + "pid": "10540", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1169805167" + "$ref": "https://mef.rero.ch/api/places/gnd/1059448831" }, - "pid": "8384", + "pid": "10541", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1169806686" + "$ref": "https://mef.rero.ch/api/places/gnd/1059378396" }, - "pid": "8385", + "pid": "10542", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1169806708" + "$ref": "https://mef.rero.ch/api/places/gnd/1059376946" }, - "pid": "8386", + "pid": "10543", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1171383401" + "$ref": "https://mef.rero.ch/api/places/gnd/1059359022" }, - "pid": "8387", + "pid": "10544", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1177087480" + "$ref": "https://mef.rero.ch/api/places/gnd/1059357755" }, - "pid": "8388", + "pid": "10545", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1177183811" + "$ref": "https://mef.rero.ch/api/places/gnd/1059250454" }, - "pid": "8389", + "pid": "10546", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1179502884" + "$ref": "https://mef.rero.ch/api/places/gnd/105914249X" }, - "pid": "8390", + "pid": "10547", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1180620623" + "$ref": "https://mef.rero.ch/api/places/gnd/1058994743" }, - "pid": "8391", + "pid": "10548", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1180664485" + "$ref": "https://mef.rero.ch/api/places/gnd/1058986333" }, - "pid": "8392", + "pid": "10549", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1182704948" + "$ref": "https://mef.rero.ch/api/places/gnd/1058985299" }, - "pid": "8393", + "pid": "10550", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1182916759" + "$ref": "https://mef.rero.ch/api/places/gnd/1058984144" }, - "pid": "8394", + "pid": "10551", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1184428727" + "$ref": "https://mef.rero.ch/api/places/gnd/1058973045" }, - "pid": "8395", + "pid": "10552", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1184832803" + "$ref": "https://mef.rero.ch/api/places/gnd/1058939068" }, - "pid": "8396", + "pid": "10553", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1188738658" + "$ref": "https://mef.rero.ch/api/places/gnd/105892978X" }, - "pid": "8397", + "pid": "10554", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1189443015" + "$ref": "https://mef.rero.ch/api/places/gnd/1058928732" }, - "pid": "8398", + "pid": "10555", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1190328259" + "$ref": "https://mef.rero.ch/api/places/gnd/1058919954" }, - "pid": "8399", + "pid": "10556", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1190333082" + "$ref": "https://mef.rero.ch/api/places/gnd/1058918176" }, - "pid": "8400", + "pid": "10557", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1190333392" + "$ref": "https://mef.rero.ch/api/places/gnd/1058899597" }, - "pid": "8401", + "pid": "10558", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1191133729" + "$ref": "https://mef.rero.ch/api/places/gnd/1058896318" }, - "pid": "8402", + "pid": "10559", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1192399013" + "$ref": "https://mef.rero.ch/api/places/gnd/1058890611" }, - "pid": "8403", + "pid": "10560", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1197938001" + "$ref": "https://mef.rero.ch/api/places/gnd/1058880373" }, - "pid": "8404", + "pid": "10561", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1203261837" + "$ref": "https://mef.rero.ch/api/places/gnd/1058876872" }, - "pid": "8405", + "pid": "10562", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1206005505" + "$ref": "https://mef.rero.ch/api/places/gnd/1058840819" }, - "pid": "8406", + "pid": "10563", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1208649175" + "$ref": "https://mef.rero.ch/api/places/gnd/1058838512" }, - "pid": "8407", + "pid": "10564", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1215862520" + "$ref": "https://mef.rero.ch/api/places/gnd/1058667343" }, - "pid": "8408", + "pid": "10565", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1219234621" + "$ref": "https://mef.rero.ch/api/places/gnd/1058664468" }, - "pid": "8409", + "pid": "10566", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1222199440" + "$ref": "https://mef.rero.ch/api/places/gnd/1058661396" }, - "pid": "8410", + "pid": "10567", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/122219953X" + "$ref": "https://mef.rero.ch/api/places/gnd/1058651994" }, - "pid": "8411", + "pid": "10568", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/122413754X" + "$ref": "https://mef.rero.ch/api/places/gnd/1058639919" }, - "pid": "8412", + "pid": "10569", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1224278054" + "$ref": "https://mef.rero.ch/api/places/gnd/105863982X" }, - "pid": "8413", + "pid": "10570", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1225876354" + "$ref": "https://mef.rero.ch/api/places/gnd/1058622773" }, - "pid": "8414", + "pid": "10571", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1232243698" + "$ref": "https://mef.rero.ch/api/places/gnd/1058616684" }, - "pid": "8415", + "pid": "10572", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1233310046" + "$ref": "https://mef.rero.ch/api/places/gnd/1058616579" }, - "pid": "8416", + "pid": "10573", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1235360709" + "$ref": "https://mef.rero.ch/api/places/gnd/1058583018" }, - "pid": "8417", + "pid": "10574", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/123657754X" + "$ref": "https://mef.rero.ch/api/places/gnd/1058579045" }, - "pid": "8418", + "pid": "10575", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1236792211" + "$ref": "https://mef.rero.ch/api/places/gnd/1058463993" }, - "pid": "8419", + "pid": "10576", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1237279453" + "$ref": "https://mef.rero.ch/api/places/gnd/1058463896" }, - "pid": "8420", + "pid": "10577", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1237774101" + "$ref": "https://mef.rero.ch/api/places/gnd/1058460862" }, - "pid": "8421", + "pid": "10578", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1237828171" + "$ref": "https://mef.rero.ch/api/places/gnd/1058460293" }, - "pid": "8422", + "pid": "10579", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1237860342" + "$ref": "https://mef.rero.ch/api/places/gnd/1058395726" }, - "pid": "8423", + "pid": "10580", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1239463502" + "$ref": "https://mef.rero.ch/api/places/gnd/1058041142" }, - "pid": "8424", + "pid": "10581", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1239866968" + "$ref": "https://mef.rero.ch/api/places/gnd/1057942928" }, - "pid": "8425", + "pid": "10582", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1240912943" + "$ref": "https://mef.rero.ch/api/places/gnd/1056973714" }, - "pid": "8426", + "pid": "10583", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1262419808" + "$ref": "https://mef.rero.ch/api/places/gnd/1055068716" }, - "pid": "8427", + "pid": "10584", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1267606541" + "$ref": "https://mef.rero.ch/api/places/gnd/1054961824" }, - "pid": "8428", + "pid": "10585", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1271173751" + "$ref": "https://mef.rero.ch/api/places/gnd/1054631026" }, - "pid": "8429", + "pid": "10586", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1275159915" + "$ref": "https://mef.rero.ch/api/places/gnd/1054611041" }, - "pid": "8430", + "pid": "10587", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1282328816" + "$ref": "https://mef.rero.ch/api/places/gnd/1054442959" }, - "pid": "8431", + "pid": "10588", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1284341119" + "$ref": "https://mef.rero.ch/api/places/gnd/1054382255" }, - "pid": "8432", + "pid": "10589", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1286132703" + "$ref": "https://mef.rero.ch/api/places/gnd/1054036489" }, - "pid": "8433", + "pid": "10590", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1287837611" + "$ref": "https://mef.rero.ch/api/places/gnd/1054036322" }, - "pid": "8434", + "pid": "10591", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1295131781" + "$ref": "https://mef.rero.ch/api/places/gnd/105382467X" }, - "pid": "8435", + "pid": "10592", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/129673143X" + "$ref": "https://mef.rero.ch/api/places/gnd/1053733119" }, - "pid": "8436", + "pid": "10593", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1299383890" + "$ref": "https://mef.rero.ch/api/places/gnd/1053694857" }, - "pid": "8437", + "pid": "10594", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1300397128" + "$ref": "https://mef.rero.ch/api/places/gnd/105366916X" }, - "pid": "8438", + "pid": "10595", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1302571524" + "$ref": "https://mef.rero.ch/api/places/gnd/1053585039" }, - "pid": "8439", + "pid": "10596", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1314596373" + "$ref": "https://mef.rero.ch/api/places/gnd/1053578571" }, - "pid": "8440", + "pid": "10597", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1316359042" + "$ref": "https://mef.rero.ch/api/places/gnd/1053495382" }, - "pid": "8441", + "pid": "10598", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1329430875" + "$ref": "https://mef.rero.ch/api/places/gnd/1053460856" }, - "pid": "8442", + "pid": "10599", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1329890205" + "$ref": "https://mef.rero.ch/api/places/gnd/1051746663" }, - "pid": "8443", + "pid": "10600", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1330177274" + "$ref": "https://mef.rero.ch/api/places/gnd/1044268069" }, - "pid": "8444", + "pid": "10601", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1330290887" + "$ref": "https://mef.rero.ch/api/places/gnd/1038831628" }, - "pid": "8445", + "pid": "10602", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1330302877" + "$ref": "https://mef.rero.ch/api/places/gnd/1036912949" }, - "pid": "8446", + "pid": "10603", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1330324463" + "$ref": "https://mef.rero.ch/api/places/gnd/1036573141" }, - "pid": "8447", + "pid": "10604", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1330428420" + "$ref": "https://mef.rero.ch/api/places/gnd/1035487640" }, - "pid": "8448", + "pid": "10605", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1330436237" + "$ref": "https://mef.rero.ch/api/places/gnd/1032436034" }, - "pid": "8449", + "pid": "10606", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1330847199" + "$ref": "https://mef.rero.ch/api/places/gnd/1031571922" }, - "pid": "8450", + "pid": "10607", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1330866738" + "$ref": "https://mef.rero.ch/api/places/gnd/1029389896" }, - "pid": "8451", + "pid": "10608", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1330982746" + "$ref": "https://mef.rero.ch/api/places/gnd/1029389233" }, - "pid": "8452", + "pid": "10609", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1331089271" + "$ref": "https://mef.rero.ch/api/places/gnd/1029388334" }, - "pid": "8453", + "pid": "10610", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1331109191" + "$ref": "https://mef.rero.ch/api/places/gnd/1028231660" }, - "pid": "8454", + "pid": "10611", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1331379539" + "$ref": "https://mef.rero.ch/api/places/gnd/1024812693" }, - "pid": "8455", + "pid": "10612", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1331513952" + "$ref": "https://mef.rero.ch/api/places/gnd/1021396656" }, - "pid": "8456", + "pid": "10613", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1331514282" + "$ref": "https://mef.rero.ch/api/places/gnd/1021113018" }, - "pid": "8457", + "pid": "10614", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1331601630" + "$ref": "https://mef.rero.ch/api/places/gnd/1021112577" }, - "pid": "8458", + "pid": "10615", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1331602718" + "$ref": "https://mef.rero.ch/api/places/gnd/1021112518" }, - "pid": "8459", + "pid": "10616", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1331604346" + "$ref": "https://mef.rero.ch/api/places/gnd/1021112216" }, - "pid": "8460", + "pid": "10617", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1331609186" + "$ref": "https://mef.rero.ch/api/places/gnd/1021056154" }, - "pid": "8461", + "pid": "10618", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1331729661" + "$ref": "https://mef.rero.ch/api/places/gnd/1020911387" }, - "pid": "8462", + "pid": "10619", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1332031374" + "$ref": "https://mef.rero.ch/api/places/gnd/1020911344" }, - "pid": "8463", + "pid": "10620", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1332055729" + "$ref": "https://mef.rero.ch/api/places/gnd/1020911026" }, - "pid": "8464", + "pid": "10621", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1332057209" + "$ref": "https://mef.rero.ch/api/places/gnd/1020897325" }, - "pid": "8465", + "pid": "10622", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1332353436" + "$ref": "https://mef.rero.ch/api/places/gnd/1020897236" }, - "pid": "8466", + "pid": "10623", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1332451578" + "$ref": "https://mef.rero.ch/api/places/gnd/1020865318" }, - "pid": "8467", + "pid": "10624", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1332669689" + "$ref": "https://mef.rero.ch/api/places/gnd/1020865237" }, - "pid": "8468", + "pid": "10625", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1332670482" + "$ref": "https://mef.rero.ch/api/places/gnd/1016112106" }, - "pid": "8469", + "pid": "10626", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1332731430" + "$ref": "https://mef.rero.ch/api/places/gnd/1011060752" }, - "pid": "8470", + "pid": "10627", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1332732577" + "$ref": "https://mef.rero.ch/api/places/gnd/1010438603" }, - "pid": "8471", + "pid": "10628", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1332733751" + "$ref": "https://mef.rero.ch/api/places/gnd/1010249460" }, - "pid": "8472", + "pid": "10629", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/133273457X" + "$ref": "https://mef.rero.ch/api/places/gnd/1009847430" }, - "pid": "8473", + "pid": "10630", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1332734863" + "$ref": "https://mef.rero.ch/api/places/gnd/1009707922" }, - "pid": "8474", + "pid": "10631", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1332735002" + "$ref": "https://mef.rero.ch/api/places/gnd/1008073997" }, - "pid": "8475", + "pid": "10632", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1332742351" + "$ref": "https://mef.rero.ch/api/places/gnd/1002427517" }, - "pid": "8476", + "pid": "10633", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1332747108" + "$ref": "https://mef.rero.ch/api/places/gnd/1001762630" }, - "pid": "8477", + "pid": "10634", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1332749054" + "$ref": "https://mef.rero.ch/api/places/gnd/996588051" }, - "pid": "8478", + "pid": "10635", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1332755666" + "$ref": "https://mef.rero.ch/api/places/gnd/996155910" }, - "pid": "8479", + "pid": "10636", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1332757375" + "$ref": "https://mef.rero.ch/api/places/gnd/995191506" }, - "pid": "8480", + "pid": "10637", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1332769349" + "$ref": "https://mef.rero.ch/api/places/gnd/994536666" }, - "pid": "8481", + "pid": "10638", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1332858198" + "$ref": "https://mef.rero.ch/api/places/gnd/992346371" }, - "pid": "8482", + "pid": "10639", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1332874568" + "$ref": "https://mef.rero.ch/api/places/gnd/989505952" }, - "pid": "8483", + "pid": "10640", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1333113943" + "$ref": "https://mef.rero.ch/api/places/gnd/98831326X" }, - "pid": "8484", + "pid": "10641", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1333228880" + "$ref": "https://mef.rero.ch/api/places/gnd/985253576" }, - "pid": "8485", + "pid": "10642", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1333255853" + "$ref": "https://mef.rero.ch/api/places/gnd/984645942" }, - "pid": "8486", + "pid": "10643", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1333263465" + "$ref": "https://mef.rero.ch/api/places/gnd/980891248" }, - "pid": "8487", + "pid": "10644", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1333315902" + "$ref": "https://mef.rero.ch/api/places/gnd/979131529" }, - "pid": "8488", + "pid": "10645", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1333321090" + "$ref": "https://mef.rero.ch/api/places/gnd/978966228" }, - "pid": "8489", + "pid": "10646", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1333333668" + "$ref": "https://mef.rero.ch/api/places/gnd/978923855" }, - "pid": "8490", + "pid": "10647", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/133355513X" + "$ref": "https://mef.rero.ch/api/places/gnd/975958925" }, - "pid": "8491", + "pid": "10648", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1333570511" + "$ref": "https://mef.rero.ch/api/places/gnd/975328573" }, - "pid": "8492", + "pid": "10649", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1333582501" + "$ref": "https://mef.rero.ch/api/places/gnd/974245747" }, - "pid": "8493", + "pid": "10650", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1333660758" + "$ref": "https://mef.rero.ch/api/places/gnd/97424225X" }, - "pid": "8494", + "pid": "10651", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1333989954" + "$ref": "https://mef.rero.ch/api/places/gnd/973071648" }, - "pid": "8495", + "pid": "10652", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334001529" + "$ref": "https://mef.rero.ch/api/places/gnd/973066261" }, - "pid": "8496", + "pid": "10653", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334011079" + "$ref": "https://mef.rero.ch/api/places/gnd/973066245" }, - "pid": "8497", + "pid": "10654", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334011753" + "$ref": "https://mef.rero.ch/api/places/gnd/973040149" }, - "pid": "8498", + "pid": "10655", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334024804" + "$ref": "https://mef.rero.ch/api/places/gnd/972651438" }, - "pid": "8499", + "pid": "10656", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334027250" + "$ref": "https://mef.rero.ch/api/places/gnd/972586601" }, - "pid": "8500", + "pid": "10657", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334086826" + "$ref": "https://mef.rero.ch/api/places/gnd/972515704" }, - "pid": "8501", + "pid": "10658", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334101221" + "$ref": "https://mef.rero.ch/api/places/gnd/971359709" }, - "pid": "8502", + "pid": "10659", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334117918" + "$ref": "https://mef.rero.ch/api/places/gnd/970139470" }, - "pid": "8503", + "pid": "10660", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334198845" + "$ref": "https://mef.rero.ch/api/places/gnd/969971028" }, - "pid": "8504", + "pid": "10661", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334221979" + "$ref": "https://mef.rero.ch/api/places/gnd/969491131" }, - "pid": "8505", + "pid": "10662", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/133422725X" + "$ref": "https://mef.rero.ch/api/places/gnd/967753546" }, - "pid": "8506", + "pid": "10663", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334300054" + "$ref": "https://mef.rero.ch/api/places/gnd/967681952" }, - "pid": "8507", + "pid": "10664", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334302111" + "$ref": "https://mef.rero.ch/api/places/gnd/967581176" }, - "pid": "8508", + "pid": "10665", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334310661" + "$ref": "https://mef.rero.ch/api/places/gnd/967180953" }, - "pid": "8509", + "pid": "10666", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334312974" + "$ref": "https://mef.rero.ch/api/places/gnd/967160480" }, - "pid": "8510", + "pid": "10667", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334313776" + "$ref": "https://mef.rero.ch/api/places/gnd/96577578X" }, - "pid": "8511", + "pid": "10668", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334318069" + "$ref": "https://mef.rero.ch/api/places/gnd/965775429" }, - "pid": "8512", + "pid": "10669", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334318492" + "$ref": "https://mef.rero.ch/api/places/gnd/965774910" }, - "pid": "8513", + "pid": "10670", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334319561" + "$ref": "https://mef.rero.ch/api/places/gnd/965759059" }, - "pid": "8514", + "pid": "10671", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334485763" + "$ref": "https://mef.rero.ch/api/places/gnd/96575877X" }, - "pid": "8515", + "pid": "10672", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334486573" + "$ref": "https://mef.rero.ch/api/places/gnd/96563860X" }, - "pid": "8516", + "pid": "10673", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334502854" + "$ref": "https://mef.rero.ch/api/places/gnd/964991608" }, - "pid": "8517", + "pid": "10674", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334516766" + "$ref": "https://mef.rero.ch/api/places/gnd/964462427" }, - "pid": "8518", + "pid": "10675", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334531153" + "$ref": "https://mef.rero.ch/api/places/gnd/96411822X" }, - "pid": "8519", + "pid": "10676", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/133453666X" + "$ref": "https://mef.rero.ch/api/places/gnd/963982559" }, - "pid": "8520", + "pid": "10677", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334538085" + "$ref": "https://mef.rero.ch/api/places/gnd/963957635" }, - "pid": "8521", + "pid": "10678", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334552606" + "$ref": "https://mef.rero.ch/api/places/gnd/963614673" }, - "pid": "8522", + "pid": "10679", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334552908" + "$ref": "https://mef.rero.ch/api/places/gnd/963462539" }, - "pid": "8523", + "pid": "10680", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334552940" + "$ref": "https://mef.rero.ch/api/places/gnd/963082132" }, - "pid": "8524", + "pid": "10681", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334554218" + "$ref": "https://mef.rero.ch/api/places/gnd/962048879" }, - "pid": "8525", + "pid": "10682", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334554471" + "$ref": "https://mef.rero.ch/api/places/gnd/961594519" }, - "pid": "8526", + "pid": "10683", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334556687" + "$ref": "https://mef.rero.ch/api/places/gnd/961594497" }, - "pid": "8527", + "pid": "10684", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334558590" + "$ref": "https://mef.rero.ch/api/places/gnd/961594454" }, - "pid": "8528", + "pid": "10685", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334559805" + "$ref": "https://mef.rero.ch/api/places/gnd/961395923" }, - "pid": "8529", + "pid": "10686", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334560994" + "$ref": "https://mef.rero.ch/api/places/gnd/960863664" }, - "pid": "8530", + "pid": "10687", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/133456325X" + "$ref": "https://mef.rero.ch/api/places/gnd/960833919" }, - "pid": "8531", + "pid": "10688", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/133463209X" + "$ref": "https://mef.rero.ch/api/places/gnd/960396268" }, - "pid": "8532", + "pid": "10689", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334632707" + "$ref": "https://mef.rero.ch/api/places/gnd/960085726" }, - "pid": "8533", + "pid": "10690", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/133465641X" + "$ref": "https://mef.rero.ch/api/places/gnd/959934464" }, - "pid": "8534", + "pid": "10691", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334657726" + "$ref": "https://mef.rero.ch/api/places/gnd/959918612" }, - "pid": "8535", + "pid": "10692", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334658196" + "$ref": "https://mef.rero.ch/api/places/gnd/959788719" }, - "pid": "8536", + "pid": "10693", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334661073" + "$ref": "https://mef.rero.ch/api/places/gnd/959747575" }, - "pid": "8537", + "pid": "10694", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334664242" + "$ref": "https://mef.rero.ch/api/places/gnd/959369872" }, - "pid": "8538", + "pid": "10695", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334665028" + "$ref": "https://mef.rero.ch/api/places/gnd/958777055" }, - "pid": "8539", + "pid": "10696", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334665036" + "$ref": "https://mef.rero.ch/api/places/gnd/958014639" }, - "pid": "8540", + "pid": "10697", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334666474" + "$ref": "https://mef.rero.ch/api/places/gnd/957753551" }, - "pid": "8541", + "pid": "10698", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334670048" + "$ref": "https://mef.rero.ch/api/places/gnd/957586973" }, - "pid": "8542", + "pid": "10699", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334670323" + "$ref": "https://mef.rero.ch/api/places/gnd/957565445" }, - "pid": "8543", + "pid": "10700", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334670390" + "$ref": "https://mef.rero.ch/api/places/gnd/957211430" }, - "pid": "8544", + "pid": "10701", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334670560" + "$ref": "https://mef.rero.ch/api/places/gnd/956443877" }, - "pid": "8545", + "pid": "10702", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334671486" + "$ref": "https://mef.rero.ch/api/places/gnd/956443842" }, - "pid": "8546", + "pid": "10703", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334725691" + "$ref": "https://mef.rero.ch/api/places/gnd/956443613" }, - "pid": "8547", + "pid": "10704", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334725756" + "$ref": "https://mef.rero.ch/api/places/gnd/955960134" }, - "pid": "8548", + "pid": "10705", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334729824" + "$ref": "https://mef.rero.ch/api/places/gnd/955820049" }, - "pid": "8549", + "pid": "10706", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334736340" + "$ref": "https://mef.rero.ch/api/places/gnd/955573246" }, - "pid": "8550", + "pid": "10707", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334756465" + "$ref": "https://mef.rero.ch/api/places/gnd/955498058" }, - "pid": "8551", + "pid": "10708", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334766363" + "$ref": "https://mef.rero.ch/api/places/gnd/955495768" }, - "pid": "8552", + "pid": "10709", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334779015" + "$ref": "https://mef.rero.ch/api/places/gnd/955090547" }, - "pid": "8553", + "pid": "10710", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334784493" + "$ref": "https://mef.rero.ch/api/places/gnd/954472683" }, - "pid": "8554", + "pid": "10711", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334785422" + "$ref": "https://mef.rero.ch/api/places/gnd/954071832" }, - "pid": "8555", + "pid": "10712", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334789134" + "$ref": "https://mef.rero.ch/api/places/gnd/954064593" }, - "pid": "8556", + "pid": "10713", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334801304" + "$ref": "https://mef.rero.ch/api/places/gnd/953168697" }, - "pid": "8557", + "pid": "10714", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334804141" + "$ref": "https://mef.rero.ch/api/places/gnd/953105024" }, - "pid": "8558", + "pid": "10715", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334804621" + "$ref": "https://mef.rero.ch/api/places/gnd/952110512" }, - "pid": "8559", + "pid": "10716", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334865981" + "$ref": "https://mef.rero.ch/api/places/gnd/951677268" }, - "pid": "8560", + "pid": "10717", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334866082" + "$ref": "https://mef.rero.ch/api/places/gnd/951510282" }, - "pid": "8561", + "pid": "10718", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334866473" + "$ref": "https://mef.rero.ch/api/places/gnd/951510274" }, - "pid": "8562", + "pid": "10719", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334867097" + "$ref": "https://mef.rero.ch/api/places/gnd/951510258" }, - "pid": "8563", + "pid": "10720", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334874387" + "$ref": "https://mef.rero.ch/api/places/gnd/95135793X" }, - "pid": "8564", + "pid": "10721", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334875707" + "$ref": "https://mef.rero.ch/api/places/gnd/950649155" }, - "pid": "8565", + "pid": "10722", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334878234" + "$ref": "https://mef.rero.ch/api/places/gnd/950556149" }, - "pid": "8566", + "pid": "10723", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/133489129X" + "$ref": "https://mef.rero.ch/api/places/gnd/950356190" }, - "pid": "8567", + "pid": "10724", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334893594" + "$ref": "https://mef.rero.ch/api/places/gnd/950339490" }, - "pid": "8568", + "pid": "10725", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334896755" + "$ref": "https://mef.rero.ch/api/places/gnd/950339407" }, - "pid": "8569", + "pid": "10726", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/133489874X" + "$ref": "https://mef.rero.ch/api/places/gnd/950338338" }, - "pid": "8570", + "pid": "10727", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334900256" + "$ref": "https://mef.rero.ch/api/places/gnd/95033829X" }, - "pid": "8571", + "pid": "10728", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/133490281X" + "$ref": "https://mef.rero.ch/api/places/gnd/950338230" }, - "pid": "8572", + "pid": "10729", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334904251" + "$ref": "https://mef.rero.ch/api/places/gnd/950338184" }, - "pid": "8573", + "pid": "10730", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334907048" + "$ref": "https://mef.rero.ch/api/places/gnd/950332429" }, - "pid": "8574", + "pid": "10731", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334907684" + "$ref": "https://mef.rero.ch/api/places/gnd/950332011" }, - "pid": "8575", + "pid": "10732", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334913498" + "$ref": "https://mef.rero.ch/api/places/gnd/950331821" }, - "pid": "8576", + "pid": "10733", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334916292" + "$ref": "https://mef.rero.ch/api/places/gnd/950315354" }, - "pid": "8577", + "pid": "10734", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334917981" + "$ref": "https://mef.rero.ch/api/places/gnd/95020109X" }, - "pid": "8578", + "pid": "10735", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334938016" + "$ref": "https://mef.rero.ch/api/places/gnd/950199850" }, - "pid": "8579", + "pid": "10736", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1335058036" + "$ref": "https://mef.rero.ch/api/places/gnd/950199214" }, - "pid": "8580", + "pid": "10737", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1335086005" + "$ref": "https://mef.rero.ch/api/places/gnd/950168637" }, - "pid": "8581", + "pid": "10738", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1335092196" + "$ref": "https://mef.rero.ch/api/places/gnd/949740861" }, - "pid": "8582", + "pid": "10739", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1335092390" + "$ref": "https://mef.rero.ch/api/places/gnd/949647314" }, - "pid": "8583", + "pid": "10740", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1335098399" + "$ref": "https://mef.rero.ch/api/places/gnd/949641804" }, - "pid": "8584", + "pid": "10741", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1335104917" + "$ref": "https://mef.rero.ch/api/places/gnd/94963218X" }, - "pid": "8585", + "pid": "10742", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1335107711" + "$ref": "https://mef.rero.ch/api/places/gnd/949632163" }, - "pid": "8586", + "pid": "10743", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1335141790" + "$ref": "https://mef.rero.ch/api/places/gnd/949632147" }, - "pid": "8587", + "pid": "10744", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1335201653" + "$ref": "https://mef.rero.ch/api/places/gnd/949632120" }, - "pid": "8588", + "pid": "10745", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1335217711" + "$ref": "https://mef.rero.ch/api/places/gnd/949632104" }, - "pid": "8589", + "pid": "10746", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/133523909X" + "$ref": "https://mef.rero.ch/api/places/gnd/949607266" }, - "pid": "8590", + "pid": "10747", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1335243240" + "$ref": "https://mef.rero.ch/api/places/gnd/949602310" }, - "pid": "8591", + "pid": "10748", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1335249966" + "$ref": "https://mef.rero.ch/api/places/gnd/948791659" }, - "pid": "8592", + "pid": "10749", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/133525207X" + "$ref": "https://mef.rero.ch/api/places/gnd/948417226" }, - "pid": "8593", + "pid": "10750", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/133525675X" + "$ref": "https://mef.rero.ch/api/places/gnd/948322292" }, - "pid": "8594", + "pid": "10751", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1335257101" + "$ref": "https://mef.rero.ch/api/places/gnd/948321156" }, - "pid": "8595", + "pid": "10752", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1335257845" + "$ref": "https://mef.rero.ch/api/places/gnd/947976248" }, - "pid": "8596", + "pid": "10753", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199000239" + "$ref": "https://mef.rero.ch/api/places/gnd/947862730" }, - "pid": "8597", + "pid": "10754", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199000328" + "$ref": "https://mef.rero.ch/api/places/gnd/947589341" }, - "pid": "8598", + "pid": "10755", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199001111" + "$ref": "https://mef.rero.ch/api/places/gnd/947454802" }, - "pid": "8599", + "pid": "10756", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199002894" + "$ref": "https://mef.rero.ch/api/places/gnd/947454659" }, - "pid": "8600", + "pid": "10757", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199003645" + "$ref": "https://mef.rero.ch/api/places/gnd/947421238" }, - "pid": "8601", + "pid": "10758", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199011249" + "$ref": "https://mef.rero.ch/api/places/gnd/947026088" }, - "pid": "8602", + "pid": "10759", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199013276" + "$ref": "https://mef.rero.ch/api/places/gnd/946723729" }, - "pid": "8603", + "pid": "10760", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199013594" + "$ref": "https://mef.rero.ch/api/places/gnd/946606161" }, - "pid": "8604", + "pid": "10761", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199022534" + "$ref": "https://mef.rero.ch/api/places/gnd/945980132" }, - "pid": "8605", + "pid": "10762", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199023360" + "$ref": "https://mef.rero.ch/api/places/gnd/945917201" }, - "pid": "8606", + "pid": "10763", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199023786" + "$ref": "https://mef.rero.ch/api/places/gnd/945871678" }, - "pid": "8607", + "pid": "10764", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199077177" + "$ref": "https://mef.rero.ch/api/places/gnd/945385382" }, - "pid": "8608", + "pid": "10765", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199089973" + "$ref": "https://mef.rero.ch/api/places/gnd/944766021" }, - "pid": "8609", + "pid": "10766", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199118167" + "$ref": "https://mef.rero.ch/api/places/gnd/944289290" }, - "pid": "8610", + "pid": "10767", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199136637" + "$ref": "https://mef.rero.ch/api/places/gnd/94400718X" }, - "pid": "8611", + "pid": "10768", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199138834" + "$ref": "https://mef.rero.ch/api/places/gnd/943882346" }, - "pid": "8612", + "pid": "10769", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199147760" + "$ref": "https://mef.rero.ch/api/places/gnd/941847934" }, - "pid": "8613", + "pid": "10770", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199157642" + "$ref": "https://mef.rero.ch/api/places/gnd/941808769" }, - "pid": "8614", + "pid": "10771", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199159777" + "$ref": "https://mef.rero.ch/api/places/gnd/941757471" }, - "pid": "8615", + "pid": "10772", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199159882" + "$ref": "https://mef.rero.ch/api/places/gnd/941385175" }, - "pid": "8616", + "pid": "10773", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199159998" + "$ref": "https://mef.rero.ch/api/places/gnd/940396068" }, - "pid": "8617", + "pid": "10774", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/19916035X" + "$ref": "https://mef.rero.ch/api/places/gnd/940396009" }, - "pid": "8618", + "pid": "10775", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199164347" + "$ref": "https://mef.rero.ch/api/places/gnd/199305404" }, - "pid": "8619", + "pid": "10776", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199168512" + "$ref": "https://mef.rero.ch/api/places/gnd/199252149" }, - "pid": "8620", + "pid": "10777", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/19917332X" + "$ref": "https://mef.rero.ch/api/places/gnd/199248974" }, - "pid": "8621", + "pid": "10778", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199173672" + "$ref": "https://mef.rero.ch/api/places/gnd/199246815" }, - "pid": "8622", + "pid": "10779", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199181993" + "$ref": "https://mef.rero.ch/api/places/gnd/199246793" }, - "pid": "8623", + "pid": "10780", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199187282" + "$ref": "https://mef.rero.ch/api/places/gnd/199246211" }, - "pid": "8624", + "pid": "10781", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199189846" + "$ref": "https://mef.rero.ch/api/places/gnd/199244766" }, - "pid": "8625", + "pid": "10782", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199189854" + "$ref": "https://mef.rero.ch/api/places/gnd/19924474X" }, - "pid": "8626", + "pid": "10783", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199189862" + "$ref": "https://mef.rero.ch/api/places/gnd/199244731" }, - "pid": "8627", + "pid": "10784", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199189870" + "$ref": "https://mef.rero.ch/api/places/gnd/199244375" }, - "pid": "8628", + "pid": "10785", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/19919596X" + "$ref": "https://mef.rero.ch/api/places/gnd/199241562" }, - "pid": "8629", + "pid": "10786", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199195978" + "$ref": "https://mef.rero.ch/api/places/gnd/199240590" }, - "pid": "8630", + "pid": "10787", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199198578" + "$ref": "https://mef.rero.ch/api/places/gnd/199240515" }, - "pid": "8631", + "pid": "10788", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199200955" + "$ref": "https://mef.rero.ch/api/places/gnd/199239436" }, - "pid": "8632", + "pid": "10789", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199209464" + "$ref": "https://mef.rero.ch/api/places/gnd/19923860X" }, - "pid": "8633", + "pid": "10790", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199210713" + "$ref": "https://mef.rero.ch/api/places/gnd/199231516" }, - "pid": "8634", + "pid": "10791", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199211817" + "$ref": "https://mef.rero.ch/api/places/gnd/199230811" }, - "pid": "8635", + "pid": "10792", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199212007" + "$ref": "https://mef.rero.ch/api/places/gnd/199230285" }, - "pid": "8636", + "pid": "10793", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/19921462X" + "$ref": "https://mef.rero.ch/api/places/gnd/199224196" }, - "pid": "8637", + "pid": "10794", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199214700" + "$ref": "https://mef.rero.ch/api/places/gnd/199218315" }, - "pid": "8638", + "pid": "10795", "type": "bf:Place" }, { "gnd": { "$ref": "https://mef.rero.ch/api/places/gnd/199215901" }, - "pid": "8639", + "pid": "10796", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199218315" + "$ref": "https://mef.rero.ch/api/places/gnd/199214700" }, - "pid": "8640", + "pid": "10797", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199224196" + "$ref": "https://mef.rero.ch/api/places/gnd/19921462X" }, - "pid": "8641", + "pid": "10798", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199230285" + "$ref": "https://mef.rero.ch/api/places/gnd/199212007" }, - "pid": "8642", + "pid": "10799", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199230811" + "$ref": "https://mef.rero.ch/api/places/gnd/199211817" }, - "pid": "8643", + "pid": "10800", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199231516" + "$ref": "https://mef.rero.ch/api/places/gnd/199210713" }, - "pid": "8644", + "pid": "10801", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/19923860X" + "$ref": "https://mef.rero.ch/api/places/gnd/199209464" }, - "pid": "8645", + "pid": "10802", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199239436" + "$ref": "https://mef.rero.ch/api/places/gnd/199200955" }, - "pid": "8646", + "pid": "10803", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199240515" + "$ref": "https://mef.rero.ch/api/places/gnd/199198578" }, - "pid": "8647", + "pid": "10804", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199240590" + "$ref": "https://mef.rero.ch/api/places/gnd/199195978" }, - "pid": "8648", + "pid": "10805", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199241562" + "$ref": "https://mef.rero.ch/api/places/gnd/19919596X" }, - "pid": "8649", + "pid": "10806", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199244375" + "$ref": "https://mef.rero.ch/api/places/gnd/199189870" }, - "pid": "8650", + "pid": "10807", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199244731" + "$ref": "https://mef.rero.ch/api/places/gnd/199189862" }, - "pid": "8651", + "pid": "10808", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/19924474X" + "$ref": "https://mef.rero.ch/api/places/gnd/199189854" }, - "pid": "8652", + "pid": "10809", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199244766" + "$ref": "https://mef.rero.ch/api/places/gnd/199189846" }, - "pid": "8653", + "pid": "10810", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199246211" + "$ref": "https://mef.rero.ch/api/places/gnd/199187282" }, - "pid": "8654", + "pid": "10811", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199246793" + "$ref": "https://mef.rero.ch/api/places/gnd/199181993" }, - "pid": "8655", + "pid": "10812", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199246815" + "$ref": "https://mef.rero.ch/api/places/gnd/199173672" }, - "pid": "8656", + "pid": "10813", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199248974" + "$ref": "https://mef.rero.ch/api/places/gnd/19917332X" }, - "pid": "8657", + "pid": "10814", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199252149" + "$ref": "https://mef.rero.ch/api/places/gnd/199168512" }, - "pid": "8658", + "pid": "10815", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199305404" + "$ref": "https://mef.rero.ch/api/places/gnd/199164347" }, - "pid": "8659", + "pid": "10816", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/940396009" + "$ref": "https://mef.rero.ch/api/places/gnd/19916035X" }, - "pid": "8660", + "pid": "10817", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/940396068" + "$ref": "https://mef.rero.ch/api/places/gnd/199159998" }, - "pid": "8661", + "pid": "10818", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/941385175" + "$ref": "https://mef.rero.ch/api/places/gnd/199159882" }, - "pid": "8662", + "pid": "10819", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/941757471" + "$ref": "https://mef.rero.ch/api/places/gnd/199159777" }, - "pid": "8663", + "pid": "10820", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/941808769" + "$ref": "https://mef.rero.ch/api/places/gnd/199157642" }, - "pid": "8664", + "pid": "10821", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/941847934" + "$ref": "https://mef.rero.ch/api/places/gnd/199147760" }, - "pid": "8665", + "pid": "10822", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/943882346" + "$ref": "https://mef.rero.ch/api/places/gnd/199138834" }, - "pid": "8666", + "pid": "10823", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/94400718X" + "$ref": "https://mef.rero.ch/api/places/gnd/199136637" }, - "pid": "8667", + "pid": "10824", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/944289290" + "$ref": "https://mef.rero.ch/api/places/gnd/199118167" }, - "pid": "8668", + "pid": "10825", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/944766021" + "$ref": "https://mef.rero.ch/api/places/gnd/199089973" }, - "pid": "8669", + "pid": "10826", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/945385382" + "$ref": "https://mef.rero.ch/api/places/gnd/199077177" }, - "pid": "8670", + "pid": "10827", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/945871678" + "$ref": "https://mef.rero.ch/api/places/gnd/199023786" }, - "pid": "8671", + "pid": "10828", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/945917201" + "$ref": "https://mef.rero.ch/api/places/gnd/199023360" }, - "pid": "8672", + "pid": "10829", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/945980132" + "$ref": "https://mef.rero.ch/api/places/gnd/199022534" }, - "pid": "8673", + "pid": "10830", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/946606161" + "$ref": "https://mef.rero.ch/api/places/gnd/199013594" }, - "pid": "8674", + "pid": "10831", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/946723729" + "$ref": "https://mef.rero.ch/api/places/gnd/199013276" }, - "pid": "8675", + "pid": "10832", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/947026088" + "$ref": "https://mef.rero.ch/api/places/gnd/199011249" }, - "pid": "8676", + "pid": "10833", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/947421238" + "$ref": "https://mef.rero.ch/api/places/gnd/199003645" }, - "pid": "8677", + "pid": "10834", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/947454659" + "$ref": "https://mef.rero.ch/api/places/gnd/199002894" }, - "pid": "8678", + "pid": "10835", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/947454802" + "$ref": "https://mef.rero.ch/api/places/gnd/199001111" }, - "pid": "8679", + "pid": "10836", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/947589341" + "$ref": "https://mef.rero.ch/api/places/gnd/199000328" }, - "pid": "8680", + "pid": "10837", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/947862730" + "$ref": "https://mef.rero.ch/api/places/gnd/199000239" }, - "pid": "8681", + "pid": "10838", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/947976248" + "$ref": "https://mef.rero.ch/api/places/gnd/050551604" }, - "pid": "8682", + "pid": "10839", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/948321156" + "$ref": "https://mef.rero.ch/api/places/gnd/050133039" }, - "pid": "8683", + "pid": "10840", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/948322292" + "$ref": "https://mef.rero.ch/api/places/gnd/050039350" }, - "pid": "8684", + "pid": "10841", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/948417226" + "$ref": "https://mef.rero.ch/api/places/gnd/043244793" }, - "pid": "8685", + "pid": "10842", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/948791659" + "$ref": "https://mef.rero.ch/api/places/gnd/043225608" }, - "pid": "8686", + "pid": "10843", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/949602310" + "$ref": "https://mef.rero.ch/api/places/gnd/043151019" }, - "pid": "8687", + "pid": "10844", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/949607266" + "$ref": "https://mef.rero.ch/api/places/gnd/043138764" }, - "pid": "8688", + "pid": "10845", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/949632104" + "$ref": "https://mef.rero.ch/api/places/gnd/042976200" }, - "pid": "8689", + "pid": "10846", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/949632120" + "$ref": "https://mef.rero.ch/api/places/gnd/042939550" }, - "pid": "8690", + "pid": "10847", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/949632147" + "$ref": "https://mef.rero.ch/api/places/gnd/042939526" }, - "pid": "8691", + "pid": "10848", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/949632163" + "$ref": "https://mef.rero.ch/api/places/gnd/042788714" }, - "pid": "8692", + "pid": "10849", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/94963218X" + "$ref": "https://mef.rero.ch/api/places/gnd/042778352" }, - "pid": "8693", + "pid": "10850", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/949641804" + "$ref": "https://mef.rero.ch/api/places/gnd/042627494" }, - "pid": "8694", + "pid": "10851", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/949647314" + "$ref": "https://mef.rero.ch/api/places/gnd/042602564" }, - "pid": "8695", + "pid": "10852", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/949740861" + "$ref": "https://mef.rero.ch/api/places/gnd/042567874" }, - "pid": "8696", + "pid": "10853", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/950168637" + "$ref": "https://mef.rero.ch/api/places/gnd/042553628" }, - "pid": "8697", + "pid": "10854", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/950199214" + "$ref": "https://mef.rero.ch/api/places/gnd/042492777" }, - "pid": "8698", + "pid": "10855", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/950199850" + "$ref": "https://mef.rero.ch/api/places/gnd/042490448" }, - "pid": "8699", + "pid": "10856", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/95020109X" + "$ref": "https://mef.rero.ch/api/places/gnd/042477247" }, - "pid": "8700", + "pid": "10857", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/950315354" + "$ref": "https://mef.rero.ch/api/places/gnd/042400228" }, - "pid": "8701", + "pid": "10858", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/950331821" + "$ref": "https://mef.rero.ch/api/places/gnd/042387175" }, - "pid": "8702", + "pid": "10859", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/950332011" + "$ref": "https://mef.rero.ch/api/places/gnd/042299004" }, - "pid": "8703", + "pid": "10860", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/950332429" + "$ref": "https://mef.rero.ch/api/places/gnd/042260213" }, - "pid": "8704", + "pid": "10861", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/950338184" + "$ref": "https://mef.rero.ch/api/places/gnd/042244943" }, - "pid": "8705", + "pid": "10862", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/950338230" + "$ref": "https://mef.rero.ch/api/places/gnd/042236037" }, - "pid": "8706", + "pid": "10863", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/95033829X" + "$ref": "https://mef.rero.ch/api/places/gnd/042209927" }, - "pid": "8707", + "pid": "10864", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/950338338" + "$ref": "https://mef.rero.ch/api/places/gnd/042005450" }, - "pid": "8708", + "pid": "10865", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/950339407" + "$ref": "https://mef.rero.ch/api/places/gnd/041401174" }, - "pid": "8709", + "pid": "10866", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/950339490" + "$ref": "https://mef.rero.ch/api/places/gnd/041370538" }, - "pid": "8710", + "pid": "10867", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/950356190" + "$ref": "https://mef.rero.ch/api/places/gnd/041194152" }, - "pid": "8711", + "pid": "10868", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/950556149" + "$ref": "https://mef.rero.ch/api/places/gnd/041192443" }, - "pid": "8712", + "pid": "10869", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/950649155" + "$ref": "https://mef.rero.ch/api/places/gnd/041167163" }, - "pid": "8713", + "pid": "10870", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/95135793X" + "$ref": "https://mef.rero.ch/api/places/gnd/041154282" }, - "pid": "8714", + "pid": "10871", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/951510258" + "$ref": "https://mef.rero.ch/api/places/gnd/041112504" }, - "pid": "8715", + "pid": "10872", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/951510274" + "$ref": "https://mef.rero.ch/api/places/gnd/041087828" }, - "pid": "8716", + "pid": "10873", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/951510282" + "$ref": "https://mef.rero.ch/api/places/gnd/041084675" }, - "pid": "8717", + "pid": "10874", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/951677268" + "$ref": "https://mef.rero.ch/api/places/gnd/041063368" }, - "pid": "8718", + "pid": "10875", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/952110512" + "$ref": "https://mef.rero.ch/api/places/gnd/04106125X" }, - "pid": "8719", + "pid": "10876", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/953105024" + "$ref": "https://mef.rero.ch/api/places/gnd/041058445" }, - "pid": "8720", + "pid": "10877", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/953168697" + "$ref": "https://mef.rero.ch/api/places/gnd/041011848" }, - "pid": "8721", + "pid": "10878", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/954064593" + "$ref": "https://mef.rero.ch/api/places/gnd/040994716" }, - "pid": "8722", + "pid": "10879", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/954071832" + "$ref": "https://mef.rero.ch/api/places/gnd/040967689" }, - "pid": "8723", + "pid": "10880", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/954472683" + "$ref": "https://mef.rero.ch/api/places/gnd/040957977" }, - "pid": "8724", + "pid": "10881", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/955090547" + "$ref": "https://mef.rero.ch/api/places/gnd/040956075" }, - "pid": "8725", + "pid": "10882", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/955495768" + "$ref": "https://mef.rero.ch/api/places/gnd/040952789" }, - "pid": "8726", + "pid": "10883", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/955498058" + "$ref": "https://mef.rero.ch/api/places/gnd/040912833" }, - "pid": "8727", + "pid": "10884", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/955573246" + "$ref": "https://mef.rero.ch/api/places/gnd/040873862" }, - "pid": "8728", + "pid": "10885", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/955820049" + "$ref": "https://mef.rero.ch/api/places/gnd/040865622" }, - "pid": "8729", + "pid": "10886", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/955960134" + "$ref": "https://mef.rero.ch/api/places/gnd/040805905" }, - "pid": "8730", + "pid": "10887", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/956443613" + "$ref": "https://mef.rero.ch/api/places/gnd/040802558" }, - "pid": "8731", + "pid": "10888", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/956443842" + "$ref": "https://mef.rero.ch/api/places/gnd/040794903" }, - "pid": "8732", + "pid": "10889", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/956443877" + "$ref": "https://mef.rero.ch/api/places/gnd/040754766" }, - "pid": "8733", + "pid": "10890", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/957211430" + "$ref": "https://mef.rero.ch/api/places/gnd/040738582" }, - "pid": "8734", + "pid": "10891", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/957565445" + "$ref": "https://mef.rero.ch/api/places/gnd/040693309" }, - "pid": "8735", + "pid": "10892", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/957586973" + "$ref": "https://mef.rero.ch/api/places/gnd/040680223" }, - "pid": "8736", + "pid": "10893", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/957753551" + "$ref": "https://mef.rero.ch/api/places/gnd/040657752" }, - "pid": "8737", + "pid": "10894", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/958014639" + "$ref": "https://mef.rero.ch/api/places/gnd/040604853" }, - "pid": "8738", + "pid": "10895", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/958777055" + "$ref": "https://mef.rero.ch/api/places/gnd/04060151X" }, - "pid": "8739", + "pid": "10896", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/959369872" + "$ref": "https://mef.rero.ch/api/places/gnd/040594084" }, - "pid": "8740", + "pid": "10897", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/959747575" + "$ref": "https://mef.rero.ch/api/places/gnd/04057749X" }, - "pid": "8741", + "pid": "10898", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/959788719" + "$ref": "https://mef.rero.ch/api/places/gnd/040516687" }, - "pid": "8742", + "pid": "10899", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/959918612" + "$ref": "https://mef.rero.ch/api/places/gnd/040425134" }, - "pid": "8743", + "pid": "10900", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/959934464" + "$ref": "https://mef.rero.ch/api/places/gnd/04041146X" }, - "pid": "8744", + "pid": "10901", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/960085726" + "$ref": "https://mef.rero.ch/api/places/gnd/040376044" }, - "pid": "8745", + "pid": "10902", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/960396268" + "$ref": "https://mef.rero.ch/api/places/gnd/04037372X" }, - "pid": "8746", + "pid": "10903", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/960833919" + "$ref": "https://mef.rero.ch/api/places/gnd/040368114" }, - "pid": "8747", + "pid": "10904", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/960863664" + "$ref": "https://mef.rero.ch/api/places/gnd/040357422" }, - "pid": "8748", + "pid": "10905", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/961395923" + "$ref": "https://mef.rero.ch/api/places/gnd/040346919" }, - "pid": "8749", + "pid": "10906", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/961594454" + "$ref": "https://mef.rero.ch/api/places/gnd/040304817" }, - "pid": "8750", + "pid": "10907", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/961594497" + "$ref": "https://mef.rero.ch/api/places/gnd/040296377" }, - "pid": "8751", + "pid": "10908", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/961594519" + "$ref": "https://mef.rero.ch/api/places/gnd/040288099" }, - "pid": "8752", + "pid": "10909", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/962048879" + "$ref": "https://mef.rero.ch/api/places/gnd/04024010X" }, - "pid": "8753", + "pid": "10910", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/963082132" + "$ref": "https://mef.rero.ch/api/places/gnd/040183408" }, - "pid": "8754", + "pid": "10911", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/963462539" + "$ref": "https://mef.rero.ch/api/places/gnd/040093417" }, - "pid": "8755", + "pid": "10912", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/963614673" + "$ref": "https://mef.rero.ch/api/places/gnd/04009300X" }, - "pid": "8756", + "pid": "10913", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/963957635" + "$ref": "https://mef.rero.ch/api/places/gnd/040055744" }, - "pid": "8757", + "pid": "10914", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/963982559" + "$ref": "https://mef.rero.ch/api/places/gnd/040024024" }, - "pid": "8758", + "pid": "10915", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/96411822X" + "$ref": "https://mef.rero.ch/api/places/gnd/030141605" }, - "pid": "8759", + "pid": "10916", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/964462427" + "$ref": "https://mef.rero.ch/api/places/gnd/030125898" }, - "pid": "8760", + "pid": "10917", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/964991608" + "$ref": "https://mef.rero.ch/api/places/gnd/030089050" }, - "pid": "8761", + "pid": "10918", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/96563860X" + "$ref": "https://mef.rero.ch/api/places/gnd/007749023" }, - "pid": "8762", + "pid": "10919", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/96575877X" + "$ref": "https://mef.rero.ch/api/places/gnd/004280768" }, - "pid": "8763", + "pid": "10920", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/965759059" + "$ref": "https://mef.rero.ch/api/places/gnd/004205731" }, - "pid": "8764", + "pid": "10921", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/965774910" + "$ref": "https://mef.rero.ch/api/places/gnd/002631628" }, - "pid": "8765", + "pid": "10922", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/965775429" + "$ref": "https://mef.rero.ch/api/places/gnd/001101536" }, - "pid": "8766", + "pid": "10923", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/96577578X" + "$ref": "https://mef.rero.ch/api/places/gnd/000347078" }, - "pid": "8767", + "pid": "10924", "type": "bf:Place" }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/967160480" - }, - "pid": "8768", - "type": "bf:Place" + "pid": "9940", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027218546" + } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/967180953" - }, - "pid": "8769", - "type": "bf:Place" + "pid": "9941", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027218562" + } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/967581176" - }, - "pid": "8770", - "type": "bf:Place" + "pid": "9942", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027218597" + } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/967681952" - }, - "pid": "8771", - "type": "bf:Place" + "pid": "9943", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027218619" + } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/967753546" - }, - "pid": "8772", - "type": "bf:Place" + "pid": "9944", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027218767" + } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/969491131" - }, - "pid": "8773", - "type": "bf:Place" + "pid": "9945", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027218856" + } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/969971028" - }, - "pid": "8774", - "type": "bf:Place" + "pid": "9946", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027218961" + } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/970139470" - }, - "pid": "8775", - "type": "bf:Place" + "pid": "9947", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/02721897X" + } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/971359709" - }, - "pid": "8776", - "type": "bf:Place" + "pid": "9948", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027220443" + } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/972515704" - }, - "pid": "8777", - "type": "bf:Place" + "pid": "9949", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027222950" + } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/972586601" - }, - "pid": "8778", - "type": "bf:Place" + "pid": "9950", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027223736" + } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/972651438" - }, - "pid": "8779", - "type": "bf:Place" + "pid": "9951", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027223779" + } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/973040149" - }, - "pid": "8780", - "type": "bf:Place" + "pid": "9952", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027224406" + } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/973066245" - }, - "pid": "8781", - "type": "bf:Place" + "pid": "9953", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027224651" + } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/973066261" - }, - "pid": "8782", - "type": "bf:Place" + "pid": "9954", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027224678" + } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/973071648" - }, - "pid": "8783", - "type": "bf:Place" + "pid": "9955", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027224694" + } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/97424225X" - }, - "pid": "8784", - "type": "bf:Place" + "pid": "9956", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027225488" + } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/974245747" - }, - "pid": "8785", - "type": "bf:Place" + "pid": "9957", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027226042" + } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/975328573" - }, - "pid": "8786", - "type": "bf:Place" + "pid": "9958", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027226794" + } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/975958925" - }, - "pid": "8787", - "type": "bf:Place" + "pid": "9959", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027227812" + } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/978923855" - }, - "pid": "8788", - "type": "bf:Place" + "pid": "9960", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027228428" + } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/978966228" - }, - "pid": "8789", - "type": "bf:Place" + "pid": "9961", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027228517" + } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/979131529" - }, - "pid": "8790", - "type": "bf:Place" + "pid": "9962", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027228959" + } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/980891248" - }, - "pid": "8791", - "type": "bf:Place" + "pid": "9963", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027229246" + } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/984645942" - }, - "pid": "8792", - "type": "bf:Place" + "pid": "9964", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/02722953X" + } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/985253576" - }, - "pid": "8793", - "type": "bf:Place" + "pid": "9965", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027230309" + } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/98831326X" - }, - "pid": "8794", - "type": "bf:Place" + "pid": "9966", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027230430" + } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/989505952" - }, - "pid": "8795", - "type": "bf:Place" + "pid": "9967", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027234002" + } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/992346371" - }, - "pid": "8796", - "type": "bf:Place" + "pid": "9968", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027234592" + } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/994536666" - }, - "pid": "8797", - "type": "bf:Place" + "pid": "9969", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027236536" + } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/995191506" - }, - "pid": "8798", - "type": "bf:Place" + "pid": "9970", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027236668" + } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/996155910" + "pid": "9971", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027237249" + } + }, + { + "pid": "9972", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027237664" + } + }, + { + "pid": "9973", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027238180" }, - "pid": "8799", - "type": "bf:Place" + "deleted": "2024-07-16T19:52:36.233702+00:00" + }, + { + "pid": "9974", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027239365" + } + }, + { + "pid": "9975", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027239497" + } + }, + { + "pid": "9976", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027241912" + } + }, + { + "pid": "9977", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027242005" + } + }, + { + "pid": "9978", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/02724301X" + } + }, + { + "pid": "9979", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027243222" + } + }, + { + "pid": "9980", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027244482" + } + }, + { + "pid": "9981", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027244520" + } + }, + { + "pid": "9982", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/02724606X" + } + }, + { + "pid": "9983", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027249654" + } + }, + { + "pid": "9984", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/02725030X" + } + }, + { + "pid": "9985", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027250504" + } + }, + { + "pid": "9986", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027250636" + } + }, + { + "pid": "9987", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027250644" + } + }, + { + "pid": "9988", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027250679" + } + }, + { + "pid": "9989", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027250911" + } + }, + { + "pid": "9990", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027250938" + } + }, + { + "pid": "9991", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/02725108X" + } }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/996588051" + "$ref": "https://mef.rero.ch/api/places/gnd/04062501X" }, - "pid": "8800", - "type": "bf:Place" + "pid": "9992", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027251411" + } + }, + { + "pid": "9993", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027251551" + } + }, + { + "pid": "9994", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027251659" + } + }, + { + "pid": "9995", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027252124" + } + }, + { + "pid": "9996", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027252272" + } + }, + { + "pid": "9997", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027252361" + } + }, + { + "pid": "9998", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027252388" + } + }, + { + "pid": "9999", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027252620" + } } ] \ No newline at end of file diff --git a/docker/wait-for-services.sh b/docker/wait-for-services.sh index 21f3040f..7da9d050 100755 --- a/docker/wait-for-services.sh +++ b/docker/wait-for-services.sh @@ -31,14 +31,14 @@ check_ready() { fi done } -_db_check(){ docker-compose exec --user postgres db bash -c "pg_isready" &>/dev/null; } +_db_check(){ docker compose exec --user postgres db bash -c "pg_isready" &>/dev/null; } check_ready "postgres" _db_check _es_check(){ [[ $(curl -sL -w "%{http_code}\\n" "http://localhost:9200/" -o /dev/null)==200 ]]; } check_ready "Elasticsearch" _es_check -_redis_check(){ [[ $(docker-compose exec cache bash -c "redis-cli ping")=="PONG" ]]; } +_redis_check(){ [[ $(docker compose exec cache bash -c "redis-cli ping")=="PONG" ]]; } check_ready "redis" _redis_check -_rabbit_check(){ docker-compose exec mq bash -c "rabbitmqctl status" &>/dev/null; } +_rabbit_check(){ docker compose exec mq bash -c "rabbitmqctl status" &>/dev/null; } check_ready "RabbitMQ" _rabbit_check diff --git a/poetry.lock b/poetry.lock index 735d3a29..f88d7557 100644 --- a/poetry.lock +++ b/poetry.lock @@ -105,22 +105,22 @@ files = [ [[package]] name = "attrs" -version = "23.2.0" +version = "24.2.0" description = "Classes Without Boilerplate" optional = false python-versions = ">=3.7" files = [ - {file = "attrs-23.2.0-py3-none-any.whl", hash = "sha256:99b87a485a5820b23b879f04c2305b44b951b502fd64be915879d77a7e8fc6f1"}, - {file = "attrs-23.2.0.tar.gz", hash = "sha256:935dc3b529c262f6cf76e50877d35a4bd3c1de194fd41f47a2b7ae8f19971f30"}, + {file = "attrs-24.2.0-py3-none-any.whl", hash = "sha256:81921eb96de3191c8258c199618104dd27ac608d9366f5e35d011eae1867ede2"}, + {file = "attrs-24.2.0.tar.gz", hash = "sha256:5cfb1b9148b5b086569baec03f20d7b6bf3bcacc9a42bebf87ffaaca362f6346"}, ] [package.extras] -cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] -dev = ["attrs[tests]", "pre-commit"] -docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] -tests = ["attrs[tests-no-zope]", "zope-interface"] -tests-mypy = ["mypy (>=1.6)", "pytest-mypy-plugins"] -tests-no-zope = ["attrs[tests-mypy]", "cloudpickle", "hypothesis", "pympler", "pytest (>=4.3.0)", "pytest-xdist[psutil]"] +benchmark = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-codspeed", "pytest-mypy-plugins", "pytest-xdist[psutil]"] +cov = ["cloudpickle", "coverage[toml] (>=5.3)", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] +dev = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pre-commit", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] +docs = ["cogapp", "furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier (<24.7)"] +tests = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] +tests-mypy = ["mypy (>=1.11.1)", "pytest-mypy-plugins"] [[package]] name = "autoflake" @@ -139,13 +139,13 @@ tomli = {version = ">=2.0.1", markers = "python_version < \"3.11\""} [[package]] name = "babel" -version = "2.15.0" +version = "2.16.0" description = "Internationalization utilities" optional = false python-versions = ">=3.8" files = [ - {file = "Babel-2.15.0-py3-none-any.whl", hash = "sha256:08706bdad8d0a3413266ab61bd6c34d0c28d6e1e7badf40a2cebe67644e2e1fb"}, - {file = "babel-2.15.0.tar.gz", hash = "sha256:8daf0e265d05768bc6c7a314cf1321e9a123afc328cc635c18622a2f30a04413"}, + {file = "babel-2.16.0-py3-none-any.whl", hash = "sha256:368b5b98b37c06b7daf6696391c3240c938b37767d4584413e8438c5c435fa8b"}, + {file = "babel-2.16.0.tar.gz", hash = "sha256:d1f3554ca26605fe173f3de0c65f750f5a42f924499bf134de6423582298e316"}, ] [package.extras] @@ -183,33 +183,33 @@ files = [ [[package]] name = "black" -version = "24.4.2" +version = "24.8.0" description = "The uncompromising code formatter." optional = false python-versions = ">=3.8" files = [ - {file = "black-24.4.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:dd1b5a14e417189db4c7b64a6540f31730713d173f0b63e55fabd52d61d8fdce"}, - {file = "black-24.4.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8e537d281831ad0e71007dcdcbe50a71470b978c453fa41ce77186bbe0ed6021"}, - {file = "black-24.4.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eaea3008c281f1038edb473c1aa8ed8143a5535ff18f978a318f10302b254063"}, - {file = "black-24.4.2-cp310-cp310-win_amd64.whl", hash = "sha256:7768a0dbf16a39aa5e9a3ded568bb545c8c2727396d063bbaf847df05b08cd96"}, - {file = "black-24.4.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:257d724c2c9b1660f353b36c802ccece186a30accc7742c176d29c146df6e474"}, - {file = "black-24.4.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:bdde6f877a18f24844e381d45e9947a49e97933573ac9d4345399be37621e26c"}, - {file = "black-24.4.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e151054aa00bad1f4e1f04919542885f89f5f7d086b8a59e5000e6c616896ffb"}, - {file = "black-24.4.2-cp311-cp311-win_amd64.whl", hash = "sha256:7e122b1c4fb252fd85df3ca93578732b4749d9be076593076ef4d07a0233c3e1"}, - {file = "black-24.4.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:accf49e151c8ed2c0cdc528691838afd217c50412534e876a19270fea1e28e2d"}, - {file = "black-24.4.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:88c57dc656038f1ab9f92b3eb5335ee9b021412feaa46330d5eba4e51fe49b04"}, - {file = "black-24.4.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:be8bef99eb46d5021bf053114442914baeb3649a89dc5f3a555c88737e5e98fc"}, - {file = "black-24.4.2-cp312-cp312-win_amd64.whl", hash = "sha256:415e686e87dbbe6f4cd5ef0fbf764af7b89f9057b97c908742b6008cc554b9c0"}, - {file = "black-24.4.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:bf10f7310db693bb62692609b397e8d67257c55f949abde4c67f9cc574492cc7"}, - {file = "black-24.4.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:98e123f1d5cfd42f886624d84464f7756f60ff6eab89ae845210631714f6db94"}, - {file = "black-24.4.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48a85f2cb5e6799a9ef05347b476cce6c182d6c71ee36925a6c194d074336ef8"}, - {file = "black-24.4.2-cp38-cp38-win_amd64.whl", hash = "sha256:b1530ae42e9d6d5b670a34db49a94115a64596bc77710b1d05e9801e62ca0a7c"}, - {file = "black-24.4.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:37aae07b029fa0174d39daf02748b379399b909652a806e5708199bd93899da1"}, - {file = "black-24.4.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:da33a1a5e49c4122ccdfd56cd021ff1ebc4a1ec4e2d01594fef9b6f267a9e741"}, - {file = "black-24.4.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ef703f83fc32e131e9bcc0a5094cfe85599e7109f896fe8bc96cc402f3eb4b6e"}, - {file = "black-24.4.2-cp39-cp39-win_amd64.whl", hash = "sha256:b9176b9832e84308818a99a561e90aa479e73c523b3f77afd07913380ae2eab7"}, - {file = "black-24.4.2-py3-none-any.whl", hash = "sha256:d36ed1124bb81b32f8614555b34cc4259c3fbc7eec17870e8ff8ded335b58d8c"}, - {file = "black-24.4.2.tar.gz", hash = "sha256:c872b53057f000085da66a19c55d68f6f8ddcac2642392ad3a355878406fbd4d"}, + {file = "black-24.8.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:09cdeb74d494ec023ded657f7092ba518e8cf78fa8386155e4a03fdcc44679e6"}, + {file = "black-24.8.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:81c6742da39f33b08e791da38410f32e27d632260e599df7245cccee2064afeb"}, + {file = "black-24.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:707a1ca89221bc8a1a64fb5e15ef39cd755633daa672a9db7498d1c19de66a42"}, + {file = "black-24.8.0-cp310-cp310-win_amd64.whl", hash = "sha256:d6417535d99c37cee4091a2f24eb2b6d5ec42b144d50f1f2e436d9fe1916fe1a"}, + {file = "black-24.8.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:fb6e2c0b86bbd43dee042e48059c9ad7830abd5c94b0bc518c0eeec57c3eddc1"}, + {file = "black-24.8.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:837fd281f1908d0076844bc2b801ad2d369c78c45cf800cad7b61686051041af"}, + {file = "black-24.8.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:62e8730977f0b77998029da7971fa896ceefa2c4c4933fcd593fa599ecbf97a4"}, + {file = "black-24.8.0-cp311-cp311-win_amd64.whl", hash = "sha256:72901b4913cbac8972ad911dc4098d5753704d1f3c56e44ae8dce99eecb0e3af"}, + {file = "black-24.8.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:7c046c1d1eeb7aea9335da62472481d3bbf3fd986e093cffd35f4385c94ae368"}, + {file = "black-24.8.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:649f6d84ccbae73ab767e206772cc2d7a393a001070a4c814a546afd0d423aed"}, + {file = "black-24.8.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:2b59b250fdba5f9a9cd9d0ece6e6d993d91ce877d121d161e4698af3eb9c1018"}, + {file = "black-24.8.0-cp312-cp312-win_amd64.whl", hash = "sha256:6e55d30d44bed36593c3163b9bc63bf58b3b30e4611e4d88a0c3c239930ed5b2"}, + {file = "black-24.8.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:505289f17ceda596658ae81b61ebbe2d9b25aa78067035184ed0a9d855d18afd"}, + {file = "black-24.8.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:b19c9ad992c7883ad84c9b22aaa73562a16b819c1d8db7a1a1a49fb7ec13c7d2"}, + {file = "black-24.8.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:1f13f7f386f86f8121d76599114bb8c17b69d962137fc70efe56137727c7047e"}, + {file = "black-24.8.0-cp38-cp38-win_amd64.whl", hash = "sha256:f490dbd59680d809ca31efdae20e634f3fae27fba3ce0ba3208333b713bc3920"}, + {file = "black-24.8.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:eab4dd44ce80dea27dc69db40dab62d4ca96112f87996bca68cd75639aeb2e4c"}, + {file = "black-24.8.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:3c4285573d4897a7610054af5a890bde7c65cb466040c5f0c8b732812d7f0e5e"}, + {file = "black-24.8.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9e84e33b37be070ba135176c123ae52a51f82306def9f7d063ee302ecab2cf47"}, + {file = "black-24.8.0-cp39-cp39-win_amd64.whl", hash = "sha256:73bbf84ed136e45d451a260c6b73ed674652f90a2b3211d6a35e78054563a9bb"}, + {file = "black-24.8.0-py3-none-any.whl", hash = "sha256:972085c618ee94f402da1af548a4f218c754ea7e5dc70acb168bfaca4c2542ed"}, + {file = "black-24.8.0.tar.gz", hash = "sha256:2500945420b6784c38b9ee885af039f5e7471ef284ab03fa35ecdde4688cd83f"}, ] [package.dependencies] @@ -258,13 +258,13 @@ files = [ [[package]] name = "build" -version = "1.2.1" +version = "1.2.2" description = "A simple, correct Python build frontend" optional = false python-versions = ">=3.8" files = [ - {file = "build-1.2.1-py3-none-any.whl", hash = "sha256:75e10f767a433d9a86e50d83f418e83efc18ede923ee5ff7df93b6cb0306c5d4"}, - {file = "build-1.2.1.tar.gz", hash = "sha256:526263f4870c26f26c433545579475377b2b7588b6f1eac76a001e873ae3e19d"}, + {file = "build-1.2.2-py3-none-any.whl", hash = "sha256:277ccc71619d98afdd841a0e96ac9fe1593b823af481d3b0cea748e8894e0613"}, + {file = "build-1.2.2.tar.gz", hash = "sha256:119b2fb462adef986483438377a13b2f42064a2a3a4161f24a0cca698a07ac8c"}, ] [package.dependencies] @@ -348,74 +348,89 @@ zstd = ["zstandard"] [[package]] name = "certifi" -version = "2024.7.4" +version = "2024.8.30" description = "Python package for providing Mozilla's CA Bundle." optional = false python-versions = ">=3.6" files = [ - {file = "certifi-2024.7.4-py3-none-any.whl", hash = "sha256:c198e21b1289c2ab85ee4e67bb4b4ef3ead0892059901a8d5b622f24a1101e90"}, - {file = "certifi-2024.7.4.tar.gz", hash = "sha256:5a1e7645bc0ec61a09e26c36f6106dd4cf40c6db3a1fb6352b0244e7fb057c7b"}, + {file = "certifi-2024.8.30-py3-none-any.whl", hash = "sha256:922820b53db7a7257ffbda3f597266d435245903d80737e34f8a45ff3e3230d8"}, + {file = "certifi-2024.8.30.tar.gz", hash = "sha256:bec941d2aa8195e248a60b31ff9f0558284cf01a52591ceda73ea9afffd69fd9"}, ] [[package]] name = "cffi" -version = "1.16.0" +version = "1.17.1" description = "Foreign Function Interface for Python calling C code." optional = false python-versions = ">=3.8" files = [ - {file = "cffi-1.16.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:6b3d6606d369fc1da4fd8c357d026317fbb9c9b75d36dc16e90e84c26854b088"}, - {file = "cffi-1.16.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ac0f5edd2360eea2f1daa9e26a41db02dd4b0451b48f7c318e217ee092a213e9"}, - {file = "cffi-1.16.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7e61e3e4fa664a8588aa25c883eab612a188c725755afff6289454d6362b9673"}, - {file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a72e8961a86d19bdb45851d8f1f08b041ea37d2bd8d4fd19903bc3083d80c896"}, - {file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5b50bf3f55561dac5438f8e70bfcdfd74543fd60df5fa5f62d94e5867deca684"}, - {file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7651c50c8c5ef7bdb41108b7b8c5a83013bfaa8a935590c5d74627c047a583c7"}, - {file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e4108df7fe9b707191e55f33efbcb2d81928e10cea45527879a4749cbe472614"}, - {file = "cffi-1.16.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:32c68ef735dbe5857c810328cb2481e24722a59a2003018885514d4c09af9743"}, - {file = "cffi-1.16.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:673739cb539f8cdaa07d92d02efa93c9ccf87e345b9a0b556e3ecc666718468d"}, - {file = "cffi-1.16.0-cp310-cp310-win32.whl", hash = "sha256:9f90389693731ff1f659e55c7d1640e2ec43ff725cc61b04b2f9c6d8d017df6a"}, - {file = "cffi-1.16.0-cp310-cp310-win_amd64.whl", hash = "sha256:e6024675e67af929088fda399b2094574609396b1decb609c55fa58b028a32a1"}, - {file = "cffi-1.16.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b84834d0cf97e7d27dd5b7f3aca7b6e9263c56308ab9dc8aae9784abb774d404"}, - {file = "cffi-1.16.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1b8ebc27c014c59692bb2664c7d13ce7a6e9a629be20e54e7271fa696ff2b417"}, - {file = "cffi-1.16.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ee07e47c12890ef248766a6e55bd38ebfb2bb8edd4142d56db91b21ea68b7627"}, - {file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8a9d3ebe49f084ad71f9269834ceccbf398253c9fac910c4fd7053ff1386936"}, - {file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e70f54f1796669ef691ca07d046cd81a29cb4deb1e5f942003f401c0c4a2695d"}, - {file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5bf44d66cdf9e893637896c7faa22298baebcd18d1ddb6d2626a6e39793a1d56"}, - {file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7b78010e7b97fef4bee1e896df8a4bbb6712b7f05b7ef630f9d1da00f6444d2e"}, - {file = "cffi-1.16.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:c6a164aa47843fb1b01e941d385aab7215563bb8816d80ff3a363a9f8448a8dc"}, - {file = "cffi-1.16.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e09f3ff613345df5e8c3667da1d918f9149bd623cd9070c983c013792a9a62eb"}, - {file = "cffi-1.16.0-cp311-cp311-win32.whl", hash = "sha256:2c56b361916f390cd758a57f2e16233eb4f64bcbeee88a4881ea90fca14dc6ab"}, - {file = "cffi-1.16.0-cp311-cp311-win_amd64.whl", hash = "sha256:db8e577c19c0fda0beb7e0d4e09e0ba74b1e4c092e0e40bfa12fe05b6f6d75ba"}, - {file = "cffi-1.16.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:fa3a0128b152627161ce47201262d3140edb5a5c3da88d73a1b790a959126956"}, - {file = "cffi-1.16.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:68e7c44931cc171c54ccb702482e9fc723192e88d25a0e133edd7aff8fcd1f6e"}, - {file = "cffi-1.16.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:abd808f9c129ba2beda4cfc53bde801e5bcf9d6e0f22f095e45327c038bfe68e"}, - {file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:88e2b3c14bdb32e440be531ade29d3c50a1a59cd4e51b1dd8b0865c54ea5d2e2"}, - {file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fcc8eb6d5902bb1cf6dc4f187ee3ea80a1eba0a89aba40a5cb20a5087d961357"}, - {file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b7be2d771cdba2942e13215c4e340bfd76398e9227ad10402a8767ab1865d2e6"}, - {file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e715596e683d2ce000574bae5d07bd522c781a822866c20495e52520564f0969"}, - {file = "cffi-1.16.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:2d92b25dbf6cae33f65005baf472d2c245c050b1ce709cc4588cdcdd5495b520"}, - {file = "cffi-1.16.0-cp312-cp312-win32.whl", hash = "sha256:b2ca4e77f9f47c55c194982e10f058db063937845bb2b7a86c84a6cfe0aefa8b"}, - {file = "cffi-1.16.0-cp312-cp312-win_amd64.whl", hash = "sha256:68678abf380b42ce21a5f2abde8efee05c114c2fdb2e9eef2efdb0257fba1235"}, - {file = "cffi-1.16.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0c9ef6ff37e974b73c25eecc13952c55bceed9112be2d9d938ded8e856138bcc"}, - {file = "cffi-1.16.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a09582f178759ee8128d9270cd1344154fd473bb77d94ce0aeb2a93ebf0feaf0"}, - {file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e760191dd42581e023a68b758769e2da259b5d52e3103c6060ddc02c9edb8d7b"}, - {file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80876338e19c951fdfed6198e70bc88f1c9758b94578d5a7c4c91a87af3cf31c"}, - {file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a6a14b17d7e17fa0d207ac08642c8820f84f25ce17a442fd15e27ea18d67c59b"}, - {file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6602bc8dc6f3a9e02b6c22c4fc1e47aa50f8f8e6d3f78a5e16ac33ef5fefa324"}, - {file = "cffi-1.16.0-cp38-cp38-win32.whl", hash = "sha256:131fd094d1065b19540c3d72594260f118b231090295d8c34e19a7bbcf2e860a"}, - {file = "cffi-1.16.0-cp38-cp38-win_amd64.whl", hash = "sha256:31d13b0f99e0836b7ff893d37af07366ebc90b678b6664c955b54561fc36ef36"}, - {file = "cffi-1.16.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:582215a0e9adbe0e379761260553ba11c58943e4bbe9c36430c4ca6ac74b15ed"}, - {file = "cffi-1.16.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:b29ebffcf550f9da55bec9e02ad430c992a87e5f512cd63388abb76f1036d8d2"}, - {file = "cffi-1.16.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dc9b18bf40cc75f66f40a7379f6a9513244fe33c0e8aa72e2d56b0196a7ef872"}, - {file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9cb4a35b3642fc5c005a6755a5d17c6c8b6bcb6981baf81cea8bfbc8903e8ba8"}, - {file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b86851a328eedc692acf81fb05444bdf1891747c25af7529e39ddafaf68a4f3f"}, - {file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c0f31130ebc2d37cdd8e44605fb5fa7ad59049298b3f745c74fa74c62fbfcfc4"}, - {file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8f8e709127c6c77446a8c0a8c8bf3c8ee706a06cd44b1e827c3e6a2ee6b8c098"}, - {file = "cffi-1.16.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:748dcd1e3d3d7cd5443ef03ce8685043294ad6bd7c02a38d1bd367cfd968e000"}, - {file = "cffi-1.16.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:8895613bcc094d4a1b2dbe179d88d7fb4a15cee43c052e8885783fac397d91fe"}, - {file = "cffi-1.16.0-cp39-cp39-win32.whl", hash = "sha256:ed86a35631f7bfbb28e108dd96773b9d5a6ce4811cf6ea468bb6a359b256b1e4"}, - {file = "cffi-1.16.0-cp39-cp39-win_amd64.whl", hash = "sha256:3686dffb02459559c74dd3d81748269ffb0eb027c39a6fc99502de37d501faa8"}, - {file = "cffi-1.16.0.tar.gz", hash = "sha256:bcb3ef43e58665bbda2fb198698fcae6776483e0c4a631aa5647806c25e02cc0"}, + {file = "cffi-1.17.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:df8b1c11f177bc2313ec4b2d46baec87a5f3e71fc8b45dab2ee7cae86d9aba14"}, + {file = "cffi-1.17.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8f2cdc858323644ab277e9bb925ad72ae0e67f69e804f4898c070998d50b1a67"}, + {file = "cffi-1.17.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:edae79245293e15384b51f88b00613ba9f7198016a5948b5dddf4917d4d26382"}, + {file = "cffi-1.17.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:45398b671ac6d70e67da8e4224a065cec6a93541bb7aebe1b198a61b58c7b702"}, + {file = "cffi-1.17.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ad9413ccdeda48c5afdae7e4fa2192157e991ff761e7ab8fdd8926f40b160cc3"}, + {file = "cffi-1.17.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5da5719280082ac6bd9aa7becb3938dc9f9cbd57fac7d2871717b1feb0902ab6"}, + {file = "cffi-1.17.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2bb1a08b8008b281856e5971307cc386a8e9c5b625ac297e853d36da6efe9c17"}, + {file = "cffi-1.17.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:045d61c734659cc045141be4bae381a41d89b741f795af1dd018bfb532fd0df8"}, + {file = "cffi-1.17.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:6883e737d7d9e4899a8a695e00ec36bd4e5e4f18fabe0aca0efe0a4b44cdb13e"}, + {file = "cffi-1.17.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:6b8b4a92e1c65048ff98cfe1f735ef8f1ceb72e3d5f0c25fdb12087a23da22be"}, + {file = "cffi-1.17.1-cp310-cp310-win32.whl", hash = "sha256:c9c3d058ebabb74db66e431095118094d06abf53284d9c81f27300d0e0d8bc7c"}, + {file = "cffi-1.17.1-cp310-cp310-win_amd64.whl", hash = "sha256:0f048dcf80db46f0098ccac01132761580d28e28bc0f78ae0d58048063317e15"}, + {file = "cffi-1.17.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:a45e3c6913c5b87b3ff120dcdc03f6131fa0065027d0ed7ee6190736a74cd401"}, + {file = "cffi-1.17.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:30c5e0cb5ae493c04c8b42916e52ca38079f1b235c2f8ae5f4527b963c401caf"}, + {file = "cffi-1.17.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f75c7ab1f9e4aca5414ed4d8e5c0e303a34f4421f8a0d47a4d019ceff0ab6af4"}, + {file = "cffi-1.17.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a1ed2dd2972641495a3ec98445e09766f077aee98a1c896dcb4ad0d303628e41"}, + {file = "cffi-1.17.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:46bf43160c1a35f7ec506d254e5c890f3c03648a4dbac12d624e4490a7046cd1"}, + {file = "cffi-1.17.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a24ed04c8ffd54b0729c07cee15a81d964e6fee0e3d4d342a27b020d22959dc6"}, + {file = "cffi-1.17.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:610faea79c43e44c71e1ec53a554553fa22321b65fae24889706c0a84d4ad86d"}, + {file = "cffi-1.17.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:a9b15d491f3ad5d692e11f6b71f7857e7835eb677955c00cc0aefcd0669adaf6"}, + {file = "cffi-1.17.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:de2ea4b5833625383e464549fec1bc395c1bdeeb5f25c4a3a82b5a8c756ec22f"}, + {file = "cffi-1.17.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:fc48c783f9c87e60831201f2cce7f3b2e4846bf4d8728eabe54d60700b318a0b"}, + {file = "cffi-1.17.1-cp311-cp311-win32.whl", hash = "sha256:85a950a4ac9c359340d5963966e3e0a94a676bd6245a4b55bc43949eee26a655"}, + {file = "cffi-1.17.1-cp311-cp311-win_amd64.whl", hash = "sha256:caaf0640ef5f5517f49bc275eca1406b0ffa6aa184892812030f04c2abf589a0"}, + {file = "cffi-1.17.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:805b4371bf7197c329fcb3ead37e710d1bca9da5d583f5073b799d5c5bd1eee4"}, + {file = "cffi-1.17.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:733e99bc2df47476e3848417c5a4540522f234dfd4ef3ab7fafdf555b082ec0c"}, + {file = "cffi-1.17.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1257bdabf294dceb59f5e70c64a3e2f462c30c7ad68092d01bbbfb1c16b1ba36"}, + {file = "cffi-1.17.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:da95af8214998d77a98cc14e3a3bd00aa191526343078b530ceb0bd710fb48a5"}, + {file = "cffi-1.17.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d63afe322132c194cf832bfec0dc69a99fb9bb6bbd550f161a49e9e855cc78ff"}, + {file = "cffi-1.17.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f79fc4fc25f1c8698ff97788206bb3c2598949bfe0fef03d299eb1b5356ada99"}, + {file = "cffi-1.17.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b62ce867176a75d03a665bad002af8e6d54644fad99a3c70905c543130e39d93"}, + {file = "cffi-1.17.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:386c8bf53c502fff58903061338ce4f4950cbdcb23e2902d86c0f722b786bbe3"}, + {file = "cffi-1.17.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:4ceb10419a9adf4460ea14cfd6bc43d08701f0835e979bf821052f1805850fe8"}, + {file = "cffi-1.17.1-cp312-cp312-win32.whl", hash = "sha256:a08d7e755f8ed21095a310a693525137cfe756ce62d066e53f502a83dc550f65"}, + {file = "cffi-1.17.1-cp312-cp312-win_amd64.whl", hash = "sha256:51392eae71afec0d0c8fb1a53b204dbb3bcabcb3c9b807eedf3e1e6ccf2de903"}, + {file = "cffi-1.17.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:f3a2b4222ce6b60e2e8b337bb9596923045681d71e5a082783484d845390938e"}, + {file = "cffi-1.17.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:0984a4925a435b1da406122d4d7968dd861c1385afe3b45ba82b750f229811e2"}, + {file = "cffi-1.17.1-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d01b12eeeb4427d3110de311e1774046ad344f5b1a7403101878976ecd7a10f3"}, + {file = "cffi-1.17.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:706510fe141c86a69c8ddc029c7910003a17353970cff3b904ff0686a5927683"}, + {file = "cffi-1.17.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:de55b766c7aa2e2a3092c51e0483d700341182f08e67c63630d5b6f200bb28e5"}, + {file = "cffi-1.17.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c59d6e989d07460165cc5ad3c61f9fd8f1b4796eacbd81cee78957842b834af4"}, + {file = "cffi-1.17.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd398dbc6773384a17fe0d3e7eeb8d1a21c2200473ee6806bb5e6a8e62bb73dd"}, + {file = "cffi-1.17.1-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:3edc8d958eb099c634dace3c7e16560ae474aa3803a5df240542b305d14e14ed"}, + {file = "cffi-1.17.1-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:72e72408cad3d5419375fc87d289076ee319835bdfa2caad331e377589aebba9"}, + {file = "cffi-1.17.1-cp313-cp313-win32.whl", hash = "sha256:e03eab0a8677fa80d646b5ddece1cbeaf556c313dcfac435ba11f107ba117b5d"}, + {file = "cffi-1.17.1-cp313-cp313-win_amd64.whl", hash = "sha256:f6a16c31041f09ead72d69f583767292f750d24913dadacf5756b966aacb3f1a"}, + {file = "cffi-1.17.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:636062ea65bd0195bc012fea9321aca499c0504409f413dc88af450b57ffd03b"}, + {file = "cffi-1.17.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c7eac2ef9b63c79431bc4b25f1cd649d7f061a28808cbc6c47b534bd789ef964"}, + {file = "cffi-1.17.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e221cf152cff04059d011ee126477f0d9588303eb57e88923578ace7baad17f9"}, + {file = "cffi-1.17.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:31000ec67d4221a71bd3f67df918b1f88f676f1c3b535a7eb473255fdc0b83fc"}, + {file = "cffi-1.17.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6f17be4345073b0a7b8ea599688f692ac3ef23ce28e5df79c04de519dbc4912c"}, + {file = "cffi-1.17.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0e2b1fac190ae3ebfe37b979cc1ce69c81f4e4fe5746bb401dca63a9062cdaf1"}, + {file = "cffi-1.17.1-cp38-cp38-win32.whl", hash = "sha256:7596d6620d3fa590f677e9ee430df2958d2d6d6de2feeae5b20e82c00b76fbf8"}, + {file = "cffi-1.17.1-cp38-cp38-win_amd64.whl", hash = "sha256:78122be759c3f8a014ce010908ae03364d00a1f81ab5c7f4a7a5120607ea56e1"}, + {file = "cffi-1.17.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:b2ab587605f4ba0bf81dc0cb08a41bd1c0a5906bd59243d56bad7668a6fc6c16"}, + {file = "cffi-1.17.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:28b16024becceed8c6dfbc75629e27788d8a3f9030691a1dbf9821a128b22c36"}, + {file = "cffi-1.17.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1d599671f396c4723d016dbddb72fe8e0397082b0a77a4fab8028923bec050e8"}, + {file = "cffi-1.17.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ca74b8dbe6e8e8263c0ffd60277de77dcee6c837a3d0881d8c1ead7268c9e576"}, + {file = "cffi-1.17.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f7f5baafcc48261359e14bcd6d9bff6d4b28d9103847c9e136694cb0501aef87"}, + {file = "cffi-1.17.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:98e3969bcff97cae1b2def8ba499ea3d6f31ddfdb7635374834cf89a1a08ecf0"}, + {file = "cffi-1.17.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cdf5ce3acdfd1661132f2a9c19cac174758dc2352bfe37d98aa7512c6b7178b3"}, + {file = "cffi-1.17.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:9755e4345d1ec879e3849e62222a18c7174d65a6a92d5b346b1863912168b595"}, + {file = "cffi-1.17.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f1e22e8c4419538cb197e4dd60acc919d7696e5ef98ee4da4e01d3f8cfa4cc5a"}, + {file = "cffi-1.17.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:c03e868a0b3bc35839ba98e74211ed2b05d2119be4e8a0f224fba9384f1fe02e"}, + {file = "cffi-1.17.1-cp39-cp39-win32.whl", hash = "sha256:e31ae45bc2e29f6b2abd0de1cc3b9d5205aa847cafaecb8af1476a609a2f6eb7"}, + {file = "cffi-1.17.1-cp39-cp39-win_amd64.whl", hash = "sha256:d016c76bdd850f3c626af19b0542c9677ba156e4ee4fccfdd7848803533ef662"}, + {file = "cffi-1.17.1.tar.gz", hash = "sha256:1c39c6016c32bc48dd54561950ebd6836e1670f2ae46128f67cf49e789c52824"}, ] [package.dependencies] @@ -696,38 +711,38 @@ toml = ["toml"] [[package]] name = "cryptography" -version = "43.0.0" +version = "43.0.1" description = "cryptography is a package which provides cryptographic recipes and primitives to Python developers." optional = false python-versions = ">=3.7" files = [ - {file = "cryptography-43.0.0-cp37-abi3-macosx_10_9_universal2.whl", hash = "sha256:64c3f16e2a4fc51c0d06af28441881f98c5d91009b8caaff40cf3548089e9c74"}, - {file = "cryptography-43.0.0-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3dcdedae5c7710b9f97ac6bba7e1052b95c7083c9d0e9df96e02a1932e777895"}, - {file = "cryptography-43.0.0-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3d9a1eca329405219b605fac09ecfc09ac09e595d6def650a437523fcd08dd22"}, - {file = "cryptography-43.0.0-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:ea9e57f8ea880eeea38ab5abf9fbe39f923544d7884228ec67d666abd60f5a47"}, - {file = "cryptography-43.0.0-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:9a8d6802e0825767476f62aafed40532bd435e8a5f7d23bd8b4f5fd04cc80ecf"}, - {file = "cryptography-43.0.0-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:cc70b4b581f28d0a254d006f26949245e3657d40d8857066c2ae22a61222ef55"}, - {file = "cryptography-43.0.0-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:4a997df8c1c2aae1e1e5ac49c2e4f610ad037fc5a3aadc7b64e39dea42249431"}, - {file = "cryptography-43.0.0-cp37-abi3-win32.whl", hash = "sha256:6e2b11c55d260d03a8cf29ac9b5e0608d35f08077d8c087be96287f43af3ccdc"}, - {file = "cryptography-43.0.0-cp37-abi3-win_amd64.whl", hash = "sha256:31e44a986ceccec3d0498e16f3d27b2ee5fdf69ce2ab89b52eaad1d2f33d8778"}, - {file = "cryptography-43.0.0-cp39-abi3-macosx_10_9_universal2.whl", hash = "sha256:7b3f5fe74a5ca32d4d0f302ffe6680fcc5c28f8ef0dc0ae8f40c0f3a1b4fca66"}, - {file = "cryptography-43.0.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ac1955ce000cb29ab40def14fd1bbfa7af2017cca696ee696925615cafd0dce5"}, - {file = "cryptography-43.0.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:299d3da8e00b7e2b54bb02ef58d73cd5f55fb31f33ebbf33bd00d9aa6807df7e"}, - {file = "cryptography-43.0.0-cp39-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:ee0c405832ade84d4de74b9029bedb7b31200600fa524d218fc29bfa371e97f5"}, - {file = "cryptography-43.0.0-cp39-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:cb013933d4c127349b3948aa8aaf2f12c0353ad0eccd715ca789c8a0f671646f"}, - {file = "cryptography-43.0.0-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:fdcb265de28585de5b859ae13e3846a8e805268a823a12a4da2597f1f5afc9f0"}, - {file = "cryptography-43.0.0-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:2905ccf93a8a2a416f3ec01b1a7911c3fe4073ef35640e7ee5296754e30b762b"}, - {file = "cryptography-43.0.0-cp39-abi3-win32.whl", hash = "sha256:47ca71115e545954e6c1d207dd13461ab81f4eccfcb1345eac874828b5e3eaaf"}, - {file = "cryptography-43.0.0-cp39-abi3-win_amd64.whl", hash = "sha256:0663585d02f76929792470451a5ba64424acc3cd5227b03921dab0e2f27b1709"}, - {file = "cryptography-43.0.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:2c6d112bf61c5ef44042c253e4859b3cbbb50df2f78fa8fae6747a7814484a70"}, - {file = "cryptography-43.0.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:844b6d608374e7d08f4f6e6f9f7b951f9256db41421917dfb2d003dde4cd6b66"}, - {file = "cryptography-43.0.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:51956cf8730665e2bdf8ddb8da0056f699c1a5715648c1b0144670c1ba00b48f"}, - {file = "cryptography-43.0.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:aae4d918f6b180a8ab8bf6511a419473d107df4dbb4225c7b48c5c9602c38c7f"}, - {file = "cryptography-43.0.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:232ce02943a579095a339ac4b390fbbe97f5b5d5d107f8a08260ea2768be8cc2"}, - {file = "cryptography-43.0.0-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:5bcb8a5620008a8034d39bce21dc3e23735dfdb6a33a06974739bfa04f853947"}, - {file = "cryptography-43.0.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:08a24a7070b2b6804c1940ff0f910ff728932a9d0e80e7814234269f9d46d069"}, - {file = "cryptography-43.0.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:e9c5266c432a1e23738d178e51c2c7a5e2ddf790f248be939448c0ba2021f9d1"}, - {file = "cryptography-43.0.0.tar.gz", hash = "sha256:b88075ada2d51aa9f18283532c9f60e72170041bba88d7f37e49cbb10275299e"}, + {file = "cryptography-43.0.1-cp37-abi3-macosx_10_9_universal2.whl", hash = "sha256:8385d98f6a3bf8bb2d65a73e17ed87a3ba84f6991c155691c51112075f9ffc5d"}, + {file = "cryptography-43.0.1-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:27e613d7077ac613e399270253259d9d53872aaf657471473ebfc9a52935c062"}, + {file = "cryptography-43.0.1-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:68aaecc4178e90719e95298515979814bda0cbada1256a4485414860bd7ab962"}, + {file = "cryptography-43.0.1-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:de41fd81a41e53267cb020bb3a7212861da53a7d39f863585d13ea11049cf277"}, + {file = "cryptography-43.0.1-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:f98bf604c82c416bc829e490c700ca1553eafdf2912a91e23a79d97d9801372a"}, + {file = "cryptography-43.0.1-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:61ec41068b7b74268fa86e3e9e12b9f0c21fcf65434571dbb13d954bceb08042"}, + {file = "cryptography-43.0.1-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:014f58110f53237ace6a408b5beb6c427b64e084eb451ef25a28308270086494"}, + {file = "cryptography-43.0.1-cp37-abi3-win32.whl", hash = "sha256:2bd51274dcd59f09dd952afb696bf9c61a7a49dfc764c04dd33ef7a6b502a1e2"}, + {file = "cryptography-43.0.1-cp37-abi3-win_amd64.whl", hash = "sha256:666ae11966643886c2987b3b721899d250855718d6d9ce41b521252a17985f4d"}, + {file = "cryptography-43.0.1-cp39-abi3-macosx_10_9_universal2.whl", hash = "sha256:ac119bb76b9faa00f48128b7f5679e1d8d437365c5d26f1c2c3f0da4ce1b553d"}, + {file = "cryptography-43.0.1-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1bbcce1a551e262dfbafb6e6252f1ae36a248e615ca44ba302df077a846a8806"}, + {file = "cryptography-43.0.1-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:58d4e9129985185a06d849aa6df265bdd5a74ca6e1b736a77959b498e0505b85"}, + {file = "cryptography-43.0.1-cp39-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:d03a475165f3134f773d1388aeb19c2d25ba88b6a9733c5c590b9ff7bbfa2e0c"}, + {file = "cryptography-43.0.1-cp39-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:511f4273808ab590912a93ddb4e3914dfd8a388fed883361b02dea3791f292e1"}, + {file = "cryptography-43.0.1-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:80eda8b3e173f0f247f711eef62be51b599b5d425c429b5d4ca6a05e9e856baa"}, + {file = "cryptography-43.0.1-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:38926c50cff6f533f8a2dae3d7f19541432610d114a70808f0926d5aaa7121e4"}, + {file = "cryptography-43.0.1-cp39-abi3-win32.whl", hash = "sha256:a575913fb06e05e6b4b814d7f7468c2c660e8bb16d8d5a1faf9b33ccc569dd47"}, + {file = "cryptography-43.0.1-cp39-abi3-win_amd64.whl", hash = "sha256:d75601ad10b059ec832e78823b348bfa1a59f6b8d545db3a24fd44362a1564cb"}, + {file = "cryptography-43.0.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:ea25acb556320250756e53f9e20a4177515f012c9eaea17eb7587a8c4d8ae034"}, + {file = "cryptography-43.0.1-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:c1332724be35d23a854994ff0b66530119500b6053d0bd3363265f7e5e77288d"}, + {file = "cryptography-43.0.1-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:fba1007b3ef89946dbbb515aeeb41e30203b004f0b4b00e5e16078b518563289"}, + {file = "cryptography-43.0.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:5b43d1ea6b378b54a1dc99dd8a2b5be47658fe9a7ce0a58ff0b55f4b43ef2b84"}, + {file = "cryptography-43.0.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:88cce104c36870d70c49c7c8fd22885875d950d9ee6ab54df2745f83ba0dc365"}, + {file = "cryptography-43.0.1-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:9d3cdb25fa98afdd3d0892d132b8d7139e2c087da1712041f6b762e4f807cc96"}, + {file = "cryptography-43.0.1-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:e710bf40870f4db63c3d7d929aa9e09e4e7ee219e703f949ec4073b4294f6172"}, + {file = "cryptography-43.0.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:7c05650fe8023c5ed0d46793d4b7d7e6cd9c04e68eabe5b0aeea836e37bdcec2"}, + {file = "cryptography-43.0.1.tar.gz", hash = "sha256:203e92a75716d8cfb491dc47c79e17d0d9207ccffcbcb35f598fbe463ae3444d"}, ] [package.dependencies] @@ -740,7 +755,7 @@ nox = ["nox"] pep8test = ["check-sdist", "click", "mypy", "ruff"] sdist = ["build"] ssh = ["bcrypt (>=3.1.5)"] -test = ["certifi", "cryptography-vectors (==43.0.0)", "pretend", "pytest (>=6.2.0)", "pytest-benchmark", "pytest-cov", "pytest-xdist"] +test = ["certifi", "cryptography-vectors (==43.0.1)", "pretend", "pytest (>=6.2.0)", "pytest-benchmark", "pytest-cov", "pytest-xdist"] test-randomorder = ["pytest-randomly"] [[package]] @@ -948,13 +963,13 @@ test = ["pytest (>=6)"] [[package]] name = "executing" -version = "2.0.1" +version = "2.1.0" description = "Get the currently executing AST node of a frame, and other information" optional = false -python-versions = ">=3.5" +python-versions = ">=3.8" files = [ - {file = "executing-2.0.1-py2.py3-none-any.whl", hash = "sha256:eac49ca94516ccc753f9fb5ce82603156e590b27525a8bc32cce8ae302eb61bc"}, - {file = "executing-2.0.1.tar.gz", hash = "sha256:35afe2ce3affba8ee97f2d69927fa823b08b472b7b994e36a52a964b93d16147"}, + {file = "executing-2.1.0-py2.py3-none-any.whl", hash = "sha256:8d63781349375b5ebccc3142f4b30350c0cd9c79f921cde38be2be4637e98eaf"}, + {file = "executing-2.1.0.tar.gz", hash = "sha256:8ea27ddd260da8150fa5a708269c4a10e76161e2496ec3e587da9e3c0fe4b9ab"}, ] [package.extras] @@ -1089,13 +1104,13 @@ tests = ["black (>=21.9b0)", "check-manifest (>=0.42)", "coverage (>=5.3,<6)", " [[package]] name = "flask-cors" -version = "4.0.1" +version = "5.0.0" description = "A Flask extension adding a decorator for CORS support" optional = false python-versions = "*" files = [ - {file = "Flask_Cors-4.0.1-py2.py3-none-any.whl", hash = "sha256:f2a704e4458665580c074b714c4627dd5a306b333deb9074d0b1794dfa2fb677"}, - {file = "flask_cors-4.0.1.tar.gz", hash = "sha256:eeb69b342142fdbf4766ad99357a7f3876a2ceb77689dc10ff912aac06c389e4"}, + {file = "Flask_Cors-5.0.0-py2.py3-none-any.whl", hash = "sha256:b9e307d082a9261c100d8fb0ba909eec6a228ed1b60a8315fd85f783d61910bc"}, + {file = "flask_cors-5.0.0.tar.gz", hash = "sha256:5aadb4b950c4e93745034594d9f3ea6591f734bb3662e16e255ffbf5e89c88ef"}, ] [package.dependencies] @@ -1246,18 +1261,19 @@ tests = ["Flask-SQLAlchemy (>=2.5.1)", "Flask-Sphinx-Themes (>=1.0.2)", "Werkzeu [[package]] name = "flask-shell-ipython" -version = "0.5.1" +version = "0.5.3" description = "Replace default `flask shell` command by similar command running IPython." optional = false -python-versions = ">=3.6, <4" +python-versions = "<4.0,>=3.8" files = [ - {file = "flask_shell_ipython-0.5.1-py2.py3-none-any.whl", hash = "sha256:8c948c0721bcc5b8eb274e1831c8a428dfc693099609c33d2f330091782cce10"}, + {file = "flask_shell_ipython-0.5.3-py3-none-any.whl", hash = "sha256:c0a1905671ba7223d36e59854e7900832a0febf127e5c01793377af878560ebd"}, + {file = "flask_shell_ipython-0.5.3.tar.gz", hash = "sha256:1a8bb90da18c34d15bc4ad817820101fffa93507a7eb685532ed518aea280848"}, ] [package.dependencies] click = "*" -Flask = ">=1.0" -IPython = ">=5.0.0" +flask = ">=1.0" +ipython = ">=5.0.0" [[package]] name = "flask-sqlalchemy" @@ -1330,13 +1346,13 @@ email = ["email-validator"] [[package]] name = "ftfy" -version = "6.2.0" +version = "6.2.3" description = "Fixes mojibake and other problems with Unicode, after the fact" optional = false -python-versions = ">=3.8,<4" +python-versions = "<4,>=3.8.1" files = [ - {file = "ftfy-6.2.0-py3-none-any.whl", hash = "sha256:f94a2c34b76e07475720e3096f5ca80911d152406fbde66fdb45c4d0c9150026"}, - {file = "ftfy-6.2.0.tar.gz", hash = "sha256:5e42143c7025ef97944ca2619d6b61b0619fc6654f98771d39e862c1424c75c0"}, + {file = "ftfy-6.2.3-py3-none-any.whl", hash = "sha256:f15761b023f3061a66207d33f0c0149ad40a8319fd16da91796363e2c049fdf8"}, + {file = "ftfy-6.2.3.tar.gz", hash = "sha256:79b505988f29d577a58a9069afe75553a02a46e42de6091c0660cdc67812badc"}, ] [package.dependencies] @@ -1447,13 +1463,13 @@ test = ["objgraph", "psutil"] [[package]] name = "idna" -version = "3.7" +version = "3.8" description = "Internationalized Domain Names in Applications (IDNA)" optional = false -python-versions = ">=3.5" +python-versions = ">=3.6" files = [ - {file = "idna-3.7-py3-none-any.whl", hash = "sha256:82fee1fc78add43492d3a1898bfa6d8a904cc97d8427f683ed8e798d07761aa0"}, - {file = "idna-3.7.tar.gz", hash = "sha256:028ff3aadf0609c1fd278d8ea3089299412a7a8b9bd005dd08b9f8285bcb5cfc"}, + {file = "idna-3.8-py3-none-any.whl", hash = "sha256:050b4e5baadcd44d760cedbd2b8e639f2ff89bbc7a5730fcc662954303377aac"}, + {file = "idna-3.8.tar.gz", hash = "sha256:d838c2c0ed6fced7693d5e8ab8e734d5f8fda53a039c0164afb0b82e771e3603"}, ] [[package]] @@ -1572,13 +1588,13 @@ files = [ [[package]] name = "importlib-metadata" -version = "8.1.0" +version = "8.4.0" description = "Read metadata from Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "importlib_metadata-8.1.0-py3-none-any.whl", hash = "sha256:3cd29f739ed65973840b068e3132135ce954c254d48b5b640484467ef7ab3c8c"}, - {file = "importlib_metadata-8.1.0.tar.gz", hash = "sha256:fcdcb1d5ead7bdf3dd32657bb94ebe9d2aabfe89a19782ddc32da5041d6ebfb4"}, + {file = "importlib_metadata-8.4.0-py3-none-any.whl", hash = "sha256:66f342cc6ac9818fc6ff340576acd24d65ba0b3efabb2b4ac08b598965a4a2f1"}, + {file = "importlib_metadata-8.4.0.tar.gz", hash = "sha256:9a547d3bc3608b025f93d403fdd1aae741c24fbb8314df4b155675742ce303c5"}, ] [package.dependencies] @@ -1591,21 +1607,25 @@ test = ["flufl.flake8", "importlib-resources (>=1.3)", "jaraco.test (>=5.4)", "p [[package]] name = "importlib-resources" -version = "6.4.0" +version = "6.4.5" description = "Read resources from Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "importlib_resources-6.4.0-py3-none-any.whl", hash = "sha256:50d10f043df931902d4194ea07ec57960f66a80449ff867bfe782b4c486ba78c"}, - {file = "importlib_resources-6.4.0.tar.gz", hash = "sha256:cdb2b453b8046ca4e3798eb1d84f3cce1446a0e8e7b5ef4efb600f19fc398145"}, + {file = "importlib_resources-6.4.5-py3-none-any.whl", hash = "sha256:ac29d5f956f01d5e4bb63102a5a19957f1b9175e45649977264a1416783bb717"}, + {file = "importlib_resources-6.4.5.tar.gz", hash = "sha256:980862a1d16c9e147a59603677fa2aa5fd82b87f223b6cb870695bcfce830065"}, ] [package.dependencies] zipp = {version = ">=3.1.0", markers = "python_version < \"3.10\""} [package.extras] -docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (<7.2.5)", "sphinx (>=3.5)", "sphinx-lint"] -testing = ["jaraco.test (>=5.4)", "pytest (>=6)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-mypy", "pytest-ruff (>=0.2.1)", "zipp (>=3.17)"] +check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)"] +cover = ["pytest-cov"] +doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] +enabler = ["pytest-enabler (>=2.2)"] +test = ["jaraco.test (>=5.4)", "pytest (>=6,!=8.1.*)", "zipp (>=3.17)"] +type = ["pytest-mypy"] [[package]] name = "infinity" @@ -1896,13 +1916,13 @@ tests = ["CairoSVG (>=1.0.20)", "Pillow (>=10.0.0)", "Sphinx (>=1.8.0)", "mock ( [[package]] name = "invenio-i18n" -version = "2.1.1" +version = "2.1.2" description = "Invenio internationalization (I18N) module." optional = false python-versions = ">=3.7" files = [ - {file = "invenio-i18n-2.1.1.tar.gz", hash = "sha256:915e011a22acfe71e83a4c1bf8ab2a7a064d977b28ba631ede0e0ab2aa0cb592"}, - {file = "invenio_i18n-2.1.1-py2.py3-none-any.whl", hash = "sha256:057a2d67b3453a7dd2e7d70881074ed5c4dc983615472467cb6b5057366246fa"}, + {file = "invenio-i18n-2.1.2.tar.gz", hash = "sha256:6f39224abb3e26c32d670ba1828f4d147acc0e8cca0671ce66862a5264ce75ef"}, + {file = "invenio_i18n-2.1.2-py2.py3-none-any.whl", hash = "sha256:ca66b3d226f963d765c71c7fcbbf7ff2f5977db3cd0b84893073bda4655f99a9"}, ] [package.dependencies] @@ -2190,13 +2210,13 @@ tests = ["Flask-Login (>=0.3.2)", "citeproc-py (>=0.6.0)", "citeproc-py-styles ( [[package]] name = "invenio-records-ui" -version = "1.2.0" -description = "User interface for Invenio-Records." +version = "1.2.1" +description = "\"User interface for Invenio-Records.\"" optional = false -python-versions = "*" +python-versions = ">=3.7" files = [ - {file = "invenio-records-ui-1.2.0.tar.gz", hash = "sha256:d465ed33645712f4c6144836ffca80f3773e7aec3ef596a9f95bafc14535335b"}, - {file = "invenio_records_ui-1.2.0-py2.py3-none-any.whl", hash = "sha256:2e4adc70fc2f257828c6ea99199bac55d013c7922a5e2cb3d652441304e82fd3"}, + {file = "invenio-records-ui-1.2.1.tar.gz", hash = "sha256:bf3ce5498e7300b8577a20fff502ddb22287f2648ccd9b267f12db0d417fc966"}, + {file = "invenio_records_ui-1.2.1-py2.py3-none-any.whl", hash = "sha256:eae21ceb4d95460699ea586c0bb0a48b64bd4a91f3ab2c8bf8effd41e3aa5b0c"}, ] [package.dependencies] @@ -2206,9 +2226,7 @@ invenio-pidstore = ">=1.2.0" invenio-records = ">=1.0.0" [package.extras] -all = ["Sphinx (>=1.5.1)", "invenio-access (>=1.0.0)", "invenio-accounts (>=1.3.0)", "invenio-db[mysql,postgresql,versioning] (>=1.0.0)", "pytest-invenio (>=1.4.0)"] -docs = ["Sphinx (>=1.5.1)"] -tests = ["invenio-access (>=1.0.0)", "invenio-accounts (>=1.3.0)", "invenio-db[mysql,postgresql,versioning] (>=1.0.0)", "pytest-invenio (>=1.4.0)"] +tests = ["invenio-access (>=1.0.0)", "invenio-accounts (>=1.3.0)", "invenio-db[mysql,postgresql,versioning] (>=1.0.0)", "pytest-black (>=0.3.0,<0.3.10)", "pytest-invenio (>=1.4.0)", "sphinx (>=4.5)"] [[package]] name = "invenio-rest" @@ -2234,13 +2252,13 @@ tests = ["Sphinx (>=4.5.0)", "pytest-black (>=0.3.0,<0.3.10)", "pytest-invenio ( [[package]] name = "invenio-search" -version = "2.3.1" +version = "2.4.1" description = "\"Invenio module for information retrieval.\"" optional = false python-versions = ">=3.7" files = [ - {file = "invenio-search-2.3.1.tar.gz", hash = "sha256:ecbb420d4804b3a4fca8bcc9f8b5941067b06204b5a3c62ec997270f3c0e6ba6"}, - {file = "invenio_search-2.3.1-py2.py3-none-any.whl", hash = "sha256:1f9789993bcb5339688e88ec60993802e33c6e94954cb0702d0a43c7c6f94e6b"}, + {file = "invenio-search-2.4.1.tar.gz", hash = "sha256:569df7a0db6b84951acecbd60b5871c9f06aaf61421bf493f9ce646f685eb0a6"}, + {file = "invenio_search-2.4.1-py2.py3-none-any.whl", hash = "sha256:ced2c342a69b8a27262728b00c51d014eaf32a1330499decac192fa810141d21"}, ] [package.dependencies] @@ -2257,13 +2275,13 @@ tests = ["Sphinx (>=3)", "invenio-accounts (>=2.0.0,<3.0.0)", "invenio-db[versio [[package]] name = "invenio-theme" -version = "3.2.0" +version = "3.3.0" description = "\"Invenio standard theme.\"" optional = false python-versions = ">=3.7" files = [ - {file = "invenio-theme-3.2.0.tar.gz", hash = "sha256:111af436bbe0715a7dc3c9cb36b5dad6ac345edcc1bc65dd19b7679b189c998b"}, - {file = "invenio_theme-3.2.0-py2.py3-none-any.whl", hash = "sha256:1b7c6de8822a53418a700f82a9ea6f271b503c05b2484be74353caa3e1916249"}, + {file = "invenio-theme-3.3.0.tar.gz", hash = "sha256:1df9a12741cff13b0651cc862b7f6cf6673e5127ccca71c0e06e61ba516551c5"}, + {file = "invenio_theme-3.3.0-py2.py3-none-any.whl", hash = "sha256:d93f14a047eb3e0c6faa0bf2c16cb84304f9d03b1100d8d789af1a1de5834586"}, ] [package.dependencies] @@ -2495,29 +2513,29 @@ referencing = ">=0.31.0" [[package]] name = "kombu" -version = "5.3.7" +version = "5.4.0" description = "Messaging library for Python." optional = false python-versions = ">=3.8" files = [ - {file = "kombu-5.3.7-py3-none-any.whl", hash = "sha256:5634c511926309c7f9789f1433e9ed402616b56836ef9878f01bd59267b4c7a9"}, - {file = "kombu-5.3.7.tar.gz", hash = "sha256:011c4cd9a355c14a1de8d35d257314a1d2456d52b7140388561acac3cf1a97bf"}, + {file = "kombu-5.4.0-py3-none-any.whl", hash = "sha256:c8dd99820467610b4febbc7a9e8a0d3d7da2d35116b67184418b51cc520ea6b6"}, + {file = "kombu-5.4.0.tar.gz", hash = "sha256:ad200a8dbdaaa2bbc5f26d2ee7d707d9a1fded353a0f4bd751ce8c7d9f449c60"}, ] [package.dependencies] amqp = ">=5.1.1,<6.0.0" -typing-extensions = {version = "*", markers = "python_version < \"3.10\""} -vine = "*" +typing-extensions = {version = "4.12.2", markers = "python_version < \"3.10\""} +vine = "5.1.0" [package.extras] azureservicebus = ["azure-servicebus (>=7.10.0)"] azurestoragequeues = ["azure-identity (>=1.12.0)", "azure-storage-queue (>=12.6.0)"] confluentkafka = ["confluent-kafka (>=2.2.0)"] -consul = ["python-consul2"] +consul = ["python-consul2 (==0.1.5)"] librabbitmq = ["librabbitmq (>=2.0.0)"] mongodb = ["pymongo (>=4.1.1)"] -msgpack = ["msgpack"] -pyro = ["pyro4"] +msgpack = ["msgpack (==1.0.8)"] +pyro = ["pyro4 (==4.82)"] qpid = ["qpid-python (>=0.26)", "qpid-tools (>=0.26)"] redis = ["redis (>=4.5.2,!=4.5.5,!=5.0.2)"] slmq = ["softlayer-messaging (>=1.0.3)"] @@ -2557,149 +2575,149 @@ rediscluster = ["redis (>=4.2.0,!=4.5.2,!=4.5.3)"] [[package]] name = "lxml" -version = "5.2.2" +version = "5.3.0" description = "Powerful and Pythonic XML processing library combining libxml2/libxslt with the ElementTree API." optional = false python-versions = ">=3.6" files = [ - {file = "lxml-5.2.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:364d03207f3e603922d0d3932ef363d55bbf48e3647395765f9bfcbdf6d23632"}, - {file = "lxml-5.2.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:50127c186f191b8917ea2fb8b206fbebe87fd414a6084d15568c27d0a21d60db"}, - {file = "lxml-5.2.2-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:74e4f025ef3db1c6da4460dd27c118d8cd136d0391da4e387a15e48e5c975147"}, - {file = "lxml-5.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:981a06a3076997adf7c743dcd0d7a0415582661e2517c7d961493572e909aa1d"}, - {file = "lxml-5.2.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aef5474d913d3b05e613906ba4090433c515e13ea49c837aca18bde190853dff"}, - {file = "lxml-5.2.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1e275ea572389e41e8b039ac076a46cb87ee6b8542df3fff26f5baab43713bca"}, - {file = "lxml-5.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f5b65529bb2f21ac7861a0e94fdbf5dc0daab41497d18223b46ee8515e5ad297"}, - {file = "lxml-5.2.2-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:bcc98f911f10278d1daf14b87d65325851a1d29153caaf146877ec37031d5f36"}, - {file = "lxml-5.2.2-cp310-cp310-manylinux_2_28_ppc64le.whl", hash = "sha256:b47633251727c8fe279f34025844b3b3a3e40cd1b198356d003aa146258d13a2"}, - {file = "lxml-5.2.2-cp310-cp310-manylinux_2_28_s390x.whl", hash = "sha256:fbc9d316552f9ef7bba39f4edfad4a734d3d6f93341232a9dddadec4f15d425f"}, - {file = "lxml-5.2.2-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:13e69be35391ce72712184f69000cda04fc89689429179bc4c0ae5f0b7a8c21b"}, - {file = "lxml-5.2.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:3b6a30a9ab040b3f545b697cb3adbf3696c05a3a68aad172e3fd7ca73ab3c835"}, - {file = "lxml-5.2.2-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:a233bb68625a85126ac9f1fc66d24337d6e8a0f9207b688eec2e7c880f012ec0"}, - {file = "lxml-5.2.2-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:dfa7c241073d8f2b8e8dbc7803c434f57dbb83ae2a3d7892dd068d99e96efe2c"}, - {file = "lxml-5.2.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:1a7aca7964ac4bb07680d5c9d63b9d7028cace3e2d43175cb50bba8c5ad33316"}, - {file = "lxml-5.2.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:ae4073a60ab98529ab8a72ebf429f2a8cc612619a8c04e08bed27450d52103c0"}, - {file = "lxml-5.2.2-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:ffb2be176fed4457e445fe540617f0252a72a8bc56208fd65a690fdb1f57660b"}, - {file = "lxml-5.2.2-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:e290d79a4107d7d794634ce3e985b9ae4f920380a813717adf61804904dc4393"}, - {file = "lxml-5.2.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:96e85aa09274955bb6bd483eaf5b12abadade01010478154b0ec70284c1b1526"}, - {file = "lxml-5.2.2-cp310-cp310-win32.whl", hash = "sha256:f956196ef61369f1685d14dad80611488d8dc1ef00be57c0c5a03064005b0f30"}, - {file = "lxml-5.2.2-cp310-cp310-win_amd64.whl", hash = "sha256:875a3f90d7eb5c5d77e529080d95140eacb3c6d13ad5b616ee8095447b1d22e7"}, - {file = "lxml-5.2.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:45f9494613160d0405682f9eee781c7e6d1bf45f819654eb249f8f46a2c22545"}, - {file = "lxml-5.2.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b0b3f2df149efb242cee2ffdeb6674b7f30d23c9a7af26595099afaf46ef4e88"}, - {file = "lxml-5.2.2-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d28cb356f119a437cc58a13f8135ab8a4c8ece18159eb9194b0d269ec4e28083"}, - {file = "lxml-5.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:657a972f46bbefdbba2d4f14413c0d079f9ae243bd68193cb5061b9732fa54c1"}, - {file = "lxml-5.2.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b74b9ea10063efb77a965a8d5f4182806fbf59ed068b3c3fd6f30d2ac7bee734"}, - {file = "lxml-5.2.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:07542787f86112d46d07d4f3c4e7c760282011b354d012dc4141cc12a68cef5f"}, - {file = "lxml-5.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:303f540ad2dddd35b92415b74b900c749ec2010e703ab3bfd6660979d01fd4ed"}, - {file = "lxml-5.2.2-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:2eb2227ce1ff998faf0cd7fe85bbf086aa41dfc5af3b1d80867ecfe75fb68df3"}, - {file = "lxml-5.2.2-cp311-cp311-manylinux_2_28_ppc64le.whl", hash = "sha256:1d8a701774dfc42a2f0b8ccdfe7dbc140500d1049e0632a611985d943fcf12df"}, - {file = "lxml-5.2.2-cp311-cp311-manylinux_2_28_s390x.whl", hash = "sha256:56793b7a1a091a7c286b5f4aa1fe4ae5d1446fe742d00cdf2ffb1077865db10d"}, - {file = "lxml-5.2.2-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:eb00b549b13bd6d884c863554566095bf6fa9c3cecb2e7b399c4bc7904cb33b5"}, - {file = "lxml-5.2.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:1a2569a1f15ae6c8c64108a2cd2b4a858fc1e13d25846be0666fc144715e32ab"}, - {file = "lxml-5.2.2-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:8cf85a6e40ff1f37fe0f25719aadf443686b1ac7652593dc53c7ef9b8492b115"}, - {file = "lxml-5.2.2-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:d237ba6664b8e60fd90b8549a149a74fcc675272e0e95539a00522e4ca688b04"}, - {file = "lxml-5.2.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:0b3f5016e00ae7630a4b83d0868fca1e3d494c78a75b1c7252606a3a1c5fc2ad"}, - {file = "lxml-5.2.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:23441e2b5339bc54dc949e9e675fa35efe858108404ef9aa92f0456929ef6fe8"}, - {file = "lxml-5.2.2-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:2fb0ba3e8566548d6c8e7dd82a8229ff47bd8fb8c2da237607ac8e5a1b8312e5"}, - {file = "lxml-5.2.2-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:79d1fb9252e7e2cfe4de6e9a6610c7cbb99b9708e2c3e29057f487de5a9eaefa"}, - {file = "lxml-5.2.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:6dcc3d17eac1df7859ae01202e9bb11ffa8c98949dcbeb1069c8b9a75917e01b"}, - {file = "lxml-5.2.2-cp311-cp311-win32.whl", hash = "sha256:4c30a2f83677876465f44c018830f608fa3c6a8a466eb223535035fbc16f3438"}, - {file = "lxml-5.2.2-cp311-cp311-win_amd64.whl", hash = "sha256:49095a38eb333aaf44c06052fd2ec3b8f23e19747ca7ec6f6c954ffea6dbf7be"}, - {file = "lxml-5.2.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:7429e7faa1a60cad26ae4227f4dd0459efde239e494c7312624ce228e04f6391"}, - {file = "lxml-5.2.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:50ccb5d355961c0f12f6cf24b7187dbabd5433f29e15147a67995474f27d1776"}, - {file = "lxml-5.2.2-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dc911208b18842a3a57266d8e51fc3cfaccee90a5351b92079beed912a7914c2"}, - {file = "lxml-5.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:33ce9e786753743159799fdf8e92a5da351158c4bfb6f2db0bf31e7892a1feb5"}, - {file = "lxml-5.2.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ec87c44f619380878bd49ca109669c9f221d9ae6883a5bcb3616785fa8f94c97"}, - {file = "lxml-5.2.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:08ea0f606808354eb8f2dfaac095963cb25d9d28e27edcc375d7b30ab01abbf6"}, - {file = "lxml-5.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:75a9632f1d4f698b2e6e2e1ada40e71f369b15d69baddb8968dcc8e683839b18"}, - {file = "lxml-5.2.2-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:74da9f97daec6928567b48c90ea2c82a106b2d500f397eeb8941e47d30b1ca85"}, - {file = "lxml-5.2.2-cp312-cp312-manylinux_2_28_ppc64le.whl", hash = "sha256:0969e92af09c5687d769731e3f39ed62427cc72176cebb54b7a9d52cc4fa3b73"}, - {file = "lxml-5.2.2-cp312-cp312-manylinux_2_28_s390x.whl", hash = "sha256:9164361769b6ca7769079f4d426a41df6164879f7f3568be9086e15baca61466"}, - {file = "lxml-5.2.2-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:d26a618ae1766279f2660aca0081b2220aca6bd1aa06b2cf73f07383faf48927"}, - {file = "lxml-5.2.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:ab67ed772c584b7ef2379797bf14b82df9aa5f7438c5b9a09624dd834c1c1aaf"}, - {file = "lxml-5.2.2-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:3d1e35572a56941b32c239774d7e9ad724074d37f90c7a7d499ab98761bd80cf"}, - {file = "lxml-5.2.2-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:8268cbcd48c5375f46e000adb1390572c98879eb4f77910c6053d25cc3ac2c67"}, - {file = "lxml-5.2.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:e282aedd63c639c07c3857097fc0e236f984ceb4089a8b284da1c526491e3f3d"}, - {file = "lxml-5.2.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:6dfdc2bfe69e9adf0df4915949c22a25b39d175d599bf98e7ddf620a13678585"}, - {file = "lxml-5.2.2-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:4aefd911793b5d2d7a921233a54c90329bf3d4a6817dc465f12ffdfe4fc7b8fe"}, - {file = "lxml-5.2.2-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:8b8df03a9e995b6211dafa63b32f9d405881518ff1ddd775db4e7b98fb545e1c"}, - {file = "lxml-5.2.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:f11ae142f3a322d44513de1018b50f474f8f736bc3cd91d969f464b5bfef8836"}, - {file = "lxml-5.2.2-cp312-cp312-win32.whl", hash = "sha256:16a8326e51fcdffc886294c1e70b11ddccec836516a343f9ed0f82aac043c24a"}, - {file = "lxml-5.2.2-cp312-cp312-win_amd64.whl", hash = "sha256:bbc4b80af581e18568ff07f6395c02114d05f4865c2812a1f02f2eaecf0bfd48"}, - {file = "lxml-5.2.2-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:e3d9d13603410b72787579769469af730c38f2f25505573a5888a94b62b920f8"}, - {file = "lxml-5.2.2-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:38b67afb0a06b8575948641c1d6d68e41b83a3abeae2ca9eed2ac59892b36706"}, - {file = "lxml-5.2.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c689d0d5381f56de7bd6966a4541bff6e08bf8d3871bbd89a0c6ab18aa699573"}, - {file = "lxml-5.2.2-cp36-cp36m-manylinux_2_28_x86_64.whl", hash = "sha256:cf2a978c795b54c539f47964ec05e35c05bd045db5ca1e8366988c7f2fe6b3ce"}, - {file = "lxml-5.2.2-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:739e36ef7412b2bd940f75b278749106e6d025e40027c0b94a17ef7968d55d56"}, - {file = "lxml-5.2.2-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:d8bbcd21769594dbba9c37d3c819e2d5847656ca99c747ddb31ac1701d0c0ed9"}, - {file = "lxml-5.2.2-cp36-cp36m-musllinux_1_2_x86_64.whl", hash = "sha256:2304d3c93f2258ccf2cf7a6ba8c761d76ef84948d87bf9664e14d203da2cd264"}, - {file = "lxml-5.2.2-cp36-cp36m-win32.whl", hash = "sha256:02437fb7308386867c8b7b0e5bc4cd4b04548b1c5d089ffb8e7b31009b961dc3"}, - {file = "lxml-5.2.2-cp36-cp36m-win_amd64.whl", hash = "sha256:edcfa83e03370032a489430215c1e7783128808fd3e2e0a3225deee278585196"}, - {file = "lxml-5.2.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:28bf95177400066596cdbcfc933312493799382879da504633d16cf60bba735b"}, - {file = "lxml-5.2.2-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3a745cc98d504d5bd2c19b10c79c61c7c3df9222629f1b6210c0368177589fb8"}, - {file = "lxml-5.2.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b336b0416828022bfd5a2e3083e7f5ba54b96242159f83c7e3eebaec752f1716"}, - {file = "lxml-5.2.2-cp37-cp37m-manylinux_2_28_x86_64.whl", hash = "sha256:4bc6cb140a7a0ad1f7bc37e018d0ed690b7b6520ade518285dc3171f7a117905"}, - {file = "lxml-5.2.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:57f0a0bbc9868e10ebe874e9f129d2917750adf008fe7b9c1598c0fbbfdde6a6"}, - {file = "lxml-5.2.2-cp37-cp37m-musllinux_1_2_x86_64.whl", hash = "sha256:60499fe961b21264e17a471ec296dcbf4365fbea611bf9e303ab69db7159ce61"}, - {file = "lxml-5.2.2-cp37-cp37m-win32.whl", hash = "sha256:d9b342c76003c6b9336a80efcc766748a333573abf9350f4094ee46b006ec18f"}, - {file = "lxml-5.2.2-cp37-cp37m-win_amd64.whl", hash = "sha256:b16db2770517b8799c79aa80f4053cd6f8b716f21f8aca962725a9565ce3ee40"}, - {file = "lxml-5.2.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:7ed07b3062b055d7a7f9d6557a251cc655eed0b3152b76de619516621c56f5d3"}, - {file = "lxml-5.2.2-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f60fdd125d85bf9c279ffb8e94c78c51b3b6a37711464e1f5f31078b45002421"}, - {file = "lxml-5.2.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8a7e24cb69ee5f32e003f50e016d5fde438010c1022c96738b04fc2423e61706"}, - {file = "lxml-5.2.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:23cfafd56887eaed93d07bc4547abd5e09d837a002b791e9767765492a75883f"}, - {file = "lxml-5.2.2-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:19b4e485cd07b7d83e3fe3b72132e7df70bfac22b14fe4bf7a23822c3a35bff5"}, - {file = "lxml-5.2.2-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:7ce7ad8abebe737ad6143d9d3bf94b88b93365ea30a5b81f6877ec9c0dee0a48"}, - {file = "lxml-5.2.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:e49b052b768bb74f58c7dda4e0bdf7b79d43a9204ca584ffe1fb48a6f3c84c66"}, - {file = "lxml-5.2.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d14a0d029a4e176795cef99c056d58067c06195e0c7e2dbb293bf95c08f772a3"}, - {file = "lxml-5.2.2-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:be49ad33819d7dcc28a309b86d4ed98e1a65f3075c6acd3cd4fe32103235222b"}, - {file = "lxml-5.2.2-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:a6d17e0370d2516d5bb9062c7b4cb731cff921fc875644c3d751ad857ba9c5b1"}, - {file = "lxml-5.2.2-cp38-cp38-win32.whl", hash = "sha256:5b8c041b6265e08eac8a724b74b655404070b636a8dd6d7a13c3adc07882ef30"}, - {file = "lxml-5.2.2-cp38-cp38-win_amd64.whl", hash = "sha256:f61efaf4bed1cc0860e567d2ecb2363974d414f7f1f124b1df368bbf183453a6"}, - {file = "lxml-5.2.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:fb91819461b1b56d06fa4bcf86617fac795f6a99d12239fb0c68dbeba41a0a30"}, - {file = "lxml-5.2.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:d4ed0c7cbecde7194cd3228c044e86bf73e30a23505af852857c09c24e77ec5d"}, - {file = "lxml-5.2.2-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:54401c77a63cc7d6dc4b4e173bb484f28a5607f3df71484709fe037c92d4f0ed"}, - {file = "lxml-5.2.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:625e3ef310e7fa3a761d48ca7ea1f9d8718a32b1542e727d584d82f4453d5eeb"}, - {file = "lxml-5.2.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:519895c99c815a1a24a926d5b60627ce5ea48e9f639a5cd328bda0515ea0f10c"}, - {file = "lxml-5.2.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c7079d5eb1c1315a858bbf180000757db8ad904a89476653232db835c3114001"}, - {file = "lxml-5.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:343ab62e9ca78094f2306aefed67dcfad61c4683f87eee48ff2fd74902447726"}, - {file = "lxml-5.2.2-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:cd9e78285da6c9ba2d5c769628f43ef66d96ac3085e59b10ad4f3707980710d3"}, - {file = "lxml-5.2.2-cp39-cp39-manylinux_2_28_ppc64le.whl", hash = "sha256:546cf886f6242dff9ec206331209db9c8e1643ae642dea5fdbecae2453cb50fd"}, - {file = "lxml-5.2.2-cp39-cp39-manylinux_2_28_s390x.whl", hash = "sha256:02f6a8eb6512fdc2fd4ca10a49c341c4e109aa6e9448cc4859af5b949622715a"}, - {file = "lxml-5.2.2-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:339ee4a4704bc724757cd5dd9dc8cf4d00980f5d3e6e06d5847c1b594ace68ab"}, - {file = "lxml-5.2.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:0a028b61a2e357ace98b1615fc03f76eb517cc028993964fe08ad514b1e8892d"}, - {file = "lxml-5.2.2-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:f90e552ecbad426eab352e7b2933091f2be77115bb16f09f78404861c8322981"}, - {file = "lxml-5.2.2-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:d83e2d94b69bf31ead2fa45f0acdef0757fa0458a129734f59f67f3d2eb7ef32"}, - {file = "lxml-5.2.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:a02d3c48f9bb1e10c7788d92c0c7db6f2002d024ab6e74d6f45ae33e3d0288a3"}, - {file = "lxml-5.2.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:6d68ce8e7b2075390e8ac1e1d3a99e8b6372c694bbe612632606d1d546794207"}, - {file = "lxml-5.2.2-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:453d037e09a5176d92ec0fd282e934ed26d806331a8b70ab431a81e2fbabf56d"}, - {file = "lxml-5.2.2-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:3b019d4ee84b683342af793b56bb35034bd749e4cbdd3d33f7d1107790f8c472"}, - {file = "lxml-5.2.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:cb3942960f0beb9f46e2a71a3aca220d1ca32feb5a398656be934320804c0df9"}, - {file = "lxml-5.2.2-cp39-cp39-win32.whl", hash = "sha256:ac6540c9fff6e3813d29d0403ee7a81897f1d8ecc09a8ff84d2eea70ede1cdbf"}, - {file = "lxml-5.2.2-cp39-cp39-win_amd64.whl", hash = "sha256:610b5c77428a50269f38a534057444c249976433f40f53e3b47e68349cca1425"}, - {file = "lxml-5.2.2-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:b537bd04d7ccd7c6350cdaaaad911f6312cbd61e6e6045542f781c7f8b2e99d2"}, - {file = "lxml-5.2.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4820c02195d6dfb7b8508ff276752f6b2ff8b64ae5d13ebe02e7667e035000b9"}, - {file = "lxml-5.2.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f2a09f6184f17a80897172863a655467da2b11151ec98ba8d7af89f17bf63dae"}, - {file = "lxml-5.2.2-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:76acba4c66c47d27c8365e7c10b3d8016a7da83d3191d053a58382311a8bf4e1"}, - {file = "lxml-5.2.2-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:b128092c927eaf485928cec0c28f6b8bead277e28acf56800e972aa2c2abd7a2"}, - {file = "lxml-5.2.2-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:ae791f6bd43305aade8c0e22f816b34f3b72b6c820477aab4d18473a37e8090b"}, - {file = "lxml-5.2.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:a2f6a1bc2460e643785a2cde17293bd7a8f990884b822f7bca47bee0a82fc66b"}, - {file = "lxml-5.2.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e8d351ff44c1638cb6e980623d517abd9f580d2e53bfcd18d8941c052a5a009"}, - {file = "lxml-5.2.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bec4bd9133420c5c52d562469c754f27c5c9e36ee06abc169612c959bd7dbb07"}, - {file = "lxml-5.2.2-pp37-pypy37_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:55ce6b6d803890bd3cc89975fca9de1dff39729b43b73cb15ddd933b8bc20484"}, - {file = "lxml-5.2.2-pp37-pypy37_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:8ab6a358d1286498d80fe67bd3d69fcbc7d1359b45b41e74c4a26964ca99c3f8"}, - {file = "lxml-5.2.2-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:06668e39e1f3c065349c51ac27ae430719d7806c026fec462e5693b08b95696b"}, - {file = "lxml-5.2.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:9cd5323344d8ebb9fb5e96da5de5ad4ebab993bbf51674259dbe9d7a18049525"}, - {file = "lxml-5.2.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:89feb82ca055af0fe797a2323ec9043b26bc371365847dbe83c7fd2e2f181c34"}, - {file = "lxml-5.2.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e481bba1e11ba585fb06db666bfc23dbe181dbafc7b25776156120bf12e0d5a6"}, - {file = "lxml-5.2.2-pp38-pypy38_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:9d6c6ea6a11ca0ff9cd0390b885984ed31157c168565702959c25e2191674a14"}, - {file = "lxml-5.2.2-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:3d98de734abee23e61f6b8c2e08a88453ada7d6486dc7cdc82922a03968928db"}, - {file = "lxml-5.2.2-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:69ab77a1373f1e7563e0fb5a29a8440367dec051da6c7405333699d07444f511"}, - {file = "lxml-5.2.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:34e17913c431f5ae01d8658dbf792fdc457073dcdfbb31dc0cc6ab256e664a8d"}, - {file = "lxml-5.2.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:05f8757b03208c3f50097761be2dea0aba02e94f0dc7023ed73a7bb14ff11eb0"}, - {file = "lxml-5.2.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6a520b4f9974b0a0a6ed73c2154de57cdfd0c8800f4f15ab2b73238ffed0b36e"}, - {file = "lxml-5.2.2-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:5e097646944b66207023bc3c634827de858aebc226d5d4d6d16f0b77566ea182"}, - {file = "lxml-5.2.2-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:b5e4ef22ff25bfd4ede5f8fb30f7b24446345f3e79d9b7455aef2836437bc38a"}, - {file = "lxml-5.2.2-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:ff69a9a0b4b17d78170c73abe2ab12084bdf1691550c5629ad1fe7849433f324"}, - {file = "lxml-5.2.2.tar.gz", hash = "sha256:bb2dc4898180bea79863d5487e5f9c7c34297414bad54bcd0f0852aee9cfdb87"}, + {file = "lxml-5.3.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:dd36439be765e2dde7660212b5275641edbc813e7b24668831a5c8ac91180656"}, + {file = "lxml-5.3.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ae5fe5c4b525aa82b8076c1a59d642c17b6e8739ecf852522c6321852178119d"}, + {file = "lxml-5.3.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:501d0d7e26b4d261fca8132854d845e4988097611ba2531408ec91cf3fd9d20a"}, + {file = "lxml-5.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fb66442c2546446944437df74379e9cf9e9db353e61301d1a0e26482f43f0dd8"}, + {file = "lxml-5.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9e41506fec7a7f9405b14aa2d5c8abbb4dbbd09d88f9496958b6d00cb4d45330"}, + {file = "lxml-5.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f7d4a670107d75dfe5ad080bed6c341d18c4442f9378c9f58e5851e86eb79965"}, + {file = "lxml-5.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:41ce1f1e2c7755abfc7e759dc34d7d05fd221723ff822947132dc934d122fe22"}, + {file = "lxml-5.3.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:44264ecae91b30e5633013fb66f6ddd05c006d3e0e884f75ce0b4755b3e3847b"}, + {file = "lxml-5.3.0-cp310-cp310-manylinux_2_28_ppc64le.whl", hash = "sha256:3c174dc350d3ec52deb77f2faf05c439331d6ed5e702fc247ccb4e6b62d884b7"}, + {file = "lxml-5.3.0-cp310-cp310-manylinux_2_28_s390x.whl", hash = "sha256:2dfab5fa6a28a0b60a20638dc48e6343c02ea9933e3279ccb132f555a62323d8"}, + {file = "lxml-5.3.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:b1c8c20847b9f34e98080da785bb2336ea982e7f913eed5809e5a3c872900f32"}, + {file = "lxml-5.3.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:2c86bf781b12ba417f64f3422cfc302523ac9cd1d8ae8c0f92a1c66e56ef2e86"}, + {file = "lxml-5.3.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:c162b216070f280fa7da844531169be0baf9ccb17263cf5a8bf876fcd3117fa5"}, + {file = "lxml-5.3.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:36aef61a1678cb778097b4a6eeae96a69875d51d1e8f4d4b491ab3cfb54b5a03"}, + {file = "lxml-5.3.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:f65e5120863c2b266dbcc927b306c5b78e502c71edf3295dfcb9501ec96e5fc7"}, + {file = "lxml-5.3.0-cp310-cp310-win32.whl", hash = "sha256:ef0c1fe22171dd7c7c27147f2e9c3e86f8bdf473fed75f16b0c2e84a5030ce80"}, + {file = "lxml-5.3.0-cp310-cp310-win_amd64.whl", hash = "sha256:052d99051e77a4f3e8482c65014cf6372e61b0a6f4fe9edb98503bb5364cfee3"}, + {file = "lxml-5.3.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:74bcb423462233bc5d6066e4e98b0264e7c1bed7541fff2f4e34fe6b21563c8b"}, + {file = "lxml-5.3.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:a3d819eb6f9b8677f57f9664265d0a10dd6551d227afb4af2b9cd7bdc2ccbf18"}, + {file = "lxml-5.3.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5b8f5db71b28b8c404956ddf79575ea77aa8b1538e8b2ef9ec877945b3f46442"}, + {file = "lxml-5.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2c3406b63232fc7e9b8783ab0b765d7c59e7c59ff96759d8ef9632fca27c7ee4"}, + {file = "lxml-5.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2ecdd78ab768f844c7a1d4a03595038c166b609f6395e25af9b0f3f26ae1230f"}, + {file = "lxml-5.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:168f2dfcfdedf611eb285efac1516c8454c8c99caf271dccda8943576b67552e"}, + {file = "lxml-5.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:aa617107a410245b8660028a7483b68e7914304a6d4882b5ff3d2d3eb5948d8c"}, + {file = "lxml-5.3.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:69959bd3167b993e6e710b99051265654133a98f20cec1d9b493b931942e9c16"}, + {file = "lxml-5.3.0-cp311-cp311-manylinux_2_28_ppc64le.whl", hash = "sha256:bd96517ef76c8654446fc3db9242d019a1bb5fe8b751ba414765d59f99210b79"}, + {file = "lxml-5.3.0-cp311-cp311-manylinux_2_28_s390x.whl", hash = "sha256:ab6dd83b970dc97c2d10bc71aa925b84788c7c05de30241b9e96f9b6d9ea3080"}, + {file = "lxml-5.3.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:eec1bb8cdbba2925bedc887bc0609a80e599c75b12d87ae42ac23fd199445654"}, + {file = "lxml-5.3.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:6a7095eeec6f89111d03dabfe5883a1fd54da319c94e0fb104ee8f23616b572d"}, + {file = "lxml-5.3.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:6f651ebd0b21ec65dfca93aa629610a0dbc13dbc13554f19b0113da2e61a4763"}, + {file = "lxml-5.3.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:f422a209d2455c56849442ae42f25dbaaba1c6c3f501d58761c619c7836642ec"}, + {file = "lxml-5.3.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:62f7fdb0d1ed2065451f086519865b4c90aa19aed51081979ecd05a21eb4d1be"}, + {file = "lxml-5.3.0-cp311-cp311-win32.whl", hash = "sha256:c6379f35350b655fd817cd0d6cbeef7f265f3ae5fedb1caae2eb442bbeae9ab9"}, + {file = "lxml-5.3.0-cp311-cp311-win_amd64.whl", hash = "sha256:9c52100e2c2dbb0649b90467935c4b0de5528833c76a35ea1a2691ec9f1ee7a1"}, + {file = "lxml-5.3.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:e99f5507401436fdcc85036a2e7dc2e28d962550afe1cbfc07c40e454256a859"}, + {file = "lxml-5.3.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:384aacddf2e5813a36495233b64cb96b1949da72bef933918ba5c84e06af8f0e"}, + {file = "lxml-5.3.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:874a216bf6afaf97c263b56371434e47e2c652d215788396f60477540298218f"}, + {file = "lxml-5.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:65ab5685d56914b9a2a34d67dd5488b83213d680b0c5d10b47f81da5a16b0b0e"}, + {file = "lxml-5.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aac0bbd3e8dd2d9c45ceb82249e8bdd3ac99131a32b4d35c8af3cc9db1657179"}, + {file = "lxml-5.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b369d3db3c22ed14c75ccd5af429086f166a19627e84a8fdade3f8f31426e52a"}, + {file = "lxml-5.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c24037349665434f375645fa9d1f5304800cec574d0310f618490c871fd902b3"}, + {file = "lxml-5.3.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:62d172f358f33a26d6b41b28c170c63886742f5b6772a42b59b4f0fa10526cb1"}, + {file = "lxml-5.3.0-cp312-cp312-manylinux_2_28_ppc64le.whl", hash = "sha256:c1f794c02903c2824fccce5b20c339a1a14b114e83b306ff11b597c5f71a1c8d"}, + {file = "lxml-5.3.0-cp312-cp312-manylinux_2_28_s390x.whl", hash = "sha256:5d6a6972b93c426ace71e0be9a6f4b2cfae9b1baed2eed2006076a746692288c"}, + {file = "lxml-5.3.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:3879cc6ce938ff4eb4900d901ed63555c778731a96365e53fadb36437a131a99"}, + {file = "lxml-5.3.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:74068c601baff6ff021c70f0935b0c7bc528baa8ea210c202e03757c68c5a4ff"}, + {file = "lxml-5.3.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:ecd4ad8453ac17bc7ba3868371bffb46f628161ad0eefbd0a855d2c8c32dd81a"}, + {file = "lxml-5.3.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:7e2f58095acc211eb9d8b5771bf04df9ff37d6b87618d1cbf85f92399c98dae8"}, + {file = "lxml-5.3.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:e63601ad5cd8f860aa99d109889b5ac34de571c7ee902d6812d5d9ddcc77fa7d"}, + {file = "lxml-5.3.0-cp312-cp312-win32.whl", hash = "sha256:17e8d968d04a37c50ad9c456a286b525d78c4a1c15dd53aa46c1d8e06bf6fa30"}, + {file = "lxml-5.3.0-cp312-cp312-win_amd64.whl", hash = "sha256:c1a69e58a6bb2de65902051d57fde951febad631a20a64572677a1052690482f"}, + {file = "lxml-5.3.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:8c72e9563347c7395910de6a3100a4840a75a6f60e05af5e58566868d5eb2d6a"}, + {file = "lxml-5.3.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:e92ce66cd919d18d14b3856906a61d3f6b6a8500e0794142338da644260595cd"}, + {file = "lxml-5.3.0-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1d04f064bebdfef9240478f7a779e8c5dc32b8b7b0b2fc6a62e39b928d428e51"}, + {file = "lxml-5.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5c2fb570d7823c2bbaf8b419ba6e5662137f8166e364a8b2b91051a1fb40ab8b"}, + {file = "lxml-5.3.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0c120f43553ec759f8de1fee2f4794452b0946773299d44c36bfe18e83caf002"}, + {file = "lxml-5.3.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:562e7494778a69086f0312ec9689f6b6ac1c6b65670ed7d0267e49f57ffa08c4"}, + {file = "lxml-5.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:423b121f7e6fa514ba0c7918e56955a1d4470ed35faa03e3d9f0e3baa4c7e492"}, + {file = "lxml-5.3.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:c00f323cc00576df6165cc9d21a4c21285fa6b9989c5c39830c3903dc4303ef3"}, + {file = "lxml-5.3.0-cp313-cp313-manylinux_2_28_ppc64le.whl", hash = "sha256:1fdc9fae8dd4c763e8a31e7630afef517eab9f5d5d31a278df087f307bf601f4"}, + {file = "lxml-5.3.0-cp313-cp313-manylinux_2_28_s390x.whl", hash = "sha256:658f2aa69d31e09699705949b5fc4719cbecbd4a97f9656a232e7d6c7be1a367"}, + {file = "lxml-5.3.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:1473427aff3d66a3fa2199004c3e601e6c4500ab86696edffdbc84954c72d832"}, + {file = "lxml-5.3.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:a87de7dd873bf9a792bf1e58b1c3887b9264036629a5bf2d2e6579fe8e73edff"}, + {file = "lxml-5.3.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:0d7b36afa46c97875303a94e8f3ad932bf78bace9e18e603f2085b652422edcd"}, + {file = "lxml-5.3.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:cf120cce539453ae086eacc0130a324e7026113510efa83ab42ef3fcfccac7fb"}, + {file = "lxml-5.3.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:df5c7333167b9674aa8ae1d4008fa4bc17a313cc490b2cca27838bbdcc6bb15b"}, + {file = "lxml-5.3.0-cp313-cp313-win32.whl", hash = "sha256:c802e1c2ed9f0c06a65bc4ed0189d000ada8049312cfeab6ca635e39c9608957"}, + {file = "lxml-5.3.0-cp313-cp313-win_amd64.whl", hash = "sha256:406246b96d552e0503e17a1006fd27edac678b3fcc9f1be71a2f94b4ff61528d"}, + {file = "lxml-5.3.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:8f0de2d390af441fe8b2c12626d103540b5d850d585b18fcada58d972b74a74e"}, + {file = "lxml-5.3.0-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1afe0a8c353746e610bd9031a630a95bcfb1a720684c3f2b36c4710a0a96528f"}, + {file = "lxml-5.3.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:56b9861a71575f5795bde89256e7467ece3d339c9b43141dbdd54544566b3b94"}, + {file = "lxml-5.3.0-cp36-cp36m-manylinux_2_28_x86_64.whl", hash = "sha256:9fb81d2824dff4f2e297a276297e9031f46d2682cafc484f49de182aa5e5df99"}, + {file = "lxml-5.3.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:2c226a06ecb8cdef28845ae976da407917542c5e6e75dcac7cc33eb04aaeb237"}, + {file = "lxml-5.3.0-cp36-cp36m-musllinux_1_2_x86_64.whl", hash = "sha256:7d3d1ca42870cdb6d0d29939630dbe48fa511c203724820fc0fd507b2fb46577"}, + {file = "lxml-5.3.0-cp36-cp36m-win32.whl", hash = "sha256:094cb601ba9f55296774c2d57ad68730daa0b13dc260e1f941b4d13678239e70"}, + {file = "lxml-5.3.0-cp36-cp36m-win_amd64.whl", hash = "sha256:eafa2c8658f4e560b098fe9fc54539f86528651f61849b22111a9b107d18910c"}, + {file = "lxml-5.3.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:cb83f8a875b3d9b458cada4f880fa498646874ba4011dc974e071a0a84a1b033"}, + {file = "lxml-5.3.0-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:25f1b69d41656b05885aa185f5fdf822cb01a586d1b32739633679699f220391"}, + {file = "lxml-5.3.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:23e0553b8055600b3bf4a00b255ec5c92e1e4aebf8c2c09334f8368e8bd174d6"}, + {file = "lxml-5.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ada35dd21dc6c039259596b358caab6b13f4db4d4a7f8665764d616daf9cc1d"}, + {file = "lxml-5.3.0-cp37-cp37m-manylinux_2_28_aarch64.whl", hash = "sha256:81b4e48da4c69313192d8c8d4311e5d818b8be1afe68ee20f6385d0e96fc9512"}, + {file = "lxml-5.3.0-cp37-cp37m-manylinux_2_28_x86_64.whl", hash = "sha256:2bc9fd5ca4729af796f9f59cd8ff160fe06a474da40aca03fcc79655ddee1a8b"}, + {file = "lxml-5.3.0-cp37-cp37m-musllinux_1_2_aarch64.whl", hash = "sha256:07da23d7ee08577760f0a71d67a861019103e4812c87e2fab26b039054594cc5"}, + {file = "lxml-5.3.0-cp37-cp37m-musllinux_1_2_x86_64.whl", hash = "sha256:ea2e2f6f801696ad7de8aec061044d6c8c0dd4037608c7cab38a9a4d316bfb11"}, + {file = "lxml-5.3.0-cp37-cp37m-win32.whl", hash = "sha256:5c54afdcbb0182d06836cc3d1be921e540be3ebdf8b8a51ee3ef987537455f84"}, + {file = "lxml-5.3.0-cp37-cp37m-win_amd64.whl", hash = "sha256:f2901429da1e645ce548bf9171784c0f74f0718c3f6150ce166be39e4dd66c3e"}, + {file = "lxml-5.3.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:c56a1d43b2f9ee4786e4658c7903f05da35b923fb53c11025712562d5cc02753"}, + {file = "lxml-5.3.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6ee8c39582d2652dcd516d1b879451500f8db3fe3607ce45d7c5957ab2596040"}, + {file = "lxml-5.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0fdf3a3059611f7585a78ee10399a15566356116a4288380921a4b598d807a22"}, + {file = "lxml-5.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:146173654d79eb1fc97498b4280c1d3e1e5d58c398fa530905c9ea50ea849b22"}, + {file = "lxml-5.3.0-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:0a7056921edbdd7560746f4221dca89bb7a3fe457d3d74267995253f46343f15"}, + {file = "lxml-5.3.0-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:9e4b47ac0f5e749cfc618efdf4726269441014ae1d5583e047b452a32e221920"}, + {file = "lxml-5.3.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:f914c03e6a31deb632e2daa881fe198461f4d06e57ac3d0e05bbcab8eae01945"}, + {file = "lxml-5.3.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:213261f168c5e1d9b7535a67e68b1f59f92398dd17a56d934550837143f79c42"}, + {file = "lxml-5.3.0-cp38-cp38-win32.whl", hash = "sha256:218c1b2e17a710e363855594230f44060e2025b05c80d1f0661258142b2add2e"}, + {file = "lxml-5.3.0-cp38-cp38-win_amd64.whl", hash = "sha256:315f9542011b2c4e1d280e4a20ddcca1761993dda3afc7a73b01235f8641e903"}, + {file = "lxml-5.3.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:1ffc23010330c2ab67fac02781df60998ca8fe759e8efde6f8b756a20599c5de"}, + {file = "lxml-5.3.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:2b3778cb38212f52fac9fe913017deea2fdf4eb1a4f8e4cfc6b009a13a6d3fcc"}, + {file = "lxml-5.3.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4b0c7a688944891086ba192e21c5229dea54382f4836a209ff8d0a660fac06be"}, + {file = "lxml-5.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:747a3d3e98e24597981ca0be0fd922aebd471fa99d0043a3842d00cdcad7ad6a"}, + {file = "lxml-5.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:86a6b24b19eaebc448dc56b87c4865527855145d851f9fc3891673ff97950540"}, + {file = "lxml-5.3.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b11a5d918a6216e521c715b02749240fb07ae5a1fefd4b7bf12f833bc8b4fe70"}, + {file = "lxml-5.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:68b87753c784d6acb8a25b05cb526c3406913c9d988d51f80adecc2b0775d6aa"}, + {file = "lxml-5.3.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:109fa6fede314cc50eed29e6e56c540075e63d922455346f11e4d7a036d2b8cf"}, + {file = "lxml-5.3.0-cp39-cp39-manylinux_2_28_ppc64le.whl", hash = "sha256:02ced472497b8362c8e902ade23e3300479f4f43e45f4105c85ef43b8db85229"}, + {file = "lxml-5.3.0-cp39-cp39-manylinux_2_28_s390x.whl", hash = "sha256:6b038cc86b285e4f9fea2ba5ee76e89f21ed1ea898e287dc277a25884f3a7dfe"}, + {file = "lxml-5.3.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:7437237c6a66b7ca341e868cda48be24b8701862757426852c9b3186de1da8a2"}, + {file = "lxml-5.3.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7f41026c1d64043a36fda21d64c5026762d53a77043e73e94b71f0521939cc71"}, + {file = "lxml-5.3.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:482c2f67761868f0108b1743098640fbb2a28a8e15bf3f47ada9fa59d9fe08c3"}, + {file = "lxml-5.3.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:1483fd3358963cc5c1c9b122c80606a3a79ee0875bcac0204149fa09d6ff2727"}, + {file = "lxml-5.3.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2dec2d1130a9cda5b904696cec33b2cfb451304ba9081eeda7f90f724097300a"}, + {file = "lxml-5.3.0-cp39-cp39-win32.whl", hash = "sha256:a0eabd0a81625049c5df745209dc7fcef6e2aea7793e5f003ba363610aa0a3ff"}, + {file = "lxml-5.3.0-cp39-cp39-win_amd64.whl", hash = "sha256:89e043f1d9d341c52bf2af6d02e6adde62e0a46e6755d5eb60dc6e4f0b8aeca2"}, + {file = "lxml-5.3.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:7b1cd427cb0d5f7393c31b7496419da594fe600e6fdc4b105a54f82405e6626c"}, + {file = "lxml-5.3.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:51806cfe0279e06ed8500ce19479d757db42a30fd509940b1701be9c86a5ff9a"}, + {file = "lxml-5.3.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee70d08fd60c9565ba8190f41a46a54096afa0eeb8f76bd66f2c25d3b1b83005"}, + {file = "lxml-5.3.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:8dc2c0395bea8254d8daebc76dcf8eb3a95ec2a46fa6fae5eaccee366bfe02ce"}, + {file = "lxml-5.3.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:6ba0d3dcac281aad8a0e5b14c7ed6f9fa89c8612b47939fc94f80b16e2e9bc83"}, + {file = "lxml-5.3.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:6e91cf736959057f7aac7adfc83481e03615a8e8dd5758aa1d95ea69e8931dba"}, + {file = "lxml-5.3.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:94d6c3782907b5e40e21cadf94b13b0842ac421192f26b84c45f13f3c9d5dc27"}, + {file = "lxml-5.3.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c300306673aa0f3ed5ed9372b21867690a17dba38c68c44b287437c362ce486b"}, + {file = "lxml-5.3.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:78d9b952e07aed35fe2e1a7ad26e929595412db48535921c5013edc8aa4a35ce"}, + {file = "lxml-5.3.0-pp37-pypy37_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:01220dca0d066d1349bd6a1726856a78f7929f3878f7e2ee83c296c69495309e"}, + {file = "lxml-5.3.0-pp37-pypy37_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:2d9b8d9177afaef80c53c0a9e30fa252ff3036fb1c6494d427c066a4ce6a282f"}, + {file = "lxml-5.3.0-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:20094fc3f21ea0a8669dc4c61ed7fa8263bd37d97d93b90f28fc613371e7a875"}, + {file = "lxml-5.3.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:ace2c2326a319a0bb8a8b0e5b570c764962e95818de9f259ce814ee666603f19"}, + {file = "lxml-5.3.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:92e67a0be1639c251d21e35fe74df6bcc40cba445c2cda7c4a967656733249e2"}, + {file = "lxml-5.3.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd5350b55f9fecddc51385463a4f67a5da829bc741e38cf689f38ec9023f54ab"}, + {file = "lxml-5.3.0-pp38-pypy38_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:4c1fefd7e3d00921c44dc9ca80a775af49698bbfd92ea84498e56acffd4c5469"}, + {file = "lxml-5.3.0-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:71a8dd38fbd2f2319136d4ae855a7078c69c9a38ae06e0c17c73fd70fc6caad8"}, + {file = "lxml-5.3.0-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:97acf1e1fd66ab53dacd2c35b319d7e548380c2e9e8c54525c6e76d21b1ae3b1"}, + {file = "lxml-5.3.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:68934b242c51eb02907c5b81d138cb977b2129a0a75a8f8b60b01cb8586c7b21"}, + {file = "lxml-5.3.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b710bc2b8292966b23a6a0121f7a6c51d45d2347edcc75f016ac123b8054d3f2"}, + {file = "lxml-5.3.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:18feb4b93302091b1541221196a2155aa296c363fd233814fa11e181adebc52f"}, + {file = "lxml-5.3.0-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:3eb44520c4724c2e1a57c0af33a379eee41792595023f367ba3952a2d96c2aab"}, + {file = "lxml-5.3.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:609251a0ca4770e5a8768ff902aa02bf636339c5a93f9349b48eb1f606f7f3e9"}, + {file = "lxml-5.3.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:516f491c834eb320d6c843156440fe7fc0d50b33e44387fcec5b02f0bc118a4c"}, + {file = "lxml-5.3.0.tar.gz", hash = "sha256:4e109ca30d1edec1ac60cdbe341905dc3b8f55b16855e03a54aaf59e51ec8c6f"}, ] [package.extras] @@ -2707,7 +2725,7 @@ cssselect = ["cssselect (>=0.7)"] html-clean = ["lxml-html-clean"] html5 = ["html5lib"] htmlsoup = ["BeautifulSoup4"] -source = ["Cython (>=3.0.10)"] +source = ["Cython (>=3.0.11)"] [[package]] name = "mako" @@ -2799,13 +2817,13 @@ files = [ [[package]] name = "marshmallow" -version = "3.21.3" +version = "3.22.0" description = "A lightweight library for converting complex datatypes to and from native Python datatypes." optional = false python-versions = ">=3.8" files = [ - {file = "marshmallow-3.21.3-py3-none-any.whl", hash = "sha256:86ce7fb914aa865001a4b2092c4c2872d13bc347f3d42673272cabfdbad386f1"}, - {file = "marshmallow-3.21.3.tar.gz", hash = "sha256:4f57c5e050a54d66361e826f94fba213eb10b67b2fdb02c3e0343ce207ba1662"}, + {file = "marshmallow-3.22.0-py3-none-any.whl", hash = "sha256:71a2dce49ef901c3f97ed296ae5051135fd3febd2bf43afe0ae9a82143a494d9"}, + {file = "marshmallow-3.22.0.tar.gz", hash = "sha256:4972f529104a220bb8637d595aa4c9762afbe7f7a77d82dc58c1615d70c5823e"}, ] [package.dependencies] @@ -2813,7 +2831,7 @@ packaging = ">=17.0" [package.extras] dev = ["marshmallow[tests]", "pre-commit (>=3.5,<4.0)", "tox"] -docs = ["alabaster (==0.7.16)", "autodocsumm (==0.2.12)", "sphinx (==7.3.7)", "sphinx-issues (==4.1.0)", "sphinx-version-warning (==1.1.2)"] +docs = ["alabaster (==1.0.0)", "autodocsumm (==0.2.13)", "sphinx (==8.0.2)", "sphinx-issues (==4.1.0)", "sphinx-version-warning (==1.1.2)"] tests = ["pytest", "pytz", "simplejson"] [[package]] @@ -2939,67 +2957,75 @@ test = ["pytest", "pytest-cov"] [[package]] name = "msgpack" -version = "1.0.8" +version = "1.1.0" description = "MessagePack serializer" optional = false python-versions = ">=3.8" files = [ - {file = "msgpack-1.0.8-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:505fe3d03856ac7d215dbe005414bc28505d26f0c128906037e66d98c4e95868"}, - {file = "msgpack-1.0.8-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e6b7842518a63a9f17107eb176320960ec095a8ee3b4420b5f688e24bf50c53c"}, - {file = "msgpack-1.0.8-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:376081f471a2ef24828b83a641a02c575d6103a3ad7fd7dade5486cad10ea659"}, - {file = "msgpack-1.0.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e390971d082dba073c05dbd56322427d3280b7cc8b53484c9377adfbae67dc2"}, - {file = "msgpack-1.0.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:00e073efcba9ea99db5acef3959efa45b52bc67b61b00823d2a1a6944bf45982"}, - {file = "msgpack-1.0.8-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:82d92c773fbc6942a7a8b520d22c11cfc8fd83bba86116bfcf962c2f5c2ecdaa"}, - {file = "msgpack-1.0.8-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:9ee32dcb8e531adae1f1ca568822e9b3a738369b3b686d1477cbc643c4a9c128"}, - {file = "msgpack-1.0.8-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:e3aa7e51d738e0ec0afbed661261513b38b3014754c9459508399baf14ae0c9d"}, - {file = "msgpack-1.0.8-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:69284049d07fce531c17404fcba2bb1df472bc2dcdac642ae71a2d079d950653"}, - {file = "msgpack-1.0.8-cp310-cp310-win32.whl", hash = "sha256:13577ec9e247f8741c84d06b9ece5f654920d8365a4b636ce0e44f15e07ec693"}, - {file = "msgpack-1.0.8-cp310-cp310-win_amd64.whl", hash = "sha256:e532dbd6ddfe13946de050d7474e3f5fb6ec774fbb1a188aaf469b08cf04189a"}, - {file = "msgpack-1.0.8-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9517004e21664f2b5a5fd6333b0731b9cf0817403a941b393d89a2f1dc2bd836"}, - {file = "msgpack-1.0.8-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:d16a786905034e7e34098634b184a7d81f91d4c3d246edc6bd7aefb2fd8ea6ad"}, - {file = "msgpack-1.0.8-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:e2872993e209f7ed04d963e4b4fbae72d034844ec66bc4ca403329db2074377b"}, - {file = "msgpack-1.0.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5c330eace3dd100bdb54b5653b966de7f51c26ec4a7d4e87132d9b4f738220ba"}, - {file = "msgpack-1.0.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:83b5c044f3eff2a6534768ccfd50425939e7a8b5cf9a7261c385de1e20dcfc85"}, - {file = "msgpack-1.0.8-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1876b0b653a808fcd50123b953af170c535027bf1d053b59790eebb0aeb38950"}, - {file = "msgpack-1.0.8-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:dfe1f0f0ed5785c187144c46a292b8c34c1295c01da12e10ccddfc16def4448a"}, - {file = "msgpack-1.0.8-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3528807cbbb7f315bb81959d5961855e7ba52aa60a3097151cb21956fbc7502b"}, - {file = "msgpack-1.0.8-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e2f879ab92ce502a1e65fce390eab619774dda6a6ff719718069ac94084098ce"}, - {file = "msgpack-1.0.8-cp311-cp311-win32.whl", hash = "sha256:26ee97a8261e6e35885c2ecd2fd4a6d38252246f94a2aec23665a4e66d066305"}, - {file = "msgpack-1.0.8-cp311-cp311-win_amd64.whl", hash = "sha256:eadb9f826c138e6cf3c49d6f8de88225a3c0ab181a9b4ba792e006e5292d150e"}, - {file = "msgpack-1.0.8-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:114be227f5213ef8b215c22dde19532f5da9652e56e8ce969bf0a26d7c419fee"}, - {file = "msgpack-1.0.8-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:d661dc4785affa9d0edfdd1e59ec056a58b3dbb9f196fa43587f3ddac654ac7b"}, - {file = "msgpack-1.0.8-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:d56fd9f1f1cdc8227d7b7918f55091349741904d9520c65f0139a9755952c9e8"}, - {file = "msgpack-1.0.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0726c282d188e204281ebd8de31724b7d749adebc086873a59efb8cf7ae27df3"}, - {file = "msgpack-1.0.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8db8e423192303ed77cff4dce3a4b88dbfaf43979d280181558af5e2c3c71afc"}, - {file = "msgpack-1.0.8-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:99881222f4a8c2f641f25703963a5cefb076adffd959e0558dc9f803a52d6a58"}, - {file = "msgpack-1.0.8-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:b5505774ea2a73a86ea176e8a9a4a7c8bf5d521050f0f6f8426afe798689243f"}, - {file = "msgpack-1.0.8-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:ef254a06bcea461e65ff0373d8a0dd1ed3aa004af48839f002a0c994a6f72d04"}, - {file = "msgpack-1.0.8-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:e1dd7839443592d00e96db831eddb4111a2a81a46b028f0facd60a09ebbdd543"}, - {file = "msgpack-1.0.8-cp312-cp312-win32.whl", hash = "sha256:64d0fcd436c5683fdd7c907eeae5e2cbb5eb872fafbc03a43609d7941840995c"}, - {file = "msgpack-1.0.8-cp312-cp312-win_amd64.whl", hash = "sha256:74398a4cf19de42e1498368c36eed45d9528f5fd0155241e82c4082b7e16cffd"}, - {file = "msgpack-1.0.8-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:0ceea77719d45c839fd73abcb190b8390412a890df2f83fb8cf49b2a4b5c2f40"}, - {file = "msgpack-1.0.8-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1ab0bbcd4d1f7b6991ee7c753655b481c50084294218de69365f8f1970d4c151"}, - {file = "msgpack-1.0.8-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:1cce488457370ffd1f953846f82323cb6b2ad2190987cd4d70b2713e17268d24"}, - {file = "msgpack-1.0.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3923a1778f7e5ef31865893fdca12a8d7dc03a44b33e2a5f3295416314c09f5d"}, - {file = "msgpack-1.0.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a22e47578b30a3e199ab067a4d43d790249b3c0587d9a771921f86250c8435db"}, - {file = "msgpack-1.0.8-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bd739c9251d01e0279ce729e37b39d49a08c0420d3fee7f2a4968c0576678f77"}, - {file = "msgpack-1.0.8-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:d3420522057ebab1728b21ad473aa950026d07cb09da41103f8e597dfbfaeb13"}, - {file = "msgpack-1.0.8-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:5845fdf5e5d5b78a49b826fcdc0eb2e2aa7191980e3d2cfd2a30303a74f212e2"}, - {file = "msgpack-1.0.8-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:6a0e76621f6e1f908ae52860bdcb58e1ca85231a9b0545e64509c931dd34275a"}, - {file = "msgpack-1.0.8-cp38-cp38-win32.whl", hash = "sha256:374a8e88ddab84b9ada695d255679fb99c53513c0a51778796fcf0944d6c789c"}, - {file = "msgpack-1.0.8-cp38-cp38-win_amd64.whl", hash = "sha256:f3709997b228685fe53e8c433e2df9f0cdb5f4542bd5114ed17ac3c0129b0480"}, - {file = "msgpack-1.0.8-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:f51bab98d52739c50c56658cc303f190785f9a2cd97b823357e7aeae54c8f68a"}, - {file = "msgpack-1.0.8-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:73ee792784d48aa338bba28063e19a27e8d989344f34aad14ea6e1b9bd83f596"}, - {file = "msgpack-1.0.8-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f9904e24646570539a8950400602d66d2b2c492b9010ea7e965025cb71d0c86d"}, - {file = "msgpack-1.0.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e75753aeda0ddc4c28dce4c32ba2f6ec30b1b02f6c0b14e547841ba5b24f753f"}, - {file = "msgpack-1.0.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5dbf059fb4b7c240c873c1245ee112505be27497e90f7c6591261c7d3c3a8228"}, - {file = "msgpack-1.0.8-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4916727e31c28be8beaf11cf117d6f6f188dcc36daae4e851fee88646f5b6b18"}, - {file = "msgpack-1.0.8-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:7938111ed1358f536daf311be244f34df7bf3cdedb3ed883787aca97778b28d8"}, - {file = "msgpack-1.0.8-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:493c5c5e44b06d6c9268ce21b302c9ca055c1fd3484c25ba41d34476c76ee746"}, - {file = "msgpack-1.0.8-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:5fbb160554e319f7b22ecf530a80a3ff496d38e8e07ae763b9e82fadfe96f273"}, - {file = "msgpack-1.0.8-cp39-cp39-win32.whl", hash = "sha256:f9af38a89b6a5c04b7d18c492c8ccf2aee7048aff1ce8437c4683bb5a1df893d"}, - {file = "msgpack-1.0.8-cp39-cp39-win_amd64.whl", hash = "sha256:ed59dd52075f8fc91da6053b12e8c89e37aa043f8986efd89e61fae69dc1b011"}, - {file = "msgpack-1.0.8.tar.gz", hash = "sha256:95c02b0e27e706e48d0e5426d1710ca78e0f0628d6e89d5b5a5b91a5f12274f3"}, + {file = "msgpack-1.1.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7ad442d527a7e358a469faf43fda45aaf4ac3249c8310a82f0ccff9164e5dccd"}, + {file = "msgpack-1.1.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:74bed8f63f8f14d75eec75cf3d04ad581da6b914001b474a5d3cd3372c8cc27d"}, + {file = "msgpack-1.1.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:914571a2a5b4e7606997e169f64ce53a8b1e06f2cf2c3a7273aa106236d43dd5"}, + {file = "msgpack-1.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c921af52214dcbb75e6bdf6a661b23c3e6417f00c603dd2070bccb5c3ef499f5"}, + {file = "msgpack-1.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d8ce0b22b890be5d252de90d0e0d119f363012027cf256185fc3d474c44b1b9e"}, + {file = "msgpack-1.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:73322a6cc57fcee3c0c57c4463d828e9428275fb85a27aa2aa1a92fdc42afd7b"}, + {file = "msgpack-1.1.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:e1f3c3d21f7cf67bcf2da8e494d30a75e4cf60041d98b3f79875afb5b96f3a3f"}, + {file = "msgpack-1.1.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:64fc9068d701233effd61b19efb1485587560b66fe57b3e50d29c5d78e7fef68"}, + {file = "msgpack-1.1.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:42f754515e0f683f9c79210a5d1cad631ec3d06cea5172214d2176a42e67e19b"}, + {file = "msgpack-1.1.0-cp310-cp310-win32.whl", hash = "sha256:3df7e6b05571b3814361e8464f9304c42d2196808e0119f55d0d3e62cd5ea044"}, + {file = "msgpack-1.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:685ec345eefc757a7c8af44a3032734a739f8c45d1b0ac45efc5d8977aa4720f"}, + {file = "msgpack-1.1.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:3d364a55082fb2a7416f6c63ae383fbd903adb5a6cf78c5b96cc6316dc1cedc7"}, + {file = "msgpack-1.1.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:79ec007767b9b56860e0372085f8504db5d06bd6a327a335449508bbee9648fa"}, + {file = "msgpack-1.1.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6ad622bf7756d5a497d5b6836e7fc3752e2dd6f4c648e24b1803f6048596f701"}, + {file = "msgpack-1.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e59bca908d9ca0de3dc8684f21ebf9a690fe47b6be93236eb40b99af28b6ea6"}, + {file = "msgpack-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5e1da8f11a3dd397f0a32c76165cf0c4eb95b31013a94f6ecc0b280c05c91b59"}, + {file = "msgpack-1.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:452aff037287acb1d70a804ffd022b21fa2bb7c46bee884dbc864cc9024128a0"}, + {file = "msgpack-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8da4bf6d54ceed70e8861f833f83ce0814a2b72102e890cbdfe4b34764cdd66e"}, + {file = "msgpack-1.1.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:41c991beebf175faf352fb940bf2af9ad1fb77fd25f38d9142053914947cdbf6"}, + {file = "msgpack-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a52a1f3a5af7ba1c9ace055b659189f6c669cf3657095b50f9602af3a3ba0fe5"}, + {file = "msgpack-1.1.0-cp311-cp311-win32.whl", hash = "sha256:58638690ebd0a06427c5fe1a227bb6b8b9fdc2bd07701bec13c2335c82131a88"}, + {file = "msgpack-1.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:fd2906780f25c8ed5d7b323379f6138524ba793428db5d0e9d226d3fa6aa1788"}, + {file = "msgpack-1.1.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:d46cf9e3705ea9485687aa4001a76e44748b609d260af21c4ceea7f2212a501d"}, + {file = "msgpack-1.1.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:5dbad74103df937e1325cc4bfeaf57713be0b4f15e1c2da43ccdd836393e2ea2"}, + {file = "msgpack-1.1.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:58dfc47f8b102da61e8949708b3eafc3504509a5728f8b4ddef84bd9e16ad420"}, + {file = "msgpack-1.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4676e5be1b472909b2ee6356ff425ebedf5142427842aa06b4dfd5117d1ca8a2"}, + {file = "msgpack-1.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:17fb65dd0bec285907f68b15734a993ad3fc94332b5bb21b0435846228de1f39"}, + {file = "msgpack-1.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a51abd48c6d8ac89e0cfd4fe177c61481aca2d5e7ba42044fd218cfd8ea9899f"}, + {file = "msgpack-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2137773500afa5494a61b1208619e3871f75f27b03bcfca7b3a7023284140247"}, + {file = "msgpack-1.1.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:398b713459fea610861c8a7b62a6fec1882759f308ae0795b5413ff6a160cf3c"}, + {file = "msgpack-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:06f5fd2f6bb2a7914922d935d3b8bb4a7fff3a9a91cfce6d06c13bc42bec975b"}, + {file = "msgpack-1.1.0-cp312-cp312-win32.whl", hash = "sha256:ad33e8400e4ec17ba782f7b9cf868977d867ed784a1f5f2ab46e7ba53b6e1e1b"}, + {file = "msgpack-1.1.0-cp312-cp312-win_amd64.whl", hash = "sha256:115a7af8ee9e8cddc10f87636767857e7e3717b7a2e97379dc2054712693e90f"}, + {file = "msgpack-1.1.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:071603e2f0771c45ad9bc65719291c568d4edf120b44eb36324dcb02a13bfddf"}, + {file = "msgpack-1.1.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:0f92a83b84e7c0749e3f12821949d79485971f087604178026085f60ce109330"}, + {file = "msgpack-1.1.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:4a1964df7b81285d00a84da4e70cb1383f2e665e0f1f2a7027e683956d04b734"}, + {file = "msgpack-1.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:59caf6a4ed0d164055ccff8fe31eddc0ebc07cf7326a2aaa0dbf7a4001cd823e"}, + {file = "msgpack-1.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0907e1a7119b337971a689153665764adc34e89175f9a34793307d9def08e6ca"}, + {file = "msgpack-1.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:65553c9b6da8166e819a6aa90ad15288599b340f91d18f60b2061f402b9a4915"}, + {file = "msgpack-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:7a946a8992941fea80ed4beae6bff74ffd7ee129a90b4dd5cf9c476a30e9708d"}, + {file = "msgpack-1.1.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4b51405e36e075193bc051315dbf29168d6141ae2500ba8cd80a522964e31434"}, + {file = "msgpack-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:b4c01941fd2ff87c2a934ee6055bda4ed353a7846b8d4f341c428109e9fcde8c"}, + {file = "msgpack-1.1.0-cp313-cp313-win32.whl", hash = "sha256:7c9a35ce2c2573bada929e0b7b3576de647b0defbd25f5139dcdaba0ae35a4cc"}, + {file = "msgpack-1.1.0-cp313-cp313-win_amd64.whl", hash = "sha256:bce7d9e614a04d0883af0b3d4d501171fbfca038f12c77fa838d9f198147a23f"}, + {file = "msgpack-1.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c40ffa9a15d74e05ba1fe2681ea33b9caffd886675412612d93ab17b58ea2fec"}, + {file = "msgpack-1.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f1ba6136e650898082d9d5a5217d5906d1e138024f836ff48691784bbe1adf96"}, + {file = "msgpack-1.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e0856a2b7e8dcb874be44fea031d22e5b3a19121be92a1e098f46068a11b0870"}, + {file = "msgpack-1.1.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:471e27a5787a2e3f974ba023f9e265a8c7cfd373632247deb225617e3100a3c7"}, + {file = "msgpack-1.1.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:646afc8102935a388ffc3914b336d22d1c2d6209c773f3eb5dd4d6d3b6f8c1cb"}, + {file = "msgpack-1.1.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:13599f8829cfbe0158f6456374e9eea9f44eee08076291771d8ae93eda56607f"}, + {file = "msgpack-1.1.0-cp38-cp38-win32.whl", hash = "sha256:8a84efb768fb968381e525eeeb3d92857e4985aacc39f3c47ffd00eb4509315b"}, + {file = "msgpack-1.1.0-cp38-cp38-win_amd64.whl", hash = "sha256:879a7b7b0ad82481c52d3c7eb99bf6f0645dbdec5134a4bddbd16f3506947feb"}, + {file = "msgpack-1.1.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:53258eeb7a80fc46f62fd59c876957a2d0e15e6449a9e71842b6d24419d88ca1"}, + {file = "msgpack-1.1.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:7e7b853bbc44fb03fbdba34feb4bd414322180135e2cb5164f20ce1c9795ee48"}, + {file = "msgpack-1.1.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f3e9b4936df53b970513eac1758f3882c88658a220b58dcc1e39606dccaaf01c"}, + {file = "msgpack-1.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:46c34e99110762a76e3911fc923222472c9d681f1094096ac4102c18319e6468"}, + {file = "msgpack-1.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8a706d1e74dd3dea05cb54580d9bd8b2880e9264856ce5068027eed09680aa74"}, + {file = "msgpack-1.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:534480ee5690ab3cbed89d4c8971a5c631b69a8c0883ecfea96c19118510c846"}, + {file = "msgpack-1.1.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8cf9e8c3a2153934a23ac160cc4cba0ec035f6867c8013cc6077a79823370346"}, + {file = "msgpack-1.1.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3180065ec2abbe13a4ad37688b61b99d7f9e012a535b930e0e683ad6bc30155b"}, + {file = "msgpack-1.1.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:c5a91481a3cc573ac8c0d9aace09345d989dc4a0202b7fcb312c88c26d4e71a8"}, + {file = "msgpack-1.1.0-cp39-cp39-win32.whl", hash = "sha256:f80bc7d47f76089633763f952e67f8214cb7b3ee6bfa489b3cb6a84cfac114cd"}, + {file = "msgpack-1.1.0-cp39-cp39-win_amd64.whl", hash = "sha256:4d1b7ff2d6146e16e8bd665ac726a89c74163ef8cd39fa8c1087d4e52d3a2325"}, + {file = "msgpack-1.1.0.tar.gz", hash = "sha256:dd432ccc2c72b914e4cb77afce64aab761c1137cc698be3984eee260bcb2896e"}, ] [[package]] @@ -3222,19 +3248,19 @@ xmp = ["defusedxml"] [[package]] name = "platformdirs" -version = "4.2.2" +version = "4.3.2" description = "A small Python package for determining appropriate platform-specific dirs, e.g. a `user data dir`." optional = false python-versions = ">=3.8" files = [ - {file = "platformdirs-4.2.2-py3-none-any.whl", hash = "sha256:2d7a1657e36a80ea911db832a8a6ece5ee53d8de21edd5cc5879af6530b1bfee"}, - {file = "platformdirs-4.2.2.tar.gz", hash = "sha256:38b7b51f512eed9e84a22788b4bce1de17c0adb134d6becb09836e37d8654cd3"}, + {file = "platformdirs-4.3.2-py3-none-any.whl", hash = "sha256:eb1c8582560b34ed4ba105009a4badf7f6f85768b30126f351328507b2beb617"}, + {file = "platformdirs-4.3.2.tar.gz", hash = "sha256:9e5e27a08aa095dd127b9f2e764d74254f482fef22b0970773bfba79d091ab8c"}, ] [package.extras] -docs = ["furo (>=2023.9.10)", "proselint (>=0.13)", "sphinx (>=7.2.6)", "sphinx-autodoc-typehints (>=1.25.2)"] -test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4.3)", "pytest-cov (>=4.1)", "pytest-mock (>=3.12)"] -type = ["mypy (>=1.8)"] +docs = ["furo (>=2024.8.6)", "proselint (>=0.14)", "sphinx (>=8.0.2)", "sphinx-autodoc-typehints (>=2.4)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=8.3.2)", "pytest-cov (>=5)", "pytest-mock (>=3.14)"] +type = ["mypy (>=1.11.2)"] [[package]] name = "pluggy" @@ -3252,13 +3278,13 @@ dev = ["pre-commit", "tox"] [[package]] name = "poethepoet" -version = "0.27.0" +version = "0.28.0" description = "A task runner that works well with poetry." optional = false python-versions = ">=3.8" files = [ - {file = "poethepoet-0.27.0-py3-none-any.whl", hash = "sha256:0032d980a623b96e26dc7450ae200b0998be523f27d297d799b97510fe252a24"}, - {file = "poethepoet-0.27.0.tar.gz", hash = "sha256:907ab4dc1bc6326be5a3b10d2aa39d1acc0ca12024317d9506fbe9c0cdc912c9"}, + {file = "poethepoet-0.28.0-py3-none-any.whl", hash = "sha256:db6946ff39a1244235950cd720ee7182107f64126d3dcc64c9a996cc4d755404"}, + {file = "poethepoet-0.28.0.tar.gz", hash = "sha256:5dc3ee036ab0c93e918b5caed628274618b07d788e5cff6c4ae480913cbe009c"}, ] [package.dependencies] @@ -3398,13 +3424,13 @@ files = [ [[package]] name = "pycodestyle" -version = "2.12.0" +version = "2.12.1" description = "Python style guide checker" optional = false python-versions = ">=3.8" files = [ - {file = "pycodestyle-2.12.0-py2.py3-none-any.whl", hash = "sha256:949a39f6b86c3e1515ba1787c2022131d165a8ad271b11370a8819aa070269e4"}, - {file = "pycodestyle-2.12.0.tar.gz", hash = "sha256:442f950141b4f43df752dd303511ffded3a04c2b6fb7f65980574f0c31e6e79c"}, + {file = "pycodestyle-2.12.1-py2.py3-none-any.whl", hash = "sha256:46f0fb92069a7c28ab7bb558f05bfc0110dac69a0cd23c61ea0040283a9d78b3"}, + {file = "pycodestyle-2.12.1.tar.gz", hash = "sha256:6838eae08bbce4f6accd5d5572075c63626a15ee3e6f842df996bf62f6d73521"}, ] [[package]] @@ -3462,13 +3488,13 @@ windows-terminal = ["colorama (>=0.4.6)"] [[package]] name = "pyjwt" -version = "2.8.0" +version = "2.9.0" description = "JSON Web Token implementation in Python" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "PyJWT-2.8.0-py3-none-any.whl", hash = "sha256:59127c392cc44c2da5bb3192169a91f429924e17aff6534d70fdc02ab3e04320"}, - {file = "PyJWT-2.8.0.tar.gz", hash = "sha256:57e28d156e3d5c10088e0c68abb90bfac3df82b40a71bd0daa20c65ccd5c23de"}, + {file = "PyJWT-2.9.0-py3-none-any.whl", hash = "sha256:3b02fb0f44517787776cf48f2ae25d8e14f300e6d7545a4315cee571a415e850"}, + {file = "pyjwt-2.9.0.tar.gz", hash = "sha256:7e1e5b56cc735432a7369cbfa0efe50fa113ebecdc04ae6922deba8b84582d0c"}, ] [package.dependencies] @@ -3476,8 +3502,8 @@ cryptography = {version = ">=3.4.0", optional = true, markers = "extra == \"cryp [package.extras] crypto = ["cryptography (>=3.4.0)"] -dev = ["coverage[toml] (==5.0.4)", "cryptography (>=3.4.0)", "pre-commit", "pytest (>=6.0.0,<7.0.0)", "sphinx (>=4.5.0,<5.0.0)", "sphinx-rtd-theme", "zope.interface"] -docs = ["sphinx (>=4.5.0,<5.0.0)", "sphinx-rtd-theme", "zope.interface"] +dev = ["coverage[toml] (==5.0.4)", "cryptography (>=3.4.0)", "pre-commit", "pytest (>=6.0.0,<7.0.0)", "sphinx", "sphinx-rtd-theme", "zope.interface"] +docs = ["sphinx", "sphinx-rtd-theme", "zope.interface"] tests = ["coverage[toml] (==5.0.4)", "pytest (>=6.0.0,<7.0.0)"] [[package]] @@ -3745,69 +3771,82 @@ tests = ["pytest-black (>=0.3.0)", "pytest-cache (>=1.0)", "pytest-invenio (>=2. [[package]] name = "pyyaml" -version = "6.0.1" +version = "6.0.2" description = "YAML parser and emitter for Python" optional = false -python-versions = ">=3.6" +python-versions = ">=3.8" files = [ - {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, - {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, - {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, - {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, - {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, - {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, - {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, - {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, - {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, - {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, - {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, - {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, - {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, - {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, - {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, - {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, - {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, - {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, - {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, - {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, - {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, - {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, - {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, - {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, - {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, - {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, - {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, - {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, - {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, - {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, - {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, - {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, - {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, - {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, - {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, - {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, - {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, - {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, - {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, - {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, + {file = "PyYAML-6.0.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0a9a2848a5b7feac301353437eb7d5957887edbf81d56e903999a75a3d743086"}, + {file = "PyYAML-6.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:29717114e51c84ddfba879543fb232a6ed60086602313ca38cce623c1d62cfbf"}, + {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8824b5a04a04a047e72eea5cec3bc266db09e35de6bdfe34c9436ac5ee27d237"}, + {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7c36280e6fb8385e520936c3cb3b8042851904eba0e58d277dca80a5cfed590b"}, + {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ec031d5d2feb36d1d1a24380e4db6d43695f3748343d99434e6f5f9156aaa2ed"}, + {file = "PyYAML-6.0.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:936d68689298c36b53b29f23c6dbb74de12b4ac12ca6cfe0e047bedceea56180"}, + {file = "PyYAML-6.0.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:23502f431948090f597378482b4812b0caae32c22213aecf3b55325e049a6c68"}, + {file = "PyYAML-6.0.2-cp310-cp310-win32.whl", hash = "sha256:2e99c6826ffa974fe6e27cdb5ed0021786b03fc98e5ee3c5bfe1fd5015f42b99"}, + {file = "PyYAML-6.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:a4d3091415f010369ae4ed1fc6b79def9416358877534caf6a0fdd2146c87a3e"}, + {file = "PyYAML-6.0.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cc1c1159b3d456576af7a3e4d1ba7e6924cb39de8f67111c735f6fc832082774"}, + {file = "PyYAML-6.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1e2120ef853f59c7419231f3bf4e7021f1b936f6ebd222406c3b60212205d2ee"}, + {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5d225db5a45f21e78dd9358e58a98702a0302f2659a3c6cd320564b75b86f47c"}, + {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5ac9328ec4831237bec75defaf839f7d4564be1e6b25ac710bd1a96321cc8317"}, + {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ad2a3decf9aaba3d29c8f537ac4b243e36bef957511b4766cb0057d32b0be85"}, + {file = "PyYAML-6.0.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ff3824dc5261f50c9b0dfb3be22b4567a6f938ccce4587b38952d85fd9e9afe4"}, + {file = "PyYAML-6.0.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:797b4f722ffa07cc8d62053e4cff1486fa6dc094105d13fea7b1de7d8bf71c9e"}, + {file = "PyYAML-6.0.2-cp311-cp311-win32.whl", hash = "sha256:11d8f3dd2b9c1207dcaf2ee0bbbfd5991f571186ec9cc78427ba5bd32afae4b5"}, + {file = "PyYAML-6.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:e10ce637b18caea04431ce14fabcf5c64a1c61ec9c56b071a4b7ca131ca52d44"}, + {file = "PyYAML-6.0.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:c70c95198c015b85feafc136515252a261a84561b7b1d51e3384e0655ddf25ab"}, + {file = "PyYAML-6.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ce826d6ef20b1bc864f0a68340c8b3287705cae2f8b4b1d932177dcc76721725"}, + {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f71ea527786de97d1a0cc0eacd1defc0985dcf6b3f17bb77dcfc8c34bec4dc5"}, + {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9b22676e8097e9e22e36d6b7bda33190d0d400f345f23d4065d48f4ca7ae0425"}, + {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:80bab7bfc629882493af4aa31a4cfa43a4c57c83813253626916b8c7ada83476"}, + {file = "PyYAML-6.0.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:0833f8694549e586547b576dcfaba4a6b55b9e96098b36cdc7ebefe667dfed48"}, + {file = "PyYAML-6.0.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8b9c7197f7cb2738065c481a0461e50ad02f18c78cd75775628afb4d7137fb3b"}, + {file = "PyYAML-6.0.2-cp312-cp312-win32.whl", hash = "sha256:ef6107725bd54b262d6dedcc2af448a266975032bc85ef0172c5f059da6325b4"}, + {file = "PyYAML-6.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:7e7401d0de89a9a855c839bc697c079a4af81cf878373abd7dc625847d25cbd8"}, + {file = "PyYAML-6.0.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:efdca5630322a10774e8e98e1af481aad470dd62c3170801852d752aa7a783ba"}, + {file = "PyYAML-6.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:50187695423ffe49e2deacb8cd10510bc361faac997de9efef88badc3bb9e2d1"}, + {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ffe8360bab4910ef1b9e87fb812d8bc0a308b0d0eef8c8f44e0254ab3b07133"}, + {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:17e311b6c678207928d649faa7cb0d7b4c26a0ba73d41e99c4fff6b6c3276484"}, + {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:70b189594dbe54f75ab3a1acec5f1e3faa7e8cf2f1e08d9b561cb41b845f69d5"}, + {file = "PyYAML-6.0.2-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:41e4e3953a79407c794916fa277a82531dd93aad34e29c2a514c2c0c5fe971cc"}, + {file = "PyYAML-6.0.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:68ccc6023a3400877818152ad9a1033e3db8625d899c72eacb5a668902e4d652"}, + {file = "PyYAML-6.0.2-cp313-cp313-win32.whl", hash = "sha256:bc2fa7c6b47d6bc618dd7fb02ef6fdedb1090ec036abab80d4681424b84c1183"}, + {file = "PyYAML-6.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:8388ee1976c416731879ac16da0aff3f63b286ffdd57cdeb95f3f2e085687563"}, + {file = "PyYAML-6.0.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:24471b829b3bf607e04e88d79542a9d48bb037c2267d7927a874e6c205ca7e9a"}, + {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d7fded462629cfa4b685c5416b949ebad6cec74af5e2d42905d41e257e0869f5"}, + {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d84a1718ee396f54f3a086ea0a66d8e552b2ab2017ef8b420e92edbc841c352d"}, + {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9056c1ecd25795207ad294bcf39f2db3d845767be0ea6e6a34d856f006006083"}, + {file = "PyYAML-6.0.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:82d09873e40955485746739bcb8b4586983670466c23382c19cffecbf1fd8706"}, + {file = "PyYAML-6.0.2-cp38-cp38-win32.whl", hash = "sha256:43fa96a3ca0d6b1812e01ced1044a003533c47f6ee8aca31724f78e93ccc089a"}, + {file = "PyYAML-6.0.2-cp38-cp38-win_amd64.whl", hash = "sha256:01179a4a8559ab5de078078f37e5c1a30d76bb88519906844fd7bdea1b7729ff"}, + {file = "PyYAML-6.0.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:688ba32a1cffef67fd2e9398a2efebaea461578b0923624778664cc1c914db5d"}, + {file = "PyYAML-6.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a8786accb172bd8afb8be14490a16625cbc387036876ab6ba70912730faf8e1f"}, + {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8e03406cac8513435335dbab54c0d385e4a49e4945d2909a581c83647ca0290"}, + {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f753120cb8181e736c57ef7636e83f31b9c0d1722c516f7e86cf15b7aa57ff12"}, + {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3b1fdb9dc17f5a7677423d508ab4f243a726dea51fa5e70992e59a7411c89d19"}, + {file = "PyYAML-6.0.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:0b69e4ce7a131fe56b7e4d770c67429700908fc0752af059838b1cfb41960e4e"}, + {file = "PyYAML-6.0.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:a9f8c2e67970f13b16084e04f134610fd1d374bf477b17ec1599185cf611d725"}, + {file = "PyYAML-6.0.2-cp39-cp39-win32.whl", hash = "sha256:6395c297d42274772abc367baaa79683958044e5d3835486c16da75d2a694631"}, + {file = "PyYAML-6.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:39693e1f8320ae4f43943590b49779ffb98acb81f788220ea932a6b6c51004d8"}, + {file = "pyyaml-6.0.2.tar.gz", hash = "sha256:d584d9ec91ad65861cc08d42e834324ef890a082e591037abe114850ff7bbc3e"}, ] [[package]] name = "redis" -version = "5.0.7" +version = "5.0.8" description = "Python client for Redis database and key-value store" optional = false python-versions = ">=3.7" files = [ - {file = "redis-5.0.7-py3-none-any.whl", hash = "sha256:0e479e24da960c690be5d9b96d21f7b918a98c0cf49af3b6fafaa0753f93a0db"}, - {file = "redis-5.0.7.tar.gz", hash = "sha256:8f611490b93c8109b50adc317b31bfd84fff31def3475b92e7e80bf39f48175b"}, + {file = "redis-5.0.8-py3-none-any.whl", hash = "sha256:56134ee08ea909106090934adc36f65c9bcbbaecea5b21ba704ba6fb561f8eb4"}, + {file = "redis-5.0.8.tar.gz", hash = "sha256:0c5b10d387568dfe0698c6fad6615750c24170e548ca2deac10c649d463e9870"}, ] [package.dependencies] async-timeout = {version = ">=4.0.3", markers = "python_full_version < \"3.11.3\""} [package.extras] -hiredis = ["hiredis (>=1.0.0)"] +hiredis = ["hiredis (>1.0.0)"] ocsp = ["cryptography (>=36.0.1)", "pyopenssl (==20.0.1)", "requests (>=2.26.0)"] [[package]] @@ -3908,110 +3947,114 @@ jupyter = ["ipywidgets (>=7.5.1,<8.0.0)"] [[package]] name = "rpds-py" -version = "0.19.0" +version = "0.20.0" description = "Python bindings to Rust's persistent data structures (rpds)" optional = false python-versions = ">=3.8" files = [ - {file = "rpds_py-0.19.0-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:fb37bd599f031f1a6fb9e58ec62864ccf3ad549cf14bac527dbfa97123edcca4"}, - {file = "rpds_py-0.19.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3384d278df99ec2c6acf701d067147320b864ef6727405d6470838476e44d9e8"}, - {file = "rpds_py-0.19.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e54548e0be3ac117595408fd4ca0ac9278fde89829b0b518be92863b17ff67a2"}, - {file = "rpds_py-0.19.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8eb488ef928cdbc05a27245e52de73c0d7c72a34240ef4d9893fdf65a8c1a955"}, - {file = "rpds_py-0.19.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a5da93debdfe27b2bfc69eefb592e1831d957b9535e0943a0ee8b97996de21b5"}, - {file = "rpds_py-0.19.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:79e205c70afddd41f6ee79a8656aec738492a550247a7af697d5bd1aee14f766"}, - {file = "rpds_py-0.19.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:959179efb3e4a27610e8d54d667c02a9feaa86bbabaf63efa7faa4dfa780d4f1"}, - {file = "rpds_py-0.19.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:a6e605bb9edcf010f54f8b6a590dd23a4b40a8cb141255eec2a03db249bc915b"}, - {file = "rpds_py-0.19.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:9133d75dc119a61d1a0ded38fb9ba40a00ef41697cc07adb6ae098c875195a3f"}, - {file = "rpds_py-0.19.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:dd36b712d35e757e28bf2f40a71e8f8a2d43c8b026d881aa0c617b450d6865c9"}, - {file = "rpds_py-0.19.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:354f3a91718489912f2e0fc331c24eaaf6a4565c080e00fbedb6015857c00582"}, - {file = "rpds_py-0.19.0-cp310-none-win32.whl", hash = "sha256:ebcbf356bf5c51afc3290e491d3722b26aaf5b6af3c1c7f6a1b757828a46e336"}, - {file = "rpds_py-0.19.0-cp310-none-win_amd64.whl", hash = "sha256:75a6076289b2df6c8ecb9d13ff79ae0cad1d5fb40af377a5021016d58cd691ec"}, - {file = "rpds_py-0.19.0-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:6d45080095e585f8c5097897313def60caa2046da202cdb17a01f147fb263b81"}, - {file = "rpds_py-0.19.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c5c9581019c96f865483d031691a5ff1cc455feb4d84fc6920a5ffc48a794d8a"}, - {file = "rpds_py-0.19.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1540d807364c84516417115c38f0119dfec5ea5c0dd9a25332dea60b1d26fc4d"}, - {file = "rpds_py-0.19.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9e65489222b410f79711dc3d2d5003d2757e30874096b2008d50329ea4d0f88c"}, - {file = "rpds_py-0.19.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9da6f400eeb8c36f72ef6646ea530d6d175a4f77ff2ed8dfd6352842274c1d8b"}, - {file = "rpds_py-0.19.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:37f46bb11858717e0efa7893c0f7055c43b44c103e40e69442db5061cb26ed34"}, - {file = "rpds_py-0.19.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:071d4adc734de562bd11d43bd134330fb6249769b2f66b9310dab7460f4bf714"}, - {file = "rpds_py-0.19.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9625367c8955e4319049113ea4f8fee0c6c1145192d57946c6ffcd8fe8bf48dd"}, - {file = "rpds_py-0.19.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:e19509145275d46bc4d1e16af0b57a12d227c8253655a46bbd5ec317e941279d"}, - {file = "rpds_py-0.19.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:4d438e4c020d8c39961deaf58f6913b1bf8832d9b6f62ec35bd93e97807e9cbc"}, - {file = "rpds_py-0.19.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:90bf55d9d139e5d127193170f38c584ed3c79e16638890d2e36f23aa1630b952"}, - {file = "rpds_py-0.19.0-cp311-none-win32.whl", hash = "sha256:8d6ad132b1bc13d05ffe5b85e7a01a3998bf3a6302ba594b28d61b8c2cf13aaf"}, - {file = "rpds_py-0.19.0-cp311-none-win_amd64.whl", hash = "sha256:7ec72df7354e6b7f6eb2a17fa6901350018c3a9ad78e48d7b2b54d0412539a67"}, - {file = "rpds_py-0.19.0-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:5095a7c838a8647c32aa37c3a460d2c48debff7fc26e1136aee60100a8cd8f68"}, - {file = "rpds_py-0.19.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:6f2f78ef14077e08856e788fa482107aa602636c16c25bdf59c22ea525a785e9"}, - {file = "rpds_py-0.19.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b7cc6cb44f8636fbf4a934ca72f3e786ba3c9f9ba4f4d74611e7da80684e48d2"}, - {file = "rpds_py-0.19.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:cf902878b4af334a09de7a45badbff0389e7cf8dc2e4dcf5f07125d0b7c2656d"}, - {file = "rpds_py-0.19.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:688aa6b8aa724db1596514751ffb767766e02e5c4a87486ab36b8e1ebc1aedac"}, - {file = "rpds_py-0.19.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:57dbc9167d48e355e2569346b5aa4077f29bf86389c924df25c0a8b9124461fb"}, - {file = "rpds_py-0.19.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3b4cf5a9497874822341c2ebe0d5850fed392034caadc0bad134ab6822c0925b"}, - {file = "rpds_py-0.19.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8a790d235b9d39c70a466200d506bb33a98e2ee374a9b4eec7a8ac64c2c261fa"}, - {file = "rpds_py-0.19.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:1d16089dfa58719c98a1c06f2daceba6d8e3fb9b5d7931af4a990a3c486241cb"}, - {file = "rpds_py-0.19.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:bc9128e74fe94650367fe23f37074f121b9f796cabbd2f928f13e9661837296d"}, - {file = "rpds_py-0.19.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:c8f77e661ffd96ff104bebf7d0f3255b02aa5d5b28326f5408d6284c4a8b3248"}, - {file = "rpds_py-0.19.0-cp312-none-win32.whl", hash = "sha256:5f83689a38e76969327e9b682be5521d87a0c9e5a2e187d2bc6be4765f0d4600"}, - {file = "rpds_py-0.19.0-cp312-none-win_amd64.whl", hash = "sha256:06925c50f86da0596b9c3c64c3837b2481337b83ef3519e5db2701df695453a4"}, - {file = "rpds_py-0.19.0-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:52e466bea6f8f3a44b1234570244b1cff45150f59a4acae3fcc5fd700c2993ca"}, - {file = "rpds_py-0.19.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:e21cc693045fda7f745c790cb687958161ce172ffe3c5719ca1764e752237d16"}, - {file = "rpds_py-0.19.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6b31f059878eb1f5da8b2fd82480cc18bed8dcd7fb8fe68370e2e6285fa86da6"}, - {file = "rpds_py-0.19.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1dd46f309e953927dd018567d6a9e2fb84783963650171f6c5fe7e5c41fd5666"}, - {file = "rpds_py-0.19.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:34a01a4490e170376cd79258b7f755fa13b1a6c3667e872c8e35051ae857a92b"}, - {file = "rpds_py-0.19.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:bcf426a8c38eb57f7bf28932e68425ba86def6e756a5b8cb4731d8e62e4e0223"}, - {file = "rpds_py-0.19.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f68eea5df6347d3f1378ce992d86b2af16ad7ff4dcb4a19ccdc23dea901b87fb"}, - {file = "rpds_py-0.19.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:dab8d921b55a28287733263c0e4c7db11b3ee22aee158a4de09f13c93283c62d"}, - {file = "rpds_py-0.19.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:6fe87efd7f47266dfc42fe76dae89060038f1d9cb911f89ae7e5084148d1cc08"}, - {file = "rpds_py-0.19.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:535d4b52524a961d220875688159277f0e9eeeda0ac45e766092bfb54437543f"}, - {file = "rpds_py-0.19.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:8b1a94b8afc154fbe36978a511a1f155f9bd97664e4f1f7a374d72e180ceb0ae"}, - {file = "rpds_py-0.19.0-cp38-none-win32.whl", hash = "sha256:7c98298a15d6b90c8f6e3caa6457f4f022423caa5fa1a1ca7a5e9e512bdb77a4"}, - {file = "rpds_py-0.19.0-cp38-none-win_amd64.whl", hash = "sha256:b0da31853ab6e58a11db3205729133ce0df26e6804e93079dee095be3d681dc1"}, - {file = "rpds_py-0.19.0-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:5039e3cef7b3e7a060de468a4a60a60a1f31786da94c6cb054e7a3c75906111c"}, - {file = "rpds_py-0.19.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:ab1932ca6cb8c7499a4d87cb21ccc0d3326f172cfb6a64021a889b591bb3045c"}, - {file = "rpds_py-0.19.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f2afd2164a1e85226fcb6a1da77a5c8896c18bfe08e82e8ceced5181c42d2179"}, - {file = "rpds_py-0.19.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:b1c30841f5040de47a0046c243fc1b44ddc87d1b12435a43b8edff7e7cb1e0d0"}, - {file = "rpds_py-0.19.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f757f359f30ec7dcebca662a6bd46d1098f8b9fb1fcd661a9e13f2e8ce343ba1"}, - {file = "rpds_py-0.19.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:15e65395a59d2e0e96caf8ee5389ffb4604e980479c32742936ddd7ade914b22"}, - {file = "rpds_py-0.19.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cb0f6eb3a320f24b94d177e62f4074ff438f2ad9d27e75a46221904ef21a7b05"}, - {file = "rpds_py-0.19.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b228e693a2559888790936e20f5f88b6e9f8162c681830eda303bad7517b4d5a"}, - {file = "rpds_py-0.19.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:2575efaa5d949c9f4e2cdbe7d805d02122c16065bfb8d95c129372d65a291a0b"}, - {file = "rpds_py-0.19.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:5c872814b77a4e84afa293a1bee08c14daed1068b2bb1cc312edbf020bbbca2b"}, - {file = "rpds_py-0.19.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:850720e1b383df199b8433a20e02b25b72f0fded28bc03c5bd79e2ce7ef050be"}, - {file = "rpds_py-0.19.0-cp39-none-win32.whl", hash = "sha256:ce84a7efa5af9f54c0aa7692c45861c1667080814286cacb9958c07fc50294fb"}, - {file = "rpds_py-0.19.0-cp39-none-win_amd64.whl", hash = "sha256:1c26da90b8d06227d7769f34915913911222d24ce08c0ab2d60b354e2d9c7aff"}, - {file = "rpds_py-0.19.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:75969cf900d7be665ccb1622a9aba225cf386bbc9c3bcfeeab9f62b5048f4a07"}, - {file = "rpds_py-0.19.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:8445f23f13339da640d1be8e44e5baf4af97e396882ebbf1692aecd67f67c479"}, - {file = "rpds_py-0.19.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a5a7c1062ef8aea3eda149f08120f10795835fc1c8bc6ad948fb9652a113ca55"}, - {file = "rpds_py-0.19.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:462b0c18fbb48fdbf980914a02ee38c423a25fcc4cf40f66bacc95a2d2d73bc8"}, - {file = "rpds_py-0.19.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3208f9aea18991ac7f2b39721e947bbd752a1abbe79ad90d9b6a84a74d44409b"}, - {file = "rpds_py-0.19.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c3444fe52b82f122d8a99bf66777aed6b858d392b12f4c317da19f8234db4533"}, - {file = "rpds_py-0.19.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88cb4bac7185a9f0168d38c01d7a00addece9822a52870eee26b8d5b61409213"}, - {file = "rpds_py-0.19.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:6b130bd4163c93798a6b9bb96be64a7c43e1cec81126ffa7ffaa106e1fc5cef5"}, - {file = "rpds_py-0.19.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:a707b158b4410aefb6b054715545bbb21aaa5d5d0080217290131c49c2124a6e"}, - {file = "rpds_py-0.19.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:dc9ac4659456bde7c567107556ab065801622396b435a3ff213daef27b495388"}, - {file = "rpds_py-0.19.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:81ea573aa46d3b6b3d890cd3c0ad82105985e6058a4baed03cf92518081eec8c"}, - {file = "rpds_py-0.19.0-pp38-pypy38_pp73-macosx_10_12_x86_64.whl", hash = "sha256:3f148c3f47f7f29a79c38cc5d020edcb5ca780020fab94dbc21f9af95c463581"}, - {file = "rpds_py-0.19.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:b0906357f90784a66e89ae3eadc2654f36c580a7d65cf63e6a616e4aec3a81be"}, - {file = "rpds_py-0.19.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f629ecc2db6a4736b5ba95a8347b0089240d69ad14ac364f557d52ad68cf94b0"}, - {file = "rpds_py-0.19.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c6feacd1d178c30e5bc37184526e56740342fd2aa6371a28367bad7908d454fc"}, - {file = "rpds_py-0.19.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ae8b6068ee374fdfab63689be0963333aa83b0815ead5d8648389a8ded593378"}, - {file = "rpds_py-0.19.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:78d57546bad81e0da13263e4c9ce30e96dcbe720dbff5ada08d2600a3502e526"}, - {file = "rpds_py-0.19.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a8b6683a37338818646af718c9ca2a07f89787551057fae57c4ec0446dc6224b"}, - {file = "rpds_py-0.19.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e8481b946792415adc07410420d6fc65a352b45d347b78fec45d8f8f0d7496f0"}, - {file = "rpds_py-0.19.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:bec35eb20792ea64c3c57891bc3ca0bedb2884fbac2c8249d9b731447ecde4fa"}, - {file = "rpds_py-0.19.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:aa5476c3e3a402c37779e95f7b4048db2cb5b0ed0b9d006983965e93f40fe05a"}, - {file = "rpds_py-0.19.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:19d02c45f2507b489fd4df7b827940f1420480b3e2e471e952af4d44a1ea8e34"}, - {file = "rpds_py-0.19.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:a3e2fd14c5d49ee1da322672375963f19f32b3d5953f0615b175ff7b9d38daed"}, - {file = "rpds_py-0.19.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:93a91c2640645303e874eada51f4f33351b84b351a689d470f8108d0e0694210"}, - {file = "rpds_py-0.19.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e5b9fc03bf76a94065299d4a2ecd8dfbae4ae8e2e8098bbfa6ab6413ca267709"}, - {file = "rpds_py-0.19.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:5a4b07cdf3f84310c08c1de2c12ddadbb7a77568bcb16e95489f9c81074322ed"}, - {file = "rpds_py-0.19.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ba0ed0dc6763d8bd6e5de5cf0d746d28e706a10b615ea382ac0ab17bb7388633"}, - {file = "rpds_py-0.19.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:474bc83233abdcf2124ed3f66230a1c8435896046caa4b0b5ab6013c640803cc"}, - {file = "rpds_py-0.19.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:329c719d31362355a96b435f4653e3b4b061fcc9eba9f91dd40804ca637d914e"}, - {file = "rpds_py-0.19.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:ef9101f3f7b59043a34f1dccbb385ca760467590951952d6701df0da9893ca0c"}, - {file = "rpds_py-0.19.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:0121803b0f424ee2109d6e1f27db45b166ebaa4b32ff47d6aa225642636cd834"}, - {file = "rpds_py-0.19.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:8344127403dea42f5970adccf6c5957a71a47f522171fafaf4c6ddb41b61703a"}, - {file = "rpds_py-0.19.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:443cec402ddd650bb2b885113e1dcedb22b1175c6be223b14246a714b61cd521"}, - {file = "rpds_py-0.19.0.tar.gz", hash = "sha256:4fdc9afadbeb393b4bbbad75481e0ea78e4469f2e1d713a90811700830b553a9"}, + {file = "rpds_py-0.20.0-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:3ad0fda1635f8439cde85c700f964b23ed5fc2d28016b32b9ee5fe30da5c84e2"}, + {file = "rpds_py-0.20.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9bb4a0d90fdb03437c109a17eade42dfbf6190408f29b2744114d11586611d6f"}, + {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c6377e647bbfd0a0b159fe557f2c6c602c159fc752fa316572f012fc0bf67150"}, + {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:eb851b7df9dda52dc1415ebee12362047ce771fc36914586b2e9fcbd7d293b3e"}, + {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1e0f80b739e5a8f54837be5d5c924483996b603d5502bfff79bf33da06164ee2"}, + {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5a8c94dad2e45324fc74dce25e1645d4d14df9a4e54a30fa0ae8bad9a63928e3"}, + {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f8e604fe73ba048c06085beaf51147eaec7df856824bfe7b98657cf436623daf"}, + {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:df3de6b7726b52966edf29663e57306b23ef775faf0ac01a3e9f4012a24a4140"}, + {file = "rpds_py-0.20.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:cf258ede5bc22a45c8e726b29835b9303c285ab46fc7c3a4cc770736b5304c9f"}, + {file = "rpds_py-0.20.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:55fea87029cded5df854ca7e192ec7bdb7ecd1d9a3f63d5c4eb09148acf4a7ce"}, + {file = "rpds_py-0.20.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:ae94bd0b2f02c28e199e9bc51485d0c5601f58780636185660f86bf80c89af94"}, + {file = "rpds_py-0.20.0-cp310-none-win32.whl", hash = "sha256:28527c685f237c05445efec62426d285e47a58fb05ba0090a4340b73ecda6dee"}, + {file = "rpds_py-0.20.0-cp310-none-win_amd64.whl", hash = "sha256:238a2d5b1cad28cdc6ed15faf93a998336eb041c4e440dd7f902528b8891b399"}, + {file = "rpds_py-0.20.0-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:ac2f4f7a98934c2ed6505aead07b979e6f999389f16b714448fb39bbaa86a489"}, + {file = "rpds_py-0.20.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:220002c1b846db9afd83371d08d239fdc865e8f8c5795bbaec20916a76db3318"}, + {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8d7919548df3f25374a1f5d01fbcd38dacab338ef5f33e044744b5c36729c8db"}, + {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:758406267907b3781beee0f0edfe4a179fbd97c0be2e9b1154d7f0a1279cf8e5"}, + {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3d61339e9f84a3f0767b1995adfb171a0d00a1185192718a17af6e124728e0f5"}, + {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1259c7b3705ac0a0bd38197565a5d603218591d3f6cee6e614e380b6ba61c6f6"}, + {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5c1dc0f53856b9cc9a0ccca0a7cc61d3d20a7088201c0937f3f4048c1718a209"}, + {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:7e60cb630f674a31f0368ed32b2a6b4331b8350d67de53c0359992444b116dd3"}, + {file = "rpds_py-0.20.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:dbe982f38565bb50cb7fb061ebf762c2f254ca3d8c20d4006878766e84266272"}, + {file = "rpds_py-0.20.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:514b3293b64187172bc77c8fb0cdae26981618021053b30d8371c3a902d4d5ad"}, + {file = "rpds_py-0.20.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:d0a26ffe9d4dd35e4dfdd1e71f46401cff0181c75ac174711ccff0459135fa58"}, + {file = "rpds_py-0.20.0-cp311-none-win32.whl", hash = "sha256:89c19a494bf3ad08c1da49445cc5d13d8fefc265f48ee7e7556839acdacf69d0"}, + {file = "rpds_py-0.20.0-cp311-none-win_amd64.whl", hash = "sha256:c638144ce971df84650d3ed0096e2ae7af8e62ecbbb7b201c8935c370df00a2c"}, + {file = "rpds_py-0.20.0-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:a84ab91cbe7aab97f7446652d0ed37d35b68a465aeef8fc41932a9d7eee2c1a6"}, + {file = "rpds_py-0.20.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:56e27147a5a4c2c21633ff8475d185734c0e4befd1c989b5b95a5d0db699b21b"}, + {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2580b0c34583b85efec8c5c5ec9edf2dfe817330cc882ee972ae650e7b5ef739"}, + {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:b80d4a7900cf6b66bb9cee5c352b2d708e29e5a37fe9bf784fa97fc11504bf6c"}, + {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:50eccbf054e62a7b2209b28dc7a22d6254860209d6753e6b78cfaeb0075d7bee"}, + {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:49a8063ea4296b3a7e81a5dfb8f7b2d73f0b1c20c2af401fb0cdf22e14711a96"}, + {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ea438162a9fcbee3ecf36c23e6c68237479f89f962f82dae83dc15feeceb37e4"}, + {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:18d7585c463087bddcfa74c2ba267339f14f2515158ac4db30b1f9cbdb62c8ef"}, + {file = "rpds_py-0.20.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d4c7d1a051eeb39f5c9547e82ea27cbcc28338482242e3e0b7768033cb083821"}, + {file = "rpds_py-0.20.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:e4df1e3b3bec320790f699890d41c59d250f6beda159ea3c44c3f5bac1976940"}, + {file = "rpds_py-0.20.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:2cf126d33a91ee6eedc7f3197b53e87a2acdac63602c0f03a02dd69e4b138174"}, + {file = "rpds_py-0.20.0-cp312-none-win32.whl", hash = "sha256:8bc7690f7caee50b04a79bf017a8d020c1f48c2a1077ffe172abec59870f1139"}, + {file = "rpds_py-0.20.0-cp312-none-win_amd64.whl", hash = "sha256:0e13e6952ef264c40587d510ad676a988df19adea20444c2b295e536457bc585"}, + {file = "rpds_py-0.20.0-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:aa9a0521aeca7d4941499a73ad7d4f8ffa3d1affc50b9ea11d992cd7eff18a29"}, + {file = "rpds_py-0.20.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:4a1f1d51eccb7e6c32ae89243cb352389228ea62f89cd80823ea7dd1b98e0b91"}, + {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8a86a9b96070674fc88b6f9f71a97d2c1d3e5165574615d1f9168ecba4cecb24"}, + {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:6c8ef2ebf76df43f5750b46851ed1cdf8f109d7787ca40035fe19fbdc1acc5a7"}, + {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b74b25f024b421d5859d156750ea9a65651793d51b76a2e9238c05c9d5f203a9"}, + {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:57eb94a8c16ab08fef6404301c38318e2c5a32216bf5de453e2714c964c125c8"}, + {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e1940dae14e715e2e02dfd5b0f64a52e8374a517a1e531ad9412319dc3ac7879"}, + {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d20277fd62e1b992a50c43f13fbe13277a31f8c9f70d59759c88f644d66c619f"}, + {file = "rpds_py-0.20.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:06db23d43f26478303e954c34c75182356ca9aa7797d22c5345b16871ab9c45c"}, + {file = "rpds_py-0.20.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:b2a5db5397d82fa847e4c624b0c98fe59d2d9b7cf0ce6de09e4d2e80f8f5b3f2"}, + {file = "rpds_py-0.20.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:5a35df9f5548fd79cb2f52d27182108c3e6641a4feb0f39067911bf2adaa3e57"}, + {file = "rpds_py-0.20.0-cp313-none-win32.whl", hash = "sha256:fd2d84f40633bc475ef2d5490b9c19543fbf18596dcb1b291e3a12ea5d722f7a"}, + {file = "rpds_py-0.20.0-cp313-none-win_amd64.whl", hash = "sha256:9bc2d153989e3216b0559251b0c260cfd168ec78b1fac33dd485750a228db5a2"}, + {file = "rpds_py-0.20.0-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:f2fbf7db2012d4876fb0d66b5b9ba6591197b0f165db8d99371d976546472a24"}, + {file = "rpds_py-0.20.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:1e5f3cd7397c8f86c8cc72d5a791071431c108edd79872cdd96e00abd8497d29"}, + {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ce9845054c13696f7af7f2b353e6b4f676dab1b4b215d7fe5e05c6f8bb06f965"}, + {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c3e130fd0ec56cb76eb49ef52faead8ff09d13f4527e9b0c400307ff72b408e1"}, + {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4b16aa0107ecb512b568244ef461f27697164d9a68d8b35090e9b0c1c8b27752"}, + {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:aa7f429242aae2947246587d2964fad750b79e8c233a2367f71b554e9447949c"}, + {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:af0fc424a5842a11e28956e69395fbbeab2c97c42253169d87e90aac2886d751"}, + {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b8c00a3b1e70c1d3891f0db1b05292747f0dbcfb49c43f9244d04c70fbc40eb8"}, + {file = "rpds_py-0.20.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:40ce74fc86ee4645d0a225498d091d8bc61f39b709ebef8204cb8b5a464d3c0e"}, + {file = "rpds_py-0.20.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:4fe84294c7019456e56d93e8ababdad5a329cd25975be749c3f5f558abb48253"}, + {file = "rpds_py-0.20.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:338ca4539aad4ce70a656e5187a3a31c5204f261aef9f6ab50e50bcdffaf050a"}, + {file = "rpds_py-0.20.0-cp38-none-win32.whl", hash = "sha256:54b43a2b07db18314669092bb2de584524d1ef414588780261e31e85846c26a5"}, + {file = "rpds_py-0.20.0-cp38-none-win_amd64.whl", hash = "sha256:a1862d2d7ce1674cffa6d186d53ca95c6e17ed2b06b3f4c476173565c862d232"}, + {file = "rpds_py-0.20.0-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:3fde368e9140312b6e8b6c09fb9f8c8c2f00999d1823403ae90cc00480221b22"}, + {file = "rpds_py-0.20.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:9824fb430c9cf9af743cf7aaf6707bf14323fb51ee74425c380f4c846ea70789"}, + {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:11ef6ce74616342888b69878d45e9f779b95d4bd48b382a229fe624a409b72c5"}, + {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c52d3f2f82b763a24ef52f5d24358553e8403ce05f893b5347098014f2d9eff2"}, + {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9d35cef91e59ebbeaa45214861874bc6f19eb35de96db73e467a8358d701a96c"}, + {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d72278a30111e5b5525c1dd96120d9e958464316f55adb030433ea905866f4de"}, + {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b4c29cbbba378759ac5786730d1c3cb4ec6f8ababf5c42a9ce303dc4b3d08cda"}, + {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:6632f2d04f15d1bd6fe0eedd3b86d9061b836ddca4c03d5cf5c7e9e6b7c14580"}, + {file = "rpds_py-0.20.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:d0b67d87bb45ed1cd020e8fbf2307d449b68abc45402fe1a4ac9e46c3c8b192b"}, + {file = "rpds_py-0.20.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:ec31a99ca63bf3cd7f1a5ac9fe95c5e2d060d3c768a09bc1d16e235840861420"}, + {file = "rpds_py-0.20.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:22e6c9976e38f4d8c4a63bd8a8edac5307dffd3ee7e6026d97f3cc3a2dc02a0b"}, + {file = "rpds_py-0.20.0-cp39-none-win32.whl", hash = "sha256:569b3ea770c2717b730b61998b6c54996adee3cef69fc28d444f3e7920313cf7"}, + {file = "rpds_py-0.20.0-cp39-none-win_amd64.whl", hash = "sha256:e6900ecdd50ce0facf703f7a00df12374b74bbc8ad9fe0f6559947fb20f82364"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:617c7357272c67696fd052811e352ac54ed1d9b49ab370261a80d3b6ce385045"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:9426133526f69fcaba6e42146b4e12d6bc6c839b8b555097020e2b78ce908dcc"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:deb62214c42a261cb3eb04d474f7155279c1a8a8c30ac89b7dcb1721d92c3c02"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:fcaeb7b57f1a1e071ebd748984359fef83ecb026325b9d4ca847c95bc7311c92"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d454b8749b4bd70dd0a79f428731ee263fa6995f83ccb8bada706e8d1d3ff89d"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d807dc2051abe041b6649681dce568f8e10668e3c1c6543ebae58f2d7e617855"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c3c20f0ddeb6e29126d45f89206b8291352b8c5b44384e78a6499d68b52ae511"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b7f19250ceef892adf27f0399b9e5afad019288e9be756d6919cb58892129f51"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:4f1ed4749a08379555cebf4650453f14452eaa9c43d0a95c49db50c18b7da075"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:dcedf0b42bcb4cfff4101d7771a10532415a6106062f005ab97d1d0ab5681c60"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:39ed0d010457a78f54090fafb5d108501b5aa5604cc22408fc1c0c77eac14344"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:bb273176be34a746bdac0b0d7e4e2c467323d13640b736c4c477881a3220a989"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:f918a1a130a6dfe1d7fe0f105064141342e7dd1611f2e6a21cd2f5c8cb1cfb3e"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:f60012a73aa396be721558caa3a6fd49b3dd0033d1675c6d59c4502e870fcf0c"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3d2b1ad682a3dfda2a4e8ad8572f3100f95fad98cb99faf37ff0ddfe9cbf9d03"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:614fdafe9f5f19c63ea02817fa4861c606a59a604a77c8cdef5aa01d28b97921"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fa518bcd7600c584bf42e6617ee8132869e877db2f76bcdc281ec6a4113a53ab"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f0475242f447cc6cb8a9dd486d68b2ef7fbee84427124c232bff5f63b1fe11e5"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f90a4cd061914a60bd51c68bcb4357086991bd0bb93d8aa66a6da7701370708f"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:def7400461c3a3f26e49078302e1c1b38f6752342c77e3cf72ce91ca69fb1bc1"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:65794e4048ee837494aea3c21a28ad5fc080994dfba5b036cf84de37f7ad5074"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:faefcc78f53a88f3076b7f8be0a8f8d35133a3ecf7f3770895c25f8813460f08"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:5b4f105deeffa28bbcdff6c49b34e74903139afa690e35d2d9e3c2c2fba18cec"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:fdfc3a892927458d98f3d55428ae46b921d1f7543b89382fdb483f5640daaec8"}, + {file = "rpds_py-0.20.0.tar.gz", hash = "sha256:d72a210824facfdaf8768cf2d7ca25a042c30320b3020de2fa04640920d4e121"}, ] [[package]] @@ -4116,13 +4159,13 @@ urllib3 = "*" [[package]] name = "sentry-sdk" -version = "1.45.0" +version = "1.45.1" description = "Python client for Sentry (https://sentry.io)" optional = false python-versions = "*" files = [ - {file = "sentry-sdk-1.45.0.tar.gz", hash = "sha256:509aa9678c0512344ca886281766c2e538682f8acfa50fd8d405f8c417ad0625"}, - {file = "sentry_sdk-1.45.0-py2.py3-none-any.whl", hash = "sha256:1ce29e30240cc289a027011103a8c83885b15ef2f316a60bcc7c5300afa144f1"}, + {file = "sentry_sdk-1.45.1-py2.py3-none-any.whl", hash = "sha256:608887855ccfe39032bfd03936e3a1c4f4fc99b3a4ac49ced54a4220de61c9c1"}, + {file = "sentry_sdk-1.45.1.tar.gz", hash = "sha256:a16c997c0f4e3df63c0fc5e4207ccb1ab37900433e0f72fef88315d317829a26"}, ] [package.dependencies] @@ -4166,19 +4209,23 @@ tornado = ["tornado (>=5)"] [[package]] name = "setuptools" -version = "71.1.0" +version = "74.1.2" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-71.1.0-py3-none-any.whl", hash = "sha256:33874fdc59b3188304b2e7c80d9029097ea31627180896fb549c578ceb8a0855"}, - {file = "setuptools-71.1.0.tar.gz", hash = "sha256:032d42ee9fb536e33087fb66cac5f840eb9391ed05637b3f2a76a7c8fb477936"}, + {file = "setuptools-74.1.2-py3-none-any.whl", hash = "sha256:5f4c08aa4d3ebcb57a50c33b1b07e94315d7fc7230f7115e47fc99776c8ce308"}, + {file = "setuptools-74.1.2.tar.gz", hash = "sha256:95b40ed940a1c67eb70fc099094bd6e99c6ee7c23aa2306f4d2697ba7916f9c6"}, ] [package.extras] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.text (>=3.7)", "more-itertools (>=8.8)", "ordered-set (>=3.1.1)", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] -doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "importlib-metadata", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "mypy (==1.11.*)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-home (>=0.5)", "pytest-mypy", "pytest-perf", "pytest-ruff (<0.4)", "pytest-ruff (>=0.2.1)", "pytest-ruff (>=0.3.2)", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel"] +check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.text (>=3.7)", "more-itertools (>=8.8)", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +cover = ["pytest-cov"] +doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] +enabler = ["pytest-enabler (>=2.2)"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] [[package]] name = "sickle" @@ -4197,109 +4244,121 @@ requests = ">=1.1.0" [[package]] name = "simplejson" -version = "3.19.2" +version = "3.19.3" description = "Simple, fast, extensible JSON encoder/decoder for Python" optional = false -python-versions = ">=2.5, !=3.0.*, !=3.1.*, !=3.2.*" -files = [ - {file = "simplejson-3.19.2-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:3471e95110dcaf901db16063b2e40fb394f8a9e99b3fe9ee3acc6f6ef72183a2"}, - {file = "simplejson-3.19.2-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:3194cd0d2c959062b94094c0a9f8780ffd38417a5322450a0db0ca1a23e7fbd2"}, - {file = "simplejson-3.19.2-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:8a390e56a7963e3946ff2049ee1eb218380e87c8a0e7608f7f8790ba19390867"}, - {file = "simplejson-3.19.2-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:1537b3dd62d8aae644f3518c407aa8469e3fd0f179cdf86c5992792713ed717a"}, - {file = "simplejson-3.19.2-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:a8617625369d2d03766413bff9e64310feafc9fc4f0ad2b902136f1a5cd8c6b0"}, - {file = "simplejson-3.19.2-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:2c433a412e96afb9a3ce36fa96c8e61a757af53e9c9192c97392f72871e18e69"}, - {file = "simplejson-3.19.2-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:f1c70249b15e4ce1a7d5340c97670a95f305ca79f376887759b43bb33288c973"}, - {file = "simplejson-3.19.2-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:287e39ba24e141b046812c880f4619d0ca9e617235d74abc27267194fc0c7835"}, - {file = "simplejson-3.19.2-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:6f0a0b41dd05eefab547576bed0cf066595f3b20b083956b1405a6f17d1be6ad"}, - {file = "simplejson-3.19.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:2f98d918f7f3aaf4b91f2b08c0c92b1774aea113334f7cde4fe40e777114dbe6"}, - {file = "simplejson-3.19.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7d74beca677623481810c7052926365d5f07393c72cbf62d6cce29991b676402"}, - {file = "simplejson-3.19.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:7f2398361508c560d0bf1773af19e9fe644e218f2a814a02210ac2c97ad70db0"}, - {file = "simplejson-3.19.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6ad331349b0b9ca6da86064a3599c425c7a21cd41616e175ddba0866da32df48"}, - {file = "simplejson-3.19.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:332c848f02d71a649272b3f1feccacb7e4f7e6de4a2e6dc70a32645326f3d428"}, - {file = "simplejson-3.19.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:25785d038281cd106c0d91a68b9930049b6464288cea59ba95b35ee37c2d23a5"}, - {file = "simplejson-3.19.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:18955c1da6fc39d957adfa346f75226246b6569e096ac9e40f67d102278c3bcb"}, - {file = "simplejson-3.19.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:11cc3afd8160d44582543838b7e4f9aa5e97865322844b75d51bf4e0e413bb3e"}, - {file = "simplejson-3.19.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:b01fda3e95d07a6148702a641e5e293b6da7863f8bc9b967f62db9461330562c"}, - {file = "simplejson-3.19.2-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:778331444917108fa8441f59af45886270d33ce8a23bfc4f9b192c0b2ecef1b3"}, - {file = "simplejson-3.19.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:9eb117db8d7ed733a7317c4215c35993b815bf6aeab67523f1f11e108c040672"}, - {file = "simplejson-3.19.2-cp310-cp310-win32.whl", hash = "sha256:39b6d79f5cbfa3eb63a869639cfacf7c41d753c64f7801efc72692c1b2637ac7"}, - {file = "simplejson-3.19.2-cp310-cp310-win_amd64.whl", hash = "sha256:5675e9d8eeef0aa06093c1ff898413ade042d73dc920a03e8cea2fb68f62445a"}, - {file = "simplejson-3.19.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ed628c1431100b0b65387419551e822987396bee3c088a15d68446d92f554e0c"}, - {file = "simplejson-3.19.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:adcb3332979cbc941b8fff07181f06d2b608625edc0a4d8bc3ffc0be414ad0c4"}, - {file = "simplejson-3.19.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:08889f2f597ae965284d7b52a5c3928653a9406d88c93e3161180f0abc2433ba"}, - {file = "simplejson-3.19.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ef7938a78447174e2616be223f496ddccdbf7854f7bf2ce716dbccd958cc7d13"}, - {file = "simplejson-3.19.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a970a2e6d5281d56cacf3dc82081c95c1f4da5a559e52469287457811db6a79b"}, - {file = "simplejson-3.19.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:554313db34d63eac3b3f42986aa9efddd1a481169c12b7be1e7512edebff8eaf"}, - {file = "simplejson-3.19.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4d36081c0b1c12ea0ed62c202046dca11438bee48dd5240b7c8de8da62c620e9"}, - {file = "simplejson-3.19.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:a3cd18e03b0ee54ea4319cdcce48357719ea487b53f92a469ba8ca8e39df285e"}, - {file = "simplejson-3.19.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:66e5dc13bfb17cd6ee764fc96ccafd6e405daa846a42baab81f4c60e15650414"}, - {file = "simplejson-3.19.2-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:972a7833d4a1fcf7a711c939e315721a88b988553fc770a5b6a5a64bd6ebeba3"}, - {file = "simplejson-3.19.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:3e74355cb47e0cd399ead3477e29e2f50e1540952c22fb3504dda0184fc9819f"}, - {file = "simplejson-3.19.2-cp311-cp311-win32.whl", hash = "sha256:1dd4f692304854352c3e396e9b5f0a9c9e666868dd0bdc784e2ac4c93092d87b"}, - {file = "simplejson-3.19.2-cp311-cp311-win_amd64.whl", hash = "sha256:9300aee2a8b5992d0f4293d88deb59c218989833e3396c824b69ba330d04a589"}, - {file = "simplejson-3.19.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:b8d940fd28eb34a7084877747a60873956893e377f15a32ad445fe66c972c3b8"}, - {file = "simplejson-3.19.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:4969d974d9db826a2c07671273e6b27bc48e940738d768fa8f33b577f0978378"}, - {file = "simplejson-3.19.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:c594642d6b13d225e10df5c16ee15b3398e21a35ecd6aee824f107a625690374"}, - {file = "simplejson-3.19.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e2f5a398b5e77bb01b23d92872255e1bcb3c0c719a3be40b8df146570fe7781a"}, - {file = "simplejson-3.19.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:176a1b524a3bd3314ed47029a86d02d5a95cc0bee15bd3063a1e1ec62b947de6"}, - {file = "simplejson-3.19.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3c7363a8cb8c5238878ec96c5eb0fc5ca2cb11fc0c7d2379863d342c6ee367a"}, - {file = "simplejson-3.19.2-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:346820ae96aa90c7d52653539a57766f10f33dd4be609206c001432b59ddf89f"}, - {file = "simplejson-3.19.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:de9a2792612ec6def556d1dc621fd6b2073aff015d64fba9f3e53349ad292734"}, - {file = "simplejson-3.19.2-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:1c768e7584c45094dca4b334af361e43b0aaa4844c04945ac7d43379eeda9bc2"}, - {file = "simplejson-3.19.2-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:9652e59c022e62a5b58a6f9948b104e5bb96d3b06940c6482588176f40f4914b"}, - {file = "simplejson-3.19.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:9c1a4393242e321e344213a90a1e3bf35d2f624aa8b8f6174d43e3c6b0e8f6eb"}, - {file = "simplejson-3.19.2-cp312-cp312-win32.whl", hash = "sha256:7cb98be113911cb0ad09e5523d0e2a926c09a465c9abb0784c9269efe4f95917"}, - {file = "simplejson-3.19.2-cp312-cp312-win_amd64.whl", hash = "sha256:6779105d2fcb7fcf794a6a2a233787f6bbd4731227333a072d8513b252ed374f"}, - {file = "simplejson-3.19.2-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:061e81ea2d62671fa9dea2c2bfbc1eec2617ae7651e366c7b4a2baf0a8c72cae"}, - {file = "simplejson-3.19.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4280e460e51f86ad76dc456acdbfa9513bdf329556ffc8c49e0200878ca57816"}, - {file = "simplejson-3.19.2-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:11c39fbc4280d7420684494373b7c5904fa72a2b48ef543a56c2d412999c9e5d"}, - {file = "simplejson-3.19.2-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bccb3e88ec26ffa90f72229f983d3a5d1155e41a1171190fa723d4135523585b"}, - {file = "simplejson-3.19.2-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1bb5b50dc6dd671eb46a605a3e2eb98deb4a9af787a08fcdddabe5d824bb9664"}, - {file = "simplejson-3.19.2-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:d94245caa3c61f760c4ce4953cfa76e7739b6f2cbfc94cc46fff6c050c2390c5"}, - {file = "simplejson-3.19.2-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:d0e5ffc763678d48ecc8da836f2ae2dd1b6eb2d27a48671066f91694e575173c"}, - {file = "simplejson-3.19.2-cp36-cp36m-musllinux_1_1_ppc64le.whl", hash = "sha256:d222a9ed082cd9f38b58923775152003765016342a12f08f8c123bf893461f28"}, - {file = "simplejson-3.19.2-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:8434dcdd347459f9fd9c526117c01fe7ca7b016b6008dddc3c13471098f4f0dc"}, - {file = "simplejson-3.19.2-cp36-cp36m-win32.whl", hash = "sha256:c9ac1c2678abf9270e7228133e5b77c6c3c930ad33a3c1dfbdd76ff2c33b7b50"}, - {file = "simplejson-3.19.2-cp36-cp36m-win_amd64.whl", hash = "sha256:92c4a4a2b1f4846cd4364855cbac83efc48ff5a7d7c06ba014c792dd96483f6f"}, - {file = "simplejson-3.19.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:0d551dc931638e2102b8549836a1632e6e7cf620af3d093a7456aa642bff601d"}, - {file = "simplejson-3.19.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:73a8a4653f2e809049999d63530180d7b5a344b23a793502413ad1ecea9a0290"}, - {file = "simplejson-3.19.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:40847f617287a38623507d08cbcb75d51cf9d4f9551dd6321df40215128325a3"}, - {file = "simplejson-3.19.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:be893258d5b68dd3a8cba8deb35dc6411db844a9d35268a8d3793b9d9a256f80"}, - {file = "simplejson-3.19.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e9eb3cff1b7d71aa50c89a0536f469cb8d6dcdd585d8f14fb8500d822f3bdee4"}, - {file = "simplejson-3.19.2-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:d0f402e787e6e7ee7876c8b05e2fe6464820d9f35ba3f172e95b5f8b699f6c7f"}, - {file = "simplejson-3.19.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:fbbcc6b0639aa09b9649f36f1bcb347b19403fe44109948392fbb5ea69e48c3e"}, - {file = "simplejson-3.19.2-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:2fc697be37585eded0c8581c4788fcfac0e3f84ca635b73a5bf360e28c8ea1a2"}, - {file = "simplejson-3.19.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:0b0a3eb6dd39cce23801a50c01a0976971498da49bc8a0590ce311492b82c44b"}, - {file = "simplejson-3.19.2-cp37-cp37m-win32.whl", hash = "sha256:49f9da0d6cd17b600a178439d7d2d57c5ef01f816b1e0e875e8e8b3b42db2693"}, - {file = "simplejson-3.19.2-cp37-cp37m-win_amd64.whl", hash = "sha256:c87c22bd6a987aca976e3d3e23806d17f65426191db36d40da4ae16a6a494cbc"}, - {file = "simplejson-3.19.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:9e4c166f743bb42c5fcc60760fb1c3623e8fda94f6619534217b083e08644b46"}, - {file = "simplejson-3.19.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0a48679310e1dd5c9f03481799311a65d343748fe86850b7fb41df4e2c00c087"}, - {file = "simplejson-3.19.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:c0521e0f07cb56415fdb3aae0bbd8701eb31a9dfef47bb57206075a0584ab2a2"}, - {file = "simplejson-3.19.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0d2d5119b1d7a1ed286b8af37357116072fc96700bce3bec5bb81b2e7057ab41"}, - {file = "simplejson-3.19.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2c1467d939932901a97ba4f979e8f2642415fcf02ea12f53a4e3206c9c03bc17"}, - {file = "simplejson-3.19.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:49aaf4546f6023c44d7e7136be84a03a4237f0b2b5fb2b17c3e3770a758fc1a0"}, - {file = "simplejson-3.19.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:60848ab779195b72382841fc3fa4f71698a98d9589b0a081a9399904487b5832"}, - {file = "simplejson-3.19.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:0436a70d8eb42bea4fe1a1c32d371d9bb3b62c637969cb33970ad624d5a3336a"}, - {file = "simplejson-3.19.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:49e0e3faf3070abdf71a5c80a97c1afc059b4f45a5aa62de0c2ca0444b51669b"}, - {file = "simplejson-3.19.2-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:ff836cd4041e16003549449cc0a5e372f6b6f871eb89007ab0ee18fb2800fded"}, - {file = "simplejson-3.19.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:3848427b65e31bea2c11f521b6fc7a3145d6e501a1038529da2391aff5970f2f"}, - {file = "simplejson-3.19.2-cp38-cp38-win32.whl", hash = "sha256:3f39bb1f6e620f3e158c8b2eaf1b3e3e54408baca96a02fe891794705e788637"}, - {file = "simplejson-3.19.2-cp38-cp38-win_amd64.whl", hash = "sha256:0405984f3ec1d3f8777c4adc33eac7ab7a3e629f3b1c05fdded63acc7cf01137"}, - {file = "simplejson-3.19.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:445a96543948c011a3a47c8e0f9d61e9785df2544ea5be5ab3bc2be4bd8a2565"}, - {file = "simplejson-3.19.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:4a8c3cc4f9dfc33220246760358c8265dad6e1104f25f0077bbca692d616d358"}, - {file = "simplejson-3.19.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:af9c7e6669c4d0ad7362f79cb2ab6784d71147503e62b57e3d95c4a0f222c01c"}, - {file = "simplejson-3.19.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:064300a4ea17d1cd9ea1706aa0590dcb3be81112aac30233823ee494f02cb78a"}, - {file = "simplejson-3.19.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9453419ea2ab9b21d925d0fd7e3a132a178a191881fab4169b6f96e118cc25bb"}, - {file = "simplejson-3.19.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9e038c615b3906df4c3be8db16b3e24821d26c55177638ea47b3f8f73615111c"}, - {file = "simplejson-3.19.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:16ca9c90da4b1f50f089e14485db8c20cbfff2d55424062791a7392b5a9b3ff9"}, - {file = "simplejson-3.19.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:1018bd0d70ce85f165185d2227c71e3b1e446186f9fa9f971b69eee223e1e3cd"}, - {file = "simplejson-3.19.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:e8dd53a8706b15bc0e34f00e6150fbefb35d2fd9235d095b4f83b3c5ed4fa11d"}, - {file = "simplejson-3.19.2-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:2d022b14d7758bfb98405672953fe5c202ea8a9ccf9f6713c5bd0718eba286fd"}, - {file = "simplejson-3.19.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:febffa5b1eda6622d44b245b0685aff6fb555ce0ed734e2d7b1c3acd018a2cff"}, - {file = "simplejson-3.19.2-cp39-cp39-win32.whl", hash = "sha256:4edcd0bf70087b244ba77038db23cd98a1ace2f91b4a3ecef22036314d77ac23"}, - {file = "simplejson-3.19.2-cp39-cp39-win_amd64.whl", hash = "sha256:aad7405c033d32c751d98d3a65801e2797ae77fac284a539f6c3a3e13005edc4"}, - {file = "simplejson-3.19.2-py3-none-any.whl", hash = "sha256:bcedf4cae0d47839fee7de344f96b5694ca53c786f28b5f773d4f0b265a159eb"}, - {file = "simplejson-3.19.2.tar.gz", hash = "sha256:9eb442a2442ce417801c912df68e1f6ccfcd41577ae7274953ab3ad24ef7d82c"}, +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.5" +files = [ + {file = "simplejson-3.19.3-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:f39caec26007a2d0efab6b8b1d74873ede9351962707afab622cc2285dd26ed0"}, + {file = "simplejson-3.19.3-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:83c87706265ae3028e8460d08b05f30254c569772e859e5ba61fe8af2c883468"}, + {file = "simplejson-3.19.3-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:0b5ddd2c7d1d3f4d23224bc8a04bbf1430ae9a8149c05b90f8fc610f7f857a23"}, + {file = "simplejson-3.19.3-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:ad0e0b1ce9bd3edb5cf64b5b5b76eacbfdac8c5367153aeeec8a8b1407f68342"}, + {file = "simplejson-3.19.3-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:93be280fc69a952c76e261036312c20b910e7fa9e234f1d89bdfe3fa34f8a023"}, + {file = "simplejson-3.19.3-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:6d43e24b88c80f997081503f693be832fc90854f278df277dd54f8a4c847ab61"}, + {file = "simplejson-3.19.3-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:2876027ebdd599d730d36464debe84619b0368e9a642ca6e7c601be55aed439e"}, + {file = "simplejson-3.19.3-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:0766ca6222b410e08e0053a0dda3606cafb3973d5d00538307f631bb59743396"}, + {file = "simplejson-3.19.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:50d8b742d74c449c4dcac570d08ce0f21f6a149d2d9cf7652dbf2ba9a1bc729a"}, + {file = "simplejson-3.19.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:dd011fc3c1d88b779645495fdb8189fb318a26981eebcce14109460e062f209b"}, + {file = "simplejson-3.19.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:637c4d4b81825c1f4d651e56210bd35b5604034b192b02d2d8f17f7ce8c18f42"}, + {file = "simplejson-3.19.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2f56eb03bc9e432bb81adc8ecff2486d39feb371abb442964ffb44f6db23b332"}, + {file = "simplejson-3.19.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ef59a53be400c1fad2c914b8d74c9d42384fed5174f9321dd021b7017fd40270"}, + {file = "simplejson-3.19.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:72e8abbc86fcac83629a030888b45fed3a404d54161118be52cb491cd6975d3e"}, + {file = "simplejson-3.19.3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f8efb03ca77bd7725dfacc9254df00d73e6f43013cf39bd37ef1a8ed0ebb5165"}, + {file = "simplejson-3.19.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:add8850db04b98507a8b62d248a326ecc8561e6d24336d1ca5c605bbfaab4cad"}, + {file = "simplejson-3.19.3-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:fc3dc9fb413fc34c396f52f4c87de18d0bd5023804afa8ab5cc224deeb6a9900"}, + {file = "simplejson-3.19.3-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:4dfa420bb9225dd33b6efdabde7c6a671b51150b9b1d9c4e5cd74d3b420b3fe1"}, + {file = "simplejson-3.19.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:7b5c472099b39b274dcde27f1113db8d818c9aa3ba8f78cbb8ad04a4c1ac2118"}, + {file = "simplejson-3.19.3-cp310-cp310-win32.whl", hash = "sha256:817abad79241ed4a507b3caf4d3f2be5079f39d35d4c550a061988986bffd2ec"}, + {file = "simplejson-3.19.3-cp310-cp310-win_amd64.whl", hash = "sha256:dd5b9b1783e14803e362a558680d88939e830db2466f3fa22df5c9319f8eea94"}, + {file = "simplejson-3.19.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:e88abff510dcff903a18d11c2a75f9964e768d99c8d147839913886144b2065e"}, + {file = "simplejson-3.19.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:934a50a614fb831614db5dbfba35127ee277624dda4d15895c957d2f5d48610c"}, + {file = "simplejson-3.19.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:212fce86a22188b0c7f53533b0f693ea9605c1a0f02c84c475a30616f55a744d"}, + {file = "simplejson-3.19.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5d9e8f836688a8fabe6a6b41b334aa550a6823f7b4ac3d3712fc0ad8655be9a8"}, + {file = "simplejson-3.19.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:23228037dc5d41c36666384062904d74409a62f52283d9858fa12f4c22cffad1"}, + {file = "simplejson-3.19.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0791f64fed7d4abad639491f8a6b1ba56d3c604eb94b50f8697359b92d983f36"}, + {file = "simplejson-3.19.3-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c4f614581b61a26fbbba232a1391f6cee82bc26f2abbb6a0b44a9bba25c56a1c"}, + {file = "simplejson-3.19.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:1df0aaf1cb787fdf34484ed4a1f0c545efd8811f6028623290fef1a53694e597"}, + {file = "simplejson-3.19.3-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:951095be8d4451a7182403354c22ec2de3e513e0cc40408b689af08d02611588"}, + {file = "simplejson-3.19.3-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:2a954b30810988feeabde843e3263bf187697e0eb5037396276db3612434049b"}, + {file = "simplejson-3.19.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:c40df31a75de98db2cdfead6074d4449cd009e79f54c1ebe5e5f1f153c68ad20"}, + {file = "simplejson-3.19.3-cp311-cp311-win32.whl", hash = "sha256:7e2a098c21ad8924076a12b6c178965d88a0ad75d1de67e1afa0a66878f277a5"}, + {file = "simplejson-3.19.3-cp311-cp311-win_amd64.whl", hash = "sha256:c9bedebdc5fdad48af8783022bae307746d54006b783007d1d3c38e10872a2c6"}, + {file = "simplejson-3.19.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:66a0399e21c2112acacfebf3d832ebe2884f823b1c7e6d1363f2944f1db31a99"}, + {file = "simplejson-3.19.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:6ef9383c5e05f445be60f1735c1816163c874c0b1ede8bb4390aff2ced34f333"}, + {file = "simplejson-3.19.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:42e5acf80d4d971238d4df97811286a044d720693092b20a56d5e56b7dcc5d09"}, + {file = "simplejson-3.19.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d0b0efc7279d768db7c74d3d07f0b5c81280d16ae3fb14e9081dc903e8360771"}, + {file = "simplejson-3.19.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0552eb06e7234da892e1d02365cd2b7b2b1f8233aa5aabdb2981587b7cc92ea0"}, + {file = "simplejson-3.19.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5bf6a3b9a7d7191471b464fe38f684df10eb491ec9ea454003edb45a011ab187"}, + {file = "simplejson-3.19.3-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7017329ca8d4dca94ad5e59f496e5fc77630aecfc39df381ffc1d37fb6b25832"}, + {file = "simplejson-3.19.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:67a20641afebf4cfbcff50061f07daad1eace6e7b31d7622b6fa2c40d43900ba"}, + {file = "simplejson-3.19.3-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:dd6a7dabcc4c32daf601bc45e01b79175dde4b52548becea4f9545b0a4428169"}, + {file = "simplejson-3.19.3-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:08f9b443a94e72dd02c87098c96886d35790e79e46b24e67accafbf13b73d43b"}, + {file = "simplejson-3.19.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:fa97278ae6614346b5ca41a45a911f37a3261b57dbe4a00602048652c862c28b"}, + {file = "simplejson-3.19.3-cp312-cp312-win32.whl", hash = "sha256:ef28c3b328d29b5e2756903aed888960bc5df39b4c2eab157ae212f70ed5bf74"}, + {file = "simplejson-3.19.3-cp312-cp312-win_amd64.whl", hash = "sha256:1e662336db50ad665777e6548b5076329a94a0c3d4a0472971c588b3ef27de3a"}, + {file = "simplejson-3.19.3-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:0959e6cb62e3994b5a40e31047ff97ef5c4138875fae31659bead691bed55896"}, + {file = "simplejson-3.19.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:7a7bfad839c624e139a4863007233a3f194e7c51551081f9789cba52e4da5167"}, + {file = "simplejson-3.19.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:afab2f7f2486a866ff04d6d905e9386ca6a231379181a3838abce1f32fbdcc37"}, + {file = "simplejson-3.19.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d00313681015ac498e1736b304446ee6d1c72c5b287cd196996dad84369998f7"}, + {file = "simplejson-3.19.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d936ae682d5b878af9d9eb4d8bb1fdd5e41275c8eb59ceddb0aeed857bb264a2"}, + {file = "simplejson-3.19.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:01c6657485393f2e9b8177c77a7634f13ebe70d5e6de150aae1677d91516ce6b"}, + {file = "simplejson-3.19.3-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2a6a750d3c7461b1c47cfc6bba8d9e57a455e7c5f80057d2a82f738040dd1129"}, + {file = "simplejson-3.19.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:ea7a4a998c87c5674a27089e022110a1a08a7753f21af3baf09efe9915c23c3c"}, + {file = "simplejson-3.19.3-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:6300680d83a399be2b8f3b0ef7ef90b35d2a29fe6e9c21438097e0938bbc1564"}, + {file = "simplejson-3.19.3-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:ab69f811a660c362651ae395eba8ce84f84c944cea0df5718ea0ba9d1e4e7252"}, + {file = "simplejson-3.19.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:256e09d0f94d9c3d177d9e95fd27a68c875a4baa2046633df387b86b652f5747"}, + {file = "simplejson-3.19.3-cp313-cp313-win32.whl", hash = "sha256:2c78293470313aefa9cfc5e3f75ca0635721fb016fb1121c1c5b0cb8cc74712a"}, + {file = "simplejson-3.19.3-cp313-cp313-win_amd64.whl", hash = "sha256:3bbcdc438dc1683b35f7a8dc100960c721f922f9ede8127f63bed7dfded4c64c"}, + {file = "simplejson-3.19.3-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:89b35433186e977fa86ff1fd179c1fadff39cfa3afa1648dab0b6ca53153acd9"}, + {file = "simplejson-3.19.3-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d43c2d7504eda566c50203cdc9dc043aff6f55f1b7dae0dcd79dfefef9159d1c"}, + {file = "simplejson-3.19.3-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6890ff9cf0bd2e1d487e2a8869ebd620a44684c0a9667fa5ee751d099d5d84c8"}, + {file = "simplejson-3.19.3-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1069143a8fb3905e1bc0696c62be7e3adf812e9f1976ac9ae15b05112ff57cc9"}, + {file = "simplejson-3.19.3-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cb324bb903330cbb35d87cce367a12631cd5720afa06e5b9c906483970946da6"}, + {file = "simplejson-3.19.3-cp36-cp36m-musllinux_1_2_aarch64.whl", hash = "sha256:0a32859d45d7b85fb803bb68f6bee14526991a1190269116c33399fa0daf9bbf"}, + {file = "simplejson-3.19.3-cp36-cp36m-musllinux_1_2_i686.whl", hash = "sha256:23833ee7e791ec968b744dfee2a2d39df7152050051096caf4296506d75608d8"}, + {file = "simplejson-3.19.3-cp36-cp36m-musllinux_1_2_ppc64le.whl", hash = "sha256:d73efb03c5b39249c82488a994f0998f9e4399e3d085209d2120503305ba77a8"}, + {file = "simplejson-3.19.3-cp36-cp36m-musllinux_1_2_x86_64.whl", hash = "sha256:7923878b7a0142d39763ec2dbecff3053c1bedd3653585a8474666e420fe83f5"}, + {file = "simplejson-3.19.3-cp36-cp36m-win32.whl", hash = "sha256:7355c7203353c36d46c4e7b6055293b3d2be097bbc5e2874a2b8a7259f0325dd"}, + {file = "simplejson-3.19.3-cp36-cp36m-win_amd64.whl", hash = "sha256:d1b8b4d6379fe55f471914345fe6171d81a18649dacf3248abfc9c349b4442eb"}, + {file = "simplejson-3.19.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:d36608557b4dcd7a62c29ad4cd7c5a1720bbf7dc942eff9dc42d2c542a5f042d"}, + {file = "simplejson-3.19.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7137e69c6781ecf23afab064be94a277236c9cba31aa48ff1a0ec3995c69171e"}, + {file = "simplejson-3.19.3-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:76f8c28fe2d426182405b18ddf3001fce47835a557dc15c3d8bdea01c03361da"}, + {file = "simplejson-3.19.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ff7bc1bbdaa3e487c9469128bf39408e91f5573901cb852e03af378d3582c52d"}, + {file = "simplejson-3.19.3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0782cb9bf827f0c488b6aa0f2819f618308a3caf2973cfd792e45d631bec4db"}, + {file = "simplejson-3.19.3-cp37-cp37m-musllinux_1_2_aarch64.whl", hash = "sha256:6fea0716c593dabb4392c4996d4e902a83b2428e6da82938cf28a523a11eb277"}, + {file = "simplejson-3.19.3-cp37-cp37m-musllinux_1_2_i686.whl", hash = "sha256:8f41bb5370b34f63171e65fdb00e12be1d83675cecb23e627df26f4c88dfc021"}, + {file = "simplejson-3.19.3-cp37-cp37m-musllinux_1_2_ppc64le.whl", hash = "sha256:37105d1d708365b91165e1a6e505bdecc88637091348cf4b6adcdcb4f5a5fb8b"}, + {file = "simplejson-3.19.3-cp37-cp37m-musllinux_1_2_x86_64.whl", hash = "sha256:b9198c1f1f8910a3b86b60f4fe2556d9d28d3fefe35bffe6be509a27402e694d"}, + {file = "simplejson-3.19.3-cp37-cp37m-win32.whl", hash = "sha256:bc164f32dd9691e7082ce5df24b4cf8c6c394bbf9bdeeb5d843127cd07ab8ad2"}, + {file = "simplejson-3.19.3-cp37-cp37m-win_amd64.whl", hash = "sha256:1bd41f2cb1a2c57656ceff67b12d005cb255c728265e222027ad73193a04005a"}, + {file = "simplejson-3.19.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:0733ecd95ae03ae718ec74aad818f5af5f3155d596f7b242acbc1621e765e5fb"}, + {file = "simplejson-3.19.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:4a0710d1a5e41c4f829caa1572793dd3130c8d65c2b194c24ff29c4c305c26e0"}, + {file = "simplejson-3.19.3-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:1a53a07320c5ff574d8b1a89c937ce33608832f166f39dff0581ac43dc979abd"}, + {file = "simplejson-3.19.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1773cabfba66a6337b547e45dafbd471b09487370bcab75bd28f626520410d29"}, + {file = "simplejson-3.19.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7c0104b4b7d2c75ccedbf1d9d5a3bd2daa75e51053935a44ba012e2fd4c43752"}, + {file = "simplejson-3.19.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1c49eeb94b8f09dc8a5843c156a22b8bde6aa1ddc65ca8ddc62dddcc001e6a2d"}, + {file = "simplejson-3.19.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3dc5c1a85ff388e98ea877042daec3d157b6db0d85bac6ba5498034689793e7e"}, + {file = "simplejson-3.19.3-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:49549e3d81ab4a58424405aa545602674d8c35c20e986b42bb8668e782a94bac"}, + {file = "simplejson-3.19.3-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:e1a1452ad5723ff129b081e3c8aa4ba56b8734fee4223355ed7b815a7ece69bc"}, + {file = "simplejson-3.19.3-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:d0d5a63f1768fed7e78cf55712dee81f5a345e34d34224f3507ebf71df2b754d"}, + {file = "simplejson-3.19.3-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7e062767ac165df9a46963f5735aa4eee0089ec1e48b3f2ec46182754b96f55e"}, + {file = "simplejson-3.19.3-cp38-cp38-win32.whl", hash = "sha256:56134bbafe458a7b21f6fddbf889d36bec6d903718f4430768e3af822f8e27c2"}, + {file = "simplejson-3.19.3-cp38-cp38-win_amd64.whl", hash = "sha256:bcde83a553a96dc7533736c547bddaa35414a2566ab0ecf7d3964fc4bdb84c11"}, + {file = "simplejson-3.19.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:b5587feda2b65a79da985ae6d116daf6428bf7489992badc29fc96d16cd27b05"}, + {file = "simplejson-3.19.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:e0d2b00ecbcd1a3c5ea1abc8bb99a26508f758c1759fd01c3be482a3655a176f"}, + {file = "simplejson-3.19.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:32a3ada8f3ea41db35e6d37b86dade03760f804628ec22e4fe775b703d567426"}, + {file = "simplejson-3.19.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f455672f4738b0f47183c5896e3606cd65c9ddee3805a4d18e8c96aa3f47c84"}, + {file = "simplejson-3.19.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2b737a5fefedb8333fa50b8db3dcc9b1d18fd6c598f89fa7debff8b46bf4e511"}, + {file = "simplejson-3.19.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:eb47ee773ce67476a960e2db4a0a906680c54f662521550828c0cc57d0099426"}, + {file = "simplejson-3.19.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eed8cd98a7b24861da9d3d937f5fbfb6657350c547528a117297fe49e3960667"}, + {file = "simplejson-3.19.3-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:619756f1dd634b5bdf57d9a3914300526c3b348188a765e45b8b08eabef0c94e"}, + {file = "simplejson-3.19.3-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:dd7230d061e755d60a4d5445bae854afe33444cdb182f3815cff26ac9fb29a15"}, + {file = "simplejson-3.19.3-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:101a3c8392028cd704a93c7cba8926594e775ca3c91e0bee82144e34190903f1"}, + {file = "simplejson-3.19.3-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1e557712fc79f251673aeb3fad3501d7d4da3a27eff0857af2e1d1afbbcf6685"}, + {file = "simplejson-3.19.3-cp39-cp39-win32.whl", hash = "sha256:0bc5544e3128891bf613b9f71813ee2ec9c11574806f74dd8bb84e5e95bf64a2"}, + {file = "simplejson-3.19.3-cp39-cp39-win_amd64.whl", hash = "sha256:06662392e4913dc8846d6a71a6d5de86db5fba244831abe1dd741d62a4136764"}, + {file = "simplejson-3.19.3-py3-none-any.whl", hash = "sha256:49cc4c7b940d43bd12bf87ec63f28cbc4964fc4e12c031cc8cd01650f43eb94e"}, + {file = "simplejson-3.19.3.tar.gz", hash = "sha256:8e086896c36210ab6050f2f9f095a5f1e03c83fa0e7f296d6cba425411364680"}, ] [[package]] @@ -4384,49 +4443,49 @@ test = ["cython (>=3.0)", "defusedxml (>=0.7.1)", "pytest (>=8.0)", "setuptools [[package]] name = "sphinxcontrib-applehelp" -version = "1.0.8" +version = "2.0.0" description = "sphinxcontrib-applehelp is a Sphinx extension which outputs Apple help books" optional = false python-versions = ">=3.9" files = [ - {file = "sphinxcontrib_applehelp-1.0.8-py3-none-any.whl", hash = "sha256:cb61eb0ec1b61f349e5cc36b2028e9e7ca765be05e49641c97241274753067b4"}, - {file = "sphinxcontrib_applehelp-1.0.8.tar.gz", hash = "sha256:c40a4f96f3776c4393d933412053962fac2b84f4c99a7982ba42e09576a70619"}, + {file = "sphinxcontrib_applehelp-2.0.0-py3-none-any.whl", hash = "sha256:4cd3f0ec4ac5dd9c17ec65e9ab272c9b867ea77425228e68ecf08d6b28ddbdb5"}, + {file = "sphinxcontrib_applehelp-2.0.0.tar.gz", hash = "sha256:2f29ef331735ce958efa4734873f084941970894c6090408b079c61b2e1c06d1"}, ] [package.extras] -lint = ["docutils-stubs", "flake8", "mypy"] +lint = ["mypy", "ruff (==0.5.5)", "types-docutils"] standalone = ["Sphinx (>=5)"] test = ["pytest"] [[package]] name = "sphinxcontrib-devhelp" -version = "1.0.6" +version = "2.0.0" description = "sphinxcontrib-devhelp is a sphinx extension which outputs Devhelp documents" optional = false python-versions = ">=3.9" files = [ - {file = "sphinxcontrib_devhelp-1.0.6-py3-none-any.whl", hash = "sha256:6485d09629944511c893fa11355bda18b742b83a2b181f9a009f7e500595c90f"}, - {file = "sphinxcontrib_devhelp-1.0.6.tar.gz", hash = "sha256:9893fd3f90506bc4b97bdb977ceb8fbd823989f4316b28c3841ec128544372d3"}, + {file = "sphinxcontrib_devhelp-2.0.0-py3-none-any.whl", hash = "sha256:aefb8b83854e4b0998877524d1029fd3e6879210422ee3780459e28a1f03a8a2"}, + {file = "sphinxcontrib_devhelp-2.0.0.tar.gz", hash = "sha256:411f5d96d445d1d73bb5d52133377b4248ec79db5c793ce7dbe59e074b4dd1ad"}, ] [package.extras] -lint = ["docutils-stubs", "flake8", "mypy"] +lint = ["mypy", "ruff (==0.5.5)", "types-docutils"] standalone = ["Sphinx (>=5)"] test = ["pytest"] [[package]] name = "sphinxcontrib-htmlhelp" -version = "2.0.6" +version = "2.1.0" description = "sphinxcontrib-htmlhelp is a sphinx extension which renders HTML help files" optional = false python-versions = ">=3.9" files = [ - {file = "sphinxcontrib_htmlhelp-2.0.6-py3-none-any.whl", hash = "sha256:1b9af5a2671a61410a868fce050cab7ca393c218e6205cbc7f590136f207395c"}, - {file = "sphinxcontrib_htmlhelp-2.0.6.tar.gz", hash = "sha256:c6597da06185f0e3b4dc952777a04200611ef563882e0c244d27a15ee22afa73"}, + {file = "sphinxcontrib_htmlhelp-2.1.0-py3-none-any.whl", hash = "sha256:166759820b47002d22914d64a075ce08f4c46818e17cfc9470a9786b759b19f8"}, + {file = "sphinxcontrib_htmlhelp-2.1.0.tar.gz", hash = "sha256:c9e2916ace8aad64cc13a0d233ee22317f2b9025b9cf3295249fa985cc7082e9"}, ] [package.extras] -lint = ["docutils-stubs", "flake8", "mypy"] +lint = ["mypy", "ruff (==0.5.5)", "types-docutils"] standalone = ["Sphinx (>=5)"] test = ["html5lib", "pytest"] @@ -4446,89 +4505,87 @@ test = ["flake8", "mypy", "pytest"] [[package]] name = "sphinxcontrib-qthelp" -version = "1.0.8" +version = "2.0.0" description = "sphinxcontrib-qthelp is a sphinx extension which outputs QtHelp documents" optional = false python-versions = ">=3.9" files = [ - {file = "sphinxcontrib_qthelp-1.0.8-py3-none-any.whl", hash = "sha256:323d6acc4189af76dfe94edd2a27d458902319b60fcca2aeef3b2180c106a75f"}, - {file = "sphinxcontrib_qthelp-1.0.8.tar.gz", hash = "sha256:db3f8fa10789c7a8e76d173c23364bdf0ebcd9449969a9e6a3dd31b8b7469f03"}, + {file = "sphinxcontrib_qthelp-2.0.0-py3-none-any.whl", hash = "sha256:b18a828cdba941ccd6ee8445dbe72ffa3ef8cbe7505d8cd1fa0d42d3f2d5f3eb"}, + {file = "sphinxcontrib_qthelp-2.0.0.tar.gz", hash = "sha256:4fe7d0ac8fc171045be623aba3e2a8f613f8682731f9153bb2e40ece16b9bbab"}, ] [package.extras] -lint = ["docutils-stubs", "flake8", "mypy"] +lint = ["mypy", "ruff (==0.5.5)", "types-docutils"] standalone = ["Sphinx (>=5)"] test = ["defusedxml (>=0.7.1)", "pytest"] [[package]] name = "sphinxcontrib-serializinghtml" -version = "1.1.10" +version = "2.0.0" description = "sphinxcontrib-serializinghtml is a sphinx extension which outputs \"serialized\" HTML files (json and pickle)" optional = false python-versions = ">=3.9" files = [ - {file = "sphinxcontrib_serializinghtml-1.1.10-py3-none-any.whl", hash = "sha256:326369b8df80a7d2d8d7f99aa5ac577f51ea51556ed974e7716cfd4fca3f6cb7"}, - {file = "sphinxcontrib_serializinghtml-1.1.10.tar.gz", hash = "sha256:93f3f5dc458b91b192fe10c397e324f262cf163d79f3282c158e8436a2c4511f"}, + {file = "sphinxcontrib_serializinghtml-2.0.0-py3-none-any.whl", hash = "sha256:6e2cb0eef194e10c27ec0023bfeb25badbbb5868244cf5bc5bdc04e4464bf331"}, + {file = "sphinxcontrib_serializinghtml-2.0.0.tar.gz", hash = "sha256:e9d912827f872c029017a53f0ef2180b327c3f7fd23c87229f7a8e8b70031d4d"}, ] [package.extras] -lint = ["docutils-stubs", "flake8", "mypy"] +lint = ["mypy", "ruff (==0.5.5)", "types-docutils"] standalone = ["Sphinx (>=5)"] test = ["pytest"] [[package]] name = "sqlalchemy" -version = "1.4.52" +version = "1.4.54" description = "Database Abstraction Library" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" files = [ - {file = "SQLAlchemy-1.4.52-cp310-cp310-macosx_11_0_x86_64.whl", hash = "sha256:f68016f9a5713684c1507cc37133c28035f29925c75c0df2f9d0f7571e23720a"}, - {file = "SQLAlchemy-1.4.52-cp310-cp310-manylinux1_x86_64.manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_5_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:24bb0f81fbbb13d737b7f76d1821ec0b117ce8cbb8ee5e8641ad2de41aa916d3"}, - {file = "SQLAlchemy-1.4.52-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e93983cc0d2edae253b3f2141b0a3fb07e41c76cd79c2ad743fc27eb79c3f6db"}, - {file = "SQLAlchemy-1.4.52-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:84e10772cfc333eb08d0b7ef808cd76e4a9a30a725fb62a0495877a57ee41d81"}, - {file = "SQLAlchemy-1.4.52-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:427988398d2902de042093d17f2b9619a5ebc605bf6372f7d70e29bde6736842"}, - {file = "SQLAlchemy-1.4.52-cp310-cp310-win32.whl", hash = "sha256:1296f2cdd6db09b98ceb3c93025f0da4835303b8ac46c15c2136e27ee4d18d94"}, - {file = "SQLAlchemy-1.4.52-cp310-cp310-win_amd64.whl", hash = "sha256:80e7f697bccc56ac6eac9e2df5c98b47de57e7006d2e46e1a3c17c546254f6ef"}, - {file = "SQLAlchemy-1.4.52-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:2f251af4c75a675ea42766880ff430ac33291c8d0057acca79710f9e5a77383d"}, - {file = "SQLAlchemy-1.4.52-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb8f9e4c4718f111d7b530c4e6fb4d28f9f110eb82e7961412955b3875b66de0"}, - {file = "SQLAlchemy-1.4.52-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afb1672b57f58c0318ad2cff80b384e816735ffc7e848d8aa51e0b0fc2f4b7bb"}, - {file = "SQLAlchemy-1.4.52-cp311-cp311-win32.whl", hash = "sha256:6e41cb5cda641f3754568d2ed8962f772a7f2b59403b95c60c89f3e0bd25f15e"}, - {file = "SQLAlchemy-1.4.52-cp311-cp311-win_amd64.whl", hash = "sha256:5bed4f8c3b69779de9d99eb03fd9ab67a850d74ab0243d1be9d4080e77b6af12"}, - {file = "SQLAlchemy-1.4.52-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:49e3772eb3380ac88d35495843daf3c03f094b713e66c7d017e322144a5c6b7c"}, - {file = "SQLAlchemy-1.4.52-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:618827c1a1c243d2540314c6e100aee7af09a709bd005bae971686fab6723554"}, - {file = "SQLAlchemy-1.4.52-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:de9acf369aaadb71a725b7e83a5ef40ca3de1cf4cdc93fa847df6b12d3cd924b"}, - {file = "SQLAlchemy-1.4.52-cp312-cp312-win32.whl", hash = "sha256:763bd97c4ebc74136ecf3526b34808c58945023a59927b416acebcd68d1fc126"}, - {file = "SQLAlchemy-1.4.52-cp312-cp312-win_amd64.whl", hash = "sha256:f12aaf94f4d9679ca475975578739e12cc5b461172e04d66f7a3c39dd14ffc64"}, - {file = "SQLAlchemy-1.4.52-cp36-cp36m-macosx_10_14_x86_64.whl", hash = "sha256:853fcfd1f54224ea7aabcf34b227d2b64a08cbac116ecf376907968b29b8e763"}, - {file = "SQLAlchemy-1.4.52-cp36-cp36m-manylinux1_x86_64.manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_5_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f98dbb8fcc6d1c03ae8ec735d3c62110949a3b8bc6e215053aa27096857afb45"}, - {file = "SQLAlchemy-1.4.52-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1e135fff2e84103bc15c07edd8569612ce317d64bdb391f49ce57124a73f45c5"}, - {file = "SQLAlchemy-1.4.52-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:5b5de6af8852500d01398f5047d62ca3431d1e29a331d0b56c3e14cb03f8094c"}, - {file = "SQLAlchemy-1.4.52-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3491c85df263a5c2157c594f54a1a9c72265b75d3777e61ee13c556d9e43ffc9"}, - {file = "SQLAlchemy-1.4.52-cp36-cp36m-win32.whl", hash = "sha256:427c282dd0deba1f07bcbf499cbcc9fe9a626743f5d4989bfdfd3ed3513003dd"}, - {file = "SQLAlchemy-1.4.52-cp36-cp36m-win_amd64.whl", hash = "sha256:ca5ce82b11731492204cff8845c5e8ca1a4bd1ade85e3b8fcf86e7601bfc6a39"}, - {file = "SQLAlchemy-1.4.52-cp37-cp37m-macosx_11_0_x86_64.whl", hash = "sha256:29d4247313abb2015f8979137fe65f4eaceead5247d39603cc4b4a610936cd2b"}, - {file = "SQLAlchemy-1.4.52-cp37-cp37m-manylinux1_x86_64.manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_5_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a752bff4796bf22803d052d4841ebc3c55c26fb65551f2c96e90ac7c62be763a"}, - {file = "SQLAlchemy-1.4.52-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f7ea11727feb2861deaa293c7971a4df57ef1c90e42cb53f0da40c3468388000"}, - {file = "SQLAlchemy-1.4.52-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:d913f8953e098ca931ad7f58797f91deed26b435ec3756478b75c608aa80d139"}, - {file = "SQLAlchemy-1.4.52-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a251146b921725547ea1735b060a11e1be705017b568c9f8067ca61e6ef85f20"}, - {file = "SQLAlchemy-1.4.52-cp37-cp37m-win32.whl", hash = "sha256:1f8e1c6a6b7f8e9407ad9afc0ea41c1f65225ce505b79bc0342159de9c890782"}, - {file = "SQLAlchemy-1.4.52-cp37-cp37m-win_amd64.whl", hash = "sha256:346ed50cb2c30f5d7a03d888e25744154ceac6f0e6e1ab3bc7b5b77138d37710"}, - {file = "SQLAlchemy-1.4.52-cp38-cp38-macosx_11_0_x86_64.whl", hash = "sha256:4dae6001457d4497736e3bc422165f107ecdd70b0d651fab7f731276e8b9e12d"}, - {file = "SQLAlchemy-1.4.52-cp38-cp38-manylinux1_x86_64.manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_5_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a5d2e08d79f5bf250afb4a61426b41026e448da446b55e4770c2afdc1e200fce"}, - {file = "SQLAlchemy-1.4.52-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5bbce5dd7c7735e01d24f5a60177f3e589078f83c8a29e124a6521b76d825b85"}, - {file = "SQLAlchemy-1.4.52-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:bdb7b4d889631a3b2a81a3347c4c3f031812eb4adeaa3ee4e6b0d028ad1852b5"}, - {file = "SQLAlchemy-1.4.52-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c294ae4e6bbd060dd79e2bd5bba8b6274d08ffd65b58d106394cb6abbf35cf45"}, - {file = "SQLAlchemy-1.4.52-cp38-cp38-win32.whl", hash = "sha256:bcdfb4b47fe04967669874fb1ce782a006756fdbebe7263f6a000e1db969120e"}, - {file = "SQLAlchemy-1.4.52-cp38-cp38-win_amd64.whl", hash = "sha256:7d0dbc56cb6af5088f3658982d3d8c1d6a82691f31f7b0da682c7b98fa914e91"}, - {file = "SQLAlchemy-1.4.52-cp39-cp39-macosx_11_0_x86_64.whl", hash = "sha256:a551d5f3dc63f096ed41775ceec72fdf91462bb95abdc179010dc95a93957800"}, - {file = "SQLAlchemy-1.4.52-cp39-cp39-manylinux1_x86_64.manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_5_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6ab773f9ad848118df7a9bbabca53e3f1002387cdbb6ee81693db808b82aaab0"}, - {file = "SQLAlchemy-1.4.52-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d2de46f5d5396d5331127cfa71f837cca945f9a2b04f7cb5a01949cf676db7d1"}, - {file = "SQLAlchemy-1.4.52-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:7027be7930a90d18a386b25ee8af30514c61f3852c7268899f23fdfbd3107181"}, - {file = "SQLAlchemy-1.4.52-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:99224d621affbb3c1a4f72b631f8393045f4ce647dd3262f12fe3576918f8bf3"}, - {file = "SQLAlchemy-1.4.52-cp39-cp39-win32.whl", hash = "sha256:c124912fd4e1bb9d1e7dc193ed482a9f812769cb1e69363ab68e01801e859821"}, - {file = "SQLAlchemy-1.4.52-cp39-cp39-win_amd64.whl", hash = "sha256:2c286fab42e49db23c46ab02479f328b8bdb837d3e281cae546cc4085c83b680"}, - {file = "SQLAlchemy-1.4.52.tar.gz", hash = "sha256:80e63bbdc5217dad3485059bdf6f65a7d43f33c8bde619df5c220edf03d87296"}, + {file = "SQLAlchemy-1.4.54-cp310-cp310-macosx_12_0_x86_64.whl", hash = "sha256:af00236fe21c4d4f4c227b6ccc19b44c594160cc3ff28d104cdce85855369277"}, + {file = "SQLAlchemy-1.4.54-cp310-cp310-manylinux1_x86_64.manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_5_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1183599e25fa38a1a322294b949da02b4f0da13dbc2688ef9dbe746df573f8a6"}, + {file = "SQLAlchemy-1.4.54-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1990d5a6a5dc358a0894c8ca02043fb9a5ad9538422001fb2826e91c50f1d539"}, + {file = "SQLAlchemy-1.4.54-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:14b3f4783275339170984cadda66e3ec011cce87b405968dc8d51cf0f9997b0d"}, + {file = "SQLAlchemy-1.4.54-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6b24364150738ce488333b3fb48bfa14c189a66de41cd632796fbcacb26b4585"}, + {file = "SQLAlchemy-1.4.54-cp310-cp310-win32.whl", hash = "sha256:a8a72259a1652f192c68377be7011eac3c463e9892ef2948828c7d58e4829988"}, + {file = "SQLAlchemy-1.4.54-cp310-cp310-win_amd64.whl", hash = "sha256:b67589f7955924865344e6eacfdcf70675e64f36800a576aa5e961f0008cde2a"}, + {file = "SQLAlchemy-1.4.54-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:b05e0626ec1c391432eabb47a8abd3bf199fb74bfde7cc44a26d2b1b352c2c6e"}, + {file = "SQLAlchemy-1.4.54-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:13e91d6892b5fcb94a36ba061fb7a1f03d0185ed9d8a77c84ba389e5bb05e936"}, + {file = "SQLAlchemy-1.4.54-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fb59a11689ff3c58e7652260127f9e34f7f45478a2f3ef831ab6db7bcd72108f"}, + {file = "SQLAlchemy-1.4.54-cp311-cp311-win32.whl", hash = "sha256:1390ca2d301a2708fd4425c6d75528d22f26b8f5cbc9faba1ddca136671432bc"}, + {file = "SQLAlchemy-1.4.54-cp311-cp311-win_amd64.whl", hash = "sha256:2b37931eac4b837c45e2522066bda221ac6d80e78922fb77c75eb12e4dbcdee5"}, + {file = "SQLAlchemy-1.4.54-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:3f01c2629a7d6b30d8afe0326b8c649b74825a0e1ebdcb01e8ffd1c920deb07d"}, + {file = "SQLAlchemy-1.4.54-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9c24dd161c06992ed16c5e528a75878edbaeced5660c3db88c820f1f0d3fe1f4"}, + {file = "SQLAlchemy-1.4.54-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b5e0d47d619c739bdc636bbe007da4519fc953393304a5943e0b5aec96c9877c"}, + {file = "SQLAlchemy-1.4.54-cp312-cp312-win32.whl", hash = "sha256:12bc0141b245918b80d9d17eca94663dbd3f5266ac77a0be60750f36102bbb0f"}, + {file = "SQLAlchemy-1.4.54-cp312-cp312-win_amd64.whl", hash = "sha256:f941aaf15f47f316123e1933f9ea91a6efda73a161a6ab6046d1cde37be62c88"}, + {file = "SQLAlchemy-1.4.54-cp36-cp36m-macosx_10_14_x86_64.whl", hash = "sha256:a41611835010ed4ea4c7aed1da5b58aac78ee7e70932a91ed2705a7b38e40f52"}, + {file = "SQLAlchemy-1.4.54-cp36-cp36m-manylinux1_x86_64.manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_5_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1e8c1b9ecaf9f2590337d5622189aeb2f0dbc54ba0232fa0856cf390957584a9"}, + {file = "SQLAlchemy-1.4.54-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0de620f978ca273ce027769dc8db7e6ee72631796187adc8471b3c76091b809e"}, + {file = "SQLAlchemy-1.4.54-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:c5a2530400a6e7e68fd1552a55515de6a4559122e495f73554a51cedafc11669"}, + {file = "SQLAlchemy-1.4.54-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d0cf7076c8578b3de4e43a046cc7a1af8466e1c3f5e64167189fe8958a4f9c02"}, + {file = "SQLAlchemy-1.4.54-cp37-cp37m-macosx_11_0_x86_64.whl", hash = "sha256:f1e1b92ee4ee9ffc68624ace218b89ca5ca667607ccee4541a90cc44999b9aea"}, + {file = "SQLAlchemy-1.4.54-cp37-cp37m-manylinux1_x86_64.manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_5_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:41cffc63c7c83dfc30c4cab5b4308ba74440a9633c4509c51a0c52431fb0f8ab"}, + {file = "SQLAlchemy-1.4.54-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b5933c45d11cbd9694b1540aa9076816cc7406964c7b16a380fd84d3a5fe3241"}, + {file = "SQLAlchemy-1.4.54-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:cafe0ba3a96d0845121433cffa2b9232844a2609fce694fcc02f3f31214ece28"}, + {file = "SQLAlchemy-1.4.54-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a19f816f4702d7b1951d7576026c7124b9bfb64a9543e571774cf517b7a50b29"}, + {file = "SQLAlchemy-1.4.54-cp37-cp37m-win32.whl", hash = "sha256:76c2ba7b5a09863d0a8166fbc753af96d561818c572dbaf697c52095938e7be4"}, + {file = "SQLAlchemy-1.4.54-cp37-cp37m-win_amd64.whl", hash = "sha256:a86b0e4be775902a5496af4fb1b60d8a2a457d78f531458d294360b8637bb014"}, + {file = "SQLAlchemy-1.4.54-cp38-cp38-macosx_12_0_x86_64.whl", hash = "sha256:a49730afb716f3f675755afec109895cab95bc9875db7ffe2e42c1b1c6279482"}, + {file = "SQLAlchemy-1.4.54-cp38-cp38-manylinux1_x86_64.manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_5_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:26e78444bc77d089e62874dc74df05a5c71f01ac598010a327881a48408d0064"}, + {file = "SQLAlchemy-1.4.54-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:02d2ecb9508f16ab9c5af466dfe5a88e26adf2e1a8d1c56eb616396ccae2c186"}, + {file = "SQLAlchemy-1.4.54-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:394b0135900b62dbf63e4809cdc8ac923182af2816d06ea61cd6763943c2cc05"}, + {file = "SQLAlchemy-1.4.54-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5ed3576675c187e3baa80b02c4c9d0edfab78eff4e89dd9da736b921333a2432"}, + {file = "SQLAlchemy-1.4.54-cp38-cp38-win32.whl", hash = "sha256:fc9ffd9a38e21fad3e8c5a88926d57f94a32546e937e0be46142b2702003eba7"}, + {file = "SQLAlchemy-1.4.54-cp38-cp38-win_amd64.whl", hash = "sha256:a01bc25eb7a5688656c8770f931d5cb4a44c7de1b3cec69b84cc9745d1e4cc10"}, + {file = "SQLAlchemy-1.4.54-cp39-cp39-macosx_12_0_x86_64.whl", hash = "sha256:0b76bbb1cbae618d10679be8966f6d66c94f301cfc15cb49e2f2382563fb6efb"}, + {file = "SQLAlchemy-1.4.54-cp39-cp39-manylinux1_x86_64.manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_5_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cdb2886c0be2c6c54d0651d5a61c29ef347e8eec81fd83afebbf7b59b80b7393"}, + {file = "SQLAlchemy-1.4.54-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:954816850777ac234a4e32b8c88ac1f7847088a6e90cfb8f0e127a1bf3feddff"}, + {file = "SQLAlchemy-1.4.54-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:1d83cd1cc03c22d922ec94d0d5f7b7c96b1332f5e122e81b1a61fb22da77879a"}, + {file = "SQLAlchemy-1.4.54-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1576fba3616f79496e2f067262200dbf4aab1bb727cd7e4e006076686413c80c"}, + {file = "SQLAlchemy-1.4.54-cp39-cp39-win32.whl", hash = "sha256:3112de9e11ff1957148c6de1df2bc5cc1440ee36783412e5eedc6f53638a577d"}, + {file = "SQLAlchemy-1.4.54-cp39-cp39-win_amd64.whl", hash = "sha256:6da60fb24577f989535b8fc8b2ddc4212204aaf02e53c4c7ac94ac364150ed08"}, + {file = "sqlalchemy-1.4.54.tar.gz", hash = "sha256:4470fbed088c35dc20b78a39aaf4ae54fe81790c783b3264872a0224f437c31a"}, ] [package.dependencies] @@ -4539,17 +4596,17 @@ aiomysql = ["aiomysql (>=0.2.0)", "greenlet (!=0.4.17)"] aiosqlite = ["aiosqlite", "greenlet (!=0.4.17)", "typing_extensions (!=3.10.0.1)"] asyncio = ["greenlet (!=0.4.17)"] asyncmy = ["asyncmy (>=0.2.3,!=0.2.4)", "greenlet (!=0.4.17)"] -mariadb-connector = ["mariadb (>=1.0.1,!=1.1.2)"] +mariadb-connector = ["mariadb (>=1.0.1,!=1.1.2)", "mariadb (>=1.0.1,!=1.1.2)"] mssql = ["pyodbc"] -mssql-pymssql = ["pymssql"] -mssql-pyodbc = ["pyodbc"] +mssql-pymssql = ["pymssql", "pymssql"] +mssql-pyodbc = ["pyodbc", "pyodbc"] mypy = ["mypy (>=0.910)", "sqlalchemy2-stubs"] mysql = ["mysqlclient (>=1.4.0)", "mysqlclient (>=1.4.0,<2)"] -mysql-connector = ["mysql-connector-python"] +mysql-connector = ["mysql-connector-python", "mysql-connector-python"] oracle = ["cx_oracle (>=7)", "cx_oracle (>=7,<8)"] postgresql = ["psycopg2 (>=2.7)"] -postgresql-asyncpg = ["asyncpg", "greenlet (!=0.4.17)"] -postgresql-pg8000 = ["pg8000 (>=1.16.6,!=1.29.0)"] +postgresql-asyncpg = ["asyncpg", "asyncpg", "greenlet (!=0.4.17)", "greenlet (!=0.4.17)"] +postgresql-pg8000 = ["pg8000 (>=1.16.6,!=1.29.0)", "pg8000 (>=1.16.6,!=1.29.0)"] postgresql-psycopg2binary = ["psycopg2-binary"] postgresql-psycopg2cffi = ["psycopg2cffi"] pymysql = ["pymysql", "pymysql (<1)"] @@ -4675,13 +4732,13 @@ test = ["argcomplete (>=3.0.3)", "mypy (>=1.7.0)", "pre-commit", "pytest (>=7.0, [[package]] name = "types-python-dateutil" -version = "2.9.0.20240316" +version = "2.9.0.20240906" description = "Typing stubs for python-dateutil" optional = false python-versions = ">=3.8" files = [ - {file = "types-python-dateutil-2.9.0.20240316.tar.gz", hash = "sha256:5d2f2e240b86905e40944dd787db6da9263f0deabef1076ddaed797351ec0202"}, - {file = "types_python_dateutil-2.9.0.20240316-py3-none-any.whl", hash = "sha256:6b8cb66d960771ce5ff974e9dd45e38facb81718cc1e208b10b1baccbfdbee3b"}, + {file = "types-python-dateutil-2.9.0.20240906.tar.gz", hash = "sha256:9706c3b68284c25adffc47319ecc7947e5bb86b3773f843c73906fd598bc176e"}, + {file = "types_python_dateutil-2.9.0.20240906-py3-none-any.whl", hash = "sha256:27c8cc2d058ccb14946eebcaaa503088f4f6dbc4fb6093d3d456a49aef2753f6"}, ] [[package]] @@ -4730,13 +4787,13 @@ files = [ [[package]] name = "urllib3" -version = "1.26.19" +version = "1.26.20" description = "HTTP library with thread-safe connection pooling, file post, and more." optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" files = [ - {file = "urllib3-1.26.19-py2.py3-none-any.whl", hash = "sha256:37a0344459b199fce0e80b0d3569837ec6b6937435c5244e7fd73fa6006830f3"}, - {file = "urllib3-1.26.19.tar.gz", hash = "sha256:3e3d753a8618b86d7de333b4223005f68720bcd6a7d2bcb9fbd2229ec7c1e429"}, + {file = "urllib3-1.26.20-py2.py3-none-any.whl", hash = "sha256:0ed14ccfbf1c30a9072c7ca157e4319b70d65f623e91e7b32fadb2853431016e"}, + {file = "urllib3-1.26.20.tar.gz", hash = "sha256:40c2dc0c681e47eb8f90e7e27bf6ff7df2e677421fd46756da1161c39ca70d32"}, ] [package.extras] @@ -4777,13 +4834,13 @@ files = [ [[package]] name = "validators" -version = "0.33.0" +version = "0.34.0" description = "Python Data Validation for Humans™" optional = false python-versions = ">=3.8" files = [ - {file = "validators-0.33.0-py3-none-any.whl", hash = "sha256:134b586a98894f8139865953899fc2daeb3d0c35569552c5518f089ae43ed075"}, - {file = "validators-0.33.0.tar.gz", hash = "sha256:535867e9617f0100e676a1257ba1e206b9bfd847ddc171e4d44811f07ff0bfbf"}, + {file = "validators-0.34.0-py3-none-any.whl", hash = "sha256:c804b476e3e6d3786fa07a30073a4ef694e617805eb1946ceee3fe5a9b8b1321"}, + {file = "validators-0.34.0.tar.gz", hash = "sha256:647fe407b45af9a74d245b943b18e6a816acf4926974278f6dd617778e1e781f"}, ] [package.extras] @@ -5053,20 +5110,24 @@ timezone = ["python-dateutil"] [[package]] name = "zipp" -version = "3.19.2" +version = "3.20.1" description = "Backport of pathlib-compatible object wrapper for zip files" optional = false python-versions = ">=3.8" files = [ - {file = "zipp-3.19.2-py3-none-any.whl", hash = "sha256:f091755f667055f2d02b32c53771a7a6c8b47e1fdbc4b72a8b9072b3eef8015c"}, - {file = "zipp-3.19.2.tar.gz", hash = "sha256:bf1dcf6450f873a13e952a29504887c89e6de7506209e5b1bcc3460135d4de19"}, + {file = "zipp-3.20.1-py3-none-any.whl", hash = "sha256:9960cd8967c8f85a56f920d5d507274e74f9ff813a0ab8889a5b5be2daf44064"}, + {file = "zipp-3.20.1.tar.gz", hash = "sha256:c22b14cc4763c5a5b04134207736c107db42e9d3ef2d9779d465f5f1bcba572b"}, ] [package.extras] +check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)"] +cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] -test = ["big-O", "importlib-resources", "jaraco.functools", "jaraco.itertools", "jaraco.test", "more-itertools", "pytest (>=6,!=8.1.*)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-ignore-flaky", "pytest-mypy", "pytest-ruff (>=0.2.1)"] +enabler = ["pytest-enabler (>=2.2)"] +test = ["big-O", "importlib-resources", "jaraco.functools", "jaraco.itertools", "jaraco.test", "more-itertools", "pytest (>=6,!=8.1.*)", "pytest-ignore-flaky"] +type = ["pytest-mypy"] [metadata] lock-version = "2.0" python-versions = ">= 3.9, <3.10" -content-hash = "c10dc90b12781a2ae21ccfcf0ef81ca53d8fb0c2e5341bc9984e51e3d3aa688e" +content-hash = "d60bbd62d5f91b89d000e5fa5cb1ea19877585df0426d0652e5fd21fd9e2a4cd" diff --git a/pyproject.toml b/pyproject.toml index c32d27a2..374a8216 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -44,7 +44,7 @@ invenio-rest = ">=1.3.0,<2.0.0" invenio-theme = ">=3.0.0,<4.0.0" # Invenio auth bundle invenio-access = ">=2.0.0,<3.0.0" -invenio-accounts = ">=5.0.0,<6.0.0" +invenio-accounts = ">=5.0.0,<5.1.0" invenio-oauth2server = ">=2.3.0,<3.0.0" invenio-oauthclient = ">=4.0.0,<5.0.0" invenio-userprofiles = ">=3.0.0,<4.0.0" @@ -107,8 +107,9 @@ rero-ils = "invenio_app.cli:cli" [tool.poetry.plugins."invenio_celery.tasks"] rero_mef = "rero_mef.tasks" agents = "rero_mef.agents.tasks" -idref = "rero_mef.agents.idref.tasks" -gnd = "rero_mef.agents.gnd.tasks" +concepts = "rero_mef.concepts.tasks" +places = "rero_mef.places.tasks" + [tool.poetry.plugins."invenio_assets.webpack"] rero_mef_css = "rero_mef.theme.webpack:theme" @@ -134,6 +135,7 @@ agents_rero = "rero_mef.agents.rero.models" concepts_mef = "rero_mef.concepts.mef.models" concepts_rero = "rero_mef.concepts.rero.models" concepts_idref = "rero_mef.concepts.idref.models" +concepts_gnd = "rero_mef.concepts.gnd.models" places_mef = "rero_mef.places.mef.models" placets_idref = "rero_mef.places.idref.models" placets_gnd = "rero_mef.places.gnd.models" @@ -147,6 +149,7 @@ agent_rero_id = "rero_mef.agents.rero.minters:rero_id_minter" concept_mef_id = "rero_mef.concepts.mef.minters:mef_id_minter" concept_rero_id = "rero_mef.concepts.rero.minters:rero_id_minter" concept_idref_id = "rero_mef.concepts.idref.minters:idref_id_minter" +concept_gnd_id = "rero_mef.concepts.gnd.minters:gnd_id_minter" place_mef_id = "rero_mef.places.mef.minters:mef_id_minter" place_idref_id = "rero_mef.places.idref.minters:idref_id_minter" place_gnd_id = "rero_mef.places.gnd.minters:gnd_id_minter" @@ -160,6 +163,7 @@ agent_rero_id = "rero_mef.agents.rero.fetchers:rero_id_fetcher" concept_mef_id = "rero_mef.concepts.mef.fetchers:mef_id_fetcher" concept_rero_id = "rero_mef.concepts.rero.fetchers:rero_id_fetcher" concept_idref_id = "rero_mef.concepts.idref.fetchers:idref_id_fetcher" +concept_gnd_id = "rero_mef.concepts.gnd.fetchers:gnd_id_fetcher" place_mef_id = "rero_mef.places.mef.fetchers:mef_id_fetcher" place_idref_id = "rero_mef.places.idref.fetchers:idref_id_fetcher" place_gnd_id = "rero_mef.places.gnd.fetchers:gnd_id_fetcher" @@ -174,6 +178,7 @@ agents_rero = "rero_mef.agents.rero.jsonschemas" cocepts_mef = "rero_mef.concepts.mef.jsonschemas" cocepts_rero = "rero_mef.concepts.rero.jsonschemas" cocepts_idref = "rero_mef.concepts.idref.jsonschemas" +cocepts_gnd = "rero_mef.concepts.gnd.jsonschemas" places_mef = "rero_mef.places.mef.jsonschemas" places_idref = "rero_mef.places.idref.jsonschemas" places_gnd = "rero_mef.places.gnd.jsonschemas" @@ -187,6 +192,7 @@ agents_rero = "rero_mef.agents.rero.mappings" concepts_mef = "rero_mef.concepts.mef.mappings" concepts_rero = "rero_mef.concepts.rero.mappings" concepts_idref = "rero_mef.concepts.idref.mappings" +concepts_gnd = "rero_mef.concepts.gnd.mappings" places_mef = "rero_mef.places.mef.mappings" places_idref = "rero_mef.places.idref.mappings" places_gnd = "rero_mef.places.gnd.mappings" @@ -200,6 +206,7 @@ agents_rero = "rero_mef.agents.rero.jsonresolvers.rero_resolver" concepts_mef = "rero_mef.concepts.mef.jsonresolvers.mef_resolver" concepts_rero = "rero_mef.concepts.rero.jsonresolvers.rero_resolver" concepts_idref = "rero_mef.concepts.idref.jsonresolvers.idref_resolver" +concepts_gnd = "rero_mef.concepts.gnd.jsonresolvers.gnd_resolver" places_mef = "rero_mef.places.mef.jsonresolvers.mef_resolver" places_idref = "rero_mef.places.idref.jsonresolvers.idref_resolver" places_gnd = "rero_mef.places.gnd.jsonresolvers.gnd_resolver" diff --git a/rero_mef/agents/api.py b/rero_mef/agents/api.py index a4c5be19..8a5e6b1a 100644 --- a/rero_mef/agents/api.py +++ b/rero_mef/agents/api.py @@ -18,11 +18,12 @@ from flask import current_app -from ..api import Action, ReroIndexer, ReroMefRecord -from .mef.api import build_ref_string +from rero_mef.utils import build_ref_string +from ..api import Action, EntityIndexer, EntityRecord -class AgentRecord(ReroMefRecord): + +class AgentRecord(EntityRecord): """Agent Record class.""" name = None @@ -99,7 +100,9 @@ def create_or_update_mef(self, dbcommit=False, reindex=False, viaf_record=None): f'mef: {", ".join([mef.pid for mef in mef_records])}' ) - ref_string = build_ref_string(agent=self.name, agent_pid=self.pid) + ref_string = build_ref_string( + entity_type="agents", entity_name=self.name, entity_pid=self.pid + ) old_pids = set() if mef_records: # We have MEF records change them. @@ -182,5 +185,5 @@ def reindex(self, forceindex=False): return result -class AgentIndexer(ReroIndexer): +class AgentIndexer(EntityIndexer): """Indexing class for agents.""" diff --git a/rero_mef/agents/gnd/mappings/v7/agents_gnd/gnd-agent-v0.0.1.json b/rero_mef/agents/gnd/mappings/v7/agents_gnd/gnd-agent-v0.0.1.json index ba14084d..5ff29255 100644 --- a/rero_mef/agents/gnd/mappings/v7/agents_gnd/gnd-agent-v0.0.1.json +++ b/rero_mef/agents/gnd/mappings/v7/agents_gnd/gnd-agent-v0.0.1.json @@ -40,6 +40,9 @@ }, "value": { "type": "keyword" + }, + "_identifier": { + "type": "keyword" } } }, diff --git a/rero_mef/agents/idref/mappings/v7/agents_idref/idref-agent-v0.0.1.json b/rero_mef/agents/idref/mappings/v7/agents_idref/idref-agent-v0.0.1.json index ba14084d..5ff29255 100644 --- a/rero_mef/agents/idref/mappings/v7/agents_idref/idref-agent-v0.0.1.json +++ b/rero_mef/agents/idref/mappings/v7/agents_idref/idref-agent-v0.0.1.json @@ -40,6 +40,9 @@ }, "value": { "type": "keyword" + }, + "_identifier": { + "type": "keyword" } } }, diff --git a/rero_mef/agents/mef/api.py b/rero_mef/agents/mef/api.py index 6467c740..c635f94b 100644 --- a/rero_mef/agents/mef/api.py +++ b/rero_mef/agents/mef/api.py @@ -23,27 +23,14 @@ from flask import current_app from invenio_search.api import RecordsSearch +from rero_mef.api import EntityIndexer +from rero_mef.api_mef import EntityMefRecord +from rero_mef.utils import get_entity_classes, progressbar + from .fetchers import mef_id_fetcher from .minters import mef_id_minter from .models import AgentMefMetadata from .providers import MefProvider -from ...api import ReroIndexer -from ...api_mef import EntityMefRecord -from ...utils import get_entity_classes, progressbar - - -def build_ref_string(agent_pid, agent): - """Build url for agent's api. - - :param agent_pid: Agent pid. - :param agent: Agent type. - :returns: URL to agent - """ - with current_app.app_context(): - return ( - f'{current_app.config.get("RERO_MEF_APP_BASE_URL")}' - f"/api/agents/{agent}/{agent_pid}" - ) class AgentMefSearch(RecordsSearch): @@ -207,7 +194,7 @@ def get_latest(cls, pid_type, pid): return {} -class AgentMefIndexer(ReroIndexer): +class AgentMefIndexer(EntityIndexer): """Agent MEF indexer.""" record_cls = AgentMefRecord diff --git a/rero_mef/agents/mef/mappings/v7/mef/mef-v0.0.1.json b/rero_mef/agents/mef/mappings/v7/mef/mef-v0.0.1.json index 959fb35e..49fa2024 100644 --- a/rero_mef/agents/mef/mappings/v7/mef/mef-v0.0.1.json +++ b/rero_mef/agents/mef/mappings/v7/mef/mef-v0.0.1.json @@ -82,6 +82,9 @@ }, "value": { "type": "keyword" + }, + "_identifier": { + "type": "keyword" } } }, @@ -187,6 +190,9 @@ }, "value": { "type": "keyword" + }, + "_identifier": { + "type": "keyword" } } }, @@ -292,6 +298,9 @@ }, "value": { "type": "keyword" + }, + "_identifier": { + "type": "keyword" } } }, diff --git a/rero_mef/agents/rero/mappings/v7/agents_rero/rero-agent-v0.0.1.json b/rero_mef/agents/rero/mappings/v7/agents_rero/rero-agent-v0.0.1.json index ba14084d..5ff29255 100644 --- a/rero_mef/agents/rero/mappings/v7/agents_rero/rero-agent-v0.0.1.json +++ b/rero_mef/agents/rero/mappings/v7/agents_rero/rero-agent-v0.0.1.json @@ -40,6 +40,9 @@ }, "value": { "type": "keyword" + }, + "_identifier": { + "type": "keyword" } } }, diff --git a/rero_mef/agents/utils.py b/rero_mef/agents/utils.py index 4ac4eeae..2b81c594 100644 --- a/rero_mef/agents/utils.py +++ b/rero_mef/agents/utils.py @@ -53,7 +53,7 @@ def write_mef_files(pid, data, pidstore, metadata, ids): return pid + 1 -def init_agent_pids(input_directory, verbose): +def init_entity_pids(input_directory, verbose): """Init agent data. :param input_directory: Input directory to look for agent pidstore files. @@ -62,14 +62,14 @@ def init_agent_pids(input_directory, verbose): VIAF agent pid names. """ pids = {} - viaf_agent_pid_names = {} + viaf_entity_pid_names = {} agents = current_app.config.get("RERO_AGENTS", []) for agent in agents: agent_classe = get_entity_class(agent) name = agent_classe.name try: if viaf_pid_name := agent_classe.viaf_pid_name: - viaf_agent_pid_names[viaf_pid_name] = name + viaf_entity_pid_names[viaf_pid_name] = name file_name = os.path.join(input_directory, f"{agent}_pidstore.csv") if os.path.exists(file_name): if verbose: @@ -84,7 +84,7 @@ def init_agent_pids(input_directory, verbose): pids[name][pid] = 1 except Exception as err: click.secho(err, fg="red") - return pids, viaf_agent_pid_names + return pids, viaf_entity_pid_names def create_mef_files( @@ -107,7 +107,7 @@ def create_mef_files( """ if verbose: click.echo("Start ***") - pids, viaf_agent_pid_names = init_agent_pids(input_directory, verbose) + pids, viaf_entity_pid_names = init_entity_pids(input_directory, verbose) mef_pid = 1 corresponding_data = {} @@ -135,13 +135,13 @@ def create_mef_files( viaf_data = json.loads(line.split("\t")[3]) viaf_pid = viaf_data["pid"] corresponding_data = {"pid": str(mef_pid), "$schema": schema} - for viaf_pid_name, name in viaf_agent_pid_names.items(): - agent_pid = viaf_data.get(viaf_pid_name) - if agent_pid and pids.get(name, {}).get(agent_pid): + for viaf_pid_name, name in viaf_entity_pid_names.items(): + entity_pid = viaf_data.get(viaf_pid_name) + if entity_pid and pids.get(name, {}).get(entity_pid): corresponding_data["viaf_pid"] = viaf_pid - pids[name].pop(agent_pid) + pids[name].pop(entity_pid) corresponding_data[name] = { - "$ref": f"{base_url}/api/{name}/{agent_pid}" + "$ref": f"{base_url}/api/{name}/{entity_pid}" } if corresponding_data.get("viaf_pid"): # Write MEF with VIAF to file diff --git a/rero_mef/agents/viaf/api.py b/rero_mef/agents/viaf/api.py index a1dab8d7..b5cd38af 100644 --- a/rero_mef/agents/viaf/api.py +++ b/rero_mef/agents/viaf/api.py @@ -25,14 +25,20 @@ from flask import current_app from invenio_search.api import RecordsSearch +from rero_mef.filter import exists_filter +from rero_mef.utils import ( + add_md5, + get_entity_class, + progressbar, + requests_retry_session, +) + +from .. import AgentGndRecord, AgentIdrefRecord, AgentMefRecord, AgentReroRecord +from ..api import Action, EntityIndexer, EntityRecord from .fetchers import viaf_id_fetcher from .minters import viaf_id_minter from .models import ViafMetadata from .providers import ViafProvider -from .. import AgentGndRecord, AgentIdrefRecord, AgentMefRecord, AgentReroRecord -from ..api import Action, ReroIndexer, ReroMefRecord -from ...filter import exists_filter -from ...utils import add_md5, get_entity_class, progressbar, requests_retry_session class AgentViafSearch(RecordsSearch): @@ -49,7 +55,7 @@ class Meta: default_filter = None -class AgentViafRecord(ReroMefRecord): +class AgentViafRecord(EntityRecord): """VIAF agent class.""" minter = viaf_id_minter @@ -222,13 +228,13 @@ def set_actions(actions, pid, source_name, action, mef_actions=None): actions = {} online = online or [] - viaf_agents_data = self.get_agents_pids() + viaf_agents_data = self.get_entities_pids() viaf_agents_pids = [data["pid"] for data in viaf_agents_data] # Delete old agent entries from MEF records old_agents = {} for mef_record in AgentMefRecord.get_mef(self.pid, self.name): changed = False - for agent in mef_record.get_agents_records(): + for agent in mef_record.get_entities_records(): if agent.pid not in viaf_agents_pids: mef_record.pop(agent.name) old_agents[agent.pid] = agent @@ -276,14 +282,14 @@ def set_actions(actions, pid, source_name, action, mef_actions=None): # Create Mef records for old agents if reindex: AgentMefRecord.flush_indexes() - for agent_pid, agent in old_agents.items(): + for entity_pid, agent in old_agents.items(): mef_record, mef_actions = agent.create_or_update_mef( dbcommit=dbcommit, reindex=reindex ) - actions.setdefault(agent_pid, {}) - actions[agent_pid].setdefault("MEF", {}) + actions.setdefault(entity_pid, {}) + actions[entity_pid].setdefault("MEF", {}) for pid, action in mef_actions.items(): - actions[agent_pid]["MEF"][pid] = action + actions[entity_pid]["MEF"][pid] = action return actions def reindex(self, forceindex=False): @@ -439,8 +445,8 @@ def delete(self, force=True, dbcommit=False, delindex=False): :param reindex: Reindex record. :returns: MEF actions message. """ - agents_records = self.get_agents_records() - mef_records = AgentMefRecord.get_mef(agent_pid=self.pid, agent_name=self.name) + agents_records = self.get_entities_records() + mef_records = AgentMefRecord.get_mef(entity_pid=self.pid, entity_name=self.name) # delete VIAF record result = super().delete(force=True, dbcommit=dbcommit, delindex=delindex) @@ -449,7 +455,7 @@ def delete(self, force=True, dbcommit=False, delindex=False): old_agent_records = {} for mef_record in mef_records: mef_actions[mef_record.pid] = {} - mef_agents_records = mef_record.get_agents_records() + mef_agents_records = mef_record.get_entities_records() if len(mef_agents_records): mef_actions[mef_record.pid][mef_agents_records[0].name] = { mef_agents_records[0].pid: Action.UPDATE @@ -474,7 +480,7 @@ def delete(self, force=True, dbcommit=False, delindex=False): AgentMefRecord.flush_indexes() return result, Action.DELETE, mef_actions - def get_agents_pids(self): + def get_entities_pids(self): """Get agent pids.""" agents = [] for source, record_class in self.sources_used.items(): @@ -484,10 +490,10 @@ def get_agents_pids(self): ) return agents - def get_agents_records(self, verbose=False): + def get_entities_records(self, verbose=False): """Get agent records.""" agent_records = [] - for agent in self.get_agents_pids(): + for agent in self.get_entities_pids(): record_class = agent["record_class"] if agent_record := record_class.get_record_by_pid(agent["pid"]): agent_records.append(agent_record) @@ -499,7 +505,7 @@ def get_agents_records(self, verbose=False): return agent_records @classmethod - def get_missing_agent_pids(cls, agent, verbose=False): + def get_missing_entity_pids(cls, agent, verbose=False): """Get all missing pids defined in VIAF. :param agent: Agent to search for missing pids. @@ -516,23 +522,23 @@ def get_missing_agent_pids(cls, agent, verbose=False): ) pids_db = set(progress) - agent_pid_name = f"{record_class.name}_pid" + entity_pid_name = f"{record_class.name}_pid" if verbose: - click.echo(f"Get pids from VIAF with {agent_pid_name} ...") + click.echo(f"Get pids from VIAF with {entity_pid_name} ...") query = AgentViafSearch().filter( - "bool", should=[Q("exists", field=agent_pid_name)] + "bool", should=[Q("exists", field=entity_pid_name)] ) progress = progressbar( - items=query.source(["pid", agent_pid_name]).scan(), + items=query.source(["pid", entity_pid_name]).scan(), length=query.count(), verbose=verbose, ) pids_viaf = [] for hit in progress: viaf_pid = hit.pid - agent_pid = hit.to_dict().get(agent_pid_name) - if agent_pid in pids_db: - pids_db.discard(agent_pid) + entity_pid = hit.to_dict().get(entity_pid_name) + if entity_pid in pids_db: + pids_db.discard(entity_pid) else: pids_viaf.append(viaf_pid) return list(pids_db), pids_viaf @@ -572,7 +578,7 @@ def get_pids_with_multiple_viaf(cls, verbose=False): return cleaned_pids -class AgentViafIndexer(ReroIndexer): +class AgentViafIndexer(EntityIndexer): """Agent VIAF indexer.""" record_cls = AgentViafRecord diff --git a/rero_mef/alembic/af905fd19ea8_update_identifiedby.py b/rero_mef/alembic/af905fd19ea8_update_identifiedby.py new file mode 100644 index 00000000..dc628b3d --- /dev/null +++ b/rero_mef/alembic/af905fd19ea8_update_identifiedby.py @@ -0,0 +1,103 @@ +# +# This file is part of Invenio. +# Copyright (C) 2024 RERO. +# +# Invenio is free software; you can redistribute it and/or modify it +# under the terms of the MIT License; see LICENSE file for more details. + +"""Update identifiedBy.""" + +from logging import getLogger + +from rero_mef.concepts import ConceptIdrefRecord, ConceptIdrefSearch +from rero_mef.places import PlaceIdrefRecord, PlaceIdrefSearch +from rero_mef.utils import progressbar + +# revision identifiers, used by Alembic. +revision = "af905fd19ea8" +down_revision = "28982ef7ce63" +branch_labels = () +depends_on = None + +LOGGER = getLogger("alembic") + + +def upgrade(): + """Upgrade database. + + Update identifiedBy in closeMatch to list. + """ + for record_type in [ + {"search_cls": ConceptIdrefSearch, "record_cls": ConceptIdrefRecord}, + {"search_cls": PlaceIdrefSearch, "record_cls": PlaceIdrefRecord}, + ]: + query = record_type["search_cls"]().filter( + "exists", field="closeMatch.identifiedBy" + ) + pids = [hit.pid for hit in query.source("pid").scan()] + name = record_type["search_cls"].Meta.index + LOGGER.info(f"Change closeMatch.identifiedBy to list {name}: {len(pids)}") + progress_bar = progressbar( + items=pids, + length=len(pids), + verbose=True, + ) + for pid in progress_bar: + if record := record_type["record_cls"].get_record_by_pid(pid): + new_close_matchs = [] + for close_match in record.get("closeMatch", []): + new_close_matchs.append(close_match) + if ( + ifidentified_by := close_match.get("identifiedBy") + ) and not isinstance(ifidentified_by, list): + new_close_matchs[-1]["identifiedBy"] = [ifidentified_by] + record["closeMatch"] = new_close_matchs + record.update(data=record, dbcommit=True, reindex=True) + + query = record_type["search_cls"]().filter("exists", field="identifiedBy") + identified_by_pids = [ + hit.pid for hit in query.source("pid").scan() if hit.pid not in pids + ] + LOGGER.info(f"Reindex identifiedBy {name}: {len(identified_by_pids)}") + progress_bar = progressbar( + items=identified_by_pids, + length=len(identified_by_pids), + verbose=True, + ) + for pid in progress_bar: + if record := record_type["record_cls"].get_record_by_pid(pid): + record.reindex() + + +def downgrade(): + """Downgrade database. + + Update identifiedBy in closeMatch to object. + """ + for record_type in [ + {"search_cls": ConceptIdrefSearch, "record_cls": ConceptIdrefRecord}, + {"search_cls": PlaceIdrefSearch, "record_cls": PlaceIdrefRecord}, + ]: + query = record_type["search_cls"]().filter( + "exists", field="closeMatch.identifiedBy" + ) + pids = [hit.pid for hit in query.source("pid").scan()] + name = record_type["search_cls"].Meta.index + LOGGER.info(f"Change identifiedBy to object {name}: {query.count()}") + + progress_bar = progressbar( + items=pids, + length=query.count(), + verbose=True, + ) + for pid in progress_bar: + if record := record_type["record_cls"].get_record_by_pid(pid): + new_close_matchs = [] + for close_match in record.get("closeMatch", []): + new_close_matchs.append(close_match) + if ( + ifidentified_by := close_match.get("identifiedBy") + ) and isinstance(ifidentified_by, list): + new_close_matchs[-1]["identifiedBy"] = ifidentified_by[0] + record["closeMatch"] = new_close_matchs + record.update(data=record, dbcommit=True, reindex=True) diff --git a/rero_mef/api.py b/rero_mef/api.py index 96cd5dc8..0349be3a 100644 --- a/rero_mef/api.py +++ b/rero_mef/api.py @@ -36,13 +36,21 @@ from sqlalchemy.exc import OperationalError from sqlalchemy.orm.exc import NoResultFound -from rero_mef.utils import get_entity_class +from rero_mef.utils import build_ref_string, get_entity_class from .utils import add_md5, add_schema +RERO_ILS_ENTITY_TYPES = { + "bf:Person": "agents", + "bf:Organisation": "agents", + "bf:Topic": "concepts", + "bf:Temporal": "concepts", + "bf:Place": "places", +} + class Action(Enum): - """Class holding all availabe agent record creation actions.""" + """Class holding all available entities record creation actions.""" CREATE = "create" UPDATE = "update" @@ -51,14 +59,14 @@ class Action(Enum): DISCARD = "discard" DELETE = "delete" ALREADY_DELETED = "already deleted" - DELETE_AGENT = "delete agent" + DELETE_ENTITY = "delete entity" VALIDATION_ERROR = "validation error" ERROR = "error" NOT_ONLINE = "not online" NOT_FOUND = "not found" -class ReroMefRecordError: +class EntityRecordError: """Base class for errors in the Record class.""" class Deleted(Exception): @@ -83,7 +91,7 @@ class DataMissing(Exception): """Data missing in record.""" -class ReroMefRecord(Record): +class EntityRecord(Record): """Entity Record class.""" minter = None @@ -138,7 +146,7 @@ def create_or_update( test_md5=False, ): """Create or update agent record.""" - agent_action = None + action = Action.ERROR return_record = data pid = data.get("pid") @@ -160,16 +168,15 @@ def create_or_update( # dict merging, `original_data` values # will be override by `data` values data = {**original_data, **data} - if test_md5: - return_record, agent_action = agent_record.update_md5_changed( + return_record, action = agent_record.update_md5_changed( data=data, dbcommit=dbcommit, reindex=reindex ) else: return_record = agent_record.replace( data=data, dbcommit=dbcommit, reindex=reindex ) - agent_action = Action.UPDATE + action = Action.UPDATE else: try: return_record = cls.create( @@ -179,15 +186,15 @@ def create_or_update( dbcommit=dbcommit, reindex=reindex, ) - agent_action = Action.CREATE + action = Action.CREATE except Exception as err: current_app.logger.error( f"ERROR create_or_update {cls.name} " f'{data.get("pid")} {err}' ) - agent_action = Action.ERROR + action = Action.ERROR if reindex: cls.flush_indexes() - return return_record, agent_action + return return_record, action def delete(self, force=True, dbcommit=False, delindex=False): """Delete record and persistent identifier.""" @@ -242,7 +249,7 @@ def replace(self, data, commit=False, dbcommit=False, reindex=False): new_data = deepcopy(data) pid = new_data.get("pid") if not pid: - raise ReroMefRecordError.PidMissing(f"missing pid={self.pid}") + raise EntityRecordError.PidMissing(f"missing pid={self.pid}") if self.get("md5"): new_data = add_md5(new_data) self.clear() @@ -418,7 +425,7 @@ def get_indexer_class(cls): ) except Exception: # provide default indexer if no indexer is defined in config. - indexer = ReroIndexer + indexer = EntityIndexer current_app.logger.error(f"Get indexer class {cls.__name__}") return indexer @@ -457,7 +464,208 @@ def deleted(self): return self.get("deleted") -class ReroIndexer(RecordIndexer): +class ConceptPlaceRecord(EntityRecord): + """Mef concept place class.""" + + def get_association_record(self, association_cls, association_search): + """Get associated record. + + :params association_cls: Association class + :params association_search: Association search class. + :returns: Associated record. + """ + if association_identifier := self.association_identifier: + # Test if my identifier is unique + count = ( + self.search() + .filter("term", _association_identifier=association_identifier) + .count() + ) + if count > 1: + current_app.logger.error( + f"MULTIPLE IDENTIFIERS FOUND FOR: {self.name} {self.pid} " + f"| {association_identifier}" + ) + return + # Get associated record + query = association_search().filter( + "term", _association_identifier=association_identifier + ) + if query.count() > 1: + current_app.logger.error( + f"MULTIPLE ASSOCIATIONS IDENTIFIERS FOUND FOR: {self.name} {self.pid} " + f"| {association_identifier}" + ) + if query.count() == 1: + hit = next(query.source("pid").scan()) + return association_cls.get_record_by_pid(hit.pid) + + @property + def association_info(self): + """Get associated record. + + Has to be overloaded in concept/place class. + """ + raise NotImplementedError() + + def create_or_update_mef(self, dbcommit=False, reindex=False): + """Create or update MEF and VIAF record. + + :param dbcommit: Commit changes to DB. + :param reindex: Reindex record. + :returns: MEF record, MEF action + """ + + def mef_create(mef_cls, data, association_info, dbcommit, reindex): + """Crate MEF record.""" + mef_data = { + data.name: { + "$ref": build_ref_string( + entity_type=RERO_ILS_ENTITY_TYPES[data["type"]], + entity_name=data.name, + entity_pid=data.pid, + ) + }, + "type": data["type"], + } + if deleted := data.get("deleted"): + mef_data["deleted"] = deleted + if association_record := association_info.get("record"): + ref = build_ref_string( + entity_type=RERO_ILS_ENTITY_TYPES[association_record["type"]], + entity_name=association_record.name, + entity_pid=association_record.pid, + ) + mef_data[association_record.name] = {"$ref": ref} + + mef_record = mef_cls.create( + data=mef_data, + dbcommit=dbcommit, + reindex=reindex, + ) + return mef_record, {mef_record.pid: Action.CREATE} + + def get_mef_record(mef_cls, name, pid): + """Get MEF record.""" + mef_records = mef_cls.get_mef(entity_name=name, entity_pid=pid) + if len(mef_records) > 1: + mef_pids = [mef_record.pid for mef_record in mef_records] + current_app.logger.error( + f"MULTIPLE MEF FOUND FOR: {name} {pid} | mef: {', '.join(mef_pids)}" + ) + if len(mef_records) == 1: + return mef_records[0] + + association_info = self.association_info + # Get direct MEF record + mef_record = get_mef_record( + mef_cls=association_info["mef_cls"], name=self.name, pid=self.pid + ) + # Get associated MEF record + mef_associated_record = {} + if associated_record := association_info["record"]: + # Get MEF record for the associated record. + mef_associated_record = get_mef_record( + mef_cls=association_info["mef_cls"], + name=associated_record.name, + pid=associated_record.pid, + ) + new_mef_record = mef_record or mef_associated_record + + actions = {} + if not mef_record and not mef_associated_record: + mef_record, actions = mef_create( + mef_cls=association_info["mef_cls"], + data=self, + association_info=association_info, + dbcommit=dbcommit, + reindex=reindex, + ) + else: + mef_pids = mef_record.ref_pids if mef_record else {} + mef_association_pids = ( + mef_associated_record.ref_pids if mef_associated_record else {} + ) + association_name = association_info["record_cls"].name + mef_self_pid = mef_pids.get(self.name) + mef_self_association_pid = mef_association_pids.get(self.name) + mef_other_pid = mef_pids.get(association_name) + mef_other_association_pid = mef_association_pids.get(association_name) + + # print( + # "------->", + # self.name, + # mef_self_pid, + # mef_self_association_pid, + # "|", + # association_name, + # mef_other_pid, + # mef_other_association_pid, + # ) + + # New ref + if not new_mef_record.get(self.name): + # Add new ref + new_mef_record[self.name] = { + "$ref": build_ref_string( + entity_type=RERO_ILS_ENTITY_TYPES[self["type"]], + entity_name=self.name, + entity_pid=self.pid, + ) + } + if ( + not mef_self_association_pid + and not mef_other_association_pid + and mef_other_pid + ): + # Delete associated ref from MEF an create a new one + new_mef_record.pop(association_name) + if association_record := association_info[ + "record_cls" + ].get_record_by_pid(mef_other_pid): + _, action = mef_create( + mef_cls=association_info["mef_cls"], + data=association_record, + association_info={}, + dbcommit=dbcommit, + reindex=reindex, + ) + actions |= action + if ( + mef_self_pid + and not mef_self_association_pid + and not mef_other_pid + and mef_other_association_pid + ): + # Delete entity from old MEF and add it to new MEF + ref = mef_associated_record.pop(association_name) + associated_mef_record = mef_associated_record.replace( + data=mef_associated_record, dbcommit=dbcommit, reindex=reindex + ) + actions[associated_mef_record.pid] = Action.DELETE_ENTITY + new_mef_record[association_name] = ref + + mef_record = new_mef_record.replace( + data=new_mef_record, dbcommit=dbcommit, reindex=reindex + ) + actions[mef_record.pid] = Action.UPDATE + + association_info["mef_cls"].flush_indexes() + return mef_record, actions + + @classmethod + def get_online_record(cls, id_, debug=False): + """Get online Record. + + :param id_: Id of online record. + :param debug: Debug print. + :returns: record or None + Has to be overloaded in concept/place class. + """ + raise NotImplementedError() + + +class EntityIndexer(RecordIndexer): """Indexing class for mef.""" def bulk_index(self, record_id_iterator, index=None, doc_type=None): diff --git a/rero_mef/api_mef.py b/rero_mef/api_mef.py index 94f6c6a7..459e7fc2 100644 --- a/rero_mef/api_mef.py +++ b/rero_mef/api_mef.py @@ -26,12 +26,12 @@ from elasticsearch_dsl import Q from flask import current_app -from .api import Action, ReroMefRecord +from .api import Action, EntityRecord from .utils import generate, get_entity_class, get_entity_search_class, progressbar -class EntityMefRecord(ReroMefRecord): - """Mef agent class.""" +class EntityMefRecord(EntityRecord): + """Mef entity class.""" minter = None fetcher = None @@ -75,20 +75,20 @@ def update(self, data, commit=False, dbcommit=False, reindex=False): ) @classmethod - def get_mef(cls, agent_pid, agent_name, pid_only=False): - """Get MEF record by agent pid value. + def get_mef(cls, entity_pid, entity_name, pid_only=False): + """Get MEF record by entity pid value. - :param agent_pid: Agent pid. - :param agent_name: Name of agent (pid_type). + :param entity_pid: Entity pid. + :param entity_name: Name of entity (pid_type). :param pid_only: return pid only or the complete record. :returns: pid or record """ - key = f"{agent_name}.pid" - if agent_name == "viaf": + key = f"{entity_name}.pid" + if entity_name == "viaf": key = "viaf_pid" query = ( cls.search() - .filter("term", **{key: agent_pid}) + .filter("term", **{key: entity_pid}) .params(preserve_order=True) .sort({"_updated": {"order": "desc"}}) ) @@ -99,19 +99,19 @@ def get_mef(cls, agent_pid, agent_name, pid_only=False): if len(mef_records) > 1: mef_pids = mef_records if pid_only else [mef.pid for mef in mef_records] current_app.logger.error( - f"MULTIPLE MEF FOUND FOR: {agent_name} {agent_pid} | " + f"MULTIPLE MEF FOUND FOR: {entity_name} {entity_pid} | " f'mef: {", ".join(mef_pids)}' ) return mef_records @classmethod - def get_all_pids_without_agents_and_viaf(cls): - """Get all pids for records without agents and VIAF pids. + def get_all_pids_without_entities_and_viaf(cls): + """Get all pids for records without entities and VIAF pids. - :returns: Generator of MEF pids without agent links and without VIAF. + :returns: Generator of MEF pids without entity links and without VIAF. """ must_not = [Q("exists", field="viaf_pid")] - must_not.extend(Q("exists", field=agent) for agent in cls.entities) + must_not.extend(Q("exists", field=entity) for entity in cls.entities) query = cls.search().filter("bool", must_not=must_not) for hit in query.source("pid").scan(): yield hit.pid @@ -130,7 +130,7 @@ def get_all_pids_without_viaf(cls): @classmethod def get_multiple_missing_pids(cls, record_types=None, verbose=False): - """Get agent pids with multiple MEF records. + """Get entity pids with multiple MEF records. :params record_types: Record types (pid_types). :param verbose: Verbose. @@ -141,20 +141,20 @@ def get_multiple_missing_pids(cls, record_types=None, verbose=False): multiple_pids = {} missing_pids = {} none_pids = {} - agents = {} + entities = {} sources = ["pid"] for record_type in record_types or []: try: - agent_class = get_entity_class(record_type) - agents[record_type] = { - "name": agent_class.name, + entity_class = get_entity_class(record_type) + entities[record_type] = { + "name": entity_class.name, "search": get_entity_search_class(record_type)(), } pids[record_type] = {} multiple_pids[record_type] = {} missing_pids[record_type] = [] none_pids[record_type] = [] - sources.append(f"{agent_class.name}.pid") + sources.append(f"{entity_class.name}.pid") except Exception: current_app.logger.error(f"Record type not found: {record_type}") @@ -173,18 +173,18 @@ def get_multiple_missing_pids(cls, record_types=None, verbose=False): for hit in progress: data = hit.to_dict() mef_pid = data["pid"] - for record_type, info in agents.items(): - if agent_data := data.get(info["name"]): - if agent_pid := agent_data.get("pid"): - pids[record_type].setdefault(agent_pid, []).append(mef_pid) - if len(pids[record_type][agent_pid]) > 1: - multiple_pids[record_type][agent_pid] = pids[record_type][ - agent_pid + for record_type, info in entities.items(): + if entity_data := data.get(info["name"]): + if entity_pid := entity_data.get("pid"): + pids[record_type].setdefault(entity_pid, []).append(mef_pid) + if len(pids[record_type][entity_pid]) > 1: + multiple_pids[record_type][entity_pid] = pids[record_type][ + entity_pid ] else: none_pids[record_type].append(mef_pid) - # Get all agents pids and compare with MEF pids - for record_type, info in agents.items(): + # Get all entities pids and compare with MEF pids + for record_type, info in entities.items(): click.echo(f'Get {info["name"]} ' f"MEF: {len(pids[record_type])}") progress = progressbar( items=info["search"] @@ -270,28 +270,37 @@ def delete_ref(self, record, dbcommit=False, reindex=False): self.flush_indexes() return self, action - def get_agents_pids(self): - """Get agents pids.""" - agents = [] - agent_types = current_app.config.get(f"RERO_{self.mef_type}", []) - for agent_type in agent_types: - record_class = get_entity_class(agent_type) + @property + def ref_pids(self): + """Get ref pids from $ref.""" + ref_pids = {} + for entity_name in self.entities: + if ref := self.get(entity_name): + ref_pids[entity_name] = ref["$ref"].split("/")[-1] + return ref_pids + + def get_entities_pids(self): + """Get entities pids.""" + entities = [] + entity_types = current_app.config.get(f"RERO_{self.mef_type}", []) + for entity_type in entity_types: + record_class = get_entity_class(entity_type) name = record_class.name if name in self: - agents.append( + entities.append( { "record_class": record_class, # Get pid from $ref URL "pid": self.get(name).get("$ref").split("/")[-1], } ) - return agents + return entities - def get_agents_records(self): - """Get agents records.""" - agents_records = [] - for agent in self.get_agents_pids(): - record_class = agent["record_class"] - if agent_record := record_class.get_record_by_pid(agent["pid"]): - agents_records.append(agent_record) - return agents_records + def get_entities_records(self): + """Get entities records.""" + entities_records = [] + for entity in self.get_entities_pids(): + record_class = entity["record_class"] + if entity_record := record_class.get_record_by_pid(entity["pid"]): + entities_records.append(entity_record) + return entities_records diff --git a/rero_mef/cli.py b/rero_mef/cli.py index b26e6a22..f6a9e72a 100644 --- a/rero_mef/cli.py +++ b/rero_mef/cli.py @@ -219,7 +219,7 @@ def delete(entity, source, lazy, enqueue, verbose): def marc_to_json(entity, marc_file, json_file, error_file, verbose): """Entity MARC to JSON. - :param entity: entity [aidref, aggnd, agrero, corero]. + :param entity: entity [aidref, aggnd, agrero, coidref, cognd, corero, plidref, plgnd]. :param marc_file: MARC input file. :param json_file: JSON output file. :param verbose: Verbose. @@ -555,8 +555,11 @@ def get_pid_data(line): } compair_data = {} if sqlite_dict: - compair_data = SqliteDict(sqlite_dict, autocommit=True, outer_stack=False) - compair_data.clear() + compair_data = SqliteDict( + sqlite_dict, autocommit=False, outer_stack=False, journal_mode="OFF" + ) + compair_data.clear() + compair_data.commit() if csv_metadata_file_compair: length = number_records_in_file(csv_metadata_file_compair, "csv") counts["compair"] = length @@ -567,9 +570,13 @@ def get_pid_data(line): label=f"Loading: {compair}", verbose=True, ) - for metadata_line in progress_bar: + for idx, metadata_line in enumerate(progress_bar, 1): pid, data = get_pid_data(metadata_line) compair_data[pid] = data + if sqlite_dict and idx % 1000 == 0: + compair_data.commit() + if sqlite_dict: + compair_data.commit() elif entity: entity_class = get_entity_class(entity) length = entity_class.count() @@ -598,6 +605,8 @@ def get_pid_data(line): for metadata_line in progress_bar: pid, data = get_pid_data(metadata_line) if existing_data := compair_data.pop(pid, None): + if sqlite_dict: + compair_data.commit() if existing_data != data: counts["changed"] += 1 if verbose: @@ -631,6 +640,8 @@ def get_pid_data(line): file_new.close() file_diff.close() file_delete.close() + if sqlite_dict: + compair_data.close() click.echo( f'Compair: {counts["compair"]} | ' f'Compair to: {counts["compair_to"]} || ' diff --git a/rero_mef/concepts/__init__.py b/rero_mef/concepts/__init__.py index f69957ab..96d68dc0 100644 --- a/rero_mef/concepts/__init__.py +++ b/rero_mef/concepts/__init__.py @@ -17,12 +17,16 @@ """Concepts.""" +from ..api import Action +from .gnd.api import ConceptGndIndexer, ConceptGndRecord, ConceptGndSearch from .idref.api import ConceptIdrefIndexer, ConceptIdrefRecord, ConceptIdrefSearch from .mef.api import ConceptMefIndexer, ConceptMefRecord, ConceptMefSearch from .rero.api import ConceptReroIndexer, ConceptReroRecord, ConceptReroSearch -from ..api import Action __all__ = ( + "ConceptGndIndexer", + "ConceptGndRecord", + "ConceptGndSearch", "ConceptMefIndexer", "ConceptMefRecord", "ConceptMefSearch", diff --git a/rero_mef/concepts/api.py b/rero_mef/concepts/api.py index 9de06396..6cb77d2f 100644 --- a/rero_mef/concepts/api.py +++ b/rero_mef/concepts/api.py @@ -16,12 +16,10 @@ # along with this program. If not, see . """API for manipulating records.""" -from rero_mef.concepts.mef.api import build_ref_string +from ..api import ConceptPlaceRecord, EntityIndexer -from ..api import Action, ReroIndexer, ReroMefRecord - -class ConceptRecord(ReroMefRecord): +class ConceptRecord(ConceptPlaceRecord): """Concept record class.""" name = None @@ -56,50 +54,10 @@ def delete(self, force=False, dbcommit=False, delindex=False): mef_record.delete_ref(self, dbcommit=dbcommit, reindex=delindex) return super().delete(force=force, dbcommit=dbcommit, delindex=delindex) - def create_or_update_mef(self, dbcommit=False, reindex=False): - """Create or update MEF and VIAF record. - - :param dbcommit: Commit changes to DB. - :param reindex: Reindex record. - :returns: MEF record, MEF action - """ - from rero_mef.concepts import ConceptMefRecord - - mef_data = {} - if mef_records := ConceptMefRecord.get_mef(self.pid, self.name): - mef_data = mef_records[0] - - ref_string = build_ref_string(concept=self.name, concept_pid=self.pid) - mef_data[self.name] = {"$ref": ref_string} - - if mef_records: - mef_action = Action.UPDATE - mef_record = mef_data.replace( - data=mef_data, dbcommit=dbcommit, reindex=reindex - ) - else: - if self.deleted and not mef_data.get("deleted"): - mef_data["deleted"] = self.deleted - mef_action = Action.CREATE - mef_record = ConceptMefRecord.create( - data=mef_data, - dbcommit=dbcommit, - reindex=reindex, - ) - if reindex: - ConceptMefRecord.flush_indexes() - return mef_record, {mef_record.pid: mef_action} - - @classmethod - def get_online_record(cls, id_, debug=False): - """Get online Record. - - :param id_: Id of online record. - :param debug: Debug print. - :returns: record or None - Has to be overloaded in agent class. - """ - raise NotImplementedError() + @property + def ref_identifier(self): + """Get ref identifier.""" + return f"bf:Nbn|(BNF){self.frbnf_pid}" def reindex(self, forceindex=False): """Reindex record.""" @@ -112,5 +70,5 @@ def reindex(self, forceindex=False): return result -class ConceptIndexer(ReroIndexer): +class ConceptIndexer(EntityIndexer): """Indexing class for concepts.""" diff --git a/rero_mef/concepts/gnd/__init__.py b/rero_mef/concepts/gnd/__init__.py new file mode 100644 index 00000000..f8f7dab6 --- /dev/null +++ b/rero_mef/concepts/gnd/__init__.py @@ -0,0 +1,18 @@ +# -*- coding: utf-8 -*- +# +# RERO MEF +# Copyright (C) 2024 RERO +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, version 3 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . + +"""Gnd.""" diff --git a/rero_mef/concepts/gnd/api.py b/rero_mef/concepts/gnd/api.py new file mode 100644 index 00000000..8c9a6e20 --- /dev/null +++ b/rero_mef/concepts/gnd/api.py @@ -0,0 +1,119 @@ +# -*- coding: utf-8 -*- +# +# RERO MEF +# Copyright (C) 2024 RERO +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, version 3 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . + +"""API for manipulating Gnd agent.""" + +from flask import current_app +from invenio_search.api import RecordsSearch + +from ..api import ConceptIndexer, ConceptRecord +from .fetchers import gnd_id_fetcher +from .minters import gnd_id_minter +from .models import ConceptGndMetadata +from .providers import ConceptGndProvider + + +class ConceptGndSearch(RecordsSearch): + """RecordsSearch.""" + + class Meta: + """Search only on index.""" + + index = "concepts_gnd" + doc_types = None + fields = ("*",) + facets = {} + + default_filter = None + + +class ConceptGndRecord(ConceptRecord): + """Concepts Authority class.""" + + minter = gnd_id_minter + fetcher = gnd_id_fetcher + provider = ConceptGndProvider + name = "gnd" + viaf_source_code = "RAMEAU" + pid_type = "concept_gnd_pid" + model_cls = ConceptGndMetadata + search = ConceptGndSearch + + @classmethod + def get_online_record(cls, id_, debug=False): + """Get online Record. + + :param id_: Id of online record. + :param debug: Debug print. + :returns: record or None + """ + from .tasks import gnd_get_record + + return gnd_get_record(id_=id_, debug=debug) + + @property + def association_identifier(self): + """Get associated identifier.""" + for match_type, max_count in current_app.config.get( + "RERO_MEF_PLACES_GND_MATCHES", {} + ).items(): + matches = self.get(match_type, []) + if len(matches) <= max_count: + for match in matches: + for identified_by in match.get("identifiedBy", []): + if ( + identified_by.get("source") == "BNF" + and identified_by.get("type") == "bf:Nbn" + and identified_by.get("value", "").startswith("FRBNF") + ): + return identified_by.get("value") + + @property + def association_info(self): + """Get associated record.""" + from rero_mef.concepts import ( + ConceptIdrefRecord, + ConceptIdrefSearch, + ConceptMefRecord, + ) + + ConceptIdrefRecord.flush_indexes() + return { + "identifier": self.association_identifier, + "record": self.get_association_record( + association_cls=ConceptIdrefRecord, + association_search=ConceptIdrefSearch, + ), + "record_cls": ConceptIdrefRecord, + "search_cls": ConceptIdrefSearch, + "mef_cls": ConceptMefRecord, + } + + +class ConceptGndIndexer(ConceptIndexer): + """Concept GND indexer.""" + + record_cls = ConceptGndRecord + + def bulk_index(self, record_id_iterator): + """Bulk index records. + + :param record_id_iterator: Iterator yielding record UUIDs. + """ + super().bulk_index( + record_id_iterator, index=ConceptGndSearch.Meta.index, doc_type="cognd" + ) diff --git a/rero_mef/concepts/gnd/fetchers.py b/rero_mef/concepts/gnd/fetchers.py new file mode 100644 index 00000000..ac491a7d --- /dev/null +++ b/rero_mef/concepts/gnd/fetchers.py @@ -0,0 +1,28 @@ +# -*- coding: utf-8 -*- +# +# RERO MEF +# Copyright (C) 2024 RERO +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, version 3 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . + +"""Persistent identifier fetchers.""" + + +from __future__ import absolute_import, print_function + +from functools import partial + +from ...fetchers import id_fetcher +from .providers import ConceptGndProvider + +gnd_id_fetcher = partial(id_fetcher, provider=ConceptGndProvider) diff --git a/rero_mef/concepts/gnd/jsonresolvers/__init__.py b/rero_mef/concepts/gnd/jsonresolvers/__init__.py new file mode 100644 index 00000000..003f2c5b --- /dev/null +++ b/rero_mef/concepts/gnd/jsonresolvers/__init__.py @@ -0,0 +1,18 @@ +# -*- coding: utf-8 -*- +# +# RERO MEF +# Copyright (C) 2024 RERO +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, version 3 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . + +"""JSON resolvers.""" diff --git a/rero_mef/concepts/gnd/jsonresolvers/gnd_resolver.py b/rero_mef/concepts/gnd/jsonresolvers/gnd_resolver.py new file mode 100644 index 00000000..644730c0 --- /dev/null +++ b/rero_mef/concepts/gnd/jsonresolvers/gnd_resolver.py @@ -0,0 +1,32 @@ +# -*- coding: utf-8 -*- +# +# RERO MEF +# Copyright (C) 2024 RERO +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, version 3 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . + + +"""Json resolvers.""" + +from __future__ import absolute_import, print_function, unicode_literals + +import jsonresolver + +from ....utils import get_host, resolve_record +from ..api import ConceptGndRecord + + +@jsonresolver.route("/api/concepts/gnd/", host=get_host()) +def resolve_gnd(path): + """Resolve Concepts records.""" + return resolve_record(path, ConceptGndRecord) diff --git a/rero_mef/concepts/gnd/jsonschemas/__init__.py b/rero_mef/concepts/gnd/jsonschemas/__init__.py new file mode 100644 index 00000000..463cebdd --- /dev/null +++ b/rero_mef/concepts/gnd/jsonschemas/__init__.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# +# RERO MEF +# Copyright (C) 2024 RERO +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, version 3 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . + +"""JSON schemas.""" + +from __future__ import absolute_import, print_function diff --git a/rero_mef/concepts/gnd/jsonschemas/concepts_gnd/gnd-concept-v0.0.1.json b/rero_mef/concepts/gnd/jsonschemas/concepts_gnd/gnd-concept-v0.0.1.json new file mode 100644 index 00000000..6d659e06 --- /dev/null +++ b/rero_mef/concepts/gnd/jsonschemas/concepts_gnd/gnd-concept-v0.0.1.json @@ -0,0 +1,3 @@ +{ + "$ref": "https://mef.rero.ch/schemas/common/concept-v0.0.1.json" +} \ No newline at end of file diff --git a/rero_mef/concepts/gnd/mappings/__init__.py b/rero_mef/concepts/gnd/mappings/__init__.py new file mode 100644 index 00000000..83576f13 --- /dev/null +++ b/rero_mef/concepts/gnd/mappings/__init__.py @@ -0,0 +1,18 @@ +# -*- coding: utf-8 -*- +# +# RERO MEF +# Copyright (C) 2024 RERO +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, version 3 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . + +"""Elasticsearch mappings.""" diff --git a/rero_mef/concepts/gnd/mappings/v7/__init__.py b/rero_mef/concepts/gnd/mappings/v7/__init__.py new file mode 100644 index 00000000..83576f13 --- /dev/null +++ b/rero_mef/concepts/gnd/mappings/v7/__init__.py @@ -0,0 +1,18 @@ +# -*- coding: utf-8 -*- +# +# RERO MEF +# Copyright (C) 2024 RERO +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, version 3 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . + +"""Elasticsearch mappings.""" diff --git a/rero_mef/concepts/gnd/mappings/v7/concepts_gnd/gnd-concept-v0.0.1.json b/rero_mef/concepts/gnd/mappings/v7/concepts_gnd/gnd-concept-v0.0.1.json new file mode 100644 index 00000000..2b3d0acf --- /dev/null +++ b/rero_mef/concepts/gnd/mappings/v7/concepts_gnd/gnd-concept-v0.0.1.json @@ -0,0 +1,164 @@ +{ + "settings": { + "number_of_shards": 8, + "number_of_replicas": 2, + "max_result_window": 100000000 + }, + "mappings": { + "date_detection": false, + "numeric_detection": false, + "properties": { + "$schema": { + "type": "keyword" + }, + "pid": { + "type": "keyword" + }, + "type": { + "type": "keyword" + }, + "md5": { + "type": "keyword" + }, + "identifiedBy": { + "type": "object", + "properties": { + "type": { + "type": "keyword" + }, + "source": { + "type": "keyword" + }, + "value": { + "type": "keyword" + }, + "_identifier": { + "type": "keyword" + } + } + }, + "bnf_type": { + "type": "keyword" + }, + "_association_identifier": { + "type": "keyword" + }, + "authorized_access_point": { + "type": "text" + }, + "variant_access_point": { + "type": "text" + }, + "broader": { + "type": "object", + "properties": { + "authorized_access_point": { + "type": "text" + } + } + }, + "related": { + "type": "object", + "properties": { + "authorized_access_point": { + "type": "text" + } + } + }, + "narrower": { + "type": "object", + "properties": { + "authorized_access_point": { + "type": "text" + } + } + }, + "classification": { + "type": "object", + "properties": { + "type": { + "type": "keyword" + }, + "classificationPortion": { + "type": "keyword" + }, + "name": { + "type": "keyword" + } } + }, + "note": { + "type": "object", + "properties": { + "noteType": { + "type": "keyword" + }, + "label": { + "type": "text" + } + } + }, + "exactMatch": { + "type": "object", + "properties": { + "authorized_access_point": { + "type": "text" + }, + "source": { + "type": "keyword" + }, + "identifiedBy": { + "type": "object", + "properties": { + "type": { + "type": "keyword" + }, + "source": { + "type": "keyword" + }, + "value": { + "type": "keyword" + }, + "_identifier": { + "type": "keyword" + } + } + } + } + }, + "closeMatch": { + "type": "object", + "properties": { + "authorized_access_point": { + "type": "text" + }, + "source": { + "type": "keyword" + }, + "identifiedBy": { + "type": "object", + "properties": { + "type": { + "type": "keyword" + }, + "source": { + "type": "keyword" + }, + "value": { + "type": "keyword" + }, + "_identifier": { + "type": "keyword" + } + } + } + } + }, + "_created": { + "type": "date" + }, + "_updated": { + "type": "date" + } + } + } +} diff --git a/rero_mef/concepts/gnd/minters.py b/rero_mef/concepts/gnd/minters.py new file mode 100644 index 00000000..2600b033 --- /dev/null +++ b/rero_mef/concepts/gnd/minters.py @@ -0,0 +1,26 @@ +# -*- coding: utf-8 -*- +# +# RERO MEF +# Copyright (C) 2024 RERO +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, version 3 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +"""Identifier minters.""" + +from __future__ import absolute_import, print_function, unicode_literals + +from functools import partial + +from ...minters import id_minter +from .providers import ConceptGndProvider + +gnd_id_minter = partial(id_minter, provider=ConceptGndProvider, recid_field="pid") diff --git a/rero_mef/concepts/gnd/models.py b/rero_mef/concepts/gnd/models.py new file mode 100644 index 00000000..0ec13f20 --- /dev/null +++ b/rero_mef/concepts/gnd/models.py @@ -0,0 +1,42 @@ +# -*- coding: utf-8 -*- +# +# RERO MEF +# Copyright (C) 2024 RERO +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, version 3 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +"""Define relation between records and buckets.""" + +from __future__ import absolute_import + +from invenio_db import db +from invenio_pidstore.models import RecordIdentifier +from invenio_records.models import RecordMetadataBase + + +class ConceptGndIdentifier(RecordIdentifier): + """Sequence generator for concepts Authority identifiers.""" + + __tablename__ = "concept_gnd_id" + __mapper_args__ = {"concrete": True} + + recid = db.Column( + db.BigInteger().with_variant(db.Integer, "sqlite"), + primary_key=True, + autoincrement=True, + ) + + +class ConceptGndMetadata(db.Model, RecordMetadataBase): + """Represent a record metadata.""" + + __tablename__ = "concept_gnd_metadata" diff --git a/rero_mef/concepts/gnd/providers.py b/rero_mef/concepts/gnd/providers.py new file mode 100644 index 00000000..5abea183 --- /dev/null +++ b/rero_mef/concepts/gnd/providers.py @@ -0,0 +1,45 @@ +# -*- coding: utf-8 -*- +# +# RERO MEF +# Copyright (C) 2024 RERO +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, version 3 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . + +"""Identifier provider.""" + +from __future__ import absolute_import, print_function + +from invenio_pidstore.models import PIDStatus +from invenio_pidstore.providers.base import BaseProvider + +from .models import ConceptGndIdentifier + + +class ConceptGndProvider(BaseProvider): + """Concepts identifier provider.""" + + pid_type = "cognd" + """Type of persistent identifier.""" + + pid_identifier = ConceptGndIdentifier.__tablename__ + """Identifier for table name""" + + pid_provider = None + """Provider name. + + The provider name is not recorded in the PID since the provider does not + provide any additional features besides creation of Document ids. + """ + + default_status = PIDStatus.REGISTERED + """Concepts IDs are by default registered immediately.""" diff --git a/rero_mef/concepts/gnd/tasks.py b/rero_mef/concepts/gnd/tasks.py new file mode 100644 index 00000000..8ced409e --- /dev/null +++ b/rero_mef/concepts/gnd/tasks.py @@ -0,0 +1,134 @@ +# -*- coding: utf-8 -*- +# +# RERO MEF +# Copyright (C) 2024 RERO +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, version 3 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . + +"""Tasks used by RERO-MEF.""" + +import requests +from celery import shared_task +from flask import current_app +from pymarc.marcxml import parse_xml_to_array +from six import BytesIO + +from ...marctojson.do_gnd_concepts import Transformation +from ...utils import ( + MyOAIItemIterator, + SickleWithRetries, + oai_process_records_from_dates, + oai_save_records_from_dates, + requests_retry_session, +) +from .api import ConceptGndRecord + + +@shared_task +def process_records_from_dates( + from_date=None, + until_date=None, + ignore_deleted=False, + dbcommit=True, + reindex=True, + test_md5=True, + verbose=False, + debug=False, + viaf_online=False, + **kwargs, +): + """Harvest multiple records from an OAI repo. + + :param from_date: The lower bound date for the harvesting (optional). + :param until_date: The upper bound date for the harvesting (optional). + :param ignore_deleted: Ignore deleted records. + :param dbcommit: Commit changes to DB. + :param reindex: Reindex in ES. + :param test_md5: Test MD5 for changes. + :param verbose: Verbose print. + :param debug: Debug print. + :param viaf_online: Get also VIAF. + """ + # data on GND Servers starts on 2000-10-01 + return oai_process_records_from_dates( + name="concepts.gnd", + sickle=SickleWithRetries, + max_retries=current_app.config.get("RERO_OAI_RETRIES", 0), + oai_item_iterator=MyOAIItemIterator, + transformation=Transformation, + record_class=ConceptGndRecord, + days_spann=30, + from_date=from_date, + until_date=until_date, + ignore_deleted=ignore_deleted, + dbcommit=dbcommit, + reindex=reindex, + test_md5=test_md5, + verbose=verbose, + debug=debug, + viaf_online=viaf_online, + kwargs=kwargs, + ) + + +@shared_task +def save_records_from_dates(file_name, from_date=None, until_date=None, verbose=False): + """Harvest and save multiple records from an OAI repo. + + :param file_name: The name of the OAIHarvestConfig to use instead of passing + specific parameters. + :param from_date: The lower bound date for the harvesting (optional). + :param until_date: The upper bound date for the harvesting (optional). + """ + # data on IDREF Servers starts on 2000-10-01 + return oai_save_records_from_dates( + name="concepts.gnd", + file_name=file_name, + sickle=SickleWithRetries, + max_retries=current_app.config.get("RERO_OAI_RETRIES", 0), + oai_item_iterator=MyOAIItemIterator, + days_spann=30, + from_date=from_date, + until_date=until_date, + verbose=verbose, + ) + + +@shared_task +def gnd_get_record(id_, debug=False): + """Get a record from GND SRU repo. + + GND documentation: + https://www.dnb.de/DE/Service/Hilfe/Katalog/kataloghilfe.html?nn=587750#link + https://services.dnb.de/sru/authorities?version=1.1 + &operation=searchRetrieve&query=idn%3D007355440&recordSchema=MARC21-xml + """ + url = current_app.config["RERO_MEF_AGENTS_GND_GET_RECORD"].replace("{id}", id_) + trans_record = None + msg = f"SRU-agents.gnd get: {id_:<15} {url}" + try: + response = requests_retry_session().get(url) + status_code = response.status_code + if status_code == requests.codes.ok: + if records := parse_xml_to_array(BytesIO(response.content)): + trans_record = Transformation(records[0]).json + pid = trans_record.get("pid") + if id_ != pid: + return None, f"{msg} | PID changed: {id_} -> {pid}" + return trans_record, f"{msg} | OK" + return None, f"{msg} | No record" + return None, f"{msg} | HTTP Error: {status_code}" + except Exception as err: + if debug: + raise + return None, f"{msg} | Error: {err}" diff --git a/rero_mef/concepts/idref/api.py b/rero_mef/concepts/idref/api.py index 5be96720..202af2fd 100644 --- a/rero_mef/concepts/idref/api.py +++ b/rero_mef/concepts/idref/api.py @@ -17,6 +17,7 @@ """API for manipulating IdRef agent.""" +from flask import current_app from invenio_search.api import RecordsSearch from ..api import ConceptIndexer, ConceptRecord @@ -59,12 +60,47 @@ def get_online_record(cls, id_, debug=False): :param id_: Id of online record. :param debug: Debug print. :returns: record or None - Has to be overloaded in agent class. """ from .tasks import idref_get_record return idref_get_record(id_=id_, debug=debug) + @property + def association_identifier(self): + """Get associated identifier from identifiedBy.""" + if pids := [ + identified_by.get("value") + for identified_by in self.get("identifiedBy", []) + if identified_by.get("source") == "BNF" + and identified_by.get("value", "").startswith("FRBNF") + ]: + if len(pids) > 1: + current_app.logger.error( + f"MULTIPLE ASSOCIATIONS FOUND FOR: {self.name} {self.pid} | {', '.join(pids)}" + ) + if pids: + return pids[-1] + + @property + def association_info(self): + """Get associated record.""" + from rero_mef.concepts import ( + ConceptGndRecord, + ConceptGndSearch, + ConceptMefRecord, + ) + + ConceptGndRecord.flush_indexes() + return { + "identifier": self.association_identifier, + "record": self.get_association_record( + association_cls=ConceptGndRecord, association_search=ConceptGndSearch + ), + "record_cls": ConceptGndRecord, + "search_cls": ConceptGndSearch, + "mef_cls": ConceptMefRecord, + } + class ConceptIdrefIndexer(ConceptIndexer): """Concept IDREF indexer.""" diff --git a/rero_mef/concepts/idref/mappings/v7/concepts_idref/idref-concept-v0.0.1.json b/rero_mef/concepts/idref/mappings/v7/concepts_idref/idref-concept-v0.0.1.json index 5e18a444..2b3d0acf 100644 --- a/rero_mef/concepts/idref/mappings/v7/concepts_idref/idref-concept-v0.0.1.json +++ b/rero_mef/concepts/idref/mappings/v7/concepts_idref/idref-concept-v0.0.1.json @@ -31,12 +31,18 @@ }, "value": { "type": "keyword" + }, + "_identifier": { + "type": "keyword" } } }, "bnf_type": { "type": "keyword" }, + "_association_identifier": { + "type": "keyword" + }, "authorized_access_point": { "type": "text" }, @@ -91,6 +97,34 @@ } } }, + "exactMatch": { + "type": "object", + "properties": { + "authorized_access_point": { + "type": "text" + }, + "source": { + "type": "keyword" + }, + "identifiedBy": { + "type": "object", + "properties": { + "type": { + "type": "keyword" + }, + "source": { + "type": "keyword" + }, + "value": { + "type": "keyword" + }, + "_identifier": { + "type": "keyword" + } + } + } + } + }, "closeMatch": { "type": "object", "properties": { @@ -111,6 +145,9 @@ }, "value": { "type": "keyword" + }, + "_identifier": { + "type": "keyword" } } } diff --git a/rero_mef/concepts/listener.py b/rero_mef/concepts/listener.py new file mode 100644 index 00000000..5a46aa12 --- /dev/null +++ b/rero_mef/concepts/listener.py @@ -0,0 +1,53 @@ +# -*- coding: utf-8 -*- +# +# RERO MEF +# Copyright (C) 2021 RERO +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, version 3 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . + +"""Signals connector for Concepts.""" + + +from rero_mef.concepts import ConceptGndSearch, ConceptIdrefSearch +from rero_mef.utils import make_identifier + + +def enrich_concept_data( + sender, + json=None, + record=None, + index=None, + doc_type=None, + arguments=None, + **dummy_kwargs, +): + """Signal sent before a record is indexed. + + :param json: The dumped record dictionary which can be modified. + :param record: The record being indexed. + :param index: The index in which the record will be indexed. + :param doc_type: The doc_type for the record. + """ + index_name = index.split("-")[0] + if index_name in {ConceptGndSearch.Meta.index, ConceptIdrefSearch.Meta.index}: + for identified_by in json.get("identifiedBy", []): + identified_by["_identifier"] = make_identifier(identified_by) + for match_type in {"exactMatch", "closeMatch"}: + for match in json.get(match_type, []): + for identified_by in match.get("identifiedBy", []): + identified_by["_identifier"] = make_identifier(identified_by) + + if not json.get("deleted") and ( + association_identifier := record.association_identifier + ): + json["_association_identifier"] = association_identifier diff --git a/rero_mef/concepts/mef/api.py b/rero_mef/concepts/mef/api.py index b94e524e..464c67dd 100644 --- a/rero_mef/concepts/mef/api.py +++ b/rero_mef/concepts/mef/api.py @@ -22,27 +22,14 @@ from flask import current_app from invenio_search.api import RecordsSearch +from rero_mef.api import EntityIndexer +from rero_mef.api_mef import EntityMefRecord + +from ..utils import get_concept_classes from .fetchers import mef_id_fetcher from .minters import mef_id_minter from .models import ConceptMefMetadata from .providers import ConceptMefProvider -from ..utils import get_concept_classes -from ...api import ReroIndexer -from ...api_mef import EntityMefRecord - - -def build_ref_string(concept_pid, concept): - """Build url for concept's api. - - :param concept_pid: Pid of concept. - :param concept: Type of concept. - :returns: Reference string to record. - """ - with current_app.app_context(): - return ( - f'{current_app.config.get("RERO_MEF_APP_BASE_URL")}' - f"/api/concepts/{concept}/{concept_pid}" - ) class ConceptMefSearch(RecordsSearch): @@ -69,7 +56,7 @@ class ConceptMefRecord(EntityMefRecord): model_cls = ConceptMefMetadata search = ConceptMefSearch mef_type = "CONCEPTS" - entities = ["idref", "rero"] + entities = ["idref", "rero", "gnd"] @classmethod def _set_type(cls, data): @@ -193,7 +180,7 @@ def get_latest(cls, pid_type, pid): return {} -class ConceptMefIndexer(ReroIndexer): +class ConceptMefIndexer(EntityIndexer): """Concept MEF indexer.""" record_cls = ConceptMefRecord diff --git a/rero_mef/concepts/mef/jsonschemas/concepts_mef/mef-concept-v0.0.1.json b/rero_mef/concepts/mef/jsonschemas/concepts_mef/mef-concept-v0.0.1.json index a1402b79..1d741858 100644 --- a/rero_mef/concepts/mef/jsonschemas/concepts_mef/mef-concept-v0.0.1.json +++ b/rero_mef/concepts/mef/jsonschemas/concepts_mef/mef-concept-v0.0.1.json @@ -50,6 +50,17 @@ } } }, + "gnd": { + "title": "IdRGNDef concept ID", + "type": "object", + "properties": { + "$ref": { + "title": "ref", + "type": "string", + "pattern": "^https://mef.rero.ch/api/concepts/gnd/.*?$" + } + } + }, "deleted": { "title": "Deletion date", "type": "string", diff --git a/rero_mef/concepts/mef/mappings/v7/concepts_mef/mef-concept-v0.0.1.json b/rero_mef/concepts/mef/mappings/v7/concepts_mef/mef-concept-v0.0.1.json index 6c7bba43..d4c0181d 100644 --- a/rero_mef/concepts/mef/mappings/v7/concepts_mef/mef-concept-v0.0.1.json +++ b/rero_mef/concepts/mef/mappings/v7/concepts_mef/mef-concept-v0.0.1.json @@ -99,6 +99,34 @@ } } }, + "exactMatch": { + "type": "object", + "properties": { + "authorized_access_point": { + "type": "text" + }, + "source": { + "type": "keyword" + }, + "identifiedBy": { + "type": "object", + "properties": { + "type": { + "type": "keyword" + }, + "source": { + "type": "keyword" + }, + "value": { + "type": "keyword" + }, + "_identifier": { + "type": "keyword" + } + } + } + } + }, "closeMatch": { "type": "object", "properties": { @@ -119,6 +147,9 @@ }, "value": { "type": "keyword" + }, + "_identifier": { + "type": "keyword" } } } @@ -187,6 +218,34 @@ } } }, + "exactMatch": { + "type": "object", + "properties": { + "authorized_access_point": { + "type": "text" + }, + "source": { + "type": "keyword" + }, + "identifiedBy": { + "type": "object", + "properties": { + "type": { + "type": "keyword" + }, + "source": { + "type": "keyword" + }, + "value": { + "type": "keyword" + }, + "_identifier": { + "type": "keyword" + } + } + } + } + }, "closeMatch": { "type": "object", "properties": { @@ -207,6 +266,128 @@ }, "value": { "type": "keyword" + }, + "_identifier": { + "type": "keyword" + } + } + } + } + }, + "_created": { + "type": "date" + }, + "_updated": { + "type": "date" + } + } + }, + "gnd": { + "type": "object", + "properties": { + "$schema": { + "type": "keyword" + }, + "pid": { + "type": "keyword" + }, + "type": { + "type": "keyword" + }, + "md5": { + "type": "keyword" + }, + "bnf_type": { + "type": "keyword" + }, + "identifier": { + "type": "keyword" + }, + "authorized_access_point": { + "type": "text", + "copy_to": "autocomplete_name" + }, + "variant_access_point": { + "type": "text" + }, + "deleted": { + "type": "date" + }, + "related": { + "type": "object", + "properties": { + "authorized_access_point": { + "type": "text" + } + } + }, + "broader": { + "type": "object", + "properties": { + "authorized_access_point": { + "type": "text" + } + } + }, + "narrower": { + "type": "object", + "properties": { + "authorized_access_point": { + "type": "text" + } + } + }, + "exactMatch": { + "type": "object", + "properties": { + "authorized_access_point": { + "type": "text" + }, + "source": { + "type": "keyword" + }, + "identifiedBy": { + "type": "object", + "properties": { + "type": { + "type": "keyword" + }, + "source": { + "type": "keyword" + }, + "value": { + "type": "keyword" + }, + "_identifier": { + "type": "keyword" + } + } + } + } + }, + "closeMatch": { + "type": "object", + "properties": { + "authorized_access_point": { + "type": "text" + }, + "source": { + "type": "keyword" + }, + "identifiedBy": { + "type": "object", + "properties": { + "type": { + "type": "keyword" + }, + "source": { + "type": "keyword" + }, + "value": { + "type": "keyword" + }, + "_identifier": { + "type": "keyword" } } } diff --git a/rero_mef/concepts/mef/serializers.py b/rero_mef/concepts/mef/serializers.py index e1195bf1..bb7958b6 100644 --- a/rero_mef/concepts/mef/serializers.py +++ b/rero_mef/concepts/mef/serializers.py @@ -83,7 +83,7 @@ def serialize(self, pid, record, links_factory=None, **kwargs): concept_classes = get_entity_classes() for concept, concept_classe in concept_classes.items(): - if concept in ["corero", "cidref"]: + if concept in ["corero", "cidref", "cognd"]: local_link(concept, concept_classe.name, rec) return super(ReroMefSerializer, self).serialize( diff --git a/rero_mef/concepts/rero/api.py b/rero_mef/concepts/rero/api.py index 79b3cd07..4dfaaddf 100644 --- a/rero_mef/concepts/rero/api.py +++ b/rero_mef/concepts/rero/api.py @@ -19,11 +19,11 @@ from invenio_search.api import RecordsSearch +from ..api import ConceptIndexer, ConceptRecord from .fetchers import rero_id_fetcher from .minters import rero_id_minter from .models import ConceptReroMetadata from .providers import ConceptReroProvider -from ..api import ConceptIndexer, ConceptRecord class ConceptReroSearch(RecordsSearch): @@ -52,6 +52,23 @@ class ConceptReroRecord(ConceptRecord): model_cls = ConceptReroMetadata search = ConceptReroSearch + @property + def association_identifier(self): + """Get associated identifier from identifiedBy.""" + + @property + def association_info(self): + """Get associated record.""" + from rero_mef.concepts import ConceptMefRecord + + return { + "identifier": self.association_identifier, + "record": None, + "record_cls": None, + "search_cls": None, + "mef_cls": ConceptMefRecord, + } + class ConceptReroIndexer(ConceptIndexer): """Concept RERO indexer.""" diff --git a/rero_mef/concepts/rero/mappings/v7/concepts_rero/rero-concept-v0.0.1.json b/rero_mef/concepts/rero/mappings/v7/concepts_rero/rero-concept-v0.0.1.json index 5e18a444..c7ce41f8 100644 --- a/rero_mef/concepts/rero/mappings/v7/concepts_rero/rero-concept-v0.0.1.json +++ b/rero_mef/concepts/rero/mappings/v7/concepts_rero/rero-concept-v0.0.1.json @@ -31,9 +31,15 @@ }, "value": { "type": "keyword" + }, + "_identifier": { + "type": "keyword" } } }, + "_association_identifier": { + "type": "keyword" + }, "bnf_type": { "type": "keyword" }, @@ -91,6 +97,34 @@ } } }, + "exactMatch": { + "type": "object", + "properties": { + "authorized_access_point": { + "type": "text" + }, + "source": { + "type": "keyword" + }, + "identifiedBy": { + "type": "object", + "properties": { + "type": { + "type": "keyword" + }, + "source": { + "type": "keyword" + }, + "value": { + "type": "keyword" + }, + "_identifier": { + "type": "keyword" + } + } + } + } + }, "closeMatch": { "type": "object", "properties": { @@ -111,6 +145,9 @@ }, "value": { "type": "keyword" + }, + "_identifier": { + "type": "keyword" } } } diff --git a/rero_mef/config.py b/rero_mef/config.py index 01d321ca..d2c5fbcd 100644 --- a/rero_mef/config.py +++ b/rero_mef/config.py @@ -25,6 +25,7 @@ from __future__ import absolute_import, print_function +import sys from datetime import timedelta from invenio_records_rest.facets import terms_filter @@ -38,6 +39,7 @@ from .concepts.rero.models import ConceptReroIdentifier from .filter import exists_filter from .marctojson.do_gnd_agent import Transformation as AgentGndTransformation +from .marctojson.do_gnd_concepts import Transformation as ConceptGndTransformation from .marctojson.do_gnd_places import Transformation as PlaceGndTransformation from .marctojson.do_idref_agent import Transformation as AgentIdrefTransformation from .marctojson.do_idref_concepts import Transformation as ConceptIdrefTransformation @@ -140,12 +142,6 @@ "task": "invenio_accounts.tasks.clean_session_table", "schedule": timedelta(minutes=60), } - # We will harvest with a kubernetes cron job. - # 'idref-harvester': { - # 'task': 'rero_mef.agents.idref.tasks.process_records_from_dates', - # 'schedule': timedelta(minutes=360), - # 'kwargs': dict(name='idref'), - # } } CELERY_BROKER_HEARTBEAT = 0 INDEXER_BULK_REQUEST_TIMEOUT = 60 @@ -205,6 +201,8 @@ "agrero": AgentReroTransformation, "corero": ConceptReroTransformation, "cidref": ConceptIdrefTransformation, + "cognd": ConceptGndTransformation, + "pidref": PlaceIdrefTransformation, "pidref": PlaceIdrefTransformation, "plgnd": PlaceGndTransformation, } @@ -230,6 +228,7 @@ "?version=1.1&operation=searchRetrieve&query=idn%3D{id}" "&recordSchema=MARC21-xml" ) +RERO_MEF_PLACES_GND_MATCHES = {"exactMatch": sys.maxsize, "closeMatch": 1} SEARCH_CLIENT_CONFIG = dict( timeout=60, @@ -249,21 +248,14 @@ record_class="rero_mef.agents.mef.api:AgentMefRecord", search_index="mef", record_serializers={ - "application/json": ( - "rero_mef.agents.mef.serializers" ":json_agent_mef_response" - ), + "application/json": "rero_mef.agents.mef.serializers:json_agent_mef_response", }, search_serializers={ - "application/json": ( - "rero_mef.agents.mef.serializers" ":json_agent_mef_search" - ), + "application/json": "rero_mef.agents.mef.serializers:json_agent_mef_search", }, search_factory_imp="rero_mef.query:and_search_factory", list_route="/agents/mef/", - item_route=( - "agents//mef/' - ), + item_route="agents/mef/", default_media_type="application/json", max_result_window=MAX_RESULT_WINDOW, error_handlers={}, @@ -277,21 +269,16 @@ record_class="rero_mef.agents.viaf.api:AgentViafRecord", search_index="viaf", record_serializers={ - "application/json": ( - "rero_mef.agents.viaf.serializers" ":json_agent_viaf_response" - ), + "application/json": "rero_mef.agents.viaf.serializers" + ":json_agent_viaf_response", }, search_serializers={ - "application/json": ( - "rero_mef.agents.viaf.serializers" ":json_agent_viaf_search" - ), + "application/json": "rero_mef.agents.viaf.serializers" + ":json_agent_viaf_search", }, search_factory_imp="rero_mef.query:and_search_factory", list_route="/agents/viaf/", - item_route=( - "/agents/viaf/' - ), + item_route="/agents/viaf/", default_media_type="application/json", max_result_window=MAX_RESULT_WINDOW, error_handlers={}, @@ -305,17 +292,14 @@ record_class="rero_mef.agents.gnd.api:AgentGndRecord", search_index="agents_gnd", record_serializers={ - "application/json": ("rero_mef.agents.serializers" ":json_agent_response"), + "application/json": "rero_mef.agents.serializers:json_agent_response", }, search_serializers={ - "application/json": ("rero_mef.agents.serializers" ":json_agent_search"), + "application/json": "rero_mef.agents.serializers:json_agent_search", }, search_factory_imp="rero_mef.query:and_search_factory", list_route="/agents/gnd/", - item_route=( - "/agents/gnd/' - ), + item_route="/agents/gnd/", default_media_type="application/json", max_result_window=MAX_RESULT_WINDOW, error_handlers={}, @@ -329,17 +313,14 @@ record_class="rero_mef.agents.idref.api:AgentIdrefRecord", search_index="agents_idref", record_serializers={ - "application/json": ("rero_mef.agents.serializers" ":json_agent_response"), + "application/json": "rero_mef.agents.serializers:json_agent_response", }, search_serializers={ - "application/json": ("rero_mef.agents.serializers" ":json_agent_search"), + "application/json": "rero_mef.agents.serializers:json_agent_search", }, search_factory_imp="rero_mef.query:and_search_factory", list_route="/agents/idref/", - item_route=( - "/agents/idref/' - ), + item_route="/agents/idref/", default_media_type="application/json", max_result_window=MAX_RESULT_WINDOW, error_handlers={}, @@ -353,17 +334,14 @@ record_class="rero_mef.agents.rero.api:AgentReroRecord", search_index="agents_rero", record_serializers={ - "application/json": ("rero_mef.agents.serializers" ":json_agent_response"), + "application/json": "rero_mef.agents.serializers:json_agent_response", }, search_serializers={ - "application/json": ("rero_mef.agents.serializers" ":json_agent_search"), + "application/json": "rero_mef.agents.serializers:json_agent_search", }, search_factory_imp="rero_mef.query:and_search_factory", list_route="/agents/rero/", - item_route=( - "/agents/rero/' - ), + item_route="/agents/rero/", default_media_type="application/json", max_result_window=MAX_RESULT_WINDOW, error_handlers={}, @@ -377,22 +355,14 @@ record_class="rero_mef.concepts.mef.api:ConceptMefRecord", search_index="concepts_mef", record_serializers={ - "application/json": ( - "rero_mef.concepts.mef.serializers" ":json_concept_mef_response" - ), + "application/json": "rero_mef.concepts.mef.serializers:json_concept_mef_response", }, search_serializers={ - "application/json": ( - "rero_mef.concepts.mef.serializers" ":json_concept_mef_search" - ), + "application/json": "rero_mef.concepts.mef.serializers:json_concept_mef_search", }, search_factory_imp="rero_mef.query:and_search_factory", list_route="/concepts/mef/", - item_route=( - "/concepts/mef/" - ), + item_route="/concepts/mef/", default_media_type="application/json", max_result_window=MAX_RESULT_WINDOW, error_handlers={}, @@ -406,21 +376,14 @@ record_class="rero_mef.concepts.rero.api:ConceptReroRecord", search_index="concepts_rero", record_serializers={ - "application/json": ( - "rero_mef.concepts.serializers" ":json_concept_response" - ), + "application/json": "rero_mef.concepts.serializers:json_concept_response", }, search_serializers={ - "application/json": ( - "rero_mef.concepts.serializers" ":json_concept_search" - ), + "application/json": "rero_mef.concepts.serializers:json_concept_search", }, search_factory_imp="rero_mef.query:and_search_factory", list_route="/concepts/rero/", - item_route=( - "/concepts/rero/' - ), + item_route="/concepts/rero/", default_media_type="application/json", max_result_window=MAX_RESULT_WINDOW, error_handlers={}, @@ -434,25 +397,42 @@ record_class="rero_mef.concepts.idref.api:ConceptIdrefRecord", search_index="concepts_idref", record_serializers={ - "application/json": ( - "rero_mef.concepts.serializers" ":json_concept_response" - ), + "application/json": "rero_mef.concepts.serializers" + ":json_concept_response", }, search_serializers={ - "application/json": ( - "rero_mef.concepts.serializers" ":json_concept_search" - ), + "application/json": "rero_mef.concepts.serializers:json_concept_search", }, search_factory_imp="rero_mef.query:and_search_factory", list_route="/concepts/idref/", item_route=( - "/concepts/idref/' + "/concepts/idref/" ), default_media_type="application/json", max_result_window=MAX_RESULT_WINDOW, error_handlers={}, ), + cognd=dict( + pid_type="cognd", + pid_minter="concept_gnd_id", + pid_fetcher="concept_gnd_id", + search_class="rero_mef.concepts.gnd.api:ConceptGndSearch", + indexer_class="rero_mef.concepts.gnd.api:ConceptGndIndexer", + record_class="rero_mef.concepts.gnd.api:ConceptGndRecord", + search_index="concepts_gnd", + record_serializers={ + "application/json": "rero_mef.concepts.serializers:json_concept_response", + }, + search_serializers={ + "application/json": "rero_mef.concepts.serializers:json_concept_search", + }, + search_factory_imp="rero_mef.query:and_search_factory", + list_route="/concepts/gnd/", + item_route="/concepts/gnd/", + default_media_type="application/json", + max_result_window=MAX_RESULT_WINDOW, + error_handlers={}, + ), plmef=dict( pid_type="plmef", pid_minter="place_mef_id", @@ -462,22 +442,14 @@ record_class="rero_mef.places.mef.api:PlaceMefRecord", search_index="places_mef", record_serializers={ - "application/json": ( - "rero_mef.places.mef.serializers" ":json_place_mef_response" - ), + "application/json": "rero_mef.places.mef.serializers:json_place_mef_response", }, search_serializers={ - "application/json": ( - "rero_mef.places.mef.serializers" ":json_place_mef_search" - ), + "application/json": "rero_mef.places.mef.serializers:json_place_mef_search", }, search_factory_imp="rero_mef.query:and_search_factory", list_route="/places/mef/", - item_route=( - "/places/mef/" - ), + item_route="/places/mef/", default_media_type="application/json", max_result_window=MAX_RESULT_WINDOW, error_handlers={}, @@ -491,17 +463,14 @@ record_class="rero_mef.places.idref.api:PlaceIdrefRecord", search_index="places_idref", record_serializers={ - "application/json": ("rero_mef.places.serializers" ":json_place_response"), + "application/json": "rero_mef.places.serializers:json_place_response", }, search_serializers={ - "application/json": ("rero_mef.places.serializers" ":json_place_search"), + "application/json": "rero_mef.places.serializers:json_place_search", }, search_factory_imp="rero_mef.query:and_search_factory", list_route="/places/idref/", - item_route=( - "/places/idref/' - ), + item_route="/places/idref/", default_media_type="application/json", max_result_window=MAX_RESULT_WINDOW, error_handlers={}, @@ -515,17 +484,14 @@ record_class="rero_mef.places.gnd.api:PlaceGndRecord", search_index="places_gnd", record_serializers={ - "application/json": ("rero_mef.places.serializers" ":json_place_response"), + "application/json": "rero_mef.places.serializers:json_place_response", }, search_serializers={ - "application/json": ("rero_mef.places.serializers" ":json_place_search"), + "application/json": "rero_mef.places.serializers:json_place_search", }, search_factory_imp="rero_mef.query:and_search_factory", list_route="/places/gnd/", - item_route=( - "/places/gnd/' - ), + item_route="/places/gnd/", default_media_type="application/json", max_result_window=MAX_RESULT_WINDOW, error_handlers={}, @@ -534,7 +500,7 @@ RERO_AGENTS = ["aidref", "aggnd", "agrero"] -RERO_CONCEPTS = ["cidref", "corero"] +RERO_CONCEPTS = ["cidref", "corero", "cognd"] RERO_PLACES = ["pidref", "plgnd"] @@ -546,6 +512,7 @@ "plgnd": "/places_gnd/gnd-place-v0.0.1.json", "corero": "/concepts_rero/rero-concept-v0.0.1.json", "cidref": "/concepts_idref/idref-concept-v0.0.1.json", + "cognd": "/concepts_gnd/gnd-concept-v0.0.1.json", "comef": "/concepts_mef/mef-concept-v0.0.1.json", "aggnd": "/agents_gnd/gnd-agent-v0.0.1.json", "agrero": "/agents_rero/rero-agent-v0.0.1.json", @@ -631,6 +598,9 @@ ), deleted=dict(filter=dict(exists=dict(field="deleted"))), identifiedBy_source=dict(terms=dict(field="identifiedBy.source", size=30)), + association_identifier=dict( + terms=dict(field="_association_identifier", size=30) + ), ), filters=dict( type=terms_filter("type"), @@ -638,6 +608,7 @@ classificationPortion=terms_filter("classification.classificationPortion"), deleted=exists_filter("deleted"), identifiedBy_source=terms_filter("identifiedBy.source"), + association_identifier=terms_filter("_association_identifier"), ), ), concepts_idref=dict( @@ -649,6 +620,31 @@ ), deleted=dict(filter=dict(exists=dict(field="deleted"))), identifiedBy_source=dict(terms=dict(field="identifiedBy.source", size=30)), + association_identifier=dict( + terms=dict(field="_association_identifier", size=30) + ), + ), + filters=dict( + type=terms_filter("type"), + classification=terms_filter("classification.name"), + classificationPortion=terms_filter("classification.classificationPortion"), + deleted=exists_filter("deleted"), + identifiedBy_source=terms_filter("identifiedBy.source"), + association_identifier=terms_filter("_association_identifier"), + ), + ), + concepts_gnd=dict( + aggs=dict( + type=dict(terms=dict(field="type", size=30)), + classification=dict(terms=dict(field="classification.name", size=30)), + classificationPortion=dict( + terms=dict(field="classification.classificationPortion", size=30) + ), + deleted=dict(filter=dict(exists=dict(field="deleted"))), + identifiedBy_source=dict(terms=dict(field="identifiedBy.source", size=30)), + association_identifier=dict( + terms=dict(field="_association_identifier", size=30) + ), ), filters=dict( type=terms_filter("type"), @@ -656,6 +652,7 @@ classificationPortion=terms_filter("classification.classificationPortion"), deleted=exists_filter("deleted"), identifiedBy_source=terms_filter("identifiedBy.source"), + association_identifier=terms_filter("_association_identifier"), ), ), places_mef=dict( @@ -681,6 +678,9 @@ ), deleted=dict(filter=dict(exists=dict(field="deleted"))), identifiedBy_source=dict(terms=dict(field="identifiedBy.source", size=30)), + association_identifier=dict( + terms=dict(field="_association_identifier", size=30) + ), ), filters=dict( type=terms_filter("type"), @@ -688,6 +688,7 @@ classificationPortion=terms_filter("classification.classificationPortion"), deleted=exists_filter("deleted"), identifiedBy_source=terms_filter("identifiedBy.source"), + association_identifier=terms_filter("_association_identifier"), ), ), places_gnd=dict( @@ -699,6 +700,9 @@ ), deleted=dict(filter=dict(exists=dict(field="deleted"))), identifiedBy_source=dict(terms=dict(field="identifiedBy.source", size=30)), + association_identifier=dict( + terms=dict(field="_association_identifier", size=30) + ), ), filters=dict( type=terms_filter("type"), @@ -706,6 +710,7 @@ classificationPortion=terms_filter("classification.classificationPortion"), deleted=exists_filter("deleted"), identifiedBy_source=terms_filter("identifiedBy.source"), + association_identifier=terms_filter("_association_identifier"), ), ), ) diff --git a/rero_mef/ext.py b/rero_mef/ext.py index 316c297b..1e46fdae 100644 --- a/rero_mef/ext.py +++ b/rero_mef/ext.py @@ -19,6 +19,11 @@ from __future__ import absolute_import, print_function +from invenio_indexer.signals import before_record_index + +from rero_mef.concepts.listener import enrich_concept_data +from rero_mef.places.listener import enrich_place_data + class REROMEFAPP(object): """rero-mef extension.""" @@ -35,3 +40,5 @@ def init_app(self, app): def register_signals(self, app): """Register signals.""" + before_record_index.connect(enrich_concept_data, sender=app) + before_record_index.connect(enrich_place_data, sender=app) diff --git a/rero_mef/jsonschemas/common/agent-v0.0.1.json b/rero_mef/jsonschemas/common/agent-v0.0.1.json index f13fc9be..3adf4d99 100644 --- a/rero_mef/jsonschemas/common/agent-v0.0.1.json +++ b/rero_mef/jsonschemas/common/agent-v0.0.1.json @@ -73,33 +73,7 @@ "format": "uri" }, "identifiedBy": { - "title": "Identifier", - "type": "array", - "minItems": 1, - "items": { - "type": "object", - "required": [ - "type", - "value" - ], - "properties": { - "type": { - "enum": [ - "bf:Local", - "uri", - "bf:Nbn" - ] - }, - "source": { - "type": "string", - "minLength": 2 - }, - "value": { - "type": "string", - "minLength": 2 - } - } - } + "$ref": "https://mef.rero.ch/schemas/common/identified_by-v0.0.1.json#/identifiedBy" }, "date_of_birth": { "title": "Date of birth", diff --git a/rero_mef/jsonschemas/common/concept-v0.0.1.json b/rero_mef/jsonschemas/common/concept-v0.0.1.json index 1a218069..a24cb154 100644 --- a/rero_mef/jsonschemas/common/concept-v0.0.1.json +++ b/rero_mef/jsonschemas/common/concept-v0.0.1.json @@ -1,11 +1,12 @@ { "$schema": "http://json-schema.org/draft-04/schema#", - "title": "Schema for IdRef concept", + "title": "Schema for concepts", "type": "object", "required": [ "$schema", "pid", "type", + "identifier", "identifiedBy", "authorized_access_point" ], @@ -34,34 +35,14 @@ "type": "string", "minLength": 1 }, - "identifiedBy": { + "identifier": { "title": "Identifier", - "type": "array", - "minItems": 1, - "items": { - "type": "object", - "required": [ - "type", - "value" - ], - "properties": { - "type": { - "enum": [ - "bf:Local", - "uri", - "bf:Nbn" - ] - }, - "source": { - "type": "string", - "minLength": 2 - }, - "value": { - "type": "string", - "minLength": 2 - } - } - } + "description": "XXX (cf. RDA)", + "type": "string", + "format": "uri" + }, + "identifiedBy": { + "$ref": "https://mef.rero.ch/schemas/common/identified_by-v0.0.1.json#/identifiedBy" }, "bnf_type": { "title": "Genre or Form", @@ -209,6 +190,27 @@ } } }, + "exactMatch": { + "title": "Exact term other thesaurus", + "type": "array", + "minItems": 1, + "items": { + "type": "object", + "properties": { + "authorized_access_point": { + "type": "string", + "minLength": 1 + }, + "source": { + "type": "string", + "minLength": 1 + }, + "identifiedBy": { + "$ref": "https://mef.rero.ch/schemas/common/identified_by-v0.0.1.json#/identifiedBy" + } + } + } + }, "closeMatch": { "title": "Equivalent term other thesaurus", "type": "array", @@ -225,24 +227,7 @@ "minLength": 1 }, "identifiedBy": { - "title": "Identifier", - "properties": { - "type": { - "enum": [ - "bf:Local", - "uri", - "bf:Nbn" - ] - }, - "source": { - "type": "string", - "minLength": 1 - }, - "value": { - "type": "string", - "minLength": 1 - } - } + "$ref": "https://mef.rero.ch/schemas/common/identified_by-v0.0.1.json#/identifiedBy" } } } diff --git a/rero_mef/jsonschemas/common/identified_by-v0.0.1.json b/rero_mef/jsonschemas/common/identified_by-v0.0.1.json new file mode 100644 index 00000000..8592538e --- /dev/null +++ b/rero_mef/jsonschemas/common/identified_by-v0.0.1.json @@ -0,0 +1,31 @@ +{ + "identifiedBy": { + "title": "Identifier", + "type": "array", + "minItems": 1, + "items": { + "type": "object", + "required": [ + "type", + "value" + ], + "properties": { + "type": { + "enum": [ + "bf:Local", + "uri", + "bf:Nbn" + ] + }, + "source": { + "type": "string", + "minLength": 2 + }, + "value": { + "type": "string", + "minLength": 2 + } + } + } + } +} \ No newline at end of file diff --git a/rero_mef/jsonschemas/common/place-v0.0.1.json b/rero_mef/jsonschemas/common/place-v0.0.1.json index eaf69502..ad681888 100644 --- a/rero_mef/jsonschemas/common/place-v0.0.1.json +++ b/rero_mef/jsonschemas/common/place-v0.0.1.json @@ -6,6 +6,7 @@ "$schema", "pid", "type", + "identifier", "identifiedBy", "authorized_access_point" ], @@ -33,34 +34,14 @@ "type": "string", "minLength": 1 }, - "identifiedBy": { + "identifier": { "title": "Identifier", - "type": "array", - "minItems": 1, - "items": { - "type": "object", - "required": [ - "type", - "value" - ], - "properties": { - "type": { - "enum": [ - "bf:Local", - "uri", - "bf:Nbn" - ] - }, - "source": { - "type": "string", - "minLength": 2 - }, - "value": { - "type": "string", - "minLength": 1 - } - } - } + "description": "XXX (cf. RDA)", + "type": "string", + "format": "uri" + }, + "identifiedBy": { + "$ref": "https://mef.rero.ch/schemas/common/identified_by-v0.0.1.json#/identifiedBy" }, "bnf_type": { "title": "Genre or Form", @@ -208,6 +189,27 @@ } } }, + "exactMatch": { + "title": "Exact term other thesaurus", + "type": "array", + "minItems": 1, + "items": { + "type": "object", + "properties": { + "authorized_access_point": { + "type": "string", + "minLength": 1 + }, + "source": { + "type": "string", + "minLength": 1 + }, + "identifiedBy": { + "$ref": "https://mef.rero.ch/schemas/common/identified_by-v0.0.1.json#/identifiedBy" + } + } + } + }, "closeMatch": { "title": "Equivalent term other thesaurus", "type": "array", @@ -224,24 +226,7 @@ "minLength": 1 }, "identifiedBy": { - "title": "Identifier", - "properties": { - "type": { - "enum": [ - "bf:Local", - "uri", - "bf:Nbn" - ] - }, - "source": { - "type": "string", - "minLength": 1 - }, - "value": { - "type": "string", - "minLength": 2 - } - } + "$ref": "https://mef.rero.ch/schemas/common/identified_by-v0.0.1.json#/identifiedBy" } } } diff --git a/rero_mef/marctojson/do_gnd_agent.py b/rero_mef/marctojson/do_gnd_agent.py index c2509540..52f6cf78 100644 --- a/rero_mef/marctojson/do_gnd_agent.py +++ b/rero_mef/marctojson/do_gnd_agent.py @@ -77,7 +77,7 @@ def get_type(self): def _transform(self): """Call the transformation functions.""" record_type = self.get_type() - if record_type in ["bf:Person", "bf:Organisation"]: + if record_type in {"bf:Person", "bf:Organisation"}: if self.marc.get_fields("100", "110", "111"): for func in dir(self): if func.startswith("trans"): diff --git a/rero_mef/marctojson/do_gnd_concepts.py b/rero_mef/marctojson/do_gnd_concepts.py new file mode 100644 index 00000000..c0eee3b1 --- /dev/null +++ b/rero_mef/marctojson/do_gnd_concepts.py @@ -0,0 +1,312 @@ +# -*- coding: utf-8 -*- +# +# RERO MEF +# Copyright (C) 2024 RERO +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, version 3 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . + +"""Marctojsons transformer for GND records.""" +# https://www.dnb.de/EN/Professionell/Metadatendienste/Datenbezug/GND_Aenderungsdienst/gndAenderungsdienst_node.html + +import contextlib +from datetime import datetime, timezone + +from rero_mef.marctojson.helper import ( + build_string_from_field, + build_string_list_from_fields, + get_source_and_id, +) + +RECORD_TYPES = { + "p": "bf:Person", + "b": "bf:Organisation", + "f": "bf:Organisation", + "g": "bf:Place", + "s": "bf:Topic", + "u": "bf:Title", +} + + +class Transformation(object): + """Transformation MARC21 to JSON for GND autority concept.""" + + def __init__(self, marc, logger=None, verbose=False, transform=True): + """Constructor.""" + self.marc = marc + self.logger = logger + self.verbose = verbose + self.json_dict = {} + if transform: + self._transform() + + def _transform(self): + """Call the transformation functions.""" + for func in dir(self): + if func.startswith("trans"): + func = getattr(self, func) + func() + + @property + def json(self): + """Json data.""" + return self.json_dict or None + + def trans_gnd_deleted(self): + """Transformation deleted leader 5. + + $c: Redirect notification + $x: Redirect + $c: Deletion notification + $d: Deletion + + https://www.dnb.de/EN/Professionell/Metadatendienste/Datenbezug/ + GND_Aenderungsdienst/gndAenderungsdienst_node.html + """ + if self.logger and self.verbose: + self.logger.info("Call Function", "trans_gnd_deleted") + if self.marc.leader[5] in ["c", "d", "x"]: + self.json_dict["deleted"] = datetime.now(timezone.utc).isoformat() + + def trans_gnd_pid(self): + """Transformation pid from field 001.""" + if self.logger and self.verbose: + self.logger.info("Call Function", "trans_gnd_pid") + if field_001 := self.marc.get_fields("001"): + self.json_dict["pid"] = field_001[0].data + self.json_dict["type"] = "bf:Topic" + + def trans_gnd_identifier(self): + """Transformation identifier from field 024, 035.""" + if self.logger and self.verbose: + self.logger.info("Call Function", "trans_gnd_identifier") + fields_024 = self.marc.get_fields("024") + for field_024 in fields_024: + subfield_0 = field_024.get("0") + if isinstance(subfield_0, list): + subfield_0 = subfield_0[0] + subfield_2 = field_024.get("2") + if isinstance(subfield_2, list): + subfield_2 = subfield_2[0] + if subfield_0 and subfield_2: + self.json_dict.setdefault("identifiedBy", []).append( + { + "source": subfield_2.upper(), + "type": "uri", + "value": subfield_0, + } + ) + self.json_dict["identifier"] = subfield_0 + for field_035 in self.marc.get_fields("035"): + if field_035.get("a"): + subfield_a = field_035["a"] + if subfield_a.startswith("(DE-101)") or subfield_a.startswith( + "(DE-588)" + ): + self.json_dict.setdefault("identifiedBy", []).append( + { + "source": "GND", + "type": "bf:Nbn", + "value": subfield_a, + } + ) + + def trans_gnd_authorized_access_point(self): + """Transformation authorized_access_point 150.""" + if self.logger and self.verbose: + self.logger.info("Call Function", "trans_gnd_authorized_access_point") + tag = "150" + subfields = {"a": ", ", "g": " , ", "x": " - "} + tag_grouping = [ + { + "subtags": "g", + "start": " (", + "end": ")", + "delimiter": "", + "subdelimiter": ", ", + } + ] + try: + if authorized_ap := build_string_from_field( + field=self.marc[tag], subfields=subfields, tag_grouping=tag_grouping + ): + self.json_dict["authorized_access_point"] = authorized_ap + except Exception: + self.json_dict["authorized_access_point"] = f"TAG: {tag} NOT FOUND" + + def trans_gnd_variant_access_point(self): + """Transformation variant_access_point 450.""" + if self.logger and self.verbose: + self.logger.info("Call Function", "trans_gnd_variant_access_point") + tag = "450" + subfields = {"a": ", ", "g": " , "} + tag_grouping = [ + { + "subtags": "g", + "start": " (", + "end": ")", + "delimiter": "", + "subdelimiter": ", ", + } + ] + if variant_access_point := build_string_list_from_fields( + record=self.marc, tag=tag, subfields=subfields, tag_grouping=tag_grouping + ): + self.json_dict["variant_access_point"] = variant_access_point + + def trans_gnd_relation_pid(self): + """Transformation relation pids 682 $0.""" + if self.logger and self.verbose: + self.logger.info("Call Function", "trans_gnd_relation") + fields_682 = self.marc.get_fields("682") + for field_682 in fields_682: + if field_682.get("i") and field_682["i"] == "Umlenkung": + subfields_0 = field_682.get_subfields("0") + for subfield_0 in subfields_0: + if subfield_0.startswith("(DE-101)"): + self.json_dict["relation_pid"] = { + "value": subfield_0.replace("(DE-101)", ""), + "type": "redirect_to", + } + + def trans_gnd_relation(self): + """Transformation relation 550.""" + if self.logger and self.verbose: + self.logger.info("Call Function", "trans_gnd_relation") + relations = {} + for field_550 in self.marc.get_fields("550"): + authorized_aps = set() + with contextlib.suppress(Exception): + relation_type = "related" + if subfield_4 := field_550.get("4"): + if subfield_4 in ["nach", "obal", "obge", "obin"]: + relation_type = "broader" + elif subfield_4[0] in ["vorg"]: + relation_type = "narrower" + + subfields = {"a": ", ", "g": " , "} + tag_grouping = [ + { + "subtags": "g", + "start": " (", + "end": ")", + "delimiter": "", + "subdelimiter": ", ", + } + ] + if authorized_ap := build_string_from_field( + field=field_550, subfields=subfields, tag_grouping=tag_grouping + ): + relations.setdefault(relation_type, []) + if authorized_ap not in authorized_aps: + authorized_aps.add(authorized_ap) + relations[relation_type].append( + {"authorized_access_point": authorized_ap} + ) + for relation, value in relations.items(): + if value: + self.json_dict[relation] = value + + def trans_gnd_classification(self): + """Transformation classification from field 686.""" + if self.logger and self.verbose: + self.logger.info("Call Function", "trans_gnd_classification") + # TODO: find classification + + def trans_gnd_match(self): + """Transformation closeMatch and exactfrom field 750.""" + if self.logger and self.verbose: + self.logger.info("Call Function", "trans_gnd_match") + for field_750 in self.marc.get_fields("750"): + with contextlib.suppress(Exception): + match_type = None + subfield_i = field_750["i"] + if subfield_i == "Aequivalenz": + match_type = "closeMatch" + elif subfield_i == "exakte Aequivalenz": + match_type = "exactMatch" + if match_type: + subfields = { + "a": ", ", + "g": " , ", + "x": " - ", + "y": " - ", + "z": " - ", + } + tag_grouping = [ + { + "subtags": "g", + "start": " (", + "end": ")", + "delimiter": "", + "subdelimiter": ", ", + } + ] + if authorized_ap := build_string_from_field( + field=field_750, subfields=subfields, tag_grouping=tag_grouping + ): + match = { + "authorized_access_point": authorized_ap, + "source": "GND", + } + for subfield_0 in field_750.get_subfields("0"): + if subfield_0.startswith("http"): + match.setdefault("identifiedBy", []).append( + { + "type": "uri", + "value": subfield_0, + } + ) + else: + source, id_ = get_source_and_id(subfield_0) + if source: + match.setdefault("identifiedBy", []).append( + { + "source": source, + "type": "bf:Nbn", + "value": id_, + } + ) + self.json_dict.setdefault(match_type, []).append(match) + + def trans_gnd_note(self): + """Transformation notes from field. + + 670 $a - $u: dataSource + 677 $a: general + 678 $a: general + 680 $a: general + """ + if self.logger and self.verbose: + self.logger.info("Call Function", "trans_gnd_note") + notes = { + "dataSource": [], + "dataNotFound": [], + "general": [], + "seeReference": [], + } + for field in self.marc.get_fields("677", "678", "680"): + if field.get("a"): + notes["general"].append(field["a"].strip()) + if field.get("b"): + notes["general"].append(field["b"].strip()) + for field in self.marc.get_fields("670"): + if field.get("a") and field.get("u"): + fields_u = field.get("u") + if isinstance(fields_u, str): + fields_u = [fields_u] + info = f"{field['a'].strip()} - {', '.join(fields_u)}" + notes["dataSource"].append(info) + for note, value in notes.items(): + if value: + self.json_dict.setdefault("note", []) + self.json_dict["note"].append({"noteType": note, "label": value}) diff --git a/rero_mef/marctojson/do_gnd_places.py b/rero_mef/marctojson/do_gnd_places.py index b3259ee0..6e8d8556 100644 --- a/rero_mef/marctojson/do_gnd_places.py +++ b/rero_mef/marctojson/do_gnd_places.py @@ -24,6 +24,7 @@ from rero_mef.marctojson.helper import ( build_string_from_field, build_string_list_from_fields, + get_source_and_id, ) RECORD_TYPES = { @@ -37,7 +38,7 @@ class Transformation(object): - """Transformation MARC21 to JSON for GND autority person.""" + """Transformation MARC21 to JSON for GND autority place.""" def __init__(self, marc, logger=None, verbose=False, transform=True): """Constructor.""" @@ -67,7 +68,7 @@ def get_type(self): def _transform(self): """Call the transformation functions.""" record_type = self.get_type() - if record_type in ["bf:Place"]: + if record_type in {"bf:Place"}: for func in dir(self): if func.startswith("trans"): func = getattr(self, func) @@ -128,6 +129,7 @@ def trans_gnd_identifier(self): "value": subfield_0, } ) + self.json_dict["identifier"] = subfield_0 for field_035 in self.marc.get_fields("035"): if field_035.get("a"): subfield_a = field_035["a"] @@ -147,7 +149,7 @@ def trans_gnd_authorized_access_point(self): if self.logger and self.verbose: self.logger.info("Call Function", "trans_gnd_authorized_access_point") tag = "151" - subfields = {"a": ", ", "g": " , "} + subfields = {"a": ", ", "g": " , ", "x": " - ", "z": " - "} tag_grouping = [ { "subtags": "g", @@ -238,65 +240,68 @@ def trans_gnd_relation(self): self.json_dict[relation] = value def trans_gnd_classification(self): - """Transformation classification from field 550.""" + """Transformation classification from field 686.""" if self.logger and self.verbose: self.logger.info("Call Function", "trans_gnd_classification") - classifications = [] - for field_550 in self.marc.get_fields("550"): - if field_550.get("4"): - classification = { - "type": "bf:ClassificationDdc", - "classificationPortion": field_550["4"].strip(), - } - # TODO: find classification name in MARC21 - if field_550.get("a"): - classification["name"] = field_550["a"] - classifications.append(classification) - if classifications: - self.json_dict["classification"] = classifications + # TODO: find classification - def trans_gnd_close_match(self): - """Transformation closeMatch from field 751.""" + def trans_gnd_match(self): + """Transformation closeMatch and exactMatch field 751.""" if self.logger and self.verbose: - self.logger.info("Call Function", "trans_gnd_close_match") - close_matchs = [] + self.logger.info("Call Function", "trans_gnd_match") for field_751 in self.marc.get_fields("751"): with contextlib.suppress(Exception): - close_match = {} - subfields = {"a": ", ", "g": " , "} - tag_grouping = [ - { - "subtags": "g", - "start": " (", - "end": ")", - "delimiter": "", - "subdelimiter": ", ", - } - ] - authorized_ap = build_string_from_field( - field=field_751, subfields=subfields, tag_grouping=tag_grouping - ) - close_match = { - "authorized_access_point": authorized_ap, - "source": "GND", - } - with contextlib.suppress(Exception): - if field_751.get("0"): - source, value = field_751["0"].split(")") - close_match["identifiedBy"] = { - "type": "bf:Nbn", - "value": value, - "source": source.replace("(", ""), + match_type = None + subfield_i = field_751["i"] + if subfield_i == "Aequivalenz": + match_type = "closeMatch" + elif subfield_i == "exakte Aequivalenz": + match_type = "exactMatch" + if match_type: + subfields = {"a": ", ", "g": " , ", "x": " - ", "z": " - "} + tag_grouping = [ + { + "subtags": "g", + "start": " (", + "end": ")", + "delimiter": "", + "subdelimiter": ", ", + } + ] + if authorized_ap := build_string_from_field( + field=field_751, subfields=subfields, tag_grouping=tag_grouping + ): + match = { + "authorized_access_point": authorized_ap, + "source": "GND", } - close_matchs.append(close_match) - if close_matchs: - self.json_dict["closeMatch"] = close_matchs + for subfield_0 in field_751.get_subfields("0"): + if subfield_0.startswith("http"): + match.setdefault("identifiedBy", []).append( + { + "type": "uri", + "value": subfield_0, + } + ) + else: + source, id_ = get_source_and_id(subfield_0) + if source: + match.setdefault("identifiedBy", []).append( + { + "source": source, + "type": "bf:Nbn", + "value": id_, + } + ) + self.json_dict.setdefault(match_type, []).append(match) def trans_gnd_note(self): """Transformation notes from field. + 677 $a: general 678 $a: general - 670 $a - $u dataSource + 670 $a - $u: dataSource + 680 $a: general """ if self.logger and self.verbose: self.logger.info("Call Function", "trans_gnd_note") @@ -306,7 +311,7 @@ def trans_gnd_note(self): "general": [], "seeReference": [], } - for field in self.marc.get_fields("678"): + for field in self.marc.get_fields("677", "678", "680"): if field.get("a"): notes["general"].append(field["a"].strip()) if field.get("b"): diff --git a/rero_mef/marctojson/do_idref_concepts.py b/rero_mef/marctojson/do_idref_concepts.py index 1d1be9a4..1b96587d 100644 --- a/rero_mef/marctojson/do_idref_concepts.py +++ b/rero_mef/marctojson/do_idref_concepts.py @@ -89,14 +89,17 @@ def trans_idref_identifier(self): self.logger.info("Call Function", "trans_idref_identifier") identifiers = self.json_dict.get("identifiedBy", []) if field_003 := self.marc.get_fields("003"): - identifiers.append( - {"type": "uri", "value": field_003[0].data.strip(), "source": "IDREF"} - ) + uri = field_003[0].data.strip() + identifiers.append({"type": "uri", "value": uri, "source": "IDREF"}) + self.json_dict["identifier"] = uri + uris = {} for field_033 in self.marc.get_fields("033"): if field_033.get("2") and field_033["2"] == "BNF" and field_033.get("a"): - identifiers.append( - {"type": "uri", "value": field_033["a"].strip(), "source": "BNF"} - ) + date = int(date) if (date := field_033.get("d")) else 0 + uris[date] = field_033["a"].strip() + if uris: + latest = sorted(uris)[-1] + identifiers.append({"type": "uri", "value": uris[latest], "source": "BNF"}) if identifiers: self.json_dict["identifiedBy"] = identifiers @@ -104,6 +107,7 @@ def trans_idref_relation_pid(self): """Transformation old pids 035 $a $9 = sudoc.""" if self.logger and self.verbose: self.logger.info("Call Function", "trans_idref_relation_pid") + bnf_ids = {} for field_035 in self.marc.get_fields("035"): subfield_a = field_035.get("a") if isinstance(subfield_a, list): @@ -114,21 +118,34 @@ def trans_idref_relation_pid(self): subfield_9 = field_035.get("9") if isinstance(subfield_9, list): subfield_9 = subfield_9[0] + subfield_z = field_035.get("z") + if isinstance(subfield_z, list): + subfield_z = subfield_z[0] if subfield_a and subfield_9 == "sudoc": self.json_dict["relation_pid"] = { "value": field_035["a"], "type": "redirect_from", } elif subfield_2: - identified_by = self.json_dict.get("identifiedBy", []) - identified_by.append( + self.json_dict.setdefault("identifiedBy", []).append( { "source": subfield_2.upper(), "type": "uri" if subfield_a.startswith("http") else "bf:Nbn", "value": subfield_a, } ) - self.json_dict["identifiedBy"] = identified_by + elif subfield_z: + date = int(date) if (date := field_035.get("d")) else 0 + bnf_ids[date] = subfield_z.strip() + if bnf_ids: + latest = sorted(bnf_ids)[-1] + self.json_dict.setdefault("identifiedBy", []).append( + { + "source": "BNF", + "type": "bf:Nbn", + "value": bnf_ids[latest], + } + ) def trans_idref_deleted(self): """Transformation deleted leader 5 == d.""" @@ -225,11 +242,13 @@ def trans_idref_close_match(self): "source": field_822["2"].strip(), } if field_822.get("u"): - close_match["identifiedBy"] = { - "type": "uri", - "value": field_822["u"].strip(), - "source": field_822["2"].strip(), - } + close_match["identifiedBy"] = [ + { + "type": "uri", + "value": field_822["u"].strip(), + "source": field_822["2"].strip(), + } + ] if close_match: close_matchs.append(close_match) if close_matchs: diff --git a/rero_mef/marctojson/do_idref_places.py b/rero_mef/marctojson/do_idref_places.py index 8da4bd21..5342dcf2 100644 --- a/rero_mef/marctojson/do_idref_places.py +++ b/rero_mef/marctojson/do_idref_places.py @@ -76,9 +76,9 @@ def trans_idref_identifier(self): self.logger.info("Call Function", "trans_idref_identifier") identifiers = self.json_dict.get("identifiedBy", []) if field_003 := self.marc.get_fields("003"): - identifiers.append( - {"type": "uri", "value": field_003[0].data.strip(), "source": "IDREF"} - ) + uri = field_003[0].data.strip() + identifiers.append({"type": "uri", "value": uri, "source": "IDREF"}) + self.json_dict["identifier"] = uri for field_033 in self.marc.get_fields("033"): if field_033.get("2") and field_033.get("a"): subfield_a = field_033.get("a") @@ -222,11 +222,13 @@ def trans_idref_close_match(self): "source": field_822["2"].strip(), } if field_822.get("u"): - close_match["identifiedBy"] = { - "type": "uri", - "value": field_822["u"].strip(), - "source": field_822["2"].strip(), - } + close_match["identifiedBy"] = [ + { + "type": "uri", + "value": field_822["u"].strip(), + "source": field_822["2"].strip(), + } + ] if close_match: close_matchs.append(close_match) if close_matchs: diff --git a/rero_mef/marctojson/helper.py b/rero_mef/marctojson/helper.py index 2e2be60e..5ba05ae0 100755 --- a/rero_mef/marctojson/helper.py +++ b/rero_mef/marctojson/helper.py @@ -1228,7 +1228,23 @@ ] +re_source_and_id = re.compile(r"\((.*)\)(.*)") + + # ---------------------------- Functions -------------------------------------- +def get_source_and_id(data): + """Get identifier and id from (identifier)id.""" + if match := re_source_and_id.match(data): + with contextlib.suppress(IndexError): + source = match.group(1).upper().replace("FRPBN", "BNF") + value = match.group(2) + if source in {"DE-101", "DE-588"}: + value = f"({source}){value}" + source = "GND" + return source, value + return None, None + + def file_name(file_name): """Gets the filename without extention.""" return ".".join(os.path.basename(file_name).split(".")[:-1]) diff --git a/rero_mef/places/api.py b/rero_mef/places/api.py index a2f51615..984bd2e8 100644 --- a/rero_mef/places/api.py +++ b/rero_mef/places/api.py @@ -16,12 +16,10 @@ # along with this program. If not, see . """API for manipulating records.""" -from rero_mef.places.mef.api import build_ref_string +from rero_mef.api import ConceptPlaceRecord, EntityIndexer -from ..api import Action, ReroIndexer, ReroMefRecord - -class PlaceRecord(ReroMefRecord): +class PlaceRecord(ConceptPlaceRecord): """Place record class.""" name = None @@ -49,122 +47,13 @@ def create( ) def delete(self, force=False, dbcommit=False, delindex=False): - """Delete agent from MEF record.""" + """Delete entity from MEF record.""" from rero_mef.places import PlaceMefRecord for mef_record in PlaceMefRecord.get_mef(self.pid, self.name): mef_record.delete_ref(self, dbcommit=dbcommit, reindex=delindex) return super().delete(force=force, dbcommit=dbcommit, delindex=delindex) - def create_or_update_mef(self, dbcommit=False, reindex=False): - """Create or update MEF and VIAF record. - - :param dbcommit: Commit changes to DB. - :param reindex: Reindex record. - :returns: MEF record, MEF action - """ - actions = {} - from rero_mef.places import ( - PlaceGndRecord, - PlaceIdrefRecord, - PlaceIdrefSearch, - PlaceMefRecord, - ) - - mef_data = {} - pid = self.pid - name = self.name - # find IDREF MEF record and clean old GND MEF records - if isinstance(self, PlaceGndRecord): - query = ( - PlaceIdrefSearch() - .filter("term", identifiedBy__source="GND") - .filter("term", identifiedBy__value=f"(DE-101){pid}") - ) - if idref_pids := [hit.pid for hit in query.scan()]: - # get latest IDREF MEF data. - mef_data = PlaceMefRecord.get_latest( - pid_type="idref", pid=idref_pids[0] - ) - # clean old GND MEF records - for mef_record in PlaceMefRecord.get_mef(self.pid, self.name): - mef_record.delete_ref(self, dbcommit=dbcommit, reindex=reindex) - actions[mef_record.pid] = Action.DELETE_AGENT - # get the IDREF MEF record - if mef_pid := mef_data.get("pid"): - mef_data = PlaceMefRecord.get_record_by_pid(mef_pid) - - # if we don't have a MEF record try to find one - if not mef_data and (mef_records := PlaceMefRecord.get_mef(pid, name)): - mef_data = mef_records[0] - # correct GND ref from IDREF - update_gnd_pid_for_mef = None - if isinstance(self, PlaceIdrefRecord): - gnd_ref_pid = mef_data.get("gnd", {}).get("$ref", "").split("/")[-1] - # find GND pid from identifiedBy - for identified_by in self.get("identifiedBy"): - value = identified_by.get("value") - if identified_by.get("source") == "GND" and value.startswith( - "(DE-101)" - ): - gnd_pid = value.replace("(DE-101)", "") - if gnd_ref_pid and gnd_ref_pid != gnd_pid: - mef_data.pop("gnd", None) - update_gnd_pid_for_mef = gnd_ref_pid - # if we have a GND record add the $ref for MEF - if gnd_rec := PlaceGndRecord.get_record_by_pid(gnd_pid): - mef_data["gnd"] = { - "$ref": build_ref_string(place="gnd", place_pid=gnd_pid) - } - # clean old GND MEF records - for mef_record in PlaceMefRecord.get_mef(gnd_pid, "gnd"): - if mef_record.pid != mef_data.get("pid"): - mef_record.pop("gnd", None) - mef_record.replace( - data=mef_record, dbcommit=dbcommit, reindex=reindex - ) - actions[mef_record.pid] = Action.DELETE_AGENT - - mef_data[self.name] = { - "$ref": build_ref_string(place=self.name, place_pid=self.pid) - } - if mef_data.get("pid"): - mef_action = Action.UPDATE - mef_record = mef_data.replace( - data=mef_data, dbcommit=dbcommit, reindex=reindex - ) - else: - if self.deleted and not mef_data.get("deleted"): - mef_data["deleted"] = self.deleted - mef_action = Action.CREATE - mef_record = PlaceMefRecord.create( - data=mef_data, - dbcommit=dbcommit, - reindex=reindex, - ) - actions[mef_record.pid] = mef_action - if reindex: - PlaceMefRecord.flush_indexes() - if update_gnd_pid_for_mef and ( - gnd_rec := PlaceGndRecord.get_record_by_pid(update_gnd_pid_for_mef) - ): - _, m_action = gnd_rec.create_or_update_mef( - dbcommit=dbcommit, reindex=reindex - ) - actions.update(m_action) - return mef_record, actions - - @classmethod - def get_online_record(cls, id_, debug=False): - """Get online Record. - - :param id_: Id of online record. - :param debug: Debug print. - :returns: record or None - Has to be overloaded in agent class. - """ - raise NotImplementedError() - def reindex(self, forceindex=False): """Reindex record.""" from .mef.api import PlaceMefRecord @@ -176,5 +65,5 @@ def reindex(self, forceindex=False): return result -class PlaceIndexer(ReroIndexer): +class PlaceIndexer(EntityIndexer): """Indexing class for places.""" diff --git a/rero_mef/places/gnd/api.py b/rero_mef/places/gnd/api.py index 3858ea35..e19795be 100644 --- a/rero_mef/places/gnd/api.py +++ b/rero_mef/places/gnd/api.py @@ -19,7 +19,8 @@ from invenio_search.api import RecordsSearch -from ..api import PlaceIndexer, PlaceRecord +from rero_mef.places.api import PlaceIndexer, PlaceRecord + from .fetchers import gnd_id_fetcher from .minters import gnd_id_minter from .models import PlaceGndMetadata @@ -64,6 +65,27 @@ def get_online_record(cls, id_, debug=False): return gnd_get_record(id_=id_, debug=debug) + @property + def association_identifier(self): + """Get associated identifier.""" + return self.pid + + @property + def association_info(self): + """Get associated record.""" + from rero_mef.places import PlaceIdrefRecord, PlaceIdrefSearch, PlaceMefRecord + + PlaceIdrefRecord.flush_indexes() + return { + "identifier": self.association_identifier, + "record": self.get_association_record( + association_cls=PlaceIdrefRecord, association_search=PlaceIdrefSearch + ), + "record_cls": PlaceIdrefRecord, + "search_cls": PlaceIdrefSearch, + "mef_cls": PlaceMefRecord, + } + class PlaceGndIndexer(PlaceIndexer): """Place GND indexer.""" diff --git a/rero_mef/places/gnd/mappings/v7/places_gnd/gnd-place-v0.0.1.json b/rero_mef/places/gnd/mappings/v7/places_gnd/gnd-place-v0.0.1.json index 5e18a444..c7ce41f8 100644 --- a/rero_mef/places/gnd/mappings/v7/places_gnd/gnd-place-v0.0.1.json +++ b/rero_mef/places/gnd/mappings/v7/places_gnd/gnd-place-v0.0.1.json @@ -31,9 +31,15 @@ }, "value": { "type": "keyword" + }, + "_identifier": { + "type": "keyword" } } }, + "_association_identifier": { + "type": "keyword" + }, "bnf_type": { "type": "keyword" }, @@ -91,6 +97,34 @@ } } }, + "exactMatch": { + "type": "object", + "properties": { + "authorized_access_point": { + "type": "text" + }, + "source": { + "type": "keyword" + }, + "identifiedBy": { + "type": "object", + "properties": { + "type": { + "type": "keyword" + }, + "source": { + "type": "keyword" + }, + "value": { + "type": "keyword" + }, + "_identifier": { + "type": "keyword" + } + } + } + } + }, "closeMatch": { "type": "object", "properties": { @@ -111,6 +145,9 @@ }, "value": { "type": "keyword" + }, + "_identifier": { + "type": "keyword" } } } diff --git a/rero_mef/places/idref/api.py b/rero_mef/places/idref/api.py index 85cb39fb..99cb23b0 100644 --- a/rero_mef/places/idref/api.py +++ b/rero_mef/places/idref/api.py @@ -17,9 +17,11 @@ """API for manipulating IdRef agent.""" +from flask import current_app from invenio_search.api import RecordsSearch -from ..api import PlaceIndexer, PlaceRecord +from rero_mef.places.api import PlaceIndexer, PlaceRecord + from .fetchers import idref_id_fetcher from .minters import idref_id_minter from .models import PlaceIdrefMetadata @@ -64,6 +66,41 @@ def get_online_record(cls, id_, debug=False): return idref_get_record(id_=id_, debug=debug) + @property + def association_identifier(self): + """Get associated identifier from identifiedBy.""" + pids = [] + for identified_by in self.get("identifiedBy", []): + value = identified_by.get("value", "") + if ( + identified_by.get("source") == "GND" + and identified_by.get("type") == "bf:Nbn" + and value.startswith("(DE-101)") + ): + pids.append(value.replace("(DE-101)", "")) + if len(pids) > 1: + current_app.logger.error( + f"MULTIPLE ASSOCIATIONS FOUND FOR: {self.name} {self.pid} | {', '.join(pids)}" + ) + if len(pids) == 1: + return pids[0] + + @property + def association_info(self): + """Get associated record.""" + from rero_mef.places import PlaceGndRecord, PlaceGndSearch, PlaceMefRecord + + PlaceGndRecord.flush_indexes() + return { + "identifier": self.association_identifier, + "record": self.get_association_record( + association_cls=PlaceGndRecord, association_search=PlaceGndSearch + ), + "record_cls": PlaceGndRecord, + "search_cls": PlaceGndSearch, + "mef_cls": PlaceMefRecord, + } + class PlaceIdrefIndexer(PlaceIndexer): """Place IDREF indexer.""" diff --git a/rero_mef/places/idref/mappings/v7/places_idref/idref-place-v0.0.1.json b/rero_mef/places/idref/mappings/v7/places_idref/idref-place-v0.0.1.json index 5e18a444..c7ce41f8 100644 --- a/rero_mef/places/idref/mappings/v7/places_idref/idref-place-v0.0.1.json +++ b/rero_mef/places/idref/mappings/v7/places_idref/idref-place-v0.0.1.json @@ -31,9 +31,15 @@ }, "value": { "type": "keyword" + }, + "_identifier": { + "type": "keyword" } } }, + "_association_identifier": { + "type": "keyword" + }, "bnf_type": { "type": "keyword" }, @@ -91,6 +97,34 @@ } } }, + "exactMatch": { + "type": "object", + "properties": { + "authorized_access_point": { + "type": "text" + }, + "source": { + "type": "keyword" + }, + "identifiedBy": { + "type": "object", + "properties": { + "type": { + "type": "keyword" + }, + "source": { + "type": "keyword" + }, + "value": { + "type": "keyword" + }, + "_identifier": { + "type": "keyword" + } + } + } + } + }, "closeMatch": { "type": "object", "properties": { @@ -111,6 +145,9 @@ }, "value": { "type": "keyword" + }, + "_identifier": { + "type": "keyword" } } } diff --git a/rero_mef/places/listener.py b/rero_mef/places/listener.py new file mode 100644 index 00000000..bc183047 --- /dev/null +++ b/rero_mef/places/listener.py @@ -0,0 +1,52 @@ +# -*- coding: utf-8 -*- +# +# RERO MEF +# Copyright (C) 2021 RERO +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, version 3 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . + +"""Signals connector for Places.""" + +from rero_mef.places import PlaceGndSearch, PlaceIdrefSearch +from rero_mef.utils import make_identifier + + +def enrich_place_data( + sender, + json=None, + record=None, + index=None, + doc_type=None, + arguments=None, + **dummy_kwargs, +): + """Signal sent before a record is indexed. + + :param json: The dumped record dictionary which can be modified. + :param record: The record being indexed. + :param index: The index in which the record will be indexed. + :param doc_type: The doc_type for the record. + """ + index_name = index.split("-")[0] + if index_name in {PlaceGndSearch.Meta.index, PlaceIdrefSearch.Meta.index}: + for identified_by in json.get("identifiedBy", []): + identified_by["_identifier"] = make_identifier(identified_by) + for match_type in {"closeMatch", "exactMatch"}: + for match in json.get(match_type, []): + for identified_by in match.get("identifiedBy", []): + identified_by["_identifier"] = make_identifier(identified_by) + + if not json.get("deleted") and ( + association_identifier := record.association_identifier + ): + json["_association_identifier"] = association_identifier diff --git a/rero_mef/places/mef/api.py b/rero_mef/places/mef/api.py index c3f1b1b7..94ddecf8 100644 --- a/rero_mef/places/mef/api.py +++ b/rero_mef/places/mef/api.py @@ -22,28 +22,15 @@ from flask import current_app from invenio_search.api import RecordsSearch -from ...api import ReroIndexer -from ...api_mef import EntityMefRecord +from rero_mef.api import EntityIndexer +from rero_mef.api_mef import EntityMefRecord + from .fetchers import mef_id_fetcher from .minters import mef_id_minter from .models import PlaceMefMetadata from .providers import PlaceMefProvider -def build_ref_string(place_pid, place): - """Build url for place's api. - - :param place_pid: Pid of place. - :param place: Type of place. - :returns: Reference string to record. - """ - with current_app.app_context(): - return ( - f'{current_app.config.get("RERO_MEF_APP_BASE_URL")}' - f"/api/places/{place}/{place_pid}" - ) - - class PlaceMefSearch(RecordsSearch): """RecordsSearch.""" @@ -155,7 +142,7 @@ def get_latest(cls, pid_type, pid): return {} -class PlaceMefIndexer(ReroIndexer): +class PlaceMefIndexer(EntityIndexer): """Place MEF indexer.""" record_cls = PlaceMefRecord diff --git a/rero_mef/places/mef/mappings/v7/places_mef/mef-place-v0.0.1.json b/rero_mef/places/mef/mappings/v7/places_mef/mef-place-v0.0.1.json index 6c7bba43..a048ef63 100644 --- a/rero_mef/places/mef/mappings/v7/places_mef/mef-place-v0.0.1.json +++ b/rero_mef/places/mef/mappings/v7/places_mef/mef-place-v0.0.1.json @@ -44,7 +44,7 @@ "deleted": { "type": "date" }, - "rero": { + "idref": { "type": "object", "properties": { "$schema": { @@ -99,6 +99,34 @@ } } }, + "exactMatch": { + "type": "object", + "properties": { + "authorized_access_point": { + "type": "text" + }, + "source": { + "type": "keyword" + }, + "identifiedBy": { + "type": "object", + "properties": { + "type": { + "type": "keyword" + }, + "source": { + "type": "keyword" + }, + "value": { + "type": "keyword" + }, + "_identifier": { + "type": "keyword" + } + } + } + } + }, "closeMatch": { "type": "object", "properties": { @@ -119,6 +147,9 @@ }, "value": { "type": "keyword" + }, + "_identifier": { + "type": "keyword" } } } @@ -132,7 +163,7 @@ } } }, - "idref": { + "gnd": { "type": "object", "properties": { "$schema": { @@ -187,6 +218,34 @@ } } }, + "exactMatch": { + "type": "object", + "properties": { + "authorized_access_point": { + "type": "text" + }, + "source": { + "type": "keyword" + }, + "identifiedBy": { + "type": "object", + "properties": { + "type": { + "type": "keyword" + }, + "source": { + "type": "keyword" + }, + "value": { + "type": "keyword" + }, + "_identifier": { + "type": "keyword" + } + } + } + } + }, "closeMatch": { "type": "object", "properties": { @@ -207,6 +266,9 @@ }, "value": { "type": "keyword" + }, + "_identifier": { + "type": "keyword" } } } diff --git a/rero_mef/places/utils.py b/rero_mef/places/utils.py index 5674a069..48c9f0a6 100644 --- a/rero_mef/places/utils.py +++ b/rero_mef/places/utils.py @@ -27,3 +27,10 @@ def get_places_endpoints(): return { endpoint: data for endpoint, data in endpoints.items() if endpoint in places } + + +def make_identifier(identified_by): + """Make identifier `type|(source)value`.""" + if source := identified_by.get("source"): + return f"{identified_by['type']}|({source}){identified_by['value']}" + return f"{identified_by['type']}:{identified_by['value']}" diff --git a/rero_mef/tasks.py b/rero_mef/tasks.py index 2bfb0b38..0d591b08 100644 --- a/rero_mef/tasks.py +++ b/rero_mef/tasks.py @@ -21,7 +21,7 @@ from celery import shared_task from flask import current_app -from .api import Action, ReroIndexer +from .api import Action, EntityIndexer from .utils import get_entity_class @@ -37,7 +37,7 @@ def process_bulk_queue(version_type=None, search_bulk_kwargs=None, stats_only=Tr successful and a list of error responses. Note: You can start multiple versions of this task. """ - return ReroIndexer(version_type=version_type).process_bulk_queue( + return EntityIndexer(version_type=version_type).process_bulk_queue( search_bulk_kwargs=search_bulk_kwargs, stats_only=stats_only ) diff --git a/rero_mef/utils.py b/rero_mef/utils.py index a1a132ae..f72ffe3f 100644 --- a/rero_mef/utils.py +++ b/rero_mef/utils.py @@ -1231,3 +1231,29 @@ def requests_retry_session( session.mount("http://", adapter) session.mount("https://", adapter) return session + + +def make_identifier(identified_by): + """Make identifier `type|(source)value`. + + :param identified_by: identifiedBy to create identifier + :return: identifier `type|(source)value` or `type|value` + """ + if source := identified_by.get("source"): + return f"{identified_by['type']}|({source}){identified_by['value']}" + return f"{identified_by['type']}|{identified_by['value']}" + + +def build_ref_string(entity_type, entity_name, entity_pid): + """Build url for api. + + :param entity_type: Type of entity (agents, concepts, places) + :param entity_name: Name of entity. + :param entity_pid: Pid of entity. + :returns: Reference string to record. + """ + with current_app.app_context(): + return ( + f'{current_app.config.get("RERO_MEF_APP_BASE_URL")}' + f"/api/{entity_type}/{entity_name}/{entity_pid}" + ) diff --git a/scripts/setup b/scripts/setup index 23825373..e426d498 100755 --- a/scripts/setup +++ b/scripts/setup @@ -100,9 +100,9 @@ function oai_init () { invenio oaiharvester initconfig ./data/oaisources.yml # https://data.dnb.de/GND/ invenio oaiharvester set-last-run -n agents.gnd -d 2023-08-01 - # invenio oaiharvester save idref.mrc -n idref -f 1990-01-01 invenio oaiharvester set-last-run -n agents.idref -d 2023-08-01 invenio oaiharvester set-last-run -n concepts.idref -d 2023-08-01 + invenio oaiharvester set-last-run -n concepts.gnd -d 2023-08-01 invenio oaiharvester set-last-run -n places.idref -d 2023-08-01 invenio oaiharvester set-last-run -n places.gnd -d 2023-08-01 } @@ -118,7 +118,7 @@ function sample_load () { dojson -i ./data/${ENTITY}.json | invenio fixtures create-or-update ${ENTITY} -v done - for ENTITY in corero cidref + for ENTITY in corero cidref cognd do info_msg "Importing ${ENTITY} concept records:" dojson -i ./data/${ENTITY}.json | invenio fixtures create-or-update ${ENTITY} -v @@ -136,7 +136,7 @@ function deploy () { INPUT_DIR=$1 info_msg "Start loading CSV records to database: ${INPUT_DIR}" # Load CSV files to db - for ENTITY in aggnd aidref agrero viaf corero cidref pidref + for ENTITY in aggnd aidref agrero viaf corero cidref cognd pidref plgnd do invenio fixtures load-csv ${ENTITY} ${INPUT_DIR}/${ENTITY}_pidstore.csv ${INPUT_DIR}/${ENTITY}_metadata.csv --verbose --reindex done @@ -154,7 +154,7 @@ function create_json () { OUTPUT_DIR=$2 info_msg "Start creating json: ${INPUT_DIR} ${OUTPUT_DIR}" # Transform MARC files to json - for ENTITY in aggnd aidref agrero corero cidref pidref + for ENTITY in aggnd aidref agrero corero cidref cognd pidref plgnd do invenio fixtures marc-to-json ${ENTITY} ${INPUT_DIR}/${ENTITY}.mrc ${OUTPUT_DIR}/${ENTITY}.json --error_file ${OUTPUT_DIR}/${ENTITY}_error.mrc & done @@ -166,7 +166,7 @@ function create_csv () { OUTPUT_DIR=$1 info_msg "Start creating csv: ${OUTPUT_DIR}" # Create CSV files from json - for ENTITY in aggnd aidref agrero corero cidref pidref + for ENTITY in aggnd aidref agrero corero cidref cognd pidref plgnd do invenio fixtures create-csv ${ENTITY} ${OUTPUT_DIR}/${ENTITY}.json ${OUTPUT_DIR} done diff --git a/scripts/test b/scripts/test index e9bbd0f2..29cbe5cb 100755 --- a/scripts/test +++ b/scripts/test @@ -84,9 +84,11 @@ set -e # Vulnerability ID: 70612 # -> Vulnerability found in py version 1.11.0 # Vulnerability ID: 51457 +# -> Vulnerability found in sentry-sdk version 1.45.1 +# Vulnerability ID: 72260 info_msg "Check vulnerabilities:" # Vulnerability ID: 71595 -safety_exceptions="-i 40459 -i 70624 -i 51668 -i 42194 -i 42852 -i 71595 -i 62019 -i 71594 -i 70612 -i 51457" +safety_exceptions="-i 40459 -i 70624 -i 51668 -i 42194 -i 42852 -i 71595 -i 62019 -i 71594 -i 70612 -i 51457 -i 72260" msg=$(safety check -o text ${safety_exceptions}) || { echo "Safety vulnerabilites found for packages:" $(safety check -o bare ${safety_exceptions}) echo "Run: \"safety check -o screen ${safety_exceptions} | grep -i vulnerability\" for more details" diff --git a/tests/api/test_monitoring_rest.py b/tests/api/test_monitoring_rest.py index 0c65dc66..9aff3040 100644 --- a/tests/api/test_monitoring_rest.py +++ b/tests/api/test_monitoring_rest.py @@ -37,6 +37,7 @@ def test_monitoring_es_db_counts(client): "agrero": {"db": 0, "db-es": 0, "es": 0, "index": "agents_rero"}, "aidref": {"db": 0, "db-es": 0, "es": 0, "index": "agents_idref"}, "cidref": {"db": 0, "db-es": 0, "es": 0, "index": "concepts_idref"}, + "cognd": {"db": 0, "db-es": 0, "es": 0, "index": "concepts_gnd"}, "comef": {"db": 0, "db-es": 0, "es": 0, "index": "concepts_mef"}, "corero": {"db": 0, "db-es": 0, "es": 0, "index": "concepts_rero"}, "mef": {"db": 0, "db-es": 0, "es": 0, "index": "mef"}, diff --git a/tests/fixtures/concepts_data.py b/tests/fixtures/concepts_data.py index 095b92f2..fff2e190 100644 --- a/tests/fixtures/concepts_data.py +++ b/tests/fixtures/concepts_data.py @@ -119,11 +119,13 @@ def concept_idref_redirect_data(): "closeMatch": [ { "authorized_access_point": "Franco-Provençal dialects", - "identifiedBy": { - "source": "LCSH", - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85051553", - }, + "identifiedBy": [ + { + "source": "LCSH", + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85051553", + } + ], "source": "LCSH", }, { @@ -245,3 +247,293 @@ def concept_mef_idref_redirect_data(): "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027276694"}, "type": "bf:Topic", } + + +@pytest.fixture(scope="module") +def concept_idref_frbnf_data_close(): + """Concept IdRef data with frbnf.""" + return { + "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", + "authorized_access_point": "Oiseaux nicheurs", + "bnf_type": "sujet Rameau", + "broader": [{"authorized_access_point": "Oiseaux - Moeurs et comportement"}], + "identifiedBy": [ + { + "source": "IDREF", + "type": "uri", + "value": "http://www.idref.fr/032510934", + }, + { + "source": "BNF", + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb123526871", + }, + {"source": "BNF", "type": "bf:Nbn", "value": "FRBNF12352687"}, + ], + "note": [ + {"label": ["GLE"], "noteType": "dataSource"}, + {"label": ["LCSH, 1993-06"], "noteType": "dataNotFound"}, + { + "label": ["Voir aussi aux noms des différents Oiseaux nicheurs"], + "noteType": "seeReference", + }, + ], + "pid": "032510934", + "type": "bf:Topic", + "variant_access_point": ["Nicheurs (oiseaux)"], + } + + +@pytest.fixture(scope="module") +def concept_idref_frbnf_data_exact(): + """Concept IdRef data with frbnf.""" + return { + "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", + "authorized_access_point": "Traitement réparti", + "bnf_type": "sujet Rameau", + "classification": [ + {"classificationPortion": "621", "type": "bf:ClassificationDdc"} + ], + "closeMatch": [ + { + "authorized_access_point": "Electronic data processing--Distributed processing", + "identifiedBy": [ + { + "source": "LCSH", + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85042293", + } + ], + "source": "LCSH", + }, + {"authorized_access_point": "Traitement réparti", "source": "RVMLaval"}, + ], + "identifiedBy": [ + { + "source": "IDREF", + "type": "uri", + "value": "http://www.idref.fr/027234908", + }, + { + "source": "BNF", + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11932111w", + }, + {"source": "BNF", "type": "bf:Nbn", "value": "FRBNF11932111"}, + ], + "md5": "15727be7bdf3b2a5c6c23d671b2c8a9f", + "narrower": [ + {"authorized_access_point": "Apache Storm (plate-forme informatique)"}, + {"authorized_access_point": "Architecture client-serveur (informatique)"}, + {"authorized_access_point": "Informatique omniprésente"}, + {"authorized_access_point": "J2EE (plate-forme informatique)"}, + {"authorized_access_point": "Mémoire partagée répartie"}, + {"authorized_access_point": "NFS (protocole de réseaux d'ordinateurs)"}, + {"authorized_access_point": "NIS (système de gestion de fichiers)"}, + {"authorized_access_point": "PlanetLab (informatique)"}, + {"authorized_access_point": "Répartition de charge (informatique)"}, + {"authorized_access_point": "Réseaux à grande distance (informatique)"}, + {"authorized_access_point": "Réseaux locaux (informatique)"}, + {"authorized_access_point": "Réseaux urbains (informatique)"}, + {"authorized_access_point": "Architecture médiateur-wrapper"}, + {"authorized_access_point": "Systèmes autonomes distribués (informatique)"}, + {"authorized_access_point": "Systèmes d'exploitation répartis"}, + {"authorized_access_point": "Tables de hachage distribuées"}, + {"authorized_access_point": "Bases de données réparties"}, + {"authorized_access_point": "DCOM (architecture des ordinateurs)"}, + {"authorized_access_point": "Enterprise JavaBeans"}, + {"authorized_access_point": "Exclusion mutuelle"}, + {"authorized_access_point": "Grilles informatiques"}, + {"authorized_access_point": "Hadoop (plate-forme informatique)"}, + {"authorized_access_point": "Informatique dans les nuages"}, + ], + "pid": "027234908", + "related": [ + {"authorized_access_point": "Apache Spark (langage de programmation)"}, + {"authorized_access_point": "Logique spatiale"}, + {"authorized_access_point": "Observation d'états distribués"}, + {"authorized_access_point": "Ordonnancement (informatique)"}, + {"authorized_access_point": "Réseaux d'ordinateurs"}, + {"authorized_access_point": "Théorie des calculs locaux"}, + {"authorized_access_point": "Traces, Théorie des"}, + ], + "type": "bf:Topic", + "variant_access_point": [ + "Applications distribuées (informatique)", + "Applications réparties (informatique)", + "Systèmes répartis (informatique)", + "Informatique - Traitement réparti", + "Informatique distribuée", + "Informatique répartie", + "Multi-agents, Systèmes", + "Systèmes distribués (informatique)", + "Systèmes informatiques distribués", + "Systèmes informatiques répartis", + "Systèmes multi-agents", + ], + } + + +@pytest.fixture(scope="module") +def concept_gnd_frbnf_data_close(): + """Concept GND data with frbnf.""" + return { + "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", + "authorized_access_point": "Brutvögel", + "identifiedBy": [ + {"source": "GND", "type": "uri", "value": "http://d-nb.info/gnd/4146776-0"}, + {"source": "GND", "type": "bf:Nbn", "value": "(DE-101)041467760"}, + {"source": "GND", "type": "bf:Nbn", "value": "(DE-588)4146776-0"}, + ], + "closeMatch": [ + { + "authorized_access_point": "Oiseaux nicheurs", + "source": "GND", + "identifiedBy": [ + {"source": "GND", "type": "bf:Nbn", "value": "(DE-101)1134790635"}, + {"source": "BNF", "type": "bf:Nbn", "value": "FRBNF12352687"}, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb123526871", + }, + ], + } + ], + "pid": "041467760", + "type": "bf:Topic", + "broader": [{"authorized_access_point": "Vögel"}], + "variant_access_point": ["Brutvogel", "Einheimische Vögel"], + } + + +@pytest.fixture(scope="module") +def concept_gnd_frbnf_data_exact(): + """Concept GND data with frbnf.""" + return { + "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", + "authorized_access_point": "Dezentrale Datenverarbeitung", + "broader": [{"authorized_access_point": "Datenverarbeitung"}], + "closeMatch": [ + { + "authorized_access_point": "Elaborazione distribuita", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254324852", + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "3277", + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/3277", + }, + ], + "source": "GND", + }, + { + "authorized_access_point": "Proceso distribuido (Informática)", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254419977", + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX545920", + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX545920", + }, + ], + "source": "GND", + }, + ], + "exactMatch": [ + { + "authorized_access_point": "Electronic data processing", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133615708", + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85042293", + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85042293", + }, + ], + "source": "GND", + }, + { + "authorized_access_point": "Traitement réparti", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133615708", + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11932111", + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11932111w", + }, + ], + "source": "GND", + }, + ], + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7545389-7", + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)981473830", + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7545389-7", + }, + ], + "md5": "628a19be80ecd77321435a7122f8539b", + "note": [ + { + "label": [ + "Form der elektronischen Datenverarbeitung, bei der mehrere Rechner zwar über Rechnernetz " + "verbunden sind, Daten austauschen und gemeinsame Ressourcen nutzen können, jedoch jeweils " + "autonom eigene Aufgaben erledigen. (B Computer)", + "Für das Arbeiten mehrerer vernetzter Rechner an Teilaufgaben desselben Problems verwende " + "Verteiltes System.", + ], + "noteType": "general", + } + ], + "pid": "981473830", + "type": "bf:Topic", + "variant_access_point": [ + "Decentralized Data Processing", + "Distributed Data Processing System (Dezentralisation)", + "DDPS", + "Verteilte Datenverarbeitung (Dezentralisation)", + "Verteiltes Datenverarbeitungssystem (Dezentralisation)", + ], + } diff --git a/tests/fixtures/places_data.py b/tests/fixtures/places_data.py index 03136d08..c3c48f27 100644 --- a/tests/fixtures/places_data.py +++ b/tests/fixtures/places_data.py @@ -62,7 +62,6 @@ def place_idref_data(): ], "pid": "271330163", "type": "bf:Place", - "deleted": "2022-09-03T07:07:32.526780+00:00", } @@ -142,11 +141,13 @@ def place_gnd_data(): { "authorized_access_point": "Nordschleswig", "source": "GND", - "identifiedBy": { - "type": "bf:Nbn", - "value": "(DE-101)992404371", - "source": "(DE-101)992404371", - }, + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)992404371", + "source": "(DE-101)992404371", + } + ], } ], "identifiedBy": [ diff --git a/tests/ui/agents/test_agents_api.py b/tests/ui/agents/test_agents_api.py index c6cbb673..9f68c81c 100644 --- a/tests/ui/agents/test_agents_api.py +++ b/tests/ui/agents/test_agents_api.py @@ -43,9 +43,9 @@ def test_create_agent_record_with_viaf_links( assert viaf_record["gnd_pid"] == "12391664X" assert viaf_record["rero_pid"] == "A023655346" assert viaf_record["idref_pid"] == "069774331" - assert len(viaf_record.get_agents_pids()) == 3 - assert viaf_record.get_agents_records() == [] - _, pids_viaf = viaf_record.get_missing_agent_pids("aidref") + assert len(viaf_record.get_entities_pids()) == 3 + assert viaf_record.get_entities_records() == [] + _, pids_viaf = viaf_record.get_missing_entity_pids("aidref") assert pids_viaf == ["66739143"] gnd_record, action = AgentGndRecord.create_or_update( @@ -63,10 +63,10 @@ def test_create_agent_record_with_viaf_links( "type": "bf:Person", "viaf_pid": "66739143", } - assert viaf_record.get_agents_records() == [agent_gnd_data] + assert viaf_record.get_entities_records() == [agent_gnd_data] assert viaf_record.get_viaf(m_record) == [viaf_record] assert viaf_record.get_viaf(gnd_record) == [viaf_record] - pids_db, pids_viaf = viaf_record.get_missing_agent_pids("aggnd") + pids_db, pids_viaf = viaf_record.get_missing_entity_pids("aggnd") assert pids_db == [] assert pids_viaf == [] @@ -85,7 +85,7 @@ def test_create_agent_record_with_viaf_links( "type": "bf:Person", "viaf_pid": "66739143", } - assert viaf_record.get_agents_records() == [agent_gnd_data, agent_rero_data] + assert viaf_record.get_entities_records() == [agent_gnd_data, agent_rero_data] idref_record, action = AgentIdrefRecord.create_or_update( data=agent_idref_data, dbcommit=True, reindex=True @@ -103,7 +103,7 @@ def test_create_agent_record_with_viaf_links( "type": "bf:Person", "viaf_pid": "66739143", } - assert viaf_record.get_agents_records() == [ + assert viaf_record.get_entities_records() == [ agent_idref_data, agent_gnd_data, agent_rero_data, @@ -112,17 +112,17 @@ def test_create_agent_record_with_viaf_links( assert ( m_record == AgentMefRecord.get_mef( - agent_pid=idref_record.pid, agent_name=idref_record.name + entity_pid=idref_record.pid, entity_name=idref_record.name )[0] ) assert ( m_record.pid == AgentMefRecord.get_mef( - agent_pid=gnd_record.pid, agent_name=gnd_record.name, pid_only=True + entity_pid=gnd_record.pid, entity_name=gnd_record.name, pid_only=True )[0] ) mef_rec_resolved = AgentMefRecord.get_mef( - agent_pid=viaf_record.pid, agent_name=viaf_record.name + entity_pid=viaf_record.pid, entity_name=viaf_record.name )[0] assert m_record == mef_rec_resolved @@ -191,14 +191,14 @@ def test_create_agent_record_with_viaf_links( rero_pid = viaf_record.pop("rero_pid") viaf_record = viaf_record.update(data=viaf_record, dbcommit=True, reindex=True) viaf_record.create_mef_and_agents(dbcommit=True, reindex=True) - assert viaf_record.get_agents_pids() == [ + assert viaf_record.get_entities_pids() == [ {"pid": idref_record.pid, "source": "idref", "record_class": AgentIdrefRecord}, {"pid": gnd_record.pid, "source": "gnd", "record_class": AgentGndRecord}, ] mef_record_rero = AgentMefRecord.get_mef( - agent_pid=rero_record.pid, agent_name=rero_record.name + entity_pid=rero_record.pid, entity_name=rero_record.name )[0] - assert mef_record_rero.get_agents_pids() == [ + assert mef_record_rero.get_entities_pids() == [ {"pid": rero_record.pid, "record_class": AgentReroRecord} ] @@ -207,7 +207,7 @@ def test_create_agent_record_with_viaf_links( viaf_record["rero_pid"] = rero_pid viaf_record = viaf_record.update(data=viaf_record, dbcommit=True, reindex=True) viaf_record.create_mef_and_agents(dbcommit=True, reindex=True) - assert viaf_record.get_agents_pids() == [ + assert viaf_record.get_entities_pids() == [ {"pid": idref_record.pid, "source": "idref", "record_class": AgentIdrefRecord}, {"pid": gnd_record.pid, "source": "gnd", "record_class": AgentGndRecord}, {"pid": rero_record.pid, "source": "rero", "record_class": AgentReroRecord}, diff --git a/tests/ui/agents/test_agents_mef_api.py b/tests/ui/agents/test_agents_mef_api.py index b6a011fd..fb5c3e9c 100644 --- a/tests/ui/agents/test_agents_mef_api.py +++ b/tests/ui/agents/test_agents_mef_api.py @@ -22,11 +22,13 @@ from rero_mef.agents import AgentMefRecord -def test_get_all_pids_without_agents_and_viaf(app): +def test_get_all_pids_without_entities_and_viaf(app): """Test get all pids without agents and VIAF.""" record = {"$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} m_record = create_record(AgentMefRecord, record) - assert list(AgentMefRecord.get_all_pids_without_agents_and_viaf()) == [m_record.pid] + assert list(AgentMefRecord.get_all_pids_without_entities_and_viaf()) == [ + m_record.pid + ] def test_get_multiple_missing_pids(app, agent_mef_data, agent_viaf_record): diff --git a/tests/ui/agents/test_agents_viaf_api.py b/tests/ui/agents/test_agents_viaf_api.py index dcc9f582..002e0350 100644 --- a/tests/ui/agents/test_agents_viaf_api.py +++ b/tests/ui/agents/test_agents_viaf_api.py @@ -100,8 +100,8 @@ def test_create_mef_and_agents( actions = agent_viaf_record.create_mef_and_agents(dbcommit=True, reindex=True) mef_pid = AgentMefRecord.get_mef( - agent_pid=agent_viaf_record.pid, - agent_name=agent_viaf_record.name, + entity_pid=agent_viaf_record.pid, + entity_name=agent_viaf_record.name, pid_only=True, )[0] assert actions == { @@ -129,6 +129,7 @@ def test_create_mef_and_agents( "agrero": {"db": 1, "index": "agrero", "mef": 1, "mef-db": 0}, "aidref": {"db": 1, "index": "aidref", "mef": 1, "mef-db": 0}, "cidref": {"db": 0, "index": "cidref", "mef": 0, "mef-db": 0}, + "cognd": {"db": 0, "index": "cognd", "mef": 0, "mef-db": 0}, "corero": {"db": 0, "index": "corero", "mef": 0, "mef-db": 0}, "pidref": {"db": 0, "index": "pidref", "mef": 0, "mef-db": 0}, "plgnd": {"db": 0, "index": "plgnd", "mef": 0, "mef-db": 0}, @@ -162,6 +163,7 @@ def test_create_mef_and_agents( "agrero": {"db": 1, "index": "agrero", "mef": 1, "mef-db": 0}, "aidref": {"db": 1, "index": "aidref", "mef": 1, "mef-db": 0}, "cidref": {"db": 0, "index": "cidref", "mef": 0, "mef-db": 0}, + "cognd": {"db": 0, "index": "cognd", "mef": 0, "mef-db": 0}, "corero": {"db": 0, "index": "corero", "mef": 0, "mef-db": 0}, "pidref": {"db": 0, "index": "pidref", "mef": 0, "mef-db": 0}, "plgnd": {"db": 0, "index": "plgnd", "mef": 0, "mef-db": 0}, @@ -211,6 +213,7 @@ def test_create_mef_and_agents( "agrero": {"db": 2, "index": "agrero", "mef": 2, "mef-db": 0}, "aidref": {"db": 1, "index": "aidref", "mef": 1, "mef-db": 0}, "cidref": {"db": 0, "index": "cidref", "mef": 0, "mef-db": 0}, + "cognd": {"db": 0, "index": "cognd", "mef": 0, "mef-db": 0}, "corero": {"db": 0, "index": "corero", "mef": 0, "mef-db": 0}, "pidref": {"db": 0, "index": "pidref", "mef": 0, "mef-db": 0}, "plgnd": {"db": 0, "index": "plgnd", "mef": 0, "mef-db": 0}, @@ -230,8 +233,8 @@ def test_create_mef_and_agents( agent_viaf_record.update(data=agent_viaf_record, dbcommit=True, reindex=True) actions = agent_viaf_record.create_mef_and_agents(dbcommit=True, reindex=True) mef_pid_new = AgentMefRecord.get_mef( - agent_pid=agent_viaf_record.pid, - agent_name=agent_viaf_record.name, + entity_pid=agent_viaf_record.pid, + entity_name=agent_viaf_record.name, pid_only=True, )[0] mef_record = AgentMefRecord.get_record_by_pid(mef_pid_new) @@ -274,16 +277,12 @@ def test_create_mef_and_agents( "agrero": {"db": 2, "index": "agrero", "mef": 2, "mef-db": 0}, "aidref": {"db": 1, "index": "aidref", "mef": 1, "mef-db": 0}, "cidref": {"db": 0, "index": "cidref", "mef": 0, "mef-db": 0}, + "cognd": {"db": 0, "index": "cognd", "mef": 0, "mef-db": 0}, "corero": {"db": 0, "index": "corero", "mef": 0, "mef-db": 0}, "pidref": {"db": 0, "index": "pidref", "mef": 0, "mef-db": 0}, "plgnd": {"db": 0, "index": "plgnd", "mef": 0, "mef-db": 0}, } - from pprint import pprint - - for rec in AgentMefRecord.get_all_records(): - pprint(rec) - # delete VIAF rec = AgentViafRecord.get_record_by_pid(agent_viaf_record.get("pid")) _, action, mef_actions = rec.delete(dbcommit=True, delindex=True) @@ -312,6 +311,7 @@ def test_create_mef_and_agents( "agrero": {"db": 2, "index": "agrero", "mef": 2, "mef-db": 0}, "aidref": {"db": 1, "index": "aidref", "mef": 1, "mef-db": 0}, "cidref": {"db": 0, "index": "cidref", "mef": 0, "mef-db": 0}, + "cognd": {"db": 0, "index": "cognd", "mef": 0, "mef-db": 0}, "corero": {"db": 0, "index": "corero", "mef": 0, "mef-db": 0}, "pidref": {"db": 0, "index": "pidref", "mef": 0, "mef-db": 0}, "plgnd": {"db": 0, "index": "plgnd", "mef": 0, "mef-db": 0}, diff --git a/tests/ui/concepts/test_concepts_api.py b/tests/ui/concepts/test_concepts_api.py index d47c0388..ac06a3f1 100644 --- a/tests/ui/concepts/test_concepts_api.py +++ b/tests/ui/concepts/test_concepts_api.py @@ -20,7 +20,12 @@ import os from rero_mef.api import Action -from rero_mef.concepts import ConceptIdrefRecord, ConceptMefRecord, ConceptReroRecord +from rero_mef.concepts import ( + ConceptGndRecord, + ConceptIdrefRecord, + ConceptMefRecord, + ConceptReroRecord, +) from rero_mef.utils import export_json_records, number_records_in_file SCHEMA_URL = "https://mef.rero.ch/schemas/concepts_mef" @@ -48,12 +53,14 @@ def test_create_concept_record(app, concept_rero_data, concept_idref_data, tmpdi data=concept_rero_data, dbcommit=True, reindex=True ) assert action == Action.CREATE - assert rero_record["pid"] == "A021001006" + assert rero_record["pid"] == concept_rero_data["pid"] m_record, m_actions = rero_record.create_or_update_mef(dbcommit=True, reindex=True) assert m_actions == {m_record.pid: Action.CREATE} assert m_record == { "$schema": f"{SCHEMA_URL}/mef-concept-v0.0.1.json", - "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001006"}, + "rero": { + "$ref": f"https://mef.rero.ch/api/concepts/rero/{concept_rero_data['pid']}" + }, "pid": "2", "type": "bf:Topic", } @@ -84,37 +91,247 @@ def test_create_concept_record(app, concept_rero_data, concept_idref_data, tmpdi data=concept_rero_data, dbcommit=True, reindex=True ) assert action == Action.UPDATE - assert returned_record["pid"] == "A021001006" + assert returned_record["pid"] == concept_rero_data["pid"] returned_record, action = ConceptIdrefRecord.create_or_update( data=concept_idref_data, dbcommit=True, reindex=True ) assert action == Action.UPDATE - assert returned_record["pid"] == "050548115" + assert returned_record["pid"] == concept_idref_data["pid"] # Test update MD5 concept record MD5 tewst. returned_record, action = ConceptReroRecord.create_or_update( data=concept_rero_data, dbcommit=True, reindex=True, test_md5=True ) assert action == Action.UPTODATE - assert returned_record["pid"] == "A021001006" + assert returned_record["pid"] == concept_rero_data["pid"] returned_record, action = ConceptIdrefRecord.create_or_update( data=concept_idref_data, dbcommit=True, reindex=True, test_md5=True ) assert action == Action.UPTODATE - assert returned_record["pid"] == "050548115" + assert returned_record["pid"] == concept_idref_data["pid"] idref_record = ConceptIdrefRecord.get_record_by_pid(idref_record.pid) idref_record["type"] = "bf:Temporal" idref_record.update(data=idref_record, dbcommit=True, reindex=True) + ConceptMefRecord.flush_indexes() + m_record, m_actions = idref_record.create_or_update_mef(dbcommit=True, reindex=True) assert m_actions == {m_record.pid: Action.UPDATE} assert m_record == { "$schema": f"{SCHEMA_URL}/mef-concept-v0.0.1.json", - "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/050548115"}, + "idref": { + "$ref": f"https://mef.rero.ch/api/concepts/idref/{concept_idref_data['pid']}" + }, "deleted": "2022-09-03T07:07:32.526780+00:00", "pid": "1", "type": "bf:Temporal", } + + +def test_create_concept_frbnf_record( + app, concept_idref_frbnf_data_close, concept_gnd_frbnf_data_close, tmpdir +): + """Test create concept record with frbnf links.""" + mef_count = ConceptMefRecord.count() + # Create idref record with identifiedBy `FRBNF12352687`. + idref_record, action = ConceptIdrefRecord.create_or_update( + data=concept_idref_frbnf_data_close, dbcommit=True, reindex=True + ) + assert action == Action.CREATE + assert idref_record["pid"] == concept_idref_frbnf_data_close["pid"] + + # Create or update MEF record. + m_record, m_actions = idref_record.create_or_update_mef(dbcommit=True, reindex=True) + assert m_actions == {m_record.pid: Action.CREATE} + assert m_record == { + "$schema": f"{SCHEMA_URL}/mef-concept-v0.0.1.json", + "idref": { + "$ref": f"https://mef.rero.ch/api/concepts/idref/{concept_idref_frbnf_data_close['pid']}" + }, + "pid": f"{mef_count+1}", + "type": "bf:Topic", + } + + # Create gnd record with closeMatch identifiedBy `FRBNF12352687` + gnd_record, action = ConceptGndRecord.create_or_update( + data=concept_gnd_frbnf_data_close, dbcommit=True, reindex=True + ) + assert action == Action.CREATE + assert gnd_record["pid"] == concept_gnd_frbnf_data_close["pid"] + + ConceptIdrefRecord.flush_indexes() + # Create or update MEF record (should be the same as for IDREF) + + m_record, m_actions = gnd_record.create_or_update_mef(dbcommit=True, reindex=True) + assert m_actions == {m_record.pid: Action.UPDATE} + + assert m_record == { + "$schema": f"{SCHEMA_URL}/mef-concept-v0.0.1.json", + "gnd": { + "$ref": f"https://mef.rero.ch/api/concepts/gnd/{concept_gnd_frbnf_data_close['pid']}" + }, + "idref": { + "$ref": f"https://mef.rero.ch/api/concepts/idref/{concept_idref_frbnf_data_close['pid']}" + }, + "pid": f"{mef_count+1}", + "type": "bf:Topic", + } + + assert idref_record.association_identifier == "FRBNF12352687" + assert gnd_record.association_identifier == "FRBNF12352687" + + # Delete identifiedBy `FRBNF12352687` from IDREF record + idref_record["identifiedBy"] = [ + {"source": "IDREF", "type": "uri", "value": "http://www.idref.fr/032510934"}, + ] + idref_record, action = ConceptIdrefRecord.create_or_update( + data=idref_record, dbcommit=True, reindex=True + ) + assert action == Action.UPDATE + assert idref_record["identifiedBy"] == [ + {"source": "IDREF", "type": "uri", "value": "http://www.idref.fr/032510934"}, + ] + + # Create or update MEF record for IDREF. + # We should update the old MEF IDREF record and recreate a new MEF GND record. + m_record, m_actions = idref_record.create_or_update_mef(dbcommit=True, reindex=True) + assert m_actions == {m_record.pid: Action.UPDATE, f"{mef_count+2}": Action.CREATE} + assert m_record == { + "$schema": f"{SCHEMA_URL}/mef-concept-v0.0.1.json", + "idref": { + "$ref": f"https://mef.rero.ch/api/concepts/idref/{concept_idref_frbnf_data_close['pid']}" + }, + "pid": f"{mef_count+1}", + "type": "bf:Topic", + } + + # Add identifiedBy `FRBNF12352687` to IDREF record + idref_record["identifiedBy"] = [ + { + "source": "IDREF", + "type": "uri", + "value": f"http://www.idref.fr/{concept_idref_frbnf_data_close['pid']}", + }, + {"source": "BNF", "type": "bf:Nbn", "value": "FRBNF12352687"}, + ] + idref_record, action = ConceptIdrefRecord.create_or_update( + data=idref_record, dbcommit=True, reindex=True + ) + assert action == Action.UPDATE + assert idref_record["identifiedBy"] == [ + { + "source": "IDREF", + "type": "uri", + "value": f"http://www.idref.fr/{concept_idref_frbnf_data_close['pid']}", + }, + {"source": "BNF", "type": "bf:Nbn", "value": "FRBNF12352687"}, + ] + + # Create or update MEF record for IDREF + # We should update MEF IDREF record and delete ref from MEF GND record. + m_record, m_actions = idref_record.create_or_update_mef(dbcommit=True, reindex=True) + assert m_actions == { + m_record.pid: Action.UPDATE, + f"{mef_count+2}": Action.DELETE_ENTITY, + } + assert m_record == { + "$schema": f"{SCHEMA_URL}/mef-concept-v0.0.1.json", + "idref": { + "$ref": f"https://mef.rero.ch/api/concepts/idref/{concept_idref_frbnf_data_close['pid']}" + }, + "gnd": { + "$ref": f"https://mef.rero.ch/api/concepts/gnd/{concept_gnd_frbnf_data_close['pid']}" + }, + "pid": f"{mef_count+1}", + "type": "bf:Topic", + } + + # Delete identifiedBy `FRBNF12352687` from GND record. + close_match = gnd_record.pop("closeMatch") + gnd_record, action = ConceptGndRecord.create_or_update( + data=gnd_record, dbcommit=True, reindex=True + ) + assert action == Action.UPDATE + assert not idref_record.get("closeMatch") + + # Create or update MEF record for IDREF + # We should update MEF IDREF record and delete ref from MEF GND record. + m_record, m_actions = idref_record.create_or_update_mef(dbcommit=True, reindex=True) + assert m_actions == { + m_record.pid: Action.UPDATE, + f"{mef_count+3}": Action.CREATE, + } + assert m_record == { + "$schema": f"{SCHEMA_URL}/mef-concept-v0.0.1.json", + "idref": { + "$ref": f"https://mef.rero.ch/api/concepts/idref/{concept_idref_frbnf_data_close['pid']}" + }, + "pid": f"{mef_count+1}", + "type": "bf:Topic", + } + + # Add identifiedBy `FRBNF12352687` to GND record + gnd_record["exactMatch"] = close_match + gnd_record, action = ConceptGndRecord.create_or_update( + data=gnd_record, dbcommit=True, reindex=True + ) + assert action == Action.UPDATE + assert gnd_record.get("exactMatch") == close_match + + # Create or update MEF record for GND + # We should update MEF GND record delete ref and MEF IDREF update. + m_record, m_actions = gnd_record.create_or_update_mef(dbcommit=True, reindex=True) + assert m_actions == { + m_record.pid: Action.UPDATE, + f"{mef_count+1}": Action.DELETE_ENTITY, + } + assert m_record == { + "$schema": f"{SCHEMA_URL}/mef-concept-v0.0.1.json", + "gnd": { + "$ref": f"https://mef.rero.ch/api/concepts/gnd/{concept_gnd_frbnf_data_close['pid']}" + }, + "idref": { + "$ref": f"https://mef.rero.ch/api/concepts/idref/{concept_idref_frbnf_data_close['pid']}" + }, + "pid": m_record.pid, + "type": "bf:Topic", + } + + +def test_create_concept_frbnf_record_exact( + app, concept_idref_frbnf_data_exact, concept_gnd_frbnf_data_exact, tmpdir +): + """Test create concept record with frbnf links.""" + mef_count = ConceptMefRecord.count() + # Create idref record with identifiedBy `FRBNF12352687`. + idref_record, action = ConceptIdrefRecord.create_or_update( + data=concept_idref_frbnf_data_exact, dbcommit=True, reindex=True + ) + assert action == Action.CREATE + assert idref_record["pid"] == concept_idref_frbnf_data_exact["pid"] + + gnd_record, action = ConceptGndRecord.create_or_update( + data=concept_gnd_frbnf_data_exact, dbcommit=True, reindex=True + ) + assert action == Action.CREATE + assert gnd_record["pid"] == concept_gnd_frbnf_data_exact["pid"] + + ConceptIdrefRecord.flush_indexes() + ConceptGndRecord.flush_indexes() + # Create or update MEF record. + m_record, m_actions = idref_record.create_or_update_mef(dbcommit=True, reindex=True) + assert m_actions == {m_record.pid: Action.CREATE} + assert m_record == { + "$schema": f"{SCHEMA_URL}/mef-concept-v0.0.1.json", + "idref": { + "$ref": f"https://mef.rero.ch/api/concepts/idref/{concept_idref_frbnf_data_exact['pid']}" + }, + "gnd": { + "$ref": f"https://mef.rero.ch/api/concepts/gnd/{concept_gnd_frbnf_data_exact['pid']}" + }, + "pid": f"{mef_count+1}", + "type": "bf:Topic", + } diff --git a/tests/ui/places/test_places_api.py b/tests/ui/places/test_places_api.py index d7c5535b..fc288a85 100644 --- a/tests/ui/places/test_places_api.py +++ b/tests/ui/places/test_places_api.py @@ -46,11 +46,20 @@ def test_create_place_record(app, place_idref_data, place_gnd_data, tmpdir): assert m_idref_record == { "$schema": f"{SCHEMA_URL}/mef-place-v0.0.1.json", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271330163"}, - "deleted": "2022-09-03T07:07:32.526780+00:00", "pid": "1", "type": "bf:Place", } - + PlaceMefRecord.flush_indexes() + m_idref_record, m_action = idref_record.create_or_update_mef( + dbcommit=True, reindex=True + ) + assert m_action == {"1": Action.UPDATE} + assert m_idref_record == { + "$schema": f"{SCHEMA_URL}/mef-place-v0.0.1.json", + "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271330163"}, + "pid": "1", + "type": "bf:Place", + } # Test JSON export. tmp_file_name = os.path.join(tmpdir, "mef.json") export_json_records( @@ -83,7 +92,7 @@ def test_create_place_record(app, place_idref_data, place_gnd_data, tmpdir): assert returned_record["pid"] == "271330163" PlaceMefRecord.flush_indexes() - # GND tests + # Test GND create gnd_record, action = PlaceGndRecord.create_or_update( data=place_gnd_data, dbcommit=True, reindex=True ) @@ -102,6 +111,7 @@ def test_create_place_record(app, place_idref_data, place_gnd_data, tmpdir): "type": "bf:Place", } + # Test IDREF create with GND ref idref_record = PlaceIdrefRecord.get_record_by_pid(idref_record.pid) idref_record.setdefault("identifiedBy", []).append( {"source": "GND", "value": "(DE-101)040754766", "type": "bf:Nbn"} @@ -112,17 +122,42 @@ def test_create_place_record(app, place_idref_data, place_gnd_data, tmpdir): m_idref_record, m_action = idref_record.create_or_update_mef( dbcommit=True, reindex=True ) - assert m_action == {"1": Action.UPDATE, "2": Action.DELETE_AGENT} + assert m_action == {"1": Action.UPDATE, "2": Action.DELETE_ENTITY} assert m_idref_record == { "$schema": f"{SCHEMA_URL}/mef-place-v0.0.1.json", - "deleted": "2022-09-03T07:07:32.526780+00:00", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271330163"}, "gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040754766"}, "pid": "1", "type": "bf:Place", } + PlaceMefRecord.flush_indexes() assert PlaceMefSearch().filter("term", gnd__pid="040754766").count() == 1 + # Retest IDREF and GND record MEF update + m_idref_record, m_action = idref_record.create_or_update_mef( + dbcommit=True, reindex=True + ) + assert m_action == {"1": Action.UPDATE} + assert m_idref_record == { + "$schema": f"{SCHEMA_URL}/mef-place-v0.0.1.json", + "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271330163"}, + "gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040754766"}, + "pid": "1", + "type": "bf:Place", + } + m_gnd_record, m_action = gnd_record.create_or_update_mef( + dbcommit=True, reindex=True + ) + assert m_action == {"1": Action.UPDATE} + assert m_gnd_record == { + "$schema": f"{SCHEMA_URL}/mef-place-v0.0.1.json", + "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271330163"}, + "gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040754766"}, + "pid": "1", + "type": "bf:Place", + } + + # Test IDREF GND ref change for identified_by in idref_record["identifiedBy"]: if identified_by.get("source") == "GND": identified_by["value"] = "(DE-101)TEST" @@ -135,7 +170,6 @@ def test_create_place_record(app, place_idref_data, place_gnd_data, tmpdir): assert m_action == {"1": Action.UPDATE, "3": Action.CREATE} assert m_idref_record == { "$schema": f"{SCHEMA_URL}/mef-place-v0.0.1.json", - "deleted": "2022-09-03T07:07:32.526780+00:00", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271330163"}, "pid": "1", "type": "bf:Place", @@ -157,14 +191,15 @@ def test_create_place_record(app, place_idref_data, place_gnd_data, tmpdir): assert gnd_record["pid"] == "TEST" PlaceIdrefRecord.flush_indexes() + PlaceGndRecord.flush_indexes() PlaceMefRecord.flush_indexes() + m_gnd_record, m_action = gnd_record.create_or_update_mef( dbcommit=True, reindex=True ) assert m_action == {"1": Action.UPDATE} assert m_gnd_record == { "$schema": f"{SCHEMA_URL}/mef-place-v0.0.1.json", - "deleted": "2022-09-03T07:07:32.526780+00:00", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271330163"}, "gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/TEST"}, "pid": "1", diff --git a/tests/ui/test_api.py b/tests/ui/test_api.py index 5d96c2f8..2afc720a 100644 --- a/tests/ui/test_api.py +++ b/tests/ui/test_api.py @@ -27,8 +27,8 @@ from rero_mef.tasks import process_bulk_queue -def test_reromefrecord_api(app, agent_idref_record): - """Test ReroMefRecord api.""" +def test_entityrecord_api(app, agent_idref_record): + """Test EntityRecord api.""" idref = agent_idref_record assert AgentIdrefRecord.count() == 1 assert AgentIdrefRecord.index_all() == 1 diff --git a/tests/ui/test_monitoring.py b/tests/ui/test_monitoring.py index 00718708..8fccffc7 100644 --- a/tests/ui/test_monitoring.py +++ b/tests/ui/test_monitoring.py @@ -34,6 +34,7 @@ def test_monitoring(app, agent_idref_data, script_info): " 0 agrero 0 agents_rero 0", " 1 aidref 1 agents_idref 0", " 0 cidref 0 concepts_idref 0", + " 0 cognd 0 concepts_gnd 0", " 0 comef 0 concepts_mef 0", " 0 corero 0 concepts_rero 0", " 0 mef 0 mef 0", @@ -61,6 +62,7 @@ def test_monitoring(app, agent_idref_data, script_info): "aidref": {"db": 1, "db-es": 1, "es": 0, "index": "agents_idref"}, "cidref": {"db": 0, "db-es": 0, "es": 0, "index": "concepts_idref"}, "comef": {"db": 0, "db-es": 0, "es": 0, "index": "concepts_mef"}, + "cognd": {"db": 0, "db-es": 0, "es": 0, "index": "concepts_gnd"}, "corero": {"db": 0, "db-es": 0, "es": 0, "index": "concepts_rero"}, "mef": {"db": 0, "db-es": 0, "es": 0, "index": "mef"}, "plgnd": {"db": 0, "db-es": 0, "es": 0, "index": "places_gnd"}, diff --git a/tests/unit/agents/test_agent_gnd_transformation.py b/tests/unit/agents/test_agents_gnd_transformation.py similarity index 100% rename from tests/unit/agents/test_agent_gnd_transformation.py rename to tests/unit/agents/test_agents_gnd_transformation.py diff --git a/tests/unit/agents/test_agent_idref_transformation.py b/tests/unit/agents/test_agents_idref_transformation.py similarity index 100% rename from tests/unit/agents/test_agent_idref_transformation.py rename to tests/unit/agents/test_agents_idref_transformation.py diff --git a/tests/unit/agents/test_agent_rero_transformation.py b/tests/unit/agents/test_agents_rero_transformation.py similarity index 100% rename from tests/unit/agents/test_agent_rero_transformation.py rename to tests/unit/agents/test_agents_rero_transformation.py diff --git a/tests/unit/concepts/test_concepts_gnd_transformation.py b/tests/unit/concepts/test_concepts_gnd_transformation.py new file mode 100644 index 00000000..125fdfbc --- /dev/null +++ b/tests/unit/concepts/test_concepts_gnd_transformation.py @@ -0,0 +1,265 @@ +# -*- coding: utf-8 -*- +# +# RERO MEF +# Copyright (C) 2024 RERO +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, version 3 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . + +"""Test RERO auth contribution.""" + +from concepts_helpers import trans_prep + +from rero_mef.marctojson.do_gnd_concepts import Transformation + + +def test_gnd_pid(): + """Test pid for 001""" + xml_part_to_add = """ + 976573474 + """ + trans = trans_prep(Transformation, "concepts", xml_part_to_add) + trans.trans_gnd_pid() + assert trans.json == {"pid": "976573474", "type": "bf:Topic"} + + +def test_gnd_identifier(): + """Test identifier for person 024, 035""" + xml_part_to_add = """ + + 4844250-1 + http://d-nb.info/gnd/4844250-1 + gnd + + + (DE-101)976573474 + + + (DE-588)4844250-1 + + + (DE-588c)4844250 + v:zg + + """ + trans = trans_prep(Transformation, "concepts", xml_part_to_add) + trans.trans_gnd_identifier() + assert trans.json == { + "identifiedBy": [ + { + "type": "uri", + "source": "GND", + "value": "http://d-nb.info/gnd/4844250-1", + }, + { + "type": "bf:Nbn", + "source": "GND", + "value": "(DE-101)976573474", + }, + { + "type": "bf:Nbn", + "source": "GND", + "value": "(DE-588)4844250-1", + }, + ], + "identifier": "http://d-nb.info/gnd/4844250-1", + } + + +def test_gnd_authorized_access_point(): + """Test authorized_access_point from field 150""" + xml_part_to_add = """ + + Magnet + Druckschrift, Offenbach, Main + + """ + trans = trans_prep(Transformation, "concepts", xml_part_to_add) + trans.trans_gnd_authorized_access_point() + assert trans.json == { + "authorized_access_point": "Magnet (Druckschrift, Offenbach, Main)" + } + + +def test_gnd_variant_access_point(): + """Test variant_access_point from field 450""" + xml_part_to_add = """ + + Ohio + Druckschrift + + """ + trans = trans_prep(Transformation, "concepts", xml_part_to_add) + trans.trans_gnd_variant_access_point() + assert trans.json == {"variant_access_point": ["Ohio (Druckschrift)"]} + + +def test_gnd_relation(): + """Test trans_gnd_relation 550""" + xml_part_to_add = """ + + (DE-101)041994493 + (DE-588)4199449-8 + https://d-nb.info/gnd/4199449-8 + Antiqua + obal + https://d-nb.info/standards/elementset/gnd#broaderTermGeneral + r + Oberbegriff allgemein + + + (DE-101)992744342 + (DE-588)7647113-5 + https://d-nb.info/gnd/7647113-5 + Ohio-Kursiv + vbal + https://d-nb.info/standards/elementset/gnd#relatedTerm + r + Verwandter Begriff + """ + trans = trans_prep(Transformation, "concepts", xml_part_to_add) + trans.trans_gnd_relation() + assert trans.json == { + "broader": [ + {"authorized_access_point": "Antiqua"}, + ], + "related": [ + {"authorized_access_point": "Ohio-Kursiv"}, + ], + } + + +def test_gnd_classification(): + """Test trans_gnd_classification ???.""" + # TODO: trans_gnd_classification + + +def test_gnd_close_match(): + """Test trans_gnd_classification 750""" + xml_part_to_add = """ + + (DE-101)1134384173 + (DLC)sh85009231 + http://id.loc.gov/authorities/subjects/sh85009231 + Atlases + EQ + https://d-nb.info/standards/elementset/gnd#equivalence + Aequivalenz + lcsh + L:eng + + + (DE-101)125348144X + (DNLM)D020466 + http://id.nlm.nih.gov/mesh/D020466 + Atlas + EQ + https://d-nb.info/standards/elementset/gnd#exactEquivalence + exakte Aequivalenz + mesh + L:eng + v:Ausg. 2022|2023 + """ + trans = trans_prep(Transformation, "concepts", xml_part_to_add) + trans.trans_gnd_match() + assert trans.json == { + "closeMatch": [ + { + "authorized_access_point": "Atlases", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134384173", + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85009231", + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85009231", + }, + ], + } + ], + "exactMatch": [ + { + "authorized_access_point": "Atlas", + "source": "GND", + "identifiedBy": [ + {"source": "GND", "type": "bf:Nbn", "value": "(DE-101)125348144X"}, + {"source": "DNLM", "type": "bf:Nbn", "value": "D020466"}, + {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D020466"}, + ], + }, + ], + } + + +def test_gnd_notes(): + """Test trans_gnd_note 670 677 678 680""" + xml_part_to_add = """ + + Vorlage; Internet + http://www.historisches-unterfranken.uni-wuerzburg.de/db_swu_wuestung.php + + + Bach bei Theilheim, Würzburg + + """ + trans = trans_prep(Transformation, "concepts", xml_part_to_add) + trans.trans_gnd_note() + assert trans.json == { + "note": [ + { + "label": [ + "Vorlage; Internet - http://www.historisches-unterfranken.uni-wuerzburg.de/db_swu_wuestung.php" + ], + "noteType": "dataSource", + }, + { + "label": ["Bach bei Theilheim, Würzburg"], + "noteType": "general", + }, + ] + } + + +def test_gnd_deleted(): + """Test deleted -> leader 6 == d.""" + xml_part_to_add = """ + dx a22 3 45 + """ + trans = trans_prep(Transformation, "concepts", xml_part_to_add) + trans.trans_gnd_deleted() + assert "deleted" in trans.json + + +def test_gnd_relation_pid(): + """Test relation pid.""" + xml_part_to_add = """ + + Umlenkung + (DE-101)004459091 + (DE-588)1098274-7 + https://d-nb.info/gnd/1098274-7 + Isarkreis + + """ + trans = trans_prep(Transformation, "concepts", xml_part_to_add) + trans.trans_gnd_relation_pid() + assert trans.json == { + "relation_pid": {"value": "004459091", "type": "redirect_to"}, + } diff --git a/tests/unit/concepts/test_concept_idref_transformation.py b/tests/unit/concepts/test_concepts_idref_transformation.py similarity index 95% rename from tests/unit/concepts/test_concept_idref_transformation.py rename to tests/unit/concepts/test_concepts_idref_transformation.py index d01965ad..d23c1240 100644 --- a/tests/unit/concepts/test_concept_idref_transformation.py +++ b/tests/unit/concepts/test_concepts_idref_transformation.py @@ -77,7 +77,8 @@ def test_idref_identifier(): "source": "BNF", "value": "http://catalogue.bnf.fr/ark:/12148/cb17876933v", }, - ] + ], + "identifier": "http://www.idref.fr/249594463", } @@ -305,20 +306,24 @@ def test_idref_close_match(): { "authorized_access_point": "Fasting", "source": "LCSH", - "identifiedBy": { - "source": "LCSH", - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85047403", - }, + "identifiedBy": [ + { + "source": "LCSH", + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85047403", + } + ], }, { "authorized_access_point": "Fasting -- Religious aspects", "source": "LCSH", - "identifiedBy": { - "source": "LCSH", - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh2003003108", - }, + "identifiedBy": [ + { + "source": "LCSH", + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2003003108", + } + ], }, {"authorized_access_point": "Jeûne", "source": "RVMLaval"}, { @@ -444,7 +449,12 @@ def test_idref_relation_pid(): trans.trans_idref_relation_pid() assert trans.json == { "identifiedBy": [ - {"source": "VIAF", "type": "uri", "value": "http://viaf.org/viaf/124265140"} + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/124265140", + }, + {"source": "BNF", "type": "bf:Nbn", "value": "FRBNF11862089"}, ], "relation_pid": {"value": "027630501", "type": "redirect_from"}, } diff --git a/tests/unit/concepts/test_concept_rero_transformation.py b/tests/unit/concepts/test_concepts_rero_transformation.py similarity index 100% rename from tests/unit/concepts/test_concept_rero_transformation.py rename to tests/unit/concepts/test_concepts_rero_transformation.py diff --git a/tests/unit/places/examples/xml_minimal_record.xml b/tests/unit/places/examples/xml_minimal_record.xml index ecce96ac..1371a88e 100644 --- a/tests/unit/places/examples/xml_minimal_record.xml +++ b/tests/unit/places/examples/xml_minimal_record.xml @@ -1,11 +1,24 @@ cx c22 3 45 - - Umlenkung - (DE-101)004459091 - (DE-588)1098274-7 - https://d-nb.info/gnd/1098274-7 - Isarkreis + + 027630501 + sudoc + + + frBN001940328 + + + frBN000000089 + + + FRBNF118620892 + FRBNF11862089 + + + http://viaf.org/viaf/124265140 + VIAF + VIAF + 20200302 \ No newline at end of file diff --git a/tests/unit/places/test_places_gnd_transformation.py b/tests/unit/places/test_places_gnd_transformation.py index 11b753d2..9c328cf0 100644 --- a/tests/unit/places/test_places_gnd_transformation.py +++ b/tests/unit/places/test_places_gnd_transformation.py @@ -69,7 +69,8 @@ def test_gnd_identifier(): "source": "GND", "value": "(DE-588)7655914-2", }, - ] + ], + "identifier": "http://d-nb.info/gnd/7655914-2", } @@ -107,7 +108,7 @@ def test_gnd_variant_access_point(): def test_gnd_relation(): - """Test trans_gnd_relation 515""" + """Test trans_gnd_relation 551""" xml_part_to_add = """ (DE-101)041079302 @@ -130,30 +131,8 @@ def test_gnd_relation(): def test_gnd_classification(): - """Test trans_gnd_classification 550.""" - xml_part_to_add = """ - - (DE-101)041229703 - (DE-588)4122970-8 - https://d-nb.info/gnd/4122970-8 - Bucht - obin - https://d-nb.info/standards/elementset/gnd#broaderTermInstantial - r - Oberbegriff instantiell - - """ - trans = trans_prep(Transformation, "places", xml_part_to_add) - trans.trans_gnd_classification() - assert trans.json == { - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Bucht", - } - ] - } + """Test trans_gnd_classification ???.""" + # TODO: trans_gnd_classification def test_gnd_close_match(): @@ -170,17 +149,24 @@ def test_gnd_close_match(): """ trans = trans_prep(Transformation, "places", xml_part_to_add) - trans.trans_gnd_close_match() + trans.trans_gnd_match() assert trans.json == { - "closeMatch": [ + "exactMatch": [ { "authorized_access_point": "Venedig", "source": "GND", - "identifiedBy": { - "source": "DE-101", - "type": "bf:Nbn", - "value": "997977663", - }, + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)997977663", + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "091419204", + }, + ], } ] } diff --git a/tests/unit/places/test_places_idref_transformation.py b/tests/unit/places/test_places_idref_transformation.py index 2c2e55d6..c230253d 100644 --- a/tests/unit/places/test_places_idref_transformation.py +++ b/tests/unit/places/test_places_idref_transformation.py @@ -58,7 +58,8 @@ def test_idref_identifier(): "source": "BNF", "value": "http://catalogue.bnf.fr/ark:/12148/cb11931552b", }, - ] + ], + "identifier": "http://www.idref.fr/027227812", } @@ -188,20 +189,24 @@ def test_idref_close_match(): { "authorized_access_point": "Fasting", "source": "LCSH", - "identifiedBy": { - "source": "LCSH", - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85047403", - }, + "identifiedBy": [ + { + "source": "LCSH", + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85047403", + } + ], }, { "authorized_access_point": "Fasting -- Religious aspects", "source": "LCSH", - "identifiedBy": { - "source": "LCSH", - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh2003003108", - }, + "identifiedBy": [ + { + "source": "LCSH", + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2003003108", + } + ], }, {"authorized_access_point": "Jeûne", "source": "RVMLaval"}, {